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.
 
 
 

48361 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. }
  1900. //species
  1901. function getSpeciesInfo(speciesList) {
  1902. let result = new Set();
  1903. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1904. result.add(entry)
  1905. });
  1906. return Array.from(result);
  1907. };
  1908. function getSpeciesInfoHelper(species) {
  1909. if (!speciesData[species]) {
  1910. console.warn(species + " doesn't exist");
  1911. return [];
  1912. }
  1913. if (speciesData[species].parents) {
  1914. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1915. } else {
  1916. return [species];
  1917. }
  1918. }
  1919. characterMakers.push(() => makeCharacter(
  1920. {
  1921. name: "Fen",
  1922. species: ["crux"],
  1923. description: {
  1924. title: "Bio",
  1925. text: "Very furry. Sheds on everything."
  1926. },
  1927. tags: [
  1928. "anthro",
  1929. "goo"
  1930. ]
  1931. },
  1932. {
  1933. front: {
  1934. height: math.unit(12, "feet"),
  1935. weight: math.unit(2400, "lb"),
  1936. name: "Front",
  1937. image: {
  1938. source: "./media/characters/fen/front.svg",
  1939. extra: 1804/1562,
  1940. bottom: 205/2009
  1941. }
  1942. },
  1943. diving: {
  1944. height: math.unit(4.9, "meters"),
  1945. weight: math.unit(2400, "lb"),
  1946. name: "Diving",
  1947. image: {
  1948. source: "./media/characters/fen/diving.svg"
  1949. }
  1950. },
  1951. goo: {
  1952. height: math.unit(12, "feet"),
  1953. weight: math.unit(3000, "lb"),
  1954. capacity: math.unit(6, "people"),
  1955. name: "Goo",
  1956. image: {
  1957. source: "./media/characters/fen/goo.svg",
  1958. extra: 1307/1071,
  1959. bottom: 134/1441
  1960. }
  1961. },
  1962. maw: {
  1963. height: math.unit(5.03, "feet"),
  1964. name: "Maw",
  1965. image: {
  1966. source: "./media/characters/fen/maw.svg"
  1967. }
  1968. },
  1969. gooCeiling: {
  1970. height: math.unit(6.6, "feet"),
  1971. weight: math.unit(3000, "lb"),
  1972. capacity: math.unit(6, "people"),
  1973. name: "Goo (Ceiling)",
  1974. image: {
  1975. source: "./media/characters/fen/goo-ceiling.svg"
  1976. }
  1977. },
  1978. back: {
  1979. height: math.unit(12, "feet"),
  1980. weight: math.unit(2400, "lb"),
  1981. name: "Back",
  1982. image: {
  1983. source: "./media/characters/fen/back.svg",
  1984. },
  1985. info: {
  1986. description: {
  1987. mode: "append",
  1988. text: "\n\nHe is not currently looking at you."
  1989. }
  1990. }
  1991. },
  1992. full: {
  1993. height: math.unit(1.6, "meter"),
  1994. weight: math.unit(3200, "lb"),
  1995. name: "Full",
  1996. image: {
  1997. source: "./media/characters/fen/full.svg",
  1998. extra: 1133/859,
  1999. bottom: 145/1278
  2000. },
  2001. info: {
  2002. description: {
  2003. mode: "append",
  2004. text: "\n\nMunch."
  2005. }
  2006. }
  2007. },
  2008. gooLounging: {
  2009. height: math.unit(4.53, "feet"),
  2010. weight: math.unit(3000, "lb"),
  2011. capacity: math.unit(6, "people"),
  2012. name: "Goo (Lounging)",
  2013. image: {
  2014. source: "./media/characters/fen/goo.svg",
  2015. bottom: 116 / 613
  2016. }
  2017. },
  2018. lounging: {
  2019. height: math.unit(10.52, "feet"),
  2020. weight: math.unit(2400, "lb"),
  2021. name: "Lounging",
  2022. image: {
  2023. source: "./media/characters/fen/lounging.svg"
  2024. }
  2025. },
  2026. },
  2027. [
  2028. {
  2029. name: "Small",
  2030. height: math.unit(2.2428, "meter")
  2031. },
  2032. {
  2033. name: "Normal",
  2034. height: math.unit(12, "feet"),
  2035. default: true,
  2036. },
  2037. {
  2038. name: "Big",
  2039. height: math.unit(20, "feet")
  2040. },
  2041. {
  2042. name: "Minimacro",
  2043. height: math.unit(40, "feet"),
  2044. info: {
  2045. description: {
  2046. mode: "append",
  2047. text: "\n\nTOO DAMN BIG"
  2048. }
  2049. }
  2050. },
  2051. {
  2052. name: "Macro",
  2053. height: math.unit(100, "feet"),
  2054. info: {
  2055. description: {
  2056. mode: "append",
  2057. text: "\n\nTOO DAMN BIG"
  2058. }
  2059. }
  2060. },
  2061. {
  2062. name: "Megamacro",
  2063. height: math.unit(2, "miles")
  2064. },
  2065. {
  2066. name: "Gigamacro",
  2067. height: math.unit(10, "earths")
  2068. },
  2069. ]
  2070. ))
  2071. characterMakers.push(() => makeCharacter(
  2072. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2073. {
  2074. front: {
  2075. height: math.unit(183, "cm"),
  2076. weight: math.unit(80, "kg"),
  2077. name: "Front",
  2078. image: {
  2079. source: "./media/characters/sofia-fluttertail/front.svg",
  2080. bottom: 0.01,
  2081. extra: 2154 / 2081
  2082. }
  2083. },
  2084. frontAlt: {
  2085. height: math.unit(183, "cm"),
  2086. weight: math.unit(80, "kg"),
  2087. name: "Front (alt)",
  2088. image: {
  2089. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2090. }
  2091. },
  2092. back: {
  2093. height: math.unit(183, "cm"),
  2094. weight: math.unit(80, "kg"),
  2095. name: "Back",
  2096. image: {
  2097. source: "./media/characters/sofia-fluttertail/back.svg"
  2098. }
  2099. },
  2100. kneeling: {
  2101. height: math.unit(125, "cm"),
  2102. weight: math.unit(80, "kg"),
  2103. name: "Kneeling",
  2104. image: {
  2105. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2106. extra: 1033 / 977,
  2107. bottom: 23.7 / 1057
  2108. }
  2109. },
  2110. maw: {
  2111. height: math.unit(183 / 5, "cm"),
  2112. name: "Maw",
  2113. image: {
  2114. source: "./media/characters/sofia-fluttertail/maw.svg"
  2115. }
  2116. },
  2117. mawcloseup: {
  2118. height: math.unit(183 / 5 * 0.41, "cm"),
  2119. name: "Maw (Closeup)",
  2120. image: {
  2121. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2122. }
  2123. },
  2124. paws: {
  2125. height: math.unit(1.17, "feet"),
  2126. name: "Paws",
  2127. image: {
  2128. source: "./media/characters/sofia-fluttertail/paws.svg",
  2129. extra: 851 / 851,
  2130. bottom: 17 / 868
  2131. }
  2132. },
  2133. },
  2134. [
  2135. {
  2136. name: "Normal",
  2137. height: math.unit(1.83, "meter")
  2138. },
  2139. {
  2140. name: "Size Thief",
  2141. height: math.unit(18, "feet")
  2142. },
  2143. {
  2144. name: "50 Foot Collie",
  2145. height: math.unit(50, "feet")
  2146. },
  2147. {
  2148. name: "Macro",
  2149. height: math.unit(96, "feet"),
  2150. default: true
  2151. },
  2152. {
  2153. name: "Megamerger",
  2154. height: math.unit(650, "feet")
  2155. },
  2156. ]
  2157. ))
  2158. characterMakers.push(() => makeCharacter(
  2159. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2160. {
  2161. front: {
  2162. height: math.unit(7, "feet"),
  2163. weight: math.unit(100, "kg"),
  2164. name: "Front",
  2165. image: {
  2166. source: "./media/characters/march/front.svg",
  2167. extra: 1992/1851,
  2168. bottom: 39/2031
  2169. }
  2170. },
  2171. foot: {
  2172. height: math.unit(0.9, "feet"),
  2173. name: "Foot",
  2174. image: {
  2175. source: "./media/characters/march/foot.svg"
  2176. }
  2177. },
  2178. },
  2179. [
  2180. {
  2181. name: "Normal",
  2182. height: math.unit(7.9, "feet")
  2183. },
  2184. {
  2185. name: "Macro",
  2186. height: math.unit(220, "meters")
  2187. },
  2188. {
  2189. name: "Megamacro",
  2190. height: math.unit(2.98, "km"),
  2191. default: true
  2192. },
  2193. {
  2194. name: "Gigamacro",
  2195. height: math.unit(15963, "km")
  2196. },
  2197. {
  2198. name: "Teramacro",
  2199. height: math.unit(2980000000, "km")
  2200. },
  2201. {
  2202. name: "Examacro",
  2203. height: math.unit(250, "parsecs")
  2204. },
  2205. ]
  2206. ))
  2207. characterMakers.push(() => makeCharacter(
  2208. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2209. {
  2210. front: {
  2211. height: math.unit(6, "feet"),
  2212. weight: math.unit(60, "kg"),
  2213. name: "Front",
  2214. image: {
  2215. source: "./media/characters/noir/front.svg",
  2216. extra: 1,
  2217. bottom: 0.032
  2218. }
  2219. },
  2220. },
  2221. [
  2222. {
  2223. name: "Normal",
  2224. height: math.unit(6.6, "feet")
  2225. },
  2226. {
  2227. name: "Macro",
  2228. height: math.unit(500, "feet")
  2229. },
  2230. {
  2231. name: "Megamacro",
  2232. height: math.unit(2.5, "km"),
  2233. default: true
  2234. },
  2235. {
  2236. name: "Gigamacro",
  2237. height: math.unit(22500, "km")
  2238. },
  2239. {
  2240. name: "Teramacro",
  2241. height: math.unit(2500000000, "km")
  2242. },
  2243. {
  2244. name: "Examacro",
  2245. height: math.unit(200, "parsecs")
  2246. },
  2247. ]
  2248. ))
  2249. characterMakers.push(() => makeCharacter(
  2250. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2251. {
  2252. front: {
  2253. height: math.unit(7, "feet"),
  2254. weight: math.unit(100, "kg"),
  2255. name: "Front",
  2256. image: {
  2257. source: "./media/characters/okuri/front.svg",
  2258. extra: 1,
  2259. bottom: 0.037
  2260. }
  2261. },
  2262. back: {
  2263. height: math.unit(7, "feet"),
  2264. weight: math.unit(100, "kg"),
  2265. name: "Back",
  2266. image: {
  2267. source: "./media/characters/okuri/back.svg",
  2268. extra: 1,
  2269. bottom: 0.007
  2270. }
  2271. },
  2272. },
  2273. [
  2274. {
  2275. name: "Megamacro",
  2276. height: math.unit(100, "miles"),
  2277. default: true
  2278. },
  2279. ]
  2280. ))
  2281. characterMakers.push(() => makeCharacter(
  2282. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2283. {
  2284. front: {
  2285. height: math.unit(7, "feet"),
  2286. weight: math.unit(100, "kg"),
  2287. name: "Front",
  2288. image: {
  2289. source: "./media/characters/manny/front.svg",
  2290. extra: 1,
  2291. bottom: 0.06
  2292. }
  2293. },
  2294. back: {
  2295. height: math.unit(7, "feet"),
  2296. weight: math.unit(100, "kg"),
  2297. name: "Back",
  2298. image: {
  2299. source: "./media/characters/manny/back.svg",
  2300. extra: 1,
  2301. bottom: 0.014
  2302. }
  2303. },
  2304. },
  2305. [
  2306. {
  2307. name: "Normal",
  2308. height: math.unit(7, "feet"),
  2309. },
  2310. {
  2311. name: "Macro",
  2312. height: math.unit(78, "feet"),
  2313. default: true
  2314. },
  2315. {
  2316. name: "Macro+",
  2317. height: math.unit(300, "meters")
  2318. },
  2319. {
  2320. name: "Macro++",
  2321. height: math.unit(2400, "meters")
  2322. },
  2323. {
  2324. name: "Megamacro",
  2325. height: math.unit(5167, "meters")
  2326. },
  2327. {
  2328. name: "Gigamacro",
  2329. height: math.unit(41769, "miles")
  2330. },
  2331. ]
  2332. ))
  2333. characterMakers.push(() => makeCharacter(
  2334. { name: "Adake", species: ["tiger"], 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/adake/front-1.svg"
  2342. }
  2343. },
  2344. frontAlt: {
  2345. height: math.unit(7, "feet"),
  2346. weight: math.unit(100, "kg"),
  2347. name: "Front (Alt)",
  2348. image: {
  2349. source: "./media/characters/adake/front-2.svg",
  2350. extra: 1,
  2351. bottom: 0.01
  2352. }
  2353. },
  2354. back: {
  2355. height: math.unit(7, "feet"),
  2356. weight: math.unit(100, "kg"),
  2357. name: "Back",
  2358. image: {
  2359. source: "./media/characters/adake/back.svg",
  2360. }
  2361. },
  2362. kneel: {
  2363. height: math.unit(5.385, "feet"),
  2364. weight: math.unit(100, "kg"),
  2365. name: "Kneeling",
  2366. image: {
  2367. source: "./media/characters/adake/kneel.svg",
  2368. bottom: 0.052
  2369. }
  2370. },
  2371. },
  2372. [
  2373. {
  2374. name: "Normal",
  2375. height: math.unit(7, "feet"),
  2376. },
  2377. {
  2378. name: "Macro",
  2379. height: math.unit(78, "feet"),
  2380. default: true
  2381. },
  2382. {
  2383. name: "Macro+",
  2384. height: math.unit(300, "meters")
  2385. },
  2386. {
  2387. name: "Macro++",
  2388. height: math.unit(2400, "meters")
  2389. },
  2390. {
  2391. name: "Megamacro",
  2392. height: math.unit(5167, "meters")
  2393. },
  2394. {
  2395. name: "Gigamacro",
  2396. height: math.unit(41769, "miles")
  2397. },
  2398. ]
  2399. ))
  2400. characterMakers.push(() => makeCharacter(
  2401. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2402. {
  2403. front: {
  2404. height: math.unit(1.65, "meters"),
  2405. weight: math.unit(50, "kg"),
  2406. name: "Front",
  2407. image: {
  2408. source: "./media/characters/elijah/front.svg",
  2409. extra: 858 / 830,
  2410. bottom: 95.5 / 953.8559
  2411. }
  2412. },
  2413. back: {
  2414. height: math.unit(1.65, "meters"),
  2415. weight: math.unit(50, "kg"),
  2416. name: "Back",
  2417. image: {
  2418. source: "./media/characters/elijah/back.svg",
  2419. extra: 895 / 850,
  2420. bottom: 5.3 / 897.956
  2421. }
  2422. },
  2423. frontNsfw: {
  2424. height: math.unit(1.65, "meters"),
  2425. weight: math.unit(50, "kg"),
  2426. name: "Front (NSFW)",
  2427. image: {
  2428. source: "./media/characters/elijah/front-nsfw.svg",
  2429. extra: 858 / 830,
  2430. bottom: 95.5 / 953.8559
  2431. }
  2432. },
  2433. backNsfw: {
  2434. height: math.unit(1.65, "meters"),
  2435. weight: math.unit(50, "kg"),
  2436. name: "Back (NSFW)",
  2437. image: {
  2438. source: "./media/characters/elijah/back-nsfw.svg",
  2439. extra: 895 / 850,
  2440. bottom: 5.3 / 897.956
  2441. }
  2442. },
  2443. dick: {
  2444. height: math.unit(1, "feet"),
  2445. name: "Dick",
  2446. image: {
  2447. source: "./media/characters/elijah/dick.svg"
  2448. }
  2449. },
  2450. beakOpen: {
  2451. height: math.unit(1.25, "feet"),
  2452. name: "Beak (Open)",
  2453. image: {
  2454. source: "./media/characters/elijah/beak-open.svg"
  2455. }
  2456. },
  2457. beakShut: {
  2458. height: math.unit(1.25, "feet"),
  2459. name: "Beak (Shut)",
  2460. image: {
  2461. source: "./media/characters/elijah/beak-shut.svg"
  2462. }
  2463. },
  2464. footFlexing: {
  2465. height: math.unit(1.61, "feet"),
  2466. name: "Foot (Flexing)",
  2467. image: {
  2468. source: "./media/characters/elijah/foot-flexing.svg"
  2469. }
  2470. },
  2471. footStepping: {
  2472. height: math.unit(1.44, "feet"),
  2473. name: "Foot (Stepping)",
  2474. image: {
  2475. source: "./media/characters/elijah/foot-stepping.svg"
  2476. }
  2477. },
  2478. plantigradeLeg: {
  2479. height: math.unit(2.34, "feet"),
  2480. name: "Plantigrade Leg",
  2481. image: {
  2482. source: "./media/characters/elijah/plantigrade-leg.svg"
  2483. }
  2484. },
  2485. plantigradeFootLeft: {
  2486. height: math.unit(0.9, "feet"),
  2487. name: "Plantigrade Foot (Left)",
  2488. image: {
  2489. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2490. }
  2491. },
  2492. plantigradeFootRight: {
  2493. height: math.unit(0.9, "feet"),
  2494. name: "Plantigrade Foot (Right)",
  2495. image: {
  2496. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2497. }
  2498. },
  2499. },
  2500. [
  2501. {
  2502. name: "Normal",
  2503. height: math.unit(1.65, "meters")
  2504. },
  2505. {
  2506. name: "Macro",
  2507. height: math.unit(55, "meters"),
  2508. default: true
  2509. },
  2510. {
  2511. name: "Macro+",
  2512. height: math.unit(105, "meters")
  2513. },
  2514. ]
  2515. ))
  2516. characterMakers.push(() => makeCharacter(
  2517. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2518. {
  2519. front: {
  2520. height: math.unit(7 + 2/12, "feet"),
  2521. weight: math.unit(320, "kg"),
  2522. name: "Front",
  2523. image: {
  2524. source: "./media/characters/rai/front.svg",
  2525. extra: 1802/1696,
  2526. bottom: 68/1870
  2527. }
  2528. },
  2529. frontDressed: {
  2530. height: math.unit(7 + 2/12, "feet"),
  2531. weight: math.unit(320, "kg"),
  2532. name: "Front (Dressed)",
  2533. image: {
  2534. source: "./media/characters/rai/front-dressed.svg",
  2535. extra: 1802/1696,
  2536. bottom: 68/1870
  2537. }
  2538. },
  2539. side: {
  2540. height: math.unit(7 + 2/12, "feet"),
  2541. weight: math.unit(320, "kg"),
  2542. name: "Side",
  2543. image: {
  2544. source: "./media/characters/rai/side.svg",
  2545. extra: 1789/1710,
  2546. bottom: 115/1904
  2547. }
  2548. },
  2549. back: {
  2550. height: math.unit(7 + 2/12, "feet"),
  2551. weight: math.unit(320, "kg"),
  2552. name: "Back",
  2553. image: {
  2554. source: "./media/characters/rai/back.svg",
  2555. extra: 1770/1707,
  2556. bottom: 28/1798
  2557. }
  2558. },
  2559. feral: {
  2560. height: math.unit(9.5, "feet"),
  2561. weight: math.unit(640, "kg"),
  2562. name: "Feral",
  2563. image: {
  2564. source: "./media/characters/rai/feral.svg",
  2565. extra: 945/553,
  2566. bottom: 176/1121
  2567. }
  2568. },
  2569. dragon: {
  2570. height: math.unit(23, "feet"),
  2571. weight: math.unit(50000, "lb"),
  2572. name: "Dragon",
  2573. image: {
  2574. source: "./media/characters/rai/dragon.svg",
  2575. extra: 2498 / 2030,
  2576. bottom: 85.2 / 2584
  2577. }
  2578. },
  2579. maw: {
  2580. height: math.unit(1.69, "feet"),
  2581. name: "Maw",
  2582. image: {
  2583. source: "./media/characters/rai/maw.svg"
  2584. }
  2585. },
  2586. },
  2587. [
  2588. {
  2589. name: "Normal",
  2590. height: math.unit(7 + 2/12, "feet")
  2591. },
  2592. {
  2593. name: "Big",
  2594. height: math.unit(11, "feet")
  2595. },
  2596. {
  2597. name: "Macro",
  2598. height: math.unit(302, "feet"),
  2599. default: true
  2600. },
  2601. ]
  2602. ))
  2603. characterMakers.push(() => makeCharacter(
  2604. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2605. {
  2606. frontDressed: {
  2607. height: math.unit(216, "feet"),
  2608. weight: math.unit(7000000, "lb"),
  2609. name: "Front (Dressed)",
  2610. image: {
  2611. source: "./media/characters/jazzy/front-dressed.svg",
  2612. extra: 2738 / 2651,
  2613. bottom: 41.8 / 2786
  2614. }
  2615. },
  2616. backDressed: {
  2617. height: math.unit(216, "feet"),
  2618. weight: math.unit(7000000, "lb"),
  2619. name: "Back (Dressed)",
  2620. image: {
  2621. source: "./media/characters/jazzy/back-dressed.svg",
  2622. extra: 2775 / 2673,
  2623. bottom: 36.8 / 2817
  2624. }
  2625. },
  2626. front: {
  2627. height: math.unit(216, "feet"),
  2628. weight: math.unit(7000000, "lb"),
  2629. name: "Front",
  2630. image: {
  2631. source: "./media/characters/jazzy/front.svg",
  2632. extra: 2738 / 2651,
  2633. bottom: 41.8 / 2786
  2634. }
  2635. },
  2636. back: {
  2637. height: math.unit(216, "feet"),
  2638. weight: math.unit(7000000, "lb"),
  2639. name: "Back",
  2640. image: {
  2641. source: "./media/characters/jazzy/back.svg",
  2642. extra: 2775 / 2673,
  2643. bottom: 36.8 / 2817
  2644. }
  2645. },
  2646. maw: {
  2647. height: math.unit(20, "feet"),
  2648. name: "Maw",
  2649. image: {
  2650. source: "./media/characters/jazzy/maw.svg"
  2651. }
  2652. },
  2653. paws: {
  2654. height: math.unit(27.5, "feet"),
  2655. name: "Paws",
  2656. image: {
  2657. source: "./media/characters/jazzy/paws.svg"
  2658. }
  2659. },
  2660. eye: {
  2661. height: math.unit(4.4, "feet"),
  2662. name: "Eye",
  2663. image: {
  2664. source: "./media/characters/jazzy/eye.svg"
  2665. }
  2666. },
  2667. droneOffense: {
  2668. height: math.unit(9.5, "inches"),
  2669. name: "Drone (Offense)",
  2670. image: {
  2671. source: "./media/characters/jazzy/drone-offense.svg"
  2672. }
  2673. },
  2674. droneRecon: {
  2675. height: math.unit(9.5, "inches"),
  2676. name: "Drone (Recon)",
  2677. image: {
  2678. source: "./media/characters/jazzy/drone-recon.svg"
  2679. }
  2680. },
  2681. droneDefense: {
  2682. height: math.unit(9.5, "inches"),
  2683. name: "Drone (Defense)",
  2684. image: {
  2685. source: "./media/characters/jazzy/drone-defense.svg"
  2686. }
  2687. },
  2688. },
  2689. [
  2690. {
  2691. name: "Macro",
  2692. height: math.unit(216, "feet"),
  2693. default: true
  2694. },
  2695. ]
  2696. ))
  2697. characterMakers.push(() => makeCharacter(
  2698. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2699. {
  2700. front: {
  2701. height: math.unit(9 + 6/12, "feet"),
  2702. weight: math.unit(700, "lb"),
  2703. name: "Front",
  2704. image: {
  2705. source: "./media/characters/flamm/front.svg",
  2706. extra: 1751/1632,
  2707. bottom: 46/1797
  2708. }
  2709. },
  2710. buff: {
  2711. height: math.unit(9 + 6/12, "feet"),
  2712. weight: math.unit(950, "lb"),
  2713. name: "Buff",
  2714. image: {
  2715. source: "./media/characters/flamm/buff.svg",
  2716. extra: 3018/2874,
  2717. bottom: 221/3239
  2718. }
  2719. },
  2720. },
  2721. [
  2722. {
  2723. name: "Normal",
  2724. height: math.unit(9.5, "feet")
  2725. },
  2726. {
  2727. name: "Macro",
  2728. height: math.unit(200, "feet"),
  2729. default: true
  2730. },
  2731. ]
  2732. ))
  2733. characterMakers.push(() => makeCharacter(
  2734. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2735. {
  2736. front: {
  2737. height: math.unit(5 + 3/12, "feet"),
  2738. weight: math.unit(60, "kg"),
  2739. name: "Front",
  2740. image: {
  2741. source: "./media/characters/zephiro/front.svg",
  2742. extra: 2309 / 2162,
  2743. bottom: 0.069
  2744. }
  2745. },
  2746. side: {
  2747. height: math.unit(5 + 3/12, "feet"),
  2748. weight: math.unit(60, "kg"),
  2749. name: "Side",
  2750. image: {
  2751. source: "./media/characters/zephiro/side.svg",
  2752. extra: 2403 / 2279,
  2753. bottom: 0.015
  2754. }
  2755. },
  2756. back: {
  2757. height: math.unit(5 + 3/12, "feet"),
  2758. weight: math.unit(60, "kg"),
  2759. name: "Back",
  2760. image: {
  2761. source: "./media/characters/zephiro/back.svg",
  2762. extra: 2373 / 2244,
  2763. bottom: 0.013
  2764. }
  2765. },
  2766. hand: {
  2767. height: math.unit(0.68, "feet"),
  2768. name: "Hand",
  2769. image: {
  2770. source: "./media/characters/zephiro/hand.svg"
  2771. }
  2772. },
  2773. paw: {
  2774. height: math.unit(1, "feet"),
  2775. name: "Paw",
  2776. image: {
  2777. source: "./media/characters/zephiro/paw.svg"
  2778. }
  2779. },
  2780. beans: {
  2781. height: math.unit(0.93, "feet"),
  2782. name: "Beans",
  2783. image: {
  2784. source: "./media/characters/zephiro/beans.svg"
  2785. }
  2786. },
  2787. },
  2788. [
  2789. {
  2790. name: "Micro",
  2791. height: math.unit(3, "inches")
  2792. },
  2793. {
  2794. name: "Normal",
  2795. height: math.unit(5 + 3 / 12, "feet"),
  2796. default: true
  2797. },
  2798. {
  2799. name: "Macro",
  2800. height: math.unit(118, "feet")
  2801. },
  2802. ]
  2803. ))
  2804. characterMakers.push(() => makeCharacter(
  2805. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2806. {
  2807. front: {
  2808. height: math.unit(5, "feet"),
  2809. weight: math.unit(90, "kg"),
  2810. name: "Front",
  2811. image: {
  2812. source: "./media/characters/fory/front.svg",
  2813. extra: 2862 / 2674,
  2814. bottom: 180 / 3043.8
  2815. }
  2816. },
  2817. back: {
  2818. height: math.unit(5, "feet"),
  2819. weight: math.unit(90, "kg"),
  2820. name: "Back",
  2821. image: {
  2822. source: "./media/characters/fory/back.svg",
  2823. extra: 2962 / 2791,
  2824. bottom: 106 / 3071.8
  2825. }
  2826. },
  2827. foot: {
  2828. height: math.unit(2.14, "feet"),
  2829. name: "Foot",
  2830. image: {
  2831. source: "./media/characters/fory/foot.svg"
  2832. }
  2833. },
  2834. },
  2835. [
  2836. {
  2837. name: "Normal",
  2838. height: math.unit(5, "feet")
  2839. },
  2840. {
  2841. name: "Macro",
  2842. height: math.unit(50, "feet"),
  2843. default: true
  2844. },
  2845. {
  2846. name: "Megamacro",
  2847. height: math.unit(10, "miles")
  2848. },
  2849. {
  2850. name: "Gigamacro",
  2851. height: math.unit(5, "earths")
  2852. },
  2853. ]
  2854. ))
  2855. characterMakers.push(() => makeCharacter(
  2856. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2857. {
  2858. front: {
  2859. height: math.unit(7, "feet"),
  2860. weight: math.unit(90, "kg"),
  2861. name: "Front",
  2862. image: {
  2863. source: "./media/characters/kurrikage/front.svg",
  2864. extra: 1845/1733,
  2865. bottom: 119/1964
  2866. }
  2867. },
  2868. back: {
  2869. height: math.unit(7, "feet"),
  2870. weight: math.unit(90, "kg"),
  2871. name: "Back",
  2872. image: {
  2873. source: "./media/characters/kurrikage/back.svg",
  2874. extra: 1790/1677,
  2875. bottom: 61/1851
  2876. }
  2877. },
  2878. dressed: {
  2879. height: math.unit(7, "feet"),
  2880. weight: math.unit(90, "kg"),
  2881. name: "Dressed",
  2882. image: {
  2883. source: "./media/characters/kurrikage/dressed.svg",
  2884. extra: 1845/1733,
  2885. bottom: 119/1964
  2886. }
  2887. },
  2888. foot: {
  2889. height: math.unit(1.5, "feet"),
  2890. name: "Foot",
  2891. image: {
  2892. source: "./media/characters/kurrikage/foot.svg"
  2893. }
  2894. },
  2895. staff: {
  2896. height: math.unit(6.7, "feet"),
  2897. name: "Staff",
  2898. image: {
  2899. source: "./media/characters/kurrikage/staff.svg"
  2900. }
  2901. },
  2902. peek: {
  2903. height: math.unit(1.05, "feet"),
  2904. name: "Peeking",
  2905. image: {
  2906. source: "./media/characters/kurrikage/peek.svg",
  2907. bottom: 0.08
  2908. }
  2909. },
  2910. },
  2911. [
  2912. {
  2913. name: "Normal",
  2914. height: math.unit(12, "feet"),
  2915. default: true
  2916. },
  2917. {
  2918. name: "Big",
  2919. height: math.unit(20, "feet")
  2920. },
  2921. {
  2922. name: "Macro",
  2923. height: math.unit(500, "feet")
  2924. },
  2925. {
  2926. name: "Megamacro",
  2927. height: math.unit(20, "miles")
  2928. },
  2929. ]
  2930. ))
  2931. characterMakers.push(() => makeCharacter(
  2932. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2933. {
  2934. front: {
  2935. height: math.unit(6, "feet"),
  2936. weight: math.unit(75, "kg"),
  2937. name: "Front",
  2938. image: {
  2939. source: "./media/characters/shingo/front.svg",
  2940. extra: 1900/1825,
  2941. bottom: 82/1982
  2942. }
  2943. },
  2944. side: {
  2945. height: math.unit(6, "feet"),
  2946. weight: math.unit(75, "kg"),
  2947. name: "Side",
  2948. image: {
  2949. source: "./media/characters/shingo/side.svg",
  2950. extra: 1930/1865,
  2951. bottom: 16/1946
  2952. }
  2953. },
  2954. back: {
  2955. height: math.unit(6, "feet"),
  2956. weight: math.unit(75, "kg"),
  2957. name: "Back",
  2958. image: {
  2959. source: "./media/characters/shingo/back.svg",
  2960. extra: 1922/1852,
  2961. bottom: 16/1938
  2962. }
  2963. },
  2964. frontDressed: {
  2965. height: math.unit(6, "feet"),
  2966. weight: math.unit(150, "lb"),
  2967. name: "Front-dressed",
  2968. image: {
  2969. source: "./media/characters/shingo/front-dressed.svg",
  2970. extra: 1900/1825,
  2971. bottom: 82/1982
  2972. }
  2973. },
  2974. paw: {
  2975. height: math.unit(1.29, "feet"),
  2976. name: "Paw",
  2977. image: {
  2978. source: "./media/characters/shingo/paw.svg"
  2979. }
  2980. },
  2981. hand: {
  2982. height: math.unit(1.07, "feet"),
  2983. name: "Hand",
  2984. image: {
  2985. source: "./media/characters/shingo/hand.svg"
  2986. }
  2987. },
  2988. frontAlt: {
  2989. height: math.unit(6, "feet"),
  2990. weight: math.unit(75, "kg"),
  2991. name: "Front (Alt)",
  2992. image: {
  2993. source: "./media/characters/shingo/front-alt.svg",
  2994. extra: 3511 / 3338,
  2995. bottom: 0.005
  2996. }
  2997. },
  2998. frontAlt2: {
  2999. height: math.unit(6, "feet"),
  3000. weight: math.unit(75, "kg"),
  3001. name: "Front (Alt 2)",
  3002. image: {
  3003. source: "./media/characters/shingo/front-alt-2.svg",
  3004. extra: 706/681,
  3005. bottom: 11/717
  3006. }
  3007. },
  3008. pawAlt: {
  3009. height: math.unit(1, "feet"),
  3010. name: "Paw (Alt)",
  3011. image: {
  3012. source: "./media/characters/shingo/paw-alt.svg"
  3013. }
  3014. },
  3015. },
  3016. [
  3017. {
  3018. name: "Micro",
  3019. height: math.unit(4, "inches")
  3020. },
  3021. {
  3022. name: "Normal",
  3023. height: math.unit(6, "feet"),
  3024. default: true
  3025. },
  3026. {
  3027. name: "Macro",
  3028. height: math.unit(108, "feet")
  3029. },
  3030. {
  3031. name: "Macro+",
  3032. height: math.unit(1500, "feet")
  3033. },
  3034. ]
  3035. ))
  3036. characterMakers.push(() => makeCharacter(
  3037. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3038. {
  3039. side: {
  3040. height: math.unit(6, "feet"),
  3041. weight: math.unit(75, "kg"),
  3042. name: "Side",
  3043. image: {
  3044. source: "./media/characters/aigey/side.svg"
  3045. }
  3046. },
  3047. },
  3048. [
  3049. {
  3050. name: "Macro",
  3051. height: math.unit(200, "feet"),
  3052. default: true
  3053. },
  3054. {
  3055. name: "Megamacro",
  3056. height: math.unit(100, "miles")
  3057. },
  3058. ]
  3059. )
  3060. )
  3061. characterMakers.push(() => makeCharacter(
  3062. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3063. {
  3064. front: {
  3065. height: math.unit(5 + 5 / 12, "feet"),
  3066. weight: math.unit(75, "kg"),
  3067. name: "Front",
  3068. image: {
  3069. source: "./media/characters/natasha/front.svg",
  3070. extra: 859 / 824,
  3071. bottom: 23 / 879.6
  3072. }
  3073. },
  3074. frontNsfw: {
  3075. height: math.unit(5 + 5 / 12, "feet"),
  3076. weight: math.unit(75, "kg"),
  3077. name: "Front (NSFW)",
  3078. image: {
  3079. source: "./media/characters/natasha/front-nsfw.svg",
  3080. extra: 859 / 824,
  3081. bottom: 23 / 879.6
  3082. }
  3083. },
  3084. frontErect: {
  3085. height: math.unit(5 + 5 / 12, "feet"),
  3086. weight: math.unit(75, "kg"),
  3087. name: "Front (Erect)",
  3088. image: {
  3089. source: "./media/characters/natasha/front-erect.svg",
  3090. extra: 859 / 824,
  3091. bottom: 23 / 879.6
  3092. }
  3093. },
  3094. back: {
  3095. height: math.unit(5 + 5 / 12, "feet"),
  3096. weight: math.unit(75, "kg"),
  3097. name: "Back",
  3098. image: {
  3099. source: "./media/characters/natasha/back.svg",
  3100. extra: 887.9 / 852.6,
  3101. bottom: 9.7 / 896.4
  3102. }
  3103. },
  3104. backAlt: {
  3105. height: math.unit(5 + 5 / 12, "feet"),
  3106. weight: math.unit(75, "kg"),
  3107. name: "Back (Alt)",
  3108. image: {
  3109. source: "./media/characters/natasha/back-alt.svg",
  3110. extra: 1236.7 / 1192,
  3111. bottom: 22.3 / 1258.2
  3112. }
  3113. },
  3114. dick: {
  3115. height: math.unit(1.772, "feet"),
  3116. name: "Dick",
  3117. image: {
  3118. source: "./media/characters/natasha/dick.svg"
  3119. }
  3120. },
  3121. paw: {
  3122. height: math.unit(0.250, "meters"),
  3123. name: "Paw",
  3124. image: {
  3125. source: "./media/characters/natasha/paw.svg"
  3126. }
  3127. },
  3128. },
  3129. [
  3130. {
  3131. name: "Normal",
  3132. height: math.unit(5 + 5 / 12, "feet")
  3133. },
  3134. {
  3135. name: "Large",
  3136. height: math.unit(12, "feet")
  3137. },
  3138. {
  3139. name: "Macro",
  3140. height: math.unit(100, "feet"),
  3141. default: true
  3142. },
  3143. {
  3144. name: "Macro+",
  3145. height: math.unit(260, "feet")
  3146. },
  3147. {
  3148. name: "Macro++",
  3149. height: math.unit(1, "mile")
  3150. },
  3151. ]
  3152. ))
  3153. characterMakers.push(() => makeCharacter(
  3154. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3155. {
  3156. front: {
  3157. height: math.unit(6, "feet"),
  3158. weight: math.unit(75, "kg"),
  3159. name: "Front",
  3160. image: {
  3161. source: "./media/characters/malik/front.svg"
  3162. }
  3163. },
  3164. side: {
  3165. height: math.unit(6, "feet"),
  3166. weight: math.unit(75, "kg"),
  3167. name: "Side",
  3168. image: {
  3169. source: "./media/characters/malik/side.svg",
  3170. extra: 1.1539
  3171. }
  3172. },
  3173. back: {
  3174. height: math.unit(6, "feet"),
  3175. weight: math.unit(75, "kg"),
  3176. name: "Back",
  3177. image: {
  3178. source: "./media/characters/malik/back.svg"
  3179. }
  3180. },
  3181. },
  3182. [
  3183. {
  3184. name: "Macro",
  3185. height: math.unit(156, "feet"),
  3186. default: true
  3187. },
  3188. {
  3189. name: "Macro+",
  3190. height: math.unit(1188, "feet")
  3191. },
  3192. ]
  3193. ))
  3194. characterMakers.push(() => makeCharacter(
  3195. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3196. {
  3197. front: {
  3198. height: math.unit(6, "feet"),
  3199. weight: math.unit(75, "kg"),
  3200. name: "Front",
  3201. image: {
  3202. source: "./media/characters/sefer/front.svg",
  3203. extra: 848 / 659,
  3204. bottom: 28.3 / 876.442
  3205. }
  3206. },
  3207. back: {
  3208. height: math.unit(6, "feet"),
  3209. weight: math.unit(75, "kg"),
  3210. name: "Back",
  3211. image: {
  3212. source: "./media/characters/sefer/back.svg",
  3213. extra: 864 / 695,
  3214. bottom: 10 / 871
  3215. }
  3216. },
  3217. frontDressed: {
  3218. height: math.unit(6, "feet"),
  3219. weight: math.unit(75, "kg"),
  3220. name: "Front (Dressed)",
  3221. image: {
  3222. source: "./media/characters/sefer/front-dressed.svg",
  3223. extra: 839 / 653,
  3224. bottom: 37.6 / 878
  3225. }
  3226. },
  3227. },
  3228. [
  3229. {
  3230. name: "Normal",
  3231. height: math.unit(6, "feet"),
  3232. default: true
  3233. },
  3234. ]
  3235. ))
  3236. characterMakers.push(() => makeCharacter(
  3237. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3238. {
  3239. body: {
  3240. height: math.unit(2.2428, "meter"),
  3241. weight: math.unit(124.738, "kg"),
  3242. name: "Body",
  3243. image: {
  3244. extra: 1225 / 1050,
  3245. source: "./media/characters/north/front.svg"
  3246. }
  3247. }
  3248. },
  3249. [
  3250. {
  3251. name: "Micro",
  3252. height: math.unit(4, "inches")
  3253. },
  3254. {
  3255. name: "Macro",
  3256. height: math.unit(63, "meters")
  3257. },
  3258. {
  3259. name: "Megamacro",
  3260. height: math.unit(101, "miles"),
  3261. default: true
  3262. }
  3263. ]
  3264. ))
  3265. characterMakers.push(() => makeCharacter(
  3266. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3267. {
  3268. angled: {
  3269. height: math.unit(4, "meter"),
  3270. weight: math.unit(150, "kg"),
  3271. name: "Angled",
  3272. image: {
  3273. source: "./media/characters/talan/angled-sfw.svg",
  3274. bottom: 29 / 3734
  3275. }
  3276. },
  3277. angledNsfw: {
  3278. height: math.unit(4, "meter"),
  3279. weight: math.unit(150, "kg"),
  3280. name: "Angled (NSFW)",
  3281. image: {
  3282. source: "./media/characters/talan/angled-nsfw.svg",
  3283. bottom: 29 / 3734
  3284. }
  3285. },
  3286. frontNsfw: {
  3287. height: math.unit(4, "meter"),
  3288. weight: math.unit(150, "kg"),
  3289. name: "Front (NSFW)",
  3290. image: {
  3291. source: "./media/characters/talan/front-nsfw.svg",
  3292. bottom: 29 / 3734
  3293. }
  3294. },
  3295. sideNsfw: {
  3296. height: math.unit(4, "meter"),
  3297. weight: math.unit(150, "kg"),
  3298. name: "Side (NSFW)",
  3299. image: {
  3300. source: "./media/characters/talan/side-nsfw.svg",
  3301. bottom: 29 / 3734
  3302. }
  3303. },
  3304. back: {
  3305. height: math.unit(4, "meter"),
  3306. weight: math.unit(150, "kg"),
  3307. name: "Back",
  3308. image: {
  3309. source: "./media/characters/talan/back.svg"
  3310. }
  3311. },
  3312. dickBottom: {
  3313. height: math.unit(0.621, "meter"),
  3314. name: "Dick (Bottom)",
  3315. image: {
  3316. source: "./media/characters/talan/dick-bottom.svg"
  3317. }
  3318. },
  3319. dickTop: {
  3320. height: math.unit(0.621, "meter"),
  3321. name: "Dick (Top)",
  3322. image: {
  3323. source: "./media/characters/talan/dick-top.svg"
  3324. }
  3325. },
  3326. dickSide: {
  3327. height: math.unit(0.305, "meter"),
  3328. name: "Dick (Side)",
  3329. image: {
  3330. source: "./media/characters/talan/dick-side.svg"
  3331. }
  3332. },
  3333. dickFront: {
  3334. height: math.unit(0.305, "meter"),
  3335. name: "Dick (Front)",
  3336. image: {
  3337. source: "./media/characters/talan/dick-front.svg"
  3338. }
  3339. },
  3340. },
  3341. [
  3342. {
  3343. name: "Normal",
  3344. height: math.unit(4, "meters")
  3345. },
  3346. {
  3347. name: "Macro",
  3348. height: math.unit(100, "meters")
  3349. },
  3350. {
  3351. name: "Megamacro",
  3352. height: math.unit(2, "miles"),
  3353. default: true
  3354. },
  3355. {
  3356. name: "Gigamacro",
  3357. height: math.unit(5000, "miles")
  3358. },
  3359. {
  3360. name: "Teramacro",
  3361. height: math.unit(100, "parsecs")
  3362. }
  3363. ]
  3364. ))
  3365. characterMakers.push(() => makeCharacter(
  3366. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3367. {
  3368. front: {
  3369. height: math.unit(2, "meter"),
  3370. weight: math.unit(90, "kg"),
  3371. name: "Front",
  3372. image: {
  3373. source: "./media/characters/gael'rathus/front.svg"
  3374. }
  3375. },
  3376. frontAlt: {
  3377. height: math.unit(2, "meter"),
  3378. weight: math.unit(90, "kg"),
  3379. name: "Front (alt)",
  3380. image: {
  3381. source: "./media/characters/gael'rathus/front-alt.svg"
  3382. }
  3383. },
  3384. frontAlt2: {
  3385. height: math.unit(2, "meter"),
  3386. weight: math.unit(90, "kg"),
  3387. name: "Front (alt 2)",
  3388. image: {
  3389. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3390. }
  3391. }
  3392. },
  3393. [
  3394. {
  3395. name: "Normal",
  3396. height: math.unit(9, "feet"),
  3397. default: true
  3398. },
  3399. {
  3400. name: "Large",
  3401. height: math.unit(25, "feet")
  3402. },
  3403. {
  3404. name: "Macro",
  3405. height: math.unit(0.25, "miles")
  3406. },
  3407. {
  3408. name: "Megamacro",
  3409. height: math.unit(10, "miles")
  3410. }
  3411. ]
  3412. ))
  3413. characterMakers.push(() => makeCharacter(
  3414. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3415. {
  3416. side: {
  3417. height: math.unit(2, "meter"),
  3418. weight: math.unit(140, "kg"),
  3419. name: "Side",
  3420. image: {
  3421. source: "./media/characters/sosha/side.svg",
  3422. bottom: 0.042
  3423. }
  3424. },
  3425. },
  3426. [
  3427. {
  3428. name: "Normal",
  3429. height: math.unit(12, "feet"),
  3430. default: true
  3431. }
  3432. ]
  3433. ))
  3434. characterMakers.push(() => makeCharacter(
  3435. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3436. {
  3437. side: {
  3438. height: math.unit(5 + 5 / 12, "feet"),
  3439. weight: math.unit(170, "kg"),
  3440. name: "Side",
  3441. image: {
  3442. source: "./media/characters/runnola/side.svg",
  3443. extra: 741 / 448,
  3444. bottom: 0.05
  3445. }
  3446. },
  3447. },
  3448. [
  3449. {
  3450. name: "Small",
  3451. height: math.unit(3, "feet")
  3452. },
  3453. {
  3454. name: "Normal",
  3455. height: math.unit(5 + 5 / 12, "feet"),
  3456. default: true
  3457. },
  3458. {
  3459. name: "Big",
  3460. height: math.unit(10, "feet")
  3461. },
  3462. ]
  3463. ))
  3464. characterMakers.push(() => makeCharacter(
  3465. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3466. {
  3467. front: {
  3468. height: math.unit(2, "meter"),
  3469. weight: math.unit(50, "kg"),
  3470. name: "Front",
  3471. image: {
  3472. source: "./media/characters/kurribird/front.svg",
  3473. bottom: 0.015
  3474. }
  3475. },
  3476. frontAlt: {
  3477. height: math.unit(1.5, "meter"),
  3478. weight: math.unit(50, "kg"),
  3479. name: "Front (Alt)",
  3480. image: {
  3481. source: "./media/characters/kurribird/front-alt.svg",
  3482. extra: 1.45
  3483. }
  3484. },
  3485. },
  3486. [
  3487. {
  3488. name: "Normal",
  3489. height: math.unit(7, "feet")
  3490. },
  3491. {
  3492. name: "Big",
  3493. height: math.unit(12, "feet"),
  3494. default: true
  3495. },
  3496. {
  3497. name: "Macro",
  3498. height: math.unit(1500, "feet")
  3499. },
  3500. {
  3501. name: "Megamacro",
  3502. height: math.unit(2, "miles")
  3503. }
  3504. ]
  3505. ))
  3506. characterMakers.push(() => makeCharacter(
  3507. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3508. {
  3509. front: {
  3510. height: math.unit(2, "meter"),
  3511. weight: math.unit(80, "kg"),
  3512. name: "Front",
  3513. image: {
  3514. source: "./media/characters/elbial/front.svg",
  3515. extra: 1643 / 1556,
  3516. bottom: 60.2 / 1696
  3517. }
  3518. },
  3519. side: {
  3520. height: math.unit(2, "meter"),
  3521. weight: math.unit(80, "kg"),
  3522. name: "Side",
  3523. image: {
  3524. source: "./media/characters/elbial/side.svg",
  3525. extra: 1601/1528,
  3526. bottom: 97/1698
  3527. }
  3528. },
  3529. back: {
  3530. height: math.unit(2, "meter"),
  3531. weight: math.unit(80, "kg"),
  3532. name: "Back",
  3533. image: {
  3534. source: "./media/characters/elbial/back.svg",
  3535. extra: 1653/1569,
  3536. bottom: 20/1673
  3537. }
  3538. },
  3539. frontDressed: {
  3540. height: math.unit(2, "meter"),
  3541. weight: math.unit(80, "kg"),
  3542. name: "Front (Dressed)",
  3543. image: {
  3544. source: "./media/characters/elbial/front-dressed.svg",
  3545. extra: 1638/1569,
  3546. bottom: 70/1708
  3547. }
  3548. },
  3549. genitals: {
  3550. height: math.unit(2 / 3.367, "meter"),
  3551. name: "Genitals",
  3552. image: {
  3553. source: "./media/characters/elbial/genitals.svg"
  3554. }
  3555. },
  3556. },
  3557. [
  3558. {
  3559. name: "Large",
  3560. height: math.unit(100, "feet")
  3561. },
  3562. {
  3563. name: "Macro",
  3564. height: math.unit(500, "feet"),
  3565. default: true
  3566. },
  3567. {
  3568. name: "Megamacro",
  3569. height: math.unit(10, "miles")
  3570. },
  3571. {
  3572. name: "Gigamacro",
  3573. height: math.unit(25000, "miles")
  3574. },
  3575. {
  3576. name: "Full-Size",
  3577. height: math.unit(8000000, "gigaparsecs")
  3578. }
  3579. ]
  3580. ))
  3581. characterMakers.push(() => makeCharacter(
  3582. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3583. {
  3584. front: {
  3585. height: math.unit(2, "meter"),
  3586. weight: math.unit(60, "kg"),
  3587. name: "Front",
  3588. image: {
  3589. source: "./media/characters/noah/front.svg"
  3590. }
  3591. },
  3592. talons: {
  3593. height: math.unit(0.315, "meter"),
  3594. name: "Talons",
  3595. image: {
  3596. source: "./media/characters/noah/talons.svg"
  3597. }
  3598. }
  3599. },
  3600. [
  3601. {
  3602. name: "Large",
  3603. height: math.unit(50, "feet")
  3604. },
  3605. {
  3606. name: "Macro",
  3607. height: math.unit(750, "feet"),
  3608. default: true
  3609. },
  3610. {
  3611. name: "Megamacro",
  3612. height: math.unit(50, "miles")
  3613. },
  3614. {
  3615. name: "Gigamacro",
  3616. height: math.unit(100000, "miles")
  3617. },
  3618. {
  3619. name: "Full-Size",
  3620. height: math.unit(3000000000, "miles")
  3621. }
  3622. ]
  3623. ))
  3624. characterMakers.push(() => makeCharacter(
  3625. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3626. {
  3627. front: {
  3628. height: math.unit(2, "meter"),
  3629. weight: math.unit(80, "kg"),
  3630. name: "Front",
  3631. image: {
  3632. source: "./media/characters/natalya/front.svg"
  3633. }
  3634. },
  3635. back: {
  3636. height: math.unit(2, "meter"),
  3637. weight: math.unit(80, "kg"),
  3638. name: "Back",
  3639. image: {
  3640. source: "./media/characters/natalya/back.svg"
  3641. }
  3642. }
  3643. },
  3644. [
  3645. {
  3646. name: "Normal",
  3647. height: math.unit(150, "feet"),
  3648. default: true
  3649. },
  3650. {
  3651. name: "Megamacro",
  3652. height: math.unit(5, "miles")
  3653. },
  3654. {
  3655. name: "Full-Size",
  3656. height: math.unit(600, "kiloparsecs")
  3657. }
  3658. ]
  3659. ))
  3660. characterMakers.push(() => makeCharacter(
  3661. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3662. {
  3663. front: {
  3664. height: math.unit(2, "meter"),
  3665. weight: math.unit(50, "kg"),
  3666. name: "Front",
  3667. image: {
  3668. source: "./media/characters/erestrebah/front.svg",
  3669. extra: 1262/1162,
  3670. bottom: 96/1358
  3671. }
  3672. },
  3673. back: {
  3674. height: math.unit(2, "meter"),
  3675. weight: math.unit(50, "kg"),
  3676. name: "Back",
  3677. image: {
  3678. source: "./media/characters/erestrebah/back.svg",
  3679. extra: 1257/1139,
  3680. bottom: 13/1270
  3681. }
  3682. },
  3683. wing: {
  3684. height: math.unit(2, "meter"),
  3685. weight: math.unit(50, "kg"),
  3686. name: "Wing",
  3687. image: {
  3688. source: "./media/characters/erestrebah/wing.svg",
  3689. extra: 1262/1162,
  3690. bottom: 96/1358
  3691. }
  3692. },
  3693. mouth: {
  3694. height: math.unit(0.39, "feet"),
  3695. name: "Mouth",
  3696. image: {
  3697. source: "./media/characters/erestrebah/mouth.svg"
  3698. }
  3699. }
  3700. },
  3701. [
  3702. {
  3703. name: "Normal",
  3704. height: math.unit(10, "feet")
  3705. },
  3706. {
  3707. name: "Large",
  3708. height: math.unit(50, "feet"),
  3709. default: true
  3710. },
  3711. {
  3712. name: "Macro",
  3713. height: math.unit(300, "feet")
  3714. },
  3715. {
  3716. name: "Macro+",
  3717. height: math.unit(750, "feet")
  3718. },
  3719. {
  3720. name: "Megamacro",
  3721. height: math.unit(3, "miles")
  3722. }
  3723. ]
  3724. ))
  3725. characterMakers.push(() => makeCharacter(
  3726. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3727. {
  3728. front: {
  3729. height: math.unit(2, "meter"),
  3730. weight: math.unit(80, "kg"),
  3731. name: "Front",
  3732. image: {
  3733. source: "./media/characters/jennifer/front.svg",
  3734. bottom: 0.11,
  3735. extra: 1.16
  3736. }
  3737. },
  3738. frontAlt: {
  3739. height: math.unit(2, "meter"),
  3740. weight: math.unit(80, "kg"),
  3741. name: "Front (Alt)",
  3742. image: {
  3743. source: "./media/characters/jennifer/front-alt.svg"
  3744. }
  3745. }
  3746. },
  3747. [
  3748. {
  3749. name: "Canon Height",
  3750. height: math.unit(120, "feet"),
  3751. default: true
  3752. },
  3753. {
  3754. name: "Macro+",
  3755. height: math.unit(300, "feet")
  3756. },
  3757. {
  3758. name: "Megamacro",
  3759. height: math.unit(20000, "feet")
  3760. }
  3761. ]
  3762. ))
  3763. characterMakers.push(() => makeCharacter(
  3764. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3765. {
  3766. front: {
  3767. height: math.unit(2, "meter"),
  3768. weight: math.unit(50, "kg"),
  3769. name: "Front",
  3770. image: {
  3771. source: "./media/characters/kalista/front.svg",
  3772. extra: 1314/1145,
  3773. bottom: 101/1415
  3774. }
  3775. },
  3776. back: {
  3777. height: math.unit(2, "meter"),
  3778. weight: math.unit(50, "kg"),
  3779. name: "Back",
  3780. image: {
  3781. source: "./media/characters/kalista/back.svg",
  3782. extra: 1366 / 1156,
  3783. bottom: 33.9 / 1362.78
  3784. }
  3785. }
  3786. },
  3787. [
  3788. {
  3789. name: "Uncomfortably Small",
  3790. height: math.unit(10, "feet")
  3791. },
  3792. {
  3793. name: "Small",
  3794. height: math.unit(30, "feet")
  3795. },
  3796. {
  3797. name: "Macro",
  3798. height: math.unit(100, "feet"),
  3799. default: true
  3800. },
  3801. {
  3802. name: "Macro+",
  3803. height: math.unit(2000, "feet")
  3804. },
  3805. {
  3806. name: "True Form",
  3807. height: math.unit(8924, "miles")
  3808. }
  3809. ]
  3810. ))
  3811. characterMakers.push(() => makeCharacter(
  3812. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3813. {
  3814. front: {
  3815. height: math.unit(2, "meter"),
  3816. weight: math.unit(120, "kg"),
  3817. name: "Front",
  3818. image: {
  3819. source: "./media/characters/ggv/front.svg"
  3820. }
  3821. },
  3822. side: {
  3823. height: math.unit(2, "meter"),
  3824. weight: math.unit(120, "kg"),
  3825. name: "Side",
  3826. image: {
  3827. source: "./media/characters/ggv/side.svg"
  3828. }
  3829. }
  3830. },
  3831. [
  3832. {
  3833. name: "Extremely Puny",
  3834. height: math.unit(9 + 5 / 12, "feet")
  3835. },
  3836. {
  3837. name: "Horribly Small",
  3838. height: math.unit(47.7, "miles"),
  3839. default: true
  3840. },
  3841. {
  3842. name: "Reasonably Sized",
  3843. height: math.unit(25000, "parsecs")
  3844. },
  3845. {
  3846. name: "Slightly Uncompressed",
  3847. height: math.unit(7.77e31, "parsecs")
  3848. },
  3849. {
  3850. name: "Omniversal",
  3851. height: math.unit(1e300, "meters")
  3852. },
  3853. ]
  3854. ))
  3855. characterMakers.push(() => makeCharacter(
  3856. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3857. {
  3858. front: {
  3859. height: math.unit(2, "meter"),
  3860. weight: math.unit(75, "lb"),
  3861. name: "Front",
  3862. image: {
  3863. source: "./media/characters/napalm/front.svg"
  3864. }
  3865. },
  3866. back: {
  3867. height: math.unit(2, "meter"),
  3868. weight: math.unit(75, "lb"),
  3869. name: "Back",
  3870. image: {
  3871. source: "./media/characters/napalm/back.svg"
  3872. }
  3873. }
  3874. },
  3875. [
  3876. {
  3877. name: "Standard",
  3878. height: math.unit(55, "feet"),
  3879. default: true
  3880. }
  3881. ]
  3882. ))
  3883. characterMakers.push(() => makeCharacter(
  3884. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3885. {
  3886. front: {
  3887. height: math.unit(7 + 5 / 6, "feet"),
  3888. weight: math.unit(325, "lb"),
  3889. name: "Front",
  3890. image: {
  3891. source: "./media/characters/asana/front.svg",
  3892. extra: 1133 / 1060,
  3893. bottom: 15.2 / 1148.6
  3894. }
  3895. },
  3896. back: {
  3897. height: math.unit(7 + 5 / 6, "feet"),
  3898. weight: math.unit(325, "lb"),
  3899. name: "Back",
  3900. image: {
  3901. source: "./media/characters/asana/back.svg",
  3902. extra: 1114 / 1043,
  3903. bottom: 5 / 1120
  3904. }
  3905. },
  3906. dressedDark: {
  3907. height: math.unit(7 + 5 / 6, "feet"),
  3908. weight: math.unit(325, "lb"),
  3909. name: "Dressed (Dark)",
  3910. image: {
  3911. source: "./media/characters/asana/dressed-dark.svg",
  3912. extra: 1133 / 1060,
  3913. bottom: 15.2 / 1148.6
  3914. }
  3915. },
  3916. dressedLight: {
  3917. height: math.unit(7 + 5 / 6, "feet"),
  3918. weight: math.unit(325, "lb"),
  3919. name: "Dressed (Light)",
  3920. image: {
  3921. source: "./media/characters/asana/dressed-light.svg",
  3922. extra: 1133 / 1060,
  3923. bottom: 15.2 / 1148.6
  3924. }
  3925. },
  3926. },
  3927. [
  3928. {
  3929. name: "Standard",
  3930. height: math.unit(7 + 5 / 6, "feet"),
  3931. default: true
  3932. },
  3933. {
  3934. name: "Large",
  3935. height: math.unit(10, "meters")
  3936. },
  3937. {
  3938. name: "Macro",
  3939. height: math.unit(2500, "meters")
  3940. },
  3941. {
  3942. name: "Megamacro",
  3943. height: math.unit(5e6, "meters")
  3944. },
  3945. {
  3946. name: "Examacro",
  3947. height: math.unit(5e12, "lightyears")
  3948. },
  3949. {
  3950. name: "Max Size",
  3951. height: math.unit(1e31, "lightyears")
  3952. }
  3953. ]
  3954. ))
  3955. characterMakers.push(() => makeCharacter(
  3956. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3957. {
  3958. front: {
  3959. height: math.unit(2, "meter"),
  3960. weight: math.unit(60, "kg"),
  3961. name: "Front",
  3962. image: {
  3963. source: "./media/characters/ebony/front.svg",
  3964. bottom: 0.03,
  3965. extra: 1045 / 810 + 0.03
  3966. }
  3967. },
  3968. side: {
  3969. height: math.unit(2, "meter"),
  3970. weight: math.unit(60, "kg"),
  3971. name: "Side",
  3972. image: {
  3973. source: "./media/characters/ebony/side.svg",
  3974. bottom: 0.03,
  3975. extra: 1045 / 810 + 0.03
  3976. }
  3977. },
  3978. back: {
  3979. height: math.unit(2, "meter"),
  3980. weight: math.unit(60, "kg"),
  3981. name: "Back",
  3982. image: {
  3983. source: "./media/characters/ebony/back.svg",
  3984. bottom: 0.01,
  3985. extra: 1045 / 810 + 0.01
  3986. }
  3987. },
  3988. },
  3989. [
  3990. // TODO check why I did this lol
  3991. {
  3992. name: "Standard",
  3993. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3994. default: true
  3995. },
  3996. {
  3997. name: "Macro",
  3998. height: math.unit(200, "feet")
  3999. },
  4000. {
  4001. name: "Gigamacro",
  4002. height: math.unit(13000, "km")
  4003. }
  4004. ]
  4005. ))
  4006. characterMakers.push(() => makeCharacter(
  4007. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4008. {
  4009. front: {
  4010. height: math.unit(6, "feet"),
  4011. weight: math.unit(175, "lb"),
  4012. name: "Front",
  4013. image: {
  4014. source: "./media/characters/mountain/front.svg",
  4015. extra: 972 / 955,
  4016. bottom: 64 / 1036.6
  4017. }
  4018. },
  4019. back: {
  4020. height: math.unit(6, "feet"),
  4021. weight: math.unit(175, "lb"),
  4022. name: "Back",
  4023. image: {
  4024. source: "./media/characters/mountain/back.svg",
  4025. extra: 970 / 950,
  4026. bottom: 28.25 / 999
  4027. }
  4028. },
  4029. },
  4030. [
  4031. {
  4032. name: "Large",
  4033. height: math.unit(20, "meters")
  4034. },
  4035. {
  4036. name: "Macro",
  4037. height: math.unit(300, "meters")
  4038. },
  4039. {
  4040. name: "Gigamacro",
  4041. height: math.unit(10000, "km"),
  4042. default: true
  4043. },
  4044. {
  4045. name: "Examacro",
  4046. height: math.unit(10e9, "lightyears")
  4047. }
  4048. ]
  4049. ))
  4050. characterMakers.push(() => makeCharacter(
  4051. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4052. {
  4053. front: {
  4054. height: math.unit(8, "feet"),
  4055. weight: math.unit(500, "lb"),
  4056. name: "Front",
  4057. image: {
  4058. source: "./media/characters/rick/front.svg"
  4059. }
  4060. }
  4061. },
  4062. [
  4063. {
  4064. name: "Normal",
  4065. height: math.unit(8, "feet"),
  4066. default: true
  4067. },
  4068. {
  4069. name: "Macro",
  4070. height: math.unit(5, "km")
  4071. }
  4072. ]
  4073. ))
  4074. characterMakers.push(() => makeCharacter(
  4075. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4076. {
  4077. front: {
  4078. height: math.unit(8, "feet"),
  4079. weight: math.unit(120, "lb"),
  4080. name: "Front",
  4081. image: {
  4082. source: "./media/characters/ona/front.svg"
  4083. }
  4084. },
  4085. frontAlt: {
  4086. height: math.unit(8, "feet"),
  4087. weight: math.unit(120, "lb"),
  4088. name: "Front (Alt)",
  4089. image: {
  4090. source: "./media/characters/ona/front-alt.svg"
  4091. }
  4092. },
  4093. back: {
  4094. height: math.unit(8, "feet"),
  4095. weight: math.unit(120, "lb"),
  4096. name: "Back",
  4097. image: {
  4098. source: "./media/characters/ona/back.svg"
  4099. }
  4100. },
  4101. foot: {
  4102. height: math.unit(1.1, "feet"),
  4103. name: "Foot",
  4104. image: {
  4105. source: "./media/characters/ona/foot.svg"
  4106. }
  4107. }
  4108. },
  4109. [
  4110. {
  4111. name: "Megamacro",
  4112. height: math.unit(70, "km"),
  4113. default: true
  4114. },
  4115. {
  4116. name: "Gigamacro",
  4117. height: math.unit(681818, "miles")
  4118. },
  4119. {
  4120. name: "Examacro",
  4121. height: math.unit(3800000, "lightyears")
  4122. },
  4123. ]
  4124. ))
  4125. characterMakers.push(() => makeCharacter(
  4126. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4127. {
  4128. front: {
  4129. height: math.unit(12, "feet"),
  4130. weight: math.unit(3000, "lb"),
  4131. name: "Front",
  4132. image: {
  4133. source: "./media/characters/mech/front.svg",
  4134. extra: 2900 / 2770,
  4135. bottom: 110 / 3010
  4136. }
  4137. },
  4138. back: {
  4139. height: math.unit(12, "feet"),
  4140. weight: math.unit(3000, "lb"),
  4141. name: "Back",
  4142. image: {
  4143. source: "./media/characters/mech/back.svg",
  4144. extra: 3011 / 2890,
  4145. bottom: 94 / 3105
  4146. }
  4147. },
  4148. maw: {
  4149. height: math.unit(3.07, "feet"),
  4150. name: "Maw",
  4151. image: {
  4152. source: "./media/characters/mech/maw.svg"
  4153. }
  4154. },
  4155. head: {
  4156. height: math.unit(2.82, "feet"),
  4157. name: "Head",
  4158. image: {
  4159. source: "./media/characters/mech/head.svg"
  4160. }
  4161. },
  4162. dick: {
  4163. height: math.unit(1.43, "feet"),
  4164. name: "Dick",
  4165. image: {
  4166. source: "./media/characters/mech/dick.svg"
  4167. }
  4168. },
  4169. },
  4170. [
  4171. {
  4172. name: "Normal",
  4173. height: math.unit(12, "feet")
  4174. },
  4175. {
  4176. name: "Macro",
  4177. height: math.unit(300, "feet"),
  4178. default: true
  4179. },
  4180. {
  4181. name: "Macro+",
  4182. height: math.unit(1500, "feet")
  4183. },
  4184. ]
  4185. ))
  4186. characterMakers.push(() => makeCharacter(
  4187. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4188. {
  4189. front: {
  4190. height: math.unit(1.3, "meter"),
  4191. weight: math.unit(30, "kg"),
  4192. name: "Front",
  4193. image: {
  4194. source: "./media/characters/gregory/front.svg",
  4195. }
  4196. }
  4197. },
  4198. [
  4199. {
  4200. name: "Normal",
  4201. height: math.unit(1.3, "meter"),
  4202. default: true
  4203. },
  4204. {
  4205. name: "Macro",
  4206. height: math.unit(20, "meter")
  4207. }
  4208. ]
  4209. ))
  4210. characterMakers.push(() => makeCharacter(
  4211. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4212. {
  4213. front: {
  4214. height: math.unit(2.8, "meter"),
  4215. weight: math.unit(200, "kg"),
  4216. name: "Front",
  4217. image: {
  4218. source: "./media/characters/elory/front.svg",
  4219. }
  4220. }
  4221. },
  4222. [
  4223. {
  4224. name: "Normal",
  4225. height: math.unit(2.8, "meter"),
  4226. default: true
  4227. },
  4228. {
  4229. name: "Macro",
  4230. height: math.unit(38, "meter")
  4231. }
  4232. ]
  4233. ))
  4234. characterMakers.push(() => makeCharacter(
  4235. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4236. {
  4237. front: {
  4238. height: math.unit(470, "feet"),
  4239. weight: math.unit(924, "tons"),
  4240. name: "Front",
  4241. image: {
  4242. source: "./media/characters/angelpatamon/front.svg",
  4243. }
  4244. }
  4245. },
  4246. [
  4247. {
  4248. name: "Normal",
  4249. height: math.unit(470, "feet"),
  4250. default: true
  4251. },
  4252. {
  4253. name: "Deity Size I",
  4254. height: math.unit(28651.2, "km")
  4255. },
  4256. {
  4257. name: "Deity Size II",
  4258. height: math.unit(171907.2, "km")
  4259. }
  4260. ]
  4261. ))
  4262. characterMakers.push(() => makeCharacter(
  4263. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4264. {
  4265. side: {
  4266. height: math.unit(7.2, "meter"),
  4267. weight: math.unit(8.2, "tons"),
  4268. name: "Side",
  4269. image: {
  4270. source: "./media/characters/cryae/side.svg",
  4271. extra: 3500 / 1500
  4272. }
  4273. }
  4274. },
  4275. [
  4276. {
  4277. name: "Normal",
  4278. height: math.unit(7.2, "meter"),
  4279. default: true
  4280. }
  4281. ]
  4282. ))
  4283. characterMakers.push(() => makeCharacter(
  4284. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4285. {
  4286. front: {
  4287. height: math.unit(6, "feet"),
  4288. weight: math.unit(175, "lb"),
  4289. name: "Front",
  4290. image: {
  4291. source: "./media/characters/xera/front.svg",
  4292. extra: 2377 / 1972,
  4293. bottom: 75.5 / 2452
  4294. }
  4295. },
  4296. side: {
  4297. height: math.unit(6, "feet"),
  4298. weight: math.unit(175, "lb"),
  4299. name: "Side",
  4300. image: {
  4301. source: "./media/characters/xera/side.svg",
  4302. extra: 2345 / 2019,
  4303. bottom: 39.7 / 2384
  4304. }
  4305. },
  4306. back: {
  4307. height: math.unit(6, "feet"),
  4308. weight: math.unit(175, "lb"),
  4309. name: "Back",
  4310. image: {
  4311. source: "./media/characters/xera/back.svg",
  4312. extra: 2095 / 1984,
  4313. bottom: 67 / 2166
  4314. }
  4315. },
  4316. },
  4317. [
  4318. {
  4319. name: "Small",
  4320. height: math.unit(10, "feet")
  4321. },
  4322. {
  4323. name: "Macro",
  4324. height: math.unit(500, "meters"),
  4325. default: true
  4326. },
  4327. {
  4328. name: "Macro+",
  4329. height: math.unit(10, "km")
  4330. },
  4331. {
  4332. name: "Gigamacro",
  4333. height: math.unit(25000, "km")
  4334. },
  4335. {
  4336. name: "Teramacro",
  4337. height: math.unit(3e6, "km")
  4338. }
  4339. ]
  4340. ))
  4341. characterMakers.push(() => makeCharacter(
  4342. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4343. {
  4344. front: {
  4345. height: math.unit(6, "feet"),
  4346. weight: math.unit(175, "lb"),
  4347. name: "Front",
  4348. image: {
  4349. source: "./media/characters/nebula/front.svg",
  4350. extra: 2566 / 2362,
  4351. bottom: 81 / 2644
  4352. }
  4353. }
  4354. },
  4355. [
  4356. {
  4357. name: "Small",
  4358. height: math.unit(4.5, "meters")
  4359. },
  4360. {
  4361. name: "Macro",
  4362. height: math.unit(1500, "meters"),
  4363. default: true
  4364. },
  4365. {
  4366. name: "Megamacro",
  4367. height: math.unit(150, "km")
  4368. },
  4369. {
  4370. name: "Gigamacro",
  4371. height: math.unit(27000, "km")
  4372. }
  4373. ]
  4374. ))
  4375. characterMakers.push(() => makeCharacter(
  4376. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4377. {
  4378. front: {
  4379. height: math.unit(6, "feet"),
  4380. weight: math.unit(225, "lb"),
  4381. name: "Front",
  4382. image: {
  4383. source: "./media/characters/abysgar/front.svg"
  4384. }
  4385. }
  4386. },
  4387. [
  4388. {
  4389. name: "Small",
  4390. height: math.unit(4.5, "meters")
  4391. },
  4392. {
  4393. name: "Macro",
  4394. height: math.unit(1250, "meters"),
  4395. default: true
  4396. },
  4397. {
  4398. name: "Megamacro",
  4399. height: math.unit(125, "km")
  4400. },
  4401. {
  4402. name: "Gigamacro",
  4403. height: math.unit(26000, "km")
  4404. }
  4405. ]
  4406. ))
  4407. characterMakers.push(() => makeCharacter(
  4408. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4409. {
  4410. front: {
  4411. height: math.unit(6, "feet"),
  4412. weight: math.unit(180, "lb"),
  4413. name: "Front",
  4414. image: {
  4415. source: "./media/characters/yakuz/front.svg"
  4416. }
  4417. }
  4418. },
  4419. [
  4420. {
  4421. name: "Small",
  4422. height: math.unit(5, "meters")
  4423. },
  4424. {
  4425. name: "Macro",
  4426. height: math.unit(1500, "meters"),
  4427. default: true
  4428. },
  4429. {
  4430. name: "Megamacro",
  4431. height: math.unit(200, "km")
  4432. },
  4433. {
  4434. name: "Gigamacro",
  4435. height: math.unit(100000, "km")
  4436. }
  4437. ]
  4438. ))
  4439. characterMakers.push(() => makeCharacter(
  4440. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4441. {
  4442. front: {
  4443. height: math.unit(6, "feet"),
  4444. weight: math.unit(175, "lb"),
  4445. name: "Front",
  4446. image: {
  4447. source: "./media/characters/mirova/front.svg",
  4448. extra: 3334 / 3071,
  4449. bottom: 42 / 3375.6
  4450. }
  4451. }
  4452. },
  4453. [
  4454. {
  4455. name: "Small",
  4456. height: math.unit(5, "meters")
  4457. },
  4458. {
  4459. name: "Macro",
  4460. height: math.unit(900, "meters"),
  4461. default: true
  4462. },
  4463. {
  4464. name: "Megamacro",
  4465. height: math.unit(135, "km")
  4466. },
  4467. {
  4468. name: "Gigamacro",
  4469. height: math.unit(20000, "km")
  4470. }
  4471. ]
  4472. ))
  4473. characterMakers.push(() => makeCharacter(
  4474. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4475. {
  4476. side: {
  4477. height: math.unit(28.35, "feet"),
  4478. weight: math.unit(99.75, "tons"),
  4479. name: "Side",
  4480. image: {
  4481. source: "./media/characters/asana-mech/side.svg",
  4482. extra: 923 / 699,
  4483. bottom: 50 / 975
  4484. }
  4485. },
  4486. chaingun: {
  4487. height: math.unit(7, "feet"),
  4488. weight: math.unit(2400, "lb"),
  4489. name: "Chaingun",
  4490. image: {
  4491. source: "./media/characters/asana-mech/chaingun.svg"
  4492. }
  4493. },
  4494. laser: {
  4495. height: math.unit(7.12, "feet"),
  4496. weight: math.unit(2000, "lb"),
  4497. name: "Laser",
  4498. image: {
  4499. source: "./media/characters/asana-mech/laser.svg"
  4500. }
  4501. },
  4502. },
  4503. [
  4504. {
  4505. name: "Normal",
  4506. height: math.unit(28.35, "feet"),
  4507. default: true
  4508. },
  4509. {
  4510. name: "Macro",
  4511. height: math.unit(2500, "feet")
  4512. },
  4513. {
  4514. name: "Megamacro",
  4515. height: math.unit(25, "miles")
  4516. },
  4517. {
  4518. name: "Examacro",
  4519. height: math.unit(6e8, "lightyears")
  4520. },
  4521. ]
  4522. ))
  4523. characterMakers.push(() => makeCharacter(
  4524. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4525. {
  4526. front: {
  4527. height: math.unit(5, "meters"),
  4528. weight: math.unit(1000, "kg"),
  4529. name: "Front",
  4530. image: {
  4531. source: "./media/characters/asche/front.svg",
  4532. extra: 1258 / 1190,
  4533. bottom: 47 / 1305
  4534. }
  4535. },
  4536. frontUnderwear: {
  4537. height: math.unit(5, "meters"),
  4538. weight: math.unit(1000, "kg"),
  4539. name: "Front (Underwear)",
  4540. image: {
  4541. source: "./media/characters/asche/front-underwear.svg",
  4542. extra: 1258 / 1190,
  4543. bottom: 47 / 1305
  4544. }
  4545. },
  4546. frontDressed: {
  4547. height: math.unit(5, "meters"),
  4548. weight: math.unit(1000, "kg"),
  4549. name: "Front (Dressed)",
  4550. image: {
  4551. source: "./media/characters/asche/front-dressed.svg",
  4552. extra: 1258 / 1190,
  4553. bottom: 47 / 1305
  4554. }
  4555. },
  4556. frontArmor: {
  4557. height: math.unit(5, "meters"),
  4558. weight: math.unit(1000, "kg"),
  4559. name: "Front (Armored)",
  4560. image: {
  4561. source: "./media/characters/asche/front-armored.svg",
  4562. extra: 1374 / 1308,
  4563. bottom: 23 / 1397
  4564. }
  4565. },
  4566. mp724: {
  4567. height: math.unit(0.96, "meters"),
  4568. weight: math.unit(38, "kg"),
  4569. name: "H&K MP724",
  4570. image: {
  4571. source: "./media/characters/asche/h&k-mp724.svg"
  4572. }
  4573. },
  4574. side: {
  4575. height: math.unit(5, "meters"),
  4576. weight: math.unit(1000, "kg"),
  4577. name: "Side",
  4578. image: {
  4579. source: "./media/characters/asche/side.svg",
  4580. extra: 1717 / 1609,
  4581. bottom: 0.005
  4582. }
  4583. },
  4584. back: {
  4585. height: math.unit(5, "meters"),
  4586. weight: math.unit(1000, "kg"),
  4587. name: "Back",
  4588. image: {
  4589. source: "./media/characters/asche/back.svg",
  4590. extra: 1570 / 1501
  4591. }
  4592. },
  4593. },
  4594. [
  4595. {
  4596. name: "DEFCON 5",
  4597. height: math.unit(5, "meters")
  4598. },
  4599. {
  4600. name: "DEFCON 4",
  4601. height: math.unit(500, "meters"),
  4602. default: true
  4603. },
  4604. {
  4605. name: "DEFCON 3",
  4606. height: math.unit(5, "km")
  4607. },
  4608. {
  4609. name: "DEFCON 2",
  4610. height: math.unit(500, "km")
  4611. },
  4612. {
  4613. name: "DEFCON 1",
  4614. height: math.unit(500000, "km")
  4615. },
  4616. {
  4617. name: "DEFCON 0",
  4618. height: math.unit(3, "gigaparsecs")
  4619. },
  4620. ]
  4621. ))
  4622. characterMakers.push(() => makeCharacter(
  4623. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4624. {
  4625. front: {
  4626. height: math.unit(2, "meters"),
  4627. weight: math.unit(76, "kg"),
  4628. name: "Front",
  4629. image: {
  4630. source: "./media/characters/gale/front.svg"
  4631. }
  4632. },
  4633. frontAlt1: {
  4634. height: math.unit(2, "meters"),
  4635. weight: math.unit(76, "kg"),
  4636. name: "Front (Alt 1)",
  4637. image: {
  4638. source: "./media/characters/gale/front-alt-1.svg"
  4639. }
  4640. },
  4641. frontAlt2: {
  4642. height: math.unit(2, "meters"),
  4643. weight: math.unit(76, "kg"),
  4644. name: "Front (Alt 2)",
  4645. image: {
  4646. source: "./media/characters/gale/front-alt-2.svg"
  4647. }
  4648. },
  4649. },
  4650. [
  4651. {
  4652. name: "Normal",
  4653. height: math.unit(7, "feet")
  4654. },
  4655. {
  4656. name: "Macro",
  4657. height: math.unit(150, "feet"),
  4658. default: true
  4659. },
  4660. {
  4661. name: "Macro+",
  4662. height: math.unit(300, "feet")
  4663. },
  4664. ]
  4665. ))
  4666. characterMakers.push(() => makeCharacter(
  4667. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4668. {
  4669. front: {
  4670. height: math.unit(5 + 10/12, "feet"),
  4671. weight: math.unit(67, "kg"),
  4672. name: "Front",
  4673. image: {
  4674. source: "./media/characters/draylen/front.svg",
  4675. extra: 832/777,
  4676. bottom: 85/917
  4677. }
  4678. }
  4679. },
  4680. [
  4681. {
  4682. name: "Normal",
  4683. height: math.unit(5 + 10/12, "feet")
  4684. },
  4685. {
  4686. name: "Macro",
  4687. height: math.unit(150, "feet"),
  4688. default: true
  4689. }
  4690. ]
  4691. ))
  4692. characterMakers.push(() => makeCharacter(
  4693. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4694. {
  4695. front: {
  4696. height: math.unit(7 + 9 / 12, "feet"),
  4697. weight: math.unit(379, "lbs"),
  4698. name: "Front",
  4699. image: {
  4700. source: "./media/characters/chez/front.svg"
  4701. }
  4702. },
  4703. side: {
  4704. height: math.unit(7 + 9 / 12, "feet"),
  4705. weight: math.unit(379, "lbs"),
  4706. name: "Side",
  4707. image: {
  4708. source: "./media/characters/chez/side.svg"
  4709. }
  4710. }
  4711. },
  4712. [
  4713. {
  4714. name: "Normal",
  4715. height: math.unit(7 + 9 / 12, "feet"),
  4716. default: true
  4717. },
  4718. {
  4719. name: "God King",
  4720. height: math.unit(9750000, "meters")
  4721. }
  4722. ]
  4723. ))
  4724. characterMakers.push(() => makeCharacter(
  4725. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4726. {
  4727. front: {
  4728. height: math.unit(6, "feet"),
  4729. weight: math.unit(275, "lbs"),
  4730. name: "Front",
  4731. image: {
  4732. source: "./media/characters/kaylum/front.svg",
  4733. bottom: 0.01,
  4734. extra: 1166 / 1031
  4735. }
  4736. },
  4737. frontWingless: {
  4738. height: math.unit(6, "feet"),
  4739. weight: math.unit(275, "lbs"),
  4740. name: "Front (Wingless)",
  4741. image: {
  4742. source: "./media/characters/kaylum/front-wingless.svg",
  4743. bottom: 0.01,
  4744. extra: 1117 / 1031
  4745. }
  4746. }
  4747. },
  4748. [
  4749. {
  4750. name: "Normal",
  4751. height: math.unit(3.05, "meters")
  4752. },
  4753. {
  4754. name: "Master",
  4755. height: math.unit(5.5, "meters")
  4756. },
  4757. {
  4758. name: "Rampage",
  4759. height: math.unit(19, "meters")
  4760. },
  4761. {
  4762. name: "Macro Lite",
  4763. height: math.unit(37, "meters")
  4764. },
  4765. {
  4766. name: "Hyper Predator",
  4767. height: math.unit(61, "meters")
  4768. },
  4769. {
  4770. name: "Macro",
  4771. height: math.unit(138, "meters"),
  4772. default: true
  4773. }
  4774. ]
  4775. ))
  4776. characterMakers.push(() => makeCharacter(
  4777. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4778. {
  4779. front: {
  4780. height: math.unit(6, "feet"),
  4781. weight: math.unit(150, "lbs"),
  4782. name: "Front",
  4783. image: {
  4784. source: "./media/characters/geta/front.svg"
  4785. }
  4786. }
  4787. },
  4788. [
  4789. {
  4790. name: "Micro",
  4791. height: math.unit(3, "inches"),
  4792. default: true
  4793. },
  4794. {
  4795. name: "Normal",
  4796. height: math.unit(5 + 5 / 12, "feet")
  4797. }
  4798. ]
  4799. ))
  4800. characterMakers.push(() => makeCharacter(
  4801. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4802. {
  4803. front: {
  4804. height: math.unit(6, "feet"),
  4805. weight: math.unit(300, "lbs"),
  4806. name: "Front",
  4807. image: {
  4808. source: "./media/characters/tyrnn/front.svg"
  4809. }
  4810. }
  4811. },
  4812. [
  4813. {
  4814. name: "Main Height",
  4815. height: math.unit(355, "feet"),
  4816. default: true
  4817. },
  4818. {
  4819. name: "Fave. Height",
  4820. height: math.unit(2400, "feet")
  4821. }
  4822. ]
  4823. ))
  4824. characterMakers.push(() => makeCharacter(
  4825. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4826. {
  4827. front: {
  4828. height: math.unit(6, "feet"),
  4829. weight: math.unit(300, "lbs"),
  4830. name: "Front",
  4831. image: {
  4832. source: "./media/characters/appledectomy/front.svg"
  4833. }
  4834. }
  4835. },
  4836. [
  4837. {
  4838. name: "Macro",
  4839. height: math.unit(2500, "feet")
  4840. },
  4841. {
  4842. name: "Megamacro",
  4843. height: math.unit(50, "miles"),
  4844. default: true
  4845. },
  4846. {
  4847. name: "Gigamacro",
  4848. height: math.unit(5000, "miles")
  4849. },
  4850. {
  4851. name: "Teramacro",
  4852. height: math.unit(250000, "miles")
  4853. },
  4854. ]
  4855. ))
  4856. characterMakers.push(() => makeCharacter(
  4857. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4858. {
  4859. front: {
  4860. height: math.unit(6, "feet"),
  4861. weight: math.unit(200, "lbs"),
  4862. name: "Front",
  4863. image: {
  4864. source: "./media/characters/vulpes/front.svg",
  4865. extra: 573 / 543,
  4866. bottom: 0.033
  4867. }
  4868. },
  4869. side: {
  4870. height: math.unit(6, "feet"),
  4871. weight: math.unit(200, "lbs"),
  4872. name: "Side",
  4873. image: {
  4874. source: "./media/characters/vulpes/side.svg",
  4875. extra: 577 / 549,
  4876. bottom: 11 / 588
  4877. }
  4878. },
  4879. back: {
  4880. height: math.unit(6, "feet"),
  4881. weight: math.unit(200, "lbs"),
  4882. name: "Back",
  4883. image: {
  4884. source: "./media/characters/vulpes/back.svg",
  4885. extra: 573 / 549,
  4886. bottom: 20 / 593
  4887. }
  4888. },
  4889. feet: {
  4890. height: math.unit(1.276, "feet"),
  4891. name: "Feet",
  4892. image: {
  4893. source: "./media/characters/vulpes/feet.svg"
  4894. }
  4895. },
  4896. maw: {
  4897. height: math.unit(1.18, "feet"),
  4898. name: "Maw",
  4899. image: {
  4900. source: "./media/characters/vulpes/maw.svg"
  4901. }
  4902. },
  4903. },
  4904. [
  4905. {
  4906. name: "Micro",
  4907. height: math.unit(2, "inches")
  4908. },
  4909. {
  4910. name: "Normal",
  4911. height: math.unit(6.3, "feet")
  4912. },
  4913. {
  4914. name: "Macro",
  4915. height: math.unit(850, "feet")
  4916. },
  4917. {
  4918. name: "Megamacro",
  4919. height: math.unit(7500, "feet"),
  4920. default: true
  4921. },
  4922. {
  4923. name: "Gigamacro",
  4924. height: math.unit(570000, "miles")
  4925. }
  4926. ]
  4927. ))
  4928. characterMakers.push(() => makeCharacter(
  4929. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4930. {
  4931. front: {
  4932. height: math.unit(6, "feet"),
  4933. weight: math.unit(210, "lbs"),
  4934. name: "Front",
  4935. image: {
  4936. source: "./media/characters/rain-fallen/front.svg"
  4937. }
  4938. },
  4939. side: {
  4940. height: math.unit(6, "feet"),
  4941. weight: math.unit(210, "lbs"),
  4942. name: "Side",
  4943. image: {
  4944. source: "./media/characters/rain-fallen/side.svg"
  4945. }
  4946. },
  4947. back: {
  4948. height: math.unit(6, "feet"),
  4949. weight: math.unit(210, "lbs"),
  4950. name: "Back",
  4951. image: {
  4952. source: "./media/characters/rain-fallen/back.svg"
  4953. }
  4954. },
  4955. feral: {
  4956. height: math.unit(9, "feet"),
  4957. weight: math.unit(700, "lbs"),
  4958. name: "Feral",
  4959. image: {
  4960. source: "./media/characters/rain-fallen/feral.svg"
  4961. }
  4962. },
  4963. },
  4964. [
  4965. {
  4966. name: "Meddling with Mortals",
  4967. height: math.unit(8 + 8/12, "feet")
  4968. },
  4969. {
  4970. name: "Normal",
  4971. height: math.unit(5, "meter")
  4972. },
  4973. {
  4974. name: "Macro",
  4975. height: math.unit(150, "meter"),
  4976. default: true
  4977. },
  4978. {
  4979. name: "Megamacro",
  4980. height: math.unit(278e6, "meter")
  4981. },
  4982. {
  4983. name: "Gigamacro",
  4984. height: math.unit(2e9, "meter")
  4985. },
  4986. {
  4987. name: "Teramacro",
  4988. height: math.unit(8e12, "meter")
  4989. },
  4990. {
  4991. name: "Devourer",
  4992. height: math.unit(14, "zettameters")
  4993. },
  4994. {
  4995. name: "Scarlet King",
  4996. height: math.unit(18, "yottameters")
  4997. },
  4998. {
  4999. name: "Void",
  5000. height: math.unit(1e88, "yottameters")
  5001. }
  5002. ]
  5003. ))
  5004. characterMakers.push(() => makeCharacter(
  5005. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5006. {
  5007. standing: {
  5008. height: math.unit(6, "feet"),
  5009. weight: math.unit(180, "lbs"),
  5010. name: "Standing",
  5011. image: {
  5012. source: "./media/characters/zaakira/standing.svg",
  5013. extra: 1599/1504,
  5014. bottom: 39/1638
  5015. }
  5016. },
  5017. laying: {
  5018. height: math.unit(3, "feet"),
  5019. weight: math.unit(180, "lbs"),
  5020. name: "Laying",
  5021. image: {
  5022. source: "./media/characters/zaakira/laying.svg"
  5023. }
  5024. },
  5025. },
  5026. [
  5027. {
  5028. name: "Normal",
  5029. height: math.unit(12, "feet")
  5030. },
  5031. {
  5032. name: "Macro",
  5033. height: math.unit(279, "feet"),
  5034. default: true
  5035. }
  5036. ]
  5037. ))
  5038. characterMakers.push(() => makeCharacter(
  5039. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5040. {
  5041. femSfw: {
  5042. height: math.unit(8, "feet"),
  5043. weight: math.unit(350, "lb"),
  5044. name: "Fem",
  5045. image: {
  5046. source: "./media/characters/sigvald/fem-sfw.svg",
  5047. extra: 182 / 164,
  5048. bottom: 8.7 / 190.5
  5049. }
  5050. },
  5051. femNsfw: {
  5052. height: math.unit(8, "feet"),
  5053. weight: math.unit(350, "lb"),
  5054. name: "Fem (NSFW)",
  5055. image: {
  5056. source: "./media/characters/sigvald/fem-nsfw.svg",
  5057. extra: 182 / 164,
  5058. bottom: 8.7 / 190.5
  5059. }
  5060. },
  5061. maleNsfw: {
  5062. height: math.unit(8, "feet"),
  5063. weight: math.unit(350, "lb"),
  5064. name: "Male (NSFW)",
  5065. image: {
  5066. source: "./media/characters/sigvald/male-nsfw.svg",
  5067. extra: 182 / 164,
  5068. bottom: 8.7 / 190.5
  5069. }
  5070. },
  5071. hermNsfw: {
  5072. height: math.unit(8, "feet"),
  5073. weight: math.unit(350, "lb"),
  5074. name: "Herm (NSFW)",
  5075. image: {
  5076. source: "./media/characters/sigvald/herm-nsfw.svg",
  5077. extra: 182 / 164,
  5078. bottom: 8.7 / 190.5
  5079. }
  5080. },
  5081. dick: {
  5082. height: math.unit(2.36, "feet"),
  5083. name: "Dick",
  5084. image: {
  5085. source: "./media/characters/sigvald/dick.svg"
  5086. }
  5087. },
  5088. eye: {
  5089. height: math.unit(0.31, "feet"),
  5090. name: "Eye",
  5091. image: {
  5092. source: "./media/characters/sigvald/eye.svg"
  5093. }
  5094. },
  5095. mouth: {
  5096. height: math.unit(0.92, "feet"),
  5097. name: "Mouth",
  5098. image: {
  5099. source: "./media/characters/sigvald/mouth.svg"
  5100. }
  5101. },
  5102. paws: {
  5103. height: math.unit(2.2, "feet"),
  5104. name: "Paws",
  5105. image: {
  5106. source: "./media/characters/sigvald/paws.svg"
  5107. }
  5108. }
  5109. },
  5110. [
  5111. {
  5112. name: "Normal",
  5113. height: math.unit(8, "feet")
  5114. },
  5115. {
  5116. name: "Large",
  5117. height: math.unit(12, "feet")
  5118. },
  5119. {
  5120. name: "Larger",
  5121. height: math.unit(20, "feet")
  5122. },
  5123. {
  5124. name: "Macro",
  5125. height: math.unit(150, "feet")
  5126. },
  5127. {
  5128. name: "Macro+",
  5129. height: math.unit(200, "feet"),
  5130. default: true
  5131. },
  5132. ]
  5133. ))
  5134. characterMakers.push(() => makeCharacter(
  5135. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5136. {
  5137. side: {
  5138. height: math.unit(12, "feet"),
  5139. weight: math.unit(2000, "kg"),
  5140. name: "Side",
  5141. image: {
  5142. source: "./media/characters/scott/side.svg",
  5143. extra: 754 / 724,
  5144. bottom: 0.069
  5145. }
  5146. },
  5147. upright: {
  5148. height: math.unit(12, "feet"),
  5149. weight: math.unit(2000, "kg"),
  5150. name: "Upright",
  5151. image: {
  5152. source: "./media/characters/scott/upright.svg",
  5153. extra: 3881 / 3722,
  5154. bottom: 0.05
  5155. }
  5156. },
  5157. },
  5158. [
  5159. {
  5160. name: "Normal",
  5161. height: math.unit(12, "feet"),
  5162. default: true
  5163. },
  5164. ]
  5165. ))
  5166. characterMakers.push(() => makeCharacter(
  5167. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5168. {
  5169. side: {
  5170. height: math.unit(8, "meters"),
  5171. weight: math.unit(84755, "lbs"),
  5172. name: "Side",
  5173. image: {
  5174. source: "./media/characters/tobias/side.svg",
  5175. extra: 1474 / 1096,
  5176. bottom: 38.9 / 1513.1235
  5177. }
  5178. },
  5179. },
  5180. [
  5181. {
  5182. name: "Normal",
  5183. height: math.unit(8, "meters"),
  5184. default: true
  5185. },
  5186. ]
  5187. ))
  5188. characterMakers.push(() => makeCharacter(
  5189. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5190. {
  5191. front: {
  5192. height: math.unit(5.5, "feet"),
  5193. weight: math.unit(400, "lbs"),
  5194. name: "Front",
  5195. image: {
  5196. source: "./media/characters/kieran/front.svg",
  5197. extra: 2694 / 2364,
  5198. bottom: 217 / 2908
  5199. }
  5200. },
  5201. side: {
  5202. height: math.unit(5.5, "feet"),
  5203. weight: math.unit(400, "lbs"),
  5204. name: "Side",
  5205. image: {
  5206. source: "./media/characters/kieran/side.svg",
  5207. extra: 875 / 777,
  5208. bottom: 84.6 / 959
  5209. }
  5210. },
  5211. },
  5212. [
  5213. {
  5214. name: "Normal",
  5215. height: math.unit(5.5, "feet"),
  5216. default: true
  5217. },
  5218. ]
  5219. ))
  5220. characterMakers.push(() => makeCharacter(
  5221. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5222. {
  5223. side: {
  5224. height: math.unit(2, "meters"),
  5225. weight: math.unit(70, "kg"),
  5226. name: "Side",
  5227. image: {
  5228. source: "./media/characters/sanya/side.svg",
  5229. bottom: 0.02,
  5230. extra: 1.02
  5231. }
  5232. },
  5233. },
  5234. [
  5235. {
  5236. name: "Small",
  5237. height: math.unit(2, "meters")
  5238. },
  5239. {
  5240. name: "Normal",
  5241. height: math.unit(3, "meters")
  5242. },
  5243. {
  5244. name: "Macro",
  5245. height: math.unit(16, "meters"),
  5246. default: true
  5247. },
  5248. ]
  5249. ))
  5250. characterMakers.push(() => makeCharacter(
  5251. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5252. {
  5253. front: {
  5254. height: math.unit(2, "meters"),
  5255. weight: math.unit(120, "kg"),
  5256. name: "Front",
  5257. image: {
  5258. source: "./media/characters/miranda/front.svg",
  5259. extra: 195 / 185,
  5260. bottom: 10.9 / 206.5
  5261. }
  5262. },
  5263. back: {
  5264. height: math.unit(2, "meters"),
  5265. weight: math.unit(120, "kg"),
  5266. name: "Back",
  5267. image: {
  5268. source: "./media/characters/miranda/back.svg",
  5269. extra: 201 / 193,
  5270. bottom: 2.3 / 203.7
  5271. }
  5272. },
  5273. },
  5274. [
  5275. {
  5276. name: "Normal",
  5277. height: math.unit(10, "feet"),
  5278. default: true
  5279. }
  5280. ]
  5281. ))
  5282. characterMakers.push(() => makeCharacter(
  5283. { name: "James", species: ["deer"], tags: ["anthro"] },
  5284. {
  5285. side: {
  5286. height: math.unit(2, "meters"),
  5287. weight: math.unit(100, "kg"),
  5288. name: "Front",
  5289. image: {
  5290. source: "./media/characters/james/front.svg",
  5291. extra: 10 / 8.5
  5292. }
  5293. },
  5294. },
  5295. [
  5296. {
  5297. name: "Normal",
  5298. height: math.unit(8.5, "feet"),
  5299. default: true
  5300. }
  5301. ]
  5302. ))
  5303. characterMakers.push(() => makeCharacter(
  5304. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5305. {
  5306. side: {
  5307. height: math.unit(9.5, "feet"),
  5308. weight: math.unit(2500, "lbs"),
  5309. name: "Side",
  5310. image: {
  5311. source: "./media/characters/heather/side.svg"
  5312. }
  5313. },
  5314. },
  5315. [
  5316. {
  5317. name: "Normal",
  5318. height: math.unit(9.5, "feet"),
  5319. default: true
  5320. }
  5321. ]
  5322. ))
  5323. characterMakers.push(() => makeCharacter(
  5324. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5325. {
  5326. side: {
  5327. height: math.unit(6.5, "feet"),
  5328. weight: math.unit(400, "lbs"),
  5329. name: "Side",
  5330. image: {
  5331. source: "./media/characters/lukas/side.svg",
  5332. extra: 7.25 / 6.5
  5333. }
  5334. },
  5335. },
  5336. [
  5337. {
  5338. name: "Normal",
  5339. height: math.unit(6.5, "feet"),
  5340. default: true
  5341. }
  5342. ]
  5343. ))
  5344. characterMakers.push(() => makeCharacter(
  5345. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5346. {
  5347. side: {
  5348. height: math.unit(5, "feet"),
  5349. weight: math.unit(3000, "lbs"),
  5350. name: "Side",
  5351. image: {
  5352. source: "./media/characters/louise/side.svg"
  5353. }
  5354. },
  5355. },
  5356. [
  5357. {
  5358. name: "Normal",
  5359. height: math.unit(5, "feet"),
  5360. default: true
  5361. }
  5362. ]
  5363. ))
  5364. characterMakers.push(() => makeCharacter(
  5365. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5366. {
  5367. side: {
  5368. height: math.unit(6, "feet"),
  5369. weight: math.unit(150, "lbs"),
  5370. name: "Side",
  5371. image: {
  5372. source: "./media/characters/ramona/side.svg",
  5373. extra: 871/854,
  5374. bottom: 41/912
  5375. }
  5376. },
  5377. },
  5378. [
  5379. {
  5380. name: "Normal",
  5381. height: math.unit(5.3, "meters"),
  5382. default: true
  5383. },
  5384. {
  5385. name: "Macro",
  5386. height: math.unit(20, "stories")
  5387. },
  5388. {
  5389. name: "Macro+",
  5390. height: math.unit(50, "stories")
  5391. },
  5392. ]
  5393. ))
  5394. characterMakers.push(() => makeCharacter(
  5395. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5396. {
  5397. standing: {
  5398. height: math.unit(5.75, "feet"),
  5399. weight: math.unit(160, "lbs"),
  5400. name: "Standing",
  5401. image: {
  5402. source: "./media/characters/deerpuff/standing.svg",
  5403. extra: 682 / 624
  5404. }
  5405. },
  5406. sitting: {
  5407. height: math.unit(5.75 / 1.79, "feet"),
  5408. weight: math.unit(160, "lbs"),
  5409. name: "Sitting",
  5410. image: {
  5411. source: "./media/characters/deerpuff/sitting.svg",
  5412. bottom: 44 / 400,
  5413. extra: 1
  5414. }
  5415. },
  5416. taurLaying: {
  5417. height: math.unit(6, "feet"),
  5418. weight: math.unit(400, "lbs"),
  5419. name: "Taur (Laying)",
  5420. image: {
  5421. source: "./media/characters/deerpuff/taur-laying.svg"
  5422. }
  5423. },
  5424. },
  5425. [
  5426. {
  5427. name: "Puffball",
  5428. height: math.unit(6, "inches")
  5429. },
  5430. {
  5431. name: "Normalpuff",
  5432. height: math.unit(5.75, "feet")
  5433. },
  5434. {
  5435. name: "Macropuff",
  5436. height: math.unit(1500, "feet"),
  5437. default: true
  5438. },
  5439. {
  5440. name: "Megapuff",
  5441. height: math.unit(500, "miles")
  5442. },
  5443. {
  5444. name: "Gigapuff",
  5445. height: math.unit(250000, "miles")
  5446. },
  5447. {
  5448. name: "Omegapuff",
  5449. height: math.unit(1000, "lightyears")
  5450. },
  5451. ]
  5452. ))
  5453. characterMakers.push(() => makeCharacter(
  5454. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5455. {
  5456. stomping: {
  5457. height: math.unit(6, "feet"),
  5458. weight: math.unit(170, "lbs"),
  5459. name: "Stomping",
  5460. image: {
  5461. source: "./media/characters/vivian/stomping.svg"
  5462. }
  5463. },
  5464. sitting: {
  5465. height: math.unit(6 / 1.75, "feet"),
  5466. weight: math.unit(170, "lbs"),
  5467. name: "Sitting",
  5468. image: {
  5469. source: "./media/characters/vivian/sitting.svg",
  5470. bottom: 1 / 6.4,
  5471. extra: 1,
  5472. }
  5473. },
  5474. },
  5475. [
  5476. {
  5477. name: "Normal",
  5478. height: math.unit(7, "feet"),
  5479. default: true
  5480. },
  5481. {
  5482. name: "Macro",
  5483. height: math.unit(10, "stories")
  5484. },
  5485. {
  5486. name: "Macro+",
  5487. height: math.unit(30, "stories")
  5488. },
  5489. {
  5490. name: "Megamacro",
  5491. height: math.unit(10, "miles")
  5492. },
  5493. {
  5494. name: "Megamacro+",
  5495. height: math.unit(2750000, "meters")
  5496. },
  5497. ]
  5498. ))
  5499. characterMakers.push(() => makeCharacter(
  5500. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5501. {
  5502. front: {
  5503. height: math.unit(6, "feet"),
  5504. weight: math.unit(160, "lbs"),
  5505. name: "Front",
  5506. image: {
  5507. source: "./media/characters/prince/front.svg",
  5508. extra: 3400 / 3000
  5509. }
  5510. },
  5511. jumping: {
  5512. height: math.unit(6, "feet"),
  5513. weight: math.unit(160, "lbs"),
  5514. name: "Jumping",
  5515. image: {
  5516. source: "./media/characters/prince/jump.svg",
  5517. extra: 2555 / 2134
  5518. }
  5519. },
  5520. },
  5521. [
  5522. {
  5523. name: "Normal",
  5524. height: math.unit(7.75, "feet"),
  5525. default: true
  5526. },
  5527. {
  5528. name: "Not cute",
  5529. height: math.unit(17, "feet")
  5530. },
  5531. {
  5532. name: "I said NOT",
  5533. height: math.unit(91, "feet")
  5534. },
  5535. {
  5536. name: "Please stop",
  5537. height: math.unit(560, "feet")
  5538. },
  5539. {
  5540. name: "What have you done",
  5541. height: math.unit(2200, "feet")
  5542. },
  5543. {
  5544. name: "Deer God",
  5545. height: math.unit(3.6, "miles")
  5546. },
  5547. ]
  5548. ))
  5549. characterMakers.push(() => makeCharacter(
  5550. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5551. {
  5552. standing: {
  5553. height: math.unit(6, "feet"),
  5554. weight: math.unit(300, "lbs"),
  5555. name: "Standing",
  5556. image: {
  5557. source: "./media/characters/psymon/standing.svg",
  5558. extra: 1888 / 1810,
  5559. bottom: 0.05
  5560. }
  5561. },
  5562. slithering: {
  5563. height: math.unit(6, "feet"),
  5564. weight: math.unit(300, "lbs"),
  5565. name: "Slithering",
  5566. image: {
  5567. source: "./media/characters/psymon/slithering.svg",
  5568. extra: 1330 / 1224
  5569. }
  5570. },
  5571. slitheringAlt: {
  5572. height: math.unit(6, "feet"),
  5573. weight: math.unit(300, "lbs"),
  5574. name: "Slithering (Alt)",
  5575. image: {
  5576. source: "./media/characters/psymon/slithering-alt.svg",
  5577. extra: 1330 / 1224
  5578. }
  5579. },
  5580. },
  5581. [
  5582. {
  5583. name: "Normal",
  5584. height: math.unit(11.25, "feet"),
  5585. default: true
  5586. },
  5587. {
  5588. name: "Large",
  5589. height: math.unit(27, "feet")
  5590. },
  5591. {
  5592. name: "Giant",
  5593. height: math.unit(87, "feet")
  5594. },
  5595. {
  5596. name: "Macro",
  5597. height: math.unit(365, "feet")
  5598. },
  5599. {
  5600. name: "Megamacro",
  5601. height: math.unit(3, "miles")
  5602. },
  5603. {
  5604. name: "World Serpent",
  5605. height: math.unit(8000, "miles")
  5606. },
  5607. ]
  5608. ))
  5609. characterMakers.push(() => makeCharacter(
  5610. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5611. {
  5612. front: {
  5613. height: math.unit(6, "feet"),
  5614. weight: math.unit(180, "lbs"),
  5615. name: "Front",
  5616. image: {
  5617. source: "./media/characters/daimos/front.svg",
  5618. extra: 4160 / 3897,
  5619. bottom: 0.021
  5620. }
  5621. }
  5622. },
  5623. [
  5624. {
  5625. name: "Normal",
  5626. height: math.unit(8, "feet"),
  5627. default: true
  5628. },
  5629. {
  5630. name: "Big Dog",
  5631. height: math.unit(22, "feet")
  5632. },
  5633. {
  5634. name: "Macro",
  5635. height: math.unit(127, "feet")
  5636. },
  5637. {
  5638. name: "Megamacro",
  5639. height: math.unit(3600, "feet")
  5640. },
  5641. ]
  5642. ))
  5643. characterMakers.push(() => makeCharacter(
  5644. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5645. {
  5646. side: {
  5647. height: math.unit(6, "feet"),
  5648. weight: math.unit(180, "lbs"),
  5649. name: "Side",
  5650. image: {
  5651. source: "./media/characters/blake/side.svg",
  5652. extra: 1212 / 1120,
  5653. bottom: 0.05
  5654. }
  5655. },
  5656. crouched: {
  5657. height: math.unit(6 * 0.57, "feet"),
  5658. weight: math.unit(180, "lbs"),
  5659. name: "Crouched",
  5660. image: {
  5661. source: "./media/characters/blake/crouched.svg",
  5662. extra: 840 / 587,
  5663. bottom: 0.04
  5664. }
  5665. },
  5666. bent: {
  5667. height: math.unit(6 * 0.75, "feet"),
  5668. weight: math.unit(180, "lbs"),
  5669. name: "Bent",
  5670. image: {
  5671. source: "./media/characters/blake/bent.svg",
  5672. extra: 592 / 544,
  5673. bottom: 0.035
  5674. }
  5675. },
  5676. },
  5677. [
  5678. {
  5679. name: "Normal",
  5680. height: math.unit(8 + 1 / 6, "feet"),
  5681. default: true
  5682. },
  5683. {
  5684. name: "Big Backside",
  5685. height: math.unit(37, "feet")
  5686. },
  5687. {
  5688. name: "Subway Shredder",
  5689. height: math.unit(72, "feet")
  5690. },
  5691. {
  5692. name: "City Carver",
  5693. height: math.unit(1675, "feet")
  5694. },
  5695. {
  5696. name: "Tectonic Tweaker",
  5697. height: math.unit(2300, "miles")
  5698. },
  5699. ]
  5700. ))
  5701. characterMakers.push(() => makeCharacter(
  5702. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5703. {
  5704. front: {
  5705. height: math.unit(6, "feet"),
  5706. weight: math.unit(180, "lbs"),
  5707. name: "Front",
  5708. image: {
  5709. source: "./media/characters/guisetto/front.svg",
  5710. extra: 856 / 817,
  5711. bottom: 0.06
  5712. }
  5713. },
  5714. airborne: {
  5715. height: math.unit(6, "feet"),
  5716. weight: math.unit(180, "lbs"),
  5717. name: "Airborne",
  5718. image: {
  5719. source: "./media/characters/guisetto/airborne.svg",
  5720. extra: 584 / 525
  5721. }
  5722. },
  5723. },
  5724. [
  5725. {
  5726. name: "Normal",
  5727. height: math.unit(10 + 11 / 12, "feet"),
  5728. default: true
  5729. },
  5730. {
  5731. name: "Large",
  5732. height: math.unit(35, "feet")
  5733. },
  5734. {
  5735. name: "Macro",
  5736. height: math.unit(475, "feet")
  5737. },
  5738. ]
  5739. ))
  5740. characterMakers.push(() => makeCharacter(
  5741. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5742. {
  5743. front: {
  5744. height: math.unit(6, "feet"),
  5745. weight: math.unit(180, "lbs"),
  5746. name: "Front",
  5747. image: {
  5748. source: "./media/characters/luxor/front.svg",
  5749. extra: 2940 / 2152
  5750. }
  5751. },
  5752. back: {
  5753. height: math.unit(6, "feet"),
  5754. weight: math.unit(180, "lbs"),
  5755. name: "Back",
  5756. image: {
  5757. source: "./media/characters/luxor/back.svg",
  5758. extra: 1083 / 960
  5759. }
  5760. },
  5761. },
  5762. [
  5763. {
  5764. name: "Normal",
  5765. height: math.unit(5 + 5 / 6, "feet"),
  5766. default: true
  5767. },
  5768. {
  5769. name: "Lamp",
  5770. height: math.unit(50, "feet")
  5771. },
  5772. {
  5773. name: "Lämp",
  5774. height: math.unit(300, "feet")
  5775. },
  5776. {
  5777. name: "The sun is a lamp",
  5778. height: math.unit(250000, "miles")
  5779. },
  5780. ]
  5781. ))
  5782. characterMakers.push(() => makeCharacter(
  5783. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5784. {
  5785. front: {
  5786. height: math.unit(6, "feet"),
  5787. weight: math.unit(50, "lbs"),
  5788. name: "Front",
  5789. image: {
  5790. source: "./media/characters/huoyan/front.svg"
  5791. }
  5792. },
  5793. side: {
  5794. height: math.unit(6, "feet"),
  5795. weight: math.unit(180, "lbs"),
  5796. name: "Side",
  5797. image: {
  5798. source: "./media/characters/huoyan/side.svg"
  5799. }
  5800. },
  5801. },
  5802. [
  5803. {
  5804. name: "Chef",
  5805. height: math.unit(9, "feet")
  5806. },
  5807. {
  5808. name: "Normal",
  5809. height: math.unit(65, "feet"),
  5810. default: true
  5811. },
  5812. {
  5813. name: "Macro",
  5814. height: math.unit(780, "feet")
  5815. },
  5816. {
  5817. name: "Flaming Mountain",
  5818. height: math.unit(4.8, "miles")
  5819. },
  5820. {
  5821. name: "Celestial",
  5822. height: math.unit(765000, "miles")
  5823. },
  5824. ]
  5825. ))
  5826. characterMakers.push(() => makeCharacter(
  5827. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5828. {
  5829. front: {
  5830. height: math.unit(5 + 3 / 4, "feet"),
  5831. weight: math.unit(120, "lbs"),
  5832. name: "Front",
  5833. image: {
  5834. source: "./media/characters/tails/front.svg"
  5835. }
  5836. }
  5837. },
  5838. [
  5839. {
  5840. name: "Normal",
  5841. height: math.unit(5 + 3 / 4, "feet"),
  5842. default: true
  5843. }
  5844. ]
  5845. ))
  5846. characterMakers.push(() => makeCharacter(
  5847. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5848. {
  5849. front: {
  5850. height: math.unit(4, "feet"),
  5851. weight: math.unit(50, "lbs"),
  5852. name: "Front",
  5853. image: {
  5854. source: "./media/characters/rainy/front.svg"
  5855. }
  5856. }
  5857. },
  5858. [
  5859. {
  5860. name: "Macro",
  5861. height: math.unit(800, "feet"),
  5862. default: true
  5863. }
  5864. ]
  5865. ))
  5866. characterMakers.push(() => makeCharacter(
  5867. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5868. {
  5869. front: {
  5870. height: math.unit(6, "feet"),
  5871. weight: math.unit(150, "lbs"),
  5872. name: "Front",
  5873. image: {
  5874. source: "./media/characters/rainier/front.svg"
  5875. }
  5876. }
  5877. },
  5878. [
  5879. {
  5880. name: "Micro",
  5881. height: math.unit(2, "mm"),
  5882. default: true
  5883. }
  5884. ]
  5885. ))
  5886. characterMakers.push(() => makeCharacter(
  5887. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5888. {
  5889. front: {
  5890. height: math.unit(8 + 4/12, "feet"),
  5891. name: "Front",
  5892. image: {
  5893. source: "./media/characters/andy-renard/front.svg",
  5894. extra: 1839/1726,
  5895. bottom: 134/1973
  5896. }
  5897. },
  5898. back: {
  5899. height: math.unit(8 + 4/12, "feet"),
  5900. name: "Back",
  5901. image: {
  5902. source: "./media/characters/andy-renard/back.svg",
  5903. extra: 1838/1710,
  5904. bottom: 105/1943
  5905. }
  5906. },
  5907. },
  5908. [
  5909. {
  5910. name: "Tall",
  5911. height: math.unit(8 + 4/12, "feet")
  5912. },
  5913. {
  5914. name: "Mini Macro",
  5915. height: math.unit(15, "feet"),
  5916. default: true
  5917. },
  5918. {
  5919. name: "Macro",
  5920. height: math.unit(100, "feet")
  5921. },
  5922. {
  5923. name: "Mega Macro",
  5924. height: math.unit(1000, "feet")
  5925. },
  5926. {
  5927. name: "Giga Macro",
  5928. height: math.unit(10, "miles")
  5929. },
  5930. {
  5931. name: "God Macro",
  5932. height: math.unit(1, "multiverse")
  5933. },
  5934. ]
  5935. ))
  5936. characterMakers.push(() => makeCharacter(
  5937. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5938. {
  5939. front: {
  5940. height: math.unit(6, "feet"),
  5941. weight: math.unit(210, "lbs"),
  5942. name: "Front",
  5943. image: {
  5944. source: "./media/characters/cimmaron/front-sfw.svg",
  5945. extra: 701 / 676,
  5946. bottom: 0.046
  5947. }
  5948. },
  5949. back: {
  5950. height: math.unit(6, "feet"),
  5951. weight: math.unit(210, "lbs"),
  5952. name: "Back",
  5953. image: {
  5954. source: "./media/characters/cimmaron/back-sfw.svg",
  5955. extra: 701 / 676,
  5956. bottom: 0.046
  5957. }
  5958. },
  5959. frontNsfw: {
  5960. height: math.unit(6, "feet"),
  5961. weight: math.unit(210, "lbs"),
  5962. name: "Front (NSFW)",
  5963. image: {
  5964. source: "./media/characters/cimmaron/front-nsfw.svg",
  5965. extra: 701 / 676,
  5966. bottom: 0.046
  5967. }
  5968. },
  5969. backNsfw: {
  5970. height: math.unit(6, "feet"),
  5971. weight: math.unit(210, "lbs"),
  5972. name: "Back (NSFW)",
  5973. image: {
  5974. source: "./media/characters/cimmaron/back-nsfw.svg",
  5975. extra: 701 / 676,
  5976. bottom: 0.046
  5977. }
  5978. },
  5979. dick: {
  5980. height: math.unit(1.714, "feet"),
  5981. name: "Dick",
  5982. image: {
  5983. source: "./media/characters/cimmaron/dick.svg"
  5984. }
  5985. },
  5986. },
  5987. [
  5988. {
  5989. name: "Normal",
  5990. height: math.unit(6, "feet"),
  5991. default: true
  5992. },
  5993. {
  5994. name: "Macro Mayor",
  5995. height: math.unit(350, "meters")
  5996. },
  5997. ]
  5998. ))
  5999. characterMakers.push(() => makeCharacter(
  6000. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6001. {
  6002. front: {
  6003. height: math.unit(6, "feet"),
  6004. weight: math.unit(200, "lbs"),
  6005. name: "Front",
  6006. image: {
  6007. source: "./media/characters/akari/front.svg",
  6008. extra: 962 / 901,
  6009. bottom: 0.04
  6010. }
  6011. }
  6012. },
  6013. [
  6014. {
  6015. name: "Micro",
  6016. height: math.unit(5, "inches"),
  6017. default: true
  6018. },
  6019. {
  6020. name: "Normal",
  6021. height: math.unit(7, "feet")
  6022. },
  6023. ]
  6024. ))
  6025. characterMakers.push(() => makeCharacter(
  6026. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6027. {
  6028. front: {
  6029. height: math.unit(6, "feet"),
  6030. weight: math.unit(140, "lbs"),
  6031. name: "Front",
  6032. image: {
  6033. source: "./media/characters/cynosura/front.svg",
  6034. extra: 896 / 847
  6035. }
  6036. },
  6037. back: {
  6038. height: math.unit(6, "feet"),
  6039. weight: math.unit(140, "lbs"),
  6040. name: "Back",
  6041. image: {
  6042. source: "./media/characters/cynosura/back.svg",
  6043. extra: 1365 / 1250
  6044. }
  6045. },
  6046. },
  6047. [
  6048. {
  6049. name: "Micro",
  6050. height: math.unit(4, "inches")
  6051. },
  6052. {
  6053. name: "Normal",
  6054. height: math.unit(5.75, "feet"),
  6055. default: true
  6056. },
  6057. {
  6058. name: "Tall",
  6059. height: math.unit(10, "feet")
  6060. },
  6061. {
  6062. name: "Big",
  6063. height: math.unit(20, "feet")
  6064. },
  6065. {
  6066. name: "Macro",
  6067. height: math.unit(50, "feet")
  6068. },
  6069. ]
  6070. ))
  6071. characterMakers.push(() => makeCharacter(
  6072. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6073. {
  6074. front: {
  6075. height: math.unit(13 + 2/12, "feet"),
  6076. weight: math.unit(800, "kg"),
  6077. name: "Front",
  6078. image: {
  6079. source: "./media/characters/gin/front.svg",
  6080. extra: 1312/1191,
  6081. bottom: 45/1357
  6082. }
  6083. },
  6084. mouth: {
  6085. height: math.unit(2.39 * 1.8, "feet"),
  6086. name: "Mouth",
  6087. image: {
  6088. source: "./media/characters/gin/mouth.svg"
  6089. }
  6090. },
  6091. hand: {
  6092. height: math.unit(1.57 * 2.19, "feet"),
  6093. name: "Hand",
  6094. image: {
  6095. source: "./media/characters/gin/hand.svg"
  6096. }
  6097. },
  6098. foot: {
  6099. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6100. name: "Foot",
  6101. image: {
  6102. source: "./media/characters/gin/foot.svg"
  6103. }
  6104. },
  6105. sole: {
  6106. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6107. name: "Sole",
  6108. image: {
  6109. source: "./media/characters/gin/sole.svg"
  6110. }
  6111. },
  6112. },
  6113. [
  6114. {
  6115. name: "Very Small",
  6116. height: math.unit(13 + 2 / 12, "feet")
  6117. },
  6118. {
  6119. name: "Micro",
  6120. height: math.unit(600, "miles")
  6121. },
  6122. {
  6123. name: "Regular",
  6124. height: math.unit(20, "earths"),
  6125. default: true
  6126. },
  6127. {
  6128. name: "Macro",
  6129. height: math.unit(2.2, "solarradii")
  6130. },
  6131. {
  6132. name: "Teramacro",
  6133. height: math.unit(1.2, "galaxies")
  6134. },
  6135. {
  6136. name: "Omegamacro",
  6137. height: math.unit(200, "universes")
  6138. },
  6139. ]
  6140. ))
  6141. characterMakers.push(() => makeCharacter(
  6142. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6143. {
  6144. front: {
  6145. height: math.unit(6 + 1 / 6, "feet"),
  6146. weight: math.unit(178, "lbs"),
  6147. name: "Front",
  6148. image: {
  6149. source: "./media/characters/guy/front.svg"
  6150. }
  6151. }
  6152. },
  6153. [
  6154. {
  6155. name: "Normal",
  6156. height: math.unit(6 + 1 / 6, "feet"),
  6157. default: true
  6158. },
  6159. {
  6160. name: "Large",
  6161. height: math.unit(25 + 7 / 12, "feet")
  6162. },
  6163. {
  6164. name: "Macro",
  6165. height: math.unit(60 + 9 / 12, "feet")
  6166. },
  6167. {
  6168. name: "Macro+",
  6169. height: math.unit(246, "feet")
  6170. },
  6171. {
  6172. name: "Macro++",
  6173. height: math.unit(878, "feet")
  6174. }
  6175. ]
  6176. ))
  6177. characterMakers.push(() => makeCharacter(
  6178. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6179. {
  6180. front: {
  6181. height: math.unit(9, "feet"),
  6182. weight: math.unit(800, "lbs"),
  6183. name: "Front",
  6184. image: {
  6185. source: "./media/characters/tiberius/front.svg",
  6186. extra: 2295 / 2071
  6187. }
  6188. },
  6189. back: {
  6190. height: math.unit(9, "feet"),
  6191. weight: math.unit(800, "lbs"),
  6192. name: "Back",
  6193. image: {
  6194. source: "./media/characters/tiberius/back.svg",
  6195. extra: 2373 / 2160
  6196. }
  6197. },
  6198. },
  6199. [
  6200. {
  6201. name: "Normal",
  6202. height: math.unit(9, "feet"),
  6203. default: true
  6204. }
  6205. ]
  6206. ))
  6207. characterMakers.push(() => makeCharacter(
  6208. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6209. {
  6210. front: {
  6211. height: math.unit(6, "feet"),
  6212. weight: math.unit(600, "lbs"),
  6213. name: "Front",
  6214. image: {
  6215. source: "./media/characters/surgo/front.svg",
  6216. extra: 3591 / 2227
  6217. }
  6218. },
  6219. back: {
  6220. height: math.unit(6, "feet"),
  6221. weight: math.unit(600, "lbs"),
  6222. name: "Back",
  6223. image: {
  6224. source: "./media/characters/surgo/back.svg",
  6225. extra: 3557 / 2228
  6226. }
  6227. },
  6228. laying: {
  6229. height: math.unit(6 * 0.85, "feet"),
  6230. weight: math.unit(600, "lbs"),
  6231. name: "Laying",
  6232. image: {
  6233. source: "./media/characters/surgo/laying.svg"
  6234. }
  6235. },
  6236. },
  6237. [
  6238. {
  6239. name: "Normal",
  6240. height: math.unit(6, "feet"),
  6241. default: true
  6242. }
  6243. ]
  6244. ))
  6245. characterMakers.push(() => makeCharacter(
  6246. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6247. {
  6248. side: {
  6249. height: math.unit(6, "feet"),
  6250. weight: math.unit(150, "lbs"),
  6251. name: "Side",
  6252. image: {
  6253. source: "./media/characters/cibus/side.svg",
  6254. extra: 800 / 400
  6255. }
  6256. },
  6257. },
  6258. [
  6259. {
  6260. name: "Normal",
  6261. height: math.unit(6, "feet"),
  6262. default: true
  6263. }
  6264. ]
  6265. ))
  6266. characterMakers.push(() => makeCharacter(
  6267. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6268. {
  6269. front: {
  6270. height: math.unit(6, "feet"),
  6271. weight: math.unit(240, "lbs"),
  6272. name: "Front",
  6273. image: {
  6274. source: "./media/characters/nibbles/front.svg"
  6275. }
  6276. },
  6277. side: {
  6278. height: math.unit(6, "feet"),
  6279. weight: math.unit(240, "lbs"),
  6280. name: "Side",
  6281. image: {
  6282. source: "./media/characters/nibbles/side.svg"
  6283. }
  6284. },
  6285. },
  6286. [
  6287. {
  6288. name: "Normal",
  6289. height: math.unit(9, "feet"),
  6290. default: true
  6291. }
  6292. ]
  6293. ))
  6294. characterMakers.push(() => makeCharacter(
  6295. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6296. {
  6297. side: {
  6298. height: math.unit(5 + 1 / 6, "feet"),
  6299. weight: math.unit(130, "lbs"),
  6300. name: "Side",
  6301. image: {
  6302. source: "./media/characters/rikky/side.svg",
  6303. extra: 851 / 801
  6304. }
  6305. },
  6306. },
  6307. [
  6308. {
  6309. name: "Normal",
  6310. height: math.unit(5 + 1 / 6, "feet")
  6311. },
  6312. {
  6313. name: "Macro",
  6314. height: math.unit(152, "feet"),
  6315. default: true
  6316. },
  6317. {
  6318. name: "Megamacro",
  6319. height: math.unit(7, "miles")
  6320. }
  6321. ]
  6322. ))
  6323. characterMakers.push(() => makeCharacter(
  6324. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6325. {
  6326. side: {
  6327. height: math.unit(370, "cm"),
  6328. weight: math.unit(350, "lbs"),
  6329. name: "Side",
  6330. image: {
  6331. source: "./media/characters/malfressa/side.svg"
  6332. }
  6333. },
  6334. walking: {
  6335. height: math.unit(370, "cm"),
  6336. weight: math.unit(350, "lbs"),
  6337. name: "Walking",
  6338. image: {
  6339. source: "./media/characters/malfressa/walking.svg"
  6340. }
  6341. },
  6342. feral: {
  6343. height: math.unit(2500, "cm"),
  6344. weight: math.unit(100000, "lbs"),
  6345. name: "Feral",
  6346. image: {
  6347. source: "./media/characters/malfressa/feral.svg",
  6348. extra: 2108 / 837,
  6349. bottom: 0.02
  6350. }
  6351. },
  6352. },
  6353. [
  6354. {
  6355. name: "Normal",
  6356. height: math.unit(370, "cm")
  6357. },
  6358. {
  6359. name: "Macro",
  6360. height: math.unit(300, "meters"),
  6361. default: true
  6362. }
  6363. ]
  6364. ))
  6365. characterMakers.push(() => makeCharacter(
  6366. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6367. {
  6368. front: {
  6369. height: math.unit(6, "feet"),
  6370. weight: math.unit(60, "kg"),
  6371. name: "Front",
  6372. image: {
  6373. source: "./media/characters/jaro/front.svg",
  6374. extra: 845/817,
  6375. bottom: 45/890
  6376. }
  6377. },
  6378. back: {
  6379. height: math.unit(6, "feet"),
  6380. weight: math.unit(60, "kg"),
  6381. name: "Back",
  6382. image: {
  6383. source: "./media/characters/jaro/back.svg",
  6384. extra: 847/817,
  6385. bottom: 34/881
  6386. }
  6387. },
  6388. },
  6389. [
  6390. {
  6391. name: "Micro",
  6392. height: math.unit(7, "inches")
  6393. },
  6394. {
  6395. name: "Normal",
  6396. height: math.unit(5.5, "feet"),
  6397. default: true
  6398. },
  6399. {
  6400. name: "Minimacro",
  6401. height: math.unit(20, "feet")
  6402. },
  6403. {
  6404. name: "Macro",
  6405. height: math.unit(200, "meters")
  6406. }
  6407. ]
  6408. ))
  6409. characterMakers.push(() => makeCharacter(
  6410. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6411. {
  6412. front: {
  6413. height: math.unit(6, "feet"),
  6414. weight: math.unit(195, "lb"),
  6415. name: "Front",
  6416. image: {
  6417. source: "./media/characters/rogue/front.svg"
  6418. }
  6419. },
  6420. },
  6421. [
  6422. {
  6423. name: "Macro",
  6424. height: math.unit(90, "feet"),
  6425. default: true
  6426. },
  6427. ]
  6428. ))
  6429. characterMakers.push(() => makeCharacter(
  6430. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6431. {
  6432. front: {
  6433. height: math.unit(5 + 8 / 12, "feet"),
  6434. weight: math.unit(140, "lb"),
  6435. name: "Front",
  6436. image: {
  6437. source: "./media/characters/piper/front.svg",
  6438. extra: 3948/3655,
  6439. bottom: 0/3948
  6440. }
  6441. },
  6442. },
  6443. [
  6444. {
  6445. name: "Micro",
  6446. height: math.unit(2, "inches")
  6447. },
  6448. {
  6449. name: "Normal",
  6450. height: math.unit(5 + 8 / 12, "feet")
  6451. },
  6452. {
  6453. name: "Macro",
  6454. height: math.unit(250, "feet"),
  6455. default: true
  6456. },
  6457. {
  6458. name: "Megamacro",
  6459. height: math.unit(7, "miles")
  6460. },
  6461. ]
  6462. ))
  6463. characterMakers.push(() => makeCharacter(
  6464. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6465. {
  6466. front: {
  6467. height: math.unit(6, "feet"),
  6468. weight: math.unit(220, "lb"),
  6469. name: "Front",
  6470. image: {
  6471. source: "./media/characters/gemini/front.svg"
  6472. }
  6473. },
  6474. back: {
  6475. height: math.unit(6, "feet"),
  6476. weight: math.unit(220, "lb"),
  6477. name: "Back",
  6478. image: {
  6479. source: "./media/characters/gemini/back.svg"
  6480. }
  6481. },
  6482. kneeling: {
  6483. height: math.unit(6 / 1.5, "feet"),
  6484. weight: math.unit(220, "lb"),
  6485. name: "Kneeling",
  6486. image: {
  6487. source: "./media/characters/gemini/kneeling.svg",
  6488. bottom: 0.02
  6489. }
  6490. },
  6491. },
  6492. [
  6493. {
  6494. name: "Macro",
  6495. height: math.unit(300, "meters"),
  6496. default: true
  6497. },
  6498. {
  6499. name: "Megamacro",
  6500. height: math.unit(6900, "meters")
  6501. },
  6502. ]
  6503. ))
  6504. characterMakers.push(() => makeCharacter(
  6505. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6506. {
  6507. anthro: {
  6508. height: math.unit(2.35, "meters"),
  6509. weight: math.unit(73, "kg"),
  6510. name: "Anthro",
  6511. image: {
  6512. source: "./media/characters/alicia/anthro.svg",
  6513. extra: 2571 / 2385,
  6514. bottom: 75 / 2648
  6515. }
  6516. },
  6517. paw: {
  6518. height: math.unit(1.32, "feet"),
  6519. name: "Paw",
  6520. image: {
  6521. source: "./media/characters/alicia/paw.svg"
  6522. }
  6523. },
  6524. feral: {
  6525. height: math.unit(1.69, "meters"),
  6526. weight: math.unit(73, "kg"),
  6527. name: "Feral",
  6528. image: {
  6529. source: "./media/characters/alicia/feral.svg",
  6530. extra: 2123 / 1715,
  6531. bottom: 222 / 2349
  6532. }
  6533. },
  6534. },
  6535. [
  6536. {
  6537. name: "Normal",
  6538. height: math.unit(2.35, "meters")
  6539. },
  6540. {
  6541. name: "Macro",
  6542. height: math.unit(60, "meters"),
  6543. default: true
  6544. },
  6545. {
  6546. name: "Megamacro",
  6547. height: math.unit(10000, "kilometers")
  6548. },
  6549. ]
  6550. ))
  6551. characterMakers.push(() => makeCharacter(
  6552. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6553. {
  6554. front: {
  6555. height: math.unit(7, "feet"),
  6556. weight: math.unit(250, "lbs"),
  6557. name: "Front",
  6558. image: {
  6559. source: "./media/characters/archy/front.svg"
  6560. }
  6561. }
  6562. },
  6563. [
  6564. {
  6565. name: "Micro",
  6566. height: math.unit(1, "inch")
  6567. },
  6568. {
  6569. name: "Shorty",
  6570. height: math.unit(5, "feet")
  6571. },
  6572. {
  6573. name: "Normal",
  6574. height: math.unit(7, "feet")
  6575. },
  6576. {
  6577. name: "Macro",
  6578. height: math.unit(600, "meters"),
  6579. default: true
  6580. },
  6581. {
  6582. name: "Megamacro",
  6583. height: math.unit(1, "mile")
  6584. },
  6585. ]
  6586. ))
  6587. characterMakers.push(() => makeCharacter(
  6588. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6589. {
  6590. front: {
  6591. height: math.unit(1.65, "meters"),
  6592. weight: math.unit(74, "kg"),
  6593. name: "Front",
  6594. image: {
  6595. source: "./media/characters/berri/front.svg",
  6596. extra: 857 / 837,
  6597. bottom: 18 / 877
  6598. }
  6599. },
  6600. bum: {
  6601. height: math.unit(1.46, "feet"),
  6602. name: "Bum",
  6603. image: {
  6604. source: "./media/characters/berri/bum.svg"
  6605. }
  6606. },
  6607. mouth: {
  6608. height: math.unit(0.44, "feet"),
  6609. name: "Mouth",
  6610. image: {
  6611. source: "./media/characters/berri/mouth.svg"
  6612. }
  6613. },
  6614. paw: {
  6615. height: math.unit(0.826, "feet"),
  6616. name: "Paw",
  6617. image: {
  6618. source: "./media/characters/berri/paw.svg"
  6619. }
  6620. },
  6621. },
  6622. [
  6623. {
  6624. name: "Normal",
  6625. height: math.unit(1.65, "meters")
  6626. },
  6627. {
  6628. name: "Macro",
  6629. height: math.unit(60, "m"),
  6630. default: true
  6631. },
  6632. {
  6633. name: "Megamacro",
  6634. height: math.unit(9.213, "km")
  6635. },
  6636. {
  6637. name: "Planet Eater",
  6638. height: math.unit(489, "megameters")
  6639. },
  6640. {
  6641. name: "Teramacro",
  6642. height: math.unit(2471635000000, "meters")
  6643. },
  6644. {
  6645. name: "Examacro",
  6646. height: math.unit(8.0624e+26, "meters")
  6647. }
  6648. ]
  6649. ))
  6650. characterMakers.push(() => makeCharacter(
  6651. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6652. {
  6653. front: {
  6654. height: math.unit(1.72, "meters"),
  6655. weight: math.unit(68, "kg"),
  6656. name: "Front",
  6657. image: {
  6658. source: "./media/characters/lexi/front.svg"
  6659. }
  6660. }
  6661. },
  6662. [
  6663. {
  6664. name: "Very Smol",
  6665. height: math.unit(10, "mm")
  6666. },
  6667. {
  6668. name: "Micro",
  6669. height: math.unit(6.8, "cm"),
  6670. default: true
  6671. },
  6672. {
  6673. name: "Normal",
  6674. height: math.unit(1.72, "m")
  6675. }
  6676. ]
  6677. ))
  6678. characterMakers.push(() => makeCharacter(
  6679. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6680. {
  6681. front: {
  6682. height: math.unit(1.69, "meters"),
  6683. weight: math.unit(68, "kg"),
  6684. name: "Front",
  6685. image: {
  6686. source: "./media/characters/martin/front.svg",
  6687. extra: 596 / 581
  6688. }
  6689. }
  6690. },
  6691. [
  6692. {
  6693. name: "Micro",
  6694. height: math.unit(6.85, "cm"),
  6695. default: true
  6696. },
  6697. {
  6698. name: "Normal",
  6699. height: math.unit(1.69, "m")
  6700. }
  6701. ]
  6702. ))
  6703. characterMakers.push(() => makeCharacter(
  6704. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6705. {
  6706. front: {
  6707. height: math.unit(1.69, "meters"),
  6708. weight: math.unit(68, "kg"),
  6709. name: "Front",
  6710. image: {
  6711. source: "./media/characters/juno/front.svg"
  6712. }
  6713. }
  6714. },
  6715. [
  6716. {
  6717. name: "Micro",
  6718. height: math.unit(7, "cm")
  6719. },
  6720. {
  6721. name: "Normal",
  6722. height: math.unit(1.89, "m")
  6723. },
  6724. {
  6725. name: "Macro",
  6726. height: math.unit(353, "meters"),
  6727. default: true
  6728. }
  6729. ]
  6730. ))
  6731. characterMakers.push(() => makeCharacter(
  6732. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6733. {
  6734. front: {
  6735. height: math.unit(1.93, "meters"),
  6736. weight: math.unit(83, "kg"),
  6737. name: "Front",
  6738. image: {
  6739. source: "./media/characters/samantha/front.svg"
  6740. }
  6741. },
  6742. frontClothed: {
  6743. height: math.unit(1.93, "meters"),
  6744. weight: math.unit(83, "kg"),
  6745. name: "Front (Clothed)",
  6746. image: {
  6747. source: "./media/characters/samantha/front-clothed.svg"
  6748. }
  6749. },
  6750. back: {
  6751. height: math.unit(1.93, "meters"),
  6752. weight: math.unit(83, "kg"),
  6753. name: "Back",
  6754. image: {
  6755. source: "./media/characters/samantha/back.svg"
  6756. }
  6757. },
  6758. },
  6759. [
  6760. {
  6761. name: "Normal",
  6762. height: math.unit(1.93, "m")
  6763. },
  6764. {
  6765. name: "Macro",
  6766. height: math.unit(74, "meters"),
  6767. default: true
  6768. },
  6769. {
  6770. name: "Macro+",
  6771. height: math.unit(223, "meters"),
  6772. },
  6773. {
  6774. name: "Megamacro",
  6775. height: math.unit(8381, "meters"),
  6776. },
  6777. {
  6778. name: "Megamacro+",
  6779. height: math.unit(12000, "kilometers")
  6780. },
  6781. ]
  6782. ))
  6783. characterMakers.push(() => makeCharacter(
  6784. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6785. {
  6786. front: {
  6787. height: math.unit(1.92, "meters"),
  6788. weight: math.unit(80, "kg"),
  6789. name: "Front",
  6790. image: {
  6791. source: "./media/characters/dr-clay/front.svg"
  6792. }
  6793. },
  6794. frontClothed: {
  6795. height: math.unit(1.92, "meters"),
  6796. weight: math.unit(80, "kg"),
  6797. name: "Front (Clothed)",
  6798. image: {
  6799. source: "./media/characters/dr-clay/front-clothed.svg"
  6800. }
  6801. }
  6802. },
  6803. [
  6804. {
  6805. name: "Normal",
  6806. height: math.unit(1.92, "m")
  6807. },
  6808. {
  6809. name: "Macro",
  6810. height: math.unit(214, "meters"),
  6811. default: true
  6812. },
  6813. {
  6814. name: "Macro+",
  6815. height: math.unit(12.237, "meters"),
  6816. },
  6817. {
  6818. name: "Megamacro",
  6819. height: math.unit(557, "megameters"),
  6820. },
  6821. {
  6822. name: "Unimaginable",
  6823. height: math.unit(120e9, "lightyears")
  6824. },
  6825. ]
  6826. ))
  6827. characterMakers.push(() => makeCharacter(
  6828. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6829. {
  6830. front: {
  6831. height: math.unit(2, "meters"),
  6832. weight: math.unit(80, "kg"),
  6833. name: "Front",
  6834. image: {
  6835. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6836. }
  6837. }
  6838. },
  6839. [
  6840. {
  6841. name: "Teramacro",
  6842. height: math.unit(500000, "lightyears"),
  6843. default: true
  6844. },
  6845. ]
  6846. ))
  6847. characterMakers.push(() => makeCharacter(
  6848. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6849. {
  6850. crux: {
  6851. height: math.unit(2, "meters"),
  6852. weight: math.unit(150, "kg"),
  6853. name: "Crux",
  6854. image: {
  6855. source: "./media/characters/vemus/crux.svg",
  6856. extra: 1074/936,
  6857. bottom: 23/1097
  6858. }
  6859. },
  6860. skunkTanuki: {
  6861. height: math.unit(2, "meters"),
  6862. weight: math.unit(150, "kg"),
  6863. name: "Skunk-Tanuki",
  6864. image: {
  6865. source: "./media/characters/vemus/skunk-tanuki.svg",
  6866. extra: 926/893,
  6867. bottom: 20/946
  6868. }
  6869. },
  6870. },
  6871. [
  6872. {
  6873. name: "Normal",
  6874. height: math.unit(3.75, "meters"),
  6875. default: true
  6876. },
  6877. {
  6878. name: "Big",
  6879. height: math.unit(8, "meters")
  6880. },
  6881. {
  6882. name: "Macro",
  6883. height: math.unit(100, "meters")
  6884. },
  6885. {
  6886. name: "Macro+",
  6887. height: math.unit(1500, "meters")
  6888. },
  6889. {
  6890. name: "Stellar",
  6891. height: math.unit(14e8, "meters")
  6892. },
  6893. ]
  6894. ))
  6895. characterMakers.push(() => makeCharacter(
  6896. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6897. {
  6898. front: {
  6899. height: math.unit(2, "meters"),
  6900. weight: math.unit(70, "kg"),
  6901. name: "Front",
  6902. image: {
  6903. source: "./media/characters/beherit/front.svg",
  6904. extra: 1234/1109,
  6905. bottom: 55/1289
  6906. }
  6907. }
  6908. },
  6909. [
  6910. {
  6911. name: "Normal",
  6912. height: math.unit(6, "feet")
  6913. },
  6914. {
  6915. name: "Lorg",
  6916. height: math.unit(25, "feet"),
  6917. default: true
  6918. },
  6919. {
  6920. name: "Lorger",
  6921. height: math.unit(75, "feet")
  6922. },
  6923. {
  6924. name: "Macro",
  6925. height: math.unit(200, "meters")
  6926. },
  6927. ]
  6928. ))
  6929. characterMakers.push(() => makeCharacter(
  6930. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6931. {
  6932. front: {
  6933. height: math.unit(2, "meters"),
  6934. weight: math.unit(150, "kg"),
  6935. name: "Front",
  6936. image: {
  6937. source: "./media/characters/everett/front.svg",
  6938. extra: 1017/866,
  6939. bottom: 86/1103
  6940. }
  6941. },
  6942. paw: {
  6943. height: math.unit(2 / 3.6, "meters"),
  6944. name: "Paw",
  6945. image: {
  6946. source: "./media/characters/everett/paw.svg"
  6947. }
  6948. },
  6949. },
  6950. [
  6951. {
  6952. name: "Normal",
  6953. height: math.unit(15, "feet"),
  6954. default: true
  6955. },
  6956. {
  6957. name: "Lorg",
  6958. height: math.unit(70, "feet"),
  6959. default: true
  6960. },
  6961. {
  6962. name: "Lorger",
  6963. height: math.unit(250, "feet")
  6964. },
  6965. {
  6966. name: "Macro",
  6967. height: math.unit(500, "meters")
  6968. },
  6969. ]
  6970. ))
  6971. characterMakers.push(() => makeCharacter(
  6972. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6973. {
  6974. front: {
  6975. height: math.unit(2, "meters"),
  6976. weight: math.unit(86, "kg"),
  6977. name: "Front",
  6978. image: {
  6979. source: "./media/characters/rose/front.svg",
  6980. extra: 1785/1636,
  6981. bottom: 30/1815
  6982. }
  6983. },
  6984. frontSporty: {
  6985. height: math.unit(2, "meters"),
  6986. weight: math.unit(86, "kg"),
  6987. name: "Front (Sporty)",
  6988. image: {
  6989. source: "./media/characters/rose/front-sporty.svg",
  6990. extra: 350/335,
  6991. bottom: 10/360
  6992. }
  6993. },
  6994. frontAlt: {
  6995. height: math.unit(1.6, "meters"),
  6996. weight: math.unit(86, "kg"),
  6997. name: "Front (Alt)",
  6998. image: {
  6999. source: "./media/characters/rose/front-alt.svg",
  7000. extra: 299/283,
  7001. bottom: 3/302
  7002. }
  7003. },
  7004. plush: {
  7005. height: math.unit(2, "meters"),
  7006. weight: math.unit(86/3, "kg"),
  7007. name: "Plush",
  7008. image: {
  7009. source: "./media/characters/rose/plush.svg",
  7010. extra: 361/337,
  7011. bottom: 11/372
  7012. }
  7013. },
  7014. },
  7015. [
  7016. {
  7017. name: "True Micro",
  7018. height: math.unit(9, "cm")
  7019. },
  7020. {
  7021. name: "Micro",
  7022. height: math.unit(16, "cm")
  7023. },
  7024. {
  7025. name: "Normal",
  7026. height: math.unit(1.85, "meters"),
  7027. default: true
  7028. },
  7029. {
  7030. name: "Mini-Macro",
  7031. height: math.unit(5, "meters")
  7032. },
  7033. {
  7034. name: "Macro",
  7035. height: math.unit(15, "meters")
  7036. },
  7037. {
  7038. name: "True Macro",
  7039. height: math.unit(40, "meters")
  7040. },
  7041. {
  7042. name: "City Scale",
  7043. height: math.unit(1, "km")
  7044. },
  7045. ]
  7046. ))
  7047. characterMakers.push(() => makeCharacter(
  7048. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7049. {
  7050. front: {
  7051. height: math.unit(2, "meters"),
  7052. weight: math.unit(350, "lbs"),
  7053. name: "Front",
  7054. image: {
  7055. source: "./media/characters/regal/front.svg"
  7056. }
  7057. },
  7058. back: {
  7059. height: math.unit(2, "meters"),
  7060. weight: math.unit(350, "lbs"),
  7061. name: "Back",
  7062. image: {
  7063. source: "./media/characters/regal/back.svg"
  7064. }
  7065. },
  7066. },
  7067. [
  7068. {
  7069. name: "Macro",
  7070. height: math.unit(350, "feet"),
  7071. default: true
  7072. }
  7073. ]
  7074. ))
  7075. characterMakers.push(() => makeCharacter(
  7076. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7077. {
  7078. front: {
  7079. height: math.unit(4 + 11 / 12, "feet"),
  7080. weight: math.unit(100, "lbs"),
  7081. name: "Front",
  7082. image: {
  7083. source: "./media/characters/opal/front.svg"
  7084. }
  7085. },
  7086. frontAlt: {
  7087. height: math.unit(4 + 11 / 12, "feet"),
  7088. weight: math.unit(100, "lbs"),
  7089. name: "Front (Alt)",
  7090. image: {
  7091. source: "./media/characters/opal/front-alt.svg"
  7092. }
  7093. },
  7094. },
  7095. [
  7096. {
  7097. name: "Small",
  7098. height: math.unit(4 + 11 / 12, "feet")
  7099. },
  7100. {
  7101. name: "Normal",
  7102. height: math.unit(20, "feet"),
  7103. default: true
  7104. },
  7105. {
  7106. name: "Macro",
  7107. height: math.unit(120, "feet")
  7108. },
  7109. {
  7110. name: "Megamacro",
  7111. height: math.unit(80, "miles")
  7112. },
  7113. {
  7114. name: "True Size",
  7115. height: math.unit(100000, "lightyears")
  7116. },
  7117. ]
  7118. ))
  7119. characterMakers.push(() => makeCharacter(
  7120. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7121. {
  7122. front: {
  7123. height: math.unit(6, "feet"),
  7124. weight: math.unit(200, "lbs"),
  7125. name: "Front",
  7126. image: {
  7127. source: "./media/characters/vector-wuff/front.svg"
  7128. }
  7129. }
  7130. },
  7131. [
  7132. {
  7133. name: "Normal",
  7134. height: math.unit(2.8, "meters")
  7135. },
  7136. {
  7137. name: "Macro",
  7138. height: math.unit(450, "meters"),
  7139. default: true
  7140. },
  7141. {
  7142. name: "Megamacro",
  7143. height: math.unit(15, "kilometers")
  7144. }
  7145. ]
  7146. ))
  7147. characterMakers.push(() => makeCharacter(
  7148. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7149. {
  7150. front: {
  7151. height: math.unit(6, "feet"),
  7152. weight: math.unit(256, "lbs"),
  7153. name: "Front",
  7154. image: {
  7155. source: "./media/characters/dannik/front.svg"
  7156. }
  7157. }
  7158. },
  7159. [
  7160. {
  7161. name: "Macro",
  7162. height: math.unit(69.57, "meters"),
  7163. default: true
  7164. },
  7165. ]
  7166. ))
  7167. characterMakers.push(() => makeCharacter(
  7168. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7169. {
  7170. front: {
  7171. height: math.unit(6, "feet"),
  7172. weight: math.unit(120, "lbs"),
  7173. name: "Front",
  7174. image: {
  7175. source: "./media/characters/azura-saharah/front.svg"
  7176. }
  7177. },
  7178. back: {
  7179. height: math.unit(6, "feet"),
  7180. weight: math.unit(120, "lbs"),
  7181. name: "Back",
  7182. image: {
  7183. source: "./media/characters/azura-saharah/back.svg"
  7184. }
  7185. },
  7186. },
  7187. [
  7188. {
  7189. name: "Macro",
  7190. height: math.unit(100, "feet"),
  7191. default: true
  7192. },
  7193. ]
  7194. ))
  7195. characterMakers.push(() => makeCharacter(
  7196. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7197. {
  7198. side: {
  7199. height: math.unit(5 + 4 / 12, "feet"),
  7200. weight: math.unit(163, "lbs"),
  7201. name: "Side",
  7202. image: {
  7203. source: "./media/characters/kennedy/side.svg"
  7204. }
  7205. }
  7206. },
  7207. [
  7208. {
  7209. name: "Standard Doggo",
  7210. height: math.unit(5 + 4 / 12, "feet")
  7211. },
  7212. {
  7213. name: "Big Doggo",
  7214. height: math.unit(25 + 3 / 12, "feet"),
  7215. default: true
  7216. },
  7217. ]
  7218. ))
  7219. characterMakers.push(() => makeCharacter(
  7220. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7221. {
  7222. front: {
  7223. height: math.unit(5 + 5/12, "feet"),
  7224. weight: math.unit(100, "lbs"),
  7225. name: "Front",
  7226. image: {
  7227. source: "./media/characters/odios-de-lunar/front.svg",
  7228. extra: 1468/1323,
  7229. bottom: 22/1490
  7230. }
  7231. }
  7232. },
  7233. [
  7234. {
  7235. name: "Micro",
  7236. height: math.unit(3, "inches")
  7237. },
  7238. {
  7239. name: "Normal",
  7240. height: math.unit(5.5, "feet"),
  7241. default: true
  7242. },
  7243. {
  7244. name: "Macro",
  7245. height: math.unit(100, "feet")
  7246. },
  7247. ]
  7248. ))
  7249. characterMakers.push(() => makeCharacter(
  7250. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7251. {
  7252. back: {
  7253. height: math.unit(6, "feet"),
  7254. weight: math.unit(220, "lbs"),
  7255. name: "Back",
  7256. image: {
  7257. source: "./media/characters/mandake/back.svg"
  7258. }
  7259. }
  7260. },
  7261. [
  7262. {
  7263. name: "Normal",
  7264. height: math.unit(7, "feet"),
  7265. default: true
  7266. },
  7267. {
  7268. name: "Macro",
  7269. height: math.unit(78, "feet")
  7270. },
  7271. {
  7272. name: "Macro+",
  7273. height: math.unit(300, "meters")
  7274. },
  7275. {
  7276. name: "Macro++",
  7277. height: math.unit(2400, "feet")
  7278. },
  7279. {
  7280. name: "Megamacro",
  7281. height: math.unit(5167, "meters")
  7282. },
  7283. {
  7284. name: "Gigamacro",
  7285. height: math.unit(41769, "miles")
  7286. },
  7287. ]
  7288. ))
  7289. characterMakers.push(() => makeCharacter(
  7290. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7291. {
  7292. front: {
  7293. height: math.unit(6, "feet"),
  7294. weight: math.unit(120, "lbs"),
  7295. name: "Front",
  7296. image: {
  7297. source: "./media/characters/yozey/front.svg"
  7298. }
  7299. },
  7300. frontAlt: {
  7301. height: math.unit(6, "feet"),
  7302. weight: math.unit(120, "lbs"),
  7303. name: "Front (Alt)",
  7304. image: {
  7305. source: "./media/characters/yozey/front-alt.svg"
  7306. }
  7307. },
  7308. side: {
  7309. height: math.unit(6, "feet"),
  7310. weight: math.unit(120, "lbs"),
  7311. name: "Side",
  7312. image: {
  7313. source: "./media/characters/yozey/side.svg"
  7314. }
  7315. },
  7316. },
  7317. [
  7318. {
  7319. name: "Micro",
  7320. height: math.unit(3, "inches"),
  7321. default: true
  7322. },
  7323. {
  7324. name: "Normal",
  7325. height: math.unit(6, "feet")
  7326. }
  7327. ]
  7328. ))
  7329. characterMakers.push(() => makeCharacter(
  7330. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7331. {
  7332. front: {
  7333. height: math.unit(6, "feet"),
  7334. weight: math.unit(103, "lbs"),
  7335. name: "Front",
  7336. image: {
  7337. source: "./media/characters/valeska-voss/front.svg"
  7338. }
  7339. }
  7340. },
  7341. [
  7342. {
  7343. name: "Mini-Sized Sub",
  7344. height: math.unit(3.1, "inches")
  7345. },
  7346. {
  7347. name: "Mid-Sized Sub",
  7348. height: math.unit(6.2, "inches")
  7349. },
  7350. {
  7351. name: "Full-Sized Sub",
  7352. height: math.unit(9.3, "inches")
  7353. },
  7354. {
  7355. name: "Normal",
  7356. height: math.unit(5 + 2 / 12, "foot"),
  7357. default: true
  7358. },
  7359. ]
  7360. ))
  7361. characterMakers.push(() => makeCharacter(
  7362. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7363. {
  7364. front: {
  7365. height: math.unit(6, "feet"),
  7366. weight: math.unit(160, "lbs"),
  7367. name: "Front",
  7368. image: {
  7369. source: "./media/characters/gene-zeta/front.svg",
  7370. extra: 3006 / 2826,
  7371. bottom: 182 / 3188
  7372. }
  7373. }
  7374. },
  7375. [
  7376. {
  7377. name: "Micro",
  7378. height: math.unit(6, "inches")
  7379. },
  7380. {
  7381. name: "Normal",
  7382. height: math.unit(5 + 11 / 12, "foot"),
  7383. default: true
  7384. },
  7385. {
  7386. name: "Macro",
  7387. height: math.unit(140, "feet")
  7388. },
  7389. {
  7390. name: "Supercharged",
  7391. height: math.unit(2500, "feet")
  7392. },
  7393. ]
  7394. ))
  7395. characterMakers.push(() => makeCharacter(
  7396. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7397. {
  7398. front: {
  7399. height: math.unit(6, "feet"),
  7400. weight: math.unit(350, "lbs"),
  7401. name: "Front",
  7402. image: {
  7403. source: "./media/characters/razinox/front.svg",
  7404. extra: 1686 / 1548,
  7405. bottom: 28.2 / 1868
  7406. }
  7407. },
  7408. back: {
  7409. height: math.unit(6, "feet"),
  7410. weight: math.unit(350, "lbs"),
  7411. name: "Back",
  7412. image: {
  7413. source: "./media/characters/razinox/back.svg",
  7414. extra: 1660 / 1590,
  7415. bottom: 15 / 1665
  7416. }
  7417. },
  7418. },
  7419. [
  7420. {
  7421. name: "Normal",
  7422. height: math.unit(10 + 8 / 12, "foot")
  7423. },
  7424. {
  7425. name: "Minimacro",
  7426. height: math.unit(15, "foot")
  7427. },
  7428. {
  7429. name: "Macro",
  7430. height: math.unit(60, "foot"),
  7431. default: true
  7432. },
  7433. {
  7434. name: "Megamacro",
  7435. height: math.unit(5, "miles")
  7436. },
  7437. {
  7438. name: "Gigamacro",
  7439. height: math.unit(6000, "miles")
  7440. },
  7441. ]
  7442. ))
  7443. characterMakers.push(() => makeCharacter(
  7444. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7445. {
  7446. front: {
  7447. height: math.unit(6, "feet"),
  7448. weight: math.unit(150, "lbs"),
  7449. name: "Front",
  7450. image: {
  7451. source: "./media/characters/cobalt/front.svg"
  7452. }
  7453. }
  7454. },
  7455. [
  7456. {
  7457. name: "Normal",
  7458. height: math.unit(8 + 1 / 12, "foot")
  7459. },
  7460. {
  7461. name: "Macro",
  7462. height: math.unit(111, "foot"),
  7463. default: true
  7464. },
  7465. {
  7466. name: "Supracosmic",
  7467. height: math.unit(1e42, "feet")
  7468. },
  7469. ]
  7470. ))
  7471. characterMakers.push(() => makeCharacter(
  7472. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7473. {
  7474. front: {
  7475. height: math.unit(6, "feet"),
  7476. weight: math.unit(140, "lbs"),
  7477. name: "Front",
  7478. image: {
  7479. source: "./media/characters/amanda/front.svg"
  7480. }
  7481. }
  7482. },
  7483. [
  7484. {
  7485. name: "Micro",
  7486. height: math.unit(5, "inches"),
  7487. default: true
  7488. },
  7489. ]
  7490. ))
  7491. characterMakers.push(() => makeCharacter(
  7492. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7493. {
  7494. front: {
  7495. height: math.unit(2.75, "meters"),
  7496. weight: math.unit(1200, "lb"),
  7497. name: "Front",
  7498. image: {
  7499. source: "./media/characters/teal/front.svg",
  7500. extra: 2463 / 2320,
  7501. bottom: 166 / 2629
  7502. }
  7503. },
  7504. back: {
  7505. height: math.unit(2.75, "meters"),
  7506. weight: math.unit(1200, "lb"),
  7507. name: "Back",
  7508. image: {
  7509. source: "./media/characters/teal/back.svg",
  7510. extra: 2580 / 2489,
  7511. bottom: 151 / 2731
  7512. }
  7513. },
  7514. sitting: {
  7515. height: math.unit(1.9, "meters"),
  7516. weight: math.unit(1200, "lb"),
  7517. name: "Sitting",
  7518. image: {
  7519. source: "./media/characters/teal/sitting.svg",
  7520. extra: 623 / 590,
  7521. bottom: 121 / 744
  7522. }
  7523. },
  7524. standing: {
  7525. height: math.unit(2.75, "meters"),
  7526. weight: math.unit(1200, "lb"),
  7527. name: "Standing",
  7528. image: {
  7529. source: "./media/characters/teal/standing.svg",
  7530. extra: 923 / 893,
  7531. bottom: 60 / 983
  7532. }
  7533. },
  7534. stretching: {
  7535. height: math.unit(3.65, "meters"),
  7536. weight: math.unit(1200, "lb"),
  7537. name: "Stretching",
  7538. image: {
  7539. source: "./media/characters/teal/stretching.svg",
  7540. extra: 1276 / 1244,
  7541. bottom: 0 / 1276
  7542. }
  7543. },
  7544. legged: {
  7545. height: math.unit(1.3, "meters"),
  7546. weight: math.unit(100, "lb"),
  7547. name: "Legged",
  7548. image: {
  7549. source: "./media/characters/teal/legged.svg",
  7550. extra: 462 / 437,
  7551. bottom: 24 / 486
  7552. }
  7553. },
  7554. naga: {
  7555. height: math.unit(5.4, "meters"),
  7556. weight: math.unit(4000, "lb"),
  7557. name: "Naga",
  7558. image: {
  7559. source: "./media/characters/teal/naga.svg",
  7560. extra: 1902 / 1858,
  7561. bottom: 0 / 1902
  7562. }
  7563. },
  7564. hand: {
  7565. height: math.unit(0.52, "meters"),
  7566. name: "Hand",
  7567. image: {
  7568. source: "./media/characters/teal/hand.svg"
  7569. }
  7570. },
  7571. maw: {
  7572. height: math.unit(0.43, "meters"),
  7573. name: "Maw",
  7574. image: {
  7575. source: "./media/characters/teal/maw.svg"
  7576. }
  7577. },
  7578. slit: {
  7579. height: math.unit(0.25, "meters"),
  7580. name: "Slit",
  7581. image: {
  7582. source: "./media/characters/teal/slit.svg"
  7583. }
  7584. },
  7585. },
  7586. [
  7587. {
  7588. name: "Normal",
  7589. height: math.unit(2.75, "meters"),
  7590. default: true
  7591. },
  7592. {
  7593. name: "Macro",
  7594. height: math.unit(300, "feet")
  7595. },
  7596. {
  7597. name: "Macro+",
  7598. height: math.unit(2000, "feet")
  7599. },
  7600. ]
  7601. ))
  7602. characterMakers.push(() => makeCharacter(
  7603. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7604. {
  7605. frontCat: {
  7606. height: math.unit(6, "feet"),
  7607. weight: math.unit(180, "lbs"),
  7608. name: "Front (Cat)",
  7609. image: {
  7610. source: "./media/characters/ravin-amulet/front-cat.svg"
  7611. }
  7612. },
  7613. frontCatAlt: {
  7614. height: math.unit(6, "feet"),
  7615. weight: math.unit(180, "lbs"),
  7616. name: "Front (Alt, Cat)",
  7617. image: {
  7618. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7619. }
  7620. },
  7621. frontWerewolf: {
  7622. height: math.unit(6 * 1.2, "feet"),
  7623. weight: math.unit(225, "lbs"),
  7624. name: "Front (Werewolf)",
  7625. image: {
  7626. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7627. }
  7628. },
  7629. backWerewolf: {
  7630. height: math.unit(6 * 1.2, "feet"),
  7631. weight: math.unit(225, "lbs"),
  7632. name: "Back (Werewolf)",
  7633. image: {
  7634. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7635. }
  7636. },
  7637. },
  7638. [
  7639. {
  7640. name: "Nano",
  7641. height: math.unit(1, "micrometer")
  7642. },
  7643. {
  7644. name: "Micro",
  7645. height: math.unit(1, "inch")
  7646. },
  7647. {
  7648. name: "Normal",
  7649. height: math.unit(6, "feet"),
  7650. default: true
  7651. },
  7652. {
  7653. name: "Macro",
  7654. height: math.unit(60, "feet")
  7655. }
  7656. ]
  7657. ))
  7658. characterMakers.push(() => makeCharacter(
  7659. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7660. {
  7661. front: {
  7662. height: math.unit(6, "feet"),
  7663. weight: math.unit(165, "lbs"),
  7664. name: "Front",
  7665. image: {
  7666. source: "./media/characters/fluoresce/front.svg"
  7667. }
  7668. }
  7669. },
  7670. [
  7671. {
  7672. name: "Micro",
  7673. height: math.unit(6, "cm")
  7674. },
  7675. {
  7676. name: "Normal",
  7677. height: math.unit(5 + 7 / 12, "feet"),
  7678. default: true
  7679. },
  7680. {
  7681. name: "Macro",
  7682. height: math.unit(56, "feet")
  7683. },
  7684. {
  7685. name: "Megamacro",
  7686. height: math.unit(1.9, "miles")
  7687. },
  7688. ]
  7689. ))
  7690. characterMakers.push(() => makeCharacter(
  7691. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7692. {
  7693. front: {
  7694. height: math.unit(9 + 6 / 12, "feet"),
  7695. weight: math.unit(523, "lbs"),
  7696. name: "Side",
  7697. image: {
  7698. source: "./media/characters/aurora/side.svg"
  7699. }
  7700. }
  7701. },
  7702. [
  7703. {
  7704. name: "Normal",
  7705. height: math.unit(9 + 6 / 12, "feet")
  7706. },
  7707. {
  7708. name: "Macro",
  7709. height: math.unit(96, "feet"),
  7710. default: true
  7711. },
  7712. {
  7713. name: "Macro+",
  7714. height: math.unit(243, "feet")
  7715. },
  7716. ]
  7717. ))
  7718. characterMakers.push(() => makeCharacter(
  7719. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7720. {
  7721. front: {
  7722. height: math.unit(194, "cm"),
  7723. weight: math.unit(90, "kg"),
  7724. name: "Front",
  7725. image: {
  7726. source: "./media/characters/ranek/front.svg"
  7727. }
  7728. },
  7729. side: {
  7730. height: math.unit(194, "cm"),
  7731. weight: math.unit(90, "kg"),
  7732. name: "Side",
  7733. image: {
  7734. source: "./media/characters/ranek/side.svg"
  7735. }
  7736. },
  7737. back: {
  7738. height: math.unit(194, "cm"),
  7739. weight: math.unit(90, "kg"),
  7740. name: "Back",
  7741. image: {
  7742. source: "./media/characters/ranek/back.svg"
  7743. }
  7744. },
  7745. feral: {
  7746. height: math.unit(30, "cm"),
  7747. weight: math.unit(1.6, "lbs"),
  7748. name: "Feral",
  7749. image: {
  7750. source: "./media/characters/ranek/feral.svg"
  7751. }
  7752. },
  7753. },
  7754. [
  7755. {
  7756. name: "Normal",
  7757. height: math.unit(194, "cm"),
  7758. default: true
  7759. },
  7760. {
  7761. name: "Macro",
  7762. height: math.unit(100, "meters")
  7763. },
  7764. ]
  7765. ))
  7766. characterMakers.push(() => makeCharacter(
  7767. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7768. {
  7769. front: {
  7770. height: math.unit(5 + 6 / 12, "feet"),
  7771. weight: math.unit(153, "lbs"),
  7772. name: "Front",
  7773. image: {
  7774. source: "./media/characters/andrew-cooper/front.svg"
  7775. }
  7776. },
  7777. },
  7778. [
  7779. {
  7780. name: "Nano",
  7781. height: math.unit(1, "mm")
  7782. },
  7783. {
  7784. name: "Micro",
  7785. height: math.unit(2, "inches")
  7786. },
  7787. {
  7788. name: "Normal",
  7789. height: math.unit(5 + 6 / 12, "feet"),
  7790. default: true
  7791. }
  7792. ]
  7793. ))
  7794. characterMakers.push(() => makeCharacter(
  7795. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7796. {
  7797. front: {
  7798. height: math.unit(6, "feet"),
  7799. weight: math.unit(180, "lbs"),
  7800. name: "Front",
  7801. image: {
  7802. source: "./media/characters/akane-sato/front.svg",
  7803. extra: 1219 / 1140
  7804. }
  7805. },
  7806. back: {
  7807. height: math.unit(6, "feet"),
  7808. weight: math.unit(180, "lbs"),
  7809. name: "Back",
  7810. image: {
  7811. source: "./media/characters/akane-sato/back.svg",
  7812. extra: 1219 / 1170
  7813. }
  7814. },
  7815. },
  7816. [
  7817. {
  7818. name: "Normal",
  7819. height: math.unit(2.5, "meters")
  7820. },
  7821. {
  7822. name: "Macro",
  7823. height: math.unit(250, "meters"),
  7824. default: true
  7825. },
  7826. {
  7827. name: "Megamacro",
  7828. height: math.unit(25, "km")
  7829. },
  7830. ]
  7831. ))
  7832. characterMakers.push(() => makeCharacter(
  7833. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7834. {
  7835. front: {
  7836. height: math.unit(6, "feet"),
  7837. weight: math.unit(65, "kg"),
  7838. name: "Front",
  7839. image: {
  7840. source: "./media/characters/rook/front.svg",
  7841. extra: 960 / 950
  7842. }
  7843. }
  7844. },
  7845. [
  7846. {
  7847. name: "Normal",
  7848. height: math.unit(8.8, "feet")
  7849. },
  7850. {
  7851. name: "Macro",
  7852. height: math.unit(88, "feet"),
  7853. default: true
  7854. },
  7855. {
  7856. name: "Megamacro",
  7857. height: math.unit(8, "miles")
  7858. },
  7859. ]
  7860. ))
  7861. characterMakers.push(() => makeCharacter(
  7862. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7863. {
  7864. front: {
  7865. height: math.unit(12 + 2 / 12, "feet"),
  7866. weight: math.unit(808, "lbs"),
  7867. name: "Front",
  7868. image: {
  7869. source: "./media/characters/prodigy/front.svg"
  7870. }
  7871. }
  7872. },
  7873. [
  7874. {
  7875. name: "Normal",
  7876. height: math.unit(12 + 2 / 12, "feet"),
  7877. default: true
  7878. },
  7879. {
  7880. name: "Macro",
  7881. height: math.unit(143, "feet")
  7882. },
  7883. {
  7884. name: "Macro+",
  7885. height: math.unit(400, "feet")
  7886. },
  7887. ]
  7888. ))
  7889. characterMakers.push(() => makeCharacter(
  7890. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7891. {
  7892. front: {
  7893. height: math.unit(6, "feet"),
  7894. weight: math.unit(225, "lbs"),
  7895. name: "Front",
  7896. image: {
  7897. source: "./media/characters/daniel/front.svg"
  7898. }
  7899. },
  7900. leaning: {
  7901. height: math.unit(6, "feet"),
  7902. weight: math.unit(225, "lbs"),
  7903. name: "Leaning",
  7904. image: {
  7905. source: "./media/characters/daniel/leaning.svg"
  7906. }
  7907. },
  7908. },
  7909. [
  7910. {
  7911. name: "Macro",
  7912. height: math.unit(1000, "feet"),
  7913. default: true
  7914. },
  7915. ]
  7916. ))
  7917. characterMakers.push(() => makeCharacter(
  7918. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7919. {
  7920. front: {
  7921. height: math.unit(6, "feet"),
  7922. weight: math.unit(88, "lbs"),
  7923. name: "Front",
  7924. image: {
  7925. source: "./media/characters/chiros/front.svg",
  7926. extra: 306 / 226
  7927. }
  7928. },
  7929. side: {
  7930. height: math.unit(6, "feet"),
  7931. weight: math.unit(88, "lbs"),
  7932. name: "Side",
  7933. image: {
  7934. source: "./media/characters/chiros/side.svg",
  7935. extra: 306 / 226
  7936. }
  7937. },
  7938. },
  7939. [
  7940. {
  7941. name: "Normal",
  7942. height: math.unit(6, "cm"),
  7943. default: true
  7944. },
  7945. ]
  7946. ))
  7947. characterMakers.push(() => makeCharacter(
  7948. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7949. {
  7950. front: {
  7951. height: math.unit(6, "feet"),
  7952. weight: math.unit(100, "lbs"),
  7953. name: "Front",
  7954. image: {
  7955. source: "./media/characters/selka/front.svg",
  7956. extra: 947 / 887
  7957. }
  7958. }
  7959. },
  7960. [
  7961. {
  7962. name: "Normal",
  7963. height: math.unit(5, "cm"),
  7964. default: true
  7965. },
  7966. ]
  7967. ))
  7968. characterMakers.push(() => makeCharacter(
  7969. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7970. {
  7971. front: {
  7972. height: math.unit(8 + 3 / 12, "feet"),
  7973. weight: math.unit(424, "lbs"),
  7974. name: "Front",
  7975. image: {
  7976. source: "./media/characters/verin/front.svg",
  7977. extra: 1845 / 1550
  7978. }
  7979. },
  7980. frontArmored: {
  7981. height: math.unit(8 + 3 / 12, "feet"),
  7982. weight: math.unit(424, "lbs"),
  7983. name: "Front (Armored)",
  7984. image: {
  7985. source: "./media/characters/verin/front-armor.svg",
  7986. extra: 1845 / 1550,
  7987. bottom: 0.01
  7988. }
  7989. },
  7990. back: {
  7991. height: math.unit(8 + 3 / 12, "feet"),
  7992. weight: math.unit(424, "lbs"),
  7993. name: "Back",
  7994. image: {
  7995. source: "./media/characters/verin/back.svg",
  7996. bottom: 0.1,
  7997. extra: 1
  7998. }
  7999. },
  8000. foot: {
  8001. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8002. name: "Foot",
  8003. image: {
  8004. source: "./media/characters/verin/foot.svg"
  8005. }
  8006. },
  8007. },
  8008. [
  8009. {
  8010. name: "Normal",
  8011. height: math.unit(8 + 3 / 12, "feet")
  8012. },
  8013. {
  8014. name: "Minimacro",
  8015. height: math.unit(21, "feet"),
  8016. default: true
  8017. },
  8018. {
  8019. name: "Macro",
  8020. height: math.unit(626, "feet")
  8021. },
  8022. ]
  8023. ))
  8024. characterMakers.push(() => makeCharacter(
  8025. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8026. {
  8027. front: {
  8028. height: math.unit(2.718, "meters"),
  8029. weight: math.unit(150, "lbs"),
  8030. name: "Front",
  8031. image: {
  8032. source: "./media/characters/sovrim-terraquian/front.svg",
  8033. extra: 1752/1689,
  8034. bottom: 36/1788
  8035. }
  8036. },
  8037. back: {
  8038. height: math.unit(2.718, "meters"),
  8039. weight: math.unit(150, "lbs"),
  8040. name: "Back",
  8041. image: {
  8042. source: "./media/characters/sovrim-terraquian/back.svg",
  8043. extra: 1698/1657,
  8044. bottom: 58/1756
  8045. }
  8046. },
  8047. tongue: {
  8048. height: math.unit(2.865, "feet"),
  8049. name: "Tongue",
  8050. image: {
  8051. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8052. }
  8053. },
  8054. hand: {
  8055. height: math.unit(1.61, "feet"),
  8056. name: "Hand",
  8057. image: {
  8058. source: "./media/characters/sovrim-terraquian/hand.svg"
  8059. }
  8060. },
  8061. foot: {
  8062. height: math.unit(1.05, "feet"),
  8063. name: "Foot",
  8064. image: {
  8065. source: "./media/characters/sovrim-terraquian/foot.svg"
  8066. }
  8067. },
  8068. footAlt: {
  8069. height: math.unit(0.88, "feet"),
  8070. name: "Foot (Alt)",
  8071. image: {
  8072. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8073. }
  8074. },
  8075. },
  8076. [
  8077. {
  8078. name: "Micro",
  8079. height: math.unit(2, "inches")
  8080. },
  8081. {
  8082. name: "Small",
  8083. height: math.unit(1, "meter")
  8084. },
  8085. {
  8086. name: "Normal",
  8087. height: math.unit(Math.E, "meters"),
  8088. default: true
  8089. },
  8090. {
  8091. name: "Macro",
  8092. height: math.unit(20, "meters")
  8093. },
  8094. {
  8095. name: "Macro+",
  8096. height: math.unit(400, "meters")
  8097. },
  8098. ]
  8099. ))
  8100. characterMakers.push(() => makeCharacter(
  8101. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8102. {
  8103. front: {
  8104. height: math.unit(7, "feet"),
  8105. weight: math.unit(489, "lbs"),
  8106. name: "Front",
  8107. image: {
  8108. source: "./media/characters/reece-silvermane/front.svg",
  8109. bottom: 0.02,
  8110. extra: 1
  8111. }
  8112. },
  8113. },
  8114. [
  8115. {
  8116. name: "Macro",
  8117. height: math.unit(1.5, "miles"),
  8118. default: true
  8119. },
  8120. ]
  8121. ))
  8122. characterMakers.push(() => makeCharacter(
  8123. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8124. {
  8125. front: {
  8126. height: math.unit(6, "feet"),
  8127. weight: math.unit(78, "kg"),
  8128. name: "Front",
  8129. image: {
  8130. source: "./media/characters/kane/front.svg",
  8131. extra: 978 / 899
  8132. }
  8133. },
  8134. },
  8135. [
  8136. {
  8137. name: "Normal",
  8138. height: math.unit(2.1, "m"),
  8139. },
  8140. {
  8141. name: "Macro",
  8142. height: math.unit(1, "km"),
  8143. default: true
  8144. },
  8145. ]
  8146. ))
  8147. characterMakers.push(() => makeCharacter(
  8148. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8149. {
  8150. front: {
  8151. height: math.unit(6, "feet"),
  8152. weight: math.unit(200, "kg"),
  8153. name: "Front",
  8154. image: {
  8155. source: "./media/characters/tegon/front.svg",
  8156. bottom: 0.01,
  8157. extra: 1
  8158. }
  8159. },
  8160. },
  8161. [
  8162. {
  8163. name: "Micro",
  8164. height: math.unit(1, "inch")
  8165. },
  8166. {
  8167. name: "Normal",
  8168. height: math.unit(6 + 3 / 12, "feet"),
  8169. default: true
  8170. },
  8171. {
  8172. name: "Macro",
  8173. height: math.unit(300, "feet")
  8174. },
  8175. {
  8176. name: "Megamacro",
  8177. height: math.unit(69, "miles")
  8178. },
  8179. ]
  8180. ))
  8181. characterMakers.push(() => makeCharacter(
  8182. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8183. {
  8184. side: {
  8185. height: math.unit(6, "feet"),
  8186. weight: math.unit(2304, "lbs"),
  8187. name: "Side",
  8188. image: {
  8189. source: "./media/characters/arcturax/side.svg",
  8190. extra: 790 / 376,
  8191. bottom: 0.01
  8192. }
  8193. },
  8194. },
  8195. [
  8196. {
  8197. name: "Micro",
  8198. height: math.unit(2, "inch")
  8199. },
  8200. {
  8201. name: "Normal",
  8202. height: math.unit(6, "feet")
  8203. },
  8204. {
  8205. name: "Macro",
  8206. height: math.unit(39, "feet"),
  8207. default: true
  8208. },
  8209. {
  8210. name: "Megamacro",
  8211. height: math.unit(7, "miles")
  8212. },
  8213. ]
  8214. ))
  8215. characterMakers.push(() => makeCharacter(
  8216. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8217. {
  8218. front: {
  8219. height: math.unit(6, "feet"),
  8220. weight: math.unit(50, "lbs"),
  8221. name: "Front",
  8222. image: {
  8223. source: "./media/characters/sentri/front.svg",
  8224. extra: 1750 / 1570,
  8225. bottom: 0.025
  8226. }
  8227. },
  8228. frontAlt: {
  8229. height: math.unit(6, "feet"),
  8230. weight: math.unit(50, "lbs"),
  8231. name: "Front (Alt)",
  8232. image: {
  8233. source: "./media/characters/sentri/front-alt.svg",
  8234. extra: 1750 / 1570,
  8235. bottom: 0.025
  8236. }
  8237. },
  8238. },
  8239. [
  8240. {
  8241. name: "Normal",
  8242. height: math.unit(15, "feet"),
  8243. default: true
  8244. },
  8245. {
  8246. name: "Macro",
  8247. height: math.unit(2500, "feet")
  8248. }
  8249. ]
  8250. ))
  8251. characterMakers.push(() => makeCharacter(
  8252. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8253. {
  8254. front: {
  8255. height: math.unit(5 + 8 / 12, "feet"),
  8256. weight: math.unit(130, "lbs"),
  8257. name: "Front",
  8258. image: {
  8259. source: "./media/characters/corvin/front.svg",
  8260. extra: 1803 / 1629
  8261. }
  8262. },
  8263. frontShirt: {
  8264. height: math.unit(5 + 8 / 12, "feet"),
  8265. weight: math.unit(130, "lbs"),
  8266. name: "Front (Shirt)",
  8267. image: {
  8268. source: "./media/characters/corvin/front-shirt.svg",
  8269. extra: 1803 / 1629
  8270. }
  8271. },
  8272. frontPoncho: {
  8273. height: math.unit(5 + 8 / 12, "feet"),
  8274. weight: math.unit(130, "lbs"),
  8275. name: "Front (Poncho)",
  8276. image: {
  8277. source: "./media/characters/corvin/front-poncho.svg",
  8278. extra: 1803 / 1629
  8279. }
  8280. },
  8281. side: {
  8282. height: math.unit(5 + 8 / 12, "feet"),
  8283. weight: math.unit(130, "lbs"),
  8284. name: "Side",
  8285. image: {
  8286. source: "./media/characters/corvin/side.svg",
  8287. extra: 1012 / 945
  8288. }
  8289. },
  8290. back: {
  8291. height: math.unit(5 + 8 / 12, "feet"),
  8292. weight: math.unit(130, "lbs"),
  8293. name: "Back",
  8294. image: {
  8295. source: "./media/characters/corvin/back.svg",
  8296. extra: 1803 / 1629
  8297. }
  8298. },
  8299. },
  8300. [
  8301. {
  8302. name: "Micro",
  8303. height: math.unit(3, "inches")
  8304. },
  8305. {
  8306. name: "Normal",
  8307. height: math.unit(5 + 8 / 12, "feet")
  8308. },
  8309. {
  8310. name: "Macro",
  8311. height: math.unit(300, "feet"),
  8312. default: true
  8313. },
  8314. {
  8315. name: "Megamacro",
  8316. height: math.unit(500, "miles")
  8317. }
  8318. ]
  8319. ))
  8320. characterMakers.push(() => makeCharacter(
  8321. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8322. {
  8323. front: {
  8324. height: math.unit(6, "feet"),
  8325. weight: math.unit(135, "lbs"),
  8326. name: "Front",
  8327. image: {
  8328. source: "./media/characters/q/front.svg",
  8329. extra: 854 / 752,
  8330. bottom: 0.005
  8331. }
  8332. },
  8333. back: {
  8334. height: math.unit(6, "feet"),
  8335. weight: math.unit(130, "lbs"),
  8336. name: "Back",
  8337. image: {
  8338. source: "./media/characters/q/back.svg",
  8339. extra: 854 / 752
  8340. }
  8341. },
  8342. },
  8343. [
  8344. {
  8345. name: "Macro",
  8346. height: math.unit(90, "feet"),
  8347. default: true
  8348. },
  8349. {
  8350. name: "Extra Macro",
  8351. height: math.unit(300, "feet"),
  8352. },
  8353. {
  8354. name: "BIG WALF",
  8355. height: math.unit(750, "feet"),
  8356. },
  8357. ]
  8358. ))
  8359. characterMakers.push(() => makeCharacter(
  8360. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8361. {
  8362. front: {
  8363. height: math.unit(6, "feet"),
  8364. weight: math.unit(150, "lbs"),
  8365. name: "Front",
  8366. image: {
  8367. source: "./media/characters/carley/front.svg",
  8368. extra: 3927 / 3540,
  8369. bottom: 29.2 / 735
  8370. }
  8371. }
  8372. },
  8373. [
  8374. {
  8375. name: "Normal",
  8376. height: math.unit(6 + 3 / 12, "feet")
  8377. },
  8378. {
  8379. name: "Macro",
  8380. height: math.unit(185, "feet"),
  8381. default: true
  8382. },
  8383. {
  8384. name: "Megamacro",
  8385. height: math.unit(8, "miles"),
  8386. },
  8387. ]
  8388. ))
  8389. characterMakers.push(() => makeCharacter(
  8390. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8391. {
  8392. front: {
  8393. height: math.unit(3, "feet"),
  8394. weight: math.unit(28, "lbs"),
  8395. name: "Front",
  8396. image: {
  8397. source: "./media/characters/citrine/front.svg"
  8398. }
  8399. }
  8400. },
  8401. [
  8402. {
  8403. name: "Normal",
  8404. height: math.unit(3, "feet"),
  8405. default: true
  8406. }
  8407. ]
  8408. ))
  8409. characterMakers.push(() => makeCharacter(
  8410. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8411. {
  8412. front: {
  8413. height: math.unit(14, "feet"),
  8414. weight: math.unit(1450, "kg"),
  8415. capacity: math.unit(15, "people"),
  8416. name: "Front",
  8417. image: {
  8418. source: "./media/characters/aura-starwind/front.svg",
  8419. extra: 1440/1327,
  8420. bottom: 11/1451
  8421. }
  8422. },
  8423. side: {
  8424. height: math.unit(14, "feet"),
  8425. weight: math.unit(1450, "kg"),
  8426. capacity: math.unit(15, "people"),
  8427. name: "Side",
  8428. image: {
  8429. source: "./media/characters/aura-starwind/side.svg",
  8430. extra: 1654 / 1497
  8431. }
  8432. },
  8433. taur: {
  8434. height: math.unit(18, "feet"),
  8435. weight: math.unit(5500, "kg"),
  8436. capacity: math.unit(50, "people"),
  8437. name: "Taur",
  8438. image: {
  8439. source: "./media/characters/aura-starwind/taur.svg",
  8440. extra: 1760 / 1650
  8441. }
  8442. },
  8443. feral: {
  8444. height: math.unit(46, "feet"),
  8445. weight: math.unit(25000, "kg"),
  8446. capacity: math.unit(120, "people"),
  8447. name: "Feral",
  8448. image: {
  8449. source: "./media/characters/aura-starwind/feral.svg"
  8450. }
  8451. },
  8452. },
  8453. [
  8454. {
  8455. name: "Normal",
  8456. height: math.unit(14, "feet"),
  8457. default: true
  8458. },
  8459. {
  8460. name: "Macro",
  8461. height: math.unit(50, "meters")
  8462. },
  8463. {
  8464. name: "Megamacro",
  8465. height: math.unit(5000, "meters")
  8466. },
  8467. {
  8468. name: "Gigamacro",
  8469. height: math.unit(100000, "kilometers")
  8470. },
  8471. ]
  8472. ))
  8473. characterMakers.push(() => makeCharacter(
  8474. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8475. {
  8476. front: {
  8477. height: math.unit(2 + 7 / 12, "feet"),
  8478. weight: math.unit(32, "lbs"),
  8479. name: "Front",
  8480. image: {
  8481. source: "./media/characters/rivet/front.svg",
  8482. extra: 1716 / 1658,
  8483. bottom: 0.03
  8484. }
  8485. },
  8486. foot: {
  8487. height: math.unit(0.551, "feet"),
  8488. name: "Rivet's Foot",
  8489. image: {
  8490. source: "./media/characters/rivet/foot.svg"
  8491. },
  8492. rename: true
  8493. }
  8494. },
  8495. [
  8496. {
  8497. name: "Micro",
  8498. height: math.unit(1.5, "inches"),
  8499. },
  8500. {
  8501. name: "Normal",
  8502. height: math.unit(2 + 7 / 12, "feet"),
  8503. default: true
  8504. },
  8505. {
  8506. name: "Macro",
  8507. height: math.unit(85, "feet")
  8508. },
  8509. {
  8510. name: "Megamacro",
  8511. height: math.unit(2.2, "km")
  8512. }
  8513. ]
  8514. ))
  8515. characterMakers.push(() => makeCharacter(
  8516. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8517. {
  8518. front: {
  8519. height: math.unit(5 + 9 / 12, "feet"),
  8520. weight: math.unit(150, "lbs"),
  8521. name: "Front",
  8522. image: {
  8523. source: "./media/characters/coffee/front.svg",
  8524. extra: 3666 / 3032,
  8525. bottom: 0.04
  8526. }
  8527. },
  8528. foot: {
  8529. height: math.unit(1.29, "feet"),
  8530. name: "Foot",
  8531. image: {
  8532. source: "./media/characters/coffee/foot.svg"
  8533. }
  8534. },
  8535. },
  8536. [
  8537. {
  8538. name: "Micro",
  8539. height: math.unit(2, "inches"),
  8540. },
  8541. {
  8542. name: "Normal",
  8543. height: math.unit(5 + 9 / 12, "feet"),
  8544. default: true
  8545. },
  8546. {
  8547. name: "Macro",
  8548. height: math.unit(800, "feet")
  8549. },
  8550. {
  8551. name: "Megamacro",
  8552. height: math.unit(25, "miles")
  8553. }
  8554. ]
  8555. ))
  8556. characterMakers.push(() => makeCharacter(
  8557. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8558. {
  8559. front: {
  8560. height: math.unit(6, "feet"),
  8561. weight: math.unit(200, "lbs"),
  8562. name: "Front",
  8563. image: {
  8564. source: "./media/characters/chari-gal/front.svg",
  8565. extra: 1568 / 1385,
  8566. bottom: 0.047
  8567. }
  8568. },
  8569. gigantamax: {
  8570. height: math.unit(6 * 16, "feet"),
  8571. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8572. name: "Gigantamax",
  8573. image: {
  8574. source: "./media/characters/chari-gal/gigantamax.svg",
  8575. extra: 1124 / 888,
  8576. bottom: 0.03
  8577. }
  8578. },
  8579. },
  8580. [
  8581. {
  8582. name: "Normal",
  8583. height: math.unit(5 + 7 / 12, "feet")
  8584. },
  8585. {
  8586. name: "Macro",
  8587. height: math.unit(200, "feet"),
  8588. default: true
  8589. }
  8590. ]
  8591. ))
  8592. characterMakers.push(() => makeCharacter(
  8593. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8594. {
  8595. front: {
  8596. height: math.unit(6, "feet"),
  8597. weight: math.unit(150, "lbs"),
  8598. name: "Front",
  8599. image: {
  8600. source: "./media/characters/nova/front.svg",
  8601. extra: 5000 / 4722,
  8602. bottom: 0.02
  8603. }
  8604. }
  8605. },
  8606. [
  8607. {
  8608. name: "Micro-",
  8609. height: math.unit(0.8, "inches")
  8610. },
  8611. {
  8612. name: "Micro",
  8613. height: math.unit(2, "inches"),
  8614. default: true
  8615. },
  8616. ]
  8617. ))
  8618. characterMakers.push(() => makeCharacter(
  8619. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8620. {
  8621. front: {
  8622. height: math.unit(3 + 1 / 12, "feet"),
  8623. weight: math.unit(21.7, "lbs"),
  8624. name: "Front",
  8625. image: {
  8626. source: "./media/characters/argent/front.svg",
  8627. extra: 1471 / 1331,
  8628. bottom: 100.8 / 1575.5
  8629. }
  8630. }
  8631. },
  8632. [
  8633. {
  8634. name: "Micro",
  8635. height: math.unit(2, "inches")
  8636. },
  8637. {
  8638. name: "Normal",
  8639. height: math.unit(3 + 1 / 12, "feet"),
  8640. default: true
  8641. },
  8642. {
  8643. name: "Macro",
  8644. height: math.unit(120, "feet")
  8645. },
  8646. ]
  8647. ))
  8648. characterMakers.push(() => makeCharacter(
  8649. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8650. {
  8651. lamp: {
  8652. height: math.unit(7 * 1559 / 989, "feet"),
  8653. name: "Magic Lamp",
  8654. image: {
  8655. source: "./media/characters/mira-al-cul/lamp.svg",
  8656. extra: 1617 / 1559
  8657. }
  8658. },
  8659. front: {
  8660. height: math.unit(7, "feet"),
  8661. name: "Front",
  8662. image: {
  8663. source: "./media/characters/mira-al-cul/front.svg",
  8664. extra: 1044 / 990
  8665. }
  8666. },
  8667. },
  8668. [
  8669. {
  8670. name: "Heavily Restricted",
  8671. height: math.unit(7 * 1559 / 989, "feet")
  8672. },
  8673. {
  8674. name: "Freshly Freed",
  8675. height: math.unit(50 * 1559 / 989, "feet")
  8676. },
  8677. {
  8678. name: "World Encompassing",
  8679. height: math.unit(10000 * 1559 / 989, "miles")
  8680. },
  8681. {
  8682. name: "Galactic",
  8683. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8684. },
  8685. {
  8686. name: "Palmed Universe",
  8687. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8688. default: true
  8689. },
  8690. {
  8691. name: "Multiversal Matriarch",
  8692. height: math.unit(8.87e10, "yottameters")
  8693. },
  8694. {
  8695. name: "Void Mother",
  8696. height: math.unit(3.14e110, "yottaparsecs")
  8697. },
  8698. {
  8699. name: "Toying with Transcendence",
  8700. height: math.unit(1e307, "meters")
  8701. },
  8702. ]
  8703. ))
  8704. characterMakers.push(() => makeCharacter(
  8705. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8706. {
  8707. front: {
  8708. height: math.unit(17 + 1 / 12, "feet"),
  8709. weight: math.unit(476.2 * 5, "lbs"),
  8710. name: "Front",
  8711. image: {
  8712. source: "./media/characters/kuro-shi-uchū/front.svg",
  8713. extra: 2329 / 1835,
  8714. bottom: 0.02
  8715. }
  8716. },
  8717. },
  8718. [
  8719. {
  8720. name: "Micro",
  8721. height: math.unit(2, "inches")
  8722. },
  8723. {
  8724. name: "Normal",
  8725. height: math.unit(12, "meters")
  8726. },
  8727. {
  8728. name: "Planetary",
  8729. height: math.unit(0.00929, "AU"),
  8730. default: true
  8731. },
  8732. {
  8733. name: "Universal",
  8734. height: math.unit(20, "gigaparsecs")
  8735. },
  8736. ]
  8737. ))
  8738. characterMakers.push(() => makeCharacter(
  8739. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8740. {
  8741. front: {
  8742. height: math.unit(5 + 2 / 12, "feet"),
  8743. weight: math.unit(120, "lbs"),
  8744. name: "Front",
  8745. image: {
  8746. source: "./media/characters/katherine/front.svg",
  8747. extra: 2075 / 1969
  8748. }
  8749. },
  8750. dress: {
  8751. height: math.unit(5 + 2 / 12, "feet"),
  8752. weight: math.unit(120, "lbs"),
  8753. name: "Dress",
  8754. image: {
  8755. source: "./media/characters/katherine/dress.svg",
  8756. extra: 2258 / 2064
  8757. }
  8758. },
  8759. },
  8760. [
  8761. {
  8762. name: "Micro",
  8763. height: math.unit(1, "inches"),
  8764. default: true
  8765. },
  8766. {
  8767. name: "Normal",
  8768. height: math.unit(5 + 2 / 12, "feet")
  8769. },
  8770. {
  8771. name: "Macro",
  8772. height: math.unit(100, "meters")
  8773. },
  8774. {
  8775. name: "Megamacro",
  8776. height: math.unit(80, "miles")
  8777. },
  8778. ]
  8779. ))
  8780. characterMakers.push(() => makeCharacter(
  8781. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8782. {
  8783. front: {
  8784. height: math.unit(7 + 8 / 12, "feet"),
  8785. weight: math.unit(250, "lbs"),
  8786. name: "Front",
  8787. image: {
  8788. source: "./media/characters/yevis/front.svg",
  8789. extra: 1938 / 1755
  8790. }
  8791. }
  8792. },
  8793. [
  8794. {
  8795. name: "Mortal",
  8796. height: math.unit(7 + 8 / 12, "feet")
  8797. },
  8798. {
  8799. name: "Battle",
  8800. height: math.unit(25 + 11 / 12, "feet")
  8801. },
  8802. {
  8803. name: "Wrath",
  8804. height: math.unit(1654 + 11 / 12, "feet")
  8805. },
  8806. {
  8807. name: "Planet Destroyer",
  8808. height: math.unit(12000, "miles")
  8809. },
  8810. {
  8811. name: "Galaxy Conqueror",
  8812. height: math.unit(1.45, "zettameters"),
  8813. default: true
  8814. },
  8815. {
  8816. name: "Universal War",
  8817. height: math.unit(184, "gigaparsecs")
  8818. },
  8819. {
  8820. name: "Eternity War",
  8821. height: math.unit(1.98e55, "yottaparsecs")
  8822. },
  8823. ]
  8824. ))
  8825. characterMakers.push(() => makeCharacter(
  8826. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8827. {
  8828. front: {
  8829. height: math.unit(5 + 8 / 12, "feet"),
  8830. weight: math.unit(63, "kg"),
  8831. name: "Front",
  8832. image: {
  8833. source: "./media/characters/xavier/front.svg",
  8834. extra: 944 / 883
  8835. }
  8836. },
  8837. frontStretch: {
  8838. height: math.unit(5 + 8 / 12, "feet"),
  8839. weight: math.unit(63, "kg"),
  8840. name: "Stretching",
  8841. image: {
  8842. source: "./media/characters/xavier/front-stretch.svg",
  8843. extra: 962 / 820
  8844. }
  8845. },
  8846. },
  8847. [
  8848. {
  8849. name: "Normal",
  8850. height: math.unit(5 + 8 / 12, "feet")
  8851. },
  8852. {
  8853. name: "Macro",
  8854. height: math.unit(100, "meters"),
  8855. default: true
  8856. },
  8857. {
  8858. name: "McLargeHuge",
  8859. height: math.unit(10, "miles")
  8860. },
  8861. ]
  8862. ))
  8863. characterMakers.push(() => makeCharacter(
  8864. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8865. {
  8866. front: {
  8867. height: math.unit(5 + 5 / 12, "feet"),
  8868. weight: math.unit(150, "lb"),
  8869. name: "Front",
  8870. image: {
  8871. source: "./media/characters/joshii/front.svg",
  8872. extra: 765 / 653,
  8873. bottom: 51 / 816
  8874. }
  8875. },
  8876. foot: {
  8877. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8878. name: "Foot",
  8879. image: {
  8880. source: "./media/characters/joshii/foot.svg"
  8881. }
  8882. },
  8883. },
  8884. [
  8885. {
  8886. name: "Micro",
  8887. height: math.unit(2, "inches"),
  8888. default: true
  8889. },
  8890. {
  8891. name: "Normal",
  8892. height: math.unit(5 + 5 / 12, "feet")
  8893. },
  8894. {
  8895. name: "Macro",
  8896. height: math.unit(785, "feet")
  8897. },
  8898. {
  8899. name: "Megamacro",
  8900. height: math.unit(24.5, "miles")
  8901. },
  8902. ]
  8903. ))
  8904. characterMakers.push(() => makeCharacter(
  8905. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8906. {
  8907. front: {
  8908. height: math.unit(6, "feet"),
  8909. weight: math.unit(150, "lb"),
  8910. name: "Front",
  8911. image: {
  8912. source: "./media/characters/goddess-elizabeth/front.svg",
  8913. extra: 1800 / 1525,
  8914. bottom: 0.005
  8915. }
  8916. },
  8917. foot: {
  8918. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8919. name: "Foot",
  8920. image: {
  8921. source: "./media/characters/goddess-elizabeth/foot.svg"
  8922. }
  8923. },
  8924. mouth: {
  8925. height: math.unit(6, "feet"),
  8926. name: "Mouth",
  8927. image: {
  8928. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8929. }
  8930. },
  8931. },
  8932. [
  8933. {
  8934. name: "Micro",
  8935. height: math.unit(12, "feet")
  8936. },
  8937. {
  8938. name: "Normal",
  8939. height: math.unit(80, "miles"),
  8940. default: true
  8941. },
  8942. {
  8943. name: "Macro",
  8944. height: math.unit(15000, "parsecs")
  8945. },
  8946. ]
  8947. ))
  8948. characterMakers.push(() => makeCharacter(
  8949. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8950. {
  8951. front: {
  8952. height: math.unit(5 + 9 / 12, "feet"),
  8953. weight: math.unit(144, "lb"),
  8954. name: "Front",
  8955. image: {
  8956. source: "./media/characters/kara/front.svg"
  8957. }
  8958. },
  8959. feet: {
  8960. height: math.unit(6 / 6.765, "feet"),
  8961. name: "Kara's Feet",
  8962. rename: true,
  8963. image: {
  8964. source: "./media/characters/kara/feet.svg"
  8965. }
  8966. },
  8967. },
  8968. [
  8969. {
  8970. name: "Normal",
  8971. height: math.unit(5 + 9 / 12, "feet")
  8972. },
  8973. {
  8974. name: "Macro",
  8975. height: math.unit(174, "feet"),
  8976. default: true
  8977. },
  8978. ]
  8979. ))
  8980. characterMakers.push(() => makeCharacter(
  8981. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8982. {
  8983. front: {
  8984. height: math.unit(18, "feet"),
  8985. weight: math.unit(4050, "lb"),
  8986. name: "Front",
  8987. image: {
  8988. source: "./media/characters/tyrone/front.svg",
  8989. extra: 2405 / 2270,
  8990. bottom: 182 / 2587
  8991. }
  8992. },
  8993. },
  8994. [
  8995. {
  8996. name: "Normal",
  8997. height: math.unit(18, "feet"),
  8998. default: true
  8999. },
  9000. {
  9001. name: "Macro",
  9002. height: math.unit(300, "feet")
  9003. },
  9004. {
  9005. name: "Megamacro",
  9006. height: math.unit(15, "km")
  9007. },
  9008. {
  9009. name: "Gigamacro",
  9010. height: math.unit(500, "km")
  9011. },
  9012. {
  9013. name: "Teramacro",
  9014. height: math.unit(0.5, "gigameters")
  9015. },
  9016. {
  9017. name: "Omnimacro",
  9018. height: math.unit(1e252, "yottauniverse")
  9019. },
  9020. ]
  9021. ))
  9022. characterMakers.push(() => makeCharacter(
  9023. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9024. {
  9025. front: {
  9026. height: math.unit(7 + 8 / 12, "feet"),
  9027. weight: math.unit(120, "lb"),
  9028. name: "Front",
  9029. image: {
  9030. source: "./media/characters/danny/front.svg",
  9031. extra: 1490 / 1350
  9032. }
  9033. },
  9034. back: {
  9035. height: math.unit(7 + 8 / 12, "feet"),
  9036. weight: math.unit(120, "lb"),
  9037. name: "Back",
  9038. image: {
  9039. source: "./media/characters/danny/back.svg",
  9040. extra: 1490 / 1350
  9041. }
  9042. },
  9043. },
  9044. [
  9045. {
  9046. name: "Normal",
  9047. height: math.unit(7 + 8 / 12, "feet"),
  9048. default: true
  9049. },
  9050. ]
  9051. ))
  9052. characterMakers.push(() => makeCharacter(
  9053. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9054. {
  9055. front: {
  9056. height: math.unit(3.5, "inches"),
  9057. weight: math.unit(19, "grams"),
  9058. name: "Front",
  9059. image: {
  9060. source: "./media/characters/mallow/front.svg",
  9061. extra: 471 / 431
  9062. }
  9063. },
  9064. back: {
  9065. height: math.unit(3.5, "inches"),
  9066. weight: math.unit(19, "grams"),
  9067. name: "Back",
  9068. image: {
  9069. source: "./media/characters/mallow/back.svg",
  9070. extra: 471 / 431
  9071. }
  9072. },
  9073. },
  9074. [
  9075. {
  9076. name: "Normal",
  9077. height: math.unit(3.5, "inches"),
  9078. default: true
  9079. },
  9080. ]
  9081. ))
  9082. characterMakers.push(() => makeCharacter(
  9083. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9084. {
  9085. front: {
  9086. height: math.unit(9, "feet"),
  9087. weight: math.unit(230, "kg"),
  9088. name: "Front",
  9089. image: {
  9090. source: "./media/characters/starry-aqua/front.svg"
  9091. }
  9092. },
  9093. back: {
  9094. height: math.unit(9, "feet"),
  9095. weight: math.unit(230, "kg"),
  9096. name: "Back",
  9097. image: {
  9098. source: "./media/characters/starry-aqua/back.svg"
  9099. }
  9100. },
  9101. hand: {
  9102. height: math.unit(9 * 0.1168, "feet"),
  9103. name: "Hand",
  9104. image: {
  9105. source: "./media/characters/starry-aqua/hand.svg"
  9106. }
  9107. },
  9108. foot: {
  9109. height: math.unit(9 * 0.18, "feet"),
  9110. name: "Foot",
  9111. image: {
  9112. source: "./media/characters/starry-aqua/foot.svg"
  9113. }
  9114. }
  9115. },
  9116. [
  9117. {
  9118. name: "Micro",
  9119. height: math.unit(3, "inches")
  9120. },
  9121. {
  9122. name: "Normal",
  9123. height: math.unit(9, "feet")
  9124. },
  9125. {
  9126. name: "Macro",
  9127. height: math.unit(300, "feet"),
  9128. default: true
  9129. },
  9130. {
  9131. name: "Megamacro",
  9132. height: math.unit(3200, "feet")
  9133. }
  9134. ]
  9135. ))
  9136. characterMakers.push(() => makeCharacter(
  9137. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9138. {
  9139. front: {
  9140. height: math.unit(15, "feet"),
  9141. weight: math.unit(5026, "lb"),
  9142. name: "Front",
  9143. image: {
  9144. source: "./media/characters/luka-towers/front.svg",
  9145. extra: 1269/1133,
  9146. bottom: 51/1320
  9147. }
  9148. },
  9149. },
  9150. [
  9151. {
  9152. name: "Normal",
  9153. height: math.unit(15, "feet"),
  9154. default: true
  9155. },
  9156. {
  9157. name: "Minimacro",
  9158. height: math.unit(25, "feet")
  9159. },
  9160. {
  9161. name: "Macro",
  9162. height: math.unit(320, "feet")
  9163. },
  9164. {
  9165. name: "Megamacro",
  9166. height: math.unit(35000, "feet")
  9167. },
  9168. {
  9169. name: "Gigamacro",
  9170. height: math.unit(4000, "miles")
  9171. },
  9172. {
  9173. name: "Teramacro",
  9174. height: math.unit(15000, "miles")
  9175. },
  9176. ]
  9177. ))
  9178. characterMakers.push(() => makeCharacter(
  9179. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9180. {
  9181. front: {
  9182. height: math.unit(6, "feet"),
  9183. weight: math.unit(150, "lb"),
  9184. name: "Front",
  9185. image: {
  9186. source: "./media/characters/natalie-nightring/front.svg",
  9187. extra: 1,
  9188. bottom: 0.06
  9189. }
  9190. },
  9191. },
  9192. [
  9193. {
  9194. name: "Uh Oh",
  9195. height: math.unit(0.1, "mm")
  9196. },
  9197. {
  9198. name: "Small",
  9199. height: math.unit(3, "inches")
  9200. },
  9201. {
  9202. name: "Human Scale",
  9203. height: math.unit(6, "feet")
  9204. },
  9205. {
  9206. name: "Librarian",
  9207. height: math.unit(50, "feet"),
  9208. default: true
  9209. },
  9210. {
  9211. name: "Immense",
  9212. height: math.unit(200, "miles")
  9213. },
  9214. ]
  9215. ))
  9216. characterMakers.push(() => makeCharacter(
  9217. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9218. {
  9219. front: {
  9220. height: math.unit(6, "feet"),
  9221. weight: math.unit(180, "lbs"),
  9222. name: "Front",
  9223. image: {
  9224. source: "./media/characters/danni-rosie/front.svg",
  9225. extra: 1260 / 1128,
  9226. bottom: 0.022
  9227. }
  9228. },
  9229. },
  9230. [
  9231. {
  9232. name: "Micro",
  9233. height: math.unit(2, "inches"),
  9234. default: true
  9235. },
  9236. ]
  9237. ))
  9238. characterMakers.push(() => makeCharacter(
  9239. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9240. {
  9241. front: {
  9242. height: math.unit(5 + 9 / 12, "feet"),
  9243. weight: math.unit(220, "lb"),
  9244. name: "Front",
  9245. image: {
  9246. source: "./media/characters/samantha-kruse/front.svg",
  9247. extra: (985 / 935),
  9248. bottom: 0.03
  9249. }
  9250. },
  9251. frontUndressed: {
  9252. height: math.unit(5 + 9 / 12, "feet"),
  9253. weight: math.unit(220, "lb"),
  9254. name: "Front (Undressed)",
  9255. image: {
  9256. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9257. extra: (973 / 923),
  9258. bottom: 0.025
  9259. }
  9260. },
  9261. fat: {
  9262. height: math.unit(5 + 9 / 12, "feet"),
  9263. weight: math.unit(900, "lb"),
  9264. name: "Front (Fat)",
  9265. image: {
  9266. source: "./media/characters/samantha-kruse/fat.svg",
  9267. extra: 2688 / 2561
  9268. }
  9269. },
  9270. },
  9271. [
  9272. {
  9273. name: "Normal",
  9274. height: math.unit(5 + 9 / 12, "feet"),
  9275. default: true
  9276. }
  9277. ]
  9278. ))
  9279. characterMakers.push(() => makeCharacter(
  9280. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9281. {
  9282. back: {
  9283. height: math.unit(5 + 4 / 12, "feet"),
  9284. weight: math.unit(4963, "lb"),
  9285. name: "Back",
  9286. image: {
  9287. source: "./media/characters/amelia-rosie/back.svg",
  9288. extra: 1113 / 963,
  9289. bottom: 0.01
  9290. }
  9291. },
  9292. },
  9293. [
  9294. {
  9295. name: "Level 0",
  9296. height: math.unit(5 + 4 / 12, "feet")
  9297. },
  9298. {
  9299. name: "Level 1",
  9300. height: math.unit(164597, "feet"),
  9301. default: true
  9302. },
  9303. {
  9304. name: "Level 2",
  9305. height: math.unit(956243, "miles")
  9306. },
  9307. {
  9308. name: "Level 3",
  9309. height: math.unit(29421709423, "miles")
  9310. },
  9311. {
  9312. name: "Level 4",
  9313. height: math.unit(154, "lightyears")
  9314. },
  9315. {
  9316. name: "Level 5",
  9317. height: math.unit(4738272, "lightyears")
  9318. },
  9319. {
  9320. name: "Level 6",
  9321. height: math.unit(145787152896, "lightyears")
  9322. },
  9323. ]
  9324. ))
  9325. characterMakers.push(() => makeCharacter(
  9326. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9327. {
  9328. front: {
  9329. height: math.unit(5 + 11 / 12, "feet"),
  9330. weight: math.unit(65, "kg"),
  9331. name: "Front",
  9332. image: {
  9333. source: "./media/characters/rook-kitara/front.svg",
  9334. extra: 1347 / 1274,
  9335. bottom: 0.005
  9336. }
  9337. },
  9338. },
  9339. [
  9340. {
  9341. name: "Totally Unfair",
  9342. height: math.unit(1.8, "mm")
  9343. },
  9344. {
  9345. name: "Lap Rookie",
  9346. height: math.unit(1.4, "feet")
  9347. },
  9348. {
  9349. name: "Normal",
  9350. height: math.unit(5 + 11 / 12, "feet"),
  9351. default: true
  9352. },
  9353. {
  9354. name: "How Did This Happen",
  9355. height: math.unit(80, "miles")
  9356. }
  9357. ]
  9358. ))
  9359. characterMakers.push(() => makeCharacter(
  9360. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9361. {
  9362. front: {
  9363. height: math.unit(7, "feet"),
  9364. weight: math.unit(300, "lb"),
  9365. name: "Front",
  9366. image: {
  9367. source: "./media/characters/pisces/front.svg",
  9368. extra: 2255 / 2115,
  9369. bottom: 0.03
  9370. }
  9371. },
  9372. back: {
  9373. height: math.unit(7, "feet"),
  9374. weight: math.unit(300, "lb"),
  9375. name: "Back",
  9376. image: {
  9377. source: "./media/characters/pisces/back.svg",
  9378. extra: 2146 / 2055,
  9379. bottom: 0.04
  9380. }
  9381. },
  9382. },
  9383. [
  9384. {
  9385. name: "Normal",
  9386. height: math.unit(7, "feet"),
  9387. default: true
  9388. },
  9389. {
  9390. name: "Swimming Pool",
  9391. height: math.unit(12.2, "meters")
  9392. },
  9393. {
  9394. name: "Olympic Swimming Pool",
  9395. height: math.unit(56.3, "meters")
  9396. },
  9397. {
  9398. name: "Lake Superior",
  9399. height: math.unit(93900, "meters")
  9400. },
  9401. {
  9402. name: "Mediterranean Sea",
  9403. height: math.unit(644457, "meters")
  9404. },
  9405. {
  9406. name: "World's Oceans",
  9407. height: math.unit(4567491, "meters")
  9408. },
  9409. ]
  9410. ))
  9411. characterMakers.push(() => makeCharacter(
  9412. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9413. {
  9414. front: {
  9415. height: math.unit(2.3, "meters"),
  9416. weight: math.unit(120, "kg"),
  9417. name: "Front",
  9418. image: {
  9419. source: "./media/characters/zelas/front.svg"
  9420. }
  9421. },
  9422. side: {
  9423. height: math.unit(2.3, "meters"),
  9424. weight: math.unit(120, "kg"),
  9425. name: "Side",
  9426. image: {
  9427. source: "./media/characters/zelas/side.svg"
  9428. }
  9429. },
  9430. back: {
  9431. height: math.unit(2.3, "meters"),
  9432. weight: math.unit(120, "kg"),
  9433. name: "Back",
  9434. image: {
  9435. source: "./media/characters/zelas/back.svg"
  9436. }
  9437. },
  9438. foot: {
  9439. height: math.unit(1.116, "feet"),
  9440. name: "Foot",
  9441. image: {
  9442. source: "./media/characters/zelas/foot.svg"
  9443. }
  9444. },
  9445. },
  9446. [
  9447. {
  9448. name: "Normal",
  9449. height: math.unit(2.3, "meters")
  9450. },
  9451. {
  9452. name: "Macro",
  9453. height: math.unit(30, "meters"),
  9454. default: true
  9455. },
  9456. ]
  9457. ))
  9458. characterMakers.push(() => makeCharacter(
  9459. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9460. {
  9461. front: {
  9462. height: math.unit(1, "inch"),
  9463. weight: math.unit(0.21, "grams"),
  9464. name: "Front",
  9465. image: {
  9466. source: "./media/characters/talbot/front.svg",
  9467. extra: 594 / 544
  9468. }
  9469. },
  9470. },
  9471. [
  9472. {
  9473. name: "Micro",
  9474. height: math.unit(1, "inch"),
  9475. default: true
  9476. },
  9477. ]
  9478. ))
  9479. characterMakers.push(() => makeCharacter(
  9480. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9481. {
  9482. front: {
  9483. height: math.unit(3 + 3 / 12, "feet"),
  9484. weight: math.unit(51.8, "lb"),
  9485. name: "Front",
  9486. image: {
  9487. source: "./media/characters/fliss/front.svg",
  9488. extra: 840 / 640
  9489. }
  9490. },
  9491. },
  9492. [
  9493. {
  9494. name: "Teeny Tiny",
  9495. height: math.unit(1, "mm")
  9496. },
  9497. {
  9498. name: "Small",
  9499. height: math.unit(1, "inch"),
  9500. default: true
  9501. },
  9502. {
  9503. name: "Standard Sylveon",
  9504. height: math.unit(3 + 3 / 12, "feet")
  9505. },
  9506. {
  9507. name: "Large Nuisance",
  9508. height: math.unit(33, "feet")
  9509. },
  9510. {
  9511. name: "City Filler",
  9512. height: math.unit(3000, "feet")
  9513. },
  9514. {
  9515. name: "New Horizon",
  9516. height: math.unit(6000, "miles")
  9517. },
  9518. ]
  9519. ))
  9520. characterMakers.push(() => makeCharacter(
  9521. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9522. {
  9523. front: {
  9524. height: math.unit(5, "cm"),
  9525. weight: math.unit(1.94, "g"),
  9526. name: "Front",
  9527. image: {
  9528. source: "./media/characters/fleta/front.svg",
  9529. extra: 835 / 803
  9530. }
  9531. },
  9532. back: {
  9533. height: math.unit(5, "cm"),
  9534. weight: math.unit(1.94, "g"),
  9535. name: "Back",
  9536. image: {
  9537. source: "./media/characters/fleta/back.svg",
  9538. extra: 835 / 803
  9539. }
  9540. },
  9541. },
  9542. [
  9543. {
  9544. name: "Micro",
  9545. height: math.unit(5, "cm"),
  9546. default: true
  9547. },
  9548. ]
  9549. ))
  9550. characterMakers.push(() => makeCharacter(
  9551. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9552. {
  9553. front: {
  9554. height: math.unit(6, "feet"),
  9555. weight: math.unit(225, "lb"),
  9556. name: "Front",
  9557. image: {
  9558. source: "./media/characters/dominic/front.svg",
  9559. extra: 1770 / 1620,
  9560. bottom: 0.025
  9561. }
  9562. },
  9563. back: {
  9564. height: math.unit(6, "feet"),
  9565. weight: math.unit(225, "lb"),
  9566. name: "Back",
  9567. image: {
  9568. source: "./media/characters/dominic/back.svg",
  9569. extra: 1745 / 1620,
  9570. bottom: 0.065
  9571. }
  9572. },
  9573. },
  9574. [
  9575. {
  9576. name: "Nano",
  9577. height: math.unit(0.1, "mm")
  9578. },
  9579. {
  9580. name: "Micro-",
  9581. height: math.unit(1, "mm")
  9582. },
  9583. {
  9584. name: "Micro",
  9585. height: math.unit(4, "inches")
  9586. },
  9587. {
  9588. name: "Normal",
  9589. height: math.unit(6 + 4 / 12, "feet"),
  9590. default: true
  9591. },
  9592. {
  9593. name: "Macro",
  9594. height: math.unit(115, "feet")
  9595. },
  9596. {
  9597. name: "Macro+",
  9598. height: math.unit(955, "feet")
  9599. },
  9600. {
  9601. name: "Megamacro",
  9602. height: math.unit(8990, "feet")
  9603. },
  9604. {
  9605. name: "Gigmacro",
  9606. height: math.unit(9310, "miles")
  9607. },
  9608. {
  9609. name: "Teramacro",
  9610. height: math.unit(1567005010, "miles")
  9611. },
  9612. {
  9613. name: "Examacro",
  9614. height: math.unit(1425, "parsecs")
  9615. },
  9616. ]
  9617. ))
  9618. characterMakers.push(() => makeCharacter(
  9619. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9620. {
  9621. front: {
  9622. height: math.unit(400, "feet"),
  9623. weight: math.unit(44444444, "lb"),
  9624. name: "Front",
  9625. image: {
  9626. source: "./media/characters/major-colonel/front.svg"
  9627. }
  9628. },
  9629. back: {
  9630. height: math.unit(400, "feet"),
  9631. weight: math.unit(44444444, "lb"),
  9632. name: "Back",
  9633. image: {
  9634. source: "./media/characters/major-colonel/back.svg"
  9635. }
  9636. },
  9637. },
  9638. [
  9639. {
  9640. name: "Macro",
  9641. height: math.unit(400, "feet"),
  9642. default: true
  9643. },
  9644. ]
  9645. ))
  9646. characterMakers.push(() => makeCharacter(
  9647. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9648. {
  9649. catFront: {
  9650. height: math.unit(6, "feet"),
  9651. weight: math.unit(120, "lb"),
  9652. name: "Front (Cat Side)",
  9653. image: {
  9654. source: "./media/characters/axel-lycan/cat-front.svg",
  9655. extra: 430 / 402,
  9656. bottom: 43 / 472.35
  9657. }
  9658. },
  9659. catBack: {
  9660. height: math.unit(6, "feet"),
  9661. weight: math.unit(120, "lb"),
  9662. name: "Back (Cat Side)",
  9663. image: {
  9664. source: "./media/characters/axel-lycan/cat-back.svg",
  9665. extra: 447 / 419,
  9666. bottom: 23.3 / 469
  9667. }
  9668. },
  9669. wolfFront: {
  9670. height: math.unit(6, "feet"),
  9671. weight: math.unit(120, "lb"),
  9672. name: "Front (Wolf Side)",
  9673. image: {
  9674. source: "./media/characters/axel-lycan/wolf-front.svg",
  9675. extra: 485 / 456,
  9676. bottom: 19 / 504
  9677. }
  9678. },
  9679. wolfBack: {
  9680. height: math.unit(6, "feet"),
  9681. weight: math.unit(120, "lb"),
  9682. name: "Back (Wolf Side)",
  9683. image: {
  9684. source: "./media/characters/axel-lycan/wolf-back.svg",
  9685. extra: 475 / 438,
  9686. bottom: 39.2 / 514
  9687. }
  9688. },
  9689. },
  9690. [
  9691. {
  9692. name: "Macro",
  9693. height: math.unit(1, "km"),
  9694. default: true
  9695. },
  9696. ]
  9697. ))
  9698. characterMakers.push(() => makeCharacter(
  9699. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9700. {
  9701. front: {
  9702. height: math.unit(5 + 9 / 12, "feet"),
  9703. weight: math.unit(175, "lb"),
  9704. name: "Front",
  9705. image: {
  9706. source: "./media/characters/vanrel-hyena/front.svg",
  9707. extra: 1086 / 1010,
  9708. bottom: 0.04
  9709. }
  9710. },
  9711. },
  9712. [
  9713. {
  9714. name: "Normal",
  9715. height: math.unit(5 + 9 / 12, "feet"),
  9716. default: true
  9717. },
  9718. ]
  9719. ))
  9720. characterMakers.push(() => makeCharacter(
  9721. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9722. {
  9723. front: {
  9724. height: math.unit(6, "feet"),
  9725. weight: math.unit(103, "lb"),
  9726. name: "Front",
  9727. image: {
  9728. source: "./media/characters/abbott-absol/front.svg",
  9729. extra: 2010 / 1842
  9730. }
  9731. },
  9732. },
  9733. [
  9734. {
  9735. name: "Megamicro",
  9736. height: math.unit(0.1, "mm")
  9737. },
  9738. {
  9739. name: "Micro",
  9740. height: math.unit(1, "inch")
  9741. },
  9742. {
  9743. name: "Normal",
  9744. height: math.unit(6, "feet"),
  9745. default: true
  9746. },
  9747. ]
  9748. ))
  9749. characterMakers.push(() => makeCharacter(
  9750. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9751. {
  9752. front: {
  9753. height: math.unit(6, "feet"),
  9754. weight: math.unit(264, "lb"),
  9755. name: "Front",
  9756. image: {
  9757. source: "./media/characters/hector/front.svg",
  9758. extra: 2280 / 2130,
  9759. bottom: 0.07
  9760. }
  9761. },
  9762. },
  9763. [
  9764. {
  9765. name: "Normal",
  9766. height: math.unit(12.25, "foot"),
  9767. default: true
  9768. },
  9769. {
  9770. name: "Macro",
  9771. height: math.unit(160, "feet")
  9772. },
  9773. ]
  9774. ))
  9775. characterMakers.push(() => makeCharacter(
  9776. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9777. {
  9778. front: {
  9779. height: math.unit(6, "feet"),
  9780. weight: math.unit(150, "lb"),
  9781. name: "Front",
  9782. image: {
  9783. source: "./media/characters/sal/front.svg",
  9784. extra: 1846 / 1699,
  9785. bottom: 0.04
  9786. }
  9787. },
  9788. },
  9789. [
  9790. {
  9791. name: "Megamacro",
  9792. height: math.unit(10, "miles"),
  9793. default: true
  9794. },
  9795. ]
  9796. ))
  9797. characterMakers.push(() => makeCharacter(
  9798. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9799. {
  9800. front: {
  9801. height: math.unit(3, "meters"),
  9802. weight: math.unit(450, "kg"),
  9803. name: "front",
  9804. image: {
  9805. source: "./media/characters/ranger/front.svg",
  9806. extra: 2401 / 2243,
  9807. bottom: 0.05
  9808. }
  9809. },
  9810. },
  9811. [
  9812. {
  9813. name: "Normal",
  9814. height: math.unit(3, "meters"),
  9815. default: true
  9816. },
  9817. ]
  9818. ))
  9819. characterMakers.push(() => makeCharacter(
  9820. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9821. {
  9822. front: {
  9823. height: math.unit(14, "feet"),
  9824. weight: math.unit(800, "kg"),
  9825. name: "Front",
  9826. image: {
  9827. source: "./media/characters/theresa/front.svg",
  9828. extra: 3575 / 3346,
  9829. bottom: 0.03
  9830. }
  9831. },
  9832. },
  9833. [
  9834. {
  9835. name: "Normal",
  9836. height: math.unit(14, "feet"),
  9837. default: true
  9838. },
  9839. ]
  9840. ))
  9841. characterMakers.push(() => makeCharacter(
  9842. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9843. {
  9844. front: {
  9845. height: math.unit(6, "feet"),
  9846. weight: math.unit(3, "kg"),
  9847. name: "Front",
  9848. image: {
  9849. source: "./media/characters/ine/front.svg",
  9850. extra: 678 / 539,
  9851. bottom: 0.023
  9852. }
  9853. },
  9854. },
  9855. [
  9856. {
  9857. name: "Normal",
  9858. height: math.unit(2.265, "feet"),
  9859. default: true
  9860. },
  9861. ]
  9862. ))
  9863. characterMakers.push(() => makeCharacter(
  9864. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9865. {
  9866. front: {
  9867. height: math.unit(5, "feet"),
  9868. weight: math.unit(30, "kg"),
  9869. name: "Front",
  9870. image: {
  9871. source: "./media/characters/vial/front.svg",
  9872. extra: 1365 / 1277,
  9873. bottom: 0.04
  9874. }
  9875. },
  9876. },
  9877. [
  9878. {
  9879. name: "Normal",
  9880. height: math.unit(5, "feet"),
  9881. default: true
  9882. },
  9883. ]
  9884. ))
  9885. characterMakers.push(() => makeCharacter(
  9886. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9887. {
  9888. side: {
  9889. height: math.unit(3.4, "meters"),
  9890. weight: math.unit(1000, "lb"),
  9891. name: "Side",
  9892. image: {
  9893. source: "./media/characters/rovoska/side.svg",
  9894. extra: 4403 / 1515
  9895. }
  9896. },
  9897. },
  9898. [
  9899. {
  9900. name: "Normal",
  9901. height: math.unit(3.4, "meters"),
  9902. default: true
  9903. },
  9904. ]
  9905. ))
  9906. characterMakers.push(() => makeCharacter(
  9907. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9908. {
  9909. front: {
  9910. height: math.unit(8, "feet"),
  9911. weight: math.unit(315, "lb"),
  9912. name: "Front",
  9913. image: {
  9914. source: "./media/characters/gunner-rotthbauer/front.svg"
  9915. }
  9916. },
  9917. back: {
  9918. height: math.unit(8, "feet"),
  9919. weight: math.unit(315, "lb"),
  9920. name: "Back",
  9921. image: {
  9922. source: "./media/characters/gunner-rotthbauer/back.svg"
  9923. }
  9924. },
  9925. },
  9926. [
  9927. {
  9928. name: "Micro",
  9929. height: math.unit(3.5, "inches")
  9930. },
  9931. {
  9932. name: "Normal",
  9933. height: math.unit(8, "feet"),
  9934. default: true
  9935. },
  9936. {
  9937. name: "Macro",
  9938. height: math.unit(250, "feet")
  9939. },
  9940. {
  9941. name: "Megamacro",
  9942. height: math.unit(1, "AU")
  9943. },
  9944. ]
  9945. ))
  9946. characterMakers.push(() => makeCharacter(
  9947. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9948. {
  9949. front: {
  9950. height: math.unit(5 + 5 / 12, "feet"),
  9951. weight: math.unit(140, "lb"),
  9952. name: "Front",
  9953. image: {
  9954. source: "./media/characters/allatia/front.svg",
  9955. extra: 1227 / 1180,
  9956. bottom: 0.027
  9957. }
  9958. },
  9959. },
  9960. [
  9961. {
  9962. name: "Normal",
  9963. height: math.unit(5 + 5 / 12, "feet")
  9964. },
  9965. {
  9966. name: "Macro",
  9967. height: math.unit(250, "feet"),
  9968. default: true
  9969. },
  9970. {
  9971. name: "Megamacro",
  9972. height: math.unit(8, "miles")
  9973. }
  9974. ]
  9975. ))
  9976. characterMakers.push(() => makeCharacter(
  9977. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9978. {
  9979. front: {
  9980. height: math.unit(6, "feet"),
  9981. weight: math.unit(120, "lb"),
  9982. name: "Front",
  9983. image: {
  9984. source: "./media/characters/tene/front.svg",
  9985. extra: 1728 / 1578,
  9986. bottom: 0.022
  9987. }
  9988. },
  9989. stomping: {
  9990. height: math.unit(2.025, "meters"),
  9991. weight: math.unit(120, "lb"),
  9992. name: "Stomping",
  9993. image: {
  9994. source: "./media/characters/tene/stomping.svg",
  9995. extra: 938 / 873,
  9996. bottom: 0.01
  9997. }
  9998. },
  9999. sitting: {
  10000. height: math.unit(1, "meter"),
  10001. weight: math.unit(120, "lb"),
  10002. name: "Sitting",
  10003. image: {
  10004. source: "./media/characters/tene/sitting.svg",
  10005. extra: 437 / 415,
  10006. bottom: 0.1
  10007. }
  10008. },
  10009. feral: {
  10010. height: math.unit(3.9, "feet"),
  10011. weight: math.unit(250, "lb"),
  10012. name: "Feral",
  10013. image: {
  10014. source: "./media/characters/tene/feral.svg",
  10015. extra: 717 / 458,
  10016. bottom: 0.179
  10017. }
  10018. },
  10019. },
  10020. [
  10021. {
  10022. name: "Normal",
  10023. height: math.unit(6, "feet")
  10024. },
  10025. {
  10026. name: "Macro",
  10027. height: math.unit(300, "feet"),
  10028. default: true
  10029. },
  10030. {
  10031. name: "Megamacro",
  10032. height: math.unit(5, "miles")
  10033. },
  10034. ]
  10035. ))
  10036. characterMakers.push(() => makeCharacter(
  10037. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10038. {
  10039. side: {
  10040. height: math.unit(6, "feet"),
  10041. name: "Side",
  10042. image: {
  10043. source: "./media/characters/evander/side.svg",
  10044. extra: 877 / 477
  10045. }
  10046. },
  10047. },
  10048. [
  10049. {
  10050. name: "Normal",
  10051. height: math.unit(0.83, "meters"),
  10052. default: true
  10053. },
  10054. ]
  10055. ))
  10056. characterMakers.push(() => makeCharacter(
  10057. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10058. {
  10059. front: {
  10060. height: math.unit(12, "feet"),
  10061. weight: math.unit(1000, "lb"),
  10062. name: "Front",
  10063. image: {
  10064. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10065. extra: 1762 / 1611
  10066. }
  10067. },
  10068. back: {
  10069. height: math.unit(12, "feet"),
  10070. weight: math.unit(1000, "lb"),
  10071. name: "Back",
  10072. image: {
  10073. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10074. extra: 1762 / 1611
  10075. }
  10076. },
  10077. },
  10078. [
  10079. {
  10080. name: "Normal",
  10081. height: math.unit(12, "feet"),
  10082. default: true
  10083. },
  10084. {
  10085. name: "Kaiju",
  10086. height: math.unit(150, "feet")
  10087. },
  10088. ]
  10089. ))
  10090. characterMakers.push(() => makeCharacter(
  10091. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10092. {
  10093. front: {
  10094. height: math.unit(6, "feet"),
  10095. weight: math.unit(150, "lb"),
  10096. name: "Front",
  10097. image: {
  10098. source: "./media/characters/zero-alurus/front.svg"
  10099. }
  10100. },
  10101. back: {
  10102. height: math.unit(6, "feet"),
  10103. weight: math.unit(150, "lb"),
  10104. name: "Back",
  10105. image: {
  10106. source: "./media/characters/zero-alurus/back.svg"
  10107. }
  10108. },
  10109. },
  10110. [
  10111. {
  10112. name: "Normal",
  10113. height: math.unit(5 + 10 / 12, "feet")
  10114. },
  10115. {
  10116. name: "Macro",
  10117. height: math.unit(60, "feet"),
  10118. default: true
  10119. },
  10120. {
  10121. name: "Macro+",
  10122. height: math.unit(450, "feet")
  10123. },
  10124. ]
  10125. ))
  10126. characterMakers.push(() => makeCharacter(
  10127. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10128. {
  10129. front: {
  10130. height: math.unit(6, "feet"),
  10131. weight: math.unit(200, "lb"),
  10132. name: "Front",
  10133. image: {
  10134. source: "./media/characters/mega-shi/front.svg",
  10135. extra: 1279 / 1250,
  10136. bottom: 0.02
  10137. }
  10138. },
  10139. back: {
  10140. height: math.unit(6, "feet"),
  10141. weight: math.unit(200, "lb"),
  10142. name: "Back",
  10143. image: {
  10144. source: "./media/characters/mega-shi/back.svg",
  10145. extra: 1279 / 1250,
  10146. bottom: 0.02
  10147. }
  10148. },
  10149. },
  10150. [
  10151. {
  10152. name: "Micro",
  10153. height: math.unit(16 + 6 / 12, "feet")
  10154. },
  10155. {
  10156. name: "Third Dimension",
  10157. height: math.unit(40, "meters")
  10158. },
  10159. {
  10160. name: "Normal",
  10161. height: math.unit(660, "feet"),
  10162. default: true
  10163. },
  10164. {
  10165. name: "Megamacro",
  10166. height: math.unit(10, "miles")
  10167. },
  10168. {
  10169. name: "Planetary Launch",
  10170. height: math.unit(500, "miles")
  10171. },
  10172. {
  10173. name: "Interstellar",
  10174. height: math.unit(1e9, "miles")
  10175. },
  10176. {
  10177. name: "Leaving the Universe",
  10178. height: math.unit(1, "gigaparsec")
  10179. },
  10180. {
  10181. name: "Travelling Universes",
  10182. height: math.unit(30e15, "parsecs")
  10183. },
  10184. ]
  10185. ))
  10186. characterMakers.push(() => makeCharacter(
  10187. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10188. {
  10189. front: {
  10190. height: math.unit(5 + 4/12, "feet"),
  10191. weight: math.unit(120, "lb"),
  10192. name: "Front",
  10193. image: {
  10194. source: "./media/characters/odyssey/front.svg",
  10195. extra: 1747/1571,
  10196. bottom: 47/1794
  10197. }
  10198. },
  10199. side: {
  10200. height: math.unit(5.1, "feet"),
  10201. weight: math.unit(120, "lb"),
  10202. name: "Side",
  10203. image: {
  10204. source: "./media/characters/odyssey/side.svg",
  10205. extra: 1847/1619,
  10206. bottom: 47/1894
  10207. }
  10208. },
  10209. lounging: {
  10210. height: math.unit(1.464, "feet"),
  10211. weight: math.unit(120, "lb"),
  10212. name: "Lounging",
  10213. image: {
  10214. source: "./media/characters/odyssey/lounging.svg",
  10215. extra: 1235/837,
  10216. bottom: 551/1786
  10217. }
  10218. },
  10219. },
  10220. [
  10221. {
  10222. name: "Normal",
  10223. height: math.unit(5 + 4 / 12, "feet")
  10224. },
  10225. {
  10226. name: "Macro",
  10227. height: math.unit(1, "km")
  10228. },
  10229. {
  10230. name: "Megamacro",
  10231. height: math.unit(3000, "km")
  10232. },
  10233. {
  10234. name: "Gigamacro",
  10235. height: math.unit(1, "AU"),
  10236. default: true
  10237. },
  10238. {
  10239. name: "Omniversal",
  10240. height: math.unit(100e14, "lightyears")
  10241. },
  10242. ]
  10243. ))
  10244. characterMakers.push(() => makeCharacter(
  10245. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10246. {
  10247. front: {
  10248. height: math.unit(6, "feet"),
  10249. weight: math.unit(300, "lb"),
  10250. name: "Front",
  10251. image: {
  10252. source: "./media/characters/mekuto/front.svg",
  10253. extra: 921 / 832,
  10254. bottom: 0.03
  10255. }
  10256. },
  10257. hand: {
  10258. height: math.unit(6 / 10.24, "feet"),
  10259. name: "Hand",
  10260. image: {
  10261. source: "./media/characters/mekuto/hand.svg"
  10262. }
  10263. },
  10264. foot: {
  10265. height: math.unit(6 / 5.05, "feet"),
  10266. name: "Foot",
  10267. image: {
  10268. source: "./media/characters/mekuto/foot.svg"
  10269. }
  10270. },
  10271. },
  10272. [
  10273. {
  10274. name: "Minimicro",
  10275. height: math.unit(0.2, "inches")
  10276. },
  10277. {
  10278. name: "Micro",
  10279. height: math.unit(1.5, "inches")
  10280. },
  10281. {
  10282. name: "Normal",
  10283. height: math.unit(5 + 11 / 12, "feet"),
  10284. default: true
  10285. },
  10286. {
  10287. name: "Minimacro",
  10288. height: math.unit(17 + 9 / 12, "feet")
  10289. },
  10290. {
  10291. name: "Macro",
  10292. height: math.unit(177.5, "feet")
  10293. },
  10294. {
  10295. name: "Megamacro",
  10296. height: math.unit(152, "miles")
  10297. },
  10298. ]
  10299. ))
  10300. characterMakers.push(() => makeCharacter(
  10301. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10302. {
  10303. front: {
  10304. height: math.unit(6.5, "inches"),
  10305. weight: math.unit(13, "oz"),
  10306. name: "Front",
  10307. image: {
  10308. source: "./media/characters/dafydd-tomos/front.svg",
  10309. extra: 2990 / 2603,
  10310. bottom: 0.03
  10311. }
  10312. },
  10313. },
  10314. [
  10315. {
  10316. name: "Micro",
  10317. height: math.unit(6.5, "inches"),
  10318. default: true
  10319. },
  10320. ]
  10321. ))
  10322. characterMakers.push(() => makeCharacter(
  10323. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10324. {
  10325. front: {
  10326. height: math.unit(6, "feet"),
  10327. weight: math.unit(150, "lb"),
  10328. name: "Front",
  10329. image: {
  10330. source: "./media/characters/splinter/front.svg",
  10331. extra: 2990 / 2882,
  10332. bottom: 0.04
  10333. }
  10334. },
  10335. back: {
  10336. height: math.unit(6, "feet"),
  10337. weight: math.unit(150, "lb"),
  10338. name: "Back",
  10339. image: {
  10340. source: "./media/characters/splinter/back.svg",
  10341. extra: 2990 / 2882,
  10342. bottom: 0.04
  10343. }
  10344. },
  10345. },
  10346. [
  10347. {
  10348. name: "Normal",
  10349. height: math.unit(6, "feet")
  10350. },
  10351. {
  10352. name: "Macro",
  10353. height: math.unit(230, "meters"),
  10354. default: true
  10355. },
  10356. ]
  10357. ))
  10358. characterMakers.push(() => makeCharacter(
  10359. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10360. {
  10361. front: {
  10362. height: math.unit(4 + 10 / 12, "feet"),
  10363. weight: math.unit(480, "lb"),
  10364. name: "Front",
  10365. image: {
  10366. source: "./media/characters/snow-gabumon/front.svg",
  10367. extra: 1140 / 963,
  10368. bottom: 0.058
  10369. }
  10370. },
  10371. back: {
  10372. height: math.unit(4 + 10 / 12, "feet"),
  10373. weight: math.unit(480, "lb"),
  10374. name: "Back",
  10375. image: {
  10376. source: "./media/characters/snow-gabumon/back.svg",
  10377. extra: 1115 / 962,
  10378. bottom: 0.041
  10379. }
  10380. },
  10381. frontUndresed: {
  10382. height: math.unit(4 + 10 / 12, "feet"),
  10383. weight: math.unit(480, "lb"),
  10384. name: "Front (Undressed)",
  10385. image: {
  10386. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10387. extra: 1061 / 960,
  10388. bottom: 0.045
  10389. }
  10390. },
  10391. },
  10392. [
  10393. {
  10394. name: "Micro",
  10395. height: math.unit(1, "inch")
  10396. },
  10397. {
  10398. name: "Normal",
  10399. height: math.unit(4 + 10 / 12, "feet"),
  10400. default: true
  10401. },
  10402. {
  10403. name: "Macro",
  10404. height: math.unit(200, "feet")
  10405. },
  10406. {
  10407. name: "Megamacro",
  10408. height: math.unit(120, "miles")
  10409. },
  10410. {
  10411. name: "Gigamacro",
  10412. height: math.unit(9800, "miles")
  10413. },
  10414. ]
  10415. ))
  10416. characterMakers.push(() => makeCharacter(
  10417. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10418. {
  10419. front: {
  10420. height: math.unit(1.7, "meters"),
  10421. weight: math.unit(140, "lb"),
  10422. name: "Front",
  10423. image: {
  10424. source: "./media/characters/moody/front.svg",
  10425. extra: 3226 / 3007,
  10426. bottom: 0.087
  10427. }
  10428. },
  10429. },
  10430. [
  10431. {
  10432. name: "Micro",
  10433. height: math.unit(1, "mm")
  10434. },
  10435. {
  10436. name: "Normal",
  10437. height: math.unit(1.7, "meters"),
  10438. default: true
  10439. },
  10440. {
  10441. name: "Macro",
  10442. height: math.unit(80, "meters")
  10443. },
  10444. {
  10445. name: "Macro+",
  10446. height: math.unit(500, "meters")
  10447. },
  10448. ]
  10449. ))
  10450. characterMakers.push(() => makeCharacter(
  10451. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10452. {
  10453. front: {
  10454. height: math.unit(6, "feet"),
  10455. weight: math.unit(150, "lb"),
  10456. name: "Front",
  10457. image: {
  10458. source: "./media/characters/zyas/front.svg",
  10459. extra: 1180 / 1120,
  10460. bottom: 0.045
  10461. }
  10462. },
  10463. },
  10464. [
  10465. {
  10466. name: "Normal",
  10467. height: math.unit(10, "feet"),
  10468. default: true
  10469. },
  10470. {
  10471. name: "Macro",
  10472. height: math.unit(500, "feet")
  10473. },
  10474. {
  10475. name: "Megamacro",
  10476. height: math.unit(5, "miles")
  10477. },
  10478. {
  10479. name: "Teramacro",
  10480. height: math.unit(150000, "miles")
  10481. },
  10482. ]
  10483. ))
  10484. characterMakers.push(() => makeCharacter(
  10485. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10486. {
  10487. front: {
  10488. height: math.unit(6, "feet"),
  10489. weight: math.unit(150, "lb"),
  10490. name: "Front",
  10491. image: {
  10492. source: "./media/characters/cuon/front.svg",
  10493. extra: 1390 / 1320,
  10494. bottom: 0.008
  10495. }
  10496. },
  10497. },
  10498. [
  10499. {
  10500. name: "Micro",
  10501. height: math.unit(3, "inches")
  10502. },
  10503. {
  10504. name: "Normal",
  10505. height: math.unit(18 + 9 / 12, "feet"),
  10506. default: true
  10507. },
  10508. {
  10509. name: "Macro",
  10510. height: math.unit(360, "feet")
  10511. },
  10512. {
  10513. name: "Megamacro",
  10514. height: math.unit(360, "miles")
  10515. },
  10516. ]
  10517. ))
  10518. characterMakers.push(() => makeCharacter(
  10519. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10520. {
  10521. front: {
  10522. height: math.unit(2.4, "meters"),
  10523. weight: math.unit(70, "kg"),
  10524. name: "Front",
  10525. image: {
  10526. source: "./media/characters/nyanuxk/front.svg",
  10527. extra: 1172 / 1084,
  10528. bottom: 0.065
  10529. }
  10530. },
  10531. side: {
  10532. height: math.unit(2.4, "meters"),
  10533. weight: math.unit(70, "kg"),
  10534. name: "Side",
  10535. image: {
  10536. source: "./media/characters/nyanuxk/side.svg",
  10537. extra: 1190 / 1132,
  10538. bottom: 0.007
  10539. }
  10540. },
  10541. back: {
  10542. height: math.unit(2.4, "meters"),
  10543. weight: math.unit(70, "kg"),
  10544. name: "Back",
  10545. image: {
  10546. source: "./media/characters/nyanuxk/back.svg",
  10547. extra: 1200 / 1141,
  10548. bottom: 0.015
  10549. }
  10550. },
  10551. foot: {
  10552. height: math.unit(0.52, "meters"),
  10553. name: "Foot",
  10554. image: {
  10555. source: "./media/characters/nyanuxk/foot.svg"
  10556. }
  10557. },
  10558. },
  10559. [
  10560. {
  10561. name: "Micro",
  10562. height: math.unit(2, "cm")
  10563. },
  10564. {
  10565. name: "Normal",
  10566. height: math.unit(2.4, "meters"),
  10567. default: true
  10568. },
  10569. {
  10570. name: "Smaller Macro",
  10571. height: math.unit(120, "meters")
  10572. },
  10573. {
  10574. name: "Bigger Macro",
  10575. height: math.unit(1.2, "km")
  10576. },
  10577. {
  10578. name: "Megamacro",
  10579. height: math.unit(15, "kilometers")
  10580. },
  10581. {
  10582. name: "Gigamacro",
  10583. height: math.unit(2000, "km")
  10584. },
  10585. {
  10586. name: "Teramacro",
  10587. height: math.unit(500000, "km")
  10588. },
  10589. ]
  10590. ))
  10591. characterMakers.push(() => makeCharacter(
  10592. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10593. {
  10594. side: {
  10595. height: math.unit(6, "feet"),
  10596. name: "Side",
  10597. image: {
  10598. source: "./media/characters/ailbhe/side.svg",
  10599. extra: 757 / 464,
  10600. bottom: 0.041
  10601. }
  10602. },
  10603. },
  10604. [
  10605. {
  10606. name: "Normal",
  10607. height: math.unit(1.07, "meters"),
  10608. default: true
  10609. },
  10610. ]
  10611. ))
  10612. characterMakers.push(() => makeCharacter(
  10613. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10614. {
  10615. front: {
  10616. height: math.unit(6, "feet"),
  10617. weight: math.unit(120, "kg"),
  10618. name: "Front",
  10619. image: {
  10620. source: "./media/characters/zevulfius/front.svg",
  10621. extra: 965 / 903
  10622. }
  10623. },
  10624. side: {
  10625. height: math.unit(6, "feet"),
  10626. weight: math.unit(120, "kg"),
  10627. name: "Side",
  10628. image: {
  10629. source: "./media/characters/zevulfius/side.svg",
  10630. extra: 939 / 900
  10631. }
  10632. },
  10633. back: {
  10634. height: math.unit(6, "feet"),
  10635. weight: math.unit(120, "kg"),
  10636. name: "Back",
  10637. image: {
  10638. source: "./media/characters/zevulfius/back.svg",
  10639. extra: 918 / 854,
  10640. bottom: 0.005
  10641. }
  10642. },
  10643. foot: {
  10644. height: math.unit(6 / 3.72, "feet"),
  10645. name: "Foot",
  10646. image: {
  10647. source: "./media/characters/zevulfius/foot.svg"
  10648. }
  10649. },
  10650. },
  10651. [
  10652. {
  10653. name: "Macro",
  10654. height: math.unit(750, "meters")
  10655. },
  10656. {
  10657. name: "Megamacro",
  10658. height: math.unit(20, "km"),
  10659. default: true
  10660. },
  10661. {
  10662. name: "Gigamacro",
  10663. height: math.unit(2000, "km")
  10664. },
  10665. {
  10666. name: "Teramacro",
  10667. height: math.unit(250000, "km")
  10668. },
  10669. ]
  10670. ))
  10671. characterMakers.push(() => makeCharacter(
  10672. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10673. {
  10674. front: {
  10675. height: math.unit(100, "feet"),
  10676. weight: math.unit(350, "kg"),
  10677. name: "Front",
  10678. image: {
  10679. source: "./media/characters/rikes/front.svg",
  10680. extra: 1565 / 1483,
  10681. bottom: 0.017
  10682. }
  10683. },
  10684. },
  10685. [
  10686. {
  10687. name: "Macro",
  10688. height: math.unit(100, "feet"),
  10689. default: true
  10690. },
  10691. ]
  10692. ))
  10693. characterMakers.push(() => makeCharacter(
  10694. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10695. {
  10696. front: {
  10697. height: math.unit(8, "feet"),
  10698. weight: math.unit(356, "lb"),
  10699. name: "Front",
  10700. image: {
  10701. source: "./media/characters/adam-silver-mane/front.svg",
  10702. extra: 1036/937,
  10703. bottom: 63/1099
  10704. }
  10705. },
  10706. side: {
  10707. height: math.unit(8, "feet"),
  10708. weight: math.unit(356, "lb"),
  10709. name: "Side",
  10710. image: {
  10711. source: "./media/characters/adam-silver-mane/side.svg",
  10712. extra: 997/901,
  10713. bottom: 59/1056
  10714. }
  10715. },
  10716. frontNsfw: {
  10717. height: math.unit(8, "feet"),
  10718. weight: math.unit(356, "lb"),
  10719. name: "Front (NSFW)",
  10720. image: {
  10721. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10722. extra: 1036/937,
  10723. bottom: 63/1099
  10724. }
  10725. },
  10726. sideNsfw: {
  10727. height: math.unit(8, "feet"),
  10728. weight: math.unit(356, "lb"),
  10729. name: "Side (NSFW)",
  10730. image: {
  10731. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10732. extra: 997/901,
  10733. bottom: 59/1056
  10734. }
  10735. },
  10736. dick: {
  10737. height: math.unit(2.1, "feet"),
  10738. name: "Dick",
  10739. image: {
  10740. source: "./media/characters/adam-silver-mane/dick.svg"
  10741. }
  10742. },
  10743. taur: {
  10744. height: math.unit(16, "feet"),
  10745. weight: math.unit(1500, "kg"),
  10746. name: "Taur",
  10747. image: {
  10748. source: "./media/characters/adam-silver-mane/taur.svg",
  10749. extra: 1713 / 1571,
  10750. bottom: 0.01
  10751. }
  10752. },
  10753. },
  10754. [
  10755. {
  10756. name: "Normal",
  10757. height: math.unit(8, "feet")
  10758. },
  10759. {
  10760. name: "Minimacro",
  10761. height: math.unit(80, "feet")
  10762. },
  10763. {
  10764. name: "MDA",
  10765. height: math.unit(80, "meters")
  10766. },
  10767. {
  10768. name: "Macro",
  10769. height: math.unit(800, "feet"),
  10770. default: true
  10771. },
  10772. {
  10773. name: "Megamacro",
  10774. height: math.unit(8000, "feet")
  10775. },
  10776. {
  10777. name: "Gigamacro",
  10778. height: math.unit(800, "miles")
  10779. },
  10780. {
  10781. name: "Teramacro",
  10782. height: math.unit(80000, "miles")
  10783. },
  10784. {
  10785. name: "Celestial",
  10786. height: math.unit(8e6, "miles")
  10787. },
  10788. {
  10789. name: "Star Dragon",
  10790. height: math.unit(800000, "parsecs")
  10791. },
  10792. {
  10793. name: "Godly",
  10794. height: math.unit(800, "teraparsecs")
  10795. },
  10796. ]
  10797. ))
  10798. characterMakers.push(() => makeCharacter(
  10799. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10800. {
  10801. front: {
  10802. height: math.unit(6, "feet"),
  10803. weight: math.unit(150, "lb"),
  10804. name: "Front",
  10805. image: {
  10806. source: "./media/characters/ky'owin/front.svg",
  10807. extra: 3888 / 3068,
  10808. bottom: 0.015
  10809. }
  10810. },
  10811. },
  10812. [
  10813. {
  10814. name: "Normal",
  10815. height: math.unit(6 + 8 / 12, "feet")
  10816. },
  10817. {
  10818. name: "Large",
  10819. height: math.unit(68, "feet")
  10820. },
  10821. {
  10822. name: "Macro",
  10823. height: math.unit(132, "feet")
  10824. },
  10825. {
  10826. name: "Macro+",
  10827. height: math.unit(340, "feet")
  10828. },
  10829. {
  10830. name: "Macro++",
  10831. height: math.unit(680, "feet"),
  10832. default: true
  10833. },
  10834. {
  10835. name: "Megamacro",
  10836. height: math.unit(1, "mile")
  10837. },
  10838. {
  10839. name: "Megamacro+",
  10840. height: math.unit(10, "miles")
  10841. },
  10842. ]
  10843. ))
  10844. characterMakers.push(() => makeCharacter(
  10845. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10846. {
  10847. front: {
  10848. height: math.unit(4, "feet"),
  10849. weight: math.unit(50, "lb"),
  10850. name: "Front",
  10851. image: {
  10852. source: "./media/characters/mal/front.svg",
  10853. extra: 785 / 724,
  10854. bottom: 0.07
  10855. }
  10856. },
  10857. },
  10858. [
  10859. {
  10860. name: "Micro",
  10861. height: math.unit(4, "inches")
  10862. },
  10863. {
  10864. name: "Normal",
  10865. height: math.unit(4, "feet"),
  10866. default: true
  10867. },
  10868. {
  10869. name: "Macro",
  10870. height: math.unit(200, "feet")
  10871. },
  10872. ]
  10873. ))
  10874. characterMakers.push(() => makeCharacter(
  10875. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10876. {
  10877. front: {
  10878. height: math.unit(6, "feet"),
  10879. weight: math.unit(150, "lb"),
  10880. name: "Front",
  10881. image: {
  10882. source: "./media/characters/jordan-deware/front.svg",
  10883. extra: 1191 / 1012
  10884. }
  10885. },
  10886. },
  10887. [
  10888. {
  10889. name: "Nano",
  10890. height: math.unit(0.01, "mm")
  10891. },
  10892. {
  10893. name: "Minimicro",
  10894. height: math.unit(1, "mm")
  10895. },
  10896. {
  10897. name: "Micro",
  10898. height: math.unit(0.5, "inches")
  10899. },
  10900. {
  10901. name: "Normal",
  10902. height: math.unit(4, "feet"),
  10903. default: true
  10904. },
  10905. {
  10906. name: "Minimacro",
  10907. height: math.unit(40, "meters")
  10908. },
  10909. {
  10910. name: "Small Macro",
  10911. height: math.unit(400, "meters")
  10912. },
  10913. {
  10914. name: "Macro",
  10915. height: math.unit(4, "miles")
  10916. },
  10917. {
  10918. name: "Megamacro",
  10919. height: math.unit(40, "miles")
  10920. },
  10921. {
  10922. name: "Megamacro+",
  10923. height: math.unit(400, "miles")
  10924. },
  10925. {
  10926. name: "Gigamacro",
  10927. height: math.unit(400000, "miles")
  10928. },
  10929. ]
  10930. ))
  10931. characterMakers.push(() => makeCharacter(
  10932. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10933. {
  10934. side: {
  10935. height: math.unit(6, "feet"),
  10936. weight: math.unit(150, "lb"),
  10937. name: "Side",
  10938. image: {
  10939. source: "./media/characters/kimiko/side.svg",
  10940. extra: 600 / 358
  10941. }
  10942. },
  10943. },
  10944. [
  10945. {
  10946. name: "Normal",
  10947. height: math.unit(15, "feet"),
  10948. default: true
  10949. },
  10950. {
  10951. name: "Macro",
  10952. height: math.unit(220, "feet")
  10953. },
  10954. {
  10955. name: "Macro+",
  10956. height: math.unit(1450, "feet")
  10957. },
  10958. {
  10959. name: "Megamacro",
  10960. height: math.unit(11500, "feet")
  10961. },
  10962. {
  10963. name: "Gigamacro",
  10964. height: math.unit(9500, "miles")
  10965. },
  10966. {
  10967. name: "Teramacro",
  10968. height: math.unit(2208005005, "miles")
  10969. },
  10970. {
  10971. name: "Examacro",
  10972. height: math.unit(2750, "parsecs")
  10973. },
  10974. {
  10975. name: "Zettamacro",
  10976. height: math.unit(101500, "parsecs")
  10977. },
  10978. ]
  10979. ))
  10980. characterMakers.push(() => makeCharacter(
  10981. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10982. {
  10983. front: {
  10984. height: math.unit(6, "feet"),
  10985. weight: math.unit(70, "kg"),
  10986. name: "Front",
  10987. image: {
  10988. source: "./media/characters/andrew-sleepy/front.svg"
  10989. }
  10990. },
  10991. side: {
  10992. height: math.unit(6, "feet"),
  10993. weight: math.unit(70, "kg"),
  10994. name: "Side",
  10995. image: {
  10996. source: "./media/characters/andrew-sleepy/side.svg"
  10997. }
  10998. },
  10999. },
  11000. [
  11001. {
  11002. name: "Micro",
  11003. height: math.unit(1, "mm"),
  11004. default: true
  11005. },
  11006. ]
  11007. ))
  11008. characterMakers.push(() => makeCharacter(
  11009. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11010. {
  11011. front: {
  11012. height: math.unit(6, "feet"),
  11013. weight: math.unit(150, "lb"),
  11014. name: "Front",
  11015. image: {
  11016. source: "./media/characters/judio/front.svg",
  11017. extra: 1258 / 1110
  11018. }
  11019. },
  11020. },
  11021. [
  11022. {
  11023. name: "Normal",
  11024. height: math.unit(5 + 6 / 12, "feet")
  11025. },
  11026. {
  11027. name: "Macro",
  11028. height: math.unit(1000, "feet"),
  11029. default: true
  11030. },
  11031. {
  11032. name: "Megamacro",
  11033. height: math.unit(10, "miles")
  11034. },
  11035. ]
  11036. ))
  11037. characterMakers.push(() => makeCharacter(
  11038. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11039. {
  11040. front: {
  11041. height: math.unit(6, "feet"),
  11042. weight: math.unit(68, "kg"),
  11043. name: "Front",
  11044. image: {
  11045. source: "./media/characters/nomaxice/front.svg",
  11046. extra: 1498 / 1073,
  11047. bottom: 0.075
  11048. }
  11049. },
  11050. foot: {
  11051. height: math.unit(1.1, "feet"),
  11052. name: "Foot",
  11053. image: {
  11054. source: "./media/characters/nomaxice/foot.svg"
  11055. }
  11056. },
  11057. },
  11058. [
  11059. {
  11060. name: "Micro",
  11061. height: math.unit(8, "cm")
  11062. },
  11063. {
  11064. name: "Norm",
  11065. height: math.unit(1.82, "m")
  11066. },
  11067. {
  11068. name: "Norm+",
  11069. height: math.unit(8.8, "feet")
  11070. },
  11071. {
  11072. name: "Big",
  11073. height: math.unit(8, "meters"),
  11074. default: true
  11075. },
  11076. {
  11077. name: "Macro",
  11078. height: math.unit(18, "meters")
  11079. },
  11080. {
  11081. name: "Macro+",
  11082. height: math.unit(88, "meters")
  11083. },
  11084. ]
  11085. ))
  11086. characterMakers.push(() => makeCharacter(
  11087. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11088. {
  11089. front: {
  11090. height: math.unit(12, "feet"),
  11091. weight: math.unit(1.5, "tons"),
  11092. name: "Front",
  11093. image: {
  11094. source: "./media/characters/dydros/front.svg",
  11095. extra: 863 / 800,
  11096. bottom: 0.015
  11097. }
  11098. },
  11099. back: {
  11100. height: math.unit(12, "feet"),
  11101. weight: math.unit(1.5, "tons"),
  11102. name: "Back",
  11103. image: {
  11104. source: "./media/characters/dydros/back.svg",
  11105. extra: 900 / 843,
  11106. bottom: 0.005
  11107. }
  11108. },
  11109. },
  11110. [
  11111. {
  11112. name: "Normal",
  11113. height: math.unit(12, "feet"),
  11114. default: true
  11115. },
  11116. ]
  11117. ))
  11118. characterMakers.push(() => makeCharacter(
  11119. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11120. {
  11121. front: {
  11122. height: math.unit(6, "feet"),
  11123. weight: math.unit(100, "kg"),
  11124. name: "Front",
  11125. image: {
  11126. source: "./media/characters/riggi/front.svg",
  11127. extra: 5787 / 5303
  11128. }
  11129. },
  11130. hyper: {
  11131. height: math.unit(6 * 5 / 3, "feet"),
  11132. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11133. name: "Hyper",
  11134. image: {
  11135. source: "./media/characters/riggi/hyper.svg",
  11136. extra: 3595 / 3485
  11137. }
  11138. },
  11139. },
  11140. [
  11141. {
  11142. name: "Small Macro",
  11143. height: math.unit(50, "feet")
  11144. },
  11145. {
  11146. name: "Default",
  11147. height: math.unit(200, "feet"),
  11148. default: true
  11149. },
  11150. {
  11151. name: "Loom",
  11152. height: math.unit(10000, "feet")
  11153. },
  11154. {
  11155. name: "Cruising Altitude",
  11156. height: math.unit(30000, "feet")
  11157. },
  11158. {
  11159. name: "Megamacro",
  11160. height: math.unit(100, "miles")
  11161. },
  11162. {
  11163. name: "Continent Sized",
  11164. height: math.unit(2800, "miles")
  11165. },
  11166. {
  11167. name: "Earth Sized",
  11168. height: math.unit(8000, "miles")
  11169. },
  11170. ]
  11171. ))
  11172. characterMakers.push(() => makeCharacter(
  11173. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11174. {
  11175. front: {
  11176. height: math.unit(6, "feet"),
  11177. weight: math.unit(250, "lb"),
  11178. name: "Front",
  11179. image: {
  11180. source: "./media/characters/alexi/front.svg",
  11181. extra: 3483 / 3291,
  11182. bottom: 0.04
  11183. }
  11184. },
  11185. back: {
  11186. height: math.unit(6, "feet"),
  11187. weight: math.unit(250, "lb"),
  11188. name: "Back",
  11189. image: {
  11190. source: "./media/characters/alexi/back.svg",
  11191. extra: 3533 / 3356,
  11192. bottom: 0.021
  11193. }
  11194. },
  11195. frontTransforming: {
  11196. height: math.unit(8.58, "feet"),
  11197. weight: math.unit(1300, "lb"),
  11198. name: "Transforming",
  11199. image: {
  11200. source: "./media/characters/alexi/front-transforming.svg",
  11201. extra: 437 / 409,
  11202. bottom: 19 / 458.66
  11203. }
  11204. },
  11205. frontTransformed: {
  11206. height: math.unit(12.5, "feet"),
  11207. weight: math.unit(4000, "lb"),
  11208. name: "Transformed",
  11209. image: {
  11210. source: "./media/characters/alexi/front-transformed.svg",
  11211. extra: 639 / 614,
  11212. bottom: 30.55 / 671
  11213. }
  11214. },
  11215. },
  11216. [
  11217. {
  11218. name: "Normal",
  11219. height: math.unit(14, "feet"),
  11220. default: true
  11221. },
  11222. {
  11223. name: "Minimacro",
  11224. height: math.unit(30, "meters")
  11225. },
  11226. {
  11227. name: "Macro",
  11228. height: math.unit(500, "meters")
  11229. },
  11230. {
  11231. name: "Megamacro",
  11232. height: math.unit(9000, "km")
  11233. },
  11234. {
  11235. name: "Teramacro",
  11236. height: math.unit(384000, "km")
  11237. },
  11238. ]
  11239. ))
  11240. characterMakers.push(() => makeCharacter(
  11241. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11242. {
  11243. front: {
  11244. height: math.unit(6, "feet"),
  11245. weight: math.unit(150, "lb"),
  11246. name: "Front",
  11247. image: {
  11248. source: "./media/characters/kayroo/front.svg",
  11249. extra: 1153 / 1038,
  11250. bottom: 0.06
  11251. }
  11252. },
  11253. foot: {
  11254. height: math.unit(6, "feet"),
  11255. weight: math.unit(150, "lb"),
  11256. name: "Foot",
  11257. image: {
  11258. source: "./media/characters/kayroo/foot.svg"
  11259. }
  11260. },
  11261. },
  11262. [
  11263. {
  11264. name: "Normal",
  11265. height: math.unit(8, "feet"),
  11266. default: true
  11267. },
  11268. {
  11269. name: "Minimacro",
  11270. height: math.unit(250, "feet")
  11271. },
  11272. {
  11273. name: "Macro",
  11274. height: math.unit(2800, "feet")
  11275. },
  11276. {
  11277. name: "Megamacro",
  11278. height: math.unit(5200, "feet")
  11279. },
  11280. {
  11281. name: "Gigamacro",
  11282. height: math.unit(27000, "feet")
  11283. },
  11284. {
  11285. name: "Omega",
  11286. height: math.unit(45000, "feet")
  11287. },
  11288. ]
  11289. ))
  11290. characterMakers.push(() => makeCharacter(
  11291. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11292. {
  11293. front: {
  11294. height: math.unit(18, "feet"),
  11295. weight: math.unit(5800, "lb"),
  11296. name: "Front",
  11297. image: {
  11298. source: "./media/characters/rhys/front.svg",
  11299. extra: 3386 / 3090,
  11300. bottom: 0.07
  11301. }
  11302. },
  11303. },
  11304. [
  11305. {
  11306. name: "Normal",
  11307. height: math.unit(18, "feet"),
  11308. default: true
  11309. },
  11310. {
  11311. name: "Working Size",
  11312. height: math.unit(200, "feet")
  11313. },
  11314. {
  11315. name: "Demolition Size",
  11316. height: math.unit(2000, "feet")
  11317. },
  11318. {
  11319. name: "Maximum Licensed Size",
  11320. height: math.unit(5, "miles")
  11321. },
  11322. {
  11323. name: "Maximum Observed Size",
  11324. height: math.unit(10, "yottameters")
  11325. },
  11326. ]
  11327. ))
  11328. characterMakers.push(() => makeCharacter(
  11329. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11330. {
  11331. front: {
  11332. height: math.unit(6, "feet"),
  11333. weight: math.unit(250, "lb"),
  11334. name: "Front",
  11335. image: {
  11336. source: "./media/characters/toto/front.svg",
  11337. extra: 527 / 479,
  11338. bottom: 0.05
  11339. }
  11340. },
  11341. },
  11342. [
  11343. {
  11344. name: "Micro",
  11345. height: math.unit(3, "feet")
  11346. },
  11347. {
  11348. name: "Normal",
  11349. height: math.unit(10, "feet")
  11350. },
  11351. {
  11352. name: "Macro",
  11353. height: math.unit(150, "feet"),
  11354. default: true
  11355. },
  11356. {
  11357. name: "Megamacro",
  11358. height: math.unit(1200, "feet")
  11359. },
  11360. ]
  11361. ))
  11362. characterMakers.push(() => makeCharacter(
  11363. { name: "King", species: ["lion"], tags: ["anthro"] },
  11364. {
  11365. back: {
  11366. height: math.unit(6, "feet"),
  11367. weight: math.unit(150, "lb"),
  11368. name: "Back",
  11369. image: {
  11370. source: "./media/characters/king/back.svg"
  11371. }
  11372. },
  11373. },
  11374. [
  11375. {
  11376. name: "Micro",
  11377. height: math.unit(2, "inches")
  11378. },
  11379. {
  11380. name: "Normal",
  11381. height: math.unit(8, "feet")
  11382. },
  11383. {
  11384. name: "Macro",
  11385. height: math.unit(200, "feet"),
  11386. default: true
  11387. },
  11388. {
  11389. name: "Megamacro",
  11390. height: math.unit(50, "miles")
  11391. },
  11392. ]
  11393. ))
  11394. characterMakers.push(() => makeCharacter(
  11395. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11396. {
  11397. front: {
  11398. height: math.unit(11, "feet"),
  11399. weight: math.unit(1400, "lb"),
  11400. name: "Front",
  11401. image: {
  11402. source: "./media/characters/cordite/front.svg",
  11403. extra: 1919/1827,
  11404. bottom: 40/1959
  11405. }
  11406. },
  11407. side: {
  11408. height: math.unit(11, "feet"),
  11409. weight: math.unit(1400, "lb"),
  11410. name: "Side",
  11411. image: {
  11412. source: "./media/characters/cordite/side.svg",
  11413. extra: 1908/1793,
  11414. bottom: 38/1946
  11415. }
  11416. },
  11417. back: {
  11418. height: math.unit(11, "feet"),
  11419. weight: math.unit(1400, "lb"),
  11420. name: "Back",
  11421. image: {
  11422. source: "./media/characters/cordite/back.svg",
  11423. extra: 1938/1837,
  11424. bottom: 10/1948
  11425. }
  11426. },
  11427. feral: {
  11428. height: math.unit(2, "feet"),
  11429. weight: math.unit(90, "lb"),
  11430. name: "Feral",
  11431. image: {
  11432. source: "./media/characters/cordite/feral.svg",
  11433. extra: 1260 / 755,
  11434. bottom: 0.05
  11435. }
  11436. },
  11437. },
  11438. [
  11439. {
  11440. name: "Normal",
  11441. height: math.unit(11, "feet"),
  11442. default: true
  11443. },
  11444. ]
  11445. ))
  11446. characterMakers.push(() => makeCharacter(
  11447. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11448. {
  11449. front: {
  11450. height: math.unit(6, "feet"),
  11451. weight: math.unit(150, "lb"),
  11452. name: "Front",
  11453. image: {
  11454. source: "./media/characters/pianostrong/front.svg",
  11455. extra: 6577 / 6254,
  11456. bottom: 0.02
  11457. }
  11458. },
  11459. side: {
  11460. height: math.unit(6, "feet"),
  11461. weight: math.unit(150, "lb"),
  11462. name: "Side",
  11463. image: {
  11464. source: "./media/characters/pianostrong/side.svg",
  11465. extra: 6106 / 5730
  11466. }
  11467. },
  11468. back: {
  11469. height: math.unit(6, "feet"),
  11470. weight: math.unit(150, "lb"),
  11471. name: "Back",
  11472. image: {
  11473. source: "./media/characters/pianostrong/back.svg",
  11474. extra: 6085 / 5733,
  11475. bottom: 0.01
  11476. }
  11477. },
  11478. },
  11479. [
  11480. {
  11481. name: "Macro",
  11482. height: math.unit(100, "feet")
  11483. },
  11484. {
  11485. name: "Macro+",
  11486. height: math.unit(300, "feet"),
  11487. default: true
  11488. },
  11489. {
  11490. name: "Macro++",
  11491. height: math.unit(1000, "feet")
  11492. },
  11493. ]
  11494. ))
  11495. characterMakers.push(() => makeCharacter(
  11496. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11497. {
  11498. front: {
  11499. height: math.unit(6, "feet"),
  11500. weight: math.unit(150, "lb"),
  11501. name: "Front",
  11502. image: {
  11503. source: "./media/characters/kona/front.svg",
  11504. extra: 2960 / 2629,
  11505. bottom: 0.005
  11506. }
  11507. },
  11508. },
  11509. [
  11510. {
  11511. name: "Normal",
  11512. height: math.unit(11 + 8 / 12, "feet")
  11513. },
  11514. {
  11515. name: "Macro",
  11516. height: math.unit(850, "feet"),
  11517. default: true
  11518. },
  11519. {
  11520. name: "Macro+",
  11521. height: math.unit(1.5, "km"),
  11522. default: true
  11523. },
  11524. {
  11525. name: "Megamacro",
  11526. height: math.unit(80, "miles")
  11527. },
  11528. {
  11529. name: "Gigamacro",
  11530. height: math.unit(3500, "miles")
  11531. },
  11532. ]
  11533. ))
  11534. characterMakers.push(() => makeCharacter(
  11535. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11536. {
  11537. side: {
  11538. height: math.unit(1.9, "meters"),
  11539. weight: math.unit(326, "kg"),
  11540. name: "Side",
  11541. image: {
  11542. source: "./media/characters/levi/side.svg",
  11543. extra: 1704 / 1334,
  11544. bottom: 0.02
  11545. }
  11546. },
  11547. },
  11548. [
  11549. {
  11550. name: "Normal",
  11551. height: math.unit(1.9, "meters"),
  11552. default: true
  11553. },
  11554. {
  11555. name: "Macro",
  11556. height: math.unit(20, "meters")
  11557. },
  11558. {
  11559. name: "Macro+",
  11560. height: math.unit(200, "meters")
  11561. },
  11562. {
  11563. name: "Megamacro",
  11564. height: math.unit(2, "km")
  11565. },
  11566. {
  11567. name: "Megamacro+",
  11568. height: math.unit(20, "km")
  11569. },
  11570. {
  11571. name: "Gigamacro",
  11572. height: math.unit(2500, "km")
  11573. },
  11574. {
  11575. name: "Gigamacro+",
  11576. height: math.unit(120000, "km")
  11577. },
  11578. {
  11579. name: "Teramacro",
  11580. height: math.unit(7.77e6, "km")
  11581. },
  11582. ]
  11583. ))
  11584. characterMakers.push(() => makeCharacter(
  11585. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11586. {
  11587. front: {
  11588. height: math.unit(6 + 4/12, "feet"),
  11589. weight: math.unit(190, "lb"),
  11590. name: "Front",
  11591. image: {
  11592. source: "./media/characters/bmc/front.svg",
  11593. extra: 1626/1472,
  11594. bottom: 79/1705
  11595. }
  11596. },
  11597. back: {
  11598. height: math.unit(6 + 4/12, "feet"),
  11599. weight: math.unit(190, "lb"),
  11600. name: "Back",
  11601. image: {
  11602. source: "./media/characters/bmc/back.svg",
  11603. extra: 1640/1479,
  11604. bottom: 45/1685
  11605. }
  11606. },
  11607. frontArmor: {
  11608. height: math.unit(6 + 4/12, "feet"),
  11609. weight: math.unit(190, "lb"),
  11610. name: "Front-armor",
  11611. image: {
  11612. source: "./media/characters/bmc/front-armor.svg",
  11613. extra: 1538/1468,
  11614. bottom: 79/1617
  11615. }
  11616. },
  11617. },
  11618. [
  11619. {
  11620. name: "Human-sized",
  11621. height: math.unit(6 + 4 / 12, "feet")
  11622. },
  11623. {
  11624. name: "Interactive Size",
  11625. height: math.unit(25, "feet")
  11626. },
  11627. {
  11628. name: "Small",
  11629. height: math.unit(250, "feet")
  11630. },
  11631. {
  11632. name: "Normal",
  11633. height: math.unit(1250, "feet"),
  11634. default: true
  11635. },
  11636. {
  11637. name: "Good Day",
  11638. height: math.unit(88, "miles")
  11639. },
  11640. {
  11641. name: "Largest Measured Size",
  11642. height: math.unit(105.960, "galaxies")
  11643. },
  11644. ]
  11645. ))
  11646. characterMakers.push(() => makeCharacter(
  11647. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11648. {
  11649. front: {
  11650. height: math.unit(20, "feet"),
  11651. weight: math.unit(2016, "kg"),
  11652. name: "Front",
  11653. image: {
  11654. source: "./media/characters/sven-the-kaiju/front.svg",
  11655. extra: 1277/1250,
  11656. bottom: 35/1312
  11657. }
  11658. },
  11659. mouth: {
  11660. height: math.unit(1.85, "feet"),
  11661. name: "Mouth",
  11662. image: {
  11663. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11664. }
  11665. },
  11666. },
  11667. [
  11668. {
  11669. name: "Fairy",
  11670. height: math.unit(6, "inches")
  11671. },
  11672. {
  11673. name: "Normal",
  11674. height: math.unit(20, "feet"),
  11675. default: true
  11676. },
  11677. {
  11678. name: "Rampage",
  11679. height: math.unit(200, "feet")
  11680. },
  11681. {
  11682. name: "Archfey Forest Guardian",
  11683. height: math.unit(1, "mile")
  11684. },
  11685. ]
  11686. ))
  11687. characterMakers.push(() => makeCharacter(
  11688. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11689. {
  11690. front: {
  11691. height: math.unit(4, "meters"),
  11692. weight: math.unit(2, "tons"),
  11693. name: "Front",
  11694. image: {
  11695. source: "./media/characters/marik/front.svg",
  11696. extra: 1057 / 1003,
  11697. bottom: 0.08
  11698. }
  11699. },
  11700. },
  11701. [
  11702. {
  11703. name: "Normal",
  11704. height: math.unit(4, "meters"),
  11705. default: true
  11706. },
  11707. {
  11708. name: "Macro",
  11709. height: math.unit(20, "meters")
  11710. },
  11711. {
  11712. name: "Megamacro",
  11713. height: math.unit(50, "km")
  11714. },
  11715. {
  11716. name: "Gigamacro",
  11717. height: math.unit(100, "km")
  11718. },
  11719. {
  11720. name: "Alpha Macro",
  11721. height: math.unit(7.88e7, "yottameters")
  11722. },
  11723. ]
  11724. ))
  11725. characterMakers.push(() => makeCharacter(
  11726. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11727. {
  11728. front: {
  11729. height: math.unit(6, "feet"),
  11730. weight: math.unit(110, "lb"),
  11731. name: "Front",
  11732. image: {
  11733. source: "./media/characters/mel/front.svg",
  11734. extra: 736 / 617,
  11735. bottom: 0.017
  11736. }
  11737. },
  11738. },
  11739. [
  11740. {
  11741. name: "Pico",
  11742. height: math.unit(3, "pm")
  11743. },
  11744. {
  11745. name: "Nano",
  11746. height: math.unit(3, "nm")
  11747. },
  11748. {
  11749. name: "Micro",
  11750. height: math.unit(0.3, "mm"),
  11751. default: true
  11752. },
  11753. {
  11754. name: "Micro+",
  11755. height: math.unit(3, "mm")
  11756. },
  11757. {
  11758. name: "Normal",
  11759. height: math.unit(5 + 10.5 / 12, "feet")
  11760. },
  11761. ]
  11762. ))
  11763. characterMakers.push(() => makeCharacter(
  11764. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11765. {
  11766. kaiju: {
  11767. height: math.unit(1.75, "meters"),
  11768. weight: math.unit(55, "kg"),
  11769. name: "Kaiju",
  11770. image: {
  11771. source: "./media/characters/lykonous/kaiju.svg",
  11772. extra: 1055 / 946,
  11773. bottom: 0.135
  11774. }
  11775. },
  11776. },
  11777. [
  11778. {
  11779. name: "Normal",
  11780. height: math.unit(2.5, "meters"),
  11781. default: true
  11782. },
  11783. {
  11784. name: "Kaiju Dragon",
  11785. height: math.unit(60, "meters")
  11786. },
  11787. {
  11788. name: "Mega Kaiju",
  11789. height: math.unit(120, "km")
  11790. },
  11791. {
  11792. name: "Giga Kaiju",
  11793. height: math.unit(200, "megameters")
  11794. },
  11795. {
  11796. name: "Terra Kaiju",
  11797. height: math.unit(400, "gigameters")
  11798. },
  11799. {
  11800. name: "Kaiju Dragon God",
  11801. height: math.unit(13000, "exaparsecs")
  11802. },
  11803. ]
  11804. ))
  11805. characterMakers.push(() => makeCharacter(
  11806. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11807. {
  11808. front: {
  11809. height: math.unit(6, "feet"),
  11810. weight: math.unit(150, "lb"),
  11811. name: "Front",
  11812. image: {
  11813. source: "./media/characters/blü/front.svg",
  11814. extra: 1883 / 1564,
  11815. bottom: 0.031
  11816. }
  11817. },
  11818. },
  11819. [
  11820. {
  11821. name: "Normal",
  11822. height: math.unit(13, "feet"),
  11823. default: true
  11824. },
  11825. {
  11826. name: "Big Boi",
  11827. height: math.unit(150, "meters")
  11828. },
  11829. {
  11830. name: "Mini Stomper",
  11831. height: math.unit(300, "meters")
  11832. },
  11833. {
  11834. name: "Macro",
  11835. height: math.unit(1000, "meters")
  11836. },
  11837. {
  11838. name: "Megamacro",
  11839. height: math.unit(11000, "meters")
  11840. },
  11841. {
  11842. name: "Gigamacro",
  11843. height: math.unit(11000, "km")
  11844. },
  11845. {
  11846. name: "Teramacro",
  11847. height: math.unit(420000, "km")
  11848. },
  11849. {
  11850. name: "Examacro",
  11851. height: math.unit(120, "parsecs")
  11852. },
  11853. {
  11854. name: "God Tho",
  11855. height: math.unit(98000000000, "parsecs")
  11856. },
  11857. ]
  11858. ))
  11859. characterMakers.push(() => makeCharacter(
  11860. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11861. {
  11862. taurFront: {
  11863. height: math.unit(6, "feet"),
  11864. weight: math.unit(200, "lb"),
  11865. name: "Taur (Front)",
  11866. image: {
  11867. source: "./media/characters/scales/taur-front.svg",
  11868. extra: 1,
  11869. bottom: 0.05
  11870. }
  11871. },
  11872. taurBack: {
  11873. height: math.unit(6, "feet"),
  11874. weight: math.unit(200, "lb"),
  11875. name: "Taur (Back)",
  11876. image: {
  11877. source: "./media/characters/scales/taur-back.svg",
  11878. extra: 1,
  11879. bottom: 0.08
  11880. }
  11881. },
  11882. anthro: {
  11883. height: math.unit(6 * 7 / 12, "feet"),
  11884. weight: math.unit(100, "lb"),
  11885. name: "Anthro",
  11886. image: {
  11887. source: "./media/characters/scales/anthro.svg",
  11888. extra: 1,
  11889. bottom: 0.06
  11890. }
  11891. },
  11892. },
  11893. [
  11894. {
  11895. name: "Normal",
  11896. height: math.unit(12, "feet"),
  11897. default: true
  11898. },
  11899. ]
  11900. ))
  11901. characterMakers.push(() => makeCharacter(
  11902. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11903. {
  11904. front: {
  11905. height: math.unit(6, "feet"),
  11906. weight: math.unit(150, "lb"),
  11907. name: "Front",
  11908. image: {
  11909. source: "./media/characters/koragos/front.svg",
  11910. extra: 841 / 794,
  11911. bottom: 0.035
  11912. }
  11913. },
  11914. back: {
  11915. height: math.unit(6, "feet"),
  11916. weight: math.unit(150, "lb"),
  11917. name: "Back",
  11918. image: {
  11919. source: "./media/characters/koragos/back.svg",
  11920. extra: 841 / 810,
  11921. bottom: 0.022
  11922. }
  11923. },
  11924. },
  11925. [
  11926. {
  11927. name: "Normal",
  11928. height: math.unit(6 + 11 / 12, "feet"),
  11929. default: true
  11930. },
  11931. {
  11932. name: "Macro",
  11933. height: math.unit(490, "feet")
  11934. },
  11935. {
  11936. name: "Megamacro",
  11937. height: math.unit(10, "miles")
  11938. },
  11939. {
  11940. name: "Gigamacro",
  11941. height: math.unit(50, "miles")
  11942. },
  11943. ]
  11944. ))
  11945. characterMakers.push(() => makeCharacter(
  11946. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11947. {
  11948. front: {
  11949. height: math.unit(6, "feet"),
  11950. weight: math.unit(250, "lb"),
  11951. name: "Front",
  11952. image: {
  11953. source: "./media/characters/xylrem/front.svg",
  11954. extra: 3323 / 3050,
  11955. bottom: 0.065
  11956. }
  11957. },
  11958. },
  11959. [
  11960. {
  11961. name: "Micro",
  11962. height: math.unit(4, "feet")
  11963. },
  11964. {
  11965. name: "Normal",
  11966. height: math.unit(16, "feet"),
  11967. default: true
  11968. },
  11969. {
  11970. name: "Macro",
  11971. height: math.unit(2720, "feet")
  11972. },
  11973. {
  11974. name: "Megamacro",
  11975. height: math.unit(25000, "miles")
  11976. },
  11977. ]
  11978. ))
  11979. characterMakers.push(() => makeCharacter(
  11980. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11981. {
  11982. front: {
  11983. height: math.unit(8, "feet"),
  11984. weight: math.unit(250, "kg"),
  11985. name: "Front",
  11986. image: {
  11987. source: "./media/characters/ikideru/front.svg",
  11988. extra: 930 / 870,
  11989. bottom: 0.087
  11990. }
  11991. },
  11992. back: {
  11993. height: math.unit(8, "feet"),
  11994. weight: math.unit(250, "kg"),
  11995. name: "Back",
  11996. image: {
  11997. source: "./media/characters/ikideru/back.svg",
  11998. extra: 919 / 852,
  11999. bottom: 0.055
  12000. }
  12001. },
  12002. },
  12003. [
  12004. {
  12005. name: "Rare",
  12006. height: math.unit(8, "feet"),
  12007. default: true
  12008. },
  12009. {
  12010. name: "Playful Loom",
  12011. height: math.unit(80, "feet")
  12012. },
  12013. {
  12014. name: "City Leaner",
  12015. height: math.unit(230, "feet")
  12016. },
  12017. {
  12018. name: "Megamacro",
  12019. height: math.unit(2500, "feet")
  12020. },
  12021. {
  12022. name: "Gigamacro",
  12023. height: math.unit(26400, "feet")
  12024. },
  12025. {
  12026. name: "Tectonic Shifter",
  12027. height: math.unit(1.7, "megameters")
  12028. },
  12029. {
  12030. name: "Planet Carer",
  12031. height: math.unit(21, "megameters")
  12032. },
  12033. {
  12034. name: "God",
  12035. height: math.unit(11157.22, "parsecs")
  12036. },
  12037. ]
  12038. ))
  12039. characterMakers.push(() => makeCharacter(
  12040. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12041. {
  12042. front: {
  12043. height: math.unit(6, "feet"),
  12044. weight: math.unit(120, "lb"),
  12045. name: "Front",
  12046. image: {
  12047. source: "./media/characters/neo/front.svg"
  12048. }
  12049. },
  12050. },
  12051. [
  12052. {
  12053. name: "Micro",
  12054. height: math.unit(2, "inches"),
  12055. default: true
  12056. },
  12057. {
  12058. name: "Human Size",
  12059. height: math.unit(5 + 8 / 12, "feet")
  12060. },
  12061. ]
  12062. ))
  12063. characterMakers.push(() => makeCharacter(
  12064. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12065. {
  12066. front: {
  12067. height: math.unit(13 + 10 / 12, "feet"),
  12068. weight: math.unit(5320, "lb"),
  12069. name: "Front",
  12070. image: {
  12071. source: "./media/characters/chauncey-chantz/front.svg",
  12072. extra: 1587 / 1435,
  12073. bottom: 0.02
  12074. }
  12075. },
  12076. },
  12077. [
  12078. {
  12079. name: "Normal",
  12080. height: math.unit(13 + 10 / 12, "feet"),
  12081. default: true
  12082. },
  12083. {
  12084. name: "Macro",
  12085. height: math.unit(45, "feet")
  12086. },
  12087. {
  12088. name: "Megamacro",
  12089. height: math.unit(250, "miles")
  12090. },
  12091. {
  12092. name: "Planetary",
  12093. height: math.unit(10000, "miles")
  12094. },
  12095. {
  12096. name: "Galactic",
  12097. height: math.unit(40000, "parsecs")
  12098. },
  12099. {
  12100. name: "Universal",
  12101. height: math.unit(1, "yottameter")
  12102. },
  12103. ]
  12104. ))
  12105. characterMakers.push(() => makeCharacter(
  12106. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12107. {
  12108. front: {
  12109. height: math.unit(6, "feet"),
  12110. weight: math.unit(150, "lb"),
  12111. name: "Front",
  12112. image: {
  12113. source: "./media/characters/epifox/front.svg",
  12114. extra: 1,
  12115. bottom: 0.075
  12116. }
  12117. },
  12118. },
  12119. [
  12120. {
  12121. name: "Micro",
  12122. height: math.unit(6, "inches")
  12123. },
  12124. {
  12125. name: "Normal",
  12126. height: math.unit(12, "feet"),
  12127. default: true
  12128. },
  12129. {
  12130. name: "Macro",
  12131. height: math.unit(3810, "feet")
  12132. },
  12133. {
  12134. name: "Megamacro",
  12135. height: math.unit(500, "miles")
  12136. },
  12137. ]
  12138. ))
  12139. characterMakers.push(() => makeCharacter(
  12140. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12141. {
  12142. front: {
  12143. height: math.unit(1.8796, "m"),
  12144. weight: math.unit(230, "lb"),
  12145. name: "Front",
  12146. image: {
  12147. source: "./media/characters/colin-t/front.svg",
  12148. extra: 1272 / 1193,
  12149. bottom: 0.07
  12150. }
  12151. },
  12152. },
  12153. [
  12154. {
  12155. name: "Micro",
  12156. height: math.unit(0.571, "meters")
  12157. },
  12158. {
  12159. name: "Normal",
  12160. height: math.unit(1.8796, "meters"),
  12161. default: true
  12162. },
  12163. {
  12164. name: "Tall",
  12165. height: math.unit(4, "meters")
  12166. },
  12167. {
  12168. name: "Macro",
  12169. height: math.unit(67.241, "meters")
  12170. },
  12171. {
  12172. name: "Megamacro",
  12173. height: math.unit(371.856, "meters")
  12174. },
  12175. {
  12176. name: "Planetary",
  12177. height: math.unit(12631.5689, "km")
  12178. },
  12179. ]
  12180. ))
  12181. characterMakers.push(() => makeCharacter(
  12182. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12183. {
  12184. front: {
  12185. height: math.unit(1.85, "meters"),
  12186. weight: math.unit(80, "kg"),
  12187. name: "Front",
  12188. image: {
  12189. source: "./media/characters/matvei/front.svg",
  12190. extra: 614 / 594,
  12191. bottom: 0.01
  12192. }
  12193. },
  12194. },
  12195. [
  12196. {
  12197. name: "Normal",
  12198. height: math.unit(1.85, "meters"),
  12199. default: true
  12200. },
  12201. ]
  12202. ))
  12203. characterMakers.push(() => makeCharacter(
  12204. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12205. {
  12206. front: {
  12207. height: math.unit(5 + 9 / 12, "feet"),
  12208. weight: math.unit(70, "lb"),
  12209. name: "Front",
  12210. image: {
  12211. source: "./media/characters/quincy/front.svg",
  12212. extra: 3041 / 2751
  12213. }
  12214. },
  12215. back: {
  12216. height: math.unit(5 + 9 / 12, "feet"),
  12217. weight: math.unit(70, "lb"),
  12218. name: "Back",
  12219. image: {
  12220. source: "./media/characters/quincy/back.svg",
  12221. extra: 3041 / 2751
  12222. }
  12223. },
  12224. flying: {
  12225. height: math.unit(5 + 4 / 12, "feet"),
  12226. weight: math.unit(70, "lb"),
  12227. name: "Flying",
  12228. image: {
  12229. source: "./media/characters/quincy/flying.svg",
  12230. extra: 1044 / 930
  12231. }
  12232. },
  12233. },
  12234. [
  12235. {
  12236. name: "Micro",
  12237. height: math.unit(3, "cm")
  12238. },
  12239. {
  12240. name: "Normal",
  12241. height: math.unit(5 + 9 / 12, "feet")
  12242. },
  12243. {
  12244. name: "Macro",
  12245. height: math.unit(200, "meters"),
  12246. default: true
  12247. },
  12248. {
  12249. name: "Megamacro",
  12250. height: math.unit(1000, "meters")
  12251. },
  12252. ]
  12253. ))
  12254. characterMakers.push(() => makeCharacter(
  12255. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12256. {
  12257. front: {
  12258. height: math.unit(3 + 11/12, "feet"),
  12259. weight: math.unit(50, "lb"),
  12260. name: "Front",
  12261. image: {
  12262. source: "./media/characters/vanrel/front.svg",
  12263. extra: 1104/949,
  12264. bottom: 52/1156
  12265. }
  12266. },
  12267. back: {
  12268. height: math.unit(3 + 11/12, "feet"),
  12269. weight: math.unit(50, "lb"),
  12270. name: "Back",
  12271. image: {
  12272. source: "./media/characters/vanrel/back.svg",
  12273. extra: 1119/976,
  12274. bottom: 37/1156
  12275. }
  12276. },
  12277. tome: {
  12278. height: math.unit(1.35, "feet"),
  12279. weight: math.unit(10, "lb"),
  12280. name: "Vanrel's Tome",
  12281. rename: true,
  12282. image: {
  12283. source: "./media/characters/vanrel/tome.svg"
  12284. }
  12285. },
  12286. beans: {
  12287. height: math.unit(0.89, "feet"),
  12288. name: "Beans",
  12289. image: {
  12290. source: "./media/characters/vanrel/beans.svg"
  12291. }
  12292. },
  12293. },
  12294. [
  12295. {
  12296. name: "Normal",
  12297. height: math.unit(3 + 11/12, "feet"),
  12298. default: true
  12299. },
  12300. ]
  12301. ))
  12302. characterMakers.push(() => makeCharacter(
  12303. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12304. {
  12305. front: {
  12306. height: math.unit(7 + 5 / 12, "feet"),
  12307. name: "Front",
  12308. image: {
  12309. source: "./media/characters/kuiper-vanrel/front.svg",
  12310. extra: 1219/1169,
  12311. bottom: 69/1288
  12312. }
  12313. },
  12314. back: {
  12315. height: math.unit(7 + 5 / 12, "feet"),
  12316. name: "Back",
  12317. image: {
  12318. source: "./media/characters/kuiper-vanrel/back.svg",
  12319. extra: 1236/1193,
  12320. bottom: 27/1263
  12321. }
  12322. },
  12323. foot: {
  12324. height: math.unit(0.55, "meters"),
  12325. name: "Foot",
  12326. image: {
  12327. source: "./media/characters/kuiper-vanrel/foot.svg",
  12328. }
  12329. },
  12330. battle: {
  12331. height: math.unit(6.824, "feet"),
  12332. name: "Battle",
  12333. image: {
  12334. source: "./media/characters/kuiper-vanrel/battle.svg",
  12335. extra: 1466 / 1327,
  12336. bottom: 29 / 1492.5
  12337. }
  12338. },
  12339. meerkui: {
  12340. height: math.unit(18, "inches"),
  12341. name: "Meerkui",
  12342. image: {
  12343. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12344. extra: 1354/1289,
  12345. bottom: 69/1423
  12346. }
  12347. },
  12348. },
  12349. [
  12350. {
  12351. name: "Normal",
  12352. height: math.unit(7 + 5 / 12, "feet"),
  12353. default: true
  12354. },
  12355. ]
  12356. ))
  12357. characterMakers.push(() => makeCharacter(
  12358. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12359. {
  12360. front: {
  12361. height: math.unit(8 + 5 / 12, "feet"),
  12362. name: "Front",
  12363. image: {
  12364. source: "./media/characters/keset-vanrel/front.svg",
  12365. extra: 1231/1148,
  12366. bottom: 82/1313
  12367. }
  12368. },
  12369. back: {
  12370. height: math.unit(8 + 5 / 12, "feet"),
  12371. name: "Back",
  12372. image: {
  12373. source: "./media/characters/keset-vanrel/back.svg",
  12374. extra: 1240/1174,
  12375. bottom: 33/1273
  12376. }
  12377. },
  12378. hand: {
  12379. height: math.unit(0.6, "meters"),
  12380. name: "Hand",
  12381. image: {
  12382. source: "./media/characters/keset-vanrel/hand.svg"
  12383. }
  12384. },
  12385. foot: {
  12386. height: math.unit(0.94978, "meters"),
  12387. name: "Foot",
  12388. image: {
  12389. source: "./media/characters/keset-vanrel/foot.svg"
  12390. }
  12391. },
  12392. battle: {
  12393. height: math.unit(7.408, "feet"),
  12394. name: "Battle",
  12395. image: {
  12396. source: "./media/characters/keset-vanrel/battle.svg",
  12397. extra: 1890 / 1386,
  12398. bottom: 73.28 / 1970
  12399. }
  12400. },
  12401. },
  12402. [
  12403. {
  12404. name: "Normal",
  12405. height: math.unit(8 + 5 / 12, "feet"),
  12406. default: true
  12407. },
  12408. ]
  12409. ))
  12410. characterMakers.push(() => makeCharacter(
  12411. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12412. {
  12413. front: {
  12414. height: math.unit(6, "feet"),
  12415. weight: math.unit(150, "lb"),
  12416. name: "Front",
  12417. image: {
  12418. source: "./media/characters/neos/front.svg",
  12419. extra: 1696 / 992,
  12420. bottom: 0.14
  12421. }
  12422. },
  12423. },
  12424. [
  12425. {
  12426. name: "Normal",
  12427. height: math.unit(54, "cm"),
  12428. default: true
  12429. },
  12430. {
  12431. name: "Macro",
  12432. height: math.unit(100, "m")
  12433. },
  12434. {
  12435. name: "Megamacro",
  12436. height: math.unit(10, "km")
  12437. },
  12438. {
  12439. name: "Megamacro+",
  12440. height: math.unit(100, "km")
  12441. },
  12442. {
  12443. name: "Gigamacro",
  12444. height: math.unit(100, "Mm")
  12445. },
  12446. {
  12447. name: "Teramacro",
  12448. height: math.unit(100, "Gm")
  12449. },
  12450. {
  12451. name: "Examacro",
  12452. height: math.unit(100, "Em")
  12453. },
  12454. {
  12455. name: "Godly",
  12456. height: math.unit(10000, "Ym")
  12457. },
  12458. {
  12459. name: "Beyond Godly",
  12460. height: math.unit(25, "multiverses")
  12461. },
  12462. ]
  12463. ))
  12464. characterMakers.push(() => makeCharacter(
  12465. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12466. {
  12467. feminine: {
  12468. height: math.unit(5, "feet"),
  12469. weight: math.unit(100, "lb"),
  12470. name: "Feminine",
  12471. image: {
  12472. source: "./media/characters/sammy-mouse/feminine.svg",
  12473. extra: 2526 / 2425,
  12474. bottom: 0.123
  12475. }
  12476. },
  12477. masculine: {
  12478. height: math.unit(5, "feet"),
  12479. weight: math.unit(100, "lb"),
  12480. name: "Masculine",
  12481. image: {
  12482. source: "./media/characters/sammy-mouse/masculine.svg",
  12483. extra: 2526 / 2425,
  12484. bottom: 0.123
  12485. }
  12486. },
  12487. },
  12488. [
  12489. {
  12490. name: "Micro",
  12491. height: math.unit(5, "inches")
  12492. },
  12493. {
  12494. name: "Normal",
  12495. height: math.unit(5, "feet"),
  12496. default: true
  12497. },
  12498. {
  12499. name: "Macro",
  12500. height: math.unit(60, "feet")
  12501. },
  12502. ]
  12503. ))
  12504. characterMakers.push(() => makeCharacter(
  12505. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12506. {
  12507. front: {
  12508. height: math.unit(4, "feet"),
  12509. weight: math.unit(50, "lb"),
  12510. name: "Front",
  12511. image: {
  12512. source: "./media/characters/kole/front.svg",
  12513. extra: 1423 / 1303,
  12514. bottom: 0.025
  12515. }
  12516. },
  12517. back: {
  12518. height: math.unit(4, "feet"),
  12519. weight: math.unit(50, "lb"),
  12520. name: "Back",
  12521. image: {
  12522. source: "./media/characters/kole/back.svg",
  12523. extra: 1426 / 1280,
  12524. bottom: 0.02
  12525. }
  12526. },
  12527. },
  12528. [
  12529. {
  12530. name: "Normal",
  12531. height: math.unit(4, "feet"),
  12532. default: true
  12533. },
  12534. ]
  12535. ))
  12536. characterMakers.push(() => makeCharacter(
  12537. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12538. {
  12539. front: {
  12540. height: math.unit(2.5, "feet"),
  12541. weight: math.unit(32, "lb"),
  12542. name: "Front",
  12543. image: {
  12544. source: "./media/characters/rufran/front.svg",
  12545. extra: 1313/885,
  12546. bottom: 94/1407
  12547. }
  12548. },
  12549. side: {
  12550. height: math.unit(2.5, "feet"),
  12551. weight: math.unit(32, "lb"),
  12552. name: "Side",
  12553. image: {
  12554. source: "./media/characters/rufran/side.svg",
  12555. extra: 1109/852,
  12556. bottom: 118/1227
  12557. }
  12558. },
  12559. back: {
  12560. height: math.unit(2.5, "feet"),
  12561. weight: math.unit(32, "lb"),
  12562. name: "Back",
  12563. image: {
  12564. source: "./media/characters/rufran/back.svg",
  12565. extra: 1280/878,
  12566. bottom: 131/1411
  12567. }
  12568. },
  12569. mouth: {
  12570. height: math.unit(1.13, "feet"),
  12571. name: "Mouth",
  12572. image: {
  12573. source: "./media/characters/rufran/mouth.svg"
  12574. }
  12575. },
  12576. foot: {
  12577. height: math.unit(1.33, "feet"),
  12578. name: "Foot",
  12579. image: {
  12580. source: "./media/characters/rufran/foot.svg"
  12581. }
  12582. },
  12583. koboldFront: {
  12584. height: math.unit(2 + 6 / 12, "feet"),
  12585. weight: math.unit(20, "lb"),
  12586. name: "Front (Kobold)",
  12587. image: {
  12588. source: "./media/characters/rufran/kobold-front.svg",
  12589. extra: 2041 / 1839,
  12590. bottom: 0.055
  12591. }
  12592. },
  12593. koboldBack: {
  12594. height: math.unit(2 + 6 / 12, "feet"),
  12595. weight: math.unit(20, "lb"),
  12596. name: "Back (Kobold)",
  12597. image: {
  12598. source: "./media/characters/rufran/kobold-back.svg",
  12599. extra: 2054 / 1839,
  12600. bottom: 0.01
  12601. }
  12602. },
  12603. koboldHand: {
  12604. height: math.unit(0.2166, "meters"),
  12605. name: "Hand (Kobold)",
  12606. image: {
  12607. source: "./media/characters/rufran/kobold-hand.svg"
  12608. }
  12609. },
  12610. koboldFoot: {
  12611. height: math.unit(0.185, "meters"),
  12612. name: "Foot (Kobold)",
  12613. image: {
  12614. source: "./media/characters/rufran/kobold-foot.svg"
  12615. }
  12616. },
  12617. },
  12618. [
  12619. {
  12620. name: "Micro",
  12621. height: math.unit(1, "inch")
  12622. },
  12623. {
  12624. name: "Normal",
  12625. height: math.unit(2 + 6 / 12, "feet"),
  12626. default: true
  12627. },
  12628. {
  12629. name: "Big",
  12630. height: math.unit(60, "feet")
  12631. },
  12632. {
  12633. name: "Macro",
  12634. height: math.unit(325, "feet")
  12635. },
  12636. ]
  12637. ))
  12638. characterMakers.push(() => makeCharacter(
  12639. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12640. {
  12641. front: {
  12642. height: math.unit(0.3, "meters"),
  12643. weight: math.unit(3.5, "kg"),
  12644. name: "Front",
  12645. image: {
  12646. source: "./media/characters/chip/front.svg",
  12647. extra: 748 / 674
  12648. }
  12649. },
  12650. },
  12651. [
  12652. {
  12653. name: "Micro",
  12654. height: math.unit(1, "inch"),
  12655. default: true
  12656. },
  12657. ]
  12658. ))
  12659. characterMakers.push(() => makeCharacter(
  12660. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12661. {
  12662. side: {
  12663. height: math.unit(2.3, "meters"),
  12664. weight: math.unit(3500, "lb"),
  12665. name: "Side",
  12666. image: {
  12667. source: "./media/characters/torvid/side.svg",
  12668. extra: 1972 / 722,
  12669. bottom: 0.035
  12670. }
  12671. },
  12672. },
  12673. [
  12674. {
  12675. name: "Normal",
  12676. height: math.unit(2.3, "meters"),
  12677. default: true
  12678. },
  12679. ]
  12680. ))
  12681. characterMakers.push(() => makeCharacter(
  12682. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12683. {
  12684. front: {
  12685. height: math.unit(2, "meters"),
  12686. weight: math.unit(150.5, "kg"),
  12687. name: "Front",
  12688. image: {
  12689. source: "./media/characters/susan/front.svg",
  12690. extra: 693 / 635,
  12691. bottom: 0.05
  12692. }
  12693. },
  12694. },
  12695. [
  12696. {
  12697. name: "Megamacro",
  12698. height: math.unit(505, "miles"),
  12699. default: true
  12700. },
  12701. ]
  12702. ))
  12703. characterMakers.push(() => makeCharacter(
  12704. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12705. {
  12706. front: {
  12707. height: math.unit(6, "feet"),
  12708. weight: math.unit(150, "lb"),
  12709. name: "Front",
  12710. image: {
  12711. source: "./media/characters/raindrops/front.svg",
  12712. extra: 2655 / 2461,
  12713. bottom: 49 / 2705
  12714. }
  12715. },
  12716. back: {
  12717. height: math.unit(6, "feet"),
  12718. weight: math.unit(150, "lb"),
  12719. name: "Back",
  12720. image: {
  12721. source: "./media/characters/raindrops/back.svg",
  12722. extra: 2574 / 2400,
  12723. bottom: 65 / 2634
  12724. }
  12725. },
  12726. },
  12727. [
  12728. {
  12729. name: "Micro",
  12730. height: math.unit(6, "inches")
  12731. },
  12732. {
  12733. name: "Normal",
  12734. height: math.unit(6 + 2 / 12, "feet")
  12735. },
  12736. {
  12737. name: "Macro",
  12738. height: math.unit(131, "feet"),
  12739. default: true
  12740. },
  12741. {
  12742. name: "Megamacro",
  12743. height: math.unit(15, "miles")
  12744. },
  12745. {
  12746. name: "Gigamacro",
  12747. height: math.unit(4000, "miles")
  12748. },
  12749. {
  12750. name: "Teramacro",
  12751. height: math.unit(315000, "miles")
  12752. },
  12753. ]
  12754. ))
  12755. characterMakers.push(() => makeCharacter(
  12756. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12757. {
  12758. front: {
  12759. height: math.unit(2.794, "meters"),
  12760. weight: math.unit(325, "kg"),
  12761. name: "Front",
  12762. image: {
  12763. source: "./media/characters/tezwa/front.svg",
  12764. extra: 2083 / 1906,
  12765. bottom: 0.031
  12766. }
  12767. },
  12768. foot: {
  12769. height: math.unit(0.687, "meters"),
  12770. name: "Foot",
  12771. image: {
  12772. source: "./media/characters/tezwa/foot.svg"
  12773. }
  12774. },
  12775. },
  12776. [
  12777. {
  12778. name: "Normal",
  12779. height: math.unit(9 + 2 / 12, "feet"),
  12780. default: true
  12781. },
  12782. ]
  12783. ))
  12784. characterMakers.push(() => makeCharacter(
  12785. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12786. {
  12787. front: {
  12788. height: math.unit(58, "feet"),
  12789. weight: math.unit(89000, "lb"),
  12790. name: "Front",
  12791. image: {
  12792. source: "./media/characters/typhus/front.svg",
  12793. extra: 816 / 800,
  12794. bottom: 0.065
  12795. }
  12796. },
  12797. },
  12798. [
  12799. {
  12800. name: "Macro",
  12801. height: math.unit(58, "feet"),
  12802. default: true
  12803. },
  12804. ]
  12805. ))
  12806. characterMakers.push(() => makeCharacter(
  12807. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12808. {
  12809. front: {
  12810. height: math.unit(12, "feet"),
  12811. weight: math.unit(6, "tonnes"),
  12812. name: "Front",
  12813. image: {
  12814. source: "./media/characters/lyra-von-wulf/front.svg",
  12815. extra: 1,
  12816. bottom: 0.10
  12817. }
  12818. },
  12819. frontMecha: {
  12820. height: math.unit(12, "feet"),
  12821. weight: math.unit(12, "tonnes"),
  12822. name: "Front (Mecha)",
  12823. image: {
  12824. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12825. extra: 1,
  12826. bottom: 0.042
  12827. }
  12828. },
  12829. maw: {
  12830. height: math.unit(2.2, "feet"),
  12831. name: "Maw",
  12832. image: {
  12833. source: "./media/characters/lyra-von-wulf/maw.svg"
  12834. }
  12835. },
  12836. },
  12837. [
  12838. {
  12839. name: "Normal",
  12840. height: math.unit(12, "feet"),
  12841. default: true
  12842. },
  12843. {
  12844. name: "Classic",
  12845. height: math.unit(50, "feet")
  12846. },
  12847. {
  12848. name: "Macro",
  12849. height: math.unit(500, "feet")
  12850. },
  12851. {
  12852. name: "Megamacro",
  12853. height: math.unit(1, "mile")
  12854. },
  12855. {
  12856. name: "Gigamacro",
  12857. height: math.unit(400, "miles")
  12858. },
  12859. {
  12860. name: "Teramacro",
  12861. height: math.unit(22000, "miles")
  12862. },
  12863. {
  12864. name: "Solarmacro",
  12865. height: math.unit(8600000, "miles")
  12866. },
  12867. {
  12868. name: "Galactic",
  12869. height: math.unit(1057000, "lightyears")
  12870. },
  12871. ]
  12872. ))
  12873. characterMakers.push(() => makeCharacter(
  12874. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12875. {
  12876. front: {
  12877. height: math.unit(6 + 10 / 12, "feet"),
  12878. weight: math.unit(150, "lb"),
  12879. name: "Front",
  12880. image: {
  12881. source: "./media/characters/dixon/front.svg",
  12882. extra: 3361 / 3209,
  12883. bottom: 0.01
  12884. }
  12885. },
  12886. },
  12887. [
  12888. {
  12889. name: "Normal",
  12890. height: math.unit(6 + 10 / 12, "feet"),
  12891. default: true
  12892. },
  12893. {
  12894. name: "Big",
  12895. height: math.unit(12, "meters")
  12896. },
  12897. {
  12898. name: "Macro",
  12899. height: math.unit(500, "meters")
  12900. },
  12901. {
  12902. name: "Megamacro",
  12903. height: math.unit(2, "km")
  12904. },
  12905. ]
  12906. ))
  12907. characterMakers.push(() => makeCharacter(
  12908. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12909. {
  12910. front: {
  12911. height: math.unit(185, "cm"),
  12912. weight: math.unit(68, "kg"),
  12913. name: "Front",
  12914. image: {
  12915. source: "./media/characters/kauko/front.svg",
  12916. extra: 1455 / 1421,
  12917. bottom: 0.03
  12918. }
  12919. },
  12920. back: {
  12921. height: math.unit(185, "cm"),
  12922. weight: math.unit(68, "kg"),
  12923. name: "Back",
  12924. image: {
  12925. source: "./media/characters/kauko/back.svg",
  12926. extra: 1455 / 1421,
  12927. bottom: 0.004
  12928. }
  12929. },
  12930. },
  12931. [
  12932. {
  12933. name: "Normal",
  12934. height: math.unit(185, "cm"),
  12935. default: true
  12936. },
  12937. ]
  12938. ))
  12939. characterMakers.push(() => makeCharacter(
  12940. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12941. {
  12942. front: {
  12943. height: math.unit(6, "feet"),
  12944. weight: math.unit(150, "kg"),
  12945. name: "Front",
  12946. image: {
  12947. source: "./media/characters/varg/front.svg",
  12948. extra: 1108 / 1018,
  12949. bottom: 0.0375
  12950. }
  12951. },
  12952. },
  12953. [
  12954. {
  12955. name: "Normal",
  12956. height: math.unit(5, "meters")
  12957. },
  12958. {
  12959. name: "Macro",
  12960. height: math.unit(200, "meters")
  12961. },
  12962. {
  12963. name: "Megamacro",
  12964. height: math.unit(20, "kilometers")
  12965. },
  12966. {
  12967. name: "True Size",
  12968. height: math.unit(211, "km"),
  12969. default: true
  12970. },
  12971. {
  12972. name: "Gigamacro",
  12973. height: math.unit(1000, "km")
  12974. },
  12975. {
  12976. name: "Gigamacro+",
  12977. height: math.unit(8000, "km")
  12978. },
  12979. {
  12980. name: "Teramacro",
  12981. height: math.unit(1000000, "km")
  12982. },
  12983. ]
  12984. ))
  12985. characterMakers.push(() => makeCharacter(
  12986. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12987. {
  12988. front: {
  12989. height: math.unit(7 + 7 / 12, "feet"),
  12990. weight: math.unit(267, "lb"),
  12991. name: "Front",
  12992. image: {
  12993. source: "./media/characters/dayza/front.svg",
  12994. extra: 1262 / 1200,
  12995. bottom: 0.035
  12996. }
  12997. },
  12998. side: {
  12999. height: math.unit(7 + 7 / 12, "feet"),
  13000. weight: math.unit(267, "lb"),
  13001. name: "Side",
  13002. image: {
  13003. source: "./media/characters/dayza/side.svg",
  13004. extra: 1295 / 1245,
  13005. bottom: 0.05
  13006. }
  13007. },
  13008. back: {
  13009. height: math.unit(7 + 7 / 12, "feet"),
  13010. weight: math.unit(267, "lb"),
  13011. name: "Back",
  13012. image: {
  13013. source: "./media/characters/dayza/back.svg",
  13014. extra: 1241 / 1170
  13015. }
  13016. },
  13017. },
  13018. [
  13019. {
  13020. name: "Normal",
  13021. height: math.unit(7 + 7 / 12, "feet"),
  13022. default: true
  13023. },
  13024. {
  13025. name: "Macro",
  13026. height: math.unit(155, "feet")
  13027. },
  13028. ]
  13029. ))
  13030. characterMakers.push(() => makeCharacter(
  13031. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13032. {
  13033. front: {
  13034. height: math.unit(6 + 5 / 12, "feet"),
  13035. weight: math.unit(160, "lb"),
  13036. name: "Front",
  13037. image: {
  13038. source: "./media/characters/xanthos/front.svg",
  13039. extra: 1,
  13040. bottom: 0.04
  13041. }
  13042. },
  13043. back: {
  13044. height: math.unit(6 + 5 / 12, "feet"),
  13045. weight: math.unit(160, "lb"),
  13046. name: "Back",
  13047. image: {
  13048. source: "./media/characters/xanthos/back.svg",
  13049. extra: 1,
  13050. bottom: 0.03
  13051. }
  13052. },
  13053. hand: {
  13054. height: math.unit(0.928, "feet"),
  13055. name: "Hand",
  13056. image: {
  13057. source: "./media/characters/xanthos/hand.svg"
  13058. }
  13059. },
  13060. foot: {
  13061. height: math.unit(1.286, "feet"),
  13062. name: "Foot",
  13063. image: {
  13064. source: "./media/characters/xanthos/foot.svg"
  13065. }
  13066. },
  13067. },
  13068. [
  13069. {
  13070. name: "Normal",
  13071. height: math.unit(6 + 5 / 12, "feet"),
  13072. default: true
  13073. },
  13074. {
  13075. name: "Normal+",
  13076. height: math.unit(6, "meters")
  13077. },
  13078. {
  13079. name: "Macro",
  13080. height: math.unit(40, "feet")
  13081. },
  13082. {
  13083. name: "Macro+",
  13084. height: math.unit(200, "meters")
  13085. },
  13086. {
  13087. name: "Megamacro",
  13088. height: math.unit(20, "km")
  13089. },
  13090. {
  13091. name: "Megamacro+",
  13092. height: math.unit(100, "km")
  13093. },
  13094. {
  13095. name: "Gigamacro",
  13096. height: math.unit(200, "megameters")
  13097. },
  13098. {
  13099. name: "Gigamacro+",
  13100. height: math.unit(1.5, "gigameters")
  13101. },
  13102. ]
  13103. ))
  13104. characterMakers.push(() => makeCharacter(
  13105. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13106. {
  13107. front: {
  13108. height: math.unit(6 + 3 / 12, "feet"),
  13109. weight: math.unit(215, "lb"),
  13110. name: "Front",
  13111. image: {
  13112. source: "./media/characters/grynn/front.svg",
  13113. extra: 4627 / 4209,
  13114. bottom: 0.047
  13115. }
  13116. },
  13117. },
  13118. [
  13119. {
  13120. name: "Micro",
  13121. height: math.unit(6, "inches")
  13122. },
  13123. {
  13124. name: "Normal",
  13125. height: math.unit(6 + 3 / 12, "feet"),
  13126. default: true
  13127. },
  13128. {
  13129. name: "Big",
  13130. height: math.unit(104, "feet")
  13131. },
  13132. {
  13133. name: "Macro",
  13134. height: math.unit(944, "feet")
  13135. },
  13136. {
  13137. name: "Macro+",
  13138. height: math.unit(9480, "feet")
  13139. },
  13140. {
  13141. name: "Megamacro",
  13142. height: math.unit(78752, "feet")
  13143. },
  13144. {
  13145. name: "Megamacro+",
  13146. height: math.unit(630128, "feet")
  13147. },
  13148. {
  13149. name: "Megamacro++",
  13150. height: math.unit(3150695, "feet")
  13151. },
  13152. ]
  13153. ))
  13154. characterMakers.push(() => makeCharacter(
  13155. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13156. {
  13157. front: {
  13158. height: math.unit(7 + 5 / 12, "feet"),
  13159. weight: math.unit(450, "lb"),
  13160. name: "Front",
  13161. image: {
  13162. source: "./media/characters/mocha-aura/front.svg",
  13163. extra: 1907 / 1817,
  13164. bottom: 0.04
  13165. }
  13166. },
  13167. back: {
  13168. height: math.unit(7 + 5 / 12, "feet"),
  13169. weight: math.unit(450, "lb"),
  13170. name: "Back",
  13171. image: {
  13172. source: "./media/characters/mocha-aura/back.svg",
  13173. extra: 1900 / 1825,
  13174. bottom: 0.045
  13175. }
  13176. },
  13177. },
  13178. [
  13179. {
  13180. name: "Nano",
  13181. height: math.unit(1, "nm")
  13182. },
  13183. {
  13184. name: "Megamicro",
  13185. height: math.unit(1, "mm")
  13186. },
  13187. {
  13188. name: "Micro",
  13189. height: math.unit(3, "inches")
  13190. },
  13191. {
  13192. name: "Normal",
  13193. height: math.unit(7 + 5 / 12, "feet"),
  13194. default: true
  13195. },
  13196. {
  13197. name: "Macro",
  13198. height: math.unit(30, "feet")
  13199. },
  13200. {
  13201. name: "Megamacro",
  13202. height: math.unit(3500, "feet")
  13203. },
  13204. {
  13205. name: "Teramacro",
  13206. height: math.unit(500000, "miles")
  13207. },
  13208. {
  13209. name: "Petamacro",
  13210. height: math.unit(50000000000000000, "parsecs")
  13211. },
  13212. ]
  13213. ))
  13214. characterMakers.push(() => makeCharacter(
  13215. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13216. {
  13217. front: {
  13218. height: math.unit(6, "feet"),
  13219. weight: math.unit(150, "lb"),
  13220. name: "Front",
  13221. image: {
  13222. source: "./media/characters/ilisha-devya/front.svg",
  13223. extra: 1053/1049,
  13224. bottom: 270/1323
  13225. }
  13226. },
  13227. back: {
  13228. height: math.unit(6, "feet"),
  13229. weight: math.unit(150, "lb"),
  13230. name: "Back",
  13231. image: {
  13232. source: "./media/characters/ilisha-devya/back.svg",
  13233. extra: 1131/1128,
  13234. bottom: 39/1170
  13235. }
  13236. },
  13237. },
  13238. [
  13239. {
  13240. name: "Macro",
  13241. height: math.unit(500, "feet"),
  13242. default: true
  13243. },
  13244. {
  13245. name: "Megamacro",
  13246. height: math.unit(10, "miles")
  13247. },
  13248. {
  13249. name: "Gigamacro",
  13250. height: math.unit(100000, "miles")
  13251. },
  13252. {
  13253. name: "Examacro",
  13254. height: math.unit(1e9, "lightyears")
  13255. },
  13256. {
  13257. name: "Omniversal",
  13258. height: math.unit(1e33, "lightyears")
  13259. },
  13260. {
  13261. name: "Beyond Infinite",
  13262. height: math.unit(1e100, "lightyears")
  13263. },
  13264. ]
  13265. ))
  13266. characterMakers.push(() => makeCharacter(
  13267. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13268. {
  13269. Side: {
  13270. height: math.unit(6, "feet"),
  13271. weight: math.unit(150, "lb"),
  13272. name: "Side",
  13273. image: {
  13274. source: "./media/characters/mira/side.svg",
  13275. extra: 900 / 799,
  13276. bottom: 0.02
  13277. }
  13278. },
  13279. },
  13280. [
  13281. {
  13282. name: "Human Size",
  13283. height: math.unit(6, "feet")
  13284. },
  13285. {
  13286. name: "Macro",
  13287. height: math.unit(100, "feet"),
  13288. default: true
  13289. },
  13290. {
  13291. name: "Megamacro",
  13292. height: math.unit(10, "miles")
  13293. },
  13294. {
  13295. name: "Gigamacro",
  13296. height: math.unit(25000, "miles")
  13297. },
  13298. {
  13299. name: "Teramacro",
  13300. height: math.unit(300, "AU")
  13301. },
  13302. {
  13303. name: "Full Size",
  13304. height: math.unit(4.5e10, "lightyears")
  13305. },
  13306. ]
  13307. ))
  13308. characterMakers.push(() => makeCharacter(
  13309. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13310. {
  13311. front: {
  13312. height: math.unit(6, "feet"),
  13313. weight: math.unit(150, "lb"),
  13314. name: "Front",
  13315. image: {
  13316. source: "./media/characters/holly/front.svg",
  13317. extra: 639 / 606
  13318. }
  13319. },
  13320. back: {
  13321. height: math.unit(6, "feet"),
  13322. weight: math.unit(150, "lb"),
  13323. name: "Back",
  13324. image: {
  13325. source: "./media/characters/holly/back.svg",
  13326. extra: 623 / 598
  13327. }
  13328. },
  13329. frontWorking: {
  13330. height: math.unit(6, "feet"),
  13331. weight: math.unit(150, "lb"),
  13332. name: "Front (Working)",
  13333. image: {
  13334. source: "./media/characters/holly/front-working.svg",
  13335. extra: 607 / 577,
  13336. bottom: 0.048
  13337. }
  13338. },
  13339. },
  13340. [
  13341. {
  13342. name: "Normal",
  13343. height: math.unit(12 + 3 / 12, "feet"),
  13344. default: true
  13345. },
  13346. ]
  13347. ))
  13348. characterMakers.push(() => makeCharacter(
  13349. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13350. {
  13351. front: {
  13352. height: math.unit(6, "feet"),
  13353. weight: math.unit(150, "lb"),
  13354. name: "Front",
  13355. image: {
  13356. source: "./media/characters/porter/front.svg",
  13357. extra: 1,
  13358. bottom: 0.01
  13359. }
  13360. },
  13361. frontRobes: {
  13362. height: math.unit(6, "feet"),
  13363. weight: math.unit(150, "lb"),
  13364. name: "Front (Robes)",
  13365. image: {
  13366. source: "./media/characters/porter/front-robes.svg",
  13367. extra: 1.01,
  13368. bottom: 0.01
  13369. }
  13370. },
  13371. },
  13372. [
  13373. {
  13374. name: "Normal",
  13375. height: math.unit(11 + 9 / 12, "feet"),
  13376. default: true
  13377. },
  13378. ]
  13379. ))
  13380. characterMakers.push(() => makeCharacter(
  13381. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13382. {
  13383. legendary: {
  13384. height: math.unit(6, "feet"),
  13385. weight: math.unit(150, "lb"),
  13386. name: "Legendary",
  13387. image: {
  13388. source: "./media/characters/lucy/legendary.svg",
  13389. extra: 1355 / 1100,
  13390. bottom: 0.045
  13391. }
  13392. },
  13393. },
  13394. [
  13395. {
  13396. name: "Legendary",
  13397. height: math.unit(86882 * 2, "miles"),
  13398. default: true
  13399. },
  13400. ]
  13401. ))
  13402. characterMakers.push(() => makeCharacter(
  13403. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13404. {
  13405. front: {
  13406. height: math.unit(6, "feet"),
  13407. weight: math.unit(150, "lb"),
  13408. name: "Front",
  13409. image: {
  13410. source: "./media/characters/drusilla/front.svg",
  13411. extra: 678 / 635,
  13412. bottom: 0.03
  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/drusilla/back.svg",
  13421. extra: 678 / 635,
  13422. bottom: 0.005
  13423. }
  13424. },
  13425. },
  13426. [
  13427. {
  13428. name: "Macro",
  13429. height: math.unit(100, "feet")
  13430. },
  13431. {
  13432. name: "Canon Height",
  13433. height: math.unit(2000, "feet"),
  13434. default: true
  13435. },
  13436. ]
  13437. ))
  13438. characterMakers.push(() => makeCharacter(
  13439. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13440. {
  13441. front: {
  13442. height: math.unit(6, "feet"),
  13443. weight: math.unit(180, "lb"),
  13444. name: "Front",
  13445. image: {
  13446. source: "./media/characters/renard-thatch/front.svg",
  13447. extra: 2411 / 2275,
  13448. bottom: 0.01
  13449. }
  13450. },
  13451. frontPosing: {
  13452. height: math.unit(6, "feet"),
  13453. weight: math.unit(180, "lb"),
  13454. name: "Front (Posing)",
  13455. image: {
  13456. source: "./media/characters/renard-thatch/front-posing.svg",
  13457. extra: 2381 / 2261,
  13458. bottom: 0.01
  13459. }
  13460. },
  13461. back: {
  13462. height: math.unit(6, "feet"),
  13463. weight: math.unit(180, "lb"),
  13464. name: "Back",
  13465. image: {
  13466. source: "./media/characters/renard-thatch/back.svg",
  13467. extra: 2428 / 2288
  13468. }
  13469. },
  13470. },
  13471. [
  13472. {
  13473. name: "Micro",
  13474. height: math.unit(3, "inches")
  13475. },
  13476. {
  13477. name: "Default",
  13478. height: math.unit(6, "feet"),
  13479. default: true
  13480. },
  13481. {
  13482. name: "Macro",
  13483. height: math.unit(75, "feet")
  13484. },
  13485. ]
  13486. ))
  13487. characterMakers.push(() => makeCharacter(
  13488. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13489. {
  13490. front: {
  13491. height: math.unit(1450, "feet"),
  13492. weight: math.unit(1.21e6, "tons"),
  13493. name: "Front",
  13494. image: {
  13495. source: "./media/characters/sekvra/front.svg",
  13496. extra: 1193/1190,
  13497. bottom: 78/1271
  13498. }
  13499. },
  13500. side: {
  13501. height: math.unit(1450, "feet"),
  13502. weight: math.unit(1.21e6, "tons"),
  13503. name: "Side",
  13504. image: {
  13505. source: "./media/characters/sekvra/side.svg",
  13506. extra: 1193/1190,
  13507. bottom: 52/1245
  13508. }
  13509. },
  13510. back: {
  13511. height: math.unit(1450, "feet"),
  13512. weight: math.unit(1.21e6, "tons"),
  13513. name: "Back",
  13514. image: {
  13515. source: "./media/characters/sekvra/back.svg",
  13516. extra: 1219/1216,
  13517. bottom: 21/1240
  13518. }
  13519. },
  13520. frontClothed: {
  13521. height: math.unit(1450, "feet"),
  13522. weight: math.unit(1.21e6, "tons"),
  13523. name: "Front (Clothed)",
  13524. image: {
  13525. source: "./media/characters/sekvra/front-clothed.svg",
  13526. extra: 1192/1189,
  13527. bottom: 79/1271
  13528. }
  13529. },
  13530. },
  13531. [
  13532. {
  13533. name: "Macro",
  13534. height: math.unit(1450, "feet"),
  13535. default: true
  13536. },
  13537. {
  13538. name: "Megamacro",
  13539. height: math.unit(15000, "feet")
  13540. },
  13541. ]
  13542. ))
  13543. characterMakers.push(() => makeCharacter(
  13544. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13545. {
  13546. front: {
  13547. height: math.unit(6, "feet"),
  13548. weight: math.unit(150, "lb"),
  13549. name: "Front",
  13550. image: {
  13551. source: "./media/characters/carmine/front.svg",
  13552. extra: 1,
  13553. bottom: 0.035
  13554. }
  13555. },
  13556. frontArmor: {
  13557. height: math.unit(6, "feet"),
  13558. weight: math.unit(150, "lb"),
  13559. name: "Front (Armor)",
  13560. image: {
  13561. source: "./media/characters/carmine/front-armor.svg",
  13562. extra: 1,
  13563. bottom: 0.035
  13564. }
  13565. },
  13566. },
  13567. [
  13568. {
  13569. name: "Large",
  13570. height: math.unit(1, "mile")
  13571. },
  13572. {
  13573. name: "Huge",
  13574. height: math.unit(40, "miles"),
  13575. default: true
  13576. },
  13577. {
  13578. name: "Colossal",
  13579. height: math.unit(2500, "miles")
  13580. },
  13581. ]
  13582. ))
  13583. characterMakers.push(() => makeCharacter(
  13584. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13585. {
  13586. front: {
  13587. height: math.unit(6, "feet"),
  13588. weight: math.unit(150, "lb"),
  13589. name: "Front",
  13590. image: {
  13591. source: "./media/characters/elyssia/front.svg",
  13592. extra: 2201 / 2035,
  13593. bottom: 0.05
  13594. }
  13595. },
  13596. frontClothed: {
  13597. height: math.unit(6, "feet"),
  13598. weight: math.unit(150, "lb"),
  13599. name: "Front (Clothed)",
  13600. image: {
  13601. source: "./media/characters/elyssia/front-clothed.svg",
  13602. extra: 2201 / 2035,
  13603. bottom: 0.05
  13604. }
  13605. },
  13606. back: {
  13607. height: math.unit(6, "feet"),
  13608. weight: math.unit(150, "lb"),
  13609. name: "Back",
  13610. image: {
  13611. source: "./media/characters/elyssia/back.svg",
  13612. extra: 2201 / 2035,
  13613. bottom: 0.013
  13614. }
  13615. },
  13616. },
  13617. [
  13618. {
  13619. name: "Smaller",
  13620. height: math.unit(150, "feet")
  13621. },
  13622. {
  13623. name: "Standard",
  13624. height: math.unit(1400, "feet"),
  13625. default: true
  13626. },
  13627. {
  13628. name: "Distracted",
  13629. height: math.unit(15000, "feet")
  13630. },
  13631. ]
  13632. ))
  13633. characterMakers.push(() => makeCharacter(
  13634. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13635. {
  13636. front: {
  13637. height: math.unit(7 + 4/12, "feet"),
  13638. weight: math.unit(690, "lb"),
  13639. name: "Front",
  13640. image: {
  13641. source: "./media/characters/geno-maxwell/front.svg",
  13642. extra: 984/856,
  13643. bottom: 87/1071
  13644. }
  13645. },
  13646. back: {
  13647. height: math.unit(7 + 4/12, "feet"),
  13648. weight: math.unit(690, "lb"),
  13649. name: "Back",
  13650. image: {
  13651. source: "./media/characters/geno-maxwell/back.svg",
  13652. extra: 981/854,
  13653. bottom: 57/1038
  13654. }
  13655. },
  13656. frontCostume: {
  13657. height: math.unit(7 + 4/12, "feet"),
  13658. weight: math.unit(690, "lb"),
  13659. name: "Front (Costume)",
  13660. image: {
  13661. source: "./media/characters/geno-maxwell/front-costume.svg",
  13662. extra: 984/856,
  13663. bottom: 87/1071
  13664. }
  13665. },
  13666. backcostume: {
  13667. height: math.unit(7 + 4/12, "feet"),
  13668. weight: math.unit(690, "lb"),
  13669. name: "Back (Costume)",
  13670. image: {
  13671. source: "./media/characters/geno-maxwell/back-costume.svg",
  13672. extra: 981/854,
  13673. bottom: 57/1038
  13674. }
  13675. },
  13676. },
  13677. [
  13678. {
  13679. name: "Micro",
  13680. height: math.unit(3, "inches")
  13681. },
  13682. {
  13683. name: "Normal",
  13684. height: math.unit(7 + 4 / 12, "feet"),
  13685. default: true
  13686. },
  13687. {
  13688. name: "Macro",
  13689. height: math.unit(220, "feet")
  13690. },
  13691. {
  13692. name: "Megamacro",
  13693. height: math.unit(11, "miles")
  13694. },
  13695. ]
  13696. ))
  13697. characterMakers.push(() => makeCharacter(
  13698. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13699. {
  13700. front: {
  13701. height: math.unit(7 + 4/12, "feet"),
  13702. weight: math.unit(750, "lb"),
  13703. name: "Front",
  13704. image: {
  13705. source: "./media/characters/regena-maxwell/front.svg",
  13706. extra: 984/856,
  13707. bottom: 87/1071
  13708. }
  13709. },
  13710. back: {
  13711. height: math.unit(7 + 4/12, "feet"),
  13712. weight: math.unit(750, "lb"),
  13713. name: "Back",
  13714. image: {
  13715. source: "./media/characters/regena-maxwell/back.svg",
  13716. extra: 981/854,
  13717. bottom: 57/1038
  13718. }
  13719. },
  13720. frontCostume: {
  13721. height: math.unit(7 + 4/12, "feet"),
  13722. weight: math.unit(750, "lb"),
  13723. name: "Front (Costume)",
  13724. image: {
  13725. source: "./media/characters/regena-maxwell/front-costume.svg",
  13726. extra: 984/856,
  13727. bottom: 87/1071
  13728. }
  13729. },
  13730. backcostume: {
  13731. height: math.unit(7 + 4/12, "feet"),
  13732. weight: math.unit(750, "lb"),
  13733. name: "Back (Costume)",
  13734. image: {
  13735. source: "./media/characters/regena-maxwell/back-costume.svg",
  13736. extra: 981/854,
  13737. bottom: 57/1038
  13738. }
  13739. },
  13740. },
  13741. [
  13742. {
  13743. name: "Normal",
  13744. height: math.unit(7 + 4 / 12, "feet"),
  13745. default: true
  13746. },
  13747. {
  13748. name: "Macro",
  13749. height: math.unit(220, "feet")
  13750. },
  13751. {
  13752. name: "Megamacro",
  13753. height: math.unit(11, "miles")
  13754. },
  13755. ]
  13756. ))
  13757. characterMakers.push(() => makeCharacter(
  13758. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13759. {
  13760. front: {
  13761. height: math.unit(6, "feet"),
  13762. weight: math.unit(150, "lb"),
  13763. name: "Front",
  13764. image: {
  13765. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13766. extra: 860 / 690,
  13767. bottom: 0.03
  13768. }
  13769. },
  13770. },
  13771. [
  13772. {
  13773. name: "Normal",
  13774. height: math.unit(1.7, "meters"),
  13775. default: true
  13776. },
  13777. ]
  13778. ))
  13779. characterMakers.push(() => makeCharacter(
  13780. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13781. {
  13782. front: {
  13783. height: math.unit(6, "feet"),
  13784. weight: math.unit(150, "lb"),
  13785. name: "Front",
  13786. image: {
  13787. source: "./media/characters/quilly/front.svg",
  13788. extra: 890 / 776
  13789. }
  13790. },
  13791. },
  13792. [
  13793. {
  13794. name: "Gigamacro",
  13795. height: math.unit(404090, "miles"),
  13796. default: true
  13797. },
  13798. ]
  13799. ))
  13800. characterMakers.push(() => makeCharacter(
  13801. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13802. {
  13803. front: {
  13804. height: math.unit(7 + 8 / 12, "feet"),
  13805. weight: math.unit(350, "lb"),
  13806. name: "Front",
  13807. image: {
  13808. source: "./media/characters/tempest/front.svg",
  13809. extra: 1175 / 1086,
  13810. bottom: 0.02
  13811. }
  13812. },
  13813. },
  13814. [
  13815. {
  13816. name: "Normal",
  13817. height: math.unit(7 + 8 / 12, "feet"),
  13818. default: true
  13819. },
  13820. ]
  13821. ))
  13822. characterMakers.push(() => makeCharacter(
  13823. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13824. {
  13825. side: {
  13826. height: math.unit(4 + 5 / 12, "feet"),
  13827. weight: math.unit(80, "lb"),
  13828. name: "Side",
  13829. image: {
  13830. source: "./media/characters/rodger/side.svg",
  13831. extra: 1235 / 1118
  13832. }
  13833. },
  13834. },
  13835. [
  13836. {
  13837. name: "Micro",
  13838. height: math.unit(1, "inch")
  13839. },
  13840. {
  13841. name: "Normal",
  13842. height: math.unit(4 + 5 / 12, "feet"),
  13843. default: true
  13844. },
  13845. {
  13846. name: "Macro",
  13847. height: math.unit(120, "feet")
  13848. },
  13849. ]
  13850. ))
  13851. characterMakers.push(() => makeCharacter(
  13852. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13853. {
  13854. front: {
  13855. height: math.unit(6, "feet"),
  13856. weight: math.unit(150, "lb"),
  13857. name: "Front",
  13858. image: {
  13859. source: "./media/characters/danyel/front.svg",
  13860. extra: 1185 / 1123,
  13861. bottom: 0.05
  13862. }
  13863. },
  13864. },
  13865. [
  13866. {
  13867. name: "Shrunken",
  13868. height: math.unit(0.5, "mm")
  13869. },
  13870. {
  13871. name: "Micro",
  13872. height: math.unit(1, "mm"),
  13873. default: true
  13874. },
  13875. {
  13876. name: "Upsized",
  13877. height: math.unit(5 + 5 / 12, "feet")
  13878. },
  13879. ]
  13880. ))
  13881. characterMakers.push(() => makeCharacter(
  13882. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13883. {
  13884. front: {
  13885. height: math.unit(5 + 6 / 12, "feet"),
  13886. weight: math.unit(200, "lb"),
  13887. name: "Front",
  13888. image: {
  13889. source: "./media/characters/vivian-bijoux/front.svg",
  13890. extra: 1217/1209,
  13891. bottom: 76/1293
  13892. }
  13893. },
  13894. back: {
  13895. height: math.unit(5 + 6 / 12, "feet"),
  13896. weight: math.unit(200, "lb"),
  13897. name: "Back",
  13898. image: {
  13899. source: "./media/characters/vivian-bijoux/back.svg",
  13900. extra: 1214/1208,
  13901. bottom: 51/1265
  13902. }
  13903. },
  13904. dressed: {
  13905. height: math.unit(5 + 6 / 12, "feet"),
  13906. weight: math.unit(200, "lb"),
  13907. name: "Dressed",
  13908. image: {
  13909. source: "./media/characters/vivian-bijoux/dressed.svg",
  13910. extra: 1217/1209,
  13911. bottom: 76/1293
  13912. }
  13913. },
  13914. },
  13915. [
  13916. {
  13917. name: "Normal",
  13918. height: math.unit(5 + 6 / 12, "feet"),
  13919. default: true
  13920. },
  13921. {
  13922. name: "Bad Dream",
  13923. height: math.unit(500, "feet")
  13924. },
  13925. {
  13926. name: "Nightmare",
  13927. height: math.unit(500, "miles")
  13928. },
  13929. ]
  13930. ))
  13931. characterMakers.push(() => makeCharacter(
  13932. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13933. {
  13934. front: {
  13935. height: math.unit(6 + 1 / 12, "feet"),
  13936. weight: math.unit(260, "lb"),
  13937. name: "Front",
  13938. image: {
  13939. source: "./media/characters/zeta/front.svg",
  13940. extra: 1968 / 1889,
  13941. bottom: 0.06
  13942. }
  13943. },
  13944. back: {
  13945. height: math.unit(6 + 1 / 12, "feet"),
  13946. weight: math.unit(260, "lb"),
  13947. name: "Back",
  13948. image: {
  13949. source: "./media/characters/zeta/back.svg",
  13950. extra: 1944 / 1858,
  13951. bottom: 0.03
  13952. }
  13953. },
  13954. hand: {
  13955. height: math.unit(1.112, "feet"),
  13956. name: "Hand",
  13957. image: {
  13958. source: "./media/characters/zeta/hand.svg"
  13959. }
  13960. },
  13961. foot: {
  13962. height: math.unit(1.48, "feet"),
  13963. name: "Foot",
  13964. image: {
  13965. source: "./media/characters/zeta/foot.svg"
  13966. }
  13967. },
  13968. },
  13969. [
  13970. {
  13971. name: "Micro",
  13972. height: math.unit(6, "inches")
  13973. },
  13974. {
  13975. name: "Normal",
  13976. height: math.unit(6 + 1 / 12, "feet"),
  13977. default: true
  13978. },
  13979. {
  13980. name: "Macro",
  13981. height: math.unit(20, "feet")
  13982. },
  13983. ]
  13984. ))
  13985. characterMakers.push(() => makeCharacter(
  13986. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13987. {
  13988. front: {
  13989. height: math.unit(6, "feet"),
  13990. weight: math.unit(150, "lb"),
  13991. name: "Front",
  13992. image: {
  13993. source: "./media/characters/jamie-larsen/front.svg",
  13994. extra: 962 / 933,
  13995. bottom: 0.02
  13996. }
  13997. },
  13998. back: {
  13999. height: math.unit(6, "feet"),
  14000. weight: math.unit(150, "lb"),
  14001. name: "Back",
  14002. image: {
  14003. source: "./media/characters/jamie-larsen/back.svg",
  14004. extra: 997 / 946
  14005. }
  14006. },
  14007. },
  14008. [
  14009. {
  14010. name: "Macro",
  14011. height: math.unit(28 + 7 / 12, "feet"),
  14012. default: true
  14013. },
  14014. {
  14015. name: "Macro+",
  14016. height: math.unit(180, "feet")
  14017. },
  14018. {
  14019. name: "Megamacro",
  14020. height: math.unit(10, "miles")
  14021. },
  14022. {
  14023. name: "Gigamacro",
  14024. height: math.unit(200000, "miles")
  14025. },
  14026. ]
  14027. ))
  14028. characterMakers.push(() => makeCharacter(
  14029. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14030. {
  14031. front: {
  14032. height: math.unit(6, "feet"),
  14033. weight: math.unit(120, "lb"),
  14034. name: "Front",
  14035. image: {
  14036. source: "./media/characters/vance/front.svg",
  14037. extra: 1980 / 1890,
  14038. bottom: 0.09
  14039. }
  14040. },
  14041. back: {
  14042. height: math.unit(6, "feet"),
  14043. weight: math.unit(120, "lb"),
  14044. name: "Back",
  14045. image: {
  14046. source: "./media/characters/vance/back.svg",
  14047. extra: 2081 / 1994,
  14048. bottom: 0.014
  14049. }
  14050. },
  14051. hand: {
  14052. height: math.unit(0.88, "feet"),
  14053. name: "Hand",
  14054. image: {
  14055. source: "./media/characters/vance/hand.svg"
  14056. }
  14057. },
  14058. foot: {
  14059. height: math.unit(0.64, "feet"),
  14060. name: "Foot",
  14061. image: {
  14062. source: "./media/characters/vance/foot.svg"
  14063. }
  14064. },
  14065. },
  14066. [
  14067. {
  14068. name: "Small",
  14069. height: math.unit(90, "feet"),
  14070. default: true
  14071. },
  14072. {
  14073. name: "Macro",
  14074. height: math.unit(100, "meters")
  14075. },
  14076. {
  14077. name: "Megamacro",
  14078. height: math.unit(15, "miles")
  14079. },
  14080. ]
  14081. ))
  14082. characterMakers.push(() => makeCharacter(
  14083. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14084. {
  14085. front: {
  14086. height: math.unit(6, "feet"),
  14087. weight: math.unit(180, "lb"),
  14088. name: "Front",
  14089. image: {
  14090. source: "./media/characters/xochitl/front.svg",
  14091. extra: 2297 / 2261,
  14092. bottom: 0.065
  14093. }
  14094. },
  14095. back: {
  14096. height: math.unit(6, "feet"),
  14097. weight: math.unit(180, "lb"),
  14098. name: "Back",
  14099. image: {
  14100. source: "./media/characters/xochitl/back.svg",
  14101. extra: 2386 / 2354,
  14102. bottom: 0.01
  14103. }
  14104. },
  14105. foot: {
  14106. height: math.unit(6 / 5 * 1.15, "feet"),
  14107. weight: math.unit(150, "lb"),
  14108. name: "Foot",
  14109. image: {
  14110. source: "./media/characters/xochitl/foot.svg"
  14111. }
  14112. },
  14113. },
  14114. [
  14115. {
  14116. name: "Macro",
  14117. height: math.unit(80, "feet")
  14118. },
  14119. {
  14120. name: "Macro+",
  14121. height: math.unit(400, "feet"),
  14122. default: true
  14123. },
  14124. {
  14125. name: "Gigamacro",
  14126. height: math.unit(80000, "miles")
  14127. },
  14128. {
  14129. name: "Gigamacro+",
  14130. height: math.unit(400000, "miles")
  14131. },
  14132. {
  14133. name: "Teramacro",
  14134. height: math.unit(300, "AU")
  14135. },
  14136. ]
  14137. ))
  14138. characterMakers.push(() => makeCharacter(
  14139. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14140. {
  14141. front: {
  14142. height: math.unit(6, "feet"),
  14143. weight: math.unit(150, "lb"),
  14144. name: "Front",
  14145. image: {
  14146. source: "./media/characters/vincent/front.svg",
  14147. extra: 1130 / 1080,
  14148. bottom: 0.055
  14149. }
  14150. },
  14151. beak: {
  14152. height: math.unit(6 * 0.1, "feet"),
  14153. name: "Beak",
  14154. image: {
  14155. source: "./media/characters/vincent/beak.svg"
  14156. }
  14157. },
  14158. hand: {
  14159. height: math.unit(6 * 0.85, "feet"),
  14160. weight: math.unit(150, "lb"),
  14161. name: "Hand",
  14162. image: {
  14163. source: "./media/characters/vincent/hand.svg"
  14164. }
  14165. },
  14166. foot: {
  14167. height: math.unit(6 * 0.19, "feet"),
  14168. weight: math.unit(150, "lb"),
  14169. name: "Foot",
  14170. image: {
  14171. source: "./media/characters/vincent/foot.svg"
  14172. }
  14173. },
  14174. },
  14175. [
  14176. {
  14177. name: "Base",
  14178. height: math.unit(6 + 5 / 12, "feet"),
  14179. default: true
  14180. },
  14181. {
  14182. name: "Macro",
  14183. height: math.unit(300, "feet")
  14184. },
  14185. {
  14186. name: "Megamacro",
  14187. height: math.unit(2, "miles")
  14188. },
  14189. {
  14190. name: "Gigamacro",
  14191. height: math.unit(1000, "miles")
  14192. },
  14193. ]
  14194. ))
  14195. characterMakers.push(() => makeCharacter(
  14196. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14197. {
  14198. front: {
  14199. height: math.unit(2, "meters"),
  14200. weight: math.unit(500, "kg"),
  14201. name: "Front",
  14202. image: {
  14203. source: "./media/characters/coatl/front.svg",
  14204. extra: 3948 / 3500,
  14205. bottom: 0.082
  14206. }
  14207. },
  14208. },
  14209. [
  14210. {
  14211. name: "Normal",
  14212. height: math.unit(4, "meters")
  14213. },
  14214. {
  14215. name: "Macro",
  14216. height: math.unit(100, "meters"),
  14217. default: true
  14218. },
  14219. {
  14220. name: "Macro+",
  14221. height: math.unit(300, "meters")
  14222. },
  14223. {
  14224. name: "Megamacro",
  14225. height: math.unit(3, "gigameters")
  14226. },
  14227. {
  14228. name: "Megamacro+",
  14229. height: math.unit(300, "terameters")
  14230. },
  14231. {
  14232. name: "Megamacro++",
  14233. height: math.unit(3, "lightyears")
  14234. },
  14235. ]
  14236. ))
  14237. characterMakers.push(() => makeCharacter(
  14238. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14239. {
  14240. front: {
  14241. height: math.unit(6, "feet"),
  14242. weight: math.unit(50, "kg"),
  14243. name: "front",
  14244. image: {
  14245. source: "./media/characters/shiroryu/front.svg",
  14246. extra: 1990 / 1935
  14247. }
  14248. },
  14249. },
  14250. [
  14251. {
  14252. name: "Mortal Mingling",
  14253. height: math.unit(3, "meters")
  14254. },
  14255. {
  14256. name: "Kaiju-ish",
  14257. height: math.unit(250, "meters")
  14258. },
  14259. {
  14260. name: "Somewhat Godly",
  14261. height: math.unit(400, "km"),
  14262. default: true
  14263. },
  14264. {
  14265. name: "Planetary",
  14266. height: math.unit(300, "megameters")
  14267. },
  14268. {
  14269. name: "Galaxy-dwarfing",
  14270. height: math.unit(450, "kiloparsecs")
  14271. },
  14272. {
  14273. name: "Universe Eater",
  14274. height: math.unit(150, "gigaparsecs")
  14275. },
  14276. {
  14277. name: "Almost Immeasurable",
  14278. height: math.unit(1.3e266, "yottaparsecs")
  14279. },
  14280. ]
  14281. ))
  14282. characterMakers.push(() => makeCharacter(
  14283. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14284. {
  14285. front: {
  14286. height: math.unit(6, "feet"),
  14287. weight: math.unit(150, "lb"),
  14288. name: "Front",
  14289. image: {
  14290. source: "./media/characters/umeko/front.svg",
  14291. extra: 1,
  14292. bottom: 0.019
  14293. }
  14294. },
  14295. frontArmored: {
  14296. height: math.unit(6, "feet"),
  14297. weight: math.unit(150, "lb"),
  14298. name: "Front (Armored)",
  14299. image: {
  14300. source: "./media/characters/umeko/front-armored.svg",
  14301. extra: 1,
  14302. bottom: 0.021
  14303. }
  14304. },
  14305. },
  14306. [
  14307. {
  14308. name: "Macro",
  14309. height: math.unit(220, "feet"),
  14310. default: true
  14311. },
  14312. {
  14313. name: "Guardian Dragon",
  14314. height: math.unit(50, "miles")
  14315. },
  14316. {
  14317. name: "Cosmic",
  14318. height: math.unit(800000, "miles")
  14319. },
  14320. ]
  14321. ))
  14322. characterMakers.push(() => makeCharacter(
  14323. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14324. {
  14325. front: {
  14326. height: math.unit(6, "feet"),
  14327. weight: math.unit(150, "lb"),
  14328. name: "Front",
  14329. image: {
  14330. source: "./media/characters/cassidy/front.svg",
  14331. extra: 810/808,
  14332. bottom: 41/851
  14333. }
  14334. },
  14335. },
  14336. [
  14337. {
  14338. name: "Canon Height",
  14339. height: math.unit(120, "feet"),
  14340. default: true
  14341. },
  14342. {
  14343. name: "Macro+",
  14344. height: math.unit(400, "feet")
  14345. },
  14346. {
  14347. name: "Macro++",
  14348. height: math.unit(4000, "feet")
  14349. },
  14350. {
  14351. name: "Megamacro",
  14352. height: math.unit(3, "miles")
  14353. },
  14354. ]
  14355. ))
  14356. characterMakers.push(() => makeCharacter(
  14357. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14358. {
  14359. front: {
  14360. height: math.unit(6, "feet"),
  14361. weight: math.unit(150, "lb"),
  14362. name: "Front",
  14363. image: {
  14364. source: "./media/characters/isaac/front.svg",
  14365. extra: 896 / 815,
  14366. bottom: 0.11
  14367. }
  14368. },
  14369. },
  14370. [
  14371. {
  14372. name: "Human Size",
  14373. height: math.unit(8, "feet"),
  14374. default: true
  14375. },
  14376. {
  14377. name: "Macro",
  14378. height: math.unit(400, "feet")
  14379. },
  14380. {
  14381. name: "Megamacro",
  14382. height: math.unit(50, "miles")
  14383. },
  14384. {
  14385. name: "Canon Height",
  14386. height: math.unit(200, "AU")
  14387. },
  14388. ]
  14389. ))
  14390. characterMakers.push(() => makeCharacter(
  14391. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14392. {
  14393. front: {
  14394. height: math.unit(6, "feet"),
  14395. weight: math.unit(72, "kg"),
  14396. name: "Front",
  14397. image: {
  14398. source: "./media/characters/sleekit/front.svg",
  14399. extra: 4693 / 4487,
  14400. bottom: 0.012
  14401. }
  14402. },
  14403. },
  14404. [
  14405. {
  14406. name: "Minimum Height",
  14407. height: math.unit(10, "meters")
  14408. },
  14409. {
  14410. name: "Smaller",
  14411. height: math.unit(25, "meters")
  14412. },
  14413. {
  14414. name: "Larger",
  14415. height: math.unit(38, "meters"),
  14416. default: true
  14417. },
  14418. {
  14419. name: "Maximum height",
  14420. height: math.unit(100, "meters")
  14421. },
  14422. ]
  14423. ))
  14424. characterMakers.push(() => makeCharacter(
  14425. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14426. {
  14427. front: {
  14428. height: math.unit(6, "feet"),
  14429. weight: math.unit(150, "lb"),
  14430. name: "Front",
  14431. image: {
  14432. source: "./media/characters/nillia/front.svg",
  14433. extra: 2195 / 2037,
  14434. bottom: 0.005
  14435. }
  14436. },
  14437. back: {
  14438. height: math.unit(6, "feet"),
  14439. weight: math.unit(150, "lb"),
  14440. name: "Back",
  14441. image: {
  14442. source: "./media/characters/nillia/back.svg",
  14443. extra: 2195 / 2037,
  14444. bottom: 0.005
  14445. }
  14446. },
  14447. },
  14448. [
  14449. {
  14450. name: "Canon Height",
  14451. height: math.unit(489, "feet"),
  14452. default: true
  14453. }
  14454. ]
  14455. ))
  14456. characterMakers.push(() => makeCharacter(
  14457. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14458. {
  14459. front: {
  14460. height: math.unit(6, "feet"),
  14461. weight: math.unit(150, "lb"),
  14462. name: "Front",
  14463. image: {
  14464. source: "./media/characters/mesmyriza/front.svg",
  14465. extra: 2067 / 1784,
  14466. bottom: 0.035
  14467. }
  14468. },
  14469. foot: {
  14470. height: math.unit(6 / (250 / 35), "feet"),
  14471. name: "Foot",
  14472. image: {
  14473. source: "./media/characters/mesmyriza/foot.svg"
  14474. }
  14475. },
  14476. },
  14477. [
  14478. {
  14479. name: "Macro",
  14480. height: math.unit(457, "meters"),
  14481. default: true
  14482. },
  14483. {
  14484. name: "Megamacro",
  14485. height: math.unit(8, "megameters")
  14486. },
  14487. ]
  14488. ))
  14489. characterMakers.push(() => makeCharacter(
  14490. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14491. {
  14492. front: {
  14493. height: math.unit(6, "feet"),
  14494. weight: math.unit(250, "lb"),
  14495. name: "Front",
  14496. image: {
  14497. source: "./media/characters/saudade/front.svg",
  14498. extra: 1172 / 1139,
  14499. bottom: 0.035
  14500. }
  14501. },
  14502. },
  14503. [
  14504. {
  14505. name: "Micro",
  14506. height: math.unit(3, "inches")
  14507. },
  14508. {
  14509. name: "Normal",
  14510. height: math.unit(6, "feet"),
  14511. default: true
  14512. },
  14513. {
  14514. name: "Macro",
  14515. height: math.unit(50, "feet")
  14516. },
  14517. {
  14518. name: "Megamacro",
  14519. height: math.unit(2800, "feet")
  14520. },
  14521. ]
  14522. ))
  14523. characterMakers.push(() => makeCharacter(
  14524. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14525. {
  14526. front: {
  14527. height: math.unit(5 + 4 / 12, "feet"),
  14528. weight: math.unit(100, "lb"),
  14529. name: "Front",
  14530. image: {
  14531. source: "./media/characters/keireer/front.svg",
  14532. extra: 716 / 666,
  14533. bottom: 0.05
  14534. }
  14535. },
  14536. },
  14537. [
  14538. {
  14539. name: "Normal",
  14540. height: math.unit(5 + 4 / 12, "feet"),
  14541. default: true
  14542. },
  14543. ]
  14544. ))
  14545. characterMakers.push(() => makeCharacter(
  14546. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14547. {
  14548. front: {
  14549. height: math.unit(6, "feet"),
  14550. weight: math.unit(90, "kg"),
  14551. name: "Front",
  14552. image: {
  14553. source: "./media/characters/mirja/front.svg",
  14554. extra: 1789 / 1683,
  14555. bottom: 0.05
  14556. }
  14557. },
  14558. frontDressed: {
  14559. height: math.unit(6, "feet"),
  14560. weight: math.unit(90, "lb"),
  14561. name: "Front (Dressed)",
  14562. image: {
  14563. source: "./media/characters/mirja/front-dressed.svg",
  14564. extra: 1789 / 1683,
  14565. bottom: 0.05
  14566. }
  14567. },
  14568. back: {
  14569. height: math.unit(6, "feet"),
  14570. weight: math.unit(90, "lb"),
  14571. name: "Back",
  14572. image: {
  14573. source: "./media/characters/mirja/back.svg",
  14574. extra: 953 / 917,
  14575. bottom: 0.017
  14576. }
  14577. },
  14578. },
  14579. [
  14580. {
  14581. name: "\"Incognito\"",
  14582. height: math.unit(3, "meters")
  14583. },
  14584. {
  14585. name: "Strolling Size",
  14586. height: math.unit(15, "km")
  14587. },
  14588. {
  14589. name: "Larger Strolling Size",
  14590. height: math.unit(400, "km")
  14591. },
  14592. {
  14593. name: "Preferred Size",
  14594. height: math.unit(5000, "km")
  14595. },
  14596. {
  14597. name: "True Size",
  14598. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14599. default: true
  14600. },
  14601. ]
  14602. ))
  14603. characterMakers.push(() => makeCharacter(
  14604. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14605. {
  14606. front: {
  14607. height: math.unit(15, "feet"),
  14608. weight: math.unit(880, "kg"),
  14609. name: "Front",
  14610. image: {
  14611. source: "./media/characters/nightraver/front.svg",
  14612. extra: 2444 / 2160,
  14613. bottom: 0.027
  14614. }
  14615. },
  14616. back: {
  14617. height: math.unit(15, "feet"),
  14618. weight: math.unit(880, "kg"),
  14619. name: "Back",
  14620. image: {
  14621. source: "./media/characters/nightraver/back.svg",
  14622. extra: 2309 / 2180,
  14623. bottom: 0.005
  14624. }
  14625. },
  14626. sole: {
  14627. height: math.unit(2.878, "feet"),
  14628. name: "Sole",
  14629. image: {
  14630. source: "./media/characters/nightraver/sole.svg"
  14631. }
  14632. },
  14633. foot: {
  14634. height: math.unit(2.285, "feet"),
  14635. name: "Foot",
  14636. image: {
  14637. source: "./media/characters/nightraver/foot.svg"
  14638. }
  14639. },
  14640. maw: {
  14641. height: math.unit(2.67, "feet"),
  14642. name: "Maw",
  14643. image: {
  14644. source: "./media/characters/nightraver/maw.svg"
  14645. }
  14646. },
  14647. },
  14648. [
  14649. {
  14650. name: "Micro",
  14651. height: math.unit(1, "cm")
  14652. },
  14653. {
  14654. name: "Normal",
  14655. height: math.unit(15, "feet"),
  14656. default: true
  14657. },
  14658. {
  14659. name: "Macro",
  14660. height: math.unit(300, "feet")
  14661. },
  14662. {
  14663. name: "Megamacro",
  14664. height: math.unit(300, "miles")
  14665. },
  14666. {
  14667. name: "Gigamacro",
  14668. height: math.unit(10000, "miles")
  14669. },
  14670. ]
  14671. ))
  14672. characterMakers.push(() => makeCharacter(
  14673. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14674. {
  14675. side: {
  14676. height: math.unit(2, "inches"),
  14677. weight: math.unit(5, "grams"),
  14678. name: "Side",
  14679. image: {
  14680. source: "./media/characters/arc/side.svg"
  14681. }
  14682. },
  14683. },
  14684. [
  14685. {
  14686. name: "Micro",
  14687. height: math.unit(2, "inches"),
  14688. default: true
  14689. },
  14690. ]
  14691. ))
  14692. characterMakers.push(() => makeCharacter(
  14693. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14694. {
  14695. front: {
  14696. height: math.unit(1.1938, "meters"),
  14697. weight: math.unit(54, "kg"),
  14698. name: "Front",
  14699. image: {
  14700. source: "./media/characters/nebula-shahar/front.svg",
  14701. extra: 1642 / 1436,
  14702. bottom: 0.06
  14703. }
  14704. },
  14705. },
  14706. [
  14707. {
  14708. name: "Megamicro",
  14709. height: math.unit(0.3, "mm")
  14710. },
  14711. {
  14712. name: "Micro",
  14713. height: math.unit(3, "cm")
  14714. },
  14715. {
  14716. name: "Normal",
  14717. height: math.unit(138, "cm"),
  14718. default: true
  14719. },
  14720. {
  14721. name: "Macro",
  14722. height: math.unit(30, "m")
  14723. },
  14724. ]
  14725. ))
  14726. characterMakers.push(() => makeCharacter(
  14727. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14728. {
  14729. front: {
  14730. height: math.unit(5.24, "feet"),
  14731. weight: math.unit(150, "lb"),
  14732. name: "Front",
  14733. image: {
  14734. source: "./media/characters/shayla/front.svg",
  14735. extra: 1512 / 1414,
  14736. bottom: 0.01
  14737. }
  14738. },
  14739. back: {
  14740. height: math.unit(5.24, "feet"),
  14741. weight: math.unit(150, "lb"),
  14742. name: "Back",
  14743. image: {
  14744. source: "./media/characters/shayla/back.svg",
  14745. extra: 1512 / 1414
  14746. }
  14747. },
  14748. hand: {
  14749. height: math.unit(0.7781496062992126, "feet"),
  14750. name: "Hand",
  14751. image: {
  14752. source: "./media/characters/shayla/hand.svg"
  14753. }
  14754. },
  14755. foot: {
  14756. height: math.unit(1.4206036745406823, "feet"),
  14757. name: "Foot",
  14758. image: {
  14759. source: "./media/characters/shayla/foot.svg"
  14760. }
  14761. },
  14762. },
  14763. [
  14764. {
  14765. name: "Micro",
  14766. height: math.unit(0.32, "feet")
  14767. },
  14768. {
  14769. name: "Normal",
  14770. height: math.unit(5.24, "feet"),
  14771. default: true
  14772. },
  14773. {
  14774. name: "Macro",
  14775. height: math.unit(492.12, "feet")
  14776. },
  14777. {
  14778. name: "Megamacro",
  14779. height: math.unit(186.41, "miles")
  14780. },
  14781. ]
  14782. ))
  14783. characterMakers.push(() => makeCharacter(
  14784. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14785. {
  14786. front: {
  14787. height: math.unit(2.2, "m"),
  14788. weight: math.unit(120, "kg"),
  14789. name: "Front",
  14790. image: {
  14791. source: "./media/characters/pia-jr/front.svg",
  14792. extra: 1000 / 970,
  14793. bottom: 0.035
  14794. }
  14795. },
  14796. hand: {
  14797. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14798. name: "Hand",
  14799. image: {
  14800. source: "./media/characters/pia-jr/hand.svg"
  14801. }
  14802. },
  14803. paw: {
  14804. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14805. name: "Paw",
  14806. image: {
  14807. source: "./media/characters/pia-jr/paw.svg"
  14808. }
  14809. },
  14810. },
  14811. [
  14812. {
  14813. name: "Micro",
  14814. height: math.unit(1.2, "cm")
  14815. },
  14816. {
  14817. name: "Normal",
  14818. height: math.unit(2.2, "m"),
  14819. default: true
  14820. },
  14821. {
  14822. name: "Macro",
  14823. height: math.unit(180, "m")
  14824. },
  14825. {
  14826. name: "Megamacro",
  14827. height: math.unit(420, "km")
  14828. },
  14829. ]
  14830. ))
  14831. characterMakers.push(() => makeCharacter(
  14832. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14833. {
  14834. front: {
  14835. height: math.unit(2, "m"),
  14836. weight: math.unit(115, "kg"),
  14837. name: "Front",
  14838. image: {
  14839. source: "./media/characters/pia-sr/front.svg",
  14840. extra: 760 / 730,
  14841. bottom: 0.015
  14842. }
  14843. },
  14844. back: {
  14845. height: math.unit(2, "m"),
  14846. weight: math.unit(115, "kg"),
  14847. name: "Back",
  14848. image: {
  14849. source: "./media/characters/pia-sr/back.svg",
  14850. extra: 760 / 730,
  14851. bottom: 0.01
  14852. }
  14853. },
  14854. hand: {
  14855. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14856. name: "Hand",
  14857. image: {
  14858. source: "./media/characters/pia-sr/hand.svg"
  14859. }
  14860. },
  14861. foot: {
  14862. height: math.unit(1.83, "feet"),
  14863. name: "Foot",
  14864. image: {
  14865. source: "./media/characters/pia-sr/foot.svg"
  14866. }
  14867. },
  14868. },
  14869. [
  14870. {
  14871. name: "Micro",
  14872. height: math.unit(88, "mm")
  14873. },
  14874. {
  14875. name: "Normal",
  14876. height: math.unit(2, "m"),
  14877. default: true
  14878. },
  14879. {
  14880. name: "Macro",
  14881. height: math.unit(200, "m")
  14882. },
  14883. {
  14884. name: "Megamacro",
  14885. height: math.unit(420, "km")
  14886. },
  14887. ]
  14888. ))
  14889. characterMakers.push(() => makeCharacter(
  14890. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14891. {
  14892. front: {
  14893. height: math.unit(8 + 2 / 12, "feet"),
  14894. weight: math.unit(300, "lb"),
  14895. name: "Front",
  14896. image: {
  14897. source: "./media/characters/kibibyte/front.svg",
  14898. extra: 2221 / 2098,
  14899. bottom: 0.04
  14900. }
  14901. },
  14902. },
  14903. [
  14904. {
  14905. name: "Normal",
  14906. height: math.unit(8 + 2 / 12, "feet"),
  14907. default: true
  14908. },
  14909. {
  14910. name: "Socialable Macro",
  14911. height: math.unit(50, "feet")
  14912. },
  14913. {
  14914. name: "Macro",
  14915. height: math.unit(300, "feet")
  14916. },
  14917. {
  14918. name: "Megamacro",
  14919. height: math.unit(500, "miles")
  14920. },
  14921. ]
  14922. ))
  14923. characterMakers.push(() => makeCharacter(
  14924. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14925. {
  14926. front: {
  14927. height: math.unit(6, "feet"),
  14928. weight: math.unit(150, "lb"),
  14929. name: "Front",
  14930. image: {
  14931. source: "./media/characters/felix/front.svg",
  14932. extra: 762 / 722,
  14933. bottom: 0.02
  14934. }
  14935. },
  14936. frontClothed: {
  14937. height: math.unit(6, "feet"),
  14938. weight: math.unit(150, "lb"),
  14939. name: "Front (Clothed)",
  14940. image: {
  14941. source: "./media/characters/felix/front-clothed.svg",
  14942. extra: 762 / 722,
  14943. bottom: 0.02
  14944. }
  14945. },
  14946. },
  14947. [
  14948. {
  14949. name: "Normal",
  14950. height: math.unit(6 + 8 / 12, "feet"),
  14951. default: true
  14952. },
  14953. {
  14954. name: "Macro",
  14955. height: math.unit(2600, "feet")
  14956. },
  14957. {
  14958. name: "Megamacro",
  14959. height: math.unit(450, "miles")
  14960. },
  14961. ]
  14962. ))
  14963. characterMakers.push(() => makeCharacter(
  14964. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14965. {
  14966. front: {
  14967. height: math.unit(6 + 1 / 12, "feet"),
  14968. weight: math.unit(250, "lb"),
  14969. name: "Front",
  14970. image: {
  14971. source: "./media/characters/tobo/front.svg",
  14972. extra: 608 / 586,
  14973. bottom: 0.023
  14974. }
  14975. },
  14976. back: {
  14977. height: math.unit(6 + 1 / 12, "feet"),
  14978. weight: math.unit(250, "lb"),
  14979. name: "Back",
  14980. image: {
  14981. source: "./media/characters/tobo/back.svg",
  14982. extra: 608 / 586
  14983. }
  14984. },
  14985. },
  14986. [
  14987. {
  14988. name: "Nano",
  14989. height: math.unit(2, "nm")
  14990. },
  14991. {
  14992. name: "Megamicro",
  14993. height: math.unit(0.1, "mm")
  14994. },
  14995. {
  14996. name: "Micro",
  14997. height: math.unit(1, "inch"),
  14998. default: true
  14999. },
  15000. {
  15001. name: "Human-sized",
  15002. height: math.unit(6 + 1 / 12, "feet")
  15003. },
  15004. {
  15005. name: "Macro",
  15006. height: math.unit(250, "feet")
  15007. },
  15008. {
  15009. name: "Megamacro",
  15010. height: math.unit(75, "miles")
  15011. },
  15012. {
  15013. name: "Texas-sized",
  15014. height: math.unit(750, "miles")
  15015. },
  15016. {
  15017. name: "Teramacro",
  15018. height: math.unit(50000, "miles")
  15019. },
  15020. ]
  15021. ))
  15022. characterMakers.push(() => makeCharacter(
  15023. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15024. {
  15025. front: {
  15026. height: math.unit(6, "feet"),
  15027. weight: math.unit(269, "lb"),
  15028. name: "Front",
  15029. image: {
  15030. source: "./media/characters/danny-kapowsky/front.svg",
  15031. extra: 766 / 736,
  15032. bottom: 0.044
  15033. }
  15034. },
  15035. back: {
  15036. height: math.unit(6, "feet"),
  15037. weight: math.unit(269, "lb"),
  15038. name: "Back",
  15039. image: {
  15040. source: "./media/characters/danny-kapowsky/back.svg",
  15041. extra: 797 / 760,
  15042. bottom: 0.025
  15043. }
  15044. },
  15045. },
  15046. [
  15047. {
  15048. name: "Macro",
  15049. height: math.unit(150, "feet"),
  15050. default: true
  15051. },
  15052. {
  15053. name: "Macro+",
  15054. height: math.unit(200, "feet")
  15055. },
  15056. {
  15057. name: "Macro++",
  15058. height: math.unit(300, "feet")
  15059. },
  15060. {
  15061. name: "Macro+++",
  15062. height: math.unit(400, "feet")
  15063. },
  15064. ]
  15065. ))
  15066. characterMakers.push(() => makeCharacter(
  15067. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15068. {
  15069. side: {
  15070. height: math.unit(6, "feet"),
  15071. weight: math.unit(170, "lb"),
  15072. name: "Side",
  15073. image: {
  15074. source: "./media/characters/finn/side.svg",
  15075. extra: 1953 / 1807,
  15076. bottom: 0.057
  15077. }
  15078. },
  15079. },
  15080. [
  15081. {
  15082. name: "Megamacro",
  15083. height: math.unit(14445, "feet"),
  15084. default: true
  15085. },
  15086. ]
  15087. ))
  15088. characterMakers.push(() => makeCharacter(
  15089. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15090. {
  15091. front: {
  15092. height: math.unit(5 + 6 / 12, "feet"),
  15093. weight: math.unit(125, "lb"),
  15094. name: "Front",
  15095. image: {
  15096. source: "./media/characters/roy/front.svg",
  15097. extra: 1,
  15098. bottom: 0.11
  15099. }
  15100. },
  15101. },
  15102. [
  15103. {
  15104. name: "Micro",
  15105. height: math.unit(3, "inches"),
  15106. default: true
  15107. },
  15108. {
  15109. name: "Normal",
  15110. height: math.unit(5 + 6 / 12, "feet")
  15111. },
  15112. {
  15113. name: "Lesser Macro",
  15114. height: math.unit(60, "feet")
  15115. },
  15116. {
  15117. name: "Greater Macro",
  15118. height: math.unit(120, "feet")
  15119. },
  15120. ]
  15121. ))
  15122. characterMakers.push(() => makeCharacter(
  15123. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15124. {
  15125. front: {
  15126. height: math.unit(6, "feet"),
  15127. weight: math.unit(100, "lb"),
  15128. name: "Front",
  15129. image: {
  15130. source: "./media/characters/aevsivs/front.svg",
  15131. extra: 1,
  15132. bottom: 0.03
  15133. }
  15134. },
  15135. back: {
  15136. height: math.unit(6, "feet"),
  15137. weight: math.unit(100, "lb"),
  15138. name: "Back",
  15139. image: {
  15140. source: "./media/characters/aevsivs/back.svg"
  15141. }
  15142. },
  15143. },
  15144. [
  15145. {
  15146. name: "Micro",
  15147. height: math.unit(2, "inches"),
  15148. default: true
  15149. },
  15150. {
  15151. name: "Normal",
  15152. height: math.unit(5, "feet")
  15153. },
  15154. ]
  15155. ))
  15156. characterMakers.push(() => makeCharacter(
  15157. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15158. {
  15159. front: {
  15160. height: math.unit(5 + 7 / 12, "feet"),
  15161. weight: math.unit(159, "lb"),
  15162. name: "Front",
  15163. image: {
  15164. source: "./media/characters/hildegard/front.svg",
  15165. extra: 289 / 269,
  15166. bottom: 7.63 / 297.8
  15167. }
  15168. },
  15169. back: {
  15170. height: math.unit(5 + 7 / 12, "feet"),
  15171. weight: math.unit(159, "lb"),
  15172. name: "Back",
  15173. image: {
  15174. source: "./media/characters/hildegard/back.svg",
  15175. extra: 280 / 260,
  15176. bottom: 2.3 / 282
  15177. }
  15178. },
  15179. },
  15180. [
  15181. {
  15182. name: "Normal",
  15183. height: math.unit(5 + 7 / 12, "feet"),
  15184. default: true
  15185. },
  15186. ]
  15187. ))
  15188. characterMakers.push(() => makeCharacter(
  15189. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15190. {
  15191. bernard: {
  15192. height: math.unit(2 + 7 / 12, "feet"),
  15193. weight: math.unit(66, "lb"),
  15194. name: "Bernard",
  15195. rename: true,
  15196. image: {
  15197. source: "./media/characters/bernard-wilder/bernard.svg",
  15198. extra: 192 / 128,
  15199. bottom: 0.05
  15200. }
  15201. },
  15202. wilder: {
  15203. height: math.unit(5 + 8 / 12, "feet"),
  15204. weight: math.unit(143, "lb"),
  15205. name: "Wilder",
  15206. rename: true,
  15207. image: {
  15208. source: "./media/characters/bernard-wilder/wilder.svg",
  15209. extra: 361 / 312,
  15210. bottom: 0.02
  15211. }
  15212. },
  15213. },
  15214. [
  15215. {
  15216. name: "Normal",
  15217. height: math.unit(2 + 7 / 12, "feet"),
  15218. default: true
  15219. },
  15220. ]
  15221. ))
  15222. characterMakers.push(() => makeCharacter(
  15223. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15224. {
  15225. anthro: {
  15226. height: math.unit(6 + 1 / 12, "feet"),
  15227. weight: math.unit(155, "lb"),
  15228. name: "Anthro",
  15229. image: {
  15230. source: "./media/characters/hearth/anthro.svg",
  15231. extra: 1178/1136,
  15232. bottom: 28/1206
  15233. }
  15234. },
  15235. feral: {
  15236. height: math.unit(3.78, "feet"),
  15237. weight: math.unit(35, "kg"),
  15238. name: "Feral",
  15239. image: {
  15240. source: "./media/characters/hearth/feral.svg",
  15241. extra: 153 / 135,
  15242. bottom: 0.03
  15243. }
  15244. },
  15245. },
  15246. [
  15247. {
  15248. name: "Normal",
  15249. height: math.unit(6 + 1 / 12, "feet"),
  15250. default: true
  15251. },
  15252. ]
  15253. ))
  15254. characterMakers.push(() => makeCharacter(
  15255. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15256. {
  15257. front: {
  15258. height: math.unit(6, "feet"),
  15259. weight: math.unit(182, "lb"),
  15260. name: "Front",
  15261. image: {
  15262. source: "./media/characters/ingrid/front.svg",
  15263. extra: 294 / 268,
  15264. bottom: 0.027
  15265. }
  15266. },
  15267. },
  15268. [
  15269. {
  15270. name: "Normal",
  15271. height: math.unit(6, "feet"),
  15272. default: true
  15273. },
  15274. ]
  15275. ))
  15276. characterMakers.push(() => makeCharacter(
  15277. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15278. {
  15279. eevee: {
  15280. height: math.unit(2 + 10 / 12, "feet"),
  15281. weight: math.unit(86, "lb"),
  15282. name: "Malgam",
  15283. image: {
  15284. source: "./media/characters/malgam/eevee.svg",
  15285. extra: 952/784,
  15286. bottom: 38/990
  15287. }
  15288. },
  15289. sylveon: {
  15290. height: math.unit(4, "feet"),
  15291. weight: math.unit(101, "lb"),
  15292. name: "Future Malgam",
  15293. rename: true,
  15294. image: {
  15295. source: "./media/characters/malgam/sylveon.svg",
  15296. extra: 371 / 325,
  15297. bottom: 0.015
  15298. }
  15299. },
  15300. gigantamax: {
  15301. height: math.unit(50, "feet"),
  15302. name: "Gigantamax Malgam",
  15303. rename: true,
  15304. image: {
  15305. source: "./media/characters/malgam/gigantamax.svg"
  15306. }
  15307. },
  15308. },
  15309. [
  15310. {
  15311. name: "Normal",
  15312. height: math.unit(2 + 10 / 12, "feet"),
  15313. default: true
  15314. },
  15315. ]
  15316. ))
  15317. characterMakers.push(() => makeCharacter(
  15318. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15319. {
  15320. front: {
  15321. height: math.unit(5 + 11 / 12, "feet"),
  15322. weight: math.unit(188, "lb"),
  15323. name: "Front",
  15324. image: {
  15325. source: "./media/characters/fleur/front.svg",
  15326. extra: 309 / 283,
  15327. bottom: 0.007
  15328. }
  15329. },
  15330. },
  15331. [
  15332. {
  15333. name: "Normal",
  15334. height: math.unit(5 + 11 / 12, "feet"),
  15335. default: true
  15336. },
  15337. ]
  15338. ))
  15339. characterMakers.push(() => makeCharacter(
  15340. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15341. {
  15342. front: {
  15343. height: math.unit(5 + 4 / 12, "feet"),
  15344. weight: math.unit(122, "lb"),
  15345. name: "Front",
  15346. image: {
  15347. source: "./media/characters/jude/front.svg",
  15348. extra: 288 / 273,
  15349. bottom: 0.03
  15350. }
  15351. },
  15352. },
  15353. [
  15354. {
  15355. name: "Normal",
  15356. height: math.unit(5 + 4 / 12, "feet"),
  15357. default: true
  15358. },
  15359. ]
  15360. ))
  15361. characterMakers.push(() => makeCharacter(
  15362. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15363. {
  15364. front: {
  15365. height: math.unit(5 + 11 / 12, "feet"),
  15366. weight: math.unit(190, "lb"),
  15367. name: "Front",
  15368. image: {
  15369. source: "./media/characters/seara/front.svg",
  15370. extra: 1,
  15371. bottom: 0.05
  15372. }
  15373. },
  15374. },
  15375. [
  15376. {
  15377. name: "Normal",
  15378. height: math.unit(5 + 11 / 12, "feet"),
  15379. default: true
  15380. },
  15381. ]
  15382. ))
  15383. characterMakers.push(() => makeCharacter(
  15384. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15385. {
  15386. front: {
  15387. height: math.unit(16 + 5 / 12, "feet"),
  15388. weight: math.unit(524, "lb"),
  15389. name: "Front",
  15390. image: {
  15391. source: "./media/characters/caspian/front.svg",
  15392. extra: 1,
  15393. bottom: 0.04
  15394. }
  15395. },
  15396. },
  15397. [
  15398. {
  15399. name: "Normal",
  15400. height: math.unit(16 + 5 / 12, "feet"),
  15401. default: true
  15402. },
  15403. ]
  15404. ))
  15405. characterMakers.push(() => makeCharacter(
  15406. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15407. {
  15408. front: {
  15409. height: math.unit(5 + 7 / 12, "feet"),
  15410. weight: math.unit(170, "lb"),
  15411. name: "Front",
  15412. image: {
  15413. source: "./media/characters/mika/front.svg",
  15414. extra: 1,
  15415. bottom: 0.016
  15416. }
  15417. },
  15418. },
  15419. [
  15420. {
  15421. name: "Normal",
  15422. height: math.unit(5 + 7 / 12, "feet"),
  15423. default: true
  15424. },
  15425. ]
  15426. ))
  15427. characterMakers.push(() => makeCharacter(
  15428. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15429. {
  15430. front: {
  15431. height: math.unit(6 + 2 / 12, "feet"),
  15432. weight: math.unit(268, "lb"),
  15433. name: "Front",
  15434. image: {
  15435. source: "./media/characters/sol/front.svg",
  15436. extra: 247 / 231,
  15437. bottom: 0.05
  15438. }
  15439. },
  15440. },
  15441. [
  15442. {
  15443. name: "Normal",
  15444. height: math.unit(6 + 2 / 12, "feet"),
  15445. default: true
  15446. },
  15447. ]
  15448. ))
  15449. characterMakers.push(() => makeCharacter(
  15450. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15451. {
  15452. buizel: {
  15453. height: math.unit(2 + 5 / 12, "feet"),
  15454. weight: math.unit(87, "lb"),
  15455. name: "Front",
  15456. image: {
  15457. source: "./media/characters/umiko/buizel.svg",
  15458. extra: 172 / 157,
  15459. bottom: 0.01
  15460. },
  15461. form: "buizel",
  15462. default: true
  15463. },
  15464. floatzel: {
  15465. height: math.unit(5 + 9 / 12, "feet"),
  15466. weight: math.unit(250, "lb"),
  15467. name: "Front",
  15468. image: {
  15469. source: "./media/characters/umiko/floatzel.svg",
  15470. extra: 1076/1006,
  15471. bottom: 15/1091
  15472. },
  15473. form: "floatzel",
  15474. default: true
  15475. },
  15476. },
  15477. [
  15478. {
  15479. name: "Normal",
  15480. height: math.unit(2 + 5 / 12, "feet"),
  15481. form: "buizel",
  15482. default: true
  15483. },
  15484. {
  15485. name: "Normal",
  15486. height: math.unit(5 + 9 / 12, "feet"),
  15487. form: "floatzel",
  15488. default: true
  15489. },
  15490. ],
  15491. {
  15492. "buizel": {
  15493. name: "Buizel"
  15494. },
  15495. "floatzel": {
  15496. name: "Floatzel",
  15497. default: true
  15498. }
  15499. }
  15500. ))
  15501. characterMakers.push(() => makeCharacter(
  15502. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15503. {
  15504. front: {
  15505. height: math.unit(6 + 2 / 12, "feet"),
  15506. weight: math.unit(146, "lb"),
  15507. name: "Front",
  15508. image: {
  15509. source: "./media/characters/iliac/front.svg",
  15510. extra: 389 / 365,
  15511. bottom: 0.035
  15512. }
  15513. },
  15514. },
  15515. [
  15516. {
  15517. name: "Normal",
  15518. height: math.unit(6 + 2 / 12, "feet"),
  15519. default: true
  15520. },
  15521. ]
  15522. ))
  15523. characterMakers.push(() => makeCharacter(
  15524. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15525. {
  15526. front: {
  15527. height: math.unit(6, "feet"),
  15528. weight: math.unit(170, "lb"),
  15529. name: "Front",
  15530. image: {
  15531. source: "./media/characters/topaz/front.svg",
  15532. extra: 317 / 303,
  15533. bottom: 0.055
  15534. }
  15535. },
  15536. },
  15537. [
  15538. {
  15539. name: "Normal",
  15540. height: math.unit(6, "feet"),
  15541. default: true
  15542. },
  15543. ]
  15544. ))
  15545. characterMakers.push(() => makeCharacter(
  15546. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15547. {
  15548. front: {
  15549. height: math.unit(5 + 11 / 12, "feet"),
  15550. weight: math.unit(144, "lb"),
  15551. name: "Front",
  15552. image: {
  15553. source: "./media/characters/gabriel/front.svg",
  15554. extra: 285 / 262,
  15555. bottom: 0.004
  15556. }
  15557. },
  15558. },
  15559. [
  15560. {
  15561. name: "Normal",
  15562. height: math.unit(5 + 11 / 12, "feet"),
  15563. default: true
  15564. },
  15565. ]
  15566. ))
  15567. characterMakers.push(() => makeCharacter(
  15568. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15569. {
  15570. side: {
  15571. height: math.unit(6 + 5 / 12, "feet"),
  15572. weight: math.unit(300, "lb"),
  15573. name: "Side",
  15574. image: {
  15575. source: "./media/characters/tempest-suicune/side.svg",
  15576. extra: 195 / 154,
  15577. bottom: 0.04
  15578. }
  15579. },
  15580. },
  15581. [
  15582. {
  15583. name: "Normal",
  15584. height: math.unit(6 + 5 / 12, "feet"),
  15585. default: true
  15586. },
  15587. ]
  15588. ))
  15589. characterMakers.push(() => makeCharacter(
  15590. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15591. {
  15592. front: {
  15593. height: math.unit(7 + 2 / 12, "feet"),
  15594. weight: math.unit(322, "lb"),
  15595. name: "Front",
  15596. image: {
  15597. source: "./media/characters/vulcan/front.svg",
  15598. extra: 154 / 147,
  15599. bottom: 0.04
  15600. }
  15601. },
  15602. },
  15603. [
  15604. {
  15605. name: "Normal",
  15606. height: math.unit(7 + 2 / 12, "feet"),
  15607. default: true
  15608. },
  15609. ]
  15610. ))
  15611. characterMakers.push(() => makeCharacter(
  15612. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15613. {
  15614. front: {
  15615. height: math.unit(5 + 10 / 12, "feet"),
  15616. weight: math.unit(264, "lb"),
  15617. name: "Front",
  15618. image: {
  15619. source: "./media/characters/gault/front.svg",
  15620. extra: 161 / 140,
  15621. bottom: 0.028
  15622. }
  15623. },
  15624. },
  15625. [
  15626. {
  15627. name: "Normal",
  15628. height: math.unit(5 + 10 / 12, "feet"),
  15629. default: true
  15630. },
  15631. ]
  15632. ))
  15633. characterMakers.push(() => makeCharacter(
  15634. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15635. {
  15636. front: {
  15637. height: math.unit(6, "feet"),
  15638. weight: math.unit(150, "lb"),
  15639. name: "Front",
  15640. image: {
  15641. source: "./media/characters/shard/front.svg",
  15642. extra: 273 / 238,
  15643. bottom: 0.02
  15644. }
  15645. },
  15646. },
  15647. [
  15648. {
  15649. name: "Normal",
  15650. height: math.unit(3 + 6 / 12, "feet"),
  15651. default: true
  15652. },
  15653. ]
  15654. ))
  15655. characterMakers.push(() => makeCharacter(
  15656. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15657. {
  15658. front: {
  15659. height: math.unit(5 + 11 / 12, "feet"),
  15660. weight: math.unit(146, "lb"),
  15661. name: "Front",
  15662. image: {
  15663. source: "./media/characters/ashe/front.svg",
  15664. extra: 400 / 373,
  15665. bottom: 0.01
  15666. }
  15667. },
  15668. },
  15669. [
  15670. {
  15671. name: "Normal",
  15672. height: math.unit(5 + 11 / 12, "feet"),
  15673. default: true
  15674. },
  15675. ]
  15676. ))
  15677. characterMakers.push(() => makeCharacter(
  15678. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15679. {
  15680. front: {
  15681. height: math.unit(5 + 5 / 12, "feet"),
  15682. weight: math.unit(135, "lb"),
  15683. name: "Front",
  15684. image: {
  15685. source: "./media/characters/beatrix/front.svg",
  15686. extra: 392 / 379,
  15687. bottom: 0.01
  15688. }
  15689. },
  15690. },
  15691. [
  15692. {
  15693. name: "Normal",
  15694. height: math.unit(6, "feet"),
  15695. default: true
  15696. },
  15697. ]
  15698. ))
  15699. characterMakers.push(() => makeCharacter(
  15700. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15701. {
  15702. front: {
  15703. height: math.unit(6 + 2/12, "feet"),
  15704. weight: math.unit(135, "lb"),
  15705. name: "Front",
  15706. image: {
  15707. source: "./media/characters/ignatius/front.svg",
  15708. extra: 1380/1259,
  15709. bottom: 27/1407
  15710. }
  15711. },
  15712. },
  15713. [
  15714. {
  15715. name: "Normal",
  15716. height: math.unit(6 + 2/12, "feet"),
  15717. default: true
  15718. },
  15719. ]
  15720. ))
  15721. characterMakers.push(() => makeCharacter(
  15722. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15723. {
  15724. front: {
  15725. height: math.unit(6 + 2 / 12, "feet"),
  15726. weight: math.unit(138, "lb"),
  15727. name: "Front",
  15728. image: {
  15729. source: "./media/characters/mei-li/front.svg",
  15730. extra: 237 / 229,
  15731. bottom: 0.03
  15732. }
  15733. },
  15734. },
  15735. [
  15736. {
  15737. name: "Normal",
  15738. height: math.unit(6 + 2 / 12, "feet"),
  15739. default: true
  15740. },
  15741. ]
  15742. ))
  15743. characterMakers.push(() => makeCharacter(
  15744. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15745. {
  15746. front: {
  15747. height: math.unit(2 + 4 / 12, "feet"),
  15748. weight: math.unit(62, "lb"),
  15749. name: "Front",
  15750. image: {
  15751. source: "./media/characters/puru/front.svg",
  15752. extra: 206 / 149,
  15753. bottom: 0.06
  15754. }
  15755. },
  15756. },
  15757. [
  15758. {
  15759. name: "Normal",
  15760. height: math.unit(2 + 4 / 12, "feet"),
  15761. default: true
  15762. },
  15763. ]
  15764. ))
  15765. characterMakers.push(() => makeCharacter(
  15766. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15767. {
  15768. anthro: {
  15769. height: math.unit(5 + 8/12, "feet"),
  15770. weight: math.unit(200, "lb"),
  15771. energyNeed: math.unit(2000, "kcal"),
  15772. name: "Anthro",
  15773. image: {
  15774. source: "./media/characters/kee/anthro.svg",
  15775. extra: 3251/3184,
  15776. bottom: 250/3501
  15777. }
  15778. },
  15779. taur: {
  15780. height: math.unit(11, "feet"),
  15781. weight: math.unit(500, "lb"),
  15782. energyNeed: math.unit(5000, "kcal"),
  15783. name: "Taur",
  15784. image: {
  15785. source: "./media/characters/kee/taur.svg",
  15786. extra: 1362/1320,
  15787. bottom: 83/1445
  15788. }
  15789. },
  15790. },
  15791. [
  15792. {
  15793. name: "Normal",
  15794. height: math.unit(5 + 8/12, "feet"),
  15795. default: true
  15796. },
  15797. {
  15798. name: "Macro",
  15799. height: math.unit(35, "feet")
  15800. },
  15801. ]
  15802. ))
  15803. characterMakers.push(() => makeCharacter(
  15804. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15805. {
  15806. anthro: {
  15807. height: math.unit(7, "feet"),
  15808. weight: math.unit(190, "lb"),
  15809. name: "Anthro",
  15810. image: {
  15811. source: "./media/characters/cobalt-dracha/anthro.svg",
  15812. extra: 231 / 225,
  15813. bottom: 0.04
  15814. }
  15815. },
  15816. feral: {
  15817. height: math.unit(9 + 7 / 12, "feet"),
  15818. weight: math.unit(294, "lb"),
  15819. name: "Feral",
  15820. image: {
  15821. source: "./media/characters/cobalt-dracha/feral.svg",
  15822. extra: 692 / 633,
  15823. bottom: 0.05
  15824. }
  15825. },
  15826. },
  15827. [
  15828. {
  15829. name: "Normal",
  15830. height: math.unit(7, "feet"),
  15831. default: true
  15832. },
  15833. ]
  15834. ))
  15835. characterMakers.push(() => makeCharacter(
  15836. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15837. {
  15838. fallen: {
  15839. height: math.unit(11 + 8 / 12, "feet"),
  15840. weight: math.unit(485, "lb"),
  15841. name: "Java (Fallen)",
  15842. rename: true,
  15843. image: {
  15844. source: "./media/characters/java/fallen.svg",
  15845. extra: 226 / 208,
  15846. bottom: 0.005
  15847. }
  15848. },
  15849. godkin: {
  15850. height: math.unit(10 + 6 / 12, "feet"),
  15851. weight: math.unit(328, "lb"),
  15852. name: "Java (Godkin)",
  15853. rename: true,
  15854. image: {
  15855. source: "./media/characters/java/godkin.svg",
  15856. extra: 1104/1068,
  15857. bottom: 36/1140
  15858. }
  15859. },
  15860. },
  15861. [
  15862. {
  15863. name: "Normal",
  15864. height: math.unit(11 + 8 / 12, "feet"),
  15865. default: true
  15866. },
  15867. ]
  15868. ))
  15869. characterMakers.push(() => makeCharacter(
  15870. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15871. {
  15872. front: {
  15873. height: math.unit(5 + 9 / 12, "feet"),
  15874. weight: math.unit(170, "lb"),
  15875. name: "Front",
  15876. image: {
  15877. source: "./media/characters/purna/front.svg",
  15878. extra: 239 / 229,
  15879. bottom: 0.01
  15880. }
  15881. },
  15882. },
  15883. [
  15884. {
  15885. name: "Normal",
  15886. height: math.unit(5 + 9 / 12, "feet"),
  15887. default: true
  15888. },
  15889. ]
  15890. ))
  15891. characterMakers.push(() => makeCharacter(
  15892. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15893. {
  15894. front: {
  15895. height: math.unit(5 + 9 / 12, "feet"),
  15896. weight: math.unit(142, "lb"),
  15897. name: "Front",
  15898. image: {
  15899. source: "./media/characters/kuva/front.svg",
  15900. extra: 281 / 271,
  15901. bottom: 0.006
  15902. }
  15903. },
  15904. },
  15905. [
  15906. {
  15907. name: "Normal",
  15908. height: math.unit(5 + 9 / 12, "feet"),
  15909. default: true
  15910. },
  15911. ]
  15912. ))
  15913. characterMakers.push(() => makeCharacter(
  15914. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15915. {
  15916. anthro: {
  15917. height: math.unit(9 + 2 / 12, "feet"),
  15918. weight: math.unit(270, "lb"),
  15919. name: "Anthro",
  15920. image: {
  15921. source: "./media/characters/embra/anthro.svg",
  15922. extra: 200 / 187,
  15923. bottom: 0.02
  15924. }
  15925. },
  15926. feral: {
  15927. height: math.unit(18 + 8 / 12, "feet"),
  15928. weight: math.unit(576, "lb"),
  15929. name: "Feral",
  15930. image: {
  15931. source: "./media/characters/embra/feral.svg",
  15932. extra: 152 / 137,
  15933. bottom: 0.037
  15934. }
  15935. },
  15936. },
  15937. [
  15938. {
  15939. name: "Normal",
  15940. height: math.unit(9 + 2 / 12, "feet"),
  15941. default: true
  15942. },
  15943. ]
  15944. ))
  15945. characterMakers.push(() => makeCharacter(
  15946. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15947. {
  15948. anthro: {
  15949. height: math.unit(10 + 9 / 12, "feet"),
  15950. weight: math.unit(224, "lb"),
  15951. name: "Anthro",
  15952. image: {
  15953. source: "./media/characters/grottos/anthro.svg",
  15954. extra: 350 / 332,
  15955. bottom: 0.045
  15956. }
  15957. },
  15958. feral: {
  15959. height: math.unit(20 + 7 / 12, "feet"),
  15960. weight: math.unit(629, "lb"),
  15961. name: "Feral",
  15962. image: {
  15963. source: "./media/characters/grottos/feral.svg",
  15964. extra: 207 / 190,
  15965. bottom: 0.05
  15966. }
  15967. },
  15968. },
  15969. [
  15970. {
  15971. name: "Normal",
  15972. height: math.unit(10 + 9 / 12, "feet"),
  15973. default: true
  15974. },
  15975. ]
  15976. ))
  15977. characterMakers.push(() => makeCharacter(
  15978. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15979. {
  15980. anthro: {
  15981. height: math.unit(9 + 6 / 12, "feet"),
  15982. weight: math.unit(298, "lb"),
  15983. name: "Anthro",
  15984. image: {
  15985. source: "./media/characters/frifna/anthro.svg",
  15986. extra: 282 / 269,
  15987. bottom: 0.015
  15988. }
  15989. },
  15990. feral: {
  15991. height: math.unit(16 + 2 / 12, "feet"),
  15992. weight: math.unit(624, "lb"),
  15993. name: "Feral",
  15994. image: {
  15995. source: "./media/characters/frifna/feral.svg"
  15996. }
  15997. },
  15998. },
  15999. [
  16000. {
  16001. name: "Normal",
  16002. height: math.unit(9 + 6 / 12, "feet"),
  16003. default: true
  16004. },
  16005. ]
  16006. ))
  16007. characterMakers.push(() => makeCharacter(
  16008. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16009. {
  16010. front: {
  16011. height: math.unit(6 + 2 / 12, "feet"),
  16012. weight: math.unit(168, "lb"),
  16013. name: "Front",
  16014. image: {
  16015. source: "./media/characters/elise/front.svg",
  16016. extra: 276 / 271
  16017. }
  16018. },
  16019. },
  16020. [
  16021. {
  16022. name: "Normal",
  16023. height: math.unit(6 + 2 / 12, "feet"),
  16024. default: true
  16025. },
  16026. ]
  16027. ))
  16028. characterMakers.push(() => makeCharacter(
  16029. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16030. {
  16031. front: {
  16032. height: math.unit(5 + 10 / 12, "feet"),
  16033. weight: math.unit(210, "lb"),
  16034. name: "Front",
  16035. image: {
  16036. source: "./media/characters/glade/front.svg",
  16037. extra: 258 / 247,
  16038. bottom: 0.008
  16039. }
  16040. },
  16041. },
  16042. [
  16043. {
  16044. name: "Normal",
  16045. height: math.unit(5 + 10 / 12, "feet"),
  16046. default: true
  16047. },
  16048. ]
  16049. ))
  16050. characterMakers.push(() => makeCharacter(
  16051. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16052. {
  16053. front: {
  16054. height: math.unit(5 + 10 / 12, "feet"),
  16055. weight: math.unit(129, "lb"),
  16056. name: "Front",
  16057. image: {
  16058. source: "./media/characters/rina/front.svg",
  16059. extra: 266 / 255,
  16060. bottom: 0.005
  16061. }
  16062. },
  16063. },
  16064. [
  16065. {
  16066. name: "Normal",
  16067. height: math.unit(5 + 10 / 12, "feet"),
  16068. default: true
  16069. },
  16070. ]
  16071. ))
  16072. characterMakers.push(() => makeCharacter(
  16073. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16074. {
  16075. front: {
  16076. height: math.unit(6 + 1 / 12, "feet"),
  16077. weight: math.unit(192, "lb"),
  16078. name: "Front",
  16079. image: {
  16080. source: "./media/characters/veronica/front.svg",
  16081. extra: 319 / 309,
  16082. bottom: 0.005
  16083. }
  16084. },
  16085. },
  16086. [
  16087. {
  16088. name: "Normal",
  16089. height: math.unit(6 + 1 / 12, "feet"),
  16090. default: true
  16091. },
  16092. ]
  16093. ))
  16094. characterMakers.push(() => makeCharacter(
  16095. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16096. {
  16097. front: {
  16098. height: math.unit(9 + 3 / 12, "feet"),
  16099. weight: math.unit(1100, "lb"),
  16100. name: "Front",
  16101. image: {
  16102. source: "./media/characters/braxton/front.svg",
  16103. extra: 1057 / 984,
  16104. bottom: 0.05
  16105. }
  16106. },
  16107. },
  16108. [
  16109. {
  16110. name: "Normal",
  16111. height: math.unit(9 + 3 / 12, "feet")
  16112. },
  16113. {
  16114. name: "Giant",
  16115. height: math.unit(300, "feet"),
  16116. default: true
  16117. },
  16118. {
  16119. name: "Macro",
  16120. height: math.unit(700, "feet")
  16121. },
  16122. {
  16123. name: "Megamacro",
  16124. height: math.unit(6000, "feet")
  16125. },
  16126. ]
  16127. ))
  16128. characterMakers.push(() => makeCharacter(
  16129. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16130. {
  16131. front: {
  16132. height: math.unit(6 + 7 / 12, "feet"),
  16133. weight: math.unit(150, "lb"),
  16134. name: "Front",
  16135. image: {
  16136. source: "./media/characters/blue-feyonics/front.svg",
  16137. extra: 1403 / 1306,
  16138. bottom: 0.047
  16139. }
  16140. },
  16141. },
  16142. [
  16143. {
  16144. name: "Normal",
  16145. height: math.unit(6 + 7 / 12, "feet"),
  16146. default: true
  16147. },
  16148. ]
  16149. ))
  16150. characterMakers.push(() => makeCharacter(
  16151. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16152. {
  16153. front: {
  16154. height: math.unit(1.8, "meters"),
  16155. weight: math.unit(60, "kg"),
  16156. name: "Front",
  16157. image: {
  16158. source: "./media/characters/maxwell/front.svg",
  16159. extra: 2060 / 1873
  16160. }
  16161. },
  16162. },
  16163. [
  16164. {
  16165. name: "Micro",
  16166. height: math.unit(1, "mm")
  16167. },
  16168. {
  16169. name: "Normal",
  16170. height: math.unit(1.8, "meter"),
  16171. default: true
  16172. },
  16173. {
  16174. name: "Macro",
  16175. height: math.unit(30, "meters")
  16176. },
  16177. {
  16178. name: "Megamacro",
  16179. height: math.unit(10, "km")
  16180. },
  16181. ]
  16182. ))
  16183. characterMakers.push(() => makeCharacter(
  16184. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16185. {
  16186. front: {
  16187. height: math.unit(6, "feet"),
  16188. weight: math.unit(150, "lb"),
  16189. name: "Front",
  16190. image: {
  16191. source: "./media/characters/jack/front.svg",
  16192. extra: 1754 / 1640,
  16193. bottom: 0.01
  16194. }
  16195. },
  16196. },
  16197. [
  16198. {
  16199. name: "Normal",
  16200. height: math.unit(80000, "feet"),
  16201. default: true
  16202. },
  16203. {
  16204. name: "Max size",
  16205. height: math.unit(10, "lightyears")
  16206. },
  16207. ]
  16208. ))
  16209. characterMakers.push(() => makeCharacter(
  16210. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16211. {
  16212. urban: {
  16213. height: math.unit(5, "feet"),
  16214. weight: math.unit(240, "lb"),
  16215. name: "Urban",
  16216. image: {
  16217. source: "./media/characters/cafat/urban.svg",
  16218. extra: 1223/1126,
  16219. bottom: 205/1428
  16220. }
  16221. },
  16222. summer: {
  16223. height: math.unit(5, "feet"),
  16224. weight: math.unit(240, "lb"),
  16225. name: "Summer",
  16226. image: {
  16227. source: "./media/characters/cafat/summer.svg",
  16228. extra: 1223/1126,
  16229. bottom: 205/1428
  16230. }
  16231. },
  16232. winter: {
  16233. height: math.unit(5, "feet"),
  16234. weight: math.unit(240, "lb"),
  16235. name: "Winter",
  16236. image: {
  16237. source: "./media/characters/cafat/winter.svg",
  16238. extra: 1223/1126,
  16239. bottom: 205/1428
  16240. }
  16241. },
  16242. lingerie: {
  16243. height: math.unit(5, "feet"),
  16244. weight: math.unit(240, "lb"),
  16245. name: "Lingerie",
  16246. image: {
  16247. source: "./media/characters/cafat/lingerie.svg",
  16248. extra: 1223/1126,
  16249. bottom: 205/1428
  16250. }
  16251. },
  16252. upright: {
  16253. height: math.unit(6.3, "feet"),
  16254. weight: math.unit(240, "lb"),
  16255. name: "Upright",
  16256. image: {
  16257. source: "./media/characters/cafat/upright.svg",
  16258. bottom: 0.01
  16259. }
  16260. },
  16261. uprightFull: {
  16262. height: math.unit(6.3, "feet"),
  16263. weight: math.unit(240, "lb"),
  16264. name: "Upright (Full)",
  16265. image: {
  16266. source: "./media/characters/cafat/upright-full.svg",
  16267. bottom: 0.01
  16268. }
  16269. },
  16270. },
  16271. [
  16272. {
  16273. name: "Small",
  16274. height: math.unit(5, "feet"),
  16275. default: true
  16276. },
  16277. {
  16278. name: "Large",
  16279. height: math.unit(13, "feet")
  16280. },
  16281. ]
  16282. ))
  16283. characterMakers.push(() => makeCharacter(
  16284. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16285. {
  16286. front: {
  16287. height: math.unit(6, "feet"),
  16288. weight: math.unit(150, "lb"),
  16289. name: "Front",
  16290. image: {
  16291. source: "./media/characters/verin-raharra/front.svg",
  16292. extra: 5019 / 4835,
  16293. bottom: 0.023
  16294. }
  16295. },
  16296. },
  16297. [
  16298. {
  16299. name: "Normal",
  16300. height: math.unit(7 + 5 / 12, "feet"),
  16301. default: true
  16302. },
  16303. {
  16304. name: "Upsized",
  16305. height: math.unit(20, "feet")
  16306. },
  16307. ]
  16308. ))
  16309. characterMakers.push(() => makeCharacter(
  16310. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16311. {
  16312. front: {
  16313. height: math.unit(7, "feet"),
  16314. weight: math.unit(230, "lb"),
  16315. name: "Front",
  16316. image: {
  16317. source: "./media/characters/nakata/front.svg",
  16318. extra: 1.005,
  16319. bottom: 0.01
  16320. }
  16321. },
  16322. },
  16323. [
  16324. {
  16325. name: "Normal",
  16326. height: math.unit(7, "feet"),
  16327. default: true
  16328. },
  16329. {
  16330. name: "Big",
  16331. height: math.unit(14, "feet")
  16332. },
  16333. {
  16334. name: "Macro",
  16335. height: math.unit(400, "feet")
  16336. },
  16337. ]
  16338. ))
  16339. characterMakers.push(() => makeCharacter(
  16340. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16341. {
  16342. front: {
  16343. height: math.unit(4.91, "feet"),
  16344. weight: math.unit(100, "lb"),
  16345. name: "Front",
  16346. image: {
  16347. source: "./media/characters/lily/front.svg",
  16348. extra: 1585 / 1415,
  16349. bottom: 0.02
  16350. }
  16351. },
  16352. },
  16353. [
  16354. {
  16355. name: "Normal",
  16356. height: math.unit(4.91, "feet"),
  16357. default: true
  16358. },
  16359. ]
  16360. ))
  16361. characterMakers.push(() => makeCharacter(
  16362. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16363. {
  16364. laying: {
  16365. height: math.unit(4 + 4 / 12, "feet"),
  16366. weight: math.unit(600, "lb"),
  16367. name: "Laying",
  16368. image: {
  16369. source: "./media/characters/sheila/laying.svg",
  16370. extra: 1333 / 1265,
  16371. bottom: 0.16
  16372. }
  16373. },
  16374. },
  16375. [
  16376. {
  16377. name: "Normal",
  16378. height: math.unit(4 + 4 / 12, "feet"),
  16379. default: true
  16380. },
  16381. ]
  16382. ))
  16383. characterMakers.push(() => makeCharacter(
  16384. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16385. {
  16386. front: {
  16387. height: math.unit(6, "feet"),
  16388. weight: math.unit(190, "lb"),
  16389. name: "Front",
  16390. image: {
  16391. source: "./media/characters/sax/front.svg",
  16392. extra: 1187 / 973,
  16393. bottom: 0.042
  16394. }
  16395. },
  16396. },
  16397. [
  16398. {
  16399. name: "Micro",
  16400. height: math.unit(4, "inches"),
  16401. default: true
  16402. },
  16403. ]
  16404. ))
  16405. characterMakers.push(() => makeCharacter(
  16406. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16407. {
  16408. front: {
  16409. height: math.unit(6, "feet"),
  16410. weight: math.unit(150, "lb"),
  16411. name: "Front",
  16412. image: {
  16413. source: "./media/characters/pandora/front.svg",
  16414. extra: 2720 / 2556,
  16415. bottom: 0.015
  16416. }
  16417. },
  16418. back: {
  16419. height: math.unit(6, "feet"),
  16420. weight: math.unit(150, "lb"),
  16421. name: "Back",
  16422. image: {
  16423. source: "./media/characters/pandora/back.svg",
  16424. extra: 2720 / 2556,
  16425. bottom: 0.01
  16426. }
  16427. },
  16428. beans: {
  16429. height: math.unit(6 / 8, "feet"),
  16430. name: "Beans",
  16431. image: {
  16432. source: "./media/characters/pandora/beans.svg"
  16433. }
  16434. },
  16435. collar: {
  16436. height: math.unit(0.31, "feet"),
  16437. name: "Collar",
  16438. image: {
  16439. source: "./media/characters/pandora/collar.svg"
  16440. }
  16441. },
  16442. skirt: {
  16443. height: math.unit(6, "feet"),
  16444. weight: math.unit(150, "lb"),
  16445. name: "Skirt",
  16446. image: {
  16447. source: "./media/characters/pandora/skirt.svg",
  16448. extra: 1622 / 1525,
  16449. bottom: 0.015
  16450. }
  16451. },
  16452. hoodie: {
  16453. height: math.unit(6, "feet"),
  16454. weight: math.unit(150, "lb"),
  16455. name: "Hoodie",
  16456. image: {
  16457. source: "./media/characters/pandora/hoodie.svg",
  16458. extra: 1622 / 1525,
  16459. bottom: 0.015
  16460. }
  16461. },
  16462. casual: {
  16463. height: math.unit(6, "feet"),
  16464. weight: math.unit(150, "lb"),
  16465. name: "Casual",
  16466. image: {
  16467. source: "./media/characters/pandora/casual.svg",
  16468. extra: 1622 / 1525,
  16469. bottom: 0.015
  16470. }
  16471. },
  16472. },
  16473. [
  16474. {
  16475. name: "Normal",
  16476. height: math.unit(6, "feet")
  16477. },
  16478. {
  16479. name: "Big Steppy",
  16480. height: math.unit(1, "km"),
  16481. default: true
  16482. },
  16483. {
  16484. name: "Galactic Steppy",
  16485. height: math.unit(2, "gigameters")
  16486. },
  16487. ]
  16488. ))
  16489. characterMakers.push(() => makeCharacter(
  16490. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16491. {
  16492. side: {
  16493. height: math.unit(10, "feet"),
  16494. weight: math.unit(800, "kg"),
  16495. name: "Side",
  16496. image: {
  16497. source: "./media/characters/venio-darcony/side.svg",
  16498. extra: 1373 / 1003,
  16499. bottom: 0.037
  16500. }
  16501. },
  16502. front: {
  16503. height: math.unit(19, "feet"),
  16504. weight: math.unit(800, "kg"),
  16505. name: "Front",
  16506. image: {
  16507. source: "./media/characters/venio-darcony/front.svg"
  16508. }
  16509. },
  16510. back: {
  16511. height: math.unit(19, "feet"),
  16512. weight: math.unit(800, "kg"),
  16513. name: "Back",
  16514. image: {
  16515. source: "./media/characters/venio-darcony/back.svg"
  16516. }
  16517. },
  16518. sideNsfw: {
  16519. height: math.unit(10, "feet"),
  16520. weight: math.unit(800, "kg"),
  16521. name: "Side (NSFW)",
  16522. image: {
  16523. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16524. extra: 1373 / 1003,
  16525. bottom: 0.037
  16526. }
  16527. },
  16528. frontNsfw: {
  16529. height: math.unit(19, "feet"),
  16530. weight: math.unit(800, "kg"),
  16531. name: "Front (NSFW)",
  16532. image: {
  16533. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16534. }
  16535. },
  16536. backNsfw: {
  16537. height: math.unit(19, "feet"),
  16538. weight: math.unit(800, "kg"),
  16539. name: "Back (NSFW)",
  16540. image: {
  16541. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16542. }
  16543. },
  16544. sideArmored: {
  16545. height: math.unit(10, "feet"),
  16546. weight: math.unit(800, "kg"),
  16547. name: "Side (Armored)",
  16548. image: {
  16549. source: "./media/characters/venio-darcony/side-armored.svg",
  16550. extra: 1373 / 1003,
  16551. bottom: 0.037
  16552. }
  16553. },
  16554. frontArmored: {
  16555. height: math.unit(19, "feet"),
  16556. weight: math.unit(900, "kg"),
  16557. name: "Front (Armored)",
  16558. image: {
  16559. source: "./media/characters/venio-darcony/front-armored.svg"
  16560. }
  16561. },
  16562. backArmored: {
  16563. height: math.unit(19, "feet"),
  16564. weight: math.unit(900, "kg"),
  16565. name: "Back (Armored)",
  16566. image: {
  16567. source: "./media/characters/venio-darcony/back-armored.svg"
  16568. }
  16569. },
  16570. sword: {
  16571. height: math.unit(10, "feet"),
  16572. weight: math.unit(50, "lb"),
  16573. name: "Sword",
  16574. image: {
  16575. source: "./media/characters/venio-darcony/sword.svg"
  16576. }
  16577. },
  16578. },
  16579. [
  16580. {
  16581. name: "Normal",
  16582. height: math.unit(10, "feet")
  16583. },
  16584. {
  16585. name: "Macro",
  16586. height: math.unit(130, "feet"),
  16587. default: true
  16588. },
  16589. {
  16590. name: "Macro+",
  16591. height: math.unit(240, "feet")
  16592. },
  16593. ]
  16594. ))
  16595. characterMakers.push(() => makeCharacter(
  16596. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16597. {
  16598. front: {
  16599. height: math.unit(6, "feet"),
  16600. weight: math.unit(150, "lb"),
  16601. name: "Front",
  16602. image: {
  16603. source: "./media/characters/veski/front.svg",
  16604. extra: 1299 / 1225,
  16605. bottom: 0.04
  16606. }
  16607. },
  16608. back: {
  16609. height: math.unit(6, "feet"),
  16610. weight: math.unit(150, "lb"),
  16611. name: "Back",
  16612. image: {
  16613. source: "./media/characters/veski/back.svg",
  16614. extra: 1299 / 1225,
  16615. bottom: 0.008
  16616. }
  16617. },
  16618. maw: {
  16619. height: math.unit(1.5 * 1.21, "feet"),
  16620. name: "Maw",
  16621. image: {
  16622. source: "./media/characters/veski/maw.svg"
  16623. }
  16624. },
  16625. },
  16626. [
  16627. {
  16628. name: "Macro",
  16629. height: math.unit(2, "km"),
  16630. default: true
  16631. },
  16632. ]
  16633. ))
  16634. characterMakers.push(() => makeCharacter(
  16635. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16636. {
  16637. front: {
  16638. height: math.unit(5 + 7 / 12, "feet"),
  16639. name: "Front",
  16640. image: {
  16641. source: "./media/characters/isabelle/front.svg",
  16642. extra: 2130 / 1976,
  16643. bottom: 0.05
  16644. }
  16645. },
  16646. },
  16647. [
  16648. {
  16649. name: "Supermicro",
  16650. height: math.unit(10, "micrometers")
  16651. },
  16652. {
  16653. name: "Micro",
  16654. height: math.unit(1, "inch")
  16655. },
  16656. {
  16657. name: "Tiny",
  16658. height: math.unit(5, "inches")
  16659. },
  16660. {
  16661. name: "Standard",
  16662. height: math.unit(5 + 7 / 12, "inches")
  16663. },
  16664. {
  16665. name: "Macro",
  16666. height: math.unit(80, "meters"),
  16667. default: true
  16668. },
  16669. {
  16670. name: "Megamacro",
  16671. height: math.unit(250, "meters")
  16672. },
  16673. {
  16674. name: "Gigamacro",
  16675. height: math.unit(5, "km")
  16676. },
  16677. {
  16678. name: "Cosmic",
  16679. height: math.unit(2.5e6, "miles")
  16680. },
  16681. ]
  16682. ))
  16683. characterMakers.push(() => makeCharacter(
  16684. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16685. {
  16686. front: {
  16687. height: math.unit(6, "feet"),
  16688. weight: math.unit(150, "lb"),
  16689. name: "Front",
  16690. image: {
  16691. source: "./media/characters/hanzo/front.svg",
  16692. extra: 374 / 344,
  16693. bottom: 0.02
  16694. }
  16695. },
  16696. },
  16697. [
  16698. {
  16699. name: "Normal",
  16700. height: math.unit(8, "feet"),
  16701. default: true
  16702. },
  16703. ]
  16704. ))
  16705. characterMakers.push(() => makeCharacter(
  16706. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16707. {
  16708. front: {
  16709. height: math.unit(7, "feet"),
  16710. weight: math.unit(130, "lb"),
  16711. name: "Front",
  16712. image: {
  16713. source: "./media/characters/anna/front.svg",
  16714. extra: 169 / 145,
  16715. bottom: 0.06
  16716. }
  16717. },
  16718. full: {
  16719. height: math.unit(4.96, "feet"),
  16720. weight: math.unit(220, "lb"),
  16721. name: "Full",
  16722. image: {
  16723. source: "./media/characters/anna/full.svg",
  16724. extra: 138 / 114,
  16725. bottom: 0.15
  16726. }
  16727. },
  16728. tongue: {
  16729. height: math.unit(2.53, "feet"),
  16730. name: "Tongue",
  16731. image: {
  16732. source: "./media/characters/anna/tongue.svg"
  16733. }
  16734. },
  16735. },
  16736. [
  16737. {
  16738. name: "Normal",
  16739. height: math.unit(7, "feet"),
  16740. default: true
  16741. },
  16742. ]
  16743. ))
  16744. characterMakers.push(() => makeCharacter(
  16745. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16746. {
  16747. front: {
  16748. height: math.unit(7, "feet"),
  16749. weight: math.unit(150, "lb"),
  16750. name: "Front",
  16751. image: {
  16752. source: "./media/characters/ian-corvid/front.svg",
  16753. extra: 150 / 142,
  16754. bottom: 0.02
  16755. }
  16756. },
  16757. back: {
  16758. height: math.unit(7, "feet"),
  16759. weight: math.unit(150, "lb"),
  16760. name: "Back",
  16761. image: {
  16762. source: "./media/characters/ian-corvid/back.svg",
  16763. extra: 150 / 143,
  16764. bottom: 0.01
  16765. }
  16766. },
  16767. stomping: {
  16768. height: math.unit(7, "feet"),
  16769. weight: math.unit(150, "lb"),
  16770. name: "Stomping",
  16771. image: {
  16772. source: "./media/characters/ian-corvid/stomping.svg",
  16773. extra: 76 / 72
  16774. }
  16775. },
  16776. sitting: {
  16777. height: math.unit(7 / 1.8, "feet"),
  16778. weight: math.unit(150, "lb"),
  16779. name: "Sitting",
  16780. image: {
  16781. source: "./media/characters/ian-corvid/sitting.svg",
  16782. extra: 1400 / 1269,
  16783. bottom: 0.15
  16784. }
  16785. },
  16786. },
  16787. [
  16788. {
  16789. name: "Tiny Microw",
  16790. height: math.unit(1, "inch")
  16791. },
  16792. {
  16793. name: "Microw",
  16794. height: math.unit(6, "inches")
  16795. },
  16796. {
  16797. name: "Crow",
  16798. height: math.unit(7 + 1 / 12, "feet"),
  16799. default: true
  16800. },
  16801. {
  16802. name: "Macrow",
  16803. height: math.unit(176, "feet")
  16804. },
  16805. ]
  16806. ))
  16807. characterMakers.push(() => makeCharacter(
  16808. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16809. {
  16810. front: {
  16811. height: math.unit(5 + 7 / 12, "feet"),
  16812. weight: math.unit(147, "lb"),
  16813. name: "Front",
  16814. image: {
  16815. source: "./media/characters/natalie-kellon/front.svg",
  16816. extra: 1214 / 1141,
  16817. bottom: 0.02
  16818. }
  16819. },
  16820. },
  16821. [
  16822. {
  16823. name: "Micro",
  16824. height: math.unit(1 / 16, "inch")
  16825. },
  16826. {
  16827. name: "Tiny",
  16828. height: math.unit(4, "inches")
  16829. },
  16830. {
  16831. name: "Normal",
  16832. height: math.unit(5 + 7 / 12, "feet"),
  16833. default: true
  16834. },
  16835. {
  16836. name: "Amazon",
  16837. height: math.unit(12, "feet")
  16838. },
  16839. {
  16840. name: "Giantess",
  16841. height: math.unit(160, "meters")
  16842. },
  16843. {
  16844. name: "Titaness",
  16845. height: math.unit(800, "meters")
  16846. },
  16847. ]
  16848. ))
  16849. characterMakers.push(() => makeCharacter(
  16850. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16851. {
  16852. front: {
  16853. height: math.unit(6, "feet"),
  16854. weight: math.unit(150, "lb"),
  16855. name: "Front",
  16856. image: {
  16857. source: "./media/characters/alluria/front.svg",
  16858. extra: 806 / 738,
  16859. bottom: 0.01
  16860. }
  16861. },
  16862. side: {
  16863. height: math.unit(6, "feet"),
  16864. weight: math.unit(150, "lb"),
  16865. name: "Side",
  16866. image: {
  16867. source: "./media/characters/alluria/side.svg",
  16868. extra: 800 / 750,
  16869. }
  16870. },
  16871. back: {
  16872. height: math.unit(6, "feet"),
  16873. weight: math.unit(150, "lb"),
  16874. name: "Back",
  16875. image: {
  16876. source: "./media/characters/alluria/back.svg",
  16877. extra: 806 / 738,
  16878. }
  16879. },
  16880. frontMaid: {
  16881. height: math.unit(6, "feet"),
  16882. weight: math.unit(150, "lb"),
  16883. name: "Front (Maid)",
  16884. image: {
  16885. source: "./media/characters/alluria/front-maid.svg",
  16886. extra: 806 / 738,
  16887. bottom: 0.01
  16888. }
  16889. },
  16890. sideMaid: {
  16891. height: math.unit(6, "feet"),
  16892. weight: math.unit(150, "lb"),
  16893. name: "Side (Maid)",
  16894. image: {
  16895. source: "./media/characters/alluria/side-maid.svg",
  16896. extra: 800 / 750,
  16897. bottom: 0.005
  16898. }
  16899. },
  16900. backMaid: {
  16901. height: math.unit(6, "feet"),
  16902. weight: math.unit(150, "lb"),
  16903. name: "Back (Maid)",
  16904. image: {
  16905. source: "./media/characters/alluria/back-maid.svg",
  16906. extra: 806 / 738,
  16907. }
  16908. },
  16909. },
  16910. [
  16911. {
  16912. name: "Micro",
  16913. height: math.unit(6, "inches"),
  16914. default: true
  16915. },
  16916. ]
  16917. ))
  16918. characterMakers.push(() => makeCharacter(
  16919. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16920. {
  16921. front: {
  16922. height: math.unit(6, "feet"),
  16923. weight: math.unit(150, "lb"),
  16924. name: "Front",
  16925. image: {
  16926. source: "./media/characters/kyle/front.svg",
  16927. extra: 1069 / 962,
  16928. bottom: 77.228 / 1727.45
  16929. }
  16930. },
  16931. },
  16932. [
  16933. {
  16934. name: "Macro",
  16935. height: math.unit(150, "feet"),
  16936. default: true
  16937. },
  16938. ]
  16939. ))
  16940. characterMakers.push(() => makeCharacter(
  16941. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16942. {
  16943. front: {
  16944. height: math.unit(6, "feet"),
  16945. weight: math.unit(300, "lb"),
  16946. name: "Front",
  16947. image: {
  16948. source: "./media/characters/duncan/front.svg",
  16949. extra: 1650 / 1482,
  16950. bottom: 0.05
  16951. }
  16952. },
  16953. },
  16954. [
  16955. {
  16956. name: "Macro",
  16957. height: math.unit(100, "feet"),
  16958. default: true
  16959. },
  16960. ]
  16961. ))
  16962. characterMakers.push(() => makeCharacter(
  16963. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16964. {
  16965. front: {
  16966. height: math.unit(5 + 4 / 12, "feet"),
  16967. weight: math.unit(220, "lb"),
  16968. name: "Front",
  16969. image: {
  16970. source: "./media/characters/memory/front.svg",
  16971. extra: 3641 / 3545,
  16972. bottom: 0.03
  16973. }
  16974. },
  16975. back: {
  16976. height: math.unit(5 + 4 / 12, "feet"),
  16977. weight: math.unit(220, "lb"),
  16978. name: "Back",
  16979. image: {
  16980. source: "./media/characters/memory/back.svg",
  16981. extra: 3641 / 3545,
  16982. bottom: 0.025
  16983. }
  16984. },
  16985. frontSkirt: {
  16986. height: math.unit(5 + 4 / 12, "feet"),
  16987. weight: math.unit(220, "lb"),
  16988. name: "Front (Skirt)",
  16989. image: {
  16990. source: "./media/characters/memory/front-skirt.svg",
  16991. extra: 3641 / 3545,
  16992. bottom: 0.03
  16993. }
  16994. },
  16995. frontDress: {
  16996. height: math.unit(5 + 4 / 12, "feet"),
  16997. weight: math.unit(220, "lb"),
  16998. name: "Front (Dress)",
  16999. image: {
  17000. source: "./media/characters/memory/front-dress.svg",
  17001. extra: 3641 / 3545,
  17002. bottom: 0.03
  17003. }
  17004. },
  17005. },
  17006. [
  17007. {
  17008. name: "Micro",
  17009. height: math.unit(6, "inches"),
  17010. default: true
  17011. },
  17012. {
  17013. name: "Normal",
  17014. height: math.unit(5 + 4 / 12, "feet")
  17015. },
  17016. ]
  17017. ))
  17018. characterMakers.push(() => makeCharacter(
  17019. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17020. {
  17021. front: {
  17022. height: math.unit(4 + 11 / 12, "feet"),
  17023. weight: math.unit(100, "lb"),
  17024. name: "Front",
  17025. image: {
  17026. source: "./media/characters/luno/front.svg",
  17027. extra: 1535 / 1487,
  17028. bottom: 0.03
  17029. }
  17030. },
  17031. },
  17032. [
  17033. {
  17034. name: "Micro",
  17035. height: math.unit(3, "inches")
  17036. },
  17037. {
  17038. name: "Normal",
  17039. height: math.unit(4 + 11 / 12, "feet"),
  17040. default: true
  17041. },
  17042. {
  17043. name: "Macro",
  17044. height: math.unit(300, "feet")
  17045. },
  17046. {
  17047. name: "Megamacro",
  17048. height: math.unit(700, "miles")
  17049. },
  17050. ]
  17051. ))
  17052. characterMakers.push(() => makeCharacter(
  17053. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17054. {
  17055. front: {
  17056. height: math.unit(6 + 2 / 12, "feet"),
  17057. weight: math.unit(170, "lb"),
  17058. name: "Front",
  17059. image: {
  17060. source: "./media/characters/jamesy/front.svg",
  17061. extra: 440 / 382,
  17062. bottom: 0.005
  17063. }
  17064. },
  17065. },
  17066. [
  17067. {
  17068. name: "Micro",
  17069. height: math.unit(3, "inches")
  17070. },
  17071. {
  17072. name: "Normal",
  17073. height: math.unit(6 + 2 / 12, "feet"),
  17074. default: true
  17075. },
  17076. {
  17077. name: "Macro",
  17078. height: math.unit(300, "feet")
  17079. },
  17080. {
  17081. name: "Megamacro",
  17082. height: math.unit(700, "miles")
  17083. },
  17084. ]
  17085. ))
  17086. characterMakers.push(() => makeCharacter(
  17087. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17088. {
  17089. front: {
  17090. height: math.unit(6, "feet"),
  17091. weight: math.unit(160, "lb"),
  17092. name: "Front",
  17093. image: {
  17094. source: "./media/characters/mark/front.svg",
  17095. extra: 3300 / 3100,
  17096. bottom: 136.42 / 3440.47
  17097. }
  17098. },
  17099. },
  17100. [
  17101. {
  17102. name: "Macro",
  17103. height: math.unit(120, "meters")
  17104. },
  17105. {
  17106. name: "Bigger Macro",
  17107. height: math.unit(350, "meters")
  17108. },
  17109. {
  17110. name: "Megamacro",
  17111. height: math.unit(8, "km"),
  17112. default: true
  17113. },
  17114. {
  17115. name: "Continental",
  17116. height: math.unit(4550, "km")
  17117. },
  17118. {
  17119. name: "Planetary",
  17120. height: math.unit(65000, "km")
  17121. },
  17122. ]
  17123. ))
  17124. characterMakers.push(() => makeCharacter(
  17125. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17126. {
  17127. front: {
  17128. height: math.unit(6, "feet"),
  17129. weight: math.unit(400, "lb"),
  17130. name: "Front",
  17131. image: {
  17132. source: "./media/characters/mac/front.svg",
  17133. extra: 1048 / 987.7,
  17134. bottom: 60 / 1107.6,
  17135. }
  17136. },
  17137. },
  17138. [
  17139. {
  17140. name: "Macro",
  17141. height: math.unit(500, "feet"),
  17142. default: true
  17143. },
  17144. ]
  17145. ))
  17146. characterMakers.push(() => makeCharacter(
  17147. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17148. {
  17149. front: {
  17150. height: math.unit(5 + 2 / 12, "feet"),
  17151. weight: math.unit(190, "lb"),
  17152. name: "Front",
  17153. image: {
  17154. source: "./media/characters/bari/front.svg",
  17155. extra: 3156 / 2880,
  17156. bottom: 0.03
  17157. }
  17158. },
  17159. back: {
  17160. height: math.unit(5 + 2 / 12, "feet"),
  17161. weight: math.unit(190, "lb"),
  17162. name: "Back",
  17163. image: {
  17164. source: "./media/characters/bari/back.svg",
  17165. extra: 3260 / 2834,
  17166. bottom: 0.025
  17167. }
  17168. },
  17169. frontPlush: {
  17170. height: math.unit(5 + 2 / 12, "feet"),
  17171. weight: math.unit(190, "lb"),
  17172. name: "Front (Plush)",
  17173. image: {
  17174. source: "./media/characters/bari/front-plush.svg",
  17175. extra: 1112 / 1061,
  17176. bottom: 0.002
  17177. }
  17178. },
  17179. },
  17180. [
  17181. {
  17182. name: "Micro",
  17183. height: math.unit(3, "inches")
  17184. },
  17185. {
  17186. name: "Normal",
  17187. height: math.unit(5 + 2 / 12, "feet"),
  17188. default: true
  17189. },
  17190. {
  17191. name: "Macro",
  17192. height: math.unit(20, "feet")
  17193. },
  17194. ]
  17195. ))
  17196. characterMakers.push(() => makeCharacter(
  17197. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17198. {
  17199. front: {
  17200. height: math.unit(6 + 1 / 12, "feet"),
  17201. weight: math.unit(275, "lb"),
  17202. name: "Front",
  17203. image: {
  17204. source: "./media/characters/hunter-misha-raven/front.svg"
  17205. }
  17206. },
  17207. },
  17208. [
  17209. {
  17210. name: "Mortal",
  17211. height: math.unit(6 + 1 / 12, "feet")
  17212. },
  17213. {
  17214. name: "Divine",
  17215. height: math.unit(1.12134e34, "parsecs"),
  17216. default: true
  17217. },
  17218. ]
  17219. ))
  17220. characterMakers.push(() => makeCharacter(
  17221. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17222. {
  17223. front: {
  17224. height: math.unit(6 + 3 / 12, "feet"),
  17225. weight: math.unit(220, "lb"),
  17226. name: "Front",
  17227. image: {
  17228. source: "./media/characters/max-calore/front.svg",
  17229. extra: 1700 / 1648,
  17230. bottom: 0.01
  17231. }
  17232. },
  17233. back: {
  17234. height: math.unit(6 + 3 / 12, "feet"),
  17235. weight: math.unit(220, "lb"),
  17236. name: "Back",
  17237. image: {
  17238. source: "./media/characters/max-calore/back.svg",
  17239. extra: 1700 / 1648,
  17240. bottom: 0.01
  17241. }
  17242. },
  17243. },
  17244. [
  17245. {
  17246. name: "Normal",
  17247. height: math.unit(6 + 3 / 12, "feet"),
  17248. default: true
  17249. },
  17250. ]
  17251. ))
  17252. characterMakers.push(() => makeCharacter(
  17253. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17254. {
  17255. side: {
  17256. height: math.unit(2 + 8 / 12, "feet"),
  17257. weight: math.unit(99, "lb"),
  17258. name: "Side",
  17259. image: {
  17260. source: "./media/characters/aspen/side.svg",
  17261. extra: 152 / 138,
  17262. bottom: 0.032
  17263. }
  17264. },
  17265. },
  17266. [
  17267. {
  17268. name: "Normal",
  17269. height: math.unit(2 + 8 / 12, "feet"),
  17270. default: true
  17271. },
  17272. ]
  17273. ))
  17274. characterMakers.push(() => makeCharacter(
  17275. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17276. {
  17277. side: {
  17278. height: math.unit(3 + 2 / 12, "feet"),
  17279. weight: math.unit(224, "lb"),
  17280. name: "Side",
  17281. image: {
  17282. source: "./media/characters/sheila-feral-wolf/side.svg",
  17283. extra: 179 / 166,
  17284. bottom: 0.03
  17285. }
  17286. },
  17287. },
  17288. [
  17289. {
  17290. name: "Normal",
  17291. height: math.unit(3 + 2 / 12, "feet"),
  17292. default: true
  17293. },
  17294. ]
  17295. ))
  17296. characterMakers.push(() => makeCharacter(
  17297. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17298. {
  17299. side: {
  17300. height: math.unit(1 + 9 / 12, "feet"),
  17301. weight: math.unit(38, "lb"),
  17302. name: "Side",
  17303. image: {
  17304. source: "./media/characters/michelle/side.svg",
  17305. extra: 147 / 136.7,
  17306. bottom: 0.03
  17307. }
  17308. },
  17309. },
  17310. [
  17311. {
  17312. name: "Normal",
  17313. height: math.unit(1 + 9 / 12, "feet"),
  17314. default: true
  17315. },
  17316. ]
  17317. ))
  17318. characterMakers.push(() => makeCharacter(
  17319. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17320. {
  17321. front: {
  17322. height: math.unit(1.54, "feet"),
  17323. weight: math.unit(50, "lb"),
  17324. name: "Front",
  17325. image: {
  17326. source: "./media/characters/nino/front.svg"
  17327. }
  17328. },
  17329. },
  17330. [
  17331. {
  17332. name: "Normal",
  17333. height: math.unit(1.54, "feet"),
  17334. default: true
  17335. },
  17336. ]
  17337. ))
  17338. characterMakers.push(() => makeCharacter(
  17339. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17340. {
  17341. front: {
  17342. height: math.unit(1.49, "feet"),
  17343. weight: math.unit(45, "lb"),
  17344. name: "Front",
  17345. image: {
  17346. source: "./media/characters/viola/front.svg"
  17347. }
  17348. },
  17349. },
  17350. [
  17351. {
  17352. name: "Normal",
  17353. height: math.unit(1.49, "feet"),
  17354. default: true
  17355. },
  17356. ]
  17357. ))
  17358. characterMakers.push(() => makeCharacter(
  17359. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17360. {
  17361. front: {
  17362. height: math.unit(6 + 5 / 12, "feet"),
  17363. weight: math.unit(580, "lb"),
  17364. name: "Front",
  17365. image: {
  17366. source: "./media/characters/atlas/front.svg",
  17367. extra: 298.5 / 290,
  17368. bottom: 0.015
  17369. }
  17370. },
  17371. },
  17372. [
  17373. {
  17374. name: "Normal",
  17375. height: math.unit(6 + 5 / 12, "feet"),
  17376. default: true
  17377. },
  17378. ]
  17379. ))
  17380. characterMakers.push(() => makeCharacter(
  17381. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17382. {
  17383. side: {
  17384. height: math.unit(15.6, "inches"),
  17385. weight: math.unit(10, "lb"),
  17386. name: "Side",
  17387. image: {
  17388. source: "./media/characters/davy/side.svg",
  17389. extra: 200 / 170,
  17390. bottom: 0.01
  17391. }
  17392. },
  17393. },
  17394. [
  17395. {
  17396. name: "Normal",
  17397. height: math.unit(15.6, "inches"),
  17398. default: true
  17399. },
  17400. ]
  17401. ))
  17402. characterMakers.push(() => makeCharacter(
  17403. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17404. {
  17405. side: {
  17406. height: math.unit(4 + 8 / 12, "feet"),
  17407. weight: math.unit(166, "lb"),
  17408. name: "Side",
  17409. image: {
  17410. source: "./media/characters/fiona/side.svg",
  17411. extra: 232 / 220,
  17412. bottom: 0.03
  17413. }
  17414. },
  17415. },
  17416. [
  17417. {
  17418. name: "Normal",
  17419. height: math.unit(4 + 8 / 12, "feet"),
  17420. default: true
  17421. },
  17422. ]
  17423. ))
  17424. characterMakers.push(() => makeCharacter(
  17425. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17426. {
  17427. front: {
  17428. height: math.unit(26, "inches"),
  17429. weight: math.unit(35, "lb"),
  17430. name: "Front",
  17431. image: {
  17432. source: "./media/characters/lyla/front.svg",
  17433. bottom: 0.1
  17434. }
  17435. },
  17436. },
  17437. [
  17438. {
  17439. name: "Normal",
  17440. height: math.unit(3, "feet"),
  17441. default: true
  17442. },
  17443. ]
  17444. ))
  17445. characterMakers.push(() => makeCharacter(
  17446. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17447. {
  17448. side: {
  17449. height: math.unit(1.8, "feet"),
  17450. weight: math.unit(44, "lb"),
  17451. name: "Side",
  17452. image: {
  17453. source: "./media/characters/perseus/side.svg",
  17454. bottom: 0.21
  17455. }
  17456. },
  17457. },
  17458. [
  17459. {
  17460. name: "Normal",
  17461. height: math.unit(1.8, "feet"),
  17462. default: true
  17463. },
  17464. ]
  17465. ))
  17466. characterMakers.push(() => makeCharacter(
  17467. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17468. {
  17469. side: {
  17470. height: math.unit(4 + 2 / 12, "feet"),
  17471. weight: math.unit(20, "lb"),
  17472. name: "Side",
  17473. image: {
  17474. source: "./media/characters/remus/side.svg"
  17475. }
  17476. },
  17477. },
  17478. [
  17479. {
  17480. name: "Normal",
  17481. height: math.unit(4 + 2 / 12, "feet"),
  17482. default: true
  17483. },
  17484. ]
  17485. ))
  17486. characterMakers.push(() => makeCharacter(
  17487. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17488. {
  17489. front: {
  17490. height: math.unit(4 + 11 / 12, "feet"),
  17491. weight: math.unit(114, "lb"),
  17492. name: "Front",
  17493. image: {
  17494. source: "./media/characters/raf/front.svg",
  17495. extra: 1504/1339,
  17496. bottom: 26/1530
  17497. }
  17498. },
  17499. side: {
  17500. height: math.unit(4 + 11 / 12, "feet"),
  17501. weight: math.unit(114, "lb"),
  17502. name: "Side",
  17503. image: {
  17504. source: "./media/characters/raf/side.svg",
  17505. extra: 1466/1316,
  17506. bottom: 29/1495
  17507. }
  17508. },
  17509. },
  17510. [
  17511. {
  17512. name: "Micro",
  17513. height: math.unit(2, "inches")
  17514. },
  17515. {
  17516. name: "Normal",
  17517. height: math.unit(4 + 11 / 12, "feet"),
  17518. default: true
  17519. },
  17520. {
  17521. name: "Macro",
  17522. height: math.unit(70, "feet")
  17523. },
  17524. ]
  17525. ))
  17526. characterMakers.push(() => makeCharacter(
  17527. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17528. {
  17529. front: {
  17530. height: math.unit(1.5, "meters"),
  17531. weight: math.unit(68, "kg"),
  17532. name: "Front",
  17533. image: {
  17534. source: "./media/characters/liam-einarr/front.svg",
  17535. extra: 2822 / 2666
  17536. }
  17537. },
  17538. back: {
  17539. height: math.unit(1.5, "meters"),
  17540. weight: math.unit(68, "kg"),
  17541. name: "Back",
  17542. image: {
  17543. source: "./media/characters/liam-einarr/back.svg",
  17544. extra: 2822 / 2666,
  17545. bottom: 0.015
  17546. }
  17547. },
  17548. },
  17549. [
  17550. {
  17551. name: "Normal",
  17552. height: math.unit(1.5, "meters"),
  17553. default: true
  17554. },
  17555. {
  17556. name: "Macro",
  17557. height: math.unit(150, "meters")
  17558. },
  17559. {
  17560. name: "Megamacro",
  17561. height: math.unit(35, "km")
  17562. },
  17563. ]
  17564. ))
  17565. characterMakers.push(() => makeCharacter(
  17566. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17567. {
  17568. front: {
  17569. height: math.unit(6, "feet"),
  17570. weight: math.unit(75, "kg"),
  17571. name: "Front",
  17572. image: {
  17573. source: "./media/characters/linda/front.svg",
  17574. extra: 930 / 874,
  17575. bottom: 0.004
  17576. }
  17577. },
  17578. },
  17579. [
  17580. {
  17581. name: "Normal",
  17582. height: math.unit(6, "feet"),
  17583. default: true
  17584. },
  17585. ]
  17586. ))
  17587. characterMakers.push(() => makeCharacter(
  17588. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17589. {
  17590. front: {
  17591. height: math.unit(6 + 8 / 12, "feet"),
  17592. weight: math.unit(220, "lb"),
  17593. name: "Front",
  17594. image: {
  17595. source: "./media/characters/caylex/front.svg",
  17596. extra: 821 / 772,
  17597. bottom: 0.07
  17598. }
  17599. },
  17600. back: {
  17601. height: math.unit(6 + 8 / 12, "feet"),
  17602. weight: math.unit(220, "lb"),
  17603. name: "Back",
  17604. image: {
  17605. source: "./media/characters/caylex/back.svg",
  17606. extra: 821 / 772,
  17607. bottom: 0.022
  17608. }
  17609. },
  17610. hand: {
  17611. height: math.unit(1.25, "feet"),
  17612. name: "Hand",
  17613. image: {
  17614. source: "./media/characters/caylex/hand.svg"
  17615. }
  17616. },
  17617. foot: {
  17618. height: math.unit(1.6, "feet"),
  17619. name: "Foot",
  17620. image: {
  17621. source: "./media/characters/caylex/foot.svg"
  17622. }
  17623. },
  17624. armored: {
  17625. height: math.unit(6 + 8 / 12, "feet"),
  17626. weight: math.unit(250, "lb"),
  17627. name: "Armored",
  17628. image: {
  17629. source: "./media/characters/caylex/armored.svg",
  17630. extra: 1420 / 1310,
  17631. bottom: 0.045
  17632. }
  17633. },
  17634. },
  17635. [
  17636. {
  17637. name: "Normal",
  17638. height: math.unit(6 + 8 / 12, "feet"),
  17639. default: true
  17640. },
  17641. {
  17642. name: "Normal+",
  17643. height: math.unit(12, "feet")
  17644. },
  17645. ]
  17646. ))
  17647. characterMakers.push(() => makeCharacter(
  17648. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17649. {
  17650. front: {
  17651. height: math.unit(7 + 6 / 12, "feet"),
  17652. weight: math.unit(288, "lb"),
  17653. name: "Front",
  17654. image: {
  17655. source: "./media/characters/alana/front.svg",
  17656. extra: 679 / 653,
  17657. bottom: 22.5 / 701
  17658. }
  17659. },
  17660. },
  17661. [
  17662. {
  17663. name: "Normal",
  17664. height: math.unit(7 + 6 / 12, "feet")
  17665. },
  17666. {
  17667. name: "Large",
  17668. height: math.unit(50, "feet")
  17669. },
  17670. {
  17671. name: "Macro",
  17672. height: math.unit(100, "feet"),
  17673. default: true
  17674. },
  17675. {
  17676. name: "Macro+",
  17677. height: math.unit(200, "feet")
  17678. },
  17679. ]
  17680. ))
  17681. characterMakers.push(() => makeCharacter(
  17682. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17683. {
  17684. front: {
  17685. height: math.unit(6 + 1 / 12, "feet"),
  17686. weight: math.unit(210, "lb"),
  17687. name: "Front",
  17688. image: {
  17689. source: "./media/characters/hasani/front.svg",
  17690. extra: 244 / 232,
  17691. bottom: 0.01
  17692. }
  17693. },
  17694. back: {
  17695. height: math.unit(6 + 1 / 12, "feet"),
  17696. weight: math.unit(210, "lb"),
  17697. name: "Back",
  17698. image: {
  17699. source: "./media/characters/hasani/back.svg",
  17700. extra: 244 / 232,
  17701. bottom: 0.01
  17702. }
  17703. },
  17704. },
  17705. [
  17706. {
  17707. name: "Normal",
  17708. height: math.unit(6 + 1 / 12, "feet")
  17709. },
  17710. {
  17711. name: "Macro",
  17712. height: math.unit(175, "feet"),
  17713. default: true
  17714. },
  17715. ]
  17716. ))
  17717. characterMakers.push(() => makeCharacter(
  17718. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17719. {
  17720. front: {
  17721. height: math.unit(1.82, "meters"),
  17722. weight: math.unit(140, "lb"),
  17723. name: "Front",
  17724. image: {
  17725. source: "./media/characters/nita/front.svg",
  17726. extra: 2473 / 2363,
  17727. bottom: 0.01
  17728. }
  17729. },
  17730. },
  17731. [
  17732. {
  17733. name: "Normal",
  17734. height: math.unit(1.82, "m")
  17735. },
  17736. {
  17737. name: "Macro",
  17738. height: math.unit(300, "m")
  17739. },
  17740. {
  17741. name: "Mistake Canon",
  17742. height: math.unit(0.5, "miles"),
  17743. default: true
  17744. },
  17745. {
  17746. name: "Big Mistake",
  17747. height: math.unit(13, "miles")
  17748. },
  17749. {
  17750. name: "Playing God",
  17751. height: math.unit(2450, "miles")
  17752. },
  17753. ]
  17754. ))
  17755. characterMakers.push(() => makeCharacter(
  17756. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17757. {
  17758. front: {
  17759. height: math.unit(4, "feet"),
  17760. weight: math.unit(120, "lb"),
  17761. name: "Front",
  17762. image: {
  17763. source: "./media/characters/shiriko/front.svg",
  17764. extra: 970/934,
  17765. bottom: 5/975
  17766. }
  17767. },
  17768. },
  17769. [
  17770. {
  17771. name: "Normal",
  17772. height: math.unit(4, "feet"),
  17773. default: true
  17774. },
  17775. ]
  17776. ))
  17777. characterMakers.push(() => makeCharacter(
  17778. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17779. {
  17780. front: {
  17781. height: math.unit(6, "feet"),
  17782. name: "front",
  17783. image: {
  17784. source: "./media/characters/deja/front.svg",
  17785. extra: 926 / 840,
  17786. bottom: 0.07
  17787. }
  17788. },
  17789. },
  17790. [
  17791. {
  17792. name: "Planck Length",
  17793. height: math.unit(1.6e-35, "meters")
  17794. },
  17795. {
  17796. name: "Normal",
  17797. height: math.unit(30.48, "meters"),
  17798. default: true
  17799. },
  17800. {
  17801. name: "Universal",
  17802. height: math.unit(8.8e26, "meters")
  17803. },
  17804. ]
  17805. ))
  17806. characterMakers.push(() => makeCharacter(
  17807. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17808. {
  17809. side: {
  17810. height: math.unit(8, "feet"),
  17811. weight: math.unit(6300, "lb"),
  17812. name: "Side",
  17813. image: {
  17814. source: "./media/characters/anima/side.svg",
  17815. bottom: 0.035
  17816. }
  17817. },
  17818. },
  17819. [
  17820. {
  17821. name: "Normal",
  17822. height: math.unit(8, "feet"),
  17823. default: true
  17824. },
  17825. ]
  17826. ))
  17827. characterMakers.push(() => makeCharacter(
  17828. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17829. {
  17830. front: {
  17831. height: math.unit(8, "feet"),
  17832. weight: math.unit(350, "lb"),
  17833. name: "Front",
  17834. image: {
  17835. source: "./media/characters/bianca/front.svg",
  17836. extra: 234 / 225,
  17837. bottom: 0.03
  17838. }
  17839. },
  17840. },
  17841. [
  17842. {
  17843. name: "Normal",
  17844. height: math.unit(8, "feet"),
  17845. default: true
  17846. },
  17847. ]
  17848. ))
  17849. characterMakers.push(() => makeCharacter(
  17850. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17851. {
  17852. front: {
  17853. height: math.unit(6, "feet"),
  17854. weight: math.unit(150, "lb"),
  17855. name: "Front",
  17856. image: {
  17857. source: "./media/characters/adinia/front.svg",
  17858. extra: 1845 / 1672,
  17859. bottom: 0.02
  17860. }
  17861. },
  17862. back: {
  17863. height: math.unit(6, "feet"),
  17864. weight: math.unit(150, "lb"),
  17865. name: "Back",
  17866. image: {
  17867. source: "./media/characters/adinia/back.svg",
  17868. extra: 1845 / 1672,
  17869. bottom: 0.002
  17870. }
  17871. },
  17872. },
  17873. [
  17874. {
  17875. name: "Normal",
  17876. height: math.unit(11 + 5 / 12, "feet"),
  17877. default: true
  17878. },
  17879. ]
  17880. ))
  17881. characterMakers.push(() => makeCharacter(
  17882. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17883. {
  17884. front: {
  17885. height: math.unit(3, "meters"),
  17886. weight: math.unit(200, "kg"),
  17887. name: "Front",
  17888. image: {
  17889. source: "./media/characters/lykasa/front.svg",
  17890. extra: 1076 / 976,
  17891. bottom: 0.06
  17892. }
  17893. },
  17894. },
  17895. [
  17896. {
  17897. name: "Normal",
  17898. height: math.unit(3, "meters")
  17899. },
  17900. {
  17901. name: "Kaiju",
  17902. height: math.unit(120, "meters"),
  17903. default: true
  17904. },
  17905. {
  17906. name: "Mega Kaiju",
  17907. height: math.unit(240, "km")
  17908. },
  17909. {
  17910. name: "Giga Kaiju",
  17911. height: math.unit(400, "megameters")
  17912. },
  17913. {
  17914. name: "Tera Kaiju",
  17915. height: math.unit(800, "gigameters")
  17916. },
  17917. {
  17918. name: "Kaiju Dragon Goddess",
  17919. height: math.unit(26, "zettaparsecs")
  17920. },
  17921. ]
  17922. ))
  17923. characterMakers.push(() => makeCharacter(
  17924. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17925. {
  17926. side: {
  17927. height: math.unit(283 / 124 * 6, "feet"),
  17928. weight: math.unit(35000, "lb"),
  17929. name: "Side",
  17930. image: {
  17931. source: "./media/characters/malfaren/side.svg",
  17932. extra: 1310/529,
  17933. bottom: 24/1334
  17934. }
  17935. },
  17936. front: {
  17937. height: math.unit(22.36, "feet"),
  17938. weight: math.unit(35000, "lb"),
  17939. name: "Front",
  17940. image: {
  17941. source: "./media/characters/malfaren/front.svg",
  17942. extra: 1237/1115,
  17943. bottom: 32/1269
  17944. }
  17945. },
  17946. maw: {
  17947. height: math.unit(6.9, "feet"),
  17948. name: "Maw",
  17949. image: {
  17950. source: "./media/characters/malfaren/maw.svg"
  17951. }
  17952. },
  17953. dick: {
  17954. height: math.unit(6.19, "feet"),
  17955. name: "Dick",
  17956. image: {
  17957. source: "./media/characters/malfaren/dick.svg"
  17958. }
  17959. },
  17960. eye: {
  17961. height: math.unit(0.69, "feet"),
  17962. name: "Eye",
  17963. image: {
  17964. source: "./media/characters/malfaren/eye.svg"
  17965. }
  17966. },
  17967. },
  17968. [
  17969. {
  17970. name: "Big",
  17971. height: math.unit(283 / 162 * 6, "feet"),
  17972. },
  17973. {
  17974. name: "Bigger",
  17975. height: math.unit(283 / 124 * 6, "feet")
  17976. },
  17977. {
  17978. name: "Massive",
  17979. height: math.unit(283 / 92 * 6, "feet"),
  17980. default: true
  17981. },
  17982. {
  17983. name: "👀💦",
  17984. height: math.unit(283 / 73 * 6, "feet"),
  17985. },
  17986. ]
  17987. ))
  17988. characterMakers.push(() => makeCharacter(
  17989. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17990. {
  17991. front: {
  17992. height: math.unit(1.7, "m"),
  17993. weight: math.unit(70, "kg"),
  17994. name: "Front",
  17995. image: {
  17996. source: "./media/characters/kernel/front.svg",
  17997. extra: 222 / 210,
  17998. bottom: 0.007
  17999. }
  18000. },
  18001. },
  18002. [
  18003. {
  18004. name: "Nano",
  18005. height: math.unit(17, "micrometers")
  18006. },
  18007. {
  18008. name: "Micro",
  18009. height: math.unit(1.7, "mm")
  18010. },
  18011. {
  18012. name: "Small",
  18013. height: math.unit(1.7, "cm")
  18014. },
  18015. {
  18016. name: "Normal",
  18017. height: math.unit(1.7, "m"),
  18018. default: true
  18019. },
  18020. ]
  18021. ))
  18022. characterMakers.push(() => makeCharacter(
  18023. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18024. {
  18025. front: {
  18026. height: math.unit(1.75, "meters"),
  18027. weight: math.unit(65, "kg"),
  18028. name: "Front",
  18029. image: {
  18030. source: "./media/characters/jayne-folest/front.svg",
  18031. extra: 2115 / 2007,
  18032. bottom: 0.02
  18033. }
  18034. },
  18035. back: {
  18036. height: math.unit(1.75, "meters"),
  18037. weight: math.unit(65, "kg"),
  18038. name: "Back",
  18039. image: {
  18040. source: "./media/characters/jayne-folest/back.svg",
  18041. extra: 2115 / 2007,
  18042. bottom: 0.005
  18043. }
  18044. },
  18045. frontClothed: {
  18046. height: math.unit(1.75, "meters"),
  18047. weight: math.unit(65, "kg"),
  18048. name: "Front (Clothed)",
  18049. image: {
  18050. source: "./media/characters/jayne-folest/front-clothed.svg",
  18051. extra: 2115 / 2007,
  18052. bottom: 0.035
  18053. }
  18054. },
  18055. hand: {
  18056. height: math.unit(1 / 1.260, "feet"),
  18057. name: "Hand",
  18058. image: {
  18059. source: "./media/characters/jayne-folest/hand.svg"
  18060. }
  18061. },
  18062. foot: {
  18063. height: math.unit(1 / 0.918, "feet"),
  18064. name: "Foot",
  18065. image: {
  18066. source: "./media/characters/jayne-folest/foot.svg"
  18067. }
  18068. },
  18069. },
  18070. [
  18071. {
  18072. name: "Micro",
  18073. height: math.unit(4, "cm")
  18074. },
  18075. {
  18076. name: "Normal",
  18077. height: math.unit(1.75, "meters")
  18078. },
  18079. {
  18080. name: "Macro",
  18081. height: math.unit(47.5, "meters"),
  18082. default: true
  18083. },
  18084. ]
  18085. ))
  18086. characterMakers.push(() => makeCharacter(
  18087. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18088. {
  18089. front: {
  18090. height: math.unit(180, "cm"),
  18091. weight: math.unit(70, "kg"),
  18092. name: "Front",
  18093. image: {
  18094. source: "./media/characters/algier/front.svg",
  18095. extra: 596 / 572,
  18096. bottom: 0.04
  18097. }
  18098. },
  18099. back: {
  18100. height: math.unit(180, "cm"),
  18101. weight: math.unit(70, "kg"),
  18102. name: "Back",
  18103. image: {
  18104. source: "./media/characters/algier/back.svg",
  18105. extra: 596 / 572,
  18106. bottom: 0.025
  18107. }
  18108. },
  18109. frontdressed: {
  18110. height: math.unit(180, "cm"),
  18111. weight: math.unit(150, "kg"),
  18112. name: "Front-dressed",
  18113. image: {
  18114. source: "./media/characters/algier/front-dressed.svg",
  18115. extra: 596 / 572,
  18116. bottom: 0.038
  18117. }
  18118. },
  18119. },
  18120. [
  18121. {
  18122. name: "Micro",
  18123. height: math.unit(5, "cm")
  18124. },
  18125. {
  18126. name: "Normal",
  18127. height: math.unit(180, "cm"),
  18128. default: true
  18129. },
  18130. {
  18131. name: "Macro",
  18132. height: math.unit(64, "m")
  18133. },
  18134. ]
  18135. ))
  18136. characterMakers.push(() => makeCharacter(
  18137. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18138. {
  18139. upright: {
  18140. height: math.unit(7, "feet"),
  18141. weight: math.unit(300, "lb"),
  18142. name: "Upright",
  18143. image: {
  18144. source: "./media/characters/pretzel/upright.svg",
  18145. extra: 534 / 522,
  18146. bottom: 0.065
  18147. }
  18148. },
  18149. sprawling: {
  18150. height: math.unit(3.75, "feet"),
  18151. weight: math.unit(300, "lb"),
  18152. name: "Sprawling",
  18153. image: {
  18154. source: "./media/characters/pretzel/sprawling.svg",
  18155. extra: 314 / 281,
  18156. bottom: 0.1
  18157. }
  18158. },
  18159. tongue: {
  18160. height: math.unit(2, "feet"),
  18161. name: "Tongue",
  18162. image: {
  18163. source: "./media/characters/pretzel/tongue.svg"
  18164. }
  18165. },
  18166. },
  18167. [
  18168. {
  18169. name: "Normal",
  18170. height: math.unit(7, "feet"),
  18171. default: true
  18172. },
  18173. {
  18174. name: "Oversized",
  18175. height: math.unit(15, "feet")
  18176. },
  18177. {
  18178. name: "Huge",
  18179. height: math.unit(30, "feet")
  18180. },
  18181. {
  18182. name: "Macro",
  18183. height: math.unit(250, "feet")
  18184. },
  18185. ]
  18186. ))
  18187. characterMakers.push(() => makeCharacter(
  18188. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18189. {
  18190. sideFront: {
  18191. height: math.unit(5 + 2 / 12, "feet"),
  18192. weight: math.unit(120, "lb"),
  18193. name: "Front Side",
  18194. image: {
  18195. source: "./media/characters/roxi/side-front.svg",
  18196. extra: 2924 / 2717,
  18197. bottom: 0.08
  18198. }
  18199. },
  18200. sideBack: {
  18201. height: math.unit(5 + 2 / 12, "feet"),
  18202. weight: math.unit(120, "lb"),
  18203. name: "Back Side",
  18204. image: {
  18205. source: "./media/characters/roxi/side-back.svg",
  18206. extra: 2904 / 2693,
  18207. bottom: 0.06
  18208. }
  18209. },
  18210. front: {
  18211. height: math.unit(5 + 2 / 12, "feet"),
  18212. weight: math.unit(120, "lb"),
  18213. name: "Front",
  18214. image: {
  18215. source: "./media/characters/roxi/front.svg",
  18216. extra: 2028 / 1907,
  18217. bottom: 0.01
  18218. }
  18219. },
  18220. frontAlt: {
  18221. height: math.unit(5 + 2 / 12, "feet"),
  18222. weight: math.unit(120, "lb"),
  18223. name: "Front (Alt)",
  18224. image: {
  18225. source: "./media/characters/roxi/front-alt.svg",
  18226. extra: 1828 / 1798,
  18227. bottom: 0.01
  18228. }
  18229. },
  18230. sitting: {
  18231. height: math.unit(2.8, "feet"),
  18232. weight: math.unit(120, "lb"),
  18233. name: "Sitting",
  18234. image: {
  18235. source: "./media/characters/roxi/sitting.svg",
  18236. extra: 2660 / 2462,
  18237. bottom: 0.1
  18238. }
  18239. },
  18240. },
  18241. [
  18242. {
  18243. name: "Normal",
  18244. height: math.unit(5 + 2 / 12, "feet"),
  18245. default: true
  18246. },
  18247. ]
  18248. ))
  18249. characterMakers.push(() => makeCharacter(
  18250. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18251. {
  18252. side: {
  18253. height: math.unit(55, "feet"),
  18254. weight: math.unit(153, "tons"),
  18255. name: "Side",
  18256. image: {
  18257. source: "./media/characters/shadow/side.svg",
  18258. extra: 701 / 628,
  18259. bottom: 0.02
  18260. }
  18261. },
  18262. flying: {
  18263. height: math.unit(145, "feet"),
  18264. weight: math.unit(153, "tons"),
  18265. name: "Flying",
  18266. image: {
  18267. source: "./media/characters/shadow/flying.svg"
  18268. }
  18269. },
  18270. },
  18271. [
  18272. {
  18273. name: "Normal",
  18274. height: math.unit(55, "feet"),
  18275. default: true
  18276. },
  18277. ]
  18278. ))
  18279. characterMakers.push(() => makeCharacter(
  18280. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18281. {
  18282. front: {
  18283. height: math.unit(6, "feet"),
  18284. weight: math.unit(200, "lb"),
  18285. name: "Front",
  18286. image: {
  18287. source: "./media/characters/marcie/front.svg",
  18288. extra: 960 / 876,
  18289. bottom: 58 / 1017.87
  18290. }
  18291. },
  18292. },
  18293. [
  18294. {
  18295. name: "Macro",
  18296. height: math.unit(1, "mile"),
  18297. default: true
  18298. },
  18299. ]
  18300. ))
  18301. characterMakers.push(() => makeCharacter(
  18302. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18303. {
  18304. front: {
  18305. height: math.unit(7, "feet"),
  18306. weight: math.unit(200, "lb"),
  18307. name: "Front",
  18308. image: {
  18309. source: "./media/characters/kachina/front.svg",
  18310. extra: 1290.68 / 1119,
  18311. bottom: 36.5 / 1327.18
  18312. }
  18313. },
  18314. },
  18315. [
  18316. {
  18317. name: "Normal",
  18318. height: math.unit(7, "feet"),
  18319. default: true
  18320. },
  18321. ]
  18322. ))
  18323. characterMakers.push(() => makeCharacter(
  18324. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18325. {
  18326. looking: {
  18327. height: math.unit(2, "meters"),
  18328. weight: math.unit(300, "kg"),
  18329. name: "Looking",
  18330. image: {
  18331. source: "./media/characters/kash/looking.svg",
  18332. extra: 474 / 344,
  18333. bottom: 0.03
  18334. }
  18335. },
  18336. side: {
  18337. height: math.unit(2, "meters"),
  18338. weight: math.unit(300, "kg"),
  18339. name: "Side",
  18340. image: {
  18341. source: "./media/characters/kash/side.svg",
  18342. extra: 302 / 251,
  18343. bottom: 0.03
  18344. }
  18345. },
  18346. front: {
  18347. height: math.unit(2, "meters"),
  18348. weight: math.unit(300, "kg"),
  18349. name: "Front",
  18350. image: {
  18351. source: "./media/characters/kash/front.svg",
  18352. extra: 495 / 360,
  18353. bottom: 0.015
  18354. }
  18355. },
  18356. },
  18357. [
  18358. {
  18359. name: "Normal",
  18360. height: math.unit(2, "meters"),
  18361. default: true
  18362. },
  18363. {
  18364. name: "Big",
  18365. height: math.unit(3, "meters")
  18366. },
  18367. {
  18368. name: "Large",
  18369. height: math.unit(5, "meters")
  18370. },
  18371. ]
  18372. ))
  18373. characterMakers.push(() => makeCharacter(
  18374. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18375. {
  18376. feeding: {
  18377. height: math.unit(6.7, "feet"),
  18378. weight: math.unit(350, "lb"),
  18379. name: "Feeding",
  18380. image: {
  18381. source: "./media/characters/lalim/feeding.svg",
  18382. }
  18383. },
  18384. },
  18385. [
  18386. {
  18387. name: "Normal",
  18388. height: math.unit(6.7, "feet"),
  18389. default: true
  18390. },
  18391. ]
  18392. ))
  18393. characterMakers.push(() => makeCharacter(
  18394. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18395. {
  18396. front: {
  18397. height: math.unit(9.5, "feet"),
  18398. weight: math.unit(600, "lb"),
  18399. name: "Front",
  18400. image: {
  18401. source: "./media/characters/de'vout/front.svg",
  18402. extra: 1443 / 1328,
  18403. bottom: 0.025
  18404. }
  18405. },
  18406. back: {
  18407. height: math.unit(9.5, "feet"),
  18408. weight: math.unit(600, "lb"),
  18409. name: "Back",
  18410. image: {
  18411. source: "./media/characters/de'vout/back.svg",
  18412. extra: 1443 / 1328
  18413. }
  18414. },
  18415. frontDressed: {
  18416. height: math.unit(9.5, "feet"),
  18417. weight: math.unit(600, "lb"),
  18418. name: "Front (Dressed",
  18419. image: {
  18420. source: "./media/characters/de'vout/front-dressed.svg",
  18421. extra: 1443 / 1328,
  18422. bottom: 0.025
  18423. }
  18424. },
  18425. backDressed: {
  18426. height: math.unit(9.5, "feet"),
  18427. weight: math.unit(600, "lb"),
  18428. name: "Back (Dressed",
  18429. image: {
  18430. source: "./media/characters/de'vout/back-dressed.svg",
  18431. extra: 1443 / 1328
  18432. }
  18433. },
  18434. },
  18435. [
  18436. {
  18437. name: "Normal",
  18438. height: math.unit(9.5, "feet"),
  18439. default: true
  18440. },
  18441. ]
  18442. ))
  18443. characterMakers.push(() => makeCharacter(
  18444. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18445. {
  18446. front: {
  18447. height: math.unit(8, "feet"),
  18448. weight: math.unit(225, "lb"),
  18449. name: "Front",
  18450. image: {
  18451. source: "./media/characters/talana/front.svg",
  18452. extra: 1410 / 1300,
  18453. bottom: 0.015
  18454. }
  18455. },
  18456. frontDressed: {
  18457. height: math.unit(8, "feet"),
  18458. weight: math.unit(225, "lb"),
  18459. name: "Front (Dressed",
  18460. image: {
  18461. source: "./media/characters/talana/front-dressed.svg",
  18462. extra: 1410 / 1300,
  18463. bottom: 0.015
  18464. }
  18465. },
  18466. },
  18467. [
  18468. {
  18469. name: "Normal",
  18470. height: math.unit(8, "feet"),
  18471. default: true
  18472. },
  18473. ]
  18474. ))
  18475. characterMakers.push(() => makeCharacter(
  18476. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18477. {
  18478. side: {
  18479. height: math.unit(7.2, "feet"),
  18480. weight: math.unit(150, "lb"),
  18481. name: "Side",
  18482. image: {
  18483. source: "./media/characters/xeauvok/side.svg",
  18484. extra: 1975 / 1523,
  18485. bottom: 0.07
  18486. }
  18487. },
  18488. },
  18489. [
  18490. {
  18491. name: "Normal",
  18492. height: math.unit(7.2, "feet"),
  18493. default: true
  18494. },
  18495. ]
  18496. ))
  18497. characterMakers.push(() => makeCharacter(
  18498. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18499. {
  18500. side: {
  18501. height: math.unit(10, "feet"),
  18502. weight: math.unit(900, "kg"),
  18503. name: "Side",
  18504. image: {
  18505. source: "./media/characters/zara/side.svg",
  18506. extra: 504 / 498
  18507. }
  18508. },
  18509. },
  18510. [
  18511. {
  18512. name: "Normal",
  18513. height: math.unit(10, "feet"),
  18514. default: true
  18515. },
  18516. ]
  18517. ))
  18518. characterMakers.push(() => makeCharacter(
  18519. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18520. {
  18521. side: {
  18522. height: math.unit(6, "feet"),
  18523. weight: math.unit(150, "lb"),
  18524. name: "Side",
  18525. image: {
  18526. source: "./media/characters/richard-dragon/side.svg",
  18527. extra: 845 / 340,
  18528. bottom: 0.017
  18529. }
  18530. },
  18531. maw: {
  18532. height: math.unit(2.97, "feet"),
  18533. name: "Maw",
  18534. image: {
  18535. source: "./media/characters/richard-dragon/maw.svg"
  18536. }
  18537. },
  18538. },
  18539. [
  18540. ]
  18541. ))
  18542. characterMakers.push(() => makeCharacter(
  18543. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18544. {
  18545. front: {
  18546. height: math.unit(4, "feet"),
  18547. weight: math.unit(100, "lb"),
  18548. name: "Front",
  18549. image: {
  18550. source: "./media/characters/richard-smeargle/front.svg",
  18551. extra: 2952 / 2820,
  18552. bottom: 0.028
  18553. }
  18554. },
  18555. },
  18556. [
  18557. {
  18558. name: "Normal",
  18559. height: math.unit(4, "feet"),
  18560. default: true
  18561. },
  18562. {
  18563. name: "Dynamax",
  18564. height: math.unit(20, "meters")
  18565. },
  18566. ]
  18567. ))
  18568. characterMakers.push(() => makeCharacter(
  18569. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18570. {
  18571. front: {
  18572. height: math.unit(6, "feet"),
  18573. weight: math.unit(110, "lb"),
  18574. name: "Front",
  18575. image: {
  18576. source: "./media/characters/klay/front.svg",
  18577. extra: 962 / 883,
  18578. bottom: 0.04
  18579. }
  18580. },
  18581. back: {
  18582. height: math.unit(6, "feet"),
  18583. weight: math.unit(110, "lb"),
  18584. name: "Back",
  18585. image: {
  18586. source: "./media/characters/klay/back.svg",
  18587. extra: 962 / 883
  18588. }
  18589. },
  18590. beans: {
  18591. height: math.unit(1.15, "feet"),
  18592. name: "Beans",
  18593. image: {
  18594. source: "./media/characters/klay/beans.svg"
  18595. }
  18596. },
  18597. },
  18598. [
  18599. {
  18600. name: "Micro",
  18601. height: math.unit(6, "inches")
  18602. },
  18603. {
  18604. name: "Mini",
  18605. height: math.unit(3, "feet")
  18606. },
  18607. {
  18608. name: "Normal",
  18609. height: math.unit(6, "feet"),
  18610. default: true
  18611. },
  18612. {
  18613. name: "Big",
  18614. height: math.unit(25, "feet")
  18615. },
  18616. {
  18617. name: "Macro",
  18618. height: math.unit(100, "feet")
  18619. },
  18620. {
  18621. name: "Megamacro",
  18622. height: math.unit(400, "feet")
  18623. },
  18624. ]
  18625. ))
  18626. characterMakers.push(() => makeCharacter(
  18627. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18628. {
  18629. front: {
  18630. height: math.unit(6, "feet"),
  18631. weight: math.unit(160, "lb"),
  18632. name: "Front",
  18633. image: {
  18634. source: "./media/characters/marcus/front.svg",
  18635. extra: 734 / 676,
  18636. bottom: 0.03
  18637. }
  18638. },
  18639. },
  18640. [
  18641. {
  18642. name: "Little",
  18643. height: math.unit(6, "feet")
  18644. },
  18645. {
  18646. name: "Normal",
  18647. height: math.unit(110, "feet"),
  18648. default: true
  18649. },
  18650. {
  18651. name: "Macro",
  18652. height: math.unit(250, "feet")
  18653. },
  18654. {
  18655. name: "Megamacro",
  18656. height: math.unit(1000, "feet")
  18657. },
  18658. ]
  18659. ))
  18660. characterMakers.push(() => makeCharacter(
  18661. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18662. {
  18663. front: {
  18664. height: math.unit(7, "feet"),
  18665. weight: math.unit(275, "lb"),
  18666. name: "Front",
  18667. image: {
  18668. source: "./media/characters/claude-delroute/front.svg",
  18669. extra: 902/827,
  18670. bottom: 26/928
  18671. }
  18672. },
  18673. side: {
  18674. height: math.unit(7, "feet"),
  18675. weight: math.unit(275, "lb"),
  18676. name: "Side",
  18677. image: {
  18678. source: "./media/characters/claude-delroute/side.svg",
  18679. extra: 908/853,
  18680. bottom: 16/924
  18681. }
  18682. },
  18683. back: {
  18684. height: math.unit(7, "feet"),
  18685. weight: math.unit(275, "lb"),
  18686. name: "Back",
  18687. image: {
  18688. source: "./media/characters/claude-delroute/back.svg",
  18689. extra: 911/829,
  18690. bottom: 18/929
  18691. }
  18692. },
  18693. maw: {
  18694. height: math.unit(0.6407, "meters"),
  18695. name: "Maw",
  18696. image: {
  18697. source: "./media/characters/claude-delroute/maw.svg"
  18698. }
  18699. },
  18700. },
  18701. [
  18702. {
  18703. name: "Normal",
  18704. height: math.unit(7, "feet"),
  18705. default: true
  18706. },
  18707. {
  18708. name: "Lorge",
  18709. height: math.unit(20, "feet")
  18710. },
  18711. ]
  18712. ))
  18713. characterMakers.push(() => makeCharacter(
  18714. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18715. {
  18716. front: {
  18717. height: math.unit(8 + 4 / 12, "feet"),
  18718. weight: math.unit(600, "lb"),
  18719. name: "Front",
  18720. image: {
  18721. source: "./media/characters/dragonien/front.svg",
  18722. extra: 100 / 94,
  18723. bottom: 3.3 / 103.3445
  18724. }
  18725. },
  18726. back: {
  18727. height: math.unit(8 + 4 / 12, "feet"),
  18728. weight: math.unit(600, "lb"),
  18729. name: "Back",
  18730. image: {
  18731. source: "./media/characters/dragonien/back.svg",
  18732. extra: 776 / 746,
  18733. bottom: 6.4 / 782.0616
  18734. }
  18735. },
  18736. foot: {
  18737. height: math.unit(1.54, "feet"),
  18738. name: "Foot",
  18739. image: {
  18740. source: "./media/characters/dragonien/foot.svg",
  18741. }
  18742. },
  18743. },
  18744. [
  18745. {
  18746. name: "Normal",
  18747. height: math.unit(8 + 4 / 12, "feet"),
  18748. default: true
  18749. },
  18750. {
  18751. name: "Macro",
  18752. height: math.unit(200, "feet")
  18753. },
  18754. {
  18755. name: "Megamacro",
  18756. height: math.unit(1, "mile")
  18757. },
  18758. {
  18759. name: "Gigamacro",
  18760. height: math.unit(1000, "miles")
  18761. },
  18762. ]
  18763. ))
  18764. characterMakers.push(() => makeCharacter(
  18765. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18766. {
  18767. front: {
  18768. height: math.unit(5 + 2 / 12, "feet"),
  18769. weight: math.unit(110, "lb"),
  18770. name: "Front",
  18771. image: {
  18772. source: "./media/characters/desta/front.svg",
  18773. extra: 767 / 726,
  18774. bottom: 11.7 / 779
  18775. }
  18776. },
  18777. back: {
  18778. height: math.unit(5 + 2 / 12, "feet"),
  18779. weight: math.unit(110, "lb"),
  18780. name: "Back",
  18781. image: {
  18782. source: "./media/characters/desta/back.svg",
  18783. extra: 777 / 728,
  18784. bottom: 6 / 784
  18785. }
  18786. },
  18787. frontAlt: {
  18788. height: math.unit(5 + 2 / 12, "feet"),
  18789. weight: math.unit(110, "lb"),
  18790. name: "Front",
  18791. image: {
  18792. source: "./media/characters/desta/front-alt.svg",
  18793. extra: 1482 / 1417
  18794. }
  18795. },
  18796. side: {
  18797. height: math.unit(5 + 2 / 12, "feet"),
  18798. weight: math.unit(110, "lb"),
  18799. name: "Side",
  18800. image: {
  18801. source: "./media/characters/desta/side.svg",
  18802. extra: 2579 / 2491,
  18803. bottom: 0.053
  18804. }
  18805. },
  18806. },
  18807. [
  18808. {
  18809. name: "Micro",
  18810. height: math.unit(6, "inches")
  18811. },
  18812. {
  18813. name: "Normal",
  18814. height: math.unit(5 + 2 / 12, "feet"),
  18815. default: true
  18816. },
  18817. {
  18818. name: "Macro",
  18819. height: math.unit(62, "feet")
  18820. },
  18821. {
  18822. name: "Megamacro",
  18823. height: math.unit(1800, "feet")
  18824. },
  18825. ]
  18826. ))
  18827. characterMakers.push(() => makeCharacter(
  18828. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18829. {
  18830. front: {
  18831. height: math.unit(10, "feet"),
  18832. weight: math.unit(700, "lb"),
  18833. name: "Front",
  18834. image: {
  18835. source: "./media/characters/storm-alystar/front.svg",
  18836. extra: 2112 / 1898,
  18837. bottom: 0.034
  18838. }
  18839. },
  18840. },
  18841. [
  18842. {
  18843. name: "Micro",
  18844. height: math.unit(3.5, "inches")
  18845. },
  18846. {
  18847. name: "Normal",
  18848. height: math.unit(10, "feet"),
  18849. default: true
  18850. },
  18851. {
  18852. name: "Macro",
  18853. height: math.unit(400, "feet")
  18854. },
  18855. {
  18856. name: "Deific",
  18857. height: math.unit(60, "miles")
  18858. },
  18859. ]
  18860. ))
  18861. characterMakers.push(() => makeCharacter(
  18862. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18863. {
  18864. front: {
  18865. height: math.unit(2.35, "meters"),
  18866. weight: math.unit(119, "kg"),
  18867. name: "Front",
  18868. image: {
  18869. source: "./media/characters/ilia/front.svg",
  18870. extra: 1285 / 1255,
  18871. bottom: 0.06
  18872. }
  18873. },
  18874. },
  18875. [
  18876. {
  18877. name: "Normal",
  18878. height: math.unit(2.35, "meters")
  18879. },
  18880. {
  18881. name: "Macro",
  18882. height: math.unit(140, "meters"),
  18883. default: true
  18884. },
  18885. {
  18886. name: "Megamacro",
  18887. height: math.unit(100, "miles")
  18888. },
  18889. ]
  18890. ))
  18891. characterMakers.push(() => makeCharacter(
  18892. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18893. {
  18894. front: {
  18895. height: math.unit(6 + 5 / 12, "feet"),
  18896. weight: math.unit(190, "lb"),
  18897. name: "Front",
  18898. image: {
  18899. source: "./media/characters/kingdead/front.svg",
  18900. extra: 1228 / 1177
  18901. }
  18902. },
  18903. },
  18904. [
  18905. {
  18906. name: "Micro",
  18907. height: math.unit(7, "inches")
  18908. },
  18909. {
  18910. name: "Normal",
  18911. height: math.unit(6 + 5 / 12, "feet")
  18912. },
  18913. {
  18914. name: "Macro",
  18915. height: math.unit(150, "feet"),
  18916. default: true
  18917. },
  18918. {
  18919. name: "Megamacro",
  18920. height: math.unit(200, "miles")
  18921. },
  18922. ]
  18923. ))
  18924. characterMakers.push(() => makeCharacter(
  18925. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18926. {
  18927. front: {
  18928. height: math.unit(8, "feet"),
  18929. weight: math.unit(600, "lb"),
  18930. name: "Front",
  18931. image: {
  18932. source: "./media/characters/kyrehx/front.svg",
  18933. extra: 1195 / 1095,
  18934. bottom: 0.034
  18935. }
  18936. },
  18937. },
  18938. [
  18939. {
  18940. name: "Micro",
  18941. height: math.unit(2, "inches")
  18942. },
  18943. {
  18944. name: "Normal",
  18945. height: math.unit(8, "feet"),
  18946. default: true
  18947. },
  18948. {
  18949. name: "Macro",
  18950. height: math.unit(255, "feet")
  18951. },
  18952. ]
  18953. ))
  18954. characterMakers.push(() => makeCharacter(
  18955. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18956. {
  18957. front: {
  18958. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18959. weight: math.unit(184, "lb"),
  18960. name: "Front",
  18961. image: {
  18962. source: "./media/characters/xang/front.svg",
  18963. extra: 845 / 755
  18964. }
  18965. },
  18966. },
  18967. [
  18968. {
  18969. name: "Normal",
  18970. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18971. default: true
  18972. },
  18973. {
  18974. name: "Macro",
  18975. height: math.unit(0.935 * 146, "feet")
  18976. },
  18977. {
  18978. name: "Megamacro",
  18979. height: math.unit(0.935 * 3, "miles")
  18980. },
  18981. ]
  18982. ))
  18983. characterMakers.push(() => makeCharacter(
  18984. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18985. {
  18986. frontDressed: {
  18987. height: math.unit(5 + 7 / 12, "feet"),
  18988. weight: math.unit(140, "lb"),
  18989. name: "Front (Dressed)",
  18990. image: {
  18991. source: "./media/characters/doc-weardno/front-dressed.svg",
  18992. extra: 263 / 234
  18993. }
  18994. },
  18995. backDressed: {
  18996. height: math.unit(5 + 7 / 12, "feet"),
  18997. weight: math.unit(140, "lb"),
  18998. name: "Back (Dressed)",
  18999. image: {
  19000. source: "./media/characters/doc-weardno/back-dressed.svg",
  19001. extra: 266 / 238
  19002. }
  19003. },
  19004. front: {
  19005. height: math.unit(5 + 7 / 12, "feet"),
  19006. weight: math.unit(140, "lb"),
  19007. name: "Front",
  19008. image: {
  19009. source: "./media/characters/doc-weardno/front.svg",
  19010. extra: 254 / 233
  19011. }
  19012. },
  19013. },
  19014. [
  19015. {
  19016. name: "Micro",
  19017. height: math.unit(3, "inches")
  19018. },
  19019. {
  19020. name: "Normal",
  19021. height: math.unit(5 + 7 / 12, "feet"),
  19022. default: true
  19023. },
  19024. {
  19025. name: "Macro",
  19026. height: math.unit(25, "feet")
  19027. },
  19028. {
  19029. name: "Megamacro",
  19030. height: math.unit(2, "miles")
  19031. },
  19032. ]
  19033. ))
  19034. characterMakers.push(() => makeCharacter(
  19035. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19036. {
  19037. front: {
  19038. height: math.unit(6 + 2 / 12, "feet"),
  19039. weight: math.unit(153, "lb"),
  19040. name: "Front",
  19041. image: {
  19042. source: "./media/characters/seth-whilst/front.svg",
  19043. bottom: 0.07
  19044. }
  19045. },
  19046. },
  19047. [
  19048. {
  19049. name: "Micro",
  19050. height: math.unit(5, "inches")
  19051. },
  19052. {
  19053. name: "Normal",
  19054. height: math.unit(6 + 2 / 12, "feet"),
  19055. default: true
  19056. },
  19057. ]
  19058. ))
  19059. characterMakers.push(() => makeCharacter(
  19060. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19061. {
  19062. front: {
  19063. height: math.unit(3, "inches"),
  19064. weight: math.unit(8, "grams"),
  19065. name: "Front",
  19066. image: {
  19067. source: "./media/characters/pocket-jabari/front.svg",
  19068. extra: 1024 / 974,
  19069. bottom: 0.039
  19070. }
  19071. },
  19072. },
  19073. [
  19074. {
  19075. name: "Minimicro",
  19076. height: math.unit(8, "mm")
  19077. },
  19078. {
  19079. name: "Micro",
  19080. height: math.unit(3, "inches"),
  19081. default: true
  19082. },
  19083. {
  19084. name: "Normal",
  19085. height: math.unit(3, "feet")
  19086. },
  19087. ]
  19088. ))
  19089. characterMakers.push(() => makeCharacter(
  19090. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19091. {
  19092. front: {
  19093. height: math.unit(15, "feet"),
  19094. weight: math.unit(3280, "lb"),
  19095. name: "Front",
  19096. image: {
  19097. source: "./media/characters/sapphy/front.svg",
  19098. extra: 671 / 577,
  19099. bottom: 0.085
  19100. }
  19101. },
  19102. back: {
  19103. height: math.unit(15, "feet"),
  19104. weight: math.unit(3280, "lb"),
  19105. name: "Back",
  19106. image: {
  19107. source: "./media/characters/sapphy/back.svg",
  19108. extra: 631 / 607,
  19109. bottom: 0.045
  19110. }
  19111. },
  19112. },
  19113. [
  19114. {
  19115. name: "Normal",
  19116. height: math.unit(15, "feet")
  19117. },
  19118. {
  19119. name: "Casual Macro",
  19120. height: math.unit(120, "feet")
  19121. },
  19122. {
  19123. name: "Macro",
  19124. height: math.unit(2150, "feet"),
  19125. default: true
  19126. },
  19127. {
  19128. name: "Megamacro",
  19129. height: math.unit(8, "miles")
  19130. },
  19131. {
  19132. name: "Galaxy Mom",
  19133. height: math.unit(6, "megalightyears")
  19134. },
  19135. ]
  19136. ))
  19137. characterMakers.push(() => makeCharacter(
  19138. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19139. {
  19140. front: {
  19141. height: math.unit(6, "feet"),
  19142. weight: math.unit(170, "lb"),
  19143. name: "Front",
  19144. image: {
  19145. source: "./media/characters/kiro/front.svg",
  19146. extra: 1064 / 1012,
  19147. bottom: 0.052
  19148. }
  19149. },
  19150. },
  19151. [
  19152. {
  19153. name: "Micro",
  19154. height: math.unit(6, "inches")
  19155. },
  19156. {
  19157. name: "Normal",
  19158. height: math.unit(6, "feet"),
  19159. default: true
  19160. },
  19161. {
  19162. name: "Macro",
  19163. height: math.unit(72, "feet")
  19164. },
  19165. ]
  19166. ))
  19167. characterMakers.push(() => makeCharacter(
  19168. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19169. {
  19170. front: {
  19171. height: math.unit(5 + 9 / 12, "feet"),
  19172. weight: math.unit(175, "lb"),
  19173. name: "Front",
  19174. image: {
  19175. source: "./media/characters/irishfox/front.svg",
  19176. extra: 1912 / 1680,
  19177. bottom: 0.02
  19178. }
  19179. },
  19180. },
  19181. [
  19182. {
  19183. name: "Nano",
  19184. height: math.unit(1, "mm")
  19185. },
  19186. {
  19187. name: "Micro",
  19188. height: math.unit(2, "inches")
  19189. },
  19190. {
  19191. name: "Normal",
  19192. height: math.unit(5 + 9 / 12, "feet"),
  19193. default: true
  19194. },
  19195. {
  19196. name: "Macro",
  19197. height: math.unit(45, "feet")
  19198. },
  19199. ]
  19200. ))
  19201. characterMakers.push(() => makeCharacter(
  19202. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19203. {
  19204. front: {
  19205. height: math.unit(6 + 1 / 12, "feet"),
  19206. weight: math.unit(75, "lb"),
  19207. name: "Front",
  19208. image: {
  19209. source: "./media/characters/aronai-sieyes/front.svg",
  19210. extra: 1532/1450,
  19211. bottom: 42/1574
  19212. }
  19213. },
  19214. side: {
  19215. height: math.unit(6 + 1 / 12, "feet"),
  19216. weight: math.unit(75, "lb"),
  19217. name: "Side",
  19218. image: {
  19219. source: "./media/characters/aronai-sieyes/side.svg",
  19220. extra: 1422/1365,
  19221. bottom: 148/1570
  19222. }
  19223. },
  19224. back: {
  19225. height: math.unit(6 + 1 / 12, "feet"),
  19226. weight: math.unit(75, "lb"),
  19227. name: "Back",
  19228. image: {
  19229. source: "./media/characters/aronai-sieyes/back.svg",
  19230. extra: 1526/1464,
  19231. bottom: 51/1577
  19232. }
  19233. },
  19234. dressed: {
  19235. height: math.unit(6 + 1 / 12, "feet"),
  19236. weight: math.unit(75, "lb"),
  19237. name: "Dressed",
  19238. image: {
  19239. source: "./media/characters/aronai-sieyes/dressed.svg",
  19240. extra: 1559/1483,
  19241. bottom: 39/1598
  19242. }
  19243. },
  19244. slit: {
  19245. height: math.unit(1.3, "feet"),
  19246. name: "Slit",
  19247. image: {
  19248. source: "./media/characters/aronai-sieyes/slit.svg"
  19249. }
  19250. },
  19251. slitSpread: {
  19252. height: math.unit(0.9, "feet"),
  19253. name: "Slit (Spread)",
  19254. image: {
  19255. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19256. }
  19257. },
  19258. rump: {
  19259. height: math.unit(1.3, "feet"),
  19260. name: "Rump",
  19261. image: {
  19262. source: "./media/characters/aronai-sieyes/rump.svg"
  19263. }
  19264. },
  19265. maw: {
  19266. height: math.unit(1.25, "feet"),
  19267. name: "Maw",
  19268. image: {
  19269. source: "./media/characters/aronai-sieyes/maw.svg"
  19270. }
  19271. },
  19272. feral: {
  19273. height: math.unit(18, "feet"),
  19274. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19275. name: "Feral",
  19276. image: {
  19277. source: "./media/characters/aronai-sieyes/feral.svg",
  19278. extra: 1530 / 1240,
  19279. bottom: 0.035
  19280. }
  19281. },
  19282. },
  19283. [
  19284. {
  19285. name: "Micro",
  19286. height: math.unit(2, "inches")
  19287. },
  19288. {
  19289. name: "Normal",
  19290. height: math.unit(6 + 1 / 12, "feet"),
  19291. default: true
  19292. }
  19293. ]
  19294. ))
  19295. characterMakers.push(() => makeCharacter(
  19296. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19297. {
  19298. front: {
  19299. height: math.unit(12, "feet"),
  19300. weight: math.unit(410, "kg"),
  19301. name: "Front",
  19302. image: {
  19303. source: "./media/characters/xuna/front.svg",
  19304. extra: 2184 / 1980
  19305. }
  19306. },
  19307. side: {
  19308. height: math.unit(12, "feet"),
  19309. weight: math.unit(410, "kg"),
  19310. name: "Side",
  19311. image: {
  19312. source: "./media/characters/xuna/side.svg",
  19313. extra: 2184 / 1980
  19314. }
  19315. },
  19316. back: {
  19317. height: math.unit(12, "feet"),
  19318. weight: math.unit(410, "kg"),
  19319. name: "Back",
  19320. image: {
  19321. source: "./media/characters/xuna/back.svg",
  19322. extra: 2184 / 1980
  19323. }
  19324. },
  19325. },
  19326. [
  19327. {
  19328. name: "Nano glow",
  19329. height: math.unit(10, "nm")
  19330. },
  19331. {
  19332. name: "Micro floof",
  19333. height: math.unit(0.3, "m")
  19334. },
  19335. {
  19336. name: "Huggable softy boi",
  19337. height: math.unit(3.6576, "m"),
  19338. default: true
  19339. },
  19340. {
  19341. name: "Admirable floof",
  19342. height: math.unit(80, "meters")
  19343. },
  19344. {
  19345. name: "Gentle macro",
  19346. height: math.unit(300, "meters")
  19347. },
  19348. {
  19349. name: "Very careful floof",
  19350. height: math.unit(3200, "meters")
  19351. },
  19352. {
  19353. name: "The mega floof",
  19354. height: math.unit(36000, "meters")
  19355. },
  19356. {
  19357. name: "Giga-fur-Wicker",
  19358. height: math.unit(4800000, "meters")
  19359. },
  19360. {
  19361. name: "Licky world",
  19362. height: math.unit(20000000, "meters")
  19363. },
  19364. {
  19365. name: "Floofy cyan sun",
  19366. height: math.unit(1500000000, "meters")
  19367. },
  19368. {
  19369. name: "Milky Wicker",
  19370. height: math.unit(1000000000000000000000, "meters")
  19371. },
  19372. {
  19373. name: "The observing Wicker",
  19374. height: math.unit(999999999999999999999999999, "meters")
  19375. },
  19376. ]
  19377. ))
  19378. characterMakers.push(() => makeCharacter(
  19379. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19380. {
  19381. front: {
  19382. height: math.unit(5 + 9 / 12, "feet"),
  19383. weight: math.unit(150, "lb"),
  19384. name: "Front",
  19385. image: {
  19386. source: "./media/characters/arokha-sieyes/front.svg",
  19387. extra: 1425 / 1284,
  19388. bottom: 0.05
  19389. }
  19390. },
  19391. },
  19392. [
  19393. {
  19394. name: "Normal",
  19395. height: math.unit(5 + 9 / 12, "feet")
  19396. },
  19397. {
  19398. name: "Macro",
  19399. height: math.unit(30, "meters"),
  19400. default: true
  19401. },
  19402. ]
  19403. ))
  19404. characterMakers.push(() => makeCharacter(
  19405. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19406. {
  19407. front: {
  19408. height: math.unit(6, "feet"),
  19409. weight: math.unit(180, "lb"),
  19410. name: "Front",
  19411. image: {
  19412. source: "./media/characters/arokh-sieyes/front.svg",
  19413. extra: 1830 / 1769,
  19414. bottom: 0.01
  19415. }
  19416. },
  19417. },
  19418. [
  19419. {
  19420. name: "Normal",
  19421. height: math.unit(6, "feet")
  19422. },
  19423. {
  19424. name: "Macro",
  19425. height: math.unit(30, "meters"),
  19426. default: true
  19427. },
  19428. ]
  19429. ))
  19430. characterMakers.push(() => makeCharacter(
  19431. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19432. {
  19433. side: {
  19434. height: math.unit(13 + 1 / 12, "feet"),
  19435. weight: math.unit(8.5, "tonnes"),
  19436. name: "Side",
  19437. image: {
  19438. source: "./media/characters/goldeneye/side.svg",
  19439. extra: 1182 / 778,
  19440. bottom: 0.067
  19441. }
  19442. },
  19443. paw: {
  19444. height: math.unit(3.4, "feet"),
  19445. name: "Paw",
  19446. image: {
  19447. source: "./media/characters/goldeneye/paw.svg"
  19448. }
  19449. },
  19450. },
  19451. [
  19452. {
  19453. name: "Normal",
  19454. height: math.unit(13 + 1 / 12, "feet"),
  19455. default: true
  19456. },
  19457. ]
  19458. ))
  19459. characterMakers.push(() => makeCharacter(
  19460. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19461. {
  19462. front: {
  19463. height: math.unit(6 + 1 / 12, "feet"),
  19464. weight: math.unit(210, "lb"),
  19465. name: "Front",
  19466. image: {
  19467. source: "./media/characters/leonardo-lycheborne/front.svg",
  19468. extra: 776/723,
  19469. bottom: 34/810
  19470. }
  19471. },
  19472. side: {
  19473. height: math.unit(6 + 1 / 12, "feet"),
  19474. weight: math.unit(210, "lb"),
  19475. name: "Side",
  19476. image: {
  19477. source: "./media/characters/leonardo-lycheborne/side.svg",
  19478. extra: 780/728,
  19479. bottom: 12/792
  19480. }
  19481. },
  19482. back: {
  19483. height: math.unit(6 + 1 / 12, "feet"),
  19484. weight: math.unit(210, "lb"),
  19485. name: "Back",
  19486. image: {
  19487. source: "./media/characters/leonardo-lycheborne/back.svg",
  19488. extra: 775/721,
  19489. bottom: 17/792
  19490. }
  19491. },
  19492. hand: {
  19493. height: math.unit(1.08, "feet"),
  19494. name: "Hand",
  19495. image: {
  19496. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19497. }
  19498. },
  19499. foot: {
  19500. height: math.unit(1.32, "feet"),
  19501. name: "Foot",
  19502. image: {
  19503. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19504. }
  19505. },
  19506. maw: {
  19507. height: math.unit(1, "feet"),
  19508. name: "Maw",
  19509. image: {
  19510. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19511. }
  19512. },
  19513. were: {
  19514. height: math.unit(20, "feet"),
  19515. weight: math.unit(7800, "lb"),
  19516. name: "Were",
  19517. image: {
  19518. source: "./media/characters/leonardo-lycheborne/were.svg",
  19519. extra: 1224/1165,
  19520. bottom: 72/1296
  19521. }
  19522. },
  19523. feral: {
  19524. height: math.unit(7.5, "feet"),
  19525. weight: math.unit(600, "lb"),
  19526. name: "Feral",
  19527. image: {
  19528. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19529. extra: 797/702,
  19530. bottom: 139/936
  19531. }
  19532. },
  19533. taur: {
  19534. height: math.unit(11, "feet"),
  19535. weight: math.unit(3300, "lb"),
  19536. name: "Taur",
  19537. image: {
  19538. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19539. extra: 1271/1197,
  19540. bottom: 47/1318
  19541. }
  19542. },
  19543. barghest: {
  19544. height: math.unit(11, "feet"),
  19545. weight: math.unit(1300, "lb"),
  19546. name: "Barghest",
  19547. image: {
  19548. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19549. extra: 1291/1204,
  19550. bottom: 37/1328
  19551. }
  19552. },
  19553. dick: {
  19554. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19555. name: "Dick",
  19556. image: {
  19557. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19558. }
  19559. },
  19560. dickWere: {
  19561. height: math.unit((20) / 3.8, "feet"),
  19562. name: "Dick (Were)",
  19563. image: {
  19564. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19565. }
  19566. },
  19567. },
  19568. [
  19569. {
  19570. name: "Normal",
  19571. height: math.unit(6 + 1 / 12, "feet"),
  19572. default: true
  19573. },
  19574. ]
  19575. ))
  19576. characterMakers.push(() => makeCharacter(
  19577. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19578. {
  19579. front: {
  19580. height: math.unit(10, "feet"),
  19581. weight: math.unit(350, "lb"),
  19582. name: "Front",
  19583. image: {
  19584. source: "./media/characters/jet/front.svg",
  19585. extra: 2050 / 1980,
  19586. bottom: 0.013
  19587. }
  19588. },
  19589. back: {
  19590. height: math.unit(10, "feet"),
  19591. weight: math.unit(350, "lb"),
  19592. name: "Back",
  19593. image: {
  19594. source: "./media/characters/jet/back.svg",
  19595. extra: 2050 / 1980,
  19596. bottom: 0.013
  19597. }
  19598. },
  19599. },
  19600. [
  19601. {
  19602. name: "Micro",
  19603. height: math.unit(6, "inches")
  19604. },
  19605. {
  19606. name: "Normal",
  19607. height: math.unit(10, "feet"),
  19608. default: true
  19609. },
  19610. {
  19611. name: "Macro",
  19612. height: math.unit(100, "feet")
  19613. },
  19614. ]
  19615. ))
  19616. characterMakers.push(() => makeCharacter(
  19617. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19618. {
  19619. front: {
  19620. height: math.unit(15, "feet"),
  19621. weight: math.unit(2800, "lb"),
  19622. name: "Front",
  19623. image: {
  19624. source: "./media/characters/tanarath/front.svg",
  19625. extra: 2392 / 2220,
  19626. bottom: 0.03
  19627. }
  19628. },
  19629. back: {
  19630. height: math.unit(15, "feet"),
  19631. weight: math.unit(2800, "lb"),
  19632. name: "Back",
  19633. image: {
  19634. source: "./media/characters/tanarath/back.svg",
  19635. extra: 2392 / 2220,
  19636. bottom: 0.03
  19637. }
  19638. },
  19639. },
  19640. [
  19641. {
  19642. name: "Normal",
  19643. height: math.unit(15, "feet"),
  19644. default: true
  19645. },
  19646. ]
  19647. ))
  19648. characterMakers.push(() => makeCharacter(
  19649. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19650. {
  19651. front: {
  19652. height: math.unit(7 + 1 / 12, "feet"),
  19653. weight: math.unit(175, "lb"),
  19654. name: "Front",
  19655. image: {
  19656. source: "./media/characters/patty-cattybatty/front.svg",
  19657. extra: 908 / 874,
  19658. bottom: 0.025
  19659. }
  19660. },
  19661. },
  19662. [
  19663. {
  19664. name: "Micro",
  19665. height: math.unit(1, "inch")
  19666. },
  19667. {
  19668. name: "Normal",
  19669. height: math.unit(7 + 1 / 12, "feet")
  19670. },
  19671. {
  19672. name: "Mini Macro",
  19673. height: math.unit(155, "feet")
  19674. },
  19675. {
  19676. name: "Macro",
  19677. height: math.unit(1077, "feet")
  19678. },
  19679. {
  19680. name: "Mega Macro",
  19681. height: math.unit(47650, "feet"),
  19682. default: true
  19683. },
  19684. {
  19685. name: "Giga Macro",
  19686. height: math.unit(440, "miles")
  19687. },
  19688. {
  19689. name: "Tera Macro",
  19690. height: math.unit(8700, "miles")
  19691. },
  19692. {
  19693. name: "Planetary Macro",
  19694. height: math.unit(32700, "miles")
  19695. },
  19696. {
  19697. name: "Solar Macro",
  19698. height: math.unit(550000, "miles")
  19699. },
  19700. {
  19701. name: "Celestial Macro",
  19702. height: math.unit(2.5, "AU")
  19703. },
  19704. ]
  19705. ))
  19706. characterMakers.push(() => makeCharacter(
  19707. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19708. {
  19709. front: {
  19710. height: math.unit(4 + 5 / 12, "feet"),
  19711. weight: math.unit(90, "lb"),
  19712. name: "Front",
  19713. image: {
  19714. source: "./media/characters/cappu/front.svg",
  19715. extra: 1247 / 1152,
  19716. bottom: 0.012
  19717. }
  19718. },
  19719. },
  19720. [
  19721. {
  19722. name: "Normal",
  19723. height: math.unit(4 + 5 / 12, "feet"),
  19724. default: true
  19725. },
  19726. ]
  19727. ))
  19728. characterMakers.push(() => makeCharacter(
  19729. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19730. {
  19731. frontDressed: {
  19732. height: math.unit(70, "cm"),
  19733. weight: math.unit(6, "kg"),
  19734. name: "Front (Dressed)",
  19735. image: {
  19736. source: "./media/characters/sebi/front-dressed.svg",
  19737. extra: 713.5 / 686.5,
  19738. bottom: 0.003
  19739. }
  19740. },
  19741. front: {
  19742. height: math.unit(70, "cm"),
  19743. weight: math.unit(5, "kg"),
  19744. name: "Front",
  19745. image: {
  19746. source: "./media/characters/sebi/front.svg",
  19747. extra: 713.5 / 686.5,
  19748. bottom: 0.003
  19749. }
  19750. }
  19751. },
  19752. [
  19753. {
  19754. name: "Normal",
  19755. height: math.unit(70, "cm"),
  19756. default: true
  19757. },
  19758. {
  19759. name: "Macro",
  19760. height: math.unit(8, "meters")
  19761. },
  19762. ]
  19763. ))
  19764. characterMakers.push(() => makeCharacter(
  19765. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19766. {
  19767. front: {
  19768. height: math.unit(6, "feet"),
  19769. weight: math.unit(150, "lb"),
  19770. name: "Front",
  19771. image: {
  19772. source: "./media/characters/typhek/front.svg",
  19773. extra: 1948 / 1929,
  19774. bottom: 0.025
  19775. }
  19776. },
  19777. side: {
  19778. height: math.unit(6, "feet"),
  19779. weight: math.unit(150, "lb"),
  19780. name: "Side",
  19781. image: {
  19782. source: "./media/characters/typhek/side.svg",
  19783. extra: 2034 / 2010,
  19784. bottom: 0.003
  19785. }
  19786. },
  19787. back: {
  19788. height: math.unit(6, "feet"),
  19789. weight: math.unit(150, "lb"),
  19790. name: "Back",
  19791. image: {
  19792. source: "./media/characters/typhek/back.svg",
  19793. extra: 2005 / 1978,
  19794. bottom: 0.004
  19795. }
  19796. },
  19797. palm: {
  19798. height: math.unit(1.2, "feet"),
  19799. name: "Palm",
  19800. image: {
  19801. source: "./media/characters/typhek/palm.svg"
  19802. }
  19803. },
  19804. fist: {
  19805. height: math.unit(1.1, "feet"),
  19806. name: "Fist",
  19807. image: {
  19808. source: "./media/characters/typhek/fist.svg"
  19809. }
  19810. },
  19811. foot: {
  19812. height: math.unit(1.57, "feet"),
  19813. name: "Foot",
  19814. image: {
  19815. source: "./media/characters/typhek/foot.svg"
  19816. }
  19817. },
  19818. sole: {
  19819. height: math.unit(2.05, "feet"),
  19820. name: "Sole",
  19821. image: {
  19822. source: "./media/characters/typhek/sole.svg"
  19823. }
  19824. },
  19825. },
  19826. [
  19827. {
  19828. name: "Macro",
  19829. height: math.unit(40, "stories"),
  19830. default: true
  19831. },
  19832. {
  19833. name: "Megamacro",
  19834. height: math.unit(1, "mile")
  19835. },
  19836. {
  19837. name: "Gigamacro",
  19838. height: math.unit(4000, "solarradii")
  19839. },
  19840. {
  19841. name: "Universal",
  19842. height: math.unit(1.1, "universes")
  19843. }
  19844. ]
  19845. ))
  19846. characterMakers.push(() => makeCharacter(
  19847. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19848. {
  19849. side: {
  19850. height: math.unit(5 + 7 / 12, "feet"),
  19851. weight: math.unit(150, "lb"),
  19852. name: "Side",
  19853. image: {
  19854. source: "./media/characters/kassy/side.svg",
  19855. extra: 1280 / 1225,
  19856. bottom: 0.002
  19857. }
  19858. },
  19859. front: {
  19860. height: math.unit(5 + 7 / 12, "feet"),
  19861. weight: math.unit(150, "lb"),
  19862. name: "Front",
  19863. image: {
  19864. source: "./media/characters/kassy/front.svg",
  19865. extra: 1280 / 1225,
  19866. bottom: 0.025
  19867. }
  19868. },
  19869. back: {
  19870. height: math.unit(5 + 7 / 12, "feet"),
  19871. weight: math.unit(150, "lb"),
  19872. name: "Back",
  19873. image: {
  19874. source: "./media/characters/kassy/back.svg",
  19875. extra: 1280 / 1225,
  19876. bottom: 0.002
  19877. }
  19878. },
  19879. foot: {
  19880. height: math.unit(1.266, "feet"),
  19881. name: "Foot",
  19882. image: {
  19883. source: "./media/characters/kassy/foot.svg"
  19884. }
  19885. },
  19886. },
  19887. [
  19888. {
  19889. name: "Normal",
  19890. height: math.unit(5 + 7 / 12, "feet")
  19891. },
  19892. {
  19893. name: "Macro",
  19894. height: math.unit(137, "feet"),
  19895. default: true
  19896. },
  19897. {
  19898. name: "Megamacro",
  19899. height: math.unit(1, "mile")
  19900. },
  19901. ]
  19902. ))
  19903. characterMakers.push(() => makeCharacter(
  19904. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19905. {
  19906. front: {
  19907. height: math.unit(6 + 1 / 12, "feet"),
  19908. weight: math.unit(200, "lb"),
  19909. name: "Front",
  19910. image: {
  19911. source: "./media/characters/neil/front.svg",
  19912. extra: 1326 / 1250,
  19913. bottom: 0.023
  19914. }
  19915. },
  19916. },
  19917. [
  19918. {
  19919. name: "Normal",
  19920. height: math.unit(6 + 1 / 12, "feet"),
  19921. default: true
  19922. },
  19923. {
  19924. name: "Macro",
  19925. height: math.unit(200, "feet")
  19926. },
  19927. ]
  19928. ))
  19929. characterMakers.push(() => makeCharacter(
  19930. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19931. {
  19932. front: {
  19933. height: math.unit(5 + 9 / 12, "feet"),
  19934. weight: math.unit(190, "lb"),
  19935. name: "Front",
  19936. image: {
  19937. source: "./media/characters/atticus/front.svg",
  19938. extra: 2934 / 2785,
  19939. bottom: 0.025
  19940. }
  19941. },
  19942. },
  19943. [
  19944. {
  19945. name: "Normal",
  19946. height: math.unit(5 + 9 / 12, "feet"),
  19947. default: true
  19948. },
  19949. {
  19950. name: "Macro",
  19951. height: math.unit(180, "feet")
  19952. },
  19953. ]
  19954. ))
  19955. characterMakers.push(() => makeCharacter(
  19956. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19957. {
  19958. side: {
  19959. height: math.unit(9, "feet"),
  19960. weight: math.unit(650, "lb"),
  19961. name: "Side",
  19962. image: {
  19963. source: "./media/characters/milo/side.svg",
  19964. extra: 2644 / 2310,
  19965. bottom: 0.032
  19966. }
  19967. },
  19968. },
  19969. [
  19970. {
  19971. name: "Normal",
  19972. height: math.unit(9, "feet"),
  19973. default: true
  19974. },
  19975. {
  19976. name: "Macro",
  19977. height: math.unit(300, "feet")
  19978. },
  19979. ]
  19980. ))
  19981. characterMakers.push(() => makeCharacter(
  19982. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19983. {
  19984. side: {
  19985. height: math.unit(8, "meters"),
  19986. weight: math.unit(90000, "kg"),
  19987. name: "Side",
  19988. image: {
  19989. source: "./media/characters/ijzer/side.svg",
  19990. extra: 2756 / 1600,
  19991. bottom: 0.01
  19992. }
  19993. },
  19994. },
  19995. [
  19996. {
  19997. name: "Small",
  19998. height: math.unit(3, "meters")
  19999. },
  20000. {
  20001. name: "Normal",
  20002. height: math.unit(8, "meters"),
  20003. default: true
  20004. },
  20005. {
  20006. name: "Normal+",
  20007. height: math.unit(10, "meters")
  20008. },
  20009. {
  20010. name: "Bigger",
  20011. height: math.unit(24, "meters")
  20012. },
  20013. {
  20014. name: "Huge",
  20015. height: math.unit(80, "meters")
  20016. },
  20017. ]
  20018. ))
  20019. characterMakers.push(() => makeCharacter(
  20020. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20021. {
  20022. front: {
  20023. height: math.unit(6 + 2 / 12, "feet"),
  20024. weight: math.unit(153, "lb"),
  20025. name: "Front",
  20026. image: {
  20027. source: "./media/characters/luca-cervicum/front.svg",
  20028. extra: 370 / 327,
  20029. bottom: 0.015
  20030. }
  20031. },
  20032. back: {
  20033. height: math.unit(6 + 2 / 12, "feet"),
  20034. weight: math.unit(153, "lb"),
  20035. name: "Back",
  20036. image: {
  20037. source: "./media/characters/luca-cervicum/back.svg",
  20038. extra: 367 / 333,
  20039. bottom: 0.005
  20040. }
  20041. },
  20042. frontGear: {
  20043. height: math.unit(6 + 2 / 12, "feet"),
  20044. weight: math.unit(173, "lb"),
  20045. name: "Front (Gear)",
  20046. image: {
  20047. source: "./media/characters/luca-cervicum/front-gear.svg",
  20048. extra: 377 / 333,
  20049. bottom: 0.006
  20050. }
  20051. },
  20052. },
  20053. [
  20054. {
  20055. name: "Normal",
  20056. height: math.unit(6 + 2 / 12, "feet"),
  20057. default: true
  20058. },
  20059. ]
  20060. ))
  20061. characterMakers.push(() => makeCharacter(
  20062. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20063. {
  20064. front: {
  20065. height: math.unit(6 + 1 / 12, "feet"),
  20066. weight: math.unit(304, "lb"),
  20067. name: "Front",
  20068. image: {
  20069. source: "./media/characters/oliver/front.svg",
  20070. extra: 157 / 143,
  20071. bottom: 0.08
  20072. }
  20073. },
  20074. },
  20075. [
  20076. {
  20077. name: "Normal",
  20078. height: math.unit(6 + 1 / 12, "feet"),
  20079. default: true
  20080. },
  20081. ]
  20082. ))
  20083. characterMakers.push(() => makeCharacter(
  20084. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20085. {
  20086. front: {
  20087. height: math.unit(5 + 7 / 12, "feet"),
  20088. weight: math.unit(140, "lb"),
  20089. name: "Front",
  20090. image: {
  20091. source: "./media/characters/shane/front.svg",
  20092. extra: 304 / 289,
  20093. bottom: 0.005
  20094. }
  20095. },
  20096. },
  20097. [
  20098. {
  20099. name: "Normal",
  20100. height: math.unit(5 + 7 / 12, "feet"),
  20101. default: true
  20102. },
  20103. ]
  20104. ))
  20105. characterMakers.push(() => makeCharacter(
  20106. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20107. {
  20108. front: {
  20109. height: math.unit(5 + 9 / 12, "feet"),
  20110. weight: math.unit(178, "lb"),
  20111. name: "Front",
  20112. image: {
  20113. source: "./media/characters/shin/front.svg",
  20114. extra: 159 / 151,
  20115. bottom: 0.015
  20116. }
  20117. },
  20118. },
  20119. [
  20120. {
  20121. name: "Normal",
  20122. height: math.unit(5 + 9 / 12, "feet"),
  20123. default: true
  20124. },
  20125. ]
  20126. ))
  20127. characterMakers.push(() => makeCharacter(
  20128. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20129. {
  20130. front: {
  20131. height: math.unit(5 + 10 / 12, "feet"),
  20132. weight: math.unit(168, "lb"),
  20133. name: "Front",
  20134. image: {
  20135. source: "./media/characters/xerxes/front.svg",
  20136. extra: 282 / 260,
  20137. bottom: 0.045
  20138. }
  20139. },
  20140. },
  20141. [
  20142. {
  20143. name: "Normal",
  20144. height: math.unit(5 + 10 / 12, "feet"),
  20145. default: true
  20146. },
  20147. ]
  20148. ))
  20149. characterMakers.push(() => makeCharacter(
  20150. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20151. {
  20152. front: {
  20153. height: math.unit(6 + 7 / 12, "feet"),
  20154. weight: math.unit(208, "lb"),
  20155. name: "Front",
  20156. image: {
  20157. source: "./media/characters/chaska/front.svg",
  20158. extra: 332 / 319,
  20159. bottom: 0.015
  20160. }
  20161. },
  20162. },
  20163. [
  20164. {
  20165. name: "Normal",
  20166. height: math.unit(6 + 7 / 12, "feet"),
  20167. default: true
  20168. },
  20169. ]
  20170. ))
  20171. characterMakers.push(() => makeCharacter(
  20172. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20173. {
  20174. front: {
  20175. height: math.unit(5 + 8 / 12, "feet"),
  20176. weight: math.unit(208, "lb"),
  20177. name: "Front",
  20178. image: {
  20179. source: "./media/characters/enuk/front.svg",
  20180. extra: 437 / 406,
  20181. bottom: 0.02
  20182. }
  20183. },
  20184. },
  20185. [
  20186. {
  20187. name: "Normal",
  20188. height: math.unit(5 + 8 / 12, "feet"),
  20189. default: true
  20190. },
  20191. ]
  20192. ))
  20193. characterMakers.push(() => makeCharacter(
  20194. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20195. {
  20196. front: {
  20197. height: math.unit(5 + 10 / 12, "feet"),
  20198. weight: math.unit(252, "lb"),
  20199. name: "Front",
  20200. image: {
  20201. source: "./media/characters/bruun/front.svg",
  20202. extra: 197 / 187,
  20203. bottom: 0.012
  20204. }
  20205. },
  20206. },
  20207. [
  20208. {
  20209. name: "Normal",
  20210. height: math.unit(5 + 10 / 12, "feet"),
  20211. default: true
  20212. },
  20213. ]
  20214. ))
  20215. characterMakers.push(() => makeCharacter(
  20216. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20217. {
  20218. front: {
  20219. height: math.unit(6 + 10 / 12, "feet"),
  20220. weight: math.unit(255, "lb"),
  20221. name: "Front",
  20222. image: {
  20223. source: "./media/characters/alexeev/front.svg",
  20224. extra: 213 / 200,
  20225. bottom: 0.05
  20226. }
  20227. },
  20228. },
  20229. [
  20230. {
  20231. name: "Normal",
  20232. height: math.unit(6 + 10 / 12, "feet"),
  20233. default: true
  20234. },
  20235. ]
  20236. ))
  20237. characterMakers.push(() => makeCharacter(
  20238. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20239. {
  20240. front: {
  20241. height: math.unit(2 + 8 / 12, "feet"),
  20242. weight: math.unit(22, "lb"),
  20243. name: "Front",
  20244. image: {
  20245. source: "./media/characters/evelyn/front.svg",
  20246. extra: 208 / 180
  20247. }
  20248. },
  20249. },
  20250. [
  20251. {
  20252. name: "Normal",
  20253. height: math.unit(2 + 8 / 12, "feet"),
  20254. default: true
  20255. },
  20256. ]
  20257. ))
  20258. characterMakers.push(() => makeCharacter(
  20259. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20260. {
  20261. front: {
  20262. height: math.unit(5 + 9 / 12, "feet"),
  20263. weight: math.unit(139, "lb"),
  20264. name: "Front",
  20265. image: {
  20266. source: "./media/characters/inca/front.svg",
  20267. extra: 294 / 291,
  20268. bottom: 0.03
  20269. }
  20270. },
  20271. },
  20272. [
  20273. {
  20274. name: "Normal",
  20275. height: math.unit(5 + 9 / 12, "feet"),
  20276. default: true
  20277. },
  20278. ]
  20279. ))
  20280. characterMakers.push(() => makeCharacter(
  20281. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20282. {
  20283. front: {
  20284. height: math.unit(6 + 3 / 12, "feet"),
  20285. weight: math.unit(185, "lb"),
  20286. name: "Front",
  20287. image: {
  20288. source: "./media/characters/mera/front.svg",
  20289. extra: 291 / 277,
  20290. bottom: 0.03
  20291. }
  20292. },
  20293. },
  20294. [
  20295. {
  20296. name: "Normal",
  20297. height: math.unit(6 + 3 / 12, "feet"),
  20298. default: true
  20299. },
  20300. ]
  20301. ))
  20302. characterMakers.push(() => makeCharacter(
  20303. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20304. {
  20305. front: {
  20306. height: math.unit(6 + 7 / 12, "feet"),
  20307. weight: math.unit(160, "lb"),
  20308. name: "Front",
  20309. image: {
  20310. source: "./media/characters/ceres/front.svg",
  20311. extra: 1023 / 950,
  20312. bottom: 0.027
  20313. }
  20314. },
  20315. back: {
  20316. height: math.unit(6 + 7 / 12, "feet"),
  20317. weight: math.unit(160, "lb"),
  20318. name: "Back",
  20319. image: {
  20320. source: "./media/characters/ceres/back.svg",
  20321. extra: 1023 / 950
  20322. }
  20323. },
  20324. },
  20325. [
  20326. {
  20327. name: "Normal",
  20328. height: math.unit(6 + 7 / 12, "feet"),
  20329. default: true
  20330. },
  20331. ]
  20332. ))
  20333. characterMakers.push(() => makeCharacter(
  20334. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20335. {
  20336. front: {
  20337. height: math.unit(5 + 10 / 12, "feet"),
  20338. weight: math.unit(150, "lb"),
  20339. name: "Front",
  20340. image: {
  20341. source: "./media/characters/kris/front.svg",
  20342. extra: 885 / 803,
  20343. bottom: 0.03
  20344. }
  20345. },
  20346. },
  20347. [
  20348. {
  20349. name: "Normal",
  20350. height: math.unit(5 + 10 / 12, "feet"),
  20351. default: true
  20352. },
  20353. ]
  20354. ))
  20355. characterMakers.push(() => makeCharacter(
  20356. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20357. {
  20358. front: {
  20359. height: math.unit(7, "feet"),
  20360. weight: math.unit(120, "kg"),
  20361. name: "Front",
  20362. image: {
  20363. source: "./media/characters/taluthus/front.svg",
  20364. extra: 903 / 833,
  20365. bottom: 0.015
  20366. }
  20367. },
  20368. },
  20369. [
  20370. {
  20371. name: "Normal",
  20372. height: math.unit(7, "feet"),
  20373. default: true
  20374. },
  20375. {
  20376. name: "Macro",
  20377. height: math.unit(300, "feet")
  20378. },
  20379. ]
  20380. ))
  20381. characterMakers.push(() => makeCharacter(
  20382. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20383. {
  20384. front: {
  20385. height: math.unit(5 + 9 / 12, "feet"),
  20386. weight: math.unit(145, "lb"),
  20387. name: "Front",
  20388. image: {
  20389. source: "./media/characters/dawn/front.svg",
  20390. extra: 2094 / 2016,
  20391. bottom: 0.025
  20392. }
  20393. },
  20394. back: {
  20395. height: math.unit(5 + 9 / 12, "feet"),
  20396. weight: math.unit(160, "lb"),
  20397. name: "Back",
  20398. image: {
  20399. source: "./media/characters/dawn/back.svg",
  20400. extra: 2112 / 2080,
  20401. bottom: 0.005
  20402. }
  20403. },
  20404. },
  20405. [
  20406. {
  20407. name: "Normal",
  20408. height: math.unit(6 + 7 / 12, "feet"),
  20409. default: true
  20410. },
  20411. ]
  20412. ))
  20413. characterMakers.push(() => makeCharacter(
  20414. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20415. {
  20416. anthro: {
  20417. height: math.unit(8 + 3 / 12, "feet"),
  20418. weight: math.unit(450, "lb"),
  20419. name: "Anthro",
  20420. image: {
  20421. source: "./media/characters/arador/anthro.svg",
  20422. extra: 1835 / 1718,
  20423. bottom: 0.025
  20424. }
  20425. },
  20426. feral: {
  20427. height: math.unit(4, "feet"),
  20428. weight: math.unit(200, "lb"),
  20429. name: "Feral",
  20430. image: {
  20431. source: "./media/characters/arador/feral.svg",
  20432. extra: 1683 / 1514,
  20433. bottom: 0.07
  20434. }
  20435. },
  20436. },
  20437. [
  20438. {
  20439. name: "Normal",
  20440. height: math.unit(8 + 3 / 12, "feet")
  20441. },
  20442. {
  20443. name: "Macro",
  20444. height: math.unit(82.5, "feet"),
  20445. default: true
  20446. },
  20447. ]
  20448. ))
  20449. characterMakers.push(() => makeCharacter(
  20450. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20451. {
  20452. front: {
  20453. height: math.unit(5 + 10 / 12, "feet"),
  20454. weight: math.unit(125, "lb"),
  20455. name: "Front",
  20456. image: {
  20457. source: "./media/characters/dharsi/front.svg",
  20458. extra: 716 / 630,
  20459. bottom: 0.035
  20460. }
  20461. },
  20462. },
  20463. [
  20464. {
  20465. name: "Nano",
  20466. height: math.unit(100, "nm")
  20467. },
  20468. {
  20469. name: "Micro",
  20470. height: math.unit(2, "inches")
  20471. },
  20472. {
  20473. name: "Normal",
  20474. height: math.unit(5 + 10 / 12, "feet"),
  20475. default: true
  20476. },
  20477. {
  20478. name: "Macro",
  20479. height: math.unit(1000, "feet")
  20480. },
  20481. {
  20482. name: "Megamacro",
  20483. height: math.unit(10, "miles")
  20484. },
  20485. {
  20486. name: "Gigamacro",
  20487. height: math.unit(3000, "miles")
  20488. },
  20489. {
  20490. name: "Teramacro",
  20491. height: math.unit(500000, "miles")
  20492. },
  20493. {
  20494. name: "Teramacro+",
  20495. height: math.unit(30, "galaxies")
  20496. },
  20497. ]
  20498. ))
  20499. characterMakers.push(() => makeCharacter(
  20500. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20501. {
  20502. front: {
  20503. height: math.unit(6, "feet"),
  20504. weight: math.unit(150, "lb"),
  20505. name: "Front",
  20506. image: {
  20507. source: "./media/characters/deathy/front.svg",
  20508. extra: 1552 / 1463,
  20509. bottom: 0.025
  20510. }
  20511. },
  20512. side: {
  20513. height: math.unit(6, "feet"),
  20514. weight: math.unit(150, "lb"),
  20515. name: "Side",
  20516. image: {
  20517. source: "./media/characters/deathy/side.svg",
  20518. extra: 1604 / 1455,
  20519. bottom: 0.025
  20520. }
  20521. },
  20522. back: {
  20523. height: math.unit(6, "feet"),
  20524. weight: math.unit(150, "lb"),
  20525. name: "Back",
  20526. image: {
  20527. source: "./media/characters/deathy/back.svg",
  20528. extra: 1580 / 1463,
  20529. bottom: 0.005
  20530. }
  20531. },
  20532. },
  20533. [
  20534. {
  20535. name: "Micro",
  20536. height: math.unit(5, "millimeters")
  20537. },
  20538. {
  20539. name: "Normal",
  20540. height: math.unit(6 + 5 / 12, "feet"),
  20541. default: true
  20542. },
  20543. ]
  20544. ))
  20545. characterMakers.push(() => makeCharacter(
  20546. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20547. {
  20548. front: {
  20549. height: math.unit(16, "feet"),
  20550. weight: math.unit(4000, "lb"),
  20551. name: "Front",
  20552. image: {
  20553. source: "./media/characters/juniper/front.svg",
  20554. bottom: 0.04
  20555. }
  20556. },
  20557. },
  20558. [
  20559. {
  20560. name: "Normal",
  20561. height: math.unit(16, "feet"),
  20562. default: true
  20563. },
  20564. ]
  20565. ))
  20566. characterMakers.push(() => makeCharacter(
  20567. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20568. {
  20569. front: {
  20570. height: math.unit(6, "feet"),
  20571. weight: math.unit(150, "lb"),
  20572. name: "Front",
  20573. image: {
  20574. source: "./media/characters/hipster/front.svg",
  20575. extra: 1312 / 1209,
  20576. bottom: 0.025
  20577. }
  20578. },
  20579. back: {
  20580. height: math.unit(6, "feet"),
  20581. weight: math.unit(150, "lb"),
  20582. name: "Back",
  20583. image: {
  20584. source: "./media/characters/hipster/back.svg",
  20585. extra: 1281 / 1196,
  20586. bottom: 0.01
  20587. }
  20588. },
  20589. },
  20590. [
  20591. {
  20592. name: "Micro",
  20593. height: math.unit(1, "mm")
  20594. },
  20595. {
  20596. name: "Normal",
  20597. height: math.unit(4, "inches"),
  20598. default: true
  20599. },
  20600. {
  20601. name: "Macro",
  20602. height: math.unit(500, "feet")
  20603. },
  20604. {
  20605. name: "Megamacro",
  20606. height: math.unit(1000, "miles")
  20607. },
  20608. ]
  20609. ))
  20610. characterMakers.push(() => makeCharacter(
  20611. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20612. {
  20613. front: {
  20614. height: math.unit(6, "feet"),
  20615. weight: math.unit(150, "lb"),
  20616. name: "Front",
  20617. image: {
  20618. source: "./media/characters/tendirmuldr/front.svg",
  20619. extra: 1878 / 1772,
  20620. bottom: 0.015
  20621. }
  20622. },
  20623. },
  20624. [
  20625. {
  20626. name: "Megamacro",
  20627. height: math.unit(1500, "miles"),
  20628. default: true
  20629. },
  20630. ]
  20631. ))
  20632. characterMakers.push(() => makeCharacter(
  20633. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20634. {
  20635. front: {
  20636. height: math.unit(14, "feet"),
  20637. weight: math.unit(12000, "lb"),
  20638. name: "Front",
  20639. image: {
  20640. source: "./media/characters/mort/front.svg",
  20641. extra: 365 / 318,
  20642. bottom: 0.01
  20643. }
  20644. },
  20645. side: {
  20646. height: math.unit(14, "feet"),
  20647. weight: math.unit(12000, "lb"),
  20648. name: "Side",
  20649. image: {
  20650. source: "./media/characters/mort/side.svg",
  20651. extra: 365 / 318,
  20652. bottom: 0.052
  20653. },
  20654. default: true
  20655. },
  20656. back: {
  20657. height: math.unit(14, "feet"),
  20658. weight: math.unit(12000, "lb"),
  20659. name: "Back",
  20660. image: {
  20661. source: "./media/characters/mort/back.svg",
  20662. extra: 371 / 332,
  20663. bottom: 0.18
  20664. }
  20665. },
  20666. },
  20667. [
  20668. {
  20669. name: "Normal",
  20670. height: math.unit(14, "feet"),
  20671. default: true
  20672. },
  20673. ]
  20674. ))
  20675. characterMakers.push(() => makeCharacter(
  20676. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20677. {
  20678. front: {
  20679. height: math.unit(8, "feet"),
  20680. weight: math.unit(1, "ton"),
  20681. name: "Front",
  20682. image: {
  20683. source: "./media/characters/lycoa/front.svg",
  20684. extra: 1836/1728,
  20685. bottom: 81/1917
  20686. }
  20687. },
  20688. back: {
  20689. height: math.unit(8, "feet"),
  20690. weight: math.unit(1, "ton"),
  20691. name: "Back",
  20692. image: {
  20693. source: "./media/characters/lycoa/back.svg",
  20694. extra: 1785/1720,
  20695. bottom: 91/1876
  20696. }
  20697. },
  20698. head: {
  20699. height: math.unit(1.6243, "feet"),
  20700. name: "Head",
  20701. image: {
  20702. source: "./media/characters/lycoa/head.svg",
  20703. extra: 1011/782,
  20704. bottom: 0/1011
  20705. }
  20706. },
  20707. tailmaw: {
  20708. height: math.unit(1.9, "feet"),
  20709. name: "Tailmaw",
  20710. image: {
  20711. source: "./media/characters/lycoa/tailmaw.svg"
  20712. }
  20713. },
  20714. tentacles: {
  20715. height: math.unit(2.1, "feet"),
  20716. name: "Tentacles",
  20717. image: {
  20718. source: "./media/characters/lycoa/tentacles.svg"
  20719. }
  20720. },
  20721. dick: {
  20722. height: math.unit(1.73, "feet"),
  20723. name: "Dick",
  20724. image: {
  20725. source: "./media/characters/lycoa/dick.svg"
  20726. }
  20727. },
  20728. },
  20729. [
  20730. {
  20731. name: "Normal",
  20732. height: math.unit(8, "feet"),
  20733. default: true
  20734. },
  20735. {
  20736. name: "Macro",
  20737. height: math.unit(30, "feet")
  20738. },
  20739. ]
  20740. ))
  20741. characterMakers.push(() => makeCharacter(
  20742. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20743. {
  20744. front: {
  20745. height: math.unit(4 + 2 / 12, "feet"),
  20746. weight: math.unit(70, "lb"),
  20747. name: "Front",
  20748. image: {
  20749. source: "./media/characters/naldara/front.svg",
  20750. extra: 1664/1387,
  20751. bottom: 81/1745
  20752. },
  20753. form: "anthro",
  20754. default: true
  20755. },
  20756. naga: {
  20757. height: math.unit(20, "feet"),
  20758. weight: math.unit(15000, "kg"),
  20759. name: "Front",
  20760. image: {
  20761. source: "./media/characters/naldara/naga.svg",
  20762. extra: 1590/1396,
  20763. bottom: 285/1875
  20764. },
  20765. form: "naga",
  20766. default: true
  20767. },
  20768. },
  20769. [
  20770. {
  20771. name: "Normal",
  20772. height: math.unit(4 + 2 / 12, "feet"),
  20773. form: "anthro",
  20774. default: true
  20775. },
  20776. {
  20777. name: "Normal",
  20778. height: math.unit(20, "feet"),
  20779. form: "naga",
  20780. default: true
  20781. },
  20782. ],
  20783. {
  20784. "anthro": {
  20785. name: "Anthro"
  20786. },
  20787. "naga": {
  20788. name: "Naga"
  20789. }
  20790. }
  20791. ))
  20792. characterMakers.push(() => makeCharacter(
  20793. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20794. {
  20795. front: {
  20796. height: math.unit(13 + 7 / 12, "feet"),
  20797. weight: math.unit(1500, "lb"),
  20798. name: "Front",
  20799. image: {
  20800. source: "./media/characters/briar/front.svg",
  20801. extra: 1223/1157,
  20802. bottom: 123/1346
  20803. }
  20804. },
  20805. },
  20806. [
  20807. {
  20808. name: "Normal",
  20809. height: math.unit(13 + 7 / 12, "feet"),
  20810. default: true
  20811. },
  20812. ]
  20813. ))
  20814. characterMakers.push(() => makeCharacter(
  20815. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20816. {
  20817. side: {
  20818. height: math.unit(16, "feet"),
  20819. weight: math.unit(500, "lb"),
  20820. name: "Side",
  20821. image: {
  20822. source: "./media/characters/vanguard/side.svg",
  20823. extra: 1022/914,
  20824. bottom: 30/1052
  20825. }
  20826. },
  20827. sideAlt: {
  20828. height: math.unit(10, "feet"),
  20829. weight: math.unit(500, "lb"),
  20830. name: "Side (Alt)",
  20831. image: {
  20832. source: "./media/characters/vanguard/side-alt.svg",
  20833. extra: 502 / 425,
  20834. bottom: 0.087
  20835. }
  20836. },
  20837. },
  20838. [
  20839. {
  20840. name: "Normal",
  20841. height: math.unit(17.71, "feet"),
  20842. default: true
  20843. },
  20844. ]
  20845. ))
  20846. characterMakers.push(() => makeCharacter(
  20847. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20848. {
  20849. front: {
  20850. height: math.unit(7.5, "feet"),
  20851. weight: math.unit(2, "lb"),
  20852. name: "Front",
  20853. image: {
  20854. source: "./media/characters/artemis/work-safe-front.svg",
  20855. extra: 1192 / 1075,
  20856. bottom: 0.07
  20857. },
  20858. form: "work-safe",
  20859. default: true
  20860. },
  20861. frontNsfw: {
  20862. height: math.unit(7.5, "feet"),
  20863. weight: math.unit(2, "lb"),
  20864. name: "Front",
  20865. image: {
  20866. source: "./media/characters/artemis/calibrating-front.svg",
  20867. extra: 1192 / 1075,
  20868. bottom: 0.07
  20869. },
  20870. form: "calibrating",
  20871. default: true
  20872. },
  20873. frontNsfwer: {
  20874. height: math.unit(7.5, "feet"),
  20875. weight: math.unit(2, "lb"),
  20876. name: "Front",
  20877. image: {
  20878. source: "./media/characters/artemis/oversize-load-front.svg",
  20879. extra: 1192 / 1075,
  20880. bottom: 0.07
  20881. },
  20882. form: "oversize-load",
  20883. default: true
  20884. },
  20885. side: {
  20886. height: math.unit(7.5, "feet"),
  20887. weight: math.unit(2, "lb"),
  20888. name: "Side",
  20889. image: {
  20890. source: "./media/characters/artemis/work-safe-side.svg",
  20891. extra: 1192 / 1075,
  20892. bottom: 0.07
  20893. },
  20894. form: "work-safe"
  20895. },
  20896. sideNsfw: {
  20897. height: math.unit(7.5, "feet"),
  20898. weight: math.unit(2, "lb"),
  20899. name: "Side",
  20900. image: {
  20901. source: "./media/characters/artemis/calibrating-side.svg",
  20902. extra: 1192 / 1075,
  20903. bottom: 0.07
  20904. },
  20905. form: "calibrating"
  20906. },
  20907. sideNsfwer: {
  20908. height: math.unit(7.5, "feet"),
  20909. weight: math.unit(2, "lb"),
  20910. name: "Side",
  20911. image: {
  20912. source: "./media/characters/artemis/oversize-load-side.svg",
  20913. extra: 1192 / 1075,
  20914. bottom: 0.07
  20915. },
  20916. form: "oversize-load"
  20917. },
  20918. maw: {
  20919. height: math.unit(1.1, "feet"),
  20920. name: "Maw",
  20921. image: {
  20922. source: "./media/characters/artemis/maw.svg"
  20923. },
  20924. form: "work-safe"
  20925. },
  20926. stomach: {
  20927. height: math.unit(0.95, "feet"),
  20928. name: "Stomach",
  20929. image: {
  20930. source: "./media/characters/artemis/stomach.svg"
  20931. },
  20932. form: "work-safe"
  20933. },
  20934. dickCanine: {
  20935. height: math.unit(1, "feet"),
  20936. name: "Dick (Canine)",
  20937. image: {
  20938. source: "./media/characters/artemis/dick-canine.svg"
  20939. },
  20940. form: "calibrating"
  20941. },
  20942. dickEquine: {
  20943. height: math.unit(0.85, "feet"),
  20944. name: "Dick (Equine)",
  20945. image: {
  20946. source: "./media/characters/artemis/dick-equine.svg"
  20947. },
  20948. form: "calibrating"
  20949. },
  20950. dickExotic: {
  20951. height: math.unit(0.85, "feet"),
  20952. name: "Dick (Exotic)",
  20953. image: {
  20954. source: "./media/characters/artemis/dick-exotic.svg"
  20955. },
  20956. form: "calibrating"
  20957. },
  20958. dickCanineBigger: {
  20959. height: math.unit(1 * 1.33, "feet"),
  20960. name: "Dick (Canine)",
  20961. image: {
  20962. source: "./media/characters/artemis/dick-canine.svg"
  20963. },
  20964. form: "oversize-load"
  20965. },
  20966. dickEquineBigger: {
  20967. height: math.unit(0.85 * 1.33, "feet"),
  20968. name: "Dick (Equine)",
  20969. image: {
  20970. source: "./media/characters/artemis/dick-equine.svg"
  20971. },
  20972. form: "oversize-load"
  20973. },
  20974. dickExoticBigger: {
  20975. height: math.unit(0.85 * 1.33, "feet"),
  20976. name: "Dick (Exotic)",
  20977. image: {
  20978. source: "./media/characters/artemis/dick-exotic.svg"
  20979. },
  20980. form: "oversize-load"
  20981. },
  20982. },
  20983. [
  20984. {
  20985. name: "Normal",
  20986. height: math.unit(7.5, "feet"),
  20987. form: "work-safe",
  20988. default: true
  20989. },
  20990. {
  20991. name: "Normal",
  20992. height: math.unit(7.5, "feet"),
  20993. form: "calibrating",
  20994. default: true
  20995. },
  20996. {
  20997. name: "Normal",
  20998. height: math.unit(7.5, "feet"),
  20999. form: "oversize-load",
  21000. default: true
  21001. },
  21002. {
  21003. name: "Enlarged",
  21004. height: math.unit(12, "feet"),
  21005. form: "work-safe",
  21006. },
  21007. {
  21008. name: "Enlarged",
  21009. height: math.unit(12, "feet"),
  21010. form: "calibrating",
  21011. },
  21012. {
  21013. name: "Enlarged",
  21014. height: math.unit(12, "feet"),
  21015. form: "oversize-load",
  21016. },
  21017. ],
  21018. {
  21019. "work-safe": {
  21020. name: "Work-Safe",
  21021. default: true
  21022. },
  21023. "calibrating": {
  21024. name: "Calibrating"
  21025. },
  21026. "oversize-load": {
  21027. name: "Oversize Load"
  21028. }
  21029. }
  21030. ))
  21031. characterMakers.push(() => makeCharacter(
  21032. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21033. {
  21034. front: {
  21035. height: math.unit(5 + 3 / 12, "feet"),
  21036. weight: math.unit(160, "lb"),
  21037. name: "Front",
  21038. image: {
  21039. source: "./media/characters/kira/front.svg",
  21040. extra: 906 / 786,
  21041. bottom: 0.01
  21042. }
  21043. },
  21044. back: {
  21045. height: math.unit(5 + 3 / 12, "feet"),
  21046. weight: math.unit(160, "lb"),
  21047. name: "Back",
  21048. image: {
  21049. source: "./media/characters/kira/back.svg",
  21050. extra: 882 / 757,
  21051. bottom: 0.005
  21052. }
  21053. },
  21054. frontDressed: {
  21055. height: math.unit(5 + 3 / 12, "feet"),
  21056. weight: math.unit(160, "lb"),
  21057. name: "Front (Dressed)",
  21058. image: {
  21059. source: "./media/characters/kira/front-dressed.svg",
  21060. extra: 906 / 786,
  21061. bottom: 0.01
  21062. }
  21063. },
  21064. beans: {
  21065. height: math.unit(0.92, "feet"),
  21066. name: "Beans",
  21067. image: {
  21068. source: "./media/characters/kira/beans.svg"
  21069. }
  21070. },
  21071. },
  21072. [
  21073. {
  21074. name: "Normal",
  21075. height: math.unit(5 + 3 / 12, "feet"),
  21076. default: true
  21077. },
  21078. ]
  21079. ))
  21080. characterMakers.push(() => makeCharacter(
  21081. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21082. {
  21083. front: {
  21084. height: math.unit(5 + 4 / 12, "feet"),
  21085. weight: math.unit(145, "lb"),
  21086. name: "Front",
  21087. image: {
  21088. source: "./media/characters/scramble/front.svg",
  21089. extra: 763 / 727,
  21090. bottom: 0.05
  21091. }
  21092. },
  21093. back: {
  21094. height: math.unit(5 + 4 / 12, "feet"),
  21095. weight: math.unit(145, "lb"),
  21096. name: "Back",
  21097. image: {
  21098. source: "./media/characters/scramble/back.svg",
  21099. extra: 826 / 737,
  21100. bottom: 0.002
  21101. }
  21102. },
  21103. },
  21104. [
  21105. {
  21106. name: "Normal",
  21107. height: math.unit(5 + 4 / 12, "feet"),
  21108. default: true
  21109. },
  21110. ]
  21111. ))
  21112. characterMakers.push(() => makeCharacter(
  21113. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21114. {
  21115. side: {
  21116. height: math.unit(6 + 2 / 12, "feet"),
  21117. weight: math.unit(190, "lb"),
  21118. name: "Side",
  21119. image: {
  21120. source: "./media/characters/biscuit/side.svg",
  21121. extra: 858 / 791,
  21122. bottom: 0.044
  21123. }
  21124. },
  21125. },
  21126. [
  21127. {
  21128. name: "Normal",
  21129. height: math.unit(6 + 2 / 12, "feet"),
  21130. default: true
  21131. },
  21132. ]
  21133. ))
  21134. characterMakers.push(() => makeCharacter(
  21135. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21136. {
  21137. front: {
  21138. height: math.unit(5 + 2 / 12, "feet"),
  21139. weight: math.unit(120, "lb"),
  21140. name: "Front",
  21141. image: {
  21142. source: "./media/characters/poffin/front.svg",
  21143. extra: 786 / 680,
  21144. bottom: 0.005
  21145. }
  21146. },
  21147. },
  21148. [
  21149. {
  21150. name: "Normal",
  21151. height: math.unit(5 + 2 / 12, "feet"),
  21152. default: true
  21153. },
  21154. ]
  21155. ))
  21156. characterMakers.push(() => makeCharacter(
  21157. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21158. {
  21159. front: {
  21160. height: math.unit(6 + 3 / 12, "feet"),
  21161. weight: math.unit(519, "lb"),
  21162. name: "Front",
  21163. image: {
  21164. source: "./media/characters/dhari/front.svg",
  21165. extra: 1048 / 946,
  21166. bottom: 0.015
  21167. }
  21168. },
  21169. back: {
  21170. height: math.unit(6 + 3 / 12, "feet"),
  21171. weight: math.unit(519, "lb"),
  21172. name: "Back",
  21173. image: {
  21174. source: "./media/characters/dhari/back.svg",
  21175. extra: 1048 / 931,
  21176. bottom: 0.005
  21177. }
  21178. },
  21179. frontDressed: {
  21180. height: math.unit(6 + 3 / 12, "feet"),
  21181. weight: math.unit(519, "lb"),
  21182. name: "Front (Dressed)",
  21183. image: {
  21184. source: "./media/characters/dhari/front-dressed.svg",
  21185. extra: 1713 / 1546,
  21186. bottom: 0.02
  21187. }
  21188. },
  21189. backDressed: {
  21190. height: math.unit(6 + 3 / 12, "feet"),
  21191. weight: math.unit(519, "lb"),
  21192. name: "Back (Dressed)",
  21193. image: {
  21194. source: "./media/characters/dhari/back-dressed.svg",
  21195. extra: 1699 / 1537,
  21196. bottom: 0.01
  21197. }
  21198. },
  21199. maw: {
  21200. height: math.unit(0.95, "feet"),
  21201. name: "Maw",
  21202. image: {
  21203. source: "./media/characters/dhari/maw.svg"
  21204. }
  21205. },
  21206. wereFront: {
  21207. height: math.unit(12 + 8 / 12, "feet"),
  21208. weight: math.unit(4000, "lb"),
  21209. name: "Front (Were)",
  21210. image: {
  21211. source: "./media/characters/dhari/were-front.svg",
  21212. extra: 1065 / 969,
  21213. bottom: 0.015
  21214. }
  21215. },
  21216. wereBack: {
  21217. height: math.unit(12 + 8 / 12, "feet"),
  21218. weight: math.unit(4000, "lb"),
  21219. name: "Back (Were)",
  21220. image: {
  21221. source: "./media/characters/dhari/were-back.svg",
  21222. extra: 1065 / 969,
  21223. bottom: 0.012
  21224. }
  21225. },
  21226. wereMaw: {
  21227. height: math.unit(0.625, "meters"),
  21228. name: "Maw (Were)",
  21229. image: {
  21230. source: "./media/characters/dhari/were-maw.svg"
  21231. }
  21232. },
  21233. },
  21234. [
  21235. {
  21236. name: "Normal",
  21237. height: math.unit(6 + 3 / 12, "feet"),
  21238. default: true
  21239. },
  21240. ]
  21241. ))
  21242. characterMakers.push(() => makeCharacter(
  21243. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21244. {
  21245. anthro: {
  21246. height: math.unit(5 + 7 / 12, "feet"),
  21247. weight: math.unit(175, "lb"),
  21248. name: "Anthro",
  21249. image: {
  21250. source: "./media/characters/rena-dyne/anthro.svg",
  21251. extra: 1849 / 1785,
  21252. bottom: 0.005
  21253. }
  21254. },
  21255. taur: {
  21256. height: math.unit(15 + 6 / 12, "feet"),
  21257. weight: math.unit(8000, "lb"),
  21258. name: "Taur",
  21259. image: {
  21260. source: "./media/characters/rena-dyne/taur.svg",
  21261. extra: 2315 / 2234,
  21262. bottom: 0.033
  21263. }
  21264. },
  21265. },
  21266. [
  21267. {
  21268. name: "Normal",
  21269. height: math.unit(5 + 7 / 12, "feet"),
  21270. default: true
  21271. },
  21272. ]
  21273. ))
  21274. characterMakers.push(() => makeCharacter(
  21275. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21276. {
  21277. front: {
  21278. height: math.unit(8, "feet"),
  21279. weight: math.unit(600, "lb"),
  21280. name: "Front",
  21281. image: {
  21282. source: "./media/characters/weremeep/front.svg",
  21283. extra: 967 / 862,
  21284. bottom: 0.01
  21285. }
  21286. },
  21287. },
  21288. [
  21289. {
  21290. name: "Normal",
  21291. height: math.unit(8, "feet"),
  21292. default: true
  21293. },
  21294. {
  21295. name: "Lorg",
  21296. height: math.unit(12, "feet")
  21297. },
  21298. {
  21299. name: "Oh Lawd She Comin'",
  21300. height: math.unit(20, "feet")
  21301. },
  21302. ]
  21303. ))
  21304. characterMakers.push(() => makeCharacter(
  21305. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21306. {
  21307. front: {
  21308. height: math.unit(4, "feet"),
  21309. weight: math.unit(90, "lb"),
  21310. name: "Front",
  21311. image: {
  21312. source: "./media/characters/reza/front.svg",
  21313. extra: 1183 / 1111,
  21314. bottom: 0.017
  21315. }
  21316. },
  21317. back: {
  21318. height: math.unit(4, "feet"),
  21319. weight: math.unit(90, "lb"),
  21320. name: "Back",
  21321. image: {
  21322. source: "./media/characters/reza/back.svg",
  21323. extra: 1183 / 1111,
  21324. bottom: 0.01
  21325. }
  21326. },
  21327. drake: {
  21328. height: math.unit(30, "feet"),
  21329. weight: math.unit(246960, "lb"),
  21330. name: "Drake",
  21331. image: {
  21332. source: "./media/characters/reza/drake.svg",
  21333. extra: 2350 / 2024,
  21334. bottom: 60.7 / 2403
  21335. }
  21336. },
  21337. },
  21338. [
  21339. {
  21340. name: "Normal",
  21341. height: math.unit(4, "feet"),
  21342. default: true
  21343. },
  21344. ]
  21345. ))
  21346. characterMakers.push(() => makeCharacter(
  21347. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21348. {
  21349. side: {
  21350. height: math.unit(15, "feet"),
  21351. weight: math.unit(14, "tons"),
  21352. name: "Side",
  21353. image: {
  21354. source: "./media/characters/athea/side.svg",
  21355. extra: 960 / 540,
  21356. bottom: 0.003
  21357. }
  21358. },
  21359. sitting: {
  21360. height: math.unit(6 * 2.85, "feet"),
  21361. weight: math.unit(14, "tons"),
  21362. name: "Sitting",
  21363. image: {
  21364. source: "./media/characters/athea/sitting.svg",
  21365. extra: 621 / 581,
  21366. bottom: 0.075
  21367. }
  21368. },
  21369. maw: {
  21370. height: math.unit(7.59498031496063, "feet"),
  21371. name: "Maw",
  21372. image: {
  21373. source: "./media/characters/athea/maw.svg"
  21374. }
  21375. },
  21376. },
  21377. [
  21378. {
  21379. name: "Lap Cat",
  21380. height: math.unit(2.5, "feet")
  21381. },
  21382. {
  21383. name: "Minimacro",
  21384. height: math.unit(15, "feet"),
  21385. default: true
  21386. },
  21387. {
  21388. name: "Macro",
  21389. height: math.unit(120, "feet")
  21390. },
  21391. {
  21392. name: "Macro+",
  21393. height: math.unit(640, "feet")
  21394. },
  21395. {
  21396. name: "Colossus",
  21397. height: math.unit(2.2, "miles")
  21398. },
  21399. ]
  21400. ))
  21401. characterMakers.push(() => makeCharacter(
  21402. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21403. {
  21404. front: {
  21405. height: math.unit(8 + 8 / 12, "feet"),
  21406. weight: math.unit(130, "kg"),
  21407. name: "Front",
  21408. image: {
  21409. source: "./media/characters/seroko/front.svg",
  21410. extra: 1385 / 1280,
  21411. bottom: 0.025
  21412. }
  21413. },
  21414. back: {
  21415. height: math.unit(8 + 8 / 12, "feet"),
  21416. weight: math.unit(130, "kg"),
  21417. name: "Back",
  21418. image: {
  21419. source: "./media/characters/seroko/back.svg",
  21420. extra: 1369 / 1238,
  21421. bottom: 0.018
  21422. }
  21423. },
  21424. frontDressed: {
  21425. height: math.unit(8 + 8 / 12, "feet"),
  21426. weight: math.unit(130, "kg"),
  21427. name: "Front (Dressed)",
  21428. image: {
  21429. source: "./media/characters/seroko/front-dressed.svg",
  21430. extra: 1366 / 1275,
  21431. bottom: 0.03
  21432. }
  21433. },
  21434. },
  21435. [
  21436. {
  21437. name: "Normal",
  21438. height: math.unit(8 + 8 / 12, "feet"),
  21439. default: true
  21440. },
  21441. ]
  21442. ))
  21443. characterMakers.push(() => makeCharacter(
  21444. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21445. {
  21446. front: {
  21447. height: math.unit(5.5, "feet"),
  21448. weight: math.unit(160, "lb"),
  21449. name: "Front",
  21450. image: {
  21451. source: "./media/characters/quatzi/front.svg",
  21452. extra: 2346 / 2242,
  21453. bottom: 0.015
  21454. }
  21455. },
  21456. },
  21457. [
  21458. {
  21459. name: "Normal",
  21460. height: math.unit(5.5, "feet"),
  21461. default: true
  21462. },
  21463. {
  21464. name: "Big",
  21465. height: math.unit(7.7, "feet")
  21466. },
  21467. ]
  21468. ))
  21469. characterMakers.push(() => makeCharacter(
  21470. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21471. {
  21472. front: {
  21473. height: math.unit(5 + 11 / 12, "feet"),
  21474. weight: math.unit(180, "lb"),
  21475. name: "Front",
  21476. image: {
  21477. source: "./media/characters/sen/front.svg",
  21478. extra: 1321 / 1254,
  21479. bottom: 0.015
  21480. }
  21481. },
  21482. side: {
  21483. height: math.unit(5 + 11 / 12, "feet"),
  21484. weight: math.unit(180, "lb"),
  21485. name: "Side",
  21486. image: {
  21487. source: "./media/characters/sen/side.svg",
  21488. extra: 1321 / 1254,
  21489. bottom: 0.007
  21490. }
  21491. },
  21492. back: {
  21493. height: math.unit(5 + 11 / 12, "feet"),
  21494. weight: math.unit(180, "lb"),
  21495. name: "Back",
  21496. image: {
  21497. source: "./media/characters/sen/back.svg",
  21498. extra: 1321 / 1254
  21499. }
  21500. },
  21501. },
  21502. [
  21503. {
  21504. name: "Normal",
  21505. height: math.unit(5 + 11 / 12, "feet"),
  21506. default: true
  21507. },
  21508. ]
  21509. ))
  21510. characterMakers.push(() => makeCharacter(
  21511. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21512. {
  21513. front: {
  21514. height: math.unit(166.6, "cm"),
  21515. weight: math.unit(66.6, "kg"),
  21516. name: "Front",
  21517. image: {
  21518. source: "./media/characters/fruity/front.svg",
  21519. extra: 1510 / 1386,
  21520. bottom: 0.04
  21521. }
  21522. },
  21523. back: {
  21524. height: math.unit(166.6, "cm"),
  21525. weight: math.unit(66.6, "lb"),
  21526. name: "Back",
  21527. image: {
  21528. source: "./media/characters/fruity/back.svg",
  21529. extra: 1563 / 1435,
  21530. bottom: 0.005
  21531. }
  21532. },
  21533. },
  21534. [
  21535. {
  21536. name: "Normal",
  21537. height: math.unit(166.6, "cm"),
  21538. default: true
  21539. },
  21540. {
  21541. name: "Demonic",
  21542. height: math.unit(166.6, "feet")
  21543. },
  21544. ]
  21545. ))
  21546. characterMakers.push(() => makeCharacter(
  21547. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21548. {
  21549. side: {
  21550. height: math.unit(10, "feet"),
  21551. weight: math.unit(500, "lb"),
  21552. name: "Side",
  21553. image: {
  21554. source: "./media/characters/zost/side.svg",
  21555. extra: 2870/2533,
  21556. bottom: 252/3122
  21557. }
  21558. },
  21559. mawFront: {
  21560. height: math.unit(1.08, "meters"),
  21561. name: "Maw (Front)",
  21562. image: {
  21563. source: "./media/characters/zost/maw-front.svg"
  21564. }
  21565. },
  21566. mawSide: {
  21567. height: math.unit(2.66, "feet"),
  21568. name: "Maw (Side)",
  21569. image: {
  21570. source: "./media/characters/zost/maw-side.svg"
  21571. }
  21572. },
  21573. wingspan: {
  21574. height: math.unit(7.4, "feet"),
  21575. name: "Wingspan",
  21576. image: {
  21577. source: "./media/characters/zost/wingspan.svg"
  21578. }
  21579. },
  21580. },
  21581. [
  21582. {
  21583. name: "Normal",
  21584. height: math.unit(10, "feet"),
  21585. default: true
  21586. },
  21587. ]
  21588. ))
  21589. characterMakers.push(() => makeCharacter(
  21590. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21591. {
  21592. front: {
  21593. height: math.unit(5 + 4 / 12, "feet"),
  21594. weight: math.unit(120, "lb"),
  21595. name: "Front",
  21596. image: {
  21597. source: "./media/characters/luci/front.svg",
  21598. extra: 1985 / 1884,
  21599. bottom: 0.04
  21600. }
  21601. },
  21602. back: {
  21603. height: math.unit(5 + 4 / 12, "feet"),
  21604. weight: math.unit(120, "lb"),
  21605. name: "Back",
  21606. image: {
  21607. source: "./media/characters/luci/back.svg",
  21608. extra: 1892 / 1791,
  21609. bottom: 0.002
  21610. }
  21611. },
  21612. },
  21613. [
  21614. {
  21615. name: "Normal",
  21616. height: math.unit(5 + 4 / 12, "feet"),
  21617. default: true
  21618. },
  21619. ]
  21620. ))
  21621. characterMakers.push(() => makeCharacter(
  21622. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21623. {
  21624. front: {
  21625. height: math.unit(1500, "feet"),
  21626. weight: math.unit(3.8e6, "tons"),
  21627. name: "Front",
  21628. image: {
  21629. source: "./media/characters/2th/front.svg",
  21630. extra: 3489 / 3350,
  21631. bottom: 0.1
  21632. }
  21633. },
  21634. foot: {
  21635. height: math.unit(461, "feet"),
  21636. name: "Foot",
  21637. image: {
  21638. source: "./media/characters/2th/foot.svg"
  21639. }
  21640. },
  21641. },
  21642. [
  21643. {
  21644. name: "\"Micro\"",
  21645. height: math.unit(15 + 7 / 12, "feet")
  21646. },
  21647. {
  21648. name: "Normal",
  21649. height: math.unit(1500, "feet"),
  21650. default: true
  21651. },
  21652. {
  21653. name: "Macro",
  21654. height: math.unit(5000, "feet")
  21655. },
  21656. {
  21657. name: "Megamacro",
  21658. height: math.unit(15, "miles")
  21659. },
  21660. {
  21661. name: "Gigamacro",
  21662. height: math.unit(4000, "miles")
  21663. },
  21664. {
  21665. name: "Galactic",
  21666. height: math.unit(50, "AU")
  21667. },
  21668. ]
  21669. ))
  21670. characterMakers.push(() => makeCharacter(
  21671. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21672. {
  21673. front: {
  21674. height: math.unit(5 + 6 / 12, "feet"),
  21675. weight: math.unit(220, "lb"),
  21676. name: "Front",
  21677. image: {
  21678. source: "./media/characters/amethyst/front.svg",
  21679. extra: 2078 / 2040,
  21680. bottom: 0.045
  21681. }
  21682. },
  21683. back: {
  21684. height: math.unit(5 + 6 / 12, "feet"),
  21685. weight: math.unit(220, "lb"),
  21686. name: "Back",
  21687. image: {
  21688. source: "./media/characters/amethyst/back.svg",
  21689. extra: 2021 / 1989,
  21690. bottom: 0.02
  21691. }
  21692. },
  21693. },
  21694. [
  21695. {
  21696. name: "Normal",
  21697. height: math.unit(5 + 6 / 12, "feet"),
  21698. default: true
  21699. },
  21700. ]
  21701. ))
  21702. characterMakers.push(() => makeCharacter(
  21703. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21704. {
  21705. front: {
  21706. height: math.unit(4 + 11 / 12, "feet"),
  21707. weight: math.unit(120, "lb"),
  21708. name: "Front",
  21709. image: {
  21710. source: "./media/characters/yumi-akiyama/front.svg",
  21711. extra: 1327 / 1235,
  21712. bottom: 0.02
  21713. }
  21714. },
  21715. back: {
  21716. height: math.unit(4 + 11 / 12, "feet"),
  21717. weight: math.unit(120, "lb"),
  21718. name: "Back",
  21719. image: {
  21720. source: "./media/characters/yumi-akiyama/back.svg",
  21721. extra: 1287 / 1245,
  21722. bottom: 0.002
  21723. }
  21724. },
  21725. },
  21726. [
  21727. {
  21728. name: "Galactic",
  21729. height: math.unit(50, "galaxies"),
  21730. default: true
  21731. },
  21732. {
  21733. name: "Universal",
  21734. height: math.unit(100, "universes")
  21735. },
  21736. ]
  21737. ))
  21738. characterMakers.push(() => makeCharacter(
  21739. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21740. {
  21741. front: {
  21742. height: math.unit(8, "feet"),
  21743. weight: math.unit(500, "lb"),
  21744. name: "Front",
  21745. image: {
  21746. source: "./media/characters/rifter-yrmori/front.svg",
  21747. extra: 1180 / 1125,
  21748. bottom: 0.02
  21749. }
  21750. },
  21751. back: {
  21752. height: math.unit(8, "feet"),
  21753. weight: math.unit(500, "lb"),
  21754. name: "Back",
  21755. image: {
  21756. source: "./media/characters/rifter-yrmori/back.svg",
  21757. extra: 1190 / 1145,
  21758. bottom: 0.001
  21759. }
  21760. },
  21761. wings: {
  21762. height: math.unit(7.75, "feet"),
  21763. weight: math.unit(500, "lb"),
  21764. name: "Wings",
  21765. image: {
  21766. source: "./media/characters/rifter-yrmori/wings.svg",
  21767. extra: 1357 / 1285
  21768. }
  21769. },
  21770. maw: {
  21771. height: math.unit(0.8, "feet"),
  21772. name: "Maw",
  21773. image: {
  21774. source: "./media/characters/rifter-yrmori/maw.svg"
  21775. }
  21776. },
  21777. mawfront: {
  21778. height: math.unit(1.45, "feet"),
  21779. name: "Maw (Front)",
  21780. image: {
  21781. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21782. }
  21783. },
  21784. },
  21785. [
  21786. {
  21787. name: "Normal",
  21788. height: math.unit(8, "feet"),
  21789. default: true
  21790. },
  21791. {
  21792. name: "Macro",
  21793. height: math.unit(42, "meters")
  21794. },
  21795. ]
  21796. ))
  21797. characterMakers.push(() => makeCharacter(
  21798. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21799. {
  21800. were: {
  21801. height: math.unit(25 + 6 / 12, "feet"),
  21802. weight: math.unit(10000, "lb"),
  21803. name: "Were",
  21804. image: {
  21805. source: "./media/characters/tahajin/were.svg",
  21806. extra: 801 / 770,
  21807. bottom: 0.042
  21808. }
  21809. },
  21810. aquatic: {
  21811. height: math.unit(6 + 4 / 12, "feet"),
  21812. weight: math.unit(160, "lb"),
  21813. name: "Aquatic",
  21814. image: {
  21815. source: "./media/characters/tahajin/aquatic.svg",
  21816. extra: 572 / 542,
  21817. bottom: 0.04
  21818. }
  21819. },
  21820. chow: {
  21821. height: math.unit(8 + 11 / 12, "feet"),
  21822. weight: math.unit(450, "lb"),
  21823. name: "Chow",
  21824. image: {
  21825. source: "./media/characters/tahajin/chow.svg",
  21826. extra: 660 / 640,
  21827. bottom: 0.015
  21828. }
  21829. },
  21830. demiNaga: {
  21831. height: math.unit(6 + 8 / 12, "feet"),
  21832. weight: math.unit(300, "lb"),
  21833. name: "Demi Naga",
  21834. image: {
  21835. source: "./media/characters/tahajin/demi-naga.svg",
  21836. extra: 643 / 615,
  21837. bottom: 0.1
  21838. }
  21839. },
  21840. data: {
  21841. height: math.unit(5, "inches"),
  21842. weight: math.unit(0.1, "lb"),
  21843. name: "Data",
  21844. image: {
  21845. source: "./media/characters/tahajin/data.svg"
  21846. }
  21847. },
  21848. fluu: {
  21849. height: math.unit(5 + 7 / 12, "feet"),
  21850. weight: math.unit(140, "lb"),
  21851. name: "Fluu",
  21852. image: {
  21853. source: "./media/characters/tahajin/fluu.svg",
  21854. extra: 628 / 592,
  21855. bottom: 0.02
  21856. }
  21857. },
  21858. starWarrior: {
  21859. height: math.unit(4 + 5 / 12, "feet"),
  21860. weight: math.unit(50, "lb"),
  21861. name: "Star Warrior",
  21862. image: {
  21863. source: "./media/characters/tahajin/star-warrior.svg"
  21864. }
  21865. },
  21866. },
  21867. [
  21868. {
  21869. name: "Normal",
  21870. height: math.unit(25 + 6 / 12, "feet"),
  21871. default: true
  21872. },
  21873. ]
  21874. ))
  21875. characterMakers.push(() => makeCharacter(
  21876. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21877. {
  21878. front: {
  21879. height: math.unit(8, "feet"),
  21880. weight: math.unit(350, "lb"),
  21881. name: "Front",
  21882. image: {
  21883. source: "./media/characters/gabira/front.svg",
  21884. extra: 608 / 580,
  21885. bottom: 0.03
  21886. }
  21887. },
  21888. back: {
  21889. height: math.unit(8, "feet"),
  21890. weight: math.unit(350, "lb"),
  21891. name: "Back",
  21892. image: {
  21893. source: "./media/characters/gabira/back.svg",
  21894. extra: 608 / 580,
  21895. bottom: 0.03
  21896. }
  21897. },
  21898. },
  21899. [
  21900. {
  21901. name: "Normal",
  21902. height: math.unit(8, "feet"),
  21903. default: true
  21904. },
  21905. ]
  21906. ))
  21907. characterMakers.push(() => makeCharacter(
  21908. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21909. {
  21910. front: {
  21911. height: math.unit(5 + 3 / 12, "feet"),
  21912. weight: math.unit(137, "lb"),
  21913. name: "Front",
  21914. image: {
  21915. source: "./media/characters/sasha-katraine/front.svg",
  21916. bottom: 0.045
  21917. }
  21918. },
  21919. },
  21920. [
  21921. {
  21922. name: "Micro",
  21923. height: math.unit(5, "inches")
  21924. },
  21925. {
  21926. name: "Normal",
  21927. height: math.unit(5 + 3 / 12, "feet"),
  21928. default: true
  21929. },
  21930. ]
  21931. ))
  21932. characterMakers.push(() => makeCharacter(
  21933. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21934. {
  21935. side: {
  21936. height: math.unit(4, "inches"),
  21937. weight: math.unit(200, "grams"),
  21938. name: "Side",
  21939. image: {
  21940. source: "./media/characters/der/side.svg",
  21941. extra: 719 / 400,
  21942. bottom: 30.6 / 749.9187
  21943. }
  21944. },
  21945. },
  21946. [
  21947. {
  21948. name: "Micro",
  21949. height: math.unit(4, "inches"),
  21950. default: true
  21951. },
  21952. ]
  21953. ))
  21954. characterMakers.push(() => makeCharacter(
  21955. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21956. {
  21957. side: {
  21958. height: math.unit(30, "meters"),
  21959. weight: math.unit(700, "tonnes"),
  21960. name: "Side",
  21961. image: {
  21962. source: "./media/characters/fixerdragon/side.svg",
  21963. extra: (1293.0514 - 116.03) / 1106.86,
  21964. bottom: 116.03 / 1293.0514
  21965. }
  21966. },
  21967. },
  21968. [
  21969. {
  21970. name: "Planck",
  21971. height: math.unit(1.6e-35, "meters")
  21972. },
  21973. {
  21974. name: "Micro",
  21975. height: math.unit(0.4, "meters")
  21976. },
  21977. {
  21978. name: "Normal",
  21979. height: math.unit(30, "meters"),
  21980. default: true
  21981. },
  21982. {
  21983. name: "Megamacro",
  21984. height: math.unit(1.2, "megameters")
  21985. },
  21986. {
  21987. name: "Teramacro",
  21988. height: math.unit(130, "terameters")
  21989. },
  21990. {
  21991. name: "Yottamacro",
  21992. height: math.unit(6200, "yottameters")
  21993. },
  21994. ]
  21995. ));
  21996. characterMakers.push(() => makeCharacter(
  21997. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21998. {
  21999. front: {
  22000. height: math.unit(8, "feet"),
  22001. weight: math.unit(250, "lb"),
  22002. name: "Front",
  22003. image: {
  22004. source: "./media/characters/kite/front.svg",
  22005. extra: 2796 / 2659,
  22006. bottom: 0.002
  22007. }
  22008. },
  22009. },
  22010. [
  22011. {
  22012. name: "Normal",
  22013. height: math.unit(8, "feet"),
  22014. default: true
  22015. },
  22016. {
  22017. name: "Macro",
  22018. height: math.unit(360, "feet")
  22019. },
  22020. {
  22021. name: "Megamacro",
  22022. height: math.unit(1500, "feet")
  22023. },
  22024. ]
  22025. ))
  22026. characterMakers.push(() => makeCharacter(
  22027. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  22028. {
  22029. front: {
  22030. height: math.unit(5 + 11/12, "feet"),
  22031. weight: math.unit(170, "lb"),
  22032. name: "Front",
  22033. image: {
  22034. source: "./media/characters/poojawa-vynar/front.svg",
  22035. extra: 1735/1585,
  22036. bottom: 96/1831
  22037. }
  22038. },
  22039. back: {
  22040. height: math.unit(5 + 11/12, "feet"),
  22041. weight: math.unit(170, "lb"),
  22042. name: "Back",
  22043. image: {
  22044. source: "./media/characters/poojawa-vynar/back.svg",
  22045. extra: 1749/1607,
  22046. bottom: 28/1777
  22047. }
  22048. },
  22049. male: {
  22050. height: math.unit(5 + 11/12, "feet"),
  22051. weight: math.unit(170, "lb"),
  22052. name: "Male",
  22053. image: {
  22054. source: "./media/characters/poojawa-vynar/male.svg",
  22055. extra: 1855/1713,
  22056. bottom: 63/1918
  22057. }
  22058. },
  22059. taur: {
  22060. height: math.unit(5 + 11/12, "feet"),
  22061. weight: math.unit(170, "lb"),
  22062. name: "Taur",
  22063. image: {
  22064. source: "./media/characters/poojawa-vynar/taur.svg",
  22065. extra: 1151/1059,
  22066. bottom: 356/1507
  22067. }
  22068. },
  22069. frontDressed: {
  22070. height: math.unit(5 + 11/12, "feet"),
  22071. weight: math.unit(170, "lb"),
  22072. name: "Front (Dressed)",
  22073. image: {
  22074. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22075. extra: 1735/1585,
  22076. bottom: 96/1831
  22077. }
  22078. },
  22079. backDressed: {
  22080. height: math.unit(5 + 11/12, "feet"),
  22081. weight: math.unit(170, "lb"),
  22082. name: "Back (Dressed)",
  22083. image: {
  22084. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22085. extra: 1749/1607,
  22086. bottom: 28/1777
  22087. }
  22088. },
  22089. maleDressed: {
  22090. height: math.unit(5 + 11/12, "feet"),
  22091. weight: math.unit(170, "lb"),
  22092. name: "Male (Dressed)",
  22093. image: {
  22094. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22095. extra: 1855/1713,
  22096. bottom: 63/1918
  22097. }
  22098. },
  22099. taurDressed: {
  22100. height: math.unit(5 + 11/12, "feet"),
  22101. weight: math.unit(170, "lb"),
  22102. name: "Taur (Dressed)",
  22103. image: {
  22104. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22105. extra: 1151/1059,
  22106. bottom: 356/1507
  22107. }
  22108. },
  22109. maw: {
  22110. height: math.unit(1.46, "feet"),
  22111. name: "Maw",
  22112. image: {
  22113. source: "./media/characters/poojawa-vynar/maw.svg"
  22114. }
  22115. },
  22116. head: {
  22117. height: math.unit(2.34, "feet"),
  22118. name: "Head",
  22119. image: {
  22120. source: "./media/characters/poojawa-vynar/head.svg"
  22121. }
  22122. },
  22123. paw: {
  22124. height: math.unit(1.61, "feet"),
  22125. name: "Paw",
  22126. image: {
  22127. source: "./media/characters/poojawa-vynar/paw.svg"
  22128. }
  22129. },
  22130. pawToering: {
  22131. height: math.unit(1.72, "feet"),
  22132. name: "Paw (Toering)",
  22133. image: {
  22134. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22135. }
  22136. },
  22137. toering: {
  22138. height: math.unit(2.9, "inches"),
  22139. name: "Toering",
  22140. image: {
  22141. source: "./media/characters/poojawa-vynar/toering.svg"
  22142. }
  22143. },
  22144. shaft: {
  22145. height: math.unit(0.625, "feet"),
  22146. name: "Shaft",
  22147. image: {
  22148. source: "./media/characters/poojawa-vynar/shaft.svg"
  22149. }
  22150. },
  22151. spade: {
  22152. height: math.unit(0.42, "feet"),
  22153. name: "Spade",
  22154. image: {
  22155. source: "./media/characters/poojawa-vynar/spade.svg"
  22156. }
  22157. },
  22158. },
  22159. [
  22160. {
  22161. name: "Shortstack",
  22162. height: math.unit(4, "feet")
  22163. },
  22164. {
  22165. name: "Normal",
  22166. height: math.unit(5 + 11 / 12, "feet"),
  22167. default: true
  22168. },
  22169. {
  22170. name: "Tauric",
  22171. height: math.unit(4, "meters")
  22172. },
  22173. ]
  22174. ))
  22175. characterMakers.push(() => makeCharacter(
  22176. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22177. {
  22178. front: {
  22179. height: math.unit(293, "meters"),
  22180. weight: math.unit(70400, "tons"),
  22181. name: "Front",
  22182. image: {
  22183. source: "./media/characters/violette/front.svg",
  22184. extra: 1227 / 1180,
  22185. bottom: 0.005
  22186. }
  22187. },
  22188. back: {
  22189. height: math.unit(293, "meters"),
  22190. weight: math.unit(70400, "tons"),
  22191. name: "Back",
  22192. image: {
  22193. source: "./media/characters/violette/back.svg",
  22194. extra: 1227 / 1180,
  22195. bottom: 0.005
  22196. }
  22197. },
  22198. },
  22199. [
  22200. {
  22201. name: "Macro",
  22202. height: math.unit(293, "meters"),
  22203. default: true
  22204. },
  22205. ]
  22206. ))
  22207. characterMakers.push(() => makeCharacter(
  22208. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22209. {
  22210. front: {
  22211. height: math.unit(1050, "feet"),
  22212. weight: math.unit(200000, "tons"),
  22213. name: "Front",
  22214. image: {
  22215. source: "./media/characters/alessandra/front.svg",
  22216. extra: 960 / 912,
  22217. bottom: 0.06
  22218. }
  22219. },
  22220. },
  22221. [
  22222. {
  22223. name: "Macro",
  22224. height: math.unit(1050, "feet")
  22225. },
  22226. {
  22227. name: "Macro+",
  22228. height: math.unit(900, "meters"),
  22229. default: true
  22230. },
  22231. ]
  22232. ))
  22233. characterMakers.push(() => makeCharacter(
  22234. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22235. {
  22236. front: {
  22237. height: math.unit(5, "feet"),
  22238. weight: math.unit(187, "lb"),
  22239. name: "Front",
  22240. image: {
  22241. source: "./media/characters/person/front.svg",
  22242. extra: 3087 / 2945,
  22243. bottom: 91 / 3181
  22244. }
  22245. },
  22246. },
  22247. [
  22248. {
  22249. name: "Micro",
  22250. height: math.unit(3, "inches")
  22251. },
  22252. {
  22253. name: "Normal",
  22254. height: math.unit(5, "feet"),
  22255. default: true
  22256. },
  22257. {
  22258. name: "Macro",
  22259. height: math.unit(90, "feet")
  22260. },
  22261. {
  22262. name: "Max Size",
  22263. height: math.unit(280, "feet")
  22264. },
  22265. ]
  22266. ))
  22267. characterMakers.push(() => makeCharacter(
  22268. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22269. {
  22270. front: {
  22271. height: math.unit(4.5, "meters"),
  22272. weight: math.unit(3200, "lb"),
  22273. name: "Front",
  22274. image: {
  22275. source: "./media/characters/ty/front.svg",
  22276. extra: 1038 / 960,
  22277. bottom: 31.156 / 1068
  22278. }
  22279. },
  22280. back: {
  22281. height: math.unit(4.5, "meters"),
  22282. weight: math.unit(3200, "lb"),
  22283. name: "Back",
  22284. image: {
  22285. source: "./media/characters/ty/back.svg",
  22286. extra: 1044 / 966,
  22287. bottom: 7.48 / 1049
  22288. }
  22289. },
  22290. },
  22291. [
  22292. {
  22293. name: "Normal",
  22294. height: math.unit(4.5, "meters"),
  22295. default: true
  22296. },
  22297. ]
  22298. ))
  22299. characterMakers.push(() => makeCharacter(
  22300. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22301. {
  22302. front: {
  22303. height: math.unit(5 + 4 / 12, "feet"),
  22304. weight: math.unit(115, "lb"),
  22305. name: "Front",
  22306. image: {
  22307. source: "./media/characters/rocky/front.svg",
  22308. extra: 1012 / 975,
  22309. bottom: 54 / 1066
  22310. }
  22311. },
  22312. },
  22313. [
  22314. {
  22315. name: "Normal",
  22316. height: math.unit(5 + 4 / 12, "feet"),
  22317. default: true
  22318. },
  22319. ]
  22320. ))
  22321. characterMakers.push(() => makeCharacter(
  22322. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22323. {
  22324. upright: {
  22325. height: math.unit(6, "meters"),
  22326. weight: math.unit(4000, "kg"),
  22327. name: "Upright",
  22328. image: {
  22329. source: "./media/characters/ruin/upright.svg",
  22330. extra: 668 / 661,
  22331. bottom: 42 / 799.8396
  22332. }
  22333. },
  22334. },
  22335. [
  22336. {
  22337. name: "Normal",
  22338. height: math.unit(6, "meters"),
  22339. default: true
  22340. },
  22341. ]
  22342. ))
  22343. characterMakers.push(() => makeCharacter(
  22344. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22345. {
  22346. front: {
  22347. height: math.unit(5, "feet"),
  22348. weight: math.unit(106, "lb"),
  22349. name: "Front",
  22350. image: {
  22351. source: "./media/characters/robin/front.svg",
  22352. extra: 862 / 799,
  22353. bottom: 42.4 / 914.8856
  22354. }
  22355. },
  22356. },
  22357. [
  22358. {
  22359. name: "Normal",
  22360. height: math.unit(5, "feet"),
  22361. default: true
  22362. },
  22363. ]
  22364. ))
  22365. characterMakers.push(() => makeCharacter(
  22366. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22367. {
  22368. side: {
  22369. height: math.unit(3, "feet"),
  22370. weight: math.unit(225, "lb"),
  22371. name: "Side",
  22372. image: {
  22373. source: "./media/characters/saian/side.svg",
  22374. extra: 566 / 356,
  22375. bottom: 79.7 / 643
  22376. }
  22377. },
  22378. maw: {
  22379. height: math.unit(2.85, "feet"),
  22380. name: "Maw",
  22381. image: {
  22382. source: "./media/characters/saian/maw.svg"
  22383. }
  22384. },
  22385. },
  22386. [
  22387. {
  22388. name: "Normal",
  22389. height: math.unit(3, "feet"),
  22390. default: true
  22391. },
  22392. ]
  22393. ))
  22394. characterMakers.push(() => makeCharacter(
  22395. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22396. {
  22397. side: {
  22398. height: math.unit(8, "feet"),
  22399. weight: math.unit(300, "lb"),
  22400. name: "Side",
  22401. image: {
  22402. source: "./media/characters/equus-silvermane/side.svg",
  22403. extra: 2176 / 2050,
  22404. bottom: 65.7 / 2245
  22405. }
  22406. },
  22407. front: {
  22408. height: math.unit(8, "feet"),
  22409. weight: math.unit(300, "lb"),
  22410. name: "Front",
  22411. image: {
  22412. source: "./media/characters/equus-silvermane/front.svg",
  22413. extra: 4633 / 4400,
  22414. bottom: 71.3 / 4706.915
  22415. }
  22416. },
  22417. sideStepping: {
  22418. height: math.unit(8, "feet"),
  22419. weight: math.unit(300, "lb"),
  22420. name: "Side (Stepping)",
  22421. image: {
  22422. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22423. extra: 1968 / 1860,
  22424. bottom: 16.4 / 1989
  22425. }
  22426. },
  22427. },
  22428. [
  22429. {
  22430. name: "Normal",
  22431. height: math.unit(8, "feet")
  22432. },
  22433. {
  22434. name: "Minimacro",
  22435. height: math.unit(75, "feet"),
  22436. default: true
  22437. },
  22438. {
  22439. name: "Macro",
  22440. height: math.unit(150, "feet")
  22441. },
  22442. {
  22443. name: "Macro+",
  22444. height: math.unit(1000, "feet")
  22445. },
  22446. {
  22447. name: "Megamacro",
  22448. height: math.unit(1, "mile")
  22449. },
  22450. ]
  22451. ))
  22452. characterMakers.push(() => makeCharacter(
  22453. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22454. {
  22455. side: {
  22456. height: math.unit(20, "feet"),
  22457. weight: math.unit(30000, "kg"),
  22458. name: "Side",
  22459. image: {
  22460. source: "./media/characters/windar/side.svg",
  22461. extra: 1491 / 1248,
  22462. bottom: 82.56 / 1568
  22463. }
  22464. },
  22465. },
  22466. [
  22467. {
  22468. name: "Normal",
  22469. height: math.unit(20, "feet"),
  22470. default: true
  22471. },
  22472. ]
  22473. ))
  22474. characterMakers.push(() => makeCharacter(
  22475. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22476. {
  22477. side: {
  22478. height: math.unit(15.66, "feet"),
  22479. weight: math.unit(150, "lb"),
  22480. name: "Side",
  22481. image: {
  22482. source: "./media/characters/melody/side.svg",
  22483. extra: 1097 / 944,
  22484. bottom: 11.8 / 1109
  22485. }
  22486. },
  22487. sideOutfit: {
  22488. height: math.unit(15.66, "feet"),
  22489. weight: math.unit(150, "lb"),
  22490. name: "Side (Outfit)",
  22491. image: {
  22492. source: "./media/characters/melody/side-outfit.svg",
  22493. extra: 1097 / 944,
  22494. bottom: 11.8 / 1109
  22495. }
  22496. },
  22497. },
  22498. [
  22499. {
  22500. name: "Normal",
  22501. height: math.unit(15.66, "feet"),
  22502. default: true
  22503. },
  22504. ]
  22505. ))
  22506. characterMakers.push(() => makeCharacter(
  22507. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22508. {
  22509. front: {
  22510. height: math.unit(8, "feet"),
  22511. weight: math.unit(325, "lb"),
  22512. name: "Front",
  22513. image: {
  22514. source: "./media/characters/windera/front.svg",
  22515. extra: 3180 / 2845,
  22516. bottom: 178 / 3365
  22517. }
  22518. },
  22519. },
  22520. [
  22521. {
  22522. name: "Normal",
  22523. height: math.unit(8, "feet"),
  22524. default: true
  22525. },
  22526. ]
  22527. ))
  22528. characterMakers.push(() => makeCharacter(
  22529. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22530. {
  22531. front: {
  22532. height: math.unit(28.75, "feet"),
  22533. weight: math.unit(2000, "kg"),
  22534. name: "Front",
  22535. image: {
  22536. source: "./media/characters/sonear/front.svg",
  22537. extra: 1041.1 / 964.9,
  22538. bottom: 53.7 / 1096.6
  22539. }
  22540. },
  22541. },
  22542. [
  22543. {
  22544. name: "Normal",
  22545. height: math.unit(28.75, "feet"),
  22546. default: true
  22547. },
  22548. ]
  22549. ))
  22550. characterMakers.push(() => makeCharacter(
  22551. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22552. {
  22553. side: {
  22554. height: math.unit(25.5, "feet"),
  22555. weight: math.unit(23000, "kg"),
  22556. name: "Side",
  22557. image: {
  22558. source: "./media/characters/kanara/side.svg"
  22559. }
  22560. },
  22561. },
  22562. [
  22563. {
  22564. name: "Normal",
  22565. height: math.unit(25.5, "feet"),
  22566. default: true
  22567. },
  22568. ]
  22569. ))
  22570. characterMakers.push(() => makeCharacter(
  22571. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22572. {
  22573. side: {
  22574. height: math.unit(10, "feet"),
  22575. weight: math.unit(1000, "kg"),
  22576. name: "Side",
  22577. image: {
  22578. source: "./media/characters/ereus/side.svg",
  22579. extra: 1157 / 959,
  22580. bottom: 153 / 1312.5
  22581. }
  22582. },
  22583. },
  22584. [
  22585. {
  22586. name: "Normal",
  22587. height: math.unit(10, "feet"),
  22588. default: true
  22589. },
  22590. ]
  22591. ))
  22592. characterMakers.push(() => makeCharacter(
  22593. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22594. {
  22595. side: {
  22596. height: math.unit(4.5, "feet"),
  22597. weight: math.unit(500, "lb"),
  22598. name: "Side",
  22599. image: {
  22600. source: "./media/characters/e-ter/side.svg",
  22601. extra: 1550 / 1248,
  22602. bottom: 146 / 1694
  22603. }
  22604. },
  22605. },
  22606. [
  22607. {
  22608. name: "Normal",
  22609. height: math.unit(4.5, "feet"),
  22610. default: true
  22611. },
  22612. ]
  22613. ))
  22614. characterMakers.push(() => makeCharacter(
  22615. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22616. {
  22617. side: {
  22618. height: math.unit(9.7, "feet"),
  22619. weight: math.unit(4000, "kg"),
  22620. name: "Side",
  22621. image: {
  22622. source: "./media/characters/yamie/side.svg"
  22623. }
  22624. },
  22625. },
  22626. [
  22627. {
  22628. name: "Normal",
  22629. height: math.unit(9.7, "feet"),
  22630. default: true
  22631. },
  22632. ]
  22633. ))
  22634. characterMakers.push(() => makeCharacter(
  22635. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22636. {
  22637. front: {
  22638. height: math.unit(50, "feet"),
  22639. weight: math.unit(50000, "kg"),
  22640. name: "Front",
  22641. image: {
  22642. source: "./media/characters/anders/front.svg",
  22643. extra: 570 / 539,
  22644. bottom: 14.7 / 586.7
  22645. }
  22646. },
  22647. },
  22648. [
  22649. {
  22650. name: "Large",
  22651. height: math.unit(50, "feet")
  22652. },
  22653. {
  22654. name: "Macro",
  22655. height: math.unit(2000, "feet"),
  22656. default: true
  22657. },
  22658. {
  22659. name: "Megamacro",
  22660. height: math.unit(12, "miles")
  22661. },
  22662. ]
  22663. ))
  22664. characterMakers.push(() => makeCharacter(
  22665. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22666. {
  22667. front: {
  22668. height: math.unit(7 + 2 / 12, "feet"),
  22669. weight: math.unit(300, "lb"),
  22670. name: "Front",
  22671. image: {
  22672. source: "./media/characters/reban/front.svg",
  22673. extra: 1287/1212,
  22674. bottom: 148/1435
  22675. }
  22676. },
  22677. head: {
  22678. height: math.unit(1.95, "feet"),
  22679. name: "Head",
  22680. image: {
  22681. source: "./media/characters/reban/head.svg"
  22682. }
  22683. },
  22684. maw: {
  22685. height: math.unit(0.95, "feet"),
  22686. name: "Maw",
  22687. image: {
  22688. source: "./media/characters/reban/maw.svg"
  22689. }
  22690. },
  22691. foot: {
  22692. height: math.unit(1.65, "feet"),
  22693. name: "Foot",
  22694. image: {
  22695. source: "./media/characters/reban/foot.svg"
  22696. }
  22697. },
  22698. dick: {
  22699. height: math.unit(7 / 5, "feet"),
  22700. name: "Dick",
  22701. image: {
  22702. source: "./media/characters/reban/dick.svg"
  22703. }
  22704. },
  22705. },
  22706. [
  22707. {
  22708. name: "Natural Height",
  22709. height: math.unit(7 + 2 / 12, "feet")
  22710. },
  22711. {
  22712. name: "Macro",
  22713. height: math.unit(500, "feet"),
  22714. default: true
  22715. },
  22716. {
  22717. name: "Canon Height",
  22718. height: math.unit(50, "AU")
  22719. },
  22720. ]
  22721. ))
  22722. characterMakers.push(() => makeCharacter(
  22723. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22724. {
  22725. front: {
  22726. height: math.unit(6, "feet"),
  22727. weight: math.unit(150, "lb"),
  22728. name: "Front",
  22729. image: {
  22730. source: "./media/characters/terrance-keayes/front.svg",
  22731. extra: 1.005,
  22732. bottom: 151 / 1615
  22733. }
  22734. },
  22735. side: {
  22736. height: math.unit(6, "feet"),
  22737. weight: math.unit(150, "lb"),
  22738. name: "Side",
  22739. image: {
  22740. source: "./media/characters/terrance-keayes/side.svg",
  22741. extra: 1.005,
  22742. bottom: 129.4 / 1544
  22743. }
  22744. },
  22745. back: {
  22746. height: math.unit(6, "feet"),
  22747. weight: math.unit(150, "lb"),
  22748. name: "Back",
  22749. image: {
  22750. source: "./media/characters/terrance-keayes/back.svg",
  22751. extra: 1.005,
  22752. bottom: 58.4 / 1557.3
  22753. }
  22754. },
  22755. dick: {
  22756. height: math.unit(6 * 0.208, "feet"),
  22757. name: "Dick",
  22758. image: {
  22759. source: "./media/characters/terrance-keayes/dick.svg"
  22760. }
  22761. },
  22762. },
  22763. [
  22764. {
  22765. name: "Canon Height",
  22766. height: math.unit(35, "miles"),
  22767. default: true
  22768. },
  22769. ]
  22770. ))
  22771. characterMakers.push(() => makeCharacter(
  22772. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22773. {
  22774. front: {
  22775. height: math.unit(6, "feet"),
  22776. weight: math.unit(150, "lb"),
  22777. name: "Front",
  22778. image: {
  22779. source: "./media/characters/ofelia/front.svg",
  22780. extra: 1130/1117,
  22781. bottom: 91/1221
  22782. }
  22783. },
  22784. back: {
  22785. height: math.unit(6, "feet"),
  22786. weight: math.unit(150, "lb"),
  22787. name: "Back",
  22788. image: {
  22789. source: "./media/characters/ofelia/back.svg",
  22790. extra: 1172/1159,
  22791. bottom: 28/1200
  22792. }
  22793. },
  22794. maw: {
  22795. height: math.unit(1, "feet"),
  22796. name: "Maw",
  22797. image: {
  22798. source: "./media/characters/ofelia/maw.svg"
  22799. }
  22800. },
  22801. foot: {
  22802. height: math.unit(1.949, "feet"),
  22803. name: "Foot",
  22804. image: {
  22805. source: "./media/characters/ofelia/foot.svg"
  22806. }
  22807. },
  22808. },
  22809. [
  22810. {
  22811. name: "Canon Height",
  22812. height: math.unit(2000, "miles"),
  22813. default: true
  22814. },
  22815. ]
  22816. ))
  22817. characterMakers.push(() => makeCharacter(
  22818. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22819. {
  22820. front: {
  22821. height: math.unit(6, "feet"),
  22822. weight: math.unit(150, "lb"),
  22823. name: "Front",
  22824. image: {
  22825. source: "./media/characters/samuel/front.svg",
  22826. extra: 265 / 258,
  22827. bottom: 2 / 266.1566
  22828. }
  22829. },
  22830. },
  22831. [
  22832. {
  22833. name: "Macro",
  22834. height: math.unit(100, "feet"),
  22835. default: true
  22836. },
  22837. {
  22838. name: "Full Size",
  22839. height: math.unit(1000, "miles")
  22840. },
  22841. ]
  22842. ))
  22843. characterMakers.push(() => makeCharacter(
  22844. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22845. {
  22846. front: {
  22847. height: math.unit(6, "feet"),
  22848. weight: math.unit(300, "lb"),
  22849. name: "Front",
  22850. image: {
  22851. source: "./media/characters/beishir-kiel/front.svg",
  22852. extra: 569 / 547,
  22853. bottom: 41.9 / 609
  22854. }
  22855. },
  22856. maw: {
  22857. height: math.unit(6 * 0.202, "feet"),
  22858. name: "Maw",
  22859. image: {
  22860. source: "./media/characters/beishir-kiel/maw.svg"
  22861. }
  22862. },
  22863. },
  22864. [
  22865. {
  22866. name: "Macro",
  22867. height: math.unit(300, "feet"),
  22868. default: true
  22869. },
  22870. ]
  22871. ))
  22872. characterMakers.push(() => makeCharacter(
  22873. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22874. {
  22875. front: {
  22876. height: math.unit(5 + 7/12, "feet"),
  22877. weight: math.unit(120, "lb"),
  22878. name: "Front",
  22879. image: {
  22880. source: "./media/characters/logan-grey/front.svg",
  22881. extra: 1836/1738,
  22882. bottom: 108/1944
  22883. }
  22884. },
  22885. back: {
  22886. height: math.unit(5 + 7/12, "feet"),
  22887. weight: math.unit(120, "lb"),
  22888. name: "Back",
  22889. image: {
  22890. source: "./media/characters/logan-grey/back.svg",
  22891. extra: 1880/1794,
  22892. bottom: 24/1904
  22893. }
  22894. },
  22895. frontSfw: {
  22896. height: math.unit(5 + 7/12, "feet"),
  22897. weight: math.unit(120, "lb"),
  22898. name: "Front (SFW)",
  22899. image: {
  22900. source: "./media/characters/logan-grey/front-sfw.svg",
  22901. extra: 1836/1738,
  22902. bottom: 108/1944
  22903. }
  22904. },
  22905. backSfw: {
  22906. height: math.unit(5 + 7/12, "feet"),
  22907. weight: math.unit(120, "lb"),
  22908. name: "Back (SFW)",
  22909. image: {
  22910. source: "./media/characters/logan-grey/back-sfw.svg",
  22911. extra: 1880/1794,
  22912. bottom: 24/1904
  22913. }
  22914. },
  22915. hands: {
  22916. height: math.unit(0.84, "feet"),
  22917. name: "Hands",
  22918. image: {
  22919. source: "./media/characters/logan-grey/hands.svg"
  22920. }
  22921. },
  22922. paws: {
  22923. height: math.unit(0.72, "feet"),
  22924. name: "Paws",
  22925. image: {
  22926. source: "./media/characters/logan-grey/paws.svg"
  22927. }
  22928. },
  22929. cock: {
  22930. height: math.unit(1.45, "feet"),
  22931. name: "Cock",
  22932. image: {
  22933. source: "./media/characters/logan-grey/cock.svg"
  22934. }
  22935. },
  22936. cockAlt: {
  22937. height: math.unit(1.437, "feet"),
  22938. name: "Cock (alt)",
  22939. image: {
  22940. source: "./media/characters/logan-grey/cock-alt.svg"
  22941. }
  22942. },
  22943. },
  22944. [
  22945. {
  22946. name: "Normal",
  22947. height: math.unit(5 + 8 / 12, "feet")
  22948. },
  22949. {
  22950. name: "The 500 Foot Femboy",
  22951. height: math.unit(500, "feet"),
  22952. default: true
  22953. },
  22954. {
  22955. name: "Megmacro",
  22956. height: math.unit(20, "miles")
  22957. },
  22958. ]
  22959. ))
  22960. characterMakers.push(() => makeCharacter(
  22961. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22962. {
  22963. front: {
  22964. height: math.unit(8 + 2 / 12, "feet"),
  22965. weight: math.unit(275, "lb"),
  22966. name: "Front",
  22967. image: {
  22968. source: "./media/characters/draganta/front.svg",
  22969. extra: 1177 / 1135,
  22970. bottom: 33.46 / 1212.1
  22971. }
  22972. },
  22973. },
  22974. [
  22975. {
  22976. name: "Normal",
  22977. height: math.unit(8 + 6 / 12, "feet"),
  22978. default: true
  22979. },
  22980. {
  22981. name: "Macro",
  22982. height: math.unit(150, "feet")
  22983. },
  22984. {
  22985. name: "Megamacro",
  22986. height: math.unit(1000, "miles")
  22987. },
  22988. ]
  22989. ))
  22990. characterMakers.push(() => makeCharacter(
  22991. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22992. {
  22993. front: {
  22994. height: math.unit(1.72, "m"),
  22995. weight: math.unit(80, "lb"),
  22996. name: "Front",
  22997. image: {
  22998. source: "./media/characters/voski/front.svg",
  22999. extra: 2076.22 / 2022.4,
  23000. bottom: 102.7 / 2177.3866
  23001. }
  23002. },
  23003. frontNsfw: {
  23004. height: math.unit(1.72, "m"),
  23005. weight: math.unit(80, "lb"),
  23006. name: "Front (NSFW)",
  23007. image: {
  23008. source: "./media/characters/voski/front-nsfw.svg",
  23009. extra: 2076.22 / 2022.4,
  23010. bottom: 102.7 / 2177.3866
  23011. }
  23012. },
  23013. back: {
  23014. height: math.unit(1.72, "m"),
  23015. weight: math.unit(80, "lb"),
  23016. name: "Back",
  23017. image: {
  23018. source: "./media/characters/voski/back.svg",
  23019. extra: 2104 / 2051,
  23020. bottom: 10.45 / 2113.63
  23021. }
  23022. },
  23023. },
  23024. [
  23025. {
  23026. name: "Normal",
  23027. height: math.unit(1.72, "m")
  23028. },
  23029. {
  23030. name: "Macro",
  23031. height: math.unit(55, "m"),
  23032. default: true
  23033. },
  23034. {
  23035. name: "Macro+",
  23036. height: math.unit(300, "m")
  23037. },
  23038. {
  23039. name: "Macro++",
  23040. height: math.unit(700, "m")
  23041. },
  23042. {
  23043. name: "Macro+++",
  23044. height: math.unit(4500, "m")
  23045. },
  23046. {
  23047. name: "Macro++++",
  23048. height: math.unit(45, "km")
  23049. },
  23050. {
  23051. name: "Macro+++++",
  23052. height: math.unit(1220, "km")
  23053. },
  23054. ]
  23055. ))
  23056. characterMakers.push(() => makeCharacter(
  23057. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23058. {
  23059. front: {
  23060. height: math.unit(2.3, "m"),
  23061. weight: math.unit(304, "kg"),
  23062. name: "Front",
  23063. image: {
  23064. source: "./media/characters/icowom-lee/front.svg",
  23065. extra: 985 / 955,
  23066. bottom: 25.4 / 1012
  23067. }
  23068. },
  23069. fronttentacles: {
  23070. height: math.unit(2.3, "m"),
  23071. weight: math.unit(304, "kg"),
  23072. name: "Front-tentacles",
  23073. image: {
  23074. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23075. extra: 985 / 955,
  23076. bottom: 25.4 / 1012
  23077. }
  23078. },
  23079. back: {
  23080. height: math.unit(2.3, "m"),
  23081. weight: math.unit(304, "kg"),
  23082. name: "Back",
  23083. image: {
  23084. source: "./media/characters/icowom-lee/back.svg",
  23085. extra: 975 / 954,
  23086. bottom: 9.5 / 985
  23087. }
  23088. },
  23089. backtentacles: {
  23090. height: math.unit(2.3, "m"),
  23091. weight: math.unit(304, "kg"),
  23092. name: "Back-tentacles",
  23093. image: {
  23094. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23095. extra: 975 / 954,
  23096. bottom: 9.5 / 985
  23097. }
  23098. },
  23099. frontDressed: {
  23100. height: math.unit(2.3, "m"),
  23101. weight: math.unit(304, "kg"),
  23102. name: "Front (Dressed)",
  23103. image: {
  23104. source: "./media/characters/icowom-lee/front-dressed.svg",
  23105. extra: 3076 / 2933,
  23106. bottom: 51.4 / 3125.1889
  23107. }
  23108. },
  23109. rump: {
  23110. height: math.unit(0.776, "meters"),
  23111. name: "Rump",
  23112. image: {
  23113. source: "./media/characters/icowom-lee/rump.svg"
  23114. }
  23115. },
  23116. genitals: {
  23117. height: math.unit(0.78, "meters"),
  23118. name: "Genitals",
  23119. image: {
  23120. source: "./media/characters/icowom-lee/genitals.svg"
  23121. }
  23122. },
  23123. },
  23124. [
  23125. {
  23126. name: "Normal",
  23127. height: math.unit(2.3, "meters"),
  23128. default: true
  23129. },
  23130. {
  23131. name: "Macro",
  23132. height: math.unit(94, "meters"),
  23133. default: true
  23134. },
  23135. ]
  23136. ))
  23137. characterMakers.push(() => makeCharacter(
  23138. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23139. {
  23140. front: {
  23141. height: math.unit(22, "meters"),
  23142. weight: math.unit(21000, "kg"),
  23143. name: "Front",
  23144. image: {
  23145. source: "./media/characters/shock-diamond/front.svg",
  23146. extra: 2204 / 2053,
  23147. bottom: 65 / 2239.47
  23148. }
  23149. },
  23150. frontNude: {
  23151. height: math.unit(22, "meters"),
  23152. weight: math.unit(21000, "kg"),
  23153. name: "Front (Nude)",
  23154. image: {
  23155. source: "./media/characters/shock-diamond/front-nude.svg",
  23156. extra: 2514 / 2285,
  23157. bottom: 13 / 2527.56
  23158. }
  23159. },
  23160. },
  23161. [
  23162. {
  23163. name: "Normal",
  23164. height: math.unit(3, "meters")
  23165. },
  23166. {
  23167. name: "Macro",
  23168. height: math.unit(22, "meters"),
  23169. default: true
  23170. },
  23171. ]
  23172. ))
  23173. characterMakers.push(() => makeCharacter(
  23174. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23175. {
  23176. front: {
  23177. height: math.unit(5 + 4 / 12, "feet"),
  23178. weight: math.unit(120, "lb"),
  23179. name: "Front",
  23180. image: {
  23181. source: "./media/characters/rory/front.svg",
  23182. extra: 1318/1241,
  23183. bottom: 42/1360
  23184. }
  23185. },
  23186. back: {
  23187. height: math.unit(5 + 4 / 12, "feet"),
  23188. weight: math.unit(120, "lb"),
  23189. name: "Back",
  23190. image: {
  23191. source: "./media/characters/rory/back.svg",
  23192. extra: 1318/1241,
  23193. bottom: 42/1360
  23194. }
  23195. },
  23196. butt: {
  23197. height: math.unit(1.74, "feet"),
  23198. name: "Butt",
  23199. image: {
  23200. source: "./media/characters/rory/butt.svg"
  23201. }
  23202. },
  23203. dick: {
  23204. height: math.unit(1.02, "feet"),
  23205. name: "Dick",
  23206. image: {
  23207. source: "./media/characters/rory/dick.svg"
  23208. }
  23209. },
  23210. paws: {
  23211. height: math.unit(1, "feet"),
  23212. name: "Paws",
  23213. image: {
  23214. source: "./media/characters/rory/paws.svg"
  23215. }
  23216. },
  23217. frontAlt: {
  23218. height: math.unit(5 + 4 / 12, "feet"),
  23219. weight: math.unit(120, "lb"),
  23220. name: "Front (Alt)",
  23221. image: {
  23222. source: "./media/characters/rory/front-alt.svg",
  23223. extra: 589 / 556,
  23224. bottom: 45.7 / 635.76
  23225. }
  23226. },
  23227. frontAltNude: {
  23228. height: math.unit(5 + 4 / 12, "feet"),
  23229. weight: math.unit(120, "lb"),
  23230. name: "Front (Alt, Nude)",
  23231. image: {
  23232. source: "./media/characters/rory/front-alt-nude.svg",
  23233. extra: 589 / 556,
  23234. bottom: 45.7 / 635.76
  23235. }
  23236. },
  23237. side: {
  23238. height: math.unit(5 + 4 / 12, "feet"),
  23239. weight: math.unit(120, "lb"),
  23240. name: "Side",
  23241. image: {
  23242. source: "./media/characters/rory/side.svg",
  23243. extra: 597 / 564,
  23244. bottom: 55 / 653
  23245. }
  23246. },
  23247. backAlt: {
  23248. height: math.unit(5 + 4 / 12, "feet"),
  23249. weight: math.unit(120, "lb"),
  23250. name: "Back (Alt)",
  23251. image: {
  23252. source: "./media/characters/rory/back-alt.svg",
  23253. extra: 620 / 585,
  23254. bottom: 8.86 / 630.43
  23255. }
  23256. },
  23257. dickAlt: {
  23258. height: math.unit(0.86, "feet"),
  23259. name: "Dick (Alt)",
  23260. image: {
  23261. source: "./media/characters/rory/dick-alt.svg"
  23262. }
  23263. },
  23264. },
  23265. [
  23266. {
  23267. name: "Normal",
  23268. height: math.unit(5 + 4 / 12, "feet"),
  23269. default: true
  23270. },
  23271. {
  23272. name: "Macro",
  23273. height: math.unit(100, "feet")
  23274. },
  23275. {
  23276. name: "Macro+",
  23277. height: math.unit(140, "feet")
  23278. },
  23279. {
  23280. name: "Macro++",
  23281. height: math.unit(300, "feet")
  23282. },
  23283. ]
  23284. ))
  23285. characterMakers.push(() => makeCharacter(
  23286. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23287. {
  23288. front: {
  23289. height: math.unit(5 + 9 / 12, "feet"),
  23290. weight: math.unit(190, "lb"),
  23291. name: "Front",
  23292. image: {
  23293. source: "./media/characters/sprisk/front.svg",
  23294. extra: 1225 / 1180,
  23295. bottom: 42.7 / 1266.4
  23296. }
  23297. },
  23298. frontNsfw: {
  23299. height: math.unit(5 + 9 / 12, "feet"),
  23300. weight: math.unit(190, "lb"),
  23301. name: "Front (NSFW)",
  23302. image: {
  23303. source: "./media/characters/sprisk/front-nsfw.svg",
  23304. extra: 1225 / 1180,
  23305. bottom: 42.7 / 1266.4
  23306. }
  23307. },
  23308. back: {
  23309. height: math.unit(5 + 9 / 12, "feet"),
  23310. weight: math.unit(190, "lb"),
  23311. name: "Back",
  23312. image: {
  23313. source: "./media/characters/sprisk/back.svg",
  23314. extra: 1247 / 1200,
  23315. bottom: 5.6 / 1253.04
  23316. }
  23317. },
  23318. },
  23319. [
  23320. {
  23321. name: "Tiny",
  23322. height: math.unit(2, "inches")
  23323. },
  23324. {
  23325. name: "Normal",
  23326. height: math.unit(5 + 9 / 12, "feet"),
  23327. default: true
  23328. },
  23329. {
  23330. name: "Mini Macro",
  23331. height: math.unit(18, "feet")
  23332. },
  23333. {
  23334. name: "Macro",
  23335. height: math.unit(100, "feet")
  23336. },
  23337. {
  23338. name: "MACRO",
  23339. height: math.unit(50, "miles")
  23340. },
  23341. {
  23342. name: "M A C R O",
  23343. height: math.unit(300, "miles")
  23344. },
  23345. ]
  23346. ))
  23347. characterMakers.push(() => makeCharacter(
  23348. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23349. {
  23350. side: {
  23351. height: math.unit(15.6, "meters"),
  23352. weight: math.unit(700000, "kg"),
  23353. name: "Side",
  23354. image: {
  23355. source: "./media/characters/bunsen/side.svg",
  23356. extra: 1644 / 358
  23357. }
  23358. },
  23359. foot: {
  23360. height: math.unit(1.611 * 1644 / 358, "meter"),
  23361. name: "Foot",
  23362. image: {
  23363. source: "./media/characters/bunsen/foot.svg"
  23364. }
  23365. },
  23366. },
  23367. [
  23368. {
  23369. name: "Small",
  23370. height: math.unit(10, "feet")
  23371. },
  23372. {
  23373. name: "Normal",
  23374. height: math.unit(15.6, "meters"),
  23375. default: true
  23376. },
  23377. ]
  23378. ))
  23379. characterMakers.push(() => makeCharacter(
  23380. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23381. {
  23382. front: {
  23383. height: math.unit(4 + 11 / 12, "feet"),
  23384. weight: math.unit(140, "lb"),
  23385. name: "Front",
  23386. image: {
  23387. source: "./media/characters/sesh/front.svg",
  23388. extra: 3420 / 3231,
  23389. bottom: 72 / 3949.5
  23390. }
  23391. },
  23392. },
  23393. [
  23394. {
  23395. name: "Normal",
  23396. height: math.unit(4 + 11 / 12, "feet")
  23397. },
  23398. {
  23399. name: "Grown",
  23400. height: math.unit(15, "feet"),
  23401. default: true
  23402. },
  23403. {
  23404. name: "Macro",
  23405. height: math.unit(1500, "feet")
  23406. },
  23407. {
  23408. name: "Megamacro",
  23409. height: math.unit(30, "miles")
  23410. },
  23411. {
  23412. name: "Continental",
  23413. height: math.unit(3000, "miles")
  23414. },
  23415. {
  23416. name: "Gravity Mass",
  23417. height: math.unit(300000, "miles")
  23418. },
  23419. {
  23420. name: "Planet Buster",
  23421. height: math.unit(30000000, "miles")
  23422. },
  23423. {
  23424. name: "Big",
  23425. height: math.unit(3000000000, "miles")
  23426. },
  23427. ]
  23428. ))
  23429. characterMakers.push(() => makeCharacter(
  23430. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23431. {
  23432. front: {
  23433. height: math.unit(9, "feet"),
  23434. weight: math.unit(350, "lb"),
  23435. name: "Front",
  23436. image: {
  23437. source: "./media/characters/pepper/front.svg",
  23438. extra: 1448 / 1312,
  23439. bottom: 9.4 / 1457.88
  23440. }
  23441. },
  23442. back: {
  23443. height: math.unit(9, "feet"),
  23444. weight: math.unit(350, "lb"),
  23445. name: "Back",
  23446. image: {
  23447. source: "./media/characters/pepper/back.svg",
  23448. extra: 1423 / 1300,
  23449. bottom: 4.6 / 1429
  23450. }
  23451. },
  23452. maw: {
  23453. height: math.unit(0.932, "feet"),
  23454. name: "Maw",
  23455. image: {
  23456. source: "./media/characters/pepper/maw.svg"
  23457. }
  23458. },
  23459. },
  23460. [
  23461. {
  23462. name: "Normal",
  23463. height: math.unit(9, "feet"),
  23464. default: true
  23465. },
  23466. ]
  23467. ))
  23468. characterMakers.push(() => makeCharacter(
  23469. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23470. {
  23471. front: {
  23472. height: math.unit(6, "feet"),
  23473. weight: math.unit(150, "lb"),
  23474. name: "Front",
  23475. image: {
  23476. source: "./media/characters/maelstrom/front.svg",
  23477. extra: 2100 / 1883,
  23478. bottom: 94 / 2196.7
  23479. }
  23480. },
  23481. },
  23482. [
  23483. {
  23484. name: "Less Kaiju",
  23485. height: math.unit(200, "feet")
  23486. },
  23487. {
  23488. name: "Kaiju",
  23489. height: math.unit(400, "feet"),
  23490. default: true
  23491. },
  23492. {
  23493. name: "Kaiju-er",
  23494. height: math.unit(600, "feet")
  23495. },
  23496. ]
  23497. ))
  23498. characterMakers.push(() => makeCharacter(
  23499. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23500. {
  23501. front: {
  23502. height: math.unit(6 + 5 / 12, "feet"),
  23503. weight: math.unit(180, "lb"),
  23504. name: "Front",
  23505. image: {
  23506. source: "./media/characters/lexir/front.svg",
  23507. extra: 180 / 172,
  23508. bottom: 12 / 192
  23509. }
  23510. },
  23511. back: {
  23512. height: math.unit(6 + 5 / 12, "feet"),
  23513. weight: math.unit(180, "lb"),
  23514. name: "Back",
  23515. image: {
  23516. source: "./media/characters/lexir/back.svg",
  23517. extra: 183.84 / 175.5,
  23518. bottom: 3.1 / 187
  23519. }
  23520. },
  23521. },
  23522. [
  23523. {
  23524. name: "Very Smal",
  23525. height: math.unit(1, "nm")
  23526. },
  23527. {
  23528. name: "Normal",
  23529. height: math.unit(6 + 5 / 12, "feet"),
  23530. default: true
  23531. },
  23532. {
  23533. name: "Macro",
  23534. height: math.unit(1, "mile")
  23535. },
  23536. {
  23537. name: "Megamacro",
  23538. height: math.unit(50, "miles")
  23539. },
  23540. ]
  23541. ))
  23542. characterMakers.push(() => makeCharacter(
  23543. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23544. {
  23545. front: {
  23546. height: math.unit(1.5, "meters"),
  23547. weight: math.unit(100, "lb"),
  23548. name: "Front",
  23549. image: {
  23550. source: "./media/characters/maksio/front.svg",
  23551. extra: 1549 / 1531,
  23552. bottom: 123.7 / 1674.5429
  23553. }
  23554. },
  23555. back: {
  23556. height: math.unit(1.5, "meters"),
  23557. weight: math.unit(100, "lb"),
  23558. name: "Back",
  23559. image: {
  23560. source: "./media/characters/maksio/back.svg",
  23561. extra: 1541 / 1509,
  23562. bottom: 97 / 1639
  23563. }
  23564. },
  23565. hand: {
  23566. height: math.unit(0.621, "feet"),
  23567. name: "Hand",
  23568. image: {
  23569. source: "./media/characters/maksio/hand.svg"
  23570. }
  23571. },
  23572. foot: {
  23573. height: math.unit(1.611, "feet"),
  23574. name: "Foot",
  23575. image: {
  23576. source: "./media/characters/maksio/foot.svg"
  23577. }
  23578. },
  23579. },
  23580. [
  23581. {
  23582. name: "Shrunken",
  23583. height: math.unit(10, "cm")
  23584. },
  23585. {
  23586. name: "Normal",
  23587. height: math.unit(150, "cm"),
  23588. default: true
  23589. },
  23590. ]
  23591. ))
  23592. characterMakers.push(() => makeCharacter(
  23593. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23594. {
  23595. front: {
  23596. height: math.unit(100, "feet"),
  23597. name: "Front",
  23598. image: {
  23599. source: "./media/characters/erza-bear/front.svg",
  23600. extra: 2449 / 2390,
  23601. bottom: 46 / 2494
  23602. }
  23603. },
  23604. back: {
  23605. height: math.unit(100, "feet"),
  23606. name: "Back",
  23607. image: {
  23608. source: "./media/characters/erza-bear/back.svg",
  23609. extra: 2489 / 2430,
  23610. bottom: 85.4 / 2480
  23611. }
  23612. },
  23613. tail: {
  23614. height: math.unit(42, "feet"),
  23615. name: "Tail",
  23616. image: {
  23617. source: "./media/characters/erza-bear/tail.svg"
  23618. }
  23619. },
  23620. tongue: {
  23621. height: math.unit(8, "feet"),
  23622. name: "Tongue",
  23623. image: {
  23624. source: "./media/characters/erza-bear/tongue.svg"
  23625. }
  23626. },
  23627. dick: {
  23628. height: math.unit(10.5, "feet"),
  23629. name: "Dick",
  23630. image: {
  23631. source: "./media/characters/erza-bear/dick.svg"
  23632. }
  23633. },
  23634. dickVertical: {
  23635. height: math.unit(16.9, "feet"),
  23636. name: "Dick (Vertical)",
  23637. image: {
  23638. source: "./media/characters/erza-bear/dick-vertical.svg"
  23639. }
  23640. },
  23641. },
  23642. [
  23643. {
  23644. name: "Macro",
  23645. height: math.unit(100, "feet"),
  23646. default: true
  23647. },
  23648. ]
  23649. ))
  23650. characterMakers.push(() => makeCharacter(
  23651. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23652. {
  23653. front: {
  23654. height: math.unit(172, "cm"),
  23655. weight: math.unit(73, "kg"),
  23656. name: "Front",
  23657. image: {
  23658. source: "./media/characters/violet-flor/front.svg",
  23659. extra: 1530 / 1442,
  23660. bottom: 61.9 / 1588.8
  23661. }
  23662. },
  23663. back: {
  23664. height: math.unit(180, "cm"),
  23665. weight: math.unit(73, "kg"),
  23666. name: "Back",
  23667. image: {
  23668. source: "./media/characters/violet-flor/back.svg",
  23669. extra: 1692 / 1630,
  23670. bottom: 20 / 1712
  23671. }
  23672. },
  23673. },
  23674. [
  23675. {
  23676. name: "Normal",
  23677. height: math.unit(172, "cm"),
  23678. default: true
  23679. },
  23680. ]
  23681. ))
  23682. characterMakers.push(() => makeCharacter(
  23683. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23684. {
  23685. front: {
  23686. height: math.unit(6, "feet"),
  23687. weight: math.unit(220, "lb"),
  23688. name: "Front",
  23689. image: {
  23690. source: "./media/characters/lynn-rhea/front.svg",
  23691. extra: 310 / 273
  23692. }
  23693. },
  23694. back: {
  23695. height: math.unit(6, "feet"),
  23696. weight: math.unit(220, "lb"),
  23697. name: "Back",
  23698. image: {
  23699. source: "./media/characters/lynn-rhea/back.svg",
  23700. extra: 310 / 273
  23701. }
  23702. },
  23703. dicks: {
  23704. height: math.unit(0.9, "feet"),
  23705. name: "Dicks",
  23706. image: {
  23707. source: "./media/characters/lynn-rhea/dicks.svg"
  23708. }
  23709. },
  23710. slit: {
  23711. height: math.unit(0.4, "feet"),
  23712. name: "Slit",
  23713. image: {
  23714. source: "./media/characters/lynn-rhea/slit.svg"
  23715. }
  23716. },
  23717. },
  23718. [
  23719. {
  23720. name: "Micro",
  23721. height: math.unit(1, "inch")
  23722. },
  23723. {
  23724. name: "Macro",
  23725. height: math.unit(60, "feet"),
  23726. default: true
  23727. },
  23728. {
  23729. name: "Megamacro",
  23730. height: math.unit(2, "miles")
  23731. },
  23732. {
  23733. name: "Gigamacro",
  23734. height: math.unit(3, "earths")
  23735. },
  23736. {
  23737. name: "Galactic",
  23738. height: math.unit(0.8, "galaxies")
  23739. },
  23740. ]
  23741. ))
  23742. characterMakers.push(() => makeCharacter(
  23743. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23744. {
  23745. front: {
  23746. height: math.unit(1600, "feet"),
  23747. weight: math.unit(85758785169, "kg"),
  23748. name: "Front",
  23749. image: {
  23750. source: "./media/characters/valathos/front.svg",
  23751. extra: 1451 / 1339
  23752. }
  23753. },
  23754. },
  23755. [
  23756. {
  23757. name: "Macro",
  23758. height: math.unit(1600, "feet"),
  23759. default: true
  23760. },
  23761. ]
  23762. ))
  23763. characterMakers.push(() => makeCharacter(
  23764. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23765. {
  23766. front: {
  23767. height: math.unit(7 + 5 / 12, "feet"),
  23768. weight: math.unit(300, "lb"),
  23769. name: "Front",
  23770. image: {
  23771. source: "./media/characters/azula/front.svg",
  23772. extra: 3208 / 2880,
  23773. bottom: 80.2 / 3277
  23774. }
  23775. },
  23776. back: {
  23777. height: math.unit(7 + 5 / 12, "feet"),
  23778. weight: math.unit(300, "lb"),
  23779. name: "Back",
  23780. image: {
  23781. source: "./media/characters/azula/back.svg",
  23782. extra: 3169 / 2822,
  23783. bottom: 150.6 / 3321
  23784. }
  23785. },
  23786. },
  23787. [
  23788. {
  23789. name: "Normal",
  23790. height: math.unit(7 + 5 / 12, "feet"),
  23791. default: true
  23792. },
  23793. {
  23794. name: "Big",
  23795. height: math.unit(20, "feet")
  23796. },
  23797. ]
  23798. ))
  23799. characterMakers.push(() => makeCharacter(
  23800. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23801. {
  23802. front: {
  23803. height: math.unit(5 + 1 / 12, "feet"),
  23804. weight: math.unit(110, "lb"),
  23805. name: "Front",
  23806. image: {
  23807. source: "./media/characters/rupert/front.svg",
  23808. extra: 1549 / 1495,
  23809. bottom: 54.2 / 1604.4
  23810. }
  23811. },
  23812. },
  23813. [
  23814. {
  23815. name: "Normal",
  23816. height: math.unit(5 + 1 / 12, "feet"),
  23817. default: true
  23818. },
  23819. ]
  23820. ))
  23821. characterMakers.push(() => makeCharacter(
  23822. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23823. {
  23824. front: {
  23825. height: math.unit(8 + 4 / 12, "feet"),
  23826. weight: math.unit(350, "lb"),
  23827. name: "Front",
  23828. image: {
  23829. source: "./media/characters/sheera-castellar/front.svg",
  23830. extra: 1957 / 1894,
  23831. bottom: 26.97 / 1975.017
  23832. }
  23833. },
  23834. side: {
  23835. height: math.unit(8 + 4 / 12, "feet"),
  23836. weight: math.unit(350, "lb"),
  23837. name: "Side",
  23838. image: {
  23839. source: "./media/characters/sheera-castellar/side.svg",
  23840. extra: 1957 / 1894
  23841. }
  23842. },
  23843. back: {
  23844. height: math.unit(8 + 4 / 12, "feet"),
  23845. weight: math.unit(350, "lb"),
  23846. name: "Back",
  23847. image: {
  23848. source: "./media/characters/sheera-castellar/back.svg",
  23849. extra: 1957 / 1894
  23850. }
  23851. },
  23852. angled: {
  23853. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23854. weight: math.unit(350, "lb"),
  23855. name: "Angled",
  23856. image: {
  23857. source: "./media/characters/sheera-castellar/angled.svg",
  23858. extra: 1807 / 1707,
  23859. bottom: 68 / 1875
  23860. }
  23861. },
  23862. genitals: {
  23863. height: math.unit(2.2, "feet"),
  23864. name: "Genitals",
  23865. image: {
  23866. source: "./media/characters/sheera-castellar/genitals.svg"
  23867. }
  23868. },
  23869. taur: {
  23870. height: math.unit(10 + 6/12, "feet"),
  23871. name: "Taur",
  23872. image: {
  23873. source: "./media/characters/sheera-castellar/taur.svg",
  23874. extra: 2017/1909,
  23875. bottom: 185/2202
  23876. }
  23877. },
  23878. },
  23879. [
  23880. {
  23881. name: "Normal",
  23882. height: math.unit(8 + 4 / 12, "feet")
  23883. },
  23884. {
  23885. name: "Macro",
  23886. height: math.unit(150, "feet"),
  23887. default: true
  23888. },
  23889. {
  23890. name: "Macro+",
  23891. height: math.unit(800, "feet")
  23892. },
  23893. ]
  23894. ))
  23895. characterMakers.push(() => makeCharacter(
  23896. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23897. {
  23898. front: {
  23899. height: math.unit(6, "feet"),
  23900. weight: math.unit(150, "lb"),
  23901. name: "Front",
  23902. image: {
  23903. source: "./media/characters/jaipur/front.svg",
  23904. extra: 3860 / 3731,
  23905. bottom: 287 / 4140
  23906. }
  23907. },
  23908. back: {
  23909. height: math.unit(6, "feet"),
  23910. weight: math.unit(150, "lb"),
  23911. name: "Back",
  23912. image: {
  23913. source: "./media/characters/jaipur/back.svg",
  23914. extra: 4060 / 3930,
  23915. bottom: 151 / 4200
  23916. }
  23917. },
  23918. },
  23919. [
  23920. {
  23921. name: "Normal",
  23922. height: math.unit(1.85, "meters"),
  23923. default: true
  23924. },
  23925. {
  23926. name: "Macro",
  23927. height: math.unit(150, "meters")
  23928. },
  23929. {
  23930. name: "Macro+",
  23931. height: math.unit(0.5, "miles")
  23932. },
  23933. {
  23934. name: "Macro++",
  23935. height: math.unit(2.5, "miles")
  23936. },
  23937. {
  23938. name: "Macro+++",
  23939. height: math.unit(12, "miles")
  23940. },
  23941. {
  23942. name: "Macro++++",
  23943. height: math.unit(120, "miles")
  23944. },
  23945. {
  23946. name: "Macro+++++",
  23947. height: math.unit(1200, "miles")
  23948. },
  23949. ]
  23950. ))
  23951. characterMakers.push(() => makeCharacter(
  23952. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23953. {
  23954. front: {
  23955. height: math.unit(6, "feet"),
  23956. weight: math.unit(150, "lb"),
  23957. name: "Front",
  23958. image: {
  23959. source: "./media/characters/sheila-wolf/front.svg",
  23960. extra: 1931 / 1808,
  23961. bottom: 29.5 / 1960
  23962. }
  23963. },
  23964. dick: {
  23965. height: math.unit(1.464, "feet"),
  23966. name: "Dick",
  23967. image: {
  23968. source: "./media/characters/sheila-wolf/dick.svg"
  23969. }
  23970. },
  23971. muzzle: {
  23972. height: math.unit(0.513, "feet"),
  23973. name: "Muzzle",
  23974. image: {
  23975. source: "./media/characters/sheila-wolf/muzzle.svg"
  23976. }
  23977. },
  23978. },
  23979. [
  23980. {
  23981. name: "Macro",
  23982. height: math.unit(70, "feet"),
  23983. default: true
  23984. },
  23985. ]
  23986. ))
  23987. characterMakers.push(() => makeCharacter(
  23988. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23989. {
  23990. front: {
  23991. height: math.unit(32, "meters"),
  23992. weight: math.unit(300000, "kg"),
  23993. name: "Front",
  23994. image: {
  23995. source: "./media/characters/almor/front.svg",
  23996. extra: 1408 / 1322,
  23997. bottom: 94.6 / 1506.5
  23998. }
  23999. },
  24000. },
  24001. [
  24002. {
  24003. name: "Macro",
  24004. height: math.unit(32, "meters"),
  24005. default: true
  24006. },
  24007. ]
  24008. ))
  24009. characterMakers.push(() => makeCharacter(
  24010. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24011. {
  24012. front: {
  24013. height: math.unit(7, "feet"),
  24014. weight: math.unit(200, "lb"),
  24015. name: "Front",
  24016. image: {
  24017. source: "./media/characters/silver/front.svg",
  24018. extra: 472.1 / 450.5,
  24019. bottom: 26.5 / 499.424
  24020. }
  24021. },
  24022. },
  24023. [
  24024. {
  24025. name: "Normal",
  24026. height: math.unit(7, "feet"),
  24027. default: true
  24028. },
  24029. {
  24030. name: "Macro",
  24031. height: math.unit(800, "feet")
  24032. },
  24033. {
  24034. name: "Megamacro",
  24035. height: math.unit(250, "miles")
  24036. },
  24037. ]
  24038. ))
  24039. characterMakers.push(() => makeCharacter(
  24040. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24041. {
  24042. front: {
  24043. height: math.unit(6, "feet"),
  24044. weight: math.unit(150, "lb"),
  24045. name: "Front",
  24046. image: {
  24047. source: "./media/characters/pliskin/front.svg",
  24048. extra: 1469 / 1359,
  24049. bottom: 70 / 1540
  24050. }
  24051. },
  24052. },
  24053. [
  24054. {
  24055. name: "Micro",
  24056. height: math.unit(3, "inches")
  24057. },
  24058. {
  24059. name: "Normal",
  24060. height: math.unit(5 + 11 / 12, "feet"),
  24061. default: true
  24062. },
  24063. {
  24064. name: "Macro",
  24065. height: math.unit(120, "feet")
  24066. },
  24067. ]
  24068. ))
  24069. characterMakers.push(() => makeCharacter(
  24070. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24071. {
  24072. front: {
  24073. height: math.unit(6, "feet"),
  24074. weight: math.unit(150, "lb"),
  24075. name: "Front",
  24076. image: {
  24077. source: "./media/characters/sammy/front.svg",
  24078. extra: 1193 / 1089,
  24079. bottom: 30.5 / 1226
  24080. }
  24081. },
  24082. },
  24083. [
  24084. {
  24085. name: "Macro",
  24086. height: math.unit(1700, "feet"),
  24087. default: true
  24088. },
  24089. {
  24090. name: "Examacro",
  24091. height: math.unit(2.5e9, "lightyears")
  24092. },
  24093. ]
  24094. ))
  24095. characterMakers.push(() => makeCharacter(
  24096. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24097. {
  24098. front: {
  24099. height: math.unit(21, "meters"),
  24100. weight: math.unit(12, "tonnes"),
  24101. name: "Front",
  24102. image: {
  24103. source: "./media/characters/kuru/front.svg",
  24104. extra: 4301 / 3785,
  24105. bottom: 371.3 / 4691
  24106. }
  24107. },
  24108. },
  24109. [
  24110. {
  24111. name: "Macro",
  24112. height: math.unit(21, "meters"),
  24113. default: true
  24114. },
  24115. ]
  24116. ))
  24117. characterMakers.push(() => makeCharacter(
  24118. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24119. {
  24120. front: {
  24121. height: math.unit(23, "meters"),
  24122. weight: math.unit(12.2, "tonnes"),
  24123. name: "Front",
  24124. image: {
  24125. source: "./media/characters/rakka/front.svg",
  24126. extra: 4670 / 4169,
  24127. bottom: 301 / 4968.7
  24128. }
  24129. },
  24130. },
  24131. [
  24132. {
  24133. name: "Macro",
  24134. height: math.unit(23, "meters"),
  24135. default: true
  24136. },
  24137. ]
  24138. ))
  24139. characterMakers.push(() => makeCharacter(
  24140. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24141. {
  24142. front: {
  24143. height: math.unit(6, "feet"),
  24144. weight: math.unit(150, "lb"),
  24145. name: "Front",
  24146. image: {
  24147. source: "./media/characters/rhys-feline/front.svg",
  24148. extra: 2488 / 2308,
  24149. bottom: 35.67 / 2519.19
  24150. }
  24151. },
  24152. },
  24153. [
  24154. {
  24155. name: "Really Small",
  24156. height: math.unit(1, "nm")
  24157. },
  24158. {
  24159. name: "Micro",
  24160. height: math.unit(4, "inches")
  24161. },
  24162. {
  24163. name: "Normal",
  24164. height: math.unit(4 + 10 / 12, "feet"),
  24165. default: true
  24166. },
  24167. {
  24168. name: "Macro",
  24169. height: math.unit(100, "feet")
  24170. },
  24171. {
  24172. name: "Megamacto",
  24173. height: math.unit(50, "miles")
  24174. },
  24175. ]
  24176. ))
  24177. characterMakers.push(() => makeCharacter(
  24178. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24179. {
  24180. side: {
  24181. height: math.unit(30, "feet"),
  24182. weight: math.unit(35000, "kg"),
  24183. name: "Side",
  24184. image: {
  24185. source: "./media/characters/alydar/side.svg",
  24186. extra: 234 / 222,
  24187. bottom: 6.5 / 241
  24188. }
  24189. },
  24190. front: {
  24191. height: math.unit(30, "feet"),
  24192. weight: math.unit(35000, "kg"),
  24193. name: "Front",
  24194. image: {
  24195. source: "./media/characters/alydar/front.svg",
  24196. extra: 223.37 / 210.2,
  24197. bottom: 22.3 / 246.76
  24198. }
  24199. },
  24200. top: {
  24201. height: math.unit(64.54, "feet"),
  24202. weight: math.unit(35000, "kg"),
  24203. name: "Top",
  24204. image: {
  24205. source: "./media/characters/alydar/top.svg"
  24206. }
  24207. },
  24208. anthro: {
  24209. height: math.unit(30, "feet"),
  24210. weight: math.unit(9000, "kg"),
  24211. name: "Anthro",
  24212. image: {
  24213. source: "./media/characters/alydar/anthro.svg",
  24214. extra: 432 / 421,
  24215. bottom: 7.18 / 440
  24216. }
  24217. },
  24218. maw: {
  24219. height: math.unit(11.693, "feet"),
  24220. name: "Maw",
  24221. image: {
  24222. source: "./media/characters/alydar/maw.svg"
  24223. }
  24224. },
  24225. head: {
  24226. height: math.unit(11.693, "feet"),
  24227. name: "Head",
  24228. image: {
  24229. source: "./media/characters/alydar/head.svg"
  24230. }
  24231. },
  24232. headAlt: {
  24233. height: math.unit(12.861, "feet"),
  24234. name: "Head (Alt)",
  24235. image: {
  24236. source: "./media/characters/alydar/head-alt.svg"
  24237. }
  24238. },
  24239. wing: {
  24240. height: math.unit(20.712, "feet"),
  24241. name: "Wing",
  24242. image: {
  24243. source: "./media/characters/alydar/wing.svg"
  24244. }
  24245. },
  24246. wingFeather: {
  24247. height: math.unit(9.662, "feet"),
  24248. name: "Wing Feather",
  24249. image: {
  24250. source: "./media/characters/alydar/wing-feather.svg"
  24251. }
  24252. },
  24253. countourFeather: {
  24254. height: math.unit(4.154, "feet"),
  24255. name: "Contour Feather",
  24256. image: {
  24257. source: "./media/characters/alydar/contour-feather.svg"
  24258. }
  24259. },
  24260. },
  24261. [
  24262. {
  24263. name: "Diplomatic",
  24264. height: math.unit(13, "feet"),
  24265. default: true
  24266. },
  24267. {
  24268. name: "Small",
  24269. height: math.unit(30, "feet")
  24270. },
  24271. {
  24272. name: "Normal",
  24273. height: math.unit(95, "feet"),
  24274. default: true
  24275. },
  24276. {
  24277. name: "Large",
  24278. height: math.unit(285, "feet")
  24279. },
  24280. {
  24281. name: "Incomprehensible",
  24282. height: math.unit(450, "megameters")
  24283. },
  24284. ]
  24285. ))
  24286. characterMakers.push(() => makeCharacter(
  24287. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24288. {
  24289. side: {
  24290. height: math.unit(11, "feet"),
  24291. weight: math.unit(1750, "kg"),
  24292. name: "Side",
  24293. image: {
  24294. source: "./media/characters/selicia/side.svg",
  24295. extra: 440 / 396,
  24296. bottom: 24.8 / 465.979
  24297. }
  24298. },
  24299. maw: {
  24300. height: math.unit(4.665, "feet"),
  24301. name: "Maw",
  24302. image: {
  24303. source: "./media/characters/selicia/maw.svg"
  24304. }
  24305. },
  24306. },
  24307. [
  24308. {
  24309. name: "Normal",
  24310. height: math.unit(11, "feet"),
  24311. default: true
  24312. },
  24313. ]
  24314. ))
  24315. characterMakers.push(() => makeCharacter(
  24316. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24317. {
  24318. side: {
  24319. height: math.unit(2 + 6 / 12, "feet"),
  24320. weight: math.unit(30, "lb"),
  24321. name: "Side",
  24322. image: {
  24323. source: "./media/characters/layla/side.svg",
  24324. extra: 244 / 188,
  24325. bottom: 18.2 / 262.1
  24326. }
  24327. },
  24328. back: {
  24329. height: math.unit(2 + 6 / 12, "feet"),
  24330. weight: math.unit(30, "lb"),
  24331. name: "Back",
  24332. image: {
  24333. source: "./media/characters/layla/back.svg",
  24334. extra: 308 / 241.5,
  24335. bottom: 8.9 / 316.8
  24336. }
  24337. },
  24338. cumming: {
  24339. height: math.unit(2 + 6 / 12, "feet"),
  24340. weight: math.unit(30, "lb"),
  24341. name: "Cumming",
  24342. image: {
  24343. source: "./media/characters/layla/cumming.svg",
  24344. extra: 342 / 279,
  24345. bottom: 595 / 938
  24346. }
  24347. },
  24348. dickFlaccid: {
  24349. height: math.unit(2.595, "feet"),
  24350. name: "Flaccid Genitals",
  24351. image: {
  24352. source: "./media/characters/layla/dick-flaccid.svg"
  24353. }
  24354. },
  24355. dickErect: {
  24356. height: math.unit(2.359, "feet"),
  24357. name: "Erect Genitals",
  24358. image: {
  24359. source: "./media/characters/layla/dick-erect.svg"
  24360. }
  24361. },
  24362. dragon: {
  24363. height: math.unit(40, "feet"),
  24364. name: "Dragon",
  24365. image: {
  24366. source: "./media/characters/layla/dragon.svg",
  24367. extra: 610/535,
  24368. bottom: 367/977
  24369. }
  24370. },
  24371. taur: {
  24372. height: math.unit(30, "feet"),
  24373. name: "Taur",
  24374. image: {
  24375. source: "./media/characters/layla/taur.svg",
  24376. extra: 1268/1199,
  24377. bottom: 112/1380
  24378. }
  24379. },
  24380. },
  24381. [
  24382. {
  24383. name: "Micro",
  24384. height: math.unit(1, "inch")
  24385. },
  24386. {
  24387. name: "Small",
  24388. height: math.unit(1, "foot")
  24389. },
  24390. {
  24391. name: "Normal",
  24392. height: math.unit(2 + 6 / 12, "feet"),
  24393. default: true
  24394. },
  24395. {
  24396. name: "Macro",
  24397. height: math.unit(200, "feet")
  24398. },
  24399. {
  24400. name: "Megamacro",
  24401. height: math.unit(1000, "miles")
  24402. },
  24403. {
  24404. name: "Planetary",
  24405. height: math.unit(8000, "miles")
  24406. },
  24407. {
  24408. name: "True Layla",
  24409. height: math.unit(200000 * 7, "multiverses")
  24410. },
  24411. ]
  24412. ))
  24413. characterMakers.push(() => makeCharacter(
  24414. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24415. {
  24416. back: {
  24417. height: math.unit(10.5, "feet"),
  24418. weight: math.unit(800, "lb"),
  24419. name: "Back",
  24420. image: {
  24421. source: "./media/characters/knox/back.svg",
  24422. extra: 1486 / 1089,
  24423. bottom: 107 / 1601.4
  24424. }
  24425. },
  24426. side: {
  24427. height: math.unit(10.5, "feet"),
  24428. weight: math.unit(800, "lb"),
  24429. name: "Side",
  24430. image: {
  24431. source: "./media/characters/knox/side.svg",
  24432. extra: 244 / 218,
  24433. bottom: 14 / 260
  24434. }
  24435. },
  24436. },
  24437. [
  24438. {
  24439. name: "Compact",
  24440. height: math.unit(10.5, "feet"),
  24441. default: true
  24442. },
  24443. {
  24444. name: "Dynamax",
  24445. height: math.unit(210, "feet")
  24446. },
  24447. {
  24448. name: "Full Macro",
  24449. height: math.unit(850, "feet")
  24450. },
  24451. ]
  24452. ))
  24453. characterMakers.push(() => makeCharacter(
  24454. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24455. {
  24456. front: {
  24457. height: math.unit(28, "feet"),
  24458. weight: math.unit(10500, "lb"),
  24459. name: "Front",
  24460. image: {
  24461. source: "./media/characters/kayda/front.svg",
  24462. extra: 1536 / 1428,
  24463. bottom: 68.7 / 1603
  24464. }
  24465. },
  24466. back: {
  24467. height: math.unit(28, "feet"),
  24468. weight: math.unit(10500, "lb"),
  24469. name: "Back",
  24470. image: {
  24471. source: "./media/characters/kayda/back.svg",
  24472. extra: 1557 / 1464,
  24473. bottom: 39.5 / 1597.49
  24474. }
  24475. },
  24476. dick: {
  24477. height: math.unit(3.858, "feet"),
  24478. name: "Dick",
  24479. image: {
  24480. source: "./media/characters/kayda/dick.svg"
  24481. }
  24482. },
  24483. },
  24484. [
  24485. {
  24486. name: "Macro",
  24487. height: math.unit(28, "feet"),
  24488. default: true
  24489. },
  24490. ]
  24491. ))
  24492. characterMakers.push(() => makeCharacter(
  24493. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24494. {
  24495. front: {
  24496. height: math.unit(10 + 11 / 12, "feet"),
  24497. weight: math.unit(1400, "lb"),
  24498. name: "Front",
  24499. image: {
  24500. source: "./media/characters/brian/front.svg",
  24501. extra: 737 / 692,
  24502. bottom: 55.4 / 785
  24503. }
  24504. },
  24505. },
  24506. [
  24507. {
  24508. name: "Normal",
  24509. height: math.unit(10 + 11 / 12, "feet"),
  24510. default: true
  24511. },
  24512. ]
  24513. ))
  24514. characterMakers.push(() => makeCharacter(
  24515. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24516. {
  24517. front: {
  24518. height: math.unit(5 + 8 / 12, "feet"),
  24519. weight: math.unit(140, "lb"),
  24520. name: "Front",
  24521. image: {
  24522. source: "./media/characters/khemri/front.svg",
  24523. extra: 4780 / 4059,
  24524. bottom: 80.1 / 4859.25
  24525. }
  24526. },
  24527. },
  24528. [
  24529. {
  24530. name: "Micro",
  24531. height: math.unit(6, "inches")
  24532. },
  24533. {
  24534. name: "Normal",
  24535. height: math.unit(5 + 8 / 12, "feet"),
  24536. default: true
  24537. },
  24538. ]
  24539. ))
  24540. characterMakers.push(() => makeCharacter(
  24541. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24542. {
  24543. front: {
  24544. height: math.unit(13, "feet"),
  24545. weight: math.unit(1700, "lb"),
  24546. name: "Front",
  24547. image: {
  24548. source: "./media/characters/felix-braveheart/front.svg",
  24549. extra: 1222 / 1157,
  24550. bottom: 53.2 / 1280
  24551. }
  24552. },
  24553. back: {
  24554. height: math.unit(13, "feet"),
  24555. weight: math.unit(1700, "lb"),
  24556. name: "Back",
  24557. image: {
  24558. source: "./media/characters/felix-braveheart/back.svg",
  24559. extra: 1277 / 1203,
  24560. bottom: 50.2 / 1327
  24561. }
  24562. },
  24563. feral: {
  24564. height: math.unit(6, "feet"),
  24565. weight: math.unit(400, "lb"),
  24566. name: "Feral",
  24567. image: {
  24568. source: "./media/characters/felix-braveheart/feral.svg",
  24569. extra: 682 / 625,
  24570. bottom: 6.9 / 688
  24571. }
  24572. },
  24573. },
  24574. [
  24575. {
  24576. name: "Normal",
  24577. height: math.unit(13, "feet"),
  24578. default: true
  24579. },
  24580. ]
  24581. ))
  24582. characterMakers.push(() => makeCharacter(
  24583. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24584. {
  24585. side: {
  24586. height: math.unit(5 + 11 / 12, "feet"),
  24587. weight: math.unit(1400, "lb"),
  24588. name: "Side",
  24589. image: {
  24590. source: "./media/characters/shadow-blade/side.svg",
  24591. extra: 1726 / 1267,
  24592. bottom: 58.4 / 1785
  24593. }
  24594. },
  24595. },
  24596. [
  24597. {
  24598. name: "Normal",
  24599. height: math.unit(5 + 11 / 12, "feet"),
  24600. default: true
  24601. },
  24602. ]
  24603. ))
  24604. characterMakers.push(() => makeCharacter(
  24605. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24606. {
  24607. front: {
  24608. height: math.unit(1 + 6 / 12, "feet"),
  24609. weight: math.unit(25, "lb"),
  24610. name: "Front",
  24611. image: {
  24612. source: "./media/characters/karla-halldor/front.svg",
  24613. extra: 1459 / 1383,
  24614. bottom: 12 / 1472
  24615. }
  24616. },
  24617. },
  24618. [
  24619. {
  24620. name: "Normal",
  24621. height: math.unit(1 + 6 / 12, "feet"),
  24622. default: true
  24623. },
  24624. ]
  24625. ))
  24626. characterMakers.push(() => makeCharacter(
  24627. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24628. {
  24629. front: {
  24630. height: math.unit(6 + 2 / 12, "feet"),
  24631. weight: math.unit(160, "lb"),
  24632. name: "Front",
  24633. image: {
  24634. source: "./media/characters/ariam/front.svg",
  24635. extra: 1073/976,
  24636. bottom: 52/1125
  24637. }
  24638. },
  24639. back: {
  24640. height: math.unit(6 + 2/12, "feet"),
  24641. weight: math.unit(160, "lb"),
  24642. name: "Back",
  24643. image: {
  24644. source: "./media/characters/ariam/back.svg",
  24645. extra: 1103/1023,
  24646. bottom: 9/1112
  24647. }
  24648. },
  24649. dressed: {
  24650. height: math.unit(6 + 2/12, "feet"),
  24651. weight: math.unit(160, "lb"),
  24652. name: "Dressed",
  24653. image: {
  24654. source: "./media/characters/ariam/dressed.svg",
  24655. extra: 1099/1009,
  24656. bottom: 25/1124
  24657. }
  24658. },
  24659. squatting: {
  24660. height: math.unit(4.1, "feet"),
  24661. weight: math.unit(160, "lb"),
  24662. name: "Squatting",
  24663. image: {
  24664. source: "./media/characters/ariam/squatting.svg",
  24665. extra: 2617 / 2112,
  24666. bottom: 61.2 / 2681,
  24667. }
  24668. },
  24669. },
  24670. [
  24671. {
  24672. name: "Normal",
  24673. height: math.unit(6 + 2 / 12, "feet"),
  24674. default: true
  24675. },
  24676. {
  24677. name: "Normal+",
  24678. height: math.unit(4, "meters")
  24679. },
  24680. {
  24681. name: "Macro",
  24682. height: math.unit(50, "meters")
  24683. },
  24684. {
  24685. name: "Macro+",
  24686. height: math.unit(100, "meters")
  24687. },
  24688. {
  24689. name: "Megamacro",
  24690. height: math.unit(20, "km")
  24691. },
  24692. {
  24693. name: "Caretaker",
  24694. height: math.unit(444, "megameters")
  24695. },
  24696. ]
  24697. ))
  24698. characterMakers.push(() => makeCharacter(
  24699. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24700. {
  24701. front: {
  24702. height: math.unit(1.67, "meters"),
  24703. weight: math.unit(140, "lb"),
  24704. name: "Front",
  24705. image: {
  24706. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24707. extra: 438 / 410,
  24708. bottom: 0.75 / 439
  24709. }
  24710. },
  24711. },
  24712. [
  24713. {
  24714. name: "Shrunken",
  24715. height: math.unit(7.6, "cm")
  24716. },
  24717. {
  24718. name: "Human Scale",
  24719. height: math.unit(1.67, "meters")
  24720. },
  24721. {
  24722. name: "Wolxi Scale",
  24723. height: math.unit(36.7, "meters"),
  24724. default: true
  24725. },
  24726. ]
  24727. ))
  24728. characterMakers.push(() => makeCharacter(
  24729. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24730. {
  24731. front: {
  24732. height: math.unit(1.73, "meters"),
  24733. weight: math.unit(240, "lb"),
  24734. name: "Front",
  24735. image: {
  24736. source: "./media/characters/izue-two-mothers/front.svg",
  24737. extra: 469 / 437,
  24738. bottom: 1.24 / 470.6
  24739. }
  24740. },
  24741. },
  24742. [
  24743. {
  24744. name: "Shrunken",
  24745. height: math.unit(7.86, "cm")
  24746. },
  24747. {
  24748. name: "Human Scale",
  24749. height: math.unit(1.73, "meters")
  24750. },
  24751. {
  24752. name: "Wolxi Scale",
  24753. height: math.unit(38, "meters"),
  24754. default: true
  24755. },
  24756. ]
  24757. ))
  24758. characterMakers.push(() => makeCharacter(
  24759. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24760. {
  24761. front: {
  24762. height: math.unit(1.55, "meters"),
  24763. weight: math.unit(120, "lb"),
  24764. name: "Front",
  24765. image: {
  24766. source: "./media/characters/teeku-love-shack/front.svg",
  24767. extra: 387 / 362,
  24768. bottom: 1.51 / 388
  24769. }
  24770. },
  24771. },
  24772. [
  24773. {
  24774. name: "Shrunken",
  24775. height: math.unit(7, "cm")
  24776. },
  24777. {
  24778. name: "Human Scale",
  24779. height: math.unit(1.55, "meters")
  24780. },
  24781. {
  24782. name: "Wolxi Scale",
  24783. height: math.unit(34.1, "meters"),
  24784. default: true
  24785. },
  24786. ]
  24787. ))
  24788. characterMakers.push(() => makeCharacter(
  24789. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24790. {
  24791. front: {
  24792. height: math.unit(1.83, "meters"),
  24793. weight: math.unit(135, "lb"),
  24794. name: "Front",
  24795. image: {
  24796. source: "./media/characters/dejma-the-red/front.svg",
  24797. extra: 480 / 458,
  24798. bottom: 1.8 / 482
  24799. }
  24800. },
  24801. },
  24802. [
  24803. {
  24804. name: "Shrunken",
  24805. height: math.unit(8.3, "cm")
  24806. },
  24807. {
  24808. name: "Human Scale",
  24809. height: math.unit(1.83, "meters")
  24810. },
  24811. {
  24812. name: "Wolxi Scale",
  24813. height: math.unit(40, "meters"),
  24814. default: true
  24815. },
  24816. ]
  24817. ))
  24818. characterMakers.push(() => makeCharacter(
  24819. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24820. {
  24821. front: {
  24822. height: math.unit(1.78, "meters"),
  24823. weight: math.unit(65, "kg"),
  24824. name: "Front",
  24825. image: {
  24826. source: "./media/characters/aki/front.svg",
  24827. extra: 452 / 415
  24828. }
  24829. },
  24830. frontNsfw: {
  24831. height: math.unit(1.78, "meters"),
  24832. weight: math.unit(65, "kg"),
  24833. name: "Front (NSFW)",
  24834. image: {
  24835. source: "./media/characters/aki/front-nsfw.svg",
  24836. extra: 452 / 415
  24837. }
  24838. },
  24839. back: {
  24840. height: math.unit(1.78, "meters"),
  24841. weight: math.unit(65, "kg"),
  24842. name: "Back",
  24843. image: {
  24844. source: "./media/characters/aki/back.svg",
  24845. extra: 452 / 415
  24846. }
  24847. },
  24848. rump: {
  24849. height: math.unit(2.05, "feet"),
  24850. name: "Rump",
  24851. image: {
  24852. source: "./media/characters/aki/rump.svg"
  24853. }
  24854. },
  24855. dick: {
  24856. height: math.unit(0.95, "feet"),
  24857. name: "Dick",
  24858. image: {
  24859. source: "./media/characters/aki/dick.svg"
  24860. }
  24861. },
  24862. },
  24863. [
  24864. {
  24865. name: "Micro",
  24866. height: math.unit(15, "cm")
  24867. },
  24868. {
  24869. name: "Normal",
  24870. height: math.unit(178, "cm"),
  24871. default: true
  24872. },
  24873. {
  24874. name: "Macro",
  24875. height: math.unit(214, "m")
  24876. },
  24877. {
  24878. name: "Macro+",
  24879. height: math.unit(534, "m")
  24880. },
  24881. ]
  24882. ))
  24883. characterMakers.push(() => makeCharacter(
  24884. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24885. {
  24886. front: {
  24887. height: math.unit(5 + 5 / 12, "feet"),
  24888. weight: math.unit(120, "lb"),
  24889. name: "Front",
  24890. image: {
  24891. source: "./media/characters/ari/front.svg",
  24892. extra: 714.5 / 682,
  24893. bottom: 8 / 722.5
  24894. }
  24895. },
  24896. },
  24897. [
  24898. {
  24899. name: "Normal",
  24900. height: math.unit(5 + 5 / 12, "feet")
  24901. },
  24902. {
  24903. name: "Macro",
  24904. height: math.unit(100, "feet"),
  24905. default: true
  24906. },
  24907. {
  24908. name: "Megamacro",
  24909. height: math.unit(100, "miles")
  24910. },
  24911. {
  24912. name: "Gigamacro",
  24913. height: math.unit(80000, "miles")
  24914. },
  24915. ]
  24916. ))
  24917. characterMakers.push(() => makeCharacter(
  24918. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24919. {
  24920. side: {
  24921. height: math.unit(9, "feet"),
  24922. weight: math.unit(400, "kg"),
  24923. name: "Side",
  24924. image: {
  24925. source: "./media/characters/bolt/side.svg",
  24926. extra: 1126 / 896,
  24927. bottom: 60 / 1187.3,
  24928. }
  24929. },
  24930. },
  24931. [
  24932. {
  24933. name: "Micro",
  24934. height: math.unit(5, "inches")
  24935. },
  24936. {
  24937. name: "Normal",
  24938. height: math.unit(9, "feet"),
  24939. default: true
  24940. },
  24941. {
  24942. name: "Macro",
  24943. height: math.unit(700, "feet")
  24944. },
  24945. {
  24946. name: "Max Size",
  24947. height: math.unit(1.52e22, "yottameters")
  24948. },
  24949. ]
  24950. ))
  24951. characterMakers.push(() => makeCharacter(
  24952. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24953. {
  24954. front: {
  24955. height: math.unit(4.3, "meters"),
  24956. weight: math.unit(3, "tons"),
  24957. name: "Front",
  24958. image: {
  24959. source: "./media/characters/draekon-sylviar/front.svg",
  24960. extra: 2072/1512,
  24961. bottom: 74/2146
  24962. }
  24963. },
  24964. back: {
  24965. height: math.unit(4.3, "meters"),
  24966. weight: math.unit(3, "tons"),
  24967. name: "Back",
  24968. image: {
  24969. source: "./media/characters/draekon-sylviar/back.svg",
  24970. extra: 1639/1483,
  24971. bottom: 41/1680
  24972. }
  24973. },
  24974. feral: {
  24975. height: math.unit(1.15, "meters"),
  24976. weight: math.unit(3, "tons"),
  24977. name: "Feral",
  24978. image: {
  24979. source: "./media/characters/draekon-sylviar/feral.svg",
  24980. extra: 1033/395,
  24981. bottom: 130/1163
  24982. }
  24983. },
  24984. maw: {
  24985. height: math.unit(1.3, "meters"),
  24986. name: "Maw",
  24987. image: {
  24988. source: "./media/characters/draekon-sylviar/maw.svg"
  24989. }
  24990. },
  24991. mawSeparated: {
  24992. height: math.unit(1.53, "meters"),
  24993. name: "Separated Maw",
  24994. image: {
  24995. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  24996. }
  24997. },
  24998. tail: {
  24999. height: math.unit(1.15, "meters"),
  25000. name: "Tail",
  25001. image: {
  25002. source: "./media/characters/draekon-sylviar/tail.svg"
  25003. }
  25004. },
  25005. tailDick: {
  25006. height: math.unit(1.15, "meters"),
  25007. name: "Tail (Dick)",
  25008. image: {
  25009. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25010. }
  25011. },
  25012. tailDickSeparated: {
  25013. height: math.unit(1.19, "meters"),
  25014. name: "Tail (Separated Dick)",
  25015. image: {
  25016. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25017. }
  25018. },
  25019. slit: {
  25020. height: math.unit(1, "meters"),
  25021. name: "Slit",
  25022. image: {
  25023. source: "./media/characters/draekon-sylviar/slit.svg"
  25024. }
  25025. },
  25026. dick: {
  25027. height: math.unit(1.15, "meters"),
  25028. name: "Dick",
  25029. image: {
  25030. source: "./media/characters/draekon-sylviar/dick.svg"
  25031. }
  25032. },
  25033. dickSeparated: {
  25034. height: math.unit(1.1, "meters"),
  25035. name: "Separated Dick",
  25036. image: {
  25037. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25038. }
  25039. },
  25040. sheath: {
  25041. height: math.unit(1.15, "meters"),
  25042. name: "Sheath",
  25043. image: {
  25044. source: "./media/characters/draekon-sylviar/sheath.svg"
  25045. }
  25046. },
  25047. },
  25048. [
  25049. {
  25050. name: "Small",
  25051. height: math.unit(4.53 / 2, "meters"),
  25052. default: true
  25053. },
  25054. {
  25055. name: "Normal",
  25056. height: math.unit(4.53, "meters"),
  25057. default: true
  25058. },
  25059. {
  25060. name: "Large",
  25061. height: math.unit(4.53 * 2, "meters"),
  25062. },
  25063. ]
  25064. ))
  25065. characterMakers.push(() => makeCharacter(
  25066. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25067. {
  25068. front: {
  25069. height: math.unit(6 + 2 / 12, "feet"),
  25070. weight: math.unit(180, "lb"),
  25071. name: "Front",
  25072. image: {
  25073. source: "./media/characters/brawler/front.svg",
  25074. extra: 3301 / 3027,
  25075. bottom: 138 / 3439
  25076. }
  25077. },
  25078. },
  25079. [
  25080. {
  25081. name: "Normal",
  25082. height: math.unit(6 + 2 / 12, "feet"),
  25083. default: true
  25084. },
  25085. ]
  25086. ))
  25087. characterMakers.push(() => makeCharacter(
  25088. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25089. {
  25090. front: {
  25091. height: math.unit(11, "feet"),
  25092. weight: math.unit(1000, "lb"),
  25093. name: "Front",
  25094. image: {
  25095. source: "./media/characters/alex/front.svg",
  25096. bottom: 44.5 / 620
  25097. }
  25098. },
  25099. },
  25100. [
  25101. {
  25102. name: "Micro",
  25103. height: math.unit(5, "inches")
  25104. },
  25105. {
  25106. name: "Normal",
  25107. height: math.unit(11, "feet"),
  25108. default: true
  25109. },
  25110. {
  25111. name: "Macro",
  25112. height: math.unit(9.5e9, "feet")
  25113. },
  25114. {
  25115. name: "Max Size",
  25116. height: math.unit(1.4e283, "yottameters")
  25117. },
  25118. ]
  25119. ))
  25120. characterMakers.push(() => makeCharacter(
  25121. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25122. {
  25123. female: {
  25124. height: math.unit(29.9, "m"),
  25125. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25126. name: "Female",
  25127. image: {
  25128. source: "./media/characters/zenari/female.svg",
  25129. extra: 3281.6 / 3217,
  25130. bottom: 72.2 / 3353
  25131. }
  25132. },
  25133. male: {
  25134. height: math.unit(27.7, "m"),
  25135. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25136. name: "Male",
  25137. image: {
  25138. source: "./media/characters/zenari/male.svg",
  25139. extra: 3008 / 2991,
  25140. bottom: 54.6 / 3069
  25141. }
  25142. },
  25143. },
  25144. [
  25145. {
  25146. name: "Macro",
  25147. height: math.unit(29.7, "meters"),
  25148. default: true
  25149. },
  25150. ]
  25151. ))
  25152. characterMakers.push(() => makeCharacter(
  25153. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25154. {
  25155. female: {
  25156. height: math.unit(23.8, "m"),
  25157. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25158. name: "Female",
  25159. image: {
  25160. source: "./media/characters/mactarian/female.svg",
  25161. extra: 2662 / 2569,
  25162. bottom: 73 / 2736
  25163. }
  25164. },
  25165. male: {
  25166. height: math.unit(23.8, "m"),
  25167. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25168. name: "Male",
  25169. image: {
  25170. source: "./media/characters/mactarian/male.svg",
  25171. extra: 2673 / 2600,
  25172. bottom: 76 / 2750
  25173. }
  25174. },
  25175. },
  25176. [
  25177. {
  25178. name: "Macro",
  25179. height: math.unit(23.8, "meters"),
  25180. default: true
  25181. },
  25182. ]
  25183. ))
  25184. characterMakers.push(() => makeCharacter(
  25185. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25186. {
  25187. female: {
  25188. height: math.unit(19.3, "m"),
  25189. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25190. name: "Female",
  25191. image: {
  25192. source: "./media/characters/umok/female.svg",
  25193. extra: 2186 / 2078,
  25194. bottom: 87 / 2277
  25195. }
  25196. },
  25197. male: {
  25198. height: math.unit(19.5, "m"),
  25199. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25200. name: "Male",
  25201. image: {
  25202. source: "./media/characters/umok/male.svg",
  25203. extra: 2233 / 2140,
  25204. bottom: 24.4 / 2258
  25205. }
  25206. },
  25207. },
  25208. [
  25209. {
  25210. name: "Macro",
  25211. height: math.unit(19.3, "meters"),
  25212. default: true
  25213. },
  25214. ]
  25215. ))
  25216. characterMakers.push(() => makeCharacter(
  25217. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25218. {
  25219. female: {
  25220. height: math.unit(26.15, "m"),
  25221. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25222. name: "Female",
  25223. image: {
  25224. source: "./media/characters/joraxian/female.svg",
  25225. extra: 2912 / 2824,
  25226. bottom: 36 / 2956
  25227. }
  25228. },
  25229. male: {
  25230. height: math.unit(25.4, "m"),
  25231. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25232. name: "Male",
  25233. image: {
  25234. source: "./media/characters/joraxian/male.svg",
  25235. extra: 2877 / 2721,
  25236. bottom: 82 / 2967
  25237. }
  25238. },
  25239. },
  25240. [
  25241. {
  25242. name: "Macro",
  25243. height: math.unit(26.15, "meters"),
  25244. default: true
  25245. },
  25246. ]
  25247. ))
  25248. characterMakers.push(() => makeCharacter(
  25249. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25250. {
  25251. female: {
  25252. height: math.unit(21.6, "m"),
  25253. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25254. name: "Female",
  25255. image: {
  25256. source: "./media/characters/sthara/female.svg",
  25257. extra: 2516 / 2347,
  25258. bottom: 21.5 / 2537
  25259. }
  25260. },
  25261. male: {
  25262. height: math.unit(24, "m"),
  25263. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25264. name: "Male",
  25265. image: {
  25266. source: "./media/characters/sthara/male.svg",
  25267. extra: 2732 / 2607,
  25268. bottom: 23 / 2732
  25269. }
  25270. },
  25271. },
  25272. [
  25273. {
  25274. name: "Macro",
  25275. height: math.unit(21.6, "meters"),
  25276. default: true
  25277. },
  25278. ]
  25279. ))
  25280. characterMakers.push(() => makeCharacter(
  25281. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25282. {
  25283. front: {
  25284. height: math.unit(6 + 4 / 12, "feet"),
  25285. weight: math.unit(175, "lb"),
  25286. name: "Front",
  25287. image: {
  25288. source: "./media/characters/luka-bryzant/front.svg",
  25289. extra: 311 / 289,
  25290. bottom: 4 / 315
  25291. }
  25292. },
  25293. back: {
  25294. height: math.unit(6 + 4 / 12, "feet"),
  25295. weight: math.unit(175, "lb"),
  25296. name: "Back",
  25297. image: {
  25298. source: "./media/characters/luka-bryzant/back.svg",
  25299. extra: 311 / 289,
  25300. bottom: 3.8 / 313.7
  25301. }
  25302. },
  25303. },
  25304. [
  25305. {
  25306. name: "Micro",
  25307. height: math.unit(10, "inches")
  25308. },
  25309. {
  25310. name: "Normal",
  25311. height: math.unit(6 + 4 / 12, "feet"),
  25312. default: true
  25313. },
  25314. {
  25315. name: "Large",
  25316. height: math.unit(12, "feet")
  25317. },
  25318. ]
  25319. ))
  25320. characterMakers.push(() => makeCharacter(
  25321. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25322. {
  25323. front: {
  25324. height: math.unit(5 + 7 / 12, "feet"),
  25325. weight: math.unit(185, "lb"),
  25326. name: "Front",
  25327. image: {
  25328. source: "./media/characters/aman-aquila/front.svg",
  25329. extra: 1013 / 976,
  25330. bottom: 45.6 / 1057
  25331. }
  25332. },
  25333. side: {
  25334. height: math.unit(5 + 7 / 12, "feet"),
  25335. weight: math.unit(185, "lb"),
  25336. name: "Side",
  25337. image: {
  25338. source: "./media/characters/aman-aquila/side.svg",
  25339. extra: 1054 / 1011,
  25340. bottom: 15 / 1070
  25341. }
  25342. },
  25343. back: {
  25344. height: math.unit(5 + 7 / 12, "feet"),
  25345. weight: math.unit(185, "lb"),
  25346. name: "Back",
  25347. image: {
  25348. source: "./media/characters/aman-aquila/back.svg",
  25349. extra: 1026 / 970,
  25350. bottom: 12 / 1039
  25351. }
  25352. },
  25353. head: {
  25354. height: math.unit(1.211, "feet"),
  25355. name: "Head",
  25356. image: {
  25357. source: "./media/characters/aman-aquila/head.svg",
  25358. }
  25359. },
  25360. },
  25361. [
  25362. {
  25363. name: "Minimicro",
  25364. height: math.unit(0.057, "inches")
  25365. },
  25366. {
  25367. name: "Micro",
  25368. height: math.unit(7, "inches")
  25369. },
  25370. {
  25371. name: "Mini",
  25372. height: math.unit(3 + 7 / 12, "feet")
  25373. },
  25374. {
  25375. name: "Normal",
  25376. height: math.unit(5 + 7 / 12, "feet"),
  25377. default: true
  25378. },
  25379. {
  25380. name: "Macro",
  25381. height: math.unit(157 + 7 / 12, "feet")
  25382. },
  25383. {
  25384. name: "Megamacro",
  25385. height: math.unit(1557 + 7 / 12, "feet")
  25386. },
  25387. {
  25388. name: "Gigamacro",
  25389. height: math.unit(15557 + 7 / 12, "feet")
  25390. },
  25391. ]
  25392. ))
  25393. characterMakers.push(() => makeCharacter(
  25394. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25395. {
  25396. front: {
  25397. height: math.unit(3 + 2 / 12, "inches"),
  25398. weight: math.unit(0.3, "ounces"),
  25399. name: "Front",
  25400. image: {
  25401. source: "./media/characters/hiphae/front.svg",
  25402. extra: 1931 / 1683,
  25403. bottom: 24 / 1955
  25404. }
  25405. },
  25406. },
  25407. [
  25408. {
  25409. name: "Normal",
  25410. height: math.unit(3 + 1 / 2, "inches"),
  25411. default: true
  25412. },
  25413. ]
  25414. ))
  25415. characterMakers.push(() => makeCharacter(
  25416. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25417. {
  25418. front: {
  25419. height: math.unit(5 + 10 / 12, "feet"),
  25420. weight: math.unit(165, "lb"),
  25421. name: "Front",
  25422. image: {
  25423. source: "./media/characters/nicky/front.svg",
  25424. extra: 3144 / 2886,
  25425. bottom: 45.6 / 3192
  25426. }
  25427. },
  25428. back: {
  25429. height: math.unit(5 + 10 / 12, "feet"),
  25430. weight: math.unit(165, "lb"),
  25431. name: "Back",
  25432. image: {
  25433. source: "./media/characters/nicky/back.svg",
  25434. extra: 3055 / 2804,
  25435. bottom: 28.4 / 3087
  25436. }
  25437. },
  25438. frontclothed: {
  25439. height: math.unit(5 + 10 / 12, "feet"),
  25440. weight: math.unit(165, "lb"),
  25441. name: "Front-clothed",
  25442. image: {
  25443. source: "./media/characters/nicky/front-clothed.svg",
  25444. extra: 3184.9 / 2926.9,
  25445. bottom: 86.5 / 3239.9
  25446. }
  25447. },
  25448. foot: {
  25449. height: math.unit(1.16, "feet"),
  25450. name: "Foot",
  25451. image: {
  25452. source: "./media/characters/nicky/foot.svg"
  25453. }
  25454. },
  25455. feet: {
  25456. height: math.unit(1.34, "feet"),
  25457. name: "Feet",
  25458. image: {
  25459. source: "./media/characters/nicky/feet.svg"
  25460. }
  25461. },
  25462. maw: {
  25463. height: math.unit(0.9, "feet"),
  25464. name: "Maw",
  25465. image: {
  25466. source: "./media/characters/nicky/maw.svg"
  25467. }
  25468. },
  25469. },
  25470. [
  25471. {
  25472. name: "Normal",
  25473. height: math.unit(5 + 10 / 12, "feet"),
  25474. default: true
  25475. },
  25476. {
  25477. name: "Macro",
  25478. height: math.unit(60, "feet")
  25479. },
  25480. {
  25481. name: "Megamacro",
  25482. height: math.unit(1, "mile")
  25483. },
  25484. ]
  25485. ))
  25486. characterMakers.push(() => makeCharacter(
  25487. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25488. {
  25489. side: {
  25490. height: math.unit(10, "feet"),
  25491. weight: math.unit(600, "lb"),
  25492. name: "Side",
  25493. image: {
  25494. source: "./media/characters/blair/side.svg",
  25495. bottom: 16.6 / 475,
  25496. extra: 458 / 431
  25497. }
  25498. },
  25499. },
  25500. [
  25501. {
  25502. name: "Micro",
  25503. height: math.unit(8, "inches")
  25504. },
  25505. {
  25506. name: "Normal",
  25507. height: math.unit(10, "feet"),
  25508. default: true
  25509. },
  25510. {
  25511. name: "Macro",
  25512. height: math.unit(180, "feet")
  25513. },
  25514. ]
  25515. ))
  25516. characterMakers.push(() => makeCharacter(
  25517. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25518. {
  25519. front: {
  25520. height: math.unit(5 + 4 / 12, "feet"),
  25521. weight: math.unit(125, "lb"),
  25522. name: "Front",
  25523. image: {
  25524. source: "./media/characters/fisher/front.svg",
  25525. extra: 444 / 390,
  25526. bottom: 2 / 444.8
  25527. }
  25528. },
  25529. },
  25530. [
  25531. {
  25532. name: "Micro",
  25533. height: math.unit(4, "inches")
  25534. },
  25535. {
  25536. name: "Normal",
  25537. height: math.unit(5 + 4 / 12, "feet"),
  25538. default: true
  25539. },
  25540. {
  25541. name: "Macro",
  25542. height: math.unit(100, "feet")
  25543. },
  25544. ]
  25545. ))
  25546. characterMakers.push(() => makeCharacter(
  25547. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25548. {
  25549. front: {
  25550. height: math.unit(6.71, "feet"),
  25551. weight: math.unit(200, "lb"),
  25552. capacity: math.unit(1000000, "people"),
  25553. name: "Front",
  25554. image: {
  25555. source: "./media/characters/gliss/front.svg",
  25556. extra: 2347 / 2231,
  25557. bottom: 113 / 2462
  25558. }
  25559. },
  25560. hammerspaceSize: {
  25561. height: math.unit(6.71 * 717, "feet"),
  25562. weight: math.unit(200, "lb"),
  25563. capacity: math.unit(1000000, "people"),
  25564. name: "Hammerspace Size",
  25565. image: {
  25566. source: "./media/characters/gliss/front.svg",
  25567. extra: 2347 / 2231,
  25568. bottom: 113 / 2462
  25569. }
  25570. },
  25571. },
  25572. [
  25573. {
  25574. name: "Normal",
  25575. height: math.unit(6.71, "feet"),
  25576. default: true
  25577. },
  25578. ]
  25579. ))
  25580. characterMakers.push(() => makeCharacter(
  25581. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25582. {
  25583. side: {
  25584. height: math.unit(1.44, "m"),
  25585. weight: math.unit(80, "kg"),
  25586. name: "Side",
  25587. image: {
  25588. source: "./media/characters/dune-anderson/side.svg",
  25589. bottom: 49 / 1426
  25590. }
  25591. },
  25592. },
  25593. [
  25594. {
  25595. name: "Wolf-sized",
  25596. height: math.unit(1.44, "meters")
  25597. },
  25598. {
  25599. name: "Normal",
  25600. height: math.unit(5.05, "meters"),
  25601. default: true
  25602. },
  25603. {
  25604. name: "Big",
  25605. height: math.unit(14.4, "meters")
  25606. },
  25607. {
  25608. name: "Huge",
  25609. height: math.unit(144, "meters")
  25610. },
  25611. ]
  25612. ))
  25613. characterMakers.push(() => makeCharacter(
  25614. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25615. {
  25616. front: {
  25617. height: math.unit(7, "feet"),
  25618. weight: math.unit(425, "lb"),
  25619. name: "Front",
  25620. image: {
  25621. source: "./media/characters/hind/front.svg",
  25622. extra: 2091 / 1860,
  25623. bottom: 129 / 2220
  25624. }
  25625. },
  25626. back: {
  25627. height: math.unit(7, "feet"),
  25628. weight: math.unit(425, "lb"),
  25629. name: "Back",
  25630. image: {
  25631. source: "./media/characters/hind/back.svg",
  25632. extra: 2091 / 1860,
  25633. bottom: 24.6 / 2309
  25634. }
  25635. },
  25636. tail: {
  25637. height: math.unit(2.8, "feet"),
  25638. name: "Tail",
  25639. image: {
  25640. source: "./media/characters/hind/tail.svg"
  25641. }
  25642. },
  25643. head: {
  25644. height: math.unit(2.55, "feet"),
  25645. name: "Head",
  25646. image: {
  25647. source: "./media/characters/hind/head.svg"
  25648. }
  25649. },
  25650. },
  25651. [
  25652. {
  25653. name: "XS",
  25654. height: math.unit(0.7, "feet")
  25655. },
  25656. {
  25657. name: "Normal",
  25658. height: math.unit(7, "feet"),
  25659. default: true
  25660. },
  25661. {
  25662. name: "XL",
  25663. height: math.unit(70, "feet")
  25664. },
  25665. ]
  25666. ))
  25667. characterMakers.push(() => makeCharacter(
  25668. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25669. {
  25670. front: {
  25671. height: math.unit(2.1, "meters"),
  25672. weight: math.unit(150, "lb"),
  25673. name: "Front",
  25674. image: {
  25675. source: "./media/characters/tharquench-sizestealer/front.svg",
  25676. extra: 1605/1470,
  25677. bottom: 36/1641
  25678. }
  25679. },
  25680. frontAlt: {
  25681. height: math.unit(2.1, "meters"),
  25682. weight: math.unit(150, "lb"),
  25683. name: "Front (Alt)",
  25684. image: {
  25685. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25686. extra: 2318 / 2063,
  25687. bottom: 93.4 / 2410
  25688. }
  25689. },
  25690. },
  25691. [
  25692. {
  25693. name: "Nano",
  25694. height: math.unit(1, "mm")
  25695. },
  25696. {
  25697. name: "Micro",
  25698. height: math.unit(1, "cm")
  25699. },
  25700. {
  25701. name: "Normal",
  25702. height: math.unit(2.1, "meters"),
  25703. default: true
  25704. },
  25705. ]
  25706. ))
  25707. characterMakers.push(() => makeCharacter(
  25708. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25709. {
  25710. front: {
  25711. height: math.unit(7 + 5 / 12, "feet"),
  25712. weight: math.unit(357, "lb"),
  25713. name: "Front",
  25714. image: {
  25715. source: "./media/characters/solex-draconov/front.svg",
  25716. extra: 1993 / 1865,
  25717. bottom: 117 / 2111
  25718. }
  25719. },
  25720. },
  25721. [
  25722. {
  25723. name: "Natural Height",
  25724. height: math.unit(7 + 5 / 12, "feet"),
  25725. default: true
  25726. },
  25727. {
  25728. name: "Macro",
  25729. height: math.unit(350, "feet")
  25730. },
  25731. {
  25732. name: "Macro+",
  25733. height: math.unit(1000, "feet")
  25734. },
  25735. {
  25736. name: "Megamacro",
  25737. height: math.unit(20, "km")
  25738. },
  25739. {
  25740. name: "Megamacro+",
  25741. height: math.unit(1000, "km")
  25742. },
  25743. {
  25744. name: "Gigamacro",
  25745. height: math.unit(2.5, "Gm")
  25746. },
  25747. {
  25748. name: "Teramacro",
  25749. height: math.unit(15, "Tm")
  25750. },
  25751. {
  25752. name: "Galactic",
  25753. height: math.unit(30, "Zm")
  25754. },
  25755. {
  25756. name: "Universal",
  25757. height: math.unit(21000, "Ym")
  25758. },
  25759. {
  25760. name: "Omniversal",
  25761. height: math.unit(9.861e50, "Ym")
  25762. },
  25763. {
  25764. name: "Existential",
  25765. height: math.unit(1e300, "meters")
  25766. },
  25767. ]
  25768. ))
  25769. characterMakers.push(() => makeCharacter(
  25770. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25771. {
  25772. side: {
  25773. height: math.unit(25, "feet"),
  25774. weight: math.unit(90000, "lb"),
  25775. name: "Side",
  25776. image: {
  25777. source: "./media/characters/mandarax/side.svg",
  25778. extra: 614 / 332,
  25779. bottom: 55 / 630
  25780. }
  25781. },
  25782. head: {
  25783. height: math.unit(11.4, "feet"),
  25784. name: "Head",
  25785. image: {
  25786. source: "./media/characters/mandarax/head.svg"
  25787. }
  25788. },
  25789. belly: {
  25790. height: math.unit(33, "feet"),
  25791. name: "Belly",
  25792. capacity: math.unit(500, "people"),
  25793. image: {
  25794. source: "./media/characters/mandarax/belly.svg"
  25795. }
  25796. },
  25797. dick: {
  25798. height: math.unit(8.46, "feet"),
  25799. name: "Dick",
  25800. image: {
  25801. source: "./media/characters/mandarax/dick.svg"
  25802. }
  25803. },
  25804. top: {
  25805. height: math.unit(28, "meters"),
  25806. name: "Top",
  25807. image: {
  25808. source: "./media/characters/mandarax/top.svg"
  25809. }
  25810. },
  25811. },
  25812. [
  25813. {
  25814. name: "Normal",
  25815. height: math.unit(25, "feet"),
  25816. default: true
  25817. },
  25818. ]
  25819. ))
  25820. characterMakers.push(() => makeCharacter(
  25821. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25822. {
  25823. front: {
  25824. height: math.unit(5, "feet"),
  25825. weight: math.unit(90, "lb"),
  25826. name: "Front",
  25827. image: {
  25828. source: "./media/characters/pixil/front.svg",
  25829. extra: 2000 / 1618,
  25830. bottom: 12.3 / 2011
  25831. }
  25832. },
  25833. },
  25834. [
  25835. {
  25836. name: "Normal",
  25837. height: math.unit(5, "feet"),
  25838. default: true
  25839. },
  25840. {
  25841. name: "Megamacro",
  25842. height: math.unit(10, "miles"),
  25843. },
  25844. ]
  25845. ))
  25846. characterMakers.push(() => makeCharacter(
  25847. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25848. {
  25849. front: {
  25850. height: math.unit(7 + 2 / 12, "feet"),
  25851. weight: math.unit(200, "lb"),
  25852. name: "Front",
  25853. image: {
  25854. source: "./media/characters/angel/front.svg",
  25855. extra: 1830 / 1737,
  25856. bottom: 22.6 / 1854,
  25857. }
  25858. },
  25859. },
  25860. [
  25861. {
  25862. name: "Normal",
  25863. height: math.unit(7 + 2 / 12, "feet"),
  25864. default: true
  25865. },
  25866. {
  25867. name: "Macro",
  25868. height: math.unit(1000, "feet")
  25869. },
  25870. {
  25871. name: "Megamacro",
  25872. height: math.unit(2, "miles")
  25873. },
  25874. {
  25875. name: "Gigamacro",
  25876. height: math.unit(20, "earths")
  25877. },
  25878. ]
  25879. ))
  25880. characterMakers.push(() => makeCharacter(
  25881. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25882. {
  25883. front: {
  25884. height: math.unit(5, "feet"),
  25885. weight: math.unit(180, "lb"),
  25886. name: "Front",
  25887. image: {
  25888. source: "./media/characters/mekana/front.svg",
  25889. extra: 1671 / 1605,
  25890. bottom: 3.5 / 1691
  25891. }
  25892. },
  25893. side: {
  25894. height: math.unit(5, "feet"),
  25895. weight: math.unit(180, "lb"),
  25896. name: "Side",
  25897. image: {
  25898. source: "./media/characters/mekana/side.svg",
  25899. extra: 1671 / 1605,
  25900. bottom: 3.5 / 1691
  25901. }
  25902. },
  25903. back: {
  25904. height: math.unit(5, "feet"),
  25905. weight: math.unit(180, "lb"),
  25906. name: "Back",
  25907. image: {
  25908. source: "./media/characters/mekana/back.svg",
  25909. extra: 1671 / 1605,
  25910. bottom: 3.5 / 1691
  25911. }
  25912. },
  25913. },
  25914. [
  25915. {
  25916. name: "Normal",
  25917. height: math.unit(5, "feet"),
  25918. default: true
  25919. },
  25920. ]
  25921. ))
  25922. characterMakers.push(() => makeCharacter(
  25923. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25924. {
  25925. front: {
  25926. height: math.unit(4 + 6 / 12, "feet"),
  25927. weight: math.unit(80, "lb"),
  25928. name: "Front",
  25929. image: {
  25930. source: "./media/characters/pixie/front.svg",
  25931. extra: 1924 / 1825,
  25932. bottom: 22.4 / 1946
  25933. }
  25934. },
  25935. },
  25936. [
  25937. {
  25938. name: "Normal",
  25939. height: math.unit(4 + 6 / 12, "feet"),
  25940. default: true
  25941. },
  25942. {
  25943. name: "Macro",
  25944. height: math.unit(40, "feet")
  25945. },
  25946. ]
  25947. ))
  25948. characterMakers.push(() => makeCharacter(
  25949. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25950. {
  25951. front: {
  25952. height: math.unit(2.1, "meters"),
  25953. weight: math.unit(200, "lb"),
  25954. name: "Front",
  25955. image: {
  25956. source: "./media/characters/the-lascivious/front.svg",
  25957. extra: 1 / 0.893,
  25958. bottom: 3.5 / 573.7
  25959. }
  25960. },
  25961. },
  25962. [
  25963. {
  25964. name: "Human Scale",
  25965. height: math.unit(2.1, "meters")
  25966. },
  25967. {
  25968. name: "Wolxi Scale",
  25969. height: math.unit(46.2, "m"),
  25970. default: true
  25971. },
  25972. {
  25973. name: "Boinker of Buildings",
  25974. height: math.unit(10, "km")
  25975. },
  25976. {
  25977. name: "Shagger of Skyscrapers",
  25978. height: math.unit(40, "km")
  25979. },
  25980. {
  25981. name: "Banger of Boroughs",
  25982. height: math.unit(4000, "km")
  25983. },
  25984. {
  25985. name: "Screwer of States",
  25986. height: math.unit(100000, "km")
  25987. },
  25988. {
  25989. name: "Pounder of Planets",
  25990. height: math.unit(2000000, "km")
  25991. },
  25992. ]
  25993. ))
  25994. characterMakers.push(() => makeCharacter(
  25995. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25996. {
  25997. front: {
  25998. height: math.unit(6, "feet"),
  25999. weight: math.unit(150, "lb"),
  26000. name: "Front",
  26001. image: {
  26002. source: "./media/characters/aj/front.svg",
  26003. extra: 2039 / 1562,
  26004. bottom: 40 / 2079
  26005. }
  26006. },
  26007. },
  26008. [
  26009. {
  26010. name: "Normal",
  26011. height: math.unit(11 + 6 / 12, "feet"),
  26012. default: true
  26013. },
  26014. {
  26015. name: "Megamacro",
  26016. height: math.unit(60, "megameters")
  26017. },
  26018. ]
  26019. ))
  26020. characterMakers.push(() => makeCharacter(
  26021. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26022. {
  26023. side: {
  26024. height: math.unit(31 + 8 / 12, "feet"),
  26025. weight: math.unit(75000, "kg"),
  26026. name: "Side",
  26027. image: {
  26028. source: "./media/characters/koros/side.svg",
  26029. extra: 1442 / 1297,
  26030. bottom: 122.7 / 1562
  26031. }
  26032. },
  26033. dicksKingsCrown: {
  26034. height: math.unit(6, "feet"),
  26035. name: "Dicks (King's Crown)",
  26036. image: {
  26037. source: "./media/characters/koros/dicks-kings-crown.svg"
  26038. }
  26039. },
  26040. dicksTailSet: {
  26041. height: math.unit(3, "feet"),
  26042. name: "Dicks (Tail Set)",
  26043. image: {
  26044. source: "./media/characters/koros/dicks-tail-set.svg"
  26045. }
  26046. },
  26047. dickCumming: {
  26048. height: math.unit(7.98, "feet"),
  26049. name: "Dick (Cumming)",
  26050. image: {
  26051. source: "./media/characters/koros/dick-cumming.svg"
  26052. }
  26053. },
  26054. dicksBack: {
  26055. height: math.unit(5.9, "feet"),
  26056. name: "Dicks (Back)",
  26057. image: {
  26058. source: "./media/characters/koros/dicks-back.svg"
  26059. }
  26060. },
  26061. dicksFront: {
  26062. height: math.unit(3.72, "feet"),
  26063. name: "Dicks (Front)",
  26064. image: {
  26065. source: "./media/characters/koros/dicks-front.svg"
  26066. }
  26067. },
  26068. dicksPeeking: {
  26069. height: math.unit(3.0, "feet"),
  26070. name: "Dicks (Peeking)",
  26071. image: {
  26072. source: "./media/characters/koros/dicks-peeking.svg"
  26073. }
  26074. },
  26075. eye: {
  26076. height: math.unit(1.7, "feet"),
  26077. name: "Eye",
  26078. image: {
  26079. source: "./media/characters/koros/eye.svg"
  26080. }
  26081. },
  26082. headFront: {
  26083. height: math.unit(11.69, "feet"),
  26084. name: "Head (Front)",
  26085. image: {
  26086. source: "./media/characters/koros/head-front.svg"
  26087. }
  26088. },
  26089. headSide: {
  26090. height: math.unit(14, "feet"),
  26091. name: "Head (Side)",
  26092. image: {
  26093. source: "./media/characters/koros/head-side.svg"
  26094. }
  26095. },
  26096. leg: {
  26097. height: math.unit(17, "feet"),
  26098. name: "Leg",
  26099. image: {
  26100. source: "./media/characters/koros/leg.svg"
  26101. }
  26102. },
  26103. mawSide: {
  26104. height: math.unit(12.8, "feet"),
  26105. name: "Maw (Side)",
  26106. image: {
  26107. source: "./media/characters/koros/maw-side.svg"
  26108. }
  26109. },
  26110. mawSpitting: {
  26111. height: math.unit(17, "feet"),
  26112. name: "Maw (Spitting)",
  26113. image: {
  26114. source: "./media/characters/koros/maw-spitting.svg"
  26115. }
  26116. },
  26117. slit: {
  26118. height: math.unit(2.8, "feet"),
  26119. name: "Slit",
  26120. image: {
  26121. source: "./media/characters/koros/slit.svg"
  26122. }
  26123. },
  26124. stomach: {
  26125. height: math.unit(6.8, "feet"),
  26126. capacity: math.unit(20, "people"),
  26127. name: "Stomach",
  26128. image: {
  26129. source: "./media/characters/koros/stomach.svg"
  26130. }
  26131. },
  26132. wingspanBottom: {
  26133. height: math.unit(114, "feet"),
  26134. name: "Wingspan (Bottom)",
  26135. image: {
  26136. source: "./media/characters/koros/wingspan-bottom.svg"
  26137. }
  26138. },
  26139. wingspanTop: {
  26140. height: math.unit(104, "feet"),
  26141. name: "Wingspan (Top)",
  26142. image: {
  26143. source: "./media/characters/koros/wingspan-top.svg"
  26144. }
  26145. },
  26146. },
  26147. [
  26148. {
  26149. name: "Normal",
  26150. height: math.unit(31 + 8 / 12, "feet"),
  26151. default: true
  26152. },
  26153. ]
  26154. ))
  26155. characterMakers.push(() => makeCharacter(
  26156. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26157. {
  26158. front: {
  26159. height: math.unit(18 + 5 / 12, "feet"),
  26160. weight: math.unit(3750, "kg"),
  26161. name: "Front",
  26162. image: {
  26163. source: "./media/characters/vexx/front.svg",
  26164. extra: 426 / 396,
  26165. bottom: 31.5 / 458
  26166. }
  26167. },
  26168. maw: {
  26169. height: math.unit(6, "feet"),
  26170. name: "Maw",
  26171. image: {
  26172. source: "./media/characters/vexx/maw.svg"
  26173. }
  26174. },
  26175. },
  26176. [
  26177. {
  26178. name: "Normal",
  26179. height: math.unit(18 + 5 / 12, "feet"),
  26180. default: true
  26181. },
  26182. ]
  26183. ))
  26184. characterMakers.push(() => makeCharacter(
  26185. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26186. {
  26187. front: {
  26188. height: math.unit(17 + 6 / 12, "feet"),
  26189. weight: math.unit(150, "lb"),
  26190. name: "Front",
  26191. image: {
  26192. source: "./media/characters/baadra/front.svg",
  26193. extra: 1694/1553,
  26194. bottom: 179/1873
  26195. }
  26196. },
  26197. frontAlt: {
  26198. height: math.unit(17 + 6 / 12, "feet"),
  26199. weight: math.unit(150, "lb"),
  26200. name: "Front (Alt)",
  26201. image: {
  26202. source: "./media/characters/baadra/front-alt.svg",
  26203. extra: 3137 / 2890,
  26204. bottom: 168.4 / 3305
  26205. }
  26206. },
  26207. back: {
  26208. height: math.unit(17 + 6 / 12, "feet"),
  26209. weight: math.unit(150, "lb"),
  26210. name: "Back",
  26211. image: {
  26212. source: "./media/characters/baadra/back.svg",
  26213. extra: 3142 / 2890,
  26214. bottom: 220 / 3371
  26215. }
  26216. },
  26217. head: {
  26218. height: math.unit(5.45, "feet"),
  26219. name: "Head",
  26220. image: {
  26221. source: "./media/characters/baadra/head.svg"
  26222. }
  26223. },
  26224. headAngry: {
  26225. height: math.unit(4.95, "feet"),
  26226. name: "Head (Angry)",
  26227. image: {
  26228. source: "./media/characters/baadra/head-angry.svg"
  26229. }
  26230. },
  26231. headOpen: {
  26232. height: math.unit(6, "feet"),
  26233. name: "Head (Open)",
  26234. image: {
  26235. source: "./media/characters/baadra/head-open.svg"
  26236. }
  26237. },
  26238. },
  26239. [
  26240. {
  26241. name: "Normal",
  26242. height: math.unit(17 + 6 / 12, "feet"),
  26243. default: true
  26244. },
  26245. ]
  26246. ))
  26247. characterMakers.push(() => makeCharacter(
  26248. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26249. {
  26250. front: {
  26251. height: math.unit(7 + 3 / 12, "feet"),
  26252. weight: math.unit(180, "lb"),
  26253. name: "Front",
  26254. image: {
  26255. source: "./media/characters/juri/front.svg",
  26256. extra: 1401 / 1237,
  26257. bottom: 18.5 / 1418
  26258. }
  26259. },
  26260. side: {
  26261. height: math.unit(7 + 3 / 12, "feet"),
  26262. weight: math.unit(180, "lb"),
  26263. name: "Side",
  26264. image: {
  26265. source: "./media/characters/juri/side.svg",
  26266. extra: 1424 / 1242,
  26267. bottom: 18.5 / 1447
  26268. }
  26269. },
  26270. sitting: {
  26271. height: math.unit(6, "feet"),
  26272. weight: math.unit(180, "lb"),
  26273. name: "Sitting",
  26274. image: {
  26275. source: "./media/characters/juri/sitting.svg",
  26276. extra: 1270 / 1143,
  26277. bottom: 100 / 1343
  26278. }
  26279. },
  26280. back: {
  26281. height: math.unit(7 + 3 / 12, "feet"),
  26282. weight: math.unit(180, "lb"),
  26283. name: "Back",
  26284. image: {
  26285. source: "./media/characters/juri/back.svg",
  26286. extra: 1377 / 1240,
  26287. bottom: 23.7 / 1405
  26288. }
  26289. },
  26290. maw: {
  26291. height: math.unit(2.8, "feet"),
  26292. name: "Maw",
  26293. image: {
  26294. source: "./media/characters/juri/maw.svg"
  26295. }
  26296. },
  26297. stomach: {
  26298. height: math.unit(0.89, "feet"),
  26299. capacity: math.unit(4, "liters"),
  26300. name: "Stomach",
  26301. image: {
  26302. source: "./media/characters/juri/stomach.svg"
  26303. }
  26304. },
  26305. },
  26306. [
  26307. {
  26308. name: "Normal",
  26309. height: math.unit(7 + 3 / 12, "feet"),
  26310. default: true
  26311. },
  26312. ]
  26313. ))
  26314. characterMakers.push(() => makeCharacter(
  26315. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26316. {
  26317. fox: {
  26318. height: math.unit(5 + 6 / 12, "feet"),
  26319. weight: math.unit(140, "lb"),
  26320. name: "Fox",
  26321. image: {
  26322. source: "./media/characters/maxene-sita/fox.svg",
  26323. extra: 146 / 138,
  26324. bottom: 2.1 / 148.19
  26325. }
  26326. },
  26327. foxLaying: {
  26328. height: math.unit(1.70, "feet"),
  26329. weight: math.unit(140, "lb"),
  26330. name: "Fox (Laying)",
  26331. image: {
  26332. source: "./media/characters/maxene-sita/fox-laying.svg",
  26333. extra: 910 / 572,
  26334. bottom: 71 / 981
  26335. }
  26336. },
  26337. kitsune: {
  26338. height: math.unit(10, "feet"),
  26339. weight: math.unit(800, "lb"),
  26340. name: "Kitsune",
  26341. image: {
  26342. source: "./media/characters/maxene-sita/kitsune.svg",
  26343. extra: 185 / 176,
  26344. bottom: 4.7 / 189.9
  26345. }
  26346. },
  26347. hellhound: {
  26348. height: math.unit(10, "feet"),
  26349. weight: math.unit(700, "lb"),
  26350. name: "Hellhound",
  26351. image: {
  26352. source: "./media/characters/maxene-sita/hellhound.svg",
  26353. extra: 1600 / 1545,
  26354. bottom: 81 / 1681
  26355. }
  26356. },
  26357. },
  26358. [
  26359. {
  26360. name: "Normal",
  26361. height: math.unit(5 + 6 / 12, "feet"),
  26362. default: true
  26363. },
  26364. ]
  26365. ))
  26366. characterMakers.push(() => makeCharacter(
  26367. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26368. {
  26369. front: {
  26370. height: math.unit(3 + 4 / 12, "feet"),
  26371. weight: math.unit(70, "lb"),
  26372. name: "Front",
  26373. image: {
  26374. source: "./media/characters/maia/front.svg",
  26375. extra: 227 / 219.5,
  26376. bottom: 40 / 267
  26377. }
  26378. },
  26379. back: {
  26380. height: math.unit(3 + 4 / 12, "feet"),
  26381. weight: math.unit(70, "lb"),
  26382. name: "Back",
  26383. image: {
  26384. source: "./media/characters/maia/back.svg",
  26385. extra: 237 / 225
  26386. }
  26387. },
  26388. },
  26389. [
  26390. {
  26391. name: "Normal",
  26392. height: math.unit(3 + 4 / 12, "feet"),
  26393. default: true
  26394. },
  26395. ]
  26396. ))
  26397. characterMakers.push(() => makeCharacter(
  26398. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26399. {
  26400. front: {
  26401. height: math.unit(5 + 10 / 12, "feet"),
  26402. weight: math.unit(197, "lb"),
  26403. name: "Front",
  26404. image: {
  26405. source: "./media/characters/jabaro/front.svg",
  26406. extra: 225 / 216,
  26407. bottom: 5.06 / 230
  26408. }
  26409. },
  26410. back: {
  26411. height: math.unit(5 + 10 / 12, "feet"),
  26412. weight: math.unit(197, "lb"),
  26413. name: "Back",
  26414. image: {
  26415. source: "./media/characters/jabaro/back.svg",
  26416. extra: 225 / 219,
  26417. bottom: 1.9 / 227
  26418. }
  26419. },
  26420. },
  26421. [
  26422. {
  26423. name: "Normal",
  26424. height: math.unit(5 + 10 / 12, "feet"),
  26425. default: true
  26426. },
  26427. ]
  26428. ))
  26429. characterMakers.push(() => makeCharacter(
  26430. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26431. {
  26432. front: {
  26433. height: math.unit(5 + 8 / 12, "feet"),
  26434. weight: math.unit(139, "lb"),
  26435. name: "Front",
  26436. image: {
  26437. source: "./media/characters/risa/front.svg",
  26438. extra: 270 / 260,
  26439. bottom: 11.2 / 282
  26440. }
  26441. },
  26442. back: {
  26443. height: math.unit(5 + 8 / 12, "feet"),
  26444. weight: math.unit(139, "lb"),
  26445. name: "Back",
  26446. image: {
  26447. source: "./media/characters/risa/back.svg",
  26448. extra: 264 / 255,
  26449. bottom: 4 / 268
  26450. }
  26451. },
  26452. },
  26453. [
  26454. {
  26455. name: "Normal",
  26456. height: math.unit(5 + 8 / 12, "feet"),
  26457. default: true
  26458. },
  26459. ]
  26460. ))
  26461. characterMakers.push(() => makeCharacter(
  26462. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26463. {
  26464. front: {
  26465. height: math.unit(2 + 11 / 12, "feet"),
  26466. weight: math.unit(30, "lb"),
  26467. name: "Front",
  26468. image: {
  26469. source: "./media/characters/weatley/front.svg",
  26470. bottom: 10.7 / 414,
  26471. extra: 403.5 / 362
  26472. }
  26473. },
  26474. back: {
  26475. height: math.unit(2 + 11 / 12, "feet"),
  26476. weight: math.unit(30, "lb"),
  26477. name: "Back",
  26478. image: {
  26479. source: "./media/characters/weatley/back.svg",
  26480. bottom: 10.7 / 414,
  26481. extra: 403.5 / 362
  26482. }
  26483. },
  26484. },
  26485. [
  26486. {
  26487. name: "Normal",
  26488. height: math.unit(2 + 11 / 12, "feet"),
  26489. default: true
  26490. },
  26491. ]
  26492. ))
  26493. characterMakers.push(() => makeCharacter(
  26494. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26495. {
  26496. front: {
  26497. height: math.unit(5 + 2 / 12, "feet"),
  26498. weight: math.unit(50, "kg"),
  26499. name: "Front",
  26500. image: {
  26501. source: "./media/characters/mercury-crescent/front.svg",
  26502. extra: 1088 / 1033,
  26503. bottom: 18.9 / 1109
  26504. }
  26505. },
  26506. },
  26507. [
  26508. {
  26509. name: "Normal",
  26510. height: math.unit(5 + 2 / 12, "feet"),
  26511. default: true
  26512. },
  26513. ]
  26514. ))
  26515. characterMakers.push(() => makeCharacter(
  26516. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26517. {
  26518. front: {
  26519. height: math.unit(2, "feet"),
  26520. weight: math.unit(15, "kg"),
  26521. name: "Front",
  26522. image: {
  26523. source: "./media/characters/diamond-jones/front.svg",
  26524. extra: 727/723,
  26525. bottom: 46/773
  26526. }
  26527. },
  26528. },
  26529. [
  26530. {
  26531. name: "Normal",
  26532. height: math.unit(2, "feet"),
  26533. default: true
  26534. },
  26535. ]
  26536. ))
  26537. characterMakers.push(() => makeCharacter(
  26538. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26539. {
  26540. front: {
  26541. height: math.unit(3, "feet"),
  26542. weight: math.unit(30, "kg"),
  26543. name: "Front",
  26544. image: {
  26545. source: "./media/characters/sweet-bit/front.svg",
  26546. extra: 675 / 567,
  26547. bottom: 27.7 / 703
  26548. }
  26549. },
  26550. },
  26551. [
  26552. {
  26553. name: "Normal",
  26554. height: math.unit(3, "feet"),
  26555. default: true
  26556. },
  26557. ]
  26558. ))
  26559. characterMakers.push(() => makeCharacter(
  26560. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26561. {
  26562. side: {
  26563. height: math.unit(9.178, "feet"),
  26564. weight: math.unit(500, "lb"),
  26565. name: "Side",
  26566. image: {
  26567. source: "./media/characters/umbrazen/side.svg",
  26568. extra: 1730 / 1473,
  26569. bottom: 34.6 / 1765
  26570. }
  26571. },
  26572. },
  26573. [
  26574. {
  26575. name: "Normal",
  26576. height: math.unit(9.178, "feet"),
  26577. default: true
  26578. },
  26579. ]
  26580. ))
  26581. characterMakers.push(() => makeCharacter(
  26582. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26583. {
  26584. front: {
  26585. height: math.unit(10, "feet"),
  26586. weight: math.unit(750, "lb"),
  26587. name: "Front",
  26588. image: {
  26589. source: "./media/characters/arlist/front.svg",
  26590. extra: 961 / 778,
  26591. bottom: 6.2 / 986
  26592. }
  26593. },
  26594. },
  26595. [
  26596. {
  26597. name: "Normal",
  26598. height: math.unit(10, "feet"),
  26599. default: true
  26600. },
  26601. ]
  26602. ))
  26603. characterMakers.push(() => makeCharacter(
  26604. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26605. {
  26606. front: {
  26607. height: math.unit(5 + 1 / 12, "feet"),
  26608. weight: math.unit(110, "lb"),
  26609. name: "Front",
  26610. image: {
  26611. source: "./media/characters/aradel/front.svg",
  26612. extra: 324 / 303,
  26613. bottom: 3.6 / 329.4
  26614. }
  26615. },
  26616. },
  26617. [
  26618. {
  26619. name: "Normal",
  26620. height: math.unit(5 + 1 / 12, "feet"),
  26621. default: true
  26622. },
  26623. ]
  26624. ))
  26625. characterMakers.push(() => makeCharacter(
  26626. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26627. {
  26628. front: {
  26629. height: math.unit(3 + 8 / 12, "feet"),
  26630. weight: math.unit(50, "lb"),
  26631. name: "Front",
  26632. image: {
  26633. source: "./media/characters/serryn/front.svg",
  26634. extra: 1792 / 1656,
  26635. bottom: 43.5 / 1840
  26636. }
  26637. },
  26638. },
  26639. [
  26640. {
  26641. name: "Normal",
  26642. height: math.unit(3 + 8 / 12, "feet"),
  26643. default: true
  26644. },
  26645. ]
  26646. ))
  26647. characterMakers.push(() => makeCharacter(
  26648. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26649. {
  26650. front: {
  26651. height: math.unit(7 + 10 / 12, "feet"),
  26652. weight: math.unit(255, "lb"),
  26653. name: "Front",
  26654. image: {
  26655. source: "./media/characters/xavier-thyme/front.svg",
  26656. extra: 3733 / 3642,
  26657. bottom: 131 / 3869
  26658. }
  26659. },
  26660. frontRaven: {
  26661. height: math.unit(7 + 10 / 12, "feet"),
  26662. weight: math.unit(255, "lb"),
  26663. name: "Front (Raven)",
  26664. image: {
  26665. source: "./media/characters/xavier-thyme/front-raven.svg",
  26666. extra: 4385 / 3642,
  26667. bottom: 131 / 4517
  26668. }
  26669. },
  26670. },
  26671. [
  26672. {
  26673. name: "Normal",
  26674. height: math.unit(7 + 10 / 12, "feet"),
  26675. default: true
  26676. },
  26677. ]
  26678. ))
  26679. characterMakers.push(() => makeCharacter(
  26680. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26681. {
  26682. front: {
  26683. height: math.unit(1.6, "m"),
  26684. weight: math.unit(50, "kg"),
  26685. name: "Front",
  26686. image: {
  26687. source: "./media/characters/kiki/front.svg",
  26688. extra: 4682 / 3610,
  26689. bottom: 115 / 4777
  26690. }
  26691. },
  26692. },
  26693. [
  26694. {
  26695. name: "Normal",
  26696. height: math.unit(1.6, "meters"),
  26697. default: true
  26698. },
  26699. ]
  26700. ))
  26701. characterMakers.push(() => makeCharacter(
  26702. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26703. {
  26704. front: {
  26705. height: math.unit(50, "m"),
  26706. weight: math.unit(500, "tonnes"),
  26707. name: "Front",
  26708. image: {
  26709. source: "./media/characters/ryoko/front.svg",
  26710. extra: 4632 / 3926,
  26711. bottom: 193 / 4823
  26712. }
  26713. },
  26714. },
  26715. [
  26716. {
  26717. name: "Normal",
  26718. height: math.unit(50, "meters"),
  26719. default: true
  26720. },
  26721. ]
  26722. ))
  26723. characterMakers.push(() => makeCharacter(
  26724. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26725. {
  26726. front: {
  26727. height: math.unit(30, "m"),
  26728. weight: math.unit(22, "tonnes"),
  26729. name: "Front",
  26730. image: {
  26731. source: "./media/characters/elio/front.svg",
  26732. extra: 4582 / 3720,
  26733. bottom: 236 / 4828
  26734. }
  26735. },
  26736. },
  26737. [
  26738. {
  26739. name: "Normal",
  26740. height: math.unit(30, "meters"),
  26741. default: true
  26742. },
  26743. ]
  26744. ))
  26745. characterMakers.push(() => makeCharacter(
  26746. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26747. {
  26748. front: {
  26749. height: math.unit(6 + 3 / 12, "feet"),
  26750. weight: math.unit(120, "lb"),
  26751. name: "Front",
  26752. image: {
  26753. source: "./media/characters/azura/front.svg",
  26754. extra: 1149 / 1135,
  26755. bottom: 45 / 1194
  26756. }
  26757. },
  26758. frontClothed: {
  26759. height: math.unit(6 + 3 / 12, "feet"),
  26760. weight: math.unit(120, "lb"),
  26761. name: "Front (Clothed)",
  26762. image: {
  26763. source: "./media/characters/azura/front-clothed.svg",
  26764. extra: 1149 / 1135,
  26765. bottom: 45 / 1194
  26766. }
  26767. },
  26768. },
  26769. [
  26770. {
  26771. name: "Normal",
  26772. height: math.unit(6 + 3 / 12, "feet"),
  26773. default: true
  26774. },
  26775. {
  26776. name: "Macro",
  26777. height: math.unit(20 + 6 / 12, "feet")
  26778. },
  26779. {
  26780. name: "Megamacro",
  26781. height: math.unit(12, "miles")
  26782. },
  26783. {
  26784. name: "Gigamacro",
  26785. height: math.unit(10000, "miles")
  26786. },
  26787. {
  26788. name: "Teramacro",
  26789. height: math.unit(900000, "miles")
  26790. },
  26791. ]
  26792. ))
  26793. characterMakers.push(() => makeCharacter(
  26794. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26795. {
  26796. front: {
  26797. height: math.unit(12, "feet"),
  26798. weight: math.unit(1, "ton"),
  26799. capacity: math.unit(660000, "gallons"),
  26800. name: "Front",
  26801. image: {
  26802. source: "./media/characters/zeus/front.svg",
  26803. extra: 5005 / 4717,
  26804. bottom: 363 / 5388
  26805. }
  26806. },
  26807. },
  26808. [
  26809. {
  26810. name: "Normal",
  26811. height: math.unit(12, "feet")
  26812. },
  26813. {
  26814. name: "Preferred Size",
  26815. height: math.unit(0.5, "miles"),
  26816. default: true
  26817. },
  26818. {
  26819. name: "Giga Horse",
  26820. height: math.unit(300, "miles")
  26821. },
  26822. {
  26823. name: "Riding Planets",
  26824. height: math.unit(30, "megameters")
  26825. },
  26826. {
  26827. name: "Cosmic Giant",
  26828. height: math.unit(3, "zettameters")
  26829. },
  26830. {
  26831. name: "Breeding God",
  26832. height: math.unit(9.92e22, "yottameters")
  26833. },
  26834. ]
  26835. ))
  26836. characterMakers.push(() => makeCharacter(
  26837. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26838. {
  26839. side: {
  26840. height: math.unit(9, "feet"),
  26841. weight: math.unit(1500, "kg"),
  26842. name: "Side",
  26843. image: {
  26844. source: "./media/characters/fang/side.svg",
  26845. extra: 924 / 866,
  26846. bottom: 47.5 / 972.3
  26847. }
  26848. },
  26849. },
  26850. [
  26851. {
  26852. name: "Normal",
  26853. height: math.unit(9, "feet"),
  26854. default: true
  26855. },
  26856. {
  26857. name: "Macro",
  26858. height: math.unit(75 + 6 / 12, "feet")
  26859. },
  26860. {
  26861. name: "Teramacro",
  26862. height: math.unit(50000, "miles")
  26863. },
  26864. ]
  26865. ))
  26866. characterMakers.push(() => makeCharacter(
  26867. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26868. {
  26869. front: {
  26870. height: math.unit(10, "feet"),
  26871. weight: math.unit(2, "tons"),
  26872. name: "Front",
  26873. image: {
  26874. source: "./media/characters/rekhit/front.svg",
  26875. extra: 2796 / 2590,
  26876. bottom: 225 / 3022
  26877. }
  26878. },
  26879. },
  26880. [
  26881. {
  26882. name: "Normal",
  26883. height: math.unit(10, "feet"),
  26884. default: true
  26885. },
  26886. {
  26887. name: "Macro",
  26888. height: math.unit(500, "feet")
  26889. },
  26890. ]
  26891. ))
  26892. characterMakers.push(() => makeCharacter(
  26893. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26894. {
  26895. front: {
  26896. height: math.unit(7 + 6.451 / 12, "feet"),
  26897. weight: math.unit(310, "lb"),
  26898. name: "Front",
  26899. image: {
  26900. source: "./media/characters/dahlia-verrick/front.svg",
  26901. extra: 1488 / 1365,
  26902. bottom: 6.2 / 1495
  26903. }
  26904. },
  26905. back: {
  26906. height: math.unit(7 + 6.451 / 12, "feet"),
  26907. weight: math.unit(310, "lb"),
  26908. name: "Back",
  26909. image: {
  26910. source: "./media/characters/dahlia-verrick/back.svg",
  26911. extra: 1472 / 1351,
  26912. bottom: 5.28 / 1477
  26913. }
  26914. },
  26915. frontBusiness: {
  26916. height: math.unit(7 + 6.451 / 12, "feet"),
  26917. weight: math.unit(200, "lb"),
  26918. name: "Front (Business)",
  26919. image: {
  26920. source: "./media/characters/dahlia-verrick/front-business.svg",
  26921. extra: 1478 / 1381,
  26922. bottom: 5.5 / 1484
  26923. }
  26924. },
  26925. frontCasual: {
  26926. height: math.unit(7 + 6.451 / 12, "feet"),
  26927. weight: math.unit(200, "lb"),
  26928. name: "Front (Casual)",
  26929. image: {
  26930. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26931. extra: 1478 / 1381,
  26932. bottom: 5.5 / 1484
  26933. }
  26934. },
  26935. },
  26936. [
  26937. {
  26938. name: "Travel-Sized",
  26939. height: math.unit(7.45, "inches")
  26940. },
  26941. {
  26942. name: "Normal",
  26943. height: math.unit(7 + 6.451 / 12, "feet"),
  26944. default: true
  26945. },
  26946. {
  26947. name: "Hitting the Town",
  26948. height: math.unit(37 + 8 / 12, "feet")
  26949. },
  26950. {
  26951. name: "Stomp in the Suburbs",
  26952. height: math.unit(964 + 9.728 / 12, "feet")
  26953. },
  26954. {
  26955. name: "Sit on the City",
  26956. height: math.unit(61747 + 10.592 / 12, "feet")
  26957. },
  26958. {
  26959. name: "Glomp the Globe",
  26960. height: math.unit(252919327 + 4.832 / 12, "feet")
  26961. },
  26962. ]
  26963. ))
  26964. characterMakers.push(() => makeCharacter(
  26965. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26966. {
  26967. front: {
  26968. height: math.unit(6 + 4 / 12, "feet"),
  26969. weight: math.unit(320, "lb"),
  26970. name: "Front",
  26971. image: {
  26972. source: "./media/characters/balina-mahigan/front.svg",
  26973. extra: 447 / 428,
  26974. bottom: 18 / 466
  26975. }
  26976. },
  26977. back: {
  26978. height: math.unit(6 + 4 / 12, "feet"),
  26979. weight: math.unit(320, "lb"),
  26980. name: "Back",
  26981. image: {
  26982. source: "./media/characters/balina-mahigan/back.svg",
  26983. extra: 445 / 428,
  26984. bottom: 4.07 / 448
  26985. }
  26986. },
  26987. arm: {
  26988. height: math.unit(1.88, "feet"),
  26989. name: "Arm",
  26990. image: {
  26991. source: "./media/characters/balina-mahigan/arm.svg"
  26992. }
  26993. },
  26994. backPort: {
  26995. height: math.unit(0.685, "feet"),
  26996. name: "Back Port",
  26997. image: {
  26998. source: "./media/characters/balina-mahigan/back-port.svg"
  26999. }
  27000. },
  27001. hoofpaw: {
  27002. height: math.unit(1.41, "feet"),
  27003. name: "Hoofpaw",
  27004. image: {
  27005. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27006. }
  27007. },
  27008. leftHandBack: {
  27009. height: math.unit(0.938, "feet"),
  27010. name: "Left Hand (Back)",
  27011. image: {
  27012. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27013. }
  27014. },
  27015. leftHandFront: {
  27016. height: math.unit(0.938, "feet"),
  27017. name: "Left Hand (Front)",
  27018. image: {
  27019. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27020. }
  27021. },
  27022. rightHandBack: {
  27023. height: math.unit(0.95, "feet"),
  27024. name: "Right Hand (Back)",
  27025. image: {
  27026. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27027. }
  27028. },
  27029. rightHandFront: {
  27030. height: math.unit(0.95, "feet"),
  27031. name: "Right Hand (Front)",
  27032. image: {
  27033. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27034. }
  27035. },
  27036. },
  27037. [
  27038. {
  27039. name: "Normal",
  27040. height: math.unit(6 + 4 / 12, "feet"),
  27041. default: true
  27042. },
  27043. ]
  27044. ))
  27045. characterMakers.push(() => makeCharacter(
  27046. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27047. {
  27048. front: {
  27049. height: math.unit(6, "feet"),
  27050. weight: math.unit(320, "lb"),
  27051. name: "Front",
  27052. image: {
  27053. source: "./media/characters/balina-mejeri/front.svg",
  27054. extra: 517 / 488,
  27055. bottom: 44.2 / 561
  27056. }
  27057. },
  27058. },
  27059. [
  27060. {
  27061. name: "Normal",
  27062. height: math.unit(6 + 4 / 12, "feet")
  27063. },
  27064. {
  27065. name: "Business",
  27066. height: math.unit(155, "feet"),
  27067. default: true
  27068. },
  27069. ]
  27070. ))
  27071. characterMakers.push(() => makeCharacter(
  27072. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27073. {
  27074. kneeling: {
  27075. height: math.unit(6 + 4 / 12, "feet"),
  27076. weight: math.unit(300 * 20, "lb"),
  27077. name: "Kneeling",
  27078. image: {
  27079. source: "./media/characters/balbarian/kneeling.svg",
  27080. extra: 922 / 862,
  27081. bottom: 42.4 / 965
  27082. }
  27083. },
  27084. },
  27085. [
  27086. {
  27087. name: "Normal",
  27088. height: math.unit(6 + 4 / 12, "feet")
  27089. },
  27090. {
  27091. name: "Treasured",
  27092. height: math.unit(18 + 9 / 12, "feet"),
  27093. default: true
  27094. },
  27095. {
  27096. name: "Macro",
  27097. height: math.unit(900, "feet")
  27098. },
  27099. ]
  27100. ))
  27101. characterMakers.push(() => makeCharacter(
  27102. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27103. {
  27104. front: {
  27105. height: math.unit(6 + 4 / 12, "feet"),
  27106. weight: math.unit(325, "lb"),
  27107. name: "Front",
  27108. image: {
  27109. source: "./media/characters/balina-amarini/front.svg",
  27110. extra: 415 / 403,
  27111. bottom: 19 / 433.4
  27112. }
  27113. },
  27114. back: {
  27115. height: math.unit(6 + 4 / 12, "feet"),
  27116. weight: math.unit(325, "lb"),
  27117. name: "Back",
  27118. image: {
  27119. source: "./media/characters/balina-amarini/back.svg",
  27120. extra: 415 / 403,
  27121. bottom: 13.5 / 432
  27122. }
  27123. },
  27124. overdrive: {
  27125. height: math.unit(6 + 4 / 12, "feet"),
  27126. weight: math.unit(400, "lb"),
  27127. name: "Overdrive",
  27128. image: {
  27129. source: "./media/characters/balina-amarini/overdrive.svg",
  27130. extra: 269 / 259,
  27131. bottom: 12 / 282
  27132. }
  27133. },
  27134. },
  27135. [
  27136. {
  27137. name: "Boom",
  27138. height: math.unit(9 + 10 / 12, "feet"),
  27139. default: true
  27140. },
  27141. {
  27142. name: "Macro",
  27143. height: math.unit(280, "feet")
  27144. },
  27145. ]
  27146. ))
  27147. characterMakers.push(() => makeCharacter(
  27148. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27149. {
  27150. goddess: {
  27151. height: math.unit(600, "feet"),
  27152. weight: math.unit(2000000, "tons"),
  27153. name: "Goddess",
  27154. image: {
  27155. source: "./media/characters/lady-kubwa/goddess.svg",
  27156. extra: 1240.5 / 1223,
  27157. bottom: 22 / 1263
  27158. }
  27159. },
  27160. goddesser: {
  27161. height: math.unit(900, "feet"),
  27162. weight: math.unit(20000000, "lb"),
  27163. name: "Goddess-er",
  27164. image: {
  27165. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27166. extra: 899 / 888,
  27167. bottom: 12.6 / 912
  27168. }
  27169. },
  27170. },
  27171. [
  27172. {
  27173. name: "Macro",
  27174. height: math.unit(600, "feet"),
  27175. default: true
  27176. },
  27177. {
  27178. name: "Megamacro",
  27179. height: math.unit(250, "miles")
  27180. },
  27181. ]
  27182. ))
  27183. characterMakers.push(() => makeCharacter(
  27184. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27185. {
  27186. front: {
  27187. height: math.unit(7 + 7 / 12, "feet"),
  27188. weight: math.unit(250, "lb"),
  27189. name: "Front",
  27190. image: {
  27191. source: "./media/characters/tala-grovehorn/front.svg",
  27192. extra: 2636 / 2525,
  27193. bottom: 147 / 2781
  27194. }
  27195. },
  27196. back: {
  27197. height: math.unit(7 + 7 / 12, "feet"),
  27198. weight: math.unit(250, "lb"),
  27199. name: "Back",
  27200. image: {
  27201. source: "./media/characters/tala-grovehorn/back.svg",
  27202. extra: 2635 / 2539,
  27203. bottom: 100 / 2732.8
  27204. }
  27205. },
  27206. mouth: {
  27207. height: math.unit(1.15, "feet"),
  27208. name: "Mouth",
  27209. image: {
  27210. source: "./media/characters/tala-grovehorn/mouth.svg"
  27211. }
  27212. },
  27213. dick: {
  27214. height: math.unit(2.36, "feet"),
  27215. name: "Dick",
  27216. image: {
  27217. source: "./media/characters/tala-grovehorn/dick.svg"
  27218. }
  27219. },
  27220. slit: {
  27221. height: math.unit(0.61, "feet"),
  27222. name: "Slit",
  27223. image: {
  27224. source: "./media/characters/tala-grovehorn/slit.svg"
  27225. }
  27226. },
  27227. },
  27228. [
  27229. ]
  27230. ))
  27231. characterMakers.push(() => makeCharacter(
  27232. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27233. {
  27234. front: {
  27235. height: math.unit(7 + 7 / 12, "feet"),
  27236. weight: math.unit(225, "lb"),
  27237. name: "Front",
  27238. image: {
  27239. source: "./media/characters/epona/front.svg",
  27240. extra: 2445 / 2290,
  27241. bottom: 251 / 2696
  27242. }
  27243. },
  27244. back: {
  27245. height: math.unit(7 + 7 / 12, "feet"),
  27246. weight: math.unit(225, "lb"),
  27247. name: "Back",
  27248. image: {
  27249. source: "./media/characters/epona/back.svg",
  27250. extra: 2546 / 2408,
  27251. bottom: 44 / 2589
  27252. }
  27253. },
  27254. genitals: {
  27255. height: math.unit(1.5, "feet"),
  27256. name: "Genitals",
  27257. image: {
  27258. source: "./media/characters/epona/genitals.svg"
  27259. }
  27260. },
  27261. },
  27262. [
  27263. {
  27264. name: "Normal",
  27265. height: math.unit(7 + 7 / 12, "feet"),
  27266. default: true
  27267. },
  27268. ]
  27269. ))
  27270. characterMakers.push(() => makeCharacter(
  27271. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27272. {
  27273. front: {
  27274. height: math.unit(7, "feet"),
  27275. weight: math.unit(518, "lb"),
  27276. name: "Front",
  27277. image: {
  27278. source: "./media/characters/avia-bloodbourn/front.svg",
  27279. extra: 1466 / 1350,
  27280. bottom: 65 / 1527
  27281. }
  27282. },
  27283. },
  27284. [
  27285. ]
  27286. ))
  27287. characterMakers.push(() => makeCharacter(
  27288. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27289. {
  27290. front: {
  27291. height: math.unit(9.35, "feet"),
  27292. weight: math.unit(600, "lb"),
  27293. name: "Front",
  27294. image: {
  27295. source: "./media/characters/amera/front.svg",
  27296. extra: 891 / 818,
  27297. bottom: 30 / 922.7
  27298. }
  27299. },
  27300. back: {
  27301. height: math.unit(9.35, "feet"),
  27302. weight: math.unit(600, "lb"),
  27303. name: "Back",
  27304. image: {
  27305. source: "./media/characters/amera/back.svg",
  27306. extra: 876 / 824,
  27307. bottom: 6.8 / 884
  27308. }
  27309. },
  27310. dick: {
  27311. height: math.unit(2.14, "feet"),
  27312. name: "Dick",
  27313. image: {
  27314. source: "./media/characters/amera/dick.svg"
  27315. }
  27316. },
  27317. },
  27318. [
  27319. {
  27320. name: "Normal",
  27321. height: math.unit(9.35, "feet"),
  27322. default: true
  27323. },
  27324. ]
  27325. ))
  27326. characterMakers.push(() => makeCharacter(
  27327. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27328. {
  27329. kneeling: {
  27330. height: math.unit(3 + 4 / 12, "feet"),
  27331. weight: math.unit(90, "lb"),
  27332. name: "Kneeling",
  27333. image: {
  27334. source: "./media/characters/rosewen/kneeling.svg",
  27335. extra: 1835 / 1571,
  27336. bottom: 27.7 / 1862
  27337. }
  27338. },
  27339. },
  27340. [
  27341. {
  27342. name: "Normal",
  27343. height: math.unit(3 + 4 / 12, "feet"),
  27344. default: true
  27345. },
  27346. ]
  27347. ))
  27348. characterMakers.push(() => makeCharacter(
  27349. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27350. {
  27351. front: {
  27352. height: math.unit(5 + 10 / 12, "feet"),
  27353. weight: math.unit(200, "lb"),
  27354. name: "Front",
  27355. image: {
  27356. source: "./media/characters/sabah/front.svg",
  27357. extra: 849 / 763,
  27358. bottom: 33.9 / 881
  27359. }
  27360. },
  27361. },
  27362. [
  27363. {
  27364. name: "Normal",
  27365. height: math.unit(5 + 10 / 12, "feet"),
  27366. default: true
  27367. },
  27368. ]
  27369. ))
  27370. characterMakers.push(() => makeCharacter(
  27371. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27372. {
  27373. front: {
  27374. height: math.unit(3 + 5 / 12, "feet"),
  27375. weight: math.unit(40, "kg"),
  27376. name: "Front",
  27377. image: {
  27378. source: "./media/characters/purple-flame/front.svg",
  27379. extra: 1577 / 1412,
  27380. bottom: 97 / 1694
  27381. }
  27382. },
  27383. frontDressed: {
  27384. height: math.unit(3 + 5 / 12, "feet"),
  27385. weight: math.unit(40, "kg"),
  27386. name: "Front (Dressed)",
  27387. image: {
  27388. source: "./media/characters/purple-flame/front-dressed.svg",
  27389. extra: 1577 / 1412,
  27390. bottom: 97 / 1694
  27391. }
  27392. },
  27393. headphones: {
  27394. height: math.unit(0.85, "feet"),
  27395. name: "Headphones",
  27396. image: {
  27397. source: "./media/characters/purple-flame/headphones.svg"
  27398. }
  27399. },
  27400. },
  27401. [
  27402. {
  27403. name: "Really Small",
  27404. height: math.unit(5, "cm")
  27405. },
  27406. {
  27407. name: "Micro",
  27408. height: math.unit(1 + 5 / 12, "feet")
  27409. },
  27410. {
  27411. name: "Normal",
  27412. height: math.unit(3 + 5 / 12, "feet"),
  27413. default: true
  27414. },
  27415. {
  27416. name: "Minimacro",
  27417. height: math.unit(125, "feet")
  27418. },
  27419. {
  27420. name: "Macro",
  27421. height: math.unit(0.5, "miles")
  27422. },
  27423. {
  27424. name: "Megamacro",
  27425. height: math.unit(50, "miles")
  27426. },
  27427. {
  27428. name: "Gigantic",
  27429. height: math.unit(750, "miles")
  27430. },
  27431. {
  27432. name: "Planetary",
  27433. height: math.unit(15000, "miles")
  27434. },
  27435. ]
  27436. ))
  27437. characterMakers.push(() => makeCharacter(
  27438. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27439. {
  27440. front: {
  27441. height: math.unit(14, "feet"),
  27442. weight: math.unit(959, "lb"),
  27443. name: "Front",
  27444. image: {
  27445. source: "./media/characters/arsenal/front.svg",
  27446. extra: 2357 / 2157,
  27447. bottom: 93 / 2458
  27448. }
  27449. },
  27450. },
  27451. [
  27452. {
  27453. name: "Normal",
  27454. height: math.unit(14, "feet"),
  27455. default: true
  27456. },
  27457. ]
  27458. ))
  27459. characterMakers.push(() => makeCharacter(
  27460. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27461. {
  27462. front: {
  27463. height: math.unit(6, "feet"),
  27464. weight: math.unit(150, "lb"),
  27465. name: "Front",
  27466. image: {
  27467. source: "./media/characters/adira/front.svg",
  27468. extra: 1078 / 1029,
  27469. bottom: 87 / 1166
  27470. }
  27471. },
  27472. },
  27473. [
  27474. {
  27475. name: "Micro",
  27476. height: math.unit(4, "inches"),
  27477. default: true
  27478. },
  27479. {
  27480. name: "Macro",
  27481. height: math.unit(50, "feet")
  27482. },
  27483. ]
  27484. ))
  27485. characterMakers.push(() => makeCharacter(
  27486. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27487. {
  27488. front: {
  27489. height: math.unit(16, "feet"),
  27490. weight: math.unit(1000, "lb"),
  27491. name: "Front",
  27492. image: {
  27493. source: "./media/characters/grim/front.svg",
  27494. extra: 622 / 614,
  27495. bottom: 18.1 / 642
  27496. }
  27497. },
  27498. back: {
  27499. height: math.unit(16, "feet"),
  27500. weight: math.unit(1000, "lb"),
  27501. name: "Back",
  27502. image: {
  27503. source: "./media/characters/grim/back.svg",
  27504. extra: 610.6 / 602,
  27505. bottom: 40.8 / 652
  27506. }
  27507. },
  27508. hunched: {
  27509. height: math.unit(9.75, "feet"),
  27510. weight: math.unit(1000, "lb"),
  27511. name: "Hunched",
  27512. image: {
  27513. source: "./media/characters/grim/hunched.svg",
  27514. extra: 304 / 297,
  27515. bottom: 35.4 / 394
  27516. }
  27517. },
  27518. },
  27519. [
  27520. {
  27521. name: "Normal",
  27522. height: math.unit(16, "feet"),
  27523. default: true
  27524. },
  27525. ]
  27526. ))
  27527. characterMakers.push(() => makeCharacter(
  27528. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27529. {
  27530. front: {
  27531. height: math.unit(2.3, "meters"),
  27532. weight: math.unit(300, "lb"),
  27533. name: "Front",
  27534. image: {
  27535. source: "./media/characters/sinja/front-sfw.svg",
  27536. extra: 1393 / 1294,
  27537. bottom: 70 / 1463
  27538. }
  27539. },
  27540. frontNsfw: {
  27541. height: math.unit(2.3, "meters"),
  27542. weight: math.unit(300, "lb"),
  27543. name: "Front (NSFW)",
  27544. image: {
  27545. source: "./media/characters/sinja/front-nsfw.svg",
  27546. extra: 1393 / 1294,
  27547. bottom: 70 / 1463
  27548. }
  27549. },
  27550. back: {
  27551. height: math.unit(2.3, "meters"),
  27552. weight: math.unit(300, "lb"),
  27553. name: "Back",
  27554. image: {
  27555. source: "./media/characters/sinja/back.svg",
  27556. extra: 1393 / 1294,
  27557. bottom: 70 / 1463
  27558. }
  27559. },
  27560. head: {
  27561. height: math.unit(1.771, "feet"),
  27562. name: "Head",
  27563. image: {
  27564. source: "./media/characters/sinja/head.svg"
  27565. }
  27566. },
  27567. slit: {
  27568. height: math.unit(0.8, "feet"),
  27569. name: "Slit",
  27570. image: {
  27571. source: "./media/characters/sinja/slit.svg"
  27572. }
  27573. },
  27574. },
  27575. [
  27576. {
  27577. name: "Normal",
  27578. height: math.unit(2.3, "meters")
  27579. },
  27580. {
  27581. name: "Macro",
  27582. height: math.unit(91, "meters"),
  27583. default: true
  27584. },
  27585. {
  27586. name: "Megamacro",
  27587. height: math.unit(91440, "meters")
  27588. },
  27589. {
  27590. name: "Gigamacro",
  27591. height: math.unit(60960000, "meters")
  27592. },
  27593. {
  27594. name: "Teramacro",
  27595. height: math.unit(9144000000, "meters")
  27596. },
  27597. ]
  27598. ))
  27599. characterMakers.push(() => makeCharacter(
  27600. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27601. {
  27602. front: {
  27603. height: math.unit(1.7, "meters"),
  27604. weight: math.unit(130, "lb"),
  27605. name: "Front",
  27606. image: {
  27607. source: "./media/characters/kyu/front.svg",
  27608. extra: 415 / 395,
  27609. bottom: 5 / 420
  27610. }
  27611. },
  27612. head: {
  27613. height: math.unit(1.75, "feet"),
  27614. name: "Head",
  27615. image: {
  27616. source: "./media/characters/kyu/head.svg"
  27617. }
  27618. },
  27619. foot: {
  27620. height: math.unit(0.81, "feet"),
  27621. name: "Foot",
  27622. image: {
  27623. source: "./media/characters/kyu/foot.svg"
  27624. }
  27625. },
  27626. },
  27627. [
  27628. {
  27629. name: "Normal",
  27630. height: math.unit(1.7, "meters")
  27631. },
  27632. {
  27633. name: "Macro",
  27634. height: math.unit(131, "feet"),
  27635. default: true
  27636. },
  27637. {
  27638. name: "Megamacro",
  27639. height: math.unit(91440, "meters")
  27640. },
  27641. {
  27642. name: "Gigamacro",
  27643. height: math.unit(60960000, "meters")
  27644. },
  27645. {
  27646. name: "Teramacro",
  27647. height: math.unit(9144000000, "meters")
  27648. },
  27649. ]
  27650. ))
  27651. characterMakers.push(() => makeCharacter(
  27652. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27653. {
  27654. front: {
  27655. height: math.unit(7 + 1 / 12, "feet"),
  27656. weight: math.unit(250, "lb"),
  27657. name: "Front",
  27658. image: {
  27659. source: "./media/characters/joey/front.svg",
  27660. extra: 1791 / 1537,
  27661. bottom: 28 / 1816
  27662. }
  27663. },
  27664. },
  27665. [
  27666. {
  27667. name: "Micro",
  27668. height: math.unit(3, "inches")
  27669. },
  27670. {
  27671. name: "Normal",
  27672. height: math.unit(7 + 1 / 12, "feet"),
  27673. default: true
  27674. },
  27675. ]
  27676. ))
  27677. characterMakers.push(() => makeCharacter(
  27678. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27679. {
  27680. front: {
  27681. height: math.unit(165, "cm"),
  27682. weight: math.unit(140, "lb"),
  27683. name: "Front",
  27684. image: {
  27685. source: "./media/characters/sam-evans/front.svg",
  27686. extra: 3417 / 3230,
  27687. bottom: 41.3 / 3417
  27688. }
  27689. },
  27690. frontSixTails: {
  27691. height: math.unit(165, "cm"),
  27692. weight: math.unit(140, "lb"),
  27693. name: "Front-six-tails",
  27694. image: {
  27695. source: "./media/characters/sam-evans/front-six-tails.svg",
  27696. extra: 3417 / 3230,
  27697. bottom: 41.3 / 3417
  27698. }
  27699. },
  27700. back: {
  27701. height: math.unit(165, "cm"),
  27702. weight: math.unit(140, "lb"),
  27703. name: "Back",
  27704. image: {
  27705. source: "./media/characters/sam-evans/back.svg",
  27706. extra: 3227 / 3032,
  27707. bottom: 6.8 / 3234
  27708. }
  27709. },
  27710. face: {
  27711. height: math.unit(0.68, "feet"),
  27712. name: "Face",
  27713. image: {
  27714. source: "./media/characters/sam-evans/face.svg"
  27715. }
  27716. },
  27717. },
  27718. [
  27719. {
  27720. name: "Normal",
  27721. height: math.unit(165, "cm"),
  27722. default: true
  27723. },
  27724. {
  27725. name: "Macro",
  27726. height: math.unit(100, "meters")
  27727. },
  27728. {
  27729. name: "Macro+",
  27730. height: math.unit(800, "meters")
  27731. },
  27732. {
  27733. name: "Macro++",
  27734. height: math.unit(3, "km")
  27735. },
  27736. {
  27737. name: "Macro+++",
  27738. height: math.unit(30, "km")
  27739. },
  27740. ]
  27741. ))
  27742. characterMakers.push(() => makeCharacter(
  27743. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27744. {
  27745. front: {
  27746. height: math.unit(10, "feet"),
  27747. weight: math.unit(750, "lb"),
  27748. name: "Front",
  27749. image: {
  27750. source: "./media/characters/juliet-a/front.svg",
  27751. extra: 1766 / 1720,
  27752. bottom: 43 / 1809
  27753. }
  27754. },
  27755. back: {
  27756. height: math.unit(10, "feet"),
  27757. weight: math.unit(750, "lb"),
  27758. name: "Back",
  27759. image: {
  27760. source: "./media/characters/juliet-a/back.svg",
  27761. extra: 1781 / 1734,
  27762. bottom: 35 / 1810,
  27763. }
  27764. },
  27765. },
  27766. [
  27767. {
  27768. name: "Normal",
  27769. height: math.unit(10, "feet"),
  27770. default: true
  27771. },
  27772. {
  27773. name: "Dragon Form",
  27774. height: math.unit(250, "feet")
  27775. },
  27776. {
  27777. name: "Macro",
  27778. height: math.unit(1000, "feet")
  27779. },
  27780. {
  27781. name: "Megamacro",
  27782. height: math.unit(10000, "feet")
  27783. }
  27784. ]
  27785. ))
  27786. characterMakers.push(() => makeCharacter(
  27787. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27788. {
  27789. regular: {
  27790. height: math.unit(7 + 3 / 12, "feet"),
  27791. weight: math.unit(260, "lb"),
  27792. name: "Regular",
  27793. image: {
  27794. source: "./media/characters/wild/regular.svg",
  27795. extra: 97.45 / 92,
  27796. bottom: 6.8 / 104.3
  27797. }
  27798. },
  27799. biggums: {
  27800. height: math.unit(8 + 6 / 12, "feet"),
  27801. weight: math.unit(425, "lb"),
  27802. name: "Biggums",
  27803. image: {
  27804. source: "./media/characters/wild/biggums.svg",
  27805. extra: 97.45 / 92,
  27806. bottom: 7.5 / 132.34
  27807. }
  27808. },
  27809. mawRegular: {
  27810. height: math.unit(1.24, "feet"),
  27811. name: "Maw (Regular)",
  27812. image: {
  27813. source: "./media/characters/wild/maw.svg"
  27814. }
  27815. },
  27816. mawBiggums: {
  27817. height: math.unit(1.47, "feet"),
  27818. name: "Maw (Biggums)",
  27819. image: {
  27820. source: "./media/characters/wild/maw.svg"
  27821. }
  27822. },
  27823. },
  27824. [
  27825. {
  27826. name: "Normal",
  27827. height: math.unit(7 + 3 / 12, "feet"),
  27828. default: true
  27829. },
  27830. ]
  27831. ))
  27832. characterMakers.push(() => makeCharacter(
  27833. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27834. {
  27835. front: {
  27836. height: math.unit(2.5, "meters"),
  27837. weight: math.unit(200, "kg"),
  27838. name: "Front",
  27839. image: {
  27840. source: "./media/characters/vidar/front.svg",
  27841. extra: 2994 / 2795,
  27842. bottom: 56 / 3061
  27843. }
  27844. },
  27845. back: {
  27846. height: math.unit(2.5, "meters"),
  27847. weight: math.unit(200, "kg"),
  27848. name: "Back",
  27849. image: {
  27850. source: "./media/characters/vidar/back.svg",
  27851. extra: 3131 / 2928,
  27852. bottom: 13.5 / 3141.5
  27853. }
  27854. },
  27855. feral: {
  27856. height: math.unit(2.5, "meters"),
  27857. weight: math.unit(2000, "kg"),
  27858. name: "Feral",
  27859. image: {
  27860. source: "./media/characters/vidar/feral.svg",
  27861. extra: 2790 / 1765,
  27862. bottom: 6 / 2796
  27863. }
  27864. },
  27865. },
  27866. [
  27867. {
  27868. name: "Normal",
  27869. height: math.unit(2.5, "meters"),
  27870. default: true
  27871. },
  27872. {
  27873. name: "Macro",
  27874. height: math.unit(100, "meters")
  27875. },
  27876. ]
  27877. ))
  27878. characterMakers.push(() => makeCharacter(
  27879. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27880. {
  27881. front: {
  27882. height: math.unit(5 + 9 / 12, "feet"),
  27883. weight: math.unit(120, "lb"),
  27884. name: "Front",
  27885. image: {
  27886. source: "./media/characters/ash/front.svg",
  27887. extra: 2189 / 1961,
  27888. bottom: 5.2 / 2194
  27889. }
  27890. },
  27891. },
  27892. [
  27893. {
  27894. name: "Normal",
  27895. height: math.unit(5 + 9 / 12, "feet"),
  27896. default: true
  27897. },
  27898. ]
  27899. ))
  27900. characterMakers.push(() => makeCharacter(
  27901. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27902. {
  27903. front: {
  27904. height: math.unit(9, "feet"),
  27905. weight: math.unit(10000, "lb"),
  27906. name: "Front",
  27907. image: {
  27908. source: "./media/characters/gygabite/front.svg",
  27909. bottom: 31.7 / 537.8,
  27910. extra: 505 / 370
  27911. }
  27912. },
  27913. },
  27914. [
  27915. {
  27916. name: "Normal",
  27917. height: math.unit(9, "feet"),
  27918. default: true
  27919. },
  27920. ]
  27921. ))
  27922. characterMakers.push(() => makeCharacter(
  27923. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27924. {
  27925. front: {
  27926. height: math.unit(12, "feet"),
  27927. weight: math.unit(35000, "lb"),
  27928. name: "Front",
  27929. image: {
  27930. source: "./media/characters/p0tat0/front.svg",
  27931. extra: 1065 / 921,
  27932. bottom: 55.7 / 1121.25
  27933. }
  27934. },
  27935. },
  27936. [
  27937. {
  27938. name: "Normal",
  27939. height: math.unit(12, "feet"),
  27940. default: true
  27941. },
  27942. ]
  27943. ))
  27944. characterMakers.push(() => makeCharacter(
  27945. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27946. {
  27947. side: {
  27948. height: math.unit(6.5, "feet"),
  27949. weight: math.unit(800, "lb"),
  27950. name: "Side",
  27951. image: {
  27952. source: "./media/characters/dusk/side.svg",
  27953. extra: 615 / 373,
  27954. bottom: 53 / 664
  27955. }
  27956. },
  27957. sitting: {
  27958. height: math.unit(7, "feet"),
  27959. weight: math.unit(800, "lb"),
  27960. name: "Sitting",
  27961. image: {
  27962. source: "./media/characters/dusk/sitting.svg",
  27963. extra: 753 / 425,
  27964. bottom: 33 / 774
  27965. }
  27966. },
  27967. head: {
  27968. height: math.unit(6.1, "feet"),
  27969. name: "Head",
  27970. image: {
  27971. source: "./media/characters/dusk/head.svg"
  27972. }
  27973. },
  27974. },
  27975. [
  27976. {
  27977. name: "Normal",
  27978. height: math.unit(7, "feet"),
  27979. default: true
  27980. },
  27981. ]
  27982. ))
  27983. characterMakers.push(() => makeCharacter(
  27984. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27985. {
  27986. front: {
  27987. height: math.unit(15, "feet"),
  27988. weight: math.unit(7000, "lb"),
  27989. name: "Front",
  27990. image: {
  27991. source: "./media/characters/jay-direwolf/front.svg",
  27992. extra: 1810 / 1732,
  27993. bottom: 66 / 1892
  27994. }
  27995. },
  27996. },
  27997. [
  27998. {
  27999. name: "Normal",
  28000. height: math.unit(15, "feet"),
  28001. default: true
  28002. },
  28003. ]
  28004. ))
  28005. characterMakers.push(() => makeCharacter(
  28006. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28007. {
  28008. front: {
  28009. height: math.unit(4 + 9 / 12, "feet"),
  28010. weight: math.unit(130, "lb"),
  28011. name: "Front",
  28012. image: {
  28013. source: "./media/characters/anchovie/front.svg",
  28014. extra: 382 / 350,
  28015. bottom: 25 / 409
  28016. }
  28017. },
  28018. back: {
  28019. height: math.unit(4 + 9 / 12, "feet"),
  28020. weight: math.unit(130, "lb"),
  28021. name: "Back",
  28022. image: {
  28023. source: "./media/characters/anchovie/back.svg",
  28024. extra: 385 / 352,
  28025. bottom: 16.6 / 402
  28026. }
  28027. },
  28028. frontDressed: {
  28029. height: math.unit(4 + 9 / 12, "feet"),
  28030. weight: math.unit(130, "lb"),
  28031. name: "Front (Dressed)",
  28032. image: {
  28033. source: "./media/characters/anchovie/front-dressed.svg",
  28034. extra: 382 / 350,
  28035. bottom: 25 / 409
  28036. }
  28037. },
  28038. backDressed: {
  28039. height: math.unit(4 + 9 / 12, "feet"),
  28040. weight: math.unit(130, "lb"),
  28041. name: "Back (Dressed)",
  28042. image: {
  28043. source: "./media/characters/anchovie/back-dressed.svg",
  28044. extra: 385 / 352,
  28045. bottom: 16.6 / 402
  28046. }
  28047. },
  28048. },
  28049. [
  28050. {
  28051. name: "Micro",
  28052. height: math.unit(6.4, "inches")
  28053. },
  28054. {
  28055. name: "Normal",
  28056. height: math.unit(4 + 9 / 12, "feet"),
  28057. default: true
  28058. },
  28059. ]
  28060. ))
  28061. characterMakers.push(() => makeCharacter(
  28062. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28063. {
  28064. front: {
  28065. height: math.unit(2, "meters"),
  28066. weight: math.unit(180, "lb"),
  28067. name: "Front",
  28068. image: {
  28069. source: "./media/characters/acidrenamon/front.svg",
  28070. extra: 987 / 890,
  28071. bottom: 22.8 / 1009
  28072. }
  28073. },
  28074. back: {
  28075. height: math.unit(2, "meters"),
  28076. weight: math.unit(180, "lb"),
  28077. name: "Back",
  28078. image: {
  28079. source: "./media/characters/acidrenamon/back.svg",
  28080. extra: 983 / 891,
  28081. bottom: 8.4 / 992
  28082. }
  28083. },
  28084. head: {
  28085. height: math.unit(1.92, "feet"),
  28086. name: "Head",
  28087. image: {
  28088. source: "./media/characters/acidrenamon/head.svg"
  28089. }
  28090. },
  28091. rump: {
  28092. height: math.unit(1.72, "feet"),
  28093. name: "Rump",
  28094. image: {
  28095. source: "./media/characters/acidrenamon/rump.svg"
  28096. }
  28097. },
  28098. tail: {
  28099. height: math.unit(4.2, "feet"),
  28100. name: "Tail",
  28101. image: {
  28102. source: "./media/characters/acidrenamon/tail.svg"
  28103. }
  28104. },
  28105. },
  28106. [
  28107. {
  28108. name: "Normal",
  28109. height: math.unit(2, "meters"),
  28110. default: true
  28111. },
  28112. {
  28113. name: "Minimacro",
  28114. height: math.unit(7, "meters")
  28115. },
  28116. {
  28117. name: "Macro",
  28118. height: math.unit(200, "meters")
  28119. },
  28120. {
  28121. name: "Gigamacro",
  28122. height: math.unit(0.2, "earths")
  28123. },
  28124. ]
  28125. ))
  28126. characterMakers.push(() => makeCharacter(
  28127. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28128. {
  28129. front: {
  28130. height: math.unit(152, "feet"),
  28131. name: "Front",
  28132. image: {
  28133. source: "./media/characters/kenzie-lee/front.svg",
  28134. extra: 1869/1774,
  28135. bottom: 128/1997
  28136. }
  28137. },
  28138. side: {
  28139. height: math.unit(86, "feet"),
  28140. name: "Side",
  28141. image: {
  28142. source: "./media/characters/kenzie-lee/side.svg",
  28143. extra: 930/815,
  28144. bottom: 177/1107
  28145. }
  28146. },
  28147. paw: {
  28148. height: math.unit(15, "feet"),
  28149. name: "Paw",
  28150. image: {
  28151. source: "./media/characters/kenzie-lee/paw.svg"
  28152. }
  28153. },
  28154. },
  28155. [
  28156. {
  28157. name: "Micro",
  28158. height: math.unit(1.5, "inches")
  28159. },
  28160. {
  28161. name: "Normal",
  28162. height: math.unit(152, "feet"),
  28163. default: true
  28164. },
  28165. {
  28166. name: "Megamacro",
  28167. height: math.unit(7, "miles")
  28168. },
  28169. {
  28170. name: "Gigamacro",
  28171. height: math.unit(8000, "miles")
  28172. },
  28173. ]
  28174. ))
  28175. characterMakers.push(() => makeCharacter(
  28176. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28177. {
  28178. side: {
  28179. height: math.unit(6, "feet"),
  28180. weight: math.unit(150, "lb"),
  28181. name: "Side",
  28182. image: {
  28183. source: "./media/characters/withers/side.svg",
  28184. extra: 1830 / 1728,
  28185. bottom: 96 / 1927
  28186. }
  28187. },
  28188. front: {
  28189. height: math.unit(6, "feet"),
  28190. weight: math.unit(150, "lb"),
  28191. name: "Front",
  28192. image: {
  28193. source: "./media/characters/withers/front.svg",
  28194. extra: 1514 / 1438,
  28195. bottom: 118 / 1632
  28196. }
  28197. },
  28198. },
  28199. [
  28200. {
  28201. name: "Macro",
  28202. height: math.unit(168, "feet"),
  28203. default: true
  28204. },
  28205. {
  28206. name: "Megamacro",
  28207. height: math.unit(15, "miles")
  28208. }
  28209. ]
  28210. ))
  28211. characterMakers.push(() => makeCharacter(
  28212. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28213. {
  28214. front: {
  28215. height: math.unit(6 + 7 / 12, "feet"),
  28216. weight: math.unit(250, "lb"),
  28217. name: "Front",
  28218. image: {
  28219. source: "./media/characters/nemoskii/front.svg",
  28220. extra: 2270 / 1734,
  28221. bottom: 86 / 2354
  28222. }
  28223. },
  28224. back: {
  28225. height: math.unit(6 + 7 / 12, "feet"),
  28226. weight: math.unit(250, "lb"),
  28227. name: "Back",
  28228. image: {
  28229. source: "./media/characters/nemoskii/back.svg",
  28230. extra: 1845 / 1788,
  28231. bottom: 10.5 / 1852
  28232. }
  28233. },
  28234. head: {
  28235. height: math.unit(1.31, "feet"),
  28236. name: "Head",
  28237. image: {
  28238. source: "./media/characters/nemoskii/head.svg"
  28239. }
  28240. },
  28241. },
  28242. [
  28243. {
  28244. name: "Micro",
  28245. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28246. },
  28247. {
  28248. name: "Normal",
  28249. height: math.unit(6 + 7 / 12, "feet"),
  28250. default: true
  28251. },
  28252. {
  28253. name: "Macro",
  28254. height: math.unit((6 + 7 / 12) * 150, "feet")
  28255. },
  28256. {
  28257. name: "Macro+",
  28258. height: math.unit((6 + 7 / 12) * 500, "feet")
  28259. },
  28260. {
  28261. name: "Megamacro",
  28262. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28263. },
  28264. ]
  28265. ))
  28266. characterMakers.push(() => makeCharacter(
  28267. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28268. {
  28269. front: {
  28270. height: math.unit(1, "mile"),
  28271. weight: math.unit(265261.9, "lb"),
  28272. name: "Front",
  28273. image: {
  28274. source: "./media/characters/shui/front.svg",
  28275. extra: 1633 / 1564,
  28276. bottom: 91.5 / 1726
  28277. }
  28278. },
  28279. },
  28280. [
  28281. {
  28282. name: "Macro",
  28283. height: math.unit(1, "mile"),
  28284. default: true
  28285. },
  28286. ]
  28287. ))
  28288. characterMakers.push(() => makeCharacter(
  28289. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28290. {
  28291. front: {
  28292. height: math.unit(12 + 6 / 12, "feet"),
  28293. weight: math.unit(1342, "lb"),
  28294. name: "Front",
  28295. image: {
  28296. source: "./media/characters/arokh-takakura/front.svg",
  28297. extra: 1089 / 1043,
  28298. bottom: 77.4 / 1176.7
  28299. }
  28300. },
  28301. back: {
  28302. height: math.unit(12 + 6 / 12, "feet"),
  28303. weight: math.unit(1342, "lb"),
  28304. name: "Back",
  28305. image: {
  28306. source: "./media/characters/arokh-takakura/back.svg",
  28307. extra: 1046 / 1019,
  28308. bottom: 102 / 1150
  28309. }
  28310. },
  28311. },
  28312. [
  28313. {
  28314. name: "Big",
  28315. height: math.unit(12 + 6 / 12, "feet"),
  28316. default: true
  28317. },
  28318. ]
  28319. ))
  28320. characterMakers.push(() => makeCharacter(
  28321. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28322. {
  28323. front: {
  28324. height: math.unit(5 + 6 / 12, "feet"),
  28325. weight: math.unit(150, "lb"),
  28326. name: "Front",
  28327. image: {
  28328. source: "./media/characters/theo/front.svg",
  28329. extra: 1184 / 1131,
  28330. bottom: 7.4 / 1191
  28331. }
  28332. },
  28333. },
  28334. [
  28335. {
  28336. name: "Micro",
  28337. height: math.unit(5, "inches")
  28338. },
  28339. {
  28340. name: "Normal",
  28341. height: math.unit(5 + 6 / 12, "feet"),
  28342. default: true
  28343. },
  28344. ]
  28345. ))
  28346. characterMakers.push(() => makeCharacter(
  28347. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28348. {
  28349. front: {
  28350. height: math.unit(5 + 9 / 12, "feet"),
  28351. weight: math.unit(130, "lb"),
  28352. name: "Front",
  28353. image: {
  28354. source: "./media/characters/cecelia-swift/front.svg",
  28355. extra: 502 / 484,
  28356. bottom: 23 / 523
  28357. }
  28358. },
  28359. back: {
  28360. height: math.unit(5 + 9 / 12, "feet"),
  28361. weight: math.unit(130, "lb"),
  28362. name: "Back",
  28363. image: {
  28364. source: "./media/characters/cecelia-swift/back.svg",
  28365. extra: 499 / 485,
  28366. bottom: 12 / 511
  28367. }
  28368. },
  28369. head: {
  28370. height: math.unit(0.90, "feet"),
  28371. name: "Head",
  28372. image: {
  28373. source: "./media/characters/cecelia-swift/head.svg"
  28374. }
  28375. },
  28376. rump: {
  28377. height: math.unit(1.75, "feet"),
  28378. name: "Rump",
  28379. image: {
  28380. source: "./media/characters/cecelia-swift/rump.svg"
  28381. }
  28382. },
  28383. },
  28384. [
  28385. {
  28386. name: "Normal",
  28387. height: math.unit(5 + 9 / 12, "feet"),
  28388. default: true
  28389. },
  28390. {
  28391. name: "Big",
  28392. height: math.unit(50, "feet")
  28393. },
  28394. {
  28395. name: "Macro",
  28396. height: math.unit(100, "feet")
  28397. },
  28398. {
  28399. name: "Macro+",
  28400. height: math.unit(500, "feet")
  28401. },
  28402. {
  28403. name: "Macro++",
  28404. height: math.unit(1000, "feet")
  28405. },
  28406. ]
  28407. ))
  28408. characterMakers.push(() => makeCharacter(
  28409. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28410. {
  28411. front: {
  28412. height: math.unit(6, "feet"),
  28413. weight: math.unit(150, "lb"),
  28414. name: "Front",
  28415. image: {
  28416. source: "./media/characters/kaunan/front.svg",
  28417. extra: 2890 / 2523,
  28418. bottom: 49 / 2939
  28419. }
  28420. },
  28421. },
  28422. [
  28423. {
  28424. name: "Macro",
  28425. height: math.unit(150, "feet"),
  28426. default: true
  28427. },
  28428. ]
  28429. ))
  28430. characterMakers.push(() => makeCharacter(
  28431. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28432. {
  28433. front: {
  28434. height: math.unit(175, "cm"),
  28435. weight: math.unit(60, "kg"),
  28436. name: "Front",
  28437. image: {
  28438. source: "./media/characters/fei/front.svg",
  28439. extra: 1873/1723,
  28440. bottom: 53/1926
  28441. }
  28442. },
  28443. },
  28444. [
  28445. {
  28446. name: "Mortal",
  28447. height: math.unit(175, "cm")
  28448. },
  28449. {
  28450. name: "Normal",
  28451. height: math.unit(3500, "m"),
  28452. default: true
  28453. },
  28454. {
  28455. name: "Stroll",
  28456. height: math.unit(17.5, "km")
  28457. },
  28458. {
  28459. name: "Showoff",
  28460. height: math.unit(175, "km")
  28461. },
  28462. ]
  28463. ))
  28464. characterMakers.push(() => makeCharacter(
  28465. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28466. {
  28467. front: {
  28468. height: math.unit(7, "feet"),
  28469. weight: math.unit(1000, "kg"),
  28470. name: "Front",
  28471. image: {
  28472. source: "./media/characters/edrax/front.svg",
  28473. extra: 2838 / 2550,
  28474. bottom: 130 / 2968
  28475. }
  28476. },
  28477. },
  28478. [
  28479. {
  28480. name: "Small",
  28481. height: math.unit(7, "feet")
  28482. },
  28483. {
  28484. name: "Normal",
  28485. height: math.unit(1500, "meters")
  28486. },
  28487. {
  28488. name: "Mega",
  28489. height: math.unit(12000000, "km"),
  28490. default: true
  28491. },
  28492. {
  28493. name: "Megamacro",
  28494. height: math.unit(10600000, "lightyears")
  28495. },
  28496. {
  28497. name: "Hypermacro",
  28498. height: math.unit(256, "yottameters")
  28499. },
  28500. ]
  28501. ))
  28502. characterMakers.push(() => makeCharacter(
  28503. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28504. {
  28505. front: {
  28506. height: math.unit(10, "feet"),
  28507. weight: math.unit(750, "lb"),
  28508. name: "Front",
  28509. image: {
  28510. source: "./media/characters/clove/front.svg",
  28511. extra: 1918/1751,
  28512. bottom: 52/1970
  28513. }
  28514. },
  28515. back: {
  28516. height: math.unit(10, "feet"),
  28517. weight: math.unit(750, "lb"),
  28518. name: "Back",
  28519. image: {
  28520. source: "./media/characters/clove/back.svg",
  28521. extra: 1912/1747,
  28522. bottom: 50/1962
  28523. }
  28524. },
  28525. },
  28526. [
  28527. {
  28528. name: "Normal",
  28529. height: math.unit(10, "feet"),
  28530. default: true
  28531. },
  28532. ]
  28533. ))
  28534. characterMakers.push(() => makeCharacter(
  28535. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28536. {
  28537. front: {
  28538. height: math.unit(4, "feet"),
  28539. weight: math.unit(50, "lb"),
  28540. name: "Front",
  28541. image: {
  28542. source: "./media/characters/alex-rabbit/front.svg",
  28543. extra: 507 / 458,
  28544. bottom: 18.5 / 527
  28545. }
  28546. },
  28547. back: {
  28548. height: math.unit(4, "feet"),
  28549. weight: math.unit(50, "lb"),
  28550. name: "Back",
  28551. image: {
  28552. source: "./media/characters/alex-rabbit/back.svg",
  28553. extra: 502 / 460,
  28554. bottom: 18.9 / 521
  28555. }
  28556. },
  28557. },
  28558. [
  28559. {
  28560. name: "Normal",
  28561. height: math.unit(4, "feet"),
  28562. default: true
  28563. },
  28564. ]
  28565. ))
  28566. characterMakers.push(() => makeCharacter(
  28567. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28568. {
  28569. front: {
  28570. height: math.unit(1 + 3 / 12, "feet"),
  28571. weight: math.unit(80, "lb"),
  28572. name: "Front",
  28573. image: {
  28574. source: "./media/characters/zander-rose/front.svg",
  28575. extra: 916 / 797,
  28576. bottom: 17 / 933
  28577. }
  28578. },
  28579. back: {
  28580. height: math.unit(1 + 3 / 12, "feet"),
  28581. weight: math.unit(80, "lb"),
  28582. name: "Back",
  28583. image: {
  28584. source: "./media/characters/zander-rose/back.svg",
  28585. extra: 903 / 779,
  28586. bottom: 31 / 934
  28587. }
  28588. },
  28589. },
  28590. [
  28591. {
  28592. name: "Normal",
  28593. height: math.unit(1 + 3 / 12, "feet"),
  28594. default: true
  28595. },
  28596. ]
  28597. ))
  28598. characterMakers.push(() => makeCharacter(
  28599. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28600. {
  28601. anthro: {
  28602. height: math.unit(6, "feet"),
  28603. weight: math.unit(150, "lb"),
  28604. name: "Anthro",
  28605. image: {
  28606. source: "./media/characters/razz/anthro.svg",
  28607. extra: 1437 / 1343,
  28608. bottom: 48 / 1485
  28609. }
  28610. },
  28611. feral: {
  28612. height: math.unit(6, "feet"),
  28613. weight: math.unit(150, "lb"),
  28614. name: "Feral",
  28615. image: {
  28616. source: "./media/characters/razz/feral.svg",
  28617. extra: 2569 / 1385,
  28618. bottom: 95 / 2664
  28619. }
  28620. },
  28621. },
  28622. [
  28623. {
  28624. name: "Normal",
  28625. height: math.unit(6, "feet"),
  28626. default: true
  28627. },
  28628. ]
  28629. ))
  28630. characterMakers.push(() => makeCharacter(
  28631. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28632. {
  28633. front: {
  28634. height: math.unit(9 + 4 / 12, "feet"),
  28635. weight: math.unit(500, "lb"),
  28636. name: "Front",
  28637. image: {
  28638. source: "./media/characters/morrigan/front.svg",
  28639. extra: 2707 / 2579,
  28640. bottom: 156 / 2863
  28641. }
  28642. },
  28643. },
  28644. [
  28645. {
  28646. name: "Normal",
  28647. height: math.unit(9 + 4 / 12, "feet"),
  28648. default: true
  28649. },
  28650. ]
  28651. ))
  28652. characterMakers.push(() => makeCharacter(
  28653. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28654. {
  28655. front: {
  28656. height: math.unit(5, "stories"),
  28657. weight: math.unit(4000, "lb"),
  28658. name: "Front",
  28659. image: {
  28660. source: "./media/characters/jenene/front.svg",
  28661. extra: 1780 / 1710,
  28662. bottom: 57 / 1837
  28663. }
  28664. },
  28665. },
  28666. [
  28667. {
  28668. name: "Normal",
  28669. height: math.unit(5, "stories"),
  28670. default: true
  28671. },
  28672. ]
  28673. ))
  28674. characterMakers.push(() => makeCharacter(
  28675. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28676. {
  28677. taurSfw: {
  28678. height: math.unit(10, "meters"),
  28679. weight: math.unit(17500, "kg"),
  28680. name: "Taur",
  28681. image: {
  28682. source: "./media/characters/faey/taur-sfw.svg",
  28683. extra: 1200 / 968,
  28684. bottom: 41 / 1241
  28685. }
  28686. },
  28687. chestmaw: {
  28688. height: math.unit(2.01, "meters"),
  28689. name: "Chestmaw",
  28690. image: {
  28691. source: "./media/characters/faey/chestmaw.svg"
  28692. }
  28693. },
  28694. foot: {
  28695. height: math.unit(2.43, "meters"),
  28696. name: "Foot",
  28697. image: {
  28698. source: "./media/characters/faey/foot.svg"
  28699. }
  28700. },
  28701. jaws: {
  28702. height: math.unit(1.66, "meters"),
  28703. name: "Jaws",
  28704. image: {
  28705. source: "./media/characters/faey/jaws.svg"
  28706. }
  28707. },
  28708. tongues: {
  28709. height: math.unit(2.01, "meters"),
  28710. name: "Tongues",
  28711. image: {
  28712. source: "./media/characters/faey/tongues.svg"
  28713. }
  28714. },
  28715. },
  28716. [
  28717. {
  28718. name: "Small",
  28719. height: math.unit(10, "meters"),
  28720. default: true
  28721. },
  28722. {
  28723. name: "Big",
  28724. height: math.unit(500000, "km")
  28725. },
  28726. ]
  28727. ))
  28728. characterMakers.push(() => makeCharacter(
  28729. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28730. {
  28731. front: {
  28732. height: math.unit(7, "feet"),
  28733. weight: math.unit(275, "lb"),
  28734. name: "Front",
  28735. image: {
  28736. source: "./media/characters/roku/front.svg",
  28737. extra: 903 / 878,
  28738. bottom: 37 / 940
  28739. }
  28740. },
  28741. },
  28742. [
  28743. {
  28744. name: "Normal",
  28745. height: math.unit(7, "feet"),
  28746. default: true
  28747. },
  28748. {
  28749. name: "Macro",
  28750. height: math.unit(500, "feet")
  28751. },
  28752. {
  28753. name: "Megamacro",
  28754. height: math.unit(200, "miles")
  28755. },
  28756. ]
  28757. ))
  28758. characterMakers.push(() => makeCharacter(
  28759. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28760. {
  28761. front: {
  28762. height: math.unit(6 + 2 / 12, "feet"),
  28763. weight: math.unit(150, "lb"),
  28764. name: "Front",
  28765. image: {
  28766. source: "./media/characters/lira/front.svg",
  28767. extra: 1727 / 1605,
  28768. bottom: 26 / 1753
  28769. }
  28770. },
  28771. back: {
  28772. height: math.unit(6 + 2 / 12, "feet"),
  28773. weight: math.unit(150, "lb"),
  28774. name: "Back",
  28775. image: {
  28776. source: "./media/characters/lira/back.svg",
  28777. extra: 1713/1621,
  28778. bottom: 20/1733
  28779. }
  28780. },
  28781. hand: {
  28782. height: math.unit(0.75, "feet"),
  28783. name: "Hand",
  28784. image: {
  28785. source: "./media/characters/lira/hand.svg"
  28786. }
  28787. },
  28788. maw: {
  28789. height: math.unit(0.65, "feet"),
  28790. name: "Maw",
  28791. image: {
  28792. source: "./media/characters/lira/maw.svg"
  28793. }
  28794. },
  28795. pawDigi: {
  28796. height: math.unit(1.6, "feet"),
  28797. name: "Paw Digi",
  28798. image: {
  28799. source: "./media/characters/lira/paw-digi.svg"
  28800. }
  28801. },
  28802. pawPlanti: {
  28803. height: math.unit(1.4, "feet"),
  28804. name: "Paw Planti",
  28805. image: {
  28806. source: "./media/characters/lira/paw-planti.svg"
  28807. }
  28808. },
  28809. },
  28810. [
  28811. {
  28812. name: "Normal",
  28813. height: math.unit(6 + 2 / 12, "feet"),
  28814. default: true
  28815. },
  28816. {
  28817. name: "Macro",
  28818. height: math.unit(100, "feet")
  28819. },
  28820. {
  28821. name: "Macro²",
  28822. height: math.unit(1600, "feet")
  28823. },
  28824. {
  28825. name: "Planetary",
  28826. height: math.unit(20, "earths")
  28827. },
  28828. ]
  28829. ))
  28830. characterMakers.push(() => makeCharacter(
  28831. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28832. {
  28833. front: {
  28834. height: math.unit(6, "feet"),
  28835. weight: math.unit(150, "lb"),
  28836. name: "Front",
  28837. image: {
  28838. source: "./media/characters/hadjet/front.svg",
  28839. extra: 1480 / 1346,
  28840. bottom: 26 / 1506
  28841. }
  28842. },
  28843. frontNsfw: {
  28844. height: math.unit(6, "feet"),
  28845. weight: math.unit(150, "lb"),
  28846. name: "Front (NSFW)",
  28847. image: {
  28848. source: "./media/characters/hadjet/front-nsfw.svg",
  28849. extra: 1440 / 1358,
  28850. bottom: 52 / 1492
  28851. }
  28852. },
  28853. },
  28854. [
  28855. {
  28856. name: "Macro",
  28857. height: math.unit(10, "stories"),
  28858. default: true
  28859. },
  28860. {
  28861. name: "Megamacro",
  28862. height: math.unit(1.5, "miles")
  28863. },
  28864. {
  28865. name: "Megamacro+",
  28866. height: math.unit(5, "miles")
  28867. },
  28868. ]
  28869. ))
  28870. characterMakers.push(() => makeCharacter(
  28871. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28872. {
  28873. side: {
  28874. height: math.unit(106, "feet"),
  28875. weight: math.unit(500, "tonnes"),
  28876. name: "Side",
  28877. image: {
  28878. source: "./media/characters/kodran/side.svg",
  28879. extra: 553 / 480,
  28880. bottom: 33 / 586
  28881. }
  28882. },
  28883. front: {
  28884. height: math.unit(132, "feet"),
  28885. weight: math.unit(500, "tonnes"),
  28886. name: "Front",
  28887. image: {
  28888. source: "./media/characters/kodran/front.svg",
  28889. extra: 667 / 643,
  28890. bottom: 42 / 709
  28891. }
  28892. },
  28893. flying: {
  28894. height: math.unit(350, "feet"),
  28895. weight: math.unit(500, "tonnes"),
  28896. name: "Flying",
  28897. image: {
  28898. source: "./media/characters/kodran/flying.svg"
  28899. }
  28900. },
  28901. foot: {
  28902. height: math.unit(33, "feet"),
  28903. name: "Foot",
  28904. image: {
  28905. source: "./media/characters/kodran/foot.svg"
  28906. }
  28907. },
  28908. footFront: {
  28909. height: math.unit(19, "feet"),
  28910. name: "Foot (Front)",
  28911. image: {
  28912. source: "./media/characters/kodran/foot-front.svg",
  28913. extra: 261 / 261,
  28914. bottom: 91 / 352
  28915. }
  28916. },
  28917. headFront: {
  28918. height: math.unit(53, "feet"),
  28919. name: "Head (Front)",
  28920. image: {
  28921. source: "./media/characters/kodran/head-front.svg"
  28922. }
  28923. },
  28924. headSide: {
  28925. height: math.unit(65, "feet"),
  28926. name: "Head (Side)",
  28927. image: {
  28928. source: "./media/characters/kodran/head-side.svg"
  28929. }
  28930. },
  28931. throat: {
  28932. height: math.unit(79, "feet"),
  28933. name: "Throat",
  28934. image: {
  28935. source: "./media/characters/kodran/throat.svg"
  28936. }
  28937. },
  28938. },
  28939. [
  28940. {
  28941. name: "Large",
  28942. height: math.unit(106, "feet"),
  28943. default: true
  28944. },
  28945. ]
  28946. ))
  28947. characterMakers.push(() => makeCharacter(
  28948. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28949. {
  28950. side: {
  28951. height: math.unit(11, "feet"),
  28952. weight: math.unit(150, "lb"),
  28953. name: "Side",
  28954. image: {
  28955. source: "./media/characters/pyxaron/side.svg",
  28956. extra: 305 / 195,
  28957. bottom: 17 / 322
  28958. }
  28959. },
  28960. },
  28961. [
  28962. {
  28963. name: "Normal",
  28964. height: math.unit(11, "feet"),
  28965. default: true
  28966. },
  28967. ]
  28968. ))
  28969. characterMakers.push(() => makeCharacter(
  28970. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28971. {
  28972. front: {
  28973. height: math.unit(6, "feet"),
  28974. weight: math.unit(150, "lb"),
  28975. name: "Front",
  28976. image: {
  28977. source: "./media/characters/meep/front.svg",
  28978. extra: 88 / 80,
  28979. bottom: 6 / 94
  28980. }
  28981. },
  28982. },
  28983. [
  28984. {
  28985. name: "Fun Sized",
  28986. height: math.unit(2, "inches"),
  28987. default: true
  28988. },
  28989. {
  28990. name: "Friend Sized",
  28991. height: math.unit(8, "inches")
  28992. },
  28993. ]
  28994. ))
  28995. characterMakers.push(() => makeCharacter(
  28996. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28997. {
  28998. front: {
  28999. height: math.unit(15, "feet"),
  29000. weight: math.unit(2500, "lb"),
  29001. name: "Front",
  29002. image: {
  29003. source: "./media/characters/holly-rabbit/front.svg",
  29004. extra: 1433 / 1233,
  29005. bottom: 125 / 1558
  29006. }
  29007. },
  29008. dick: {
  29009. height: math.unit(4.6, "feet"),
  29010. name: "Dick",
  29011. image: {
  29012. source: "./media/characters/holly-rabbit/dick.svg"
  29013. }
  29014. },
  29015. },
  29016. [
  29017. {
  29018. name: "Normal",
  29019. height: math.unit(15, "feet"),
  29020. default: true
  29021. },
  29022. {
  29023. name: "Macro",
  29024. height: math.unit(250, "feet")
  29025. },
  29026. {
  29027. name: "Macro+",
  29028. height: math.unit(2500, "feet")
  29029. },
  29030. ]
  29031. ))
  29032. characterMakers.push(() => makeCharacter(
  29033. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29034. {
  29035. front: {
  29036. height: math.unit(3.02, "meters"),
  29037. weight: math.unit(500, "kg"),
  29038. name: "Front",
  29039. image: {
  29040. source: "./media/characters/drena/front.svg",
  29041. extra: 282 / 243,
  29042. bottom: 8 / 290
  29043. }
  29044. },
  29045. side: {
  29046. height: math.unit(3.02, "meters"),
  29047. weight: math.unit(500, "kg"),
  29048. name: "Side",
  29049. image: {
  29050. source: "./media/characters/drena/side.svg",
  29051. extra: 280 / 245,
  29052. bottom: 10 / 290
  29053. }
  29054. },
  29055. back: {
  29056. height: math.unit(3.02, "meters"),
  29057. weight: math.unit(500, "kg"),
  29058. name: "Back",
  29059. image: {
  29060. source: "./media/characters/drena/back.svg",
  29061. extra: 278 / 243,
  29062. bottom: 2 / 280
  29063. }
  29064. },
  29065. foot: {
  29066. height: math.unit(0.75, "meters"),
  29067. name: "Foot",
  29068. image: {
  29069. source: "./media/characters/drena/foot.svg"
  29070. }
  29071. },
  29072. maw: {
  29073. height: math.unit(0.82, "meters"),
  29074. name: "Maw",
  29075. image: {
  29076. source: "./media/characters/drena/maw.svg"
  29077. }
  29078. },
  29079. rump: {
  29080. height: math.unit(0.93, "meters"),
  29081. name: "Rump",
  29082. image: {
  29083. source: "./media/characters/drena/rump.svg"
  29084. }
  29085. },
  29086. },
  29087. [
  29088. {
  29089. name: "Normal",
  29090. height: math.unit(3.02, "meters"),
  29091. default: true
  29092. },
  29093. ]
  29094. ))
  29095. characterMakers.push(() => makeCharacter(
  29096. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29097. {
  29098. front: {
  29099. height: math.unit(6 + 4 / 12, "feet"),
  29100. weight: math.unit(250, "lb"),
  29101. name: "Front",
  29102. image: {
  29103. source: "./media/characters/remmyzilla/front.svg",
  29104. extra: 4033 / 3588,
  29105. bottom: 123 / 4156
  29106. }
  29107. },
  29108. back: {
  29109. height: math.unit(6 + 4 / 12, "feet"),
  29110. weight: math.unit(250, "lb"),
  29111. name: "Back",
  29112. image: {
  29113. source: "./media/characters/remmyzilla/back.svg",
  29114. extra: 2687 / 2555,
  29115. bottom: 48 / 2735
  29116. }
  29117. },
  29118. paw: {
  29119. height: math.unit(1.73, "feet"),
  29120. name: "Paw",
  29121. image: {
  29122. source: "./media/characters/remmyzilla/paw.svg"
  29123. }
  29124. },
  29125. maw: {
  29126. height: math.unit(1.73, "feet"),
  29127. name: "Maw",
  29128. image: {
  29129. source: "./media/characters/remmyzilla/maw.svg"
  29130. }
  29131. },
  29132. },
  29133. [
  29134. {
  29135. name: "Normal",
  29136. height: math.unit(6 + 4 / 12, "feet")
  29137. },
  29138. {
  29139. name: "Minimacro",
  29140. height: math.unit(12 + 8 / 12, "feet")
  29141. },
  29142. {
  29143. name: "Normal",
  29144. height: math.unit(640, "feet"),
  29145. default: true
  29146. },
  29147. {
  29148. name: "Megamacro",
  29149. height: math.unit(6400, "feet")
  29150. },
  29151. {
  29152. name: "Gigamacro",
  29153. height: math.unit(64000, "miles")
  29154. },
  29155. ]
  29156. ))
  29157. characterMakers.push(() => makeCharacter(
  29158. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29159. {
  29160. front: {
  29161. height: math.unit(2.5, "meters"),
  29162. weight: math.unit(300, "lb"),
  29163. name: "Front",
  29164. image: {
  29165. source: "./media/characters/lawrence/front.svg",
  29166. extra: 357 / 335,
  29167. bottom: 30 / 387
  29168. }
  29169. },
  29170. back: {
  29171. height: math.unit(2.5, "meters"),
  29172. weight: math.unit(300, "lb"),
  29173. name: "Back",
  29174. image: {
  29175. source: "./media/characters/lawrence/back.svg",
  29176. extra: 357 / 338,
  29177. bottom: 16 / 373
  29178. }
  29179. },
  29180. head: {
  29181. height: math.unit(0.9, "meter"),
  29182. name: "Head",
  29183. image: {
  29184. source: "./media/characters/lawrence/head.svg"
  29185. }
  29186. },
  29187. maw: {
  29188. height: math.unit(0.7, "meter"),
  29189. name: "Maw",
  29190. image: {
  29191. source: "./media/characters/lawrence/maw.svg"
  29192. }
  29193. },
  29194. footBottom: {
  29195. height: math.unit(0.5, "meter"),
  29196. name: "Foot (Bottom)",
  29197. image: {
  29198. source: "./media/characters/lawrence/foot-bottom.svg"
  29199. }
  29200. },
  29201. footTop: {
  29202. height: math.unit(0.5, "meter"),
  29203. name: "Foot (Top)",
  29204. image: {
  29205. source: "./media/characters/lawrence/foot-top.svg"
  29206. }
  29207. },
  29208. },
  29209. [
  29210. {
  29211. name: "Normal",
  29212. height: math.unit(2.5, "meters"),
  29213. default: true
  29214. },
  29215. {
  29216. name: "Macro",
  29217. height: math.unit(95, "meters")
  29218. },
  29219. {
  29220. name: "Megamacro",
  29221. height: math.unit(150, "km")
  29222. },
  29223. ]
  29224. ))
  29225. characterMakers.push(() => makeCharacter(
  29226. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29227. {
  29228. front: {
  29229. height: math.unit(4.2, "meters"),
  29230. name: "Front",
  29231. image: {
  29232. source: "./media/characters/sydney/front.svg",
  29233. extra: 1323 / 1277,
  29234. bottom: 111 / 1434
  29235. }
  29236. },
  29237. },
  29238. [
  29239. {
  29240. name: "Normal",
  29241. height: math.unit(4.2, "meters"),
  29242. default: true
  29243. },
  29244. ]
  29245. ))
  29246. characterMakers.push(() => makeCharacter(
  29247. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29248. {
  29249. back: {
  29250. height: math.unit(201, "feet"),
  29251. name: "Back",
  29252. image: {
  29253. source: "./media/characters/jessica/back.svg",
  29254. extra: 273 / 259,
  29255. bottom: 7 / 280
  29256. }
  29257. },
  29258. },
  29259. [
  29260. {
  29261. name: "Normal",
  29262. height: math.unit(201, "feet"),
  29263. default: true
  29264. },
  29265. {
  29266. name: "Megamacro",
  29267. height: math.unit(8, "miles")
  29268. },
  29269. ]
  29270. ))
  29271. characterMakers.push(() => makeCharacter(
  29272. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29273. {
  29274. side: {
  29275. height: math.unit(5.6, "m"),
  29276. weight: math.unit(8000, "kg"),
  29277. name: "Side",
  29278. image: {
  29279. source: "./media/characters/victoria/side.svg",
  29280. extra: 1542/1229,
  29281. bottom: 124/1666
  29282. }
  29283. },
  29284. maw: {
  29285. height: math.unit(7.14, "feet"),
  29286. name: "Maw",
  29287. image: {
  29288. source: "./media/characters/victoria/maw.svg"
  29289. }
  29290. },
  29291. },
  29292. [
  29293. {
  29294. name: "Normal",
  29295. height: math.unit(5.6, "m"),
  29296. default: true
  29297. },
  29298. ]
  29299. ))
  29300. characterMakers.push(() => makeCharacter(
  29301. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29302. {
  29303. front: {
  29304. height: math.unit(5 + 6 / 12, "feet"),
  29305. name: "Front",
  29306. image: {
  29307. source: "./media/characters/cat/front.svg",
  29308. extra: 1449/1295,
  29309. bottom: 34/1483
  29310. },
  29311. form: "cat",
  29312. default: true
  29313. },
  29314. back: {
  29315. height: math.unit(5 + 6 / 12, "feet"),
  29316. name: "Back",
  29317. image: {
  29318. source: "./media/characters/cat/back.svg",
  29319. extra: 1466/1301,
  29320. bottom: 19/1485
  29321. },
  29322. form: "cat"
  29323. },
  29324. taur: {
  29325. height: math.unit(7, "feet"),
  29326. name: "Taur",
  29327. image: {
  29328. source: "./media/characters/cat/taur.svg",
  29329. extra: 1389/1233,
  29330. bottom: 83/1472
  29331. },
  29332. form: "taur",
  29333. default: true
  29334. },
  29335. lucarioFront: {
  29336. height: math.unit(4, "feet"),
  29337. name: "Lucario (Front)",
  29338. image: {
  29339. source: "./media/characters/cat/lucario-front.svg",
  29340. extra: 1149/1019,
  29341. bottom: 84/1233
  29342. },
  29343. form: "lucario",
  29344. default: true
  29345. },
  29346. lucarioBack: {
  29347. height: math.unit(4, "feet"),
  29348. name: "Lucario (Back)",
  29349. image: {
  29350. source: "./media/characters/cat/lucario-back.svg",
  29351. extra: 1190/1059,
  29352. bottom: 33/1223
  29353. },
  29354. form: "lucario"
  29355. },
  29356. megaLucario: {
  29357. height: math.unit(4, "feet"),
  29358. name: "Mega Lucario",
  29359. image: {
  29360. source: "./media/characters/cat/mega-lucario.svg",
  29361. extra: 1515 / 1319,
  29362. bottom: 63 / 1578
  29363. },
  29364. form: "lucario"
  29365. },
  29366. nickit: {
  29367. height: math.unit(2, "feet"),
  29368. name: "Nickit",
  29369. image: {
  29370. source: "./media/characters/cat/nickit.svg",
  29371. extra: 1980 / 1585,
  29372. bottom: 102 / 2082
  29373. },
  29374. form: "nickit",
  29375. default: true
  29376. },
  29377. lopunnyFront: {
  29378. height: math.unit(5, "feet"),
  29379. name: "Lopunny (Front)",
  29380. image: {
  29381. source: "./media/characters/cat/lopunny-front.svg",
  29382. extra: 1782 / 1469,
  29383. bottom: 38 / 1820
  29384. },
  29385. form: "lopunny",
  29386. default: true
  29387. },
  29388. lopunnyBack: {
  29389. height: math.unit(5, "feet"),
  29390. name: "Lopunny (Back)",
  29391. image: {
  29392. source: "./media/characters/cat/lopunny-back.svg",
  29393. extra: 1660 / 1490,
  29394. bottom: 25 / 1685
  29395. },
  29396. form: "lopunny"
  29397. },
  29398. },
  29399. [
  29400. {
  29401. name: "Really small",
  29402. height: math.unit(1, "nm")
  29403. },
  29404. {
  29405. name: "Micro",
  29406. height: math.unit(5, "inches")
  29407. },
  29408. {
  29409. name: "Normal",
  29410. height: math.unit(5 + 6 / 12, "feet"),
  29411. default: true
  29412. },
  29413. {
  29414. name: "Macro",
  29415. height: math.unit(50, "feet")
  29416. },
  29417. {
  29418. name: "Macro+",
  29419. height: math.unit(150, "feet")
  29420. },
  29421. {
  29422. name: "Megamacro",
  29423. height: math.unit(100, "miles")
  29424. },
  29425. ]
  29426. ))
  29427. characterMakers.push(() => makeCharacter(
  29428. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29429. {
  29430. front: {
  29431. height: math.unit(63.4, "meters"),
  29432. weight: math.unit(3.28349e+6, "kilograms"),
  29433. name: "Front",
  29434. image: {
  29435. source: "./media/characters/kirina-violet/front.svg",
  29436. extra: 2812 / 2725,
  29437. bottom: 0 / 2812
  29438. }
  29439. },
  29440. back: {
  29441. height: math.unit(63.4, "meters"),
  29442. weight: math.unit(3.28349e+6, "kilograms"),
  29443. name: "Back",
  29444. image: {
  29445. source: "./media/characters/kirina-violet/back.svg",
  29446. extra: 2812 / 2725,
  29447. bottom: 0 / 2812
  29448. }
  29449. },
  29450. mouth: {
  29451. height: math.unit(4.35, "meters"),
  29452. name: "Mouth",
  29453. image: {
  29454. source: "./media/characters/kirina-violet/mouth.svg"
  29455. }
  29456. },
  29457. paw: {
  29458. height: math.unit(5.6, "meters"),
  29459. name: "Paw",
  29460. image: {
  29461. source: "./media/characters/kirina-violet/paw.svg"
  29462. }
  29463. },
  29464. tail: {
  29465. height: math.unit(18, "meters"),
  29466. name: "Tail",
  29467. image: {
  29468. source: "./media/characters/kirina-violet/tail.svg"
  29469. }
  29470. },
  29471. },
  29472. [
  29473. {
  29474. name: "Macro",
  29475. height: math.unit(63.4, "meters"),
  29476. default: true
  29477. },
  29478. ]
  29479. ))
  29480. characterMakers.push(() => makeCharacter(
  29481. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29482. {
  29483. front: {
  29484. height: math.unit(75, "feet"),
  29485. name: "Front",
  29486. image: {
  29487. source: "./media/characters/cat-gigachu/front.svg",
  29488. extra: 1239/1027,
  29489. bottom: 32/1271
  29490. }
  29491. },
  29492. back: {
  29493. height: math.unit(75, "feet"),
  29494. name: "Back",
  29495. image: {
  29496. source: "./media/characters/cat-gigachu/back.svg",
  29497. extra: 1229/1030,
  29498. bottom: 9/1238
  29499. }
  29500. },
  29501. },
  29502. [
  29503. {
  29504. name: "Dynamax",
  29505. height: math.unit(75, "feet"),
  29506. default: true
  29507. },
  29508. ]
  29509. ))
  29510. characterMakers.push(() => makeCharacter(
  29511. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29512. {
  29513. front: {
  29514. height: math.unit(6, "feet"),
  29515. weight: math.unit(150, "lb"),
  29516. name: "Front",
  29517. image: {
  29518. source: "./media/characters/sfaiyan/front.svg",
  29519. extra: 999 / 978,
  29520. bottom: 5 / 1004
  29521. }
  29522. },
  29523. },
  29524. [
  29525. {
  29526. name: "Normal",
  29527. height: math.unit(1.82, "meters")
  29528. },
  29529. {
  29530. name: "Giant",
  29531. height: math.unit(2.27, "km"),
  29532. default: true
  29533. },
  29534. ]
  29535. ))
  29536. characterMakers.push(() => makeCharacter(
  29537. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29538. {
  29539. front: {
  29540. height: math.unit(179, "cm"),
  29541. weight: math.unit(100, "kg"),
  29542. name: "Front",
  29543. image: {
  29544. source: "./media/characters/raunehkeli/front.svg",
  29545. extra: 1934 / 1926,
  29546. bottom: 0 / 1934
  29547. }
  29548. },
  29549. },
  29550. [
  29551. {
  29552. name: "Normal",
  29553. height: math.unit(179, "cm")
  29554. },
  29555. {
  29556. name: "Maximum",
  29557. height: math.unit(575, "meters"),
  29558. default: true
  29559. },
  29560. ]
  29561. ))
  29562. characterMakers.push(() => makeCharacter(
  29563. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29564. {
  29565. front: {
  29566. height: math.unit(6, "feet"),
  29567. weight: math.unit(150, "lb"),
  29568. name: "Front",
  29569. image: {
  29570. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29571. extra: 2625 / 2518,
  29572. bottom: 60 / 2685
  29573. }
  29574. },
  29575. },
  29576. [
  29577. {
  29578. name: "Normal",
  29579. height: math.unit(6 + 2 / 12, "feet")
  29580. },
  29581. {
  29582. name: "Macro",
  29583. height: math.unit(1180, "feet"),
  29584. default: true
  29585. },
  29586. ]
  29587. ))
  29588. characterMakers.push(() => makeCharacter(
  29589. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29590. {
  29591. front: {
  29592. height: math.unit(5 + 6 / 12, "feet"),
  29593. weight: math.unit(108, "lb"),
  29594. name: "Front",
  29595. image: {
  29596. source: "./media/characters/lilith-zott/front.svg",
  29597. extra: 2510 / 2238,
  29598. bottom: 100 / 2610
  29599. }
  29600. },
  29601. frontDressed: {
  29602. height: math.unit(5 + 6 / 12, "feet"),
  29603. weight: math.unit(108, "lb"),
  29604. name: "Front (Dressed)",
  29605. image: {
  29606. source: "./media/characters/lilith-zott/front-dressed.svg",
  29607. extra: 2510 / 2238,
  29608. bottom: 100 / 2610
  29609. }
  29610. },
  29611. },
  29612. [
  29613. {
  29614. name: "Normal",
  29615. height: math.unit(5 + 6 / 12, "feet")
  29616. },
  29617. {
  29618. name: "Macro",
  29619. height: math.unit(1030, "feet"),
  29620. default: true
  29621. },
  29622. ]
  29623. ))
  29624. characterMakers.push(() => makeCharacter(
  29625. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29626. {
  29627. front: {
  29628. height: math.unit(6, "feet"),
  29629. weight: math.unit(150, "lb"),
  29630. name: "Front",
  29631. image: {
  29632. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29633. extra: 2567 / 2435,
  29634. bottom: 39 / 2606
  29635. }
  29636. },
  29637. frontSuper: {
  29638. height: math.unit(6, "feet"),
  29639. name: "Front (Super)",
  29640. image: {
  29641. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29642. extra: 2567 / 2435,
  29643. bottom: 39 / 2606
  29644. }
  29645. },
  29646. },
  29647. [
  29648. {
  29649. name: "Normal",
  29650. height: math.unit(5 + 10 / 12, "feet")
  29651. },
  29652. {
  29653. name: "Macro",
  29654. height: math.unit(1100, "feet"),
  29655. default: true
  29656. },
  29657. ]
  29658. ))
  29659. characterMakers.push(() => makeCharacter(
  29660. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29661. {
  29662. front: {
  29663. height: math.unit(100, "miles"),
  29664. name: "Front",
  29665. image: {
  29666. source: "./media/characters/sona/front.svg",
  29667. extra: 2433 / 2201,
  29668. bottom: 53 / 2486
  29669. }
  29670. },
  29671. foot: {
  29672. height: math.unit(16.1, "miles"),
  29673. name: "Foot",
  29674. image: {
  29675. source: "./media/characters/sona/foot.svg"
  29676. }
  29677. },
  29678. },
  29679. [
  29680. {
  29681. name: "Macro",
  29682. height: math.unit(100, "miles"),
  29683. default: true
  29684. },
  29685. ]
  29686. ))
  29687. characterMakers.push(() => makeCharacter(
  29688. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29689. {
  29690. front: {
  29691. height: math.unit(6, "feet"),
  29692. weight: math.unit(150, "lb"),
  29693. name: "Front",
  29694. image: {
  29695. source: "./media/characters/bailey/front.svg",
  29696. extra: 1778 / 1724,
  29697. bottom: 30 / 1808
  29698. }
  29699. },
  29700. },
  29701. [
  29702. {
  29703. name: "Micro",
  29704. height: math.unit(4, "inches")
  29705. },
  29706. {
  29707. name: "Normal",
  29708. height: math.unit(5 + 5 / 12, "feet"),
  29709. default: true
  29710. },
  29711. {
  29712. name: "Macro",
  29713. height: math.unit(250, "feet")
  29714. },
  29715. {
  29716. name: "Megamacro",
  29717. height: math.unit(100, "miles")
  29718. },
  29719. ]
  29720. ))
  29721. characterMakers.push(() => makeCharacter(
  29722. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29723. {
  29724. front: {
  29725. height: math.unit(5 + 2 / 12, "feet"),
  29726. weight: math.unit(120, "lb"),
  29727. name: "Front",
  29728. image: {
  29729. source: "./media/characters/snaps/front.svg",
  29730. extra: 2370 / 2177,
  29731. bottom: 48 / 2418
  29732. }
  29733. },
  29734. back: {
  29735. height: math.unit(5 + 2 / 12, "feet"),
  29736. weight: math.unit(120, "lb"),
  29737. name: "Back",
  29738. image: {
  29739. source: "./media/characters/snaps/back.svg",
  29740. extra: 2408 / 2258,
  29741. bottom: 15 / 2423
  29742. }
  29743. },
  29744. },
  29745. [
  29746. {
  29747. name: "Micro",
  29748. height: math.unit(9, "inches")
  29749. },
  29750. {
  29751. name: "Normal",
  29752. height: math.unit(5 + 2 / 12, "feet"),
  29753. default: true
  29754. },
  29755. {
  29756. name: "Mini Macro",
  29757. height: math.unit(10, "feet")
  29758. },
  29759. ]
  29760. ))
  29761. characterMakers.push(() => makeCharacter(
  29762. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29763. {
  29764. front: {
  29765. height: math.unit(1.8, "meters"),
  29766. weight: math.unit(85, "kg"),
  29767. name: "Front",
  29768. image: {
  29769. source: "./media/characters/azteck/front.svg",
  29770. extra: 2815 / 2625,
  29771. bottom: 89 / 2904
  29772. }
  29773. },
  29774. back: {
  29775. height: math.unit(1.8, "meters"),
  29776. weight: math.unit(85, "kg"),
  29777. name: "Back",
  29778. image: {
  29779. source: "./media/characters/azteck/back.svg",
  29780. extra: 2856 / 2648,
  29781. bottom: 85 / 2941
  29782. }
  29783. },
  29784. frontDressed: {
  29785. height: math.unit(1.8, "meters"),
  29786. weight: math.unit(85, "kg"),
  29787. name: "Front (Dressed)",
  29788. image: {
  29789. source: "./media/characters/azteck/front-dressed.svg",
  29790. extra: 2147 / 2003,
  29791. bottom: 68 / 2215
  29792. }
  29793. },
  29794. head: {
  29795. height: math.unit(0.47, "meters"),
  29796. weight: math.unit(85, "kg"),
  29797. name: "Head",
  29798. image: {
  29799. source: "./media/characters/azteck/head.svg"
  29800. }
  29801. },
  29802. },
  29803. [
  29804. {
  29805. name: "Bite sized",
  29806. height: math.unit(16, "cm")
  29807. },
  29808. {
  29809. name: "Normal",
  29810. height: math.unit(1.8, "meters"),
  29811. default: true
  29812. },
  29813. ]
  29814. ))
  29815. characterMakers.push(() => makeCharacter(
  29816. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29817. {
  29818. front: {
  29819. height: math.unit(6, "feet"),
  29820. weight: math.unit(150, "lb"),
  29821. name: "Front",
  29822. image: {
  29823. source: "./media/characters/pidge/front.svg",
  29824. extra: 620 / 588,
  29825. bottom: 9 / 629
  29826. }
  29827. },
  29828. back: {
  29829. height: math.unit(6, "feet"),
  29830. weight: math.unit(150, "lb"),
  29831. name: "Back",
  29832. image: {
  29833. source: "./media/characters/pidge/back.svg",
  29834. extra: 620 / 588,
  29835. bottom: 9 / 629
  29836. }
  29837. },
  29838. },
  29839. [
  29840. {
  29841. name: "Macro",
  29842. height: math.unit(1, "mile"),
  29843. default: true
  29844. },
  29845. ]
  29846. ))
  29847. characterMakers.push(() => makeCharacter(
  29848. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29849. {
  29850. front: {
  29851. height: math.unit(6, "feet"),
  29852. weight: math.unit(150, "lb"),
  29853. name: "Front",
  29854. image: {
  29855. source: "./media/characters/en/front.svg",
  29856. extra: 1697 / 1563,
  29857. bottom: 103 / 1800
  29858. }
  29859. },
  29860. back: {
  29861. height: math.unit(6, "feet"),
  29862. weight: math.unit(150, "lb"),
  29863. name: "Back",
  29864. image: {
  29865. source: "./media/characters/en/back.svg",
  29866. extra: 1700 / 1570,
  29867. bottom: 51 / 1751
  29868. }
  29869. },
  29870. frontDressed: {
  29871. height: math.unit(6, "feet"),
  29872. weight: math.unit(150, "lb"),
  29873. name: "Front (Dressed)",
  29874. image: {
  29875. source: "./media/characters/en/front-dressed.svg",
  29876. extra: 1697 / 1563,
  29877. bottom: 103 / 1800
  29878. }
  29879. },
  29880. backDressed: {
  29881. height: math.unit(6, "feet"),
  29882. weight: math.unit(150, "lb"),
  29883. name: "Back (Dressed)",
  29884. image: {
  29885. source: "./media/characters/en/back-dressed.svg",
  29886. extra: 1700 / 1570,
  29887. bottom: 51 / 1751
  29888. }
  29889. },
  29890. },
  29891. [
  29892. {
  29893. name: "Macro",
  29894. height: math.unit(210, "feet"),
  29895. default: true
  29896. },
  29897. ]
  29898. ))
  29899. characterMakers.push(() => makeCharacter(
  29900. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29901. {
  29902. front: {
  29903. height: math.unit(6, "feet"),
  29904. weight: math.unit(150, "lb"),
  29905. name: "Front",
  29906. image: {
  29907. source: "./media/characters/haze-orris/front.svg",
  29908. extra: 3975 / 3525,
  29909. bottom: 137 / 4112
  29910. }
  29911. },
  29912. },
  29913. [
  29914. {
  29915. name: "Micro",
  29916. height: math.unit(150, "mm"),
  29917. default: true
  29918. },
  29919. ]
  29920. ))
  29921. characterMakers.push(() => makeCharacter(
  29922. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29923. {
  29924. front: {
  29925. height: math.unit(6, "feet"),
  29926. weight: math.unit(150, "lb"),
  29927. name: "Front",
  29928. image: {
  29929. source: "./media/characters/casselene-yaro/front.svg",
  29930. extra: 4721 / 4541,
  29931. bottom: 82 / 4803
  29932. }
  29933. },
  29934. back: {
  29935. height: math.unit(6, "feet"),
  29936. weight: math.unit(150, "lb"),
  29937. name: "Back",
  29938. image: {
  29939. source: "./media/characters/casselene-yaro/back.svg",
  29940. extra: 4569 / 4377,
  29941. bottom: 69 / 4638
  29942. }
  29943. },
  29944. frontDressed: {
  29945. height: math.unit(6, "feet"),
  29946. weight: math.unit(150, "lb"),
  29947. name: "Front-dressed",
  29948. image: {
  29949. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29950. extra: 4721 / 4541,
  29951. bottom: 82 / 4803
  29952. }
  29953. },
  29954. },
  29955. [
  29956. {
  29957. name: "Macro",
  29958. height: math.unit(190, "feet"),
  29959. default: true
  29960. },
  29961. ]
  29962. ))
  29963. characterMakers.push(() => makeCharacter(
  29964. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29965. {
  29966. front: {
  29967. height: math.unit(6, "feet"),
  29968. weight: math.unit(150, "lb"),
  29969. name: "Front",
  29970. image: {
  29971. source: "./media/characters/myra-rue-delore/front.svg",
  29972. extra: 1340 / 1308,
  29973. bottom: 67 / 1407
  29974. }
  29975. },
  29976. back: {
  29977. height: math.unit(6, "feet"),
  29978. weight: math.unit(150, "lb"),
  29979. name: "Back",
  29980. image: {
  29981. source: "./media/characters/myra-rue-delore/back.svg",
  29982. extra: 1341 / 1310,
  29983. bottom: 40 / 1381
  29984. }
  29985. },
  29986. frontDressed: {
  29987. height: math.unit(6, "feet"),
  29988. weight: math.unit(150, "lb"),
  29989. name: "Front (Dressed)",
  29990. image: {
  29991. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29992. extra: 1340 / 1308,
  29993. bottom: 67 / 1407
  29994. }
  29995. },
  29996. },
  29997. [
  29998. {
  29999. name: "Macro",
  30000. height: math.unit(150, "feet"),
  30001. default: true
  30002. },
  30003. ]
  30004. ))
  30005. characterMakers.push(() => makeCharacter(
  30006. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  30007. {
  30008. front: {
  30009. height: math.unit(10, "feet"),
  30010. weight: math.unit(15015, "lb"),
  30011. name: "Front",
  30012. image: {
  30013. source: "./media/characters/fem!plat/front.svg",
  30014. extra: 2799 / 2604,
  30015. bottom: 149 / 2948
  30016. }
  30017. },
  30018. },
  30019. [
  30020. {
  30021. name: "Normal",
  30022. height: math.unit(10, "feet"),
  30023. default: true
  30024. },
  30025. {
  30026. name: "Macro",
  30027. height: math.unit(100, "feet")
  30028. },
  30029. {
  30030. name: "Megamacro",
  30031. height: math.unit(1000, "feet")
  30032. },
  30033. ]
  30034. ))
  30035. characterMakers.push(() => makeCharacter(
  30036. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30037. {
  30038. front: {
  30039. height: math.unit(15 + 5 / 12, "feet"),
  30040. weight: math.unit(4600, "lb"),
  30041. name: "Front",
  30042. image: {
  30043. source: "./media/characters/neapolitan-ananassa/front.svg",
  30044. extra: 2903 / 2736,
  30045. bottom: 0 / 2903
  30046. }
  30047. },
  30048. side: {
  30049. height: math.unit(15 + 5 / 12, "feet"),
  30050. weight: math.unit(4600, "lb"),
  30051. name: "Side",
  30052. image: {
  30053. source: "./media/characters/neapolitan-ananassa/side.svg",
  30054. extra: 2925 / 2719,
  30055. bottom: 0 / 2925
  30056. }
  30057. },
  30058. back: {
  30059. height: math.unit(15 + 5 / 12, "feet"),
  30060. weight: math.unit(4600, "lb"),
  30061. name: "Back",
  30062. image: {
  30063. source: "./media/characters/neapolitan-ananassa/back.svg",
  30064. extra: 2903 / 2736,
  30065. bottom: 0 / 2903
  30066. }
  30067. },
  30068. },
  30069. [
  30070. {
  30071. name: "Normal",
  30072. height: math.unit(15 + 5 / 12, "feet"),
  30073. default: true
  30074. },
  30075. {
  30076. name: "Post-Millenium",
  30077. height: math.unit(35 + 5 / 12, "feet")
  30078. },
  30079. {
  30080. name: "Post-Era",
  30081. height: math.unit(450 + 5 / 12, "feet")
  30082. },
  30083. ]
  30084. ))
  30085. characterMakers.push(() => makeCharacter(
  30086. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30087. {
  30088. front: {
  30089. height: math.unit(300, "meters"),
  30090. weight: math.unit(125000, "tonnes"),
  30091. name: "Front",
  30092. image: {
  30093. source: "./media/characters/pazuzu/front.svg",
  30094. extra: 877 / 794,
  30095. bottom: 47 / 924
  30096. }
  30097. },
  30098. },
  30099. [
  30100. {
  30101. name: "Macro",
  30102. height: math.unit(300, "meters"),
  30103. default: true
  30104. },
  30105. ]
  30106. ))
  30107. characterMakers.push(() => makeCharacter(
  30108. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30109. {
  30110. side: {
  30111. height: math.unit(10 + 7 / 12, "feet"),
  30112. weight: math.unit(2.5, "tons"),
  30113. name: "Side",
  30114. image: {
  30115. source: "./media/characters/aasha/side.svg",
  30116. extra: 1345 / 1245,
  30117. bottom: 111 / 1456
  30118. }
  30119. },
  30120. back: {
  30121. height: math.unit(10 + 7 / 12, "feet"),
  30122. weight: math.unit(2.5, "tons"),
  30123. name: "Back",
  30124. image: {
  30125. source: "./media/characters/aasha/back.svg",
  30126. extra: 1133 / 1057,
  30127. bottom: 257 / 1390
  30128. }
  30129. },
  30130. },
  30131. [
  30132. {
  30133. name: "Normal",
  30134. height: math.unit(10 + 7 / 12, "feet"),
  30135. default: true
  30136. },
  30137. ]
  30138. ))
  30139. characterMakers.push(() => makeCharacter(
  30140. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30141. {
  30142. front: {
  30143. height: math.unit(6 + 3 / 12, "feet"),
  30144. name: "Front",
  30145. image: {
  30146. source: "./media/characters/nevan/front.svg",
  30147. extra: 704 / 704,
  30148. bottom: 28 / 732
  30149. }
  30150. },
  30151. back: {
  30152. height: math.unit(6 + 3 / 12, "feet"),
  30153. name: "Back",
  30154. image: {
  30155. source: "./media/characters/nevan/back.svg",
  30156. extra: 714 / 714,
  30157. bottom: 21 / 735
  30158. }
  30159. },
  30160. frontFlaccid: {
  30161. height: math.unit(6 + 3 / 12, "feet"),
  30162. name: "Front (Flaccid)",
  30163. image: {
  30164. source: "./media/characters/nevan/front-flaccid.svg",
  30165. extra: 704 / 704,
  30166. bottom: 28 / 732
  30167. }
  30168. },
  30169. frontErect: {
  30170. height: math.unit(6 + 3 / 12, "feet"),
  30171. name: "Front (Erect)",
  30172. image: {
  30173. source: "./media/characters/nevan/front-erect.svg",
  30174. extra: 704 / 704,
  30175. bottom: 28 / 732
  30176. }
  30177. },
  30178. backFlaccid: {
  30179. height: math.unit(6 + 3 / 12, "feet"),
  30180. name: "Back (Flaccid)",
  30181. image: {
  30182. source: "./media/characters/nevan/back-flaccid.svg",
  30183. extra: 714 / 714,
  30184. bottom: 21 / 735
  30185. }
  30186. },
  30187. },
  30188. [
  30189. {
  30190. name: "Normal",
  30191. height: math.unit(6 + 3 / 12, "feet"),
  30192. default: true
  30193. },
  30194. ]
  30195. ))
  30196. characterMakers.push(() => makeCharacter(
  30197. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30198. {
  30199. front: {
  30200. height: math.unit(4, "feet"),
  30201. name: "Front",
  30202. image: {
  30203. source: "./media/characters/arhan/front.svg",
  30204. extra: 3368 / 3133,
  30205. bottom: 0 / 3368
  30206. }
  30207. },
  30208. side: {
  30209. height: math.unit(4, "feet"),
  30210. name: "Side",
  30211. image: {
  30212. source: "./media/characters/arhan/side.svg",
  30213. extra: 3347 / 3105,
  30214. bottom: 0 / 3347
  30215. }
  30216. },
  30217. tongue: {
  30218. height: math.unit(1.42, "feet"),
  30219. name: "Tongue",
  30220. image: {
  30221. source: "./media/characters/arhan/tongue.svg"
  30222. }
  30223. },
  30224. head: {
  30225. height: math.unit(0.85, "feet"),
  30226. name: "Head",
  30227. image: {
  30228. source: "./media/characters/arhan/head.svg"
  30229. }
  30230. },
  30231. },
  30232. [
  30233. {
  30234. name: "Normal",
  30235. height: math.unit(4, "feet"),
  30236. default: true
  30237. },
  30238. ]
  30239. ))
  30240. characterMakers.push(() => makeCharacter(
  30241. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30242. {
  30243. front: {
  30244. height: math.unit(5 + 7.5 / 12, "feet"),
  30245. weight: math.unit(120, "lb"),
  30246. name: "Front",
  30247. image: {
  30248. source: "./media/characters/digi-duncan/front.svg",
  30249. extra: 330 / 326,
  30250. bottom: 16 / 346
  30251. }
  30252. },
  30253. side: {
  30254. height: math.unit(5 + 7.5 / 12, "feet"),
  30255. weight: math.unit(120, "lb"),
  30256. name: "Side",
  30257. image: {
  30258. source: "./media/characters/digi-duncan/side.svg",
  30259. extra: 341 / 337,
  30260. bottom: 1 / 342
  30261. }
  30262. },
  30263. back: {
  30264. height: math.unit(5 + 7.5 / 12, "feet"),
  30265. weight: math.unit(120, "lb"),
  30266. name: "Back",
  30267. image: {
  30268. source: "./media/characters/digi-duncan/back.svg",
  30269. extra: 330 / 326,
  30270. bottom: 12 / 342
  30271. }
  30272. },
  30273. },
  30274. [
  30275. {
  30276. name: "Speck",
  30277. height: math.unit(0.25, "mm")
  30278. },
  30279. {
  30280. name: "Micro",
  30281. height: math.unit(5, "mm")
  30282. },
  30283. {
  30284. name: "Tiny",
  30285. height: math.unit(0.5, "inches"),
  30286. default: true
  30287. },
  30288. {
  30289. name: "Human",
  30290. height: math.unit(5 + 7.5 / 12, "feet")
  30291. },
  30292. {
  30293. name: "Minigiant",
  30294. height: math.unit(8 + 5.25, "feet")
  30295. },
  30296. {
  30297. name: "Giant",
  30298. height: math.unit(2000, "feet")
  30299. },
  30300. {
  30301. name: "Mega",
  30302. height: math.unit(371.1, "miles")
  30303. },
  30304. ]
  30305. ))
  30306. characterMakers.push(() => makeCharacter(
  30307. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30308. {
  30309. front: {
  30310. height: math.unit(2, "meters"),
  30311. weight: math.unit(350, "kg"),
  30312. name: "Front",
  30313. image: {
  30314. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30315. extra: 898 / 838,
  30316. bottom: 9 / 907
  30317. }
  30318. },
  30319. },
  30320. [
  30321. {
  30322. name: "Micro",
  30323. height: math.unit(8, "meters")
  30324. },
  30325. {
  30326. name: "Normal",
  30327. height: math.unit(50, "meters"),
  30328. default: true
  30329. },
  30330. {
  30331. name: "Macro",
  30332. height: math.unit(500, "meters")
  30333. },
  30334. ]
  30335. ))
  30336. characterMakers.push(() => makeCharacter(
  30337. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30338. {
  30339. front: {
  30340. height: math.unit(6 + 6 / 12, "feet"),
  30341. name: "Front",
  30342. image: {
  30343. source: "./media/characters/khardesh/front.svg",
  30344. extra: 1788/1596,
  30345. bottom: 66/1854
  30346. }
  30347. },
  30348. back: {
  30349. height: math.unit(6 + 6 / 12, "feet"),
  30350. name: "Back",
  30351. image: {
  30352. source: "./media/characters/khardesh/back.svg",
  30353. extra: 1781/1584,
  30354. bottom: 68/1849
  30355. }
  30356. },
  30357. },
  30358. [
  30359. {
  30360. name: "Normal",
  30361. height: math.unit(6 + 6 / 12, "feet"),
  30362. default: true
  30363. },
  30364. {
  30365. name: "Normal+",
  30366. height: math.unit(4, "meters")
  30367. },
  30368. {
  30369. name: "Macro",
  30370. height: math.unit(50, "meters")
  30371. },
  30372. {
  30373. name: "Macro+",
  30374. height: math.unit(100, "meters")
  30375. },
  30376. {
  30377. name: "Megamacro",
  30378. height: math.unit(20, "km")
  30379. },
  30380. ]
  30381. ))
  30382. characterMakers.push(() => makeCharacter(
  30383. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30384. {
  30385. front: {
  30386. height: math.unit(6, "feet"),
  30387. weight: math.unit(150, "lb"),
  30388. name: "Front",
  30389. image: {
  30390. source: "./media/characters/kosho/front.svg",
  30391. extra: 1847 / 1847,
  30392. bottom: 86 / 1933
  30393. }
  30394. },
  30395. },
  30396. [
  30397. {
  30398. name: "Second-stage micro",
  30399. height: math.unit(0.5, "inches")
  30400. },
  30401. {
  30402. name: "First-stage micro",
  30403. height: math.unit(6, "inches")
  30404. },
  30405. {
  30406. name: "Normal",
  30407. height: math.unit(6, "feet"),
  30408. default: true
  30409. },
  30410. {
  30411. name: "First-stage macro",
  30412. height: math.unit(72, "feet")
  30413. },
  30414. {
  30415. name: "Second-stage macro",
  30416. height: math.unit(864, "feet")
  30417. },
  30418. ]
  30419. ))
  30420. characterMakers.push(() => makeCharacter(
  30421. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30422. {
  30423. normal: {
  30424. height: math.unit(4 + 6 / 12, "feet"),
  30425. name: "Normal",
  30426. image: {
  30427. source: "./media/characters/hydra/normal.svg",
  30428. extra: 2833 / 2634,
  30429. bottom: 68 / 2901
  30430. }
  30431. },
  30432. smol: {
  30433. height: math.unit(0.705, "inches"),
  30434. name: "Smol",
  30435. image: {
  30436. source: "./media/characters/hydra/smol.svg",
  30437. extra: 2715 / 2540,
  30438. bottom: 0 / 2715
  30439. }
  30440. },
  30441. },
  30442. [
  30443. {
  30444. name: "Normal",
  30445. height: math.unit(4 + 6 / 12, "feet"),
  30446. default: true
  30447. }
  30448. ]
  30449. ))
  30450. characterMakers.push(() => makeCharacter(
  30451. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30452. {
  30453. front: {
  30454. height: math.unit(0.6, "cm"),
  30455. name: "Front",
  30456. image: {
  30457. source: "./media/characters/daz/front.svg",
  30458. extra: 1682 / 1164,
  30459. bottom: 42 / 1724
  30460. }
  30461. },
  30462. },
  30463. [
  30464. {
  30465. name: "Normal",
  30466. height: math.unit(0.6, "cm"),
  30467. default: true
  30468. },
  30469. ]
  30470. ))
  30471. characterMakers.push(() => makeCharacter(
  30472. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30473. {
  30474. front: {
  30475. height: math.unit(6, "feet"),
  30476. weight: math.unit(235, "lb"),
  30477. name: "Front",
  30478. image: {
  30479. source: "./media/characters/theo-pangolin/front.svg",
  30480. extra: 1996 / 1969,
  30481. bottom: 115 / 2111
  30482. }
  30483. },
  30484. back: {
  30485. height: math.unit(6, "feet"),
  30486. weight: math.unit(235, "lb"),
  30487. name: "Back",
  30488. image: {
  30489. source: "./media/characters/theo-pangolin/back.svg",
  30490. extra: 1979 / 1979,
  30491. bottom: 40 / 2019
  30492. }
  30493. },
  30494. feral: {
  30495. height: math.unit(2, "feet"),
  30496. weight: math.unit(30, "lb"),
  30497. name: "Feral",
  30498. image: {
  30499. source: "./media/characters/theo-pangolin/feral.svg",
  30500. extra: 803 / 791,
  30501. bottom: 181 / 984
  30502. }
  30503. },
  30504. footFive: {
  30505. height: math.unit(1.43, "feet"),
  30506. name: "Foot (Five Toes)",
  30507. image: {
  30508. source: "./media/characters/theo-pangolin/foot-five.svg"
  30509. }
  30510. },
  30511. footFour: {
  30512. height: math.unit(1.43, "feet"),
  30513. name: "Foot (Four Toes)",
  30514. image: {
  30515. source: "./media/characters/theo-pangolin/foot-four.svg"
  30516. }
  30517. },
  30518. handFour: {
  30519. height: math.unit(0.81, "feet"),
  30520. name: "Hand (Four Fingers)",
  30521. image: {
  30522. source: "./media/characters/theo-pangolin/hand-four.svg"
  30523. }
  30524. },
  30525. handThree: {
  30526. height: math.unit(0.81, "feet"),
  30527. name: "Hand (Three Fingers)",
  30528. image: {
  30529. source: "./media/characters/theo-pangolin/hand-three.svg"
  30530. }
  30531. },
  30532. headFront: {
  30533. height: math.unit(1.37, "feet"),
  30534. name: "Head (Front)",
  30535. image: {
  30536. source: "./media/characters/theo-pangolin/head-front.svg"
  30537. }
  30538. },
  30539. headSide: {
  30540. height: math.unit(1.43, "feet"),
  30541. name: "Head (Side)",
  30542. image: {
  30543. source: "./media/characters/theo-pangolin/head-side.svg"
  30544. }
  30545. },
  30546. tongue: {
  30547. height: math.unit(2.29, "feet"),
  30548. name: "Tongue",
  30549. image: {
  30550. source: "./media/characters/theo-pangolin/tongue.svg"
  30551. }
  30552. },
  30553. },
  30554. [
  30555. {
  30556. name: "Normal",
  30557. height: math.unit(6, "feet")
  30558. },
  30559. {
  30560. name: "Macro",
  30561. height: math.unit(400, "feet"),
  30562. default: true
  30563. },
  30564. ]
  30565. ))
  30566. characterMakers.push(() => makeCharacter(
  30567. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30568. {
  30569. front: {
  30570. height: math.unit(6, "inches"),
  30571. weight: math.unit(0.036, "kg"),
  30572. name: "Front",
  30573. image: {
  30574. source: "./media/characters/renée/front.svg",
  30575. extra: 900 / 886,
  30576. bottom: 8 / 908
  30577. }
  30578. },
  30579. },
  30580. [
  30581. {
  30582. name: "Nano",
  30583. height: math.unit(1, "nm")
  30584. },
  30585. {
  30586. name: "Micro",
  30587. height: math.unit(1, "mm")
  30588. },
  30589. {
  30590. name: "Normal",
  30591. height: math.unit(6, "inches")
  30592. },
  30593. {
  30594. name: "Macro",
  30595. height: math.unit(2000, "feet"),
  30596. default: true
  30597. },
  30598. {
  30599. name: "Megamacro",
  30600. height: math.unit(2, "km")
  30601. },
  30602. {
  30603. name: "Gigamacro",
  30604. height: math.unit(2000, "km")
  30605. },
  30606. {
  30607. name: "Teramacro",
  30608. height: math.unit(250000, "km")
  30609. },
  30610. ]
  30611. ))
  30612. characterMakers.push(() => makeCharacter(
  30613. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30614. {
  30615. front: {
  30616. height: math.unit(4, "meters"),
  30617. weight: math.unit(150, "kg"),
  30618. name: "Front",
  30619. image: {
  30620. source: "./media/characters/caledvwlch/front.svg",
  30621. extra: 1760 / 1551,
  30622. bottom: 28 / 1788
  30623. }
  30624. },
  30625. side: {
  30626. height: math.unit(4, "meters"),
  30627. weight: math.unit(150, "kg"),
  30628. name: "Side",
  30629. image: {
  30630. source: "./media/characters/caledvwlch/side.svg",
  30631. extra: 1605 / 1536,
  30632. bottom: 31 / 1636
  30633. }
  30634. },
  30635. back: {
  30636. height: math.unit(4, "meters"),
  30637. weight: math.unit(150, "kg"),
  30638. name: "Back",
  30639. image: {
  30640. source: "./media/characters/caledvwlch/back.svg",
  30641. extra: 1635 / 1565,
  30642. bottom: 27 / 1662
  30643. }
  30644. },
  30645. },
  30646. [
  30647. {
  30648. name: "\"Incognito\"",
  30649. height: math.unit(4, "meters")
  30650. },
  30651. {
  30652. name: "Small rampage",
  30653. height: math.unit(600, "meters")
  30654. },
  30655. {
  30656. name: "Mega",
  30657. height: math.unit(30, "km")
  30658. },
  30659. {
  30660. name: "Home-size",
  30661. height: math.unit(50, "km"),
  30662. default: true
  30663. },
  30664. {
  30665. name: "Giga",
  30666. height: math.unit(300, "km")
  30667. },
  30668. {
  30669. name: "Lounging",
  30670. height: math.unit(11000, "km")
  30671. },
  30672. {
  30673. name: "Planet snacking",
  30674. height: math.unit(2000000, "km")
  30675. },
  30676. ]
  30677. ))
  30678. characterMakers.push(() => makeCharacter(
  30679. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30680. {
  30681. front: {
  30682. height: math.unit(6, "feet"),
  30683. weight: math.unit(215, "lb"),
  30684. name: "Front",
  30685. image: {
  30686. source: "./media/characters/sapphire-svell/front.svg",
  30687. extra: 495 / 455,
  30688. bottom: 20 / 515
  30689. }
  30690. },
  30691. back: {
  30692. height: math.unit(6, "feet"),
  30693. weight: math.unit(216, "lb"),
  30694. name: "Back",
  30695. image: {
  30696. source: "./media/characters/sapphire-svell/back.svg",
  30697. extra: 497 / 477,
  30698. bottom: 7 / 504
  30699. }
  30700. },
  30701. maw: {
  30702. height: math.unit(1.57, "feet"),
  30703. name: "Maw",
  30704. image: {
  30705. source: "./media/characters/sapphire-svell/maw.svg"
  30706. }
  30707. },
  30708. foot: {
  30709. height: math.unit(1.07, "feet"),
  30710. name: "Foot",
  30711. image: {
  30712. source: "./media/characters/sapphire-svell/foot.svg"
  30713. }
  30714. },
  30715. toering: {
  30716. height: math.unit(1.7, "inch"),
  30717. name: "Toering",
  30718. image: {
  30719. source: "./media/characters/sapphire-svell/toering.svg"
  30720. }
  30721. },
  30722. },
  30723. [
  30724. {
  30725. name: "Normal",
  30726. height: math.unit(300, "feet"),
  30727. default: true
  30728. },
  30729. {
  30730. name: "Augmented",
  30731. height: math.unit(1250, "feet")
  30732. },
  30733. {
  30734. name: "Unleashed",
  30735. height: math.unit(3000, "feet")
  30736. },
  30737. ]
  30738. ))
  30739. characterMakers.push(() => makeCharacter(
  30740. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30741. {
  30742. side: {
  30743. height: math.unit(2 + 3 / 12, "feet"),
  30744. weight: math.unit(110, "lb"),
  30745. name: "Side",
  30746. image: {
  30747. source: "./media/characters/glitch-flux/side.svg",
  30748. extra: 997 / 805,
  30749. bottom: 20 / 1017
  30750. }
  30751. },
  30752. },
  30753. [
  30754. {
  30755. name: "Normal",
  30756. height: math.unit(2 + 3 / 12, "feet"),
  30757. default: true
  30758. },
  30759. ]
  30760. ))
  30761. characterMakers.push(() => makeCharacter(
  30762. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30763. {
  30764. front: {
  30765. height: math.unit(4, "meters"),
  30766. name: "Front",
  30767. image: {
  30768. source: "./media/characters/mid/front.svg",
  30769. extra: 507 / 476,
  30770. bottom: 17 / 524
  30771. }
  30772. },
  30773. back: {
  30774. height: math.unit(4, "meters"),
  30775. name: "Back",
  30776. image: {
  30777. source: "./media/characters/mid/back.svg",
  30778. extra: 519 / 487,
  30779. bottom: 7 / 526
  30780. }
  30781. },
  30782. stuck: {
  30783. height: math.unit(2.2, "meters"),
  30784. name: "Stuck",
  30785. image: {
  30786. source: "./media/characters/mid/stuck.svg",
  30787. extra: 1951 / 1869,
  30788. bottom: 88 / 2039
  30789. }
  30790. }
  30791. },
  30792. [
  30793. {
  30794. name: "Normal",
  30795. height: math.unit(4, "meters"),
  30796. default: true
  30797. },
  30798. {
  30799. name: "Big",
  30800. height: math.unit(10, "meters")
  30801. },
  30802. {
  30803. name: "Macro",
  30804. height: math.unit(800, "meters")
  30805. },
  30806. {
  30807. name: "Megamacro",
  30808. height: math.unit(100, "km")
  30809. },
  30810. {
  30811. name: "Overgrown",
  30812. height: math.unit(1, "parsec")
  30813. },
  30814. ]
  30815. ))
  30816. characterMakers.push(() => makeCharacter(
  30817. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30818. {
  30819. front: {
  30820. height: math.unit(2.5, "meters"),
  30821. weight: math.unit(225, "kg"),
  30822. name: "Front",
  30823. image: {
  30824. source: "./media/characters/iris/front.svg",
  30825. extra: 3348 / 3251,
  30826. bottom: 205 / 3553
  30827. }
  30828. },
  30829. maw: {
  30830. height: math.unit(0.56, "meter"),
  30831. name: "Maw",
  30832. image: {
  30833. source: "./media/characters/iris/maw.svg"
  30834. }
  30835. },
  30836. },
  30837. [
  30838. {
  30839. name: "Mewter cat",
  30840. height: math.unit(1.2, "meters")
  30841. },
  30842. {
  30843. name: "Minimacro",
  30844. height: math.unit(2.5, "meters"),
  30845. default: true
  30846. },
  30847. {
  30848. name: "Macro",
  30849. height: math.unit(180, "meters")
  30850. },
  30851. {
  30852. name: "Megamacro",
  30853. height: math.unit(2746, "meters")
  30854. },
  30855. ]
  30856. ))
  30857. characterMakers.push(() => makeCharacter(
  30858. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30859. {
  30860. front: {
  30861. height: math.unit(6, "feet"),
  30862. weight: math.unit(135, "lb"),
  30863. name: "Front",
  30864. image: {
  30865. source: "./media/characters/axel/front.svg",
  30866. extra: 908 / 908,
  30867. bottom: 58 / 966
  30868. }
  30869. },
  30870. side: {
  30871. height: math.unit(6, "feet"),
  30872. weight: math.unit(135, "lb"),
  30873. name: "Side",
  30874. image: {
  30875. source: "./media/characters/axel/side.svg",
  30876. extra: 958 / 958,
  30877. bottom: 11 / 969
  30878. }
  30879. },
  30880. back: {
  30881. height: math.unit(6, "feet"),
  30882. weight: math.unit(135, "lb"),
  30883. name: "Back",
  30884. image: {
  30885. source: "./media/characters/axel/back.svg",
  30886. extra: 887 / 887,
  30887. bottom: 34 / 921
  30888. }
  30889. },
  30890. head: {
  30891. height: math.unit(1.07, "feet"),
  30892. name: "Head",
  30893. image: {
  30894. source: "./media/characters/axel/head.svg"
  30895. }
  30896. },
  30897. beak: {
  30898. height: math.unit(1.4, "feet"),
  30899. name: "Beak",
  30900. image: {
  30901. source: "./media/characters/axel/beak.svg"
  30902. }
  30903. },
  30904. beakSide: {
  30905. height: math.unit(1.4, "feet"),
  30906. name: "Beak Side",
  30907. image: {
  30908. source: "./media/characters/axel/beak-side.svg"
  30909. }
  30910. },
  30911. sheath: {
  30912. height: math.unit(0.5, "feet"),
  30913. name: "Sheath",
  30914. image: {
  30915. source: "./media/characters/axel/sheath.svg"
  30916. }
  30917. },
  30918. dick: {
  30919. height: math.unit(0.98, "feet"),
  30920. name: "Dick",
  30921. image: {
  30922. source: "./media/characters/axel/dick.svg"
  30923. }
  30924. },
  30925. },
  30926. [
  30927. {
  30928. name: "Macro",
  30929. height: math.unit(68, "meters"),
  30930. default: true
  30931. },
  30932. ]
  30933. ))
  30934. characterMakers.push(() => makeCharacter(
  30935. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30936. {
  30937. front: {
  30938. height: math.unit(3.5, "meters"),
  30939. weight: math.unit(1200, "kg"),
  30940. name: "Front",
  30941. image: {
  30942. source: "./media/characters/joanna/front.svg",
  30943. extra: 1596 / 1488,
  30944. bottom: 29 / 1625
  30945. }
  30946. },
  30947. back: {
  30948. height: math.unit(3.5, "meters"),
  30949. weight: math.unit(1200, "kg"),
  30950. name: "Back",
  30951. image: {
  30952. source: "./media/characters/joanna/back.svg",
  30953. extra: 1594 / 1495,
  30954. bottom: 26 / 1620
  30955. }
  30956. },
  30957. frontShorts: {
  30958. height: math.unit(3.5, "meters"),
  30959. weight: math.unit(1200, "kg"),
  30960. name: "Front (Shorts)",
  30961. image: {
  30962. source: "./media/characters/joanna/front-shorts.svg",
  30963. extra: 1596 / 1488,
  30964. bottom: 29 / 1625
  30965. }
  30966. },
  30967. frontBiker: {
  30968. height: math.unit(3.5, "meters"),
  30969. weight: math.unit(1200, "kg"),
  30970. name: "Front (Biker)",
  30971. image: {
  30972. source: "./media/characters/joanna/front-biker.svg",
  30973. extra: 1596 / 1488,
  30974. bottom: 29 / 1625
  30975. }
  30976. },
  30977. backBiker: {
  30978. height: math.unit(3.5, "meters"),
  30979. weight: math.unit(1200, "kg"),
  30980. name: "Back (Biker)",
  30981. image: {
  30982. source: "./media/characters/joanna/back-biker.svg",
  30983. extra: 1594 / 1495,
  30984. bottom: 88 / 1682
  30985. }
  30986. },
  30987. bikeLeft: {
  30988. height: math.unit(2.4, "meters"),
  30989. weight: math.unit(1600, "kg"),
  30990. name: "Bike (Left)",
  30991. image: {
  30992. source: "./media/characters/joanna/bike-left.svg",
  30993. extra: 720 / 720,
  30994. bottom: 8 / 728
  30995. }
  30996. },
  30997. bikeRight: {
  30998. height: math.unit(2.4, "meters"),
  30999. weight: math.unit(1600, "kg"),
  31000. name: "Bike (Right)",
  31001. image: {
  31002. source: "./media/characters/joanna/bike-right.svg",
  31003. extra: 720 / 720,
  31004. bottom: 8 / 728
  31005. }
  31006. },
  31007. },
  31008. [
  31009. {
  31010. name: "Incognito",
  31011. height: math.unit(3.5, "meters")
  31012. },
  31013. {
  31014. name: "Casual Big",
  31015. height: math.unit(200, "meters")
  31016. },
  31017. {
  31018. name: "Macro",
  31019. height: math.unit(600, "meters")
  31020. },
  31021. {
  31022. name: "Original",
  31023. height: math.unit(20, "km"),
  31024. default: true
  31025. },
  31026. {
  31027. name: "Giga",
  31028. height: math.unit(400, "km")
  31029. },
  31030. {
  31031. name: "Lounging",
  31032. height: math.unit(1500, "km")
  31033. },
  31034. {
  31035. name: "Planetary",
  31036. height: math.unit(200000, "km")
  31037. },
  31038. ]
  31039. ))
  31040. characterMakers.push(() => makeCharacter(
  31041. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31042. {
  31043. front: {
  31044. height: math.unit(6, "feet"),
  31045. weight: math.unit(150, "lb"),
  31046. name: "Front",
  31047. image: {
  31048. source: "./media/characters/hugo-sigil/front.svg",
  31049. extra: 522 / 500,
  31050. bottom: 2 / 524
  31051. }
  31052. },
  31053. back: {
  31054. height: math.unit(6, "feet"),
  31055. weight: math.unit(150, "lb"),
  31056. name: "Back",
  31057. image: {
  31058. source: "./media/characters/hugo-sigil/back.svg",
  31059. extra: 519 / 495,
  31060. bottom: 5 / 524
  31061. }
  31062. },
  31063. maw: {
  31064. height: math.unit(1.4, "feet"),
  31065. weight: math.unit(150, "lb"),
  31066. name: "Maw",
  31067. image: {
  31068. source: "./media/characters/hugo-sigil/maw.svg"
  31069. }
  31070. },
  31071. feet: {
  31072. height: math.unit(1.56, "feet"),
  31073. weight: math.unit(150, "lb"),
  31074. name: "Feet",
  31075. image: {
  31076. source: "./media/characters/hugo-sigil/feet.svg",
  31077. extra: 177 / 177,
  31078. bottom: 12 / 189
  31079. }
  31080. },
  31081. },
  31082. [
  31083. {
  31084. name: "Normal",
  31085. height: math.unit(6, "feet")
  31086. },
  31087. {
  31088. name: "Macro",
  31089. height: math.unit(200, "feet"),
  31090. default: true
  31091. },
  31092. ]
  31093. ))
  31094. characterMakers.push(() => makeCharacter(
  31095. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31096. {
  31097. front: {
  31098. height: math.unit(6, "feet"),
  31099. weight: math.unit(150, "lb"),
  31100. name: "Front",
  31101. image: {
  31102. source: "./media/characters/peri/front.svg",
  31103. extra: 2354 / 2233,
  31104. bottom: 49 / 2403
  31105. }
  31106. },
  31107. },
  31108. [
  31109. {
  31110. name: "Really Small",
  31111. height: math.unit(1, "nm")
  31112. },
  31113. {
  31114. name: "Micro",
  31115. height: math.unit(4, "inches")
  31116. },
  31117. {
  31118. name: "Normal",
  31119. height: math.unit(7, "inches"),
  31120. default: true
  31121. },
  31122. {
  31123. name: "Macro",
  31124. height: math.unit(400, "feet")
  31125. },
  31126. {
  31127. name: "Megamacro",
  31128. height: math.unit(100, "miles")
  31129. },
  31130. ]
  31131. ))
  31132. characterMakers.push(() => makeCharacter(
  31133. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31134. {
  31135. frontSlim: {
  31136. height: math.unit(7, "feet"),
  31137. name: "Front (Slim)",
  31138. image: {
  31139. source: "./media/characters/issilora/front-slim.svg",
  31140. extra: 529 / 449,
  31141. bottom: 53 / 582
  31142. }
  31143. },
  31144. sideSlim: {
  31145. height: math.unit(7, "feet"),
  31146. name: "Side (Slim)",
  31147. image: {
  31148. source: "./media/characters/issilora/side-slim.svg",
  31149. extra: 570 / 480,
  31150. bottom: 30 / 600
  31151. }
  31152. },
  31153. backSlim: {
  31154. height: math.unit(7, "feet"),
  31155. name: "Back (Slim)",
  31156. image: {
  31157. source: "./media/characters/issilora/back-slim.svg",
  31158. extra: 537 / 455,
  31159. bottom: 46 / 583
  31160. }
  31161. },
  31162. frontBuff: {
  31163. height: math.unit(7, "feet"),
  31164. name: "Front (Buff)",
  31165. image: {
  31166. source: "./media/characters/issilora/front-buff.svg",
  31167. extra: 2310 / 2035,
  31168. bottom: 335 / 2645
  31169. }
  31170. },
  31171. head: {
  31172. height: math.unit(1.94, "feet"),
  31173. name: "Head",
  31174. image: {
  31175. source: "./media/characters/issilora/head.svg"
  31176. }
  31177. },
  31178. },
  31179. [
  31180. {
  31181. name: "Minimum",
  31182. height: math.unit(7, "feet")
  31183. },
  31184. {
  31185. name: "Comfortable",
  31186. height: math.unit(17, "feet")
  31187. },
  31188. {
  31189. name: "Fun Size",
  31190. height: math.unit(47, "feet")
  31191. },
  31192. {
  31193. name: "Natural Macro",
  31194. height: math.unit(137, "feet"),
  31195. default: true
  31196. },
  31197. {
  31198. name: "Maximum Kaiju",
  31199. height: math.unit(397, "feet")
  31200. },
  31201. ]
  31202. ))
  31203. characterMakers.push(() => makeCharacter(
  31204. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31205. {
  31206. front: {
  31207. height: math.unit(50 + 9/12, "feet"),
  31208. weight: math.unit(32.8, "tons"),
  31209. name: "Front",
  31210. image: {
  31211. source: "./media/characters/irb'iiritaahn/front.svg",
  31212. extra: 1878/1826,
  31213. bottom: 326/2204
  31214. }
  31215. },
  31216. back: {
  31217. height: math.unit(50 + 9/12, "feet"),
  31218. weight: math.unit(32.8, "tons"),
  31219. name: "Back",
  31220. image: {
  31221. source: "./media/characters/irb'iiritaahn/back.svg",
  31222. extra: 2052/2018,
  31223. bottom: 152/2204
  31224. }
  31225. },
  31226. head: {
  31227. height: math.unit(12.86, "feet"),
  31228. name: "Head",
  31229. image: {
  31230. source: "./media/characters/irb'iiritaahn/head.svg"
  31231. }
  31232. },
  31233. maw: {
  31234. height: math.unit(9.66, "feet"),
  31235. name: "Maw",
  31236. image: {
  31237. source: "./media/characters/irb'iiritaahn/maw.svg"
  31238. }
  31239. },
  31240. frontDick: {
  31241. height: math.unit(8.78461, "feet"),
  31242. name: "Front Dick",
  31243. image: {
  31244. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31245. }
  31246. },
  31247. rearDick: {
  31248. height: math.unit(8.78461, "feet"),
  31249. name: "Rear Dick",
  31250. image: {
  31251. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31252. }
  31253. },
  31254. rearDickUnfolded: {
  31255. height: math.unit(8.78, "feet"),
  31256. name: "Rear Dick (Unfolded)",
  31257. image: {
  31258. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31259. }
  31260. },
  31261. wings: {
  31262. height: math.unit(43, "feet"),
  31263. name: "Wings",
  31264. image: {
  31265. source: "./media/characters/irb'iiritaahn/wings.svg"
  31266. }
  31267. },
  31268. },
  31269. [
  31270. {
  31271. name: "Macro",
  31272. height: math.unit(50 + 9/12, "feet"),
  31273. default: true
  31274. },
  31275. ]
  31276. ))
  31277. characterMakers.push(() => makeCharacter(
  31278. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31279. {
  31280. front: {
  31281. height: math.unit(205, "cm"),
  31282. weight: math.unit(102, "kg"),
  31283. name: "Front",
  31284. image: {
  31285. source: "./media/characters/irbisgreif/front.svg",
  31286. extra: 785/706,
  31287. bottom: 13/798
  31288. }
  31289. },
  31290. back: {
  31291. height: math.unit(205, "cm"),
  31292. weight: math.unit(102, "kg"),
  31293. name: "Back",
  31294. image: {
  31295. source: "./media/characters/irbisgreif/back.svg",
  31296. extra: 713/701,
  31297. bottom: 26/739
  31298. }
  31299. },
  31300. frontDressed: {
  31301. height: math.unit(216, "cm"),
  31302. weight: math.unit(102, "kg"),
  31303. name: "Front-dressed",
  31304. image: {
  31305. source: "./media/characters/irbisgreif/front-dressed.svg",
  31306. extra: 902/776,
  31307. bottom: 14/916
  31308. }
  31309. },
  31310. sideDressed: {
  31311. height: math.unit(195, "cm"),
  31312. weight: math.unit(102, "kg"),
  31313. name: "Side-dressed",
  31314. image: {
  31315. source: "./media/characters/irbisgreif/side-dressed.svg",
  31316. extra: 788/688,
  31317. bottom: 21/809
  31318. }
  31319. },
  31320. backDressed: {
  31321. height: math.unit(216, "cm"),
  31322. weight: math.unit(102, "kg"),
  31323. name: "Back-dressed",
  31324. image: {
  31325. source: "./media/characters/irbisgreif/back-dressed.svg",
  31326. extra: 901/783,
  31327. bottom: 10/911
  31328. }
  31329. },
  31330. dick: {
  31331. height: math.unit(0.49, "feet"),
  31332. name: "Dick",
  31333. image: {
  31334. source: "./media/characters/irbisgreif/dick.svg"
  31335. }
  31336. },
  31337. wingTop: {
  31338. height: math.unit(1.93 , "feet"),
  31339. name: "Wing-top",
  31340. image: {
  31341. source: "./media/characters/irbisgreif/wing-top.svg"
  31342. }
  31343. },
  31344. wingBottom: {
  31345. height: math.unit(1.93 , "feet"),
  31346. name: "Wing-bottom",
  31347. image: {
  31348. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31349. }
  31350. },
  31351. },
  31352. [
  31353. {
  31354. name: "Normal",
  31355. height: math.unit(216, "cm"),
  31356. default: true
  31357. },
  31358. ]
  31359. ))
  31360. characterMakers.push(() => makeCharacter(
  31361. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31362. {
  31363. front: {
  31364. height: math.unit(6, "feet"),
  31365. weight: math.unit(150, "lb"),
  31366. name: "Front",
  31367. image: {
  31368. source: "./media/characters/pride/front.svg",
  31369. extra: 1299/1230,
  31370. bottom: 18/1317
  31371. }
  31372. },
  31373. },
  31374. [
  31375. {
  31376. name: "Normal",
  31377. height: math.unit(7, "feet")
  31378. },
  31379. {
  31380. name: "Mini-macro",
  31381. height: math.unit(11, "feet")
  31382. },
  31383. {
  31384. name: "Macro",
  31385. height: math.unit(15, "meters"),
  31386. default: true
  31387. },
  31388. {
  31389. name: "Macro+",
  31390. height: math.unit(40, "meters")
  31391. },
  31392. ]
  31393. ))
  31394. characterMakers.push(() => makeCharacter(
  31395. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31396. {
  31397. front: {
  31398. height: math.unit(4 + 2 / 12, "feet"),
  31399. weight: math.unit(95, "lb"),
  31400. name: "Front",
  31401. image: {
  31402. source: "./media/characters/vaelophis-nyx/front.svg",
  31403. extra: 2532/2330,
  31404. bottom: 0/2532
  31405. }
  31406. },
  31407. back: {
  31408. height: math.unit(4 + 2 / 12, "feet"),
  31409. weight: math.unit(95, "lb"),
  31410. name: "Back",
  31411. image: {
  31412. source: "./media/characters/vaelophis-nyx/back.svg",
  31413. extra: 2484/2361,
  31414. bottom: 0/2484
  31415. }
  31416. },
  31417. feralSide: {
  31418. height: math.unit(2 + 1/12, "feet"),
  31419. weight: math.unit(20, "lb"),
  31420. name: "Feral (Side)",
  31421. image: {
  31422. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31423. extra: 1721/1581,
  31424. bottom: 70/1791
  31425. }
  31426. },
  31427. feralLazing: {
  31428. height: math.unit(1.08, "feet"),
  31429. weight: math.unit(20, "lb"),
  31430. name: "Feral (Lazing)",
  31431. image: {
  31432. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31433. extra: 822/822,
  31434. bottom: 248/1070
  31435. }
  31436. },
  31437. ear: {
  31438. height: math.unit(0.416, "feet"),
  31439. name: "Ear",
  31440. image: {
  31441. source: "./media/characters/vaelophis-nyx/ear.svg"
  31442. }
  31443. },
  31444. eye: {
  31445. height: math.unit(0.0748, "feet"),
  31446. name: "Eye",
  31447. image: {
  31448. source: "./media/characters/vaelophis-nyx/eye.svg"
  31449. }
  31450. },
  31451. mouth: {
  31452. height: math.unit(0.378, "feet"),
  31453. name: "Mouth",
  31454. image: {
  31455. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31456. }
  31457. },
  31458. spade: {
  31459. height: math.unit(0.55, "feet"),
  31460. name: "Spade",
  31461. image: {
  31462. source: "./media/characters/vaelophis-nyx/spade.svg"
  31463. }
  31464. },
  31465. },
  31466. [
  31467. {
  31468. name: "Normal",
  31469. height: math.unit(4 + 2/12, "feet"),
  31470. default: true
  31471. },
  31472. ]
  31473. ))
  31474. characterMakers.push(() => makeCharacter(
  31475. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31476. {
  31477. front: {
  31478. height: math.unit(7, "feet"),
  31479. weight: math.unit(231, "lb"),
  31480. name: "Front",
  31481. image: {
  31482. source: "./media/characters/flux/front.svg",
  31483. extra: 919/871,
  31484. bottom: 0/919
  31485. }
  31486. },
  31487. back: {
  31488. height: math.unit(7, "feet"),
  31489. weight: math.unit(231, "lb"),
  31490. name: "Back",
  31491. image: {
  31492. source: "./media/characters/flux/back.svg",
  31493. extra: 1040/992,
  31494. bottom: 0/1040
  31495. }
  31496. },
  31497. frontDressed: {
  31498. height: math.unit(7, "feet"),
  31499. weight: math.unit(231, "lb"),
  31500. name: "Front (Dressed)",
  31501. image: {
  31502. source: "./media/characters/flux/front-dressed.svg",
  31503. extra: 919/871,
  31504. bottom: 0/919
  31505. }
  31506. },
  31507. feralSide: {
  31508. height: math.unit(5, "feet"),
  31509. weight: math.unit(150, "lb"),
  31510. name: "Feral (Side)",
  31511. image: {
  31512. source: "./media/characters/flux/feral-side.svg",
  31513. extra: 598/528,
  31514. bottom: 28/626
  31515. }
  31516. },
  31517. head: {
  31518. height: math.unit(1.585, "feet"),
  31519. name: "Head",
  31520. image: {
  31521. source: "./media/characters/flux/head.svg"
  31522. }
  31523. },
  31524. headSide: {
  31525. height: math.unit(1.74, "feet"),
  31526. name: "Head (Side)",
  31527. image: {
  31528. source: "./media/characters/flux/head-side.svg"
  31529. }
  31530. },
  31531. headSideFire: {
  31532. height: math.unit(1.76, "feet"),
  31533. name: "Head (Side, Fire)",
  31534. image: {
  31535. source: "./media/characters/flux/head-side-fire.svg"
  31536. }
  31537. },
  31538. },
  31539. [
  31540. {
  31541. name: "Normal",
  31542. height: math.unit(7, "feet"),
  31543. default: true
  31544. },
  31545. ]
  31546. ))
  31547. characterMakers.push(() => makeCharacter(
  31548. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31549. {
  31550. front: {
  31551. height: math.unit(9, "feet"),
  31552. weight: math.unit(1012, "lb"),
  31553. name: "Front",
  31554. image: {
  31555. source: "./media/characters/ulfra-lupae/front.svg",
  31556. extra: 1083/1011,
  31557. bottom: 67/1150
  31558. }
  31559. },
  31560. },
  31561. [
  31562. {
  31563. name: "Micro",
  31564. height: math.unit(6, "inches")
  31565. },
  31566. {
  31567. name: "Socializing",
  31568. height: math.unit(6 + 5/12, "feet")
  31569. },
  31570. {
  31571. name: "Normal",
  31572. height: math.unit(9, "feet"),
  31573. default: true
  31574. },
  31575. {
  31576. name: "Macro",
  31577. height: math.unit(150, "feet")
  31578. },
  31579. ]
  31580. ))
  31581. characterMakers.push(() => makeCharacter(
  31582. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31583. {
  31584. front: {
  31585. height: math.unit(5 + 2/12, "feet"),
  31586. weight: math.unit(120, "lb"),
  31587. name: "Front",
  31588. image: {
  31589. source: "./media/characters/timber/front.svg",
  31590. extra: 2814/2705,
  31591. bottom: 181/2995
  31592. }
  31593. },
  31594. },
  31595. [
  31596. {
  31597. name: "Normal",
  31598. height: math.unit(5 + 2/12, "feet"),
  31599. default: true
  31600. },
  31601. ]
  31602. ))
  31603. characterMakers.push(() => makeCharacter(
  31604. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31605. {
  31606. front: {
  31607. height: math.unit(5 + 7/12, "feet"),
  31608. weight: math.unit(220, "lb"),
  31609. name: "Front",
  31610. image: {
  31611. source: "./media/characters/nicki/front.svg",
  31612. extra: 453/419,
  31613. bottom: 7/460
  31614. }
  31615. },
  31616. frontAlt: {
  31617. height: math.unit(5 + 7/12, "feet"),
  31618. weight: math.unit(220, "lb"),
  31619. name: "Front-alt",
  31620. image: {
  31621. source: "./media/characters/nicki/front-alt.svg",
  31622. extra: 435/411,
  31623. bottom: 12/447
  31624. }
  31625. },
  31626. back: {
  31627. height: math.unit(5 + 7/12, "feet"),
  31628. weight: math.unit(220, "lb"),
  31629. name: "Back",
  31630. image: {
  31631. source: "./media/characters/nicki/back.svg",
  31632. extra: 440/413,
  31633. bottom: 19/459
  31634. }
  31635. },
  31636. taur: {
  31637. height: math.unit(7 + 6/12, "feet"),
  31638. weight: math.unit(700, "lb"),
  31639. name: "Taur",
  31640. image: {
  31641. source: "./media/characters/nicki/taur.svg",
  31642. extra: 975/773,
  31643. bottom: 0/975
  31644. }
  31645. },
  31646. frontNsfw: {
  31647. height: math.unit(5 + 7/12, "feet"),
  31648. weight: math.unit(220, "lb"),
  31649. name: "Front (NSFW)",
  31650. image: {
  31651. source: "./media/characters/nicki/front-nsfw.svg",
  31652. extra: 453/419,
  31653. bottom: 7/460
  31654. }
  31655. },
  31656. frontNsfwAlt: {
  31657. height: math.unit(5 + 7/12, "feet"),
  31658. weight: math.unit(220, "lb"),
  31659. name: "Front (Alt, NSFW)",
  31660. image: {
  31661. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31662. extra: 435/411,
  31663. bottom: 12/447
  31664. }
  31665. },
  31666. backNsfw: {
  31667. height: math.unit(5 + 7/12, "feet"),
  31668. weight: math.unit(220, "lb"),
  31669. name: "Back (NSFW)",
  31670. image: {
  31671. source: "./media/characters/nicki/back-nsfw.svg",
  31672. extra: 440/413,
  31673. bottom: 19/459
  31674. }
  31675. },
  31676. head: {
  31677. height: math.unit(2.1, "feet"),
  31678. name: "Head",
  31679. image: {
  31680. source: "./media/characters/nicki/head.svg"
  31681. }
  31682. },
  31683. paw: {
  31684. height: math.unit(1.88, "feet"),
  31685. name: "Paw",
  31686. image: {
  31687. source: "./media/characters/nicki/paw.svg"
  31688. }
  31689. },
  31690. },
  31691. [
  31692. {
  31693. name: "Normal",
  31694. height: math.unit(5 + 7/12, "feet"),
  31695. default: true
  31696. },
  31697. ]
  31698. ))
  31699. characterMakers.push(() => makeCharacter(
  31700. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31701. {
  31702. front: {
  31703. height: math.unit(7 + 10/12, "feet"),
  31704. weight: math.unit(3.5, "tons"),
  31705. name: "Front",
  31706. image: {
  31707. source: "./media/characters/lee/front.svg",
  31708. extra: 1773/1615,
  31709. bottom: 86/1859
  31710. }
  31711. },
  31712. hand: {
  31713. height: math.unit(1.78, "feet"),
  31714. name: "Hand",
  31715. image: {
  31716. source: "./media/characters/lee/hand.svg"
  31717. }
  31718. },
  31719. maw: {
  31720. height: math.unit(1.18, "feet"),
  31721. name: "Maw",
  31722. image: {
  31723. source: "./media/characters/lee/maw.svg"
  31724. }
  31725. },
  31726. },
  31727. [
  31728. {
  31729. name: "Normal",
  31730. height: math.unit(7 + 10/12, "feet"),
  31731. default: true
  31732. },
  31733. ]
  31734. ))
  31735. characterMakers.push(() => makeCharacter(
  31736. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31737. {
  31738. front: {
  31739. height: math.unit(9, "feet"),
  31740. name: "Front",
  31741. image: {
  31742. source: "./media/characters/guti/front.svg",
  31743. extra: 4551/4355,
  31744. bottom: 123/4674
  31745. }
  31746. },
  31747. tongue: {
  31748. height: math.unit(1, "feet"),
  31749. name: "Tongue",
  31750. image: {
  31751. source: "./media/characters/guti/tongue.svg"
  31752. }
  31753. },
  31754. paw: {
  31755. height: math.unit(1.18, "feet"),
  31756. name: "Paw",
  31757. image: {
  31758. source: "./media/characters/guti/paw.svg"
  31759. }
  31760. },
  31761. },
  31762. [
  31763. {
  31764. name: "Normal",
  31765. height: math.unit(9, "feet"),
  31766. default: true
  31767. },
  31768. ]
  31769. ))
  31770. characterMakers.push(() => makeCharacter(
  31771. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31772. {
  31773. side: {
  31774. height: math.unit(5, "meters"),
  31775. name: "Side",
  31776. image: {
  31777. source: "./media/characters/vesper/side.svg",
  31778. extra: 1605/1518,
  31779. bottom: 0/1605
  31780. }
  31781. },
  31782. },
  31783. [
  31784. {
  31785. name: "Small",
  31786. height: math.unit(5, "meters")
  31787. },
  31788. {
  31789. name: "Sage",
  31790. height: math.unit(100, "meters"),
  31791. default: true
  31792. },
  31793. {
  31794. name: "Fun Size",
  31795. height: math.unit(600, "meters")
  31796. },
  31797. {
  31798. name: "Goddess",
  31799. height: math.unit(20000, "km")
  31800. },
  31801. {
  31802. name: "Maximum",
  31803. height: math.unit(5, "galaxies")
  31804. },
  31805. ]
  31806. ))
  31807. characterMakers.push(() => makeCharacter(
  31808. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31809. {
  31810. front: {
  31811. height: math.unit(6 + 3/12, "feet"),
  31812. weight: math.unit(190, "lb"),
  31813. name: "Front",
  31814. image: {
  31815. source: "./media/characters/gawain/front.svg",
  31816. extra: 2222/2139,
  31817. bottom: 90/2312
  31818. }
  31819. },
  31820. back: {
  31821. height: math.unit(6 + 3/12, "feet"),
  31822. weight: math.unit(190, "lb"),
  31823. name: "Back",
  31824. image: {
  31825. source: "./media/characters/gawain/back.svg",
  31826. extra: 2199/2111,
  31827. bottom: 73/2272
  31828. }
  31829. },
  31830. },
  31831. [
  31832. {
  31833. name: "Normal",
  31834. height: math.unit(6 + 3/12, "feet"),
  31835. default: true
  31836. },
  31837. ]
  31838. ))
  31839. characterMakers.push(() => makeCharacter(
  31840. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31841. {
  31842. side: {
  31843. height: math.unit(3.5, "meters"),
  31844. weight: math.unit(16000, "lb"),
  31845. name: "Side",
  31846. image: {
  31847. source: "./media/characters/dascalti/side.svg",
  31848. extra: 392/273,
  31849. bottom: 47/439
  31850. }
  31851. },
  31852. breath: {
  31853. height: math.unit(7.4, "feet"),
  31854. name: "Breath",
  31855. image: {
  31856. source: "./media/characters/dascalti/breath.svg"
  31857. }
  31858. },
  31859. fed: {
  31860. height: math.unit(3.6, "meters"),
  31861. weight: math.unit(16000, "lb"),
  31862. name: "Fed",
  31863. image: {
  31864. source: "./media/characters/dascalti/fed.svg",
  31865. extra: 1419/820,
  31866. bottom: 95/1514
  31867. }
  31868. },
  31869. },
  31870. [
  31871. {
  31872. name: "Normal",
  31873. height: math.unit(3.5, "meters"),
  31874. default: true
  31875. },
  31876. ]
  31877. ))
  31878. characterMakers.push(() => makeCharacter(
  31879. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31880. {
  31881. front: {
  31882. height: math.unit(3 + 5/12, "feet"),
  31883. name: "Front",
  31884. image: {
  31885. source: "./media/characters/mauve/front.svg",
  31886. extra: 1126/1033,
  31887. bottom: 65/1191
  31888. }
  31889. },
  31890. side: {
  31891. height: math.unit(3 + 5/12, "feet"),
  31892. name: "Side",
  31893. image: {
  31894. source: "./media/characters/mauve/side.svg",
  31895. extra: 1089/1001,
  31896. bottom: 29/1118
  31897. }
  31898. },
  31899. back: {
  31900. height: math.unit(3 + 5/12, "feet"),
  31901. name: "Back",
  31902. image: {
  31903. source: "./media/characters/mauve/back.svg",
  31904. extra: 1173/1053,
  31905. bottom: 109/1282
  31906. }
  31907. },
  31908. },
  31909. [
  31910. {
  31911. name: "Normal",
  31912. height: math.unit(3 + 5/12, "feet"),
  31913. default: true
  31914. },
  31915. ]
  31916. ))
  31917. characterMakers.push(() => makeCharacter(
  31918. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31919. {
  31920. front: {
  31921. height: math.unit(6 + 3/12, "feet"),
  31922. weight: math.unit(430, "lb"),
  31923. name: "Front",
  31924. image: {
  31925. source: "./media/characters/carlos/front.svg",
  31926. extra: 1964/1913,
  31927. bottom: 70/2034
  31928. }
  31929. },
  31930. },
  31931. [
  31932. {
  31933. name: "Normal",
  31934. height: math.unit(6 + 3/12, "feet"),
  31935. default: true
  31936. },
  31937. ]
  31938. ))
  31939. characterMakers.push(() => makeCharacter(
  31940. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31941. {
  31942. back: {
  31943. height: math.unit(5 + 10/12, "feet"),
  31944. weight: math.unit(200, "lb"),
  31945. name: "Back",
  31946. image: {
  31947. source: "./media/characters/jax/back.svg",
  31948. extra: 764/739,
  31949. bottom: 25/789
  31950. }
  31951. },
  31952. },
  31953. [
  31954. {
  31955. name: "Normal",
  31956. height: math.unit(5 + 10/12, "feet"),
  31957. default: true
  31958. },
  31959. ]
  31960. ))
  31961. characterMakers.push(() => makeCharacter(
  31962. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31963. {
  31964. front: {
  31965. height: math.unit(8, "feet"),
  31966. weight: math.unit(250, "lb"),
  31967. name: "Front",
  31968. image: {
  31969. source: "./media/characters/eikthynir/front.svg",
  31970. extra: 1332/1166,
  31971. bottom: 82/1414
  31972. }
  31973. },
  31974. back: {
  31975. height: math.unit(8, "feet"),
  31976. weight: math.unit(250, "lb"),
  31977. name: "Back",
  31978. image: {
  31979. source: "./media/characters/eikthynir/back.svg",
  31980. extra: 1342/1190,
  31981. bottom: 19/1361
  31982. }
  31983. },
  31984. dick: {
  31985. height: math.unit(2.35, "feet"),
  31986. name: "Dick",
  31987. image: {
  31988. source: "./media/characters/eikthynir/dick.svg"
  31989. }
  31990. },
  31991. },
  31992. [
  31993. {
  31994. name: "Normal",
  31995. height: math.unit(8, "feet"),
  31996. default: true
  31997. },
  31998. ]
  31999. ))
  32000. characterMakers.push(() => makeCharacter(
  32001. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32002. {
  32003. front: {
  32004. height: math.unit(99, "meters"),
  32005. weight: math.unit(13000, "tons"),
  32006. name: "Front",
  32007. image: {
  32008. source: "./media/characters/zlmos/front.svg",
  32009. extra: 2202/1992,
  32010. bottom: 315/2517
  32011. }
  32012. },
  32013. },
  32014. [
  32015. {
  32016. name: "Macro",
  32017. height: math.unit(99, "meters"),
  32018. default: true
  32019. },
  32020. ]
  32021. ))
  32022. characterMakers.push(() => makeCharacter(
  32023. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32024. {
  32025. front: {
  32026. height: math.unit(6 + 5/12, "feet"),
  32027. name: "Front",
  32028. image: {
  32029. source: "./media/characters/purri/front.svg",
  32030. extra: 1698/1610,
  32031. bottom: 32/1730
  32032. }
  32033. },
  32034. frontAlt: {
  32035. height: math.unit(6 + 5/12, "feet"),
  32036. name: "Front (Alt)",
  32037. image: {
  32038. source: "./media/characters/purri/front-alt.svg",
  32039. extra: 450/420,
  32040. bottom: 26/476
  32041. }
  32042. },
  32043. boots: {
  32044. height: math.unit(5.5, "feet"),
  32045. name: "Boots",
  32046. image: {
  32047. source: "./media/characters/purri/boots.svg",
  32048. extra: 905/853,
  32049. bottom: 18/923
  32050. }
  32051. },
  32052. lying: {
  32053. height: math.unit(2, "feet"),
  32054. name: "Lying",
  32055. image: {
  32056. source: "./media/characters/purri/lying.svg",
  32057. extra: 940/843,
  32058. bottom: 146/1086
  32059. }
  32060. },
  32061. devious: {
  32062. height: math.unit(1.77, "feet"),
  32063. name: "Devious",
  32064. image: {
  32065. source: "./media/characters/purri/devious.svg",
  32066. extra: 1440/1155,
  32067. bottom: 147/1587
  32068. }
  32069. },
  32070. bean: {
  32071. height: math.unit(1.94, "feet"),
  32072. name: "Bean",
  32073. image: {
  32074. source: "./media/characters/purri/bean.svg"
  32075. }
  32076. },
  32077. },
  32078. [
  32079. {
  32080. name: "Micro",
  32081. height: math.unit(1, "mm")
  32082. },
  32083. {
  32084. name: "Normal",
  32085. height: math.unit(6 + 5/12, "feet"),
  32086. default: true
  32087. },
  32088. {
  32089. name: "Macro :3c",
  32090. height: math.unit(2, "miles")
  32091. },
  32092. ]
  32093. ))
  32094. characterMakers.push(() => makeCharacter(
  32095. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32096. {
  32097. front: {
  32098. height: math.unit(6 + 2/12, "feet"),
  32099. weight: math.unit(250, "lb"),
  32100. name: "Front",
  32101. image: {
  32102. source: "./media/characters/moonlight/front.svg",
  32103. extra: 1044/908,
  32104. bottom: 56/1100
  32105. }
  32106. },
  32107. feral: {
  32108. height: math.unit(3 + 1/12, "feet"),
  32109. weight: math.unit(50, "kg"),
  32110. name: "Feral",
  32111. image: {
  32112. source: "./media/characters/moonlight/feral.svg",
  32113. extra: 3705/2791,
  32114. bottom: 145/3850
  32115. }
  32116. },
  32117. paw: {
  32118. height: math.unit(1, "feet"),
  32119. name: "Paw",
  32120. image: {
  32121. source: "./media/characters/moonlight/paw.svg"
  32122. }
  32123. },
  32124. paws: {
  32125. height: math.unit(0.98, "feet"),
  32126. name: "Paws",
  32127. image: {
  32128. source: "./media/characters/moonlight/paws.svg",
  32129. extra: 939/939,
  32130. bottom: 50/989
  32131. }
  32132. },
  32133. mouth: {
  32134. height: math.unit(0.48, "feet"),
  32135. name: "Mouth",
  32136. image: {
  32137. source: "./media/characters/moonlight/mouth.svg"
  32138. }
  32139. },
  32140. dick: {
  32141. height: math.unit(1.46, "feet"),
  32142. name: "Dick",
  32143. image: {
  32144. source: "./media/characters/moonlight/dick.svg"
  32145. }
  32146. },
  32147. },
  32148. [
  32149. {
  32150. name: "Normal",
  32151. height: math.unit(6 + 2/12, "feet"),
  32152. default: true
  32153. },
  32154. {
  32155. name: "Macro",
  32156. height: math.unit(300, "feet")
  32157. },
  32158. {
  32159. name: "Macro+",
  32160. height: math.unit(1, "mile")
  32161. },
  32162. {
  32163. name: "Mt. Moon",
  32164. height: math.unit(5, "miles")
  32165. },
  32166. {
  32167. name: "Megamacro",
  32168. height: math.unit(15, "miles")
  32169. },
  32170. ]
  32171. ))
  32172. characterMakers.push(() => makeCharacter(
  32173. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32174. {
  32175. back: {
  32176. height: math.unit(6, "feet"),
  32177. weight: math.unit(150, "lb"),
  32178. name: "Back",
  32179. image: {
  32180. source: "./media/characters/sylen/back.svg",
  32181. extra: 1335/1273,
  32182. bottom: 107/1442
  32183. }
  32184. },
  32185. },
  32186. [
  32187. {
  32188. name: "Normal",
  32189. height: math.unit(5 + 5/12, "feet")
  32190. },
  32191. {
  32192. name: "Megamacro",
  32193. height: math.unit(3, "miles"),
  32194. default: true
  32195. },
  32196. ]
  32197. ))
  32198. characterMakers.push(() => makeCharacter(
  32199. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32200. {
  32201. front: {
  32202. height: math.unit(6, "feet"),
  32203. weight: math.unit(190, "lb"),
  32204. name: "Front",
  32205. image: {
  32206. source: "./media/characters/huttser/front.svg",
  32207. extra: 1152/1058,
  32208. bottom: 23/1175
  32209. }
  32210. },
  32211. side: {
  32212. height: math.unit(6, "feet"),
  32213. weight: math.unit(190, "lb"),
  32214. name: "Side",
  32215. image: {
  32216. source: "./media/characters/huttser/side.svg",
  32217. extra: 1174/1065,
  32218. bottom: 18/1192
  32219. }
  32220. },
  32221. back: {
  32222. height: math.unit(6, "feet"),
  32223. weight: math.unit(190, "lb"),
  32224. name: "Back",
  32225. image: {
  32226. source: "./media/characters/huttser/back.svg",
  32227. extra: 1158/1056,
  32228. bottom: 12/1170
  32229. }
  32230. },
  32231. },
  32232. [
  32233. ]
  32234. ))
  32235. characterMakers.push(() => makeCharacter(
  32236. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32237. {
  32238. side: {
  32239. height: math.unit(12 + 9/12, "feet"),
  32240. weight: math.unit(15000, "lb"),
  32241. name: "Side",
  32242. image: {
  32243. source: "./media/characters/faan/side.svg",
  32244. extra: 2747/2697,
  32245. bottom: 0/2747
  32246. }
  32247. },
  32248. front: {
  32249. height: math.unit(12 + 9/12, "feet"),
  32250. weight: math.unit(15000, "lb"),
  32251. name: "Front",
  32252. image: {
  32253. source: "./media/characters/faan/front.svg",
  32254. extra: 607/571,
  32255. bottom: 24/631
  32256. }
  32257. },
  32258. head: {
  32259. height: math.unit(2.85, "feet"),
  32260. name: "Head",
  32261. image: {
  32262. source: "./media/characters/faan/head.svg"
  32263. }
  32264. },
  32265. headAlt: {
  32266. height: math.unit(3.13, "feet"),
  32267. name: "Head-alt",
  32268. image: {
  32269. source: "./media/characters/faan/head-alt.svg"
  32270. }
  32271. },
  32272. },
  32273. [
  32274. {
  32275. name: "Normal",
  32276. height: math.unit(12 + 9/12, "feet"),
  32277. default: true
  32278. },
  32279. ]
  32280. ))
  32281. characterMakers.push(() => makeCharacter(
  32282. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32283. {
  32284. front: {
  32285. height: math.unit(6, "feet"),
  32286. weight: math.unit(300, "lb"),
  32287. name: "Front",
  32288. image: {
  32289. source: "./media/characters/tanio/front.svg",
  32290. extra: 711/673,
  32291. bottom: 25/736
  32292. }
  32293. },
  32294. },
  32295. [
  32296. {
  32297. name: "Normal",
  32298. height: math.unit(6, "feet"),
  32299. default: true
  32300. },
  32301. ]
  32302. ))
  32303. characterMakers.push(() => makeCharacter(
  32304. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32305. {
  32306. front: {
  32307. height: math.unit(3, "inches"),
  32308. name: "Front",
  32309. image: {
  32310. source: "./media/characters/noboru/front.svg",
  32311. extra: 1039/932,
  32312. bottom: 18/1057
  32313. }
  32314. },
  32315. },
  32316. [
  32317. {
  32318. name: "Micro",
  32319. height: math.unit(3, "inches"),
  32320. default: true
  32321. },
  32322. ]
  32323. ))
  32324. characterMakers.push(() => makeCharacter(
  32325. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32326. {
  32327. front: {
  32328. height: math.unit(1.85, "meters"),
  32329. weight: math.unit(80, "kg"),
  32330. name: "Front",
  32331. image: {
  32332. source: "./media/characters/daniel-barrett/front.svg",
  32333. extra: 355/337,
  32334. bottom: 9/364
  32335. }
  32336. },
  32337. },
  32338. [
  32339. {
  32340. name: "Pico",
  32341. height: math.unit(0.0433, "mm")
  32342. },
  32343. {
  32344. name: "Nano",
  32345. height: math.unit(1.5, "mm")
  32346. },
  32347. {
  32348. name: "Micro",
  32349. height: math.unit(5.3, "cm"),
  32350. default: true
  32351. },
  32352. {
  32353. name: "Normal",
  32354. height: math.unit(1.85, "meters")
  32355. },
  32356. {
  32357. name: "Macro",
  32358. height: math.unit(64.7, "meters")
  32359. },
  32360. {
  32361. name: "Megamacro",
  32362. height: math.unit(2.26, "km")
  32363. },
  32364. {
  32365. name: "Gigamacro",
  32366. height: math.unit(79, "km")
  32367. },
  32368. {
  32369. name: "Teramacro",
  32370. height: math.unit(2765, "km")
  32371. },
  32372. {
  32373. name: "Petamacro",
  32374. height: math.unit(96678, "km")
  32375. },
  32376. ]
  32377. ))
  32378. characterMakers.push(() => makeCharacter(
  32379. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32380. {
  32381. front: {
  32382. height: math.unit(30, "meters"),
  32383. weight: math.unit(400, "tons"),
  32384. name: "Front",
  32385. image: {
  32386. source: "./media/characters/zeel/front.svg",
  32387. extra: 2599/2599,
  32388. bottom: 226/2825
  32389. }
  32390. },
  32391. },
  32392. [
  32393. {
  32394. name: "Macro",
  32395. height: math.unit(30, "meters"),
  32396. default: true
  32397. },
  32398. ]
  32399. ))
  32400. characterMakers.push(() => makeCharacter(
  32401. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32402. {
  32403. front: {
  32404. height: math.unit(6 + 7/12, "feet"),
  32405. weight: math.unit(210, "lb"),
  32406. name: "Front",
  32407. image: {
  32408. source: "./media/characters/tarn/front.svg",
  32409. extra: 3517/3220,
  32410. bottom: 91/3608
  32411. }
  32412. },
  32413. back: {
  32414. height: math.unit(6 + 7/12, "feet"),
  32415. weight: math.unit(210, "lb"),
  32416. name: "Back",
  32417. image: {
  32418. source: "./media/characters/tarn/back.svg",
  32419. extra: 3566/3241,
  32420. bottom: 34/3600
  32421. }
  32422. },
  32423. dick: {
  32424. height: math.unit(1.65, "feet"),
  32425. name: "Dick",
  32426. image: {
  32427. source: "./media/characters/tarn/dick.svg"
  32428. }
  32429. },
  32430. paw: {
  32431. height: math.unit(1.80, "feet"),
  32432. name: "Paw",
  32433. image: {
  32434. source: "./media/characters/tarn/paw.svg"
  32435. }
  32436. },
  32437. tongue: {
  32438. height: math.unit(0.97, "feet"),
  32439. name: "Tongue",
  32440. image: {
  32441. source: "./media/characters/tarn/tongue.svg"
  32442. }
  32443. },
  32444. },
  32445. [
  32446. {
  32447. name: "Micro",
  32448. height: math.unit(4, "inches")
  32449. },
  32450. {
  32451. name: "Normal",
  32452. height: math.unit(6 + 7/12, "feet"),
  32453. default: true
  32454. },
  32455. {
  32456. name: "Macro",
  32457. height: math.unit(300, "feet")
  32458. },
  32459. ]
  32460. ))
  32461. characterMakers.push(() => makeCharacter(
  32462. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32463. {
  32464. front: {
  32465. height: math.unit(5 + 7/12, "feet"),
  32466. weight: math.unit(80, "kg"),
  32467. name: "Front",
  32468. image: {
  32469. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32470. extra: 3023/2865,
  32471. bottom: 33/3056
  32472. }
  32473. },
  32474. back: {
  32475. height: math.unit(5 + 7/12, "feet"),
  32476. weight: math.unit(80, "kg"),
  32477. name: "Back",
  32478. image: {
  32479. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32480. extra: 3020/2886,
  32481. bottom: 30/3050
  32482. }
  32483. },
  32484. dick: {
  32485. height: math.unit(0.98, "feet"),
  32486. name: "Dick",
  32487. image: {
  32488. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32489. }
  32490. },
  32491. anatomy: {
  32492. height: math.unit(2.86, "feet"),
  32493. name: "Anatomy",
  32494. image: {
  32495. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32496. }
  32497. },
  32498. },
  32499. [
  32500. {
  32501. name: "Really Small",
  32502. height: math.unit(2, "inches")
  32503. },
  32504. {
  32505. name: "Micro",
  32506. height: math.unit(5.583, "inches")
  32507. },
  32508. {
  32509. name: "Normal",
  32510. height: math.unit(5 + 7/12, "feet"),
  32511. default: true
  32512. },
  32513. {
  32514. name: "Macro",
  32515. height: math.unit(67, "feet")
  32516. },
  32517. {
  32518. name: "Megamacro",
  32519. height: math.unit(134, "feet")
  32520. },
  32521. ]
  32522. ))
  32523. characterMakers.push(() => makeCharacter(
  32524. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32525. {
  32526. front: {
  32527. height: math.unit(9, "feet"),
  32528. weight: math.unit(120, "lb"),
  32529. name: "Front",
  32530. image: {
  32531. source: "./media/characters/sally/front.svg",
  32532. extra: 1506/1349,
  32533. bottom: 66/1572
  32534. }
  32535. },
  32536. },
  32537. [
  32538. {
  32539. name: "Normal",
  32540. height: math.unit(9, "feet"),
  32541. default: true
  32542. },
  32543. ]
  32544. ))
  32545. characterMakers.push(() => makeCharacter(
  32546. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32547. {
  32548. front: {
  32549. height: math.unit(8, "feet"),
  32550. weight: math.unit(900, "lb"),
  32551. name: "Front",
  32552. image: {
  32553. source: "./media/characters/owen/front.svg",
  32554. extra: 1761/1657,
  32555. bottom: 74/1835
  32556. }
  32557. },
  32558. side: {
  32559. height: math.unit(8, "feet"),
  32560. weight: math.unit(900, "lb"),
  32561. name: "Side",
  32562. image: {
  32563. source: "./media/characters/owen/side.svg",
  32564. extra: 1797/1734,
  32565. bottom: 30/1827
  32566. }
  32567. },
  32568. back: {
  32569. height: math.unit(8, "feet"),
  32570. weight: math.unit(900, "lb"),
  32571. name: "Back",
  32572. image: {
  32573. source: "./media/characters/owen/back.svg",
  32574. extra: 1796/1706,
  32575. bottom: 59/1855
  32576. }
  32577. },
  32578. maw: {
  32579. height: math.unit(1.76, "feet"),
  32580. name: "Maw",
  32581. image: {
  32582. source: "./media/characters/owen/maw.svg"
  32583. }
  32584. },
  32585. },
  32586. [
  32587. {
  32588. name: "Normal",
  32589. height: math.unit(8, "feet"),
  32590. default: true
  32591. },
  32592. ]
  32593. ))
  32594. characterMakers.push(() => makeCharacter(
  32595. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32596. {
  32597. front: {
  32598. height: math.unit(4, "feet"),
  32599. weight: math.unit(400, "lb"),
  32600. name: "Front",
  32601. image: {
  32602. source: "./media/characters/ryth/front.svg",
  32603. extra: 1920/1748,
  32604. bottom: 42/1962
  32605. }
  32606. },
  32607. back: {
  32608. height: math.unit(4, "feet"),
  32609. weight: math.unit(400, "lb"),
  32610. name: "Back",
  32611. image: {
  32612. source: "./media/characters/ryth/back.svg",
  32613. extra: 1897/1690,
  32614. bottom: 89/1986
  32615. }
  32616. },
  32617. mouth: {
  32618. height: math.unit(1.39, "feet"),
  32619. name: "Mouth",
  32620. image: {
  32621. source: "./media/characters/ryth/mouth.svg"
  32622. }
  32623. },
  32624. tailmaw: {
  32625. height: math.unit(1.23, "feet"),
  32626. name: "Tailmaw",
  32627. image: {
  32628. source: "./media/characters/ryth/tailmaw.svg"
  32629. }
  32630. },
  32631. goia: {
  32632. height: math.unit(4, "meters"),
  32633. weight: math.unit(10800, "lb"),
  32634. name: "Goia",
  32635. image: {
  32636. source: "./media/characters/ryth/goia.svg",
  32637. extra: 745/640,
  32638. bottom: 107/852
  32639. }
  32640. },
  32641. goiaFront: {
  32642. height: math.unit(4, "meters"),
  32643. weight: math.unit(10800, "lb"),
  32644. name: "Goia (Front)",
  32645. image: {
  32646. source: "./media/characters/ryth/goia-front.svg",
  32647. extra: 750/586,
  32648. bottom: 114/864
  32649. }
  32650. },
  32651. goiaMaw: {
  32652. height: math.unit(5.55, "feet"),
  32653. name: "Goia Maw",
  32654. image: {
  32655. source: "./media/characters/ryth/goia-maw.svg"
  32656. }
  32657. },
  32658. goiaForepaw: {
  32659. height: math.unit(3.5, "feet"),
  32660. name: "Goia Forepaw",
  32661. image: {
  32662. source: "./media/characters/ryth/goia-forepaw.svg"
  32663. }
  32664. },
  32665. goiaHindpaw: {
  32666. height: math.unit(5.55, "feet"),
  32667. name: "Goia Hindpaw",
  32668. image: {
  32669. source: "./media/characters/ryth/goia-hindpaw.svg"
  32670. }
  32671. },
  32672. },
  32673. [
  32674. {
  32675. name: "Normal",
  32676. height: math.unit(4, "feet"),
  32677. default: true
  32678. },
  32679. ]
  32680. ))
  32681. characterMakers.push(() => makeCharacter(
  32682. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32683. {
  32684. front: {
  32685. height: math.unit(7, "feet"),
  32686. weight: math.unit(180, "lb"),
  32687. name: "Front",
  32688. image: {
  32689. source: "./media/characters/necrolance/front.svg",
  32690. extra: 1062/947,
  32691. bottom: 41/1103
  32692. }
  32693. },
  32694. back: {
  32695. height: math.unit(7, "feet"),
  32696. weight: math.unit(180, "lb"),
  32697. name: "Back",
  32698. image: {
  32699. source: "./media/characters/necrolance/back.svg",
  32700. extra: 1045/984,
  32701. bottom: 14/1059
  32702. }
  32703. },
  32704. wing: {
  32705. height: math.unit(2.67, "feet"),
  32706. name: "Wing",
  32707. image: {
  32708. source: "./media/characters/necrolance/wing.svg"
  32709. }
  32710. },
  32711. },
  32712. [
  32713. {
  32714. name: "Normal",
  32715. height: math.unit(7, "feet"),
  32716. default: true
  32717. },
  32718. ]
  32719. ))
  32720. characterMakers.push(() => makeCharacter(
  32721. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32722. {
  32723. front: {
  32724. height: math.unit(76, "meters"),
  32725. weight: math.unit(30000, "tons"),
  32726. name: "Front",
  32727. image: {
  32728. source: "./media/characters/tyler/front.svg",
  32729. extra: 1640/1640,
  32730. bottom: 114/1754
  32731. }
  32732. },
  32733. },
  32734. [
  32735. {
  32736. name: "Macro",
  32737. height: math.unit(76, "meters"),
  32738. default: true
  32739. },
  32740. ]
  32741. ))
  32742. characterMakers.push(() => makeCharacter(
  32743. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32744. {
  32745. front: {
  32746. height: math.unit(4 + 11/12, "feet"),
  32747. weight: math.unit(132, "lb"),
  32748. name: "Front",
  32749. image: {
  32750. source: "./media/characters/icey/front.svg",
  32751. extra: 2750/2550,
  32752. bottom: 33/2783
  32753. }
  32754. },
  32755. back: {
  32756. height: math.unit(4 + 11/12, "feet"),
  32757. weight: math.unit(132, "lb"),
  32758. name: "Back",
  32759. image: {
  32760. source: "./media/characters/icey/back.svg",
  32761. extra: 2624/2481,
  32762. bottom: 35/2659
  32763. }
  32764. },
  32765. },
  32766. [
  32767. {
  32768. name: "Normal",
  32769. height: math.unit(4 + 11/12, "feet"),
  32770. default: true
  32771. },
  32772. ]
  32773. ))
  32774. characterMakers.push(() => makeCharacter(
  32775. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32776. {
  32777. front: {
  32778. height: math.unit(100, "feet"),
  32779. weight: math.unit(0, "lb"),
  32780. name: "Front",
  32781. image: {
  32782. source: "./media/characters/smile/front.svg",
  32783. extra: 2983/2912,
  32784. bottom: 162/3145
  32785. }
  32786. },
  32787. back: {
  32788. height: math.unit(100, "feet"),
  32789. weight: math.unit(0, "lb"),
  32790. name: "Back",
  32791. image: {
  32792. source: "./media/characters/smile/back.svg",
  32793. extra: 3143/3031,
  32794. bottom: 91/3234
  32795. }
  32796. },
  32797. head: {
  32798. height: math.unit(26.3, "feet"),
  32799. weight: math.unit(0, "lb"),
  32800. name: "Head",
  32801. image: {
  32802. source: "./media/characters/smile/head.svg"
  32803. }
  32804. },
  32805. collar: {
  32806. height: math.unit(5.3, "feet"),
  32807. weight: math.unit(0, "lb"),
  32808. name: "Collar",
  32809. image: {
  32810. source: "./media/characters/smile/collar.svg"
  32811. }
  32812. },
  32813. },
  32814. [
  32815. {
  32816. name: "Macro",
  32817. height: math.unit(100, "feet"),
  32818. default: true
  32819. },
  32820. ]
  32821. ))
  32822. characterMakers.push(() => makeCharacter(
  32823. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32824. {
  32825. dragon: {
  32826. height: math.unit(26, "feet"),
  32827. weight: math.unit(36, "tons"),
  32828. name: "Dragon",
  32829. image: {
  32830. source: "./media/characters/arimphae/dragon.svg",
  32831. extra: 1574/983,
  32832. bottom: 357/1931
  32833. }
  32834. },
  32835. drake: {
  32836. height: math.unit(9, "feet"),
  32837. weight: math.unit(1.5, "tons"),
  32838. name: "Drake",
  32839. image: {
  32840. source: "./media/characters/arimphae/drake.svg",
  32841. extra: 1120/925,
  32842. bottom: 435/1555
  32843. }
  32844. },
  32845. },
  32846. [
  32847. {
  32848. name: "Small",
  32849. height: math.unit(26*5/9, "feet")
  32850. },
  32851. {
  32852. name: "Normal",
  32853. height: math.unit(26, "feet"),
  32854. default: true
  32855. },
  32856. ]
  32857. ))
  32858. characterMakers.push(() => makeCharacter(
  32859. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32860. {
  32861. front: {
  32862. height: math.unit(8 + 9/12, "feet"),
  32863. name: "Front",
  32864. image: {
  32865. source: "./media/characters/xander/front.svg",
  32866. extra: 1237/974,
  32867. bottom: 94/1331
  32868. }
  32869. },
  32870. },
  32871. [
  32872. {
  32873. name: "Normal",
  32874. height: math.unit(8 + 9/12, "feet"),
  32875. default: true
  32876. },
  32877. {
  32878. name: "Gaze Grabber",
  32879. height: math.unit(13 + 8/12, "feet")
  32880. },
  32881. {
  32882. name: "Jaw Dropper",
  32883. height: math.unit(27, "feet")
  32884. },
  32885. {
  32886. name: "Show Stopper",
  32887. height: math.unit(136, "feet")
  32888. },
  32889. {
  32890. name: "Superstar",
  32891. height: math.unit(1.9e6, "miles")
  32892. },
  32893. ]
  32894. ))
  32895. characterMakers.push(() => makeCharacter(
  32896. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32897. {
  32898. side: {
  32899. height: math.unit(2100, "feet"),
  32900. name: "Side",
  32901. image: {
  32902. source: "./media/characters/osiris/side.svg",
  32903. extra: 1105/939,
  32904. bottom: 167/1272
  32905. }
  32906. },
  32907. },
  32908. [
  32909. {
  32910. name: "Macro",
  32911. height: math.unit(2100, "feet"),
  32912. default: true
  32913. },
  32914. ]
  32915. ))
  32916. characterMakers.push(() => makeCharacter(
  32917. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32918. {
  32919. front: {
  32920. height: math.unit(6 + 8/12, "feet"),
  32921. weight: math.unit(225, "lb"),
  32922. name: "Front",
  32923. image: {
  32924. source: "./media/characters/rhys-londe/front.svg",
  32925. extra: 2258/2141,
  32926. bottom: 188/2446
  32927. }
  32928. },
  32929. back: {
  32930. height: math.unit(6 + 8/12, "feet"),
  32931. weight: math.unit(225, "lb"),
  32932. name: "Back",
  32933. image: {
  32934. source: "./media/characters/rhys-londe/back.svg",
  32935. extra: 2237/2137,
  32936. bottom: 63/2300
  32937. }
  32938. },
  32939. frontNsfw: {
  32940. height: math.unit(6 + 8/12, "feet"),
  32941. weight: math.unit(225, "lb"),
  32942. name: "Front (NSFW)",
  32943. image: {
  32944. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32945. extra: 2258/2141,
  32946. bottom: 188/2446
  32947. }
  32948. },
  32949. backNsfw: {
  32950. height: math.unit(6 + 8/12, "feet"),
  32951. weight: math.unit(225, "lb"),
  32952. name: "Back (NSFW)",
  32953. image: {
  32954. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32955. extra: 2237/2137,
  32956. bottom: 63/2300
  32957. }
  32958. },
  32959. dick: {
  32960. height: math.unit(30, "inches"),
  32961. name: "Dick",
  32962. image: {
  32963. source: "./media/characters/rhys-londe/dick.svg"
  32964. }
  32965. },
  32966. maw: {
  32967. height: math.unit(1.6, "feet"),
  32968. name: "Maw",
  32969. image: {
  32970. source: "./media/characters/rhys-londe/maw.svg"
  32971. }
  32972. },
  32973. },
  32974. [
  32975. {
  32976. name: "Normal",
  32977. height: math.unit(6 + 8/12, "feet"),
  32978. default: true
  32979. },
  32980. ]
  32981. ))
  32982. characterMakers.push(() => makeCharacter(
  32983. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32984. {
  32985. front: {
  32986. height: math.unit(3 + 10/12, "feet"),
  32987. weight: math.unit(90, "lb"),
  32988. name: "Front",
  32989. image: {
  32990. source: "./media/characters/taivas-ensim/front.svg",
  32991. extra: 1327/1216,
  32992. bottom: 96/1423
  32993. }
  32994. },
  32995. back: {
  32996. height: math.unit(3 + 10/12, "feet"),
  32997. weight: math.unit(90, "lb"),
  32998. name: "Back",
  32999. image: {
  33000. source: "./media/characters/taivas-ensim/back.svg",
  33001. extra: 1355/1247,
  33002. bottom: 11/1366
  33003. }
  33004. },
  33005. frontNsfw: {
  33006. height: math.unit(3 + 10/12, "feet"),
  33007. weight: math.unit(90, "lb"),
  33008. name: "Front (NSFW)",
  33009. image: {
  33010. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33011. extra: 1327/1216,
  33012. bottom: 96/1423
  33013. }
  33014. },
  33015. backNsfw: {
  33016. height: math.unit(3 + 10/12, "feet"),
  33017. weight: math.unit(90, "lb"),
  33018. name: "Back (NSFW)",
  33019. image: {
  33020. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33021. extra: 1355/1247,
  33022. bottom: 11/1366
  33023. }
  33024. },
  33025. },
  33026. [
  33027. {
  33028. name: "Normal",
  33029. height: math.unit(3 + 10/12, "feet"),
  33030. default: true
  33031. },
  33032. ]
  33033. ))
  33034. characterMakers.push(() => makeCharacter(
  33035. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33036. {
  33037. front: {
  33038. height: math.unit(9 + 6/12, "feet"),
  33039. weight: math.unit(940, "lb"),
  33040. name: "Front",
  33041. image: {
  33042. source: "./media/characters/byliss/front.svg",
  33043. extra: 1327/1290,
  33044. bottom: 82/1409
  33045. }
  33046. },
  33047. back: {
  33048. height: math.unit(9 + 6/12, "feet"),
  33049. weight: math.unit(940, "lb"),
  33050. name: "Back",
  33051. image: {
  33052. source: "./media/characters/byliss/back.svg",
  33053. extra: 1376/1349,
  33054. bottom: 9/1385
  33055. }
  33056. },
  33057. frontNsfw: {
  33058. height: math.unit(9 + 6/12, "feet"),
  33059. weight: math.unit(940, "lb"),
  33060. name: "Front (NSFW)",
  33061. image: {
  33062. source: "./media/characters/byliss/front-nsfw.svg",
  33063. extra: 1327/1290,
  33064. bottom: 82/1409
  33065. }
  33066. },
  33067. backNsfw: {
  33068. height: math.unit(9 + 6/12, "feet"),
  33069. weight: math.unit(940, "lb"),
  33070. name: "Back (NSFW)",
  33071. image: {
  33072. source: "./media/characters/byliss/back-nsfw.svg",
  33073. extra: 1376/1349,
  33074. bottom: 9/1385
  33075. }
  33076. },
  33077. },
  33078. [
  33079. {
  33080. name: "Normal",
  33081. height: math.unit(9 + 6/12, "feet"),
  33082. default: true
  33083. },
  33084. ]
  33085. ))
  33086. characterMakers.push(() => makeCharacter(
  33087. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33088. {
  33089. front: {
  33090. height: math.unit(5 + 2/12, "feet"),
  33091. weight: math.unit(200, "lb"),
  33092. name: "Front",
  33093. image: {
  33094. source: "./media/characters/noraly/front.svg",
  33095. extra: 4985/4773,
  33096. bottom: 150/5135
  33097. }
  33098. },
  33099. full: {
  33100. height: math.unit(5 + 2/12, "feet"),
  33101. weight: math.unit(164, "lb"),
  33102. name: "Full",
  33103. image: {
  33104. source: "./media/characters/noraly/full.svg",
  33105. extra: 1114/1059,
  33106. bottom: 35/1149
  33107. }
  33108. },
  33109. fuller: {
  33110. height: math.unit(5 + 2/12, "feet"),
  33111. weight: math.unit(230, "lb"),
  33112. name: "Fuller",
  33113. image: {
  33114. source: "./media/characters/noraly/fuller.svg",
  33115. extra: 1114/1059,
  33116. bottom: 35/1149
  33117. }
  33118. },
  33119. fullest: {
  33120. height: math.unit(5 + 2/12, "feet"),
  33121. weight: math.unit(300, "lb"),
  33122. name: "Fullest",
  33123. image: {
  33124. source: "./media/characters/noraly/fullest.svg",
  33125. extra: 1114/1059,
  33126. bottom: 35/1149
  33127. }
  33128. },
  33129. },
  33130. [
  33131. {
  33132. name: "Normal",
  33133. height: math.unit(5 + 2/12, "feet"),
  33134. default: true
  33135. },
  33136. ]
  33137. ))
  33138. characterMakers.push(() => makeCharacter(
  33139. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33140. {
  33141. front: {
  33142. height: math.unit(5 + 2/12, "feet"),
  33143. weight: math.unit(210, "lb"),
  33144. name: "Front",
  33145. image: {
  33146. source: "./media/characters/pera/front.svg",
  33147. extra: 1560/1531,
  33148. bottom: 165/1725
  33149. }
  33150. },
  33151. back: {
  33152. height: math.unit(5 + 2/12, "feet"),
  33153. weight: math.unit(210, "lb"),
  33154. name: "Back",
  33155. image: {
  33156. source: "./media/characters/pera/back.svg",
  33157. extra: 1523/1493,
  33158. bottom: 152/1675
  33159. }
  33160. },
  33161. dick: {
  33162. height: math.unit(2.4, "feet"),
  33163. name: "Dick",
  33164. image: {
  33165. source: "./media/characters/pera/dick.svg"
  33166. }
  33167. },
  33168. },
  33169. [
  33170. {
  33171. name: "Normal",
  33172. height: math.unit(5 + 2/12, "feet"),
  33173. default: true
  33174. },
  33175. ]
  33176. ))
  33177. characterMakers.push(() => makeCharacter(
  33178. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33179. {
  33180. front: {
  33181. height: math.unit(12, "feet"),
  33182. weight: math.unit(3200, "lb"),
  33183. name: "Front",
  33184. image: {
  33185. source: "./media/characters/julian/front.svg",
  33186. extra: 2962/2701,
  33187. bottom: 184/3146
  33188. }
  33189. },
  33190. maw: {
  33191. height: math.unit(5.35, "feet"),
  33192. name: "Maw",
  33193. image: {
  33194. source: "./media/characters/julian/maw.svg"
  33195. }
  33196. },
  33197. paw: {
  33198. height: math.unit(3.07, "feet"),
  33199. name: "Paw",
  33200. image: {
  33201. source: "./media/characters/julian/paw.svg"
  33202. }
  33203. },
  33204. },
  33205. [
  33206. {
  33207. name: "Default",
  33208. height: math.unit(12, "feet"),
  33209. default: true
  33210. },
  33211. {
  33212. name: "Big",
  33213. height: math.unit(50, "feet")
  33214. },
  33215. {
  33216. name: "Really Big",
  33217. height: math.unit(1, "mile")
  33218. },
  33219. {
  33220. name: "Extremely Big",
  33221. height: math.unit(100, "miles")
  33222. },
  33223. {
  33224. name: "Planet Hugger",
  33225. height: math.unit(200, "megameters")
  33226. },
  33227. {
  33228. name: "Unreasonably Big",
  33229. height: math.unit(1e300, "meters")
  33230. },
  33231. ]
  33232. ))
  33233. characterMakers.push(() => makeCharacter(
  33234. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33235. {
  33236. solgooleo: {
  33237. height: math.unit(4, "meters"),
  33238. weight: math.unit(6000*1.5, "kg"),
  33239. volume: math.unit(6000, "liters"),
  33240. name: "Solgooleo",
  33241. image: {
  33242. source: "./media/characters/pi/solgooleo.svg",
  33243. extra: 388/331,
  33244. bottom: 29/417
  33245. }
  33246. },
  33247. },
  33248. [
  33249. {
  33250. name: "Normal",
  33251. height: math.unit(4, "meters"),
  33252. default: true
  33253. },
  33254. ]
  33255. ))
  33256. characterMakers.push(() => makeCharacter(
  33257. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33258. {
  33259. front: {
  33260. height: math.unit(8, "feet"),
  33261. weight: math.unit(4, "tons"),
  33262. name: "Front",
  33263. image: {
  33264. source: "./media/characters/shaun/front.svg",
  33265. extra: 503/495,
  33266. bottom: 20/523
  33267. }
  33268. },
  33269. back: {
  33270. height: math.unit(8, "feet"),
  33271. weight: math.unit(4, "tons"),
  33272. name: "Back",
  33273. image: {
  33274. source: "./media/characters/shaun/back.svg",
  33275. extra: 487/480,
  33276. bottom: 20/507
  33277. }
  33278. },
  33279. },
  33280. [
  33281. {
  33282. name: "Lorg",
  33283. height: math.unit(8, "feet"),
  33284. default: true
  33285. },
  33286. ]
  33287. ))
  33288. characterMakers.push(() => makeCharacter(
  33289. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33290. {
  33291. frontAnthro: {
  33292. height: math.unit(7, "feet"),
  33293. name: "Front",
  33294. image: {
  33295. source: "./media/characters/sini/front-anthro.svg",
  33296. extra: 726/678,
  33297. bottom: 35/761
  33298. },
  33299. form: "anthro",
  33300. default: true
  33301. },
  33302. backAnthro: {
  33303. height: math.unit(7, "feet"),
  33304. name: "Back",
  33305. image: {
  33306. source: "./media/characters/sini/back-anthro.svg",
  33307. extra: 743/701,
  33308. bottom: 12/755
  33309. },
  33310. form: "anthro",
  33311. },
  33312. frontAnthroNsfw: {
  33313. height: math.unit(7, "feet"),
  33314. name: "Front (NSFW)",
  33315. image: {
  33316. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33317. extra: 726/678,
  33318. bottom: 35/761
  33319. },
  33320. form: "anthro"
  33321. },
  33322. backAnthroNsfw: {
  33323. height: math.unit(7, "feet"),
  33324. name: "Back (NSFW)",
  33325. image: {
  33326. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33327. extra: 743/701,
  33328. bottom: 12/755
  33329. },
  33330. form: "anthro",
  33331. },
  33332. mawAnthro: {
  33333. height: math.unit(2.14, "feet"),
  33334. name: "Maw",
  33335. image: {
  33336. source: "./media/characters/sini/maw-anthro.svg"
  33337. },
  33338. form: "anthro"
  33339. },
  33340. dick: {
  33341. height: math.unit(1.45, "feet"),
  33342. name: "Dick",
  33343. image: {
  33344. source: "./media/characters/sini/dick-anthro.svg"
  33345. },
  33346. form: "anthro"
  33347. },
  33348. feral: {
  33349. height: math.unit(16, "feet"),
  33350. name: "Feral",
  33351. image: {
  33352. source: "./media/characters/sini/feral.svg",
  33353. extra: 814/605,
  33354. bottom: 11/825
  33355. },
  33356. form: "feral",
  33357. default: true
  33358. },
  33359. feralNsfw: {
  33360. height: math.unit(16, "feet"),
  33361. name: "Feral (NSFW)",
  33362. image: {
  33363. source: "./media/characters/sini/feral-nsfw.svg",
  33364. extra: 814/605,
  33365. bottom: 11/825
  33366. },
  33367. form: "feral"
  33368. },
  33369. mawFeral: {
  33370. height: math.unit(5.66, "feet"),
  33371. name: "Maw",
  33372. image: {
  33373. source: "./media/characters/sini/maw-feral.svg"
  33374. },
  33375. form: "feral",
  33376. },
  33377. pawFeral: {
  33378. height: math.unit(5.17, "feet"),
  33379. name: "Paw",
  33380. image: {
  33381. source: "./media/characters/sini/paw-feral.svg"
  33382. },
  33383. form: "feral",
  33384. },
  33385. rumpFeral: {
  33386. height: math.unit(13.11, "feet"),
  33387. name: "Rump",
  33388. image: {
  33389. source: "./media/characters/sini/rump-feral.svg"
  33390. },
  33391. form: "feral",
  33392. },
  33393. dickFeral: {
  33394. height: math.unit(1, "feet"),
  33395. name: "Dick",
  33396. image: {
  33397. source: "./media/characters/sini/dick-feral.svg"
  33398. },
  33399. form: "feral",
  33400. },
  33401. eyeFeral: {
  33402. height: math.unit(1.23, "feet"),
  33403. name: "Eye",
  33404. image: {
  33405. source: "./media/characters/sini/eye-feral.svg"
  33406. },
  33407. form: "feral",
  33408. },
  33409. },
  33410. [
  33411. {
  33412. name: "Normal",
  33413. height: math.unit(7, "feet"),
  33414. default: true,
  33415. form: "anthro"
  33416. },
  33417. {
  33418. name: "Normal",
  33419. height: math.unit(16, "feet"),
  33420. default: true,
  33421. form: "feral"
  33422. },
  33423. ],
  33424. {
  33425. "anthro": {
  33426. name: "Anthro",
  33427. default: true
  33428. },
  33429. "feral": {
  33430. name: "Feral",
  33431. }
  33432. }
  33433. ))
  33434. characterMakers.push(() => makeCharacter(
  33435. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33436. {
  33437. side: {
  33438. height: math.unit(13, "meters"),
  33439. weight: math.unit(9072, "kg"),
  33440. name: "Side",
  33441. image: {
  33442. source: "./media/characters/raylldo/side.svg",
  33443. extra: 403/344,
  33444. bottom: 42/445
  33445. }
  33446. },
  33447. leaping: {
  33448. height: math.unit(12.3, "meters"),
  33449. weight: math.unit(9072, "kg"),
  33450. name: "Leaping",
  33451. image: {
  33452. source: "./media/characters/raylldo/leaping.svg",
  33453. extra: 470/249,
  33454. bottom: 13/483
  33455. }
  33456. },
  33457. flying: {
  33458. height: math.unit(18, "meters"),
  33459. weight: math.unit(9072, "kg"),
  33460. name: "Flying",
  33461. image: {
  33462. source: "./media/characters/raylldo/flying.svg"
  33463. }
  33464. },
  33465. head: {
  33466. height: math.unit(5.85, "meters"),
  33467. name: "Head",
  33468. image: {
  33469. source: "./media/characters/raylldo/head.svg"
  33470. }
  33471. },
  33472. maw: {
  33473. height: math.unit(5.32, "meters"),
  33474. name: "Maw",
  33475. image: {
  33476. source: "./media/characters/raylldo/maw.svg"
  33477. }
  33478. },
  33479. eye: {
  33480. height: math.unit(0.54, "meters"),
  33481. name: "Eye",
  33482. image: {
  33483. source: "./media/characters/raylldo/eye.svg"
  33484. }
  33485. },
  33486. },
  33487. [
  33488. {
  33489. name: "Normal",
  33490. height: math.unit(13, "meters"),
  33491. default: true
  33492. },
  33493. ]
  33494. ))
  33495. characterMakers.push(() => makeCharacter(
  33496. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33497. {
  33498. anthroFront: {
  33499. height: math.unit(9, "feet"),
  33500. weight: math.unit(600, "lb"),
  33501. name: "Anthro (Front)",
  33502. image: {
  33503. source: "./media/characters/glint/anthro-front.svg",
  33504. extra: 1097/1018,
  33505. bottom: 28/1125
  33506. }
  33507. },
  33508. anthroBack: {
  33509. height: math.unit(9, "feet"),
  33510. weight: math.unit(600, "lb"),
  33511. name: "Anthro (Back)",
  33512. image: {
  33513. source: "./media/characters/glint/anthro-back.svg",
  33514. extra: 1154/997,
  33515. bottom: 36/1190
  33516. }
  33517. },
  33518. feral: {
  33519. height: math.unit(11, "feet"),
  33520. weight: math.unit(50000, "lb"),
  33521. name: "Feral",
  33522. image: {
  33523. source: "./media/characters/glint/feral.svg",
  33524. extra: 3035/1585,
  33525. bottom: 1169/4204
  33526. }
  33527. },
  33528. dickAnthro: {
  33529. height: math.unit(0.7, "meters"),
  33530. name: "Dick (Anthro)",
  33531. image: {
  33532. source: "./media/characters/glint/dick-anthro.svg"
  33533. }
  33534. },
  33535. dickFeral: {
  33536. height: math.unit(2.65, "meters"),
  33537. name: "Dick (Feral)",
  33538. image: {
  33539. source: "./media/characters/glint/dick-feral.svg"
  33540. }
  33541. },
  33542. slitHidden: {
  33543. height: math.unit(5.85, "meters"),
  33544. name: "Slit (Hidden)",
  33545. image: {
  33546. source: "./media/characters/glint/slit-hidden.svg"
  33547. }
  33548. },
  33549. slitErect: {
  33550. height: math.unit(5.85, "meters"),
  33551. name: "Slit (Erect)",
  33552. image: {
  33553. source: "./media/characters/glint/slit-erect.svg"
  33554. }
  33555. },
  33556. mawAnthro: {
  33557. height: math.unit(0.63, "meters"),
  33558. name: "Maw (Anthro)",
  33559. image: {
  33560. source: "./media/characters/glint/maw.svg"
  33561. }
  33562. },
  33563. mawFeral: {
  33564. height: math.unit(2.89, "meters"),
  33565. name: "Maw (Feral)",
  33566. image: {
  33567. source: "./media/characters/glint/maw.svg"
  33568. }
  33569. },
  33570. },
  33571. [
  33572. {
  33573. name: "Normal",
  33574. height: math.unit(9, "feet"),
  33575. default: true
  33576. },
  33577. ]
  33578. ))
  33579. characterMakers.push(() => makeCharacter(
  33580. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33581. {
  33582. side: {
  33583. height: math.unit(15, "feet"),
  33584. weight: math.unit(5000, "kg"),
  33585. name: "Side",
  33586. image: {
  33587. source: "./media/characters/kairne/side.svg",
  33588. extra: 979/811,
  33589. bottom: 13/992
  33590. }
  33591. },
  33592. front: {
  33593. height: math.unit(15, "feet"),
  33594. weight: math.unit(5000, "kg"),
  33595. name: "Front",
  33596. image: {
  33597. source: "./media/characters/kairne/front.svg",
  33598. extra: 908/814,
  33599. bottom: 26/934
  33600. }
  33601. },
  33602. sideNsfw: {
  33603. height: math.unit(15, "feet"),
  33604. weight: math.unit(5000, "kg"),
  33605. name: "Side (NSFW)",
  33606. image: {
  33607. source: "./media/characters/kairne/side-nsfw.svg",
  33608. extra: 979/811,
  33609. bottom: 13/992
  33610. }
  33611. },
  33612. frontNsfw: {
  33613. height: math.unit(15, "feet"),
  33614. weight: math.unit(5000, "kg"),
  33615. name: "Front (NSFW)",
  33616. image: {
  33617. source: "./media/characters/kairne/front-nsfw.svg",
  33618. extra: 908/814,
  33619. bottom: 26/934
  33620. }
  33621. },
  33622. dickCaged: {
  33623. height: math.unit(0.65, "meters"),
  33624. name: "Dick-caged",
  33625. image: {
  33626. source: "./media/characters/kairne/dick-caged.svg"
  33627. }
  33628. },
  33629. dick: {
  33630. height: math.unit(0.79, "meters"),
  33631. name: "Dick",
  33632. image: {
  33633. source: "./media/characters/kairne/dick.svg"
  33634. }
  33635. },
  33636. genitals: {
  33637. height: math.unit(1.29, "meters"),
  33638. name: "Genitals",
  33639. image: {
  33640. source: "./media/characters/kairne/genitals.svg"
  33641. }
  33642. },
  33643. maw: {
  33644. height: math.unit(1.73, "meters"),
  33645. name: "Maw",
  33646. image: {
  33647. source: "./media/characters/kairne/maw.svg"
  33648. }
  33649. },
  33650. },
  33651. [
  33652. {
  33653. name: "Normal",
  33654. height: math.unit(15, "feet"),
  33655. default: true
  33656. },
  33657. ]
  33658. ))
  33659. characterMakers.push(() => makeCharacter(
  33660. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33661. {
  33662. front: {
  33663. height: math.unit(5 + 8/12, "feet"),
  33664. weight: math.unit(139, "lb"),
  33665. name: "Front",
  33666. image: {
  33667. source: "./media/characters/biscuit-jackal/front.svg",
  33668. extra: 2106/1961,
  33669. bottom: 58/2164
  33670. }
  33671. },
  33672. back: {
  33673. height: math.unit(5 + 8/12, "feet"),
  33674. weight: math.unit(139, "lb"),
  33675. name: "Back",
  33676. image: {
  33677. source: "./media/characters/biscuit-jackal/back.svg",
  33678. extra: 2132/1976,
  33679. bottom: 57/2189
  33680. }
  33681. },
  33682. werejackal: {
  33683. height: math.unit(6 + 3/12, "feet"),
  33684. weight: math.unit(188, "lb"),
  33685. name: "Werejackal",
  33686. image: {
  33687. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33688. extra: 2373/2178,
  33689. bottom: 53/2426
  33690. }
  33691. },
  33692. },
  33693. [
  33694. {
  33695. name: "Normal",
  33696. height: math.unit(5 + 8/12, "feet"),
  33697. default: true
  33698. },
  33699. ]
  33700. ))
  33701. characterMakers.push(() => makeCharacter(
  33702. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33703. {
  33704. front: {
  33705. height: math.unit(140, "cm"),
  33706. weight: math.unit(45, "kg"),
  33707. name: "Front",
  33708. image: {
  33709. source: "./media/characters/tayra-white/front.svg",
  33710. extra: 2229/2192,
  33711. bottom: 75/2304
  33712. }
  33713. },
  33714. },
  33715. [
  33716. {
  33717. name: "Normal",
  33718. height: math.unit(140, "cm"),
  33719. default: true
  33720. },
  33721. ]
  33722. ))
  33723. characterMakers.push(() => makeCharacter(
  33724. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33725. {
  33726. front: {
  33727. height: math.unit(4 + 5/12, "feet"),
  33728. name: "Front",
  33729. image: {
  33730. source: "./media/characters/scoop/front.svg",
  33731. extra: 1257/1136,
  33732. bottom: 69/1326
  33733. }
  33734. },
  33735. back: {
  33736. height: math.unit(4 + 5/12, "feet"),
  33737. name: "Back",
  33738. image: {
  33739. source: "./media/characters/scoop/back.svg",
  33740. extra: 1321/1152,
  33741. bottom: 32/1353
  33742. }
  33743. },
  33744. maw: {
  33745. height: math.unit(0.68, "feet"),
  33746. name: "Maw",
  33747. image: {
  33748. source: "./media/characters/scoop/maw.svg"
  33749. }
  33750. },
  33751. },
  33752. [
  33753. {
  33754. name: "Really Small",
  33755. height: math.unit(1, "mm")
  33756. },
  33757. {
  33758. name: "Micro",
  33759. height: math.unit(1, "inch")
  33760. },
  33761. {
  33762. name: "Normal",
  33763. height: math.unit(4 + 5/12, "feet"),
  33764. default: true
  33765. },
  33766. {
  33767. name: "Macro",
  33768. height: math.unit(200, "feet")
  33769. },
  33770. {
  33771. name: "Megamacro",
  33772. height: math.unit(3240, "feet")
  33773. },
  33774. {
  33775. name: "Teramacro",
  33776. height: math.unit(2500, "miles")
  33777. },
  33778. ]
  33779. ))
  33780. characterMakers.push(() => makeCharacter(
  33781. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33782. {
  33783. front: {
  33784. height: math.unit(15 + 7/12, "feet"),
  33785. name: "Front",
  33786. image: {
  33787. source: "./media/characters/saphinara/front.svg",
  33788. extra: 604/546,
  33789. bottom: 19/623
  33790. }
  33791. },
  33792. side: {
  33793. height: math.unit(15 + 7/12, "feet"),
  33794. name: "Side",
  33795. image: {
  33796. source: "./media/characters/saphinara/side.svg",
  33797. extra: 605/547,
  33798. bottom: 6/611
  33799. }
  33800. },
  33801. back: {
  33802. height: math.unit(15 + 7/12, "feet"),
  33803. name: "Back",
  33804. image: {
  33805. source: "./media/characters/saphinara/back.svg",
  33806. extra: 591/531,
  33807. bottom: 13/604
  33808. }
  33809. },
  33810. frontTail: {
  33811. height: math.unit(15 + 7/12, "feet"),
  33812. name: "Front (Full Tail)",
  33813. image: {
  33814. source: "./media/characters/saphinara/front-tail.svg",
  33815. extra: 748/547,
  33816. bottom: 66/814
  33817. }
  33818. },
  33819. },
  33820. [
  33821. {
  33822. name: "Normal",
  33823. height: math.unit(15 + 7/12, "feet"),
  33824. default: true
  33825. },
  33826. {
  33827. name: "Angry",
  33828. height: math.unit(30 + 6/12, "feet")
  33829. },
  33830. {
  33831. name: "Enraged",
  33832. height: math.unit(102 + 1/12, "feet")
  33833. },
  33834. ]
  33835. ))
  33836. characterMakers.push(() => makeCharacter(
  33837. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33838. {
  33839. front: {
  33840. height: math.unit(6 + 8/12, "feet"),
  33841. weight: math.unit(300, "lb"),
  33842. name: "Front",
  33843. image: {
  33844. source: "./media/characters/jrain/front.svg",
  33845. extra: 3039/2865,
  33846. bottom: 399/3438
  33847. }
  33848. },
  33849. back: {
  33850. height: math.unit(6 + 8/12, "feet"),
  33851. weight: math.unit(300, "lb"),
  33852. name: "Back",
  33853. image: {
  33854. source: "./media/characters/jrain/back.svg",
  33855. extra: 3089/2938,
  33856. bottom: 172/3261
  33857. }
  33858. },
  33859. head: {
  33860. height: math.unit(2.14, "feet"),
  33861. name: "Head",
  33862. image: {
  33863. source: "./media/characters/jrain/head.svg"
  33864. }
  33865. },
  33866. maw: {
  33867. height: math.unit(1.77, "feet"),
  33868. name: "Maw",
  33869. image: {
  33870. source: "./media/characters/jrain/maw.svg"
  33871. }
  33872. },
  33873. leftHand: {
  33874. height: math.unit(1.1, "feet"),
  33875. name: "Left Hand",
  33876. image: {
  33877. source: "./media/characters/jrain/left-hand.svg"
  33878. }
  33879. },
  33880. rightHand: {
  33881. height: math.unit(1.1, "feet"),
  33882. name: "Right Hand",
  33883. image: {
  33884. source: "./media/characters/jrain/right-hand.svg"
  33885. }
  33886. },
  33887. eye: {
  33888. height: math.unit(0.35, "feet"),
  33889. name: "Eye",
  33890. image: {
  33891. source: "./media/characters/jrain/eye.svg"
  33892. }
  33893. },
  33894. },
  33895. [
  33896. {
  33897. name: "Normal",
  33898. height: math.unit(6 + 8/12, "feet"),
  33899. default: true
  33900. },
  33901. {
  33902. name: "Casually Large",
  33903. height: math.unit(25, "feet")
  33904. },
  33905. {
  33906. name: "Giant",
  33907. height: math.unit(100, "feet")
  33908. },
  33909. {
  33910. name: "Kaiju",
  33911. height: math.unit(300, "feet")
  33912. },
  33913. ]
  33914. ))
  33915. characterMakers.push(() => makeCharacter(
  33916. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33917. {
  33918. dragon: {
  33919. height: math.unit(5, "meters"),
  33920. name: "Dragon",
  33921. image: {
  33922. source: "./media/characters/sabrina/dragon.svg",
  33923. extra: 3670 / 2365,
  33924. bottom: 333 / 4003
  33925. }
  33926. },
  33927. gryphon: {
  33928. height: math.unit(3, "meters"),
  33929. name: "Gryphon",
  33930. image: {
  33931. source: "./media/characters/sabrina/gryphon.svg",
  33932. extra: 1576 / 945,
  33933. bottom: 71 / 1647
  33934. }
  33935. },
  33936. snake: {
  33937. height: math.unit(12, "meters"),
  33938. name: "Snake",
  33939. image: {
  33940. source: "./media/characters/sabrina/snake.svg",
  33941. extra: 1758 / 1320,
  33942. bottom: 186 / 1944
  33943. }
  33944. },
  33945. collar: {
  33946. height: math.unit(1.86, "meters"),
  33947. name: "Collar",
  33948. image: {
  33949. source: "./media/characters/sabrina/collar.svg"
  33950. }
  33951. },
  33952. eye: {
  33953. height: math.unit(0.53, "meters"),
  33954. name: "Eye",
  33955. image: {
  33956. source: "./media/characters/sabrina/eye.svg"
  33957. }
  33958. },
  33959. foot: {
  33960. height: math.unit(1.86, "meters"),
  33961. name: "Foot",
  33962. image: {
  33963. source: "./media/characters/sabrina/foot.svg"
  33964. }
  33965. },
  33966. hand: {
  33967. height: math.unit(1.32, "meters"),
  33968. name: "Hand",
  33969. image: {
  33970. source: "./media/characters/sabrina/hand.svg"
  33971. }
  33972. },
  33973. head: {
  33974. height: math.unit(2.44, "meters"),
  33975. name: "Head",
  33976. image: {
  33977. source: "./media/characters/sabrina/head.svg"
  33978. }
  33979. },
  33980. headAngry: {
  33981. height: math.unit(2.44, "meters"),
  33982. name: "Head (Angry))",
  33983. image: {
  33984. source: "./media/characters/sabrina/head-angry.svg"
  33985. }
  33986. },
  33987. maw: {
  33988. height: math.unit(1.65, "meters"),
  33989. name: "Maw",
  33990. image: {
  33991. source: "./media/characters/sabrina/maw.svg"
  33992. }
  33993. },
  33994. spikes: {
  33995. height: math.unit(1.69, "meters"),
  33996. name: "Spikes",
  33997. image: {
  33998. source: "./media/characters/sabrina/spikes.svg"
  33999. }
  34000. },
  34001. stomach: {
  34002. height: math.unit(1.15, "meters"),
  34003. name: "Stomach",
  34004. image: {
  34005. source: "./media/characters/sabrina/stomach.svg"
  34006. }
  34007. },
  34008. tongue: {
  34009. height: math.unit(1.27, "meters"),
  34010. name: "Tongue",
  34011. image: {
  34012. source: "./media/characters/sabrina/tongue.svg"
  34013. }
  34014. },
  34015. wingDorsal: {
  34016. height: math.unit(4.85, "meters"),
  34017. name: "Wing (Dorsal)",
  34018. image: {
  34019. source: "./media/characters/sabrina/wing-dorsal.svg"
  34020. }
  34021. },
  34022. wingVentral: {
  34023. height: math.unit(4.85, "meters"),
  34024. name: "Wing (Ventral)",
  34025. image: {
  34026. source: "./media/characters/sabrina/wing-ventral.svg"
  34027. }
  34028. },
  34029. },
  34030. [
  34031. {
  34032. name: "Normal",
  34033. height: math.unit(5, "meters"),
  34034. default: true
  34035. },
  34036. ]
  34037. ))
  34038. characterMakers.push(() => makeCharacter(
  34039. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34040. {
  34041. frontMaid: {
  34042. height: math.unit(5 + 5/12, "feet"),
  34043. weight: math.unit(130, "lb"),
  34044. name: "Front (Maid)",
  34045. image: {
  34046. source: "./media/characters/midnight-tales/front-maid.svg",
  34047. extra: 489/454,
  34048. bottom: 61/550
  34049. }
  34050. },
  34051. frontFormal: {
  34052. height: math.unit(5 + 5/12, "feet"),
  34053. weight: math.unit(130, "lb"),
  34054. name: "Front (Formal)",
  34055. image: {
  34056. source: "./media/characters/midnight-tales/front-formal.svg",
  34057. extra: 489/454,
  34058. bottom: 61/550
  34059. }
  34060. },
  34061. back: {
  34062. height: math.unit(5 + 5/12, "feet"),
  34063. weight: math.unit(130, "lb"),
  34064. name: "Back",
  34065. image: {
  34066. source: "./media/characters/midnight-tales/back.svg",
  34067. extra: 498/456,
  34068. bottom: 33/531
  34069. }
  34070. },
  34071. frontBeast: {
  34072. height: math.unit(40, "feet"),
  34073. weight: math.unit(64000, "lb"),
  34074. name: "Front (Beast)",
  34075. image: {
  34076. source: "./media/characters/midnight-tales/front-beast.svg",
  34077. extra: 927/860,
  34078. bottom: 53/980
  34079. }
  34080. },
  34081. backBeast: {
  34082. height: math.unit(40, "feet"),
  34083. weight: math.unit(64000, "lb"),
  34084. name: "Back (Beast)",
  34085. image: {
  34086. source: "./media/characters/midnight-tales/back-beast.svg",
  34087. extra: 929/855,
  34088. bottom: 16/945
  34089. }
  34090. },
  34091. footBeast: {
  34092. height: math.unit(6.7, "feet"),
  34093. name: "Foot (Beast)",
  34094. image: {
  34095. source: "./media/characters/midnight-tales/foot-beast.svg"
  34096. }
  34097. },
  34098. headBeast: {
  34099. height: math.unit(8, "feet"),
  34100. name: "Head (Beast)",
  34101. image: {
  34102. source: "./media/characters/midnight-tales/head-beast.svg"
  34103. }
  34104. },
  34105. },
  34106. [
  34107. {
  34108. name: "Normal",
  34109. height: math.unit(5 + 5 / 12, "feet"),
  34110. default: true
  34111. },
  34112. {
  34113. name: "Macro",
  34114. height: math.unit(25, "feet")
  34115. },
  34116. ]
  34117. ))
  34118. characterMakers.push(() => makeCharacter(
  34119. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34120. {
  34121. front: {
  34122. height: math.unit(5 + 10/12, "feet"),
  34123. name: "Front",
  34124. image: {
  34125. source: "./media/characters/argon/front.svg",
  34126. extra: 2009/1935,
  34127. bottom: 118/2127
  34128. }
  34129. },
  34130. back: {
  34131. height: math.unit(5 + 10/12, "feet"),
  34132. name: "Back",
  34133. image: {
  34134. source: "./media/characters/argon/back.svg",
  34135. extra: 2047/1992,
  34136. bottom: 20/2067
  34137. }
  34138. },
  34139. frontDressed: {
  34140. height: math.unit(5 + 10/12, "feet"),
  34141. name: "Front (Dressed)",
  34142. image: {
  34143. source: "./media/characters/argon/front-dressed.svg",
  34144. extra: 2009/1935,
  34145. bottom: 118/2127
  34146. }
  34147. },
  34148. },
  34149. [
  34150. {
  34151. name: "Normal",
  34152. height: math.unit(5 + 10/12, "feet"),
  34153. default: true
  34154. },
  34155. ]
  34156. ))
  34157. characterMakers.push(() => makeCharacter(
  34158. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34159. {
  34160. front: {
  34161. height: math.unit(8 + 6/12, "feet"),
  34162. weight: math.unit(1150, "lb"),
  34163. name: "Front",
  34164. image: {
  34165. source: "./media/characters/kichi/front.svg",
  34166. extra: 1267/1164,
  34167. bottom: 61/1328
  34168. }
  34169. },
  34170. back: {
  34171. height: math.unit(8 + 6/12, "feet"),
  34172. weight: math.unit(1150, "lb"),
  34173. name: "Back",
  34174. image: {
  34175. source: "./media/characters/kichi/back.svg",
  34176. extra: 1273/1166,
  34177. bottom: 33/1306
  34178. }
  34179. },
  34180. },
  34181. [
  34182. {
  34183. name: "Normal",
  34184. height: math.unit(8 + 6/12, "feet"),
  34185. default: true
  34186. },
  34187. ]
  34188. ))
  34189. characterMakers.push(() => makeCharacter(
  34190. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34191. {
  34192. front: {
  34193. height: math.unit(6, "feet"),
  34194. weight: math.unit(210, "lb"),
  34195. name: "Front",
  34196. image: {
  34197. source: "./media/characters/manetel-greyscale/front.svg",
  34198. extra: 350/312,
  34199. bottom: 8/358
  34200. }
  34201. },
  34202. },
  34203. [
  34204. {
  34205. name: "Micro",
  34206. height: math.unit(2, "inches")
  34207. },
  34208. {
  34209. name: "Normal",
  34210. height: math.unit(6, "feet"),
  34211. default: true
  34212. },
  34213. {
  34214. name: "Minimacro",
  34215. height: math.unit(17, "feet")
  34216. },
  34217. {
  34218. name: "Macro",
  34219. height: math.unit(117, "feet")
  34220. },
  34221. ]
  34222. ))
  34223. characterMakers.push(() => makeCharacter(
  34224. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34225. {
  34226. side: {
  34227. height: math.unit(5 + 1/12, "feet"),
  34228. weight: math.unit(418, "lb"),
  34229. name: "Side",
  34230. image: {
  34231. source: "./media/characters/softpurr/side.svg",
  34232. extra: 1993/1945,
  34233. bottom: 134/2127
  34234. }
  34235. },
  34236. front: {
  34237. height: math.unit(5 + 1/12, "feet"),
  34238. weight: math.unit(418, "lb"),
  34239. name: "Front",
  34240. image: {
  34241. source: "./media/characters/softpurr/front.svg",
  34242. extra: 1950/1856,
  34243. bottom: 174/2124
  34244. }
  34245. },
  34246. paw: {
  34247. height: math.unit(1, "feet"),
  34248. name: "Paw",
  34249. image: {
  34250. source: "./media/characters/softpurr/paw.svg"
  34251. }
  34252. },
  34253. },
  34254. [
  34255. {
  34256. name: "Normal",
  34257. height: math.unit(5 + 1/12, "feet"),
  34258. default: true
  34259. },
  34260. ]
  34261. ))
  34262. characterMakers.push(() => makeCharacter(
  34263. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34264. {
  34265. front: {
  34266. height: math.unit(260, "meters"),
  34267. name: "Front",
  34268. image: {
  34269. source: "./media/characters/anahita/front.svg",
  34270. extra: 665/635,
  34271. bottom: 89/754
  34272. }
  34273. },
  34274. },
  34275. [
  34276. {
  34277. name: "Macro",
  34278. height: math.unit(260, "meters"),
  34279. default: true
  34280. },
  34281. ]
  34282. ))
  34283. characterMakers.push(() => makeCharacter(
  34284. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34285. {
  34286. front: {
  34287. height: math.unit(4 + 10/12, "feet"),
  34288. weight: math.unit(160, "lb"),
  34289. name: "Front",
  34290. image: {
  34291. source: "./media/characters/chip-mouse/front.svg",
  34292. extra: 3528/3408,
  34293. bottom: 0/3528
  34294. }
  34295. },
  34296. frontNsfw: {
  34297. height: math.unit(4 + 10/12, "feet"),
  34298. weight: math.unit(160, "lb"),
  34299. name: "Front (NSFW)",
  34300. image: {
  34301. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34302. extra: 3528/3408,
  34303. bottom: 0/3528
  34304. }
  34305. },
  34306. },
  34307. [
  34308. {
  34309. name: "Normal",
  34310. height: math.unit(4 + 10/12, "feet"),
  34311. default: true
  34312. },
  34313. ]
  34314. ))
  34315. characterMakers.push(() => makeCharacter(
  34316. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34317. {
  34318. side: {
  34319. height: math.unit(10, "feet"),
  34320. weight: math.unit(14000, "lb"),
  34321. name: "Side",
  34322. image: {
  34323. source: "./media/characters/kremm/side.svg",
  34324. extra: 1390/1053,
  34325. bottom: 90/1480
  34326. }
  34327. },
  34328. gut: {
  34329. height: math.unit(5.8, "feet"),
  34330. name: "Gut",
  34331. image: {
  34332. source: "./media/characters/kremm/gut.svg"
  34333. }
  34334. },
  34335. ass: {
  34336. height: math.unit(6.1, "feet"),
  34337. name: "Ass",
  34338. image: {
  34339. source: "./media/characters/kremm/ass.svg"
  34340. }
  34341. },
  34342. jaws: {
  34343. height: math.unit(2.2, "feet"),
  34344. name: "Jaws",
  34345. image: {
  34346. source: "./media/characters/kremm/jaws.svg"
  34347. }
  34348. },
  34349. dick: {
  34350. height: math.unit(4.26, "feet"),
  34351. name: "Dick",
  34352. image: {
  34353. source: "./media/characters/kremm/dick.svg"
  34354. }
  34355. },
  34356. },
  34357. [
  34358. {
  34359. name: "Normal",
  34360. height: math.unit(10, "feet"),
  34361. default: true
  34362. },
  34363. ]
  34364. ))
  34365. characterMakers.push(() => makeCharacter(
  34366. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34367. {
  34368. front: {
  34369. height: math.unit(30, "stories"),
  34370. name: "Front",
  34371. image: {
  34372. source: "./media/characters/kai/front.svg",
  34373. extra: 1892/1718,
  34374. bottom: 162/2054
  34375. }
  34376. },
  34377. },
  34378. [
  34379. {
  34380. name: "Macro",
  34381. height: math.unit(30, "stories"),
  34382. default: true
  34383. },
  34384. ]
  34385. ))
  34386. characterMakers.push(() => makeCharacter(
  34387. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34388. {
  34389. front: {
  34390. height: math.unit(6 + 4/12, "feet"),
  34391. weight: math.unit(145, "lb"),
  34392. name: "Front",
  34393. image: {
  34394. source: "./media/characters/sykes/front.svg",
  34395. extra: 1321 / 1187,
  34396. bottom: 66 / 1387
  34397. }
  34398. },
  34399. back: {
  34400. height: math.unit(6 + 4/12, "feet"),
  34401. weight: math.unit(145, "lb"),
  34402. name: "Back",
  34403. image: {
  34404. source: "./media/characters/sykes/back.svg",
  34405. extra: 1326/1181,
  34406. bottom: 31/1357
  34407. }
  34408. },
  34409. handBack: {
  34410. height: math.unit(0.9, "feet"),
  34411. name: "Hand (Back)",
  34412. image: {
  34413. source: "./media/characters/sykes/hand-back.svg"
  34414. }
  34415. },
  34416. handFront: {
  34417. height: math.unit(0.839, "feet"),
  34418. name: "Hand (Front)",
  34419. image: {
  34420. source: "./media/characters/sykes/hand-front.svg"
  34421. }
  34422. },
  34423. leftFoot: {
  34424. height: math.unit(1.2, "feet"),
  34425. name: "Foot (Left)",
  34426. image: {
  34427. source: "./media/characters/sykes/foot-left.svg"
  34428. }
  34429. },
  34430. rightFoot: {
  34431. height: math.unit(1.2, "feet"),
  34432. name: "Foot (Right)",
  34433. image: {
  34434. source: "./media/characters/sykes/foot-right.svg"
  34435. }
  34436. },
  34437. maw: {
  34438. height: math.unit(1.93, "feet"),
  34439. name: "Maw",
  34440. image: {
  34441. source: "./media/characters/sykes/maw.svg"
  34442. }
  34443. },
  34444. teeth: {
  34445. height: math.unit(0.51, "feet"),
  34446. name: "Teeth",
  34447. image: {
  34448. source: "./media/characters/sykes/teeth.svg"
  34449. }
  34450. },
  34451. tongue: {
  34452. height: math.unit(2.13, "feet"),
  34453. name: "Tongue",
  34454. image: {
  34455. source: "./media/characters/sykes/tongue.svg"
  34456. }
  34457. },
  34458. uvula: {
  34459. height: math.unit(0.16, "feet"),
  34460. name: "Uvula",
  34461. image: {
  34462. source: "./media/characters/sykes/uvula.svg"
  34463. }
  34464. },
  34465. collar: {
  34466. height: math.unit(0.287, "feet"),
  34467. name: "Collar",
  34468. image: {
  34469. source: "./media/characters/sykes/collar.svg"
  34470. }
  34471. },
  34472. },
  34473. [
  34474. {
  34475. name: "Shrunken",
  34476. height: math.unit(5, "inches")
  34477. },
  34478. {
  34479. name: "Normal",
  34480. height: math.unit(6 + 4 / 12, "feet"),
  34481. default: true
  34482. },
  34483. {
  34484. name: "Big",
  34485. height: math.unit(15, "feet")
  34486. },
  34487. ]
  34488. ))
  34489. characterMakers.push(() => makeCharacter(
  34490. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34491. {
  34492. front: {
  34493. height: math.unit(5 + 8/12, "feet"),
  34494. weight: math.unit(190, "lb"),
  34495. name: "Front",
  34496. image: {
  34497. source: "./media/characters/oven-otter/front.svg",
  34498. extra: 1809/1740,
  34499. bottom: 181/1990
  34500. }
  34501. },
  34502. back: {
  34503. height: math.unit(5 + 8/12, "feet"),
  34504. weight: math.unit(190, "lb"),
  34505. name: "Back",
  34506. image: {
  34507. source: "./media/characters/oven-otter/back.svg",
  34508. extra: 1709/1635,
  34509. bottom: 118/1827
  34510. }
  34511. },
  34512. hand: {
  34513. height: math.unit(1.07, "feet"),
  34514. name: "Hand",
  34515. image: {
  34516. source: "./media/characters/oven-otter/hand.svg"
  34517. }
  34518. },
  34519. beans: {
  34520. height: math.unit(1.74, "feet"),
  34521. name: "Beans",
  34522. image: {
  34523. source: "./media/characters/oven-otter/beans.svg"
  34524. }
  34525. },
  34526. },
  34527. [
  34528. {
  34529. name: "Micro",
  34530. height: math.unit(0.5, "inches")
  34531. },
  34532. {
  34533. name: "Normal",
  34534. height: math.unit(5 + 8/12, "feet"),
  34535. default: true
  34536. },
  34537. {
  34538. name: "Macro",
  34539. height: math.unit(250, "feet")
  34540. },
  34541. {
  34542. name: "Really High",
  34543. height: math.unit(420, "feet")
  34544. },
  34545. ]
  34546. ))
  34547. characterMakers.push(() => makeCharacter(
  34548. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34549. {
  34550. front: {
  34551. height: math.unit(5, "meters"),
  34552. weight: math.unit(292000000000000, "kg"),
  34553. name: "Front",
  34554. image: {
  34555. source: "./media/characters/devourer/front.svg",
  34556. extra: 1800/1733,
  34557. bottom: 211/2011
  34558. }
  34559. },
  34560. maw: {
  34561. height: math.unit(1.1, "meter"),
  34562. name: "Maw",
  34563. image: {
  34564. source: "./media/characters/devourer/maw.svg"
  34565. }
  34566. },
  34567. },
  34568. [
  34569. {
  34570. name: "Small",
  34571. height: math.unit(3, "meters")
  34572. },
  34573. {
  34574. name: "Large",
  34575. height: math.unit(5, "meters"),
  34576. default: true
  34577. },
  34578. ]
  34579. ))
  34580. characterMakers.push(() => makeCharacter(
  34581. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34582. {
  34583. front: {
  34584. height: math.unit(6, "feet"),
  34585. weight: math.unit(400, "lb"),
  34586. name: "Front",
  34587. image: {
  34588. source: "./media/characters/ellarby/front.svg",
  34589. extra: 1909/1763,
  34590. bottom: 80/1989
  34591. }
  34592. },
  34593. back: {
  34594. height: math.unit(6, "feet"),
  34595. weight: math.unit(400, "lb"),
  34596. name: "Back",
  34597. image: {
  34598. source: "./media/characters/ellarby/back.svg",
  34599. extra: 1914/1784,
  34600. bottom: 172/2086
  34601. }
  34602. },
  34603. },
  34604. [
  34605. {
  34606. name: "Mischief",
  34607. height: math.unit(18, "inches")
  34608. },
  34609. {
  34610. name: "Trouble",
  34611. height: math.unit(12, "feet")
  34612. },
  34613. {
  34614. name: "Havoc",
  34615. height: math.unit(200, "feet"),
  34616. default: true
  34617. },
  34618. {
  34619. name: "Pandemonium",
  34620. height: math.unit(1, "mile")
  34621. },
  34622. {
  34623. name: "Catastrophe",
  34624. height: math.unit(100, "miles")
  34625. },
  34626. ]
  34627. ))
  34628. characterMakers.push(() => makeCharacter(
  34629. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34630. {
  34631. front: {
  34632. height: math.unit(4.7, "meters"),
  34633. weight: math.unit(6500, "kg"),
  34634. name: "Front",
  34635. image: {
  34636. source: "./media/characters/vex/front.svg",
  34637. extra: 1288/1140,
  34638. bottom: 100/1388
  34639. }
  34640. },
  34641. },
  34642. [
  34643. {
  34644. name: "Normal",
  34645. height: math.unit(4.7, "meters"),
  34646. default: true
  34647. },
  34648. ]
  34649. ))
  34650. characterMakers.push(() => makeCharacter(
  34651. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34652. {
  34653. normal: {
  34654. height: math.unit(6, "feet"),
  34655. weight: math.unit(350, "lb"),
  34656. name: "Normal",
  34657. image: {
  34658. source: "./media/characters/teshy/normal.svg",
  34659. extra: 1795/1735,
  34660. bottom: 16/1811
  34661. }
  34662. },
  34663. monsterFront: {
  34664. height: math.unit(12, "feet"),
  34665. weight: math.unit(4700, "lb"),
  34666. name: "Monster (Front)",
  34667. image: {
  34668. source: "./media/characters/teshy/monster-front.svg",
  34669. extra: 2042/2034,
  34670. bottom: 128/2170
  34671. }
  34672. },
  34673. monsterSide: {
  34674. height: math.unit(12, "feet"),
  34675. weight: math.unit(4700, "lb"),
  34676. name: "Monster (Side)",
  34677. image: {
  34678. source: "./media/characters/teshy/monster-side.svg",
  34679. extra: 2067/2056,
  34680. bottom: 70/2137
  34681. }
  34682. },
  34683. monsterBack: {
  34684. height: math.unit(12, "feet"),
  34685. weight: math.unit(4700, "lb"),
  34686. name: "Monster (Back)",
  34687. image: {
  34688. source: "./media/characters/teshy/monster-back.svg",
  34689. extra: 1921/1914,
  34690. bottom: 171/2092
  34691. }
  34692. },
  34693. },
  34694. [
  34695. {
  34696. name: "Normal",
  34697. height: math.unit(6, "feet"),
  34698. default: true
  34699. },
  34700. ]
  34701. ))
  34702. characterMakers.push(() => makeCharacter(
  34703. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34704. {
  34705. front: {
  34706. height: math.unit(6, "feet"),
  34707. name: "Front",
  34708. image: {
  34709. source: "./media/characters/ramey/front.svg",
  34710. extra: 790/787,
  34711. bottom: 27/817
  34712. }
  34713. },
  34714. },
  34715. [
  34716. {
  34717. name: "Normal",
  34718. height: math.unit(6, "feet"),
  34719. default: true
  34720. },
  34721. ]
  34722. ))
  34723. characterMakers.push(() => makeCharacter(
  34724. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34725. {
  34726. front: {
  34727. height: math.unit(5 + 5/12, "feet"),
  34728. weight: math.unit(120, "lb"),
  34729. name: "Front",
  34730. image: {
  34731. source: "./media/characters/phirae/front.svg",
  34732. extra: 2491/2436,
  34733. bottom: 38/2529
  34734. }
  34735. },
  34736. },
  34737. [
  34738. {
  34739. name: "Normal",
  34740. height: math.unit(5 + 5/12, "feet"),
  34741. default: true
  34742. },
  34743. ]
  34744. ))
  34745. characterMakers.push(() => makeCharacter(
  34746. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34747. {
  34748. front: {
  34749. height: math.unit(5 + 3/12, "feet"),
  34750. name: "Front",
  34751. image: {
  34752. source: "./media/characters/stagglas/front.svg",
  34753. extra: 962/882,
  34754. bottom: 53/1015
  34755. }
  34756. },
  34757. feral: {
  34758. height: math.unit(335, "cm"),
  34759. name: "Feral",
  34760. image: {
  34761. source: "./media/characters/stagglas/feral.svg",
  34762. extra: 1732/1090,
  34763. bottom: 48/1780
  34764. }
  34765. },
  34766. },
  34767. [
  34768. {
  34769. name: "Normal",
  34770. height: math.unit(5 + 3/12, "feet"),
  34771. default: true
  34772. },
  34773. ]
  34774. ))
  34775. characterMakers.push(() => makeCharacter(
  34776. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34777. {
  34778. front: {
  34779. height: math.unit(5 + 4/12, "feet"),
  34780. weight: math.unit(145, "lb"),
  34781. name: "Front",
  34782. image: {
  34783. source: "./media/characters/starra/front.svg",
  34784. extra: 1790/1691,
  34785. bottom: 91/1881
  34786. }
  34787. },
  34788. },
  34789. [
  34790. {
  34791. name: "Normal",
  34792. height: math.unit(5 + 4/12, "feet"),
  34793. default: true
  34794. },
  34795. ]
  34796. ))
  34797. characterMakers.push(() => makeCharacter(
  34798. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34799. {
  34800. front: {
  34801. height: math.unit(2.2, "meters"),
  34802. name: "Front",
  34803. image: {
  34804. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34805. extra: 1194/1005,
  34806. bottom: 25/1219
  34807. }
  34808. },
  34809. },
  34810. [
  34811. {
  34812. name: "Normal",
  34813. height: math.unit(2.2, "meters"),
  34814. default: true
  34815. },
  34816. ]
  34817. ))
  34818. characterMakers.push(() => makeCharacter(
  34819. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34820. {
  34821. side: {
  34822. height: math.unit(8 + 2/12, "feet"),
  34823. weight: math.unit(1240, "lb"),
  34824. name: "Side",
  34825. image: {
  34826. source: "./media/characters/mika-valentine/side.svg",
  34827. extra: 2670/2501,
  34828. bottom: 250/2920
  34829. }
  34830. },
  34831. },
  34832. [
  34833. {
  34834. name: "Normal",
  34835. height: math.unit(8 + 2/12, "feet"),
  34836. default: true
  34837. },
  34838. ]
  34839. ))
  34840. characterMakers.push(() => makeCharacter(
  34841. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34842. {
  34843. front: {
  34844. height: math.unit(7 + 2/12, "feet"),
  34845. name: "Front",
  34846. image: {
  34847. source: "./media/characters/xoltol/front.svg",
  34848. extra: 2212/2124,
  34849. bottom: 84/2296
  34850. }
  34851. },
  34852. side: {
  34853. height: math.unit(7 + 2/12, "feet"),
  34854. name: "Side",
  34855. image: {
  34856. source: "./media/characters/xoltol/side.svg",
  34857. extra: 2273/2197,
  34858. bottom: 26/2299
  34859. }
  34860. },
  34861. hand: {
  34862. height: math.unit(2.5, "feet"),
  34863. name: "Hand",
  34864. image: {
  34865. source: "./media/characters/xoltol/hand.svg"
  34866. }
  34867. },
  34868. },
  34869. [
  34870. {
  34871. name: "Small-ish",
  34872. height: math.unit(5 + 11/12, "feet")
  34873. },
  34874. {
  34875. name: "Normal",
  34876. height: math.unit(7 + 2/12, "feet")
  34877. },
  34878. {
  34879. name: "\"Macro\"",
  34880. height: math.unit(14 + 9/12, "feet"),
  34881. default: true
  34882. },
  34883. {
  34884. name: "Alternate Height",
  34885. height: math.unit(20, "feet")
  34886. },
  34887. {
  34888. name: "Actually Macro",
  34889. height: math.unit(100, "feet")
  34890. },
  34891. ]
  34892. ))
  34893. characterMakers.push(() => makeCharacter(
  34894. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34895. {
  34896. front: {
  34897. height: math.unit(5 + 2/12, "feet"),
  34898. name: "Front",
  34899. image: {
  34900. source: "./media/characters/kotetsu-redwood/front.svg",
  34901. extra: 1053/942,
  34902. bottom: 60/1113
  34903. }
  34904. },
  34905. },
  34906. [
  34907. {
  34908. name: "Normal",
  34909. height: math.unit(5 + 2/12, "feet"),
  34910. default: true
  34911. },
  34912. ]
  34913. ))
  34914. characterMakers.push(() => makeCharacter(
  34915. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34916. {
  34917. front: {
  34918. height: math.unit(2.4, "meters"),
  34919. weight: math.unit(125, "kg"),
  34920. name: "Front",
  34921. image: {
  34922. source: "./media/characters/lilith/front.svg",
  34923. extra: 1590/1513,
  34924. bottom: 203/1793
  34925. }
  34926. },
  34927. },
  34928. [
  34929. {
  34930. name: "Humanoid",
  34931. height: math.unit(2.4, "meters")
  34932. },
  34933. {
  34934. name: "Normal",
  34935. height: math.unit(6, "meters"),
  34936. default: true
  34937. },
  34938. {
  34939. name: "Largest",
  34940. height: math.unit(55, "meters")
  34941. },
  34942. ]
  34943. ))
  34944. characterMakers.push(() => makeCharacter(
  34945. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34946. {
  34947. front: {
  34948. height: math.unit(8 + 4/12, "feet"),
  34949. weight: math.unit(535, "lb"),
  34950. name: "Front",
  34951. image: {
  34952. source: "./media/characters/beh'kah-bolger/front.svg",
  34953. extra: 1660/1603,
  34954. bottom: 37/1697
  34955. }
  34956. },
  34957. },
  34958. [
  34959. {
  34960. name: "Normal",
  34961. height: math.unit(8 + 4/12, "feet"),
  34962. default: true
  34963. },
  34964. {
  34965. name: "Kaiju",
  34966. height: math.unit(250, "feet")
  34967. },
  34968. {
  34969. name: "Still Growing",
  34970. height: math.unit(10, "miles")
  34971. },
  34972. {
  34973. name: "Continental",
  34974. height: math.unit(5000, "miles")
  34975. },
  34976. {
  34977. name: "Final Form",
  34978. height: math.unit(2500000, "miles")
  34979. },
  34980. ]
  34981. ))
  34982. characterMakers.push(() => makeCharacter(
  34983. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34984. {
  34985. front: {
  34986. height: math.unit(7 + 2/12, "feet"),
  34987. weight: math.unit(230, "kg"),
  34988. name: "Front",
  34989. image: {
  34990. source: "./media/characters/tatyana-milewska/front.svg",
  34991. extra: 1199/1150,
  34992. bottom: 86/1285
  34993. }
  34994. },
  34995. },
  34996. [
  34997. {
  34998. name: "Normal",
  34999. height: math.unit(7 + 2/12, "feet"),
  35000. default: true
  35001. },
  35002. {
  35003. name: "Big",
  35004. height: math.unit(12, "feet")
  35005. },
  35006. {
  35007. name: "Minimacro",
  35008. height: math.unit(20, "feet")
  35009. },
  35010. {
  35011. name: "Macro",
  35012. height: math.unit(120, "feet")
  35013. },
  35014. ]
  35015. ))
  35016. characterMakers.push(() => makeCharacter(
  35017. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35018. {
  35019. front: {
  35020. height: math.unit(7 + 8/12, "feet"),
  35021. weight: math.unit(152, "kg"),
  35022. name: "Front",
  35023. image: {
  35024. source: "./media/characters/helen-arri/front.svg",
  35025. extra: 440/423,
  35026. bottom: 14/454
  35027. }
  35028. },
  35029. back: {
  35030. height: math.unit(7 + 8/12, "feet"),
  35031. weight: math.unit(152, "kg"),
  35032. name: "Back",
  35033. image: {
  35034. source: "./media/characters/helen-arri/back.svg",
  35035. extra: 443/426,
  35036. bottom: 8/451
  35037. }
  35038. },
  35039. },
  35040. [
  35041. {
  35042. name: "Normal",
  35043. height: math.unit(7 + 8/12, "feet"),
  35044. default: true
  35045. },
  35046. {
  35047. name: "Big",
  35048. height: math.unit(14, "feet")
  35049. },
  35050. {
  35051. name: "Minimacro",
  35052. height: math.unit(24, "feet")
  35053. },
  35054. {
  35055. name: "Macro",
  35056. height: math.unit(140, "feet")
  35057. },
  35058. ]
  35059. ))
  35060. characterMakers.push(() => makeCharacter(
  35061. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35062. {
  35063. front: {
  35064. height: math.unit(6, "meters"),
  35065. name: "Front",
  35066. image: {
  35067. source: "./media/characters/ehanu-rehu/front.svg",
  35068. extra: 1800/1800,
  35069. bottom: 59/1859
  35070. }
  35071. },
  35072. },
  35073. [
  35074. {
  35075. name: "Normal",
  35076. height: math.unit(6, "meters"),
  35077. default: true
  35078. },
  35079. ]
  35080. ))
  35081. characterMakers.push(() => makeCharacter(
  35082. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35083. {
  35084. front: {
  35085. height: math.unit(7 + 3/12, "feet"),
  35086. name: "Front",
  35087. image: {
  35088. source: "./media/characters/renholder/front.svg",
  35089. extra: 3096/2960,
  35090. bottom: 250/3346
  35091. }
  35092. },
  35093. },
  35094. [
  35095. {
  35096. name: "Normal Bat",
  35097. height: math.unit(7 + 3/12, "feet"),
  35098. default: true
  35099. },
  35100. {
  35101. name: "Slightly Tall Bat",
  35102. height: math.unit(100, "feet")
  35103. },
  35104. {
  35105. name: "Big Bat",
  35106. height: math.unit(1000, "feet")
  35107. },
  35108. {
  35109. name: "City-Sized Bat",
  35110. height: math.unit(200000, "feet")
  35111. },
  35112. {
  35113. name: "Bigger Bat",
  35114. height: math.unit(10000, "miles")
  35115. },
  35116. {
  35117. name: "Solar Sized Bat",
  35118. height: math.unit(100, "AU")
  35119. },
  35120. {
  35121. name: "Galactic Bat",
  35122. height: math.unit(200000, "lightyears")
  35123. },
  35124. {
  35125. name: "Universally Known Bat",
  35126. height: math.unit(1, "universe")
  35127. },
  35128. ]
  35129. ))
  35130. characterMakers.push(() => makeCharacter(
  35131. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35132. {
  35133. front: {
  35134. height: math.unit(6 + 11/12, "feet"),
  35135. weight: math.unit(250, "lb"),
  35136. name: "Front",
  35137. image: {
  35138. source: "./media/characters/cookiecat/front.svg",
  35139. extra: 893/827,
  35140. bottom: 14/907
  35141. }
  35142. },
  35143. },
  35144. [
  35145. {
  35146. name: "Micro",
  35147. height: math.unit(3, "inches")
  35148. },
  35149. {
  35150. name: "Normal",
  35151. height: math.unit(6 + 11/12, "feet"),
  35152. default: true
  35153. },
  35154. {
  35155. name: "Macro",
  35156. height: math.unit(100, "feet")
  35157. },
  35158. {
  35159. name: "Macro+",
  35160. height: math.unit(404, "feet")
  35161. },
  35162. {
  35163. name: "Megamacro",
  35164. height: math.unit(165, "miles")
  35165. },
  35166. {
  35167. name: "Planetary",
  35168. height: math.unit(4600, "miles")
  35169. },
  35170. ]
  35171. ))
  35172. characterMakers.push(() => makeCharacter(
  35173. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35174. {
  35175. front: {
  35176. height: math.unit(10 + 3/12, "feet"),
  35177. weight: math.unit(1500, "lb"),
  35178. name: "Front",
  35179. image: {
  35180. source: "./media/characters/tux-kusanagi/front.svg",
  35181. extra: 944/840,
  35182. bottom: 39/983
  35183. }
  35184. },
  35185. back: {
  35186. height: math.unit(10 + 3/12, "feet"),
  35187. weight: math.unit(1500, "lb"),
  35188. name: "Back",
  35189. image: {
  35190. source: "./media/characters/tux-kusanagi/back.svg",
  35191. extra: 941/842,
  35192. bottom: 28/969
  35193. }
  35194. },
  35195. rump: {
  35196. height: math.unit(5.25, "feet"),
  35197. name: "Rump",
  35198. image: {
  35199. source: "./media/characters/tux-kusanagi/rump.svg"
  35200. }
  35201. },
  35202. beak: {
  35203. height: math.unit(1.54, "feet"),
  35204. name: "Beak",
  35205. image: {
  35206. source: "./media/characters/tux-kusanagi/beak.svg"
  35207. }
  35208. },
  35209. },
  35210. [
  35211. {
  35212. name: "Normal",
  35213. height: math.unit(10 + 3/12, "feet"),
  35214. default: true
  35215. },
  35216. ]
  35217. ))
  35218. characterMakers.push(() => makeCharacter(
  35219. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35220. {
  35221. front: {
  35222. height: math.unit(58, "feet"),
  35223. weight: math.unit(200, "tons"),
  35224. name: "Front",
  35225. image: {
  35226. source: "./media/characters/uzarmazari/front.svg",
  35227. extra: 1575/1455,
  35228. bottom: 152/1727
  35229. }
  35230. },
  35231. back: {
  35232. height: math.unit(58, "feet"),
  35233. weight: math.unit(200, "tons"),
  35234. name: "Back",
  35235. image: {
  35236. source: "./media/characters/uzarmazari/back.svg",
  35237. extra: 1585/1510,
  35238. bottom: 157/1742
  35239. }
  35240. },
  35241. head: {
  35242. height: math.unit(26, "feet"),
  35243. name: "Head",
  35244. image: {
  35245. source: "./media/characters/uzarmazari/head.svg"
  35246. }
  35247. },
  35248. },
  35249. [
  35250. {
  35251. name: "Normal",
  35252. height: math.unit(58, "feet"),
  35253. default: true
  35254. },
  35255. ]
  35256. ))
  35257. characterMakers.push(() => makeCharacter(
  35258. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35259. {
  35260. side: {
  35261. height: math.unit(15, "feet"),
  35262. name: "Side",
  35263. image: {
  35264. source: "./media/characters/akitu/side.svg",
  35265. extra: 1421/1321,
  35266. bottom: 157/1578
  35267. }
  35268. },
  35269. front: {
  35270. height: math.unit(15, "feet"),
  35271. name: "Front",
  35272. image: {
  35273. source: "./media/characters/akitu/front.svg",
  35274. extra: 1435/1326,
  35275. bottom: 232/1667
  35276. }
  35277. },
  35278. },
  35279. [
  35280. {
  35281. name: "Normal",
  35282. height: math.unit(15, "feet"),
  35283. default: true
  35284. },
  35285. ]
  35286. ))
  35287. characterMakers.push(() => makeCharacter(
  35288. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35289. {
  35290. front: {
  35291. height: math.unit(10 + 8/12, "feet"),
  35292. name: "Front",
  35293. image: {
  35294. source: "./media/characters/azalie-croixland/front.svg",
  35295. extra: 1972/1856,
  35296. bottom: 31/2003
  35297. }
  35298. },
  35299. },
  35300. [
  35301. {
  35302. name: "Original Height",
  35303. height: math.unit(5 + 4/12, "feet")
  35304. },
  35305. {
  35306. name: "Normal Height",
  35307. height: math.unit(10 + 8/12, "feet"),
  35308. default: true
  35309. },
  35310. ]
  35311. ))
  35312. characterMakers.push(() => makeCharacter(
  35313. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35314. {
  35315. side: {
  35316. height: math.unit(7 + 1/12, "feet"),
  35317. weight: math.unit(245, "lb"),
  35318. name: "Side",
  35319. image: {
  35320. source: "./media/characters/kavus-kazian/side.svg",
  35321. extra: 349/342,
  35322. bottom: 15/364
  35323. }
  35324. },
  35325. },
  35326. [
  35327. {
  35328. name: "Normal",
  35329. height: math.unit(7 + 1/12, "feet"),
  35330. default: true
  35331. },
  35332. ]
  35333. ))
  35334. characterMakers.push(() => makeCharacter(
  35335. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35336. {
  35337. normalFront: {
  35338. height: math.unit(5 + 11/12, "feet"),
  35339. name: "Front",
  35340. image: {
  35341. source: "./media/characters/moonlight-rose/normal-front.svg",
  35342. extra: 1980/1825,
  35343. bottom: 18/1998
  35344. },
  35345. form: "normal",
  35346. default: true
  35347. },
  35348. normalBack: {
  35349. height: math.unit(5 + 11/12, "feet"),
  35350. name: "Back",
  35351. image: {
  35352. source: "./media/characters/moonlight-rose/normal-back.svg",
  35353. extra: 2010/1839,
  35354. bottom: 10/2020
  35355. },
  35356. form: "normal"
  35357. },
  35358. demonFront: {
  35359. height: math.unit(1.5, "earths"),
  35360. name: "Front",
  35361. image: {
  35362. source: "./media/characters/moonlight-rose/demon.svg",
  35363. extra: 1400/1294,
  35364. bottom: 45/1445
  35365. },
  35366. form: "demon",
  35367. default: true
  35368. },
  35369. terraFront: {
  35370. height: math.unit(1.5, "earths"),
  35371. name: "Front",
  35372. image: {
  35373. source: "./media/characters/moonlight-rose/terra.svg"
  35374. },
  35375. form: "terra",
  35376. default: true
  35377. },
  35378. jupiterFront: {
  35379. height: math.unit(69911*2, "km"),
  35380. name: "Front",
  35381. image: {
  35382. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35383. extra: 1367/1286,
  35384. bottom: 55/1422
  35385. },
  35386. form: "jupiter",
  35387. default: true
  35388. },
  35389. neptuneFront: {
  35390. height: math.unit(24622*2, "feet"),
  35391. name: "Front",
  35392. image: {
  35393. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35394. extra: 1851/1712,
  35395. bottom: 0/1851
  35396. },
  35397. form: "neptune",
  35398. default: true
  35399. },
  35400. },
  35401. [
  35402. {
  35403. name: "\"Natural\" Height",
  35404. height: math.unit(5 + 11/12, "feet"),
  35405. form: "normal"
  35406. },
  35407. {
  35408. name: "Smallest comfortable size",
  35409. height: math.unit(40, "meters"),
  35410. form: "normal"
  35411. },
  35412. {
  35413. name: "Common size",
  35414. height: math.unit(50, "km"),
  35415. form: "normal",
  35416. default: true
  35417. },
  35418. {
  35419. name: "Normal",
  35420. height: math.unit(1.5, "earths"),
  35421. form: "demon",
  35422. default: true
  35423. },
  35424. {
  35425. name: "Universal",
  35426. height: math.unit(15, "universes"),
  35427. form: "demon"
  35428. },
  35429. {
  35430. name: "Earth",
  35431. height: math.unit(1.5, "earths"),
  35432. form: "terra",
  35433. default: true
  35434. },
  35435. {
  35436. name: "Super Earth",
  35437. height: math.unit(67.5, "earths"),
  35438. form: "terra"
  35439. },
  35440. {
  35441. name: "Doesn't fit in a solar system...",
  35442. height: math.unit(1, "galaxy"),
  35443. form: "terra"
  35444. },
  35445. {
  35446. name: "Saturn",
  35447. height: math.unit(58232*2, "km"),
  35448. form: "jupiter"
  35449. },
  35450. {
  35451. name: "Jupiter",
  35452. height: math.unit(69911*2, "km"),
  35453. form: "jupiter",
  35454. default: true
  35455. },
  35456. {
  35457. name: "HD 100546 b",
  35458. height: math.unit(482938, "km"),
  35459. form: "jupiter"
  35460. },
  35461. {
  35462. name: "Enceladus",
  35463. height: math.unit(513*2, "km"),
  35464. form: "neptune"
  35465. },
  35466. {
  35467. name: "Europe",
  35468. height: math.unit(1560*2, "km"),
  35469. form: "neptune"
  35470. },
  35471. {
  35472. name: "Neptune",
  35473. height: math.unit(24622*2, "km"),
  35474. form: "neptune",
  35475. default: true
  35476. },
  35477. {
  35478. name: "CoRoT-9b",
  35479. height: math.unit(75067*2, "km"),
  35480. form: "neptune"
  35481. },
  35482. ],
  35483. {
  35484. "normal": {
  35485. name: "Normal",
  35486. default: true
  35487. },
  35488. "demon": {
  35489. name: "Demon"
  35490. },
  35491. "terra": {
  35492. name: "Terra"
  35493. },
  35494. "jupiter": {
  35495. name: "Jupiter"
  35496. },
  35497. "neptune": {
  35498. name: "Neptune"
  35499. }
  35500. }
  35501. ))
  35502. characterMakers.push(() => makeCharacter(
  35503. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35504. {
  35505. front: {
  35506. height: math.unit(16, "feet"),
  35507. weight: math.unit(610, "kg"),
  35508. name: "Front",
  35509. image: {
  35510. source: "./media/characters/huckle/front.svg",
  35511. extra: 1731/1625,
  35512. bottom: 33/1764
  35513. }
  35514. },
  35515. back: {
  35516. height: math.unit(16, "feet"),
  35517. weight: math.unit(610, "kg"),
  35518. name: "Back",
  35519. image: {
  35520. source: "./media/characters/huckle/back.svg",
  35521. extra: 1738/1651,
  35522. bottom: 37/1775
  35523. }
  35524. },
  35525. laughing: {
  35526. height: math.unit(3.75, "feet"),
  35527. name: "Laughing",
  35528. image: {
  35529. source: "./media/characters/huckle/laughing.svg"
  35530. }
  35531. },
  35532. angry: {
  35533. height: math.unit(4.15, "feet"),
  35534. name: "Angry",
  35535. image: {
  35536. source: "./media/characters/huckle/angry.svg"
  35537. }
  35538. },
  35539. },
  35540. [
  35541. {
  35542. name: "Normal",
  35543. height: math.unit(16, "feet"),
  35544. default: true
  35545. },
  35546. {
  35547. name: "Mini Macro",
  35548. height: math.unit(463, "feet")
  35549. },
  35550. {
  35551. name: "Macro",
  35552. height: math.unit(1680, "meters")
  35553. },
  35554. {
  35555. name: "Mega Macro",
  35556. height: math.unit(175, "km")
  35557. },
  35558. {
  35559. name: "Terra Macro",
  35560. height: math.unit(32, "gigameters")
  35561. },
  35562. {
  35563. name: "Multiverse+",
  35564. height: math.unit(2.56e23, "yottameters")
  35565. },
  35566. ]
  35567. ))
  35568. characterMakers.push(() => makeCharacter(
  35569. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35570. {
  35571. front: {
  35572. height: math.unit(6 + 9/12, "feet"),
  35573. weight: math.unit(280, "lb"),
  35574. name: "Front",
  35575. image: {
  35576. source: "./media/characters/candy/front.svg",
  35577. extra: 234/217,
  35578. bottom: 11/245
  35579. }
  35580. },
  35581. },
  35582. [
  35583. {
  35584. name: "Really Small",
  35585. height: math.unit(0.1, "nm")
  35586. },
  35587. {
  35588. name: "Micro",
  35589. height: math.unit(2, "inches")
  35590. },
  35591. {
  35592. name: "Normal",
  35593. height: math.unit(6 + 9/12, "feet"),
  35594. default: true
  35595. },
  35596. {
  35597. name: "Small Macro",
  35598. height: math.unit(69, "feet")
  35599. },
  35600. {
  35601. name: "Macro",
  35602. height: math.unit(160, "feet")
  35603. },
  35604. {
  35605. name: "Megamacro",
  35606. height: math.unit(22000, "miles")
  35607. },
  35608. {
  35609. name: "Gigamacro",
  35610. height: math.unit(50000, "miles")
  35611. },
  35612. ]
  35613. ))
  35614. characterMakers.push(() => makeCharacter(
  35615. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35616. {
  35617. front: {
  35618. height: math.unit(4, "feet"),
  35619. weight: math.unit(90, "lb"),
  35620. name: "Front",
  35621. image: {
  35622. source: "./media/characters/joey-mcdonald/front.svg",
  35623. extra: 1059/852,
  35624. bottom: 33/1092
  35625. }
  35626. },
  35627. back: {
  35628. height: math.unit(4, "feet"),
  35629. weight: math.unit(90, "lb"),
  35630. name: "Back",
  35631. image: {
  35632. source: "./media/characters/joey-mcdonald/back.svg",
  35633. extra: 1077/879,
  35634. bottom: 5/1082
  35635. }
  35636. },
  35637. frontKobold: {
  35638. height: math.unit(4, "feet"),
  35639. weight: math.unit(100, "lb"),
  35640. name: "Front-kobold",
  35641. image: {
  35642. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35643. extra: 1480/1367,
  35644. bottom: 0/1480
  35645. }
  35646. },
  35647. backKobold: {
  35648. height: math.unit(4, "feet"),
  35649. weight: math.unit(100, "lb"),
  35650. name: "Back-kobold",
  35651. image: {
  35652. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35653. extra: 1449/1361,
  35654. bottom: 0/1449
  35655. }
  35656. },
  35657. },
  35658. [
  35659. {
  35660. name: "Normal",
  35661. height: math.unit(4, "feet"),
  35662. default: true
  35663. },
  35664. ]
  35665. ))
  35666. characterMakers.push(() => makeCharacter(
  35667. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35668. {
  35669. front: {
  35670. height: math.unit(12 + 6/12, "feet"),
  35671. name: "Front",
  35672. image: {
  35673. source: "./media/characters/kass-lockheed/front.svg",
  35674. extra: 354/343,
  35675. bottom: 9/363
  35676. }
  35677. },
  35678. back: {
  35679. height: math.unit(12 + 6/12, "feet"),
  35680. name: "Back",
  35681. image: {
  35682. source: "./media/characters/kass-lockheed/back.svg",
  35683. extra: 364/352,
  35684. bottom: 3/367
  35685. }
  35686. },
  35687. dick: {
  35688. height: math.unit(3.12, "feet"),
  35689. name: "Dick",
  35690. image: {
  35691. source: "./media/characters/kass-lockheed/dick.svg"
  35692. }
  35693. },
  35694. head: {
  35695. height: math.unit(2.6, "feet"),
  35696. name: "Head",
  35697. image: {
  35698. source: "./media/characters/kass-lockheed/head.svg"
  35699. }
  35700. },
  35701. bleh: {
  35702. height: math.unit(2.85, "feet"),
  35703. name: "Bleh",
  35704. image: {
  35705. source: "./media/characters/kass-lockheed/bleh.svg"
  35706. }
  35707. },
  35708. smug: {
  35709. height: math.unit(2.85, "feet"),
  35710. name: "Smug",
  35711. image: {
  35712. source: "./media/characters/kass-lockheed/smug.svg"
  35713. }
  35714. },
  35715. },
  35716. [
  35717. {
  35718. name: "Normal",
  35719. height: math.unit(12 + 6/12, "feet"),
  35720. default: true
  35721. },
  35722. ]
  35723. ))
  35724. characterMakers.push(() => makeCharacter(
  35725. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35726. {
  35727. front: {
  35728. height: math.unit(6 + 2/12, "feet"),
  35729. name: "Front",
  35730. image: {
  35731. source: "./media/characters/taylor/front.svg",
  35732. extra: 639/495,
  35733. bottom: 12/651
  35734. }
  35735. },
  35736. },
  35737. [
  35738. {
  35739. name: "Normal",
  35740. height: math.unit(6 + 2/12, "feet"),
  35741. default: true
  35742. },
  35743. {
  35744. name: "Big",
  35745. height: math.unit(15, "feet")
  35746. },
  35747. {
  35748. name: "Lorg",
  35749. height: math.unit(80, "feet")
  35750. },
  35751. {
  35752. name: "Too Lorg",
  35753. height: math.unit(120, "feet")
  35754. },
  35755. ]
  35756. ))
  35757. characterMakers.push(() => makeCharacter(
  35758. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35759. {
  35760. front: {
  35761. height: math.unit(15, "feet"),
  35762. name: "Front",
  35763. image: {
  35764. source: "./media/characters/kaizer/front.svg",
  35765. extra: 1612/1436,
  35766. bottom: 43/1655
  35767. }
  35768. },
  35769. },
  35770. [
  35771. {
  35772. name: "Normal",
  35773. height: math.unit(15, "feet"),
  35774. default: true
  35775. },
  35776. ]
  35777. ))
  35778. characterMakers.push(() => makeCharacter(
  35779. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35780. {
  35781. front: {
  35782. height: math.unit(2, "feet"),
  35783. weight: math.unit(30, "lb"),
  35784. name: "Front",
  35785. image: {
  35786. source: "./media/characters/sandy/front.svg",
  35787. extra: 1439/1307,
  35788. bottom: 194/1633
  35789. }
  35790. },
  35791. },
  35792. [
  35793. {
  35794. name: "Normal",
  35795. height: math.unit(2, "feet"),
  35796. default: true
  35797. },
  35798. ]
  35799. ))
  35800. characterMakers.push(() => makeCharacter(
  35801. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35802. {
  35803. front: {
  35804. height: math.unit(3, "feet"),
  35805. name: "Front",
  35806. image: {
  35807. source: "./media/characters/mellvi/front.svg",
  35808. extra: 1831/1630,
  35809. bottom: 58/1889
  35810. }
  35811. },
  35812. },
  35813. [
  35814. {
  35815. name: "Normal",
  35816. height: math.unit(3, "feet"),
  35817. default: true
  35818. },
  35819. ]
  35820. ))
  35821. characterMakers.push(() => makeCharacter(
  35822. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35823. {
  35824. front: {
  35825. height: math.unit(5 + 11/12, "feet"),
  35826. weight: math.unit(200, "lb"),
  35827. name: "Front",
  35828. image: {
  35829. source: "./media/characters/shirou/front.svg",
  35830. extra: 2491/2383,
  35831. bottom: 189/2680
  35832. }
  35833. },
  35834. back: {
  35835. height: math.unit(5 + 11/12, "feet"),
  35836. weight: math.unit(200, "lb"),
  35837. name: "Back",
  35838. image: {
  35839. source: "./media/characters/shirou/back.svg",
  35840. extra: 2554/2450,
  35841. bottom: 76/2630
  35842. }
  35843. },
  35844. },
  35845. [
  35846. {
  35847. name: "Normal",
  35848. height: math.unit(5 + 11/12, "feet"),
  35849. default: true
  35850. },
  35851. ]
  35852. ))
  35853. characterMakers.push(() => makeCharacter(
  35854. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35855. {
  35856. front: {
  35857. height: math.unit(6 + 3/12, "feet"),
  35858. weight: math.unit(177, "lb"),
  35859. name: "Front",
  35860. image: {
  35861. source: "./media/characters/noryu/front.svg",
  35862. extra: 973/885,
  35863. bottom: 10/983
  35864. }
  35865. },
  35866. },
  35867. [
  35868. {
  35869. name: "Normal",
  35870. height: math.unit(6 + 3/12, "feet"),
  35871. default: true
  35872. },
  35873. ]
  35874. ))
  35875. characterMakers.push(() => makeCharacter(
  35876. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35877. {
  35878. front: {
  35879. height: math.unit(5 + 6/12, "feet"),
  35880. weight: math.unit(170, "lb"),
  35881. name: "Front",
  35882. image: {
  35883. source: "./media/characters/mevolas-rubenido/front.svg",
  35884. extra: 2109/1901,
  35885. bottom: 96/2205
  35886. }
  35887. },
  35888. },
  35889. [
  35890. {
  35891. name: "Normal",
  35892. height: math.unit(5 + 6/12, "feet"),
  35893. default: true
  35894. },
  35895. ]
  35896. ))
  35897. characterMakers.push(() => makeCharacter(
  35898. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35899. {
  35900. front: {
  35901. height: math.unit(100, "feet"),
  35902. name: "Front",
  35903. image: {
  35904. source: "./media/characters/dee/front.svg",
  35905. extra: 2153/2036,
  35906. bottom: 59/2212
  35907. }
  35908. },
  35909. back: {
  35910. height: math.unit(100, "feet"),
  35911. name: "Back",
  35912. image: {
  35913. source: "./media/characters/dee/back.svg",
  35914. extra: 2183/2058,
  35915. bottom: 75/2258
  35916. }
  35917. },
  35918. foot: {
  35919. height: math.unit(19.43, "feet"),
  35920. name: "Foot",
  35921. image: {
  35922. source: "./media/characters/dee/foot.svg"
  35923. }
  35924. },
  35925. hoof: {
  35926. height: math.unit(20.6, "feet"),
  35927. name: "Hoof",
  35928. image: {
  35929. source: "./media/characters/dee/hoof.svg"
  35930. }
  35931. },
  35932. },
  35933. [
  35934. {
  35935. name: "Macro",
  35936. height: math.unit(100, "feet"),
  35937. default: true
  35938. },
  35939. ]
  35940. ))
  35941. characterMakers.push(() => makeCharacter(
  35942. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35943. {
  35944. front: {
  35945. height: math.unit(5 + 6/12, "feet"),
  35946. name: "Front",
  35947. image: {
  35948. source: "./media/characters/teh/front.svg",
  35949. extra: 1002/847,
  35950. bottom: 62/1064
  35951. }
  35952. },
  35953. },
  35954. [
  35955. {
  35956. name: "Normal",
  35957. height: math.unit(5 + 6/12, "feet"),
  35958. default: true
  35959. },
  35960. ]
  35961. ))
  35962. characterMakers.push(() => makeCharacter(
  35963. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35964. {
  35965. side: {
  35966. height: math.unit(6 + 1/12, "feet"),
  35967. weight: math.unit(204, "lb"),
  35968. name: "Side",
  35969. image: {
  35970. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35971. extra: 974/775,
  35972. bottom: 169/1143
  35973. }
  35974. },
  35975. sitting: {
  35976. height: math.unit(6 + 2/12, "feet"),
  35977. weight: math.unit(204, "lb"),
  35978. name: "Sitting",
  35979. image: {
  35980. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35981. extra: 1175/964,
  35982. bottom: 378/1553
  35983. }
  35984. },
  35985. },
  35986. [
  35987. {
  35988. name: "Normal",
  35989. height: math.unit(6 + 1/12, "feet"),
  35990. default: true
  35991. },
  35992. ]
  35993. ))
  35994. characterMakers.push(() => makeCharacter(
  35995. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35996. {
  35997. front: {
  35998. height: math.unit(6, "inches"),
  35999. name: "Front",
  36000. image: {
  36001. source: "./media/characters/tululi/front.svg",
  36002. extra: 1997/1876,
  36003. bottom: 20/2017
  36004. }
  36005. },
  36006. },
  36007. [
  36008. {
  36009. name: "Normal",
  36010. height: math.unit(6, "inches"),
  36011. default: true
  36012. },
  36013. ]
  36014. ))
  36015. characterMakers.push(() => makeCharacter(
  36016. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36017. {
  36018. front: {
  36019. height: math.unit(4 + 1/12, "feet"),
  36020. name: "Front",
  36021. image: {
  36022. source: "./media/characters/star/front.svg",
  36023. extra: 1493/1189,
  36024. bottom: 48/1541
  36025. }
  36026. },
  36027. },
  36028. [
  36029. {
  36030. name: "Normal",
  36031. height: math.unit(4 + 1/12, "feet"),
  36032. default: true
  36033. },
  36034. ]
  36035. ))
  36036. characterMakers.push(() => makeCharacter(
  36037. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36038. {
  36039. front: {
  36040. height: math.unit(6 + 3/12, "feet"),
  36041. name: "Front",
  36042. image: {
  36043. source: "./media/characters/comet/front.svg",
  36044. extra: 1681/1462,
  36045. bottom: 26/1707
  36046. }
  36047. },
  36048. },
  36049. [
  36050. {
  36051. name: "Normal",
  36052. height: math.unit(6 + 3/12, "feet"),
  36053. default: true
  36054. },
  36055. ]
  36056. ))
  36057. characterMakers.push(() => makeCharacter(
  36058. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36059. {
  36060. front: {
  36061. height: math.unit(950, "feet"),
  36062. name: "Front",
  36063. image: {
  36064. source: "./media/characters/vortex/front.svg",
  36065. extra: 1497/1434,
  36066. bottom: 56/1553
  36067. }
  36068. },
  36069. maw: {
  36070. height: math.unit(285, "feet"),
  36071. name: "Maw",
  36072. image: {
  36073. source: "./media/characters/vortex/maw.svg"
  36074. }
  36075. },
  36076. },
  36077. [
  36078. {
  36079. name: "Macro",
  36080. height: math.unit(950, "feet"),
  36081. default: true
  36082. },
  36083. ]
  36084. ))
  36085. characterMakers.push(() => makeCharacter(
  36086. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36087. {
  36088. front: {
  36089. height: math.unit(600, "feet"),
  36090. weight: math.unit(0.02, "grams"),
  36091. name: "Front",
  36092. image: {
  36093. source: "./media/characters/doodle/front.svg",
  36094. extra: 1578/1413,
  36095. bottom: 37/1615
  36096. }
  36097. },
  36098. },
  36099. [
  36100. {
  36101. name: "Macro",
  36102. height: math.unit(600, "feet"),
  36103. default: true
  36104. },
  36105. ]
  36106. ))
  36107. characterMakers.push(() => makeCharacter(
  36108. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36109. {
  36110. front: {
  36111. height: math.unit(6 + 6/12, "feet"),
  36112. name: "Front",
  36113. image: {
  36114. source: "./media/characters/jai/front.svg",
  36115. extra: 1645/1534,
  36116. bottom: 115/1760
  36117. }
  36118. },
  36119. },
  36120. [
  36121. {
  36122. name: "Normal",
  36123. height: math.unit(6 + 6/12, "feet"),
  36124. default: true
  36125. },
  36126. ]
  36127. ))
  36128. characterMakers.push(() => makeCharacter(
  36129. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36130. {
  36131. front: {
  36132. height: math.unit(6 + 8/12, "feet"),
  36133. name: "Front",
  36134. image: {
  36135. source: "./media/characters/pixel/front.svg",
  36136. extra: 1900/1735,
  36137. bottom: 63/1963
  36138. }
  36139. },
  36140. },
  36141. [
  36142. {
  36143. name: "Normal",
  36144. height: math.unit(6 + 8/12, "feet"),
  36145. default: true
  36146. },
  36147. ]
  36148. ))
  36149. characterMakers.push(() => makeCharacter(
  36150. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36151. {
  36152. back: {
  36153. height: math.unit(4 + 1/12, "feet"),
  36154. weight: math.unit(75, "lb"),
  36155. name: "Back",
  36156. image: {
  36157. source: "./media/characters/rhett/back.svg",
  36158. extra: 930/878,
  36159. bottom: 25/955
  36160. }
  36161. },
  36162. front: {
  36163. height: math.unit(4 + 1/12, "feet"),
  36164. weight: math.unit(75, "lb"),
  36165. name: "Front",
  36166. image: {
  36167. source: "./media/characters/rhett/front.svg",
  36168. extra: 1682/1586,
  36169. bottom: 92/1774
  36170. }
  36171. },
  36172. },
  36173. [
  36174. {
  36175. name: "Micro",
  36176. height: math.unit(8, "inches")
  36177. },
  36178. {
  36179. name: "Tiny",
  36180. height: math.unit(2, "feet")
  36181. },
  36182. {
  36183. name: "Normal",
  36184. height: math.unit(4 + 1/12, "feet"),
  36185. default: true
  36186. },
  36187. ]
  36188. ))
  36189. characterMakers.push(() => makeCharacter(
  36190. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36191. {
  36192. front: {
  36193. height: math.unit(3 + 3/12, "feet"),
  36194. name: "Front",
  36195. image: {
  36196. source: "./media/characters/penny/front.svg",
  36197. extra: 1406/1311,
  36198. bottom: 26/1432
  36199. }
  36200. },
  36201. },
  36202. [
  36203. {
  36204. name: "Normal",
  36205. height: math.unit(3 + 3/12, "feet"),
  36206. default: true
  36207. },
  36208. ]
  36209. ))
  36210. characterMakers.push(() => makeCharacter(
  36211. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36212. {
  36213. front: {
  36214. height: math.unit(4 + 11/12, "feet"),
  36215. name: "Front",
  36216. image: {
  36217. source: "./media/characters/monty/front.svg",
  36218. extra: 1479/1209,
  36219. bottom: 0/1479
  36220. }
  36221. },
  36222. },
  36223. [
  36224. {
  36225. name: "Normal",
  36226. height: math.unit(4 + 11/12, "feet"),
  36227. default: true
  36228. },
  36229. ]
  36230. ))
  36231. characterMakers.push(() => makeCharacter(
  36232. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36233. {
  36234. front: {
  36235. height: math.unit(8 + 4/12, "feet"),
  36236. name: "Front",
  36237. image: {
  36238. source: "./media/characters/sterling/front.svg",
  36239. extra: 1420/1236,
  36240. bottom: 27/1447
  36241. }
  36242. },
  36243. },
  36244. [
  36245. {
  36246. name: "Normal",
  36247. height: math.unit(8 + 4/12, "feet"),
  36248. default: true
  36249. },
  36250. ]
  36251. ))
  36252. characterMakers.push(() => makeCharacter(
  36253. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36254. {
  36255. front: {
  36256. height: math.unit(15, "feet"),
  36257. name: "Front",
  36258. image: {
  36259. source: "./media/characters/marble/front.svg",
  36260. extra: 973/937,
  36261. bottom: 32/1005
  36262. }
  36263. },
  36264. },
  36265. [
  36266. {
  36267. name: "Normal",
  36268. height: math.unit(15, "feet"),
  36269. default: true
  36270. },
  36271. ]
  36272. ))
  36273. characterMakers.push(() => makeCharacter(
  36274. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36275. {
  36276. front: {
  36277. height: math.unit(3, "inches"),
  36278. name: "Front",
  36279. image: {
  36280. source: "./media/characters/powder/front.svg",
  36281. extra: 1504/1334,
  36282. bottom: 518/2022
  36283. }
  36284. },
  36285. },
  36286. [
  36287. {
  36288. name: "Normal",
  36289. height: math.unit(3, "inches"),
  36290. default: true
  36291. },
  36292. ]
  36293. ))
  36294. characterMakers.push(() => makeCharacter(
  36295. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36296. {
  36297. front: {
  36298. height: math.unit(4 + 5/12, "feet"),
  36299. name: "Front",
  36300. image: {
  36301. source: "./media/characters/joey-raccoon/front.svg",
  36302. extra: 1273/1197,
  36303. bottom: 0/1273
  36304. }
  36305. },
  36306. },
  36307. [
  36308. {
  36309. name: "Normal",
  36310. height: math.unit(4 + 5/12, "feet"),
  36311. default: true
  36312. },
  36313. ]
  36314. ))
  36315. characterMakers.push(() => makeCharacter(
  36316. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36317. {
  36318. front: {
  36319. height: math.unit(8 + 4/12, "feet"),
  36320. name: "Front",
  36321. image: {
  36322. source: "./media/characters/vick/front.svg",
  36323. extra: 2187/2118,
  36324. bottom: 47/2234
  36325. }
  36326. },
  36327. },
  36328. [
  36329. {
  36330. name: "Normal",
  36331. height: math.unit(8 + 4/12, "feet"),
  36332. default: true
  36333. },
  36334. ]
  36335. ))
  36336. characterMakers.push(() => makeCharacter(
  36337. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36338. {
  36339. front: {
  36340. height: math.unit(5 + 5/12, "feet"),
  36341. name: "Front",
  36342. image: {
  36343. source: "./media/characters/mitsy/front.svg",
  36344. extra: 1842/1695,
  36345. bottom: 0/1842
  36346. }
  36347. },
  36348. },
  36349. [
  36350. {
  36351. name: "Normal",
  36352. height: math.unit(5 + 5/12, "feet"),
  36353. default: true
  36354. },
  36355. ]
  36356. ))
  36357. characterMakers.push(() => makeCharacter(
  36358. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36359. {
  36360. front: {
  36361. height: math.unit(6 + 3/12, "feet"),
  36362. name: "Front",
  36363. image: {
  36364. source: "./media/characters/silvy/front.svg",
  36365. extra: 1995/1836,
  36366. bottom: 225/2220
  36367. }
  36368. },
  36369. },
  36370. [
  36371. {
  36372. name: "Normal",
  36373. height: math.unit(6 + 3/12, "feet"),
  36374. default: true
  36375. },
  36376. ]
  36377. ))
  36378. characterMakers.push(() => makeCharacter(
  36379. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36380. {
  36381. front: {
  36382. height: math.unit(3 + 8/12, "feet"),
  36383. name: "Front",
  36384. image: {
  36385. source: "./media/characters/rodney/front.svg",
  36386. extra: 1956/1747,
  36387. bottom: 31/1987
  36388. }
  36389. },
  36390. frontDressed: {
  36391. height: math.unit(2.9, "feet"),
  36392. name: "Front (Dressed)",
  36393. image: {
  36394. source: "./media/characters/rodney/front-dressed.svg",
  36395. extra: 1382/1241,
  36396. bottom: 385/1767
  36397. }
  36398. },
  36399. },
  36400. [
  36401. {
  36402. name: "Normal",
  36403. height: math.unit(3 + 8/12, "feet"),
  36404. default: true
  36405. },
  36406. ]
  36407. ))
  36408. characterMakers.push(() => makeCharacter(
  36409. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36410. {
  36411. front: {
  36412. height: math.unit(5 + 9/12, "feet"),
  36413. weight: math.unit(194, "lbs"),
  36414. name: "Front",
  36415. image: {
  36416. source: "./media/characters/zakail-sudekai/front.svg",
  36417. extra: 2696/2533,
  36418. bottom: 248/2944
  36419. }
  36420. },
  36421. maw: {
  36422. height: math.unit(1.35, "feet"),
  36423. name: "Maw",
  36424. image: {
  36425. source: "./media/characters/zakail-sudekai/maw.svg"
  36426. }
  36427. },
  36428. },
  36429. [
  36430. {
  36431. name: "Normal",
  36432. height: math.unit(5 + 9/12, "feet"),
  36433. default: true
  36434. },
  36435. ]
  36436. ))
  36437. characterMakers.push(() => makeCharacter(
  36438. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36439. {
  36440. front: {
  36441. height: math.unit(8 + 4/12, "feet"),
  36442. weight: math.unit(1200, "lb"),
  36443. name: "Front",
  36444. image: {
  36445. source: "./media/characters/eleanor/front.svg",
  36446. extra: 1226/1192,
  36447. bottom: 52/1278
  36448. }
  36449. },
  36450. back: {
  36451. height: math.unit(8 + 4/12, "feet"),
  36452. weight: math.unit(1200, "lb"),
  36453. name: "Back",
  36454. image: {
  36455. source: "./media/characters/eleanor/back.svg",
  36456. extra: 1242/1184,
  36457. bottom: 60/1302
  36458. }
  36459. },
  36460. head: {
  36461. height: math.unit(2.62, "feet"),
  36462. name: "Head",
  36463. image: {
  36464. source: "./media/characters/eleanor/head.svg"
  36465. }
  36466. },
  36467. },
  36468. [
  36469. {
  36470. name: "Normal",
  36471. height: math.unit(8 + 4/12, "feet"),
  36472. default: true
  36473. },
  36474. ]
  36475. ))
  36476. characterMakers.push(() => makeCharacter(
  36477. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36478. {
  36479. front: {
  36480. height: math.unit(8 + 4/12, "feet"),
  36481. weight: math.unit(750, "lb"),
  36482. name: "Front",
  36483. image: {
  36484. source: "./media/characters/tanya/front.svg",
  36485. extra: 1749/1615,
  36486. bottom: 33/1782
  36487. }
  36488. },
  36489. },
  36490. [
  36491. {
  36492. name: "Normal",
  36493. height: math.unit(8 + 4/12, "feet"),
  36494. default: true
  36495. },
  36496. ]
  36497. ))
  36498. characterMakers.push(() => makeCharacter(
  36499. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36500. {
  36501. front: {
  36502. height: math.unit(5, "feet"),
  36503. weight: math.unit(225, "lb"),
  36504. name: "Front",
  36505. image: {
  36506. source: "./media/characters/cindy/front.svg",
  36507. extra: 1320/1250,
  36508. bottom: 42/1362
  36509. }
  36510. },
  36511. frontDressed: {
  36512. height: math.unit(5, "feet"),
  36513. weight: math.unit(225, "lb"),
  36514. name: "Front (Dressed)",
  36515. image: {
  36516. source: "./media/characters/cindy/front-dressed.svg",
  36517. extra: 1320/1250,
  36518. bottom: 42/1362
  36519. }
  36520. },
  36521. back: {
  36522. height: math.unit(5, "feet"),
  36523. weight: math.unit(225, "lb"),
  36524. name: "Back",
  36525. image: {
  36526. source: "./media/characters/cindy/back.svg",
  36527. extra: 1384/1346,
  36528. bottom: 14/1398
  36529. }
  36530. },
  36531. },
  36532. [
  36533. {
  36534. name: "Normal",
  36535. height: math.unit(5, "feet"),
  36536. default: true
  36537. },
  36538. ]
  36539. ))
  36540. characterMakers.push(() => makeCharacter(
  36541. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36542. {
  36543. front: {
  36544. height: math.unit(6 + 9/12, "feet"),
  36545. weight: math.unit(440, "lb"),
  36546. name: "Front",
  36547. image: {
  36548. source: "./media/characters/wilbur-owen/front.svg",
  36549. extra: 1575/1448,
  36550. bottom: 72/1647
  36551. }
  36552. },
  36553. back: {
  36554. height: math.unit(6 + 9/12, "feet"),
  36555. weight: math.unit(440, "lb"),
  36556. name: "Back",
  36557. image: {
  36558. source: "./media/characters/wilbur-owen/back.svg",
  36559. extra: 1578/1445,
  36560. bottom: 36/1614
  36561. }
  36562. },
  36563. },
  36564. [
  36565. {
  36566. name: "Normal",
  36567. height: math.unit(6 + 9/12, "feet"),
  36568. default: true
  36569. },
  36570. ]
  36571. ))
  36572. characterMakers.push(() => makeCharacter(
  36573. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36574. {
  36575. front: {
  36576. height: math.unit(6 + 5/12, "feet"),
  36577. weight: math.unit(650, "lb"),
  36578. name: "Front",
  36579. image: {
  36580. source: "./media/characters/keegan/front.svg",
  36581. extra: 2387/2198,
  36582. bottom: 33/2420
  36583. }
  36584. },
  36585. side: {
  36586. height: math.unit(6 + 5/12, "feet"),
  36587. weight: math.unit(650, "lb"),
  36588. name: "Side",
  36589. image: {
  36590. source: "./media/characters/keegan/side.svg",
  36591. extra: 2390/2202,
  36592. bottom: 47/2437
  36593. }
  36594. },
  36595. back: {
  36596. height: math.unit(6 + 5/12, "feet"),
  36597. weight: math.unit(650, "lb"),
  36598. name: "Back",
  36599. image: {
  36600. source: "./media/characters/keegan/back.svg",
  36601. extra: 2418/2268,
  36602. bottom: 15/2433
  36603. }
  36604. },
  36605. frontSfw: {
  36606. height: math.unit(6 + 5/12, "feet"),
  36607. weight: math.unit(650, "lb"),
  36608. name: "Front (SFW)",
  36609. image: {
  36610. source: "./media/characters/keegan/front-sfw.svg",
  36611. extra: 2387/2198,
  36612. bottom: 33/2420
  36613. }
  36614. },
  36615. beans: {
  36616. height: math.unit(1.85, "feet"),
  36617. name: "Beans",
  36618. image: {
  36619. source: "./media/characters/keegan/beans.svg"
  36620. }
  36621. },
  36622. },
  36623. [
  36624. {
  36625. name: "Normal",
  36626. height: math.unit(6 + 5/12, "feet"),
  36627. default: true
  36628. },
  36629. ]
  36630. ))
  36631. characterMakers.push(() => makeCharacter(
  36632. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36633. {
  36634. front: {
  36635. height: math.unit(9, "feet"),
  36636. name: "Front",
  36637. image: {
  36638. source: "./media/characters/colton/front.svg",
  36639. extra: 1589/1326,
  36640. bottom: 139/1728
  36641. }
  36642. },
  36643. },
  36644. [
  36645. {
  36646. name: "Normal",
  36647. height: math.unit(9, "feet"),
  36648. default: true
  36649. },
  36650. ]
  36651. ))
  36652. characterMakers.push(() => makeCharacter(
  36653. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36654. {
  36655. front: {
  36656. height: math.unit(2 + 9/12, "feet"),
  36657. name: "Front",
  36658. image: {
  36659. source: "./media/characters/bora/front.svg",
  36660. extra: 1265/1250,
  36661. bottom: 24/1289
  36662. }
  36663. },
  36664. },
  36665. [
  36666. {
  36667. name: "Normal",
  36668. height: math.unit(2 + 9/12, "feet"),
  36669. default: true
  36670. },
  36671. ]
  36672. ))
  36673. characterMakers.push(() => makeCharacter(
  36674. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36675. {
  36676. front: {
  36677. height: math.unit(8, "feet"),
  36678. name: "Front",
  36679. image: {
  36680. source: "./media/characters/myu-myu/front.svg",
  36681. extra: 1949/1857,
  36682. bottom: 90/2039
  36683. }
  36684. },
  36685. },
  36686. [
  36687. {
  36688. name: "Normal",
  36689. height: math.unit(8, "feet"),
  36690. default: true
  36691. },
  36692. {
  36693. name: "Big",
  36694. height: math.unit(15, "feet")
  36695. },
  36696. {
  36697. name: "BIG",
  36698. height: math.unit(25, "feet")
  36699. },
  36700. ]
  36701. ))
  36702. characterMakers.push(() => makeCharacter(
  36703. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36704. {
  36705. side: {
  36706. height: math.unit(7 + 5/12, "feet"),
  36707. weight: math.unit(2800, "lb"),
  36708. name: "Side",
  36709. image: {
  36710. source: "./media/characters/haloren/side.svg",
  36711. extra: 1793/409,
  36712. bottom: 59/1852
  36713. }
  36714. },
  36715. frontPaw: {
  36716. height: math.unit(2.36, "feet"),
  36717. name: "Front paw",
  36718. image: {
  36719. source: "./media/characters/haloren/front-paw.svg"
  36720. }
  36721. },
  36722. hindPaw: {
  36723. height: math.unit(3.18, "feet"),
  36724. name: "Hind paw",
  36725. image: {
  36726. source: "./media/characters/haloren/hind-paw.svg"
  36727. }
  36728. },
  36729. maw: {
  36730. height: math.unit(5.05, "feet"),
  36731. name: "Maw",
  36732. image: {
  36733. source: "./media/characters/haloren/maw.svg"
  36734. }
  36735. },
  36736. dick: {
  36737. height: math.unit(2.90, "feet"),
  36738. name: "Dick",
  36739. image: {
  36740. source: "./media/characters/haloren/dick.svg"
  36741. }
  36742. },
  36743. },
  36744. [
  36745. {
  36746. name: "Normal",
  36747. height: math.unit(7 + 5/12, "feet"),
  36748. default: true
  36749. },
  36750. {
  36751. name: "Enhanced",
  36752. height: math.unit(14 + 3/12, "feet")
  36753. },
  36754. ]
  36755. ))
  36756. characterMakers.push(() => makeCharacter(
  36757. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36758. {
  36759. front: {
  36760. height: math.unit(171, "cm"),
  36761. name: "Front",
  36762. image: {
  36763. source: "./media/characters/kimmy/front.svg",
  36764. extra: 1491/1435,
  36765. bottom: 53/1544
  36766. }
  36767. },
  36768. },
  36769. [
  36770. {
  36771. name: "Small",
  36772. height: math.unit(9, "cm")
  36773. },
  36774. {
  36775. name: "Normal",
  36776. height: math.unit(171, "cm"),
  36777. default: true
  36778. },
  36779. ]
  36780. ))
  36781. characterMakers.push(() => makeCharacter(
  36782. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36783. {
  36784. front: {
  36785. height: math.unit(8, "feet"),
  36786. weight: math.unit(300, "lb"),
  36787. name: "Front",
  36788. image: {
  36789. source: "./media/characters/galeboomer/front.svg",
  36790. extra: 4651/4415,
  36791. bottom: 162/4813
  36792. }
  36793. },
  36794. back: {
  36795. height: math.unit(8, "feet"),
  36796. weight: math.unit(300, "lb"),
  36797. name: "Back",
  36798. image: {
  36799. source: "./media/characters/galeboomer/back.svg",
  36800. extra: 4544/4314,
  36801. bottom: 16/4560
  36802. }
  36803. },
  36804. frontAlt: {
  36805. height: math.unit(8, "feet"),
  36806. weight: math.unit(300, "lb"),
  36807. name: "Front (Alt)",
  36808. image: {
  36809. source: "./media/characters/galeboomer/front-alt.svg",
  36810. extra: 4458/4228,
  36811. bottom: 68/4526
  36812. }
  36813. },
  36814. maw: {
  36815. height: math.unit(1.2, "feet"),
  36816. name: "Maw",
  36817. image: {
  36818. source: "./media/characters/galeboomer/maw.svg"
  36819. }
  36820. },
  36821. },
  36822. [
  36823. {
  36824. name: "Normal",
  36825. height: math.unit(8, "feet"),
  36826. default: true
  36827. },
  36828. ]
  36829. ))
  36830. characterMakers.push(() => makeCharacter(
  36831. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36832. {
  36833. front: {
  36834. height: math.unit(5 + 9/12, "feet"),
  36835. weight: math.unit(120, "lb"),
  36836. name: "Front",
  36837. image: {
  36838. source: "./media/characters/chyr/front.svg",
  36839. extra: 1323/1254,
  36840. bottom: 63/1386
  36841. }
  36842. },
  36843. back: {
  36844. height: math.unit(5 + 9/12, "feet"),
  36845. weight: math.unit(120, "lb"),
  36846. name: "Back",
  36847. image: {
  36848. source: "./media/characters/chyr/back.svg",
  36849. extra: 1323/1252,
  36850. bottom: 48/1371
  36851. }
  36852. },
  36853. },
  36854. [
  36855. {
  36856. name: "Normal",
  36857. height: math.unit(5 + 9/12, "feet"),
  36858. default: true
  36859. },
  36860. ]
  36861. ))
  36862. characterMakers.push(() => makeCharacter(
  36863. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36864. {
  36865. front: {
  36866. height: math.unit(7, "feet"),
  36867. weight: math.unit(310, "lb"),
  36868. name: "Front",
  36869. image: {
  36870. source: "./media/characters/solarus/front.svg",
  36871. extra: 2415/2021,
  36872. bottom: 103/2518
  36873. }
  36874. },
  36875. back: {
  36876. height: math.unit(7, "feet"),
  36877. weight: math.unit(310, "lb"),
  36878. name: "Back",
  36879. image: {
  36880. source: "./media/characters/solarus/back.svg",
  36881. extra: 2463/2089,
  36882. bottom: 79/2542
  36883. }
  36884. },
  36885. },
  36886. [
  36887. {
  36888. name: "Normal",
  36889. height: math.unit(7, "feet"),
  36890. default: true
  36891. },
  36892. ]
  36893. ))
  36894. characterMakers.push(() => makeCharacter(
  36895. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36896. {
  36897. front: {
  36898. height: math.unit(16, "feet"),
  36899. name: "Front",
  36900. image: {
  36901. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36902. extra: 1844/1780,
  36903. bottom: 58/1902
  36904. }
  36905. },
  36906. winterCoat: {
  36907. height: math.unit(16, "feet"),
  36908. name: "Winter Coat",
  36909. image: {
  36910. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36911. extra: 1807/1775,
  36912. bottom: 69/1876
  36913. }
  36914. },
  36915. },
  36916. [
  36917. {
  36918. name: "Normal",
  36919. height: math.unit(16, "feet"),
  36920. default: true
  36921. },
  36922. {
  36923. name: "Chicago Size",
  36924. height: math.unit(560, "feet")
  36925. },
  36926. ]
  36927. ))
  36928. characterMakers.push(() => makeCharacter(
  36929. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36930. {
  36931. front: {
  36932. height: math.unit(11 + 6/12, "feet"),
  36933. weight: math.unit(1366, "lb"),
  36934. name: "Front",
  36935. image: {
  36936. source: "./media/characters/lexor/front.svg",
  36937. extra: 1560/1481,
  36938. bottom: 211/1771
  36939. }
  36940. },
  36941. back: {
  36942. height: math.unit(11 + 6/12, "feet"),
  36943. weight: math.unit(1366, "lb"),
  36944. name: "Back",
  36945. image: {
  36946. source: "./media/characters/lexor/back.svg",
  36947. extra: 1614/1533,
  36948. bottom: 76/1690
  36949. }
  36950. },
  36951. maw: {
  36952. height: math.unit(3, "feet"),
  36953. name: "Maw",
  36954. image: {
  36955. source: "./media/characters/lexor/maw.svg"
  36956. }
  36957. },
  36958. dick: {
  36959. height: math.unit(2.59, "feet"),
  36960. name: "Dick",
  36961. image: {
  36962. source: "./media/characters/lexor/dick.svg"
  36963. }
  36964. },
  36965. },
  36966. [
  36967. {
  36968. name: "Normal",
  36969. height: math.unit(11 + 6/12, "feet"),
  36970. default: true
  36971. },
  36972. ]
  36973. ))
  36974. characterMakers.push(() => makeCharacter(
  36975. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36976. {
  36977. front: {
  36978. height: math.unit(5 + 8/12, "feet"),
  36979. name: "Front",
  36980. image: {
  36981. source: "./media/characters/magnum/front.svg",
  36982. extra: 942/855,
  36983. bottom: 26/968
  36984. }
  36985. },
  36986. },
  36987. [
  36988. {
  36989. name: "Normal",
  36990. height: math.unit(5 + 8/12, "feet"),
  36991. default: true
  36992. },
  36993. ]
  36994. ))
  36995. characterMakers.push(() => makeCharacter(
  36996. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36997. {
  36998. front: {
  36999. height: math.unit(18 + 4/12, "feet"),
  37000. weight: math.unit(1500, "kg"),
  37001. name: "Front",
  37002. image: {
  37003. source: "./media/characters/solas-sharpsman/front.svg",
  37004. extra: 1698/1589,
  37005. bottom: 0/1698
  37006. }
  37007. },
  37008. },
  37009. [
  37010. {
  37011. name: "Normal",
  37012. height: math.unit(18 + 4/12, "feet"),
  37013. default: true
  37014. },
  37015. ]
  37016. ))
  37017. characterMakers.push(() => makeCharacter(
  37018. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37019. {
  37020. front: {
  37021. height: math.unit(5 + 5/12, "feet"),
  37022. weight: math.unit(180, "lb"),
  37023. name: "Front",
  37024. image: {
  37025. source: "./media/characters/october/front.svg",
  37026. extra: 1800/1650,
  37027. bottom: 0/1800
  37028. }
  37029. },
  37030. frontNsfw: {
  37031. height: math.unit(5 + 5/12, "feet"),
  37032. weight: math.unit(180, "lb"),
  37033. name: "Front (NSFW)",
  37034. image: {
  37035. source: "./media/characters/october/front-nsfw.svg",
  37036. extra: 1392/1307,
  37037. bottom: 42/1434
  37038. }
  37039. },
  37040. },
  37041. [
  37042. {
  37043. name: "Normal",
  37044. height: math.unit(5 + 5/12, "feet"),
  37045. default: true
  37046. },
  37047. ]
  37048. ))
  37049. characterMakers.push(() => makeCharacter(
  37050. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37051. {
  37052. front: {
  37053. height: math.unit(8 + 6/12, "feet"),
  37054. name: "Front",
  37055. image: {
  37056. source: "./media/characters/essynkardi/front.svg",
  37057. extra: 1914/1846,
  37058. bottom: 22/1936
  37059. }
  37060. },
  37061. },
  37062. [
  37063. {
  37064. name: "Normal",
  37065. height: math.unit(8 + 6/12, "feet"),
  37066. default: true
  37067. },
  37068. ]
  37069. ))
  37070. characterMakers.push(() => makeCharacter(
  37071. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37072. {
  37073. front: {
  37074. height: math.unit(6 + 6/12, "feet"),
  37075. weight: math.unit(7, "lb"),
  37076. name: "Front",
  37077. image: {
  37078. source: "./media/characters/icky/front.svg",
  37079. extra: 813/782,
  37080. bottom: 66/879
  37081. }
  37082. },
  37083. back: {
  37084. height: math.unit(6 + 6/12, "feet"),
  37085. weight: math.unit(7, "lb"),
  37086. name: "Back",
  37087. image: {
  37088. source: "./media/characters/icky/back.svg",
  37089. extra: 754/735,
  37090. bottom: 56/810
  37091. }
  37092. },
  37093. },
  37094. [
  37095. {
  37096. name: "Normal",
  37097. height: math.unit(6 + 6/12, "feet"),
  37098. default: true
  37099. },
  37100. ]
  37101. ))
  37102. characterMakers.push(() => makeCharacter(
  37103. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37104. {
  37105. front: {
  37106. height: math.unit(15, "feet"),
  37107. name: "Front",
  37108. image: {
  37109. source: "./media/characters/rojas/front.svg",
  37110. extra: 1462/1408,
  37111. bottom: 95/1557
  37112. }
  37113. },
  37114. back: {
  37115. height: math.unit(15, "feet"),
  37116. name: "Back",
  37117. image: {
  37118. source: "./media/characters/rojas/back.svg",
  37119. extra: 1023/954,
  37120. bottom: 28/1051
  37121. }
  37122. },
  37123. },
  37124. [
  37125. {
  37126. name: "Normal",
  37127. height: math.unit(15, "feet"),
  37128. default: true
  37129. },
  37130. ]
  37131. ))
  37132. characterMakers.push(() => makeCharacter(
  37133. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37134. {
  37135. frontHuman: {
  37136. height: math.unit(5 + 7/12, "feet"),
  37137. name: "Front (Human)",
  37138. image: {
  37139. source: "./media/characters/alek-dryagan/front-human.svg",
  37140. extra: 1687/1667,
  37141. bottom: 69/1756
  37142. }
  37143. },
  37144. backHuman: {
  37145. height: math.unit(5 + 7/12, "feet"),
  37146. name: "Back (Human)",
  37147. image: {
  37148. source: "./media/characters/alek-dryagan/back-human.svg",
  37149. extra: 1670/1649,
  37150. bottom: 65/1735
  37151. }
  37152. },
  37153. frontDemi: {
  37154. height: math.unit(65, "feet"),
  37155. name: "Front (Demi)",
  37156. image: {
  37157. source: "./media/characters/alek-dryagan/front-demi.svg",
  37158. extra: 1669/1642,
  37159. bottom: 49/1718
  37160. }
  37161. },
  37162. backDemi: {
  37163. height: math.unit(65, "feet"),
  37164. name: "Back (Demi)",
  37165. image: {
  37166. source: "./media/characters/alek-dryagan/back-demi.svg",
  37167. extra: 1658/1637,
  37168. bottom: 40/1698
  37169. }
  37170. },
  37171. mawHuman: {
  37172. height: math.unit(0.3, "feet"),
  37173. name: "Maw (Human)",
  37174. image: {
  37175. source: "./media/characters/alek-dryagan/maw-human.svg"
  37176. }
  37177. },
  37178. mawDemi: {
  37179. height: math.unit(3.8, "feet"),
  37180. name: "Maw (Demi)",
  37181. image: {
  37182. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37183. }
  37184. },
  37185. },
  37186. [
  37187. {
  37188. name: "Normal",
  37189. height: math.unit(5 + 7/12, "feet"),
  37190. default: true
  37191. },
  37192. ]
  37193. ))
  37194. characterMakers.push(() => makeCharacter(
  37195. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37196. {
  37197. frontHuman: {
  37198. height: math.unit(5 + 2/12, "feet"),
  37199. name: "Front (Human)",
  37200. image: {
  37201. source: "./media/characters/gen/front-human.svg",
  37202. extra: 1627/1538,
  37203. bottom: 71/1698
  37204. }
  37205. },
  37206. backHuman: {
  37207. height: math.unit(5 + 2/12, "feet"),
  37208. name: "Back (Human)",
  37209. image: {
  37210. source: "./media/characters/gen/back-human.svg",
  37211. extra: 1638/1548,
  37212. bottom: 69/1707
  37213. }
  37214. },
  37215. frontDemi: {
  37216. height: math.unit(5 + 2/12, "feet"),
  37217. name: "Front (Demi)",
  37218. image: {
  37219. source: "./media/characters/gen/front-demi.svg",
  37220. extra: 1627/1538,
  37221. bottom: 71/1698
  37222. }
  37223. },
  37224. backDemi: {
  37225. height: math.unit(5 + 2/12, "feet"),
  37226. name: "Back (Demi)",
  37227. image: {
  37228. source: "./media/characters/gen/back-demi.svg",
  37229. extra: 1638/1548,
  37230. bottom: 69/1707
  37231. }
  37232. },
  37233. },
  37234. [
  37235. {
  37236. name: "Normal",
  37237. height: math.unit(5 + 2/12, "feet"),
  37238. default: true
  37239. },
  37240. ]
  37241. ))
  37242. characterMakers.push(() => makeCharacter(
  37243. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37244. {
  37245. frontImp: {
  37246. height: math.unit(1 + 11/12, "feet"),
  37247. name: "Front (Imp)",
  37248. image: {
  37249. source: "./media/characters/max-kobold/front-imp.svg",
  37250. extra: 1238/1134,
  37251. bottom: 81/1319
  37252. }
  37253. },
  37254. backImp: {
  37255. height: math.unit(1 + 11/12, "feet"),
  37256. name: "Back (Imp)",
  37257. image: {
  37258. source: "./media/characters/max-kobold/back-imp.svg",
  37259. extra: 1334/1175,
  37260. bottom: 34/1368
  37261. }
  37262. },
  37263. frontDemi: {
  37264. height: math.unit(5 + 9/12, "feet"),
  37265. name: "Front (Demi)",
  37266. image: {
  37267. source: "./media/characters/max-kobold/front-demi.svg",
  37268. extra: 1715/1685,
  37269. bottom: 54/1769
  37270. }
  37271. },
  37272. backDemi: {
  37273. height: math.unit(5 + 9/12, "feet"),
  37274. name: "Back (Demi)",
  37275. image: {
  37276. source: "./media/characters/max-kobold/back-demi.svg",
  37277. extra: 1752/1729,
  37278. bottom: 41/1793
  37279. }
  37280. },
  37281. handImp: {
  37282. height: math.unit(0.45, "feet"),
  37283. name: "Hand (Imp)",
  37284. image: {
  37285. source: "./media/characters/max-kobold/hand.svg"
  37286. }
  37287. },
  37288. pawImp: {
  37289. height: math.unit(0.46, "feet"),
  37290. name: "Paw (Imp)",
  37291. image: {
  37292. source: "./media/characters/max-kobold/paw.svg"
  37293. }
  37294. },
  37295. handDemi: {
  37296. height: math.unit(0.80, "feet"),
  37297. name: "Hand (Demi)",
  37298. image: {
  37299. source: "./media/characters/max-kobold/hand.svg"
  37300. }
  37301. },
  37302. pawDemi: {
  37303. height: math.unit(1.1, "feet"),
  37304. name: "Paw (Demi)",
  37305. image: {
  37306. source: "./media/characters/max-kobold/paw.svg"
  37307. }
  37308. },
  37309. headImp: {
  37310. height: math.unit(1.33, "feet"),
  37311. name: "Head (Imp)",
  37312. image: {
  37313. source: "./media/characters/max-kobold/head-imp.svg"
  37314. }
  37315. },
  37316. mawImp: {
  37317. height: math.unit(0.75, "feet"),
  37318. name: "Maw (Imp)",
  37319. image: {
  37320. source: "./media/characters/max-kobold/maw-imp.svg"
  37321. }
  37322. },
  37323. mawDemi: {
  37324. height: math.unit(0.42, "feet"),
  37325. name: "Maw (Demi)",
  37326. image: {
  37327. source: "./media/characters/max-kobold/maw-demi.svg"
  37328. }
  37329. },
  37330. },
  37331. [
  37332. {
  37333. name: "Normal",
  37334. height: math.unit(1 + 11/12, "feet"),
  37335. default: true
  37336. },
  37337. ]
  37338. ))
  37339. characterMakers.push(() => makeCharacter(
  37340. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37341. {
  37342. front: {
  37343. height: math.unit(7 + 5/12, "feet"),
  37344. name: "Front",
  37345. image: {
  37346. source: "./media/characters/carbon/front.svg",
  37347. extra: 1754/1689,
  37348. bottom: 65/1819
  37349. }
  37350. },
  37351. back: {
  37352. height: math.unit(7 + 5/12, "feet"),
  37353. name: "Back",
  37354. image: {
  37355. source: "./media/characters/carbon/back.svg",
  37356. extra: 1762/1695,
  37357. bottom: 24/1786
  37358. }
  37359. },
  37360. frontGigantamax: {
  37361. height: math.unit(150, "feet"),
  37362. name: "Front (Gigantamax)",
  37363. image: {
  37364. source: "./media/characters/carbon/front-gigantamax.svg",
  37365. extra: 1826/1669,
  37366. bottom: 59/1885
  37367. }
  37368. },
  37369. backGigantamax: {
  37370. height: math.unit(150, "feet"),
  37371. name: "Back (Gigantamax)",
  37372. image: {
  37373. source: "./media/characters/carbon/back-gigantamax.svg",
  37374. extra: 1796/1653,
  37375. bottom: 53/1849
  37376. }
  37377. },
  37378. maw: {
  37379. height: math.unit(0.48, "feet"),
  37380. name: "Maw",
  37381. image: {
  37382. source: "./media/characters/carbon/maw.svg"
  37383. }
  37384. },
  37385. mawGigantamax: {
  37386. height: math.unit(7.5, "feet"),
  37387. name: "Maw (Gigantamax)",
  37388. image: {
  37389. source: "./media/characters/carbon/maw-gigantamax.svg"
  37390. }
  37391. },
  37392. },
  37393. [
  37394. {
  37395. name: "Normal",
  37396. height: math.unit(7 + 5/12, "feet"),
  37397. default: true
  37398. },
  37399. ]
  37400. ))
  37401. characterMakers.push(() => makeCharacter(
  37402. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37403. {
  37404. front: {
  37405. height: math.unit(6, "feet"),
  37406. name: "Front",
  37407. image: {
  37408. source: "./media/characters/maverick/front.svg",
  37409. extra: 1672/1661,
  37410. bottom: 85/1757
  37411. }
  37412. },
  37413. back: {
  37414. height: math.unit(6, "feet"),
  37415. name: "Back",
  37416. image: {
  37417. source: "./media/characters/maverick/back.svg",
  37418. extra: 1642/1631,
  37419. bottom: 38/1680
  37420. }
  37421. },
  37422. },
  37423. [
  37424. {
  37425. name: "Normal",
  37426. height: math.unit(6, "feet"),
  37427. default: true
  37428. },
  37429. ]
  37430. ))
  37431. characterMakers.push(() => makeCharacter(
  37432. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37433. {
  37434. front: {
  37435. height: math.unit(15, "feet"),
  37436. weight: math.unit(615, "lb"),
  37437. name: "Front",
  37438. image: {
  37439. source: "./media/characters/grockle/front.svg",
  37440. extra: 1535/1427,
  37441. bottom: 56/1591
  37442. }
  37443. },
  37444. },
  37445. [
  37446. {
  37447. name: "Normal",
  37448. height: math.unit(15, "feet"),
  37449. default: true
  37450. },
  37451. {
  37452. name: "Large",
  37453. height: math.unit(150, "feet")
  37454. },
  37455. {
  37456. name: "Macro",
  37457. height: math.unit(1876, "feet")
  37458. },
  37459. {
  37460. name: "Mega Macro",
  37461. height: math.unit(121940, "feet")
  37462. },
  37463. {
  37464. name: "Giga Macro",
  37465. height: math.unit(750, "km")
  37466. },
  37467. {
  37468. name: "Tera Macro",
  37469. height: math.unit(750000, "km")
  37470. },
  37471. {
  37472. name: "Galactic",
  37473. height: math.unit(1.4e5, "km")
  37474. },
  37475. {
  37476. name: "Godlike",
  37477. height: math.unit(9.8e280, "galaxies")
  37478. },
  37479. ]
  37480. ))
  37481. characterMakers.push(() => makeCharacter(
  37482. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37483. {
  37484. front: {
  37485. height: math.unit(11, "meters"),
  37486. weight: math.unit(20, "tonnes"),
  37487. name: "Front",
  37488. image: {
  37489. source: "./media/characters/alistair/front.svg",
  37490. extra: 1265/1009,
  37491. bottom: 93/1358
  37492. }
  37493. },
  37494. },
  37495. [
  37496. {
  37497. name: "Normal",
  37498. height: math.unit(11, "meters"),
  37499. default: true
  37500. },
  37501. ]
  37502. ))
  37503. characterMakers.push(() => makeCharacter(
  37504. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37505. {
  37506. front: {
  37507. height: math.unit(5 + 8/12, "feet"),
  37508. name: "Front",
  37509. image: {
  37510. source: "./media/characters/haruka/front.svg",
  37511. extra: 2012/1952,
  37512. bottom: 0/2012
  37513. }
  37514. },
  37515. },
  37516. [
  37517. {
  37518. name: "Normal",
  37519. height: math.unit(5 + 8/12, "feet"),
  37520. default: true
  37521. },
  37522. ]
  37523. ))
  37524. characterMakers.push(() => makeCharacter(
  37525. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37526. {
  37527. back: {
  37528. height: math.unit(9, "feet"),
  37529. name: "Back",
  37530. image: {
  37531. source: "./media/characters/vivian-sylveon/back.svg",
  37532. extra: 1853/1714,
  37533. bottom: 0/1853
  37534. }
  37535. },
  37536. },
  37537. [
  37538. {
  37539. name: "Normal",
  37540. height: math.unit(9, "feet"),
  37541. default: true
  37542. },
  37543. {
  37544. name: "Macro",
  37545. height: math.unit(500, "feet")
  37546. },
  37547. {
  37548. name: "Megamacro",
  37549. height: math.unit(600, "miles")
  37550. },
  37551. {
  37552. name: "Gigamacro",
  37553. height: math.unit(30000, "miles")
  37554. },
  37555. ]
  37556. ))
  37557. characterMakers.push(() => makeCharacter(
  37558. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37559. {
  37560. anthro: {
  37561. height: math.unit(5 + 10/12, "feet"),
  37562. weight: math.unit(100, "lb"),
  37563. name: "Anthro",
  37564. image: {
  37565. source: "./media/characters/daiki/anthro.svg",
  37566. extra: 1115/1027,
  37567. bottom: 69/1184
  37568. }
  37569. },
  37570. feral: {
  37571. height: math.unit(200, "feet"),
  37572. name: "Feral",
  37573. image: {
  37574. source: "./media/characters/daiki/feral.svg",
  37575. extra: 1256/313,
  37576. bottom: 39/1295
  37577. }
  37578. },
  37579. feralHead: {
  37580. height: math.unit(171, "feet"),
  37581. name: "Feral Head",
  37582. image: {
  37583. source: "./media/characters/daiki/feral-head.svg"
  37584. }
  37585. },
  37586. manaDragon: {
  37587. height: math.unit(170, "meters"),
  37588. name: "Mana-dragon",
  37589. image: {
  37590. source: "./media/characters/daiki/mana-dragon.svg",
  37591. extra: 763/420,
  37592. bottom: 97/860
  37593. }
  37594. },
  37595. },
  37596. [
  37597. {
  37598. name: "Normal",
  37599. height: math.unit(5 + 10/12, "feet"),
  37600. default: true
  37601. },
  37602. ]
  37603. ))
  37604. characterMakers.push(() => makeCharacter(
  37605. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37606. {
  37607. fullyEquippedFront: {
  37608. height: math.unit(3 + 1/12, "feet"),
  37609. weight: math.unit(24, "lb"),
  37610. name: "Fully Equipped (Front)",
  37611. image: {
  37612. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37613. extra: 687/605,
  37614. bottom: 18/705
  37615. }
  37616. },
  37617. fullyEquippedBack: {
  37618. height: math.unit(3 + 1/12, "feet"),
  37619. weight: math.unit(24, "lb"),
  37620. name: "Fully Equipped (Back)",
  37621. image: {
  37622. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37623. extra: 689/590,
  37624. bottom: 18/707
  37625. }
  37626. },
  37627. dailyWear: {
  37628. height: math.unit(3 + 1/12, "feet"),
  37629. weight: math.unit(24, "lb"),
  37630. name: "Daily Wear",
  37631. image: {
  37632. source: "./media/characters/tea-spot/daily-wear.svg",
  37633. extra: 701/620,
  37634. bottom: 21/722
  37635. }
  37636. },
  37637. maidWork: {
  37638. height: math.unit(3 + 1/12, "feet"),
  37639. weight: math.unit(24, "lb"),
  37640. name: "Maid Work",
  37641. image: {
  37642. source: "./media/characters/tea-spot/maid-work.svg",
  37643. extra: 693/609,
  37644. bottom: 15/708
  37645. }
  37646. },
  37647. },
  37648. [
  37649. {
  37650. name: "Normal",
  37651. height: math.unit(3 + 1/12, "feet"),
  37652. default: true
  37653. },
  37654. ]
  37655. ))
  37656. characterMakers.push(() => makeCharacter(
  37657. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37658. {
  37659. front: {
  37660. height: math.unit(175, "cm"),
  37661. weight: math.unit(75, "kg"),
  37662. name: "Front",
  37663. image: {
  37664. source: "./media/characters/chee/front.svg",
  37665. extra: 1796/1740,
  37666. bottom: 40/1836
  37667. }
  37668. },
  37669. },
  37670. [
  37671. {
  37672. name: "Micro-Micro",
  37673. height: math.unit(1, "nm")
  37674. },
  37675. {
  37676. name: "Micro-erst",
  37677. height: math.unit(1, "micrometer")
  37678. },
  37679. {
  37680. name: "Micro-er",
  37681. height: math.unit(1, "cm")
  37682. },
  37683. {
  37684. name: "Normal",
  37685. height: math.unit(175, "cm"),
  37686. default: true
  37687. },
  37688. {
  37689. name: "Macro",
  37690. height: math.unit(100, "m")
  37691. },
  37692. {
  37693. name: "Macro-er",
  37694. height: math.unit(1, "km")
  37695. },
  37696. {
  37697. name: "Macro-erst",
  37698. height: math.unit(10, "km")
  37699. },
  37700. {
  37701. name: "Macro-Macro",
  37702. height: math.unit(100, "km")
  37703. },
  37704. ]
  37705. ))
  37706. characterMakers.push(() => makeCharacter(
  37707. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37708. {
  37709. front: {
  37710. height: math.unit(11 + 9/12, "feet"),
  37711. weight: math.unit(935, "lb"),
  37712. name: "Front",
  37713. image: {
  37714. source: "./media/characters/kingsley/front.svg",
  37715. extra: 1803/1674,
  37716. bottom: 127/1930
  37717. }
  37718. },
  37719. frontNude: {
  37720. height: math.unit(11 + 9/12, "feet"),
  37721. weight: math.unit(935, "lb"),
  37722. name: "Front (Nude)",
  37723. image: {
  37724. source: "./media/characters/kingsley/front-nude.svg",
  37725. extra: 1803/1674,
  37726. bottom: 127/1930
  37727. }
  37728. },
  37729. },
  37730. [
  37731. {
  37732. name: "Normal",
  37733. height: math.unit(11 + 9/12, "feet"),
  37734. default: true
  37735. },
  37736. ]
  37737. ))
  37738. characterMakers.push(() => makeCharacter(
  37739. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37740. {
  37741. side: {
  37742. height: math.unit(9, "feet"),
  37743. name: "Side",
  37744. image: {
  37745. source: "./media/characters/rymel/side.svg",
  37746. extra: 792/469,
  37747. bottom: 121/913
  37748. }
  37749. },
  37750. maw: {
  37751. height: math.unit(2.4, "meters"),
  37752. name: "Maw",
  37753. image: {
  37754. source: "./media/characters/rymel/maw.svg"
  37755. }
  37756. },
  37757. },
  37758. [
  37759. {
  37760. name: "House Drake",
  37761. height: math.unit(2, "feet")
  37762. },
  37763. {
  37764. name: "Reduced",
  37765. height: math.unit(4.5, "feet")
  37766. },
  37767. {
  37768. name: "Normal",
  37769. height: math.unit(9, "feet"),
  37770. default: true
  37771. },
  37772. ]
  37773. ))
  37774. characterMakers.push(() => makeCharacter(
  37775. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37776. {
  37777. front: {
  37778. height: math.unit(1.74, "meters"),
  37779. weight: math.unit(55, "kg"),
  37780. name: "Front",
  37781. image: {
  37782. source: "./media/characters/rubus/front.svg",
  37783. extra: 1894/1742,
  37784. bottom: 44/1938
  37785. }
  37786. },
  37787. },
  37788. [
  37789. {
  37790. name: "Normal",
  37791. height: math.unit(1.74, "meters"),
  37792. default: true
  37793. },
  37794. ]
  37795. ))
  37796. characterMakers.push(() => makeCharacter(
  37797. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37798. {
  37799. front: {
  37800. height: math.unit(5 + 2/12, "feet"),
  37801. weight: math.unit(112, "lb"),
  37802. name: "Front",
  37803. image: {
  37804. source: "./media/characters/cassie-kingston/front.svg",
  37805. extra: 1438/1390,
  37806. bottom: 47/1485
  37807. }
  37808. },
  37809. },
  37810. [
  37811. {
  37812. name: "Normal",
  37813. height: math.unit(5 + 2/12, "feet"),
  37814. default: true
  37815. },
  37816. {
  37817. name: "Macro",
  37818. height: math.unit(128, "feet")
  37819. },
  37820. {
  37821. name: "Megamacro",
  37822. height: math.unit(2.56, "miles")
  37823. },
  37824. ]
  37825. ))
  37826. characterMakers.push(() => makeCharacter(
  37827. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37828. {
  37829. front: {
  37830. height: math.unit(7, "feet"),
  37831. name: "Front",
  37832. image: {
  37833. source: "./media/characters/fox/front.svg",
  37834. extra: 1798/1703,
  37835. bottom: 55/1853
  37836. }
  37837. },
  37838. back: {
  37839. height: math.unit(7, "feet"),
  37840. name: "Back",
  37841. image: {
  37842. source: "./media/characters/fox/back.svg",
  37843. extra: 1748/1649,
  37844. bottom: 32/1780
  37845. }
  37846. },
  37847. head: {
  37848. height: math.unit(1.95, "feet"),
  37849. name: "Head",
  37850. image: {
  37851. source: "./media/characters/fox/head.svg"
  37852. }
  37853. },
  37854. dick: {
  37855. height: math.unit(1.33, "feet"),
  37856. name: "Dick",
  37857. image: {
  37858. source: "./media/characters/fox/dick.svg"
  37859. }
  37860. },
  37861. foot: {
  37862. height: math.unit(1, "feet"),
  37863. name: "Foot",
  37864. image: {
  37865. source: "./media/characters/fox/foot.svg"
  37866. }
  37867. },
  37868. paw: {
  37869. height: math.unit(0.92, "feet"),
  37870. name: "Paw",
  37871. image: {
  37872. source: "./media/characters/fox/paw.svg"
  37873. }
  37874. },
  37875. },
  37876. [
  37877. {
  37878. name: "Small",
  37879. height: math.unit(3, "inches")
  37880. },
  37881. {
  37882. name: "\"Realistic\"",
  37883. height: math.unit(7, "feet")
  37884. },
  37885. {
  37886. name: "Normal",
  37887. height: math.unit(150, "feet"),
  37888. default: true
  37889. },
  37890. {
  37891. name: "BIG",
  37892. height: math.unit(1200, "feet")
  37893. },
  37894. {
  37895. name: "👀",
  37896. height: math.unit(5, "miles")
  37897. },
  37898. {
  37899. name: "👀👀👀",
  37900. height: math.unit(64, "miles")
  37901. },
  37902. ]
  37903. ))
  37904. characterMakers.push(() => makeCharacter(
  37905. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37906. {
  37907. front: {
  37908. height: math.unit(625, "feet"),
  37909. name: "Front",
  37910. image: {
  37911. source: "./media/characters/asonja-rossa/front.svg",
  37912. extra: 1833/1686,
  37913. bottom: 24/1857
  37914. }
  37915. },
  37916. back: {
  37917. height: math.unit(625, "feet"),
  37918. name: "Back",
  37919. image: {
  37920. source: "./media/characters/asonja-rossa/back.svg",
  37921. extra: 1852/1753,
  37922. bottom: 26/1878
  37923. }
  37924. },
  37925. },
  37926. [
  37927. {
  37928. name: "Macro",
  37929. height: math.unit(625, "feet"),
  37930. default: true
  37931. },
  37932. ]
  37933. ))
  37934. characterMakers.push(() => makeCharacter(
  37935. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37936. {
  37937. side: {
  37938. height: math.unit(8, "feet"),
  37939. name: "Side",
  37940. image: {
  37941. source: "./media/characters/rezukii/side.svg",
  37942. extra: 979/542,
  37943. bottom: 87/1066
  37944. }
  37945. },
  37946. sitting: {
  37947. height: math.unit(14.6, "feet"),
  37948. name: "Sitting",
  37949. image: {
  37950. source: "./media/characters/rezukii/sitting.svg",
  37951. extra: 1023/813,
  37952. bottom: 45/1068
  37953. }
  37954. },
  37955. },
  37956. [
  37957. {
  37958. name: "Tiny",
  37959. height: math.unit(2, "feet")
  37960. },
  37961. {
  37962. name: "Smol",
  37963. height: math.unit(4, "feet")
  37964. },
  37965. {
  37966. name: "Normal",
  37967. height: math.unit(8, "feet"),
  37968. default: true
  37969. },
  37970. {
  37971. name: "Big",
  37972. height: math.unit(12, "feet")
  37973. },
  37974. {
  37975. name: "Macro",
  37976. height: math.unit(30, "feet")
  37977. },
  37978. ]
  37979. ))
  37980. characterMakers.push(() => makeCharacter(
  37981. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37982. {
  37983. front: {
  37984. height: math.unit(14, "feet"),
  37985. weight: math.unit(9.5, "tonnes"),
  37986. name: "Front",
  37987. image: {
  37988. source: "./media/characters/dawnheart/front.svg",
  37989. extra: 2792/2675,
  37990. bottom: 64/2856
  37991. }
  37992. },
  37993. },
  37994. [
  37995. {
  37996. name: "Normal",
  37997. height: math.unit(14, "feet"),
  37998. default: true
  37999. },
  38000. ]
  38001. ))
  38002. characterMakers.push(() => makeCharacter(
  38003. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38004. {
  38005. front: {
  38006. height: math.unit(1.7, "m"),
  38007. name: "Front",
  38008. image: {
  38009. source: "./media/characters/gladi/front.svg",
  38010. extra: 1460/1362,
  38011. bottom: 19/1479
  38012. }
  38013. },
  38014. back: {
  38015. height: math.unit(1.7, "m"),
  38016. name: "Back",
  38017. image: {
  38018. source: "./media/characters/gladi/back.svg",
  38019. extra: 1459/1357,
  38020. bottom: 12/1471
  38021. }
  38022. },
  38023. feral: {
  38024. height: math.unit(2.05, "m"),
  38025. name: "Feral",
  38026. image: {
  38027. source: "./media/characters/gladi/feral.svg",
  38028. extra: 821/557,
  38029. bottom: 91/912
  38030. }
  38031. },
  38032. },
  38033. [
  38034. {
  38035. name: "Shortest",
  38036. height: math.unit(70, "cm")
  38037. },
  38038. {
  38039. name: "Normal",
  38040. height: math.unit(1.7, "m")
  38041. },
  38042. {
  38043. name: "Macro",
  38044. height: math.unit(10, "m"),
  38045. default: true
  38046. },
  38047. {
  38048. name: "Tallest",
  38049. height: math.unit(200, "m")
  38050. },
  38051. ]
  38052. ))
  38053. characterMakers.push(() => makeCharacter(
  38054. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38055. {
  38056. front: {
  38057. height: math.unit(5 + 7/12, "feet"),
  38058. weight: math.unit(2, "tons"),
  38059. name: "Front",
  38060. image: {
  38061. source: "./media/characters/erdno/front.svg",
  38062. extra: 1234/1129,
  38063. bottom: 35/1269
  38064. }
  38065. },
  38066. angled: {
  38067. height: math.unit(5 + 7/12, "feet"),
  38068. weight: math.unit(2, "tons"),
  38069. name: "Angled",
  38070. image: {
  38071. source: "./media/characters/erdno/angled.svg",
  38072. extra: 1185/1139,
  38073. bottom: 36/1221
  38074. }
  38075. },
  38076. side: {
  38077. height: math.unit(5 + 7/12, "feet"),
  38078. weight: math.unit(2, "tons"),
  38079. name: "Side",
  38080. image: {
  38081. source: "./media/characters/erdno/side.svg",
  38082. extra: 1191/1144,
  38083. bottom: 40/1231
  38084. }
  38085. },
  38086. back: {
  38087. height: math.unit(5 + 7/12, "feet"),
  38088. weight: math.unit(2, "tons"),
  38089. name: "Back",
  38090. image: {
  38091. source: "./media/characters/erdno/back.svg",
  38092. extra: 1202/1146,
  38093. bottom: 17/1219
  38094. }
  38095. },
  38096. frontNsfw: {
  38097. height: math.unit(5 + 7/12, "feet"),
  38098. weight: math.unit(2, "tons"),
  38099. name: "Front (NSFW)",
  38100. image: {
  38101. source: "./media/characters/erdno/front-nsfw.svg",
  38102. extra: 1234/1129,
  38103. bottom: 35/1269
  38104. }
  38105. },
  38106. angledNsfw: {
  38107. height: math.unit(5 + 7/12, "feet"),
  38108. weight: math.unit(2, "tons"),
  38109. name: "Angled (NSFW)",
  38110. image: {
  38111. source: "./media/characters/erdno/angled-nsfw.svg",
  38112. extra: 1185/1139,
  38113. bottom: 36/1221
  38114. }
  38115. },
  38116. sideNsfw: {
  38117. height: math.unit(5 + 7/12, "feet"),
  38118. weight: math.unit(2, "tons"),
  38119. name: "Side (NSFW)",
  38120. image: {
  38121. source: "./media/characters/erdno/side-nsfw.svg",
  38122. extra: 1191/1144,
  38123. bottom: 40/1231
  38124. }
  38125. },
  38126. backNsfw: {
  38127. height: math.unit(5 + 7/12, "feet"),
  38128. weight: math.unit(2, "tons"),
  38129. name: "Back (NSFW)",
  38130. image: {
  38131. source: "./media/characters/erdno/back-nsfw.svg",
  38132. extra: 1202/1146,
  38133. bottom: 17/1219
  38134. }
  38135. },
  38136. frontHyper: {
  38137. height: math.unit(5 + 7/12, "feet"),
  38138. weight: math.unit(2, "tons"),
  38139. name: "Front (Hyper)",
  38140. image: {
  38141. source: "./media/characters/erdno/front-hyper.svg",
  38142. extra: 1298/1136,
  38143. bottom: 35/1333
  38144. }
  38145. },
  38146. },
  38147. [
  38148. {
  38149. name: "Normal",
  38150. height: math.unit(5 + 7/12, "feet"),
  38151. default: true
  38152. },
  38153. {
  38154. name: "Big",
  38155. height: math.unit(5.7, "meters")
  38156. },
  38157. {
  38158. name: "Macro",
  38159. height: math.unit(5.7, "kilometers")
  38160. },
  38161. {
  38162. name: "Megamacro",
  38163. height: math.unit(5.7, "earths")
  38164. },
  38165. ]
  38166. ))
  38167. characterMakers.push(() => makeCharacter(
  38168. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38169. {
  38170. front: {
  38171. height: math.unit(5 + 10/12, "feet"),
  38172. weight: math.unit(150, "lb"),
  38173. name: "Front",
  38174. image: {
  38175. source: "./media/characters/jamie/front.svg",
  38176. extra: 1908/1768,
  38177. bottom: 19/1927
  38178. }
  38179. },
  38180. },
  38181. [
  38182. {
  38183. name: "Minimum",
  38184. height: math.unit(2, "cm")
  38185. },
  38186. {
  38187. name: "Micro",
  38188. height: math.unit(3, "inches")
  38189. },
  38190. {
  38191. name: "Normal",
  38192. height: math.unit(5 + 10/12, "feet"),
  38193. default: true
  38194. },
  38195. {
  38196. name: "Macro",
  38197. height: math.unit(150, "feet")
  38198. },
  38199. {
  38200. name: "Megamacro",
  38201. height: math.unit(10000, "m")
  38202. },
  38203. ]
  38204. ))
  38205. characterMakers.push(() => makeCharacter(
  38206. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38207. {
  38208. front: {
  38209. height: math.unit(2, "meters"),
  38210. weight: math.unit(100, "kg"),
  38211. name: "Front",
  38212. image: {
  38213. source: "./media/characters/shiron/front.svg",
  38214. extra: 2103/1985,
  38215. bottom: 98/2201
  38216. }
  38217. },
  38218. back: {
  38219. height: math.unit(2, "meters"),
  38220. weight: math.unit(100, "kg"),
  38221. name: "Back",
  38222. image: {
  38223. source: "./media/characters/shiron/back.svg",
  38224. extra: 2110/2015,
  38225. bottom: 89/2199
  38226. }
  38227. },
  38228. hand: {
  38229. height: math.unit(0.96, "feet"),
  38230. name: "Hand",
  38231. image: {
  38232. source: "./media/characters/shiron/hand.svg"
  38233. }
  38234. },
  38235. foot: {
  38236. height: math.unit(1.464, "feet"),
  38237. name: "Foot",
  38238. image: {
  38239. source: "./media/characters/shiron/foot.svg"
  38240. }
  38241. },
  38242. },
  38243. [
  38244. {
  38245. name: "Normal",
  38246. height: math.unit(2, "meters")
  38247. },
  38248. {
  38249. name: "Macro",
  38250. height: math.unit(500, "meters"),
  38251. default: true
  38252. },
  38253. {
  38254. name: "Megamacro",
  38255. height: math.unit(20, "km")
  38256. },
  38257. ]
  38258. ))
  38259. characterMakers.push(() => makeCharacter(
  38260. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38261. {
  38262. front: {
  38263. height: math.unit(6, "feet"),
  38264. name: "Front",
  38265. image: {
  38266. source: "./media/characters/sam/front.svg",
  38267. extra: 849/826,
  38268. bottom: 19/868
  38269. }
  38270. },
  38271. },
  38272. [
  38273. {
  38274. name: "Normal",
  38275. height: math.unit(6, "feet"),
  38276. default: true
  38277. },
  38278. ]
  38279. ))
  38280. characterMakers.push(() => makeCharacter(
  38281. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38282. {
  38283. front: {
  38284. height: math.unit(8 + 4/12, "feet"),
  38285. weight: math.unit(122, "kg"),
  38286. name: "Front",
  38287. image: {
  38288. source: "./media/characters/namori-kurogawa/front.svg",
  38289. extra: 1894/1576,
  38290. bottom: 34/1928
  38291. }
  38292. },
  38293. },
  38294. [
  38295. {
  38296. name: "Normal",
  38297. height: math.unit(8 + 4/12, "feet"),
  38298. default: true
  38299. },
  38300. ]
  38301. ))
  38302. characterMakers.push(() => makeCharacter(
  38303. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38304. {
  38305. front: {
  38306. height: math.unit(9, "feet"),
  38307. weight: math.unit(621, "lb"),
  38308. name: "Front",
  38309. image: {
  38310. source: "./media/characters/unmru/front.svg",
  38311. extra: 1853/1747,
  38312. bottom: 73/1926
  38313. }
  38314. },
  38315. side: {
  38316. height: math.unit(9, "feet"),
  38317. weight: math.unit(621, "lb"),
  38318. name: "Side",
  38319. image: {
  38320. source: "./media/characters/unmru/side.svg",
  38321. extra: 1781/1671,
  38322. bottom: 127/1908
  38323. }
  38324. },
  38325. back: {
  38326. height: math.unit(9, "feet"),
  38327. weight: math.unit(621, "lb"),
  38328. name: "Back",
  38329. image: {
  38330. source: "./media/characters/unmru/back.svg",
  38331. extra: 1894/1765,
  38332. bottom: 75/1969
  38333. }
  38334. },
  38335. dick: {
  38336. height: math.unit(3, "feet"),
  38337. weight: math.unit(35, "lb"),
  38338. name: "Dick",
  38339. image: {
  38340. source: "./media/characters/unmru/dick.svg"
  38341. }
  38342. },
  38343. },
  38344. [
  38345. {
  38346. name: "Normal",
  38347. height: math.unit(9, "feet")
  38348. },
  38349. {
  38350. name: "Natural",
  38351. height: math.unit(27, "feet"),
  38352. default: true
  38353. },
  38354. {
  38355. name: "Giant",
  38356. height: math.unit(90, "feet")
  38357. },
  38358. {
  38359. name: "Kaiju",
  38360. height: math.unit(270, "feet")
  38361. },
  38362. {
  38363. name: "Macro",
  38364. height: math.unit(900, "feet")
  38365. },
  38366. {
  38367. name: "Macro+",
  38368. height: math.unit(2700, "feet")
  38369. },
  38370. {
  38371. name: "Megamacro",
  38372. height: math.unit(9000, "feet")
  38373. },
  38374. {
  38375. name: "City-Crushing",
  38376. height: math.unit(27000, "feet")
  38377. },
  38378. {
  38379. name: "Mountain-Mashing",
  38380. height: math.unit(90000, "feet")
  38381. },
  38382. {
  38383. name: "Earth-Eclipsing",
  38384. height: math.unit(2.7e8, "feet")
  38385. },
  38386. {
  38387. name: "Sol-Swallowing",
  38388. height: math.unit(9e10, "feet")
  38389. },
  38390. {
  38391. name: "Majoris-Munching",
  38392. height: math.unit(2.7e13, "feet")
  38393. },
  38394. ]
  38395. ))
  38396. characterMakers.push(() => makeCharacter(
  38397. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38398. {
  38399. front: {
  38400. height: math.unit(1, "inch"),
  38401. name: "Front",
  38402. image: {
  38403. source: "./media/characters/squeaks-mouse/front.svg",
  38404. extra: 352/308,
  38405. bottom: 25/377
  38406. }
  38407. },
  38408. },
  38409. [
  38410. {
  38411. name: "Micro",
  38412. height: math.unit(1, "inch"),
  38413. default: true
  38414. },
  38415. ]
  38416. ))
  38417. characterMakers.push(() => makeCharacter(
  38418. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38419. {
  38420. side: {
  38421. height: math.unit(35, "feet"),
  38422. name: "Side",
  38423. image: {
  38424. source: "./media/characters/sayko/side.svg",
  38425. extra: 1697/1021,
  38426. bottom: 82/1779
  38427. }
  38428. },
  38429. head: {
  38430. height: math.unit(16, "feet"),
  38431. name: "Head",
  38432. image: {
  38433. source: "./media/characters/sayko/head.svg"
  38434. }
  38435. },
  38436. forepaw: {
  38437. height: math.unit(7.85, "feet"),
  38438. name: "Forepaw",
  38439. image: {
  38440. source: "./media/characters/sayko/forepaw.svg"
  38441. }
  38442. },
  38443. hindpaw: {
  38444. height: math.unit(8.8, "feet"),
  38445. name: "Hindpaw",
  38446. image: {
  38447. source: "./media/characters/sayko/hindpaw.svg"
  38448. }
  38449. },
  38450. },
  38451. [
  38452. {
  38453. name: "Normal",
  38454. height: math.unit(35, "feet"),
  38455. default: true
  38456. },
  38457. {
  38458. name: "Colossus",
  38459. height: math.unit(100, "meters")
  38460. },
  38461. {
  38462. name: "\"Small\" Deity",
  38463. height: math.unit(1, "km")
  38464. },
  38465. {
  38466. name: "\"Large\" Deity",
  38467. height: math.unit(15, "km")
  38468. },
  38469. ]
  38470. ))
  38471. characterMakers.push(() => makeCharacter(
  38472. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38473. {
  38474. front: {
  38475. height: math.unit(6, "feet"),
  38476. weight: math.unit(250, "lb"),
  38477. name: "Front",
  38478. image: {
  38479. source: "./media/characters/mukiro/front.svg",
  38480. extra: 1368/1310,
  38481. bottom: 34/1402
  38482. }
  38483. },
  38484. },
  38485. [
  38486. {
  38487. name: "Normal",
  38488. height: math.unit(6, "feet"),
  38489. default: true
  38490. },
  38491. ]
  38492. ))
  38493. characterMakers.push(() => makeCharacter(
  38494. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38495. {
  38496. front: {
  38497. height: math.unit(12 + 4/12, "feet"),
  38498. name: "Front",
  38499. image: {
  38500. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38501. extra: 1346/1311,
  38502. bottom: 65/1411
  38503. }
  38504. },
  38505. },
  38506. [
  38507. {
  38508. name: "Base",
  38509. height: math.unit(12 + 4/12, "feet"),
  38510. default: true
  38511. },
  38512. {
  38513. name: "Macro",
  38514. height: math.unit(150, "feet")
  38515. },
  38516. {
  38517. name: "Mega",
  38518. height: math.unit(2, "miles")
  38519. },
  38520. {
  38521. name: "Demi God",
  38522. height: math.unit(4, "AU")
  38523. },
  38524. {
  38525. name: "God Size",
  38526. height: math.unit(1, "universe")
  38527. },
  38528. ]
  38529. ))
  38530. characterMakers.push(() => makeCharacter(
  38531. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38532. {
  38533. front: {
  38534. height: math.unit(3 + 3/12, "feet"),
  38535. weight: math.unit(88, "lb"),
  38536. name: "Front",
  38537. image: {
  38538. source: "./media/characters/trey/front.svg",
  38539. extra: 1815/1509,
  38540. bottom: 60/1875
  38541. }
  38542. },
  38543. },
  38544. [
  38545. {
  38546. name: "Normal",
  38547. height: math.unit(3 + 3/12, "feet"),
  38548. default: true
  38549. },
  38550. ]
  38551. ))
  38552. characterMakers.push(() => makeCharacter(
  38553. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38554. {
  38555. front: {
  38556. height: math.unit(4, "meters"),
  38557. name: "Front",
  38558. image: {
  38559. source: "./media/characters/adelonda/front.svg",
  38560. extra: 1077/982,
  38561. bottom: 39/1116
  38562. }
  38563. },
  38564. back: {
  38565. height: math.unit(4, "meters"),
  38566. name: "Back",
  38567. image: {
  38568. source: "./media/characters/adelonda/back.svg",
  38569. extra: 1105/1003,
  38570. bottom: 25/1130
  38571. }
  38572. },
  38573. feral: {
  38574. height: math.unit(40/1.5, "meters"),
  38575. name: "Feral",
  38576. image: {
  38577. source: "./media/characters/adelonda/feral.svg",
  38578. extra: 597/271,
  38579. bottom: 387/984
  38580. }
  38581. },
  38582. },
  38583. [
  38584. {
  38585. name: "Normal",
  38586. height: math.unit(4, "meters"),
  38587. default: true
  38588. },
  38589. ]
  38590. ))
  38591. characterMakers.push(() => makeCharacter(
  38592. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38593. {
  38594. front: {
  38595. height: math.unit(8 + 4/12, "feet"),
  38596. weight: math.unit(670, "lb"),
  38597. name: "Front",
  38598. image: {
  38599. source: "./media/characters/acadiel/front.svg",
  38600. extra: 1901/1595,
  38601. bottom: 142/2043
  38602. }
  38603. },
  38604. },
  38605. [
  38606. {
  38607. name: "Normal",
  38608. height: math.unit(8 + 4/12, "feet"),
  38609. default: true
  38610. },
  38611. {
  38612. name: "Macro",
  38613. height: math.unit(200, "feet")
  38614. },
  38615. ]
  38616. ))
  38617. characterMakers.push(() => makeCharacter(
  38618. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38619. {
  38620. front: {
  38621. height: math.unit(6 + 2/12, "feet"),
  38622. weight: math.unit(185, "lb"),
  38623. name: "Front",
  38624. image: {
  38625. source: "./media/characters/kayne-ein/front.svg",
  38626. extra: 1780/1560,
  38627. bottom: 81/1861
  38628. }
  38629. },
  38630. },
  38631. [
  38632. {
  38633. name: "Normal",
  38634. height: math.unit(6 + 2/12, "feet"),
  38635. default: true
  38636. },
  38637. {
  38638. name: "Transformation Stage",
  38639. height: math.unit(15, "feet")
  38640. },
  38641. {
  38642. name: "Macro",
  38643. height: math.unit(150, "feet")
  38644. },
  38645. {
  38646. name: "Earth's Shadow",
  38647. height: math.unit(6200, "miles")
  38648. },
  38649. {
  38650. name: "Universal Demon",
  38651. height: math.unit(28e9, "parsecs")
  38652. },
  38653. {
  38654. name: "Multiverse God",
  38655. height: math.unit(3, "multiverses")
  38656. },
  38657. ]
  38658. ))
  38659. characterMakers.push(() => makeCharacter(
  38660. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38661. {
  38662. front: {
  38663. height: math.unit(5 + 5/12, "feet"),
  38664. name: "Front",
  38665. image: {
  38666. source: "./media/characters/fawn/front.svg",
  38667. extra: 1873/1731,
  38668. bottom: 95/1968
  38669. }
  38670. },
  38671. back: {
  38672. height: math.unit(5 + 5/12, "feet"),
  38673. name: "Back",
  38674. image: {
  38675. source: "./media/characters/fawn/back.svg",
  38676. extra: 1813/1700,
  38677. bottom: 14/1827
  38678. }
  38679. },
  38680. hoof: {
  38681. height: math.unit(1.45, "feet"),
  38682. name: "Hoof",
  38683. image: {
  38684. source: "./media/characters/fawn/hoof.svg"
  38685. }
  38686. },
  38687. },
  38688. [
  38689. {
  38690. name: "Normal",
  38691. height: math.unit(5 + 5/12, "feet"),
  38692. default: true
  38693. },
  38694. ]
  38695. ))
  38696. characterMakers.push(() => makeCharacter(
  38697. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38698. {
  38699. front: {
  38700. height: math.unit(2 + 5/12, "feet"),
  38701. name: "Front",
  38702. image: {
  38703. source: "./media/characters/orion/front.svg",
  38704. extra: 1366/1304,
  38705. bottom: 43/1409
  38706. }
  38707. },
  38708. paw: {
  38709. height: math.unit(0.52, "feet"),
  38710. name: "Paw",
  38711. image: {
  38712. source: "./media/characters/orion/paw.svg"
  38713. }
  38714. },
  38715. },
  38716. [
  38717. {
  38718. name: "Normal",
  38719. height: math.unit(2 + 5/12, "feet"),
  38720. default: true
  38721. },
  38722. ]
  38723. ))
  38724. characterMakers.push(() => makeCharacter(
  38725. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38726. {
  38727. front: {
  38728. height: math.unit(5 + 10/12, "feet"),
  38729. name: "Front",
  38730. image: {
  38731. source: "./media/characters/vera/front.svg",
  38732. extra: 1680/1575,
  38733. bottom: 49/1729
  38734. }
  38735. },
  38736. back: {
  38737. height: math.unit(5 + 10/12, "feet"),
  38738. name: "Back",
  38739. image: {
  38740. source: "./media/characters/vera/back.svg",
  38741. extra: 1700/1588,
  38742. bottom: 18/1718
  38743. }
  38744. },
  38745. arcanine: {
  38746. height: math.unit(6 + 8/12, "feet"),
  38747. name: "Arcanine",
  38748. image: {
  38749. source: "./media/characters/vera/arcanine.svg",
  38750. extra: 1590/1511,
  38751. bottom: 71/1661
  38752. }
  38753. },
  38754. maw: {
  38755. height: math.unit(0.82, "feet"),
  38756. name: "Maw",
  38757. image: {
  38758. source: "./media/characters/vera/maw.svg"
  38759. }
  38760. },
  38761. mawArcanine: {
  38762. height: math.unit(0.97, "feet"),
  38763. name: "Maw (Arcanine)",
  38764. image: {
  38765. source: "./media/characters/vera/maw-arcanine.svg"
  38766. }
  38767. },
  38768. paw: {
  38769. height: math.unit(0.75, "feet"),
  38770. name: "Paw",
  38771. image: {
  38772. source: "./media/characters/vera/paw.svg"
  38773. }
  38774. },
  38775. pawprint: {
  38776. height: math.unit(0.52, "feet"),
  38777. name: "Pawprint",
  38778. image: {
  38779. source: "./media/characters/vera/pawprint.svg"
  38780. }
  38781. },
  38782. },
  38783. [
  38784. {
  38785. name: "Normal",
  38786. height: math.unit(5 + 10/12, "feet"),
  38787. default: true
  38788. },
  38789. {
  38790. name: "Macro",
  38791. height: math.unit(75, "feet")
  38792. },
  38793. ]
  38794. ))
  38795. characterMakers.push(() => makeCharacter(
  38796. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38797. {
  38798. front: {
  38799. height: math.unit(4, "feet"),
  38800. weight: math.unit(40, "lb"),
  38801. name: "Front",
  38802. image: {
  38803. source: "./media/characters/orvan-rabbit/front.svg",
  38804. extra: 1896/1642,
  38805. bottom: 29/1925
  38806. }
  38807. },
  38808. },
  38809. [
  38810. {
  38811. name: "Normal",
  38812. height: math.unit(4, "feet"),
  38813. default: true
  38814. },
  38815. ]
  38816. ))
  38817. characterMakers.push(() => makeCharacter(
  38818. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38819. {
  38820. front: {
  38821. height: math.unit(6, "feet"),
  38822. weight: math.unit(168, "lb"),
  38823. name: "Front",
  38824. image: {
  38825. source: "./media/characters/lisa/front.svg",
  38826. extra: 2065/1867,
  38827. bottom: 46/2111
  38828. }
  38829. },
  38830. back: {
  38831. height: math.unit(6, "feet"),
  38832. weight: math.unit(168, "lb"),
  38833. name: "Back",
  38834. image: {
  38835. source: "./media/characters/lisa/back.svg",
  38836. extra: 1982/1838,
  38837. bottom: 29/2011
  38838. }
  38839. },
  38840. maw: {
  38841. height: math.unit(0.81, "feet"),
  38842. name: "Maw",
  38843. image: {
  38844. source: "./media/characters/lisa/maw.svg"
  38845. }
  38846. },
  38847. paw: {
  38848. height: math.unit(0.9, "feet"),
  38849. name: "Paw",
  38850. image: {
  38851. source: "./media/characters/lisa/paw.svg"
  38852. }
  38853. },
  38854. caribousune: {
  38855. height: math.unit(7 + 2/12, "feet"),
  38856. weight: math.unit(268, "lb"),
  38857. name: "Caribousune",
  38858. image: {
  38859. source: "./media/characters/lisa/caribousune.svg",
  38860. extra: 1843/1633,
  38861. bottom: 29/1872
  38862. }
  38863. },
  38864. frontCaribousune: {
  38865. height: math.unit(7 + 2/12, "feet"),
  38866. weight: math.unit(268, "lb"),
  38867. name: "Front (Caribousune)",
  38868. image: {
  38869. source: "./media/characters/lisa/front-caribousune.svg",
  38870. extra: 1818/1638,
  38871. bottom: 52/1870
  38872. }
  38873. },
  38874. sideCaribousune: {
  38875. height: math.unit(7 + 2/12, "feet"),
  38876. weight: math.unit(268, "lb"),
  38877. name: "Side (Caribousune)",
  38878. image: {
  38879. source: "./media/characters/lisa/side-caribousune.svg",
  38880. extra: 1851/1635,
  38881. bottom: 16/1867
  38882. }
  38883. },
  38884. backCaribousune: {
  38885. height: math.unit(7 + 2/12, "feet"),
  38886. weight: math.unit(268, "lb"),
  38887. name: "Back (Caribousune)",
  38888. image: {
  38889. source: "./media/characters/lisa/back-caribousune.svg",
  38890. extra: 1801/1604,
  38891. bottom: 44/1845
  38892. }
  38893. },
  38894. caribou: {
  38895. height: math.unit(7 + 2/12, "feet"),
  38896. weight: math.unit(268, "lb"),
  38897. name: "Caribou",
  38898. image: {
  38899. source: "./media/characters/lisa/caribou.svg",
  38900. extra: 1843/1633,
  38901. bottom: 29/1872
  38902. }
  38903. },
  38904. frontCaribou: {
  38905. height: math.unit(7 + 2/12, "feet"),
  38906. weight: math.unit(268, "lb"),
  38907. name: "Front (Caribou)",
  38908. image: {
  38909. source: "./media/characters/lisa/front-caribou.svg",
  38910. extra: 1818/1638,
  38911. bottom: 52/1870
  38912. }
  38913. },
  38914. sideCaribou: {
  38915. height: math.unit(7 + 2/12, "feet"),
  38916. weight: math.unit(268, "lb"),
  38917. name: "Side (Caribou)",
  38918. image: {
  38919. source: "./media/characters/lisa/side-caribou.svg",
  38920. extra: 1851/1635,
  38921. bottom: 16/1867
  38922. }
  38923. },
  38924. backCaribou: {
  38925. height: math.unit(7 + 2/12, "feet"),
  38926. weight: math.unit(268, "lb"),
  38927. name: "Back (Caribou)",
  38928. image: {
  38929. source: "./media/characters/lisa/back-caribou.svg",
  38930. extra: 1801/1604,
  38931. bottom: 44/1845
  38932. }
  38933. },
  38934. mawCaribou: {
  38935. height: math.unit(1.45, "feet"),
  38936. name: "Maw (Caribou)",
  38937. image: {
  38938. source: "./media/characters/lisa/maw-caribou.svg"
  38939. }
  38940. },
  38941. mawCaribousune: {
  38942. height: math.unit(1.45, "feet"),
  38943. name: "Maw (Caribousune)",
  38944. image: {
  38945. source: "./media/characters/lisa/maw-caribousune.svg"
  38946. }
  38947. },
  38948. pawCaribousune: {
  38949. height: math.unit(1.61, "feet"),
  38950. name: "Paw (Caribou)",
  38951. image: {
  38952. source: "./media/characters/lisa/paw-caribousune.svg"
  38953. }
  38954. },
  38955. },
  38956. [
  38957. {
  38958. name: "Normal",
  38959. height: math.unit(6, "feet")
  38960. },
  38961. {
  38962. name: "God Size",
  38963. height: math.unit(72, "feet"),
  38964. default: true
  38965. },
  38966. {
  38967. name: "Towering",
  38968. height: math.unit(288, "feet")
  38969. },
  38970. {
  38971. name: "City Size",
  38972. height: math.unit(48384, "feet")
  38973. },
  38974. {
  38975. name: "Continental",
  38976. height: math.unit(4200, "miles")
  38977. },
  38978. {
  38979. name: "Planet Eater",
  38980. height: math.unit(42, "earths")
  38981. },
  38982. {
  38983. name: "Star Swallower",
  38984. height: math.unit(42, "solarradii")
  38985. },
  38986. {
  38987. name: "System Swallower",
  38988. height: math.unit(84000, "AU")
  38989. },
  38990. {
  38991. name: "Galaxy Gobbler",
  38992. height: math.unit(42, "galaxies")
  38993. },
  38994. {
  38995. name: "Universe Devourer",
  38996. height: math.unit(42, "universes")
  38997. },
  38998. {
  38999. name: "Multiverse Muncher",
  39000. height: math.unit(42, "multiverses")
  39001. },
  39002. ]
  39003. ))
  39004. characterMakers.push(() => makeCharacter(
  39005. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39006. {
  39007. front: {
  39008. height: math.unit(36, "feet"),
  39009. name: "Front",
  39010. image: {
  39011. source: "./media/characters/shadow-rat/front.svg",
  39012. extra: 1845/1758,
  39013. bottom: 83/1928
  39014. }
  39015. },
  39016. },
  39017. [
  39018. {
  39019. name: "Macro",
  39020. height: math.unit(36, "feet"),
  39021. default: true
  39022. },
  39023. ]
  39024. ))
  39025. characterMakers.push(() => makeCharacter(
  39026. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39027. {
  39028. side: {
  39029. height: math.unit(8, "feet"),
  39030. weight: math.unit(2630, "lb"),
  39031. name: "Side",
  39032. image: {
  39033. source: "./media/characters/torallia/side.svg",
  39034. extra: 2164/2021,
  39035. bottom: 371/2535
  39036. }
  39037. },
  39038. },
  39039. [
  39040. {
  39041. name: "Mortal Interaction",
  39042. height: math.unit(8, "feet")
  39043. },
  39044. {
  39045. name: "Natural",
  39046. height: math.unit(24, "feet"),
  39047. default: true
  39048. },
  39049. {
  39050. name: "Giant",
  39051. height: math.unit(80, "feet")
  39052. },
  39053. {
  39054. name: "Kaiju",
  39055. height: math.unit(240, "feet")
  39056. },
  39057. {
  39058. name: "Macro",
  39059. height: math.unit(800, "feet")
  39060. },
  39061. {
  39062. name: "Macro+",
  39063. height: math.unit(2400, "feet")
  39064. },
  39065. {
  39066. name: "Macro++",
  39067. height: math.unit(8000, "feet")
  39068. },
  39069. {
  39070. name: "City-Crushing",
  39071. height: math.unit(24000, "feet")
  39072. },
  39073. {
  39074. name: "Mountain-Mashing",
  39075. height: math.unit(80000, "feet")
  39076. },
  39077. {
  39078. name: "District Demolisher",
  39079. height: math.unit(240000, "feet")
  39080. },
  39081. {
  39082. name: "Tri-County Terror",
  39083. height: math.unit(800000, "feet")
  39084. },
  39085. {
  39086. name: "State Smasher",
  39087. height: math.unit(2.4e6, "feet")
  39088. },
  39089. {
  39090. name: "Nation Nemesis",
  39091. height: math.unit(8e6, "feet")
  39092. },
  39093. {
  39094. name: "Continent Cracker",
  39095. height: math.unit(2.4e7, "feet")
  39096. },
  39097. {
  39098. name: "Planet-Pillaging",
  39099. height: math.unit(8e7, "feet")
  39100. },
  39101. {
  39102. name: "Earth-Eclipsing",
  39103. height: math.unit(2.4e8, "feet")
  39104. },
  39105. {
  39106. name: "Jovian-Jostling",
  39107. height: math.unit(8e8, "feet")
  39108. },
  39109. {
  39110. name: "Gas Giant Gulper",
  39111. height: math.unit(2.4e9, "feet")
  39112. },
  39113. {
  39114. name: "Astral Annihilator",
  39115. height: math.unit(8e9, "feet")
  39116. },
  39117. {
  39118. name: "Celestial Conqueror",
  39119. height: math.unit(2.4e10, "feet")
  39120. },
  39121. {
  39122. name: "Sol-Swallowing",
  39123. height: math.unit(8e10, "feet")
  39124. },
  39125. {
  39126. name: "Hunter of the Heavens",
  39127. height: math.unit(2.4e13, "feet")
  39128. },
  39129. ]
  39130. ))
  39131. characterMakers.push(() => makeCharacter(
  39132. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39133. {
  39134. front: {
  39135. height: math.unit(6 + 8/12, "feet"),
  39136. name: "Front",
  39137. image: {
  39138. source: "./media/characters/rebecca-pawlson/front.svg",
  39139. extra: 1737/1596,
  39140. bottom: 107/1844
  39141. }
  39142. },
  39143. back: {
  39144. height: math.unit(6 + 8/12, "feet"),
  39145. name: "Back",
  39146. image: {
  39147. source: "./media/characters/rebecca-pawlson/back.svg",
  39148. extra: 1702/1523,
  39149. bottom: 86/1788
  39150. }
  39151. },
  39152. },
  39153. [
  39154. {
  39155. name: "Normal",
  39156. height: math.unit(6 + 8/12, "feet")
  39157. },
  39158. {
  39159. name: "Mini Macro",
  39160. height: math.unit(10, "feet"),
  39161. default: true
  39162. },
  39163. {
  39164. name: "Macro",
  39165. height: math.unit(100, "feet")
  39166. },
  39167. {
  39168. name: "Mega Macro",
  39169. height: math.unit(2500, "feet")
  39170. },
  39171. {
  39172. name: "Giga Macro",
  39173. height: math.unit(50, "miles")
  39174. },
  39175. ]
  39176. ))
  39177. characterMakers.push(() => makeCharacter(
  39178. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39179. {
  39180. front: {
  39181. height: math.unit(7 + 6/12, "feet"),
  39182. weight: math.unit(600, "lb"),
  39183. name: "Front",
  39184. image: {
  39185. source: "./media/characters/moxie-nova/front.svg",
  39186. extra: 1734/1652,
  39187. bottom: 41/1775
  39188. }
  39189. },
  39190. },
  39191. [
  39192. {
  39193. name: "Normal",
  39194. height: math.unit(7 + 6/12, "feet"),
  39195. default: true
  39196. },
  39197. ]
  39198. ))
  39199. characterMakers.push(() => makeCharacter(
  39200. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39201. {
  39202. goat: {
  39203. height: math.unit(4, "feet"),
  39204. weight: math.unit(180, "lb"),
  39205. name: "Goat",
  39206. image: {
  39207. source: "./media/characters/tiffany/goat.svg",
  39208. extra: 1845/1595,
  39209. bottom: 106/1951
  39210. }
  39211. },
  39212. front: {
  39213. height: math.unit(5, "feet"),
  39214. weight: math.unit(150, "lb"),
  39215. name: "Foxcoon",
  39216. image: {
  39217. source: "./media/characters/tiffany/foxcoon.svg",
  39218. extra: 1941/1845,
  39219. bottom: 58/1999
  39220. }
  39221. },
  39222. },
  39223. [
  39224. {
  39225. name: "Normal",
  39226. height: math.unit(5, "feet"),
  39227. default: true
  39228. },
  39229. ]
  39230. ))
  39231. characterMakers.push(() => makeCharacter(
  39232. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39233. {
  39234. front: {
  39235. height: math.unit(8, "feet"),
  39236. weight: math.unit(300, "lb"),
  39237. name: "Front",
  39238. image: {
  39239. source: "./media/characters/raxinath/front.svg",
  39240. extra: 1407/1309,
  39241. bottom: 39/1446
  39242. }
  39243. },
  39244. back: {
  39245. height: math.unit(8, "feet"),
  39246. weight: math.unit(300, "lb"),
  39247. name: "Back",
  39248. image: {
  39249. source: "./media/characters/raxinath/back.svg",
  39250. extra: 1405/1315,
  39251. bottom: 9/1414
  39252. }
  39253. },
  39254. },
  39255. [
  39256. {
  39257. name: "Speck",
  39258. height: math.unit(0.5, "nm")
  39259. },
  39260. {
  39261. name: "Micro",
  39262. height: math.unit(3, "inches")
  39263. },
  39264. {
  39265. name: "Kobold",
  39266. height: math.unit(3, "feet")
  39267. },
  39268. {
  39269. name: "Normal",
  39270. height: math.unit(8, "feet"),
  39271. default: true
  39272. },
  39273. {
  39274. name: "Giant",
  39275. height: math.unit(50, "feet")
  39276. },
  39277. {
  39278. name: "Macro",
  39279. height: math.unit(1000, "feet")
  39280. },
  39281. {
  39282. name: "Megamacro",
  39283. height: math.unit(1, "mile")
  39284. },
  39285. ]
  39286. ))
  39287. characterMakers.push(() => makeCharacter(
  39288. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39289. {
  39290. front: {
  39291. height: math.unit(10, "feet"),
  39292. weight: math.unit(1442, "lb"),
  39293. name: "Front",
  39294. image: {
  39295. source: "./media/characters/mal-dragon/front.svg",
  39296. extra: 1515/1444,
  39297. bottom: 113/1628
  39298. }
  39299. },
  39300. back: {
  39301. height: math.unit(10, "feet"),
  39302. weight: math.unit(1442, "lb"),
  39303. name: "Back",
  39304. image: {
  39305. source: "./media/characters/mal-dragon/back.svg",
  39306. extra: 1527/1434,
  39307. bottom: 25/1552
  39308. }
  39309. },
  39310. },
  39311. [
  39312. {
  39313. name: "Mortal Interaction",
  39314. height: math.unit(10, "feet"),
  39315. default: true
  39316. },
  39317. {
  39318. name: "Large",
  39319. height: math.unit(30, "feet")
  39320. },
  39321. {
  39322. name: "Kaiju",
  39323. height: math.unit(300, "feet")
  39324. },
  39325. {
  39326. name: "Megamacro",
  39327. height: math.unit(10000, "feet")
  39328. },
  39329. {
  39330. name: "Continent Cracker",
  39331. height: math.unit(30000000, "feet")
  39332. },
  39333. {
  39334. name: "Sol-Swallowing",
  39335. height: math.unit(1e11, "feet")
  39336. },
  39337. {
  39338. name: "Light Universal",
  39339. height: math.unit(5, "universes")
  39340. },
  39341. {
  39342. name: "Universe Atoms",
  39343. height: math.unit(1.829e9, "universes")
  39344. },
  39345. {
  39346. name: "Light Multiversal",
  39347. height: math.unit(5, "multiverses")
  39348. },
  39349. {
  39350. name: "Multiverse Atoms",
  39351. height: math.unit(1.829e9, "multiverses")
  39352. },
  39353. {
  39354. name: "Fabric of Time",
  39355. height: math.unit(1e262, "multiverses")
  39356. },
  39357. ]
  39358. ))
  39359. characterMakers.push(() => makeCharacter(
  39360. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39361. {
  39362. front: {
  39363. height: math.unit(9, "feet"),
  39364. weight: math.unit(1050, "lb"),
  39365. name: "Front",
  39366. image: {
  39367. source: "./media/characters/tabitha/front.svg",
  39368. extra: 2083/1994,
  39369. bottom: 68/2151
  39370. }
  39371. },
  39372. },
  39373. [
  39374. {
  39375. name: "Baseline",
  39376. height: math.unit(9, "feet"),
  39377. default: true
  39378. },
  39379. {
  39380. name: "Giant",
  39381. height: math.unit(90, "feet")
  39382. },
  39383. {
  39384. name: "Macro",
  39385. height: math.unit(900, "feet")
  39386. },
  39387. {
  39388. name: "Megamacro",
  39389. height: math.unit(9000, "feet")
  39390. },
  39391. {
  39392. name: "City-Crushing",
  39393. height: math.unit(27000, "feet")
  39394. },
  39395. {
  39396. name: "Mountain-Mashing",
  39397. height: math.unit(90000, "feet")
  39398. },
  39399. {
  39400. name: "Nation Nemesis",
  39401. height: math.unit(9e6, "feet")
  39402. },
  39403. {
  39404. name: "Continent Cracker",
  39405. height: math.unit(27e6, "feet")
  39406. },
  39407. {
  39408. name: "Earth-Eclipsing",
  39409. height: math.unit(2.7e8, "feet")
  39410. },
  39411. {
  39412. name: "Gas Giant Gulper",
  39413. height: math.unit(2.7e9, "feet")
  39414. },
  39415. {
  39416. name: "Sol-Swallowing",
  39417. height: math.unit(9e10, "feet")
  39418. },
  39419. {
  39420. name: "Galaxy Gulper",
  39421. height: math.unit(9, "galaxies")
  39422. },
  39423. {
  39424. name: "Cosmos Churner",
  39425. height: math.unit(9, "universes")
  39426. },
  39427. ]
  39428. ))
  39429. characterMakers.push(() => makeCharacter(
  39430. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39431. {
  39432. front: {
  39433. height: math.unit(160, "cm"),
  39434. weight: math.unit(55, "kg"),
  39435. name: "Front",
  39436. image: {
  39437. source: "./media/characters/tow/front.svg",
  39438. extra: 1751/1722,
  39439. bottom: 74/1825
  39440. }
  39441. },
  39442. },
  39443. [
  39444. {
  39445. name: "Norm",
  39446. height: math.unit(160, "cm")
  39447. },
  39448. {
  39449. name: "Casual",
  39450. height: math.unit(3200, "m"),
  39451. default: true
  39452. },
  39453. {
  39454. name: "Show-Off",
  39455. height: math.unit(160, "km")
  39456. },
  39457. ]
  39458. ))
  39459. characterMakers.push(() => makeCharacter(
  39460. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39461. {
  39462. front: {
  39463. height: math.unit(7 + 11/12, "feet"),
  39464. weight: math.unit(342.8, "lb"),
  39465. name: "Front",
  39466. image: {
  39467. source: "./media/characters/vivian-orca-dragon/front.svg",
  39468. extra: 1890/1865,
  39469. bottom: 28/1918
  39470. }
  39471. },
  39472. },
  39473. [
  39474. {
  39475. name: "Micro",
  39476. height: math.unit(5, "inches")
  39477. },
  39478. {
  39479. name: "Normal",
  39480. height: math.unit(7 + 11/12, "feet"),
  39481. default: true
  39482. },
  39483. {
  39484. name: "Macro",
  39485. height: math.unit(395 + 7/12, "feet")
  39486. },
  39487. ]
  39488. ))
  39489. characterMakers.push(() => makeCharacter(
  39490. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39491. {
  39492. side: {
  39493. height: math.unit(10, "feet"),
  39494. weight: math.unit(1442, "lb"),
  39495. name: "Side",
  39496. image: {
  39497. source: "./media/characters/lotherakon/side.svg",
  39498. extra: 1604/1497,
  39499. bottom: 89/1693
  39500. }
  39501. },
  39502. },
  39503. [
  39504. {
  39505. name: "Mortal Interaction",
  39506. height: math.unit(10, "feet")
  39507. },
  39508. {
  39509. name: "Large",
  39510. height: math.unit(30, "feet"),
  39511. default: true
  39512. },
  39513. {
  39514. name: "Giant",
  39515. height: math.unit(100, "feet")
  39516. },
  39517. {
  39518. name: "Kaiju",
  39519. height: math.unit(300, "feet")
  39520. },
  39521. {
  39522. name: "Macro",
  39523. height: math.unit(1000, "feet")
  39524. },
  39525. {
  39526. name: "Macro+",
  39527. height: math.unit(3000, "feet")
  39528. },
  39529. {
  39530. name: "Megamacro",
  39531. height: math.unit(10000, "feet")
  39532. },
  39533. {
  39534. name: "City-Crushing",
  39535. height: math.unit(30000, "feet")
  39536. },
  39537. {
  39538. name: "Continent Cracker",
  39539. height: math.unit(30e6, "feet")
  39540. },
  39541. {
  39542. name: "Earth Eclipsing",
  39543. height: math.unit(3e8, "feet")
  39544. },
  39545. {
  39546. name: "Gas Giant Gulper",
  39547. height: math.unit(3e9, "feet")
  39548. },
  39549. {
  39550. name: "Sol-Swallowing",
  39551. height: math.unit(1e11, "feet")
  39552. },
  39553. {
  39554. name: "System Swallower",
  39555. height: math.unit(3e14, "feet")
  39556. },
  39557. {
  39558. name: "Galaxy Gulper",
  39559. height: math.unit(10, "galaxies")
  39560. },
  39561. {
  39562. name: "Light Universal",
  39563. height: math.unit(5, "universes")
  39564. },
  39565. {
  39566. name: "Universe Palm",
  39567. height: math.unit(20, "universes")
  39568. },
  39569. {
  39570. name: "Light Multiversal",
  39571. height: math.unit(5, "multiverses")
  39572. },
  39573. {
  39574. name: "Multiverse Palm",
  39575. height: math.unit(20, "multiverses")
  39576. },
  39577. {
  39578. name: "Inferno Incarnate",
  39579. height: math.unit(1e7, "multiverses")
  39580. },
  39581. ]
  39582. ))
  39583. characterMakers.push(() => makeCharacter(
  39584. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39585. {
  39586. front: {
  39587. height: math.unit(8, "feet"),
  39588. weight: math.unit(1200, "lb"),
  39589. name: "Front",
  39590. image: {
  39591. source: "./media/characters/malithee/front.svg",
  39592. extra: 1675/1640,
  39593. bottom: 162/1837
  39594. }
  39595. },
  39596. },
  39597. [
  39598. {
  39599. name: "Mortal Interaction",
  39600. height: math.unit(8, "feet"),
  39601. default: true
  39602. },
  39603. {
  39604. name: "Large",
  39605. height: math.unit(24, "feet")
  39606. },
  39607. {
  39608. name: "Kaiju",
  39609. height: math.unit(240, "feet")
  39610. },
  39611. {
  39612. name: "Megamacro",
  39613. height: math.unit(8000, "feet")
  39614. },
  39615. {
  39616. name: "Continent Cracker",
  39617. height: math.unit(24e6, "feet")
  39618. },
  39619. {
  39620. name: "Earth-Eclipsing",
  39621. height: math.unit(2.4e8, "feet")
  39622. },
  39623. {
  39624. name: "Sol-Swallowing",
  39625. height: math.unit(8e10, "feet")
  39626. },
  39627. {
  39628. name: "Galaxy Gulper",
  39629. height: math.unit(8, "galaxies")
  39630. },
  39631. {
  39632. name: "Light Universal",
  39633. height: math.unit(4, "universes")
  39634. },
  39635. {
  39636. name: "Universe Atoms",
  39637. height: math.unit(1.829e9, "universes")
  39638. },
  39639. {
  39640. name: "Light Multiversal",
  39641. height: math.unit(4, "multiverses")
  39642. },
  39643. {
  39644. name: "Multiverse Atoms",
  39645. height: math.unit(1.829e9, "multiverses")
  39646. },
  39647. {
  39648. name: "Nigh-Omnipresence",
  39649. height: math.unit(8e261, "multiverses")
  39650. },
  39651. ]
  39652. ))
  39653. characterMakers.push(() => makeCharacter(
  39654. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39655. {
  39656. front: {
  39657. height: math.unit(10, "feet"),
  39658. weight: math.unit(1500, "lb"),
  39659. name: "Front",
  39660. image: {
  39661. source: "./media/characters/miles-thestia/front.svg",
  39662. extra: 1812/1727,
  39663. bottom: 86/1898
  39664. }
  39665. },
  39666. back: {
  39667. height: math.unit(10, "feet"),
  39668. weight: math.unit(1500, "lb"),
  39669. name: "Back",
  39670. image: {
  39671. source: "./media/characters/miles-thestia/back.svg",
  39672. extra: 1799/1690,
  39673. bottom: 47/1846
  39674. }
  39675. },
  39676. frontNsfw: {
  39677. height: math.unit(10, "feet"),
  39678. weight: math.unit(1500, "lb"),
  39679. name: "Front (NSFW)",
  39680. image: {
  39681. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39682. extra: 1812/1727,
  39683. bottom: 86/1898
  39684. }
  39685. },
  39686. },
  39687. [
  39688. {
  39689. name: "Mini-Macro",
  39690. height: math.unit(10, "feet"),
  39691. default: true
  39692. },
  39693. ]
  39694. ))
  39695. characterMakers.push(() => makeCharacter(
  39696. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39697. {
  39698. front: {
  39699. height: math.unit(25, "feet"),
  39700. name: "Front",
  39701. image: {
  39702. source: "./media/characters/titan-s-wulf/front.svg",
  39703. extra: 1560/1484,
  39704. bottom: 76/1636
  39705. }
  39706. },
  39707. },
  39708. [
  39709. {
  39710. name: "Smallest",
  39711. height: math.unit(25, "feet"),
  39712. default: true
  39713. },
  39714. {
  39715. name: "Normal",
  39716. height: math.unit(200, "feet")
  39717. },
  39718. {
  39719. name: "Macro",
  39720. height: math.unit(200000, "feet")
  39721. },
  39722. {
  39723. name: "Multiversal Original",
  39724. height: math.unit(10000, "multiverses")
  39725. },
  39726. ]
  39727. ))
  39728. characterMakers.push(() => makeCharacter(
  39729. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39730. {
  39731. front: {
  39732. height: math.unit(8, "feet"),
  39733. weight: math.unit(553, "lb"),
  39734. name: "Front",
  39735. image: {
  39736. source: "./media/characters/tawendeh/front.svg",
  39737. extra: 2365/2268,
  39738. bottom: 83/2448
  39739. }
  39740. },
  39741. frontClothed: {
  39742. height: math.unit(8, "feet"),
  39743. weight: math.unit(553, "lb"),
  39744. name: "Front (Clothed)",
  39745. image: {
  39746. source: "./media/characters/tawendeh/front-clothed.svg",
  39747. extra: 2365/2268,
  39748. bottom: 83/2448
  39749. }
  39750. },
  39751. back: {
  39752. height: math.unit(8, "feet"),
  39753. weight: math.unit(553, "lb"),
  39754. name: "Back",
  39755. image: {
  39756. source: "./media/characters/tawendeh/back.svg",
  39757. extra: 2397/2294,
  39758. bottom: 42/2439
  39759. }
  39760. },
  39761. },
  39762. [
  39763. {
  39764. name: "Mortal Interaction",
  39765. height: math.unit(8, "feet"),
  39766. default: true
  39767. },
  39768. {
  39769. name: "Giant",
  39770. height: math.unit(80, "feet")
  39771. },
  39772. {
  39773. name: "Macro",
  39774. height: math.unit(800, "feet")
  39775. },
  39776. {
  39777. name: "Megamacro",
  39778. height: math.unit(8000, "feet")
  39779. },
  39780. {
  39781. name: "City-Crushing",
  39782. height: math.unit(24000, "feet")
  39783. },
  39784. {
  39785. name: "Mountain-Mashing",
  39786. height: math.unit(80000, "feet")
  39787. },
  39788. {
  39789. name: "Nation Nemesis",
  39790. height: math.unit(8e6, "feet")
  39791. },
  39792. {
  39793. name: "Continent Cracker",
  39794. height: math.unit(24e6, "feet")
  39795. },
  39796. {
  39797. name: "Earth-Eclipsing",
  39798. height: math.unit(2.4e8, "feet")
  39799. },
  39800. {
  39801. name: "Gas Giant Gulper",
  39802. height: math.unit(2.4e9, "feet")
  39803. },
  39804. {
  39805. name: "Sol-Swallowing",
  39806. height: math.unit(8e10, "feet")
  39807. },
  39808. {
  39809. name: "Galaxy Gulper",
  39810. height: math.unit(8, "galaxies")
  39811. },
  39812. {
  39813. name: "Cosmos Churner",
  39814. height: math.unit(8, "universes")
  39815. },
  39816. {
  39817. name: "Omnipotent Otter",
  39818. height: math.unit(80, "universes")
  39819. },
  39820. ]
  39821. ))
  39822. characterMakers.push(() => makeCharacter(
  39823. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39824. {
  39825. front: {
  39826. height: math.unit(2.6, "meters"),
  39827. weight: math.unit(900, "kg"),
  39828. name: "Front",
  39829. image: {
  39830. source: "./media/characters/neesha/front.svg",
  39831. extra: 1803/1653,
  39832. bottom: 128/1931
  39833. }
  39834. },
  39835. },
  39836. [
  39837. {
  39838. name: "Normal",
  39839. height: math.unit(2.6, "meters"),
  39840. default: true
  39841. },
  39842. {
  39843. name: "Macro",
  39844. height: math.unit(50, "meters")
  39845. },
  39846. ]
  39847. ))
  39848. characterMakers.push(() => makeCharacter(
  39849. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39850. {
  39851. front: {
  39852. height: math.unit(5, "feet"),
  39853. weight: math.unit(185, "lb"),
  39854. name: "Front",
  39855. image: {
  39856. source: "./media/characters/kyera/front.svg",
  39857. extra: 1875/1790,
  39858. bottom: 96/1971
  39859. }
  39860. },
  39861. },
  39862. [
  39863. {
  39864. name: "Normal",
  39865. height: math.unit(5, "feet"),
  39866. default: true
  39867. },
  39868. ]
  39869. ))
  39870. characterMakers.push(() => makeCharacter(
  39871. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39872. {
  39873. front: {
  39874. height: math.unit(7 + 6/12, "feet"),
  39875. weight: math.unit(540, "lb"),
  39876. name: "Front",
  39877. image: {
  39878. source: "./media/characters/yuko/front.svg",
  39879. extra: 1282/1222,
  39880. bottom: 101/1383
  39881. }
  39882. },
  39883. frontClothed: {
  39884. height: math.unit(7 + 6/12, "feet"),
  39885. weight: math.unit(540, "lb"),
  39886. name: "Front (Clothed)",
  39887. image: {
  39888. source: "./media/characters/yuko/front-clothed.svg",
  39889. extra: 1282/1222,
  39890. bottom: 101/1383
  39891. }
  39892. },
  39893. },
  39894. [
  39895. {
  39896. name: "Normal",
  39897. height: math.unit(7 + 6/12, "feet"),
  39898. default: true
  39899. },
  39900. {
  39901. name: "Macro",
  39902. height: math.unit(26 + 9/12, "feet")
  39903. },
  39904. {
  39905. name: "Megamacro",
  39906. height: math.unit(300, "feet")
  39907. },
  39908. {
  39909. name: "Gigamacro",
  39910. height: math.unit(5000, "feet")
  39911. },
  39912. {
  39913. name: "Planetary",
  39914. height: math.unit(10000, "miles")
  39915. },
  39916. ]
  39917. ))
  39918. characterMakers.push(() => makeCharacter(
  39919. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39920. {
  39921. front: {
  39922. height: math.unit(8 + 2/12, "feet"),
  39923. weight: math.unit(600, "lb"),
  39924. name: "Front",
  39925. image: {
  39926. source: "./media/characters/deam-nitrel/front.svg",
  39927. extra: 1308/1234,
  39928. bottom: 125/1433
  39929. }
  39930. },
  39931. },
  39932. [
  39933. {
  39934. name: "Normal",
  39935. height: math.unit(8 + 2/12, "feet"),
  39936. default: true
  39937. },
  39938. ]
  39939. ))
  39940. characterMakers.push(() => makeCharacter(
  39941. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39942. {
  39943. front: {
  39944. height: math.unit(6.1, "feet"),
  39945. weight: math.unit(180, "lb"),
  39946. name: "Front",
  39947. image: {
  39948. source: "./media/characters/skyress/front.svg",
  39949. extra: 1045/915,
  39950. bottom: 28/1073
  39951. }
  39952. },
  39953. maw: {
  39954. height: math.unit(1, "feet"),
  39955. name: "Maw",
  39956. image: {
  39957. source: "./media/characters/skyress/maw.svg"
  39958. }
  39959. },
  39960. },
  39961. [
  39962. {
  39963. name: "Normal",
  39964. height: math.unit(6.1, "feet"),
  39965. default: true
  39966. },
  39967. {
  39968. name: "Macro",
  39969. height: math.unit(200, "feet")
  39970. },
  39971. ]
  39972. ))
  39973. characterMakers.push(() => makeCharacter(
  39974. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39975. {
  39976. front: {
  39977. height: math.unit(4 + 2/12, "feet"),
  39978. weight: math.unit(40, "kg"),
  39979. name: "Front",
  39980. image: {
  39981. source: "./media/characters/amethyst-jones/front.svg",
  39982. extra: 1220/1150,
  39983. bottom: 101/1321
  39984. }
  39985. },
  39986. },
  39987. [
  39988. {
  39989. name: "Normal",
  39990. height: math.unit(4 + 2/12, "feet"),
  39991. default: true
  39992. },
  39993. ]
  39994. ))
  39995. characterMakers.push(() => makeCharacter(
  39996. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39997. {
  39998. front: {
  39999. height: math.unit(1.7, "m"),
  40000. weight: math.unit(135, "lb"),
  40001. name: "Front",
  40002. image: {
  40003. source: "./media/characters/jade/front.svg",
  40004. extra: 1818/1767,
  40005. bottom: 32/1850
  40006. }
  40007. },
  40008. back: {
  40009. height: math.unit(1.7, "m"),
  40010. weight: math.unit(135, "lb"),
  40011. name: "Back",
  40012. image: {
  40013. source: "./media/characters/jade/back.svg",
  40014. extra: 1869/1809,
  40015. bottom: 35/1904
  40016. }
  40017. },
  40018. hand: {
  40019. height: math.unit(0.24, "m"),
  40020. name: "Hand",
  40021. image: {
  40022. source: "./media/characters/jade/hand.svg"
  40023. }
  40024. },
  40025. foot: {
  40026. height: math.unit(0.263, "m"),
  40027. name: "Foot",
  40028. image: {
  40029. source: "./media/characters/jade/foot.svg"
  40030. }
  40031. },
  40032. dick: {
  40033. height: math.unit(0.47, "m"),
  40034. name: "Dick",
  40035. image: {
  40036. source: "./media/characters/jade/dick.svg"
  40037. }
  40038. },
  40039. },
  40040. [
  40041. {
  40042. name: "Micro",
  40043. height: math.unit(22, "cm")
  40044. },
  40045. {
  40046. name: "Normal",
  40047. height: math.unit(1.7, "m"),
  40048. default: true
  40049. },
  40050. {
  40051. name: "Macro",
  40052. height: math.unit(152, "m")
  40053. },
  40054. ]
  40055. ))
  40056. characterMakers.push(() => makeCharacter(
  40057. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40058. {
  40059. front: {
  40060. height: math.unit(100, "miles"),
  40061. weight: math.unit(20000, "tons"),
  40062. name: "Front",
  40063. image: {
  40064. source: "./media/characters/cookie/front.svg",
  40065. extra: 1125/1070,
  40066. bottom: 30/1155
  40067. }
  40068. },
  40069. },
  40070. [
  40071. {
  40072. name: "Big",
  40073. height: math.unit(50, "feet")
  40074. },
  40075. {
  40076. name: "Macro",
  40077. height: math.unit(100, "miles"),
  40078. default: true
  40079. },
  40080. {
  40081. name: "Megamacro",
  40082. height: math.unit(90000, "miles")
  40083. },
  40084. ]
  40085. ))
  40086. characterMakers.push(() => makeCharacter(
  40087. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40088. {
  40089. front: {
  40090. height: math.unit(6, "feet"),
  40091. weight: math.unit(145, "lb"),
  40092. name: "Front",
  40093. image: {
  40094. source: "./media/characters/farzian/front.svg",
  40095. extra: 1902/1693,
  40096. bottom: 108/2010
  40097. }
  40098. },
  40099. },
  40100. [
  40101. {
  40102. name: "Macro",
  40103. height: math.unit(500, "feet"),
  40104. default: true
  40105. },
  40106. ]
  40107. ))
  40108. characterMakers.push(() => makeCharacter(
  40109. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40110. {
  40111. front: {
  40112. height: math.unit(3 + 6/12, "feet"),
  40113. weight: math.unit(50, "lb"),
  40114. name: "Front",
  40115. image: {
  40116. source: "./media/characters/kimberly-tilson/front.svg",
  40117. extra: 1400/1322,
  40118. bottom: 36/1436
  40119. }
  40120. },
  40121. back: {
  40122. height: math.unit(3 + 6/12, "feet"),
  40123. weight: math.unit(50, "lb"),
  40124. name: "Back",
  40125. image: {
  40126. source: "./media/characters/kimberly-tilson/back.svg",
  40127. extra: 1370/1307,
  40128. bottom: 20/1390
  40129. }
  40130. },
  40131. },
  40132. [
  40133. {
  40134. name: "Normal",
  40135. height: math.unit(3 + 6/12, "feet"),
  40136. default: true
  40137. },
  40138. ]
  40139. ))
  40140. characterMakers.push(() => makeCharacter(
  40141. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40142. {
  40143. front: {
  40144. height: math.unit(1148, "feet"),
  40145. weight: math.unit(34057, "lb"),
  40146. name: "Front",
  40147. image: {
  40148. source: "./media/characters/harthos/front.svg",
  40149. extra: 1391/1339,
  40150. bottom: 13/1404
  40151. }
  40152. },
  40153. },
  40154. [
  40155. {
  40156. name: "Macro",
  40157. height: math.unit(1148, "feet"),
  40158. default: true
  40159. },
  40160. ]
  40161. ))
  40162. characterMakers.push(() => makeCharacter(
  40163. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40164. {
  40165. front: {
  40166. height: math.unit(15, "feet"),
  40167. name: "Front",
  40168. image: {
  40169. source: "./media/characters/hypatia/front.svg",
  40170. extra: 1653/1591,
  40171. bottom: 79/1732
  40172. }
  40173. },
  40174. },
  40175. [
  40176. {
  40177. name: "Normal",
  40178. height: math.unit(15, "feet")
  40179. },
  40180. {
  40181. name: "Small",
  40182. height: math.unit(300, "feet")
  40183. },
  40184. {
  40185. name: "Macro",
  40186. height: math.unit(2500, "feet"),
  40187. default: true
  40188. },
  40189. {
  40190. name: "Mega Macro",
  40191. height: math.unit(1500, "miles")
  40192. },
  40193. {
  40194. name: "Giga Macro",
  40195. height: math.unit(1.5e6, "miles")
  40196. },
  40197. ]
  40198. ))
  40199. characterMakers.push(() => makeCharacter(
  40200. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40201. {
  40202. front: {
  40203. height: math.unit(6, "feet"),
  40204. weight: math.unit(200, "lb"),
  40205. name: "Front",
  40206. image: {
  40207. source: "./media/characters/wulver/front.svg",
  40208. extra: 1724/1632,
  40209. bottom: 130/1854
  40210. }
  40211. },
  40212. frontNsfw: {
  40213. height: math.unit(6, "feet"),
  40214. weight: math.unit(200, "lb"),
  40215. name: "Front (NSFW)",
  40216. image: {
  40217. source: "./media/characters/wulver/front-nsfw.svg",
  40218. extra: 1724/1632,
  40219. bottom: 130/1854
  40220. }
  40221. },
  40222. },
  40223. [
  40224. {
  40225. name: "Human-Sized",
  40226. height: math.unit(6, "feet")
  40227. },
  40228. {
  40229. name: "Normal",
  40230. height: math.unit(4, "meters"),
  40231. default: true
  40232. },
  40233. {
  40234. name: "Large",
  40235. height: math.unit(6, "m")
  40236. },
  40237. ]
  40238. ))
  40239. characterMakers.push(() => makeCharacter(
  40240. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40241. {
  40242. front: {
  40243. height: math.unit(7, "feet"),
  40244. name: "Front",
  40245. image: {
  40246. source: "./media/characters/maru/front.svg",
  40247. extra: 1595/1570,
  40248. bottom: 0/1595
  40249. }
  40250. },
  40251. },
  40252. [
  40253. {
  40254. name: "Normal",
  40255. height: math.unit(7, "feet"),
  40256. default: true
  40257. },
  40258. {
  40259. name: "Macro",
  40260. height: math.unit(700, "feet")
  40261. },
  40262. {
  40263. name: "Mega Macro",
  40264. height: math.unit(25, "miles")
  40265. },
  40266. ]
  40267. ))
  40268. characterMakers.push(() => makeCharacter(
  40269. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40270. {
  40271. front: {
  40272. height: math.unit(6, "feet"),
  40273. weight: math.unit(170, "lb"),
  40274. name: "Front",
  40275. image: {
  40276. source: "./media/characters/xenon/front.svg",
  40277. extra: 1376/1305,
  40278. bottom: 56/1432
  40279. }
  40280. },
  40281. back: {
  40282. height: math.unit(6, "feet"),
  40283. weight: math.unit(170, "lb"),
  40284. name: "Back",
  40285. image: {
  40286. source: "./media/characters/xenon/back.svg",
  40287. extra: 1328/1259,
  40288. bottom: 95/1423
  40289. }
  40290. },
  40291. maw: {
  40292. height: math.unit(0.52, "feet"),
  40293. name: "Maw",
  40294. image: {
  40295. source: "./media/characters/xenon/maw.svg"
  40296. }
  40297. },
  40298. hand: {
  40299. height: math.unit(0.82, "feet"),
  40300. name: "Hand",
  40301. image: {
  40302. source: "./media/characters/xenon/hand.svg"
  40303. }
  40304. },
  40305. foot: {
  40306. height: math.unit(1.13, "feet"),
  40307. name: "Foot",
  40308. image: {
  40309. source: "./media/characters/xenon/foot.svg"
  40310. }
  40311. },
  40312. },
  40313. [
  40314. {
  40315. name: "Micro",
  40316. height: math.unit(0.8, "inches")
  40317. },
  40318. {
  40319. name: "Normal",
  40320. height: math.unit(6, "feet")
  40321. },
  40322. {
  40323. name: "Macro",
  40324. height: math.unit(50, "feet"),
  40325. default: true
  40326. },
  40327. {
  40328. name: "Macro+",
  40329. height: math.unit(250, "feet")
  40330. },
  40331. {
  40332. name: "Megamacro",
  40333. height: math.unit(1500, "feet")
  40334. },
  40335. ]
  40336. ))
  40337. characterMakers.push(() => makeCharacter(
  40338. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40339. {
  40340. front: {
  40341. height: math.unit(7 + 5/12, "feet"),
  40342. name: "Front",
  40343. image: {
  40344. source: "./media/characters/zane/front.svg",
  40345. extra: 1260/1203,
  40346. bottom: 94/1354
  40347. }
  40348. },
  40349. back: {
  40350. height: math.unit(5.05, "feet"),
  40351. name: "Back",
  40352. image: {
  40353. source: "./media/characters/zane/back.svg",
  40354. extra: 893/829,
  40355. bottom: 30/923
  40356. }
  40357. },
  40358. werewolf: {
  40359. height: math.unit(11, "feet"),
  40360. name: "Werewolf",
  40361. image: {
  40362. source: "./media/characters/zane/werewolf.svg",
  40363. extra: 1383/1323,
  40364. bottom: 89/1472
  40365. }
  40366. },
  40367. foot: {
  40368. height: math.unit(1.46, "feet"),
  40369. name: "Foot",
  40370. image: {
  40371. source: "./media/characters/zane/foot.svg"
  40372. }
  40373. },
  40374. footFront: {
  40375. height: math.unit(0.784, "feet"),
  40376. name: "Foot (Front)",
  40377. image: {
  40378. source: "./media/characters/zane/foot-front.svg"
  40379. }
  40380. },
  40381. dick: {
  40382. height: math.unit(1.95, "feet"),
  40383. name: "Dick",
  40384. image: {
  40385. source: "./media/characters/zane/dick.svg"
  40386. }
  40387. },
  40388. dickWerewolf: {
  40389. height: math.unit(3.77, "feet"),
  40390. name: "Dick (Werewolf)",
  40391. image: {
  40392. source: "./media/characters/zane/dick.svg"
  40393. }
  40394. },
  40395. },
  40396. [
  40397. {
  40398. name: "Normal",
  40399. height: math.unit(7 + 5/12, "feet"),
  40400. default: true
  40401. },
  40402. ]
  40403. ))
  40404. characterMakers.push(() => makeCharacter(
  40405. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40406. {
  40407. front: {
  40408. height: math.unit(6 + 2/12, "feet"),
  40409. weight: math.unit(284, "lb"),
  40410. name: "Front",
  40411. image: {
  40412. source: "./media/characters/benni-desparque/front.svg",
  40413. extra: 1353/1126,
  40414. bottom: 69/1422
  40415. }
  40416. },
  40417. },
  40418. [
  40419. {
  40420. name: "Civilian",
  40421. height: math.unit(6 + 2/12, "feet")
  40422. },
  40423. {
  40424. name: "Normal",
  40425. height: math.unit(98, "feet"),
  40426. default: true
  40427. },
  40428. {
  40429. name: "Kaiju Fighter",
  40430. height: math.unit(268, "feet")
  40431. },
  40432. ]
  40433. ))
  40434. characterMakers.push(() => makeCharacter(
  40435. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40436. {
  40437. front: {
  40438. height: math.unit(5, "feet"),
  40439. weight: math.unit(105, "lb"),
  40440. name: "Front",
  40441. image: {
  40442. source: "./media/characters/maxine/front.svg",
  40443. extra: 1386/1250,
  40444. bottom: 71/1457
  40445. }
  40446. },
  40447. },
  40448. [
  40449. {
  40450. name: "Normal",
  40451. height: math.unit(5, "feet"),
  40452. default: true
  40453. },
  40454. ]
  40455. ))
  40456. characterMakers.push(() => makeCharacter(
  40457. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40458. {
  40459. front: {
  40460. height: math.unit(11 + 7/12, "feet"),
  40461. weight: math.unit(9576, "lb"),
  40462. name: "Front",
  40463. image: {
  40464. source: "./media/characters/scaly/front.svg",
  40465. extra: 888/867,
  40466. bottom: 36/924
  40467. }
  40468. },
  40469. },
  40470. [
  40471. {
  40472. name: "Normal",
  40473. height: math.unit(11 + 7/12, "feet"),
  40474. default: true
  40475. },
  40476. ]
  40477. ))
  40478. characterMakers.push(() => makeCharacter(
  40479. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40480. {
  40481. front: {
  40482. height: math.unit(6 + 3/12, "feet"),
  40483. name: "Front",
  40484. image: {
  40485. source: "./media/characters/saelria/front.svg",
  40486. extra: 1243/1138,
  40487. bottom: 46/1289
  40488. }
  40489. },
  40490. },
  40491. [
  40492. {
  40493. name: "Micro",
  40494. height: math.unit(6, "inches"),
  40495. },
  40496. {
  40497. name: "Normal",
  40498. height: math.unit(6 + 3/12, "feet"),
  40499. default: true
  40500. },
  40501. {
  40502. name: "Macro",
  40503. height: math.unit(25, "feet")
  40504. },
  40505. ]
  40506. ))
  40507. characterMakers.push(() => makeCharacter(
  40508. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40509. {
  40510. front: {
  40511. height: math.unit(80, "meters"),
  40512. weight: math.unit(7000, "tonnes"),
  40513. name: "Front",
  40514. image: {
  40515. source: "./media/characters/tef/front.svg",
  40516. extra: 2036/1991,
  40517. bottom: 54/2090
  40518. }
  40519. },
  40520. back: {
  40521. height: math.unit(80, "meters"),
  40522. weight: math.unit(7000, "tonnes"),
  40523. name: "Back",
  40524. image: {
  40525. source: "./media/characters/tef/back.svg",
  40526. extra: 2036/1991,
  40527. bottom: 54/2090
  40528. }
  40529. },
  40530. },
  40531. [
  40532. {
  40533. name: "Macro",
  40534. height: math.unit(80, "meters"),
  40535. default: true
  40536. },
  40537. ]
  40538. ))
  40539. characterMakers.push(() => makeCharacter(
  40540. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40541. {
  40542. front: {
  40543. height: math.unit(13, "feet"),
  40544. weight: math.unit(6, "tons"),
  40545. name: "Front",
  40546. image: {
  40547. source: "./media/characters/rover/front.svg",
  40548. extra: 1233/1156,
  40549. bottom: 50/1283
  40550. }
  40551. },
  40552. back: {
  40553. height: math.unit(13, "feet"),
  40554. weight: math.unit(6, "tons"),
  40555. name: "Back",
  40556. image: {
  40557. source: "./media/characters/rover/back.svg",
  40558. extra: 1327/1258,
  40559. bottom: 39/1366
  40560. }
  40561. },
  40562. },
  40563. [
  40564. {
  40565. name: "Normal",
  40566. height: math.unit(13, "feet"),
  40567. default: true
  40568. },
  40569. {
  40570. name: "Macro",
  40571. height: math.unit(1300, "feet")
  40572. },
  40573. {
  40574. name: "Megamacro",
  40575. height: math.unit(1300, "miles")
  40576. },
  40577. {
  40578. name: "Gigamacro",
  40579. height: math.unit(1300000, "miles")
  40580. },
  40581. ]
  40582. ))
  40583. characterMakers.push(() => makeCharacter(
  40584. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40585. {
  40586. front: {
  40587. height: math.unit(6, "feet"),
  40588. weight: math.unit(150, "lb"),
  40589. name: "Front",
  40590. image: {
  40591. source: "./media/characters/ariz/front.svg",
  40592. extra: 1401/1346,
  40593. bottom: 5/1406
  40594. }
  40595. },
  40596. },
  40597. [
  40598. {
  40599. name: "Normal",
  40600. height: math.unit(10, "feet"),
  40601. default: true
  40602. },
  40603. ]
  40604. ))
  40605. characterMakers.push(() => makeCharacter(
  40606. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40607. {
  40608. front: {
  40609. height: math.unit(6, "feet"),
  40610. weight: math.unit(140, "lb"),
  40611. name: "Front",
  40612. image: {
  40613. source: "./media/characters/sigrun/front.svg",
  40614. extra: 1418/1359,
  40615. bottom: 27/1445
  40616. }
  40617. },
  40618. },
  40619. [
  40620. {
  40621. name: "Macro",
  40622. height: math.unit(35, "feet"),
  40623. default: true
  40624. },
  40625. ]
  40626. ))
  40627. characterMakers.push(() => makeCharacter(
  40628. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40629. {
  40630. front: {
  40631. height: math.unit(6, "feet"),
  40632. weight: math.unit(150, "lb"),
  40633. name: "Front",
  40634. image: {
  40635. source: "./media/characters/numin/front.svg",
  40636. extra: 1433/1388,
  40637. bottom: 12/1445
  40638. }
  40639. },
  40640. },
  40641. [
  40642. {
  40643. name: "Macro",
  40644. height: math.unit(21.5, "km"),
  40645. default: true
  40646. },
  40647. ]
  40648. ))
  40649. characterMakers.push(() => makeCharacter(
  40650. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40651. {
  40652. front: {
  40653. height: math.unit(6, "feet"),
  40654. weight: math.unit(463, "lb"),
  40655. name: "Front",
  40656. image: {
  40657. source: "./media/characters/melwa/front.svg",
  40658. extra: 1307/1248,
  40659. bottom: 93/1400
  40660. }
  40661. },
  40662. },
  40663. [
  40664. {
  40665. name: "Macro",
  40666. height: math.unit(50, "meters"),
  40667. default: true
  40668. },
  40669. ]
  40670. ))
  40671. characterMakers.push(() => makeCharacter(
  40672. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40673. {
  40674. front: {
  40675. height: math.unit(325, "feet"),
  40676. name: "Front",
  40677. image: {
  40678. source: "./media/characters/zorkaiju/front.svg",
  40679. extra: 1955/1814,
  40680. bottom: 40/1995
  40681. }
  40682. },
  40683. frontExtended: {
  40684. height: math.unit(325, "feet"),
  40685. name: "Front (Extended)",
  40686. image: {
  40687. source: "./media/characters/zorkaiju/front-extended.svg",
  40688. extra: 1955/1814,
  40689. bottom: 40/1995
  40690. }
  40691. },
  40692. side: {
  40693. height: math.unit(325, "feet"),
  40694. name: "Side",
  40695. image: {
  40696. source: "./media/characters/zorkaiju/side.svg",
  40697. extra: 1495/1396,
  40698. bottom: 17/1512
  40699. }
  40700. },
  40701. sideExtended: {
  40702. height: math.unit(325, "feet"),
  40703. name: "Side (Extended)",
  40704. image: {
  40705. source: "./media/characters/zorkaiju/side-extended.svg",
  40706. extra: 1495/1396,
  40707. bottom: 17/1512
  40708. }
  40709. },
  40710. back: {
  40711. height: math.unit(325, "feet"),
  40712. name: "Back",
  40713. image: {
  40714. source: "./media/characters/zorkaiju/back.svg",
  40715. extra: 1959/1821,
  40716. bottom: 31/1990
  40717. }
  40718. },
  40719. backExtended: {
  40720. height: math.unit(325, "feet"),
  40721. name: "Back (Extended)",
  40722. image: {
  40723. source: "./media/characters/zorkaiju/back-extended.svg",
  40724. extra: 1959/1821,
  40725. bottom: 31/1990
  40726. }
  40727. },
  40728. hand: {
  40729. height: math.unit(58.4, "feet"),
  40730. name: "Hand",
  40731. image: {
  40732. source: "./media/characters/zorkaiju/hand.svg"
  40733. }
  40734. },
  40735. handExtended: {
  40736. height: math.unit(61.4, "feet"),
  40737. name: "Hand (Extended)",
  40738. image: {
  40739. source: "./media/characters/zorkaiju/hand-extended.svg"
  40740. }
  40741. },
  40742. foot: {
  40743. height: math.unit(95, "feet"),
  40744. name: "Foot",
  40745. image: {
  40746. source: "./media/characters/zorkaiju/foot.svg"
  40747. }
  40748. },
  40749. leftArm: {
  40750. height: math.unit(59, "feet"),
  40751. name: "Left Arm",
  40752. image: {
  40753. source: "./media/characters/zorkaiju/left-arm.svg"
  40754. }
  40755. },
  40756. rightArm: {
  40757. height: math.unit(59, "feet"),
  40758. name: "Right Arm",
  40759. image: {
  40760. source: "./media/characters/zorkaiju/right-arm.svg"
  40761. }
  40762. },
  40763. tail: {
  40764. height: math.unit(104, "feet"),
  40765. name: "Tail",
  40766. image: {
  40767. source: "./media/characters/zorkaiju/tail.svg"
  40768. }
  40769. },
  40770. tailExtended: {
  40771. height: math.unit(104, "feet"),
  40772. name: "Tail (Extended)",
  40773. image: {
  40774. source: "./media/characters/zorkaiju/tail-extended.svg"
  40775. }
  40776. },
  40777. tailBottom: {
  40778. height: math.unit(104, "feet"),
  40779. name: "Tail Bottom",
  40780. image: {
  40781. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40782. }
  40783. },
  40784. crystal: {
  40785. height: math.unit(27.54, "feet"),
  40786. name: "Crystal",
  40787. image: {
  40788. source: "./media/characters/zorkaiju/crystal.svg"
  40789. }
  40790. },
  40791. },
  40792. [
  40793. {
  40794. name: "Kaiju",
  40795. height: math.unit(325, "feet"),
  40796. default: true
  40797. },
  40798. ]
  40799. ))
  40800. characterMakers.push(() => makeCharacter(
  40801. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40802. {
  40803. front: {
  40804. height: math.unit(6 + 1/12, "feet"),
  40805. weight: math.unit(115, "lb"),
  40806. name: "Front",
  40807. image: {
  40808. source: "./media/characters/bailey-belfry/front.svg",
  40809. extra: 1240/1121,
  40810. bottom: 101/1341
  40811. }
  40812. },
  40813. },
  40814. [
  40815. {
  40816. name: "Normal",
  40817. height: math.unit(6 + 1/12, "feet"),
  40818. default: true
  40819. },
  40820. ]
  40821. ))
  40822. characterMakers.push(() => makeCharacter(
  40823. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40824. {
  40825. side: {
  40826. height: math.unit(4, "meters"),
  40827. weight: math.unit(250, "kg"),
  40828. name: "Side",
  40829. image: {
  40830. source: "./media/characters/blacky/side.svg",
  40831. extra: 1027/919,
  40832. bottom: 43/1070
  40833. }
  40834. },
  40835. maw: {
  40836. height: math.unit(1, "meters"),
  40837. name: "Maw",
  40838. image: {
  40839. source: "./media/characters/blacky/maw.svg"
  40840. }
  40841. },
  40842. paw: {
  40843. height: math.unit(1, "meters"),
  40844. name: "Paw",
  40845. image: {
  40846. source: "./media/characters/blacky/paw.svg"
  40847. }
  40848. },
  40849. },
  40850. [
  40851. {
  40852. name: "Normal",
  40853. height: math.unit(4, "meters"),
  40854. default: true
  40855. },
  40856. ]
  40857. ))
  40858. characterMakers.push(() => makeCharacter(
  40859. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40860. {
  40861. front: {
  40862. height: math.unit(170, "cm"),
  40863. weight: math.unit(66, "kg"),
  40864. name: "Front",
  40865. image: {
  40866. source: "./media/characters/thux-ei/front.svg",
  40867. extra: 1109/1011,
  40868. bottom: 8/1117
  40869. }
  40870. },
  40871. },
  40872. [
  40873. {
  40874. name: "Normal",
  40875. height: math.unit(170, "cm"),
  40876. default: true
  40877. },
  40878. ]
  40879. ))
  40880. characterMakers.push(() => makeCharacter(
  40881. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40882. {
  40883. front: {
  40884. height: math.unit(5, "feet"),
  40885. weight: math.unit(120, "lb"),
  40886. name: "Front",
  40887. image: {
  40888. source: "./media/characters/roxanne-voltaire/front.svg",
  40889. extra: 1901/1779,
  40890. bottom: 53/1954
  40891. }
  40892. },
  40893. },
  40894. [
  40895. {
  40896. name: "Normal",
  40897. height: math.unit(5, "feet"),
  40898. default: true
  40899. },
  40900. {
  40901. name: "Giant",
  40902. height: math.unit(50, "feet")
  40903. },
  40904. {
  40905. name: "Titan",
  40906. height: math.unit(500, "feet")
  40907. },
  40908. {
  40909. name: "Macro",
  40910. height: math.unit(5000, "feet")
  40911. },
  40912. {
  40913. name: "Megamacro",
  40914. height: math.unit(50000, "feet")
  40915. },
  40916. {
  40917. name: "Gigamacro",
  40918. height: math.unit(500000, "feet")
  40919. },
  40920. {
  40921. name: "Teramacro",
  40922. height: math.unit(5e6, "feet")
  40923. },
  40924. ]
  40925. ))
  40926. characterMakers.push(() => makeCharacter(
  40927. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40928. {
  40929. front: {
  40930. height: math.unit(6 + 2/12, "feet"),
  40931. name: "Front",
  40932. image: {
  40933. source: "./media/characters/squeaks/front.svg",
  40934. extra: 1823/1768,
  40935. bottom: 138/1961
  40936. }
  40937. },
  40938. },
  40939. [
  40940. {
  40941. name: "Micro",
  40942. height: math.unit(0.5, "inches")
  40943. },
  40944. {
  40945. name: "Normal",
  40946. height: math.unit(6 + 2/12, "feet"),
  40947. default: true
  40948. },
  40949. {
  40950. name: "Macro",
  40951. height: math.unit(600, "feet")
  40952. },
  40953. ]
  40954. ))
  40955. characterMakers.push(() => makeCharacter(
  40956. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40957. {
  40958. front: {
  40959. height: math.unit(1.72, "meters"),
  40960. name: "Front",
  40961. image: {
  40962. source: "./media/characters/archinger/front.svg",
  40963. extra: 1861/1675,
  40964. bottom: 125/1986
  40965. }
  40966. },
  40967. back: {
  40968. height: math.unit(1.72, "meters"),
  40969. name: "Back",
  40970. image: {
  40971. source: "./media/characters/archinger/back.svg",
  40972. extra: 1844/1701,
  40973. bottom: 104/1948
  40974. }
  40975. },
  40976. cock: {
  40977. height: math.unit(0.59, "feet"),
  40978. name: "Cock",
  40979. image: {
  40980. source: "./media/characters/archinger/cock.svg"
  40981. }
  40982. },
  40983. },
  40984. [
  40985. {
  40986. name: "Normal",
  40987. height: math.unit(1.72, "meters"),
  40988. default: true
  40989. },
  40990. {
  40991. name: "Macro",
  40992. height: math.unit(84, "meters")
  40993. },
  40994. {
  40995. name: "Macro+",
  40996. height: math.unit(112, "meters")
  40997. },
  40998. {
  40999. name: "Macro++",
  41000. height: math.unit(960, "meters")
  41001. },
  41002. {
  41003. name: "Macro+++",
  41004. height: math.unit(4, "km")
  41005. },
  41006. {
  41007. name: "Macro++++",
  41008. height: math.unit(48, "km")
  41009. },
  41010. {
  41011. name: "Macro+++++",
  41012. height: math.unit(4500, "km")
  41013. },
  41014. ]
  41015. ))
  41016. characterMakers.push(() => makeCharacter(
  41017. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41018. {
  41019. front: {
  41020. height: math.unit(5 + 5/12, "feet"),
  41021. name: "Front",
  41022. image: {
  41023. source: "./media/characters/alsnapz/front.svg",
  41024. extra: 1157/1065,
  41025. bottom: 42/1199
  41026. }
  41027. },
  41028. },
  41029. [
  41030. {
  41031. name: "Normal",
  41032. height: math.unit(5 + 5/12, "feet"),
  41033. default: true
  41034. },
  41035. ]
  41036. ))
  41037. characterMakers.push(() => makeCharacter(
  41038. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41039. {
  41040. side: {
  41041. height: math.unit(3.2, "earths"),
  41042. name: "Side",
  41043. image: {
  41044. source: "./media/characters/mag/side.svg",
  41045. extra: 1331/1008,
  41046. bottom: 52/1383
  41047. }
  41048. },
  41049. wing: {
  41050. height: math.unit(1.94, "earths"),
  41051. name: "Wing",
  41052. image: {
  41053. source: "./media/characters/mag/wing.svg"
  41054. }
  41055. },
  41056. dick: {
  41057. height: math.unit(1.8, "earths"),
  41058. name: "Dick",
  41059. image: {
  41060. source: "./media/characters/mag/dick.svg"
  41061. }
  41062. },
  41063. ass: {
  41064. height: math.unit(1.33, "earths"),
  41065. name: "Ass",
  41066. image: {
  41067. source: "./media/characters/mag/ass.svg"
  41068. }
  41069. },
  41070. head: {
  41071. height: math.unit(1.1, "earths"),
  41072. name: "Head",
  41073. image: {
  41074. source: "./media/characters/mag/head.svg"
  41075. }
  41076. },
  41077. maw: {
  41078. height: math.unit(1.62, "earths"),
  41079. name: "Maw",
  41080. image: {
  41081. source: "./media/characters/mag/maw.svg"
  41082. }
  41083. },
  41084. },
  41085. [
  41086. {
  41087. name: "Small",
  41088. height: math.unit(162, "feet")
  41089. },
  41090. {
  41091. name: "Normal",
  41092. height: math.unit(3.2, "earths"),
  41093. default: true
  41094. },
  41095. ]
  41096. ))
  41097. characterMakers.push(() => makeCharacter(
  41098. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41099. {
  41100. front: {
  41101. height: math.unit(512, "feet"),
  41102. weight: math.unit(63509, "tonnes"),
  41103. name: "Front",
  41104. image: {
  41105. source: "./media/characters/vorrel-harroc/front.svg",
  41106. extra: 1075/1063,
  41107. bottom: 62/1137
  41108. }
  41109. },
  41110. },
  41111. [
  41112. {
  41113. name: "Normal",
  41114. height: math.unit(10, "feet")
  41115. },
  41116. {
  41117. name: "Macro",
  41118. height: math.unit(512, "feet"),
  41119. default: true
  41120. },
  41121. {
  41122. name: "Megamacro",
  41123. height: math.unit(256, "miles")
  41124. },
  41125. {
  41126. name: "Gigamacro",
  41127. height: math.unit(4096, "miles")
  41128. },
  41129. ]
  41130. ))
  41131. characterMakers.push(() => makeCharacter(
  41132. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41133. {
  41134. side: {
  41135. height: math.unit(50, "feet"),
  41136. name: "Side",
  41137. image: {
  41138. source: "./media/characters/froimar/side.svg",
  41139. extra: 855/638,
  41140. bottom: 99/954
  41141. }
  41142. },
  41143. },
  41144. [
  41145. {
  41146. name: "Macro",
  41147. height: math.unit(50, "feet"),
  41148. default: true
  41149. },
  41150. ]
  41151. ))
  41152. characterMakers.push(() => makeCharacter(
  41153. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41154. {
  41155. front: {
  41156. height: math.unit(210, "miles"),
  41157. name: "Front",
  41158. image: {
  41159. source: "./media/characters/timothy/front.svg",
  41160. extra: 1007/943,
  41161. bottom: 62/1069
  41162. }
  41163. },
  41164. frontSkirt: {
  41165. height: math.unit(210, "miles"),
  41166. name: "Front (Skirt)",
  41167. image: {
  41168. source: "./media/characters/timothy/front-skirt.svg",
  41169. extra: 1007/943,
  41170. bottom: 62/1069
  41171. }
  41172. },
  41173. frontCoat: {
  41174. height: math.unit(210, "miles"),
  41175. name: "Front (Coat)",
  41176. image: {
  41177. source: "./media/characters/timothy/front-coat.svg",
  41178. extra: 1007/943,
  41179. bottom: 62/1069
  41180. }
  41181. },
  41182. },
  41183. [
  41184. {
  41185. name: "Macro",
  41186. height: math.unit(210, "miles"),
  41187. default: true
  41188. },
  41189. {
  41190. name: "Megamacro",
  41191. height: math.unit(210000, "miles")
  41192. },
  41193. ]
  41194. ))
  41195. characterMakers.push(() => makeCharacter(
  41196. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41197. {
  41198. front: {
  41199. height: math.unit(188, "feet"),
  41200. name: "Front",
  41201. image: {
  41202. source: "./media/characters/pyotr/front.svg",
  41203. extra: 1912/1826,
  41204. bottom: 18/1930
  41205. }
  41206. },
  41207. },
  41208. [
  41209. {
  41210. name: "Macro",
  41211. height: math.unit(188, "feet"),
  41212. default: true
  41213. },
  41214. {
  41215. name: "Megamacro",
  41216. height: math.unit(8, "miles")
  41217. },
  41218. ]
  41219. ))
  41220. characterMakers.push(() => makeCharacter(
  41221. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41222. {
  41223. side: {
  41224. height: math.unit(10, "feet"),
  41225. weight: math.unit(4500, "lb"),
  41226. name: "Side",
  41227. image: {
  41228. source: "./media/characters/ackart/side.svg",
  41229. extra: 1776/1668,
  41230. bottom: 116/1892
  41231. }
  41232. },
  41233. },
  41234. [
  41235. {
  41236. name: "Normal",
  41237. height: math.unit(10, "feet"),
  41238. default: true
  41239. },
  41240. ]
  41241. ))
  41242. characterMakers.push(() => makeCharacter(
  41243. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41244. {
  41245. side: {
  41246. height: math.unit(21, "feet"),
  41247. name: "Side",
  41248. image: {
  41249. source: "./media/characters/nolow/side.svg",
  41250. extra: 1484/1434,
  41251. bottom: 85/1569
  41252. }
  41253. },
  41254. sideErect: {
  41255. height: math.unit(21, "feet"),
  41256. name: "Side-erect",
  41257. image: {
  41258. source: "./media/characters/nolow/side-erect.svg",
  41259. extra: 1484/1434,
  41260. bottom: 85/1569
  41261. }
  41262. },
  41263. },
  41264. [
  41265. {
  41266. name: "Regular",
  41267. height: math.unit(12, "feet")
  41268. },
  41269. {
  41270. name: "Big Chee",
  41271. height: math.unit(21, "feet"),
  41272. default: true
  41273. },
  41274. ]
  41275. ))
  41276. characterMakers.push(() => makeCharacter(
  41277. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41278. {
  41279. front: {
  41280. height: math.unit(7, "feet"),
  41281. weight: math.unit(250, "lb"),
  41282. name: "Front",
  41283. image: {
  41284. source: "./media/characters/nines/front.svg",
  41285. extra: 1741/1607,
  41286. bottom: 41/1782
  41287. }
  41288. },
  41289. side: {
  41290. height: math.unit(7, "feet"),
  41291. weight: math.unit(250, "lb"),
  41292. name: "Side",
  41293. image: {
  41294. source: "./media/characters/nines/side.svg",
  41295. extra: 1854/1735,
  41296. bottom: 93/1947
  41297. }
  41298. },
  41299. back: {
  41300. height: math.unit(7, "feet"),
  41301. weight: math.unit(250, "lb"),
  41302. name: "Back",
  41303. image: {
  41304. source: "./media/characters/nines/back.svg",
  41305. extra: 1748/1615,
  41306. bottom: 20/1768
  41307. }
  41308. },
  41309. },
  41310. [
  41311. {
  41312. name: "Megamacro",
  41313. height: math.unit(99, "km"),
  41314. default: true
  41315. },
  41316. ]
  41317. ))
  41318. characterMakers.push(() => makeCharacter(
  41319. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41320. {
  41321. front: {
  41322. height: math.unit(5 + 10/12, "feet"),
  41323. weight: math.unit(210, "lb"),
  41324. name: "Front",
  41325. image: {
  41326. source: "./media/characters/zenith/front.svg",
  41327. extra: 1531/1452,
  41328. bottom: 198/1729
  41329. }
  41330. },
  41331. back: {
  41332. height: math.unit(5 + 10/12, "feet"),
  41333. weight: math.unit(210, "lb"),
  41334. name: "Back",
  41335. image: {
  41336. source: "./media/characters/zenith/back.svg",
  41337. extra: 1571/1487,
  41338. bottom: 75/1646
  41339. }
  41340. },
  41341. },
  41342. [
  41343. {
  41344. name: "Normal",
  41345. height: math.unit(5 + 10/12, "feet"),
  41346. default: true
  41347. }
  41348. ]
  41349. ))
  41350. characterMakers.push(() => makeCharacter(
  41351. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41352. {
  41353. front: {
  41354. height: math.unit(4, "feet"),
  41355. weight: math.unit(60, "lb"),
  41356. name: "Front",
  41357. image: {
  41358. source: "./media/characters/jasper/front.svg",
  41359. extra: 1450/1379,
  41360. bottom: 19/1469
  41361. }
  41362. },
  41363. },
  41364. [
  41365. {
  41366. name: "Normal",
  41367. height: math.unit(4, "feet"),
  41368. default: true
  41369. },
  41370. ]
  41371. ))
  41372. characterMakers.push(() => makeCharacter(
  41373. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41374. {
  41375. front: {
  41376. height: math.unit(6 + 5/12, "feet"),
  41377. weight: math.unit(290, "lb"),
  41378. name: "Front",
  41379. image: {
  41380. source: "./media/characters/tiberius-thyben/front.svg",
  41381. extra: 757/739,
  41382. bottom: 39/796
  41383. }
  41384. },
  41385. },
  41386. [
  41387. {
  41388. name: "Micro",
  41389. height: math.unit(1.5, "inches")
  41390. },
  41391. {
  41392. name: "Normal",
  41393. height: math.unit(6 + 5/12, "feet"),
  41394. default: true
  41395. },
  41396. {
  41397. name: "Macro",
  41398. height: math.unit(300, "feet")
  41399. },
  41400. ]
  41401. ))
  41402. characterMakers.push(() => makeCharacter(
  41403. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41404. {
  41405. front: {
  41406. height: math.unit(5 + 6/12, "feet"),
  41407. weight: math.unit(60, "kg"),
  41408. name: "Front",
  41409. image: {
  41410. source: "./media/characters/sabre/front.svg",
  41411. extra: 738/671,
  41412. bottom: 27/765
  41413. }
  41414. },
  41415. },
  41416. [
  41417. {
  41418. name: "Teeny",
  41419. height: math.unit(2, "inches")
  41420. },
  41421. {
  41422. name: "Smol",
  41423. height: math.unit(8, "inches")
  41424. },
  41425. {
  41426. name: "Normal",
  41427. height: math.unit(5 + 6/12, "feet"),
  41428. default: true
  41429. },
  41430. {
  41431. name: "Mini-Macro",
  41432. height: math.unit(15, "feet")
  41433. },
  41434. {
  41435. name: "Macro",
  41436. height: math.unit(50, "feet")
  41437. },
  41438. ]
  41439. ))
  41440. characterMakers.push(() => makeCharacter(
  41441. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41442. {
  41443. front: {
  41444. height: math.unit(6 + 4/12, "feet"),
  41445. weight: math.unit(170, "lb"),
  41446. name: "Front",
  41447. image: {
  41448. source: "./media/characters/charlie/front.svg",
  41449. extra: 1348/1228,
  41450. bottom: 15/1363
  41451. }
  41452. },
  41453. },
  41454. [
  41455. {
  41456. name: "Macro",
  41457. height: math.unit(1700, "meters"),
  41458. default: true
  41459. },
  41460. {
  41461. name: "MegaMacro",
  41462. height: math.unit(20400, "meters")
  41463. },
  41464. ]
  41465. ))
  41466. characterMakers.push(() => makeCharacter(
  41467. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41468. {
  41469. front: {
  41470. height: math.unit(6 + 3/12, "feet"),
  41471. weight: math.unit(185, "lb"),
  41472. name: "Front",
  41473. image: {
  41474. source: "./media/characters/susan-grant/front.svg",
  41475. extra: 1351/1327,
  41476. bottom: 26/1377
  41477. }
  41478. },
  41479. },
  41480. [
  41481. {
  41482. name: "Normal",
  41483. height: math.unit(6 + 3/12, "feet"),
  41484. default: true
  41485. },
  41486. {
  41487. name: "Macro",
  41488. height: math.unit(225, "feet")
  41489. },
  41490. {
  41491. name: "Macro+",
  41492. height: math.unit(900, "feet")
  41493. },
  41494. {
  41495. name: "MegaMacro",
  41496. height: math.unit(14400, "feet")
  41497. },
  41498. ]
  41499. ))
  41500. characterMakers.push(() => makeCharacter(
  41501. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41502. {
  41503. front: {
  41504. height: math.unit(5 + 4/12, "feet"),
  41505. weight: math.unit(110, "lb"),
  41506. name: "Front",
  41507. image: {
  41508. source: "./media/characters/axel-isanov/front.svg",
  41509. extra: 1096/1065,
  41510. bottom: 13/1109
  41511. }
  41512. },
  41513. },
  41514. [
  41515. {
  41516. name: "Normal",
  41517. height: math.unit(5 + 4/12, "feet"),
  41518. default: true
  41519. },
  41520. ]
  41521. ))
  41522. characterMakers.push(() => makeCharacter(
  41523. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41524. {
  41525. front: {
  41526. height: math.unit(9, "feet"),
  41527. weight: math.unit(467, "lb"),
  41528. name: "Front",
  41529. image: {
  41530. source: "./media/characters/necahual/front.svg",
  41531. extra: 920/873,
  41532. bottom: 26/946
  41533. }
  41534. },
  41535. back: {
  41536. height: math.unit(9, "feet"),
  41537. weight: math.unit(467, "lb"),
  41538. name: "Back",
  41539. image: {
  41540. source: "./media/characters/necahual/back.svg",
  41541. extra: 930/884,
  41542. bottom: 16/946
  41543. }
  41544. },
  41545. frontUnderwear: {
  41546. height: math.unit(9, "feet"),
  41547. weight: math.unit(467, "lb"),
  41548. name: "Front (Underwear)",
  41549. image: {
  41550. source: "./media/characters/necahual/front-underwear.svg",
  41551. extra: 920/873,
  41552. bottom: 26/946
  41553. }
  41554. },
  41555. frontDressed: {
  41556. height: math.unit(9, "feet"),
  41557. weight: math.unit(467, "lb"),
  41558. name: "Front (Dressed)",
  41559. image: {
  41560. source: "./media/characters/necahual/front-dressed.svg",
  41561. extra: 920/873,
  41562. bottom: 26/946
  41563. }
  41564. },
  41565. },
  41566. [
  41567. {
  41568. name: "Comprsesed",
  41569. height: math.unit(9, "feet")
  41570. },
  41571. {
  41572. name: "Natural",
  41573. height: math.unit(15, "feet"),
  41574. default: true
  41575. },
  41576. {
  41577. name: "Boosted",
  41578. height: math.unit(50, "feet")
  41579. },
  41580. {
  41581. name: "Boosted+",
  41582. height: math.unit(150, "feet")
  41583. },
  41584. {
  41585. name: "Max",
  41586. height: math.unit(500, "feet")
  41587. },
  41588. ]
  41589. ))
  41590. characterMakers.push(() => makeCharacter(
  41591. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41592. {
  41593. front: {
  41594. height: math.unit(22 + 1/12, "feet"),
  41595. weight: math.unit(3200, "lb"),
  41596. name: "Front",
  41597. image: {
  41598. source: "./media/characters/theo-acacia/front.svg",
  41599. extra: 1796/1741,
  41600. bottom: 83/1879
  41601. }
  41602. },
  41603. frontUnderwear: {
  41604. height: math.unit(22 + 1/12, "feet"),
  41605. weight: math.unit(3200, "lb"),
  41606. name: "Front (Underwear)",
  41607. image: {
  41608. source: "./media/characters/theo-acacia/front-underwear.svg",
  41609. extra: 1796/1741,
  41610. bottom: 83/1879
  41611. }
  41612. },
  41613. frontNude: {
  41614. height: math.unit(22 + 1/12, "feet"),
  41615. weight: math.unit(3200, "lb"),
  41616. name: "Front (Nude)",
  41617. image: {
  41618. source: "./media/characters/theo-acacia/front-nude.svg",
  41619. extra: 1796/1741,
  41620. bottom: 83/1879
  41621. }
  41622. },
  41623. },
  41624. [
  41625. {
  41626. name: "Normal",
  41627. height: math.unit(22 + 1/12, "feet"),
  41628. default: true
  41629. },
  41630. ]
  41631. ))
  41632. characterMakers.push(() => makeCharacter(
  41633. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41634. {
  41635. front: {
  41636. height: math.unit(20, "feet"),
  41637. name: "Front",
  41638. image: {
  41639. source: "./media/characters/astra/front.svg",
  41640. extra: 1850/1714,
  41641. bottom: 106/1956
  41642. }
  41643. },
  41644. frontUndressed: {
  41645. height: math.unit(20, "feet"),
  41646. name: "Front (Undressed)",
  41647. image: {
  41648. source: "./media/characters/astra/front-undressed.svg",
  41649. extra: 1926/1749,
  41650. bottom: 0/1926
  41651. }
  41652. },
  41653. hand: {
  41654. height: math.unit(1.53, "feet"),
  41655. name: "Hand",
  41656. image: {
  41657. source: "./media/characters/astra/hand.svg"
  41658. }
  41659. },
  41660. paw: {
  41661. height: math.unit(1.53, "feet"),
  41662. name: "Paw",
  41663. image: {
  41664. source: "./media/characters/astra/paw.svg"
  41665. }
  41666. },
  41667. },
  41668. [
  41669. {
  41670. name: "Smallest",
  41671. height: math.unit(20, "feet")
  41672. },
  41673. {
  41674. name: "Normal",
  41675. height: math.unit(1e9, "miles"),
  41676. default: true
  41677. },
  41678. {
  41679. name: "Larger",
  41680. height: math.unit(5, "multiverses")
  41681. },
  41682. {
  41683. name: "Largest",
  41684. height: math.unit(1e9, "multiverses")
  41685. },
  41686. ]
  41687. ))
  41688. characterMakers.push(() => makeCharacter(
  41689. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41690. {
  41691. front: {
  41692. height: math.unit(8, "feet"),
  41693. name: "Front",
  41694. image: {
  41695. source: "./media/characters/breanna/front.svg",
  41696. extra: 1912/1632,
  41697. bottom: 33/1945
  41698. }
  41699. },
  41700. },
  41701. [
  41702. {
  41703. name: "Smallest",
  41704. height: math.unit(8, "feet")
  41705. },
  41706. {
  41707. name: "Normal",
  41708. height: math.unit(1, "mile"),
  41709. default: true
  41710. },
  41711. {
  41712. name: "Maximum",
  41713. height: math.unit(1500000000000, "lightyears")
  41714. },
  41715. ]
  41716. ))
  41717. characterMakers.push(() => makeCharacter(
  41718. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41719. {
  41720. front: {
  41721. height: math.unit(5 + 11/12, "feet"),
  41722. weight: math.unit(155, "lb"),
  41723. name: "Front",
  41724. image: {
  41725. source: "./media/characters/cai/front.svg",
  41726. extra: 1823/1702,
  41727. bottom: 32/1855
  41728. }
  41729. },
  41730. back: {
  41731. height: math.unit(5 + 11/12, "feet"),
  41732. weight: math.unit(155, "lb"),
  41733. name: "Back",
  41734. image: {
  41735. source: "./media/characters/cai/back.svg",
  41736. extra: 1809/1708,
  41737. bottom: 31/1840
  41738. }
  41739. },
  41740. },
  41741. [
  41742. {
  41743. name: "Normal",
  41744. height: math.unit(5 + 11/12, "feet"),
  41745. default: true
  41746. },
  41747. {
  41748. name: "Big",
  41749. height: math.unit(15, "feet")
  41750. },
  41751. {
  41752. name: "Macro",
  41753. height: math.unit(200, "feet")
  41754. },
  41755. ]
  41756. ))
  41757. characterMakers.push(() => makeCharacter(
  41758. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41759. {
  41760. front: {
  41761. height: math.unit(5 + 6/12, "feet"),
  41762. weight: math.unit(160, "lb"),
  41763. name: "Front",
  41764. image: {
  41765. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41766. extra: 1227/1174,
  41767. bottom: 37/1264
  41768. }
  41769. },
  41770. },
  41771. [
  41772. {
  41773. name: "Macro",
  41774. height: math.unit(444, "meters"),
  41775. default: true
  41776. },
  41777. ]
  41778. ))
  41779. characterMakers.push(() => makeCharacter(
  41780. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41781. {
  41782. front: {
  41783. height: math.unit(18 + 7/12, "feet"),
  41784. name: "Front",
  41785. image: {
  41786. source: "./media/characters/rex/front.svg",
  41787. extra: 1941/1807,
  41788. bottom: 66/2007
  41789. }
  41790. },
  41791. back: {
  41792. height: math.unit(18 + 7/12, "feet"),
  41793. name: "Back",
  41794. image: {
  41795. source: "./media/characters/rex/back.svg",
  41796. extra: 1937/1822,
  41797. bottom: 42/1979
  41798. }
  41799. },
  41800. boot: {
  41801. height: math.unit(3.45, "feet"),
  41802. name: "Boot",
  41803. image: {
  41804. source: "./media/characters/rex/boot.svg"
  41805. }
  41806. },
  41807. paw: {
  41808. height: math.unit(4.17, "feet"),
  41809. name: "Paw",
  41810. image: {
  41811. source: "./media/characters/rex/paw.svg"
  41812. }
  41813. },
  41814. head: {
  41815. height: math.unit(6.728, "feet"),
  41816. name: "Head",
  41817. image: {
  41818. source: "./media/characters/rex/head.svg"
  41819. }
  41820. },
  41821. },
  41822. [
  41823. {
  41824. name: "Nano",
  41825. height: math.unit(18 + 7/12, "feet")
  41826. },
  41827. {
  41828. name: "Micro",
  41829. height: math.unit(1.5, "megameters")
  41830. },
  41831. {
  41832. name: "Normal",
  41833. height: math.unit(440, "megameters"),
  41834. default: true
  41835. },
  41836. {
  41837. name: "Macro",
  41838. height: math.unit(2.5, "gigameters")
  41839. },
  41840. {
  41841. name: "Gigamacro",
  41842. height: math.unit(2, "galaxies")
  41843. },
  41844. ]
  41845. ))
  41846. characterMakers.push(() => makeCharacter(
  41847. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41848. {
  41849. side: {
  41850. height: math.unit(32, "feet"),
  41851. weight: math.unit(250000, "lb"),
  41852. name: "Side",
  41853. image: {
  41854. source: "./media/characters/silverwing/side.svg",
  41855. extra: 1100/1019,
  41856. bottom: 204/1304
  41857. }
  41858. },
  41859. },
  41860. [
  41861. {
  41862. name: "Normal",
  41863. height: math.unit(32, "feet"),
  41864. default: true
  41865. },
  41866. ]
  41867. ))
  41868. characterMakers.push(() => makeCharacter(
  41869. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  41870. {
  41871. front: {
  41872. height: math.unit(6 + 6/12, "feet"),
  41873. weight: math.unit(350, "lb"),
  41874. name: "Front",
  41875. image: {
  41876. source: "./media/characters/tristan-hawthorne/front.svg",
  41877. extra: 1159/1124,
  41878. bottom: 37/1196
  41879. },
  41880. form: "labrador",
  41881. default: true
  41882. },
  41883. skunkFront: {
  41884. height: math.unit(4 + 6/12, "feet"),
  41885. weight: math.unit(120, "lb"),
  41886. name: "Front",
  41887. image: {
  41888. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  41889. extra: 1609/1551,
  41890. bottom: 169/1778
  41891. },
  41892. form: "skunk",
  41893. default: true
  41894. },
  41895. },
  41896. [
  41897. {
  41898. name: "Normal",
  41899. height: math.unit(6 + 6/12, "feet"),
  41900. form: "labrador",
  41901. default: true
  41902. },
  41903. {
  41904. name: "Normal",
  41905. height: math.unit(4 + 6/12, "feet"),
  41906. form: "skunk",
  41907. default: true
  41908. },
  41909. ],
  41910. {
  41911. "labrador": {
  41912. name: "Labrador",
  41913. default: true
  41914. },
  41915. "skunk": {
  41916. name: "Skunk"
  41917. }
  41918. }
  41919. ))
  41920. characterMakers.push(() => makeCharacter(
  41921. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41922. {
  41923. front: {
  41924. height: math.unit(5 + 11/12, "feet"),
  41925. weight: math.unit(190, "lb"),
  41926. name: "Front",
  41927. image: {
  41928. source: "./media/characters/mizu/front.svg",
  41929. extra: 1988/1788,
  41930. bottom: 14/2002
  41931. }
  41932. },
  41933. },
  41934. [
  41935. {
  41936. name: "Normal",
  41937. height: math.unit(5 + 11/12, "feet"),
  41938. default: true
  41939. },
  41940. ]
  41941. ))
  41942. characterMakers.push(() => makeCharacter(
  41943. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41944. {
  41945. front: {
  41946. height: math.unit(1.7, "feet"),
  41947. weight: math.unit(50, "lb"),
  41948. name: "Front",
  41949. image: {
  41950. source: "./media/characters/dechroma/front.svg",
  41951. extra: 1095/859,
  41952. bottom: 64/1159
  41953. }
  41954. },
  41955. },
  41956. [
  41957. {
  41958. name: "Normal",
  41959. height: math.unit(1.7, "feet"),
  41960. default: true
  41961. },
  41962. ]
  41963. ))
  41964. characterMakers.push(() => makeCharacter(
  41965. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41966. {
  41967. side: {
  41968. height: math.unit(30, "feet"),
  41969. name: "Side",
  41970. image: {
  41971. source: "./media/characters/veluren-thanazel/side.svg",
  41972. extra: 1611/633,
  41973. bottom: 118/1729
  41974. }
  41975. },
  41976. front: {
  41977. height: math.unit(30, "feet"),
  41978. name: "Front",
  41979. image: {
  41980. source: "./media/characters/veluren-thanazel/front.svg",
  41981. extra: 1486/636,
  41982. bottom: 238/1724
  41983. }
  41984. },
  41985. head: {
  41986. height: math.unit(21.4, "feet"),
  41987. name: "Head",
  41988. image: {
  41989. source: "./media/characters/veluren-thanazel/head.svg"
  41990. }
  41991. },
  41992. genitals: {
  41993. height: math.unit(19.4, "feet"),
  41994. name: "Genitals",
  41995. image: {
  41996. source: "./media/characters/veluren-thanazel/genitals.svg"
  41997. }
  41998. },
  41999. },
  42000. [
  42001. {
  42002. name: "Social",
  42003. height: math.unit(6, "feet")
  42004. },
  42005. {
  42006. name: "Play",
  42007. height: math.unit(12, "feet")
  42008. },
  42009. {
  42010. name: "True",
  42011. height: math.unit(30, "feet"),
  42012. default: true
  42013. },
  42014. ]
  42015. ))
  42016. characterMakers.push(() => makeCharacter(
  42017. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42018. {
  42019. front: {
  42020. height: math.unit(7 + 6/12, "feet"),
  42021. weight: math.unit(500, "kg"),
  42022. name: "Front",
  42023. image: {
  42024. source: "./media/characters/arcturas/front.svg",
  42025. extra: 1700/1500,
  42026. bottom: 145/1845
  42027. }
  42028. },
  42029. },
  42030. [
  42031. {
  42032. name: "Normal",
  42033. height: math.unit(7 + 6/12, "feet"),
  42034. default: true
  42035. },
  42036. ]
  42037. ))
  42038. characterMakers.push(() => makeCharacter(
  42039. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42040. {
  42041. side: {
  42042. height: math.unit(6, "feet"),
  42043. weight: math.unit(2, "tons"),
  42044. name: "Side",
  42045. image: {
  42046. source: "./media/characters/vitaen/side.svg",
  42047. extra: 1157/617,
  42048. bottom: 122/1279
  42049. }
  42050. },
  42051. },
  42052. [
  42053. {
  42054. name: "Normal",
  42055. height: math.unit(6, "feet"),
  42056. default: true
  42057. },
  42058. ]
  42059. ))
  42060. characterMakers.push(() => makeCharacter(
  42061. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42062. {
  42063. front: {
  42064. height: math.unit(19, "feet"),
  42065. name: "Front",
  42066. image: {
  42067. source: "./media/characters/fia-dreamweaver/front.svg",
  42068. extra: 1630/1504,
  42069. bottom: 25/1655
  42070. }
  42071. },
  42072. },
  42073. [
  42074. {
  42075. name: "Normal",
  42076. height: math.unit(19, "feet"),
  42077. default: true
  42078. },
  42079. ]
  42080. ))
  42081. characterMakers.push(() => makeCharacter(
  42082. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42083. {
  42084. front: {
  42085. height: math.unit(5 + 4/12, "feet"),
  42086. name: "Front",
  42087. image: {
  42088. source: "./media/characters/artan/front.svg",
  42089. extra: 1618/1535,
  42090. bottom: 46/1664
  42091. }
  42092. },
  42093. back: {
  42094. height: math.unit(5 + 4/12, "feet"),
  42095. name: "Back",
  42096. image: {
  42097. source: "./media/characters/artan/back.svg",
  42098. extra: 1618/1543,
  42099. bottom: 31/1649
  42100. }
  42101. },
  42102. },
  42103. [
  42104. {
  42105. name: "Normal",
  42106. height: math.unit(5 + 4/12, "feet"),
  42107. default: true
  42108. },
  42109. ]
  42110. ))
  42111. characterMakers.push(() => makeCharacter(
  42112. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42113. {
  42114. side: {
  42115. height: math.unit(182, "cm"),
  42116. weight: math.unit(1000, "lb"),
  42117. name: "Side",
  42118. image: {
  42119. source: "./media/characters/silver-dragon/side.svg",
  42120. extra: 710/287,
  42121. bottom: 88/798
  42122. }
  42123. },
  42124. },
  42125. [
  42126. {
  42127. name: "Normal",
  42128. height: math.unit(182, "cm"),
  42129. default: true
  42130. },
  42131. ]
  42132. ))
  42133. characterMakers.push(() => makeCharacter(
  42134. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42135. {
  42136. side: {
  42137. height: math.unit(6 + 6/12, "feet"),
  42138. weight: math.unit(1.5, "tons"),
  42139. name: "Side",
  42140. image: {
  42141. source: "./media/characters/zephyr/side.svg",
  42142. extra: 1433/586,
  42143. bottom: 109/1542
  42144. }
  42145. },
  42146. },
  42147. [
  42148. {
  42149. name: "Normal",
  42150. height: math.unit(6 + 6/12, "feet"),
  42151. default: true
  42152. },
  42153. ]
  42154. ))
  42155. characterMakers.push(() => makeCharacter(
  42156. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42157. {
  42158. side: {
  42159. height: math.unit(1, "feet"),
  42160. name: "Side",
  42161. image: {
  42162. source: "./media/characters/vixye/side.svg",
  42163. extra: 632/541,
  42164. bottom: 0/632
  42165. }
  42166. },
  42167. },
  42168. [
  42169. {
  42170. name: "Normal",
  42171. height: math.unit(1, "feet"),
  42172. default: true
  42173. },
  42174. {
  42175. name: "True",
  42176. height: math.unit(1e15, "multiverses")
  42177. },
  42178. ]
  42179. ))
  42180. characterMakers.push(() => makeCharacter(
  42181. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42182. {
  42183. front: {
  42184. height: math.unit(8 + 2/12, "feet"),
  42185. weight: math.unit(650, "lb"),
  42186. name: "Front",
  42187. image: {
  42188. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42189. extra: 1174/1137,
  42190. bottom: 82/1256
  42191. }
  42192. },
  42193. back: {
  42194. height: math.unit(8 + 2/12, "feet"),
  42195. weight: math.unit(650, "lb"),
  42196. name: "Back",
  42197. image: {
  42198. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42199. extra: 1204/1157,
  42200. bottom: 46/1250
  42201. }
  42202. },
  42203. },
  42204. [
  42205. {
  42206. name: "Wildform",
  42207. height: math.unit(8 + 2/12, "feet"),
  42208. default: true
  42209. },
  42210. ]
  42211. ))
  42212. characterMakers.push(() => makeCharacter(
  42213. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42214. {
  42215. front: {
  42216. height: math.unit(18, "feet"),
  42217. name: "Front",
  42218. image: {
  42219. source: "./media/characters/cyphin/front.svg",
  42220. extra: 970/886,
  42221. bottom: 42/1012
  42222. }
  42223. },
  42224. back: {
  42225. height: math.unit(18, "feet"),
  42226. name: "Back",
  42227. image: {
  42228. source: "./media/characters/cyphin/back.svg",
  42229. extra: 1009/894,
  42230. bottom: 24/1033
  42231. }
  42232. },
  42233. head: {
  42234. height: math.unit(5.05, "feet"),
  42235. name: "Head",
  42236. image: {
  42237. source: "./media/characters/cyphin/head.svg"
  42238. }
  42239. },
  42240. tailbud: {
  42241. height: math.unit(5, "feet"),
  42242. name: "Tailbud",
  42243. image: {
  42244. source: "./media/characters/cyphin/tailbud.svg"
  42245. }
  42246. },
  42247. },
  42248. [
  42249. ]
  42250. ))
  42251. characterMakers.push(() => makeCharacter(
  42252. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42253. {
  42254. side: {
  42255. height: math.unit(10, "feet"),
  42256. weight: math.unit(6, "tons"),
  42257. name: "Side",
  42258. image: {
  42259. source: "./media/characters/raijin/side.svg",
  42260. extra: 1529/613,
  42261. bottom: 337/1866
  42262. }
  42263. },
  42264. },
  42265. [
  42266. {
  42267. name: "Normal",
  42268. height: math.unit(10, "feet"),
  42269. default: true
  42270. },
  42271. ]
  42272. ))
  42273. characterMakers.push(() => makeCharacter(
  42274. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42275. {
  42276. side: {
  42277. height: math.unit(9, "feet"),
  42278. name: "Side",
  42279. image: {
  42280. source: "./media/characters/nilghais/side.svg",
  42281. extra: 1047/744,
  42282. bottom: 91/1138
  42283. }
  42284. },
  42285. head: {
  42286. height: math.unit(3.14, "feet"),
  42287. name: "Head",
  42288. image: {
  42289. source: "./media/characters/nilghais/head.svg"
  42290. }
  42291. },
  42292. mouth: {
  42293. height: math.unit(4.6, "feet"),
  42294. name: "Mouth",
  42295. image: {
  42296. source: "./media/characters/nilghais/mouth.svg"
  42297. }
  42298. },
  42299. wings: {
  42300. height: math.unit(24, "feet"),
  42301. name: "Wings",
  42302. image: {
  42303. source: "./media/characters/nilghais/wings.svg"
  42304. }
  42305. },
  42306. ass: {
  42307. height: math.unit(6.12, "feet"),
  42308. name: "Ass",
  42309. image: {
  42310. source: "./media/characters/nilghais/ass.svg"
  42311. }
  42312. },
  42313. },
  42314. [
  42315. {
  42316. name: "Normal",
  42317. height: math.unit(9, "feet"),
  42318. default: true
  42319. },
  42320. ]
  42321. ))
  42322. characterMakers.push(() => makeCharacter(
  42323. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42324. {
  42325. regular: {
  42326. height: math.unit(16 + 2/12, "feet"),
  42327. weight: math.unit(2300, "lb"),
  42328. name: "Regular",
  42329. image: {
  42330. source: "./media/characters/zolgar/regular.svg",
  42331. extra: 1246/1004,
  42332. bottom: 124/1370
  42333. }
  42334. },
  42335. boxers: {
  42336. height: math.unit(16 + 2/12, "feet"),
  42337. weight: math.unit(2300, "lb"),
  42338. name: "Boxers",
  42339. image: {
  42340. source: "./media/characters/zolgar/boxers.svg",
  42341. extra: 1246/1004,
  42342. bottom: 124/1370
  42343. }
  42344. },
  42345. armored: {
  42346. height: math.unit(16 + 2/12, "feet"),
  42347. weight: math.unit(2300, "lb"),
  42348. name: "Armored",
  42349. image: {
  42350. source: "./media/characters/zolgar/armored.svg",
  42351. extra: 1246/1004,
  42352. bottom: 124/1370
  42353. }
  42354. },
  42355. goth: {
  42356. height: math.unit(16 + 2/12, "feet"),
  42357. weight: math.unit(2300, "lb"),
  42358. name: "Goth",
  42359. image: {
  42360. source: "./media/characters/zolgar/goth.svg",
  42361. extra: 1246/1004,
  42362. bottom: 124/1370
  42363. }
  42364. },
  42365. },
  42366. [
  42367. {
  42368. name: "Shrunken Down",
  42369. height: math.unit(9 + 2/12, "feet")
  42370. },
  42371. {
  42372. name: "Normal",
  42373. height: math.unit(16 + 2/12, "feet"),
  42374. default: true
  42375. },
  42376. ]
  42377. ))
  42378. characterMakers.push(() => makeCharacter(
  42379. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42380. {
  42381. front: {
  42382. height: math.unit(6, "feet"),
  42383. weight: math.unit(168, "lb"),
  42384. name: "Front",
  42385. image: {
  42386. source: "./media/characters/luca/front.svg",
  42387. extra: 841/667,
  42388. bottom: 102/943
  42389. }
  42390. },
  42391. },
  42392. [
  42393. {
  42394. name: "Normal",
  42395. height: math.unit(6, "feet"),
  42396. default: true
  42397. },
  42398. ]
  42399. ))
  42400. characterMakers.push(() => makeCharacter(
  42401. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42402. {
  42403. side: {
  42404. height: math.unit(7 + 3/12, "feet"),
  42405. weight: math.unit(312, "lb"),
  42406. name: "Side",
  42407. image: {
  42408. source: "./media/characters/zezo/side.svg",
  42409. extra: 1192/1067,
  42410. bottom: 63/1255
  42411. }
  42412. },
  42413. },
  42414. [
  42415. {
  42416. name: "Normal",
  42417. height: math.unit(7 + 3/12, "feet"),
  42418. default: true
  42419. },
  42420. ]
  42421. ))
  42422. characterMakers.push(() => makeCharacter(
  42423. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42424. {
  42425. front: {
  42426. height: math.unit(5 + 5/12, "feet"),
  42427. weight: math.unit(170, "lb"),
  42428. name: "Front",
  42429. image: {
  42430. source: "./media/characters/mayso/front.svg",
  42431. extra: 1215/1108,
  42432. bottom: 16/1231
  42433. }
  42434. },
  42435. },
  42436. [
  42437. {
  42438. name: "Normal",
  42439. height: math.unit(5 + 5/12, "feet"),
  42440. default: true
  42441. },
  42442. ]
  42443. ))
  42444. characterMakers.push(() => makeCharacter(
  42445. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42446. {
  42447. front: {
  42448. height: math.unit(4 + 3/12, "feet"),
  42449. weight: math.unit(80, "lb"),
  42450. name: "Front",
  42451. image: {
  42452. source: "./media/characters/hess/front.svg",
  42453. extra: 1200/1123,
  42454. bottom: 16/1216
  42455. }
  42456. },
  42457. },
  42458. [
  42459. {
  42460. name: "Normal",
  42461. height: math.unit(4 + 3/12, "feet"),
  42462. default: true
  42463. },
  42464. ]
  42465. ))
  42466. characterMakers.push(() => makeCharacter(
  42467. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42468. {
  42469. front: {
  42470. height: math.unit(1.9, "meters"),
  42471. name: "Front",
  42472. image: {
  42473. source: "./media/characters/ashgar/front.svg",
  42474. extra: 1177/1146,
  42475. bottom: 99/1276
  42476. }
  42477. },
  42478. back: {
  42479. height: math.unit(1.9, "meters"),
  42480. name: "Back",
  42481. image: {
  42482. source: "./media/characters/ashgar/back.svg",
  42483. extra: 1201/1183,
  42484. bottom: 53/1254
  42485. }
  42486. },
  42487. feral: {
  42488. height: math.unit(1.4, "meters"),
  42489. name: "Feral",
  42490. image: {
  42491. source: "./media/characters/ashgar/feral.svg",
  42492. extra: 370/345,
  42493. bottom: 45/415
  42494. }
  42495. },
  42496. },
  42497. [
  42498. {
  42499. name: "Normal",
  42500. height: math.unit(1.9, "meters"),
  42501. default: true
  42502. },
  42503. ]
  42504. ))
  42505. characterMakers.push(() => makeCharacter(
  42506. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42507. {
  42508. regular: {
  42509. height: math.unit(6, "feet"),
  42510. weight: math.unit(220, "lb"),
  42511. name: "Regular",
  42512. image: {
  42513. source: "./media/characters/phillip/regular.svg",
  42514. extra: 1373/1277,
  42515. bottom: 75/1448
  42516. }
  42517. },
  42518. dressed: {
  42519. height: math.unit(6, "feet"),
  42520. weight: math.unit(220, "lb"),
  42521. name: "Dressed",
  42522. image: {
  42523. source: "./media/characters/phillip/dressed.svg",
  42524. extra: 1373/1277,
  42525. bottom: 75/1448
  42526. }
  42527. },
  42528. paw: {
  42529. height: math.unit(1.44, "feet"),
  42530. name: "Paw",
  42531. image: {
  42532. source: "./media/characters/phillip/paw.svg"
  42533. }
  42534. },
  42535. },
  42536. [
  42537. {
  42538. name: "Normal",
  42539. height: math.unit(6, "feet"),
  42540. default: true
  42541. },
  42542. ]
  42543. ))
  42544. characterMakers.push(() => makeCharacter(
  42545. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42546. {
  42547. side: {
  42548. height: math.unit(42, "feet"),
  42549. name: "Side",
  42550. image: {
  42551. source: "./media/characters/uvula/side.svg",
  42552. extra: 683/586,
  42553. bottom: 60/743
  42554. }
  42555. },
  42556. front: {
  42557. height: math.unit(42, "feet"),
  42558. name: "Front",
  42559. image: {
  42560. source: "./media/characters/uvula/front.svg",
  42561. extra: 705/613,
  42562. bottom: 54/759
  42563. }
  42564. },
  42565. maw: {
  42566. height: math.unit(23.5, "feet"),
  42567. name: "Maw",
  42568. image: {
  42569. source: "./media/characters/uvula/maw.svg"
  42570. }
  42571. },
  42572. },
  42573. [
  42574. {
  42575. name: "Original Size",
  42576. height: math.unit(14, "inches")
  42577. },
  42578. {
  42579. name: "Human Size",
  42580. height: math.unit(6, "feet")
  42581. },
  42582. {
  42583. name: "Big",
  42584. height: math.unit(42, "feet"),
  42585. default: true
  42586. },
  42587. {
  42588. name: "Bigger",
  42589. height: math.unit(100, "feet")
  42590. },
  42591. ]
  42592. ))
  42593. characterMakers.push(() => makeCharacter(
  42594. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42595. {
  42596. front: {
  42597. height: math.unit(5 + 11/12, "feet"),
  42598. name: "Front",
  42599. image: {
  42600. source: "./media/characters/lannah/front.svg",
  42601. extra: 1208/1113,
  42602. bottom: 97/1305
  42603. }
  42604. },
  42605. },
  42606. [
  42607. {
  42608. name: "Normal",
  42609. height: math.unit(5 + 11/12, "feet"),
  42610. default: true
  42611. },
  42612. ]
  42613. ))
  42614. characterMakers.push(() => makeCharacter(
  42615. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42616. {
  42617. front: {
  42618. height: math.unit(6 + 3/12, "feet"),
  42619. weight: math.unit(3.5, "tons"),
  42620. name: "Front",
  42621. image: {
  42622. source: "./media/characters/emberflame/front.svg",
  42623. extra: 1198/672,
  42624. bottom: 82/1280
  42625. }
  42626. },
  42627. side: {
  42628. height: math.unit(6 + 3/12, "feet"),
  42629. weight: math.unit(3.5, "tons"),
  42630. name: "Side",
  42631. image: {
  42632. source: "./media/characters/emberflame/side.svg",
  42633. extra: 938/527,
  42634. bottom: 56/994
  42635. }
  42636. },
  42637. },
  42638. [
  42639. {
  42640. name: "Normal",
  42641. height: math.unit(6 + 3/12, "feet"),
  42642. default: true
  42643. },
  42644. ]
  42645. ))
  42646. characterMakers.push(() => makeCharacter(
  42647. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42648. {
  42649. side: {
  42650. height: math.unit(17.5, "feet"),
  42651. weight: math.unit(35, "tons"),
  42652. name: "Side",
  42653. image: {
  42654. source: "./media/characters/sophie-ambrose/side.svg",
  42655. extra: 1573/1242,
  42656. bottom: 71/1644
  42657. }
  42658. },
  42659. maw: {
  42660. height: math.unit(7.4, "feet"),
  42661. name: "Maw",
  42662. image: {
  42663. source: "./media/characters/sophie-ambrose/maw.svg"
  42664. }
  42665. },
  42666. },
  42667. [
  42668. {
  42669. name: "Normal",
  42670. height: math.unit(17.5, "feet"),
  42671. default: true
  42672. },
  42673. ]
  42674. ))
  42675. characterMakers.push(() => makeCharacter(
  42676. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42677. {
  42678. front: {
  42679. height: math.unit(280, "feet"),
  42680. weight: math.unit(550, "tons"),
  42681. name: "Front",
  42682. image: {
  42683. source: "./media/characters/king-mugi/front.svg",
  42684. extra: 1102/947,
  42685. bottom: 104/1206
  42686. }
  42687. },
  42688. },
  42689. [
  42690. {
  42691. name: "King Mugi",
  42692. height: math.unit(280, "feet"),
  42693. default: true
  42694. },
  42695. ]
  42696. ))
  42697. characterMakers.push(() => makeCharacter(
  42698. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42699. {
  42700. front: {
  42701. height: math.unit(64, "meters"),
  42702. name: "Front",
  42703. image: {
  42704. source: "./media/characters/nova-fox/front.svg",
  42705. extra: 1310/1246,
  42706. bottom: 65/1375
  42707. }
  42708. },
  42709. },
  42710. [
  42711. {
  42712. name: "Macro",
  42713. height: math.unit(64, "meters"),
  42714. default: true
  42715. },
  42716. ]
  42717. ))
  42718. characterMakers.push(() => makeCharacter(
  42719. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42720. {
  42721. front: {
  42722. height: math.unit(6 + 3/12, "feet"),
  42723. weight: math.unit(170, "lb"),
  42724. name: "Front",
  42725. image: {
  42726. source: "./media/characters/sam-bat/front.svg",
  42727. extra: 1601/1411,
  42728. bottom: 125/1726
  42729. }
  42730. },
  42731. back: {
  42732. height: math.unit(6 + 3/12, "feet"),
  42733. weight: math.unit(170, "lb"),
  42734. name: "Back",
  42735. image: {
  42736. source: "./media/characters/sam-bat/back.svg",
  42737. extra: 1577/1405,
  42738. bottom: 58/1635
  42739. }
  42740. },
  42741. },
  42742. [
  42743. {
  42744. name: "Normal",
  42745. height: math.unit(6 + 3/12, "feet"),
  42746. default: true
  42747. },
  42748. ]
  42749. ))
  42750. characterMakers.push(() => makeCharacter(
  42751. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42752. {
  42753. front: {
  42754. height: math.unit(59, "feet"),
  42755. weight: math.unit(40000, "lb"),
  42756. name: "Front",
  42757. image: {
  42758. source: "./media/characters/inari/front.svg",
  42759. extra: 1884/1350,
  42760. bottom: 95/1979
  42761. }
  42762. },
  42763. },
  42764. [
  42765. {
  42766. name: "Gigantamax",
  42767. height: math.unit(59, "feet"),
  42768. default: true
  42769. },
  42770. ]
  42771. ))
  42772. characterMakers.push(() => makeCharacter(
  42773. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42774. {
  42775. front: {
  42776. height: math.unit(5 + 8/12, "feet"),
  42777. name: "Front",
  42778. image: {
  42779. source: "./media/characters/elizabeth/front.svg",
  42780. extra: 1395/1298,
  42781. bottom: 54/1449
  42782. }
  42783. },
  42784. mouth: {
  42785. height: math.unit(1.97, "feet"),
  42786. name: "Mouth",
  42787. image: {
  42788. source: "./media/characters/elizabeth/mouth.svg"
  42789. }
  42790. },
  42791. foot: {
  42792. height: math.unit(1.17, "feet"),
  42793. name: "Foot",
  42794. image: {
  42795. source: "./media/characters/elizabeth/foot.svg"
  42796. }
  42797. },
  42798. },
  42799. [
  42800. {
  42801. name: "Normal",
  42802. height: math.unit(5 + 8/12, "feet"),
  42803. default: true
  42804. },
  42805. {
  42806. name: "Minimacro",
  42807. height: math.unit(18, "feet")
  42808. },
  42809. {
  42810. name: "Macro",
  42811. height: math.unit(180, "feet")
  42812. },
  42813. ]
  42814. ))
  42815. characterMakers.push(() => makeCharacter(
  42816. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42817. {
  42818. front: {
  42819. height: math.unit(5 + 2/12, "feet"),
  42820. name: "Front",
  42821. image: {
  42822. source: "./media/characters/october-gossamer/front.svg",
  42823. extra: 505/454,
  42824. bottom: 7/512
  42825. }
  42826. },
  42827. back: {
  42828. height: math.unit(5 + 2/12, "feet"),
  42829. name: "Back",
  42830. image: {
  42831. source: "./media/characters/october-gossamer/back.svg",
  42832. extra: 501/454,
  42833. bottom: 11/512
  42834. }
  42835. },
  42836. },
  42837. [
  42838. {
  42839. name: "Normal",
  42840. height: math.unit(5 + 2/12, "feet"),
  42841. default: true
  42842. },
  42843. ]
  42844. ))
  42845. characterMakers.push(() => makeCharacter(
  42846. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42847. {
  42848. front: {
  42849. height: math.unit(5, "feet"),
  42850. name: "Front",
  42851. image: {
  42852. source: "./media/characters/epiglottis/front.svg",
  42853. extra: 923/849,
  42854. bottom: 17/940
  42855. }
  42856. },
  42857. },
  42858. [
  42859. {
  42860. name: "Original Size",
  42861. height: math.unit(10, "inches")
  42862. },
  42863. {
  42864. name: "Human Size",
  42865. height: math.unit(5, "feet"),
  42866. default: true
  42867. },
  42868. {
  42869. name: "Big",
  42870. height: math.unit(25, "feet")
  42871. },
  42872. {
  42873. name: "Bigger",
  42874. height: math.unit(50, "feet")
  42875. },
  42876. {
  42877. name: "oh lawd",
  42878. height: math.unit(75, "feet")
  42879. },
  42880. ]
  42881. ))
  42882. characterMakers.push(() => makeCharacter(
  42883. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42884. {
  42885. front: {
  42886. height: math.unit(2 + 4/12, "feet"),
  42887. weight: math.unit(60, "lb"),
  42888. name: "Front",
  42889. image: {
  42890. source: "./media/characters/lerm/front.svg",
  42891. extra: 796/790,
  42892. bottom: 79/875
  42893. }
  42894. },
  42895. },
  42896. [
  42897. {
  42898. name: "Normal",
  42899. height: math.unit(2 + 4/12, "feet"),
  42900. default: true
  42901. },
  42902. ]
  42903. ))
  42904. characterMakers.push(() => makeCharacter(
  42905. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42906. {
  42907. front: {
  42908. height: math.unit(5.5, "feet"),
  42909. weight: math.unit(130, "lb"),
  42910. name: "Front",
  42911. image: {
  42912. source: "./media/characters/xena-nebadon/front.svg",
  42913. extra: 1828/1730,
  42914. bottom: 79/1907
  42915. }
  42916. },
  42917. },
  42918. [
  42919. {
  42920. name: "Tiny Puppy",
  42921. height: math.unit(3, "inches")
  42922. },
  42923. {
  42924. name: "Normal",
  42925. height: math.unit(5.5, "feet"),
  42926. default: true
  42927. },
  42928. {
  42929. name: "Lotta Lady",
  42930. height: math.unit(12, "feet")
  42931. },
  42932. {
  42933. name: "Pretty Big",
  42934. height: math.unit(100, "feet")
  42935. },
  42936. {
  42937. name: "Big",
  42938. height: math.unit(500, "feet")
  42939. },
  42940. {
  42941. name: "Skyscraper Toys",
  42942. height: math.unit(2500, "feet")
  42943. },
  42944. {
  42945. name: "Plane Catcher",
  42946. height: math.unit(8, "miles")
  42947. },
  42948. {
  42949. name: "Planet Toys",
  42950. height: math.unit(15, "earths")
  42951. },
  42952. {
  42953. name: "Stardust",
  42954. height: math.unit(0.25, "galaxies")
  42955. },
  42956. {
  42957. name: "Snacks",
  42958. height: math.unit(70, "universes")
  42959. },
  42960. ]
  42961. ))
  42962. characterMakers.push(() => makeCharacter(
  42963. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42964. {
  42965. front: {
  42966. height: math.unit(1.6, "meters"),
  42967. weight: math.unit(60, "kg"),
  42968. name: "Front",
  42969. image: {
  42970. source: "./media/characters/bounty/front.svg",
  42971. extra: 1426/1308,
  42972. bottom: 15/1441
  42973. }
  42974. },
  42975. back: {
  42976. height: math.unit(1.6, "meters"),
  42977. weight: math.unit(60, "kg"),
  42978. name: "Back",
  42979. image: {
  42980. source: "./media/characters/bounty/back.svg",
  42981. extra: 1417/1307,
  42982. bottom: 8/1425
  42983. }
  42984. },
  42985. },
  42986. [
  42987. {
  42988. name: "Normal",
  42989. height: math.unit(1.6, "meters"),
  42990. default: true
  42991. },
  42992. {
  42993. name: "Macro",
  42994. height: math.unit(300, "meters")
  42995. },
  42996. ]
  42997. ))
  42998. characterMakers.push(() => makeCharacter(
  42999. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43000. {
  43001. front: {
  43002. height: math.unit(2 + 8/12, "feet"),
  43003. weight: math.unit(15, "lb"),
  43004. name: "Front",
  43005. image: {
  43006. source: "./media/characters/mochi/front.svg",
  43007. extra: 1022/852,
  43008. bottom: 435/1457
  43009. }
  43010. },
  43011. back: {
  43012. height: math.unit(2 + 8/12, "feet"),
  43013. weight: math.unit(15, "lb"),
  43014. name: "Back",
  43015. image: {
  43016. source: "./media/characters/mochi/back.svg",
  43017. extra: 1335/1119,
  43018. bottom: 39/1374
  43019. }
  43020. },
  43021. bird: {
  43022. height: math.unit(2 + 8/12, "feet"),
  43023. weight: math.unit(15, "lb"),
  43024. name: "Bird",
  43025. image: {
  43026. source: "./media/characters/mochi/bird.svg",
  43027. extra: 1251/1113,
  43028. bottom: 178/1429
  43029. }
  43030. },
  43031. kaiju: {
  43032. height: math.unit(154, "feet"),
  43033. weight: math.unit(1e7, "lb"),
  43034. name: "Kaiju",
  43035. image: {
  43036. source: "./media/characters/mochi/kaiju.svg",
  43037. extra: 460/324,
  43038. bottom: 40/500
  43039. }
  43040. },
  43041. head: {
  43042. height: math.unit(1.21, "feet"),
  43043. name: "Head",
  43044. image: {
  43045. source: "./media/characters/mochi/head.svg"
  43046. }
  43047. },
  43048. alternateTail: {
  43049. height: math.unit(2 + 8/12, "feet"),
  43050. weight: math.unit(45, "lb"),
  43051. name: "Alternate Tail",
  43052. image: {
  43053. source: "./media/characters/mochi/alternate-tail.svg",
  43054. extra: 139/76,
  43055. bottom: 45/184
  43056. }
  43057. },
  43058. },
  43059. [
  43060. {
  43061. name: "Micro",
  43062. height: math.unit(2, "inches")
  43063. },
  43064. {
  43065. name: "Normal",
  43066. height: math.unit(2 + 8/12, "feet"),
  43067. default: true
  43068. },
  43069. {
  43070. name: "Macro",
  43071. height: math.unit(106, "feet")
  43072. },
  43073. ]
  43074. ))
  43075. characterMakers.push(() => makeCharacter(
  43076. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43077. {
  43078. front: {
  43079. height: math.unit(5.67, "feet"),
  43080. weight: math.unit(135, "lb"),
  43081. name: "Front",
  43082. image: {
  43083. source: "./media/characters/sarel/front.svg",
  43084. extra: 865/788,
  43085. bottom: 97/962
  43086. }
  43087. },
  43088. back: {
  43089. height: math.unit(5.67, "feet"),
  43090. weight: math.unit(135, "lb"),
  43091. name: "Back",
  43092. image: {
  43093. source: "./media/characters/sarel/back.svg",
  43094. extra: 857/777,
  43095. bottom: 32/889
  43096. }
  43097. },
  43098. chozoan: {
  43099. height: math.unit(5.67, "feet"),
  43100. weight: math.unit(135, "lb"),
  43101. name: "Chozoan",
  43102. image: {
  43103. source: "./media/characters/sarel/chozoan.svg",
  43104. extra: 865/788,
  43105. bottom: 97/962
  43106. }
  43107. },
  43108. current: {
  43109. height: math.unit(5.67, "feet"),
  43110. weight: math.unit(135, "lb"),
  43111. name: "Current",
  43112. image: {
  43113. source: "./media/characters/sarel/current.svg",
  43114. extra: 865/788,
  43115. bottom: 97/962
  43116. }
  43117. },
  43118. head: {
  43119. height: math.unit(1.77, "feet"),
  43120. name: "Head",
  43121. image: {
  43122. source: "./media/characters/sarel/head.svg"
  43123. }
  43124. },
  43125. claws: {
  43126. height: math.unit(1.8, "feet"),
  43127. name: "Claws",
  43128. image: {
  43129. source: "./media/characters/sarel/claws.svg"
  43130. }
  43131. },
  43132. clawsAlt: {
  43133. height: math.unit(1.8, "feet"),
  43134. name: "Claws-alt",
  43135. image: {
  43136. source: "./media/characters/sarel/claws-alt.svg"
  43137. }
  43138. },
  43139. },
  43140. [
  43141. {
  43142. name: "Normal",
  43143. height: math.unit(5.67, "feet"),
  43144. default: true
  43145. },
  43146. ]
  43147. ))
  43148. characterMakers.push(() => makeCharacter(
  43149. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43150. {
  43151. front: {
  43152. height: math.unit(5500, "feet"),
  43153. name: "Front",
  43154. image: {
  43155. source: "./media/characters/alyonia/front.svg",
  43156. extra: 1200/1135,
  43157. bottom: 29/1229
  43158. }
  43159. },
  43160. back: {
  43161. height: math.unit(5500, "feet"),
  43162. name: "Back",
  43163. image: {
  43164. source: "./media/characters/alyonia/back.svg",
  43165. extra: 1205/1138,
  43166. bottom: 10/1215
  43167. }
  43168. },
  43169. },
  43170. [
  43171. {
  43172. name: "Small",
  43173. height: math.unit(10, "feet")
  43174. },
  43175. {
  43176. name: "Macro",
  43177. height: math.unit(500, "feet")
  43178. },
  43179. {
  43180. name: "Mega Macro",
  43181. height: math.unit(5500, "feet"),
  43182. default: true
  43183. },
  43184. {
  43185. name: "Mega Macro+",
  43186. height: math.unit(500000, "feet")
  43187. },
  43188. {
  43189. name: "Giga Macro",
  43190. height: math.unit(3000, "miles")
  43191. },
  43192. {
  43193. name: "Tera Macro",
  43194. height: math.unit(2.8e6, "miles")
  43195. },
  43196. {
  43197. name: "Galactic",
  43198. height: math.unit(120000, "lightyears")
  43199. },
  43200. ]
  43201. ))
  43202. characterMakers.push(() => makeCharacter(
  43203. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43204. {
  43205. werewolf: {
  43206. height: math.unit(8, "feet"),
  43207. weight: math.unit(425, "lb"),
  43208. name: "Werewolf",
  43209. image: {
  43210. source: "./media/characters/autumn/werewolf.svg",
  43211. extra: 2154/2031,
  43212. bottom: 160/2314
  43213. }
  43214. },
  43215. human: {
  43216. height: math.unit(5 + 8/12, "feet"),
  43217. weight: math.unit(150, "lb"),
  43218. name: "Human",
  43219. image: {
  43220. source: "./media/characters/autumn/human.svg",
  43221. extra: 1200/1149,
  43222. bottom: 30/1230
  43223. }
  43224. },
  43225. },
  43226. [
  43227. {
  43228. name: "Normal",
  43229. height: math.unit(8, "feet"),
  43230. default: true
  43231. },
  43232. ]
  43233. ))
  43234. characterMakers.push(() => makeCharacter(
  43235. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43236. {
  43237. front: {
  43238. height: math.unit(8 + 5/12, "feet"),
  43239. weight: math.unit(825, "lb"),
  43240. name: "Front",
  43241. image: {
  43242. source: "./media/characters/cobalt-charizard/front.svg",
  43243. extra: 1268/1155,
  43244. bottom: 122/1390
  43245. }
  43246. },
  43247. side: {
  43248. height: math.unit(8 + 5/12, "feet"),
  43249. weight: math.unit(825, "lb"),
  43250. name: "Side",
  43251. image: {
  43252. source: "./media/characters/cobalt-charizard/side.svg",
  43253. extra: 1348/1257,
  43254. bottom: 58/1406
  43255. }
  43256. },
  43257. gMax: {
  43258. height: math.unit(134 + 11/12, "feet"),
  43259. name: "G-Max",
  43260. image: {
  43261. source: "./media/characters/cobalt-charizard/g-max.svg",
  43262. extra: 1835/1541,
  43263. bottom: 151/1986
  43264. }
  43265. },
  43266. },
  43267. [
  43268. {
  43269. name: "Normal",
  43270. height: math.unit(8 + 5/12, "feet"),
  43271. default: true
  43272. },
  43273. ]
  43274. ))
  43275. characterMakers.push(() => makeCharacter(
  43276. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43277. {
  43278. front: {
  43279. height: math.unit(6 + 3/12, "feet"),
  43280. weight: math.unit(210, "lb"),
  43281. name: "Front",
  43282. image: {
  43283. source: "./media/characters/stella/front.svg",
  43284. extra: 3549/3335,
  43285. bottom: 51/3600
  43286. }
  43287. },
  43288. },
  43289. [
  43290. {
  43291. name: "Normal",
  43292. height: math.unit(6 + 3/12, "feet"),
  43293. default: true
  43294. },
  43295. ]
  43296. ))
  43297. characterMakers.push(() => makeCharacter(
  43298. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43299. {
  43300. front: {
  43301. height: math.unit(5, "feet"),
  43302. weight: math.unit(90, "lb"),
  43303. name: "Front",
  43304. image: {
  43305. source: "./media/characters/riley-bishop/front.svg",
  43306. extra: 1450/1428,
  43307. bottom: 152/1602
  43308. }
  43309. },
  43310. },
  43311. [
  43312. {
  43313. name: "Normal",
  43314. height: math.unit(5, "feet"),
  43315. default: true
  43316. },
  43317. ]
  43318. ))
  43319. characterMakers.push(() => makeCharacter(
  43320. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43321. {
  43322. side: {
  43323. height: math.unit(8 + 2/12, "feet"),
  43324. weight: math.unit(500, "kg"),
  43325. name: "Side",
  43326. image: {
  43327. source: "./media/characters/theo-arcanine/side.svg",
  43328. extra: 1342/1074,
  43329. bottom: 111/1453
  43330. }
  43331. },
  43332. },
  43333. [
  43334. {
  43335. name: "Normal",
  43336. height: math.unit(8 + 2/12, "feet"),
  43337. default: true
  43338. },
  43339. ]
  43340. ))
  43341. characterMakers.push(() => makeCharacter(
  43342. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43343. {
  43344. front: {
  43345. height: math.unit(4, "feet"),
  43346. name: "Front",
  43347. image: {
  43348. source: "./media/characters/kali/front.svg",
  43349. extra: 1921/1357,
  43350. bottom: 70/1991
  43351. }
  43352. },
  43353. },
  43354. [
  43355. {
  43356. name: "Normal",
  43357. height: math.unit(4, "feet"),
  43358. default: true
  43359. },
  43360. {
  43361. name: "Macro",
  43362. height: math.unit(32, "meters")
  43363. },
  43364. {
  43365. name: "Macro+",
  43366. height: math.unit(150, "meters")
  43367. },
  43368. {
  43369. name: "Megamacro",
  43370. height: math.unit(7500, "meters")
  43371. },
  43372. {
  43373. name: "Megamacro+",
  43374. height: math.unit(80, "kilometers")
  43375. },
  43376. ]
  43377. ))
  43378. characterMakers.push(() => makeCharacter(
  43379. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43380. {
  43381. side: {
  43382. height: math.unit(5 + 11/12, "feet"),
  43383. weight: math.unit(236, "lb"),
  43384. name: "Side",
  43385. image: {
  43386. source: "./media/characters/gapp/side.svg",
  43387. extra: 775/340,
  43388. bottom: 58/833
  43389. }
  43390. },
  43391. mouth: {
  43392. height: math.unit(2.98, "feet"),
  43393. name: "Mouth",
  43394. image: {
  43395. source: "./media/characters/gapp/mouth.svg"
  43396. }
  43397. },
  43398. },
  43399. [
  43400. {
  43401. name: "Normal",
  43402. height: math.unit(5 + 1/12, "feet"),
  43403. default: true
  43404. },
  43405. ]
  43406. ))
  43407. characterMakers.push(() => makeCharacter(
  43408. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43409. {
  43410. front: {
  43411. height: math.unit(6, "feet"),
  43412. name: "Front",
  43413. image: {
  43414. source: "./media/characters/persephone/front.svg",
  43415. extra: 1895/1717,
  43416. bottom: 96/1991
  43417. }
  43418. },
  43419. back: {
  43420. height: math.unit(6, "feet"),
  43421. name: "Back",
  43422. image: {
  43423. source: "./media/characters/persephone/back.svg",
  43424. extra: 1868/1679,
  43425. bottom: 26/1894
  43426. }
  43427. },
  43428. casual: {
  43429. height: math.unit(6, "feet"),
  43430. name: "Casual",
  43431. image: {
  43432. source: "./media/characters/persephone/casual.svg",
  43433. extra: 1713/1541,
  43434. bottom: 76/1789
  43435. }
  43436. },
  43437. },
  43438. [
  43439. {
  43440. name: "Human Size",
  43441. height: math.unit(6, "feet")
  43442. },
  43443. {
  43444. name: "Big Steppy",
  43445. height: math.unit(600, "meters"),
  43446. default: true
  43447. },
  43448. {
  43449. name: "Galaxy Brain",
  43450. height: math.unit(1, "zettameter")
  43451. },
  43452. ]
  43453. ))
  43454. characterMakers.push(() => makeCharacter(
  43455. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43456. {
  43457. front: {
  43458. height: math.unit(1.85, "meters"),
  43459. name: "Front",
  43460. image: {
  43461. source: "./media/characters/riley-foxthing/front.svg",
  43462. extra: 1495/1354,
  43463. bottom: 122/1617
  43464. }
  43465. },
  43466. frontAlt: {
  43467. height: math.unit(1.85, "meters"),
  43468. name: "Front (Alt)",
  43469. image: {
  43470. source: "./media/characters/riley-foxthing/front-alt.svg",
  43471. extra: 1572/1389,
  43472. bottom: 116/1688
  43473. }
  43474. },
  43475. },
  43476. [
  43477. {
  43478. name: "Normal Sized",
  43479. height: math.unit(1.85, "meters"),
  43480. default: true
  43481. },
  43482. {
  43483. name: "Quite Sizable",
  43484. height: math.unit(5, "meters")
  43485. },
  43486. {
  43487. name: "Rather Large",
  43488. height: math.unit(20, "meters")
  43489. },
  43490. {
  43491. name: "Macro",
  43492. height: math.unit(450, "meters")
  43493. },
  43494. {
  43495. name: "Giga",
  43496. height: math.unit(5, "km")
  43497. },
  43498. ]
  43499. ))
  43500. characterMakers.push(() => makeCharacter(
  43501. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43502. {
  43503. front: {
  43504. height: math.unit(6, "feet"),
  43505. weight: math.unit(200, "lb"),
  43506. name: "Front",
  43507. image: {
  43508. source: "./media/characters/blizzard/front.svg",
  43509. extra: 1136/990,
  43510. bottom: 136/1272
  43511. }
  43512. },
  43513. back: {
  43514. height: math.unit(6, "feet"),
  43515. weight: math.unit(200, "lb"),
  43516. name: "Back",
  43517. image: {
  43518. source: "./media/characters/blizzard/back.svg",
  43519. extra: 1175/1034,
  43520. bottom: 97/1272
  43521. }
  43522. },
  43523. sitting: {
  43524. height: math.unit(3.725, "feet"),
  43525. weight: math.unit(200, "lb"),
  43526. name: "Sitting",
  43527. image: {
  43528. source: "./media/characters/blizzard/sitting.svg",
  43529. extra: 581/485,
  43530. bottom: 90/671
  43531. }
  43532. },
  43533. frontWizard: {
  43534. height: math.unit(7.9, "feet"),
  43535. weight: math.unit(200, "lb"),
  43536. name: "Front (Wizard)",
  43537. image: {
  43538. source: "./media/characters/blizzard/front-wizard.svg"
  43539. }
  43540. },
  43541. backWizard: {
  43542. height: math.unit(7.9, "feet"),
  43543. weight: math.unit(200, "lb"),
  43544. name: "Back (Wizard)",
  43545. image: {
  43546. source: "./media/characters/blizzard/back-wizard.svg"
  43547. }
  43548. },
  43549. frontNsfw: {
  43550. height: math.unit(6, "feet"),
  43551. weight: math.unit(200, "lb"),
  43552. name: "Front (NSFW)",
  43553. image: {
  43554. source: "./media/characters/blizzard/front-nsfw.svg",
  43555. extra: 1136/990,
  43556. bottom: 136/1272
  43557. }
  43558. },
  43559. backNsfw: {
  43560. height: math.unit(6, "feet"),
  43561. weight: math.unit(200, "lb"),
  43562. name: "Back (NSFW)",
  43563. image: {
  43564. source: "./media/characters/blizzard/back-nsfw.svg",
  43565. extra: 1175/1034,
  43566. bottom: 97/1272
  43567. }
  43568. },
  43569. sittingNsfw: {
  43570. height: math.unit(3.725, "feet"),
  43571. weight: math.unit(200, "lb"),
  43572. name: "Sitting (NSFW)",
  43573. image: {
  43574. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43575. extra: 581/485,
  43576. bottom: 90/671
  43577. }
  43578. },
  43579. wizardFrontNsfw: {
  43580. height: math.unit(7.9, "feet"),
  43581. weight: math.unit(200, "lb"),
  43582. name: "Wizard (Front, NSFW)",
  43583. image: {
  43584. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43585. }
  43586. },
  43587. },
  43588. [
  43589. {
  43590. name: "Normal",
  43591. height: math.unit(6, "feet"),
  43592. default: true
  43593. },
  43594. ]
  43595. ))
  43596. characterMakers.push(() => makeCharacter(
  43597. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43598. {
  43599. front: {
  43600. height: math.unit(5 + 2/12, "feet"),
  43601. name: "Front",
  43602. image: {
  43603. source: "./media/characters/lumi/front.svg",
  43604. extra: 1328/1268,
  43605. bottom: 103/1431
  43606. }
  43607. },
  43608. back: {
  43609. height: math.unit(5 + 2/12, "feet"),
  43610. name: "Back",
  43611. image: {
  43612. source: "./media/characters/lumi/back.svg",
  43613. extra: 1381/1327,
  43614. bottom: 43/1424
  43615. }
  43616. },
  43617. },
  43618. [
  43619. {
  43620. name: "Normal",
  43621. height: math.unit(5 + 2/12, "feet"),
  43622. default: true
  43623. },
  43624. ]
  43625. ))
  43626. characterMakers.push(() => makeCharacter(
  43627. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43628. {
  43629. front: {
  43630. height: math.unit(5 + 9/12, "feet"),
  43631. name: "Front",
  43632. image: {
  43633. source: "./media/characters/aliya-cotton/front.svg",
  43634. extra: 577/564,
  43635. bottom: 29/606
  43636. }
  43637. },
  43638. },
  43639. [
  43640. {
  43641. name: "Normal",
  43642. height: math.unit(5 + 9/12, "feet"),
  43643. default: true
  43644. },
  43645. ]
  43646. ))
  43647. characterMakers.push(() => makeCharacter(
  43648. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43649. {
  43650. front: {
  43651. height: math.unit(2.7, "meters"),
  43652. weight: math.unit(25000, "lb"),
  43653. name: "Front",
  43654. image: {
  43655. source: "./media/characters/noah-luxray/front.svg",
  43656. extra: 1644/825,
  43657. bottom: 339/1983
  43658. }
  43659. },
  43660. side: {
  43661. height: math.unit(2.97, "meters"),
  43662. weight: math.unit(25000, "lb"),
  43663. name: "Side",
  43664. image: {
  43665. source: "./media/characters/noah-luxray/side.svg",
  43666. extra: 1319/650,
  43667. bottom: 163/1482
  43668. }
  43669. },
  43670. dick: {
  43671. height: math.unit(7.4, "feet"),
  43672. weight: math.unit(2500, "lb"),
  43673. name: "Dick",
  43674. image: {
  43675. source: "./media/characters/noah-luxray/dick.svg"
  43676. }
  43677. },
  43678. dickAlt: {
  43679. height: math.unit(10.83, "feet"),
  43680. weight: math.unit(2500, "lb"),
  43681. name: "Dick-alt",
  43682. image: {
  43683. source: "./media/characters/noah-luxray/dick-alt.svg"
  43684. }
  43685. },
  43686. },
  43687. [
  43688. {
  43689. name: "BIG",
  43690. height: math.unit(2.7, "meters"),
  43691. default: true
  43692. },
  43693. ]
  43694. ))
  43695. characterMakers.push(() => makeCharacter(
  43696. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43697. {
  43698. standing: {
  43699. height: math.unit(183, "cm"),
  43700. weight: math.unit(68, "kg"),
  43701. name: "Standing",
  43702. image: {
  43703. source: "./media/characters/arion/standing.svg",
  43704. extra: 1869/1807,
  43705. bottom: 93/1962
  43706. }
  43707. },
  43708. reclining: {
  43709. height: math.unit(70.5, "cm"),
  43710. weight: math.unit(68, "lb"),
  43711. name: "Reclining",
  43712. image: {
  43713. source: "./media/characters/arion/reclining.svg",
  43714. extra: 937/870,
  43715. bottom: 63/1000
  43716. }
  43717. },
  43718. },
  43719. [
  43720. {
  43721. name: "Colossus Size, Low",
  43722. height: math.unit(33, "meters"),
  43723. default: true
  43724. },
  43725. {
  43726. name: "Colossus Size, Mid",
  43727. height: math.unit(52, "meters")
  43728. },
  43729. {
  43730. name: "Colossus Size, High",
  43731. height: math.unit(60, "meters")
  43732. },
  43733. {
  43734. name: "Titan Size, Low",
  43735. height: math.unit(91, "meters"),
  43736. },
  43737. {
  43738. name: "Titan Size, Mid",
  43739. height: math.unit(122, "meters")
  43740. },
  43741. {
  43742. name: "Titan Size, High",
  43743. height: math.unit(162, "meters")
  43744. },
  43745. ]
  43746. ))
  43747. characterMakers.push(() => makeCharacter(
  43748. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43749. {
  43750. front: {
  43751. height: math.unit(53, "meters"),
  43752. name: "Front",
  43753. image: {
  43754. source: "./media/characters/stellar-marbey/front.svg",
  43755. extra: 1913/1805,
  43756. bottom: 92/2005
  43757. }
  43758. },
  43759. back: {
  43760. height: math.unit(53, "meters"),
  43761. name: "Back",
  43762. image: {
  43763. source: "./media/characters/stellar-marbey/back.svg",
  43764. extra: 1960/1851,
  43765. bottom: 28/1988
  43766. }
  43767. },
  43768. mouth: {
  43769. height: math.unit(3.5, "meters"),
  43770. name: "Mouth",
  43771. image: {
  43772. source: "./media/characters/stellar-marbey/mouth.svg"
  43773. }
  43774. },
  43775. },
  43776. [
  43777. {
  43778. name: "Macro",
  43779. height: math.unit(53, "meters"),
  43780. default: true
  43781. },
  43782. ]
  43783. ))
  43784. characterMakers.push(() => makeCharacter(
  43785. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43786. {
  43787. front: {
  43788. height: math.unit(8 + 1/12, "feet"),
  43789. weight: math.unit(233, "lb"),
  43790. name: "Front",
  43791. image: {
  43792. source: "./media/characters/matsu/front.svg",
  43793. extra: 832/772,
  43794. bottom: 40/872
  43795. }
  43796. },
  43797. back: {
  43798. height: math.unit(8 + 1/12, "feet"),
  43799. weight: math.unit(233, "lb"),
  43800. name: "Back",
  43801. image: {
  43802. source: "./media/characters/matsu/back.svg",
  43803. extra: 839/780,
  43804. bottom: 47/886
  43805. }
  43806. },
  43807. },
  43808. [
  43809. {
  43810. name: "Normal",
  43811. height: math.unit(8 + 1/12, "feet"),
  43812. default: true
  43813. },
  43814. ]
  43815. ))
  43816. characterMakers.push(() => makeCharacter(
  43817. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43818. {
  43819. front: {
  43820. height: math.unit(4, "feet"),
  43821. weight: math.unit(148, "lb"),
  43822. name: "Front",
  43823. image: {
  43824. source: "./media/characters/thiz/front.svg",
  43825. extra: 1913/1748,
  43826. bottom: 62/1975
  43827. }
  43828. },
  43829. },
  43830. [
  43831. {
  43832. name: "Normal",
  43833. height: math.unit(4, "feet"),
  43834. default: true
  43835. },
  43836. ]
  43837. ))
  43838. characterMakers.push(() => makeCharacter(
  43839. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43840. {
  43841. front: {
  43842. height: math.unit(7 + 6/12, "feet"),
  43843. weight: math.unit(267, "lb"),
  43844. name: "Front",
  43845. image: {
  43846. source: "./media/characters/marcel/front.svg",
  43847. extra: 1221/1096,
  43848. bottom: 76/1297
  43849. }
  43850. },
  43851. },
  43852. [
  43853. {
  43854. name: "Normal",
  43855. height: math.unit(7 + 6/12, "feet"),
  43856. default: true
  43857. },
  43858. ]
  43859. ))
  43860. characterMakers.push(() => makeCharacter(
  43861. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43862. {
  43863. side: {
  43864. height: math.unit(42, "meters"),
  43865. name: "Side",
  43866. image: {
  43867. source: "./media/characters/flake/side.svg",
  43868. extra: 1525/1306,
  43869. bottom: 209/1734
  43870. }
  43871. },
  43872. },
  43873. [
  43874. {
  43875. name: "Normal",
  43876. height: math.unit(42, "meters"),
  43877. default: true
  43878. },
  43879. ]
  43880. ))
  43881. characterMakers.push(() => makeCharacter(
  43882. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43883. {
  43884. dressed: {
  43885. height: math.unit(6 + 4/12, "feet"),
  43886. weight: math.unit(520, "lb"),
  43887. name: "Dressed",
  43888. image: {
  43889. source: "./media/characters/someonne/dressed.svg",
  43890. extra: 1020/1010,
  43891. bottom: 178/1198
  43892. }
  43893. },
  43894. undressed: {
  43895. height: math.unit(6 + 4/12, "feet"),
  43896. weight: math.unit(520, "lb"),
  43897. name: "Undressed",
  43898. image: {
  43899. source: "./media/characters/someonne/undressed.svg",
  43900. extra: 1019/1014,
  43901. bottom: 169/1188
  43902. }
  43903. },
  43904. },
  43905. [
  43906. {
  43907. name: "Normal",
  43908. height: math.unit(6 + 4/12, "feet"),
  43909. default: true
  43910. },
  43911. ]
  43912. ))
  43913. characterMakers.push(() => makeCharacter(
  43914. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43915. {
  43916. front: {
  43917. height: math.unit(3, "feet"),
  43918. weight: math.unit(30, "lb"),
  43919. name: "Front",
  43920. image: {
  43921. source: "./media/characters/till/front.svg",
  43922. extra: 892/823,
  43923. bottom: 55/947
  43924. }
  43925. },
  43926. },
  43927. [
  43928. {
  43929. name: "Normal",
  43930. height: math.unit(3, "feet"),
  43931. default: true
  43932. },
  43933. ]
  43934. ))
  43935. characterMakers.push(() => makeCharacter(
  43936. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43937. {
  43938. front: {
  43939. height: math.unit(9 + 8/12, "feet"),
  43940. weight: math.unit(800, "lb"),
  43941. name: "Front",
  43942. image: {
  43943. source: "./media/characters/sydney-heki/front.svg",
  43944. extra: 1360/1300,
  43945. bottom: 22/1382
  43946. }
  43947. },
  43948. back: {
  43949. height: math.unit(9 + 8/12, "feet"),
  43950. weight: math.unit(800, "lb"),
  43951. name: "Back",
  43952. image: {
  43953. source: "./media/characters/sydney-heki/back.svg",
  43954. extra: 1356/1293,
  43955. bottom: 12/1368
  43956. }
  43957. },
  43958. frontDressed: {
  43959. height: math.unit(9 + 8/12, "feet"),
  43960. weight: math.unit(800, "lb"),
  43961. name: "Front-dressed",
  43962. image: {
  43963. source: "./media/characters/sydney-heki/front-dressed.svg",
  43964. extra: 1360/1300,
  43965. bottom: 22/1382
  43966. }
  43967. },
  43968. },
  43969. [
  43970. {
  43971. name: "Normal",
  43972. height: math.unit(9 + 8/12, "feet"),
  43973. default: true
  43974. },
  43975. {
  43976. name: "Macro",
  43977. height: math.unit(500, "feet")
  43978. },
  43979. {
  43980. name: "Megamacro",
  43981. height: math.unit(3.6, "miles")
  43982. },
  43983. ]
  43984. ))
  43985. characterMakers.push(() => makeCharacter(
  43986. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43987. {
  43988. front: {
  43989. height: math.unit(200, "cm"),
  43990. weight: math.unit(250, "lb"),
  43991. name: "Front",
  43992. image: {
  43993. source: "./media/characters/fowler-karlsson/front.svg",
  43994. extra: 897/845,
  43995. bottom: 123/1020
  43996. }
  43997. },
  43998. back: {
  43999. height: math.unit(200, "cm"),
  44000. weight: math.unit(250, "lb"),
  44001. name: "Back",
  44002. image: {
  44003. source: "./media/characters/fowler-karlsson/back.svg",
  44004. extra: 999/944,
  44005. bottom: 26/1025
  44006. }
  44007. },
  44008. dick: {
  44009. height: math.unit(1.92, "feet"),
  44010. weight: math.unit(150, "lb"),
  44011. name: "Dick",
  44012. image: {
  44013. source: "./media/characters/fowler-karlsson/dick.svg"
  44014. }
  44015. },
  44016. },
  44017. [
  44018. {
  44019. name: "Normal",
  44020. height: math.unit(200, "cm"),
  44021. default: true
  44022. },
  44023. {
  44024. name: "Smaller Macro",
  44025. height: math.unit(90, "m")
  44026. },
  44027. {
  44028. name: "Macro",
  44029. height: math.unit(150, "m")
  44030. },
  44031. {
  44032. name: "Bigger Macro",
  44033. height: math.unit(300, "m")
  44034. },
  44035. ]
  44036. ))
  44037. characterMakers.push(() => makeCharacter(
  44038. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44039. {
  44040. side: {
  44041. height: math.unit(8 + 2/12, "feet"),
  44042. weight: math.unit(1, "tonne"),
  44043. name: "Side",
  44044. image: {
  44045. source: "./media/characters/rylide/side.svg",
  44046. extra: 1318/1034,
  44047. bottom: 106/1424
  44048. }
  44049. },
  44050. sitting: {
  44051. height: math.unit(303, "cm"),
  44052. weight: math.unit(1, "tonne"),
  44053. name: "Sitting",
  44054. image: {
  44055. source: "./media/characters/rylide/sitting.svg",
  44056. extra: 1303/1103,
  44057. bottom: 36/1339
  44058. }
  44059. },
  44060. },
  44061. [
  44062. {
  44063. name: "Normal",
  44064. height: math.unit(8 + 2/12, "feet"),
  44065. default: true
  44066. },
  44067. ]
  44068. ))
  44069. characterMakers.push(() => makeCharacter(
  44070. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44071. {
  44072. front: {
  44073. height: math.unit(5 + 10/12, "feet"),
  44074. weight: math.unit(160, "lb"),
  44075. name: "Front",
  44076. image: {
  44077. source: "./media/characters/pudask/front.svg",
  44078. extra: 1616/1590,
  44079. bottom: 161/1777
  44080. }
  44081. },
  44082. },
  44083. [
  44084. {
  44085. name: "Ferret Height",
  44086. height: math.unit(2 + 5/12, "feet")
  44087. },
  44088. {
  44089. name: "Canon Height",
  44090. height: math.unit(5 + 10/12, "feet"),
  44091. default: true
  44092. },
  44093. ]
  44094. ))
  44095. characterMakers.push(() => makeCharacter(
  44096. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44097. {
  44098. front: {
  44099. height: math.unit(3 + 6/12, "feet"),
  44100. weight: math.unit(60, "lb"),
  44101. name: "Front",
  44102. image: {
  44103. source: "./media/characters/ramita/front.svg",
  44104. extra: 1402/1232,
  44105. bottom: 62/1464
  44106. }
  44107. },
  44108. dressed: {
  44109. height: math.unit(3 + 6/12, "feet"),
  44110. weight: math.unit(60, "lb"),
  44111. name: "Dressed",
  44112. image: {
  44113. source: "./media/characters/ramita/dressed.svg",
  44114. extra: 1534/1249,
  44115. bottom: 50/1584
  44116. }
  44117. },
  44118. },
  44119. [
  44120. {
  44121. name: "Normal",
  44122. height: math.unit(3 + 6/12, "feet"),
  44123. default: true
  44124. },
  44125. ]
  44126. ))
  44127. characterMakers.push(() => makeCharacter(
  44128. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44129. {
  44130. front: {
  44131. height: math.unit(8, "feet"),
  44132. name: "Front",
  44133. image: {
  44134. source: "./media/characters/ark/front.svg",
  44135. extra: 772/693,
  44136. bottom: 45/817
  44137. }
  44138. },
  44139. },
  44140. [
  44141. {
  44142. name: "Normal",
  44143. height: math.unit(8, "feet"),
  44144. default: true
  44145. },
  44146. ]
  44147. ))
  44148. characterMakers.push(() => makeCharacter(
  44149. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44150. {
  44151. front: {
  44152. height: math.unit(6, "feet"),
  44153. weight: math.unit(250, "lb"),
  44154. volume: math.unit(5/8, "gallons"),
  44155. name: "Front",
  44156. image: {
  44157. source: "./media/characters/ludwig-horn/front.svg",
  44158. extra: 1782/1635,
  44159. bottom: 96/1878
  44160. }
  44161. },
  44162. back: {
  44163. height: math.unit(6, "feet"),
  44164. weight: math.unit(250, "lb"),
  44165. volume: math.unit(5/8, "gallons"),
  44166. name: "Back",
  44167. image: {
  44168. source: "./media/characters/ludwig-horn/back.svg",
  44169. extra: 1874/1729,
  44170. bottom: 27/1901
  44171. }
  44172. },
  44173. dick: {
  44174. height: math.unit(1.05, "feet"),
  44175. weight: math.unit(15, "lb"),
  44176. volume: math.unit(5/8, "gallons"),
  44177. name: "Dick",
  44178. image: {
  44179. source: "./media/characters/ludwig-horn/dick.svg"
  44180. }
  44181. },
  44182. },
  44183. [
  44184. {
  44185. name: "Small",
  44186. height: math.unit(6, "feet")
  44187. },
  44188. {
  44189. name: "Typical",
  44190. height: math.unit(12, "feet"),
  44191. default: true
  44192. },
  44193. {
  44194. name: "Building",
  44195. height: math.unit(80, "feet")
  44196. },
  44197. {
  44198. name: "Town",
  44199. height: math.unit(800, "feet")
  44200. },
  44201. {
  44202. name: "Kingdom",
  44203. height: math.unit(80000, "feet")
  44204. },
  44205. {
  44206. name: "Planet",
  44207. height: math.unit(8000000, "feet")
  44208. },
  44209. {
  44210. name: "Universe",
  44211. height: math.unit(8000000000, "feet")
  44212. },
  44213. {
  44214. name: "Transcended",
  44215. height: math.unit(8e27, "feet")
  44216. },
  44217. ]
  44218. ))
  44219. characterMakers.push(() => makeCharacter(
  44220. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44221. {
  44222. front: {
  44223. height: math.unit(5, "feet"),
  44224. weight: math.unit(50, "kg"),
  44225. name: "Front",
  44226. image: {
  44227. source: "./media/characters/biot-avery/front.svg",
  44228. extra: 1295/1232,
  44229. bottom: 86/1381
  44230. }
  44231. },
  44232. },
  44233. [
  44234. {
  44235. name: "Normal",
  44236. height: math.unit(5, "feet"),
  44237. default: true
  44238. },
  44239. ]
  44240. ))
  44241. characterMakers.push(() => makeCharacter(
  44242. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44243. {
  44244. front: {
  44245. height: math.unit(6, "feet"),
  44246. name: "Front",
  44247. image: {
  44248. source: "./media/characters/kitsune-kiro/front.svg",
  44249. extra: 1270/1158,
  44250. bottom: 42/1312
  44251. }
  44252. },
  44253. frontAlt: {
  44254. height: math.unit(6, "feet"),
  44255. name: "Front-alt",
  44256. image: {
  44257. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44258. extra: 1130/1081,
  44259. bottom: 36/1166
  44260. }
  44261. },
  44262. },
  44263. [
  44264. {
  44265. name: "Smol",
  44266. height: math.unit(3, "feet")
  44267. },
  44268. {
  44269. name: "Normal",
  44270. height: math.unit(6, "feet"),
  44271. default: true
  44272. },
  44273. ]
  44274. ))
  44275. characterMakers.push(() => makeCharacter(
  44276. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44277. {
  44278. front: {
  44279. height: math.unit(6, "feet"),
  44280. weight: math.unit(125, "lb"),
  44281. name: "Front",
  44282. image: {
  44283. source: "./media/characters/jack-thatcher/front.svg",
  44284. extra: 1474/1370,
  44285. bottom: 26/1500
  44286. }
  44287. },
  44288. back: {
  44289. height: math.unit(6, "feet"),
  44290. weight: math.unit(125, "lb"),
  44291. name: "Back",
  44292. image: {
  44293. source: "./media/characters/jack-thatcher/back.svg",
  44294. extra: 1489/1384,
  44295. bottom: 18/1507
  44296. }
  44297. },
  44298. },
  44299. [
  44300. {
  44301. name: "Normal",
  44302. height: math.unit(6, "feet"),
  44303. default: true
  44304. },
  44305. {
  44306. name: "Macro",
  44307. height: math.unit(75, "feet")
  44308. },
  44309. {
  44310. name: "Macro-er",
  44311. height: math.unit(250, "feet")
  44312. },
  44313. ]
  44314. ))
  44315. characterMakers.push(() => makeCharacter(
  44316. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44317. {
  44318. front: {
  44319. height: math.unit(7, "feet"),
  44320. weight: math.unit(110, "kg"),
  44321. name: "Front",
  44322. image: {
  44323. source: "./media/characters/max-hyper/front.svg",
  44324. extra: 1969/1881,
  44325. bottom: 49/2018
  44326. }
  44327. },
  44328. },
  44329. [
  44330. {
  44331. name: "Normal",
  44332. height: math.unit(7, "feet"),
  44333. default: true
  44334. },
  44335. ]
  44336. ))
  44337. characterMakers.push(() => makeCharacter(
  44338. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44339. {
  44340. front: {
  44341. height: math.unit(5 + 5/12, "feet"),
  44342. weight: math.unit(160, "lb"),
  44343. name: "Front",
  44344. image: {
  44345. source: "./media/characters/spook/front.svg",
  44346. extra: 794/791,
  44347. bottom: 54/848
  44348. }
  44349. },
  44350. back: {
  44351. height: math.unit(5 + 5/12, "feet"),
  44352. weight: math.unit(160, "lb"),
  44353. name: "Back",
  44354. image: {
  44355. source: "./media/characters/spook/back.svg",
  44356. extra: 812/798,
  44357. bottom: 32/844
  44358. }
  44359. },
  44360. },
  44361. [
  44362. {
  44363. name: "Normal",
  44364. height: math.unit(5 + 5/12, "feet"),
  44365. default: true
  44366. },
  44367. ]
  44368. ))
  44369. characterMakers.push(() => makeCharacter(
  44370. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44371. {
  44372. front: {
  44373. height: math.unit(18, "feet"),
  44374. name: "Front",
  44375. image: {
  44376. source: "./media/characters/xeaduulix/front.svg",
  44377. extra: 1380/1166,
  44378. bottom: 110/1490
  44379. }
  44380. },
  44381. back: {
  44382. height: math.unit(18, "feet"),
  44383. name: "Back",
  44384. image: {
  44385. source: "./media/characters/xeaduulix/back.svg",
  44386. extra: 1592/1170,
  44387. bottom: 128/1720
  44388. }
  44389. },
  44390. frontNsfw: {
  44391. height: math.unit(18, "feet"),
  44392. name: "Front (NSFW)",
  44393. image: {
  44394. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44395. extra: 1380/1166,
  44396. bottom: 110/1490
  44397. }
  44398. },
  44399. backNsfw: {
  44400. height: math.unit(18, "feet"),
  44401. name: "Back (NSFW)",
  44402. image: {
  44403. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44404. extra: 1592/1170,
  44405. bottom: 128/1720
  44406. }
  44407. },
  44408. },
  44409. [
  44410. {
  44411. name: "Normal",
  44412. height: math.unit(18, "feet"),
  44413. default: true
  44414. },
  44415. ]
  44416. ))
  44417. characterMakers.push(() => makeCharacter(
  44418. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44419. {
  44420. spreadWings: {
  44421. height: math.unit(20, "feet"),
  44422. name: "Spread Wings",
  44423. image: {
  44424. source: "./media/characters/fledge/spread-wings.svg",
  44425. extra: 693/635,
  44426. bottom: 26/719
  44427. }
  44428. },
  44429. front: {
  44430. height: math.unit(20, "feet"),
  44431. name: "Front",
  44432. image: {
  44433. source: "./media/characters/fledge/front.svg",
  44434. extra: 684/637,
  44435. bottom: 18/702
  44436. }
  44437. },
  44438. frontAlt: {
  44439. height: math.unit(20, "feet"),
  44440. name: "Front (Alt)",
  44441. image: {
  44442. source: "./media/characters/fledge/front-alt.svg",
  44443. extra: 708/664,
  44444. bottom: 13/721
  44445. }
  44446. },
  44447. back: {
  44448. height: math.unit(20, "feet"),
  44449. name: "Back",
  44450. image: {
  44451. source: "./media/characters/fledge/back.svg",
  44452. extra: 718/634,
  44453. bottom: 22/740
  44454. }
  44455. },
  44456. head: {
  44457. height: math.unit(5.55, "feet"),
  44458. name: "Head",
  44459. image: {
  44460. source: "./media/characters/fledge/head.svg"
  44461. }
  44462. },
  44463. headAlt: {
  44464. height: math.unit(5.1, "feet"),
  44465. name: "Head (Alt)",
  44466. image: {
  44467. source: "./media/characters/fledge/head-alt.svg"
  44468. }
  44469. },
  44470. },
  44471. [
  44472. {
  44473. name: "Small",
  44474. height: math.unit(6 + 2/12, "feet")
  44475. },
  44476. {
  44477. name: "Big",
  44478. height: math.unit(20, "feet"),
  44479. default: true
  44480. },
  44481. {
  44482. name: "Giant",
  44483. height: math.unit(100, "feet")
  44484. },
  44485. {
  44486. name: "Macro",
  44487. height: math.unit(200, "feet")
  44488. },
  44489. ]
  44490. ))
  44491. characterMakers.push(() => makeCharacter(
  44492. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44493. {
  44494. front: {
  44495. height: math.unit(1, "meter"),
  44496. name: "Front",
  44497. image: {
  44498. source: "./media/characters/atlas-morenai/front.svg",
  44499. extra: 1275/1043,
  44500. bottom: 19/1294
  44501. }
  44502. },
  44503. back: {
  44504. height: math.unit(1, "meter"),
  44505. name: "Back",
  44506. image: {
  44507. source: "./media/characters/atlas-morenai/back.svg",
  44508. extra: 1141/1001,
  44509. bottom: 25/1166
  44510. }
  44511. },
  44512. },
  44513. [
  44514. {
  44515. name: "Normal",
  44516. height: math.unit(1, "meter"),
  44517. default: true
  44518. },
  44519. {
  44520. name: "Magic-Infused",
  44521. height: math.unit(5, "meters")
  44522. },
  44523. ]
  44524. ))
  44525. characterMakers.push(() => makeCharacter(
  44526. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44527. {
  44528. front: {
  44529. height: math.unit(5, "meters"),
  44530. name: "Front",
  44531. image: {
  44532. source: "./media/characters/cintia/front.svg",
  44533. extra: 1312/1228,
  44534. bottom: 38/1350
  44535. }
  44536. },
  44537. back: {
  44538. height: math.unit(5, "meters"),
  44539. name: "Back",
  44540. image: {
  44541. source: "./media/characters/cintia/back.svg",
  44542. extra: 1260/1166,
  44543. bottom: 98/1358
  44544. }
  44545. },
  44546. frontDick: {
  44547. height: math.unit(5, "meters"),
  44548. name: "Front (Dick)",
  44549. image: {
  44550. source: "./media/characters/cintia/front-dick.svg",
  44551. extra: 1312/1228,
  44552. bottom: 38/1350
  44553. }
  44554. },
  44555. backDick: {
  44556. height: math.unit(5, "meters"),
  44557. name: "Back (Dick)",
  44558. image: {
  44559. source: "./media/characters/cintia/back-dick.svg",
  44560. extra: 1260/1166,
  44561. bottom: 98/1358
  44562. }
  44563. },
  44564. bust: {
  44565. height: math.unit(1.97, "meters"),
  44566. name: "Bust",
  44567. image: {
  44568. source: "./media/characters/cintia/bust.svg",
  44569. extra: 617/565,
  44570. bottom: 0/617
  44571. }
  44572. },
  44573. },
  44574. [
  44575. {
  44576. name: "Normal",
  44577. height: math.unit(5, "meters"),
  44578. default: true
  44579. },
  44580. ]
  44581. ))
  44582. characterMakers.push(() => makeCharacter(
  44583. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44584. {
  44585. side: {
  44586. height: math.unit(100, "feet"),
  44587. name: "Side",
  44588. image: {
  44589. source: "./media/characters/denora/side.svg",
  44590. extra: 875/803,
  44591. bottom: 9/884
  44592. }
  44593. },
  44594. },
  44595. [
  44596. {
  44597. name: "Standard",
  44598. height: math.unit(100, "feet"),
  44599. default: true
  44600. },
  44601. {
  44602. name: "Grand",
  44603. height: math.unit(1000, "feet")
  44604. },
  44605. {
  44606. name: "Conquering",
  44607. height: math.unit(10000, "feet")
  44608. },
  44609. ]
  44610. ))
  44611. characterMakers.push(() => makeCharacter(
  44612. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44613. {
  44614. dressed: {
  44615. height: math.unit(8 + 5/12, "feet"),
  44616. weight: math.unit(700, "lb"),
  44617. name: "Dressed",
  44618. image: {
  44619. source: "./media/characters/kiva/dressed.svg",
  44620. extra: 1102/1055,
  44621. bottom: 60/1162
  44622. }
  44623. },
  44624. nude: {
  44625. height: math.unit(8 + 5/12, "feet"),
  44626. weight: math.unit(700, "lb"),
  44627. name: "Nude",
  44628. image: {
  44629. source: "./media/characters/kiva/nude.svg",
  44630. extra: 1102/1055,
  44631. bottom: 60/1162
  44632. }
  44633. },
  44634. },
  44635. [
  44636. {
  44637. name: "Base Height",
  44638. height: math.unit(8 + 5/12, "feet"),
  44639. default: true
  44640. },
  44641. {
  44642. name: "Macro",
  44643. height: math.unit(100, "feet")
  44644. },
  44645. {
  44646. name: "Max",
  44647. height: math.unit(3280, "feet")
  44648. },
  44649. ]
  44650. ))
  44651. characterMakers.push(() => makeCharacter(
  44652. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44653. {
  44654. front: {
  44655. height: math.unit(6 + 8/12, "feet"),
  44656. weight: math.unit(250, "lb"),
  44657. name: "Front",
  44658. image: {
  44659. source: "./media/characters/ztragon/front.svg",
  44660. extra: 1825/1684,
  44661. bottom: 98/1923
  44662. }
  44663. },
  44664. },
  44665. [
  44666. {
  44667. name: "Normal",
  44668. height: math.unit(6 + 8/12, "feet"),
  44669. default: true
  44670. },
  44671. {
  44672. name: "Macro",
  44673. height: math.unit(80, "feet")
  44674. },
  44675. ]
  44676. ))
  44677. characterMakers.push(() => makeCharacter(
  44678. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44679. {
  44680. front: {
  44681. height: math.unit(10.4, "feet"),
  44682. weight: math.unit(2, "tons"),
  44683. name: "Front",
  44684. image: {
  44685. source: "./media/characters/yesenia/front.svg",
  44686. extra: 1479/1474,
  44687. bottom: 233/1712
  44688. }
  44689. },
  44690. },
  44691. [
  44692. {
  44693. name: "Normal",
  44694. height: math.unit(10.4, "feet"),
  44695. default: true
  44696. },
  44697. ]
  44698. ))
  44699. characterMakers.push(() => makeCharacter(
  44700. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44701. {
  44702. normal: {
  44703. height: math.unit(6 + 1/12, "feet"),
  44704. weight: math.unit(180, "lb"),
  44705. name: "Normal",
  44706. image: {
  44707. source: "./media/characters/leanne-lycheborne/normal.svg",
  44708. extra: 1748/1660,
  44709. bottom: 98/1846
  44710. }
  44711. },
  44712. were: {
  44713. height: math.unit(12, "feet"),
  44714. weight: math.unit(1600, "lb"),
  44715. name: "Were",
  44716. image: {
  44717. source: "./media/characters/leanne-lycheborne/were.svg",
  44718. extra: 1485/1432,
  44719. bottom: 66/1551
  44720. }
  44721. },
  44722. },
  44723. [
  44724. {
  44725. name: "Normal",
  44726. height: math.unit(6 + 1/12, "feet"),
  44727. default: true
  44728. },
  44729. ]
  44730. ))
  44731. characterMakers.push(() => makeCharacter(
  44732. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44733. {
  44734. side: {
  44735. height: math.unit(13, "feet"),
  44736. name: "Side",
  44737. image: {
  44738. source: "./media/characters/kira-tyler/side.svg",
  44739. extra: 693/393,
  44740. bottom: 58/751
  44741. }
  44742. },
  44743. },
  44744. [
  44745. {
  44746. name: "Normal",
  44747. height: math.unit(13, "feet"),
  44748. default: true
  44749. },
  44750. ]
  44751. ))
  44752. characterMakers.push(() => makeCharacter(
  44753. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44754. {
  44755. front: {
  44756. height: math.unit(10.3, "feet"),
  44757. weight: math.unit(150, "lb"),
  44758. name: "Front",
  44759. image: {
  44760. source: "./media/characters/blaze/front.svg",
  44761. extra: 1378/1286,
  44762. bottom: 172/1550
  44763. }
  44764. },
  44765. },
  44766. [
  44767. {
  44768. name: "Normal",
  44769. height: math.unit(10.3, "feet"),
  44770. default: true
  44771. },
  44772. ]
  44773. ))
  44774. characterMakers.push(() => makeCharacter(
  44775. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44776. {
  44777. side: {
  44778. height: math.unit(2, "meters"),
  44779. weight: math.unit(400, "kg"),
  44780. name: "Side",
  44781. image: {
  44782. source: "./media/characters/anu/side.svg",
  44783. extra: 506/394,
  44784. bottom: 18/524
  44785. }
  44786. },
  44787. },
  44788. [
  44789. {
  44790. name: "Humanoid",
  44791. height: math.unit(2, "meters")
  44792. },
  44793. {
  44794. name: "Normal",
  44795. height: math.unit(5, "meters"),
  44796. default: true
  44797. },
  44798. ]
  44799. ))
  44800. characterMakers.push(() => makeCharacter(
  44801. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44802. {
  44803. front: {
  44804. height: math.unit(5 + 5/12, "feet"),
  44805. weight: math.unit(170, "lb"),
  44806. name: "Front",
  44807. image: {
  44808. source: "./media/characters/synx-the-lynx/front.svg",
  44809. extra: 1893/1745,
  44810. bottom: 17/1910
  44811. }
  44812. },
  44813. side: {
  44814. height: math.unit(5 + 5/12, "feet"),
  44815. weight: math.unit(170, "lb"),
  44816. name: "Side",
  44817. image: {
  44818. source: "./media/characters/synx-the-lynx/side.svg",
  44819. extra: 1884/1740,
  44820. bottom: 39/1923
  44821. }
  44822. },
  44823. back: {
  44824. height: math.unit(5 + 5/12, "feet"),
  44825. weight: math.unit(170, "lb"),
  44826. name: "Back",
  44827. image: {
  44828. source: "./media/characters/synx-the-lynx/back.svg",
  44829. extra: 1903/1755,
  44830. bottom: 14/1917
  44831. }
  44832. },
  44833. },
  44834. [
  44835. {
  44836. name: "Normal",
  44837. height: math.unit(5 + 5/12, "feet"),
  44838. default: true
  44839. },
  44840. ]
  44841. ))
  44842. characterMakers.push(() => makeCharacter(
  44843. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44844. {
  44845. back: {
  44846. height: math.unit(15, "feet"),
  44847. name: "Back",
  44848. image: {
  44849. source: "./media/characters/nadezda-fex/back.svg",
  44850. extra: 1695/1481,
  44851. bottom: 25/1720
  44852. }
  44853. },
  44854. },
  44855. [
  44856. {
  44857. name: "Normal",
  44858. height: math.unit(15, "feet"),
  44859. default: true
  44860. },
  44861. {
  44862. name: "Macro",
  44863. height: math.unit(2.5, "miles")
  44864. },
  44865. {
  44866. name: "Goddess",
  44867. height: math.unit(2, "multiverses")
  44868. },
  44869. ]
  44870. ))
  44871. characterMakers.push(() => makeCharacter(
  44872. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44873. {
  44874. front: {
  44875. height: math.unit(216, "cm"),
  44876. name: "Front",
  44877. image: {
  44878. source: "./media/characters/lev/front.svg",
  44879. extra: 1728/1670,
  44880. bottom: 82/1810
  44881. }
  44882. },
  44883. back: {
  44884. height: math.unit(216, "cm"),
  44885. name: "Back",
  44886. image: {
  44887. source: "./media/characters/lev/back.svg",
  44888. extra: 1738/1675,
  44889. bottom: 24/1762
  44890. }
  44891. },
  44892. dressed: {
  44893. height: math.unit(216, "cm"),
  44894. name: "Dressed",
  44895. image: {
  44896. source: "./media/characters/lev/dressed.svg",
  44897. extra: 1397/1351,
  44898. bottom: 73/1470
  44899. }
  44900. },
  44901. head: {
  44902. height: math.unit(0.51, "meter"),
  44903. name: "Head",
  44904. image: {
  44905. source: "./media/characters/lev/head.svg"
  44906. }
  44907. },
  44908. },
  44909. [
  44910. {
  44911. name: "Normal",
  44912. height: math.unit(216, "cm"),
  44913. default: true
  44914. },
  44915. {
  44916. name: "Relatively Macro",
  44917. height: math.unit(80, "meters")
  44918. },
  44919. {
  44920. name: "Megamacro",
  44921. height: math.unit(21600, "meters")
  44922. },
  44923. {
  44924. name: "Megamacro+",
  44925. height: math.unit(64800, "meters")
  44926. },
  44927. ]
  44928. ))
  44929. characterMakers.push(() => makeCharacter(
  44930. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44931. {
  44932. front: {
  44933. height: math.unit(2, "meters"),
  44934. weight: math.unit(80, "kg"),
  44935. name: "Front",
  44936. image: {
  44937. source: "./media/characters/moka/front.svg",
  44938. extra: 1337/1255,
  44939. bottom: 58/1395
  44940. }
  44941. },
  44942. },
  44943. [
  44944. {
  44945. name: "Micro",
  44946. height: math.unit(15, "cm")
  44947. },
  44948. {
  44949. name: "Normal",
  44950. height: math.unit(2, "meters"),
  44951. default: true
  44952. },
  44953. {
  44954. name: "Macro",
  44955. height: math.unit(20, "meters"),
  44956. },
  44957. ]
  44958. ))
  44959. characterMakers.push(() => makeCharacter(
  44960. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44961. {
  44962. front: {
  44963. height: math.unit(9, "feet"),
  44964. weight: math.unit(240, "lb"),
  44965. name: "Front",
  44966. image: {
  44967. source: "./media/characters/kuzco/front.svg",
  44968. extra: 1593/1487,
  44969. bottom: 32/1625
  44970. }
  44971. },
  44972. side: {
  44973. height: math.unit(9, "feet"),
  44974. weight: math.unit(240, "lb"),
  44975. name: "Side",
  44976. image: {
  44977. source: "./media/characters/kuzco/side.svg",
  44978. extra: 1575/1485,
  44979. bottom: 30/1605
  44980. }
  44981. },
  44982. back: {
  44983. height: math.unit(9, "feet"),
  44984. weight: math.unit(240, "lb"),
  44985. name: "Back",
  44986. image: {
  44987. source: "./media/characters/kuzco/back.svg",
  44988. extra: 1603/1514,
  44989. bottom: 14/1617
  44990. }
  44991. },
  44992. },
  44993. [
  44994. {
  44995. name: "Normal",
  44996. height: math.unit(9, "feet"),
  44997. default: true
  44998. },
  44999. ]
  45000. ))
  45001. characterMakers.push(() => makeCharacter(
  45002. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45003. {
  45004. side: {
  45005. height: math.unit(2, "meters"),
  45006. weight: math.unit(300, "kg"),
  45007. name: "Side",
  45008. image: {
  45009. source: "./media/characters/ceruleus/side.svg",
  45010. extra: 1068/974,
  45011. bottom: 126/1194
  45012. }
  45013. },
  45014. },
  45015. [
  45016. {
  45017. name: "Normal",
  45018. height: math.unit(16, "meters"),
  45019. default: true
  45020. },
  45021. ]
  45022. ))
  45023. characterMakers.push(() => makeCharacter(
  45024. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45025. {
  45026. front: {
  45027. height: math.unit(9, "feet"),
  45028. weight: math.unit(500, "kg"),
  45029. name: "Front",
  45030. image: {
  45031. source: "./media/characters/acouya/front.svg",
  45032. extra: 1660/1473,
  45033. bottom: 28/1688
  45034. }
  45035. },
  45036. },
  45037. [
  45038. {
  45039. name: "Normal",
  45040. height: math.unit(9, "feet"),
  45041. default: true
  45042. },
  45043. ]
  45044. ))
  45045. characterMakers.push(() => makeCharacter(
  45046. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45047. {
  45048. front: {
  45049. height: math.unit(5 + 6/12, "feet"),
  45050. weight: math.unit(195, "lb"),
  45051. name: "Front",
  45052. image: {
  45053. source: "./media/characters/vant/front.svg",
  45054. extra: 1396/1320,
  45055. bottom: 20/1416
  45056. }
  45057. },
  45058. back: {
  45059. height: math.unit(5 + 6/12, "feet"),
  45060. weight: math.unit(195, "lb"),
  45061. name: "Back",
  45062. image: {
  45063. source: "./media/characters/vant/back.svg",
  45064. extra: 1396/1320,
  45065. bottom: 20/1416
  45066. }
  45067. },
  45068. maw: {
  45069. height: math.unit(0.75, "feet"),
  45070. name: "Maw",
  45071. image: {
  45072. source: "./media/characters/vant/maw.svg"
  45073. }
  45074. },
  45075. paw: {
  45076. height: math.unit(1.07, "feet"),
  45077. name: "Paw",
  45078. image: {
  45079. source: "./media/characters/vant/paw.svg"
  45080. }
  45081. },
  45082. },
  45083. [
  45084. {
  45085. name: "Micro",
  45086. height: math.unit(0.25, "inches")
  45087. },
  45088. {
  45089. name: "Normal",
  45090. height: math.unit(5 + 6/12, "feet"),
  45091. default: true
  45092. },
  45093. {
  45094. name: "Macro",
  45095. height: math.unit(75, "feet")
  45096. },
  45097. ]
  45098. ))
  45099. characterMakers.push(() => makeCharacter(
  45100. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45101. {
  45102. front: {
  45103. height: math.unit(30, "meters"),
  45104. weight: math.unit(363, "tons"),
  45105. name: "Front",
  45106. image: {
  45107. source: "./media/characters/ahra/front.svg",
  45108. extra: 1914/1814,
  45109. bottom: 46/1960
  45110. }
  45111. },
  45112. },
  45113. [
  45114. {
  45115. name: "Macro",
  45116. height: math.unit(30, "meters"),
  45117. default: true
  45118. },
  45119. ]
  45120. ))
  45121. characterMakers.push(() => makeCharacter(
  45122. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45123. {
  45124. undressed: {
  45125. height: math.unit(2, "m"),
  45126. weight: math.unit(250, "kg"),
  45127. name: "Undressed",
  45128. image: {
  45129. source: "./media/characters/coriander/undressed.svg",
  45130. extra: 1757/1606,
  45131. bottom: 107/1864
  45132. }
  45133. },
  45134. dressed: {
  45135. height: math.unit(2, "m"),
  45136. weight: math.unit(250, "kg"),
  45137. name: "Dressed",
  45138. image: {
  45139. source: "./media/characters/coriander/dressed.svg",
  45140. extra: 1757/1606,
  45141. bottom: 107/1864
  45142. }
  45143. },
  45144. },
  45145. [
  45146. {
  45147. name: "Normal",
  45148. height: math.unit(4, "meters"),
  45149. default: true
  45150. },
  45151. {
  45152. name: "XL",
  45153. height: math.unit(6, "meters")
  45154. },
  45155. {
  45156. name: "XXL",
  45157. height: math.unit(8, "meters")
  45158. },
  45159. ]
  45160. ))
  45161. characterMakers.push(() => makeCharacter(
  45162. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45163. {
  45164. front: {
  45165. height: math.unit(6, "feet"),
  45166. name: "Front",
  45167. image: {
  45168. source: "./media/characters/syrinx/front.svg",
  45169. extra: 1557/1259,
  45170. bottom: 171/1728
  45171. }
  45172. },
  45173. },
  45174. [
  45175. {
  45176. name: "Normal",
  45177. height: math.unit(6 + 3/12, "feet"),
  45178. default: true
  45179. },
  45180. ]
  45181. ))
  45182. characterMakers.push(() => makeCharacter(
  45183. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45184. {
  45185. front: {
  45186. height: math.unit(11 + 6/12, "feet"),
  45187. weight: math.unit(1.5, "tons"),
  45188. name: "Front",
  45189. image: {
  45190. source: "./media/characters/bor/front.svg",
  45191. extra: 1189/1109,
  45192. bottom: 170/1359
  45193. }
  45194. },
  45195. },
  45196. [
  45197. {
  45198. name: "Normal",
  45199. height: math.unit(11 + 6/12, "feet"),
  45200. default: true
  45201. },
  45202. {
  45203. name: "Macro",
  45204. height: math.unit(32 + 9/12, "feet")
  45205. },
  45206. ]
  45207. ))
  45208. characterMakers.push(() => makeCharacter(
  45209. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45210. {
  45211. anthro: {
  45212. height: math.unit(9, "feet"),
  45213. weight: math.unit(2076, "lb"),
  45214. name: "Anthro",
  45215. image: {
  45216. source: "./media/characters/abacus/anthro.svg",
  45217. extra: 1540/1494,
  45218. bottom: 233/1773
  45219. }
  45220. },
  45221. pigeon: {
  45222. height: math.unit(1, "feet"),
  45223. name: "Pigeon",
  45224. image: {
  45225. source: "./media/characters/abacus/pigeon.svg",
  45226. extra: 528/525,
  45227. bottom: 46/574
  45228. }
  45229. },
  45230. },
  45231. [
  45232. {
  45233. name: "Normal",
  45234. height: math.unit(9, "feet"),
  45235. default: true
  45236. },
  45237. ]
  45238. ))
  45239. characterMakers.push(() => makeCharacter(
  45240. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45241. {
  45242. side: {
  45243. height: math.unit(6, "feet"),
  45244. name: "Side",
  45245. image: {
  45246. source: "./media/characters/delkhan/side.svg",
  45247. extra: 1884/1786,
  45248. bottom: 308/2192
  45249. }
  45250. },
  45251. head: {
  45252. height: math.unit(3.38, "feet"),
  45253. name: "Head",
  45254. image: {
  45255. source: "./media/characters/delkhan/head.svg"
  45256. }
  45257. },
  45258. },
  45259. [
  45260. {
  45261. name: "Normal",
  45262. height: math.unit(72, "feet"),
  45263. default: true
  45264. },
  45265. {
  45266. name: "Giant",
  45267. height: math.unit(172, "feet")
  45268. },
  45269. ]
  45270. ))
  45271. characterMakers.push(() => makeCharacter(
  45272. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45273. {
  45274. standing: {
  45275. height: math.unit(6, "feet"),
  45276. name: "Standing",
  45277. image: {
  45278. source: "./media/characters/euchidat/standing.svg",
  45279. extra: 1612/1553,
  45280. bottom: 116/1728
  45281. }
  45282. },
  45283. leaning: {
  45284. height: math.unit(6, "feet"),
  45285. name: "Leaning",
  45286. image: {
  45287. source: "./media/characters/euchidat/leaning.svg",
  45288. extra: 1719/1674,
  45289. bottom: 27/1746
  45290. }
  45291. },
  45292. },
  45293. [
  45294. {
  45295. name: "Normal",
  45296. height: math.unit(175, "feet"),
  45297. default: true
  45298. },
  45299. {
  45300. name: "Megamacro",
  45301. height: math.unit(190, "miles")
  45302. },
  45303. {
  45304. name: "Gigamacro",
  45305. height: math.unit(190000, "miles")
  45306. },
  45307. ]
  45308. ))
  45309. characterMakers.push(() => makeCharacter(
  45310. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45311. {
  45312. front: {
  45313. height: math.unit(6, "feet"),
  45314. weight: math.unit(150, "lb"),
  45315. name: "Front",
  45316. image: {
  45317. source: "./media/characters/rebecca-stack/front.svg",
  45318. extra: 1256/1201,
  45319. bottom: 18/1274
  45320. }
  45321. },
  45322. },
  45323. [
  45324. {
  45325. name: "Normal",
  45326. height: math.unit(5 + 8/12, "feet"),
  45327. default: true
  45328. },
  45329. {
  45330. name: "Demolitionist",
  45331. height: math.unit(200, "feet")
  45332. },
  45333. {
  45334. name: "Out of Control",
  45335. height: math.unit(2, "miles")
  45336. },
  45337. {
  45338. name: "Giga",
  45339. height: math.unit(7200, "miles")
  45340. },
  45341. ]
  45342. ))
  45343. characterMakers.push(() => makeCharacter(
  45344. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45345. {
  45346. front: {
  45347. height: math.unit(6, "feet"),
  45348. weight: math.unit(150, "lb"),
  45349. name: "Front",
  45350. image: {
  45351. source: "./media/characters/jenny-cartwright/front.svg",
  45352. extra: 1384/1376,
  45353. bottom: 58/1442
  45354. }
  45355. },
  45356. },
  45357. [
  45358. {
  45359. name: "Normal",
  45360. height: math.unit(6 + 7/12, "feet"),
  45361. default: true
  45362. },
  45363. {
  45364. name: "Librarian",
  45365. height: math.unit(55, "feet")
  45366. },
  45367. {
  45368. name: "Sightseer",
  45369. height: math.unit(50, "miles")
  45370. },
  45371. {
  45372. name: "Giga",
  45373. height: math.unit(30000, "miles")
  45374. },
  45375. ]
  45376. ))
  45377. characterMakers.push(() => makeCharacter(
  45378. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45379. {
  45380. nude: {
  45381. height: math.unit(8, "feet"),
  45382. weight: math.unit(225, "lb"),
  45383. name: "Nude",
  45384. image: {
  45385. source: "./media/characters/marvy/nude.svg",
  45386. extra: 1900/1683,
  45387. bottom: 89/1989
  45388. }
  45389. },
  45390. dressed: {
  45391. height: math.unit(8, "feet"),
  45392. weight: math.unit(225, "lb"),
  45393. name: "Dressed",
  45394. image: {
  45395. source: "./media/characters/marvy/dressed.svg",
  45396. extra: 1900/1683,
  45397. bottom: 89/1989
  45398. }
  45399. },
  45400. head: {
  45401. height: math.unit(2.85, "feet"),
  45402. name: "Head",
  45403. image: {
  45404. source: "./media/characters/marvy/head.svg"
  45405. }
  45406. },
  45407. },
  45408. [
  45409. {
  45410. name: "Normal",
  45411. height: math.unit(8, "feet"),
  45412. default: true
  45413. },
  45414. ]
  45415. ))
  45416. characterMakers.push(() => makeCharacter(
  45417. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45418. {
  45419. front: {
  45420. height: math.unit(8, "feet"),
  45421. weight: math.unit(250, "lb"),
  45422. name: "Front",
  45423. image: {
  45424. source: "./media/characters/leah/front.svg",
  45425. extra: 1257/1149,
  45426. bottom: 109/1366
  45427. }
  45428. },
  45429. },
  45430. [
  45431. {
  45432. name: "Normal",
  45433. height: math.unit(8, "feet"),
  45434. default: true
  45435. },
  45436. {
  45437. name: "Minimacro",
  45438. height: math.unit(40, "feet")
  45439. },
  45440. {
  45441. name: "Macro",
  45442. height: math.unit(124, "feet")
  45443. },
  45444. {
  45445. name: "Megamacro",
  45446. height: math.unit(850, "feet")
  45447. },
  45448. ]
  45449. ))
  45450. characterMakers.push(() => makeCharacter(
  45451. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45452. {
  45453. side: {
  45454. height: math.unit(13 + 6/12, "feet"),
  45455. weight: math.unit(3200, "lb"),
  45456. name: "Side",
  45457. image: {
  45458. source: "./media/characters/alvir/side.svg",
  45459. extra: 896/589,
  45460. bottom: 26/922
  45461. }
  45462. },
  45463. },
  45464. [
  45465. {
  45466. name: "Normal",
  45467. height: math.unit(13 + 6/12, "feet"),
  45468. default: true
  45469. },
  45470. ]
  45471. ))
  45472. characterMakers.push(() => makeCharacter(
  45473. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45474. {
  45475. front: {
  45476. height: math.unit(5 + 4/12, "feet"),
  45477. weight: math.unit(236, "lb"),
  45478. name: "Front",
  45479. image: {
  45480. source: "./media/characters/zaina-khalil/front.svg",
  45481. extra: 1533/1485,
  45482. bottom: 94/1627
  45483. }
  45484. },
  45485. side: {
  45486. height: math.unit(5 + 4/12, "feet"),
  45487. weight: math.unit(236, "lb"),
  45488. name: "Side",
  45489. image: {
  45490. source: "./media/characters/zaina-khalil/side.svg",
  45491. extra: 1537/1498,
  45492. bottom: 66/1603
  45493. }
  45494. },
  45495. back: {
  45496. height: math.unit(5 + 4/12, "feet"),
  45497. weight: math.unit(236, "lb"),
  45498. name: "Back",
  45499. image: {
  45500. source: "./media/characters/zaina-khalil/back.svg",
  45501. extra: 1546/1494,
  45502. bottom: 89/1635
  45503. }
  45504. },
  45505. },
  45506. [
  45507. {
  45508. name: "Normal",
  45509. height: math.unit(5 + 4/12, "feet"),
  45510. default: true
  45511. },
  45512. ]
  45513. ))
  45514. characterMakers.push(() => makeCharacter(
  45515. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45516. {
  45517. side: {
  45518. height: math.unit(12, "feet"),
  45519. weight: math.unit(4000, "lb"),
  45520. name: "Side",
  45521. image: {
  45522. source: "./media/characters/terry/side.svg",
  45523. extra: 1518/1439,
  45524. bottom: 149/1667
  45525. }
  45526. },
  45527. },
  45528. [
  45529. {
  45530. name: "Normal",
  45531. height: math.unit(12, "feet"),
  45532. default: true
  45533. },
  45534. ]
  45535. ))
  45536. characterMakers.push(() => makeCharacter(
  45537. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45538. {
  45539. front: {
  45540. height: math.unit(12, "feet"),
  45541. weight: math.unit(1500, "lb"),
  45542. name: "Front",
  45543. image: {
  45544. source: "./media/characters/kahea/front.svg",
  45545. extra: 1722/1617,
  45546. bottom: 179/1901
  45547. }
  45548. },
  45549. },
  45550. [
  45551. {
  45552. name: "Normal",
  45553. height: math.unit(12, "feet"),
  45554. default: true
  45555. },
  45556. ]
  45557. ))
  45558. characterMakers.push(() => makeCharacter(
  45559. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45560. {
  45561. demonFront: {
  45562. height: math.unit(36, "feet"),
  45563. name: "Front",
  45564. image: {
  45565. source: "./media/characters/alex-xuria/demon-front.svg",
  45566. extra: 1705/1673,
  45567. bottom: 198/1903
  45568. },
  45569. form: "demon",
  45570. default: true
  45571. },
  45572. demonBack: {
  45573. height: math.unit(36, "feet"),
  45574. name: "Back",
  45575. image: {
  45576. source: "./media/characters/alex-xuria/demon-back.svg",
  45577. extra: 1725/1693,
  45578. bottom: 70/1795
  45579. },
  45580. form: "demon"
  45581. },
  45582. demonHead: {
  45583. height: math.unit(2.14, "meters"),
  45584. name: "Head",
  45585. image: {
  45586. source: "./media/characters/alex-xuria/demon-head.svg"
  45587. },
  45588. form: "demon"
  45589. },
  45590. demonHand: {
  45591. height: math.unit(1.61, "meters"),
  45592. name: "Hand",
  45593. image: {
  45594. source: "./media/characters/alex-xuria/demon-hand.svg"
  45595. },
  45596. form: "demon"
  45597. },
  45598. demonPaw: {
  45599. height: math.unit(1.35, "meters"),
  45600. name: "Paw",
  45601. image: {
  45602. source: "./media/characters/alex-xuria/demon-paw.svg"
  45603. },
  45604. form: "demon"
  45605. },
  45606. demonFoot: {
  45607. height: math.unit(2.2, "meters"),
  45608. name: "Foot",
  45609. image: {
  45610. source: "./media/characters/alex-xuria/demon-foot.svg"
  45611. },
  45612. form: "demon"
  45613. },
  45614. demonCock: {
  45615. height: math.unit(1.74, "meters"),
  45616. name: "Cock",
  45617. image: {
  45618. source: "./media/characters/alex-xuria/demon-cock.svg"
  45619. },
  45620. form: "demon"
  45621. },
  45622. demonTailClosed: {
  45623. height: math.unit(1.47, "meters"),
  45624. name: "Tail (Closed)",
  45625. image: {
  45626. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45627. },
  45628. form: "demon"
  45629. },
  45630. demonTailOpen: {
  45631. height: math.unit(2.85, "meters"),
  45632. name: "Tail (Open)",
  45633. image: {
  45634. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45635. },
  45636. form: "demon"
  45637. },
  45638. incubusFront: {
  45639. height: math.unit(12, "feet"),
  45640. name: "Front",
  45641. image: {
  45642. source: "./media/characters/alex-xuria/incubus-front.svg",
  45643. extra: 1754/1677,
  45644. bottom: 125/1879
  45645. },
  45646. form: "incubus",
  45647. default: true
  45648. },
  45649. incubusBack: {
  45650. height: math.unit(12, "feet"),
  45651. name: "Back",
  45652. image: {
  45653. source: "./media/characters/alex-xuria/incubus-back.svg",
  45654. extra: 1702/1647,
  45655. bottom: 30/1732
  45656. },
  45657. form: "incubus"
  45658. },
  45659. incubusHead: {
  45660. height: math.unit(3.45, "feet"),
  45661. name: "Head",
  45662. image: {
  45663. source: "./media/characters/alex-xuria/incubus-head.svg"
  45664. },
  45665. form: "incubus"
  45666. },
  45667. rabbitFront: {
  45668. height: math.unit(6, "feet"),
  45669. name: "Front",
  45670. image: {
  45671. source: "./media/characters/alex-xuria/rabbit-front.svg",
  45672. extra: 1369/1349,
  45673. bottom: 45/1414
  45674. },
  45675. form: "rabbit",
  45676. default: true
  45677. },
  45678. rabbitSide: {
  45679. height: math.unit(6, "feet"),
  45680. name: "Side",
  45681. image: {
  45682. source: "./media/characters/alex-xuria/rabbit-side.svg",
  45683. extra: 1370/1356,
  45684. bottom: 37/1407
  45685. },
  45686. form: "rabbit"
  45687. },
  45688. rabbitBack: {
  45689. height: math.unit(6, "feet"),
  45690. name: "Back",
  45691. image: {
  45692. source: "./media/characters/alex-xuria/rabbit-back.svg",
  45693. extra: 1375/1358,
  45694. bottom: 43/1418
  45695. },
  45696. form: "rabbit"
  45697. },
  45698. },
  45699. [
  45700. {
  45701. name: "Normal",
  45702. height: math.unit(6, "feet"),
  45703. default: true,
  45704. form: "rabbit"
  45705. },
  45706. {
  45707. name: "Incubus",
  45708. height: math.unit(12, "feet"),
  45709. default: true,
  45710. form: "incubus"
  45711. },
  45712. {
  45713. name: "Demon",
  45714. height: math.unit(36, "feet"),
  45715. default: true,
  45716. form: "demon"
  45717. }
  45718. ],
  45719. {
  45720. "demon": {
  45721. name: "Demon",
  45722. default: true
  45723. },
  45724. "incubus": {
  45725. name: "Incubus",
  45726. },
  45727. "rabbit": {
  45728. name: "Rabbit"
  45729. }
  45730. }
  45731. ))
  45732. characterMakers.push(() => makeCharacter(
  45733. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  45734. {
  45735. front: {
  45736. height: math.unit(7 + 5/12, "feet"),
  45737. weight: math.unit(510, "lb"),
  45738. name: "Front",
  45739. image: {
  45740. source: "./media/characters/syrup/front.svg",
  45741. extra: 932/916,
  45742. bottom: 26/958
  45743. }
  45744. },
  45745. },
  45746. [
  45747. {
  45748. name: "Normal",
  45749. height: math.unit(7 + 5/12, "feet"),
  45750. default: true
  45751. },
  45752. {
  45753. name: "Big",
  45754. height: math.unit(50, "feet")
  45755. },
  45756. {
  45757. name: "Macro",
  45758. height: math.unit(300, "feet")
  45759. },
  45760. {
  45761. name: "Megamacro",
  45762. height: math.unit(1, "mile")
  45763. },
  45764. ]
  45765. ))
  45766. characterMakers.push(() => makeCharacter(
  45767. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  45768. {
  45769. front: {
  45770. height: math.unit(6 + 9/12, "feet"),
  45771. name: "Front",
  45772. image: {
  45773. source: "./media/characters/zeimne/front.svg",
  45774. extra: 1969/1806,
  45775. bottom: 53/2022
  45776. }
  45777. },
  45778. },
  45779. [
  45780. {
  45781. name: "Normal",
  45782. height: math.unit(6 + 9/12, "feet"),
  45783. default: true
  45784. },
  45785. {
  45786. name: "Giant",
  45787. height: math.unit(550, "feet")
  45788. },
  45789. {
  45790. name: "Mega",
  45791. height: math.unit(3, "miles")
  45792. },
  45793. {
  45794. name: "Giga",
  45795. height: math.unit(250, "miles")
  45796. },
  45797. {
  45798. name: "Tera",
  45799. height: math.unit(1, "AU")
  45800. },
  45801. ]
  45802. ))
  45803. characterMakers.push(() => makeCharacter(
  45804. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  45805. {
  45806. front: {
  45807. height: math.unit(5 + 2/12, "feet"),
  45808. name: "Front",
  45809. image: {
  45810. source: "./media/characters/grar/front.svg",
  45811. extra: 1331/1119,
  45812. bottom: 60/1391
  45813. }
  45814. },
  45815. back: {
  45816. height: math.unit(5 + 2/12, "feet"),
  45817. name: "Back",
  45818. image: {
  45819. source: "./media/characters/grar/back.svg",
  45820. extra: 1385/1169,
  45821. bottom: 23/1408
  45822. }
  45823. },
  45824. },
  45825. [
  45826. {
  45827. name: "Normal",
  45828. height: math.unit(5 + 2/12, "feet"),
  45829. default: true
  45830. },
  45831. ]
  45832. ))
  45833. characterMakers.push(() => makeCharacter(
  45834. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  45835. {
  45836. front: {
  45837. height: math.unit(13 + 7/12, "feet"),
  45838. weight: math.unit(2200, "lb"),
  45839. name: "Front",
  45840. image: {
  45841. source: "./media/characters/endraya/front.svg",
  45842. extra: 1289/1215,
  45843. bottom: 50/1339
  45844. }
  45845. },
  45846. nude: {
  45847. height: math.unit(13 + 7/12, "feet"),
  45848. weight: math.unit(2200, "lb"),
  45849. name: "Nude",
  45850. image: {
  45851. source: "./media/characters/endraya/nude.svg",
  45852. extra: 1247/1171,
  45853. bottom: 40/1287
  45854. }
  45855. },
  45856. head: {
  45857. height: math.unit(2.6, "feet"),
  45858. name: "Head",
  45859. image: {
  45860. source: "./media/characters/endraya/head.svg"
  45861. }
  45862. },
  45863. slit: {
  45864. height: math.unit(3.4, "feet"),
  45865. name: "Slit",
  45866. image: {
  45867. source: "./media/characters/endraya/slit.svg"
  45868. }
  45869. },
  45870. },
  45871. [
  45872. {
  45873. name: "Normal",
  45874. height: math.unit(13 + 7/12, "feet"),
  45875. default: true
  45876. },
  45877. {
  45878. name: "Macro",
  45879. height: math.unit(200, "feet")
  45880. },
  45881. ]
  45882. ))
  45883. characterMakers.push(() => makeCharacter(
  45884. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  45885. {
  45886. front: {
  45887. height: math.unit(412, "meters"),
  45888. name: "Front",
  45889. image: {
  45890. source: "./media/characters/rodryana/front.svg",
  45891. extra: 2002/1921,
  45892. bottom: 53/2055
  45893. }
  45894. },
  45895. back: {
  45896. height: math.unit(412, "meters"),
  45897. name: "Back",
  45898. image: {
  45899. source: "./media/characters/rodryana/back.svg",
  45900. extra: 1993/1926,
  45901. bottom: 48/2041
  45902. }
  45903. },
  45904. maw: {
  45905. height: math.unit(45, "meters"),
  45906. name: "Maw",
  45907. image: {
  45908. source: "./media/characters/rodryana/maw.svg"
  45909. }
  45910. },
  45911. slit: {
  45912. height: math.unit(72, "meters"),
  45913. name: "Slit",
  45914. image: {
  45915. source: "./media/characters/rodryana/slit.svg"
  45916. }
  45917. },
  45918. },
  45919. [
  45920. {
  45921. name: "Macro",
  45922. height: math.unit(412, "meters"),
  45923. default: true
  45924. },
  45925. ]
  45926. ))
  45927. characterMakers.push(() => makeCharacter(
  45928. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  45929. {
  45930. front: {
  45931. height: math.unit(6, "feet"),
  45932. weight: math.unit(1000, "lb"),
  45933. name: "Front",
  45934. image: {
  45935. source: "./media/characters/asaya/front.svg",
  45936. extra: 1460/1200,
  45937. bottom: 71/1531
  45938. }
  45939. },
  45940. },
  45941. [
  45942. {
  45943. name: "Normal",
  45944. height: math.unit(8, "km"),
  45945. default: true
  45946. },
  45947. ]
  45948. ))
  45949. characterMakers.push(() => makeCharacter(
  45950. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  45951. {
  45952. front: {
  45953. height: math.unit(3.5, "meters"),
  45954. name: "Front",
  45955. image: {
  45956. source: "./media/characters/sarzu-and-israz/front.svg",
  45957. extra: 1570/1558,
  45958. bottom: 150/1720
  45959. },
  45960. },
  45961. back: {
  45962. height: math.unit(3.5, "meters"),
  45963. name: "Back",
  45964. image: {
  45965. source: "./media/characters/sarzu-and-israz/back.svg",
  45966. extra: 1523/1509,
  45967. bottom: 132/1655
  45968. },
  45969. },
  45970. frontFemale: {
  45971. height: math.unit(3.5, "meters"),
  45972. name: "Front (Female)",
  45973. image: {
  45974. source: "./media/characters/sarzu-and-israz/front-female.svg",
  45975. extra: 1570/1558,
  45976. bottom: 150/1720
  45977. },
  45978. },
  45979. frontHerm: {
  45980. height: math.unit(3.5, "meters"),
  45981. name: "Front (Herm)",
  45982. image: {
  45983. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  45984. extra: 1570/1558,
  45985. bottom: 150/1720
  45986. },
  45987. },
  45988. },
  45989. [
  45990. {
  45991. name: "Normal",
  45992. height: math.unit(3.5, "meters"),
  45993. default: true,
  45994. },
  45995. {
  45996. name: "Macro",
  45997. height: math.unit(65.5, "meters"),
  45998. },
  45999. ],
  46000. ))
  46001. characterMakers.push(() => makeCharacter(
  46002. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46003. {
  46004. front: {
  46005. height: math.unit(6, "feet"),
  46006. weight: math.unit(250, "lb"),
  46007. name: "Front",
  46008. image: {
  46009. source: "./media/characters/zenimma/front.svg",
  46010. extra: 1346/1320,
  46011. bottom: 58/1404
  46012. }
  46013. },
  46014. back: {
  46015. height: math.unit(6, "feet"),
  46016. weight: math.unit(250, "lb"),
  46017. name: "Back",
  46018. image: {
  46019. source: "./media/characters/zenimma/back.svg",
  46020. extra: 1324/1308,
  46021. bottom: 44/1368
  46022. }
  46023. },
  46024. dick: {
  46025. height: math.unit(1.44, "feet"),
  46026. name: "Dick",
  46027. image: {
  46028. source: "./media/characters/zenimma/dick.svg"
  46029. }
  46030. },
  46031. },
  46032. [
  46033. {
  46034. name: "Canon Height",
  46035. height: math.unit(66, "miles"),
  46036. default: true
  46037. },
  46038. ]
  46039. ))
  46040. characterMakers.push(() => makeCharacter(
  46041. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46042. {
  46043. nude: {
  46044. height: math.unit(6, "feet"),
  46045. weight: math.unit(150, "lb"),
  46046. name: "Nude",
  46047. image: {
  46048. source: "./media/characters/shavon/nude.svg",
  46049. extra: 1242/1096,
  46050. bottom: 98/1340
  46051. }
  46052. },
  46053. dressed: {
  46054. height: math.unit(6, "feet"),
  46055. weight: math.unit(150, "lb"),
  46056. name: "Dressed",
  46057. image: {
  46058. source: "./media/characters/shavon/dressed.svg",
  46059. extra: 1242/1096,
  46060. bottom: 98/1340
  46061. }
  46062. },
  46063. },
  46064. [
  46065. {
  46066. name: "Macro",
  46067. height: math.unit(255, "feet"),
  46068. default: true
  46069. },
  46070. ]
  46071. ))
  46072. characterMakers.push(() => makeCharacter(
  46073. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46074. {
  46075. front: {
  46076. height: math.unit(6, "feet"),
  46077. name: "Front",
  46078. image: {
  46079. source: "./media/characters/steph/front.svg",
  46080. extra: 1430/1330,
  46081. bottom: 54/1484
  46082. }
  46083. },
  46084. },
  46085. [
  46086. {
  46087. name: "Normal",
  46088. height: math.unit(6, "feet"),
  46089. default: true
  46090. },
  46091. ]
  46092. ))
  46093. characterMakers.push(() => makeCharacter(
  46094. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46095. {
  46096. front: {
  46097. height: math.unit(9, "feet"),
  46098. weight: math.unit(400, "lb"),
  46099. name: "Front",
  46100. image: {
  46101. source: "./media/characters/kil'aman/front.svg",
  46102. extra: 1210/1159,
  46103. bottom: 109/1319
  46104. }
  46105. },
  46106. head: {
  46107. height: math.unit(2.14, "feet"),
  46108. name: "Head",
  46109. image: {
  46110. source: "./media/characters/kil'aman/head.svg"
  46111. }
  46112. },
  46113. maw: {
  46114. height: math.unit(1.21, "feet"),
  46115. name: "Maw",
  46116. image: {
  46117. source: "./media/characters/kil'aman/maw.svg"
  46118. }
  46119. },
  46120. foot: {
  46121. height: math.unit(1.7, "feet"),
  46122. name: "Foot",
  46123. image: {
  46124. source: "./media/characters/kil'aman/foot.svg"
  46125. }
  46126. },
  46127. dick: {
  46128. height: math.unit(2.1, "feet"),
  46129. name: "Dick",
  46130. image: {
  46131. source: "./media/characters/kil'aman/dick.svg"
  46132. }
  46133. },
  46134. },
  46135. [
  46136. {
  46137. name: "Normal",
  46138. height: math.unit(9, "feet")
  46139. },
  46140. {
  46141. name: "Canon Height",
  46142. height: math.unit(10, "miles"),
  46143. default: true
  46144. },
  46145. {
  46146. name: "Maximum",
  46147. height: math.unit(6e9, "miles")
  46148. },
  46149. ]
  46150. ))
  46151. characterMakers.push(() => makeCharacter(
  46152. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46153. {
  46154. front: {
  46155. height: math.unit(90, "feet"),
  46156. weight: math.unit(675000, "lb"),
  46157. name: "Front",
  46158. image: {
  46159. source: "./media/characters/qadan/front.svg",
  46160. extra: 1012/1004,
  46161. bottom: 78/1090
  46162. }
  46163. },
  46164. back: {
  46165. height: math.unit(90, "feet"),
  46166. weight: math.unit(675000, "lb"),
  46167. name: "Back",
  46168. image: {
  46169. source: "./media/characters/qadan/back.svg",
  46170. extra: 1042/1031,
  46171. bottom: 55/1097
  46172. }
  46173. },
  46174. armored: {
  46175. height: math.unit(90, "feet"),
  46176. weight: math.unit(675000, "lb"),
  46177. name: "Armored",
  46178. image: {
  46179. source: "./media/characters/qadan/armored.svg",
  46180. extra: 1047/1037,
  46181. bottom: 48/1095
  46182. }
  46183. },
  46184. },
  46185. [
  46186. {
  46187. name: "Normal",
  46188. height: math.unit(90, "feet"),
  46189. default: true
  46190. },
  46191. ]
  46192. ))
  46193. characterMakers.push(() => makeCharacter(
  46194. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46195. {
  46196. front: {
  46197. height: math.unit(6, "feet"),
  46198. weight: math.unit(225, "lb"),
  46199. name: "Front",
  46200. image: {
  46201. source: "./media/characters/brooke/front.svg",
  46202. extra: 1050/1010,
  46203. bottom: 66/1116
  46204. }
  46205. },
  46206. back: {
  46207. height: math.unit(6, "feet"),
  46208. weight: math.unit(225, "lb"),
  46209. name: "Back",
  46210. image: {
  46211. source: "./media/characters/brooke/back.svg",
  46212. extra: 1053/1013,
  46213. bottom: 41/1094
  46214. }
  46215. },
  46216. dressed: {
  46217. height: math.unit(6, "feet"),
  46218. weight: math.unit(225, "lb"),
  46219. name: "Dressed",
  46220. image: {
  46221. source: "./media/characters/brooke/dressed.svg",
  46222. extra: 1050/1010,
  46223. bottom: 66/1116
  46224. }
  46225. },
  46226. },
  46227. [
  46228. {
  46229. name: "Canon Height",
  46230. height: math.unit(500, "miles"),
  46231. default: true
  46232. },
  46233. ]
  46234. ))
  46235. characterMakers.push(() => makeCharacter(
  46236. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46237. {
  46238. front: {
  46239. height: math.unit(6 + 2/12, "feet"),
  46240. weight: math.unit(210, "lb"),
  46241. name: "Front",
  46242. image: {
  46243. source: "./media/characters/wubs/front.svg",
  46244. extra: 1345/1325,
  46245. bottom: 70/1415
  46246. }
  46247. },
  46248. back: {
  46249. height: math.unit(6 + 2/12, "feet"),
  46250. weight: math.unit(210, "lb"),
  46251. name: "Back",
  46252. image: {
  46253. source: "./media/characters/wubs/back.svg",
  46254. extra: 1296/1275,
  46255. bottom: 58/1354
  46256. }
  46257. },
  46258. },
  46259. [
  46260. {
  46261. name: "Normal",
  46262. height: math.unit(6 + 2/12, "feet"),
  46263. default: true
  46264. },
  46265. {
  46266. name: "Macro",
  46267. height: math.unit(1000, "feet")
  46268. },
  46269. {
  46270. name: "Megamacro",
  46271. height: math.unit(1, "mile")
  46272. },
  46273. ]
  46274. ))
  46275. characterMakers.push(() => makeCharacter(
  46276. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46277. {
  46278. front: {
  46279. height: math.unit(4, "feet"),
  46280. weight: math.unit(120, "lb"),
  46281. name: "Front",
  46282. image: {
  46283. source: "./media/characters/blue/front.svg",
  46284. extra: 1636/1525,
  46285. bottom: 43/1679
  46286. }
  46287. },
  46288. back: {
  46289. height: math.unit(4, "feet"),
  46290. weight: math.unit(120, "lb"),
  46291. name: "Back",
  46292. image: {
  46293. source: "./media/characters/blue/back.svg",
  46294. extra: 1660/1560,
  46295. bottom: 57/1717
  46296. }
  46297. },
  46298. paws: {
  46299. height: math.unit(0.826, "feet"),
  46300. name: "Paws",
  46301. image: {
  46302. source: "./media/characters/blue/paws.svg"
  46303. }
  46304. },
  46305. },
  46306. [
  46307. {
  46308. name: "Micro",
  46309. height: math.unit(3, "inches")
  46310. },
  46311. {
  46312. name: "Normal",
  46313. height: math.unit(4, "feet"),
  46314. default: true
  46315. },
  46316. {
  46317. name: "Femenine Form",
  46318. height: math.unit(14, "feet")
  46319. },
  46320. {
  46321. name: "Werebat Form",
  46322. height: math.unit(18, "feet")
  46323. },
  46324. ]
  46325. ))
  46326. characterMakers.push(() => makeCharacter(
  46327. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46328. {
  46329. female: {
  46330. height: math.unit(7 + 4/12, "feet"),
  46331. weight: math.unit(243, "lb"),
  46332. name: "Female",
  46333. image: {
  46334. source: "./media/characters/kaya/female.svg",
  46335. extra: 975/898,
  46336. bottom: 34/1009
  46337. }
  46338. },
  46339. herm: {
  46340. height: math.unit(7 + 4/12, "feet"),
  46341. weight: math.unit(243, "lb"),
  46342. name: "Herm",
  46343. image: {
  46344. source: "./media/characters/kaya/herm.svg",
  46345. extra: 975/898,
  46346. bottom: 34/1009
  46347. }
  46348. },
  46349. },
  46350. [
  46351. {
  46352. name: "Normal",
  46353. height: math.unit(7 + 4/12, "feet"),
  46354. default: true
  46355. },
  46356. ]
  46357. ))
  46358. characterMakers.push(() => makeCharacter(
  46359. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46360. {
  46361. female: {
  46362. height: math.unit(9 + 4/12, "feet"),
  46363. weight: math.unit(398, "lb"),
  46364. name: "Female",
  46365. image: {
  46366. source: "./media/characters/kassandra/female.svg",
  46367. extra: 908/839,
  46368. bottom: 61/969
  46369. }
  46370. },
  46371. intersex: {
  46372. height: math.unit(9 + 4/12, "feet"),
  46373. weight: math.unit(398, "lb"),
  46374. name: "Intersex",
  46375. image: {
  46376. source: "./media/characters/kassandra/intersex.svg",
  46377. extra: 908/839,
  46378. bottom: 61/969
  46379. }
  46380. },
  46381. },
  46382. [
  46383. {
  46384. name: "Normal",
  46385. height: math.unit(9 + 4/12, "feet"),
  46386. default: true
  46387. },
  46388. ]
  46389. ))
  46390. characterMakers.push(() => makeCharacter(
  46391. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46392. {
  46393. front: {
  46394. height: math.unit(3, "meters"),
  46395. name: "Front",
  46396. image: {
  46397. source: "./media/characters/amy/front.svg",
  46398. extra: 1380/1343,
  46399. bottom: 70/1450
  46400. }
  46401. },
  46402. back: {
  46403. height: math.unit(3, "meters"),
  46404. name: "Back",
  46405. image: {
  46406. source: "./media/characters/amy/back.svg",
  46407. extra: 1380/1347,
  46408. bottom: 66/1446
  46409. }
  46410. },
  46411. },
  46412. [
  46413. {
  46414. name: "Normal",
  46415. height: math.unit(3, "meters"),
  46416. default: true
  46417. },
  46418. ]
  46419. ))
  46420. characterMakers.push(() => makeCharacter(
  46421. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46422. {
  46423. side: {
  46424. height: math.unit(47, "cm"),
  46425. weight: math.unit(10.8, "kg"),
  46426. name: "Side",
  46427. image: {
  46428. source: "./media/characters/alphaschakal/side.svg",
  46429. extra: 1058/568,
  46430. bottom: 62/1120
  46431. }
  46432. },
  46433. back: {
  46434. height: math.unit(78, "cm"),
  46435. weight: math.unit(10.8, "kg"),
  46436. name: "Back",
  46437. image: {
  46438. source: "./media/characters/alphaschakal/back.svg",
  46439. extra: 1102/942,
  46440. bottom: 185/1287
  46441. }
  46442. },
  46443. head: {
  46444. height: math.unit(28, "cm"),
  46445. name: "Head",
  46446. image: {
  46447. source: "./media/characters/alphaschakal/head.svg",
  46448. extra: 696/508,
  46449. bottom: 0/696
  46450. }
  46451. },
  46452. paw: {
  46453. height: math.unit(16, "cm"),
  46454. name: "Paw",
  46455. image: {
  46456. source: "./media/characters/alphaschakal/paw.svg"
  46457. }
  46458. },
  46459. },
  46460. [
  46461. {
  46462. name: "Normal",
  46463. height: math.unit(47, "cm"),
  46464. default: true
  46465. },
  46466. {
  46467. name: "Macro",
  46468. height: math.unit(340, "cm")
  46469. },
  46470. ]
  46471. ))
  46472. characterMakers.push(() => makeCharacter(
  46473. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46474. {
  46475. front: {
  46476. height: math.unit(36, "earths"),
  46477. name: "Front",
  46478. image: {
  46479. source: "./media/characters/ecobyss/front.svg",
  46480. extra: 1282/1215,
  46481. bottom: 11/1293
  46482. }
  46483. },
  46484. back: {
  46485. height: math.unit(36, "earths"),
  46486. name: "Back",
  46487. image: {
  46488. source: "./media/characters/ecobyss/back.svg",
  46489. extra: 1291/1222,
  46490. bottom: 8/1299
  46491. }
  46492. },
  46493. },
  46494. [
  46495. {
  46496. name: "Normal",
  46497. height: math.unit(36, "earths"),
  46498. default: true
  46499. },
  46500. ]
  46501. ))
  46502. characterMakers.push(() => makeCharacter(
  46503. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46504. {
  46505. front: {
  46506. height: math.unit(12, "feet"),
  46507. name: "Front",
  46508. image: {
  46509. source: "./media/characters/vasuk/front.svg",
  46510. extra: 1326/1207,
  46511. bottom: 64/1390
  46512. }
  46513. },
  46514. },
  46515. [
  46516. {
  46517. name: "Normal",
  46518. height: math.unit(12, "feet"),
  46519. default: true
  46520. },
  46521. ]
  46522. ))
  46523. characterMakers.push(() => makeCharacter(
  46524. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  46525. {
  46526. side: {
  46527. height: math.unit(100, "feet"),
  46528. name: "Side",
  46529. image: {
  46530. source: "./media/characters/linneaus/side.svg",
  46531. extra: 987/807,
  46532. bottom: 47/1034
  46533. }
  46534. },
  46535. },
  46536. [
  46537. {
  46538. name: "Macro",
  46539. height: math.unit(100, "feet"),
  46540. default: true
  46541. },
  46542. ]
  46543. ))
  46544. characterMakers.push(() => makeCharacter(
  46545. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  46546. {
  46547. front: {
  46548. height: math.unit(8, "feet"),
  46549. weight: math.unit(1200, "lb"),
  46550. name: "Front",
  46551. image: {
  46552. source: "./media/characters/nyterious-daligdig/front.svg",
  46553. extra: 1284/1094,
  46554. bottom: 84/1368
  46555. }
  46556. },
  46557. back: {
  46558. height: math.unit(8, "feet"),
  46559. weight: math.unit(1200, "lb"),
  46560. name: "Back",
  46561. image: {
  46562. source: "./media/characters/nyterious-daligdig/back.svg",
  46563. extra: 1301/1121,
  46564. bottom: 129/1430
  46565. }
  46566. },
  46567. mouth: {
  46568. height: math.unit(1.464, "feet"),
  46569. name: "Mouth",
  46570. image: {
  46571. source: "./media/characters/nyterious-daligdig/mouth.svg"
  46572. }
  46573. },
  46574. },
  46575. [
  46576. {
  46577. name: "Small",
  46578. height: math.unit(8, "feet"),
  46579. default: true
  46580. },
  46581. {
  46582. name: "Normal",
  46583. height: math.unit(15, "feet")
  46584. },
  46585. {
  46586. name: "Macro",
  46587. height: math.unit(90, "feet")
  46588. },
  46589. ]
  46590. ))
  46591. characterMakers.push(() => makeCharacter(
  46592. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  46593. {
  46594. front: {
  46595. height: math.unit(7 + 4/12, "feet"),
  46596. weight: math.unit(252, "lb"),
  46597. name: "Front",
  46598. image: {
  46599. source: "./media/characters/bandel/front.svg",
  46600. extra: 1946/1775,
  46601. bottom: 26/1972
  46602. }
  46603. },
  46604. back: {
  46605. height: math.unit(7 + 4/12, "feet"),
  46606. weight: math.unit(252, "lb"),
  46607. name: "Back",
  46608. image: {
  46609. source: "./media/characters/bandel/back.svg",
  46610. extra: 1940/1770,
  46611. bottom: 25/1965
  46612. }
  46613. },
  46614. maw: {
  46615. height: math.unit(2.15, "feet"),
  46616. name: "Maw",
  46617. image: {
  46618. source: "./media/characters/bandel/maw.svg"
  46619. }
  46620. },
  46621. stomach: {
  46622. height: math.unit(1.95, "feet"),
  46623. name: "Stomach",
  46624. image: {
  46625. source: "./media/characters/bandel/stomach.svg"
  46626. }
  46627. },
  46628. },
  46629. [
  46630. {
  46631. name: "Normal",
  46632. height: math.unit(7 + 4/12, "feet"),
  46633. default: true
  46634. },
  46635. ]
  46636. ))
  46637. characterMakers.push(() => makeCharacter(
  46638. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  46639. {
  46640. front: {
  46641. height: math.unit(10 + 5/12, "feet"),
  46642. weight: math.unit(773.5, "kg"),
  46643. name: "Front",
  46644. image: {
  46645. source: "./media/characters/zed/front.svg",
  46646. extra: 987/941,
  46647. bottom: 52/1039
  46648. }
  46649. },
  46650. },
  46651. [
  46652. {
  46653. name: "Short",
  46654. height: math.unit(5 + 4/12, "feet")
  46655. },
  46656. {
  46657. name: "Average",
  46658. height: math.unit(10 + 5/12, "feet"),
  46659. default: true
  46660. },
  46661. {
  46662. name: "Mini-Macro",
  46663. height: math.unit(24 + 9/12, "feet")
  46664. },
  46665. {
  46666. name: "Macro",
  46667. height: math.unit(249, "feet")
  46668. },
  46669. {
  46670. name: "Mega-Macro",
  46671. height: math.unit(12490, "feet")
  46672. },
  46673. {
  46674. name: "Giga-Macro",
  46675. height: math.unit(24.9, "miles")
  46676. },
  46677. {
  46678. name: "Tera-Macro",
  46679. height: math.unit(24900, "miles")
  46680. },
  46681. {
  46682. name: "Cosmic Scale",
  46683. height: math.unit(38.9, "lightyears")
  46684. },
  46685. {
  46686. name: "Universal Scale",
  46687. height: math.unit(138e12, "lightyears")
  46688. },
  46689. ]
  46690. ))
  46691. characterMakers.push(() => makeCharacter(
  46692. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  46693. {
  46694. front: {
  46695. height: math.unit(1561, "inches"),
  46696. name: "Front",
  46697. image: {
  46698. source: "./media/characters/ivan/front.svg",
  46699. extra: 1126/1071,
  46700. bottom: 26/1152
  46701. }
  46702. },
  46703. back: {
  46704. height: math.unit(1561, "inches"),
  46705. name: "Back",
  46706. image: {
  46707. source: "./media/characters/ivan/back.svg",
  46708. extra: 1134/1079,
  46709. bottom: 30/1164
  46710. }
  46711. },
  46712. },
  46713. [
  46714. {
  46715. name: "Normal",
  46716. height: math.unit(1561, "inches"),
  46717. default: true
  46718. },
  46719. ]
  46720. ))
  46721. characterMakers.push(() => makeCharacter(
  46722. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  46723. {
  46724. front: {
  46725. height: math.unit(5 + 7/12, "feet"),
  46726. weight: math.unit(150, "lb"),
  46727. name: "Front",
  46728. image: {
  46729. source: "./media/characters/robin-arctic-hare/front.svg",
  46730. extra: 1148/974,
  46731. bottom: 20/1168
  46732. }
  46733. },
  46734. },
  46735. [
  46736. {
  46737. name: "Normal",
  46738. height: math.unit(5 + 7/12, "feet"),
  46739. default: true
  46740. },
  46741. ]
  46742. ))
  46743. characterMakers.push(() => makeCharacter(
  46744. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  46745. {
  46746. side: {
  46747. height: math.unit(5, "feet"),
  46748. name: "Side",
  46749. image: {
  46750. source: "./media/characters/birch/side.svg",
  46751. extra: 985/796,
  46752. bottom: 111/1096
  46753. }
  46754. },
  46755. },
  46756. [
  46757. {
  46758. name: "Normal",
  46759. height: math.unit(5, "feet"),
  46760. default: true
  46761. },
  46762. ]
  46763. ))
  46764. characterMakers.push(() => makeCharacter(
  46765. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  46766. {
  46767. front: {
  46768. height: math.unit(4, "feet"),
  46769. name: "Front",
  46770. image: {
  46771. source: "./media/characters/rasp/front.svg",
  46772. extra: 561/478,
  46773. bottom: 74/635
  46774. }
  46775. },
  46776. },
  46777. [
  46778. {
  46779. name: "Normal",
  46780. height: math.unit(4, "feet"),
  46781. default: true
  46782. },
  46783. ]
  46784. ))
  46785. characterMakers.push(() => makeCharacter(
  46786. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  46787. {
  46788. front: {
  46789. height: math.unit(4 + 6/12, "feet"),
  46790. name: "Front",
  46791. image: {
  46792. source: "./media/characters/agatha/front.svg",
  46793. extra: 947/933,
  46794. bottom: 42/989
  46795. }
  46796. },
  46797. back: {
  46798. height: math.unit(4 + 6/12, "feet"),
  46799. name: "Back",
  46800. image: {
  46801. source: "./media/characters/agatha/back.svg",
  46802. extra: 935/922,
  46803. bottom: 48/983
  46804. }
  46805. },
  46806. },
  46807. [
  46808. {
  46809. name: "Normal",
  46810. height: math.unit(4 + 6 /12, "feet"),
  46811. default: true
  46812. },
  46813. {
  46814. name: "Max Size",
  46815. height: math.unit(500, "feet")
  46816. },
  46817. ]
  46818. ))
  46819. characterMakers.push(() => makeCharacter(
  46820. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  46821. {
  46822. side: {
  46823. height: math.unit(30, "feet"),
  46824. name: "Side",
  46825. image: {
  46826. source: "./media/characters/roggy/side.svg",
  46827. extra: 909/643,
  46828. bottom: 63/972
  46829. }
  46830. },
  46831. lounging: {
  46832. height: math.unit(20, "feet"),
  46833. name: "Lounging",
  46834. image: {
  46835. source: "./media/characters/roggy/lounging.svg",
  46836. extra: 643/479,
  46837. bottom: 145/788
  46838. }
  46839. },
  46840. handpaw: {
  46841. height: math.unit(13.1, "feet"),
  46842. name: "Handpaw",
  46843. image: {
  46844. source: "./media/characters/roggy/handpaw.svg"
  46845. }
  46846. },
  46847. footpaw: {
  46848. height: math.unit(15.8, "feet"),
  46849. name: "Footpaw",
  46850. image: {
  46851. source: "./media/characters/roggy/footpaw.svg"
  46852. }
  46853. },
  46854. },
  46855. [
  46856. {
  46857. name: "Menacing",
  46858. height: math.unit(30, "feet"),
  46859. default: true
  46860. },
  46861. ]
  46862. ))
  46863. characterMakers.push(() => makeCharacter(
  46864. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  46865. {
  46866. front: {
  46867. height: math.unit(5 + 7/12, "feet"),
  46868. weight: math.unit(135, "lb"),
  46869. name: "Front",
  46870. image: {
  46871. source: "./media/characters/naomi/front.svg",
  46872. extra: 1209/1154,
  46873. bottom: 129/1338
  46874. }
  46875. },
  46876. back: {
  46877. height: math.unit(5 + 7/12, "feet"),
  46878. weight: math.unit(135, "lb"),
  46879. name: "Back",
  46880. image: {
  46881. source: "./media/characters/naomi/back.svg",
  46882. extra: 1252/1190,
  46883. bottom: 23/1275
  46884. }
  46885. },
  46886. },
  46887. [
  46888. {
  46889. name: "Normal",
  46890. height: math.unit(5 + 7 /12, "feet"),
  46891. default: true
  46892. },
  46893. ]
  46894. ))
  46895. characterMakers.push(() => makeCharacter(
  46896. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  46897. {
  46898. side: {
  46899. height: math.unit(35, "meters"),
  46900. name: "Side",
  46901. image: {
  46902. source: "./media/characters/kimpi/side.svg",
  46903. extra: 419/382,
  46904. bottom: 63/482
  46905. }
  46906. },
  46907. hand: {
  46908. height: math.unit(8.96, "meters"),
  46909. name: "Hand",
  46910. image: {
  46911. source: "./media/characters/kimpi/hand.svg"
  46912. }
  46913. },
  46914. },
  46915. [
  46916. {
  46917. name: "Normal",
  46918. height: math.unit(35, "meters"),
  46919. default: true
  46920. },
  46921. ]
  46922. ))
  46923. characterMakers.push(() => makeCharacter(
  46924. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  46925. {
  46926. front: {
  46927. height: math.unit(4 + 4/12, "feet"),
  46928. name: "Front",
  46929. image: {
  46930. source: "./media/characters/pepper-purrloin/front.svg",
  46931. extra: 1141/1024,
  46932. bottom: 21/1162
  46933. }
  46934. },
  46935. },
  46936. [
  46937. {
  46938. name: "Normal",
  46939. height: math.unit(4 + 4/12, "feet"),
  46940. default: true
  46941. },
  46942. ]
  46943. ))
  46944. characterMakers.push(() => makeCharacter(
  46945. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  46946. {
  46947. front: {
  46948. height: math.unit(6 + 2/12, "feet"),
  46949. name: "Front",
  46950. image: {
  46951. source: "./media/characters/raphael/front.svg",
  46952. extra: 1101/962,
  46953. bottom: 59/1160
  46954. }
  46955. },
  46956. },
  46957. [
  46958. {
  46959. name: "Normal",
  46960. height: math.unit(6 + 2/12, "feet"),
  46961. default: true
  46962. },
  46963. ]
  46964. ))
  46965. characterMakers.push(() => makeCharacter(
  46966. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  46967. {
  46968. front: {
  46969. height: math.unit(6, "feet"),
  46970. weight: math.unit(150, "lb"),
  46971. name: "Front",
  46972. image: {
  46973. source: "./media/characters/victor-williams/front.svg",
  46974. extra: 1894/1825,
  46975. bottom: 67/1961
  46976. }
  46977. },
  46978. },
  46979. [
  46980. {
  46981. name: "Normal",
  46982. height: math.unit(6, "feet"),
  46983. default: true
  46984. },
  46985. ]
  46986. ))
  46987. characterMakers.push(() => makeCharacter(
  46988. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  46989. {
  46990. front: {
  46991. height: math.unit(5 + 8/12, "feet"),
  46992. weight: math.unit(150, "lb"),
  46993. name: "Front",
  46994. image: {
  46995. source: "./media/characters/rachel/front.svg",
  46996. extra: 1902/1787,
  46997. bottom: 46/1948
  46998. }
  46999. },
  47000. },
  47001. [
  47002. {
  47003. name: "Base Height",
  47004. height: math.unit(5 + 8/12, "feet"),
  47005. default: true
  47006. },
  47007. {
  47008. name: "Macro",
  47009. height: math.unit(200, "feet")
  47010. },
  47011. {
  47012. name: "Mega Macro",
  47013. height: math.unit(1, "mile")
  47014. },
  47015. {
  47016. name: "Giga Macro",
  47017. height: math.unit(1500, "miles")
  47018. },
  47019. {
  47020. name: "Tera Macro",
  47021. height: math.unit(8000, "miles")
  47022. },
  47023. {
  47024. name: "Tera Macro+",
  47025. height: math.unit(2e5, "miles")
  47026. },
  47027. ]
  47028. ))
  47029. characterMakers.push(() => makeCharacter(
  47030. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47031. {
  47032. front: {
  47033. height: math.unit(6.5, "feet"),
  47034. name: "Front",
  47035. image: {
  47036. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47037. extra: 860/819,
  47038. bottom: 307/1167
  47039. }
  47040. },
  47041. back: {
  47042. height: math.unit(6.5, "feet"),
  47043. name: "Back",
  47044. image: {
  47045. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47046. extra: 880/837,
  47047. bottom: 395/1275
  47048. }
  47049. },
  47050. sleeping: {
  47051. height: math.unit(2.79, "feet"),
  47052. name: "Sleeping",
  47053. image: {
  47054. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47055. extra: 465/383,
  47056. bottom: 263/728
  47057. }
  47058. },
  47059. maw: {
  47060. height: math.unit(2.52, "feet"),
  47061. name: "Maw",
  47062. image: {
  47063. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47064. }
  47065. },
  47066. },
  47067. [
  47068. {
  47069. name: "Normal",
  47070. height: math.unit(6.5, "feet"),
  47071. default: true
  47072. },
  47073. ]
  47074. ))
  47075. characterMakers.push(() => makeCharacter(
  47076. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47077. {
  47078. front: {
  47079. height: math.unit(5, "feet"),
  47080. name: "Front",
  47081. image: {
  47082. source: "./media/characters/nova-nerium/front.svg",
  47083. extra: 1548/1392,
  47084. bottom: 374/1922
  47085. }
  47086. },
  47087. back: {
  47088. height: math.unit(5, "feet"),
  47089. name: "Back",
  47090. image: {
  47091. source: "./media/characters/nova-nerium/back.svg",
  47092. extra: 1658/1468,
  47093. bottom: 257/1915
  47094. }
  47095. },
  47096. },
  47097. [
  47098. {
  47099. name: "Normal",
  47100. height: math.unit(5, "feet"),
  47101. default: true
  47102. },
  47103. ]
  47104. ))
  47105. characterMakers.push(() => makeCharacter(
  47106. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47107. {
  47108. front: {
  47109. height: math.unit(5 + 4/12, "feet"),
  47110. name: "Front",
  47111. image: {
  47112. source: "./media/characters/ashe-pyriph/front.svg",
  47113. extra: 1935/1747,
  47114. bottom: 60/1995
  47115. }
  47116. },
  47117. },
  47118. [
  47119. {
  47120. name: "Normal",
  47121. height: math.unit(5 + 4/12, "feet"),
  47122. default: true
  47123. },
  47124. ]
  47125. ))
  47126. characterMakers.push(() => makeCharacter(
  47127. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47128. {
  47129. front: {
  47130. height: math.unit(8.7, "feet"),
  47131. name: "Front",
  47132. image: {
  47133. source: "./media/characters/flicker-wisp/front.svg",
  47134. extra: 1835/1613,
  47135. bottom: 449/2284
  47136. }
  47137. },
  47138. side: {
  47139. height: math.unit(8.7, "feet"),
  47140. name: "Side",
  47141. image: {
  47142. source: "./media/characters/flicker-wisp/side.svg",
  47143. extra: 1841/1642,
  47144. bottom: 336/2177
  47145. },
  47146. default: true
  47147. },
  47148. maw: {
  47149. height: math.unit(3.35, "feet"),
  47150. name: "Maw",
  47151. image: {
  47152. source: "./media/characters/flicker-wisp/maw.svg",
  47153. extra: 2338/1506,
  47154. bottom: 0/2338
  47155. }
  47156. },
  47157. ovipositor: {
  47158. height: math.unit(4.95, "feet"),
  47159. name: "Ovipositor",
  47160. image: {
  47161. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47162. }
  47163. },
  47164. egg: {
  47165. height: math.unit(0.385, "feet"),
  47166. weight: math.unit(2, "lb"),
  47167. name: "Egg",
  47168. image: {
  47169. source: "./media/characters/flicker-wisp/egg.svg"
  47170. }
  47171. },
  47172. },
  47173. [
  47174. {
  47175. name: "Normal",
  47176. height: math.unit(8.7, "feet"),
  47177. default: true
  47178. },
  47179. ]
  47180. ))
  47181. //characters
  47182. function makeCharacters() {
  47183. const results = [];
  47184. characterMakers.forEach(character => {
  47185. results.push(character());
  47186. });
  47187. return results;
  47188. }