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.
 
 
 

46014 líneas
1.1 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  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. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "feliform"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "feliform"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf", "werebeast"]
  569. },
  570. "werebeast": {
  571. name: "Werebeast",
  572. parents: ["monster"]
  573. },
  574. "meerkat": {
  575. name: "Meerkat",
  576. parents: ["mammal"]
  577. },
  578. "human": {
  579. name: "Human",
  580. parents: ["mammal"]
  581. },
  582. "geth": {
  583. name: "Geth",
  584. parents: ["android"]
  585. },
  586. "husky": {
  587. name: "Husky",
  588. parents: ["dog"]
  589. },
  590. "long-eared-bat": {
  591. name: "Long Eared Bat",
  592. parents: ["bat"]
  593. },
  594. "lizard": {
  595. name: "Lizard",
  596. parents: ["reptile"]
  597. },
  598. "salamander": {
  599. name: "Salamander",
  600. parents: ["lizard"]
  601. },
  602. "chameleon": {
  603. name: "Chameleon",
  604. parents: ["lizard"]
  605. },
  606. "gecko": {
  607. name: "Gecko",
  608. parents: ["lizard"]
  609. },
  610. "kobold": {
  611. name: "Kobold",
  612. parents: ["reptile"]
  613. },
  614. "charizard": {
  615. name: "Charizard",
  616. parents: ["pokemon"]
  617. },
  618. "lugia": {
  619. name: "Lugia",
  620. parents: ["pokemon"]
  621. },
  622. "cerberus": {
  623. name: "Cerberus",
  624. parents: ["dog"]
  625. },
  626. "tyrantrum": {
  627. name: "Tyrantrum",
  628. parents: ["pokemon"]
  629. },
  630. "lemur": {
  631. name: "Lemur",
  632. parents: ["mammal"]
  633. },
  634. "kelpie": {
  635. name: "Kelpie",
  636. parents: ["horse", "monster"]
  637. },
  638. "labrador": {
  639. name: "Labrador",
  640. parents: ["dog"]
  641. },
  642. "sylveon": {
  643. name: "Sylveon",
  644. parents: ["eeveelution"]
  645. },
  646. "eeveelution": {
  647. name: "Eeveelution",
  648. parents: ["pokemon"]
  649. },
  650. "polar-bear": {
  651. name: "Polar Bear",
  652. parents: ["bear"]
  653. },
  654. "bear": {
  655. name: "Bear",
  656. parents: ["mammal"]
  657. },
  658. "absol": {
  659. name: "Absol",
  660. parents: ["pokemon"]
  661. },
  662. "wolver": {
  663. name: "Wolver",
  664. parents: ["mammal"]
  665. },
  666. "rottweiler": {
  667. name: "Rottweiler",
  668. parents: ["dog"]
  669. },
  670. "zebra": {
  671. name: "Zebra",
  672. parents: ["horse"]
  673. },
  674. "yoshi": {
  675. name: "Yoshi",
  676. parents: ["lizard"]
  677. },
  678. "lynx": {
  679. name: "Lynx",
  680. parents: ["cat"]
  681. },
  682. "unknown": {
  683. name: "Unknown",
  684. parents: []
  685. },
  686. "thylacine": {
  687. name: "Thylacine",
  688. parents: ["mammal"]
  689. },
  690. "gabumon": {
  691. name: "Gabumon",
  692. parents: ["digimon"]
  693. },
  694. "border-collie": {
  695. name: "Border Collie",
  696. parents: ["dog"]
  697. },
  698. "imp": {
  699. name: "Imp",
  700. parents: ["demon"]
  701. },
  702. "kangaroo": {
  703. name: "Kangaroo",
  704. parents: ["marsupial"]
  705. },
  706. "renamon": {
  707. name: "Renamon",
  708. parents: ["digimon"]
  709. },
  710. "candy-orca-dragon": {
  711. name: "Candy Orca Dragon",
  712. parents: ["fish", "dragon", "candy"]
  713. },
  714. "sabertooth-tiger": {
  715. name: "Sabertooth Tiger",
  716. parents: ["cat"]
  717. },
  718. "espurr": {
  719. name: "Espurr",
  720. parents: ["pokemon"]
  721. },
  722. "otter": {
  723. name: "Otter",
  724. parents: ["mustelid"]
  725. },
  726. "elemental": {
  727. name: "Elemental",
  728. parents: ["mammal"]
  729. },
  730. "mew": {
  731. name: "Mew",
  732. parents: ["pokemon"]
  733. },
  734. "goodra": {
  735. name: "Goodra",
  736. parents: ["pokemon"]
  737. },
  738. "fairy": {
  739. name: "Fairy",
  740. parents: ["magical"]
  741. },
  742. "typhlosion": {
  743. name: "Typhlosion",
  744. parents: ["pokemon"]
  745. },
  746. "magical": {
  747. name: "Magical",
  748. parents: []
  749. },
  750. "xenomorph": {
  751. name: "Xenomorph",
  752. parents: ["monster", "alien"]
  753. },
  754. "charr": {
  755. name: "Charr",
  756. parents: ["cat"]
  757. },
  758. "siberian-husky": {
  759. name: "Siberian Husky",
  760. parents: ["husky"]
  761. },
  762. "alligator": {
  763. name: "Alligator",
  764. parents: ["reptile"]
  765. },
  766. "bernese-mountain-dog": {
  767. name: "Bernese Mountain Dog",
  768. parents: ["dog"]
  769. },
  770. "reshiram": {
  771. name: "Reshiram",
  772. parents: ["pokemon"]
  773. },
  774. "grizzly-bear": {
  775. name: "Grizzly Bear",
  776. parents: ["bear"]
  777. },
  778. "water-monitor": {
  779. name: "Water Monitor",
  780. parents: ["lizard"]
  781. },
  782. "banchofossa": {
  783. name: "Banchofossa",
  784. parents: ["mammal"]
  785. },
  786. "kirin": {
  787. name: "Kirin",
  788. parents: ["monster"]
  789. },
  790. "quilava": {
  791. name: "Quilava",
  792. parents: ["pokemon"]
  793. },
  794. "seviper": {
  795. name: "Seviper",
  796. parents: ["pokemon"]
  797. },
  798. "flying-fox": {
  799. name: "Flying Fox",
  800. parents: ["bat"]
  801. },
  802. "keynain": {
  803. name: "Keynain",
  804. parents: ["avian"]
  805. },
  806. "lucario": {
  807. name: "Lucario",
  808. parents: ["pokemon"]
  809. },
  810. "siamese-cat": {
  811. name: "Siamese Cat",
  812. parents: ["cat"]
  813. },
  814. "spider": {
  815. name: "Spider",
  816. parents: ["insect"]
  817. },
  818. "samurott": {
  819. name: "Samurott",
  820. parents: ["pokemon"]
  821. },
  822. "megalodon": {
  823. name: "Megalodon",
  824. parents: ["shark"]
  825. },
  826. "unicorn": {
  827. name: "Unicorn",
  828. parents: ["horse"]
  829. },
  830. "greninja": {
  831. name: "Greninja",
  832. parents: ["pokemon"]
  833. },
  834. "water-dragon": {
  835. name: "Water Dragon",
  836. parents: ["dragon"]
  837. },
  838. "cross-fox": {
  839. name: "Cross Fox",
  840. parents: ["fox"]
  841. },
  842. "synth": {
  843. name: "Synth",
  844. parents: ["machine"]
  845. },
  846. "construct": {
  847. name: "Construct",
  848. parents: []
  849. },
  850. "mexican-wolf": {
  851. name: "Mexican Wolf",
  852. parents: ["wolf"]
  853. },
  854. "leopard": {
  855. name: "Leopard",
  856. parents: ["cat"]
  857. },
  858. "pig": {
  859. name: "Pig",
  860. parents: ["mammal"]
  861. },
  862. "ampharos": {
  863. name: "Ampharos",
  864. parents: ["pokemon"]
  865. },
  866. "orca": {
  867. name: "Orca",
  868. parents: ["fish"]
  869. },
  870. "lycanroc": {
  871. name: "Lycanroc",
  872. parents: ["pokemon"]
  873. },
  874. "surkanu": {
  875. name: "Surkanu",
  876. parents: ["monster"]
  877. },
  878. "seal": {
  879. name: "Seal",
  880. parents: ["mammal"]
  881. },
  882. "keldeo": {
  883. name: "Keldeo",
  884. parents: ["pokemon"]
  885. },
  886. "great-dane": {
  887. name: "Great Dane",
  888. parents: ["dog"]
  889. },
  890. "black-backed-jackal": {
  891. name: "Black Backed Jackal",
  892. parents: ["jackal"]
  893. },
  894. "sheep": {
  895. name: "Sheep",
  896. parents: ["mammal"]
  897. },
  898. "leopard-seal": {
  899. name: "Leopard Seal",
  900. parents: ["seal"]
  901. },
  902. "zoroark": {
  903. name: "Zoroark",
  904. parents: ["pokemon"]
  905. },
  906. "maned-wolf": {
  907. name: "Maned Wolf",
  908. parents: ["canine"]
  909. },
  910. "dracha": {
  911. name: "Dracha",
  912. parents: ["dragon"]
  913. },
  914. "wolxi": {
  915. name: "Wolxi",
  916. parents: ["mammal", "alien"]
  917. },
  918. "dratini": {
  919. name: "Dratini",
  920. parents: ["pokemon", "dragon"]
  921. },
  922. "skaven": {
  923. name: "Skaven",
  924. parents: ["rat"]
  925. },
  926. "mongoose": {
  927. name: "Mongoose",
  928. parents: ["mammal"]
  929. },
  930. "lopunny": {
  931. name: "Lopunny",
  932. parents: ["pokemon", "rabbit"]
  933. },
  934. "feraligatr": {
  935. name: "Feraligatr",
  936. parents: ["pokemon", "alligator"]
  937. },
  938. "houndoom": {
  939. name: "Houndoom",
  940. parents: ["pokemon", "dog"]
  941. },
  942. "protogen": {
  943. name: "Protogen",
  944. parents: ["machine"]
  945. },
  946. "saint-bernard": {
  947. name: "Saint Bernard",
  948. parents: ["dog"]
  949. },
  950. "crow": {
  951. name: "Crow",
  952. parents: ["corvid"]
  953. },
  954. "delphox": {
  955. name: "Delphox",
  956. parents: ["pokemon", "fox"]
  957. },
  958. "moose": {
  959. name: "Moose",
  960. parents: ["mammal"]
  961. },
  962. "joraxian": {
  963. name: "Joraxian",
  964. parents: ["monster", "canine", "demon"]
  965. },
  966. "nimbat": {
  967. name: "Nimbat",
  968. parents: ["mammal"]
  969. },
  970. "aardwolf": {
  971. name: "Aardwolf",
  972. parents: ["canine"]
  973. },
  974. "fluudrani": {
  975. name: "Fluudrani",
  976. parents: ["animal"]
  977. },
  978. "arcanine": {
  979. name: "Arcanine",
  980. parents: ["pokemon", "dog"]
  981. },
  982. "inteleon": {
  983. name: "Inteleon",
  984. parents: ["pokemon", "fish"]
  985. },
  986. "ninetales": {
  987. name: "Ninetales",
  988. parents: ["pokemon", "kitsune"]
  989. },
  990. "tigrex": {
  991. name: "Tigrex",
  992. parents: ["tiger"]
  993. },
  994. "zorua": {
  995. name: "Zorua",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "vulpix": {
  999. name: "Vulpix",
  1000. parents: ["pokemon", "fox"]
  1001. },
  1002. "barghest": {
  1003. name: "Barghest",
  1004. parents: ["monster"]
  1005. },
  1006. "gray-wolf": {
  1007. name: "Gray Wolf",
  1008. parents: ["wolf"]
  1009. },
  1010. "ruppells-fox": {
  1011. name: "Rüppell's Fox",
  1012. parents: ["fox"]
  1013. },
  1014. "bull-terrier": {
  1015. name: "Bull Terrier",
  1016. parents: ["dog"]
  1017. },
  1018. "european-honey-buzzard": {
  1019. name: "European Honey Buzzard",
  1020. parents: ["avian"]
  1021. },
  1022. "t-rex": {
  1023. name: "Tyrannosaurus Rex",
  1024. parents: ["dinosaur"]
  1025. },
  1026. "mactarian": {
  1027. name: "Mactarian",
  1028. parents: ["shark", "monster"]
  1029. },
  1030. "mewtwo-y": {
  1031. name: "Mewtwo Y",
  1032. parents: ["mewtwo"]
  1033. },
  1034. "mewtwo": {
  1035. name: "Mewtwo",
  1036. parents: ["pokemon"]
  1037. },
  1038. "mew": {
  1039. name: "Mew",
  1040. parents: ["pokemon"]
  1041. },
  1042. "eevee": {
  1043. name: "Eevee",
  1044. parents: ["eeveelution"]
  1045. },
  1046. "mienshao": {
  1047. name: "Mienshao",
  1048. parents: ["pokemon"]
  1049. },
  1050. "sugar-glider": {
  1051. name: "Sugar Glider",
  1052. parents: ["opossum"]
  1053. },
  1054. "spectral-bat": {
  1055. name: "Spectral Bat",
  1056. parents: ["bat"]
  1057. },
  1058. "scolipede": {
  1059. name: "Scolipede",
  1060. parents: ["pokemon", "insect"]
  1061. },
  1062. "jackalope": {
  1063. name: "Jackalope",
  1064. parents: ["rabbit", "antelope"]
  1065. },
  1066. "caracal": {
  1067. name: "Caracal",
  1068. parents: ["cat"]
  1069. },
  1070. "stoat": {
  1071. name: "Stoat",
  1072. parents: ["mammal"]
  1073. },
  1074. "african-golden-cat": {
  1075. name: "African Golden Cat",
  1076. parents: ["cat"]
  1077. },
  1078. "gigantosaurus": {
  1079. name: "Gigantosaurus",
  1080. parents: ["dinosaur"]
  1081. },
  1082. "zorgoia": {
  1083. name: "Zorgoia",
  1084. parents: ["mammal"]
  1085. },
  1086. "monitor-lizard": {
  1087. name: "Monitor Lizard",
  1088. parents: ["lizard"]
  1089. },
  1090. "ziralkia": {
  1091. name: "Ziralkia",
  1092. parents: ["mammal"]
  1093. },
  1094. "kiiasi": {
  1095. name: "Kiiasi",
  1096. parents: ["animal"]
  1097. },
  1098. "synx": {
  1099. name: "Synx",
  1100. parents: ["monster"]
  1101. },
  1102. "panther": {
  1103. name: "Panther",
  1104. parents: ["cat"]
  1105. },
  1106. "azumarill": {
  1107. name: "Azumarill",
  1108. parents: ["pokemon"]
  1109. },
  1110. "river-snaptail": {
  1111. name: "River Snaptail",
  1112. parents: ["otter", "crocodile"]
  1113. },
  1114. "great-blue-heron": {
  1115. name: "Great Blue Heron",
  1116. parents: ["avian"]
  1117. },
  1118. "smeargle": {
  1119. name: "Smeargle",
  1120. parents: ["pokemon"]
  1121. },
  1122. "vendeilen": {
  1123. name: "Vendeilen",
  1124. parents: ["monster"]
  1125. },
  1126. "ventura": {
  1127. name: "Ventura",
  1128. parents: ["canine"]
  1129. },
  1130. "clouded-leopard": {
  1131. name: "Clouded Leopard",
  1132. parents: ["leopard"]
  1133. },
  1134. "argonian": {
  1135. name: "Argonian",
  1136. parents: ["lizard"]
  1137. },
  1138. "salazzle": {
  1139. name: "Salazzle",
  1140. parents: ["pokemon", "lizard"]
  1141. },
  1142. "je-stoff-drachen": {
  1143. name: "Je-Stoff Drachen",
  1144. parents: ["dragon"]
  1145. },
  1146. "finnish-spitz-dog": {
  1147. name: "Finnish Spitz Dog",
  1148. parents: ["dog"]
  1149. },
  1150. "gray-fox": {
  1151. name: "Gray Fox",
  1152. parents: ["fox"]
  1153. },
  1154. "opossum": {
  1155. name: "opossum",
  1156. parents: ["mammal"]
  1157. },
  1158. "antelope": {
  1159. name: "Antelope",
  1160. parents: ["mammal"]
  1161. },
  1162. "weavile": {
  1163. name: "Weavile",
  1164. parents: ["pokemon"]
  1165. },
  1166. "pikachu": {
  1167. name: "Pikachu",
  1168. parents: ["pokemon", "mouse"]
  1169. },
  1170. "grovyle": {
  1171. name: "Grovyle",
  1172. parents: ["pokemon", "plant"]
  1173. },
  1174. "sthara": {
  1175. name: "Sthara",
  1176. parents: ["snow-leopard", "reptile"]
  1177. },
  1178. "star-warrior": {
  1179. name: "Star Warrior",
  1180. parents: ["magical"]
  1181. },
  1182. "dragonoid": {
  1183. name: "Dragonoid",
  1184. parents: ["dragon"]
  1185. },
  1186. "suicune": {
  1187. name: "Suicune",
  1188. parents: ["pokemon"]
  1189. },
  1190. "vole": {
  1191. name: "Vole",
  1192. parents: ["mammal"]
  1193. },
  1194. "blaziken": {
  1195. name: "Blaziken",
  1196. parents: ["pokemon", "avian"]
  1197. },
  1198. "buizel": {
  1199. name: "Buizel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "floatzel": {
  1203. name: "Floatzel",
  1204. parents: ["pokemon", "fish"]
  1205. },
  1206. "umok": {
  1207. name: "Umok",
  1208. parents: ["avian"]
  1209. },
  1210. "sea-monster": {
  1211. name: "Sea Monster",
  1212. parents: ["monster", "fish"]
  1213. },
  1214. "egyptian-vulture": {
  1215. name: "Egyptian Vulture",
  1216. parents: ["avian"]
  1217. },
  1218. "doberman": {
  1219. name: "Doberman",
  1220. parents: ["dog"]
  1221. },
  1222. "zangoose": {
  1223. name: "Zangoose",
  1224. parents: ["pokemon", "mongoose"]
  1225. },
  1226. "mongoose": {
  1227. name: "Mongoose",
  1228. parents: ["mammal"]
  1229. },
  1230. "wickerbeast": {
  1231. name: "Wickerbeast",
  1232. parents: ["monster"]
  1233. },
  1234. "zenari": {
  1235. name: "Zenari",
  1236. parents: ["lizard"]
  1237. },
  1238. "plant": {
  1239. name: "Plant",
  1240. parents: []
  1241. },
  1242. "raskatox": {
  1243. name: "Raskatox",
  1244. parents: ["raccoon", "skunk", "cat", "fox"]
  1245. },
  1246. "mikromare": {
  1247. name: "mikromare",
  1248. parents: ["alien"]
  1249. },
  1250. "alien": {
  1251. name: "Alien",
  1252. parents: ["animal"]
  1253. },
  1254. "deity": {
  1255. name: "Deity",
  1256. parents: []
  1257. },
  1258. "skarlan": {
  1259. name: "Skarlan",
  1260. parents: ["slug", "dragon"]
  1261. },
  1262. "slug": {
  1263. name: "Slug",
  1264. parents: ["mollusk"]
  1265. },
  1266. "mollusk": {
  1267. name: "Mollusk",
  1268. parents: ["animal"]
  1269. },
  1270. "chimera": {
  1271. name: "Chimera",
  1272. parents: ["monster"]
  1273. },
  1274. "gestalt": {
  1275. name: "Gestalt",
  1276. parents: ["construct"]
  1277. },
  1278. "mimic": {
  1279. name: "Mimic",
  1280. parents: ["monster"]
  1281. },
  1282. "calico-rat": {
  1283. name: "Calico Rat",
  1284. parents: ["rat"]
  1285. },
  1286. "panda": {
  1287. name: "Panda",
  1288. parents: ["mammal"]
  1289. },
  1290. "oni": {
  1291. name: "Oni",
  1292. parents: ["monster"]
  1293. },
  1294. "pegasus": {
  1295. name: "Pegasus",
  1296. parents: ["horse"]
  1297. },
  1298. "vulpera": {
  1299. name: "Vulpera",
  1300. parents: ["fennec-fox"]
  1301. },
  1302. "ceratosaurus": {
  1303. name: "Ceratosaurus",
  1304. parents: ["dinosaur"]
  1305. },
  1306. "nykur": {
  1307. name: "Nykur",
  1308. parents: ["horse", "monster"]
  1309. },
  1310. "giraffe": {
  1311. name: "Giraffe",
  1312. parents: ["mammal"]
  1313. },
  1314. "tauren": {
  1315. name: "Tauren",
  1316. parents: ["cow"]
  1317. },
  1318. "draconi": {
  1319. name: "Draconi",
  1320. parents: ["alien", "cat", "cyborg"]
  1321. },
  1322. "dire-wolf": {
  1323. name: "Dire Wolf",
  1324. parents: ["wolf"]
  1325. },
  1326. "ferromorph": {
  1327. name: "Ferromorph",
  1328. parents: ["construct"]
  1329. },
  1330. "meowth": {
  1331. name: "Meowth",
  1332. parents: ["cat", "pokemon"]
  1333. },
  1334. "pavodragon": {
  1335. name: "Pavodragon",
  1336. parents: ["dragon"]
  1337. },
  1338. "aaltranae": {
  1339. name: "Aaltranae",
  1340. parents: ["dragon"]
  1341. },
  1342. "cyborg": {
  1343. name: "Cyborg",
  1344. parents: ["machine"]
  1345. },
  1346. "draptor": {
  1347. name: "Draptor",
  1348. parents: ["dragon"]
  1349. },
  1350. "candy": {
  1351. name: "Candy",
  1352. parents: []
  1353. },
  1354. "drenath": {
  1355. name: "Drenath",
  1356. parents: ["dragon", "snake", "rabbit"]
  1357. },
  1358. "coyju": {
  1359. name: "Coyju",
  1360. parents: ["coyote", "kaiju"]
  1361. },
  1362. "kaiju": {
  1363. name: "Kaiju",
  1364. parents: ["monster"]
  1365. },
  1366. "nickit": {
  1367. name: "Nickit",
  1368. parents: ["pokemon", "cat"]
  1369. },
  1370. "lopunny": {
  1371. name: "Lopunny",
  1372. parents: ["pokemon", "rabbit"]
  1373. },
  1374. "korean-jindo-dog": {
  1375. name: "Korean Jindo Dog",
  1376. parents: ["dog"]
  1377. },
  1378. "naga": {
  1379. name: "Naga",
  1380. parents: ["snake", "monster"]
  1381. },
  1382. "undead": {
  1383. name: "Undead",
  1384. parents: ["monster"]
  1385. },
  1386. "whale": {
  1387. name: "Whale",
  1388. parents: ["fish"]
  1389. },
  1390. "gelato-bee": {
  1391. name: "Gelato Bee",
  1392. parents: ["bee"]
  1393. },
  1394. "bee": {
  1395. name: "Bee",
  1396. parents: ["insect"]
  1397. },
  1398. "gardevoir": {
  1399. name: "Gardevoir",
  1400. parents: ["pokemon"]
  1401. },
  1402. "ant": {
  1403. name: "Ant",
  1404. parents: ["insect"]
  1405. },
  1406. "frog": {
  1407. name: "Frog",
  1408. parents: ["amphibian"]
  1409. },
  1410. "amphibian": {
  1411. name: "Amphibian",
  1412. parents: ["animal"]
  1413. },
  1414. "pangolin": {
  1415. name: "Pangolin",
  1416. parents: ["mammal"]
  1417. },
  1418. "uragi'viidorn": {
  1419. name: "Uragi'viidorn",
  1420. parents: ["avian", "bear"]
  1421. },
  1422. "gryphdelphais": {
  1423. name: "Gryphdelphais",
  1424. parents: ["dolphin", "gryphon"]
  1425. },
  1426. "plush": {
  1427. name: "Plush",
  1428. parents: ["construct"]
  1429. },
  1430. "draiger": {
  1431. name: "Draiger",
  1432. parents: ["dragon","tiger"]
  1433. },
  1434. "foxsky": {
  1435. name: "Foxsky",
  1436. parents: ["fox", "husky"]
  1437. },
  1438. "umbreon": {
  1439. name: "Umbreon",
  1440. parents: ["eeveelution"]
  1441. },
  1442. "slime-dragon": {
  1443. name: "Slime Dragon",
  1444. parents: ["dragon", "goo"]
  1445. },
  1446. "enderman": {
  1447. name: "Enderman",
  1448. parents: ["monster"]
  1449. },
  1450. "gremlin": {
  1451. name: "Gremlin",
  1452. parents: ["monster"]
  1453. },
  1454. "dragonsune": {
  1455. name: "Dragonsune",
  1456. parents: ["dragon", "kitsune"]
  1457. },
  1458. "ghost": {
  1459. name: "Ghost",
  1460. parents: ["supernatural"]
  1461. },
  1462. "false-vampire-bat": {
  1463. name: "False Vampire Bat",
  1464. parents: ["bat"]
  1465. },
  1466. "succubus": {
  1467. name: "Succubus",
  1468. parents: ["demon"]
  1469. },
  1470. "mia": {
  1471. name: "Mia",
  1472. parents: ["canine"]
  1473. },
  1474. "rainbow": {
  1475. name: "Rainbow",
  1476. parents: ["monster"]
  1477. },
  1478. "solgaleo": {
  1479. name: "Solgaleo",
  1480. parents: ["pokemon"]
  1481. },
  1482. "lucent-nargacuga": {
  1483. name: "Lucent Nargacuga",
  1484. parents: ["monster-hunter"]
  1485. },
  1486. "monster-hunter": {
  1487. name: "Monster Hunter",
  1488. parents: ["monster"]
  1489. },
  1490. "leviathan": {
  1491. "name": "Leviathan",
  1492. "url": "sea-monster"
  1493. },
  1494. "bull": {
  1495. name: "Bull",
  1496. parents: ["mammal"]
  1497. },
  1498. "tanuki": {
  1499. name: "Tanuki",
  1500. parents: ["monster"]
  1501. },
  1502. "chakat": {
  1503. name: "Chakat",
  1504. parents: ["cat"]
  1505. },
  1506. "hydra": {
  1507. name: "Hydra",
  1508. parents: ["monster"]
  1509. },
  1510. "zigzagoon": {
  1511. name: "Zigzagoon",
  1512. parents: ["raccoon", "pokemon"]
  1513. },
  1514. "vulture": {
  1515. name: "Vulture",
  1516. parents: ["avian"]
  1517. },
  1518. "eastern-dragon": {
  1519. name: "Eastern Dragon",
  1520. parents: ["dragon"]
  1521. },
  1522. "gryffon": {
  1523. name: "Gryffon",
  1524. parents: ["phoenix", "red-panda"]
  1525. },
  1526. "amtsvane": {
  1527. name: "Amtsvane",
  1528. parents: ["reptile"]
  1529. },
  1530. "kigavi": {
  1531. name: "Kigavi",
  1532. parents: ["avian"]
  1533. },
  1534. "turian": {
  1535. name: "Turian",
  1536. parents: ["avian"]
  1537. },
  1538. "zeraora": {
  1539. name: "Zeraora",
  1540. parents: ["pokemon"]
  1541. },
  1542. "sandshrew": {
  1543. name: "Sandshrew",
  1544. parents: ["pokemon", "pangolin"]
  1545. },
  1546. "valais-blacknose-sheep": {
  1547. name: "Valais Blacknose Sheep",
  1548. parents: ["sheep"]
  1549. },
  1550. "novaleit": {
  1551. name: "Novaleit",
  1552. parents: ["mammal"]
  1553. },
  1554. "dunnoh": {
  1555. name: "Dunnoh",
  1556. parents: ["mammal"]
  1557. },
  1558. "lunaral-dragon": {
  1559. name: "Lunaral Dragon",
  1560. parents: ["dragon"]
  1561. },
  1562. "arctic-wolf": {
  1563. name: "Arctic Wolf",
  1564. parents: ["wolf"]
  1565. },
  1566. "donkey": {
  1567. name: "Donkey",
  1568. parents: ["horse"]
  1569. },
  1570. "chinchilla": {
  1571. name: "Chinchilla",
  1572. parents: ["rodent"]
  1573. },
  1574. "felkin": {
  1575. name: "Felkin",
  1576. parents: ["dragon"]
  1577. },
  1578. "tykeriel": {
  1579. name: "Tykeriel",
  1580. parents: ["avian"]
  1581. },
  1582. "folf": {
  1583. name: "Folf",
  1584. parents: ["fox", "wolf"]
  1585. },
  1586. "pooltoy": {
  1587. name: "Pooltoy",
  1588. parents: ["construct"]
  1589. },
  1590. "demi": {
  1591. name: "Demi",
  1592. parents: ["human"]
  1593. },
  1594. "stegosaurus": {
  1595. name: "Stegosaurus",
  1596. parents: ["dinosaur"]
  1597. },
  1598. "computer-virus": {
  1599. name: "Computer Virus",
  1600. parents: ["program"]
  1601. },
  1602. "program": {
  1603. name: "Program",
  1604. parents: ["construct"]
  1605. },
  1606. "space-springhare": {
  1607. name: "Space Springhare",
  1608. parents: ["rabbit"]
  1609. },
  1610. "river-drake": {
  1611. name: "River Drake",
  1612. parents: ["dragon"]
  1613. },
  1614. "djinn": {
  1615. "name": "Djinn",
  1616. "url": "supernatural"
  1617. },
  1618. "supernatural": {
  1619. name: "Supernatural",
  1620. parents: ["monster"]
  1621. },
  1622. "grasshopper-mouse": {
  1623. name: "Grasshopper Mouse",
  1624. parents: ["mouse"]
  1625. },
  1626. "somali-cat": {
  1627. name: "Somali Cat",
  1628. parents: ["cat"]
  1629. },
  1630. "minccino": {
  1631. name: "Minccino",
  1632. parents: ["pokemon", "chinchilla"]
  1633. },
  1634. "pine-marten": {
  1635. name: "Pine Marten",
  1636. parents: ["marten"]
  1637. },
  1638. "marten": {
  1639. name: "Marten",
  1640. parents: ["mustelid"]
  1641. },
  1642. "mustelid": {
  1643. name: "Mustelid",
  1644. parents: ["mammal"]
  1645. },
  1646. "caribou": {
  1647. name: "Caribou",
  1648. parents: ["deer"]
  1649. },
  1650. "gnoll": {
  1651. name: "Gnoll",
  1652. parents: ["hyena", "monster"]
  1653. },
  1654. "peacekeeper": {
  1655. name: "Peacekeeper",
  1656. parents: ["human"]
  1657. },
  1658. "river-otter": {
  1659. name: "River Otter",
  1660. parents: ["otter"]
  1661. },
  1662. "dhole": {
  1663. name: "Dhole",
  1664. parents: ["canine"]
  1665. },
  1666. "springbok": {
  1667. name: "Springbok",
  1668. parents: ["antelope"]
  1669. },
  1670. "marsupial": {
  1671. name: "Marsupial",
  1672. parents: ["mammal"]
  1673. },
  1674. "townsend-big-eared-bat": {
  1675. name: "Townsend Big-eared Bat",
  1676. parents: ["bat"]
  1677. },
  1678. "squirrel": {
  1679. name: "Squirrel",
  1680. parents: ["rodent"]
  1681. },
  1682. "magpie": {
  1683. name: "Magpie",
  1684. parents: ["corvid"]
  1685. },
  1686. "civet": {
  1687. name: "Civet",
  1688. parents: ["feliform"]
  1689. },
  1690. "feliform": {
  1691. name: "Feliform",
  1692. parents: ["mammal"]
  1693. },
  1694. "tiefling": {
  1695. name: "Tiefling",
  1696. parents: ["devil"]
  1697. },
  1698. "devil": {
  1699. name: "Devil",
  1700. parents: ["supernatural"]
  1701. },
  1702. "sika-deer": {
  1703. name: "Sika Deer",
  1704. parents: ["deer"]
  1705. },
  1706. "vaporeon": {
  1707. name: "Vaporeon",
  1708. parents: ["eeveelution"]
  1709. },
  1710. "leafeon": {
  1711. name: "Leafeon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "jolteon": {
  1715. name: "Jolteon",
  1716. parents: ["eeveelution"]
  1717. },
  1718. "spireborn": {
  1719. name: "Spireborn",
  1720. parents: ["zorgoia"]
  1721. },
  1722. "vampire": {
  1723. name: "Vampire",
  1724. parents: ["monster"]
  1725. },
  1726. "extraplanar": {
  1727. name: "Extraplanar",
  1728. parents: []
  1729. },
  1730. "goo": {
  1731. name: "Goo",
  1732. parents: []
  1733. },
  1734. "skink": {
  1735. name: "Skink",
  1736. parents: ["lizard"]
  1737. },
  1738. "bat-eared-fox": {
  1739. name: "Bat-eared Fox",
  1740. parents: ["fox"]
  1741. },
  1742. "belted-kingfisher": {
  1743. name: "Belted Kingfisher",
  1744. parents: ["avian"]
  1745. },
  1746. "omnifalcon": {
  1747. name: "Omnifalcon",
  1748. parents: ["gryphon", "falcon", "harpy-eagle"]
  1749. },
  1750. "falcon": {
  1751. name: "Falcon",
  1752. parents: ["avian"]
  1753. },
  1754. "avali": {
  1755. name: "Avali",
  1756. parents: ["avian", "alien"]
  1757. },
  1758. "arctic-fox": {
  1759. name: "Arctic Fox",
  1760. parents: ["fox"]
  1761. },
  1762. "snow-tiger": {
  1763. name: "Snow Tiger",
  1764. parents: ["tiger"]
  1765. },
  1766. "marble-fox": {
  1767. name: "Marble Fox",
  1768. parents: ["fox"]
  1769. },
  1770. "king-wickerbeast": {
  1771. name: "King Wickerbeast",
  1772. parents: ["wickerbeast"]
  1773. },
  1774. "wickerbeast": {
  1775. name: "Wickerbeast",
  1776. parents: ["mammal"]
  1777. },
  1778. "european-polecat": {
  1779. name: "European Polecat",
  1780. parents: ["mustelid"]
  1781. },
  1782. "teshari": {
  1783. name: "Teshari",
  1784. parents: ["avian", "raptor"]
  1785. },
  1786. "alicorn": {
  1787. name: "Alicorn",
  1788. parents: ["horse"]
  1789. },
  1790. "atlas-moth": {
  1791. name: "Atlas Moth",
  1792. parents: ["moth"]
  1793. },
  1794. "owlbear": {
  1795. name: "Owlbear",
  1796. parents: ["owl", "bear", "monster"]
  1797. },
  1798. "owl": {
  1799. name: "Owl",
  1800. parents: ["avian"]
  1801. },
  1802. "silvertongue": {
  1803. name: "Silvertongue",
  1804. parents: ["reptile"]
  1805. },
  1806. }
  1807. //species
  1808. function getSpeciesInfo(speciesList) {
  1809. let result = new Set();
  1810. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1811. result.add(entry)
  1812. });
  1813. return Array.from(result);
  1814. };
  1815. function getSpeciesInfoHelper(species) {
  1816. if (!speciesData[species]) {
  1817. console.warn(species + " doesn't exist");
  1818. return [];
  1819. }
  1820. if (speciesData[species].parents) {
  1821. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1822. } else {
  1823. return [species];
  1824. }
  1825. }
  1826. characterMakers.push(() => makeCharacter(
  1827. {
  1828. name: "Fen",
  1829. species: ["crux"],
  1830. description: {
  1831. title: "Bio",
  1832. text: "Very furry. Sheds on everything."
  1833. },
  1834. tags: [
  1835. "anthro",
  1836. "goo"
  1837. ]
  1838. },
  1839. {
  1840. front: {
  1841. height: math.unit(2.2428, "meter"),
  1842. weight: math.unit(124.738, "kg"),
  1843. name: "Front",
  1844. image: {
  1845. source: "./media/characters/fen/front.svg",
  1846. extra: 1804/1562,
  1847. bottom: 205/2009
  1848. }
  1849. },
  1850. diving: {
  1851. height: math.unit(3.3, "meters"),
  1852. weight: math.unit(124.738, "kg"),
  1853. name: "Diving",
  1854. image: {
  1855. source: "./media/characters/fen/diving.svg"
  1856. }
  1857. },
  1858. maw: {
  1859. height: math.unit(2.83, "feet"),
  1860. name: "Maw",
  1861. image: {
  1862. source: "./media/characters/fen/maw.svg"
  1863. }
  1864. },
  1865. back: {
  1866. height: math.unit(2.2428, "meter"),
  1867. weight: math.unit(124.738, "kg"),
  1868. name: "Back",
  1869. image: {
  1870. source: "./media/characters/fen/back.svg",
  1871. },
  1872. info: {
  1873. description: {
  1874. mode: "append",
  1875. text: "\n\nHe is not currently looking at you."
  1876. }
  1877. }
  1878. },
  1879. full: {
  1880. height: math.unit(0.91, "meter"),
  1881. weight: math.unit(225, "kg"),
  1882. name: "Full",
  1883. image: {
  1884. source: "./media/characters/fen/full.svg",
  1885. extra: 1133/859,
  1886. bottom: 145/1278
  1887. },
  1888. info: {
  1889. description: {
  1890. mode: "append",
  1891. text: "\n\nMunch."
  1892. }
  1893. }
  1894. },
  1895. kneeling: {
  1896. height: math.unit(5.4, "feet"),
  1897. weight: math.unit(124.738, "kg"),
  1898. name: "Kneeling",
  1899. image: {
  1900. source: "./media/characters/fen/kneeling.svg",
  1901. extra: 563 / 507
  1902. }
  1903. },
  1904. goo: {
  1905. height: math.unit(2.8, "feet"),
  1906. weight: math.unit(125, "kg"),
  1907. capacity: math.unit(1, "people"),
  1908. name: "Goo",
  1909. image: {
  1910. source: "./media/characters/fen/goo.svg",
  1911. bottom: 116 / 613
  1912. }
  1913. },
  1914. lounging: {
  1915. height: math.unit(6.5, "feet"),
  1916. weight: math.unit(125, "kg"),
  1917. name: "Lounging",
  1918. image: {
  1919. source: "./media/characters/fen/lounging.svg"
  1920. }
  1921. },
  1922. },
  1923. [
  1924. {
  1925. name: "Small",
  1926. height: math.unit(2.2428, "meter")
  1927. },
  1928. {
  1929. name: "Normal",
  1930. height: math.unit(12, "feet"),
  1931. default: true,
  1932. },
  1933. {
  1934. name: "Big",
  1935. height: math.unit(20, "feet")
  1936. },
  1937. {
  1938. name: "Minimacro",
  1939. height: math.unit(40, "feet"),
  1940. info: {
  1941. description: {
  1942. mode: "append",
  1943. text: "\n\nTOO DAMN BIG"
  1944. }
  1945. }
  1946. },
  1947. {
  1948. name: "Macro",
  1949. height: math.unit(100, "feet"),
  1950. info: {
  1951. description: {
  1952. mode: "append",
  1953. text: "\n\nTOO DAMN BIG"
  1954. }
  1955. }
  1956. },
  1957. {
  1958. name: "Megamacro",
  1959. height: math.unit(2, "miles")
  1960. },
  1961. {
  1962. name: "Gigamacro",
  1963. height: math.unit(10, "earths")
  1964. },
  1965. ]
  1966. ))
  1967. characterMakers.push(() => makeCharacter(
  1968. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1969. {
  1970. front: {
  1971. height: math.unit(183, "cm"),
  1972. weight: math.unit(80, "kg"),
  1973. name: "Front",
  1974. image: {
  1975. source: "./media/characters/sofia-fluttertail/front.svg",
  1976. bottom: 0.01,
  1977. extra: 2154 / 2081
  1978. }
  1979. },
  1980. frontAlt: {
  1981. height: math.unit(183, "cm"),
  1982. weight: math.unit(80, "kg"),
  1983. name: "Front (alt)",
  1984. image: {
  1985. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1986. }
  1987. },
  1988. back: {
  1989. height: math.unit(183, "cm"),
  1990. weight: math.unit(80, "kg"),
  1991. name: "Back",
  1992. image: {
  1993. source: "./media/characters/sofia-fluttertail/back.svg"
  1994. }
  1995. },
  1996. kneeling: {
  1997. height: math.unit(125, "cm"),
  1998. weight: math.unit(80, "kg"),
  1999. name: "Kneeling",
  2000. image: {
  2001. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2002. extra: 1033 / 977,
  2003. bottom: 23.7 / 1057
  2004. }
  2005. },
  2006. maw: {
  2007. height: math.unit(183 / 5, "cm"),
  2008. name: "Maw",
  2009. image: {
  2010. source: "./media/characters/sofia-fluttertail/maw.svg"
  2011. }
  2012. },
  2013. mawcloseup: {
  2014. height: math.unit(183 / 5 * 0.41, "cm"),
  2015. name: "Maw (Closeup)",
  2016. image: {
  2017. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2018. }
  2019. },
  2020. paws: {
  2021. height: math.unit(1.17, "feet"),
  2022. name: "Paws",
  2023. image: {
  2024. source: "./media/characters/sofia-fluttertail/paws.svg",
  2025. extra: 851 / 851,
  2026. bottom: 17 / 868
  2027. }
  2028. },
  2029. },
  2030. [
  2031. {
  2032. name: "Normal",
  2033. height: math.unit(1.83, "meter")
  2034. },
  2035. {
  2036. name: "Size Thief",
  2037. height: math.unit(18, "feet")
  2038. },
  2039. {
  2040. name: "50 Foot Collie",
  2041. height: math.unit(50, "feet")
  2042. },
  2043. {
  2044. name: "Macro",
  2045. height: math.unit(96, "feet"),
  2046. default: true
  2047. },
  2048. {
  2049. name: "Megamerger",
  2050. height: math.unit(650, "feet")
  2051. },
  2052. ]
  2053. ))
  2054. characterMakers.push(() => makeCharacter(
  2055. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2056. {
  2057. front: {
  2058. height: math.unit(7, "feet"),
  2059. weight: math.unit(100, "kg"),
  2060. name: "Front",
  2061. image: {
  2062. source: "./media/characters/march/front.svg",
  2063. extra: 1992/1851,
  2064. bottom: 39/2031
  2065. }
  2066. },
  2067. foot: {
  2068. height: math.unit(0.9, "feet"),
  2069. name: "Foot",
  2070. image: {
  2071. source: "./media/characters/march/foot.svg"
  2072. }
  2073. },
  2074. },
  2075. [
  2076. {
  2077. name: "Normal",
  2078. height: math.unit(7.9, "feet")
  2079. },
  2080. {
  2081. name: "Macro",
  2082. height: math.unit(220, "meters")
  2083. },
  2084. {
  2085. name: "Megamacro",
  2086. height: math.unit(2.98, "km"),
  2087. default: true
  2088. },
  2089. {
  2090. name: "Gigamacro",
  2091. height: math.unit(15963, "km")
  2092. },
  2093. {
  2094. name: "Teramacro",
  2095. height: math.unit(2980000000, "km")
  2096. },
  2097. {
  2098. name: "Examacro",
  2099. height: math.unit(250, "parsecs")
  2100. },
  2101. ]
  2102. ))
  2103. characterMakers.push(() => makeCharacter(
  2104. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2105. {
  2106. front: {
  2107. height: math.unit(6, "feet"),
  2108. weight: math.unit(60, "kg"),
  2109. name: "Front",
  2110. image: {
  2111. source: "./media/characters/noir/front.svg",
  2112. extra: 1,
  2113. bottom: 0.032
  2114. }
  2115. },
  2116. },
  2117. [
  2118. {
  2119. name: "Normal",
  2120. height: math.unit(6.6, "feet")
  2121. },
  2122. {
  2123. name: "Macro",
  2124. height: math.unit(500, "feet")
  2125. },
  2126. {
  2127. name: "Megamacro",
  2128. height: math.unit(2.5, "km"),
  2129. default: true
  2130. },
  2131. {
  2132. name: "Gigamacro",
  2133. height: math.unit(22500, "km")
  2134. },
  2135. {
  2136. name: "Teramacro",
  2137. height: math.unit(2500000000, "km")
  2138. },
  2139. {
  2140. name: "Examacro",
  2141. height: math.unit(200, "parsecs")
  2142. },
  2143. ]
  2144. ))
  2145. characterMakers.push(() => makeCharacter(
  2146. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2147. {
  2148. front: {
  2149. height: math.unit(7, "feet"),
  2150. weight: math.unit(100, "kg"),
  2151. name: "Front",
  2152. image: {
  2153. source: "./media/characters/okuri/front.svg",
  2154. extra: 1,
  2155. bottom: 0.037
  2156. }
  2157. },
  2158. back: {
  2159. height: math.unit(7, "feet"),
  2160. weight: math.unit(100, "kg"),
  2161. name: "Back",
  2162. image: {
  2163. source: "./media/characters/okuri/back.svg",
  2164. extra: 1,
  2165. bottom: 0.007
  2166. }
  2167. },
  2168. },
  2169. [
  2170. {
  2171. name: "Megamacro",
  2172. height: math.unit(100, "miles"),
  2173. default: true
  2174. },
  2175. ]
  2176. ))
  2177. characterMakers.push(() => makeCharacter(
  2178. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2179. {
  2180. front: {
  2181. height: math.unit(7, "feet"),
  2182. weight: math.unit(100, "kg"),
  2183. name: "Front",
  2184. image: {
  2185. source: "./media/characters/manny/front.svg",
  2186. extra: 1,
  2187. bottom: 0.06
  2188. }
  2189. },
  2190. back: {
  2191. height: math.unit(7, "feet"),
  2192. weight: math.unit(100, "kg"),
  2193. name: "Back",
  2194. image: {
  2195. source: "./media/characters/manny/back.svg",
  2196. extra: 1,
  2197. bottom: 0.014
  2198. }
  2199. },
  2200. },
  2201. [
  2202. {
  2203. name: "Normal",
  2204. height: math.unit(7, "feet"),
  2205. },
  2206. {
  2207. name: "Macro",
  2208. height: math.unit(78, "feet"),
  2209. default: true
  2210. },
  2211. {
  2212. name: "Macro+",
  2213. height: math.unit(300, "meters")
  2214. },
  2215. {
  2216. name: "Macro++",
  2217. height: math.unit(2400, "meters")
  2218. },
  2219. {
  2220. name: "Megamacro",
  2221. height: math.unit(5167, "meters")
  2222. },
  2223. {
  2224. name: "Gigamacro",
  2225. height: math.unit(41769, "miles")
  2226. },
  2227. ]
  2228. ))
  2229. characterMakers.push(() => makeCharacter(
  2230. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2231. {
  2232. front: {
  2233. height: math.unit(7, "feet"),
  2234. weight: math.unit(100, "kg"),
  2235. name: "Front",
  2236. image: {
  2237. source: "./media/characters/adake/front-1.svg"
  2238. }
  2239. },
  2240. frontAlt: {
  2241. height: math.unit(7, "feet"),
  2242. weight: math.unit(100, "kg"),
  2243. name: "Front (Alt)",
  2244. image: {
  2245. source: "./media/characters/adake/front-2.svg",
  2246. extra: 1,
  2247. bottom: 0.01
  2248. }
  2249. },
  2250. back: {
  2251. height: math.unit(7, "feet"),
  2252. weight: math.unit(100, "kg"),
  2253. name: "Back",
  2254. image: {
  2255. source: "./media/characters/adake/back.svg",
  2256. }
  2257. },
  2258. kneel: {
  2259. height: math.unit(5.385, "feet"),
  2260. weight: math.unit(100, "kg"),
  2261. name: "Kneeling",
  2262. image: {
  2263. source: "./media/characters/adake/kneel.svg",
  2264. bottom: 0.052
  2265. }
  2266. },
  2267. },
  2268. [
  2269. {
  2270. name: "Normal",
  2271. height: math.unit(7, "feet"),
  2272. },
  2273. {
  2274. name: "Macro",
  2275. height: math.unit(78, "feet"),
  2276. default: true
  2277. },
  2278. {
  2279. name: "Macro+",
  2280. height: math.unit(300, "meters")
  2281. },
  2282. {
  2283. name: "Macro++",
  2284. height: math.unit(2400, "meters")
  2285. },
  2286. {
  2287. name: "Megamacro",
  2288. height: math.unit(5167, "meters")
  2289. },
  2290. {
  2291. name: "Gigamacro",
  2292. height: math.unit(41769, "miles")
  2293. },
  2294. ]
  2295. ))
  2296. characterMakers.push(() => makeCharacter(
  2297. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2298. {
  2299. front: {
  2300. height: math.unit(1.65, "meters"),
  2301. weight: math.unit(50, "kg"),
  2302. name: "Front",
  2303. image: {
  2304. source: "./media/characters/elijah/front.svg",
  2305. extra: 858 / 830,
  2306. bottom: 95.5 / 953.8559
  2307. }
  2308. },
  2309. back: {
  2310. height: math.unit(1.65, "meters"),
  2311. weight: math.unit(50, "kg"),
  2312. name: "Back",
  2313. image: {
  2314. source: "./media/characters/elijah/back.svg",
  2315. extra: 895 / 850,
  2316. bottom: 5.3 / 897.956
  2317. }
  2318. },
  2319. frontNsfw: {
  2320. height: math.unit(1.65, "meters"),
  2321. weight: math.unit(50, "kg"),
  2322. name: "Front (NSFW)",
  2323. image: {
  2324. source: "./media/characters/elijah/front-nsfw.svg",
  2325. extra: 858 / 830,
  2326. bottom: 95.5 / 953.8559
  2327. }
  2328. },
  2329. backNsfw: {
  2330. height: math.unit(1.65, "meters"),
  2331. weight: math.unit(50, "kg"),
  2332. name: "Back (NSFW)",
  2333. image: {
  2334. source: "./media/characters/elijah/back-nsfw.svg",
  2335. extra: 895 / 850,
  2336. bottom: 5.3 / 897.956
  2337. }
  2338. },
  2339. dick: {
  2340. height: math.unit(1, "feet"),
  2341. name: "Dick",
  2342. image: {
  2343. source: "./media/characters/elijah/dick.svg"
  2344. }
  2345. },
  2346. beakOpen: {
  2347. height: math.unit(1.25, "feet"),
  2348. name: "Beak (Open)",
  2349. image: {
  2350. source: "./media/characters/elijah/beak-open.svg"
  2351. }
  2352. },
  2353. beakShut: {
  2354. height: math.unit(1.25, "feet"),
  2355. name: "Beak (Shut)",
  2356. image: {
  2357. source: "./media/characters/elijah/beak-shut.svg"
  2358. }
  2359. },
  2360. footFlexing: {
  2361. height: math.unit(1.61, "feet"),
  2362. name: "Foot (Flexing)",
  2363. image: {
  2364. source: "./media/characters/elijah/foot-flexing.svg"
  2365. }
  2366. },
  2367. footStepping: {
  2368. height: math.unit(1.44, "feet"),
  2369. name: "Foot (Stepping)",
  2370. image: {
  2371. source: "./media/characters/elijah/foot-stepping.svg"
  2372. }
  2373. },
  2374. plantigradeLeg: {
  2375. height: math.unit(2.34, "feet"),
  2376. name: "Plantigrade Leg",
  2377. image: {
  2378. source: "./media/characters/elijah/plantigrade-leg.svg"
  2379. }
  2380. },
  2381. plantigradeFootLeft: {
  2382. height: math.unit(0.9, "feet"),
  2383. name: "Plantigrade Foot (Left)",
  2384. image: {
  2385. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2386. }
  2387. },
  2388. plantigradeFootRight: {
  2389. height: math.unit(0.9, "feet"),
  2390. name: "Plantigrade Foot (Right)",
  2391. image: {
  2392. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2393. }
  2394. },
  2395. },
  2396. [
  2397. {
  2398. name: "Normal",
  2399. height: math.unit(1.65, "meters")
  2400. },
  2401. {
  2402. name: "Macro",
  2403. height: math.unit(55, "meters"),
  2404. default: true
  2405. },
  2406. {
  2407. name: "Macro+",
  2408. height: math.unit(105, "meters")
  2409. },
  2410. ]
  2411. ))
  2412. characterMakers.push(() => makeCharacter(
  2413. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2414. {
  2415. front: {
  2416. height: math.unit(7 + 2/12, "feet"),
  2417. weight: math.unit(320, "kg"),
  2418. name: "Front",
  2419. image: {
  2420. source: "./media/characters/rai/front.svg",
  2421. extra: 1802/1696,
  2422. bottom: 68/1870
  2423. }
  2424. },
  2425. frontDressed: {
  2426. height: math.unit(7 + 2/12, "feet"),
  2427. weight: math.unit(320, "kg"),
  2428. name: "Front (Dressed)",
  2429. image: {
  2430. source: "./media/characters/rai/front-dressed.svg",
  2431. extra: 1802/1696,
  2432. bottom: 68/1870
  2433. }
  2434. },
  2435. side: {
  2436. height: math.unit(7 + 2/12, "feet"),
  2437. weight: math.unit(320, "kg"),
  2438. name: "Side",
  2439. image: {
  2440. source: "./media/characters/rai/side.svg",
  2441. extra: 1789/1710,
  2442. bottom: 115/1904
  2443. }
  2444. },
  2445. back: {
  2446. height: math.unit(7 + 2/12, "feet"),
  2447. weight: math.unit(320, "kg"),
  2448. name: "Back",
  2449. image: {
  2450. source: "./media/characters/rai/back.svg",
  2451. extra: 1770/1707,
  2452. bottom: 28/1798
  2453. }
  2454. },
  2455. feral: {
  2456. height: math.unit(9.5, "feet"),
  2457. weight: math.unit(640, "kg"),
  2458. name: "Feral",
  2459. image: {
  2460. source: "./media/characters/rai/feral.svg",
  2461. extra: 945/553,
  2462. bottom: 176/1121
  2463. }
  2464. },
  2465. dragon: {
  2466. height: math.unit(23, "feet"),
  2467. weight: math.unit(50000, "lb"),
  2468. name: "Dragon",
  2469. image: {
  2470. source: "./media/characters/rai/dragon.svg",
  2471. extra: 2498 / 2030,
  2472. bottom: 85.2 / 2584
  2473. }
  2474. },
  2475. maw: {
  2476. height: math.unit(1.69, "feet"),
  2477. name: "Maw",
  2478. image: {
  2479. source: "./media/characters/rai/maw.svg"
  2480. }
  2481. },
  2482. },
  2483. [
  2484. {
  2485. name: "Normal",
  2486. height: math.unit(7 + 2/12, "feet")
  2487. },
  2488. {
  2489. name: "Big",
  2490. height: math.unit(11, "feet")
  2491. },
  2492. {
  2493. name: "Macro",
  2494. height: math.unit(302, "feet"),
  2495. default: true
  2496. },
  2497. ]
  2498. ))
  2499. characterMakers.push(() => makeCharacter(
  2500. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2501. {
  2502. frontDressed: {
  2503. height: math.unit(216, "feet"),
  2504. weight: math.unit(7000000, "lb"),
  2505. name: "Front (Dressed)",
  2506. image: {
  2507. source: "./media/characters/jazzy/front-dressed.svg",
  2508. extra: 2738 / 2651,
  2509. bottom: 41.8 / 2786
  2510. }
  2511. },
  2512. backDressed: {
  2513. height: math.unit(216, "feet"),
  2514. weight: math.unit(7000000, "lb"),
  2515. name: "Back (Dressed)",
  2516. image: {
  2517. source: "./media/characters/jazzy/back-dressed.svg",
  2518. extra: 2775 / 2673,
  2519. bottom: 36.8 / 2817
  2520. }
  2521. },
  2522. front: {
  2523. height: math.unit(216, "feet"),
  2524. weight: math.unit(7000000, "lb"),
  2525. name: "Front",
  2526. image: {
  2527. source: "./media/characters/jazzy/front.svg",
  2528. extra: 2738 / 2651,
  2529. bottom: 41.8 / 2786
  2530. }
  2531. },
  2532. back: {
  2533. height: math.unit(216, "feet"),
  2534. weight: math.unit(7000000, "lb"),
  2535. name: "Back",
  2536. image: {
  2537. source: "./media/characters/jazzy/back.svg",
  2538. extra: 2775 / 2673,
  2539. bottom: 36.8 / 2817
  2540. }
  2541. },
  2542. maw: {
  2543. height: math.unit(20, "feet"),
  2544. name: "Maw",
  2545. image: {
  2546. source: "./media/characters/jazzy/maw.svg"
  2547. }
  2548. },
  2549. paws: {
  2550. height: math.unit(27.5, "feet"),
  2551. name: "Paws",
  2552. image: {
  2553. source: "./media/characters/jazzy/paws.svg"
  2554. }
  2555. },
  2556. eye: {
  2557. height: math.unit(4.4, "feet"),
  2558. name: "Eye",
  2559. image: {
  2560. source: "./media/characters/jazzy/eye.svg"
  2561. }
  2562. },
  2563. droneOffense: {
  2564. height: math.unit(9.5, "inches"),
  2565. name: "Drone (Offense)",
  2566. image: {
  2567. source: "./media/characters/jazzy/drone-offense.svg"
  2568. }
  2569. },
  2570. droneRecon: {
  2571. height: math.unit(9.5, "inches"),
  2572. name: "Drone (Recon)",
  2573. image: {
  2574. source: "./media/characters/jazzy/drone-recon.svg"
  2575. }
  2576. },
  2577. droneDefense: {
  2578. height: math.unit(9.5, "inches"),
  2579. name: "Drone (Defense)",
  2580. image: {
  2581. source: "./media/characters/jazzy/drone-defense.svg"
  2582. }
  2583. },
  2584. },
  2585. [
  2586. {
  2587. name: "Macro",
  2588. height: math.unit(216, "feet"),
  2589. default: true
  2590. },
  2591. ]
  2592. ))
  2593. characterMakers.push(() => makeCharacter(
  2594. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2595. {
  2596. front: {
  2597. height: math.unit(9 + 6/12, "feet"),
  2598. weight: math.unit(700, "lb"),
  2599. name: "Front",
  2600. image: {
  2601. source: "./media/characters/flamm/front.svg",
  2602. extra: 1751/1632,
  2603. bottom: 46/1797
  2604. }
  2605. },
  2606. buff: {
  2607. height: math.unit(9 + 6/12, "feet"),
  2608. weight: math.unit(950, "lb"),
  2609. name: "Buff",
  2610. image: {
  2611. source: "./media/characters/flamm/buff.svg",
  2612. extra: 3018/2874,
  2613. bottom: 221/3239
  2614. }
  2615. },
  2616. },
  2617. [
  2618. {
  2619. name: "Normal",
  2620. height: math.unit(9.5, "feet")
  2621. },
  2622. {
  2623. name: "Macro",
  2624. height: math.unit(200, "feet"),
  2625. default: true
  2626. },
  2627. ]
  2628. ))
  2629. characterMakers.push(() => makeCharacter(
  2630. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2631. {
  2632. front: {
  2633. height: math.unit(5 + 3/12, "feet"),
  2634. weight: math.unit(60, "kg"),
  2635. name: "Front",
  2636. image: {
  2637. source: "./media/characters/zephiro/front.svg",
  2638. extra: 2309 / 2162,
  2639. bottom: 0.069
  2640. }
  2641. },
  2642. side: {
  2643. height: math.unit(5 + 3/12, "feet"),
  2644. weight: math.unit(60, "kg"),
  2645. name: "Side",
  2646. image: {
  2647. source: "./media/characters/zephiro/side.svg",
  2648. extra: 2403 / 2279,
  2649. bottom: 0.015
  2650. }
  2651. },
  2652. back: {
  2653. height: math.unit(5 + 3/12, "feet"),
  2654. weight: math.unit(60, "kg"),
  2655. name: "Back",
  2656. image: {
  2657. source: "./media/characters/zephiro/back.svg",
  2658. extra: 2373 / 2244,
  2659. bottom: 0.013
  2660. }
  2661. },
  2662. hand: {
  2663. height: math.unit(0.68, "feet"),
  2664. name: "Hand",
  2665. image: {
  2666. source: "./media/characters/zephiro/hand.svg"
  2667. }
  2668. },
  2669. paw: {
  2670. height: math.unit(1, "feet"),
  2671. name: "Paw",
  2672. image: {
  2673. source: "./media/characters/zephiro/paw.svg"
  2674. }
  2675. },
  2676. beans: {
  2677. height: math.unit(0.93, "feet"),
  2678. name: "Beans",
  2679. image: {
  2680. source: "./media/characters/zephiro/beans.svg"
  2681. }
  2682. },
  2683. },
  2684. [
  2685. {
  2686. name: "Micro",
  2687. height: math.unit(3, "inches")
  2688. },
  2689. {
  2690. name: "Normal",
  2691. height: math.unit(5 + 3 / 12, "feet"),
  2692. default: true
  2693. },
  2694. {
  2695. name: "Macro",
  2696. height: math.unit(118, "feet")
  2697. },
  2698. ]
  2699. ))
  2700. characterMakers.push(() => makeCharacter(
  2701. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2702. {
  2703. front: {
  2704. height: math.unit(5, "feet"),
  2705. weight: math.unit(90, "kg"),
  2706. name: "Front",
  2707. image: {
  2708. source: "./media/characters/fory/front.svg",
  2709. extra: 2862 / 2674,
  2710. bottom: 180 / 3043.8
  2711. }
  2712. },
  2713. back: {
  2714. height: math.unit(5, "feet"),
  2715. weight: math.unit(90, "kg"),
  2716. name: "Back",
  2717. image: {
  2718. source: "./media/characters/fory/back.svg",
  2719. extra: 2962 / 2791,
  2720. bottom: 106 / 3071.8
  2721. }
  2722. },
  2723. foot: {
  2724. height: math.unit(2.14, "feet"),
  2725. name: "Foot",
  2726. image: {
  2727. source: "./media/characters/fory/foot.svg"
  2728. }
  2729. },
  2730. },
  2731. [
  2732. {
  2733. name: "Normal",
  2734. height: math.unit(5, "feet")
  2735. },
  2736. {
  2737. name: "Macro",
  2738. height: math.unit(50, "feet"),
  2739. default: true
  2740. },
  2741. {
  2742. name: "Megamacro",
  2743. height: math.unit(10, "miles")
  2744. },
  2745. {
  2746. name: "Gigamacro",
  2747. height: math.unit(5, "earths")
  2748. },
  2749. ]
  2750. ))
  2751. characterMakers.push(() => makeCharacter(
  2752. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2753. {
  2754. front: {
  2755. height: math.unit(7, "feet"),
  2756. weight: math.unit(90, "kg"),
  2757. name: "Front",
  2758. image: {
  2759. source: "./media/characters/kurrikage/front.svg",
  2760. extra: 1845/1733,
  2761. bottom: 119/1964
  2762. }
  2763. },
  2764. back: {
  2765. height: math.unit(7, "feet"),
  2766. weight: math.unit(90, "kg"),
  2767. name: "Back",
  2768. image: {
  2769. source: "./media/characters/kurrikage/back.svg",
  2770. extra: 1790/1677,
  2771. bottom: 61/1851
  2772. }
  2773. },
  2774. dressed: {
  2775. height: math.unit(7, "feet"),
  2776. weight: math.unit(90, "kg"),
  2777. name: "Dressed",
  2778. image: {
  2779. source: "./media/characters/kurrikage/dressed.svg",
  2780. extra: 1845/1733,
  2781. bottom: 119/1964
  2782. }
  2783. },
  2784. foot: {
  2785. height: math.unit(1.5, "feet"),
  2786. name: "Foot",
  2787. image: {
  2788. source: "./media/characters/kurrikage/foot.svg"
  2789. }
  2790. },
  2791. staff: {
  2792. height: math.unit(6.7, "feet"),
  2793. name: "Staff",
  2794. image: {
  2795. source: "./media/characters/kurrikage/staff.svg"
  2796. }
  2797. },
  2798. peek: {
  2799. height: math.unit(1.05, "feet"),
  2800. name: "Peeking",
  2801. image: {
  2802. source: "./media/characters/kurrikage/peek.svg",
  2803. bottom: 0.08
  2804. }
  2805. },
  2806. },
  2807. [
  2808. {
  2809. name: "Normal",
  2810. height: math.unit(12, "feet"),
  2811. default: true
  2812. },
  2813. {
  2814. name: "Big",
  2815. height: math.unit(20, "feet")
  2816. },
  2817. {
  2818. name: "Macro",
  2819. height: math.unit(500, "feet")
  2820. },
  2821. {
  2822. name: "Megamacro",
  2823. height: math.unit(20, "miles")
  2824. },
  2825. ]
  2826. ))
  2827. characterMakers.push(() => makeCharacter(
  2828. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2829. {
  2830. front: {
  2831. height: math.unit(6, "feet"),
  2832. weight: math.unit(75, "kg"),
  2833. name: "Front",
  2834. image: {
  2835. source: "./media/characters/shingo/front.svg",
  2836. extra: 1900/1825,
  2837. bottom: 82/1982
  2838. }
  2839. },
  2840. side: {
  2841. height: math.unit(6, "feet"),
  2842. weight: math.unit(75, "kg"),
  2843. name: "Side",
  2844. image: {
  2845. source: "./media/characters/shingo/side.svg",
  2846. extra: 1930/1865,
  2847. bottom: 16/1946
  2848. }
  2849. },
  2850. back: {
  2851. height: math.unit(6, "feet"),
  2852. weight: math.unit(75, "kg"),
  2853. name: "Back",
  2854. image: {
  2855. source: "./media/characters/shingo/back.svg",
  2856. extra: 1922/1852,
  2857. bottom: 16/1938
  2858. }
  2859. },
  2860. frontDressed: {
  2861. height: math.unit(6, "feet"),
  2862. weight: math.unit(150, "lb"),
  2863. name: "Front-dressed",
  2864. image: {
  2865. source: "./media/characters/shingo/front-dressed.svg",
  2866. extra: 1900/1825,
  2867. bottom: 82/1982
  2868. }
  2869. },
  2870. paw: {
  2871. height: math.unit(1.29, "feet"),
  2872. name: "Paw",
  2873. image: {
  2874. source: "./media/characters/shingo/paw.svg"
  2875. }
  2876. },
  2877. hand: {
  2878. height: math.unit(1.07, "feet"),
  2879. name: "Hand",
  2880. image: {
  2881. source: "./media/characters/shingo/hand.svg"
  2882. }
  2883. },
  2884. frontAlt: {
  2885. height: math.unit(6, "feet"),
  2886. weight: math.unit(75, "kg"),
  2887. name: "Front (Alt)",
  2888. image: {
  2889. source: "./media/characters/shingo/front-alt.svg",
  2890. extra: 3511 / 3338,
  2891. bottom: 0.005
  2892. }
  2893. },
  2894. frontAlt2: {
  2895. height: math.unit(6, "feet"),
  2896. weight: math.unit(75, "kg"),
  2897. name: "Front (Alt 2)",
  2898. image: {
  2899. source: "./media/characters/shingo/front-alt-2.svg",
  2900. extra: 706/681,
  2901. bottom: 11/717
  2902. }
  2903. },
  2904. pawAlt: {
  2905. height: math.unit(1, "feet"),
  2906. name: "Paw (Alt)",
  2907. image: {
  2908. source: "./media/characters/shingo/paw-alt.svg"
  2909. }
  2910. },
  2911. },
  2912. [
  2913. {
  2914. name: "Micro",
  2915. height: math.unit(4, "inches")
  2916. },
  2917. {
  2918. name: "Normal",
  2919. height: math.unit(6, "feet"),
  2920. default: true
  2921. },
  2922. {
  2923. name: "Macro",
  2924. height: math.unit(108, "feet")
  2925. },
  2926. {
  2927. name: "Macro+",
  2928. height: math.unit(1500, "feet")
  2929. },
  2930. ]
  2931. ))
  2932. characterMakers.push(() => makeCharacter(
  2933. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2934. {
  2935. side: {
  2936. height: math.unit(6, "feet"),
  2937. weight: math.unit(75, "kg"),
  2938. name: "Side",
  2939. image: {
  2940. source: "./media/characters/aigey/side.svg"
  2941. }
  2942. },
  2943. },
  2944. [
  2945. {
  2946. name: "Macro",
  2947. height: math.unit(200, "feet"),
  2948. default: true
  2949. },
  2950. {
  2951. name: "Megamacro",
  2952. height: math.unit(100, "miles")
  2953. },
  2954. ]
  2955. )
  2956. )
  2957. characterMakers.push(() => makeCharacter(
  2958. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2959. {
  2960. front: {
  2961. height: math.unit(5 + 5 / 12, "feet"),
  2962. weight: math.unit(75, "kg"),
  2963. name: "Front",
  2964. image: {
  2965. source: "./media/characters/natasha/front.svg",
  2966. extra: 859 / 824,
  2967. bottom: 23 / 879.6
  2968. }
  2969. },
  2970. frontNsfw: {
  2971. height: math.unit(5 + 5 / 12, "feet"),
  2972. weight: math.unit(75, "kg"),
  2973. name: "Front (NSFW)",
  2974. image: {
  2975. source: "./media/characters/natasha/front-nsfw.svg",
  2976. extra: 859 / 824,
  2977. bottom: 23 / 879.6
  2978. }
  2979. },
  2980. frontErect: {
  2981. height: math.unit(5 + 5 / 12, "feet"),
  2982. weight: math.unit(75, "kg"),
  2983. name: "Front (Erect)",
  2984. image: {
  2985. source: "./media/characters/natasha/front-erect.svg",
  2986. extra: 859 / 824,
  2987. bottom: 23 / 879.6
  2988. }
  2989. },
  2990. back: {
  2991. height: math.unit(5 + 5 / 12, "feet"),
  2992. weight: math.unit(75, "kg"),
  2993. name: "Back",
  2994. image: {
  2995. source: "./media/characters/natasha/back.svg",
  2996. extra: 887.9 / 852.6,
  2997. bottom: 9.7 / 896.4
  2998. }
  2999. },
  3000. backAlt: {
  3001. height: math.unit(5 + 5 / 12, "feet"),
  3002. weight: math.unit(75, "kg"),
  3003. name: "Back (Alt)",
  3004. image: {
  3005. source: "./media/characters/natasha/back-alt.svg",
  3006. extra: 1236.7 / 1192,
  3007. bottom: 22.3 / 1258.2
  3008. }
  3009. },
  3010. dick: {
  3011. height: math.unit(1.772, "feet"),
  3012. name: "Dick",
  3013. image: {
  3014. source: "./media/characters/natasha/dick.svg"
  3015. }
  3016. },
  3017. paw: {
  3018. height: math.unit(0.250, "meters"),
  3019. name: "Paw",
  3020. image: {
  3021. source: "./media/characters/natasha/paw.svg"
  3022. }
  3023. },
  3024. },
  3025. [
  3026. {
  3027. name: "Normal",
  3028. height: math.unit(5 + 5 / 12, "feet")
  3029. },
  3030. {
  3031. name: "Large",
  3032. height: math.unit(12, "feet")
  3033. },
  3034. {
  3035. name: "Macro",
  3036. height: math.unit(100, "feet"),
  3037. default: true
  3038. },
  3039. {
  3040. name: "Macro+",
  3041. height: math.unit(260, "feet")
  3042. },
  3043. {
  3044. name: "Macro++",
  3045. height: math.unit(1, "mile")
  3046. },
  3047. ]
  3048. ))
  3049. characterMakers.push(() => makeCharacter(
  3050. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3051. {
  3052. front: {
  3053. height: math.unit(6, "feet"),
  3054. weight: math.unit(75, "kg"),
  3055. name: "Front",
  3056. image: {
  3057. source: "./media/characters/malik/front.svg"
  3058. }
  3059. },
  3060. side: {
  3061. height: math.unit(6, "feet"),
  3062. weight: math.unit(75, "kg"),
  3063. name: "Side",
  3064. image: {
  3065. source: "./media/characters/malik/side.svg",
  3066. extra: 1.1539
  3067. }
  3068. },
  3069. back: {
  3070. height: math.unit(6, "feet"),
  3071. weight: math.unit(75, "kg"),
  3072. name: "Back",
  3073. image: {
  3074. source: "./media/characters/malik/back.svg"
  3075. }
  3076. },
  3077. },
  3078. [
  3079. {
  3080. name: "Macro",
  3081. height: math.unit(156, "feet"),
  3082. default: true
  3083. },
  3084. {
  3085. name: "Macro+",
  3086. height: math.unit(1188, "feet")
  3087. },
  3088. ]
  3089. ))
  3090. characterMakers.push(() => makeCharacter(
  3091. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3092. {
  3093. front: {
  3094. height: math.unit(6, "feet"),
  3095. weight: math.unit(75, "kg"),
  3096. name: "Front",
  3097. image: {
  3098. source: "./media/characters/sefer/front.svg",
  3099. extra: 848 / 659,
  3100. bottom: 28.3 / 876.442
  3101. }
  3102. },
  3103. back: {
  3104. height: math.unit(6, "feet"),
  3105. weight: math.unit(75, "kg"),
  3106. name: "Back",
  3107. image: {
  3108. source: "./media/characters/sefer/back.svg",
  3109. extra: 864 / 695,
  3110. bottom: 10 / 871
  3111. }
  3112. },
  3113. frontDressed: {
  3114. height: math.unit(6, "feet"),
  3115. weight: math.unit(75, "kg"),
  3116. name: "Front (Dressed)",
  3117. image: {
  3118. source: "./media/characters/sefer/front-dressed.svg",
  3119. extra: 839 / 653,
  3120. bottom: 37.6 / 878
  3121. }
  3122. },
  3123. },
  3124. [
  3125. {
  3126. name: "Normal",
  3127. height: math.unit(6, "feet"),
  3128. default: true
  3129. },
  3130. ]
  3131. ))
  3132. characterMakers.push(() => makeCharacter(
  3133. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3134. {
  3135. body: {
  3136. height: math.unit(2.2428, "meter"),
  3137. weight: math.unit(124.738, "kg"),
  3138. name: "Body",
  3139. image: {
  3140. extra: 1225 / 1050,
  3141. source: "./media/characters/north/front.svg"
  3142. }
  3143. }
  3144. },
  3145. [
  3146. {
  3147. name: "Micro",
  3148. height: math.unit(4, "inches")
  3149. },
  3150. {
  3151. name: "Macro",
  3152. height: math.unit(63, "meters")
  3153. },
  3154. {
  3155. name: "Megamacro",
  3156. height: math.unit(101, "miles"),
  3157. default: true
  3158. }
  3159. ]
  3160. ))
  3161. characterMakers.push(() => makeCharacter(
  3162. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3163. {
  3164. angled: {
  3165. height: math.unit(4, "meter"),
  3166. weight: math.unit(150, "kg"),
  3167. name: "Angled",
  3168. image: {
  3169. source: "./media/characters/talan/angled-sfw.svg",
  3170. bottom: 29 / 3734
  3171. }
  3172. },
  3173. angledNsfw: {
  3174. height: math.unit(4, "meter"),
  3175. weight: math.unit(150, "kg"),
  3176. name: "Angled (NSFW)",
  3177. image: {
  3178. source: "./media/characters/talan/angled-nsfw.svg",
  3179. bottom: 29 / 3734
  3180. }
  3181. },
  3182. frontNsfw: {
  3183. height: math.unit(4, "meter"),
  3184. weight: math.unit(150, "kg"),
  3185. name: "Front (NSFW)",
  3186. image: {
  3187. source: "./media/characters/talan/front-nsfw.svg",
  3188. bottom: 29 / 3734
  3189. }
  3190. },
  3191. sideNsfw: {
  3192. height: math.unit(4, "meter"),
  3193. weight: math.unit(150, "kg"),
  3194. name: "Side (NSFW)",
  3195. image: {
  3196. source: "./media/characters/talan/side-nsfw.svg",
  3197. bottom: 29 / 3734
  3198. }
  3199. },
  3200. back: {
  3201. height: math.unit(4, "meter"),
  3202. weight: math.unit(150, "kg"),
  3203. name: "Back",
  3204. image: {
  3205. source: "./media/characters/talan/back.svg"
  3206. }
  3207. },
  3208. dickBottom: {
  3209. height: math.unit(0.621, "meter"),
  3210. name: "Dick (Bottom)",
  3211. image: {
  3212. source: "./media/characters/talan/dick-bottom.svg"
  3213. }
  3214. },
  3215. dickTop: {
  3216. height: math.unit(0.621, "meter"),
  3217. name: "Dick (Top)",
  3218. image: {
  3219. source: "./media/characters/talan/dick-top.svg"
  3220. }
  3221. },
  3222. dickSide: {
  3223. height: math.unit(0.305, "meter"),
  3224. name: "Dick (Side)",
  3225. image: {
  3226. source: "./media/characters/talan/dick-side.svg"
  3227. }
  3228. },
  3229. dickFront: {
  3230. height: math.unit(0.305, "meter"),
  3231. name: "Dick (Front)",
  3232. image: {
  3233. source: "./media/characters/talan/dick-front.svg"
  3234. }
  3235. },
  3236. },
  3237. [
  3238. {
  3239. name: "Normal",
  3240. height: math.unit(4, "meters")
  3241. },
  3242. {
  3243. name: "Macro",
  3244. height: math.unit(100, "meters")
  3245. },
  3246. {
  3247. name: "Megamacro",
  3248. height: math.unit(2, "miles"),
  3249. default: true
  3250. },
  3251. {
  3252. name: "Gigamacro",
  3253. height: math.unit(5000, "miles")
  3254. },
  3255. {
  3256. name: "Teramacro",
  3257. height: math.unit(100, "parsecs")
  3258. }
  3259. ]
  3260. ))
  3261. characterMakers.push(() => makeCharacter(
  3262. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3263. {
  3264. front: {
  3265. height: math.unit(2, "meter"),
  3266. weight: math.unit(90, "kg"),
  3267. name: "Front",
  3268. image: {
  3269. source: "./media/characters/gael'rathus/front.svg"
  3270. }
  3271. },
  3272. frontAlt: {
  3273. height: math.unit(2, "meter"),
  3274. weight: math.unit(90, "kg"),
  3275. name: "Front (alt)",
  3276. image: {
  3277. source: "./media/characters/gael'rathus/front-alt.svg"
  3278. }
  3279. },
  3280. frontAlt2: {
  3281. height: math.unit(2, "meter"),
  3282. weight: math.unit(90, "kg"),
  3283. name: "Front (alt 2)",
  3284. image: {
  3285. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3286. }
  3287. }
  3288. },
  3289. [
  3290. {
  3291. name: "Normal",
  3292. height: math.unit(9, "feet"),
  3293. default: true
  3294. },
  3295. {
  3296. name: "Large",
  3297. height: math.unit(25, "feet")
  3298. },
  3299. {
  3300. name: "Macro",
  3301. height: math.unit(0.25, "miles")
  3302. },
  3303. {
  3304. name: "Megamacro",
  3305. height: math.unit(10, "miles")
  3306. }
  3307. ]
  3308. ))
  3309. characterMakers.push(() => makeCharacter(
  3310. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3311. {
  3312. side: {
  3313. height: math.unit(2, "meter"),
  3314. weight: math.unit(140, "kg"),
  3315. name: "Side",
  3316. image: {
  3317. source: "./media/characters/sosha/side.svg",
  3318. bottom: 0.042
  3319. }
  3320. },
  3321. },
  3322. [
  3323. {
  3324. name: "Normal",
  3325. height: math.unit(12, "feet"),
  3326. default: true
  3327. }
  3328. ]
  3329. ))
  3330. characterMakers.push(() => makeCharacter(
  3331. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3332. {
  3333. side: {
  3334. height: math.unit(5 + 5 / 12, "feet"),
  3335. weight: math.unit(170, "kg"),
  3336. name: "Side",
  3337. image: {
  3338. source: "./media/characters/runnola/side.svg",
  3339. extra: 741 / 448,
  3340. bottom: 0.05
  3341. }
  3342. },
  3343. },
  3344. [
  3345. {
  3346. name: "Small",
  3347. height: math.unit(3, "feet")
  3348. },
  3349. {
  3350. name: "Normal",
  3351. height: math.unit(5 + 5 / 12, "feet"),
  3352. default: true
  3353. },
  3354. {
  3355. name: "Big",
  3356. height: math.unit(10, "feet")
  3357. },
  3358. ]
  3359. ))
  3360. characterMakers.push(() => makeCharacter(
  3361. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3362. {
  3363. front: {
  3364. height: math.unit(2, "meter"),
  3365. weight: math.unit(50, "kg"),
  3366. name: "Front",
  3367. image: {
  3368. source: "./media/characters/kurribird/front.svg",
  3369. bottom: 0.015
  3370. }
  3371. },
  3372. frontAlt: {
  3373. height: math.unit(1.5, "meter"),
  3374. weight: math.unit(50, "kg"),
  3375. name: "Front (Alt)",
  3376. image: {
  3377. source: "./media/characters/kurribird/front-alt.svg",
  3378. extra: 1.45
  3379. }
  3380. },
  3381. },
  3382. [
  3383. {
  3384. name: "Normal",
  3385. height: math.unit(7, "feet")
  3386. },
  3387. {
  3388. name: "Big",
  3389. height: math.unit(12, "feet"),
  3390. default: true
  3391. },
  3392. {
  3393. name: "Macro",
  3394. height: math.unit(1500, "feet")
  3395. },
  3396. {
  3397. name: "Megamacro",
  3398. height: math.unit(2, "miles")
  3399. }
  3400. ]
  3401. ))
  3402. characterMakers.push(() => makeCharacter(
  3403. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3404. {
  3405. front: {
  3406. height: math.unit(2, "meter"),
  3407. weight: math.unit(80, "kg"),
  3408. name: "Front",
  3409. image: {
  3410. source: "./media/characters/elbial/front.svg",
  3411. extra: 1643 / 1556,
  3412. bottom: 60.2 / 1696
  3413. }
  3414. },
  3415. side: {
  3416. height: math.unit(2, "meter"),
  3417. weight: math.unit(80, "kg"),
  3418. name: "Side",
  3419. image: {
  3420. source: "./media/characters/elbial/side.svg",
  3421. extra: 1630 / 1565,
  3422. bottom: 71.5 / 1697
  3423. }
  3424. },
  3425. back: {
  3426. height: math.unit(2, "meter"),
  3427. weight: math.unit(80, "kg"),
  3428. name: "Back",
  3429. image: {
  3430. source: "./media/characters/elbial/back.svg",
  3431. extra: 1668 / 1595,
  3432. bottom: 5.6 / 1672
  3433. }
  3434. },
  3435. frontDressed: {
  3436. height: math.unit(2, "meter"),
  3437. weight: math.unit(80, "kg"),
  3438. name: "Front (Dressed)",
  3439. image: {
  3440. source: "./media/characters/elbial/front-dressed.svg",
  3441. extra: 1653 / 1584,
  3442. bottom: 57 / 1708
  3443. }
  3444. },
  3445. genitals: {
  3446. height: math.unit(2 / 3.367, "meter"),
  3447. name: "Genitals",
  3448. image: {
  3449. source: "./media/characters/elbial/genitals.svg"
  3450. }
  3451. },
  3452. },
  3453. [
  3454. {
  3455. name: "Large",
  3456. height: math.unit(100, "feet")
  3457. },
  3458. {
  3459. name: "Macro",
  3460. height: math.unit(500, "feet"),
  3461. default: true
  3462. },
  3463. {
  3464. name: "Megamacro",
  3465. height: math.unit(10, "miles")
  3466. },
  3467. {
  3468. name: "Gigamacro",
  3469. height: math.unit(25000, "miles")
  3470. },
  3471. {
  3472. name: "Full-Size",
  3473. height: math.unit(8000000, "gigaparsecs")
  3474. }
  3475. ]
  3476. ))
  3477. characterMakers.push(() => makeCharacter(
  3478. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3479. {
  3480. front: {
  3481. height: math.unit(2, "meter"),
  3482. weight: math.unit(60, "kg"),
  3483. name: "Front",
  3484. image: {
  3485. source: "./media/characters/noah/front.svg"
  3486. }
  3487. },
  3488. talons: {
  3489. height: math.unit(0.315, "meter"),
  3490. name: "Talons",
  3491. image: {
  3492. source: "./media/characters/noah/talons.svg"
  3493. }
  3494. }
  3495. },
  3496. [
  3497. {
  3498. name: "Large",
  3499. height: math.unit(50, "feet")
  3500. },
  3501. {
  3502. name: "Macro",
  3503. height: math.unit(750, "feet"),
  3504. default: true
  3505. },
  3506. {
  3507. name: "Megamacro",
  3508. height: math.unit(50, "miles")
  3509. },
  3510. {
  3511. name: "Gigamacro",
  3512. height: math.unit(100000, "miles")
  3513. },
  3514. {
  3515. name: "Full-Size",
  3516. height: math.unit(3000000000, "miles")
  3517. }
  3518. ]
  3519. ))
  3520. characterMakers.push(() => makeCharacter(
  3521. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3522. {
  3523. front: {
  3524. height: math.unit(2, "meter"),
  3525. weight: math.unit(80, "kg"),
  3526. name: "Front",
  3527. image: {
  3528. source: "./media/characters/natalya/front.svg"
  3529. }
  3530. },
  3531. back: {
  3532. height: math.unit(2, "meter"),
  3533. weight: math.unit(80, "kg"),
  3534. name: "Back",
  3535. image: {
  3536. source: "./media/characters/natalya/back.svg"
  3537. }
  3538. }
  3539. },
  3540. [
  3541. {
  3542. name: "Normal",
  3543. height: math.unit(150, "feet"),
  3544. default: true
  3545. },
  3546. {
  3547. name: "Megamacro",
  3548. height: math.unit(5, "miles")
  3549. },
  3550. {
  3551. name: "Full-Size",
  3552. height: math.unit(600, "kiloparsecs")
  3553. }
  3554. ]
  3555. ))
  3556. characterMakers.push(() => makeCharacter(
  3557. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3558. {
  3559. front: {
  3560. height: math.unit(2, "meter"),
  3561. weight: math.unit(50, "kg"),
  3562. name: "Front",
  3563. image: {
  3564. source: "./media/characters/erestrebah/front.svg",
  3565. extra: 1262/1162,
  3566. bottom: 96/1358
  3567. }
  3568. },
  3569. back: {
  3570. height: math.unit(2, "meter"),
  3571. weight: math.unit(50, "kg"),
  3572. name: "Back",
  3573. image: {
  3574. source: "./media/characters/erestrebah/back.svg",
  3575. extra: 1257/1139,
  3576. bottom: 13/1270
  3577. }
  3578. },
  3579. wing: {
  3580. height: math.unit(2, "meter"),
  3581. weight: math.unit(50, "kg"),
  3582. name: "Wing",
  3583. image: {
  3584. source: "./media/characters/erestrebah/wing.svg",
  3585. extra: 1262/1162,
  3586. bottom: 96/1358
  3587. }
  3588. },
  3589. mouth: {
  3590. height: math.unit(0.39, "feet"),
  3591. name: "Mouth",
  3592. image: {
  3593. source: "./media/characters/erestrebah/mouth.svg"
  3594. }
  3595. }
  3596. },
  3597. [
  3598. {
  3599. name: "Normal",
  3600. height: math.unit(10, "feet")
  3601. },
  3602. {
  3603. name: "Large",
  3604. height: math.unit(50, "feet"),
  3605. default: true
  3606. },
  3607. {
  3608. name: "Macro",
  3609. height: math.unit(300, "feet")
  3610. },
  3611. {
  3612. name: "Macro+",
  3613. height: math.unit(750, "feet")
  3614. },
  3615. {
  3616. name: "Megamacro",
  3617. height: math.unit(3, "miles")
  3618. }
  3619. ]
  3620. ))
  3621. characterMakers.push(() => makeCharacter(
  3622. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3623. {
  3624. front: {
  3625. height: math.unit(2, "meter"),
  3626. weight: math.unit(80, "kg"),
  3627. name: "Front",
  3628. image: {
  3629. source: "./media/characters/jennifer/front.svg",
  3630. bottom: 0.11,
  3631. extra: 1.16
  3632. }
  3633. },
  3634. frontAlt: {
  3635. height: math.unit(2, "meter"),
  3636. weight: math.unit(80, "kg"),
  3637. name: "Front (Alt)",
  3638. image: {
  3639. source: "./media/characters/jennifer/front-alt.svg"
  3640. }
  3641. }
  3642. },
  3643. [
  3644. {
  3645. name: "Canon Height",
  3646. height: math.unit(120, "feet"),
  3647. default: true
  3648. },
  3649. {
  3650. name: "Macro+",
  3651. height: math.unit(300, "feet")
  3652. },
  3653. {
  3654. name: "Megamacro",
  3655. height: math.unit(20000, "feet")
  3656. }
  3657. ]
  3658. ))
  3659. characterMakers.push(() => makeCharacter(
  3660. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3661. {
  3662. front: {
  3663. height: math.unit(2, "meter"),
  3664. weight: math.unit(50, "kg"),
  3665. name: "Front",
  3666. image: {
  3667. source: "./media/characters/kalista/front.svg",
  3668. extra: 1947 / 1700,
  3669. bottom: 76.6 / 1412.98
  3670. }
  3671. },
  3672. back: {
  3673. height: math.unit(2, "meter"),
  3674. weight: math.unit(50, "kg"),
  3675. name: "Back",
  3676. image: {
  3677. source: "./media/characters/kalista/back.svg",
  3678. extra: 1366 / 1156,
  3679. bottom: 33.9 / 1362.78
  3680. }
  3681. }
  3682. },
  3683. [
  3684. {
  3685. name: "Uncomfortably Small",
  3686. height: math.unit(10, "feet")
  3687. },
  3688. {
  3689. name: "Small",
  3690. height: math.unit(30, "feet")
  3691. },
  3692. {
  3693. name: "Macro",
  3694. height: math.unit(100, "feet"),
  3695. default: true
  3696. },
  3697. {
  3698. name: "Macro+",
  3699. height: math.unit(2000, "feet")
  3700. },
  3701. {
  3702. name: "True Form",
  3703. height: math.unit(8924, "miles")
  3704. }
  3705. ]
  3706. ))
  3707. characterMakers.push(() => makeCharacter(
  3708. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3709. {
  3710. front: {
  3711. height: math.unit(2, "meter"),
  3712. weight: math.unit(120, "kg"),
  3713. name: "Front",
  3714. image: {
  3715. source: "./media/characters/ggv/front.svg"
  3716. }
  3717. },
  3718. side: {
  3719. height: math.unit(2, "meter"),
  3720. weight: math.unit(120, "kg"),
  3721. name: "Side",
  3722. image: {
  3723. source: "./media/characters/ggv/side.svg"
  3724. }
  3725. }
  3726. },
  3727. [
  3728. {
  3729. name: "Extremely Puny",
  3730. height: math.unit(9 + 5 / 12, "feet")
  3731. },
  3732. {
  3733. name: "Horribly Small",
  3734. height: math.unit(47.7, "miles"),
  3735. default: true
  3736. },
  3737. {
  3738. name: "Reasonably Sized",
  3739. height: math.unit(25000, "parsecs")
  3740. },
  3741. {
  3742. name: "Slightly Uncompressed",
  3743. height: math.unit(7.77e31, "parsecs")
  3744. },
  3745. {
  3746. name: "Omniversal",
  3747. height: math.unit(1e300, "meters")
  3748. },
  3749. ]
  3750. ))
  3751. characterMakers.push(() => makeCharacter(
  3752. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3753. {
  3754. front: {
  3755. height: math.unit(2, "meter"),
  3756. weight: math.unit(75, "lb"),
  3757. name: "Front",
  3758. image: {
  3759. source: "./media/characters/napalm/front.svg"
  3760. }
  3761. },
  3762. back: {
  3763. height: math.unit(2, "meter"),
  3764. weight: math.unit(75, "lb"),
  3765. name: "Back",
  3766. image: {
  3767. source: "./media/characters/napalm/back.svg"
  3768. }
  3769. }
  3770. },
  3771. [
  3772. {
  3773. name: "Standard",
  3774. height: math.unit(55, "feet"),
  3775. default: true
  3776. }
  3777. ]
  3778. ))
  3779. characterMakers.push(() => makeCharacter(
  3780. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3781. {
  3782. front: {
  3783. height: math.unit(7 + 5 / 6, "feet"),
  3784. weight: math.unit(325, "lb"),
  3785. name: "Front",
  3786. image: {
  3787. source: "./media/characters/asana/front.svg",
  3788. extra: 1133 / 1060,
  3789. bottom: 15.2 / 1148.6
  3790. }
  3791. },
  3792. back: {
  3793. height: math.unit(7 + 5 / 6, "feet"),
  3794. weight: math.unit(325, "lb"),
  3795. name: "Back",
  3796. image: {
  3797. source: "./media/characters/asana/back.svg",
  3798. extra: 1114 / 1043,
  3799. bottom: 5 / 1120
  3800. }
  3801. },
  3802. dressedDark: {
  3803. height: math.unit(7 + 5 / 6, "feet"),
  3804. weight: math.unit(325, "lb"),
  3805. name: "Dressed (Dark)",
  3806. image: {
  3807. source: "./media/characters/asana/dressed-dark.svg",
  3808. extra: 1133 / 1060,
  3809. bottom: 15.2 / 1148.6
  3810. }
  3811. },
  3812. dressedLight: {
  3813. height: math.unit(7 + 5 / 6, "feet"),
  3814. weight: math.unit(325, "lb"),
  3815. name: "Dressed (Light)",
  3816. image: {
  3817. source: "./media/characters/asana/dressed-light.svg",
  3818. extra: 1133 / 1060,
  3819. bottom: 15.2 / 1148.6
  3820. }
  3821. },
  3822. },
  3823. [
  3824. {
  3825. name: "Standard",
  3826. height: math.unit(7 + 5 / 6, "feet"),
  3827. default: true
  3828. },
  3829. {
  3830. name: "Large",
  3831. height: math.unit(10, "meters")
  3832. },
  3833. {
  3834. name: "Macro",
  3835. height: math.unit(2500, "meters")
  3836. },
  3837. {
  3838. name: "Megamacro",
  3839. height: math.unit(5e6, "meters")
  3840. },
  3841. {
  3842. name: "Examacro",
  3843. height: math.unit(5e12, "lightyears")
  3844. },
  3845. {
  3846. name: "Max Size",
  3847. height: math.unit(1e31, "lightyears")
  3848. }
  3849. ]
  3850. ))
  3851. characterMakers.push(() => makeCharacter(
  3852. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3853. {
  3854. front: {
  3855. height: math.unit(2, "meter"),
  3856. weight: math.unit(60, "kg"),
  3857. name: "Front",
  3858. image: {
  3859. source: "./media/characters/ebony/front.svg",
  3860. bottom: 0.03,
  3861. extra: 1045 / 810 + 0.03
  3862. }
  3863. },
  3864. side: {
  3865. height: math.unit(2, "meter"),
  3866. weight: math.unit(60, "kg"),
  3867. name: "Side",
  3868. image: {
  3869. source: "./media/characters/ebony/side.svg",
  3870. bottom: 0.03,
  3871. extra: 1045 / 810 + 0.03
  3872. }
  3873. },
  3874. back: {
  3875. height: math.unit(2, "meter"),
  3876. weight: math.unit(60, "kg"),
  3877. name: "Back",
  3878. image: {
  3879. source: "./media/characters/ebony/back.svg",
  3880. bottom: 0.01,
  3881. extra: 1045 / 810 + 0.01
  3882. }
  3883. },
  3884. },
  3885. [
  3886. // TODO check why I did this lol
  3887. {
  3888. name: "Standard",
  3889. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3890. default: true
  3891. },
  3892. {
  3893. name: "Macro",
  3894. height: math.unit(200, "feet")
  3895. },
  3896. {
  3897. name: "Gigamacro",
  3898. height: math.unit(13000, "km")
  3899. }
  3900. ]
  3901. ))
  3902. characterMakers.push(() => makeCharacter(
  3903. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3904. {
  3905. front: {
  3906. height: math.unit(6, "feet"),
  3907. weight: math.unit(175, "lb"),
  3908. name: "Front",
  3909. image: {
  3910. source: "./media/characters/mountain/front.svg",
  3911. extra: 972 / 955,
  3912. bottom: 64 / 1036.6
  3913. }
  3914. },
  3915. back: {
  3916. height: math.unit(6, "feet"),
  3917. weight: math.unit(175, "lb"),
  3918. name: "Back",
  3919. image: {
  3920. source: "./media/characters/mountain/back.svg",
  3921. extra: 970 / 950,
  3922. bottom: 28.25 / 999
  3923. }
  3924. },
  3925. },
  3926. [
  3927. {
  3928. name: "Large",
  3929. height: math.unit(20, "meters")
  3930. },
  3931. {
  3932. name: "Macro",
  3933. height: math.unit(300, "meters")
  3934. },
  3935. {
  3936. name: "Gigamacro",
  3937. height: math.unit(10000, "km"),
  3938. default: true
  3939. },
  3940. {
  3941. name: "Examacro",
  3942. height: math.unit(10e9, "lightyears")
  3943. }
  3944. ]
  3945. ))
  3946. characterMakers.push(() => makeCharacter(
  3947. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3948. {
  3949. front: {
  3950. height: math.unit(8, "feet"),
  3951. weight: math.unit(500, "lb"),
  3952. name: "Front",
  3953. image: {
  3954. source: "./media/characters/rick/front.svg"
  3955. }
  3956. }
  3957. },
  3958. [
  3959. {
  3960. name: "Normal",
  3961. height: math.unit(8, "feet"),
  3962. default: true
  3963. },
  3964. {
  3965. name: "Macro",
  3966. height: math.unit(5, "km")
  3967. }
  3968. ]
  3969. ))
  3970. characterMakers.push(() => makeCharacter(
  3971. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3972. {
  3973. front: {
  3974. height: math.unit(8, "feet"),
  3975. weight: math.unit(120, "lb"),
  3976. name: "Front",
  3977. image: {
  3978. source: "./media/characters/ona/front.svg"
  3979. }
  3980. },
  3981. frontAlt: {
  3982. height: math.unit(8, "feet"),
  3983. weight: math.unit(120, "lb"),
  3984. name: "Front (Alt)",
  3985. image: {
  3986. source: "./media/characters/ona/front-alt.svg"
  3987. }
  3988. },
  3989. back: {
  3990. height: math.unit(8, "feet"),
  3991. weight: math.unit(120, "lb"),
  3992. name: "Back",
  3993. image: {
  3994. source: "./media/characters/ona/back.svg"
  3995. }
  3996. },
  3997. foot: {
  3998. height: math.unit(1.1, "feet"),
  3999. name: "Foot",
  4000. image: {
  4001. source: "./media/characters/ona/foot.svg"
  4002. }
  4003. }
  4004. },
  4005. [
  4006. {
  4007. name: "Megamacro",
  4008. height: math.unit(70, "km"),
  4009. default: true
  4010. },
  4011. {
  4012. name: "Gigamacro",
  4013. height: math.unit(681818, "miles")
  4014. },
  4015. {
  4016. name: "Examacro",
  4017. height: math.unit(3800000, "lightyears")
  4018. },
  4019. ]
  4020. ))
  4021. characterMakers.push(() => makeCharacter(
  4022. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4023. {
  4024. front: {
  4025. height: math.unit(12, "feet"),
  4026. weight: math.unit(3000, "lb"),
  4027. name: "Front",
  4028. image: {
  4029. source: "./media/characters/mech/front.svg",
  4030. extra: 2900 / 2770,
  4031. bottom: 110 / 3010
  4032. }
  4033. },
  4034. back: {
  4035. height: math.unit(12, "feet"),
  4036. weight: math.unit(3000, "lb"),
  4037. name: "Back",
  4038. image: {
  4039. source: "./media/characters/mech/back.svg",
  4040. extra: 3011 / 2890,
  4041. bottom: 94 / 3105
  4042. }
  4043. },
  4044. maw: {
  4045. height: math.unit(3.07, "feet"),
  4046. name: "Maw",
  4047. image: {
  4048. source: "./media/characters/mech/maw.svg"
  4049. }
  4050. },
  4051. head: {
  4052. height: math.unit(2.82, "feet"),
  4053. name: "Head",
  4054. image: {
  4055. source: "./media/characters/mech/head.svg"
  4056. }
  4057. },
  4058. dick: {
  4059. height: math.unit(1.43, "feet"),
  4060. name: "Dick",
  4061. image: {
  4062. source: "./media/characters/mech/dick.svg"
  4063. }
  4064. },
  4065. },
  4066. [
  4067. {
  4068. name: "Normal",
  4069. height: math.unit(12, "feet")
  4070. },
  4071. {
  4072. name: "Macro",
  4073. height: math.unit(300, "feet"),
  4074. default: true
  4075. },
  4076. {
  4077. name: "Macro+",
  4078. height: math.unit(1500, "feet")
  4079. },
  4080. ]
  4081. ))
  4082. characterMakers.push(() => makeCharacter(
  4083. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4084. {
  4085. front: {
  4086. height: math.unit(1.3, "meter"),
  4087. weight: math.unit(30, "kg"),
  4088. name: "Front",
  4089. image: {
  4090. source: "./media/characters/gregory/front.svg",
  4091. }
  4092. }
  4093. },
  4094. [
  4095. {
  4096. name: "Normal",
  4097. height: math.unit(1.3, "meter"),
  4098. default: true
  4099. },
  4100. {
  4101. name: "Macro",
  4102. height: math.unit(20, "meter")
  4103. }
  4104. ]
  4105. ))
  4106. characterMakers.push(() => makeCharacter(
  4107. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4108. {
  4109. front: {
  4110. height: math.unit(2.8, "meter"),
  4111. weight: math.unit(200, "kg"),
  4112. name: "Front",
  4113. image: {
  4114. source: "./media/characters/elory/front.svg",
  4115. }
  4116. }
  4117. },
  4118. [
  4119. {
  4120. name: "Normal",
  4121. height: math.unit(2.8, "meter"),
  4122. default: true
  4123. },
  4124. {
  4125. name: "Macro",
  4126. height: math.unit(38, "meter")
  4127. }
  4128. ]
  4129. ))
  4130. characterMakers.push(() => makeCharacter(
  4131. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4132. {
  4133. front: {
  4134. height: math.unit(470, "feet"),
  4135. weight: math.unit(924, "tons"),
  4136. name: "Front",
  4137. image: {
  4138. source: "./media/characters/angelpatamon/front.svg",
  4139. }
  4140. }
  4141. },
  4142. [
  4143. {
  4144. name: "Normal",
  4145. height: math.unit(470, "feet"),
  4146. default: true
  4147. },
  4148. {
  4149. name: "Deity Size I",
  4150. height: math.unit(28651.2, "km")
  4151. },
  4152. {
  4153. name: "Deity Size II",
  4154. height: math.unit(171907.2, "km")
  4155. }
  4156. ]
  4157. ))
  4158. characterMakers.push(() => makeCharacter(
  4159. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4160. {
  4161. side: {
  4162. height: math.unit(7.2, "meter"),
  4163. weight: math.unit(8.2, "tons"),
  4164. name: "Side",
  4165. image: {
  4166. source: "./media/characters/cryae/side.svg",
  4167. extra: 3500 / 1500
  4168. }
  4169. }
  4170. },
  4171. [
  4172. {
  4173. name: "Normal",
  4174. height: math.unit(7.2, "meter"),
  4175. default: true
  4176. }
  4177. ]
  4178. ))
  4179. characterMakers.push(() => makeCharacter(
  4180. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4181. {
  4182. front: {
  4183. height: math.unit(6, "feet"),
  4184. weight: math.unit(175, "lb"),
  4185. name: "Front",
  4186. image: {
  4187. source: "./media/characters/xera/front.svg",
  4188. extra: 2377 / 1972,
  4189. bottom: 75.5 / 2452
  4190. }
  4191. },
  4192. side: {
  4193. height: math.unit(6, "feet"),
  4194. weight: math.unit(175, "lb"),
  4195. name: "Side",
  4196. image: {
  4197. source: "./media/characters/xera/side.svg",
  4198. extra: 2345 / 2019,
  4199. bottom: 39.7 / 2384
  4200. }
  4201. },
  4202. back: {
  4203. height: math.unit(6, "feet"),
  4204. weight: math.unit(175, "lb"),
  4205. name: "Back",
  4206. image: {
  4207. source: "./media/characters/xera/back.svg",
  4208. extra: 2095 / 1984,
  4209. bottom: 67 / 2166
  4210. }
  4211. },
  4212. },
  4213. [
  4214. {
  4215. name: "Small",
  4216. height: math.unit(10, "feet")
  4217. },
  4218. {
  4219. name: "Macro",
  4220. height: math.unit(500, "meters"),
  4221. default: true
  4222. },
  4223. {
  4224. name: "Macro+",
  4225. height: math.unit(10, "km")
  4226. },
  4227. {
  4228. name: "Gigamacro",
  4229. height: math.unit(25000, "km")
  4230. },
  4231. {
  4232. name: "Teramacro",
  4233. height: math.unit(3e6, "km")
  4234. }
  4235. ]
  4236. ))
  4237. characterMakers.push(() => makeCharacter(
  4238. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4239. {
  4240. front: {
  4241. height: math.unit(6, "feet"),
  4242. weight: math.unit(175, "lb"),
  4243. name: "Front",
  4244. image: {
  4245. source: "./media/characters/nebula/front.svg",
  4246. extra: 2566 / 2362,
  4247. bottom: 81 / 2644
  4248. }
  4249. }
  4250. },
  4251. [
  4252. {
  4253. name: "Small",
  4254. height: math.unit(4.5, "meters")
  4255. },
  4256. {
  4257. name: "Macro",
  4258. height: math.unit(1500, "meters"),
  4259. default: true
  4260. },
  4261. {
  4262. name: "Megamacro",
  4263. height: math.unit(150, "km")
  4264. },
  4265. {
  4266. name: "Gigamacro",
  4267. height: math.unit(27000, "km")
  4268. }
  4269. ]
  4270. ))
  4271. characterMakers.push(() => makeCharacter(
  4272. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4273. {
  4274. front: {
  4275. height: math.unit(6, "feet"),
  4276. weight: math.unit(225, "lb"),
  4277. name: "Front",
  4278. image: {
  4279. source: "./media/characters/abysgar/front.svg"
  4280. }
  4281. }
  4282. },
  4283. [
  4284. {
  4285. name: "Small",
  4286. height: math.unit(4.5, "meters")
  4287. },
  4288. {
  4289. name: "Macro",
  4290. height: math.unit(1250, "meters"),
  4291. default: true
  4292. },
  4293. {
  4294. name: "Megamacro",
  4295. height: math.unit(125, "km")
  4296. },
  4297. {
  4298. name: "Gigamacro",
  4299. height: math.unit(26000, "km")
  4300. }
  4301. ]
  4302. ))
  4303. characterMakers.push(() => makeCharacter(
  4304. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4305. {
  4306. front: {
  4307. height: math.unit(6, "feet"),
  4308. weight: math.unit(180, "lb"),
  4309. name: "Front",
  4310. image: {
  4311. source: "./media/characters/yakuz/front.svg"
  4312. }
  4313. }
  4314. },
  4315. [
  4316. {
  4317. name: "Small",
  4318. height: math.unit(5, "meters")
  4319. },
  4320. {
  4321. name: "Macro",
  4322. height: math.unit(1500, "meters"),
  4323. default: true
  4324. },
  4325. {
  4326. name: "Megamacro",
  4327. height: math.unit(200, "km")
  4328. },
  4329. {
  4330. name: "Gigamacro",
  4331. height: math.unit(100000, "km")
  4332. }
  4333. ]
  4334. ))
  4335. characterMakers.push(() => makeCharacter(
  4336. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4337. {
  4338. front: {
  4339. height: math.unit(6, "feet"),
  4340. weight: math.unit(175, "lb"),
  4341. name: "Front",
  4342. image: {
  4343. source: "./media/characters/mirova/front.svg",
  4344. extra: 3334 / 3071,
  4345. bottom: 42 / 3375.6
  4346. }
  4347. }
  4348. },
  4349. [
  4350. {
  4351. name: "Small",
  4352. height: math.unit(5, "meters")
  4353. },
  4354. {
  4355. name: "Macro",
  4356. height: math.unit(900, "meters"),
  4357. default: true
  4358. },
  4359. {
  4360. name: "Megamacro",
  4361. height: math.unit(135, "km")
  4362. },
  4363. {
  4364. name: "Gigamacro",
  4365. height: math.unit(20000, "km")
  4366. }
  4367. ]
  4368. ))
  4369. characterMakers.push(() => makeCharacter(
  4370. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4371. {
  4372. side: {
  4373. height: math.unit(28.35, "feet"),
  4374. weight: math.unit(99.75, "tons"),
  4375. name: "Side",
  4376. image: {
  4377. source: "./media/characters/asana-mech/side.svg",
  4378. extra: 923 / 699,
  4379. bottom: 50 / 975
  4380. }
  4381. },
  4382. chaingun: {
  4383. height: math.unit(7, "feet"),
  4384. weight: math.unit(2400, "lb"),
  4385. name: "Chaingun",
  4386. image: {
  4387. source: "./media/characters/asana-mech/chaingun.svg"
  4388. }
  4389. },
  4390. laser: {
  4391. height: math.unit(7.12, "feet"),
  4392. weight: math.unit(2000, "lb"),
  4393. name: "Laser",
  4394. image: {
  4395. source: "./media/characters/asana-mech/laser.svg"
  4396. }
  4397. },
  4398. },
  4399. [
  4400. {
  4401. name: "Normal",
  4402. height: math.unit(28.35, "feet"),
  4403. default: true
  4404. },
  4405. {
  4406. name: "Macro",
  4407. height: math.unit(2500, "feet")
  4408. },
  4409. {
  4410. name: "Megamacro",
  4411. height: math.unit(25, "miles")
  4412. },
  4413. {
  4414. name: "Examacro",
  4415. height: math.unit(6e8, "lightyears")
  4416. },
  4417. ]
  4418. ))
  4419. characterMakers.push(() => makeCharacter(
  4420. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4421. {
  4422. front: {
  4423. height: math.unit(5, "meters"),
  4424. weight: math.unit(1000, "kg"),
  4425. name: "Front",
  4426. image: {
  4427. source: "./media/characters/asche/front.svg",
  4428. extra: 1258 / 1190,
  4429. bottom: 47 / 1305
  4430. }
  4431. },
  4432. frontUnderwear: {
  4433. height: math.unit(5, "meters"),
  4434. weight: math.unit(1000, "kg"),
  4435. name: "Front (Underwear)",
  4436. image: {
  4437. source: "./media/characters/asche/front-underwear.svg",
  4438. extra: 1258 / 1190,
  4439. bottom: 47 / 1305
  4440. }
  4441. },
  4442. frontDressed: {
  4443. height: math.unit(5, "meters"),
  4444. weight: math.unit(1000, "kg"),
  4445. name: "Front (Dressed)",
  4446. image: {
  4447. source: "./media/characters/asche/front-dressed.svg",
  4448. extra: 1258 / 1190,
  4449. bottom: 47 / 1305
  4450. }
  4451. },
  4452. frontArmor: {
  4453. height: math.unit(5, "meters"),
  4454. weight: math.unit(1000, "kg"),
  4455. name: "Front (Armored)",
  4456. image: {
  4457. source: "./media/characters/asche/front-armored.svg",
  4458. extra: 1374 / 1308,
  4459. bottom: 23 / 1397
  4460. }
  4461. },
  4462. mp724: {
  4463. height: math.unit(0.96, "meters"),
  4464. weight: math.unit(38, "kg"),
  4465. name: "H&K MP724",
  4466. image: {
  4467. source: "./media/characters/asche/h&k-mp724.svg"
  4468. }
  4469. },
  4470. side: {
  4471. height: math.unit(5, "meters"),
  4472. weight: math.unit(1000, "kg"),
  4473. name: "Side",
  4474. image: {
  4475. source: "./media/characters/asche/side.svg",
  4476. extra: 1717 / 1609,
  4477. bottom: 0.005
  4478. }
  4479. },
  4480. back: {
  4481. height: math.unit(5, "meters"),
  4482. weight: math.unit(1000, "kg"),
  4483. name: "Back",
  4484. image: {
  4485. source: "./media/characters/asche/back.svg",
  4486. extra: 1570 / 1501
  4487. }
  4488. },
  4489. },
  4490. [
  4491. {
  4492. name: "DEFCON 5",
  4493. height: math.unit(5, "meters")
  4494. },
  4495. {
  4496. name: "DEFCON 4",
  4497. height: math.unit(500, "meters"),
  4498. default: true
  4499. },
  4500. {
  4501. name: "DEFCON 3",
  4502. height: math.unit(5, "km")
  4503. },
  4504. {
  4505. name: "DEFCON 2",
  4506. height: math.unit(500, "km")
  4507. },
  4508. {
  4509. name: "DEFCON 1",
  4510. height: math.unit(500000, "km")
  4511. },
  4512. {
  4513. name: "DEFCON 0",
  4514. height: math.unit(3, "gigaparsecs")
  4515. },
  4516. ]
  4517. ))
  4518. characterMakers.push(() => makeCharacter(
  4519. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4520. {
  4521. front: {
  4522. height: math.unit(2, "meters"),
  4523. weight: math.unit(76, "kg"),
  4524. name: "Front",
  4525. image: {
  4526. source: "./media/characters/gale/front.svg"
  4527. }
  4528. },
  4529. frontAlt1: {
  4530. height: math.unit(2, "meters"),
  4531. weight: math.unit(76, "kg"),
  4532. name: "Front (Alt 1)",
  4533. image: {
  4534. source: "./media/characters/gale/front-alt-1.svg"
  4535. }
  4536. },
  4537. frontAlt2: {
  4538. height: math.unit(2, "meters"),
  4539. weight: math.unit(76, "kg"),
  4540. name: "Front (Alt 2)",
  4541. image: {
  4542. source: "./media/characters/gale/front-alt-2.svg"
  4543. }
  4544. },
  4545. },
  4546. [
  4547. {
  4548. name: "Normal",
  4549. height: math.unit(7, "feet")
  4550. },
  4551. {
  4552. name: "Macro",
  4553. height: math.unit(150, "feet"),
  4554. default: true
  4555. },
  4556. {
  4557. name: "Macro+",
  4558. height: math.unit(300, "feet")
  4559. },
  4560. ]
  4561. ))
  4562. characterMakers.push(() => makeCharacter(
  4563. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4564. {
  4565. front: {
  4566. height: math.unit(5 + 10/12, "feet"),
  4567. weight: math.unit(67, "kg"),
  4568. name: "Front",
  4569. image: {
  4570. source: "./media/characters/draylen/front.svg",
  4571. extra: 832/777,
  4572. bottom: 85/917
  4573. }
  4574. }
  4575. },
  4576. [
  4577. {
  4578. name: "Normal",
  4579. height: math.unit(5 + 10/12, "feet")
  4580. },
  4581. {
  4582. name: "Macro",
  4583. height: math.unit(150, "feet"),
  4584. default: true
  4585. }
  4586. ]
  4587. ))
  4588. characterMakers.push(() => makeCharacter(
  4589. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4590. {
  4591. front: {
  4592. height: math.unit(7 + 9 / 12, "feet"),
  4593. weight: math.unit(379, "lbs"),
  4594. name: "Front",
  4595. image: {
  4596. source: "./media/characters/chez/front.svg"
  4597. }
  4598. },
  4599. side: {
  4600. height: math.unit(7 + 9 / 12, "feet"),
  4601. weight: math.unit(379, "lbs"),
  4602. name: "Side",
  4603. image: {
  4604. source: "./media/characters/chez/side.svg"
  4605. }
  4606. }
  4607. },
  4608. [
  4609. {
  4610. name: "Normal",
  4611. height: math.unit(7 + 9 / 12, "feet"),
  4612. default: true
  4613. },
  4614. {
  4615. name: "God King",
  4616. height: math.unit(9750000, "meters")
  4617. }
  4618. ]
  4619. ))
  4620. characterMakers.push(() => makeCharacter(
  4621. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4622. {
  4623. front: {
  4624. height: math.unit(6, "feet"),
  4625. weight: math.unit(275, "lbs"),
  4626. name: "Front",
  4627. image: {
  4628. source: "./media/characters/kaylum/front.svg",
  4629. bottom: 0.01,
  4630. extra: 1166 / 1031
  4631. }
  4632. },
  4633. frontWingless: {
  4634. height: math.unit(6, "feet"),
  4635. weight: math.unit(275, "lbs"),
  4636. name: "Front (Wingless)",
  4637. image: {
  4638. source: "./media/characters/kaylum/front-wingless.svg",
  4639. bottom: 0.01,
  4640. extra: 1117 / 1031
  4641. }
  4642. }
  4643. },
  4644. [
  4645. {
  4646. name: "Normal",
  4647. height: math.unit(3.05, "meters")
  4648. },
  4649. {
  4650. name: "Master",
  4651. height: math.unit(5.5, "meters")
  4652. },
  4653. {
  4654. name: "Rampage",
  4655. height: math.unit(19, "meters")
  4656. },
  4657. {
  4658. name: "Macro Lite",
  4659. height: math.unit(37, "meters")
  4660. },
  4661. {
  4662. name: "Hyper Predator",
  4663. height: math.unit(61, "meters")
  4664. },
  4665. {
  4666. name: "Macro",
  4667. height: math.unit(138, "meters"),
  4668. default: true
  4669. }
  4670. ]
  4671. ))
  4672. characterMakers.push(() => makeCharacter(
  4673. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4674. {
  4675. front: {
  4676. height: math.unit(6, "feet"),
  4677. weight: math.unit(150, "lbs"),
  4678. name: "Front",
  4679. image: {
  4680. source: "./media/characters/geta/front.svg"
  4681. }
  4682. }
  4683. },
  4684. [
  4685. {
  4686. name: "Micro",
  4687. height: math.unit(3, "inches"),
  4688. default: true
  4689. },
  4690. {
  4691. name: "Normal",
  4692. height: math.unit(5 + 5 / 12, "feet")
  4693. }
  4694. ]
  4695. ))
  4696. characterMakers.push(() => makeCharacter(
  4697. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4698. {
  4699. front: {
  4700. height: math.unit(6, "feet"),
  4701. weight: math.unit(300, "lbs"),
  4702. name: "Front",
  4703. image: {
  4704. source: "./media/characters/tyrnn/front.svg"
  4705. }
  4706. }
  4707. },
  4708. [
  4709. {
  4710. name: "Main Height",
  4711. height: math.unit(355, "feet"),
  4712. default: true
  4713. },
  4714. {
  4715. name: "Fave. Height",
  4716. height: math.unit(2400, "feet")
  4717. }
  4718. ]
  4719. ))
  4720. characterMakers.push(() => makeCharacter(
  4721. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4722. {
  4723. front: {
  4724. height: math.unit(6, "feet"),
  4725. weight: math.unit(300, "lbs"),
  4726. name: "Front",
  4727. image: {
  4728. source: "./media/characters/appledectomy/front.svg"
  4729. }
  4730. }
  4731. },
  4732. [
  4733. {
  4734. name: "Macro",
  4735. height: math.unit(2500, "feet")
  4736. },
  4737. {
  4738. name: "Megamacro",
  4739. height: math.unit(50, "miles"),
  4740. default: true
  4741. },
  4742. {
  4743. name: "Gigamacro",
  4744. height: math.unit(5000, "miles")
  4745. },
  4746. {
  4747. name: "Teramacro",
  4748. height: math.unit(250000, "miles")
  4749. },
  4750. ]
  4751. ))
  4752. characterMakers.push(() => makeCharacter(
  4753. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4754. {
  4755. front: {
  4756. height: math.unit(6, "feet"),
  4757. weight: math.unit(200, "lbs"),
  4758. name: "Front",
  4759. image: {
  4760. source: "./media/characters/vulpes/front.svg",
  4761. extra: 573 / 543,
  4762. bottom: 0.033
  4763. }
  4764. },
  4765. side: {
  4766. height: math.unit(6, "feet"),
  4767. weight: math.unit(200, "lbs"),
  4768. name: "Side",
  4769. image: {
  4770. source: "./media/characters/vulpes/side.svg",
  4771. extra: 577 / 549,
  4772. bottom: 11 / 588
  4773. }
  4774. },
  4775. back: {
  4776. height: math.unit(6, "feet"),
  4777. weight: math.unit(200, "lbs"),
  4778. name: "Back",
  4779. image: {
  4780. source: "./media/characters/vulpes/back.svg",
  4781. extra: 573 / 549,
  4782. bottom: 20 / 593
  4783. }
  4784. },
  4785. feet: {
  4786. height: math.unit(1.276, "feet"),
  4787. name: "Feet",
  4788. image: {
  4789. source: "./media/characters/vulpes/feet.svg"
  4790. }
  4791. },
  4792. maw: {
  4793. height: math.unit(1.18, "feet"),
  4794. name: "Maw",
  4795. image: {
  4796. source: "./media/characters/vulpes/maw.svg"
  4797. }
  4798. },
  4799. },
  4800. [
  4801. {
  4802. name: "Micro",
  4803. height: math.unit(2, "inches")
  4804. },
  4805. {
  4806. name: "Normal",
  4807. height: math.unit(6.3, "feet")
  4808. },
  4809. {
  4810. name: "Macro",
  4811. height: math.unit(850, "feet")
  4812. },
  4813. {
  4814. name: "Megamacro",
  4815. height: math.unit(7500, "feet"),
  4816. default: true
  4817. },
  4818. {
  4819. name: "Gigamacro",
  4820. height: math.unit(570000, "miles")
  4821. }
  4822. ]
  4823. ))
  4824. characterMakers.push(() => makeCharacter(
  4825. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4826. {
  4827. front: {
  4828. height: math.unit(6, "feet"),
  4829. weight: math.unit(210, "lbs"),
  4830. name: "Front",
  4831. image: {
  4832. source: "./media/characters/rain-fallen/front.svg"
  4833. }
  4834. },
  4835. side: {
  4836. height: math.unit(6, "feet"),
  4837. weight: math.unit(210, "lbs"),
  4838. name: "Side",
  4839. image: {
  4840. source: "./media/characters/rain-fallen/side.svg"
  4841. }
  4842. },
  4843. back: {
  4844. height: math.unit(6, "feet"),
  4845. weight: math.unit(210, "lbs"),
  4846. name: "Back",
  4847. image: {
  4848. source: "./media/characters/rain-fallen/back.svg"
  4849. }
  4850. },
  4851. feral: {
  4852. height: math.unit(9, "feet"),
  4853. weight: math.unit(700, "lbs"),
  4854. name: "Feral",
  4855. image: {
  4856. source: "./media/characters/rain-fallen/feral.svg"
  4857. }
  4858. },
  4859. },
  4860. [
  4861. {
  4862. name: "Meddling with Mortals",
  4863. height: math.unit(8 + 8/12, "feet")
  4864. },
  4865. {
  4866. name: "Normal",
  4867. height: math.unit(5, "meter")
  4868. },
  4869. {
  4870. name: "Macro",
  4871. height: math.unit(150, "meter"),
  4872. default: true
  4873. },
  4874. {
  4875. name: "Megamacro",
  4876. height: math.unit(278e6, "meter")
  4877. },
  4878. {
  4879. name: "Gigamacro",
  4880. height: math.unit(2e9, "meter")
  4881. },
  4882. {
  4883. name: "Teramacro",
  4884. height: math.unit(8e12, "meter")
  4885. },
  4886. {
  4887. name: "Devourer",
  4888. height: math.unit(14, "zettameters")
  4889. },
  4890. {
  4891. name: "Scarlet King",
  4892. height: math.unit(18, "yottameters")
  4893. },
  4894. {
  4895. name: "Void",
  4896. height: math.unit(1e88, "yottameters")
  4897. }
  4898. ]
  4899. ))
  4900. characterMakers.push(() => makeCharacter(
  4901. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4902. {
  4903. standing: {
  4904. height: math.unit(6, "feet"),
  4905. weight: math.unit(180, "lbs"),
  4906. name: "Standing",
  4907. image: {
  4908. source: "./media/characters/zaakira/standing.svg",
  4909. extra: 1599/1504,
  4910. bottom: 39/1638
  4911. }
  4912. },
  4913. laying: {
  4914. height: math.unit(3, "feet"),
  4915. weight: math.unit(180, "lbs"),
  4916. name: "Laying",
  4917. image: {
  4918. source: "./media/characters/zaakira/laying.svg"
  4919. }
  4920. },
  4921. },
  4922. [
  4923. {
  4924. name: "Normal",
  4925. height: math.unit(12, "feet")
  4926. },
  4927. {
  4928. name: "Macro",
  4929. height: math.unit(279, "feet"),
  4930. default: true
  4931. }
  4932. ]
  4933. ))
  4934. characterMakers.push(() => makeCharacter(
  4935. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4936. {
  4937. femSfw: {
  4938. height: math.unit(8, "feet"),
  4939. weight: math.unit(350, "lb"),
  4940. name: "Fem",
  4941. image: {
  4942. source: "./media/characters/sigvald/fem-sfw.svg",
  4943. extra: 182 / 164,
  4944. bottom: 8.7 / 190.5
  4945. }
  4946. },
  4947. femNsfw: {
  4948. height: math.unit(8, "feet"),
  4949. weight: math.unit(350, "lb"),
  4950. name: "Fem (NSFW)",
  4951. image: {
  4952. source: "./media/characters/sigvald/fem-nsfw.svg",
  4953. extra: 182 / 164,
  4954. bottom: 8.7 / 190.5
  4955. }
  4956. },
  4957. maleNsfw: {
  4958. height: math.unit(8, "feet"),
  4959. weight: math.unit(350, "lb"),
  4960. name: "Male (NSFW)",
  4961. image: {
  4962. source: "./media/characters/sigvald/male-nsfw.svg",
  4963. extra: 182 / 164,
  4964. bottom: 8.7 / 190.5
  4965. }
  4966. },
  4967. hermNsfw: {
  4968. height: math.unit(8, "feet"),
  4969. weight: math.unit(350, "lb"),
  4970. name: "Herm (NSFW)",
  4971. image: {
  4972. source: "./media/characters/sigvald/herm-nsfw.svg",
  4973. extra: 182 / 164,
  4974. bottom: 8.7 / 190.5
  4975. }
  4976. },
  4977. dick: {
  4978. height: math.unit(2.36, "feet"),
  4979. name: "Dick",
  4980. image: {
  4981. source: "./media/characters/sigvald/dick.svg"
  4982. }
  4983. },
  4984. eye: {
  4985. height: math.unit(0.31, "feet"),
  4986. name: "Eye",
  4987. image: {
  4988. source: "./media/characters/sigvald/eye.svg"
  4989. }
  4990. },
  4991. mouth: {
  4992. height: math.unit(0.92, "feet"),
  4993. name: "Mouth",
  4994. image: {
  4995. source: "./media/characters/sigvald/mouth.svg"
  4996. }
  4997. },
  4998. paws: {
  4999. height: math.unit(2.2, "feet"),
  5000. name: "Paws",
  5001. image: {
  5002. source: "./media/characters/sigvald/paws.svg"
  5003. }
  5004. }
  5005. },
  5006. [
  5007. {
  5008. name: "Normal",
  5009. height: math.unit(8, "feet")
  5010. },
  5011. {
  5012. name: "Large",
  5013. height: math.unit(12, "feet")
  5014. },
  5015. {
  5016. name: "Larger",
  5017. height: math.unit(20, "feet")
  5018. },
  5019. {
  5020. name: "Macro",
  5021. height: math.unit(150, "feet")
  5022. },
  5023. {
  5024. name: "Macro+",
  5025. height: math.unit(200, "feet"),
  5026. default: true
  5027. },
  5028. ]
  5029. ))
  5030. characterMakers.push(() => makeCharacter(
  5031. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5032. {
  5033. side: {
  5034. height: math.unit(12, "feet"),
  5035. weight: math.unit(2000, "kg"),
  5036. name: "Side",
  5037. image: {
  5038. source: "./media/characters/scott/side.svg",
  5039. extra: 754 / 724,
  5040. bottom: 0.069
  5041. }
  5042. },
  5043. upright: {
  5044. height: math.unit(12, "feet"),
  5045. weight: math.unit(2000, "kg"),
  5046. name: "Upright",
  5047. image: {
  5048. source: "./media/characters/scott/upright.svg",
  5049. extra: 3881 / 3722,
  5050. bottom: 0.05
  5051. }
  5052. },
  5053. },
  5054. [
  5055. {
  5056. name: "Normal",
  5057. height: math.unit(12, "feet"),
  5058. default: true
  5059. },
  5060. ]
  5061. ))
  5062. characterMakers.push(() => makeCharacter(
  5063. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5064. {
  5065. side: {
  5066. height: math.unit(8, "meters"),
  5067. weight: math.unit(84755, "lbs"),
  5068. name: "Side",
  5069. image: {
  5070. source: "./media/characters/tobias/side.svg",
  5071. extra: 1474 / 1096,
  5072. bottom: 38.9 / 1513.1235
  5073. }
  5074. },
  5075. },
  5076. [
  5077. {
  5078. name: "Normal",
  5079. height: math.unit(8, "meters"),
  5080. default: true
  5081. },
  5082. ]
  5083. ))
  5084. characterMakers.push(() => makeCharacter(
  5085. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5086. {
  5087. front: {
  5088. height: math.unit(5.5, "feet"),
  5089. weight: math.unit(400, "lbs"),
  5090. name: "Front",
  5091. image: {
  5092. source: "./media/characters/kieran/front.svg",
  5093. extra: 2694 / 2364,
  5094. bottom: 217 / 2908
  5095. }
  5096. },
  5097. side: {
  5098. height: math.unit(5.5, "feet"),
  5099. weight: math.unit(400, "lbs"),
  5100. name: "Side",
  5101. image: {
  5102. source: "./media/characters/kieran/side.svg",
  5103. extra: 875 / 777,
  5104. bottom: 84.6 / 959
  5105. }
  5106. },
  5107. },
  5108. [
  5109. {
  5110. name: "Normal",
  5111. height: math.unit(5.5, "feet"),
  5112. default: true
  5113. },
  5114. ]
  5115. ))
  5116. characterMakers.push(() => makeCharacter(
  5117. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5118. {
  5119. side: {
  5120. height: math.unit(2, "meters"),
  5121. weight: math.unit(70, "kg"),
  5122. name: "Side",
  5123. image: {
  5124. source: "./media/characters/sanya/side.svg",
  5125. bottom: 0.02,
  5126. extra: 1.02
  5127. }
  5128. },
  5129. },
  5130. [
  5131. {
  5132. name: "Small",
  5133. height: math.unit(2, "meters")
  5134. },
  5135. {
  5136. name: "Normal",
  5137. height: math.unit(3, "meters")
  5138. },
  5139. {
  5140. name: "Macro",
  5141. height: math.unit(16, "meters"),
  5142. default: true
  5143. },
  5144. ]
  5145. ))
  5146. characterMakers.push(() => makeCharacter(
  5147. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5148. {
  5149. front: {
  5150. height: math.unit(2, "meters"),
  5151. weight: math.unit(120, "kg"),
  5152. name: "Front",
  5153. image: {
  5154. source: "./media/characters/miranda/front.svg",
  5155. extra: 195 / 185,
  5156. bottom: 10.9 / 206.5
  5157. }
  5158. },
  5159. back: {
  5160. height: math.unit(2, "meters"),
  5161. weight: math.unit(120, "kg"),
  5162. name: "Back",
  5163. image: {
  5164. source: "./media/characters/miranda/back.svg",
  5165. extra: 201 / 193,
  5166. bottom: 2.3 / 203.7
  5167. }
  5168. },
  5169. },
  5170. [
  5171. {
  5172. name: "Normal",
  5173. height: math.unit(10, "feet"),
  5174. default: true
  5175. }
  5176. ]
  5177. ))
  5178. characterMakers.push(() => makeCharacter(
  5179. { name: "James", species: ["deer"], tags: ["anthro"] },
  5180. {
  5181. side: {
  5182. height: math.unit(2, "meters"),
  5183. weight: math.unit(100, "kg"),
  5184. name: "Front",
  5185. image: {
  5186. source: "./media/characters/james/front.svg",
  5187. extra: 10 / 8.5
  5188. }
  5189. },
  5190. },
  5191. [
  5192. {
  5193. name: "Normal",
  5194. height: math.unit(8.5, "feet"),
  5195. default: true
  5196. }
  5197. ]
  5198. ))
  5199. characterMakers.push(() => makeCharacter(
  5200. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5201. {
  5202. side: {
  5203. height: math.unit(9.5, "feet"),
  5204. weight: math.unit(2500, "lbs"),
  5205. name: "Side",
  5206. image: {
  5207. source: "./media/characters/heather/side.svg"
  5208. }
  5209. },
  5210. },
  5211. [
  5212. {
  5213. name: "Normal",
  5214. height: math.unit(9.5, "feet"),
  5215. default: true
  5216. }
  5217. ]
  5218. ))
  5219. characterMakers.push(() => makeCharacter(
  5220. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5221. {
  5222. side: {
  5223. height: math.unit(6.5, "feet"),
  5224. weight: math.unit(400, "lbs"),
  5225. name: "Side",
  5226. image: {
  5227. source: "./media/characters/lukas/side.svg",
  5228. extra: 7.25 / 6.5
  5229. }
  5230. },
  5231. },
  5232. [
  5233. {
  5234. name: "Normal",
  5235. height: math.unit(6.5, "feet"),
  5236. default: true
  5237. }
  5238. ]
  5239. ))
  5240. characterMakers.push(() => makeCharacter(
  5241. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5242. {
  5243. side: {
  5244. height: math.unit(5, "feet"),
  5245. weight: math.unit(3000, "lbs"),
  5246. name: "Side",
  5247. image: {
  5248. source: "./media/characters/louise/side.svg"
  5249. }
  5250. },
  5251. },
  5252. [
  5253. {
  5254. name: "Normal",
  5255. height: math.unit(5, "feet"),
  5256. default: true
  5257. }
  5258. ]
  5259. ))
  5260. characterMakers.push(() => makeCharacter(
  5261. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5262. {
  5263. side: {
  5264. height: math.unit(6, "feet"),
  5265. weight: math.unit(150, "lbs"),
  5266. name: "Side",
  5267. image: {
  5268. source: "./media/characters/ramona/side.svg"
  5269. }
  5270. },
  5271. },
  5272. [
  5273. {
  5274. name: "Normal",
  5275. height: math.unit(5.3, "meters"),
  5276. default: true
  5277. },
  5278. {
  5279. name: "Macro",
  5280. height: math.unit(20, "stories")
  5281. },
  5282. {
  5283. name: "Macro+",
  5284. height: math.unit(50, "stories")
  5285. },
  5286. ]
  5287. ))
  5288. characterMakers.push(() => makeCharacter(
  5289. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5290. {
  5291. standing: {
  5292. height: math.unit(5.75, "feet"),
  5293. weight: math.unit(160, "lbs"),
  5294. name: "Standing",
  5295. image: {
  5296. source: "./media/characters/deerpuff/standing.svg",
  5297. extra: 682 / 624
  5298. }
  5299. },
  5300. sitting: {
  5301. height: math.unit(5.75 / 1.79, "feet"),
  5302. weight: math.unit(160, "lbs"),
  5303. name: "Sitting",
  5304. image: {
  5305. source: "./media/characters/deerpuff/sitting.svg",
  5306. bottom: 44 / 400,
  5307. extra: 1
  5308. }
  5309. },
  5310. taurLaying: {
  5311. height: math.unit(6, "feet"),
  5312. weight: math.unit(400, "lbs"),
  5313. name: "Taur (Laying)",
  5314. image: {
  5315. source: "./media/characters/deerpuff/taur-laying.svg"
  5316. }
  5317. },
  5318. },
  5319. [
  5320. {
  5321. name: "Puffball",
  5322. height: math.unit(6, "inches")
  5323. },
  5324. {
  5325. name: "Normalpuff",
  5326. height: math.unit(5.75, "feet")
  5327. },
  5328. {
  5329. name: "Macropuff",
  5330. height: math.unit(1500, "feet"),
  5331. default: true
  5332. },
  5333. {
  5334. name: "Megapuff",
  5335. height: math.unit(500, "miles")
  5336. },
  5337. {
  5338. name: "Gigapuff",
  5339. height: math.unit(250000, "miles")
  5340. },
  5341. {
  5342. name: "Omegapuff",
  5343. height: math.unit(1000, "lightyears")
  5344. },
  5345. ]
  5346. ))
  5347. characterMakers.push(() => makeCharacter(
  5348. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5349. {
  5350. stomping: {
  5351. height: math.unit(6, "feet"),
  5352. weight: math.unit(170, "lbs"),
  5353. name: "Stomping",
  5354. image: {
  5355. source: "./media/characters/vivian/stomping.svg"
  5356. }
  5357. },
  5358. sitting: {
  5359. height: math.unit(6 / 1.75, "feet"),
  5360. weight: math.unit(170, "lbs"),
  5361. name: "Sitting",
  5362. image: {
  5363. source: "./media/characters/vivian/sitting.svg",
  5364. bottom: 1 / 6.4,
  5365. extra: 1,
  5366. }
  5367. },
  5368. },
  5369. [
  5370. {
  5371. name: "Normal",
  5372. height: math.unit(7, "feet"),
  5373. default: true
  5374. },
  5375. {
  5376. name: "Macro",
  5377. height: math.unit(10, "stories")
  5378. },
  5379. {
  5380. name: "Macro+",
  5381. height: math.unit(30, "stories")
  5382. },
  5383. {
  5384. name: "Megamacro",
  5385. height: math.unit(10, "miles")
  5386. },
  5387. {
  5388. name: "Megamacro+",
  5389. height: math.unit(2750000, "meters")
  5390. },
  5391. ]
  5392. ))
  5393. characterMakers.push(() => makeCharacter(
  5394. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5395. {
  5396. front: {
  5397. height: math.unit(6, "feet"),
  5398. weight: math.unit(160, "lbs"),
  5399. name: "Front",
  5400. image: {
  5401. source: "./media/characters/prince/front.svg",
  5402. extra: 3400 / 3000
  5403. }
  5404. },
  5405. jumping: {
  5406. height: math.unit(6, "feet"),
  5407. weight: math.unit(160, "lbs"),
  5408. name: "Jumping",
  5409. image: {
  5410. source: "./media/characters/prince/jump.svg",
  5411. extra: 2555 / 2134
  5412. }
  5413. },
  5414. },
  5415. [
  5416. {
  5417. name: "Normal",
  5418. height: math.unit(7.75, "feet"),
  5419. default: true
  5420. },
  5421. {
  5422. name: "Not cute",
  5423. height: math.unit(17, "feet")
  5424. },
  5425. {
  5426. name: "I said NOT",
  5427. height: math.unit(91, "feet")
  5428. },
  5429. {
  5430. name: "Please stop",
  5431. height: math.unit(560, "feet")
  5432. },
  5433. {
  5434. name: "What have you done",
  5435. height: math.unit(2200, "feet")
  5436. },
  5437. {
  5438. name: "Deer God",
  5439. height: math.unit(3.6, "miles")
  5440. },
  5441. ]
  5442. ))
  5443. characterMakers.push(() => makeCharacter(
  5444. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5445. {
  5446. standing: {
  5447. height: math.unit(6, "feet"),
  5448. weight: math.unit(300, "lbs"),
  5449. name: "Standing",
  5450. image: {
  5451. source: "./media/characters/psymon/standing.svg",
  5452. extra: 1888 / 1810,
  5453. bottom: 0.05
  5454. }
  5455. },
  5456. slithering: {
  5457. height: math.unit(6, "feet"),
  5458. weight: math.unit(300, "lbs"),
  5459. name: "Slithering",
  5460. image: {
  5461. source: "./media/characters/psymon/slithering.svg",
  5462. extra: 1330 / 1224
  5463. }
  5464. },
  5465. slitheringAlt: {
  5466. height: math.unit(6, "feet"),
  5467. weight: math.unit(300, "lbs"),
  5468. name: "Slithering (Alt)",
  5469. image: {
  5470. source: "./media/characters/psymon/slithering-alt.svg",
  5471. extra: 1330 / 1224
  5472. }
  5473. },
  5474. },
  5475. [
  5476. {
  5477. name: "Normal",
  5478. height: math.unit(11.25, "feet"),
  5479. default: true
  5480. },
  5481. {
  5482. name: "Large",
  5483. height: math.unit(27, "feet")
  5484. },
  5485. {
  5486. name: "Giant",
  5487. height: math.unit(87, "feet")
  5488. },
  5489. {
  5490. name: "Macro",
  5491. height: math.unit(365, "feet")
  5492. },
  5493. {
  5494. name: "Megamacro",
  5495. height: math.unit(3, "miles")
  5496. },
  5497. {
  5498. name: "World Serpent",
  5499. height: math.unit(8000, "miles")
  5500. },
  5501. ]
  5502. ))
  5503. characterMakers.push(() => makeCharacter(
  5504. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5505. {
  5506. front: {
  5507. height: math.unit(6, "feet"),
  5508. weight: math.unit(180, "lbs"),
  5509. name: "Front",
  5510. image: {
  5511. source: "./media/characters/daimos/front.svg",
  5512. extra: 4160 / 3897,
  5513. bottom: 0.021
  5514. }
  5515. }
  5516. },
  5517. [
  5518. {
  5519. name: "Normal",
  5520. height: math.unit(8, "feet"),
  5521. default: true
  5522. },
  5523. {
  5524. name: "Big Dog",
  5525. height: math.unit(22, "feet")
  5526. },
  5527. {
  5528. name: "Macro",
  5529. height: math.unit(127, "feet")
  5530. },
  5531. {
  5532. name: "Megamacro",
  5533. height: math.unit(3600, "feet")
  5534. },
  5535. ]
  5536. ))
  5537. characterMakers.push(() => makeCharacter(
  5538. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5539. {
  5540. side: {
  5541. height: math.unit(6, "feet"),
  5542. weight: math.unit(180, "lbs"),
  5543. name: "Side",
  5544. image: {
  5545. source: "./media/characters/blake/side.svg",
  5546. extra: 1212 / 1120,
  5547. bottom: 0.05
  5548. }
  5549. },
  5550. crouched: {
  5551. height: math.unit(6 * 0.57, "feet"),
  5552. weight: math.unit(180, "lbs"),
  5553. name: "Crouched",
  5554. image: {
  5555. source: "./media/characters/blake/crouched.svg",
  5556. extra: 840 / 587,
  5557. bottom: 0.04
  5558. }
  5559. },
  5560. bent: {
  5561. height: math.unit(6 * 0.75, "feet"),
  5562. weight: math.unit(180, "lbs"),
  5563. name: "Bent",
  5564. image: {
  5565. source: "./media/characters/blake/bent.svg",
  5566. extra: 592 / 544,
  5567. bottom: 0.035
  5568. }
  5569. },
  5570. },
  5571. [
  5572. {
  5573. name: "Normal",
  5574. height: math.unit(8 + 1 / 6, "feet"),
  5575. default: true
  5576. },
  5577. {
  5578. name: "Big Backside",
  5579. height: math.unit(37, "feet")
  5580. },
  5581. {
  5582. name: "Subway Shredder",
  5583. height: math.unit(72, "feet")
  5584. },
  5585. {
  5586. name: "City Carver",
  5587. height: math.unit(1675, "feet")
  5588. },
  5589. {
  5590. name: "Tectonic Tweaker",
  5591. height: math.unit(2300, "miles")
  5592. },
  5593. ]
  5594. ))
  5595. characterMakers.push(() => makeCharacter(
  5596. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5597. {
  5598. front: {
  5599. height: math.unit(6, "feet"),
  5600. weight: math.unit(180, "lbs"),
  5601. name: "Front",
  5602. image: {
  5603. source: "./media/characters/guisetto/front.svg",
  5604. extra: 856 / 817,
  5605. bottom: 0.06
  5606. }
  5607. },
  5608. airborne: {
  5609. height: math.unit(6, "feet"),
  5610. weight: math.unit(180, "lbs"),
  5611. name: "Airborne",
  5612. image: {
  5613. source: "./media/characters/guisetto/airborne.svg",
  5614. extra: 584 / 525
  5615. }
  5616. },
  5617. },
  5618. [
  5619. {
  5620. name: "Normal",
  5621. height: math.unit(10 + 11 / 12, "feet"),
  5622. default: true
  5623. },
  5624. {
  5625. name: "Large",
  5626. height: math.unit(35, "feet")
  5627. },
  5628. {
  5629. name: "Macro",
  5630. height: math.unit(475, "feet")
  5631. },
  5632. ]
  5633. ))
  5634. characterMakers.push(() => makeCharacter(
  5635. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5636. {
  5637. front: {
  5638. height: math.unit(6, "feet"),
  5639. weight: math.unit(180, "lbs"),
  5640. name: "Front",
  5641. image: {
  5642. source: "./media/characters/luxor/front.svg",
  5643. extra: 2940 / 2152
  5644. }
  5645. },
  5646. back: {
  5647. height: math.unit(6, "feet"),
  5648. weight: math.unit(180, "lbs"),
  5649. name: "Back",
  5650. image: {
  5651. source: "./media/characters/luxor/back.svg",
  5652. extra: 1083 / 960
  5653. }
  5654. },
  5655. },
  5656. [
  5657. {
  5658. name: "Normal",
  5659. height: math.unit(5 + 5 / 6, "feet"),
  5660. default: true
  5661. },
  5662. {
  5663. name: "Lamp",
  5664. height: math.unit(50, "feet")
  5665. },
  5666. {
  5667. name: "Lämp",
  5668. height: math.unit(300, "feet")
  5669. },
  5670. {
  5671. name: "The sun is a lamp",
  5672. height: math.unit(250000, "miles")
  5673. },
  5674. ]
  5675. ))
  5676. characterMakers.push(() => makeCharacter(
  5677. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5678. {
  5679. front: {
  5680. height: math.unit(6, "feet"),
  5681. weight: math.unit(50, "lbs"),
  5682. name: "Front",
  5683. image: {
  5684. source: "./media/characters/huoyan/front.svg"
  5685. }
  5686. },
  5687. side: {
  5688. height: math.unit(6, "feet"),
  5689. weight: math.unit(180, "lbs"),
  5690. name: "Side",
  5691. image: {
  5692. source: "./media/characters/huoyan/side.svg"
  5693. }
  5694. },
  5695. },
  5696. [
  5697. {
  5698. name: "Chef",
  5699. height: math.unit(9, "feet")
  5700. },
  5701. {
  5702. name: "Normal",
  5703. height: math.unit(65, "feet"),
  5704. default: true
  5705. },
  5706. {
  5707. name: "Macro",
  5708. height: math.unit(780, "feet")
  5709. },
  5710. {
  5711. name: "Flaming Mountain",
  5712. height: math.unit(4.8, "miles")
  5713. },
  5714. {
  5715. name: "Celestial",
  5716. height: math.unit(765000, "miles")
  5717. },
  5718. ]
  5719. ))
  5720. characterMakers.push(() => makeCharacter(
  5721. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5722. {
  5723. front: {
  5724. height: math.unit(5 + 3 / 4, "feet"),
  5725. weight: math.unit(120, "lbs"),
  5726. name: "Front",
  5727. image: {
  5728. source: "./media/characters/tails/front.svg"
  5729. }
  5730. }
  5731. },
  5732. [
  5733. {
  5734. name: "Normal",
  5735. height: math.unit(5 + 3 / 4, "feet"),
  5736. default: true
  5737. }
  5738. ]
  5739. ))
  5740. characterMakers.push(() => makeCharacter(
  5741. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5742. {
  5743. front: {
  5744. height: math.unit(4, "feet"),
  5745. weight: math.unit(50, "lbs"),
  5746. name: "Front",
  5747. image: {
  5748. source: "./media/characters/rainy/front.svg"
  5749. }
  5750. }
  5751. },
  5752. [
  5753. {
  5754. name: "Macro",
  5755. height: math.unit(800, "feet"),
  5756. default: true
  5757. }
  5758. ]
  5759. ))
  5760. characterMakers.push(() => makeCharacter(
  5761. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5762. {
  5763. front: {
  5764. height: math.unit(6, "feet"),
  5765. weight: math.unit(150, "lbs"),
  5766. name: "Front",
  5767. image: {
  5768. source: "./media/characters/rainier/front.svg"
  5769. }
  5770. }
  5771. },
  5772. [
  5773. {
  5774. name: "Micro",
  5775. height: math.unit(2, "mm"),
  5776. default: true
  5777. }
  5778. ]
  5779. ))
  5780. characterMakers.push(() => makeCharacter(
  5781. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5782. {
  5783. front: {
  5784. height: math.unit(8 + 4/12, "feet"),
  5785. name: "Front",
  5786. image: {
  5787. source: "./media/characters/andy-renard/front.svg",
  5788. extra: 1839/1726,
  5789. bottom: 134/1973
  5790. }
  5791. },
  5792. back: {
  5793. height: math.unit(8 + 4/12, "feet"),
  5794. name: "Back",
  5795. image: {
  5796. source: "./media/characters/andy-renard/back.svg",
  5797. extra: 1838/1710,
  5798. bottom: 105/1943
  5799. }
  5800. },
  5801. },
  5802. [
  5803. {
  5804. name: "Tall",
  5805. height: math.unit(8 + 4/12, "feet")
  5806. },
  5807. {
  5808. name: "Mini Macro",
  5809. height: math.unit(15, "feet"),
  5810. default: true
  5811. },
  5812. {
  5813. name: "Macro",
  5814. height: math.unit(100, "feet")
  5815. },
  5816. {
  5817. name: "Mega Macro",
  5818. height: math.unit(1000, "feet")
  5819. },
  5820. {
  5821. name: "Giga Macro",
  5822. height: math.unit(10, "miles")
  5823. },
  5824. {
  5825. name: "God Macro",
  5826. height: math.unit(1, "multiverse")
  5827. },
  5828. ]
  5829. ))
  5830. characterMakers.push(() => makeCharacter(
  5831. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5832. {
  5833. front: {
  5834. height: math.unit(6, "feet"),
  5835. weight: math.unit(210, "lbs"),
  5836. name: "Front",
  5837. image: {
  5838. source: "./media/characters/cimmaron/front-sfw.svg",
  5839. extra: 701 / 676,
  5840. bottom: 0.046
  5841. }
  5842. },
  5843. back: {
  5844. height: math.unit(6, "feet"),
  5845. weight: math.unit(210, "lbs"),
  5846. name: "Back",
  5847. image: {
  5848. source: "./media/characters/cimmaron/back-sfw.svg",
  5849. extra: 701 / 676,
  5850. bottom: 0.046
  5851. }
  5852. },
  5853. frontNsfw: {
  5854. height: math.unit(6, "feet"),
  5855. weight: math.unit(210, "lbs"),
  5856. name: "Front (NSFW)",
  5857. image: {
  5858. source: "./media/characters/cimmaron/front-nsfw.svg",
  5859. extra: 701 / 676,
  5860. bottom: 0.046
  5861. }
  5862. },
  5863. backNsfw: {
  5864. height: math.unit(6, "feet"),
  5865. weight: math.unit(210, "lbs"),
  5866. name: "Back (NSFW)",
  5867. image: {
  5868. source: "./media/characters/cimmaron/back-nsfw.svg",
  5869. extra: 701 / 676,
  5870. bottom: 0.046
  5871. }
  5872. },
  5873. dick: {
  5874. height: math.unit(1.714, "feet"),
  5875. name: "Dick",
  5876. image: {
  5877. source: "./media/characters/cimmaron/dick.svg"
  5878. }
  5879. },
  5880. },
  5881. [
  5882. {
  5883. name: "Normal",
  5884. height: math.unit(6, "feet"),
  5885. default: true
  5886. },
  5887. {
  5888. name: "Macro Mayor",
  5889. height: math.unit(350, "meters")
  5890. },
  5891. ]
  5892. ))
  5893. characterMakers.push(() => makeCharacter(
  5894. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5895. {
  5896. front: {
  5897. height: math.unit(6, "feet"),
  5898. weight: math.unit(200, "lbs"),
  5899. name: "Front",
  5900. image: {
  5901. source: "./media/characters/akari/front.svg",
  5902. extra: 962 / 901,
  5903. bottom: 0.04
  5904. }
  5905. }
  5906. },
  5907. [
  5908. {
  5909. name: "Micro",
  5910. height: math.unit(5, "inches"),
  5911. default: true
  5912. },
  5913. {
  5914. name: "Normal",
  5915. height: math.unit(7, "feet")
  5916. },
  5917. ]
  5918. ))
  5919. characterMakers.push(() => makeCharacter(
  5920. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5921. {
  5922. front: {
  5923. height: math.unit(6, "feet"),
  5924. weight: math.unit(140, "lbs"),
  5925. name: "Front",
  5926. image: {
  5927. source: "./media/characters/cynosura/front.svg",
  5928. extra: 896 / 847
  5929. }
  5930. },
  5931. back: {
  5932. height: math.unit(6, "feet"),
  5933. weight: math.unit(140, "lbs"),
  5934. name: "Back",
  5935. image: {
  5936. source: "./media/characters/cynosura/back.svg",
  5937. extra: 1365 / 1250
  5938. }
  5939. },
  5940. },
  5941. [
  5942. {
  5943. name: "Micro",
  5944. height: math.unit(4, "inches")
  5945. },
  5946. {
  5947. name: "Normal",
  5948. height: math.unit(5.75, "feet"),
  5949. default: true
  5950. },
  5951. {
  5952. name: "Tall",
  5953. height: math.unit(10, "feet")
  5954. },
  5955. {
  5956. name: "Big",
  5957. height: math.unit(20, "feet")
  5958. },
  5959. {
  5960. name: "Macro",
  5961. height: math.unit(50, "feet")
  5962. },
  5963. ]
  5964. ))
  5965. characterMakers.push(() => makeCharacter(
  5966. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5967. {
  5968. front: {
  5969. height: math.unit(13 + 2/12, "feet"),
  5970. weight: math.unit(800, "kg"),
  5971. name: "Front",
  5972. image: {
  5973. source: "./media/characters/gin/front.svg",
  5974. extra: 1312/1191,
  5975. bottom: 45/1357
  5976. }
  5977. },
  5978. mouth: {
  5979. height: math.unit(2.39 * 1.8, "feet"),
  5980. name: "Mouth",
  5981. image: {
  5982. source: "./media/characters/gin/mouth.svg"
  5983. }
  5984. },
  5985. hand: {
  5986. height: math.unit(1.57 * 2.19, "feet"),
  5987. name: "Hand",
  5988. image: {
  5989. source: "./media/characters/gin/hand.svg"
  5990. }
  5991. },
  5992. foot: {
  5993. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5994. name: "Foot",
  5995. image: {
  5996. source: "./media/characters/gin/foot.svg"
  5997. }
  5998. },
  5999. sole: {
  6000. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6001. name: "Sole",
  6002. image: {
  6003. source: "./media/characters/gin/sole.svg"
  6004. }
  6005. },
  6006. },
  6007. [
  6008. {
  6009. name: "Very Small",
  6010. height: math.unit(13 + 2 / 12, "feet")
  6011. },
  6012. {
  6013. name: "Micro",
  6014. height: math.unit(600, "miles")
  6015. },
  6016. {
  6017. name: "Regular",
  6018. height: math.unit(20, "earths"),
  6019. default: true
  6020. },
  6021. {
  6022. name: "Macro",
  6023. height: math.unit(2.2, "solarradii")
  6024. },
  6025. {
  6026. name: "Teramacro",
  6027. height: math.unit(1.2, "galaxies")
  6028. },
  6029. {
  6030. name: "Omegamacro",
  6031. height: math.unit(200, "universes")
  6032. },
  6033. ]
  6034. ))
  6035. characterMakers.push(() => makeCharacter(
  6036. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6037. {
  6038. front: {
  6039. height: math.unit(6 + 1 / 6, "feet"),
  6040. weight: math.unit(178, "lbs"),
  6041. name: "Front",
  6042. image: {
  6043. source: "./media/characters/guy/front.svg"
  6044. }
  6045. }
  6046. },
  6047. [
  6048. {
  6049. name: "Normal",
  6050. height: math.unit(6 + 1 / 6, "feet"),
  6051. default: true
  6052. },
  6053. {
  6054. name: "Large",
  6055. height: math.unit(25 + 7 / 12, "feet")
  6056. },
  6057. {
  6058. name: "Macro",
  6059. height: math.unit(60 + 9 / 12, "feet")
  6060. },
  6061. {
  6062. name: "Macro+",
  6063. height: math.unit(246, "feet")
  6064. },
  6065. {
  6066. name: "Macro++",
  6067. height: math.unit(878, "feet")
  6068. }
  6069. ]
  6070. ))
  6071. characterMakers.push(() => makeCharacter(
  6072. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6073. {
  6074. front: {
  6075. height: math.unit(9, "feet"),
  6076. weight: math.unit(800, "lbs"),
  6077. name: "Front",
  6078. image: {
  6079. source: "./media/characters/tiberius/front.svg",
  6080. extra: 2295 / 2071
  6081. }
  6082. },
  6083. back: {
  6084. height: math.unit(9, "feet"),
  6085. weight: math.unit(800, "lbs"),
  6086. name: "Back",
  6087. image: {
  6088. source: "./media/characters/tiberius/back.svg",
  6089. extra: 2373 / 2160
  6090. }
  6091. },
  6092. },
  6093. [
  6094. {
  6095. name: "Normal",
  6096. height: math.unit(9, "feet"),
  6097. default: true
  6098. }
  6099. ]
  6100. ))
  6101. characterMakers.push(() => makeCharacter(
  6102. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6103. {
  6104. front: {
  6105. height: math.unit(6, "feet"),
  6106. weight: math.unit(600, "lbs"),
  6107. name: "Front",
  6108. image: {
  6109. source: "./media/characters/surgo/front.svg",
  6110. extra: 3591 / 2227
  6111. }
  6112. },
  6113. back: {
  6114. height: math.unit(6, "feet"),
  6115. weight: math.unit(600, "lbs"),
  6116. name: "Back",
  6117. image: {
  6118. source: "./media/characters/surgo/back.svg",
  6119. extra: 3557 / 2228
  6120. }
  6121. },
  6122. laying: {
  6123. height: math.unit(6 * 0.85, "feet"),
  6124. weight: math.unit(600, "lbs"),
  6125. name: "Laying",
  6126. image: {
  6127. source: "./media/characters/surgo/laying.svg"
  6128. }
  6129. },
  6130. },
  6131. [
  6132. {
  6133. name: "Normal",
  6134. height: math.unit(6, "feet"),
  6135. default: true
  6136. }
  6137. ]
  6138. ))
  6139. characterMakers.push(() => makeCharacter(
  6140. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6141. {
  6142. side: {
  6143. height: math.unit(6, "feet"),
  6144. weight: math.unit(150, "lbs"),
  6145. name: "Side",
  6146. image: {
  6147. source: "./media/characters/cibus/side.svg",
  6148. extra: 800 / 400
  6149. }
  6150. },
  6151. },
  6152. [
  6153. {
  6154. name: "Normal",
  6155. height: math.unit(6, "feet"),
  6156. default: true
  6157. }
  6158. ]
  6159. ))
  6160. characterMakers.push(() => makeCharacter(
  6161. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6162. {
  6163. front: {
  6164. height: math.unit(6, "feet"),
  6165. weight: math.unit(240, "lbs"),
  6166. name: "Front",
  6167. image: {
  6168. source: "./media/characters/nibbles/front.svg"
  6169. }
  6170. },
  6171. side: {
  6172. height: math.unit(6, "feet"),
  6173. weight: math.unit(240, "lbs"),
  6174. name: "Side",
  6175. image: {
  6176. source: "./media/characters/nibbles/side.svg"
  6177. }
  6178. },
  6179. },
  6180. [
  6181. {
  6182. name: "Normal",
  6183. height: math.unit(9, "feet"),
  6184. default: true
  6185. }
  6186. ]
  6187. ))
  6188. characterMakers.push(() => makeCharacter(
  6189. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6190. {
  6191. side: {
  6192. height: math.unit(5 + 1 / 6, "feet"),
  6193. weight: math.unit(130, "lbs"),
  6194. name: "Side",
  6195. image: {
  6196. source: "./media/characters/rikky/side.svg",
  6197. extra: 851 / 801
  6198. }
  6199. },
  6200. },
  6201. [
  6202. {
  6203. name: "Normal",
  6204. height: math.unit(5 + 1 / 6, "feet")
  6205. },
  6206. {
  6207. name: "Macro",
  6208. height: math.unit(152, "feet"),
  6209. default: true
  6210. },
  6211. {
  6212. name: "Megamacro",
  6213. height: math.unit(7, "miles")
  6214. }
  6215. ]
  6216. ))
  6217. characterMakers.push(() => makeCharacter(
  6218. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6219. {
  6220. side: {
  6221. height: math.unit(370, "cm"),
  6222. weight: math.unit(350, "lbs"),
  6223. name: "Side",
  6224. image: {
  6225. source: "./media/characters/malfressa/side.svg"
  6226. }
  6227. },
  6228. walking: {
  6229. height: math.unit(370, "cm"),
  6230. weight: math.unit(350, "lbs"),
  6231. name: "Walking",
  6232. image: {
  6233. source: "./media/characters/malfressa/walking.svg"
  6234. }
  6235. },
  6236. feral: {
  6237. height: math.unit(2500, "cm"),
  6238. weight: math.unit(100000, "lbs"),
  6239. name: "Feral",
  6240. image: {
  6241. source: "./media/characters/malfressa/feral.svg",
  6242. extra: 2108 / 837,
  6243. bottom: 0.02
  6244. }
  6245. },
  6246. },
  6247. [
  6248. {
  6249. name: "Normal",
  6250. height: math.unit(370, "cm")
  6251. },
  6252. {
  6253. name: "Macro",
  6254. height: math.unit(300, "meters"),
  6255. default: true
  6256. }
  6257. ]
  6258. ))
  6259. characterMakers.push(() => makeCharacter(
  6260. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6261. {
  6262. front: {
  6263. height: math.unit(6, "feet"),
  6264. weight: math.unit(60, "kg"),
  6265. name: "Front",
  6266. image: {
  6267. source: "./media/characters/jaro/front.svg"
  6268. }
  6269. },
  6270. back: {
  6271. height: math.unit(6, "feet"),
  6272. weight: math.unit(60, "kg"),
  6273. name: "Back",
  6274. image: {
  6275. source: "./media/characters/jaro/back.svg"
  6276. }
  6277. },
  6278. },
  6279. [
  6280. {
  6281. name: "Micro",
  6282. height: math.unit(7, "inches")
  6283. },
  6284. {
  6285. name: "Normal",
  6286. height: math.unit(5.5, "feet"),
  6287. default: true
  6288. },
  6289. {
  6290. name: "Minimacro",
  6291. height: math.unit(20, "feet")
  6292. },
  6293. {
  6294. name: "Macro",
  6295. height: math.unit(200, "meters")
  6296. }
  6297. ]
  6298. ))
  6299. characterMakers.push(() => makeCharacter(
  6300. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6301. {
  6302. front: {
  6303. height: math.unit(6, "feet"),
  6304. weight: math.unit(195, "lb"),
  6305. name: "Front",
  6306. image: {
  6307. source: "./media/characters/rogue/front.svg"
  6308. }
  6309. },
  6310. },
  6311. [
  6312. {
  6313. name: "Macro",
  6314. height: math.unit(90, "feet"),
  6315. default: true
  6316. },
  6317. ]
  6318. ))
  6319. characterMakers.push(() => makeCharacter(
  6320. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6321. {
  6322. front: {
  6323. height: math.unit(5 + 8 / 12, "feet"),
  6324. weight: math.unit(140, "lb"),
  6325. name: "Front",
  6326. image: {
  6327. source: "./media/characters/piper/front.svg",
  6328. extra: 3948/3655,
  6329. bottom: 0/3948
  6330. }
  6331. },
  6332. },
  6333. [
  6334. {
  6335. name: "Micro",
  6336. height: math.unit(2, "inches")
  6337. },
  6338. {
  6339. name: "Normal",
  6340. height: math.unit(5 + 8 / 12, "feet")
  6341. },
  6342. {
  6343. name: "Macro",
  6344. height: math.unit(250, "feet"),
  6345. default: true
  6346. },
  6347. {
  6348. name: "Megamacro",
  6349. height: math.unit(7, "miles")
  6350. },
  6351. ]
  6352. ))
  6353. characterMakers.push(() => makeCharacter(
  6354. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6355. {
  6356. front: {
  6357. height: math.unit(6, "feet"),
  6358. weight: math.unit(220, "lb"),
  6359. name: "Front",
  6360. image: {
  6361. source: "./media/characters/gemini/front.svg"
  6362. }
  6363. },
  6364. back: {
  6365. height: math.unit(6, "feet"),
  6366. weight: math.unit(220, "lb"),
  6367. name: "Back",
  6368. image: {
  6369. source: "./media/characters/gemini/back.svg"
  6370. }
  6371. },
  6372. kneeling: {
  6373. height: math.unit(6 / 1.5, "feet"),
  6374. weight: math.unit(220, "lb"),
  6375. name: "Kneeling",
  6376. image: {
  6377. source: "./media/characters/gemini/kneeling.svg",
  6378. bottom: 0.02
  6379. }
  6380. },
  6381. },
  6382. [
  6383. {
  6384. name: "Macro",
  6385. height: math.unit(300, "meters"),
  6386. default: true
  6387. },
  6388. {
  6389. name: "Megamacro",
  6390. height: math.unit(6900, "meters")
  6391. },
  6392. ]
  6393. ))
  6394. characterMakers.push(() => makeCharacter(
  6395. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6396. {
  6397. anthro: {
  6398. height: math.unit(2.35, "meters"),
  6399. weight: math.unit(73, "kg"),
  6400. name: "Anthro",
  6401. image: {
  6402. source: "./media/characters/alicia/anthro.svg",
  6403. extra: 2571 / 2385,
  6404. bottom: 75 / 2648
  6405. }
  6406. },
  6407. paw: {
  6408. height: math.unit(1.32, "feet"),
  6409. name: "Paw",
  6410. image: {
  6411. source: "./media/characters/alicia/paw.svg"
  6412. }
  6413. },
  6414. feral: {
  6415. height: math.unit(1.69, "meters"),
  6416. weight: math.unit(73, "kg"),
  6417. name: "Feral",
  6418. image: {
  6419. source: "./media/characters/alicia/feral.svg",
  6420. extra: 2123 / 1715,
  6421. bottom: 222 / 2349
  6422. }
  6423. },
  6424. },
  6425. [
  6426. {
  6427. name: "Normal",
  6428. height: math.unit(2.35, "meters")
  6429. },
  6430. {
  6431. name: "Macro",
  6432. height: math.unit(60, "meters"),
  6433. default: true
  6434. },
  6435. {
  6436. name: "Megamacro",
  6437. height: math.unit(10000, "kilometers")
  6438. },
  6439. ]
  6440. ))
  6441. characterMakers.push(() => makeCharacter(
  6442. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6443. {
  6444. front: {
  6445. height: math.unit(7, "feet"),
  6446. weight: math.unit(250, "lbs"),
  6447. name: "Front",
  6448. image: {
  6449. source: "./media/characters/archy/front.svg"
  6450. }
  6451. }
  6452. },
  6453. [
  6454. {
  6455. name: "Micro",
  6456. height: math.unit(1, "inch")
  6457. },
  6458. {
  6459. name: "Shorty",
  6460. height: math.unit(5, "feet")
  6461. },
  6462. {
  6463. name: "Normal",
  6464. height: math.unit(7, "feet")
  6465. },
  6466. {
  6467. name: "Macro",
  6468. height: math.unit(600, "meters"),
  6469. default: true
  6470. },
  6471. {
  6472. name: "Megamacro",
  6473. height: math.unit(1, "mile")
  6474. },
  6475. ]
  6476. ))
  6477. characterMakers.push(() => makeCharacter(
  6478. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6479. {
  6480. front: {
  6481. height: math.unit(1.65, "meters"),
  6482. weight: math.unit(74, "kg"),
  6483. name: "Front",
  6484. image: {
  6485. source: "./media/characters/berri/front.svg",
  6486. extra: 857 / 837,
  6487. bottom: 18 / 877
  6488. }
  6489. },
  6490. bum: {
  6491. height: math.unit(1.46, "feet"),
  6492. name: "Bum",
  6493. image: {
  6494. source: "./media/characters/berri/bum.svg"
  6495. }
  6496. },
  6497. mouth: {
  6498. height: math.unit(0.44, "feet"),
  6499. name: "Mouth",
  6500. image: {
  6501. source: "./media/characters/berri/mouth.svg"
  6502. }
  6503. },
  6504. paw: {
  6505. height: math.unit(0.826, "feet"),
  6506. name: "Paw",
  6507. image: {
  6508. source: "./media/characters/berri/paw.svg"
  6509. }
  6510. },
  6511. },
  6512. [
  6513. {
  6514. name: "Normal",
  6515. height: math.unit(1.65, "meters")
  6516. },
  6517. {
  6518. name: "Macro",
  6519. height: math.unit(60, "m"),
  6520. default: true
  6521. },
  6522. {
  6523. name: "Megamacro",
  6524. height: math.unit(9.213, "km")
  6525. },
  6526. {
  6527. name: "Planet Eater",
  6528. height: math.unit(489, "megameters")
  6529. },
  6530. {
  6531. name: "Teramacro",
  6532. height: math.unit(2471635000000, "meters")
  6533. },
  6534. {
  6535. name: "Examacro",
  6536. height: math.unit(8.0624e+26, "meters")
  6537. }
  6538. ]
  6539. ))
  6540. characterMakers.push(() => makeCharacter(
  6541. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6542. {
  6543. front: {
  6544. height: math.unit(1.72, "meters"),
  6545. weight: math.unit(68, "kg"),
  6546. name: "Front",
  6547. image: {
  6548. source: "./media/characters/lexi/front.svg"
  6549. }
  6550. }
  6551. },
  6552. [
  6553. {
  6554. name: "Very Smol",
  6555. height: math.unit(10, "mm")
  6556. },
  6557. {
  6558. name: "Micro",
  6559. height: math.unit(6.8, "cm"),
  6560. default: true
  6561. },
  6562. {
  6563. name: "Normal",
  6564. height: math.unit(1.72, "m")
  6565. }
  6566. ]
  6567. ))
  6568. characterMakers.push(() => makeCharacter(
  6569. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6570. {
  6571. front: {
  6572. height: math.unit(1.69, "meters"),
  6573. weight: math.unit(68, "kg"),
  6574. name: "Front",
  6575. image: {
  6576. source: "./media/characters/martin/front.svg",
  6577. extra: 596 / 581
  6578. }
  6579. }
  6580. },
  6581. [
  6582. {
  6583. name: "Micro",
  6584. height: math.unit(6.85, "cm"),
  6585. default: true
  6586. },
  6587. {
  6588. name: "Normal",
  6589. height: math.unit(1.69, "m")
  6590. }
  6591. ]
  6592. ))
  6593. characterMakers.push(() => makeCharacter(
  6594. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6595. {
  6596. front: {
  6597. height: math.unit(1.69, "meters"),
  6598. weight: math.unit(68, "kg"),
  6599. name: "Front",
  6600. image: {
  6601. source: "./media/characters/juno/front.svg"
  6602. }
  6603. }
  6604. },
  6605. [
  6606. {
  6607. name: "Micro",
  6608. height: math.unit(7, "cm")
  6609. },
  6610. {
  6611. name: "Normal",
  6612. height: math.unit(1.89, "m")
  6613. },
  6614. {
  6615. name: "Macro",
  6616. height: math.unit(353, "meters"),
  6617. default: true
  6618. }
  6619. ]
  6620. ))
  6621. characterMakers.push(() => makeCharacter(
  6622. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6623. {
  6624. front: {
  6625. height: math.unit(1.93, "meters"),
  6626. weight: math.unit(83, "kg"),
  6627. name: "Front",
  6628. image: {
  6629. source: "./media/characters/samantha/front.svg"
  6630. }
  6631. },
  6632. frontClothed: {
  6633. height: math.unit(1.93, "meters"),
  6634. weight: math.unit(83, "kg"),
  6635. name: "Front (Clothed)",
  6636. image: {
  6637. source: "./media/characters/samantha/front-clothed.svg"
  6638. }
  6639. },
  6640. back: {
  6641. height: math.unit(1.93, "meters"),
  6642. weight: math.unit(83, "kg"),
  6643. name: "Back",
  6644. image: {
  6645. source: "./media/characters/samantha/back.svg"
  6646. }
  6647. },
  6648. },
  6649. [
  6650. {
  6651. name: "Normal",
  6652. height: math.unit(1.93, "m")
  6653. },
  6654. {
  6655. name: "Macro",
  6656. height: math.unit(74, "meters"),
  6657. default: true
  6658. },
  6659. {
  6660. name: "Macro+",
  6661. height: math.unit(223, "meters"),
  6662. },
  6663. {
  6664. name: "Megamacro",
  6665. height: math.unit(8381, "meters"),
  6666. },
  6667. {
  6668. name: "Megamacro+",
  6669. height: math.unit(12000, "kilometers")
  6670. },
  6671. ]
  6672. ))
  6673. characterMakers.push(() => makeCharacter(
  6674. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6675. {
  6676. front: {
  6677. height: math.unit(1.92, "meters"),
  6678. weight: math.unit(80, "kg"),
  6679. name: "Front",
  6680. image: {
  6681. source: "./media/characters/dr-clay/front.svg"
  6682. }
  6683. },
  6684. frontClothed: {
  6685. height: math.unit(1.92, "meters"),
  6686. weight: math.unit(80, "kg"),
  6687. name: "Front (Clothed)",
  6688. image: {
  6689. source: "./media/characters/dr-clay/front-clothed.svg"
  6690. }
  6691. }
  6692. },
  6693. [
  6694. {
  6695. name: "Normal",
  6696. height: math.unit(1.92, "m")
  6697. },
  6698. {
  6699. name: "Macro",
  6700. height: math.unit(214, "meters"),
  6701. default: true
  6702. },
  6703. {
  6704. name: "Macro+",
  6705. height: math.unit(12.237, "meters"),
  6706. },
  6707. {
  6708. name: "Megamacro",
  6709. height: math.unit(557, "megameters"),
  6710. },
  6711. {
  6712. name: "Unimaginable",
  6713. height: math.unit(120e9, "lightyears")
  6714. },
  6715. ]
  6716. ))
  6717. characterMakers.push(() => makeCharacter(
  6718. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6719. {
  6720. front: {
  6721. height: math.unit(2, "meters"),
  6722. weight: math.unit(80, "kg"),
  6723. name: "Front",
  6724. image: {
  6725. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6726. }
  6727. }
  6728. },
  6729. [
  6730. {
  6731. name: "Teramacro",
  6732. height: math.unit(500000, "lightyears"),
  6733. default: true
  6734. },
  6735. ]
  6736. ))
  6737. characterMakers.push(() => makeCharacter(
  6738. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6739. {
  6740. crux: {
  6741. height: math.unit(2, "meters"),
  6742. weight: math.unit(150, "kg"),
  6743. name: "Crux",
  6744. image: {
  6745. source: "./media/characters/vemus/crux.svg",
  6746. extra: 1074/936,
  6747. bottom: 23/1097
  6748. }
  6749. },
  6750. skunkTanuki: {
  6751. height: math.unit(2, "meters"),
  6752. weight: math.unit(150, "kg"),
  6753. name: "Skunk-Tanuki",
  6754. image: {
  6755. source: "./media/characters/vemus/skunk-tanuki.svg",
  6756. extra: 926/893,
  6757. bottom: 20/946
  6758. }
  6759. },
  6760. },
  6761. [
  6762. {
  6763. name: "Normal",
  6764. height: math.unit(3.75, "meters"),
  6765. default: true
  6766. },
  6767. {
  6768. name: "Big",
  6769. height: math.unit(8, "meters")
  6770. },
  6771. {
  6772. name: "Macro",
  6773. height: math.unit(100, "meters")
  6774. },
  6775. {
  6776. name: "Macro+",
  6777. height: math.unit(1500, "meters")
  6778. },
  6779. {
  6780. name: "Stellar",
  6781. height: math.unit(14e8, "meters")
  6782. },
  6783. ]
  6784. ))
  6785. characterMakers.push(() => makeCharacter(
  6786. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6787. {
  6788. front: {
  6789. height: math.unit(2, "meters"),
  6790. weight: math.unit(70, "kg"),
  6791. name: "Front",
  6792. image: {
  6793. source: "./media/characters/beherit/front.svg",
  6794. extra: 1408 / 1242
  6795. }
  6796. }
  6797. },
  6798. [
  6799. {
  6800. name: "Normal",
  6801. height: math.unit(6, "feet")
  6802. },
  6803. {
  6804. name: "Lorg",
  6805. height: math.unit(25, "feet"),
  6806. default: true
  6807. },
  6808. {
  6809. name: "Lorger",
  6810. height: math.unit(75, "feet")
  6811. },
  6812. {
  6813. name: "Macro",
  6814. height: math.unit(200, "meters")
  6815. },
  6816. ]
  6817. ))
  6818. characterMakers.push(() => makeCharacter(
  6819. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6820. {
  6821. front: {
  6822. height: math.unit(2, "meters"),
  6823. weight: math.unit(150, "kg"),
  6824. name: "Front",
  6825. image: {
  6826. source: "./media/characters/everett/front.svg",
  6827. extra: 2038 / 1737,
  6828. bottom: 0.03
  6829. }
  6830. },
  6831. paw: {
  6832. height: math.unit(2 / 3.6, "meters"),
  6833. name: "Paw",
  6834. image: {
  6835. source: "./media/characters/everett/paw.svg"
  6836. }
  6837. },
  6838. },
  6839. [
  6840. {
  6841. name: "Normal",
  6842. height: math.unit(15, "feet"),
  6843. default: true
  6844. },
  6845. {
  6846. name: "Lorg",
  6847. height: math.unit(70, "feet"),
  6848. default: true
  6849. },
  6850. {
  6851. name: "Lorger",
  6852. height: math.unit(250, "feet")
  6853. },
  6854. {
  6855. name: "Macro",
  6856. height: math.unit(500, "meters")
  6857. },
  6858. ]
  6859. ))
  6860. characterMakers.push(() => makeCharacter(
  6861. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6862. {
  6863. front: {
  6864. height: math.unit(2, "meters"),
  6865. weight: math.unit(86, "kg"),
  6866. name: "Front",
  6867. image: {
  6868. source: "./media/characters/rose/front.svg",
  6869. extra: 1785/1636,
  6870. bottom: 30/1815
  6871. }
  6872. },
  6873. frontSporty: {
  6874. height: math.unit(2, "meters"),
  6875. weight: math.unit(86, "kg"),
  6876. name: "Front (Sporty)",
  6877. image: {
  6878. source: "./media/characters/rose/front-sporty.svg",
  6879. extra: 350/335,
  6880. bottom: 10/360
  6881. }
  6882. },
  6883. frontAlt: {
  6884. height: math.unit(1.6, "meters"),
  6885. weight: math.unit(86, "kg"),
  6886. name: "Front (Alt)",
  6887. image: {
  6888. source: "./media/characters/rose/front-alt.svg",
  6889. extra: 299/283,
  6890. bottom: 3/302
  6891. }
  6892. },
  6893. plush: {
  6894. height: math.unit(2, "meters"),
  6895. weight: math.unit(86/3, "kg"),
  6896. name: "Plush",
  6897. image: {
  6898. source: "./media/characters/rose/plush.svg",
  6899. extra: 361/337,
  6900. bottom: 11/372
  6901. }
  6902. },
  6903. },
  6904. [
  6905. {
  6906. name: "True Micro",
  6907. height: math.unit(9, "cm")
  6908. },
  6909. {
  6910. name: "Micro",
  6911. height: math.unit(16, "cm")
  6912. },
  6913. {
  6914. name: "Normal",
  6915. height: math.unit(1.85, "meters"),
  6916. default: true
  6917. },
  6918. {
  6919. name: "Mini-Macro",
  6920. height: math.unit(5, "meters")
  6921. },
  6922. {
  6923. name: "Macro",
  6924. height: math.unit(15, "meters")
  6925. },
  6926. {
  6927. name: "True Macro",
  6928. height: math.unit(40, "meters")
  6929. },
  6930. {
  6931. name: "City Scale",
  6932. height: math.unit(1, "km")
  6933. },
  6934. ]
  6935. ))
  6936. characterMakers.push(() => makeCharacter(
  6937. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6938. {
  6939. front: {
  6940. height: math.unit(2, "meters"),
  6941. weight: math.unit(350, "lbs"),
  6942. name: "Front",
  6943. image: {
  6944. source: "./media/characters/regal/front.svg"
  6945. }
  6946. },
  6947. back: {
  6948. height: math.unit(2, "meters"),
  6949. weight: math.unit(350, "lbs"),
  6950. name: "Back",
  6951. image: {
  6952. source: "./media/characters/regal/back.svg"
  6953. }
  6954. },
  6955. },
  6956. [
  6957. {
  6958. name: "Macro",
  6959. height: math.unit(350, "feet"),
  6960. default: true
  6961. }
  6962. ]
  6963. ))
  6964. characterMakers.push(() => makeCharacter(
  6965. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6966. {
  6967. front: {
  6968. height: math.unit(4 + 11 / 12, "feet"),
  6969. weight: math.unit(100, "lbs"),
  6970. name: "Front",
  6971. image: {
  6972. source: "./media/characters/opal/front.svg"
  6973. }
  6974. },
  6975. frontAlt: {
  6976. height: math.unit(4 + 11 / 12, "feet"),
  6977. weight: math.unit(100, "lbs"),
  6978. name: "Front (Alt)",
  6979. image: {
  6980. source: "./media/characters/opal/front-alt.svg"
  6981. }
  6982. },
  6983. },
  6984. [
  6985. {
  6986. name: "Small",
  6987. height: math.unit(4 + 11 / 12, "feet")
  6988. },
  6989. {
  6990. name: "Normal",
  6991. height: math.unit(20, "feet"),
  6992. default: true
  6993. },
  6994. {
  6995. name: "Macro",
  6996. height: math.unit(120, "feet")
  6997. },
  6998. {
  6999. name: "Megamacro",
  7000. height: math.unit(80, "miles")
  7001. },
  7002. {
  7003. name: "True Size",
  7004. height: math.unit(100000, "lightyears")
  7005. },
  7006. ]
  7007. ))
  7008. characterMakers.push(() => makeCharacter(
  7009. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7010. {
  7011. front: {
  7012. height: math.unit(6, "feet"),
  7013. weight: math.unit(200, "lbs"),
  7014. name: "Front",
  7015. image: {
  7016. source: "./media/characters/vector-wuff/front.svg"
  7017. }
  7018. }
  7019. },
  7020. [
  7021. {
  7022. name: "Normal",
  7023. height: math.unit(2.8, "meters")
  7024. },
  7025. {
  7026. name: "Macro",
  7027. height: math.unit(450, "meters"),
  7028. default: true
  7029. },
  7030. {
  7031. name: "Megamacro",
  7032. height: math.unit(15, "kilometers")
  7033. }
  7034. ]
  7035. ))
  7036. characterMakers.push(() => makeCharacter(
  7037. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7038. {
  7039. front: {
  7040. height: math.unit(6, "feet"),
  7041. weight: math.unit(256, "lbs"),
  7042. name: "Front",
  7043. image: {
  7044. source: "./media/characters/dannik/front.svg"
  7045. }
  7046. }
  7047. },
  7048. [
  7049. {
  7050. name: "Macro",
  7051. height: math.unit(69.57, "meters"),
  7052. default: true
  7053. },
  7054. ]
  7055. ))
  7056. characterMakers.push(() => makeCharacter(
  7057. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7058. {
  7059. front: {
  7060. height: math.unit(6, "feet"),
  7061. weight: math.unit(120, "lbs"),
  7062. name: "Front",
  7063. image: {
  7064. source: "./media/characters/azura-saharah/front.svg"
  7065. }
  7066. },
  7067. back: {
  7068. height: math.unit(6, "feet"),
  7069. weight: math.unit(120, "lbs"),
  7070. name: "Back",
  7071. image: {
  7072. source: "./media/characters/azura-saharah/back.svg"
  7073. }
  7074. },
  7075. },
  7076. [
  7077. {
  7078. name: "Macro",
  7079. height: math.unit(100, "feet"),
  7080. default: true
  7081. },
  7082. ]
  7083. ))
  7084. characterMakers.push(() => makeCharacter(
  7085. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7086. {
  7087. side: {
  7088. height: math.unit(5 + 4 / 12, "feet"),
  7089. weight: math.unit(163, "lbs"),
  7090. name: "Side",
  7091. image: {
  7092. source: "./media/characters/kennedy/side.svg"
  7093. }
  7094. }
  7095. },
  7096. [
  7097. {
  7098. name: "Standard Doggo",
  7099. height: math.unit(5 + 4 / 12, "feet")
  7100. },
  7101. {
  7102. name: "Big Doggo",
  7103. height: math.unit(25 + 3 / 12, "feet"),
  7104. default: true
  7105. },
  7106. ]
  7107. ))
  7108. characterMakers.push(() => makeCharacter(
  7109. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7110. {
  7111. front: {
  7112. height: math.unit(6, "feet"),
  7113. weight: math.unit(90, "lbs"),
  7114. name: "Front",
  7115. image: {
  7116. source: "./media/characters/odi-lunar/front.svg"
  7117. }
  7118. }
  7119. },
  7120. [
  7121. {
  7122. name: "Micro",
  7123. height: math.unit(3, "inches"),
  7124. default: true
  7125. },
  7126. {
  7127. name: "Normal",
  7128. height: math.unit(5.5, "feet")
  7129. }
  7130. ]
  7131. ))
  7132. characterMakers.push(() => makeCharacter(
  7133. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7134. {
  7135. back: {
  7136. height: math.unit(6, "feet"),
  7137. weight: math.unit(220, "lbs"),
  7138. name: "Back",
  7139. image: {
  7140. source: "./media/characters/mandake/back.svg"
  7141. }
  7142. }
  7143. },
  7144. [
  7145. {
  7146. name: "Normal",
  7147. height: math.unit(7, "feet"),
  7148. default: true
  7149. },
  7150. {
  7151. name: "Macro",
  7152. height: math.unit(78, "feet")
  7153. },
  7154. {
  7155. name: "Macro+",
  7156. height: math.unit(300, "meters")
  7157. },
  7158. {
  7159. name: "Macro++",
  7160. height: math.unit(2400, "feet")
  7161. },
  7162. {
  7163. name: "Megamacro",
  7164. height: math.unit(5167, "meters")
  7165. },
  7166. {
  7167. name: "Gigamacro",
  7168. height: math.unit(41769, "miles")
  7169. },
  7170. ]
  7171. ))
  7172. characterMakers.push(() => makeCharacter(
  7173. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7174. {
  7175. front: {
  7176. height: math.unit(6, "feet"),
  7177. weight: math.unit(120, "lbs"),
  7178. name: "Front",
  7179. image: {
  7180. source: "./media/characters/yozey/front.svg"
  7181. }
  7182. },
  7183. frontAlt: {
  7184. height: math.unit(6, "feet"),
  7185. weight: math.unit(120, "lbs"),
  7186. name: "Front (Alt)",
  7187. image: {
  7188. source: "./media/characters/yozey/front-alt.svg"
  7189. }
  7190. },
  7191. side: {
  7192. height: math.unit(6, "feet"),
  7193. weight: math.unit(120, "lbs"),
  7194. name: "Side",
  7195. image: {
  7196. source: "./media/characters/yozey/side.svg"
  7197. }
  7198. },
  7199. },
  7200. [
  7201. {
  7202. name: "Micro",
  7203. height: math.unit(3, "inches"),
  7204. default: true
  7205. },
  7206. {
  7207. name: "Normal",
  7208. height: math.unit(6, "feet")
  7209. }
  7210. ]
  7211. ))
  7212. characterMakers.push(() => makeCharacter(
  7213. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7214. {
  7215. front: {
  7216. height: math.unit(6, "feet"),
  7217. weight: math.unit(103, "lbs"),
  7218. name: "Front",
  7219. image: {
  7220. source: "./media/characters/valeska-voss/front.svg"
  7221. }
  7222. }
  7223. },
  7224. [
  7225. {
  7226. name: "Mini-Sized Sub",
  7227. height: math.unit(3.1, "inches")
  7228. },
  7229. {
  7230. name: "Mid-Sized Sub",
  7231. height: math.unit(6.2, "inches")
  7232. },
  7233. {
  7234. name: "Full-Sized Sub",
  7235. height: math.unit(9.3, "inches")
  7236. },
  7237. {
  7238. name: "Normal",
  7239. height: math.unit(5 + 2 / 12, "foot"),
  7240. default: true
  7241. },
  7242. ]
  7243. ))
  7244. characterMakers.push(() => makeCharacter(
  7245. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7246. {
  7247. front: {
  7248. height: math.unit(6, "feet"),
  7249. weight: math.unit(160, "lbs"),
  7250. name: "Front",
  7251. image: {
  7252. source: "./media/characters/gene-zeta/front.svg",
  7253. extra: 3006 / 2826,
  7254. bottom: 182 / 3188
  7255. }
  7256. }
  7257. },
  7258. [
  7259. {
  7260. name: "Micro",
  7261. height: math.unit(6, "inches")
  7262. },
  7263. {
  7264. name: "Normal",
  7265. height: math.unit(5 + 11 / 12, "foot"),
  7266. default: true
  7267. },
  7268. {
  7269. name: "Macro",
  7270. height: math.unit(140, "feet")
  7271. },
  7272. {
  7273. name: "Supercharged",
  7274. height: math.unit(2500, "feet")
  7275. },
  7276. ]
  7277. ))
  7278. characterMakers.push(() => makeCharacter(
  7279. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7280. {
  7281. front: {
  7282. height: math.unit(6, "feet"),
  7283. weight: math.unit(350, "lbs"),
  7284. name: "Front",
  7285. image: {
  7286. source: "./media/characters/razinox/front.svg",
  7287. extra: 1686 / 1548,
  7288. bottom: 28.2 / 1868
  7289. }
  7290. },
  7291. back: {
  7292. height: math.unit(6, "feet"),
  7293. weight: math.unit(350, "lbs"),
  7294. name: "Back",
  7295. image: {
  7296. source: "./media/characters/razinox/back.svg",
  7297. extra: 1660 / 1590,
  7298. bottom: 15 / 1665
  7299. }
  7300. },
  7301. },
  7302. [
  7303. {
  7304. name: "Normal",
  7305. height: math.unit(10 + 8 / 12, "foot")
  7306. },
  7307. {
  7308. name: "Minimacro",
  7309. height: math.unit(15, "foot")
  7310. },
  7311. {
  7312. name: "Macro",
  7313. height: math.unit(60, "foot"),
  7314. default: true
  7315. },
  7316. {
  7317. name: "Megamacro",
  7318. height: math.unit(5, "miles")
  7319. },
  7320. {
  7321. name: "Gigamacro",
  7322. height: math.unit(6000, "miles")
  7323. },
  7324. ]
  7325. ))
  7326. characterMakers.push(() => makeCharacter(
  7327. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7328. {
  7329. front: {
  7330. height: math.unit(6, "feet"),
  7331. weight: math.unit(150, "lbs"),
  7332. name: "Front",
  7333. image: {
  7334. source: "./media/characters/cobalt/front.svg"
  7335. }
  7336. }
  7337. },
  7338. [
  7339. {
  7340. name: "Normal",
  7341. height: math.unit(8 + 1 / 12, "foot")
  7342. },
  7343. {
  7344. name: "Macro",
  7345. height: math.unit(111, "foot"),
  7346. default: true
  7347. },
  7348. {
  7349. name: "Supracosmic",
  7350. height: math.unit(1e42, "feet")
  7351. },
  7352. ]
  7353. ))
  7354. characterMakers.push(() => makeCharacter(
  7355. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7356. {
  7357. front: {
  7358. height: math.unit(6, "feet"),
  7359. weight: math.unit(140, "lbs"),
  7360. name: "Front",
  7361. image: {
  7362. source: "./media/characters/amanda/front.svg"
  7363. }
  7364. }
  7365. },
  7366. [
  7367. {
  7368. name: "Micro",
  7369. height: math.unit(5, "inches"),
  7370. default: true
  7371. },
  7372. ]
  7373. ))
  7374. characterMakers.push(() => makeCharacter(
  7375. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7376. {
  7377. front: {
  7378. height: math.unit(2.75, "meters"),
  7379. weight: math.unit(1200, "lb"),
  7380. name: "Front",
  7381. image: {
  7382. source: "./media/characters/teal/front.svg",
  7383. extra: 2463 / 2320,
  7384. bottom: 166 / 2629
  7385. }
  7386. },
  7387. back: {
  7388. height: math.unit(2.75, "meters"),
  7389. weight: math.unit(1200, "lb"),
  7390. name: "Back",
  7391. image: {
  7392. source: "./media/characters/teal/back.svg",
  7393. extra: 2580 / 2489,
  7394. bottom: 151 / 2731
  7395. }
  7396. },
  7397. sitting: {
  7398. height: math.unit(1.9, "meters"),
  7399. weight: math.unit(1200, "lb"),
  7400. name: "Sitting",
  7401. image: {
  7402. source: "./media/characters/teal/sitting.svg",
  7403. extra: 623 / 590,
  7404. bottom: 121 / 744
  7405. }
  7406. },
  7407. standing: {
  7408. height: math.unit(2.75, "meters"),
  7409. weight: math.unit(1200, "lb"),
  7410. name: "Standing",
  7411. image: {
  7412. source: "./media/characters/teal/standing.svg",
  7413. extra: 923 / 893,
  7414. bottom: 60 / 983
  7415. }
  7416. },
  7417. stretching: {
  7418. height: math.unit(3.65, "meters"),
  7419. weight: math.unit(1200, "lb"),
  7420. name: "Stretching",
  7421. image: {
  7422. source: "./media/characters/teal/stretching.svg",
  7423. extra: 1276 / 1244,
  7424. bottom: 0 / 1276
  7425. }
  7426. },
  7427. legged: {
  7428. height: math.unit(1.3, "meters"),
  7429. weight: math.unit(100, "lb"),
  7430. name: "Legged",
  7431. image: {
  7432. source: "./media/characters/teal/legged.svg",
  7433. extra: 462 / 437,
  7434. bottom: 24 / 486
  7435. }
  7436. },
  7437. naga: {
  7438. height: math.unit(5.4, "meters"),
  7439. weight: math.unit(4000, "lb"),
  7440. name: "Naga",
  7441. image: {
  7442. source: "./media/characters/teal/naga.svg",
  7443. extra: 1902 / 1858,
  7444. bottom: 0 / 1902
  7445. }
  7446. },
  7447. hand: {
  7448. height: math.unit(0.52, "meters"),
  7449. name: "Hand",
  7450. image: {
  7451. source: "./media/characters/teal/hand.svg"
  7452. }
  7453. },
  7454. maw: {
  7455. height: math.unit(0.43, "meters"),
  7456. name: "Maw",
  7457. image: {
  7458. source: "./media/characters/teal/maw.svg"
  7459. }
  7460. },
  7461. slit: {
  7462. height: math.unit(0.25, "meters"),
  7463. name: "Slit",
  7464. image: {
  7465. source: "./media/characters/teal/slit.svg"
  7466. }
  7467. },
  7468. },
  7469. [
  7470. {
  7471. name: "Normal",
  7472. height: math.unit(2.75, "meters"),
  7473. default: true
  7474. },
  7475. {
  7476. name: "Macro",
  7477. height: math.unit(300, "feet")
  7478. },
  7479. {
  7480. name: "Macro+",
  7481. height: math.unit(2000, "feet")
  7482. },
  7483. ]
  7484. ))
  7485. characterMakers.push(() => makeCharacter(
  7486. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7487. {
  7488. frontCat: {
  7489. height: math.unit(6, "feet"),
  7490. weight: math.unit(180, "lbs"),
  7491. name: "Front (Cat)",
  7492. image: {
  7493. source: "./media/characters/ravin-amulet/front-cat.svg"
  7494. }
  7495. },
  7496. frontCatAlt: {
  7497. height: math.unit(6, "feet"),
  7498. weight: math.unit(180, "lbs"),
  7499. name: "Front (Alt, Cat)",
  7500. image: {
  7501. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7502. }
  7503. },
  7504. frontWerewolf: {
  7505. height: math.unit(6 * 1.2, "feet"),
  7506. weight: math.unit(225, "lbs"),
  7507. name: "Front (Werewolf)",
  7508. image: {
  7509. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7510. }
  7511. },
  7512. backWerewolf: {
  7513. height: math.unit(6 * 1.2, "feet"),
  7514. weight: math.unit(225, "lbs"),
  7515. name: "Back (Werewolf)",
  7516. image: {
  7517. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7518. }
  7519. },
  7520. },
  7521. [
  7522. {
  7523. name: "Nano",
  7524. height: math.unit(1, "micrometer")
  7525. },
  7526. {
  7527. name: "Micro",
  7528. height: math.unit(1, "inch")
  7529. },
  7530. {
  7531. name: "Normal",
  7532. height: math.unit(6, "feet"),
  7533. default: true
  7534. },
  7535. {
  7536. name: "Macro",
  7537. height: math.unit(60, "feet")
  7538. }
  7539. ]
  7540. ))
  7541. characterMakers.push(() => makeCharacter(
  7542. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7543. {
  7544. front: {
  7545. height: math.unit(6, "feet"),
  7546. weight: math.unit(165, "lbs"),
  7547. name: "Front",
  7548. image: {
  7549. source: "./media/characters/fluoresce/front.svg"
  7550. }
  7551. }
  7552. },
  7553. [
  7554. {
  7555. name: "Micro",
  7556. height: math.unit(6, "cm")
  7557. },
  7558. {
  7559. name: "Normal",
  7560. height: math.unit(5 + 7 / 12, "feet"),
  7561. default: true
  7562. },
  7563. {
  7564. name: "Macro",
  7565. height: math.unit(56, "feet")
  7566. },
  7567. {
  7568. name: "Megamacro",
  7569. height: math.unit(1.9, "miles")
  7570. },
  7571. ]
  7572. ))
  7573. characterMakers.push(() => makeCharacter(
  7574. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7575. {
  7576. front: {
  7577. height: math.unit(9 + 6 / 12, "feet"),
  7578. weight: math.unit(523, "lbs"),
  7579. name: "Side",
  7580. image: {
  7581. source: "./media/characters/aurora/side.svg"
  7582. }
  7583. }
  7584. },
  7585. [
  7586. {
  7587. name: "Normal",
  7588. height: math.unit(9 + 6 / 12, "feet")
  7589. },
  7590. {
  7591. name: "Macro",
  7592. height: math.unit(96, "feet"),
  7593. default: true
  7594. },
  7595. {
  7596. name: "Macro+",
  7597. height: math.unit(243, "feet")
  7598. },
  7599. ]
  7600. ))
  7601. characterMakers.push(() => makeCharacter(
  7602. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7603. {
  7604. front: {
  7605. height: math.unit(194, "cm"),
  7606. weight: math.unit(90, "kg"),
  7607. name: "Front",
  7608. image: {
  7609. source: "./media/characters/ranek/front.svg"
  7610. }
  7611. },
  7612. side: {
  7613. height: math.unit(194, "cm"),
  7614. weight: math.unit(90, "kg"),
  7615. name: "Side",
  7616. image: {
  7617. source: "./media/characters/ranek/side.svg"
  7618. }
  7619. },
  7620. back: {
  7621. height: math.unit(194, "cm"),
  7622. weight: math.unit(90, "kg"),
  7623. name: "Back",
  7624. image: {
  7625. source: "./media/characters/ranek/back.svg"
  7626. }
  7627. },
  7628. feral: {
  7629. height: math.unit(30, "cm"),
  7630. weight: math.unit(1.6, "lbs"),
  7631. name: "Feral",
  7632. image: {
  7633. source: "./media/characters/ranek/feral.svg"
  7634. }
  7635. },
  7636. },
  7637. [
  7638. {
  7639. name: "Normal",
  7640. height: math.unit(194, "cm"),
  7641. default: true
  7642. },
  7643. {
  7644. name: "Macro",
  7645. height: math.unit(100, "meters")
  7646. },
  7647. ]
  7648. ))
  7649. characterMakers.push(() => makeCharacter(
  7650. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7651. {
  7652. front: {
  7653. height: math.unit(5 + 6 / 12, "feet"),
  7654. weight: math.unit(153, "lbs"),
  7655. name: "Front",
  7656. image: {
  7657. source: "./media/characters/andrew-cooper/front.svg"
  7658. }
  7659. },
  7660. },
  7661. [
  7662. {
  7663. name: "Nano",
  7664. height: math.unit(1, "mm")
  7665. },
  7666. {
  7667. name: "Micro",
  7668. height: math.unit(2, "inches")
  7669. },
  7670. {
  7671. name: "Normal",
  7672. height: math.unit(5 + 6 / 12, "feet"),
  7673. default: true
  7674. }
  7675. ]
  7676. ))
  7677. characterMakers.push(() => makeCharacter(
  7678. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7679. {
  7680. front: {
  7681. height: math.unit(6, "feet"),
  7682. weight: math.unit(180, "lbs"),
  7683. name: "Front",
  7684. image: {
  7685. source: "./media/characters/akane-sato/front.svg",
  7686. extra: 1219 / 1140
  7687. }
  7688. },
  7689. back: {
  7690. height: math.unit(6, "feet"),
  7691. weight: math.unit(180, "lbs"),
  7692. name: "Back",
  7693. image: {
  7694. source: "./media/characters/akane-sato/back.svg",
  7695. extra: 1219 / 1170
  7696. }
  7697. },
  7698. },
  7699. [
  7700. {
  7701. name: "Normal",
  7702. height: math.unit(2.5, "meters")
  7703. },
  7704. {
  7705. name: "Macro",
  7706. height: math.unit(250, "meters"),
  7707. default: true
  7708. },
  7709. {
  7710. name: "Megamacro",
  7711. height: math.unit(25, "km")
  7712. },
  7713. ]
  7714. ))
  7715. characterMakers.push(() => makeCharacter(
  7716. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7717. {
  7718. front: {
  7719. height: math.unit(6, "feet"),
  7720. weight: math.unit(65, "kg"),
  7721. name: "Front",
  7722. image: {
  7723. source: "./media/characters/rook/front.svg",
  7724. extra: 960 / 950
  7725. }
  7726. }
  7727. },
  7728. [
  7729. {
  7730. name: "Normal",
  7731. height: math.unit(8.8, "feet")
  7732. },
  7733. {
  7734. name: "Macro",
  7735. height: math.unit(88, "feet"),
  7736. default: true
  7737. },
  7738. {
  7739. name: "Megamacro",
  7740. height: math.unit(8, "miles")
  7741. },
  7742. ]
  7743. ))
  7744. characterMakers.push(() => makeCharacter(
  7745. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7746. {
  7747. front: {
  7748. height: math.unit(12 + 2 / 12, "feet"),
  7749. weight: math.unit(808, "lbs"),
  7750. name: "Front",
  7751. image: {
  7752. source: "./media/characters/prodigy/front.svg"
  7753. }
  7754. }
  7755. },
  7756. [
  7757. {
  7758. name: "Normal",
  7759. height: math.unit(12 + 2 / 12, "feet"),
  7760. default: true
  7761. },
  7762. {
  7763. name: "Macro",
  7764. height: math.unit(143, "feet")
  7765. },
  7766. {
  7767. name: "Macro+",
  7768. height: math.unit(400, "feet")
  7769. },
  7770. ]
  7771. ))
  7772. characterMakers.push(() => makeCharacter(
  7773. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7774. {
  7775. front: {
  7776. height: math.unit(6, "feet"),
  7777. weight: math.unit(225, "lbs"),
  7778. name: "Front",
  7779. image: {
  7780. source: "./media/characters/daniel/front.svg"
  7781. }
  7782. },
  7783. leaning: {
  7784. height: math.unit(6, "feet"),
  7785. weight: math.unit(225, "lbs"),
  7786. name: "Leaning",
  7787. image: {
  7788. source: "./media/characters/daniel/leaning.svg"
  7789. }
  7790. },
  7791. },
  7792. [
  7793. {
  7794. name: "Macro",
  7795. height: math.unit(1000, "feet"),
  7796. default: true
  7797. },
  7798. ]
  7799. ))
  7800. characterMakers.push(() => makeCharacter(
  7801. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7802. {
  7803. front: {
  7804. height: math.unit(6, "feet"),
  7805. weight: math.unit(88, "lbs"),
  7806. name: "Front",
  7807. image: {
  7808. source: "./media/characters/chiros/front.svg",
  7809. extra: 306 / 226
  7810. }
  7811. },
  7812. side: {
  7813. height: math.unit(6, "feet"),
  7814. weight: math.unit(88, "lbs"),
  7815. name: "Side",
  7816. image: {
  7817. source: "./media/characters/chiros/side.svg",
  7818. extra: 306 / 226
  7819. }
  7820. },
  7821. },
  7822. [
  7823. {
  7824. name: "Normal",
  7825. height: math.unit(6, "cm"),
  7826. default: true
  7827. },
  7828. ]
  7829. ))
  7830. characterMakers.push(() => makeCharacter(
  7831. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7832. {
  7833. front: {
  7834. height: math.unit(6, "feet"),
  7835. weight: math.unit(100, "lbs"),
  7836. name: "Front",
  7837. image: {
  7838. source: "./media/characters/selka/front.svg",
  7839. extra: 947 / 887
  7840. }
  7841. }
  7842. },
  7843. [
  7844. {
  7845. name: "Normal",
  7846. height: math.unit(5, "cm"),
  7847. default: true
  7848. },
  7849. ]
  7850. ))
  7851. characterMakers.push(() => makeCharacter(
  7852. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7853. {
  7854. front: {
  7855. height: math.unit(8 + 3 / 12, "feet"),
  7856. weight: math.unit(424, "lbs"),
  7857. name: "Front",
  7858. image: {
  7859. source: "./media/characters/verin/front.svg",
  7860. extra: 1845 / 1550
  7861. }
  7862. },
  7863. frontArmored: {
  7864. height: math.unit(8 + 3 / 12, "feet"),
  7865. weight: math.unit(424, "lbs"),
  7866. name: "Front (Armored)",
  7867. image: {
  7868. source: "./media/characters/verin/front-armor.svg",
  7869. extra: 1845 / 1550,
  7870. bottom: 0.01
  7871. }
  7872. },
  7873. back: {
  7874. height: math.unit(8 + 3 / 12, "feet"),
  7875. weight: math.unit(424, "lbs"),
  7876. name: "Back",
  7877. image: {
  7878. source: "./media/characters/verin/back.svg",
  7879. bottom: 0.1,
  7880. extra: 1
  7881. }
  7882. },
  7883. foot: {
  7884. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7885. name: "Foot",
  7886. image: {
  7887. source: "./media/characters/verin/foot.svg"
  7888. }
  7889. },
  7890. },
  7891. [
  7892. {
  7893. name: "Normal",
  7894. height: math.unit(8 + 3 / 12, "feet")
  7895. },
  7896. {
  7897. name: "Minimacro",
  7898. height: math.unit(21, "feet"),
  7899. default: true
  7900. },
  7901. {
  7902. name: "Macro",
  7903. height: math.unit(626, "feet")
  7904. },
  7905. ]
  7906. ))
  7907. characterMakers.push(() => makeCharacter(
  7908. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7909. {
  7910. front: {
  7911. height: math.unit(2.718, "meters"),
  7912. weight: math.unit(150, "lbs"),
  7913. name: "Front",
  7914. image: {
  7915. source: "./media/characters/sovrim-terraquian/front.svg"
  7916. }
  7917. },
  7918. back: {
  7919. height: math.unit(2.718, "meters"),
  7920. weight: math.unit(150, "lbs"),
  7921. name: "Back",
  7922. image: {
  7923. source: "./media/characters/sovrim-terraquian/back.svg"
  7924. }
  7925. }
  7926. },
  7927. [
  7928. {
  7929. name: "Micro",
  7930. height: math.unit(2, "inches")
  7931. },
  7932. {
  7933. name: "Small",
  7934. height: math.unit(1, "meter")
  7935. },
  7936. {
  7937. name: "Normal",
  7938. height: math.unit(Math.E, "meters"),
  7939. default: true
  7940. },
  7941. {
  7942. name: "Macro",
  7943. height: math.unit(20, "meters")
  7944. },
  7945. {
  7946. name: "Macro+",
  7947. height: math.unit(400, "meters")
  7948. },
  7949. ]
  7950. ))
  7951. characterMakers.push(() => makeCharacter(
  7952. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7953. {
  7954. front: {
  7955. height: math.unit(7, "feet"),
  7956. weight: math.unit(489, "lbs"),
  7957. name: "Front",
  7958. image: {
  7959. source: "./media/characters/reece-silvermane/front.svg",
  7960. bottom: 0.02,
  7961. extra: 1
  7962. }
  7963. },
  7964. },
  7965. [
  7966. {
  7967. name: "Macro",
  7968. height: math.unit(1.5, "miles"),
  7969. default: true
  7970. },
  7971. ]
  7972. ))
  7973. characterMakers.push(() => makeCharacter(
  7974. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7975. {
  7976. front: {
  7977. height: math.unit(6, "feet"),
  7978. weight: math.unit(78, "kg"),
  7979. name: "Front",
  7980. image: {
  7981. source: "./media/characters/kane/front.svg",
  7982. extra: 978 / 899
  7983. }
  7984. },
  7985. },
  7986. [
  7987. {
  7988. name: "Normal",
  7989. height: math.unit(2.1, "m"),
  7990. },
  7991. {
  7992. name: "Macro",
  7993. height: math.unit(1, "km"),
  7994. default: true
  7995. },
  7996. ]
  7997. ))
  7998. characterMakers.push(() => makeCharacter(
  7999. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8000. {
  8001. front: {
  8002. height: math.unit(6, "feet"),
  8003. weight: math.unit(200, "kg"),
  8004. name: "Front",
  8005. image: {
  8006. source: "./media/characters/tegon/front.svg",
  8007. bottom: 0.01,
  8008. extra: 1
  8009. }
  8010. },
  8011. },
  8012. [
  8013. {
  8014. name: "Micro",
  8015. height: math.unit(1, "inch")
  8016. },
  8017. {
  8018. name: "Normal",
  8019. height: math.unit(6 + 3 / 12, "feet"),
  8020. default: true
  8021. },
  8022. {
  8023. name: "Macro",
  8024. height: math.unit(300, "feet")
  8025. },
  8026. {
  8027. name: "Megamacro",
  8028. height: math.unit(69, "miles")
  8029. },
  8030. ]
  8031. ))
  8032. characterMakers.push(() => makeCharacter(
  8033. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8034. {
  8035. side: {
  8036. height: math.unit(6, "feet"),
  8037. weight: math.unit(2304, "lbs"),
  8038. name: "Side",
  8039. image: {
  8040. source: "./media/characters/arcturax/side.svg",
  8041. extra: 790 / 376,
  8042. bottom: 0.01
  8043. }
  8044. },
  8045. },
  8046. [
  8047. {
  8048. name: "Micro",
  8049. height: math.unit(2, "inch")
  8050. },
  8051. {
  8052. name: "Normal",
  8053. height: math.unit(6, "feet")
  8054. },
  8055. {
  8056. name: "Macro",
  8057. height: math.unit(39, "feet"),
  8058. default: true
  8059. },
  8060. {
  8061. name: "Megamacro",
  8062. height: math.unit(7, "miles")
  8063. },
  8064. ]
  8065. ))
  8066. characterMakers.push(() => makeCharacter(
  8067. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8068. {
  8069. front: {
  8070. height: math.unit(6, "feet"),
  8071. weight: math.unit(50, "lbs"),
  8072. name: "Front",
  8073. image: {
  8074. source: "./media/characters/sentri/front.svg",
  8075. extra: 1750 / 1570,
  8076. bottom: 0.025
  8077. }
  8078. },
  8079. frontAlt: {
  8080. height: math.unit(6, "feet"),
  8081. weight: math.unit(50, "lbs"),
  8082. name: "Front (Alt)",
  8083. image: {
  8084. source: "./media/characters/sentri/front-alt.svg",
  8085. extra: 1750 / 1570,
  8086. bottom: 0.025
  8087. }
  8088. },
  8089. },
  8090. [
  8091. {
  8092. name: "Normal",
  8093. height: math.unit(15, "feet"),
  8094. default: true
  8095. },
  8096. {
  8097. name: "Macro",
  8098. height: math.unit(2500, "feet")
  8099. }
  8100. ]
  8101. ))
  8102. characterMakers.push(() => makeCharacter(
  8103. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8104. {
  8105. front: {
  8106. height: math.unit(5 + 8 / 12, "feet"),
  8107. weight: math.unit(130, "lbs"),
  8108. name: "Front",
  8109. image: {
  8110. source: "./media/characters/corvin/front.svg",
  8111. extra: 1803 / 1629
  8112. }
  8113. },
  8114. frontShirt: {
  8115. height: math.unit(5 + 8 / 12, "feet"),
  8116. weight: math.unit(130, "lbs"),
  8117. name: "Front (Shirt)",
  8118. image: {
  8119. source: "./media/characters/corvin/front-shirt.svg",
  8120. extra: 1803 / 1629
  8121. }
  8122. },
  8123. frontPoncho: {
  8124. height: math.unit(5 + 8 / 12, "feet"),
  8125. weight: math.unit(130, "lbs"),
  8126. name: "Front (Poncho)",
  8127. image: {
  8128. source: "./media/characters/corvin/front-poncho.svg",
  8129. extra: 1803 / 1629
  8130. }
  8131. },
  8132. side: {
  8133. height: math.unit(5 + 8 / 12, "feet"),
  8134. weight: math.unit(130, "lbs"),
  8135. name: "Side",
  8136. image: {
  8137. source: "./media/characters/corvin/side.svg",
  8138. extra: 1012 / 945
  8139. }
  8140. },
  8141. back: {
  8142. height: math.unit(5 + 8 / 12, "feet"),
  8143. weight: math.unit(130, "lbs"),
  8144. name: "Back",
  8145. image: {
  8146. source: "./media/characters/corvin/back.svg",
  8147. extra: 1803 / 1629
  8148. }
  8149. },
  8150. },
  8151. [
  8152. {
  8153. name: "Micro",
  8154. height: math.unit(3, "inches")
  8155. },
  8156. {
  8157. name: "Normal",
  8158. height: math.unit(5 + 8 / 12, "feet")
  8159. },
  8160. {
  8161. name: "Macro",
  8162. height: math.unit(300, "feet"),
  8163. default: true
  8164. },
  8165. {
  8166. name: "Megamacro",
  8167. height: math.unit(500, "miles")
  8168. }
  8169. ]
  8170. ))
  8171. characterMakers.push(() => makeCharacter(
  8172. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8173. {
  8174. front: {
  8175. height: math.unit(6, "feet"),
  8176. weight: math.unit(135, "lbs"),
  8177. name: "Front",
  8178. image: {
  8179. source: "./media/characters/q/front.svg",
  8180. extra: 854 / 752,
  8181. bottom: 0.005
  8182. }
  8183. },
  8184. back: {
  8185. height: math.unit(6, "feet"),
  8186. weight: math.unit(130, "lbs"),
  8187. name: "Back",
  8188. image: {
  8189. source: "./media/characters/q/back.svg",
  8190. extra: 854 / 752
  8191. }
  8192. },
  8193. },
  8194. [
  8195. {
  8196. name: "Macro",
  8197. height: math.unit(90, "feet"),
  8198. default: true
  8199. },
  8200. {
  8201. name: "Extra Macro",
  8202. height: math.unit(300, "feet"),
  8203. },
  8204. {
  8205. name: "BIG WALF",
  8206. height: math.unit(750, "feet"),
  8207. },
  8208. ]
  8209. ))
  8210. characterMakers.push(() => makeCharacter(
  8211. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8212. {
  8213. front: {
  8214. height: math.unit(6, "feet"),
  8215. weight: math.unit(150, "lbs"),
  8216. name: "Front",
  8217. image: {
  8218. source: "./media/characters/carley/front.svg",
  8219. extra: 3927 / 3540,
  8220. bottom: 29.2 / 735
  8221. }
  8222. }
  8223. },
  8224. [
  8225. {
  8226. name: "Normal",
  8227. height: math.unit(6 + 3 / 12, "feet")
  8228. },
  8229. {
  8230. name: "Macro",
  8231. height: math.unit(185, "feet"),
  8232. default: true
  8233. },
  8234. {
  8235. name: "Megamacro",
  8236. height: math.unit(8, "miles"),
  8237. },
  8238. ]
  8239. ))
  8240. characterMakers.push(() => makeCharacter(
  8241. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8242. {
  8243. front: {
  8244. height: math.unit(3, "feet"),
  8245. weight: math.unit(28, "lbs"),
  8246. name: "Front",
  8247. image: {
  8248. source: "./media/characters/citrine/front.svg"
  8249. }
  8250. }
  8251. },
  8252. [
  8253. {
  8254. name: "Normal",
  8255. height: math.unit(3, "feet"),
  8256. default: true
  8257. }
  8258. ]
  8259. ))
  8260. characterMakers.push(() => makeCharacter(
  8261. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8262. {
  8263. front: {
  8264. height: math.unit(14, "feet"),
  8265. weight: math.unit(1450, "kg"),
  8266. capacity: math.unit(15, "people"),
  8267. name: "Front",
  8268. image: {
  8269. source: "./media/characters/aura-starwind/front.svg",
  8270. extra: 1440/1327,
  8271. bottom: 11/1451
  8272. }
  8273. },
  8274. side: {
  8275. height: math.unit(14, "feet"),
  8276. weight: math.unit(1450, "kg"),
  8277. capacity: math.unit(15, "people"),
  8278. name: "Side",
  8279. image: {
  8280. source: "./media/characters/aura-starwind/side.svg",
  8281. extra: 1654 / 1497
  8282. }
  8283. },
  8284. taur: {
  8285. height: math.unit(18, "feet"),
  8286. weight: math.unit(5500, "kg"),
  8287. capacity: math.unit(50, "people"),
  8288. name: "Taur",
  8289. image: {
  8290. source: "./media/characters/aura-starwind/taur.svg",
  8291. extra: 1760 / 1650
  8292. }
  8293. },
  8294. feral: {
  8295. height: math.unit(46, "feet"),
  8296. weight: math.unit(25000, "kg"),
  8297. capacity: math.unit(120, "people"),
  8298. name: "Feral",
  8299. image: {
  8300. source: "./media/characters/aura-starwind/feral.svg"
  8301. }
  8302. },
  8303. },
  8304. [
  8305. {
  8306. name: "Normal",
  8307. height: math.unit(14, "feet"),
  8308. default: true
  8309. },
  8310. {
  8311. name: "Macro",
  8312. height: math.unit(50, "meters")
  8313. },
  8314. {
  8315. name: "Megamacro",
  8316. height: math.unit(5000, "meters")
  8317. },
  8318. {
  8319. name: "Gigamacro",
  8320. height: math.unit(100000, "kilometers")
  8321. },
  8322. ]
  8323. ))
  8324. characterMakers.push(() => makeCharacter(
  8325. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8326. {
  8327. front: {
  8328. height: math.unit(2 + 7 / 12, "feet"),
  8329. weight: math.unit(32, "lbs"),
  8330. name: "Front",
  8331. image: {
  8332. source: "./media/characters/rivet/front.svg",
  8333. extra: 1716 / 1658,
  8334. bottom: 0.03
  8335. }
  8336. },
  8337. foot: {
  8338. height: math.unit(0.551, "feet"),
  8339. name: "Rivet's Foot",
  8340. image: {
  8341. source: "./media/characters/rivet/foot.svg"
  8342. },
  8343. rename: true
  8344. }
  8345. },
  8346. [
  8347. {
  8348. name: "Micro",
  8349. height: math.unit(1.5, "inches"),
  8350. },
  8351. {
  8352. name: "Normal",
  8353. height: math.unit(2 + 7 / 12, "feet"),
  8354. default: true
  8355. },
  8356. {
  8357. name: "Macro",
  8358. height: math.unit(85, "feet")
  8359. },
  8360. {
  8361. name: "Megamacro",
  8362. height: math.unit(2.2, "km")
  8363. }
  8364. ]
  8365. ))
  8366. characterMakers.push(() => makeCharacter(
  8367. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8368. {
  8369. front: {
  8370. height: math.unit(5 + 9 / 12, "feet"),
  8371. weight: math.unit(150, "lbs"),
  8372. name: "Front",
  8373. image: {
  8374. source: "./media/characters/coffee/front.svg",
  8375. extra: 3666 / 3032,
  8376. bottom: 0.04
  8377. }
  8378. },
  8379. foot: {
  8380. height: math.unit(1.29, "feet"),
  8381. name: "Foot",
  8382. image: {
  8383. source: "./media/characters/coffee/foot.svg"
  8384. }
  8385. },
  8386. },
  8387. [
  8388. {
  8389. name: "Micro",
  8390. height: math.unit(2, "inches"),
  8391. },
  8392. {
  8393. name: "Normal",
  8394. height: math.unit(5 + 9 / 12, "feet"),
  8395. default: true
  8396. },
  8397. {
  8398. name: "Macro",
  8399. height: math.unit(800, "feet")
  8400. },
  8401. {
  8402. name: "Megamacro",
  8403. height: math.unit(25, "miles")
  8404. }
  8405. ]
  8406. ))
  8407. characterMakers.push(() => makeCharacter(
  8408. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8409. {
  8410. front: {
  8411. height: math.unit(6, "feet"),
  8412. weight: math.unit(200, "lbs"),
  8413. name: "Front",
  8414. image: {
  8415. source: "./media/characters/chari-gal/front.svg",
  8416. extra: 1568 / 1385,
  8417. bottom: 0.047
  8418. }
  8419. },
  8420. gigantamax: {
  8421. height: math.unit(6 * 16, "feet"),
  8422. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8423. name: "Gigantamax",
  8424. image: {
  8425. source: "./media/characters/chari-gal/gigantamax.svg",
  8426. extra: 1124 / 888,
  8427. bottom: 0.03
  8428. }
  8429. },
  8430. },
  8431. [
  8432. {
  8433. name: "Normal",
  8434. height: math.unit(5 + 7 / 12, "feet")
  8435. },
  8436. {
  8437. name: "Macro",
  8438. height: math.unit(200, "feet"),
  8439. default: true
  8440. }
  8441. ]
  8442. ))
  8443. characterMakers.push(() => makeCharacter(
  8444. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8445. {
  8446. front: {
  8447. height: math.unit(6, "feet"),
  8448. weight: math.unit(150, "lbs"),
  8449. name: "Front",
  8450. image: {
  8451. source: "./media/characters/nova/front.svg",
  8452. extra: 5000 / 4722,
  8453. bottom: 0.02
  8454. }
  8455. }
  8456. },
  8457. [
  8458. {
  8459. name: "Micro-",
  8460. height: math.unit(0.8, "inches")
  8461. },
  8462. {
  8463. name: "Micro",
  8464. height: math.unit(2, "inches"),
  8465. default: true
  8466. },
  8467. ]
  8468. ))
  8469. characterMakers.push(() => makeCharacter(
  8470. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8471. {
  8472. front: {
  8473. height: math.unit(3 + 1 / 12, "feet"),
  8474. weight: math.unit(21.7, "lbs"),
  8475. name: "Front",
  8476. image: {
  8477. source: "./media/characters/argent/front.svg",
  8478. extra: 1471 / 1331,
  8479. bottom: 100.8 / 1575.5
  8480. }
  8481. }
  8482. },
  8483. [
  8484. {
  8485. name: "Micro",
  8486. height: math.unit(2, "inches")
  8487. },
  8488. {
  8489. name: "Normal",
  8490. height: math.unit(3 + 1 / 12, "feet"),
  8491. default: true
  8492. },
  8493. {
  8494. name: "Macro",
  8495. height: math.unit(120, "feet")
  8496. },
  8497. ]
  8498. ))
  8499. characterMakers.push(() => makeCharacter(
  8500. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8501. {
  8502. lamp: {
  8503. height: math.unit(7 * 1559 / 989, "feet"),
  8504. name: "Magic Lamp",
  8505. image: {
  8506. source: "./media/characters/mira-al-cul/lamp.svg",
  8507. extra: 1617 / 1559
  8508. }
  8509. },
  8510. front: {
  8511. height: math.unit(7, "feet"),
  8512. name: "Front",
  8513. image: {
  8514. source: "./media/characters/mira-al-cul/front.svg",
  8515. extra: 1044 / 990
  8516. }
  8517. },
  8518. },
  8519. [
  8520. {
  8521. name: "Heavily Restricted",
  8522. height: math.unit(7 * 1559 / 989, "feet")
  8523. },
  8524. {
  8525. name: "Freshly Freed",
  8526. height: math.unit(50 * 1559 / 989, "feet")
  8527. },
  8528. {
  8529. name: "World Encompassing",
  8530. height: math.unit(10000 * 1559 / 989, "miles")
  8531. },
  8532. {
  8533. name: "Galactic",
  8534. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8535. },
  8536. {
  8537. name: "Palmed Universe",
  8538. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8539. default: true
  8540. },
  8541. {
  8542. name: "Multiversal Matriarch",
  8543. height: math.unit(8.87e10, "yottameters")
  8544. },
  8545. {
  8546. name: "Void Mother",
  8547. height: math.unit(3.14e110, "yottaparsecs")
  8548. },
  8549. {
  8550. name: "Toying with Transcendence",
  8551. height: math.unit(1e307, "meters")
  8552. },
  8553. ]
  8554. ))
  8555. characterMakers.push(() => makeCharacter(
  8556. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8557. {
  8558. front: {
  8559. height: math.unit(17 + 1 / 12, "feet"),
  8560. weight: math.unit(476.2 * 5, "lbs"),
  8561. name: "Front",
  8562. image: {
  8563. source: "./media/characters/kuro-shi-uchū/front.svg",
  8564. extra: 2329 / 1835,
  8565. bottom: 0.02
  8566. }
  8567. },
  8568. },
  8569. [
  8570. {
  8571. name: "Micro",
  8572. height: math.unit(2, "inches")
  8573. },
  8574. {
  8575. name: "Normal",
  8576. height: math.unit(12, "meters")
  8577. },
  8578. {
  8579. name: "Planetary",
  8580. height: math.unit(0.00929, "AU"),
  8581. default: true
  8582. },
  8583. {
  8584. name: "Universal",
  8585. height: math.unit(20, "gigaparsecs")
  8586. },
  8587. ]
  8588. ))
  8589. characterMakers.push(() => makeCharacter(
  8590. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8591. {
  8592. front: {
  8593. height: math.unit(5 + 2 / 12, "feet"),
  8594. weight: math.unit(120, "lbs"),
  8595. name: "Front",
  8596. image: {
  8597. source: "./media/characters/katherine/front.svg",
  8598. extra: 2075 / 1969
  8599. }
  8600. },
  8601. dress: {
  8602. height: math.unit(5 + 2 / 12, "feet"),
  8603. weight: math.unit(120, "lbs"),
  8604. name: "Dress",
  8605. image: {
  8606. source: "./media/characters/katherine/dress.svg",
  8607. extra: 2258 / 2064
  8608. }
  8609. },
  8610. },
  8611. [
  8612. {
  8613. name: "Micro",
  8614. height: math.unit(1, "inches"),
  8615. default: true
  8616. },
  8617. {
  8618. name: "Normal",
  8619. height: math.unit(5 + 2 / 12, "feet")
  8620. },
  8621. {
  8622. name: "Macro",
  8623. height: math.unit(100, "meters")
  8624. },
  8625. {
  8626. name: "Megamacro",
  8627. height: math.unit(80, "miles")
  8628. },
  8629. ]
  8630. ))
  8631. characterMakers.push(() => makeCharacter(
  8632. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8633. {
  8634. front: {
  8635. height: math.unit(7 + 8 / 12, "feet"),
  8636. weight: math.unit(250, "lbs"),
  8637. name: "Front",
  8638. image: {
  8639. source: "./media/characters/yevis/front.svg",
  8640. extra: 1938 / 1755
  8641. }
  8642. }
  8643. },
  8644. [
  8645. {
  8646. name: "Mortal",
  8647. height: math.unit(7 + 8 / 12, "feet")
  8648. },
  8649. {
  8650. name: "Battle",
  8651. height: math.unit(25 + 11 / 12, "feet")
  8652. },
  8653. {
  8654. name: "Wrath",
  8655. height: math.unit(1654 + 11 / 12, "feet")
  8656. },
  8657. {
  8658. name: "Planet Destroyer",
  8659. height: math.unit(12000, "miles")
  8660. },
  8661. {
  8662. name: "Galaxy Conqueror",
  8663. height: math.unit(1.45, "zettameters"),
  8664. default: true
  8665. },
  8666. {
  8667. name: "Universal War",
  8668. height: math.unit(184, "gigaparsecs")
  8669. },
  8670. {
  8671. name: "Eternity War",
  8672. height: math.unit(1.98e55, "yottaparsecs")
  8673. },
  8674. ]
  8675. ))
  8676. characterMakers.push(() => makeCharacter(
  8677. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8678. {
  8679. front: {
  8680. height: math.unit(5 + 8 / 12, "feet"),
  8681. weight: math.unit(63, "kg"),
  8682. name: "Front",
  8683. image: {
  8684. source: "./media/characters/xavier/front.svg",
  8685. extra: 944 / 883
  8686. }
  8687. },
  8688. frontStretch: {
  8689. height: math.unit(5 + 8 / 12, "feet"),
  8690. weight: math.unit(63, "kg"),
  8691. name: "Stretching",
  8692. image: {
  8693. source: "./media/characters/xavier/front-stretch.svg",
  8694. extra: 962 / 820
  8695. }
  8696. },
  8697. },
  8698. [
  8699. {
  8700. name: "Normal",
  8701. height: math.unit(5 + 8 / 12, "feet")
  8702. },
  8703. {
  8704. name: "Macro",
  8705. height: math.unit(100, "meters"),
  8706. default: true
  8707. },
  8708. {
  8709. name: "McLargeHuge",
  8710. height: math.unit(10, "miles")
  8711. },
  8712. ]
  8713. ))
  8714. characterMakers.push(() => makeCharacter(
  8715. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8716. {
  8717. front: {
  8718. height: math.unit(5 + 5 / 12, "feet"),
  8719. weight: math.unit(150, "lb"),
  8720. name: "Front",
  8721. image: {
  8722. source: "./media/characters/joshii/front.svg",
  8723. extra: 765 / 653,
  8724. bottom: 51 / 816
  8725. }
  8726. },
  8727. foot: {
  8728. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8729. name: "Foot",
  8730. image: {
  8731. source: "./media/characters/joshii/foot.svg"
  8732. }
  8733. },
  8734. },
  8735. [
  8736. {
  8737. name: "Micro",
  8738. height: math.unit(2, "inches"),
  8739. default: true
  8740. },
  8741. {
  8742. name: "Normal",
  8743. height: math.unit(5 + 5 / 12, "feet")
  8744. },
  8745. {
  8746. name: "Macro",
  8747. height: math.unit(785, "feet")
  8748. },
  8749. {
  8750. name: "Megamacro",
  8751. height: math.unit(24.5, "miles")
  8752. },
  8753. ]
  8754. ))
  8755. characterMakers.push(() => makeCharacter(
  8756. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8757. {
  8758. front: {
  8759. height: math.unit(6, "feet"),
  8760. weight: math.unit(150, "lb"),
  8761. name: "Front",
  8762. image: {
  8763. source: "./media/characters/goddess-elizabeth/front.svg",
  8764. extra: 1800 / 1525,
  8765. bottom: 0.005
  8766. }
  8767. },
  8768. foot: {
  8769. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8770. name: "Foot",
  8771. image: {
  8772. source: "./media/characters/goddess-elizabeth/foot.svg"
  8773. }
  8774. },
  8775. mouth: {
  8776. height: math.unit(6, "feet"),
  8777. name: "Mouth",
  8778. image: {
  8779. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8780. }
  8781. },
  8782. },
  8783. [
  8784. {
  8785. name: "Micro",
  8786. height: math.unit(12, "feet")
  8787. },
  8788. {
  8789. name: "Normal",
  8790. height: math.unit(80, "miles"),
  8791. default: true
  8792. },
  8793. {
  8794. name: "Macro",
  8795. height: math.unit(15000, "parsecs")
  8796. },
  8797. ]
  8798. ))
  8799. characterMakers.push(() => makeCharacter(
  8800. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8801. {
  8802. front: {
  8803. height: math.unit(5 + 9 / 12, "feet"),
  8804. weight: math.unit(144, "lb"),
  8805. name: "Front",
  8806. image: {
  8807. source: "./media/characters/kara/front.svg"
  8808. }
  8809. },
  8810. feet: {
  8811. height: math.unit(6 / 6.765, "feet"),
  8812. name: "Kara's Feet",
  8813. rename: true,
  8814. image: {
  8815. source: "./media/characters/kara/feet.svg"
  8816. }
  8817. },
  8818. },
  8819. [
  8820. {
  8821. name: "Normal",
  8822. height: math.unit(5 + 9 / 12, "feet")
  8823. },
  8824. {
  8825. name: "Macro",
  8826. height: math.unit(174, "feet"),
  8827. default: true
  8828. },
  8829. ]
  8830. ))
  8831. characterMakers.push(() => makeCharacter(
  8832. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8833. {
  8834. front: {
  8835. height: math.unit(18, "feet"),
  8836. weight: math.unit(4050, "lb"),
  8837. name: "Front",
  8838. image: {
  8839. source: "./media/characters/tyrone/front.svg",
  8840. extra: 2405 / 2270,
  8841. bottom: 182 / 2587
  8842. }
  8843. },
  8844. },
  8845. [
  8846. {
  8847. name: "Normal",
  8848. height: math.unit(18, "feet"),
  8849. default: true
  8850. },
  8851. {
  8852. name: "Macro",
  8853. height: math.unit(300, "feet")
  8854. },
  8855. {
  8856. name: "Megamacro",
  8857. height: math.unit(15, "km")
  8858. },
  8859. {
  8860. name: "Gigamacro",
  8861. height: math.unit(500, "km")
  8862. },
  8863. {
  8864. name: "Teramacro",
  8865. height: math.unit(0.5, "gigameters")
  8866. },
  8867. {
  8868. name: "Omnimacro",
  8869. height: math.unit(1e252, "yottauniverse")
  8870. },
  8871. ]
  8872. ))
  8873. characterMakers.push(() => makeCharacter(
  8874. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8875. {
  8876. front: {
  8877. height: math.unit(7 + 8 / 12, "feet"),
  8878. weight: math.unit(120, "lb"),
  8879. name: "Front",
  8880. image: {
  8881. source: "./media/characters/danny/front.svg",
  8882. extra: 1490 / 1350
  8883. }
  8884. },
  8885. back: {
  8886. height: math.unit(7 + 8 / 12, "feet"),
  8887. weight: math.unit(120, "lb"),
  8888. name: "Back",
  8889. image: {
  8890. source: "./media/characters/danny/back.svg",
  8891. extra: 1490 / 1350
  8892. }
  8893. },
  8894. },
  8895. [
  8896. {
  8897. name: "Normal",
  8898. height: math.unit(7 + 8 / 12, "feet"),
  8899. default: true
  8900. },
  8901. ]
  8902. ))
  8903. characterMakers.push(() => makeCharacter(
  8904. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8905. {
  8906. front: {
  8907. height: math.unit(3.5, "inches"),
  8908. weight: math.unit(19, "grams"),
  8909. name: "Front",
  8910. image: {
  8911. source: "./media/characters/mallow/front.svg",
  8912. extra: 471 / 431
  8913. }
  8914. },
  8915. back: {
  8916. height: math.unit(3.5, "inches"),
  8917. weight: math.unit(19, "grams"),
  8918. name: "Back",
  8919. image: {
  8920. source: "./media/characters/mallow/back.svg",
  8921. extra: 471 / 431
  8922. }
  8923. },
  8924. },
  8925. [
  8926. {
  8927. name: "Normal",
  8928. height: math.unit(3.5, "inches"),
  8929. default: true
  8930. },
  8931. ]
  8932. ))
  8933. characterMakers.push(() => makeCharacter(
  8934. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8935. {
  8936. front: {
  8937. height: math.unit(9, "feet"),
  8938. weight: math.unit(230, "kg"),
  8939. name: "Front",
  8940. image: {
  8941. source: "./media/characters/starry-aqua/front.svg"
  8942. }
  8943. },
  8944. back: {
  8945. height: math.unit(9, "feet"),
  8946. weight: math.unit(230, "kg"),
  8947. name: "Back",
  8948. image: {
  8949. source: "./media/characters/starry-aqua/back.svg"
  8950. }
  8951. },
  8952. hand: {
  8953. height: math.unit(9 * 0.1168, "feet"),
  8954. name: "Hand",
  8955. image: {
  8956. source: "./media/characters/starry-aqua/hand.svg"
  8957. }
  8958. },
  8959. foot: {
  8960. height: math.unit(9 * 0.18, "feet"),
  8961. name: "Foot",
  8962. image: {
  8963. source: "./media/characters/starry-aqua/foot.svg"
  8964. }
  8965. }
  8966. },
  8967. [
  8968. {
  8969. name: "Micro",
  8970. height: math.unit(3, "inches")
  8971. },
  8972. {
  8973. name: "Normal",
  8974. height: math.unit(9, "feet")
  8975. },
  8976. {
  8977. name: "Macro",
  8978. height: math.unit(300, "feet"),
  8979. default: true
  8980. },
  8981. {
  8982. name: "Megamacro",
  8983. height: math.unit(3200, "feet")
  8984. }
  8985. ]
  8986. ))
  8987. characterMakers.push(() => makeCharacter(
  8988. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  8989. {
  8990. front: {
  8991. height: math.unit(15, "feet"),
  8992. weight: math.unit(5026, "lb"),
  8993. name: "Front",
  8994. image: {
  8995. source: "./media/characters/luka-towers/front.svg",
  8996. extra: 1269/1133,
  8997. bottom: 51/1320
  8998. }
  8999. },
  9000. },
  9001. [
  9002. {
  9003. name: "Normal",
  9004. height: math.unit(15, "feet"),
  9005. default: true
  9006. },
  9007. {
  9008. name: "Minimacro",
  9009. height: math.unit(25, "feet")
  9010. },
  9011. {
  9012. name: "Macro",
  9013. height: math.unit(320, "feet")
  9014. },
  9015. {
  9016. name: "Megamacro",
  9017. height: math.unit(35000, "feet")
  9018. },
  9019. {
  9020. name: "Gigamacro",
  9021. height: math.unit(4000, "miles")
  9022. },
  9023. {
  9024. name: "Teramacro",
  9025. height: math.unit(15000, "miles")
  9026. },
  9027. ]
  9028. ))
  9029. characterMakers.push(() => makeCharacter(
  9030. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9031. {
  9032. front: {
  9033. height: math.unit(6, "feet"),
  9034. weight: math.unit(150, "lb"),
  9035. name: "Front",
  9036. image: {
  9037. source: "./media/characters/natalie-nightring/front.svg",
  9038. extra: 1,
  9039. bottom: 0.06
  9040. }
  9041. },
  9042. },
  9043. [
  9044. {
  9045. name: "Uh Oh",
  9046. height: math.unit(0.1, "mm")
  9047. },
  9048. {
  9049. name: "Small",
  9050. height: math.unit(3, "inches")
  9051. },
  9052. {
  9053. name: "Human Scale",
  9054. height: math.unit(6, "feet")
  9055. },
  9056. {
  9057. name: "Librarian",
  9058. height: math.unit(50, "feet"),
  9059. default: true
  9060. },
  9061. {
  9062. name: "Immense",
  9063. height: math.unit(200, "miles")
  9064. },
  9065. ]
  9066. ))
  9067. characterMakers.push(() => makeCharacter(
  9068. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9069. {
  9070. front: {
  9071. height: math.unit(6, "feet"),
  9072. weight: math.unit(180, "lbs"),
  9073. name: "Front",
  9074. image: {
  9075. source: "./media/characters/danni-rosie/front.svg",
  9076. extra: 1260 / 1128,
  9077. bottom: 0.022
  9078. }
  9079. },
  9080. },
  9081. [
  9082. {
  9083. name: "Micro",
  9084. height: math.unit(2, "inches"),
  9085. default: true
  9086. },
  9087. ]
  9088. ))
  9089. characterMakers.push(() => makeCharacter(
  9090. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9091. {
  9092. front: {
  9093. height: math.unit(5 + 9 / 12, "feet"),
  9094. weight: math.unit(220, "lb"),
  9095. name: "Front",
  9096. image: {
  9097. source: "./media/characters/samantha-kruse/front.svg",
  9098. extra: (985 / 935),
  9099. bottom: 0.03
  9100. }
  9101. },
  9102. frontUndressed: {
  9103. height: math.unit(5 + 9 / 12, "feet"),
  9104. weight: math.unit(220, "lb"),
  9105. name: "Front (Undressed)",
  9106. image: {
  9107. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9108. extra: (973 / 923),
  9109. bottom: 0.025
  9110. }
  9111. },
  9112. fat: {
  9113. height: math.unit(5 + 9 / 12, "feet"),
  9114. weight: math.unit(900, "lb"),
  9115. name: "Front (Fat)",
  9116. image: {
  9117. source: "./media/characters/samantha-kruse/fat.svg",
  9118. extra: 2688 / 2561
  9119. }
  9120. },
  9121. },
  9122. [
  9123. {
  9124. name: "Normal",
  9125. height: math.unit(5 + 9 / 12, "feet"),
  9126. default: true
  9127. }
  9128. ]
  9129. ))
  9130. characterMakers.push(() => makeCharacter(
  9131. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9132. {
  9133. back: {
  9134. height: math.unit(5 + 4 / 12, "feet"),
  9135. weight: math.unit(4963, "lb"),
  9136. name: "Back",
  9137. image: {
  9138. source: "./media/characters/amelia-rosie/back.svg",
  9139. extra: 1113 / 963,
  9140. bottom: 0.01
  9141. }
  9142. },
  9143. },
  9144. [
  9145. {
  9146. name: "Level 0",
  9147. height: math.unit(5 + 4 / 12, "feet")
  9148. },
  9149. {
  9150. name: "Level 1",
  9151. height: math.unit(164597, "feet"),
  9152. default: true
  9153. },
  9154. {
  9155. name: "Level 2",
  9156. height: math.unit(956243, "miles")
  9157. },
  9158. {
  9159. name: "Level 3",
  9160. height: math.unit(29421709423, "miles")
  9161. },
  9162. {
  9163. name: "Level 4",
  9164. height: math.unit(154, "lightyears")
  9165. },
  9166. {
  9167. name: "Level 5",
  9168. height: math.unit(4738272, "lightyears")
  9169. },
  9170. {
  9171. name: "Level 6",
  9172. height: math.unit(145787152896, "lightyears")
  9173. },
  9174. ]
  9175. ))
  9176. characterMakers.push(() => makeCharacter(
  9177. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9178. {
  9179. front: {
  9180. height: math.unit(5 + 11 / 12, "feet"),
  9181. weight: math.unit(65, "kg"),
  9182. name: "Front",
  9183. image: {
  9184. source: "./media/characters/rook-kitara/front.svg",
  9185. extra: 1347 / 1274,
  9186. bottom: 0.005
  9187. }
  9188. },
  9189. },
  9190. [
  9191. {
  9192. name: "Totally Unfair",
  9193. height: math.unit(1.8, "mm")
  9194. },
  9195. {
  9196. name: "Lap Rookie",
  9197. height: math.unit(1.4, "feet")
  9198. },
  9199. {
  9200. name: "Normal",
  9201. height: math.unit(5 + 11 / 12, "feet"),
  9202. default: true
  9203. },
  9204. {
  9205. name: "How Did This Happen",
  9206. height: math.unit(80, "miles")
  9207. }
  9208. ]
  9209. ))
  9210. characterMakers.push(() => makeCharacter(
  9211. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9212. {
  9213. front: {
  9214. height: math.unit(7, "feet"),
  9215. weight: math.unit(300, "lb"),
  9216. name: "Front",
  9217. image: {
  9218. source: "./media/characters/pisces/front.svg",
  9219. extra: 2255 / 2115,
  9220. bottom: 0.03
  9221. }
  9222. },
  9223. back: {
  9224. height: math.unit(7, "feet"),
  9225. weight: math.unit(300, "lb"),
  9226. name: "Back",
  9227. image: {
  9228. source: "./media/characters/pisces/back.svg",
  9229. extra: 2146 / 2055,
  9230. bottom: 0.04
  9231. }
  9232. },
  9233. },
  9234. [
  9235. {
  9236. name: "Normal",
  9237. height: math.unit(7, "feet"),
  9238. default: true
  9239. },
  9240. {
  9241. name: "Swimming Pool",
  9242. height: math.unit(12.2, "meters")
  9243. },
  9244. {
  9245. name: "Olympic Swimming Pool",
  9246. height: math.unit(56.3, "meters")
  9247. },
  9248. {
  9249. name: "Lake Superior",
  9250. height: math.unit(93900, "meters")
  9251. },
  9252. {
  9253. name: "Mediterranean Sea",
  9254. height: math.unit(644457, "meters")
  9255. },
  9256. {
  9257. name: "World's Oceans",
  9258. height: math.unit(4567491, "meters")
  9259. },
  9260. ]
  9261. ))
  9262. characterMakers.push(() => makeCharacter(
  9263. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9264. {
  9265. front: {
  9266. height: math.unit(2.3, "meters"),
  9267. weight: math.unit(120, "kg"),
  9268. name: "Front",
  9269. image: {
  9270. source: "./media/characters/zelas/front.svg"
  9271. }
  9272. },
  9273. side: {
  9274. height: math.unit(2.3, "meters"),
  9275. weight: math.unit(120, "kg"),
  9276. name: "Side",
  9277. image: {
  9278. source: "./media/characters/zelas/side.svg"
  9279. }
  9280. },
  9281. back: {
  9282. height: math.unit(2.3, "meters"),
  9283. weight: math.unit(120, "kg"),
  9284. name: "Back",
  9285. image: {
  9286. source: "./media/characters/zelas/back.svg"
  9287. }
  9288. },
  9289. foot: {
  9290. height: math.unit(1.116, "feet"),
  9291. name: "Foot",
  9292. image: {
  9293. source: "./media/characters/zelas/foot.svg"
  9294. }
  9295. },
  9296. },
  9297. [
  9298. {
  9299. name: "Normal",
  9300. height: math.unit(2.3, "meters")
  9301. },
  9302. {
  9303. name: "Macro",
  9304. height: math.unit(30, "meters"),
  9305. default: true
  9306. },
  9307. ]
  9308. ))
  9309. characterMakers.push(() => makeCharacter(
  9310. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9311. {
  9312. front: {
  9313. height: math.unit(1, "inch"),
  9314. weight: math.unit(0.21, "grams"),
  9315. name: "Front",
  9316. image: {
  9317. source: "./media/characters/talbot/front.svg",
  9318. extra: 594 / 544
  9319. }
  9320. },
  9321. },
  9322. [
  9323. {
  9324. name: "Micro",
  9325. height: math.unit(1, "inch"),
  9326. default: true
  9327. },
  9328. ]
  9329. ))
  9330. characterMakers.push(() => makeCharacter(
  9331. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9332. {
  9333. front: {
  9334. height: math.unit(3 + 3 / 12, "feet"),
  9335. weight: math.unit(51.8, "lb"),
  9336. name: "Front",
  9337. image: {
  9338. source: "./media/characters/fliss/front.svg",
  9339. extra: 840 / 640
  9340. }
  9341. },
  9342. },
  9343. [
  9344. {
  9345. name: "Teeny Tiny",
  9346. height: math.unit(1, "mm")
  9347. },
  9348. {
  9349. name: "Small",
  9350. height: math.unit(1, "inch"),
  9351. default: true
  9352. },
  9353. {
  9354. name: "Standard Sylveon",
  9355. height: math.unit(3 + 3 / 12, "feet")
  9356. },
  9357. {
  9358. name: "Large Nuisance",
  9359. height: math.unit(33, "feet")
  9360. },
  9361. {
  9362. name: "City Filler",
  9363. height: math.unit(3000, "feet")
  9364. },
  9365. {
  9366. name: "New Horizon",
  9367. height: math.unit(6000, "miles")
  9368. },
  9369. ]
  9370. ))
  9371. characterMakers.push(() => makeCharacter(
  9372. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9373. {
  9374. front: {
  9375. height: math.unit(5, "cm"),
  9376. weight: math.unit(1.94, "g"),
  9377. name: "Front",
  9378. image: {
  9379. source: "./media/characters/fleta/front.svg",
  9380. extra: 835 / 803
  9381. }
  9382. },
  9383. back: {
  9384. height: math.unit(5, "cm"),
  9385. weight: math.unit(1.94, "g"),
  9386. name: "Back",
  9387. image: {
  9388. source: "./media/characters/fleta/back.svg",
  9389. extra: 835 / 803
  9390. }
  9391. },
  9392. },
  9393. [
  9394. {
  9395. name: "Micro",
  9396. height: math.unit(5, "cm"),
  9397. default: true
  9398. },
  9399. ]
  9400. ))
  9401. characterMakers.push(() => makeCharacter(
  9402. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9403. {
  9404. front: {
  9405. height: math.unit(6, "feet"),
  9406. weight: math.unit(225, "lb"),
  9407. name: "Front",
  9408. image: {
  9409. source: "./media/characters/dominic/front.svg",
  9410. extra: 1770 / 1620,
  9411. bottom: 0.025
  9412. }
  9413. },
  9414. back: {
  9415. height: math.unit(6, "feet"),
  9416. weight: math.unit(225, "lb"),
  9417. name: "Back",
  9418. image: {
  9419. source: "./media/characters/dominic/back.svg",
  9420. extra: 1745 / 1620,
  9421. bottom: 0.065
  9422. }
  9423. },
  9424. },
  9425. [
  9426. {
  9427. name: "Nano",
  9428. height: math.unit(0.1, "mm")
  9429. },
  9430. {
  9431. name: "Micro-",
  9432. height: math.unit(1, "mm")
  9433. },
  9434. {
  9435. name: "Micro",
  9436. height: math.unit(4, "inches")
  9437. },
  9438. {
  9439. name: "Normal",
  9440. height: math.unit(6 + 4 / 12, "feet"),
  9441. default: true
  9442. },
  9443. {
  9444. name: "Macro",
  9445. height: math.unit(115, "feet")
  9446. },
  9447. {
  9448. name: "Macro+",
  9449. height: math.unit(955, "feet")
  9450. },
  9451. {
  9452. name: "Megamacro",
  9453. height: math.unit(8990, "feet")
  9454. },
  9455. {
  9456. name: "Gigmacro",
  9457. height: math.unit(9310, "miles")
  9458. },
  9459. {
  9460. name: "Teramacro",
  9461. height: math.unit(1567005010, "miles")
  9462. },
  9463. {
  9464. name: "Examacro",
  9465. height: math.unit(1425, "parsecs")
  9466. },
  9467. ]
  9468. ))
  9469. characterMakers.push(() => makeCharacter(
  9470. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9471. {
  9472. front: {
  9473. height: math.unit(400, "feet"),
  9474. weight: math.unit(44444444, "lb"),
  9475. name: "Front",
  9476. image: {
  9477. source: "./media/characters/major-colonel/front.svg"
  9478. }
  9479. },
  9480. back: {
  9481. height: math.unit(400, "feet"),
  9482. weight: math.unit(44444444, "lb"),
  9483. name: "Back",
  9484. image: {
  9485. source: "./media/characters/major-colonel/back.svg"
  9486. }
  9487. },
  9488. },
  9489. [
  9490. {
  9491. name: "Macro",
  9492. height: math.unit(400, "feet"),
  9493. default: true
  9494. },
  9495. ]
  9496. ))
  9497. characterMakers.push(() => makeCharacter(
  9498. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9499. {
  9500. catFront: {
  9501. height: math.unit(6, "feet"),
  9502. weight: math.unit(120, "lb"),
  9503. name: "Front (Cat Side)",
  9504. image: {
  9505. source: "./media/characters/axel-lycan/cat-front.svg",
  9506. extra: 430 / 402,
  9507. bottom: 43 / 472.35
  9508. }
  9509. },
  9510. catBack: {
  9511. height: math.unit(6, "feet"),
  9512. weight: math.unit(120, "lb"),
  9513. name: "Back (Cat Side)",
  9514. image: {
  9515. source: "./media/characters/axel-lycan/cat-back.svg",
  9516. extra: 447 / 419,
  9517. bottom: 23.3 / 469
  9518. }
  9519. },
  9520. wolfFront: {
  9521. height: math.unit(6, "feet"),
  9522. weight: math.unit(120, "lb"),
  9523. name: "Front (Wolf Side)",
  9524. image: {
  9525. source: "./media/characters/axel-lycan/wolf-front.svg",
  9526. extra: 485 / 456,
  9527. bottom: 19 / 504
  9528. }
  9529. },
  9530. wolfBack: {
  9531. height: math.unit(6, "feet"),
  9532. weight: math.unit(120, "lb"),
  9533. name: "Back (Wolf Side)",
  9534. image: {
  9535. source: "./media/characters/axel-lycan/wolf-back.svg",
  9536. extra: 475 / 438,
  9537. bottom: 39.2 / 514
  9538. }
  9539. },
  9540. },
  9541. [
  9542. {
  9543. name: "Macro",
  9544. height: math.unit(1, "km"),
  9545. default: true
  9546. },
  9547. ]
  9548. ))
  9549. characterMakers.push(() => makeCharacter(
  9550. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9551. {
  9552. front: {
  9553. height: math.unit(5 + 9 / 12, "feet"),
  9554. weight: math.unit(175, "lb"),
  9555. name: "Front",
  9556. image: {
  9557. source: "./media/characters/vanrel-hyena/front.svg",
  9558. extra: 1086 / 1010,
  9559. bottom: 0.04
  9560. }
  9561. },
  9562. },
  9563. [
  9564. {
  9565. name: "Normal",
  9566. height: math.unit(5 + 9 / 12, "feet"),
  9567. default: true
  9568. },
  9569. ]
  9570. ))
  9571. characterMakers.push(() => makeCharacter(
  9572. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9573. {
  9574. front: {
  9575. height: math.unit(6, "feet"),
  9576. weight: math.unit(103, "lb"),
  9577. name: "Front",
  9578. image: {
  9579. source: "./media/characters/abbott-absol/front.svg",
  9580. extra: 2010 / 1842
  9581. }
  9582. },
  9583. },
  9584. [
  9585. {
  9586. name: "Megamicro",
  9587. height: math.unit(0.1, "mm")
  9588. },
  9589. {
  9590. name: "Micro",
  9591. height: math.unit(1, "inch")
  9592. },
  9593. {
  9594. name: "Normal",
  9595. height: math.unit(6, "feet"),
  9596. default: true
  9597. },
  9598. ]
  9599. ))
  9600. characterMakers.push(() => makeCharacter(
  9601. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9602. {
  9603. front: {
  9604. height: math.unit(6, "feet"),
  9605. weight: math.unit(264, "lb"),
  9606. name: "Front",
  9607. image: {
  9608. source: "./media/characters/hector/front.svg",
  9609. extra: 2280 / 2130,
  9610. bottom: 0.07
  9611. }
  9612. },
  9613. },
  9614. [
  9615. {
  9616. name: "Normal",
  9617. height: math.unit(12.25, "foot"),
  9618. default: true
  9619. },
  9620. {
  9621. name: "Macro",
  9622. height: math.unit(160, "feet")
  9623. },
  9624. ]
  9625. ))
  9626. characterMakers.push(() => makeCharacter(
  9627. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9628. {
  9629. front: {
  9630. height: math.unit(6, "feet"),
  9631. weight: math.unit(150, "lb"),
  9632. name: "Front",
  9633. image: {
  9634. source: "./media/characters/sal/front.svg",
  9635. extra: 1846 / 1699,
  9636. bottom: 0.04
  9637. }
  9638. },
  9639. },
  9640. [
  9641. {
  9642. name: "Megamacro",
  9643. height: math.unit(10, "miles"),
  9644. default: true
  9645. },
  9646. ]
  9647. ))
  9648. characterMakers.push(() => makeCharacter(
  9649. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9650. {
  9651. front: {
  9652. height: math.unit(3, "meters"),
  9653. weight: math.unit(450, "kg"),
  9654. name: "front",
  9655. image: {
  9656. source: "./media/characters/ranger/front.svg",
  9657. extra: 2401 / 2243,
  9658. bottom: 0.05
  9659. }
  9660. },
  9661. },
  9662. [
  9663. {
  9664. name: "Normal",
  9665. height: math.unit(3, "meters"),
  9666. default: true
  9667. },
  9668. ]
  9669. ))
  9670. characterMakers.push(() => makeCharacter(
  9671. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9672. {
  9673. front: {
  9674. height: math.unit(14, "feet"),
  9675. weight: math.unit(800, "kg"),
  9676. name: "Front",
  9677. image: {
  9678. source: "./media/characters/theresa/front.svg",
  9679. extra: 3575 / 3346,
  9680. bottom: 0.03
  9681. }
  9682. },
  9683. },
  9684. [
  9685. {
  9686. name: "Normal",
  9687. height: math.unit(14, "feet"),
  9688. default: true
  9689. },
  9690. ]
  9691. ))
  9692. characterMakers.push(() => makeCharacter(
  9693. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9694. {
  9695. front: {
  9696. height: math.unit(6, "feet"),
  9697. weight: math.unit(3, "kg"),
  9698. name: "Front",
  9699. image: {
  9700. source: "./media/characters/ine/front.svg",
  9701. extra: 678 / 539,
  9702. bottom: 0.023
  9703. }
  9704. },
  9705. },
  9706. [
  9707. {
  9708. name: "Normal",
  9709. height: math.unit(2.265, "feet"),
  9710. default: true
  9711. },
  9712. ]
  9713. ))
  9714. characterMakers.push(() => makeCharacter(
  9715. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9716. {
  9717. front: {
  9718. height: math.unit(5, "feet"),
  9719. weight: math.unit(30, "kg"),
  9720. name: "Front",
  9721. image: {
  9722. source: "./media/characters/vial/front.svg",
  9723. extra: 1365 / 1277,
  9724. bottom: 0.04
  9725. }
  9726. },
  9727. },
  9728. [
  9729. {
  9730. name: "Normal",
  9731. height: math.unit(5, "feet"),
  9732. default: true
  9733. },
  9734. ]
  9735. ))
  9736. characterMakers.push(() => makeCharacter(
  9737. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9738. {
  9739. side: {
  9740. height: math.unit(3.4, "meters"),
  9741. weight: math.unit(1000, "lb"),
  9742. name: "Side",
  9743. image: {
  9744. source: "./media/characters/rovoska/side.svg",
  9745. extra: 4403 / 1515
  9746. }
  9747. },
  9748. },
  9749. [
  9750. {
  9751. name: "Normal",
  9752. height: math.unit(3.4, "meters"),
  9753. default: true
  9754. },
  9755. ]
  9756. ))
  9757. characterMakers.push(() => makeCharacter(
  9758. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9759. {
  9760. front: {
  9761. height: math.unit(8, "feet"),
  9762. weight: math.unit(315, "lb"),
  9763. name: "Front",
  9764. image: {
  9765. source: "./media/characters/gunner-rotthbauer/front.svg"
  9766. }
  9767. },
  9768. back: {
  9769. height: math.unit(8, "feet"),
  9770. weight: math.unit(315, "lb"),
  9771. name: "Back",
  9772. image: {
  9773. source: "./media/characters/gunner-rotthbauer/back.svg"
  9774. }
  9775. },
  9776. },
  9777. [
  9778. {
  9779. name: "Micro",
  9780. height: math.unit(3.5, "inches")
  9781. },
  9782. {
  9783. name: "Normal",
  9784. height: math.unit(8, "feet"),
  9785. default: true
  9786. },
  9787. {
  9788. name: "Macro",
  9789. height: math.unit(250, "feet")
  9790. },
  9791. {
  9792. name: "Megamacro",
  9793. height: math.unit(1, "AU")
  9794. },
  9795. ]
  9796. ))
  9797. characterMakers.push(() => makeCharacter(
  9798. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9799. {
  9800. front: {
  9801. height: math.unit(5 + 5 / 12, "feet"),
  9802. weight: math.unit(140, "lb"),
  9803. name: "Front",
  9804. image: {
  9805. source: "./media/characters/allatia/front.svg",
  9806. extra: 1227 / 1180,
  9807. bottom: 0.027
  9808. }
  9809. },
  9810. },
  9811. [
  9812. {
  9813. name: "Normal",
  9814. height: math.unit(5 + 5 / 12, "feet")
  9815. },
  9816. {
  9817. name: "Macro",
  9818. height: math.unit(250, "feet"),
  9819. default: true
  9820. },
  9821. {
  9822. name: "Megamacro",
  9823. height: math.unit(8, "miles")
  9824. }
  9825. ]
  9826. ))
  9827. characterMakers.push(() => makeCharacter(
  9828. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9829. {
  9830. front: {
  9831. height: math.unit(6, "feet"),
  9832. weight: math.unit(120, "lb"),
  9833. name: "Front",
  9834. image: {
  9835. source: "./media/characters/tene/front.svg",
  9836. extra: 1728 / 1578,
  9837. bottom: 0.022
  9838. }
  9839. },
  9840. stomping: {
  9841. height: math.unit(2.025, "meters"),
  9842. weight: math.unit(120, "lb"),
  9843. name: "Stomping",
  9844. image: {
  9845. source: "./media/characters/tene/stomping.svg",
  9846. extra: 938 / 873,
  9847. bottom: 0.01
  9848. }
  9849. },
  9850. sitting: {
  9851. height: math.unit(1, "meter"),
  9852. weight: math.unit(120, "lb"),
  9853. name: "Sitting",
  9854. image: {
  9855. source: "./media/characters/tene/sitting.svg",
  9856. extra: 437 / 415,
  9857. bottom: 0.1
  9858. }
  9859. },
  9860. feral: {
  9861. height: math.unit(3.9, "feet"),
  9862. weight: math.unit(250, "lb"),
  9863. name: "Feral",
  9864. image: {
  9865. source: "./media/characters/tene/feral.svg",
  9866. extra: 717 / 458,
  9867. bottom: 0.179
  9868. }
  9869. },
  9870. },
  9871. [
  9872. {
  9873. name: "Normal",
  9874. height: math.unit(6, "feet")
  9875. },
  9876. {
  9877. name: "Macro",
  9878. height: math.unit(300, "feet"),
  9879. default: true
  9880. },
  9881. {
  9882. name: "Megamacro",
  9883. height: math.unit(5, "miles")
  9884. },
  9885. ]
  9886. ))
  9887. characterMakers.push(() => makeCharacter(
  9888. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9889. {
  9890. side: {
  9891. height: math.unit(6, "feet"),
  9892. name: "Side",
  9893. image: {
  9894. source: "./media/characters/evander/side.svg",
  9895. extra: 877 / 477
  9896. }
  9897. },
  9898. },
  9899. [
  9900. {
  9901. name: "Normal",
  9902. height: math.unit(0.83, "meters"),
  9903. default: true
  9904. },
  9905. ]
  9906. ))
  9907. characterMakers.push(() => makeCharacter(
  9908. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9909. {
  9910. front: {
  9911. height: math.unit(12, "feet"),
  9912. weight: math.unit(1000, "lb"),
  9913. name: "Front",
  9914. image: {
  9915. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9916. extra: 1762 / 1611
  9917. }
  9918. },
  9919. back: {
  9920. height: math.unit(12, "feet"),
  9921. weight: math.unit(1000, "lb"),
  9922. name: "Back",
  9923. image: {
  9924. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9925. extra: 1762 / 1611
  9926. }
  9927. },
  9928. },
  9929. [
  9930. {
  9931. name: "Normal",
  9932. height: math.unit(12, "feet"),
  9933. default: true
  9934. },
  9935. {
  9936. name: "Kaiju",
  9937. height: math.unit(150, "feet")
  9938. },
  9939. ]
  9940. ))
  9941. characterMakers.push(() => makeCharacter(
  9942. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9943. {
  9944. front: {
  9945. height: math.unit(6, "feet"),
  9946. weight: math.unit(150, "lb"),
  9947. name: "Front",
  9948. image: {
  9949. source: "./media/characters/zero-alurus/front.svg"
  9950. }
  9951. },
  9952. back: {
  9953. height: math.unit(6, "feet"),
  9954. weight: math.unit(150, "lb"),
  9955. name: "Back",
  9956. image: {
  9957. source: "./media/characters/zero-alurus/back.svg"
  9958. }
  9959. },
  9960. },
  9961. [
  9962. {
  9963. name: "Normal",
  9964. height: math.unit(5 + 10 / 12, "feet")
  9965. },
  9966. {
  9967. name: "Macro",
  9968. height: math.unit(60, "feet"),
  9969. default: true
  9970. },
  9971. {
  9972. name: "Macro+",
  9973. height: math.unit(450, "feet")
  9974. },
  9975. ]
  9976. ))
  9977. characterMakers.push(() => makeCharacter(
  9978. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9979. {
  9980. front: {
  9981. height: math.unit(6, "feet"),
  9982. weight: math.unit(200, "lb"),
  9983. name: "Front",
  9984. image: {
  9985. source: "./media/characters/mega-shi/front.svg",
  9986. extra: 1279 / 1250,
  9987. bottom: 0.02
  9988. }
  9989. },
  9990. back: {
  9991. height: math.unit(6, "feet"),
  9992. weight: math.unit(200, "lb"),
  9993. name: "Back",
  9994. image: {
  9995. source: "./media/characters/mega-shi/back.svg",
  9996. extra: 1279 / 1250,
  9997. bottom: 0.02
  9998. }
  9999. },
  10000. },
  10001. [
  10002. {
  10003. name: "Micro",
  10004. height: math.unit(16 + 6 / 12, "feet")
  10005. },
  10006. {
  10007. name: "Third Dimension",
  10008. height: math.unit(40, "meters")
  10009. },
  10010. {
  10011. name: "Normal",
  10012. height: math.unit(660, "feet"),
  10013. default: true
  10014. },
  10015. {
  10016. name: "Megamacro",
  10017. height: math.unit(10, "miles")
  10018. },
  10019. {
  10020. name: "Planetary Launch",
  10021. height: math.unit(500, "miles")
  10022. },
  10023. {
  10024. name: "Interstellar",
  10025. height: math.unit(1e9, "miles")
  10026. },
  10027. {
  10028. name: "Leaving the Universe",
  10029. height: math.unit(1, "gigaparsec")
  10030. },
  10031. {
  10032. name: "Travelling Universes",
  10033. height: math.unit(30e15, "parsecs")
  10034. },
  10035. ]
  10036. ))
  10037. characterMakers.push(() => makeCharacter(
  10038. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10039. {
  10040. front: {
  10041. height: math.unit(6, "feet"),
  10042. weight: math.unit(150, "lb"),
  10043. name: "Front",
  10044. image: {
  10045. source: "./media/characters/odyssey/front.svg",
  10046. extra: 1782 / 1582,
  10047. bottom: 0.01
  10048. }
  10049. },
  10050. side: {
  10051. height: math.unit(5.7, "feet"),
  10052. weight: math.unit(140, "lb"),
  10053. name: "Side",
  10054. image: {
  10055. source: "./media/characters/odyssey/side.svg",
  10056. extra: 6462 / 5700
  10057. }
  10058. },
  10059. },
  10060. [
  10061. {
  10062. name: "Normal",
  10063. height: math.unit(5 + 4 / 12, "feet")
  10064. },
  10065. {
  10066. name: "Macro",
  10067. height: math.unit(1, "km")
  10068. },
  10069. {
  10070. name: "Megamacro",
  10071. height: math.unit(3000, "km")
  10072. },
  10073. {
  10074. name: "Gigamacro",
  10075. height: math.unit(1, "AU"),
  10076. default: true
  10077. },
  10078. {
  10079. name: "Omniversal",
  10080. height: math.unit(100e14, "lightyears")
  10081. },
  10082. ]
  10083. ))
  10084. characterMakers.push(() => makeCharacter(
  10085. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10086. {
  10087. front: {
  10088. height: math.unit(6, "feet"),
  10089. weight: math.unit(300, "lb"),
  10090. name: "Front",
  10091. image: {
  10092. source: "./media/characters/mekuto/front.svg",
  10093. extra: 921 / 832,
  10094. bottom: 0.03
  10095. }
  10096. },
  10097. hand: {
  10098. height: math.unit(6 / 10.24, "feet"),
  10099. name: "Hand",
  10100. image: {
  10101. source: "./media/characters/mekuto/hand.svg"
  10102. }
  10103. },
  10104. foot: {
  10105. height: math.unit(6 / 5.05, "feet"),
  10106. name: "Foot",
  10107. image: {
  10108. source: "./media/characters/mekuto/foot.svg"
  10109. }
  10110. },
  10111. },
  10112. [
  10113. {
  10114. name: "Minimicro",
  10115. height: math.unit(0.2, "inches")
  10116. },
  10117. {
  10118. name: "Micro",
  10119. height: math.unit(1.5, "inches")
  10120. },
  10121. {
  10122. name: "Normal",
  10123. height: math.unit(5 + 11 / 12, "feet"),
  10124. default: true
  10125. },
  10126. {
  10127. name: "Minimacro",
  10128. height: math.unit(17 + 9 / 12, "feet")
  10129. },
  10130. {
  10131. name: "Macro",
  10132. height: math.unit(177.5, "feet")
  10133. },
  10134. {
  10135. name: "Megamacro",
  10136. height: math.unit(152, "miles")
  10137. },
  10138. ]
  10139. ))
  10140. characterMakers.push(() => makeCharacter(
  10141. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10142. {
  10143. front: {
  10144. height: math.unit(6.5, "inches"),
  10145. weight: math.unit(13, "oz"),
  10146. name: "Front",
  10147. image: {
  10148. source: "./media/characters/dafydd-tomos/front.svg",
  10149. extra: 2990 / 2603,
  10150. bottom: 0.03
  10151. }
  10152. },
  10153. },
  10154. [
  10155. {
  10156. name: "Micro",
  10157. height: math.unit(6.5, "inches"),
  10158. default: true
  10159. },
  10160. ]
  10161. ))
  10162. characterMakers.push(() => makeCharacter(
  10163. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10164. {
  10165. front: {
  10166. height: math.unit(6, "feet"),
  10167. weight: math.unit(150, "lb"),
  10168. name: "Front",
  10169. image: {
  10170. source: "./media/characters/splinter/front.svg",
  10171. extra: 2990 / 2882,
  10172. bottom: 0.04
  10173. }
  10174. },
  10175. back: {
  10176. height: math.unit(6, "feet"),
  10177. weight: math.unit(150, "lb"),
  10178. name: "Back",
  10179. image: {
  10180. source: "./media/characters/splinter/back.svg",
  10181. extra: 2990 / 2882,
  10182. bottom: 0.04
  10183. }
  10184. },
  10185. },
  10186. [
  10187. {
  10188. name: "Normal",
  10189. height: math.unit(6, "feet")
  10190. },
  10191. {
  10192. name: "Macro",
  10193. height: math.unit(230, "meters"),
  10194. default: true
  10195. },
  10196. ]
  10197. ))
  10198. characterMakers.push(() => makeCharacter(
  10199. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10200. {
  10201. front: {
  10202. height: math.unit(4 + 10 / 12, "feet"),
  10203. weight: math.unit(480, "lb"),
  10204. name: "Front",
  10205. image: {
  10206. source: "./media/characters/snow-gabumon/front.svg",
  10207. extra: 1140 / 963,
  10208. bottom: 0.058
  10209. }
  10210. },
  10211. back: {
  10212. height: math.unit(4 + 10 / 12, "feet"),
  10213. weight: math.unit(480, "lb"),
  10214. name: "Back",
  10215. image: {
  10216. source: "./media/characters/snow-gabumon/back.svg",
  10217. extra: 1115 / 962,
  10218. bottom: 0.041
  10219. }
  10220. },
  10221. frontUndresed: {
  10222. height: math.unit(4 + 10 / 12, "feet"),
  10223. weight: math.unit(480, "lb"),
  10224. name: "Front (Undressed)",
  10225. image: {
  10226. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10227. extra: 1061 / 960,
  10228. bottom: 0.045
  10229. }
  10230. },
  10231. },
  10232. [
  10233. {
  10234. name: "Micro",
  10235. height: math.unit(1, "inch")
  10236. },
  10237. {
  10238. name: "Normal",
  10239. height: math.unit(4 + 10 / 12, "feet"),
  10240. default: true
  10241. },
  10242. {
  10243. name: "Macro",
  10244. height: math.unit(200, "feet")
  10245. },
  10246. {
  10247. name: "Megamacro",
  10248. height: math.unit(120, "miles")
  10249. },
  10250. {
  10251. name: "Gigamacro",
  10252. height: math.unit(9800, "miles")
  10253. },
  10254. ]
  10255. ))
  10256. characterMakers.push(() => makeCharacter(
  10257. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10258. {
  10259. front: {
  10260. height: math.unit(1.7, "meters"),
  10261. weight: math.unit(140, "lb"),
  10262. name: "Front",
  10263. image: {
  10264. source: "./media/characters/moody/front.svg",
  10265. extra: 3226 / 3007,
  10266. bottom: 0.087
  10267. }
  10268. },
  10269. },
  10270. [
  10271. {
  10272. name: "Micro",
  10273. height: math.unit(1, "mm")
  10274. },
  10275. {
  10276. name: "Normal",
  10277. height: math.unit(1.7, "meters"),
  10278. default: true
  10279. },
  10280. {
  10281. name: "Macro",
  10282. height: math.unit(80, "meters")
  10283. },
  10284. {
  10285. name: "Macro+",
  10286. height: math.unit(500, "meters")
  10287. },
  10288. ]
  10289. ))
  10290. characterMakers.push(() => makeCharacter(
  10291. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10292. {
  10293. front: {
  10294. height: math.unit(6, "feet"),
  10295. weight: math.unit(150, "lb"),
  10296. name: "Front",
  10297. image: {
  10298. source: "./media/characters/zyas/front.svg",
  10299. extra: 1180 / 1120,
  10300. bottom: 0.045
  10301. }
  10302. },
  10303. },
  10304. [
  10305. {
  10306. name: "Normal",
  10307. height: math.unit(10, "feet"),
  10308. default: true
  10309. },
  10310. {
  10311. name: "Macro",
  10312. height: math.unit(500, "feet")
  10313. },
  10314. {
  10315. name: "Megamacro",
  10316. height: math.unit(5, "miles")
  10317. },
  10318. {
  10319. name: "Teramacro",
  10320. height: math.unit(150000, "miles")
  10321. },
  10322. ]
  10323. ))
  10324. characterMakers.push(() => makeCharacter(
  10325. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10326. {
  10327. front: {
  10328. height: math.unit(6, "feet"),
  10329. weight: math.unit(150, "lb"),
  10330. name: "Front",
  10331. image: {
  10332. source: "./media/characters/cuon/front.svg",
  10333. extra: 1390 / 1320,
  10334. bottom: 0.008
  10335. }
  10336. },
  10337. },
  10338. [
  10339. {
  10340. name: "Micro",
  10341. height: math.unit(3, "inches")
  10342. },
  10343. {
  10344. name: "Normal",
  10345. height: math.unit(18 + 9 / 12, "feet"),
  10346. default: true
  10347. },
  10348. {
  10349. name: "Macro",
  10350. height: math.unit(360, "feet")
  10351. },
  10352. {
  10353. name: "Megamacro",
  10354. height: math.unit(360, "miles")
  10355. },
  10356. ]
  10357. ))
  10358. characterMakers.push(() => makeCharacter(
  10359. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10360. {
  10361. front: {
  10362. height: math.unit(2.4, "meters"),
  10363. weight: math.unit(70, "kg"),
  10364. name: "Front",
  10365. image: {
  10366. source: "./media/characters/nyanuxk/front.svg",
  10367. extra: 1172 / 1084,
  10368. bottom: 0.065
  10369. }
  10370. },
  10371. side: {
  10372. height: math.unit(2.4, "meters"),
  10373. weight: math.unit(70, "kg"),
  10374. name: "Side",
  10375. image: {
  10376. source: "./media/characters/nyanuxk/side.svg",
  10377. extra: 1190 / 1132,
  10378. bottom: 0.007
  10379. }
  10380. },
  10381. back: {
  10382. height: math.unit(2.4, "meters"),
  10383. weight: math.unit(70, "kg"),
  10384. name: "Back",
  10385. image: {
  10386. source: "./media/characters/nyanuxk/back.svg",
  10387. extra: 1200 / 1141,
  10388. bottom: 0.015
  10389. }
  10390. },
  10391. foot: {
  10392. height: math.unit(0.52, "meters"),
  10393. name: "Foot",
  10394. image: {
  10395. source: "./media/characters/nyanuxk/foot.svg"
  10396. }
  10397. },
  10398. },
  10399. [
  10400. {
  10401. name: "Micro",
  10402. height: math.unit(2, "cm")
  10403. },
  10404. {
  10405. name: "Normal",
  10406. height: math.unit(2.4, "meters"),
  10407. default: true
  10408. },
  10409. {
  10410. name: "Smaller Macro",
  10411. height: math.unit(120, "meters")
  10412. },
  10413. {
  10414. name: "Bigger Macro",
  10415. height: math.unit(1.2, "km")
  10416. },
  10417. {
  10418. name: "Megamacro",
  10419. height: math.unit(15, "kilometers")
  10420. },
  10421. {
  10422. name: "Gigamacro",
  10423. height: math.unit(2000, "km")
  10424. },
  10425. {
  10426. name: "Teramacro",
  10427. height: math.unit(500000, "km")
  10428. },
  10429. ]
  10430. ))
  10431. characterMakers.push(() => makeCharacter(
  10432. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10433. {
  10434. side: {
  10435. height: math.unit(6, "feet"),
  10436. name: "Side",
  10437. image: {
  10438. source: "./media/characters/ailbhe/side.svg",
  10439. extra: 757 / 464,
  10440. bottom: 0.041
  10441. }
  10442. },
  10443. },
  10444. [
  10445. {
  10446. name: "Normal",
  10447. height: math.unit(1.07, "meters"),
  10448. default: true
  10449. },
  10450. ]
  10451. ))
  10452. characterMakers.push(() => makeCharacter(
  10453. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10454. {
  10455. front: {
  10456. height: math.unit(6, "feet"),
  10457. weight: math.unit(120, "kg"),
  10458. name: "Front",
  10459. image: {
  10460. source: "./media/characters/zevulfius/front.svg",
  10461. extra: 965 / 903
  10462. }
  10463. },
  10464. side: {
  10465. height: math.unit(6, "feet"),
  10466. weight: math.unit(120, "kg"),
  10467. name: "Side",
  10468. image: {
  10469. source: "./media/characters/zevulfius/side.svg",
  10470. extra: 939 / 900
  10471. }
  10472. },
  10473. back: {
  10474. height: math.unit(6, "feet"),
  10475. weight: math.unit(120, "kg"),
  10476. name: "Back",
  10477. image: {
  10478. source: "./media/characters/zevulfius/back.svg",
  10479. extra: 918 / 854,
  10480. bottom: 0.005
  10481. }
  10482. },
  10483. foot: {
  10484. height: math.unit(6 / 3.72, "feet"),
  10485. name: "Foot",
  10486. image: {
  10487. source: "./media/characters/zevulfius/foot.svg"
  10488. }
  10489. },
  10490. },
  10491. [
  10492. {
  10493. name: "Macro",
  10494. height: math.unit(750, "meters")
  10495. },
  10496. {
  10497. name: "Megamacro",
  10498. height: math.unit(20, "km"),
  10499. default: true
  10500. },
  10501. {
  10502. name: "Gigamacro",
  10503. height: math.unit(2000, "km")
  10504. },
  10505. {
  10506. name: "Teramacro",
  10507. height: math.unit(250000, "km")
  10508. },
  10509. ]
  10510. ))
  10511. characterMakers.push(() => makeCharacter(
  10512. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10513. {
  10514. front: {
  10515. height: math.unit(100, "feet"),
  10516. weight: math.unit(350, "kg"),
  10517. name: "Front",
  10518. image: {
  10519. source: "./media/characters/rikes/front.svg",
  10520. extra: 1565 / 1483,
  10521. bottom: 0.017
  10522. }
  10523. },
  10524. },
  10525. [
  10526. {
  10527. name: "Macro",
  10528. height: math.unit(100, "feet"),
  10529. default: true
  10530. },
  10531. ]
  10532. ))
  10533. characterMakers.push(() => makeCharacter(
  10534. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10535. {
  10536. front: {
  10537. height: math.unit(8, "feet"),
  10538. weight: math.unit(356, "lb"),
  10539. name: "Front",
  10540. image: {
  10541. source: "./media/characters/adam-silver-mane/front.svg",
  10542. extra: 1036/937,
  10543. bottom: 63/1099
  10544. }
  10545. },
  10546. side: {
  10547. height: math.unit(8, "feet"),
  10548. weight: math.unit(356, "lb"),
  10549. name: "Side",
  10550. image: {
  10551. source: "./media/characters/adam-silver-mane/side.svg",
  10552. extra: 997/901,
  10553. bottom: 59/1056
  10554. }
  10555. },
  10556. frontNsfw: {
  10557. height: math.unit(8, "feet"),
  10558. weight: math.unit(356, "lb"),
  10559. name: "Front (NSFW)",
  10560. image: {
  10561. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10562. extra: 1036/937,
  10563. bottom: 63/1099
  10564. }
  10565. },
  10566. sideNsfw: {
  10567. height: math.unit(8, "feet"),
  10568. weight: math.unit(356, "lb"),
  10569. name: "Side (NSFW)",
  10570. image: {
  10571. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10572. extra: 997/901,
  10573. bottom: 59/1056
  10574. }
  10575. },
  10576. dick: {
  10577. height: math.unit(2.1, "feet"),
  10578. name: "Dick",
  10579. image: {
  10580. source: "./media/characters/adam-silver-mane/dick.svg"
  10581. }
  10582. },
  10583. taur: {
  10584. height: math.unit(16, "feet"),
  10585. weight: math.unit(1500, "kg"),
  10586. name: "Taur",
  10587. image: {
  10588. source: "./media/characters/adam-silver-mane/taur.svg",
  10589. extra: 1713 / 1571,
  10590. bottom: 0.01
  10591. }
  10592. },
  10593. },
  10594. [
  10595. {
  10596. name: "Normal",
  10597. height: math.unit(8, "feet")
  10598. },
  10599. {
  10600. name: "Minimacro",
  10601. height: math.unit(80, "feet")
  10602. },
  10603. {
  10604. name: "MDA",
  10605. height: math.unit(80, "meters")
  10606. },
  10607. {
  10608. name: "Macro",
  10609. height: math.unit(800, "feet"),
  10610. default: true
  10611. },
  10612. {
  10613. name: "Megamacro",
  10614. height: math.unit(8000, "feet")
  10615. },
  10616. {
  10617. name: "Gigamacro",
  10618. height: math.unit(800, "miles")
  10619. },
  10620. {
  10621. name: "Teramacro",
  10622. height: math.unit(80000, "miles")
  10623. },
  10624. {
  10625. name: "Celestial",
  10626. height: math.unit(8e6, "miles")
  10627. },
  10628. {
  10629. name: "Star Dragon",
  10630. height: math.unit(800000, "parsecs")
  10631. },
  10632. {
  10633. name: "Godly",
  10634. height: math.unit(800, "teraparsecs")
  10635. },
  10636. ]
  10637. ))
  10638. characterMakers.push(() => makeCharacter(
  10639. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10640. {
  10641. front: {
  10642. height: math.unit(6, "feet"),
  10643. weight: math.unit(150, "lb"),
  10644. name: "Front",
  10645. image: {
  10646. source: "./media/characters/ky'owin/front.svg",
  10647. extra: 3888 / 3068,
  10648. bottom: 0.015
  10649. }
  10650. },
  10651. },
  10652. [
  10653. {
  10654. name: "Normal",
  10655. height: math.unit(6 + 8 / 12, "feet")
  10656. },
  10657. {
  10658. name: "Large",
  10659. height: math.unit(68, "feet")
  10660. },
  10661. {
  10662. name: "Macro",
  10663. height: math.unit(132, "feet")
  10664. },
  10665. {
  10666. name: "Macro+",
  10667. height: math.unit(340, "feet")
  10668. },
  10669. {
  10670. name: "Macro++",
  10671. height: math.unit(680, "feet"),
  10672. default: true
  10673. },
  10674. {
  10675. name: "Megamacro",
  10676. height: math.unit(1, "mile")
  10677. },
  10678. {
  10679. name: "Megamacro+",
  10680. height: math.unit(10, "miles")
  10681. },
  10682. ]
  10683. ))
  10684. characterMakers.push(() => makeCharacter(
  10685. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10686. {
  10687. front: {
  10688. height: math.unit(4, "feet"),
  10689. weight: math.unit(50, "lb"),
  10690. name: "Front",
  10691. image: {
  10692. source: "./media/characters/mal/front.svg",
  10693. extra: 785 / 724,
  10694. bottom: 0.07
  10695. }
  10696. },
  10697. },
  10698. [
  10699. {
  10700. name: "Micro",
  10701. height: math.unit(4, "inches")
  10702. },
  10703. {
  10704. name: "Normal",
  10705. height: math.unit(4, "feet"),
  10706. default: true
  10707. },
  10708. {
  10709. name: "Macro",
  10710. height: math.unit(200, "feet")
  10711. },
  10712. ]
  10713. ))
  10714. characterMakers.push(() => makeCharacter(
  10715. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10716. {
  10717. front: {
  10718. height: math.unit(6, "feet"),
  10719. weight: math.unit(150, "lb"),
  10720. name: "Front",
  10721. image: {
  10722. source: "./media/characters/jordan-deware/front.svg",
  10723. extra: 1191 / 1012
  10724. }
  10725. },
  10726. },
  10727. [
  10728. {
  10729. name: "Nano",
  10730. height: math.unit(0.01, "mm")
  10731. },
  10732. {
  10733. name: "Minimicro",
  10734. height: math.unit(1, "mm")
  10735. },
  10736. {
  10737. name: "Micro",
  10738. height: math.unit(0.5, "inches")
  10739. },
  10740. {
  10741. name: "Normal",
  10742. height: math.unit(4, "feet"),
  10743. default: true
  10744. },
  10745. {
  10746. name: "Minimacro",
  10747. height: math.unit(40, "meters")
  10748. },
  10749. {
  10750. name: "Small Macro",
  10751. height: math.unit(400, "meters")
  10752. },
  10753. {
  10754. name: "Macro",
  10755. height: math.unit(4, "miles")
  10756. },
  10757. {
  10758. name: "Megamacro",
  10759. height: math.unit(40, "miles")
  10760. },
  10761. {
  10762. name: "Megamacro+",
  10763. height: math.unit(400, "miles")
  10764. },
  10765. {
  10766. name: "Gigamacro",
  10767. height: math.unit(400000, "miles")
  10768. },
  10769. ]
  10770. ))
  10771. characterMakers.push(() => makeCharacter(
  10772. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10773. {
  10774. side: {
  10775. height: math.unit(6, "feet"),
  10776. weight: math.unit(150, "lb"),
  10777. name: "Side",
  10778. image: {
  10779. source: "./media/characters/kimiko/side.svg",
  10780. extra: 600 / 358
  10781. }
  10782. },
  10783. },
  10784. [
  10785. {
  10786. name: "Normal",
  10787. height: math.unit(15, "feet"),
  10788. default: true
  10789. },
  10790. {
  10791. name: "Macro",
  10792. height: math.unit(220, "feet")
  10793. },
  10794. {
  10795. name: "Macro+",
  10796. height: math.unit(1450, "feet")
  10797. },
  10798. {
  10799. name: "Megamacro",
  10800. height: math.unit(11500, "feet")
  10801. },
  10802. {
  10803. name: "Gigamacro",
  10804. height: math.unit(9500, "miles")
  10805. },
  10806. {
  10807. name: "Teramacro",
  10808. height: math.unit(2208005005, "miles")
  10809. },
  10810. {
  10811. name: "Examacro",
  10812. height: math.unit(2750, "parsecs")
  10813. },
  10814. {
  10815. name: "Zettamacro",
  10816. height: math.unit(101500, "parsecs")
  10817. },
  10818. ]
  10819. ))
  10820. characterMakers.push(() => makeCharacter(
  10821. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10822. {
  10823. front: {
  10824. height: math.unit(6, "feet"),
  10825. weight: math.unit(70, "kg"),
  10826. name: "Front",
  10827. image: {
  10828. source: "./media/characters/andrew-sleepy/front.svg"
  10829. }
  10830. },
  10831. side: {
  10832. height: math.unit(6, "feet"),
  10833. weight: math.unit(70, "kg"),
  10834. name: "Side",
  10835. image: {
  10836. source: "./media/characters/andrew-sleepy/side.svg"
  10837. }
  10838. },
  10839. },
  10840. [
  10841. {
  10842. name: "Micro",
  10843. height: math.unit(1, "mm"),
  10844. default: true
  10845. },
  10846. ]
  10847. ))
  10848. characterMakers.push(() => makeCharacter(
  10849. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10850. {
  10851. front: {
  10852. height: math.unit(6, "feet"),
  10853. weight: math.unit(150, "lb"),
  10854. name: "Front",
  10855. image: {
  10856. source: "./media/characters/judio/front.svg",
  10857. extra: 1258 / 1110
  10858. }
  10859. },
  10860. },
  10861. [
  10862. {
  10863. name: "Normal",
  10864. height: math.unit(5 + 6 / 12, "feet")
  10865. },
  10866. {
  10867. name: "Macro",
  10868. height: math.unit(1000, "feet"),
  10869. default: true
  10870. },
  10871. {
  10872. name: "Megamacro",
  10873. height: math.unit(10, "miles")
  10874. },
  10875. ]
  10876. ))
  10877. characterMakers.push(() => makeCharacter(
  10878. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10879. {
  10880. front: {
  10881. height: math.unit(6, "feet"),
  10882. weight: math.unit(68, "kg"),
  10883. name: "Front",
  10884. image: {
  10885. source: "./media/characters/nomaxice/front.svg",
  10886. extra: 1498 / 1073,
  10887. bottom: 0.075
  10888. }
  10889. },
  10890. foot: {
  10891. height: math.unit(1.1, "feet"),
  10892. name: "Foot",
  10893. image: {
  10894. source: "./media/characters/nomaxice/foot.svg"
  10895. }
  10896. },
  10897. },
  10898. [
  10899. {
  10900. name: "Micro",
  10901. height: math.unit(8, "cm")
  10902. },
  10903. {
  10904. name: "Norm",
  10905. height: math.unit(1.82, "m")
  10906. },
  10907. {
  10908. name: "Norm+",
  10909. height: math.unit(8.8, "feet")
  10910. },
  10911. {
  10912. name: "Big",
  10913. height: math.unit(8, "meters"),
  10914. default: true
  10915. },
  10916. {
  10917. name: "Macro",
  10918. height: math.unit(18, "meters")
  10919. },
  10920. {
  10921. name: "Macro+",
  10922. height: math.unit(88, "meters")
  10923. },
  10924. ]
  10925. ))
  10926. characterMakers.push(() => makeCharacter(
  10927. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10928. {
  10929. front: {
  10930. height: math.unit(12, "feet"),
  10931. weight: math.unit(1.5, "tons"),
  10932. name: "Front",
  10933. image: {
  10934. source: "./media/characters/dydros/front.svg",
  10935. extra: 863 / 800,
  10936. bottom: 0.015
  10937. }
  10938. },
  10939. back: {
  10940. height: math.unit(12, "feet"),
  10941. weight: math.unit(1.5, "tons"),
  10942. name: "Back",
  10943. image: {
  10944. source: "./media/characters/dydros/back.svg",
  10945. extra: 900 / 843,
  10946. bottom: 0.005
  10947. }
  10948. },
  10949. },
  10950. [
  10951. {
  10952. name: "Normal",
  10953. height: math.unit(12, "feet"),
  10954. default: true
  10955. },
  10956. ]
  10957. ))
  10958. characterMakers.push(() => makeCharacter(
  10959. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10960. {
  10961. front: {
  10962. height: math.unit(6, "feet"),
  10963. weight: math.unit(100, "kg"),
  10964. name: "Front",
  10965. image: {
  10966. source: "./media/characters/riggi/front.svg",
  10967. extra: 5787 / 5303
  10968. }
  10969. },
  10970. hyper: {
  10971. height: math.unit(6 * 5 / 3, "feet"),
  10972. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10973. name: "Hyper",
  10974. image: {
  10975. source: "./media/characters/riggi/hyper.svg",
  10976. extra: 3595 / 3485
  10977. }
  10978. },
  10979. },
  10980. [
  10981. {
  10982. name: "Small Macro",
  10983. height: math.unit(50, "feet")
  10984. },
  10985. {
  10986. name: "Default",
  10987. height: math.unit(200, "feet"),
  10988. default: true
  10989. },
  10990. {
  10991. name: "Loom",
  10992. height: math.unit(10000, "feet")
  10993. },
  10994. {
  10995. name: "Cruising Altitude",
  10996. height: math.unit(30000, "feet")
  10997. },
  10998. {
  10999. name: "Megamacro",
  11000. height: math.unit(100, "miles")
  11001. },
  11002. {
  11003. name: "Continent Sized",
  11004. height: math.unit(2800, "miles")
  11005. },
  11006. {
  11007. name: "Earth Sized",
  11008. height: math.unit(8000, "miles")
  11009. },
  11010. ]
  11011. ))
  11012. characterMakers.push(() => makeCharacter(
  11013. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11014. {
  11015. front: {
  11016. height: math.unit(6, "feet"),
  11017. weight: math.unit(250, "lb"),
  11018. name: "Front",
  11019. image: {
  11020. source: "./media/characters/alexi/front.svg",
  11021. extra: 3483 / 3291,
  11022. bottom: 0.04
  11023. }
  11024. },
  11025. back: {
  11026. height: math.unit(6, "feet"),
  11027. weight: math.unit(250, "lb"),
  11028. name: "Back",
  11029. image: {
  11030. source: "./media/characters/alexi/back.svg",
  11031. extra: 3533 / 3356,
  11032. bottom: 0.021
  11033. }
  11034. },
  11035. frontTransforming: {
  11036. height: math.unit(8.58, "feet"),
  11037. weight: math.unit(1300, "lb"),
  11038. name: "Transforming",
  11039. image: {
  11040. source: "./media/characters/alexi/front-transforming.svg",
  11041. extra: 437 / 409,
  11042. bottom: 19 / 458.66
  11043. }
  11044. },
  11045. frontTransformed: {
  11046. height: math.unit(12.5, "feet"),
  11047. weight: math.unit(4000, "lb"),
  11048. name: "Transformed",
  11049. image: {
  11050. source: "./media/characters/alexi/front-transformed.svg",
  11051. extra: 639 / 614,
  11052. bottom: 30.55 / 671
  11053. }
  11054. },
  11055. },
  11056. [
  11057. {
  11058. name: "Normal",
  11059. height: math.unit(14, "feet"),
  11060. default: true
  11061. },
  11062. {
  11063. name: "Minimacro",
  11064. height: math.unit(30, "meters")
  11065. },
  11066. {
  11067. name: "Macro",
  11068. height: math.unit(500, "meters")
  11069. },
  11070. {
  11071. name: "Megamacro",
  11072. height: math.unit(9000, "km")
  11073. },
  11074. {
  11075. name: "Teramacro",
  11076. height: math.unit(384000, "km")
  11077. },
  11078. ]
  11079. ))
  11080. characterMakers.push(() => makeCharacter(
  11081. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11082. {
  11083. front: {
  11084. height: math.unit(6, "feet"),
  11085. weight: math.unit(150, "lb"),
  11086. name: "Front",
  11087. image: {
  11088. source: "./media/characters/kayroo/front.svg",
  11089. extra: 1153 / 1038,
  11090. bottom: 0.06
  11091. }
  11092. },
  11093. foot: {
  11094. height: math.unit(6, "feet"),
  11095. weight: math.unit(150, "lb"),
  11096. name: "Foot",
  11097. image: {
  11098. source: "./media/characters/kayroo/foot.svg"
  11099. }
  11100. },
  11101. },
  11102. [
  11103. {
  11104. name: "Normal",
  11105. height: math.unit(8, "feet"),
  11106. default: true
  11107. },
  11108. {
  11109. name: "Minimacro",
  11110. height: math.unit(250, "feet")
  11111. },
  11112. {
  11113. name: "Macro",
  11114. height: math.unit(2800, "feet")
  11115. },
  11116. {
  11117. name: "Megamacro",
  11118. height: math.unit(5200, "feet")
  11119. },
  11120. {
  11121. name: "Gigamacro",
  11122. height: math.unit(27000, "feet")
  11123. },
  11124. {
  11125. name: "Omega",
  11126. height: math.unit(45000, "feet")
  11127. },
  11128. ]
  11129. ))
  11130. characterMakers.push(() => makeCharacter(
  11131. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11132. {
  11133. front: {
  11134. height: math.unit(18, "feet"),
  11135. weight: math.unit(5800, "lb"),
  11136. name: "Front",
  11137. image: {
  11138. source: "./media/characters/rhys/front.svg",
  11139. extra: 3386 / 3090,
  11140. bottom: 0.07
  11141. }
  11142. },
  11143. },
  11144. [
  11145. {
  11146. name: "Normal",
  11147. height: math.unit(18, "feet"),
  11148. default: true
  11149. },
  11150. {
  11151. name: "Working Size",
  11152. height: math.unit(200, "feet")
  11153. },
  11154. {
  11155. name: "Demolition Size",
  11156. height: math.unit(2000, "feet")
  11157. },
  11158. {
  11159. name: "Maximum Licensed Size",
  11160. height: math.unit(5, "miles")
  11161. },
  11162. {
  11163. name: "Maximum Observed Size",
  11164. height: math.unit(10, "yottameters")
  11165. },
  11166. ]
  11167. ))
  11168. characterMakers.push(() => makeCharacter(
  11169. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11170. {
  11171. front: {
  11172. height: math.unit(6, "feet"),
  11173. weight: math.unit(250, "lb"),
  11174. name: "Front",
  11175. image: {
  11176. source: "./media/characters/toto/front.svg",
  11177. extra: 527 / 479,
  11178. bottom: 0.05
  11179. }
  11180. },
  11181. },
  11182. [
  11183. {
  11184. name: "Micro",
  11185. height: math.unit(3, "feet")
  11186. },
  11187. {
  11188. name: "Normal",
  11189. height: math.unit(10, "feet")
  11190. },
  11191. {
  11192. name: "Macro",
  11193. height: math.unit(150, "feet"),
  11194. default: true
  11195. },
  11196. {
  11197. name: "Megamacro",
  11198. height: math.unit(1200, "feet")
  11199. },
  11200. ]
  11201. ))
  11202. characterMakers.push(() => makeCharacter(
  11203. { name: "King", species: ["lion"], tags: ["anthro"] },
  11204. {
  11205. back: {
  11206. height: math.unit(6, "feet"),
  11207. weight: math.unit(150, "lb"),
  11208. name: "Back",
  11209. image: {
  11210. source: "./media/characters/king/back.svg"
  11211. }
  11212. },
  11213. },
  11214. [
  11215. {
  11216. name: "Micro",
  11217. height: math.unit(2, "inches")
  11218. },
  11219. {
  11220. name: "Normal",
  11221. height: math.unit(8, "feet")
  11222. },
  11223. {
  11224. name: "Macro",
  11225. height: math.unit(200, "feet"),
  11226. default: true
  11227. },
  11228. {
  11229. name: "Megamacro",
  11230. height: math.unit(50, "miles")
  11231. },
  11232. ]
  11233. ))
  11234. characterMakers.push(() => makeCharacter(
  11235. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11236. {
  11237. front: {
  11238. height: math.unit(11, "feet"),
  11239. weight: math.unit(1400, "lb"),
  11240. name: "Front",
  11241. image: {
  11242. source: "./media/characters/cordite/front.svg",
  11243. extra: 1919/1827,
  11244. bottom: 40/1959
  11245. }
  11246. },
  11247. side: {
  11248. height: math.unit(11, "feet"),
  11249. weight: math.unit(1400, "lb"),
  11250. name: "Side",
  11251. image: {
  11252. source: "./media/characters/cordite/side.svg",
  11253. extra: 1908/1793,
  11254. bottom: 38/1946
  11255. }
  11256. },
  11257. back: {
  11258. height: math.unit(11, "feet"),
  11259. weight: math.unit(1400, "lb"),
  11260. name: "Back",
  11261. image: {
  11262. source: "./media/characters/cordite/back.svg",
  11263. extra: 1938/1837,
  11264. bottom: 10/1948
  11265. }
  11266. },
  11267. feral: {
  11268. height: math.unit(2, "feet"),
  11269. weight: math.unit(90, "lb"),
  11270. name: "Feral",
  11271. image: {
  11272. source: "./media/characters/cordite/feral.svg",
  11273. extra: 1260 / 755,
  11274. bottom: 0.05
  11275. }
  11276. },
  11277. },
  11278. [
  11279. {
  11280. name: "Normal",
  11281. height: math.unit(11, "feet"),
  11282. default: true
  11283. },
  11284. ]
  11285. ))
  11286. characterMakers.push(() => makeCharacter(
  11287. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11288. {
  11289. front: {
  11290. height: math.unit(6, "feet"),
  11291. weight: math.unit(150, "lb"),
  11292. name: "Front",
  11293. image: {
  11294. source: "./media/characters/pianostrong/front.svg",
  11295. extra: 6577 / 6254,
  11296. bottom: 0.02
  11297. }
  11298. },
  11299. side: {
  11300. height: math.unit(6, "feet"),
  11301. weight: math.unit(150, "lb"),
  11302. name: "Side",
  11303. image: {
  11304. source: "./media/characters/pianostrong/side.svg",
  11305. extra: 6106 / 5730
  11306. }
  11307. },
  11308. back: {
  11309. height: math.unit(6, "feet"),
  11310. weight: math.unit(150, "lb"),
  11311. name: "Back",
  11312. image: {
  11313. source: "./media/characters/pianostrong/back.svg",
  11314. extra: 6085 / 5733,
  11315. bottom: 0.01
  11316. }
  11317. },
  11318. },
  11319. [
  11320. {
  11321. name: "Macro",
  11322. height: math.unit(100, "feet")
  11323. },
  11324. {
  11325. name: "Macro+",
  11326. height: math.unit(300, "feet"),
  11327. default: true
  11328. },
  11329. {
  11330. name: "Macro++",
  11331. height: math.unit(1000, "feet")
  11332. },
  11333. ]
  11334. ))
  11335. characterMakers.push(() => makeCharacter(
  11336. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11337. {
  11338. front: {
  11339. height: math.unit(6, "feet"),
  11340. weight: math.unit(150, "lb"),
  11341. name: "Front",
  11342. image: {
  11343. source: "./media/characters/kona/front.svg",
  11344. extra: 2960 / 2629,
  11345. bottom: 0.005
  11346. }
  11347. },
  11348. },
  11349. [
  11350. {
  11351. name: "Normal",
  11352. height: math.unit(11 + 8 / 12, "feet")
  11353. },
  11354. {
  11355. name: "Macro",
  11356. height: math.unit(850, "feet"),
  11357. default: true
  11358. },
  11359. {
  11360. name: "Macro+",
  11361. height: math.unit(1.5, "km"),
  11362. default: true
  11363. },
  11364. {
  11365. name: "Megamacro",
  11366. height: math.unit(80, "miles")
  11367. },
  11368. {
  11369. name: "Gigamacro",
  11370. height: math.unit(3500, "miles")
  11371. },
  11372. ]
  11373. ))
  11374. characterMakers.push(() => makeCharacter(
  11375. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11376. {
  11377. side: {
  11378. height: math.unit(1.9, "meters"),
  11379. weight: math.unit(326, "kg"),
  11380. name: "Side",
  11381. image: {
  11382. source: "./media/characters/levi/side.svg",
  11383. extra: 1704 / 1334,
  11384. bottom: 0.02
  11385. }
  11386. },
  11387. },
  11388. [
  11389. {
  11390. name: "Normal",
  11391. height: math.unit(1.9, "meters"),
  11392. default: true
  11393. },
  11394. {
  11395. name: "Macro",
  11396. height: math.unit(20, "meters")
  11397. },
  11398. {
  11399. name: "Macro+",
  11400. height: math.unit(200, "meters")
  11401. },
  11402. {
  11403. name: "Megamacro",
  11404. height: math.unit(2, "km")
  11405. },
  11406. {
  11407. name: "Megamacro+",
  11408. height: math.unit(20, "km")
  11409. },
  11410. {
  11411. name: "Gigamacro",
  11412. height: math.unit(2500, "km")
  11413. },
  11414. {
  11415. name: "Gigamacro+",
  11416. height: math.unit(120000, "km")
  11417. },
  11418. {
  11419. name: "Teramacro",
  11420. height: math.unit(7.77e6, "km")
  11421. },
  11422. ]
  11423. ))
  11424. characterMakers.push(() => makeCharacter(
  11425. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11426. {
  11427. front: {
  11428. height: math.unit(6 + 4/12, "feet"),
  11429. weight: math.unit(190, "lb"),
  11430. name: "Front",
  11431. image: {
  11432. source: "./media/characters/bmc/front.svg",
  11433. extra: 1626/1472,
  11434. bottom: 79/1705
  11435. }
  11436. },
  11437. back: {
  11438. height: math.unit(6 + 4/12, "feet"),
  11439. weight: math.unit(190, "lb"),
  11440. name: "Back",
  11441. image: {
  11442. source: "./media/characters/bmc/back.svg",
  11443. extra: 1640/1479,
  11444. bottom: 45/1685
  11445. }
  11446. },
  11447. frontArmor: {
  11448. height: math.unit(6 + 4/12, "feet"),
  11449. weight: math.unit(190, "lb"),
  11450. name: "Front-armor",
  11451. image: {
  11452. source: "./media/characters/bmc/front-armor.svg",
  11453. extra: 1538/1468,
  11454. bottom: 79/1617
  11455. }
  11456. },
  11457. },
  11458. [
  11459. {
  11460. name: "Human-sized",
  11461. height: math.unit(6 + 4 / 12, "feet")
  11462. },
  11463. {
  11464. name: "Interactive Size",
  11465. height: math.unit(25, "feet")
  11466. },
  11467. {
  11468. name: "Small",
  11469. height: math.unit(250, "feet")
  11470. },
  11471. {
  11472. name: "Normal",
  11473. height: math.unit(1250, "feet"),
  11474. default: true
  11475. },
  11476. {
  11477. name: "Good Day",
  11478. height: math.unit(88, "miles")
  11479. },
  11480. {
  11481. name: "Largest Measured Size",
  11482. height: math.unit(105.960, "galaxies")
  11483. },
  11484. ]
  11485. ))
  11486. characterMakers.push(() => makeCharacter(
  11487. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11488. {
  11489. front: {
  11490. height: math.unit(20, "feet"),
  11491. weight: math.unit(2016, "kg"),
  11492. name: "Front",
  11493. image: {
  11494. source: "./media/characters/sven-the-kaiju/front.svg",
  11495. extra: 1277/1250,
  11496. bottom: 35/1312
  11497. }
  11498. },
  11499. mouth: {
  11500. height: math.unit(1.85, "feet"),
  11501. name: "Mouth",
  11502. image: {
  11503. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11504. }
  11505. },
  11506. },
  11507. [
  11508. {
  11509. name: "Fairy",
  11510. height: math.unit(6, "inches")
  11511. },
  11512. {
  11513. name: "Normal",
  11514. height: math.unit(20, "feet"),
  11515. default: true
  11516. },
  11517. {
  11518. name: "Rampage",
  11519. height: math.unit(200, "feet")
  11520. },
  11521. {
  11522. name: "Archfey Forest Guardian",
  11523. height: math.unit(1, "mile")
  11524. },
  11525. ]
  11526. ))
  11527. characterMakers.push(() => makeCharacter(
  11528. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11529. {
  11530. front: {
  11531. height: math.unit(4, "meters"),
  11532. weight: math.unit(2, "tons"),
  11533. name: "Front",
  11534. image: {
  11535. source: "./media/characters/marik/front.svg",
  11536. extra: 1057 / 1003,
  11537. bottom: 0.08
  11538. }
  11539. },
  11540. },
  11541. [
  11542. {
  11543. name: "Normal",
  11544. height: math.unit(4, "meters"),
  11545. default: true
  11546. },
  11547. {
  11548. name: "Macro",
  11549. height: math.unit(20, "meters")
  11550. },
  11551. {
  11552. name: "Megamacro",
  11553. height: math.unit(50, "km")
  11554. },
  11555. {
  11556. name: "Gigamacro",
  11557. height: math.unit(100, "km")
  11558. },
  11559. {
  11560. name: "Alpha Macro",
  11561. height: math.unit(7.88e7, "yottameters")
  11562. },
  11563. ]
  11564. ))
  11565. characterMakers.push(() => makeCharacter(
  11566. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11567. {
  11568. front: {
  11569. height: math.unit(6, "feet"),
  11570. weight: math.unit(110, "lb"),
  11571. name: "Front",
  11572. image: {
  11573. source: "./media/characters/mel/front.svg",
  11574. extra: 736 / 617,
  11575. bottom: 0.017
  11576. }
  11577. },
  11578. },
  11579. [
  11580. {
  11581. name: "Pico",
  11582. height: math.unit(3, "pm")
  11583. },
  11584. {
  11585. name: "Nano",
  11586. height: math.unit(3, "nm")
  11587. },
  11588. {
  11589. name: "Micro",
  11590. height: math.unit(0.3, "mm"),
  11591. default: true
  11592. },
  11593. {
  11594. name: "Micro+",
  11595. height: math.unit(3, "mm")
  11596. },
  11597. {
  11598. name: "Normal",
  11599. height: math.unit(5 + 10.5 / 12, "feet")
  11600. },
  11601. ]
  11602. ))
  11603. characterMakers.push(() => makeCharacter(
  11604. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11605. {
  11606. kaiju: {
  11607. height: math.unit(1.75, "meters"),
  11608. weight: math.unit(55, "kg"),
  11609. name: "Kaiju",
  11610. image: {
  11611. source: "./media/characters/lykonous/kaiju.svg",
  11612. extra: 1055 / 946,
  11613. bottom: 0.135
  11614. }
  11615. },
  11616. },
  11617. [
  11618. {
  11619. name: "Normal",
  11620. height: math.unit(2.5, "meters"),
  11621. default: true
  11622. },
  11623. {
  11624. name: "Kaiju Dragon",
  11625. height: math.unit(60, "meters")
  11626. },
  11627. {
  11628. name: "Mega Kaiju",
  11629. height: math.unit(120, "km")
  11630. },
  11631. {
  11632. name: "Giga Kaiju",
  11633. height: math.unit(200, "megameters")
  11634. },
  11635. {
  11636. name: "Terra Kaiju",
  11637. height: math.unit(400, "gigameters")
  11638. },
  11639. {
  11640. name: "Kaiju Dragon God",
  11641. height: math.unit(13000, "exaparsecs")
  11642. },
  11643. ]
  11644. ))
  11645. characterMakers.push(() => makeCharacter(
  11646. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11647. {
  11648. front: {
  11649. height: math.unit(6, "feet"),
  11650. weight: math.unit(150, "lb"),
  11651. name: "Front",
  11652. image: {
  11653. source: "./media/characters/blü/front.svg",
  11654. extra: 1883 / 1564,
  11655. bottom: 0.031
  11656. }
  11657. },
  11658. },
  11659. [
  11660. {
  11661. name: "Normal",
  11662. height: math.unit(13, "feet"),
  11663. default: true
  11664. },
  11665. {
  11666. name: "Big Boi",
  11667. height: math.unit(150, "meters")
  11668. },
  11669. {
  11670. name: "Mini Stomper",
  11671. height: math.unit(300, "meters")
  11672. },
  11673. {
  11674. name: "Macro",
  11675. height: math.unit(1000, "meters")
  11676. },
  11677. {
  11678. name: "Megamacro",
  11679. height: math.unit(11000, "meters")
  11680. },
  11681. {
  11682. name: "Gigamacro",
  11683. height: math.unit(11000, "km")
  11684. },
  11685. {
  11686. name: "Teramacro",
  11687. height: math.unit(420000, "km")
  11688. },
  11689. {
  11690. name: "Examacro",
  11691. height: math.unit(120, "parsecs")
  11692. },
  11693. {
  11694. name: "God Tho",
  11695. height: math.unit(98000000000, "parsecs")
  11696. },
  11697. ]
  11698. ))
  11699. characterMakers.push(() => makeCharacter(
  11700. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11701. {
  11702. taurFront: {
  11703. height: math.unit(6, "feet"),
  11704. weight: math.unit(200, "lb"),
  11705. name: "Taur (Front)",
  11706. image: {
  11707. source: "./media/characters/scales/taur-front.svg",
  11708. extra: 1,
  11709. bottom: 0.05
  11710. }
  11711. },
  11712. taurBack: {
  11713. height: math.unit(6, "feet"),
  11714. weight: math.unit(200, "lb"),
  11715. name: "Taur (Back)",
  11716. image: {
  11717. source: "./media/characters/scales/taur-back.svg",
  11718. extra: 1,
  11719. bottom: 0.08
  11720. }
  11721. },
  11722. anthro: {
  11723. height: math.unit(6 * 7 / 12, "feet"),
  11724. weight: math.unit(100, "lb"),
  11725. name: "Anthro",
  11726. image: {
  11727. source: "./media/characters/scales/anthro.svg",
  11728. extra: 1,
  11729. bottom: 0.06
  11730. }
  11731. },
  11732. },
  11733. [
  11734. {
  11735. name: "Normal",
  11736. height: math.unit(12, "feet"),
  11737. default: true
  11738. },
  11739. ]
  11740. ))
  11741. characterMakers.push(() => makeCharacter(
  11742. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11743. {
  11744. front: {
  11745. height: math.unit(6, "feet"),
  11746. weight: math.unit(150, "lb"),
  11747. name: "Front",
  11748. image: {
  11749. source: "./media/characters/koragos/front.svg",
  11750. extra: 841 / 794,
  11751. bottom: 0.035
  11752. }
  11753. },
  11754. back: {
  11755. height: math.unit(6, "feet"),
  11756. weight: math.unit(150, "lb"),
  11757. name: "Back",
  11758. image: {
  11759. source: "./media/characters/koragos/back.svg",
  11760. extra: 841 / 810,
  11761. bottom: 0.022
  11762. }
  11763. },
  11764. },
  11765. [
  11766. {
  11767. name: "Normal",
  11768. height: math.unit(6 + 11 / 12, "feet"),
  11769. default: true
  11770. },
  11771. {
  11772. name: "Macro",
  11773. height: math.unit(490, "feet")
  11774. },
  11775. {
  11776. name: "Megamacro",
  11777. height: math.unit(10, "miles")
  11778. },
  11779. {
  11780. name: "Gigamacro",
  11781. height: math.unit(50, "miles")
  11782. },
  11783. ]
  11784. ))
  11785. characterMakers.push(() => makeCharacter(
  11786. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11787. {
  11788. front: {
  11789. height: math.unit(6, "feet"),
  11790. weight: math.unit(250, "lb"),
  11791. name: "Front",
  11792. image: {
  11793. source: "./media/characters/xylrem/front.svg",
  11794. extra: 3323 / 3050,
  11795. bottom: 0.065
  11796. }
  11797. },
  11798. },
  11799. [
  11800. {
  11801. name: "Micro",
  11802. height: math.unit(4, "feet")
  11803. },
  11804. {
  11805. name: "Normal",
  11806. height: math.unit(16, "feet"),
  11807. default: true
  11808. },
  11809. {
  11810. name: "Macro",
  11811. height: math.unit(2720, "feet")
  11812. },
  11813. {
  11814. name: "Megamacro",
  11815. height: math.unit(25000, "miles")
  11816. },
  11817. ]
  11818. ))
  11819. characterMakers.push(() => makeCharacter(
  11820. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11821. {
  11822. front: {
  11823. height: math.unit(8, "feet"),
  11824. weight: math.unit(250, "kg"),
  11825. name: "Front",
  11826. image: {
  11827. source: "./media/characters/ikideru/front.svg",
  11828. extra: 930 / 870,
  11829. bottom: 0.087
  11830. }
  11831. },
  11832. back: {
  11833. height: math.unit(8, "feet"),
  11834. weight: math.unit(250, "kg"),
  11835. name: "Back",
  11836. image: {
  11837. source: "./media/characters/ikideru/back.svg",
  11838. extra: 919 / 852,
  11839. bottom: 0.055
  11840. }
  11841. },
  11842. },
  11843. [
  11844. {
  11845. name: "Rare",
  11846. height: math.unit(8, "feet"),
  11847. default: true
  11848. },
  11849. {
  11850. name: "Playful Loom",
  11851. height: math.unit(80, "feet")
  11852. },
  11853. {
  11854. name: "City Leaner",
  11855. height: math.unit(230, "feet")
  11856. },
  11857. {
  11858. name: "Megamacro",
  11859. height: math.unit(2500, "feet")
  11860. },
  11861. {
  11862. name: "Gigamacro",
  11863. height: math.unit(26400, "feet")
  11864. },
  11865. {
  11866. name: "Tectonic Shifter",
  11867. height: math.unit(1.7, "megameters")
  11868. },
  11869. {
  11870. name: "Planet Carer",
  11871. height: math.unit(21, "megameters")
  11872. },
  11873. {
  11874. name: "God",
  11875. height: math.unit(11157.22, "parsecs")
  11876. },
  11877. ]
  11878. ))
  11879. characterMakers.push(() => makeCharacter(
  11880. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11881. {
  11882. front: {
  11883. height: math.unit(6, "feet"),
  11884. weight: math.unit(120, "lb"),
  11885. name: "Front",
  11886. image: {
  11887. source: "./media/characters/neo/front.svg"
  11888. }
  11889. },
  11890. },
  11891. [
  11892. {
  11893. name: "Micro",
  11894. height: math.unit(2, "inches"),
  11895. default: true
  11896. },
  11897. {
  11898. name: "Human Size",
  11899. height: math.unit(5 + 8 / 12, "feet")
  11900. },
  11901. ]
  11902. ))
  11903. characterMakers.push(() => makeCharacter(
  11904. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11905. {
  11906. front: {
  11907. height: math.unit(13 + 10 / 12, "feet"),
  11908. weight: math.unit(5320, "lb"),
  11909. name: "Front",
  11910. image: {
  11911. source: "./media/characters/chauncey-chantz/front.svg",
  11912. extra: 1587 / 1435,
  11913. bottom: 0.02
  11914. }
  11915. },
  11916. },
  11917. [
  11918. {
  11919. name: "Normal",
  11920. height: math.unit(13 + 10 / 12, "feet"),
  11921. default: true
  11922. },
  11923. {
  11924. name: "Macro",
  11925. height: math.unit(45, "feet")
  11926. },
  11927. {
  11928. name: "Megamacro",
  11929. height: math.unit(250, "miles")
  11930. },
  11931. {
  11932. name: "Planetary",
  11933. height: math.unit(10000, "miles")
  11934. },
  11935. {
  11936. name: "Galactic",
  11937. height: math.unit(40000, "parsecs")
  11938. },
  11939. {
  11940. name: "Universal",
  11941. height: math.unit(1, "yottameter")
  11942. },
  11943. ]
  11944. ))
  11945. characterMakers.push(() => makeCharacter(
  11946. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11947. {
  11948. front: {
  11949. height: math.unit(6, "feet"),
  11950. weight: math.unit(150, "lb"),
  11951. name: "Front",
  11952. image: {
  11953. source: "./media/characters/epifox/front.svg",
  11954. extra: 1,
  11955. bottom: 0.075
  11956. }
  11957. },
  11958. },
  11959. [
  11960. {
  11961. name: "Micro",
  11962. height: math.unit(6, "inches")
  11963. },
  11964. {
  11965. name: "Normal",
  11966. height: math.unit(12, "feet"),
  11967. default: true
  11968. },
  11969. {
  11970. name: "Macro",
  11971. height: math.unit(3810, "feet")
  11972. },
  11973. {
  11974. name: "Megamacro",
  11975. height: math.unit(500, "miles")
  11976. },
  11977. ]
  11978. ))
  11979. characterMakers.push(() => makeCharacter(
  11980. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11981. {
  11982. front: {
  11983. height: math.unit(1.8796, "m"),
  11984. weight: math.unit(230, "lb"),
  11985. name: "Front",
  11986. image: {
  11987. source: "./media/characters/colin-t/front.svg",
  11988. extra: 1272 / 1193,
  11989. bottom: 0.07
  11990. }
  11991. },
  11992. },
  11993. [
  11994. {
  11995. name: "Micro",
  11996. height: math.unit(0.571, "meters")
  11997. },
  11998. {
  11999. name: "Normal",
  12000. height: math.unit(1.8796, "meters"),
  12001. default: true
  12002. },
  12003. {
  12004. name: "Tall",
  12005. height: math.unit(4, "meters")
  12006. },
  12007. {
  12008. name: "Macro",
  12009. height: math.unit(67.241, "meters")
  12010. },
  12011. {
  12012. name: "Megamacro",
  12013. height: math.unit(371.856, "meters")
  12014. },
  12015. {
  12016. name: "Planetary",
  12017. height: math.unit(12631.5689, "km")
  12018. },
  12019. ]
  12020. ))
  12021. characterMakers.push(() => makeCharacter(
  12022. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12023. {
  12024. front: {
  12025. height: math.unit(1.85, "meters"),
  12026. weight: math.unit(80, "kg"),
  12027. name: "Front",
  12028. image: {
  12029. source: "./media/characters/matvei/front.svg",
  12030. extra: 614 / 594,
  12031. bottom: 0.01
  12032. }
  12033. },
  12034. },
  12035. [
  12036. {
  12037. name: "Normal",
  12038. height: math.unit(1.85, "meters"),
  12039. default: true
  12040. },
  12041. ]
  12042. ))
  12043. characterMakers.push(() => makeCharacter(
  12044. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12045. {
  12046. front: {
  12047. height: math.unit(5 + 9 / 12, "feet"),
  12048. weight: math.unit(70, "lb"),
  12049. name: "Front",
  12050. image: {
  12051. source: "./media/characters/quincy/front.svg",
  12052. extra: 3041 / 2751
  12053. }
  12054. },
  12055. back: {
  12056. height: math.unit(5 + 9 / 12, "feet"),
  12057. weight: math.unit(70, "lb"),
  12058. name: "Back",
  12059. image: {
  12060. source: "./media/characters/quincy/back.svg",
  12061. extra: 3041 / 2751
  12062. }
  12063. },
  12064. flying: {
  12065. height: math.unit(5 + 4 / 12, "feet"),
  12066. weight: math.unit(70, "lb"),
  12067. name: "Flying",
  12068. image: {
  12069. source: "./media/characters/quincy/flying.svg",
  12070. extra: 1044 / 930
  12071. }
  12072. },
  12073. },
  12074. [
  12075. {
  12076. name: "Micro",
  12077. height: math.unit(3, "cm")
  12078. },
  12079. {
  12080. name: "Normal",
  12081. height: math.unit(5 + 9 / 12, "feet")
  12082. },
  12083. {
  12084. name: "Macro",
  12085. height: math.unit(200, "meters"),
  12086. default: true
  12087. },
  12088. {
  12089. name: "Megamacro",
  12090. height: math.unit(1000, "meters")
  12091. },
  12092. ]
  12093. ))
  12094. characterMakers.push(() => makeCharacter(
  12095. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12096. {
  12097. front: {
  12098. height: math.unit(3 + 11/12, "feet"),
  12099. weight: math.unit(50, "lb"),
  12100. name: "Front",
  12101. image: {
  12102. source: "./media/characters/vanrel/front.svg",
  12103. extra: 1104/949,
  12104. bottom: 52/1156
  12105. }
  12106. },
  12107. back: {
  12108. height: math.unit(3 + 11/12, "feet"),
  12109. weight: math.unit(50, "lb"),
  12110. name: "Back",
  12111. image: {
  12112. source: "./media/characters/vanrel/back.svg",
  12113. extra: 1119/976,
  12114. bottom: 37/1156
  12115. }
  12116. },
  12117. tome: {
  12118. height: math.unit(1.35, "feet"),
  12119. weight: math.unit(10, "lb"),
  12120. name: "Vanrel's Tome",
  12121. rename: true,
  12122. image: {
  12123. source: "./media/characters/vanrel/tome.svg"
  12124. }
  12125. },
  12126. beans: {
  12127. height: math.unit(0.89, "feet"),
  12128. name: "Beans",
  12129. image: {
  12130. source: "./media/characters/vanrel/beans.svg"
  12131. }
  12132. },
  12133. },
  12134. [
  12135. {
  12136. name: "Normal",
  12137. height: math.unit(3 + 11/12, "feet"),
  12138. default: true
  12139. },
  12140. ]
  12141. ))
  12142. characterMakers.push(() => makeCharacter(
  12143. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12144. {
  12145. front: {
  12146. height: math.unit(7 + 5 / 12, "feet"),
  12147. name: "Front",
  12148. image: {
  12149. source: "./media/characters/kuiper-vanrel/front.svg",
  12150. extra: 1219/1169,
  12151. bottom: 69/1288
  12152. }
  12153. },
  12154. back: {
  12155. height: math.unit(7 + 5 / 12, "feet"),
  12156. name: "Back",
  12157. image: {
  12158. source: "./media/characters/kuiper-vanrel/back.svg",
  12159. extra: 1236/1193,
  12160. bottom: 27/1263
  12161. }
  12162. },
  12163. foot: {
  12164. height: math.unit(0.55, "meters"),
  12165. name: "Foot",
  12166. image: {
  12167. source: "./media/characters/kuiper-vanrel/foot.svg",
  12168. }
  12169. },
  12170. battle: {
  12171. height: math.unit(6.824, "feet"),
  12172. name: "Battle",
  12173. image: {
  12174. source: "./media/characters/kuiper-vanrel/battle.svg",
  12175. extra: 1466 / 1327,
  12176. bottom: 29 / 1492.5
  12177. }
  12178. },
  12179. meerkui: {
  12180. height: math.unit(18, "inches"),
  12181. name: "Meerkui",
  12182. image: {
  12183. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12184. extra: 1354/1289,
  12185. bottom: 69/1423
  12186. }
  12187. },
  12188. },
  12189. [
  12190. {
  12191. name: "Normal",
  12192. height: math.unit(7 + 5 / 12, "feet"),
  12193. default: true
  12194. },
  12195. ]
  12196. ))
  12197. characterMakers.push(() => makeCharacter(
  12198. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12199. {
  12200. front: {
  12201. height: math.unit(8 + 5 / 12, "feet"),
  12202. name: "Front",
  12203. image: {
  12204. source: "./media/characters/keset-vanrel/front.svg",
  12205. extra: 1231/1148,
  12206. bottom: 82/1313
  12207. }
  12208. },
  12209. back: {
  12210. height: math.unit(8 + 5 / 12, "feet"),
  12211. name: "Back",
  12212. image: {
  12213. source: "./media/characters/keset-vanrel/back.svg",
  12214. extra: 1240/1174,
  12215. bottom: 33/1273
  12216. }
  12217. },
  12218. hand: {
  12219. height: math.unit(0.6, "meters"),
  12220. name: "Hand",
  12221. image: {
  12222. source: "./media/characters/keset-vanrel/hand.svg"
  12223. }
  12224. },
  12225. foot: {
  12226. height: math.unit(0.94978, "meters"),
  12227. name: "Foot",
  12228. image: {
  12229. source: "./media/characters/keset-vanrel/foot.svg"
  12230. }
  12231. },
  12232. battle: {
  12233. height: math.unit(7.408, "feet"),
  12234. name: "Battle",
  12235. image: {
  12236. source: "./media/characters/keset-vanrel/battle.svg",
  12237. extra: 1890 / 1386,
  12238. bottom: 73.28 / 1970
  12239. }
  12240. },
  12241. },
  12242. [
  12243. {
  12244. name: "Normal",
  12245. height: math.unit(8 + 5 / 12, "feet"),
  12246. default: true
  12247. },
  12248. ]
  12249. ))
  12250. characterMakers.push(() => makeCharacter(
  12251. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12252. {
  12253. front: {
  12254. height: math.unit(6, "feet"),
  12255. weight: math.unit(150, "lb"),
  12256. name: "Front",
  12257. image: {
  12258. source: "./media/characters/neos/front.svg",
  12259. extra: 1696 / 992,
  12260. bottom: 0.14
  12261. }
  12262. },
  12263. },
  12264. [
  12265. {
  12266. name: "Normal",
  12267. height: math.unit(54, "cm"),
  12268. default: true
  12269. },
  12270. {
  12271. name: "Macro",
  12272. height: math.unit(100, "m")
  12273. },
  12274. {
  12275. name: "Megamacro",
  12276. height: math.unit(10, "km")
  12277. },
  12278. {
  12279. name: "Megamacro+",
  12280. height: math.unit(100, "km")
  12281. },
  12282. {
  12283. name: "Gigamacro",
  12284. height: math.unit(100, "Mm")
  12285. },
  12286. {
  12287. name: "Teramacro",
  12288. height: math.unit(100, "Gm")
  12289. },
  12290. {
  12291. name: "Examacro",
  12292. height: math.unit(100, "Em")
  12293. },
  12294. {
  12295. name: "Godly",
  12296. height: math.unit(10000, "Ym")
  12297. },
  12298. {
  12299. name: "Beyond Godly",
  12300. height: math.unit(25, "multiverses")
  12301. },
  12302. ]
  12303. ))
  12304. characterMakers.push(() => makeCharacter(
  12305. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12306. {
  12307. feminine: {
  12308. height: math.unit(5, "feet"),
  12309. weight: math.unit(100, "lb"),
  12310. name: "Feminine",
  12311. image: {
  12312. source: "./media/characters/sammy-mouse/feminine.svg",
  12313. extra: 2526 / 2425,
  12314. bottom: 0.123
  12315. }
  12316. },
  12317. masculine: {
  12318. height: math.unit(5, "feet"),
  12319. weight: math.unit(100, "lb"),
  12320. name: "Masculine",
  12321. image: {
  12322. source: "./media/characters/sammy-mouse/masculine.svg",
  12323. extra: 2526 / 2425,
  12324. bottom: 0.123
  12325. }
  12326. },
  12327. },
  12328. [
  12329. {
  12330. name: "Micro",
  12331. height: math.unit(5, "inches")
  12332. },
  12333. {
  12334. name: "Normal",
  12335. height: math.unit(5, "feet"),
  12336. default: true
  12337. },
  12338. {
  12339. name: "Macro",
  12340. height: math.unit(60, "feet")
  12341. },
  12342. ]
  12343. ))
  12344. characterMakers.push(() => makeCharacter(
  12345. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12346. {
  12347. front: {
  12348. height: math.unit(4, "feet"),
  12349. weight: math.unit(50, "lb"),
  12350. name: "Front",
  12351. image: {
  12352. source: "./media/characters/kole/front.svg",
  12353. extra: 1423 / 1303,
  12354. bottom: 0.025
  12355. }
  12356. },
  12357. back: {
  12358. height: math.unit(4, "feet"),
  12359. weight: math.unit(50, "lb"),
  12360. name: "Back",
  12361. image: {
  12362. source: "./media/characters/kole/back.svg",
  12363. extra: 1426 / 1280,
  12364. bottom: 0.02
  12365. }
  12366. },
  12367. },
  12368. [
  12369. {
  12370. name: "Normal",
  12371. height: math.unit(4, "feet"),
  12372. default: true
  12373. },
  12374. ]
  12375. ))
  12376. characterMakers.push(() => makeCharacter(
  12377. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12378. {
  12379. front: {
  12380. height: math.unit(2.5, "feet"),
  12381. weight: math.unit(32, "lb"),
  12382. name: "Front",
  12383. image: {
  12384. source: "./media/characters/rufran/front.svg",
  12385. extra: 1313/885,
  12386. bottom: 94/1407
  12387. }
  12388. },
  12389. side: {
  12390. height: math.unit(2.5, "feet"),
  12391. weight: math.unit(32, "lb"),
  12392. name: "Side",
  12393. image: {
  12394. source: "./media/characters/rufran/side.svg",
  12395. extra: 1109/852,
  12396. bottom: 118/1227
  12397. }
  12398. },
  12399. back: {
  12400. height: math.unit(2.5, "feet"),
  12401. weight: math.unit(32, "lb"),
  12402. name: "Back",
  12403. image: {
  12404. source: "./media/characters/rufran/back.svg",
  12405. extra: 1280/878,
  12406. bottom: 131/1411
  12407. }
  12408. },
  12409. mouth: {
  12410. height: math.unit(1.13, "feet"),
  12411. name: "Mouth",
  12412. image: {
  12413. source: "./media/characters/rufran/mouth.svg"
  12414. }
  12415. },
  12416. foot: {
  12417. height: math.unit(1.33, "feet"),
  12418. name: "Foot",
  12419. image: {
  12420. source: "./media/characters/rufran/foot.svg"
  12421. }
  12422. },
  12423. koboldFront: {
  12424. height: math.unit(2 + 6 / 12, "feet"),
  12425. weight: math.unit(20, "lb"),
  12426. name: "Front (Kobold)",
  12427. image: {
  12428. source: "./media/characters/rufran/kobold-front.svg",
  12429. extra: 2041 / 1839,
  12430. bottom: 0.055
  12431. }
  12432. },
  12433. koboldBack: {
  12434. height: math.unit(2 + 6 / 12, "feet"),
  12435. weight: math.unit(20, "lb"),
  12436. name: "Back (Kobold)",
  12437. image: {
  12438. source: "./media/characters/rufran/kobold-back.svg",
  12439. extra: 2054 / 1839,
  12440. bottom: 0.01
  12441. }
  12442. },
  12443. koboldHand: {
  12444. height: math.unit(0.2166, "meters"),
  12445. name: "Hand (Kobold)",
  12446. image: {
  12447. source: "./media/characters/rufran/kobold-hand.svg"
  12448. }
  12449. },
  12450. koboldFoot: {
  12451. height: math.unit(0.185, "meters"),
  12452. name: "Foot (Kobold)",
  12453. image: {
  12454. source: "./media/characters/rufran/kobold-foot.svg"
  12455. }
  12456. },
  12457. },
  12458. [
  12459. {
  12460. name: "Micro",
  12461. height: math.unit(1, "inch")
  12462. },
  12463. {
  12464. name: "Normal",
  12465. height: math.unit(2 + 6 / 12, "feet"),
  12466. default: true
  12467. },
  12468. {
  12469. name: "Big",
  12470. height: math.unit(60, "feet")
  12471. },
  12472. {
  12473. name: "Macro",
  12474. height: math.unit(325, "feet")
  12475. },
  12476. ]
  12477. ))
  12478. characterMakers.push(() => makeCharacter(
  12479. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12480. {
  12481. front: {
  12482. height: math.unit(0.3, "meters"),
  12483. weight: math.unit(3.5, "kg"),
  12484. name: "Front",
  12485. image: {
  12486. source: "./media/characters/chip/front.svg",
  12487. extra: 748 / 674
  12488. }
  12489. },
  12490. },
  12491. [
  12492. {
  12493. name: "Micro",
  12494. height: math.unit(1, "inch"),
  12495. default: true
  12496. },
  12497. ]
  12498. ))
  12499. characterMakers.push(() => makeCharacter(
  12500. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12501. {
  12502. side: {
  12503. height: math.unit(2.3, "meters"),
  12504. weight: math.unit(3500, "lb"),
  12505. name: "Side",
  12506. image: {
  12507. source: "./media/characters/torvid/side.svg",
  12508. extra: 1972 / 722,
  12509. bottom: 0.035
  12510. }
  12511. },
  12512. },
  12513. [
  12514. {
  12515. name: "Normal",
  12516. height: math.unit(2.3, "meters"),
  12517. default: true
  12518. },
  12519. ]
  12520. ))
  12521. characterMakers.push(() => makeCharacter(
  12522. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12523. {
  12524. front: {
  12525. height: math.unit(2, "meters"),
  12526. weight: math.unit(150.5, "kg"),
  12527. name: "Front",
  12528. image: {
  12529. source: "./media/characters/susan/front.svg",
  12530. extra: 693 / 635,
  12531. bottom: 0.05
  12532. }
  12533. },
  12534. },
  12535. [
  12536. {
  12537. name: "Megamacro",
  12538. height: math.unit(505, "miles"),
  12539. default: true
  12540. },
  12541. ]
  12542. ))
  12543. characterMakers.push(() => makeCharacter(
  12544. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12545. {
  12546. front: {
  12547. height: math.unit(6, "feet"),
  12548. weight: math.unit(150, "lb"),
  12549. name: "Front",
  12550. image: {
  12551. source: "./media/characters/raindrops/front.svg",
  12552. extra: 2655 / 2461,
  12553. bottom: 49 / 2705
  12554. }
  12555. },
  12556. back: {
  12557. height: math.unit(6, "feet"),
  12558. weight: math.unit(150, "lb"),
  12559. name: "Back",
  12560. image: {
  12561. source: "./media/characters/raindrops/back.svg",
  12562. extra: 2574 / 2400,
  12563. bottom: 65 / 2634
  12564. }
  12565. },
  12566. },
  12567. [
  12568. {
  12569. name: "Micro",
  12570. height: math.unit(6, "inches")
  12571. },
  12572. {
  12573. name: "Normal",
  12574. height: math.unit(6 + 2 / 12, "feet")
  12575. },
  12576. {
  12577. name: "Macro",
  12578. height: math.unit(131, "feet"),
  12579. default: true
  12580. },
  12581. {
  12582. name: "Megamacro",
  12583. height: math.unit(15, "miles")
  12584. },
  12585. {
  12586. name: "Gigamacro",
  12587. height: math.unit(4000, "miles")
  12588. },
  12589. {
  12590. name: "Teramacro",
  12591. height: math.unit(315000, "miles")
  12592. },
  12593. ]
  12594. ))
  12595. characterMakers.push(() => makeCharacter(
  12596. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12597. {
  12598. front: {
  12599. height: math.unit(2.794, "meters"),
  12600. weight: math.unit(325, "kg"),
  12601. name: "Front",
  12602. image: {
  12603. source: "./media/characters/tezwa/front.svg",
  12604. extra: 2083 / 1906,
  12605. bottom: 0.031
  12606. }
  12607. },
  12608. foot: {
  12609. height: math.unit(0.687, "meters"),
  12610. name: "Foot",
  12611. image: {
  12612. source: "./media/characters/tezwa/foot.svg"
  12613. }
  12614. },
  12615. },
  12616. [
  12617. {
  12618. name: "Normal",
  12619. height: math.unit(9 + 2 / 12, "feet"),
  12620. default: true
  12621. },
  12622. ]
  12623. ))
  12624. characterMakers.push(() => makeCharacter(
  12625. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12626. {
  12627. front: {
  12628. height: math.unit(58, "feet"),
  12629. weight: math.unit(89000, "lb"),
  12630. name: "Front",
  12631. image: {
  12632. source: "./media/characters/typhus/front.svg",
  12633. extra: 816 / 800,
  12634. bottom: 0.065
  12635. }
  12636. },
  12637. },
  12638. [
  12639. {
  12640. name: "Macro",
  12641. height: math.unit(58, "feet"),
  12642. default: true
  12643. },
  12644. ]
  12645. ))
  12646. characterMakers.push(() => makeCharacter(
  12647. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12648. {
  12649. front: {
  12650. height: math.unit(12, "feet"),
  12651. weight: math.unit(6, "tonnes"),
  12652. name: "Front",
  12653. image: {
  12654. source: "./media/characters/lyra-von-wulf/front.svg",
  12655. extra: 1,
  12656. bottom: 0.10
  12657. }
  12658. },
  12659. frontMecha: {
  12660. height: math.unit(12, "feet"),
  12661. weight: math.unit(12, "tonnes"),
  12662. name: "Front (Mecha)",
  12663. image: {
  12664. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12665. extra: 1,
  12666. bottom: 0.042
  12667. }
  12668. },
  12669. maw: {
  12670. height: math.unit(2.2, "feet"),
  12671. name: "Maw",
  12672. image: {
  12673. source: "./media/characters/lyra-von-wulf/maw.svg"
  12674. }
  12675. },
  12676. },
  12677. [
  12678. {
  12679. name: "Normal",
  12680. height: math.unit(12, "feet"),
  12681. default: true
  12682. },
  12683. {
  12684. name: "Classic",
  12685. height: math.unit(50, "feet")
  12686. },
  12687. {
  12688. name: "Macro",
  12689. height: math.unit(500, "feet")
  12690. },
  12691. {
  12692. name: "Megamacro",
  12693. height: math.unit(1, "mile")
  12694. },
  12695. {
  12696. name: "Gigamacro",
  12697. height: math.unit(400, "miles")
  12698. },
  12699. {
  12700. name: "Teramacro",
  12701. height: math.unit(22000, "miles")
  12702. },
  12703. {
  12704. name: "Solarmacro",
  12705. height: math.unit(8600000, "miles")
  12706. },
  12707. {
  12708. name: "Galactic",
  12709. height: math.unit(1057000, "lightyears")
  12710. },
  12711. ]
  12712. ))
  12713. characterMakers.push(() => makeCharacter(
  12714. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12715. {
  12716. front: {
  12717. height: math.unit(6 + 10 / 12, "feet"),
  12718. weight: math.unit(150, "lb"),
  12719. name: "Front",
  12720. image: {
  12721. source: "./media/characters/dixon/front.svg",
  12722. extra: 3361 / 3209,
  12723. bottom: 0.01
  12724. }
  12725. },
  12726. },
  12727. [
  12728. {
  12729. name: "Normal",
  12730. height: math.unit(6 + 10 / 12, "feet"),
  12731. default: true
  12732. },
  12733. {
  12734. name: "Big",
  12735. height: math.unit(12, "meters")
  12736. },
  12737. {
  12738. name: "Macro",
  12739. height: math.unit(500, "meters")
  12740. },
  12741. {
  12742. name: "Megamacro",
  12743. height: math.unit(2, "km")
  12744. },
  12745. ]
  12746. ))
  12747. characterMakers.push(() => makeCharacter(
  12748. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12749. {
  12750. front: {
  12751. height: math.unit(185, "cm"),
  12752. weight: math.unit(68, "kg"),
  12753. name: "Front",
  12754. image: {
  12755. source: "./media/characters/kauko/front.svg",
  12756. extra: 1455 / 1421,
  12757. bottom: 0.03
  12758. }
  12759. },
  12760. back: {
  12761. height: math.unit(185, "cm"),
  12762. weight: math.unit(68, "kg"),
  12763. name: "Back",
  12764. image: {
  12765. source: "./media/characters/kauko/back.svg",
  12766. extra: 1455 / 1421,
  12767. bottom: 0.004
  12768. }
  12769. },
  12770. },
  12771. [
  12772. {
  12773. name: "Normal",
  12774. height: math.unit(185, "cm"),
  12775. default: true
  12776. },
  12777. ]
  12778. ))
  12779. characterMakers.push(() => makeCharacter(
  12780. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12781. {
  12782. front: {
  12783. height: math.unit(6, "feet"),
  12784. weight: math.unit(150, "kg"),
  12785. name: "Front",
  12786. image: {
  12787. source: "./media/characters/varg/front.svg",
  12788. extra: 1108 / 1018,
  12789. bottom: 0.0375
  12790. }
  12791. },
  12792. },
  12793. [
  12794. {
  12795. name: "Normal",
  12796. height: math.unit(5, "meters")
  12797. },
  12798. {
  12799. name: "Macro",
  12800. height: math.unit(200, "meters")
  12801. },
  12802. {
  12803. name: "Megamacro",
  12804. height: math.unit(20, "kilometers")
  12805. },
  12806. {
  12807. name: "True Size",
  12808. height: math.unit(211, "km"),
  12809. default: true
  12810. },
  12811. {
  12812. name: "Gigamacro",
  12813. height: math.unit(1000, "km")
  12814. },
  12815. {
  12816. name: "Gigamacro+",
  12817. height: math.unit(8000, "km")
  12818. },
  12819. {
  12820. name: "Teramacro",
  12821. height: math.unit(1000000, "km")
  12822. },
  12823. ]
  12824. ))
  12825. characterMakers.push(() => makeCharacter(
  12826. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12827. {
  12828. front: {
  12829. height: math.unit(7 + 7 / 12, "feet"),
  12830. weight: math.unit(267, "lb"),
  12831. name: "Front",
  12832. image: {
  12833. source: "./media/characters/dayza/front.svg",
  12834. extra: 1262 / 1200,
  12835. bottom: 0.035
  12836. }
  12837. },
  12838. side: {
  12839. height: math.unit(7 + 7 / 12, "feet"),
  12840. weight: math.unit(267, "lb"),
  12841. name: "Side",
  12842. image: {
  12843. source: "./media/characters/dayza/side.svg",
  12844. extra: 1295 / 1245,
  12845. bottom: 0.05
  12846. }
  12847. },
  12848. back: {
  12849. height: math.unit(7 + 7 / 12, "feet"),
  12850. weight: math.unit(267, "lb"),
  12851. name: "Back",
  12852. image: {
  12853. source: "./media/characters/dayza/back.svg",
  12854. extra: 1241 / 1170
  12855. }
  12856. },
  12857. },
  12858. [
  12859. {
  12860. name: "Normal",
  12861. height: math.unit(7 + 7 / 12, "feet"),
  12862. default: true
  12863. },
  12864. {
  12865. name: "Macro",
  12866. height: math.unit(155, "feet")
  12867. },
  12868. ]
  12869. ))
  12870. characterMakers.push(() => makeCharacter(
  12871. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12872. {
  12873. front: {
  12874. height: math.unit(6 + 5 / 12, "feet"),
  12875. weight: math.unit(160, "lb"),
  12876. name: "Front",
  12877. image: {
  12878. source: "./media/characters/xanthos/front.svg",
  12879. extra: 1,
  12880. bottom: 0.04
  12881. }
  12882. },
  12883. back: {
  12884. height: math.unit(6 + 5 / 12, "feet"),
  12885. weight: math.unit(160, "lb"),
  12886. name: "Back",
  12887. image: {
  12888. source: "./media/characters/xanthos/back.svg",
  12889. extra: 1,
  12890. bottom: 0.03
  12891. }
  12892. },
  12893. hand: {
  12894. height: math.unit(0.928, "feet"),
  12895. name: "Hand",
  12896. image: {
  12897. source: "./media/characters/xanthos/hand.svg"
  12898. }
  12899. },
  12900. foot: {
  12901. height: math.unit(1.286, "feet"),
  12902. name: "Foot",
  12903. image: {
  12904. source: "./media/characters/xanthos/foot.svg"
  12905. }
  12906. },
  12907. },
  12908. [
  12909. {
  12910. name: "Normal",
  12911. height: math.unit(6 + 5 / 12, "feet"),
  12912. default: true
  12913. },
  12914. {
  12915. name: "Normal+",
  12916. height: math.unit(6, "meters")
  12917. },
  12918. {
  12919. name: "Macro",
  12920. height: math.unit(40, "feet")
  12921. },
  12922. {
  12923. name: "Macro+",
  12924. height: math.unit(200, "meters")
  12925. },
  12926. {
  12927. name: "Megamacro",
  12928. height: math.unit(20, "km")
  12929. },
  12930. {
  12931. name: "Megamacro+",
  12932. height: math.unit(100, "km")
  12933. },
  12934. {
  12935. name: "Gigamacro",
  12936. height: math.unit(200, "megameters")
  12937. },
  12938. {
  12939. name: "Gigamacro+",
  12940. height: math.unit(1.5, "gigameters")
  12941. },
  12942. ]
  12943. ))
  12944. characterMakers.push(() => makeCharacter(
  12945. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12946. {
  12947. front: {
  12948. height: math.unit(6 + 3 / 12, "feet"),
  12949. weight: math.unit(215, "lb"),
  12950. name: "Front",
  12951. image: {
  12952. source: "./media/characters/grynn/front.svg",
  12953. extra: 4627 / 4209,
  12954. bottom: 0.047
  12955. }
  12956. },
  12957. },
  12958. [
  12959. {
  12960. name: "Micro",
  12961. height: math.unit(6, "inches")
  12962. },
  12963. {
  12964. name: "Normal",
  12965. height: math.unit(6 + 3 / 12, "feet"),
  12966. default: true
  12967. },
  12968. {
  12969. name: "Big",
  12970. height: math.unit(104, "feet")
  12971. },
  12972. {
  12973. name: "Macro",
  12974. height: math.unit(944, "feet")
  12975. },
  12976. {
  12977. name: "Macro+",
  12978. height: math.unit(9480, "feet")
  12979. },
  12980. {
  12981. name: "Megamacro",
  12982. height: math.unit(78752, "feet")
  12983. },
  12984. {
  12985. name: "Megamacro+",
  12986. height: math.unit(630128, "feet")
  12987. },
  12988. {
  12989. name: "Megamacro++",
  12990. height: math.unit(3150695, "feet")
  12991. },
  12992. ]
  12993. ))
  12994. characterMakers.push(() => makeCharacter(
  12995. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12996. {
  12997. front: {
  12998. height: math.unit(7 + 5 / 12, "feet"),
  12999. weight: math.unit(450, "lb"),
  13000. name: "Front",
  13001. image: {
  13002. source: "./media/characters/mocha-aura/front.svg",
  13003. extra: 1907 / 1817,
  13004. bottom: 0.04
  13005. }
  13006. },
  13007. back: {
  13008. height: math.unit(7 + 5 / 12, "feet"),
  13009. weight: math.unit(450, "lb"),
  13010. name: "Back",
  13011. image: {
  13012. source: "./media/characters/mocha-aura/back.svg",
  13013. extra: 1900 / 1825,
  13014. bottom: 0.045
  13015. }
  13016. },
  13017. },
  13018. [
  13019. {
  13020. name: "Nano",
  13021. height: math.unit(1, "nm")
  13022. },
  13023. {
  13024. name: "Megamicro",
  13025. height: math.unit(1, "mm")
  13026. },
  13027. {
  13028. name: "Micro",
  13029. height: math.unit(3, "inches")
  13030. },
  13031. {
  13032. name: "Normal",
  13033. height: math.unit(7 + 5 / 12, "feet"),
  13034. default: true
  13035. },
  13036. {
  13037. name: "Macro",
  13038. height: math.unit(30, "feet")
  13039. },
  13040. {
  13041. name: "Megamacro",
  13042. height: math.unit(3500, "feet")
  13043. },
  13044. {
  13045. name: "Teramacro",
  13046. height: math.unit(500000, "miles")
  13047. },
  13048. {
  13049. name: "Petamacro",
  13050. height: math.unit(50000000000000000, "parsecs")
  13051. },
  13052. ]
  13053. ))
  13054. characterMakers.push(() => makeCharacter(
  13055. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13056. {
  13057. front: {
  13058. height: math.unit(6, "feet"),
  13059. weight: math.unit(150, "lb"),
  13060. name: "Front",
  13061. image: {
  13062. source: "./media/characters/ilisha-devya/front.svg",
  13063. extra: 1,
  13064. bottom: 0.175
  13065. }
  13066. },
  13067. back: {
  13068. height: math.unit(6, "feet"),
  13069. weight: math.unit(150, "lb"),
  13070. name: "Back",
  13071. image: {
  13072. source: "./media/characters/ilisha-devya/back.svg",
  13073. extra: 1,
  13074. bottom: 0.015
  13075. }
  13076. },
  13077. },
  13078. [
  13079. {
  13080. name: "Macro",
  13081. height: math.unit(500, "feet"),
  13082. default: true
  13083. },
  13084. {
  13085. name: "Megamacro",
  13086. height: math.unit(10, "miles")
  13087. },
  13088. {
  13089. name: "Gigamacro",
  13090. height: math.unit(100000, "miles")
  13091. },
  13092. {
  13093. name: "Examacro",
  13094. height: math.unit(1e9, "lightyears")
  13095. },
  13096. {
  13097. name: "Omniversal",
  13098. height: math.unit(1e33, "lightyears")
  13099. },
  13100. {
  13101. name: "Beyond Infinite",
  13102. height: math.unit(1e100, "lightyears")
  13103. },
  13104. ]
  13105. ))
  13106. characterMakers.push(() => makeCharacter(
  13107. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13108. {
  13109. Side: {
  13110. height: math.unit(6, "feet"),
  13111. weight: math.unit(150, "lb"),
  13112. name: "Side",
  13113. image: {
  13114. source: "./media/characters/mira/side.svg",
  13115. extra: 900 / 799,
  13116. bottom: 0.02
  13117. }
  13118. },
  13119. },
  13120. [
  13121. {
  13122. name: "Human Size",
  13123. height: math.unit(6, "feet")
  13124. },
  13125. {
  13126. name: "Macro",
  13127. height: math.unit(100, "feet"),
  13128. default: true
  13129. },
  13130. {
  13131. name: "Megamacro",
  13132. height: math.unit(10, "miles")
  13133. },
  13134. {
  13135. name: "Gigamacro",
  13136. height: math.unit(25000, "miles")
  13137. },
  13138. {
  13139. name: "Teramacro",
  13140. height: math.unit(300, "AU")
  13141. },
  13142. {
  13143. name: "Full Size",
  13144. height: math.unit(4.5e10, "lightyears")
  13145. },
  13146. ]
  13147. ))
  13148. characterMakers.push(() => makeCharacter(
  13149. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13150. {
  13151. front: {
  13152. height: math.unit(6, "feet"),
  13153. weight: math.unit(150, "lb"),
  13154. name: "Front",
  13155. image: {
  13156. source: "./media/characters/holly/front.svg",
  13157. extra: 639 / 606
  13158. }
  13159. },
  13160. back: {
  13161. height: math.unit(6, "feet"),
  13162. weight: math.unit(150, "lb"),
  13163. name: "Back",
  13164. image: {
  13165. source: "./media/characters/holly/back.svg",
  13166. extra: 623 / 598
  13167. }
  13168. },
  13169. frontWorking: {
  13170. height: math.unit(6, "feet"),
  13171. weight: math.unit(150, "lb"),
  13172. name: "Front (Working)",
  13173. image: {
  13174. source: "./media/characters/holly/front-working.svg",
  13175. extra: 607 / 577,
  13176. bottom: 0.048
  13177. }
  13178. },
  13179. },
  13180. [
  13181. {
  13182. name: "Normal",
  13183. height: math.unit(12 + 3 / 12, "feet"),
  13184. default: true
  13185. },
  13186. ]
  13187. ))
  13188. characterMakers.push(() => makeCharacter(
  13189. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13190. {
  13191. front: {
  13192. height: math.unit(6, "feet"),
  13193. weight: math.unit(150, "lb"),
  13194. name: "Front",
  13195. image: {
  13196. source: "./media/characters/porter/front.svg",
  13197. extra: 1,
  13198. bottom: 0.01
  13199. }
  13200. },
  13201. frontRobes: {
  13202. height: math.unit(6, "feet"),
  13203. weight: math.unit(150, "lb"),
  13204. name: "Front (Robes)",
  13205. image: {
  13206. source: "./media/characters/porter/front-robes.svg",
  13207. extra: 1.01,
  13208. bottom: 0.01
  13209. }
  13210. },
  13211. },
  13212. [
  13213. {
  13214. name: "Normal",
  13215. height: math.unit(11 + 9 / 12, "feet"),
  13216. default: true
  13217. },
  13218. ]
  13219. ))
  13220. characterMakers.push(() => makeCharacter(
  13221. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13222. {
  13223. legendary: {
  13224. height: math.unit(6, "feet"),
  13225. weight: math.unit(150, "lb"),
  13226. name: "Legendary",
  13227. image: {
  13228. source: "./media/characters/lucy/legendary.svg",
  13229. extra: 1355 / 1100,
  13230. bottom: 0.045
  13231. }
  13232. },
  13233. },
  13234. [
  13235. {
  13236. name: "Legendary",
  13237. height: math.unit(86882 * 2, "miles"),
  13238. default: true
  13239. },
  13240. ]
  13241. ))
  13242. characterMakers.push(() => makeCharacter(
  13243. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13244. {
  13245. front: {
  13246. height: math.unit(6, "feet"),
  13247. weight: math.unit(150, "lb"),
  13248. name: "Front",
  13249. image: {
  13250. source: "./media/characters/drusilla/front.svg",
  13251. extra: 678 / 635,
  13252. bottom: 0.03
  13253. }
  13254. },
  13255. back: {
  13256. height: math.unit(6, "feet"),
  13257. weight: math.unit(150, "lb"),
  13258. name: "Back",
  13259. image: {
  13260. source: "./media/characters/drusilla/back.svg",
  13261. extra: 678 / 635,
  13262. bottom: 0.005
  13263. }
  13264. },
  13265. },
  13266. [
  13267. {
  13268. name: "Macro",
  13269. height: math.unit(100, "feet")
  13270. },
  13271. {
  13272. name: "Canon Height",
  13273. height: math.unit(2000, "feet"),
  13274. default: true
  13275. },
  13276. ]
  13277. ))
  13278. characterMakers.push(() => makeCharacter(
  13279. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13280. {
  13281. front: {
  13282. height: math.unit(6, "feet"),
  13283. weight: math.unit(180, "lb"),
  13284. name: "Front",
  13285. image: {
  13286. source: "./media/characters/renard-thatch/front.svg",
  13287. extra: 2411 / 2275,
  13288. bottom: 0.01
  13289. }
  13290. },
  13291. frontPosing: {
  13292. height: math.unit(6, "feet"),
  13293. weight: math.unit(180, "lb"),
  13294. name: "Front (Posing)",
  13295. image: {
  13296. source: "./media/characters/renard-thatch/front-posing.svg",
  13297. extra: 2381 / 2261,
  13298. bottom: 0.01
  13299. }
  13300. },
  13301. back: {
  13302. height: math.unit(6, "feet"),
  13303. weight: math.unit(180, "lb"),
  13304. name: "Back",
  13305. image: {
  13306. source: "./media/characters/renard-thatch/back.svg",
  13307. extra: 2428 / 2288
  13308. }
  13309. },
  13310. },
  13311. [
  13312. {
  13313. name: "Micro",
  13314. height: math.unit(3, "inches")
  13315. },
  13316. {
  13317. name: "Default",
  13318. height: math.unit(6, "feet"),
  13319. default: true
  13320. },
  13321. {
  13322. name: "Macro",
  13323. height: math.unit(75, "feet")
  13324. },
  13325. ]
  13326. ))
  13327. characterMakers.push(() => makeCharacter(
  13328. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13329. {
  13330. front: {
  13331. height: math.unit(1450, "feet"),
  13332. weight: math.unit(1.21e6, "tons"),
  13333. name: "Front",
  13334. image: {
  13335. source: "./media/characters/sekvra/front.svg",
  13336. extra: 1,
  13337. bottom: 0.03
  13338. }
  13339. },
  13340. frontClothed: {
  13341. height: math.unit(1450, "feet"),
  13342. weight: math.unit(1.21e6, "tons"),
  13343. name: "Front (Clothed)",
  13344. image: {
  13345. source: "./media/characters/sekvra/front-clothed.svg",
  13346. extra: 1,
  13347. bottom: 0.03
  13348. }
  13349. },
  13350. side: {
  13351. height: math.unit(1450, "feet"),
  13352. weight: math.unit(1.21e6, "tons"),
  13353. name: "Side",
  13354. image: {
  13355. source: "./media/characters/sekvra/side.svg",
  13356. extra: 1,
  13357. bottom: 0.025
  13358. }
  13359. },
  13360. back: {
  13361. height: math.unit(1450, "feet"),
  13362. weight: math.unit(1.21e6, "tons"),
  13363. name: "Back",
  13364. image: {
  13365. source: "./media/characters/sekvra/back.svg",
  13366. extra: 1,
  13367. bottom: 0.005
  13368. }
  13369. },
  13370. },
  13371. [
  13372. {
  13373. name: "Macro",
  13374. height: math.unit(1450, "feet"),
  13375. default: true
  13376. },
  13377. {
  13378. name: "Megamacro",
  13379. height: math.unit(15000, "feet")
  13380. },
  13381. ]
  13382. ))
  13383. characterMakers.push(() => makeCharacter(
  13384. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13385. {
  13386. front: {
  13387. height: math.unit(6, "feet"),
  13388. weight: math.unit(150, "lb"),
  13389. name: "Front",
  13390. image: {
  13391. source: "./media/characters/carmine/front.svg",
  13392. extra: 1,
  13393. bottom: 0.035
  13394. }
  13395. },
  13396. frontArmor: {
  13397. height: math.unit(6, "feet"),
  13398. weight: math.unit(150, "lb"),
  13399. name: "Front (Armor)",
  13400. image: {
  13401. source: "./media/characters/carmine/front-armor.svg",
  13402. extra: 1,
  13403. bottom: 0.035
  13404. }
  13405. },
  13406. },
  13407. [
  13408. {
  13409. name: "Large",
  13410. height: math.unit(1, "mile")
  13411. },
  13412. {
  13413. name: "Huge",
  13414. height: math.unit(40, "miles"),
  13415. default: true
  13416. },
  13417. {
  13418. name: "Colossal",
  13419. height: math.unit(2500, "miles")
  13420. },
  13421. ]
  13422. ))
  13423. characterMakers.push(() => makeCharacter(
  13424. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13425. {
  13426. front: {
  13427. height: math.unit(6, "feet"),
  13428. weight: math.unit(150, "lb"),
  13429. name: "Front",
  13430. image: {
  13431. source: "./media/characters/elyssia/front.svg",
  13432. extra: 2201 / 2035,
  13433. bottom: 0.05
  13434. }
  13435. },
  13436. frontClothed: {
  13437. height: math.unit(6, "feet"),
  13438. weight: math.unit(150, "lb"),
  13439. name: "Front (Clothed)",
  13440. image: {
  13441. source: "./media/characters/elyssia/front-clothed.svg",
  13442. extra: 2201 / 2035,
  13443. bottom: 0.05
  13444. }
  13445. },
  13446. back: {
  13447. height: math.unit(6, "feet"),
  13448. weight: math.unit(150, "lb"),
  13449. name: "Back",
  13450. image: {
  13451. source: "./media/characters/elyssia/back.svg",
  13452. extra: 2201 / 2035,
  13453. bottom: 0.013
  13454. }
  13455. },
  13456. },
  13457. [
  13458. {
  13459. name: "Smaller",
  13460. height: math.unit(150, "feet")
  13461. },
  13462. {
  13463. name: "Standard",
  13464. height: math.unit(1400, "feet"),
  13465. default: true
  13466. },
  13467. {
  13468. name: "Distracted",
  13469. height: math.unit(15000, "feet")
  13470. },
  13471. ]
  13472. ))
  13473. characterMakers.push(() => makeCharacter(
  13474. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13475. {
  13476. front: {
  13477. height: math.unit(7 + 4/12, "feet"),
  13478. weight: math.unit(690, "lb"),
  13479. name: "Front",
  13480. image: {
  13481. source: "./media/characters/geno-maxwell/front.svg",
  13482. extra: 984/856,
  13483. bottom: 87/1071
  13484. }
  13485. },
  13486. back: {
  13487. height: math.unit(7 + 4/12, "feet"),
  13488. weight: math.unit(690, "lb"),
  13489. name: "Back",
  13490. image: {
  13491. source: "./media/characters/geno-maxwell/back.svg",
  13492. extra: 981/854,
  13493. bottom: 57/1038
  13494. }
  13495. },
  13496. frontCostume: {
  13497. height: math.unit(7 + 4/12, "feet"),
  13498. weight: math.unit(690, "lb"),
  13499. name: "Front (Costume)",
  13500. image: {
  13501. source: "./media/characters/geno-maxwell/front-costume.svg",
  13502. extra: 984/856,
  13503. bottom: 87/1071
  13504. }
  13505. },
  13506. backcostume: {
  13507. height: math.unit(7 + 4/12, "feet"),
  13508. weight: math.unit(690, "lb"),
  13509. name: "Back (Costume)",
  13510. image: {
  13511. source: "./media/characters/geno-maxwell/back-costume.svg",
  13512. extra: 981/854,
  13513. bottom: 57/1038
  13514. }
  13515. },
  13516. },
  13517. [
  13518. {
  13519. name: "Micro",
  13520. height: math.unit(3, "inches")
  13521. },
  13522. {
  13523. name: "Normal",
  13524. height: math.unit(7 + 4 / 12, "feet"),
  13525. default: true
  13526. },
  13527. {
  13528. name: "Macro",
  13529. height: math.unit(220, "feet")
  13530. },
  13531. {
  13532. name: "Megamacro",
  13533. height: math.unit(11, "miles")
  13534. },
  13535. ]
  13536. ))
  13537. characterMakers.push(() => makeCharacter(
  13538. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13539. {
  13540. front: {
  13541. height: math.unit(7 + 4/12, "feet"),
  13542. weight: math.unit(750, "lb"),
  13543. name: "Front",
  13544. image: {
  13545. source: "./media/characters/regena-maxwell/front.svg",
  13546. extra: 984/856,
  13547. bottom: 87/1071
  13548. }
  13549. },
  13550. back: {
  13551. height: math.unit(7 + 4/12, "feet"),
  13552. weight: math.unit(750, "lb"),
  13553. name: "Back",
  13554. image: {
  13555. source: "./media/characters/regena-maxwell/back.svg",
  13556. extra: 981/854,
  13557. bottom: 57/1038
  13558. }
  13559. },
  13560. frontCostume: {
  13561. height: math.unit(7 + 4/12, "feet"),
  13562. weight: math.unit(750, "lb"),
  13563. name: "Front (Costume)",
  13564. image: {
  13565. source: "./media/characters/regena-maxwell/front-costume.svg",
  13566. extra: 984/856,
  13567. bottom: 87/1071
  13568. }
  13569. },
  13570. backcostume: {
  13571. height: math.unit(7 + 4/12, "feet"),
  13572. weight: math.unit(750, "lb"),
  13573. name: "Back (Costume)",
  13574. image: {
  13575. source: "./media/characters/regena-maxwell/back-costume.svg",
  13576. extra: 981/854,
  13577. bottom: 57/1038
  13578. }
  13579. },
  13580. },
  13581. [
  13582. {
  13583. name: "Normal",
  13584. height: math.unit(7 + 4 / 12, "feet"),
  13585. default: true
  13586. },
  13587. {
  13588. name: "Macro",
  13589. height: math.unit(220, "feet")
  13590. },
  13591. {
  13592. name: "Megamacro",
  13593. height: math.unit(11, "miles")
  13594. },
  13595. ]
  13596. ))
  13597. characterMakers.push(() => makeCharacter(
  13598. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13599. {
  13600. front: {
  13601. height: math.unit(6, "feet"),
  13602. weight: math.unit(150, "lb"),
  13603. name: "Front",
  13604. image: {
  13605. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13606. extra: 860 / 690,
  13607. bottom: 0.03
  13608. }
  13609. },
  13610. },
  13611. [
  13612. {
  13613. name: "Normal",
  13614. height: math.unit(1.7, "meters"),
  13615. default: true
  13616. },
  13617. ]
  13618. ))
  13619. characterMakers.push(() => makeCharacter(
  13620. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13621. {
  13622. front: {
  13623. height: math.unit(6, "feet"),
  13624. weight: math.unit(150, "lb"),
  13625. name: "Front",
  13626. image: {
  13627. source: "./media/characters/quilly/front.svg",
  13628. extra: 890 / 776
  13629. }
  13630. },
  13631. },
  13632. [
  13633. {
  13634. name: "Gigamacro",
  13635. height: math.unit(404090, "miles"),
  13636. default: true
  13637. },
  13638. ]
  13639. ))
  13640. characterMakers.push(() => makeCharacter(
  13641. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13642. {
  13643. front: {
  13644. height: math.unit(7 + 8 / 12, "feet"),
  13645. weight: math.unit(350, "lb"),
  13646. name: "Front",
  13647. image: {
  13648. source: "./media/characters/tempest/front.svg",
  13649. extra: 1175 / 1086,
  13650. bottom: 0.02
  13651. }
  13652. },
  13653. },
  13654. [
  13655. {
  13656. name: "Normal",
  13657. height: math.unit(7 + 8 / 12, "feet"),
  13658. default: true
  13659. },
  13660. ]
  13661. ))
  13662. characterMakers.push(() => makeCharacter(
  13663. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13664. {
  13665. side: {
  13666. height: math.unit(4 + 5 / 12, "feet"),
  13667. weight: math.unit(80, "lb"),
  13668. name: "Side",
  13669. image: {
  13670. source: "./media/characters/rodger/side.svg",
  13671. extra: 1235 / 1118
  13672. }
  13673. },
  13674. },
  13675. [
  13676. {
  13677. name: "Micro",
  13678. height: math.unit(1, "inch")
  13679. },
  13680. {
  13681. name: "Normal",
  13682. height: math.unit(4 + 5 / 12, "feet"),
  13683. default: true
  13684. },
  13685. {
  13686. name: "Macro",
  13687. height: math.unit(120, "feet")
  13688. },
  13689. ]
  13690. ))
  13691. characterMakers.push(() => makeCharacter(
  13692. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13693. {
  13694. front: {
  13695. height: math.unit(6, "feet"),
  13696. weight: math.unit(150, "lb"),
  13697. name: "Front",
  13698. image: {
  13699. source: "./media/characters/danyel/front.svg",
  13700. extra: 1185 / 1123,
  13701. bottom: 0.05
  13702. }
  13703. },
  13704. },
  13705. [
  13706. {
  13707. name: "Shrunken",
  13708. height: math.unit(0.5, "mm")
  13709. },
  13710. {
  13711. name: "Micro",
  13712. height: math.unit(1, "mm"),
  13713. default: true
  13714. },
  13715. {
  13716. name: "Upsized",
  13717. height: math.unit(5 + 5 / 12, "feet")
  13718. },
  13719. ]
  13720. ))
  13721. characterMakers.push(() => makeCharacter(
  13722. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13723. {
  13724. front: {
  13725. height: math.unit(5 + 6 / 12, "feet"),
  13726. weight: math.unit(200, "lb"),
  13727. name: "Front",
  13728. image: {
  13729. source: "./media/characters/vivian-bijoux/front.svg",
  13730. extra: 1217/1209,
  13731. bottom: 76/1293
  13732. }
  13733. },
  13734. back: {
  13735. height: math.unit(5 + 6 / 12, "feet"),
  13736. weight: math.unit(200, "lb"),
  13737. name: "Back",
  13738. image: {
  13739. source: "./media/characters/vivian-bijoux/back.svg",
  13740. extra: 1214/1208,
  13741. bottom: 51/1265
  13742. }
  13743. },
  13744. dressed: {
  13745. height: math.unit(5 + 6 / 12, "feet"),
  13746. weight: math.unit(200, "lb"),
  13747. name: "Dressed",
  13748. image: {
  13749. source: "./media/characters/vivian-bijoux/dressed.svg",
  13750. extra: 1217/1209,
  13751. bottom: 76/1293
  13752. }
  13753. },
  13754. },
  13755. [
  13756. {
  13757. name: "Normal",
  13758. height: math.unit(5 + 6 / 12, "feet"),
  13759. default: true
  13760. },
  13761. {
  13762. name: "Bad Dream",
  13763. height: math.unit(500, "feet")
  13764. },
  13765. {
  13766. name: "Nightmare",
  13767. height: math.unit(500, "miles")
  13768. },
  13769. ]
  13770. ))
  13771. characterMakers.push(() => makeCharacter(
  13772. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13773. {
  13774. front: {
  13775. height: math.unit(6 + 1 / 12, "feet"),
  13776. weight: math.unit(260, "lb"),
  13777. name: "Front",
  13778. image: {
  13779. source: "./media/characters/zeta/front.svg",
  13780. extra: 1968 / 1889,
  13781. bottom: 0.06
  13782. }
  13783. },
  13784. back: {
  13785. height: math.unit(6 + 1 / 12, "feet"),
  13786. weight: math.unit(260, "lb"),
  13787. name: "Back",
  13788. image: {
  13789. source: "./media/characters/zeta/back.svg",
  13790. extra: 1944 / 1858,
  13791. bottom: 0.03
  13792. }
  13793. },
  13794. hand: {
  13795. height: math.unit(1.112, "feet"),
  13796. name: "Hand",
  13797. image: {
  13798. source: "./media/characters/zeta/hand.svg"
  13799. }
  13800. },
  13801. foot: {
  13802. height: math.unit(1.48, "feet"),
  13803. name: "Foot",
  13804. image: {
  13805. source: "./media/characters/zeta/foot.svg"
  13806. }
  13807. },
  13808. },
  13809. [
  13810. {
  13811. name: "Micro",
  13812. height: math.unit(6, "inches")
  13813. },
  13814. {
  13815. name: "Normal",
  13816. height: math.unit(6 + 1 / 12, "feet"),
  13817. default: true
  13818. },
  13819. {
  13820. name: "Macro",
  13821. height: math.unit(20, "feet")
  13822. },
  13823. ]
  13824. ))
  13825. characterMakers.push(() => makeCharacter(
  13826. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13827. {
  13828. front: {
  13829. height: math.unit(6, "feet"),
  13830. weight: math.unit(150, "lb"),
  13831. name: "Front",
  13832. image: {
  13833. source: "./media/characters/jamie-larsen/front.svg",
  13834. extra: 962 / 933,
  13835. bottom: 0.02
  13836. }
  13837. },
  13838. back: {
  13839. height: math.unit(6, "feet"),
  13840. weight: math.unit(150, "lb"),
  13841. name: "Back",
  13842. image: {
  13843. source: "./media/characters/jamie-larsen/back.svg",
  13844. extra: 997 / 946
  13845. }
  13846. },
  13847. },
  13848. [
  13849. {
  13850. name: "Macro",
  13851. height: math.unit(28 + 7 / 12, "feet"),
  13852. default: true
  13853. },
  13854. {
  13855. name: "Macro+",
  13856. height: math.unit(180, "feet")
  13857. },
  13858. {
  13859. name: "Megamacro",
  13860. height: math.unit(10, "miles")
  13861. },
  13862. {
  13863. name: "Gigamacro",
  13864. height: math.unit(200000, "miles")
  13865. },
  13866. ]
  13867. ))
  13868. characterMakers.push(() => makeCharacter(
  13869. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13870. {
  13871. front: {
  13872. height: math.unit(6, "feet"),
  13873. weight: math.unit(120, "lb"),
  13874. name: "Front",
  13875. image: {
  13876. source: "./media/characters/vance/front.svg",
  13877. extra: 1980 / 1890,
  13878. bottom: 0.09
  13879. }
  13880. },
  13881. back: {
  13882. height: math.unit(6, "feet"),
  13883. weight: math.unit(120, "lb"),
  13884. name: "Back",
  13885. image: {
  13886. source: "./media/characters/vance/back.svg",
  13887. extra: 2081 / 1994,
  13888. bottom: 0.014
  13889. }
  13890. },
  13891. hand: {
  13892. height: math.unit(0.88, "feet"),
  13893. name: "Hand",
  13894. image: {
  13895. source: "./media/characters/vance/hand.svg"
  13896. }
  13897. },
  13898. foot: {
  13899. height: math.unit(0.64, "feet"),
  13900. name: "Foot",
  13901. image: {
  13902. source: "./media/characters/vance/foot.svg"
  13903. }
  13904. },
  13905. },
  13906. [
  13907. {
  13908. name: "Small",
  13909. height: math.unit(90, "feet"),
  13910. default: true
  13911. },
  13912. {
  13913. name: "Macro",
  13914. height: math.unit(100, "meters")
  13915. },
  13916. {
  13917. name: "Megamacro",
  13918. height: math.unit(15, "miles")
  13919. },
  13920. ]
  13921. ))
  13922. characterMakers.push(() => makeCharacter(
  13923. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13924. {
  13925. front: {
  13926. height: math.unit(6, "feet"),
  13927. weight: math.unit(180, "lb"),
  13928. name: "Front",
  13929. image: {
  13930. source: "./media/characters/xochitl/front.svg",
  13931. extra: 2297 / 2261,
  13932. bottom: 0.065
  13933. }
  13934. },
  13935. back: {
  13936. height: math.unit(6, "feet"),
  13937. weight: math.unit(180, "lb"),
  13938. name: "Back",
  13939. image: {
  13940. source: "./media/characters/xochitl/back.svg",
  13941. extra: 2386 / 2354,
  13942. bottom: 0.01
  13943. }
  13944. },
  13945. foot: {
  13946. height: math.unit(6 / 5 * 1.15, "feet"),
  13947. weight: math.unit(150, "lb"),
  13948. name: "Foot",
  13949. image: {
  13950. source: "./media/characters/xochitl/foot.svg"
  13951. }
  13952. },
  13953. },
  13954. [
  13955. {
  13956. name: "Macro",
  13957. height: math.unit(80, "feet")
  13958. },
  13959. {
  13960. name: "Macro+",
  13961. height: math.unit(400, "feet"),
  13962. default: true
  13963. },
  13964. {
  13965. name: "Gigamacro",
  13966. height: math.unit(80000, "miles")
  13967. },
  13968. {
  13969. name: "Gigamacro+",
  13970. height: math.unit(400000, "miles")
  13971. },
  13972. {
  13973. name: "Teramacro",
  13974. height: math.unit(300, "AU")
  13975. },
  13976. ]
  13977. ))
  13978. characterMakers.push(() => makeCharacter(
  13979. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13980. {
  13981. front: {
  13982. height: math.unit(6, "feet"),
  13983. weight: math.unit(150, "lb"),
  13984. name: "Front",
  13985. image: {
  13986. source: "./media/characters/vincent/front.svg",
  13987. extra: 1130 / 1080,
  13988. bottom: 0.055
  13989. }
  13990. },
  13991. beak: {
  13992. height: math.unit(6 * 0.1, "feet"),
  13993. name: "Beak",
  13994. image: {
  13995. source: "./media/characters/vincent/beak.svg"
  13996. }
  13997. },
  13998. hand: {
  13999. height: math.unit(6 * 0.85, "feet"),
  14000. weight: math.unit(150, "lb"),
  14001. name: "Hand",
  14002. image: {
  14003. source: "./media/characters/vincent/hand.svg"
  14004. }
  14005. },
  14006. foot: {
  14007. height: math.unit(6 * 0.19, "feet"),
  14008. weight: math.unit(150, "lb"),
  14009. name: "Foot",
  14010. image: {
  14011. source: "./media/characters/vincent/foot.svg"
  14012. }
  14013. },
  14014. },
  14015. [
  14016. {
  14017. name: "Base",
  14018. height: math.unit(6 + 5 / 12, "feet"),
  14019. default: true
  14020. },
  14021. {
  14022. name: "Macro",
  14023. height: math.unit(300, "feet")
  14024. },
  14025. {
  14026. name: "Megamacro",
  14027. height: math.unit(2, "miles")
  14028. },
  14029. {
  14030. name: "Gigamacro",
  14031. height: math.unit(1000, "miles")
  14032. },
  14033. ]
  14034. ))
  14035. characterMakers.push(() => makeCharacter(
  14036. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14037. {
  14038. front: {
  14039. height: math.unit(2, "meters"),
  14040. weight: math.unit(500, "kg"),
  14041. name: "Front",
  14042. image: {
  14043. source: "./media/characters/coatl/front.svg",
  14044. extra: 3948 / 3500,
  14045. bottom: 0.082
  14046. }
  14047. },
  14048. },
  14049. [
  14050. {
  14051. name: "Normal",
  14052. height: math.unit(4, "meters")
  14053. },
  14054. {
  14055. name: "Macro",
  14056. height: math.unit(100, "meters"),
  14057. default: true
  14058. },
  14059. {
  14060. name: "Macro+",
  14061. height: math.unit(300, "meters")
  14062. },
  14063. {
  14064. name: "Megamacro",
  14065. height: math.unit(3, "gigameters")
  14066. },
  14067. {
  14068. name: "Megamacro+",
  14069. height: math.unit(300, "terameters")
  14070. },
  14071. {
  14072. name: "Megamacro++",
  14073. height: math.unit(3, "lightyears")
  14074. },
  14075. ]
  14076. ))
  14077. characterMakers.push(() => makeCharacter(
  14078. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14079. {
  14080. front: {
  14081. height: math.unit(6, "feet"),
  14082. weight: math.unit(50, "kg"),
  14083. name: "front",
  14084. image: {
  14085. source: "./media/characters/shiroryu/front.svg",
  14086. extra: 1990 / 1935
  14087. }
  14088. },
  14089. },
  14090. [
  14091. {
  14092. name: "Mortal Mingling",
  14093. height: math.unit(3, "meters")
  14094. },
  14095. {
  14096. name: "Kaiju-ish",
  14097. height: math.unit(250, "meters")
  14098. },
  14099. {
  14100. name: "Somewhat Godly",
  14101. height: math.unit(400, "km"),
  14102. default: true
  14103. },
  14104. {
  14105. name: "Planetary",
  14106. height: math.unit(300, "megameters")
  14107. },
  14108. {
  14109. name: "Galaxy-dwarfing",
  14110. height: math.unit(450, "kiloparsecs")
  14111. },
  14112. {
  14113. name: "Universe Eater",
  14114. height: math.unit(150, "gigaparsecs")
  14115. },
  14116. {
  14117. name: "Almost Immeasurable",
  14118. height: math.unit(1.3e266, "yottaparsecs")
  14119. },
  14120. ]
  14121. ))
  14122. characterMakers.push(() => makeCharacter(
  14123. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14124. {
  14125. front: {
  14126. height: math.unit(6, "feet"),
  14127. weight: math.unit(150, "lb"),
  14128. name: "Front",
  14129. image: {
  14130. source: "./media/characters/umeko/front.svg",
  14131. extra: 1,
  14132. bottom: 0.019
  14133. }
  14134. },
  14135. frontArmored: {
  14136. height: math.unit(6, "feet"),
  14137. weight: math.unit(150, "lb"),
  14138. name: "Front (Armored)",
  14139. image: {
  14140. source: "./media/characters/umeko/front-armored.svg",
  14141. extra: 1,
  14142. bottom: 0.021
  14143. }
  14144. },
  14145. },
  14146. [
  14147. {
  14148. name: "Macro",
  14149. height: math.unit(220, "feet"),
  14150. default: true
  14151. },
  14152. {
  14153. name: "Guardian Dragon",
  14154. height: math.unit(50, "miles")
  14155. },
  14156. {
  14157. name: "Cosmic",
  14158. height: math.unit(800000, "miles")
  14159. },
  14160. ]
  14161. ))
  14162. characterMakers.push(() => makeCharacter(
  14163. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14164. {
  14165. front: {
  14166. height: math.unit(6, "feet"),
  14167. weight: math.unit(150, "lb"),
  14168. name: "Front",
  14169. image: {
  14170. source: "./media/characters/cassidy/front.svg",
  14171. extra: 1,
  14172. bottom: 0.043
  14173. }
  14174. },
  14175. },
  14176. [
  14177. {
  14178. name: "Canon Height",
  14179. height: math.unit(120, "feet"),
  14180. default: true
  14181. },
  14182. {
  14183. name: "Macro+",
  14184. height: math.unit(400, "feet")
  14185. },
  14186. {
  14187. name: "Macro++",
  14188. height: math.unit(4000, "feet")
  14189. },
  14190. {
  14191. name: "Megamacro",
  14192. height: math.unit(3, "miles")
  14193. },
  14194. ]
  14195. ))
  14196. characterMakers.push(() => makeCharacter(
  14197. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14198. {
  14199. front: {
  14200. height: math.unit(6, "feet"),
  14201. weight: math.unit(150, "lb"),
  14202. name: "Front",
  14203. image: {
  14204. source: "./media/characters/isaac/front.svg",
  14205. extra: 896 / 815,
  14206. bottom: 0.11
  14207. }
  14208. },
  14209. },
  14210. [
  14211. {
  14212. name: "Human Size",
  14213. height: math.unit(8, "feet"),
  14214. default: true
  14215. },
  14216. {
  14217. name: "Macro",
  14218. height: math.unit(400, "feet")
  14219. },
  14220. {
  14221. name: "Megamacro",
  14222. height: math.unit(50, "miles")
  14223. },
  14224. {
  14225. name: "Canon Height",
  14226. height: math.unit(200, "AU")
  14227. },
  14228. ]
  14229. ))
  14230. characterMakers.push(() => makeCharacter(
  14231. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14232. {
  14233. front: {
  14234. height: math.unit(6, "feet"),
  14235. weight: math.unit(72, "kg"),
  14236. name: "Front",
  14237. image: {
  14238. source: "./media/characters/sleekit/front.svg",
  14239. extra: 4693 / 4487,
  14240. bottom: 0.012
  14241. }
  14242. },
  14243. },
  14244. [
  14245. {
  14246. name: "Minimum Height",
  14247. height: math.unit(10, "meters")
  14248. },
  14249. {
  14250. name: "Smaller",
  14251. height: math.unit(25, "meters")
  14252. },
  14253. {
  14254. name: "Larger",
  14255. height: math.unit(38, "meters"),
  14256. default: true
  14257. },
  14258. {
  14259. name: "Maximum height",
  14260. height: math.unit(100, "meters")
  14261. },
  14262. ]
  14263. ))
  14264. characterMakers.push(() => makeCharacter(
  14265. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14266. {
  14267. front: {
  14268. height: math.unit(6, "feet"),
  14269. weight: math.unit(150, "lb"),
  14270. name: "Front",
  14271. image: {
  14272. source: "./media/characters/nillia/front.svg",
  14273. extra: 2195 / 2037,
  14274. bottom: 0.005
  14275. }
  14276. },
  14277. back: {
  14278. height: math.unit(6, "feet"),
  14279. weight: math.unit(150, "lb"),
  14280. name: "Back",
  14281. image: {
  14282. source: "./media/characters/nillia/back.svg",
  14283. extra: 2195 / 2037,
  14284. bottom: 0.005
  14285. }
  14286. },
  14287. },
  14288. [
  14289. {
  14290. name: "Canon Height",
  14291. height: math.unit(489, "feet"),
  14292. default: true
  14293. }
  14294. ]
  14295. ))
  14296. characterMakers.push(() => makeCharacter(
  14297. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14298. {
  14299. front: {
  14300. height: math.unit(6, "feet"),
  14301. weight: math.unit(150, "lb"),
  14302. name: "Front",
  14303. image: {
  14304. source: "./media/characters/mesmyriza/front.svg",
  14305. extra: 2067 / 1784,
  14306. bottom: 0.035
  14307. }
  14308. },
  14309. foot: {
  14310. height: math.unit(6 / (250 / 35), "feet"),
  14311. name: "Foot",
  14312. image: {
  14313. source: "./media/characters/mesmyriza/foot.svg"
  14314. }
  14315. },
  14316. },
  14317. [
  14318. {
  14319. name: "Macro",
  14320. height: math.unit(457, "meters"),
  14321. default: true
  14322. },
  14323. {
  14324. name: "Megamacro",
  14325. height: math.unit(8, "megameters")
  14326. },
  14327. ]
  14328. ))
  14329. characterMakers.push(() => makeCharacter(
  14330. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14331. {
  14332. front: {
  14333. height: math.unit(6, "feet"),
  14334. weight: math.unit(250, "lb"),
  14335. name: "Front",
  14336. image: {
  14337. source: "./media/characters/saudade/front.svg",
  14338. extra: 1172 / 1139,
  14339. bottom: 0.035
  14340. }
  14341. },
  14342. },
  14343. [
  14344. {
  14345. name: "Micro",
  14346. height: math.unit(3, "inches")
  14347. },
  14348. {
  14349. name: "Normal",
  14350. height: math.unit(6, "feet"),
  14351. default: true
  14352. },
  14353. {
  14354. name: "Macro",
  14355. height: math.unit(50, "feet")
  14356. },
  14357. {
  14358. name: "Megamacro",
  14359. height: math.unit(2800, "feet")
  14360. },
  14361. ]
  14362. ))
  14363. characterMakers.push(() => makeCharacter(
  14364. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14365. {
  14366. front: {
  14367. height: math.unit(5 + 4 / 12, "feet"),
  14368. weight: math.unit(100, "lb"),
  14369. name: "Front",
  14370. image: {
  14371. source: "./media/characters/keireer/front.svg",
  14372. extra: 716 / 666,
  14373. bottom: 0.05
  14374. }
  14375. },
  14376. },
  14377. [
  14378. {
  14379. name: "Normal",
  14380. height: math.unit(5 + 4 / 12, "feet"),
  14381. default: true
  14382. },
  14383. ]
  14384. ))
  14385. characterMakers.push(() => makeCharacter(
  14386. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14387. {
  14388. front: {
  14389. height: math.unit(6, "feet"),
  14390. weight: math.unit(90, "kg"),
  14391. name: "Front",
  14392. image: {
  14393. source: "./media/characters/mirja/front.svg",
  14394. extra: 1789 / 1683,
  14395. bottom: 0.05
  14396. }
  14397. },
  14398. frontDressed: {
  14399. height: math.unit(6, "feet"),
  14400. weight: math.unit(90, "lb"),
  14401. name: "Front (Dressed)",
  14402. image: {
  14403. source: "./media/characters/mirja/front-dressed.svg",
  14404. extra: 1789 / 1683,
  14405. bottom: 0.05
  14406. }
  14407. },
  14408. back: {
  14409. height: math.unit(6, "feet"),
  14410. weight: math.unit(90, "lb"),
  14411. name: "Back",
  14412. image: {
  14413. source: "./media/characters/mirja/back.svg",
  14414. extra: 953 / 917,
  14415. bottom: 0.017
  14416. }
  14417. },
  14418. },
  14419. [
  14420. {
  14421. name: "\"Incognito\"",
  14422. height: math.unit(3, "meters")
  14423. },
  14424. {
  14425. name: "Strolling Size",
  14426. height: math.unit(15, "km")
  14427. },
  14428. {
  14429. name: "Larger Strolling Size",
  14430. height: math.unit(400, "km")
  14431. },
  14432. {
  14433. name: "Preferred Size",
  14434. height: math.unit(5000, "km")
  14435. },
  14436. {
  14437. name: "True Size",
  14438. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14439. default: true
  14440. },
  14441. ]
  14442. ))
  14443. characterMakers.push(() => makeCharacter(
  14444. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14445. {
  14446. front: {
  14447. height: math.unit(15, "feet"),
  14448. weight: math.unit(880, "kg"),
  14449. name: "Front",
  14450. image: {
  14451. source: "./media/characters/nightraver/front.svg",
  14452. extra: 2444 / 2160,
  14453. bottom: 0.027
  14454. }
  14455. },
  14456. back: {
  14457. height: math.unit(15, "feet"),
  14458. weight: math.unit(880, "kg"),
  14459. name: "Back",
  14460. image: {
  14461. source: "./media/characters/nightraver/back.svg",
  14462. extra: 2309 / 2180,
  14463. bottom: 0.005
  14464. }
  14465. },
  14466. sole: {
  14467. height: math.unit(2.878, "feet"),
  14468. name: "Sole",
  14469. image: {
  14470. source: "./media/characters/nightraver/sole.svg"
  14471. }
  14472. },
  14473. foot: {
  14474. height: math.unit(2.285, "feet"),
  14475. name: "Foot",
  14476. image: {
  14477. source: "./media/characters/nightraver/foot.svg"
  14478. }
  14479. },
  14480. maw: {
  14481. height: math.unit(2.67, "feet"),
  14482. name: "Maw",
  14483. image: {
  14484. source: "./media/characters/nightraver/maw.svg"
  14485. }
  14486. },
  14487. },
  14488. [
  14489. {
  14490. name: "Micro",
  14491. height: math.unit(1, "cm")
  14492. },
  14493. {
  14494. name: "Normal",
  14495. height: math.unit(15, "feet"),
  14496. default: true
  14497. },
  14498. {
  14499. name: "Macro",
  14500. height: math.unit(300, "feet")
  14501. },
  14502. {
  14503. name: "Megamacro",
  14504. height: math.unit(300, "miles")
  14505. },
  14506. {
  14507. name: "Gigamacro",
  14508. height: math.unit(10000, "miles")
  14509. },
  14510. ]
  14511. ))
  14512. characterMakers.push(() => makeCharacter(
  14513. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14514. {
  14515. side: {
  14516. height: math.unit(2, "inches"),
  14517. weight: math.unit(5, "grams"),
  14518. name: "Side",
  14519. image: {
  14520. source: "./media/characters/arc/side.svg"
  14521. }
  14522. },
  14523. },
  14524. [
  14525. {
  14526. name: "Micro",
  14527. height: math.unit(2, "inches"),
  14528. default: true
  14529. },
  14530. ]
  14531. ))
  14532. characterMakers.push(() => makeCharacter(
  14533. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14534. {
  14535. front: {
  14536. height: math.unit(1.1938, "meters"),
  14537. weight: math.unit(54, "kg"),
  14538. name: "Front",
  14539. image: {
  14540. source: "./media/characters/nebula-shahar/front.svg",
  14541. extra: 1642 / 1436,
  14542. bottom: 0.06
  14543. }
  14544. },
  14545. },
  14546. [
  14547. {
  14548. name: "Megamicro",
  14549. height: math.unit(0.3, "mm")
  14550. },
  14551. {
  14552. name: "Micro",
  14553. height: math.unit(3, "cm")
  14554. },
  14555. {
  14556. name: "Normal",
  14557. height: math.unit(138, "cm"),
  14558. default: true
  14559. },
  14560. {
  14561. name: "Macro",
  14562. height: math.unit(30, "m")
  14563. },
  14564. ]
  14565. ))
  14566. characterMakers.push(() => makeCharacter(
  14567. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14568. {
  14569. front: {
  14570. height: math.unit(5.24, "feet"),
  14571. weight: math.unit(150, "lb"),
  14572. name: "Front",
  14573. image: {
  14574. source: "./media/characters/shayla/front.svg",
  14575. extra: 1512 / 1414,
  14576. bottom: 0.01
  14577. }
  14578. },
  14579. back: {
  14580. height: math.unit(5.24, "feet"),
  14581. weight: math.unit(150, "lb"),
  14582. name: "Back",
  14583. image: {
  14584. source: "./media/characters/shayla/back.svg",
  14585. extra: 1512 / 1414
  14586. }
  14587. },
  14588. hand: {
  14589. height: math.unit(0.7781496062992126, "feet"),
  14590. name: "Hand",
  14591. image: {
  14592. source: "./media/characters/shayla/hand.svg"
  14593. }
  14594. },
  14595. foot: {
  14596. height: math.unit(1.4206036745406823, "feet"),
  14597. name: "Foot",
  14598. image: {
  14599. source: "./media/characters/shayla/foot.svg"
  14600. }
  14601. },
  14602. },
  14603. [
  14604. {
  14605. name: "Micro",
  14606. height: math.unit(0.32, "feet")
  14607. },
  14608. {
  14609. name: "Normal",
  14610. height: math.unit(5.24, "feet"),
  14611. default: true
  14612. },
  14613. {
  14614. name: "Macro",
  14615. height: math.unit(492.12, "feet")
  14616. },
  14617. {
  14618. name: "Megamacro",
  14619. height: math.unit(186.41, "miles")
  14620. },
  14621. ]
  14622. ))
  14623. characterMakers.push(() => makeCharacter(
  14624. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14625. {
  14626. front: {
  14627. height: math.unit(2.2, "m"),
  14628. weight: math.unit(120, "kg"),
  14629. name: "Front",
  14630. image: {
  14631. source: "./media/characters/pia-jr/front.svg",
  14632. extra: 1000 / 970,
  14633. bottom: 0.035
  14634. }
  14635. },
  14636. hand: {
  14637. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14638. name: "Hand",
  14639. image: {
  14640. source: "./media/characters/pia-jr/hand.svg"
  14641. }
  14642. },
  14643. paw: {
  14644. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14645. name: "Paw",
  14646. image: {
  14647. source: "./media/characters/pia-jr/paw.svg"
  14648. }
  14649. },
  14650. },
  14651. [
  14652. {
  14653. name: "Micro",
  14654. height: math.unit(1.2, "cm")
  14655. },
  14656. {
  14657. name: "Normal",
  14658. height: math.unit(2.2, "m"),
  14659. default: true
  14660. },
  14661. {
  14662. name: "Macro",
  14663. height: math.unit(180, "m")
  14664. },
  14665. {
  14666. name: "Megamacro",
  14667. height: math.unit(420, "km")
  14668. },
  14669. ]
  14670. ))
  14671. characterMakers.push(() => makeCharacter(
  14672. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14673. {
  14674. front: {
  14675. height: math.unit(2, "m"),
  14676. weight: math.unit(115, "kg"),
  14677. name: "Front",
  14678. image: {
  14679. source: "./media/characters/pia-sr/front.svg",
  14680. extra: 760 / 730,
  14681. bottom: 0.015
  14682. }
  14683. },
  14684. back: {
  14685. height: math.unit(2, "m"),
  14686. weight: math.unit(115, "kg"),
  14687. name: "Back",
  14688. image: {
  14689. source: "./media/characters/pia-sr/back.svg",
  14690. extra: 760 / 730,
  14691. bottom: 0.01
  14692. }
  14693. },
  14694. hand: {
  14695. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14696. name: "Hand",
  14697. image: {
  14698. source: "./media/characters/pia-sr/hand.svg"
  14699. }
  14700. },
  14701. foot: {
  14702. height: math.unit(1.83, "feet"),
  14703. name: "Foot",
  14704. image: {
  14705. source: "./media/characters/pia-sr/foot.svg"
  14706. }
  14707. },
  14708. },
  14709. [
  14710. {
  14711. name: "Micro",
  14712. height: math.unit(88, "mm")
  14713. },
  14714. {
  14715. name: "Normal",
  14716. height: math.unit(2, "m"),
  14717. default: true
  14718. },
  14719. {
  14720. name: "Macro",
  14721. height: math.unit(200, "m")
  14722. },
  14723. {
  14724. name: "Megamacro",
  14725. height: math.unit(420, "km")
  14726. },
  14727. ]
  14728. ))
  14729. characterMakers.push(() => makeCharacter(
  14730. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14731. {
  14732. front: {
  14733. height: math.unit(8 + 2 / 12, "feet"),
  14734. weight: math.unit(300, "lb"),
  14735. name: "Front",
  14736. image: {
  14737. source: "./media/characters/kibibyte/front.svg",
  14738. extra: 2221 / 2098,
  14739. bottom: 0.04
  14740. }
  14741. },
  14742. },
  14743. [
  14744. {
  14745. name: "Normal",
  14746. height: math.unit(8 + 2 / 12, "feet"),
  14747. default: true
  14748. },
  14749. {
  14750. name: "Socialable Macro",
  14751. height: math.unit(50, "feet")
  14752. },
  14753. {
  14754. name: "Macro",
  14755. height: math.unit(300, "feet")
  14756. },
  14757. {
  14758. name: "Megamacro",
  14759. height: math.unit(500, "miles")
  14760. },
  14761. ]
  14762. ))
  14763. characterMakers.push(() => makeCharacter(
  14764. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14765. {
  14766. front: {
  14767. height: math.unit(6, "feet"),
  14768. weight: math.unit(150, "lb"),
  14769. name: "Front",
  14770. image: {
  14771. source: "./media/characters/felix/front.svg",
  14772. extra: 762 / 722,
  14773. bottom: 0.02
  14774. }
  14775. },
  14776. frontClothed: {
  14777. height: math.unit(6, "feet"),
  14778. weight: math.unit(150, "lb"),
  14779. name: "Front (Clothed)",
  14780. image: {
  14781. source: "./media/characters/felix/front-clothed.svg",
  14782. extra: 762 / 722,
  14783. bottom: 0.02
  14784. }
  14785. },
  14786. },
  14787. [
  14788. {
  14789. name: "Normal",
  14790. height: math.unit(6 + 8 / 12, "feet"),
  14791. default: true
  14792. },
  14793. {
  14794. name: "Macro",
  14795. height: math.unit(2600, "feet")
  14796. },
  14797. {
  14798. name: "Megamacro",
  14799. height: math.unit(450, "miles")
  14800. },
  14801. ]
  14802. ))
  14803. characterMakers.push(() => makeCharacter(
  14804. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14805. {
  14806. front: {
  14807. height: math.unit(6 + 1 / 12, "feet"),
  14808. weight: math.unit(250, "lb"),
  14809. name: "Front",
  14810. image: {
  14811. source: "./media/characters/tobo/front.svg",
  14812. extra: 608 / 586,
  14813. bottom: 0.023
  14814. }
  14815. },
  14816. back: {
  14817. height: math.unit(6 + 1 / 12, "feet"),
  14818. weight: math.unit(250, "lb"),
  14819. name: "Back",
  14820. image: {
  14821. source: "./media/characters/tobo/back.svg",
  14822. extra: 608 / 586
  14823. }
  14824. },
  14825. },
  14826. [
  14827. {
  14828. name: "Nano",
  14829. height: math.unit(2, "nm")
  14830. },
  14831. {
  14832. name: "Megamicro",
  14833. height: math.unit(0.1, "mm")
  14834. },
  14835. {
  14836. name: "Micro",
  14837. height: math.unit(1, "inch"),
  14838. default: true
  14839. },
  14840. {
  14841. name: "Human-sized",
  14842. height: math.unit(6 + 1 / 12, "feet")
  14843. },
  14844. {
  14845. name: "Macro",
  14846. height: math.unit(250, "feet")
  14847. },
  14848. {
  14849. name: "Megamacro",
  14850. height: math.unit(75, "miles")
  14851. },
  14852. {
  14853. name: "Texas-sized",
  14854. height: math.unit(750, "miles")
  14855. },
  14856. {
  14857. name: "Teramacro",
  14858. height: math.unit(50000, "miles")
  14859. },
  14860. ]
  14861. ))
  14862. characterMakers.push(() => makeCharacter(
  14863. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14864. {
  14865. front: {
  14866. height: math.unit(6, "feet"),
  14867. weight: math.unit(269, "lb"),
  14868. name: "Front",
  14869. image: {
  14870. source: "./media/characters/danny-kapowsky/front.svg",
  14871. extra: 766 / 736,
  14872. bottom: 0.044
  14873. }
  14874. },
  14875. back: {
  14876. height: math.unit(6, "feet"),
  14877. weight: math.unit(269, "lb"),
  14878. name: "Back",
  14879. image: {
  14880. source: "./media/characters/danny-kapowsky/back.svg",
  14881. extra: 797 / 760,
  14882. bottom: 0.025
  14883. }
  14884. },
  14885. },
  14886. [
  14887. {
  14888. name: "Macro",
  14889. height: math.unit(150, "feet"),
  14890. default: true
  14891. },
  14892. {
  14893. name: "Macro+",
  14894. height: math.unit(200, "feet")
  14895. },
  14896. {
  14897. name: "Macro++",
  14898. height: math.unit(300, "feet")
  14899. },
  14900. {
  14901. name: "Macro+++",
  14902. height: math.unit(400, "feet")
  14903. },
  14904. ]
  14905. ))
  14906. characterMakers.push(() => makeCharacter(
  14907. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14908. {
  14909. side: {
  14910. height: math.unit(6, "feet"),
  14911. weight: math.unit(170, "lb"),
  14912. name: "Side",
  14913. image: {
  14914. source: "./media/characters/finn/side.svg",
  14915. extra: 1953 / 1807,
  14916. bottom: 0.057
  14917. }
  14918. },
  14919. },
  14920. [
  14921. {
  14922. name: "Megamacro",
  14923. height: math.unit(14445, "feet"),
  14924. default: true
  14925. },
  14926. ]
  14927. ))
  14928. characterMakers.push(() => makeCharacter(
  14929. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14930. {
  14931. front: {
  14932. height: math.unit(5 + 6 / 12, "feet"),
  14933. weight: math.unit(125, "lb"),
  14934. name: "Front",
  14935. image: {
  14936. source: "./media/characters/roy/front.svg",
  14937. extra: 1,
  14938. bottom: 0.11
  14939. }
  14940. },
  14941. },
  14942. [
  14943. {
  14944. name: "Micro",
  14945. height: math.unit(3, "inches"),
  14946. default: true
  14947. },
  14948. {
  14949. name: "Normal",
  14950. height: math.unit(5 + 6 / 12, "feet")
  14951. },
  14952. {
  14953. name: "Lesser Macro",
  14954. height: math.unit(60, "feet")
  14955. },
  14956. {
  14957. name: "Greater Macro",
  14958. height: math.unit(120, "feet")
  14959. },
  14960. ]
  14961. ))
  14962. characterMakers.push(() => makeCharacter(
  14963. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14964. {
  14965. front: {
  14966. height: math.unit(6, "feet"),
  14967. weight: math.unit(100, "lb"),
  14968. name: "Front",
  14969. image: {
  14970. source: "./media/characters/aevsivs/front.svg",
  14971. extra: 1,
  14972. bottom: 0.03
  14973. }
  14974. },
  14975. back: {
  14976. height: math.unit(6, "feet"),
  14977. weight: math.unit(100, "lb"),
  14978. name: "Back",
  14979. image: {
  14980. source: "./media/characters/aevsivs/back.svg"
  14981. }
  14982. },
  14983. },
  14984. [
  14985. {
  14986. name: "Micro",
  14987. height: math.unit(2, "inches"),
  14988. default: true
  14989. },
  14990. {
  14991. name: "Normal",
  14992. height: math.unit(5, "feet")
  14993. },
  14994. ]
  14995. ))
  14996. characterMakers.push(() => makeCharacter(
  14997. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14998. {
  14999. front: {
  15000. height: math.unit(5 + 7 / 12, "feet"),
  15001. weight: math.unit(159, "lb"),
  15002. name: "Front",
  15003. image: {
  15004. source: "./media/characters/hildegard/front.svg",
  15005. extra: 289 / 269,
  15006. bottom: 7.63 / 297.8
  15007. }
  15008. },
  15009. back: {
  15010. height: math.unit(5 + 7 / 12, "feet"),
  15011. weight: math.unit(159, "lb"),
  15012. name: "Back",
  15013. image: {
  15014. source: "./media/characters/hildegard/back.svg",
  15015. extra: 280 / 260,
  15016. bottom: 2.3 / 282
  15017. }
  15018. },
  15019. },
  15020. [
  15021. {
  15022. name: "Normal",
  15023. height: math.unit(5 + 7 / 12, "feet"),
  15024. default: true
  15025. },
  15026. ]
  15027. ))
  15028. characterMakers.push(() => makeCharacter(
  15029. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15030. {
  15031. bernard: {
  15032. height: math.unit(2 + 7 / 12, "feet"),
  15033. weight: math.unit(66, "lb"),
  15034. name: "Bernard",
  15035. rename: true,
  15036. image: {
  15037. source: "./media/characters/bernard-wilder/bernard.svg",
  15038. extra: 192 / 128,
  15039. bottom: 0.05
  15040. }
  15041. },
  15042. wilder: {
  15043. height: math.unit(5 + 8 / 12, "feet"),
  15044. weight: math.unit(143, "lb"),
  15045. name: "Wilder",
  15046. rename: true,
  15047. image: {
  15048. source: "./media/characters/bernard-wilder/wilder.svg",
  15049. extra: 361 / 312,
  15050. bottom: 0.02
  15051. }
  15052. },
  15053. },
  15054. [
  15055. {
  15056. name: "Normal",
  15057. height: math.unit(2 + 7 / 12, "feet"),
  15058. default: true
  15059. },
  15060. ]
  15061. ))
  15062. characterMakers.push(() => makeCharacter(
  15063. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15064. {
  15065. anthro: {
  15066. height: math.unit(6 + 1 / 12, "feet"),
  15067. weight: math.unit(155, "lb"),
  15068. name: "Anthro",
  15069. image: {
  15070. source: "./media/characters/hearth/anthro.svg",
  15071. extra: 260 / 250,
  15072. bottom: 0.02
  15073. }
  15074. },
  15075. feral: {
  15076. height: math.unit(3.78, "feet"),
  15077. weight: math.unit(35, "kg"),
  15078. name: "Feral",
  15079. image: {
  15080. source: "./media/characters/hearth/feral.svg",
  15081. extra: 153 / 135,
  15082. bottom: 0.03
  15083. }
  15084. },
  15085. },
  15086. [
  15087. {
  15088. name: "Normal",
  15089. height: math.unit(6 + 1 / 12, "feet"),
  15090. default: true
  15091. },
  15092. ]
  15093. ))
  15094. characterMakers.push(() => makeCharacter(
  15095. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15096. {
  15097. front: {
  15098. height: math.unit(6, "feet"),
  15099. weight: math.unit(182, "lb"),
  15100. name: "Front",
  15101. image: {
  15102. source: "./media/characters/ingrid/front.svg",
  15103. extra: 294 / 268,
  15104. bottom: 0.027
  15105. }
  15106. },
  15107. },
  15108. [
  15109. {
  15110. name: "Normal",
  15111. height: math.unit(6, "feet"),
  15112. default: true
  15113. },
  15114. ]
  15115. ))
  15116. characterMakers.push(() => makeCharacter(
  15117. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15118. {
  15119. eevee: {
  15120. height: math.unit(2 + 10 / 12, "feet"),
  15121. weight: math.unit(86, "lb"),
  15122. name: "Malgam",
  15123. image: {
  15124. source: "./media/characters/malgam/eevee.svg",
  15125. extra: 218 / 180,
  15126. bottom: 0.2
  15127. }
  15128. },
  15129. sylveon: {
  15130. height: math.unit(4, "feet"),
  15131. weight: math.unit(101, "lb"),
  15132. name: "Future Malgam",
  15133. rename: true,
  15134. image: {
  15135. source: "./media/characters/malgam/sylveon.svg",
  15136. extra: 371 / 325,
  15137. bottom: 0.015
  15138. }
  15139. },
  15140. gigantamax: {
  15141. height: math.unit(50, "feet"),
  15142. name: "Gigantamax Malgam",
  15143. rename: true,
  15144. image: {
  15145. source: "./media/characters/malgam/gigantamax.svg"
  15146. }
  15147. },
  15148. },
  15149. [
  15150. {
  15151. name: "Normal",
  15152. height: math.unit(2 + 10 / 12, "feet"),
  15153. default: true
  15154. },
  15155. ]
  15156. ))
  15157. characterMakers.push(() => makeCharacter(
  15158. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15159. {
  15160. front: {
  15161. height: math.unit(5 + 11 / 12, "feet"),
  15162. weight: math.unit(188, "lb"),
  15163. name: "Front",
  15164. image: {
  15165. source: "./media/characters/fleur/front.svg",
  15166. extra: 309 / 283,
  15167. bottom: 0.007
  15168. }
  15169. },
  15170. },
  15171. [
  15172. {
  15173. name: "Normal",
  15174. height: math.unit(5 + 11 / 12, "feet"),
  15175. default: true
  15176. },
  15177. ]
  15178. ))
  15179. characterMakers.push(() => makeCharacter(
  15180. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15181. {
  15182. front: {
  15183. height: math.unit(5 + 4 / 12, "feet"),
  15184. weight: math.unit(122, "lb"),
  15185. name: "Front",
  15186. image: {
  15187. source: "./media/characters/jude/front.svg",
  15188. extra: 288 / 273,
  15189. bottom: 0.03
  15190. }
  15191. },
  15192. },
  15193. [
  15194. {
  15195. name: "Normal",
  15196. height: math.unit(5 + 4 / 12, "feet"),
  15197. default: true
  15198. },
  15199. ]
  15200. ))
  15201. characterMakers.push(() => makeCharacter(
  15202. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15203. {
  15204. front: {
  15205. height: math.unit(5 + 11 / 12, "feet"),
  15206. weight: math.unit(190, "lb"),
  15207. name: "Front",
  15208. image: {
  15209. source: "./media/characters/seara/front.svg",
  15210. extra: 1,
  15211. bottom: 0.05
  15212. }
  15213. },
  15214. },
  15215. [
  15216. {
  15217. name: "Normal",
  15218. height: math.unit(5 + 11 / 12, "feet"),
  15219. default: true
  15220. },
  15221. ]
  15222. ))
  15223. characterMakers.push(() => makeCharacter(
  15224. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15225. {
  15226. front: {
  15227. height: math.unit(16 + 5 / 12, "feet"),
  15228. weight: math.unit(524, "lb"),
  15229. name: "Front",
  15230. image: {
  15231. source: "./media/characters/caspian/front.svg",
  15232. extra: 1,
  15233. bottom: 0.04
  15234. }
  15235. },
  15236. },
  15237. [
  15238. {
  15239. name: "Normal",
  15240. height: math.unit(16 + 5 / 12, "feet"),
  15241. default: true
  15242. },
  15243. ]
  15244. ))
  15245. characterMakers.push(() => makeCharacter(
  15246. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15247. {
  15248. front: {
  15249. height: math.unit(5 + 7 / 12, "feet"),
  15250. weight: math.unit(170, "lb"),
  15251. name: "Front",
  15252. image: {
  15253. source: "./media/characters/mika/front.svg",
  15254. extra: 1,
  15255. bottom: 0.016
  15256. }
  15257. },
  15258. },
  15259. [
  15260. {
  15261. name: "Normal",
  15262. height: math.unit(5 + 7 / 12, "feet"),
  15263. default: true
  15264. },
  15265. ]
  15266. ))
  15267. characterMakers.push(() => makeCharacter(
  15268. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15269. {
  15270. front: {
  15271. height: math.unit(6 + 2 / 12, "feet"),
  15272. weight: math.unit(268, "lb"),
  15273. name: "Front",
  15274. image: {
  15275. source: "./media/characters/sol/front.svg",
  15276. extra: 247 / 231,
  15277. bottom: 0.05
  15278. }
  15279. },
  15280. },
  15281. [
  15282. {
  15283. name: "Normal",
  15284. height: math.unit(6 + 2 / 12, "feet"),
  15285. default: true
  15286. },
  15287. ]
  15288. ))
  15289. characterMakers.push(() => makeCharacter(
  15290. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15291. {
  15292. buizel: {
  15293. height: math.unit(2 + 5 / 12, "feet"),
  15294. weight: math.unit(87, "lb"),
  15295. name: "Buizel",
  15296. image: {
  15297. source: "./media/characters/umiko/buizel.svg",
  15298. extra: 172 / 157,
  15299. bottom: 0.01
  15300. }
  15301. },
  15302. floatzel: {
  15303. height: math.unit(5 + 9 / 12, "feet"),
  15304. weight: math.unit(250, "lb"),
  15305. name: "Floatzel",
  15306. image: {
  15307. source: "./media/characters/umiko/floatzel.svg",
  15308. extra: 262 / 248
  15309. }
  15310. },
  15311. },
  15312. [
  15313. {
  15314. name: "Normal",
  15315. height: math.unit(2 + 5 / 12, "feet"),
  15316. default: true
  15317. },
  15318. ]
  15319. ))
  15320. characterMakers.push(() => makeCharacter(
  15321. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15322. {
  15323. front: {
  15324. height: math.unit(6 + 2 / 12, "feet"),
  15325. weight: math.unit(146, "lb"),
  15326. name: "Front",
  15327. image: {
  15328. source: "./media/characters/iliac/front.svg",
  15329. extra: 389 / 365,
  15330. bottom: 0.035
  15331. }
  15332. },
  15333. },
  15334. [
  15335. {
  15336. name: "Normal",
  15337. height: math.unit(6 + 2 / 12, "feet"),
  15338. default: true
  15339. },
  15340. ]
  15341. ))
  15342. characterMakers.push(() => makeCharacter(
  15343. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15344. {
  15345. front: {
  15346. height: math.unit(6, "feet"),
  15347. weight: math.unit(170, "lb"),
  15348. name: "Front",
  15349. image: {
  15350. source: "./media/characters/topaz/front.svg",
  15351. extra: 317 / 303,
  15352. bottom: 0.055
  15353. }
  15354. },
  15355. },
  15356. [
  15357. {
  15358. name: "Normal",
  15359. height: math.unit(6, "feet"),
  15360. default: true
  15361. },
  15362. ]
  15363. ))
  15364. characterMakers.push(() => makeCharacter(
  15365. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15366. {
  15367. front: {
  15368. height: math.unit(5 + 11 / 12, "feet"),
  15369. weight: math.unit(144, "lb"),
  15370. name: "Front",
  15371. image: {
  15372. source: "./media/characters/gabriel/front.svg",
  15373. extra: 285 / 262,
  15374. bottom: 0.004
  15375. }
  15376. },
  15377. },
  15378. [
  15379. {
  15380. name: "Normal",
  15381. height: math.unit(5 + 11 / 12, "feet"),
  15382. default: true
  15383. },
  15384. ]
  15385. ))
  15386. characterMakers.push(() => makeCharacter(
  15387. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15388. {
  15389. side: {
  15390. height: math.unit(6 + 5 / 12, "feet"),
  15391. weight: math.unit(300, "lb"),
  15392. name: "Side",
  15393. image: {
  15394. source: "./media/characters/tempest-suicune/side.svg",
  15395. extra: 195 / 154,
  15396. bottom: 0.04
  15397. }
  15398. },
  15399. },
  15400. [
  15401. {
  15402. name: "Normal",
  15403. height: math.unit(6 + 5 / 12, "feet"),
  15404. default: true
  15405. },
  15406. ]
  15407. ))
  15408. characterMakers.push(() => makeCharacter(
  15409. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15410. {
  15411. front: {
  15412. height: math.unit(7 + 2 / 12, "feet"),
  15413. weight: math.unit(322, "lb"),
  15414. name: "Front",
  15415. image: {
  15416. source: "./media/characters/vulcan/front.svg",
  15417. extra: 154 / 147,
  15418. bottom: 0.04
  15419. }
  15420. },
  15421. },
  15422. [
  15423. {
  15424. name: "Normal",
  15425. height: math.unit(7 + 2 / 12, "feet"),
  15426. default: true
  15427. },
  15428. ]
  15429. ))
  15430. characterMakers.push(() => makeCharacter(
  15431. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15432. {
  15433. front: {
  15434. height: math.unit(5 + 10 / 12, "feet"),
  15435. weight: math.unit(264, "lb"),
  15436. name: "Front",
  15437. image: {
  15438. source: "./media/characters/gault/front.svg",
  15439. extra: 161 / 140,
  15440. bottom: 0.028
  15441. }
  15442. },
  15443. },
  15444. [
  15445. {
  15446. name: "Normal",
  15447. height: math.unit(5 + 10 / 12, "feet"),
  15448. default: true
  15449. },
  15450. ]
  15451. ))
  15452. characterMakers.push(() => makeCharacter(
  15453. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15454. {
  15455. front: {
  15456. height: math.unit(6, "feet"),
  15457. weight: math.unit(150, "lb"),
  15458. name: "Front",
  15459. image: {
  15460. source: "./media/characters/shard/front.svg",
  15461. extra: 273 / 238,
  15462. bottom: 0.02
  15463. }
  15464. },
  15465. },
  15466. [
  15467. {
  15468. name: "Normal",
  15469. height: math.unit(3 + 6 / 12, "feet"),
  15470. default: true
  15471. },
  15472. ]
  15473. ))
  15474. characterMakers.push(() => makeCharacter(
  15475. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15476. {
  15477. front: {
  15478. height: math.unit(5 + 11 / 12, "feet"),
  15479. weight: math.unit(146, "lb"),
  15480. name: "Front",
  15481. image: {
  15482. source: "./media/characters/ashe/front.svg",
  15483. extra: 400 / 373,
  15484. bottom: 0.01
  15485. }
  15486. },
  15487. },
  15488. [
  15489. {
  15490. name: "Normal",
  15491. height: math.unit(5 + 11 / 12, "feet"),
  15492. default: true
  15493. },
  15494. ]
  15495. ))
  15496. characterMakers.push(() => makeCharacter(
  15497. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15498. {
  15499. front: {
  15500. height: math.unit(5 + 5 / 12, "feet"),
  15501. weight: math.unit(135, "lb"),
  15502. name: "Front",
  15503. image: {
  15504. source: "./media/characters/beatrix/front.svg",
  15505. extra: 392 / 379,
  15506. bottom: 0.01
  15507. }
  15508. },
  15509. },
  15510. [
  15511. {
  15512. name: "Normal",
  15513. height: math.unit(6, "feet"),
  15514. default: true
  15515. },
  15516. ]
  15517. ))
  15518. characterMakers.push(() => makeCharacter(
  15519. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15520. {
  15521. front: {
  15522. height: math.unit(6, "feet"),
  15523. weight: math.unit(150, "lb"),
  15524. name: "Front",
  15525. image: {
  15526. source: "./media/characters/ignatius/front.svg",
  15527. extra: 245 / 222,
  15528. bottom: 0.01
  15529. }
  15530. },
  15531. },
  15532. [
  15533. {
  15534. name: "Normal",
  15535. height: math.unit(5 + 5 / 12, "feet"),
  15536. default: true
  15537. },
  15538. ]
  15539. ))
  15540. characterMakers.push(() => makeCharacter(
  15541. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15542. {
  15543. front: {
  15544. height: math.unit(6 + 2 / 12, "feet"),
  15545. weight: math.unit(138, "lb"),
  15546. name: "Front",
  15547. image: {
  15548. source: "./media/characters/mei-li/front.svg",
  15549. extra: 237 / 229,
  15550. bottom: 0.03
  15551. }
  15552. },
  15553. },
  15554. [
  15555. {
  15556. name: "Normal",
  15557. height: math.unit(6 + 2 / 12, "feet"),
  15558. default: true
  15559. },
  15560. ]
  15561. ))
  15562. characterMakers.push(() => makeCharacter(
  15563. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15564. {
  15565. front: {
  15566. height: math.unit(2 + 4 / 12, "feet"),
  15567. weight: math.unit(62, "lb"),
  15568. name: "Front",
  15569. image: {
  15570. source: "./media/characters/puru/front.svg",
  15571. extra: 206 / 149,
  15572. bottom: 0.06
  15573. }
  15574. },
  15575. },
  15576. [
  15577. {
  15578. name: "Normal",
  15579. height: math.unit(2 + 4 / 12, "feet"),
  15580. default: true
  15581. },
  15582. ]
  15583. ))
  15584. characterMakers.push(() => makeCharacter(
  15585. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15586. {
  15587. anthro: {
  15588. height: math.unit(5 + 8/12, "feet"),
  15589. weight: math.unit(200, "lb"),
  15590. energyNeed: math.unit(2000, "kcal"),
  15591. name: "Anthro",
  15592. image: {
  15593. source: "./media/characters/kee/anthro.svg",
  15594. extra: 3251/3184,
  15595. bottom: 250/3501
  15596. }
  15597. },
  15598. taur: {
  15599. height: math.unit(11, "feet"),
  15600. weight: math.unit(500, "lb"),
  15601. energyNeed: math.unit(5000, "kcal"),
  15602. name: "Taur",
  15603. image: {
  15604. source: "./media/characters/kee/taur.svg",
  15605. extra: 1362/1320,
  15606. bottom: 83/1445
  15607. }
  15608. },
  15609. },
  15610. [
  15611. {
  15612. name: "Normal",
  15613. height: math.unit(5 + 8/12, "feet"),
  15614. default: true
  15615. },
  15616. {
  15617. name: "Macro",
  15618. height: math.unit(35, "feet")
  15619. },
  15620. ]
  15621. ))
  15622. characterMakers.push(() => makeCharacter(
  15623. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15624. {
  15625. anthro: {
  15626. height: math.unit(7, "feet"),
  15627. weight: math.unit(190, "lb"),
  15628. name: "Anthro",
  15629. image: {
  15630. source: "./media/characters/cobalt-dracha/anthro.svg",
  15631. extra: 231 / 225,
  15632. bottom: 0.04
  15633. }
  15634. },
  15635. feral: {
  15636. height: math.unit(9 + 7 / 12, "feet"),
  15637. weight: math.unit(294, "lb"),
  15638. name: "Feral",
  15639. image: {
  15640. source: "./media/characters/cobalt-dracha/feral.svg",
  15641. extra: 692 / 633,
  15642. bottom: 0.05
  15643. }
  15644. },
  15645. },
  15646. [
  15647. {
  15648. name: "Normal",
  15649. height: math.unit(7, "feet"),
  15650. default: true
  15651. },
  15652. ]
  15653. ))
  15654. characterMakers.push(() => makeCharacter(
  15655. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15656. {
  15657. fallen: {
  15658. height: math.unit(11 + 8 / 12, "feet"),
  15659. weight: math.unit(485, "lb"),
  15660. name: "Java (Fallen)",
  15661. rename: true,
  15662. image: {
  15663. source: "./media/characters/java/fallen.svg",
  15664. extra: 226 / 208,
  15665. bottom: 0.005
  15666. }
  15667. },
  15668. godkin: {
  15669. height: math.unit(10 + 6 / 12, "feet"),
  15670. weight: math.unit(328, "lb"),
  15671. name: "Java (Godkin)",
  15672. rename: true,
  15673. image: {
  15674. source: "./media/characters/java/godkin.svg",
  15675. extra: 270 / 262,
  15676. bottom: 0.02
  15677. }
  15678. },
  15679. },
  15680. [
  15681. {
  15682. name: "Normal",
  15683. height: math.unit(11 + 8 / 12, "feet"),
  15684. default: true
  15685. },
  15686. ]
  15687. ))
  15688. characterMakers.push(() => makeCharacter(
  15689. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15690. {
  15691. front: {
  15692. height: math.unit(7 + 8 / 12, "feet"),
  15693. weight: math.unit(320, "lb"),
  15694. name: "Front",
  15695. image: {
  15696. source: "./media/characters/skoll/front.svg",
  15697. extra: 232 / 220,
  15698. bottom: 0.02
  15699. }
  15700. },
  15701. },
  15702. [
  15703. {
  15704. name: "Normal",
  15705. height: math.unit(7 + 8 / 12, "feet"),
  15706. default: true
  15707. },
  15708. ]
  15709. ))
  15710. characterMakers.push(() => makeCharacter(
  15711. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15712. {
  15713. front: {
  15714. height: math.unit(5 + 9 / 12, "feet"),
  15715. weight: math.unit(170, "lb"),
  15716. name: "Front",
  15717. image: {
  15718. source: "./media/characters/purna/front.svg",
  15719. extra: 239 / 229,
  15720. bottom: 0.01
  15721. }
  15722. },
  15723. },
  15724. [
  15725. {
  15726. name: "Normal",
  15727. height: math.unit(5 + 9 / 12, "feet"),
  15728. default: true
  15729. },
  15730. ]
  15731. ))
  15732. characterMakers.push(() => makeCharacter(
  15733. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15734. {
  15735. front: {
  15736. height: math.unit(5 + 9 / 12, "feet"),
  15737. weight: math.unit(142, "lb"),
  15738. name: "Front",
  15739. image: {
  15740. source: "./media/characters/kuva/front.svg",
  15741. extra: 281 / 271,
  15742. bottom: 0.006
  15743. }
  15744. },
  15745. },
  15746. [
  15747. {
  15748. name: "Normal",
  15749. height: math.unit(5 + 9 / 12, "feet"),
  15750. default: true
  15751. },
  15752. ]
  15753. ))
  15754. characterMakers.push(() => makeCharacter(
  15755. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15756. {
  15757. anthro: {
  15758. height: math.unit(9 + 2 / 12, "feet"),
  15759. weight: math.unit(270, "lb"),
  15760. name: "Anthro",
  15761. image: {
  15762. source: "./media/characters/embra/anthro.svg",
  15763. extra: 200 / 187,
  15764. bottom: 0.02
  15765. }
  15766. },
  15767. feral: {
  15768. height: math.unit(18 + 8 / 12, "feet"),
  15769. weight: math.unit(576, "lb"),
  15770. name: "Feral",
  15771. image: {
  15772. source: "./media/characters/embra/feral.svg",
  15773. extra: 152 / 137,
  15774. bottom: 0.037
  15775. }
  15776. },
  15777. },
  15778. [
  15779. {
  15780. name: "Normal",
  15781. height: math.unit(9 + 2 / 12, "feet"),
  15782. default: true
  15783. },
  15784. ]
  15785. ))
  15786. characterMakers.push(() => makeCharacter(
  15787. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15788. {
  15789. anthro: {
  15790. height: math.unit(10 + 9 / 12, "feet"),
  15791. weight: math.unit(224, "lb"),
  15792. name: "Anthro",
  15793. image: {
  15794. source: "./media/characters/grottos/anthro.svg",
  15795. extra: 350 / 332,
  15796. bottom: 0.045
  15797. }
  15798. },
  15799. feral: {
  15800. height: math.unit(20 + 7 / 12, "feet"),
  15801. weight: math.unit(629, "lb"),
  15802. name: "Feral",
  15803. image: {
  15804. source: "./media/characters/grottos/feral.svg",
  15805. extra: 207 / 190,
  15806. bottom: 0.05
  15807. }
  15808. },
  15809. },
  15810. [
  15811. {
  15812. name: "Normal",
  15813. height: math.unit(10 + 9 / 12, "feet"),
  15814. default: true
  15815. },
  15816. ]
  15817. ))
  15818. characterMakers.push(() => makeCharacter(
  15819. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15820. {
  15821. anthro: {
  15822. height: math.unit(9 + 6 / 12, "feet"),
  15823. weight: math.unit(298, "lb"),
  15824. name: "Anthro",
  15825. image: {
  15826. source: "./media/characters/frifna/anthro.svg",
  15827. extra: 282 / 269,
  15828. bottom: 0.015
  15829. }
  15830. },
  15831. feral: {
  15832. height: math.unit(16 + 2 / 12, "feet"),
  15833. weight: math.unit(624, "lb"),
  15834. name: "Feral",
  15835. image: {
  15836. source: "./media/characters/frifna/feral.svg"
  15837. }
  15838. },
  15839. },
  15840. [
  15841. {
  15842. name: "Normal",
  15843. height: math.unit(9 + 6 / 12, "feet"),
  15844. default: true
  15845. },
  15846. ]
  15847. ))
  15848. characterMakers.push(() => makeCharacter(
  15849. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15850. {
  15851. front: {
  15852. height: math.unit(6 + 2 / 12, "feet"),
  15853. weight: math.unit(168, "lb"),
  15854. name: "Front",
  15855. image: {
  15856. source: "./media/characters/elise/front.svg",
  15857. extra: 276 / 271
  15858. }
  15859. },
  15860. },
  15861. [
  15862. {
  15863. name: "Normal",
  15864. height: math.unit(6 + 2 / 12, "feet"),
  15865. default: true
  15866. },
  15867. ]
  15868. ))
  15869. characterMakers.push(() => makeCharacter(
  15870. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15871. {
  15872. front: {
  15873. height: math.unit(5 + 10 / 12, "feet"),
  15874. weight: math.unit(210, "lb"),
  15875. name: "Front",
  15876. image: {
  15877. source: "./media/characters/glade/front.svg",
  15878. extra: 258 / 247,
  15879. bottom: 0.008
  15880. }
  15881. },
  15882. },
  15883. [
  15884. {
  15885. name: "Normal",
  15886. height: math.unit(5 + 10 / 12, "feet"),
  15887. default: true
  15888. },
  15889. ]
  15890. ))
  15891. characterMakers.push(() => makeCharacter(
  15892. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15893. {
  15894. front: {
  15895. height: math.unit(5 + 10 / 12, "feet"),
  15896. weight: math.unit(129, "lb"),
  15897. name: "Front",
  15898. image: {
  15899. source: "./media/characters/rina/front.svg",
  15900. extra: 266 / 255,
  15901. bottom: 0.005
  15902. }
  15903. },
  15904. },
  15905. [
  15906. {
  15907. name: "Normal",
  15908. height: math.unit(5 + 10 / 12, "feet"),
  15909. default: true
  15910. },
  15911. ]
  15912. ))
  15913. characterMakers.push(() => makeCharacter(
  15914. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15915. {
  15916. front: {
  15917. height: math.unit(6 + 1 / 12, "feet"),
  15918. weight: math.unit(192, "lb"),
  15919. name: "Front",
  15920. image: {
  15921. source: "./media/characters/veronica/front.svg",
  15922. extra: 319 / 309,
  15923. bottom: 0.005
  15924. }
  15925. },
  15926. },
  15927. [
  15928. {
  15929. name: "Normal",
  15930. height: math.unit(6 + 1 / 12, "feet"),
  15931. default: true
  15932. },
  15933. ]
  15934. ))
  15935. characterMakers.push(() => makeCharacter(
  15936. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15937. {
  15938. front: {
  15939. height: math.unit(9 + 3 / 12, "feet"),
  15940. weight: math.unit(1100, "lb"),
  15941. name: "Front",
  15942. image: {
  15943. source: "./media/characters/braxton/front.svg",
  15944. extra: 1057 / 984,
  15945. bottom: 0.05
  15946. }
  15947. },
  15948. },
  15949. [
  15950. {
  15951. name: "Normal",
  15952. height: math.unit(9 + 3 / 12, "feet")
  15953. },
  15954. {
  15955. name: "Giant",
  15956. height: math.unit(300, "feet"),
  15957. default: true
  15958. },
  15959. {
  15960. name: "Macro",
  15961. height: math.unit(700, "feet")
  15962. },
  15963. {
  15964. name: "Megamacro",
  15965. height: math.unit(6000, "feet")
  15966. },
  15967. ]
  15968. ))
  15969. characterMakers.push(() => makeCharacter(
  15970. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15971. {
  15972. front: {
  15973. height: math.unit(6 + 7 / 12, "feet"),
  15974. weight: math.unit(150, "lb"),
  15975. name: "Front",
  15976. image: {
  15977. source: "./media/characters/blue-feyonics/front.svg",
  15978. extra: 1403 / 1306,
  15979. bottom: 0.047
  15980. }
  15981. },
  15982. },
  15983. [
  15984. {
  15985. name: "Normal",
  15986. height: math.unit(6 + 7 / 12, "feet"),
  15987. default: true
  15988. },
  15989. ]
  15990. ))
  15991. characterMakers.push(() => makeCharacter(
  15992. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15993. {
  15994. front: {
  15995. height: math.unit(1.8, "meters"),
  15996. weight: math.unit(60, "kg"),
  15997. name: "Front",
  15998. image: {
  15999. source: "./media/characters/maxwell/front.svg",
  16000. extra: 2060 / 1873
  16001. }
  16002. },
  16003. },
  16004. [
  16005. {
  16006. name: "Micro",
  16007. height: math.unit(1, "mm")
  16008. },
  16009. {
  16010. name: "Normal",
  16011. height: math.unit(1.8, "meter"),
  16012. default: true
  16013. },
  16014. {
  16015. name: "Macro",
  16016. height: math.unit(30, "meters")
  16017. },
  16018. {
  16019. name: "Megamacro",
  16020. height: math.unit(10, "km")
  16021. },
  16022. ]
  16023. ))
  16024. characterMakers.push(() => makeCharacter(
  16025. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16026. {
  16027. front: {
  16028. height: math.unit(6, "feet"),
  16029. weight: math.unit(150, "lb"),
  16030. name: "Front",
  16031. image: {
  16032. source: "./media/characters/jack/front.svg",
  16033. extra: 1754 / 1640,
  16034. bottom: 0.01
  16035. }
  16036. },
  16037. },
  16038. [
  16039. {
  16040. name: "Normal",
  16041. height: math.unit(80000, "feet"),
  16042. default: true
  16043. },
  16044. {
  16045. name: "Max size",
  16046. height: math.unit(10, "lightyears")
  16047. },
  16048. ]
  16049. ))
  16050. characterMakers.push(() => makeCharacter(
  16051. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16052. {
  16053. urban: {
  16054. height: math.unit(5, "feet"),
  16055. weight: math.unit(240, "lb"),
  16056. name: "Urban",
  16057. image: {
  16058. source: "./media/characters/cafat/urban.svg",
  16059. extra: 1223/1126,
  16060. bottom: 205/1428
  16061. }
  16062. },
  16063. summer: {
  16064. height: math.unit(5, "feet"),
  16065. weight: math.unit(240, "lb"),
  16066. name: "Summer",
  16067. image: {
  16068. source: "./media/characters/cafat/summer.svg",
  16069. extra: 1223/1126,
  16070. bottom: 205/1428
  16071. }
  16072. },
  16073. winter: {
  16074. height: math.unit(5, "feet"),
  16075. weight: math.unit(240, "lb"),
  16076. name: "Winter",
  16077. image: {
  16078. source: "./media/characters/cafat/winter.svg",
  16079. extra: 1223/1126,
  16080. bottom: 205/1428
  16081. }
  16082. },
  16083. lingerie: {
  16084. height: math.unit(5, "feet"),
  16085. weight: math.unit(240, "lb"),
  16086. name: "Lingerie",
  16087. image: {
  16088. source: "./media/characters/cafat/lingerie.svg",
  16089. extra: 1223/1126,
  16090. bottom: 205/1428
  16091. }
  16092. },
  16093. upright: {
  16094. height: math.unit(6.3, "feet"),
  16095. weight: math.unit(240, "lb"),
  16096. name: "Upright",
  16097. image: {
  16098. source: "./media/characters/cafat/upright.svg",
  16099. bottom: 0.01
  16100. }
  16101. },
  16102. uprightFull: {
  16103. height: math.unit(6.3, "feet"),
  16104. weight: math.unit(240, "lb"),
  16105. name: "Upright (Full)",
  16106. image: {
  16107. source: "./media/characters/cafat/upright-full.svg",
  16108. bottom: 0.01
  16109. }
  16110. },
  16111. },
  16112. [
  16113. {
  16114. name: "Small",
  16115. height: math.unit(5, "feet"),
  16116. default: true
  16117. },
  16118. {
  16119. name: "Large",
  16120. height: math.unit(13, "feet")
  16121. },
  16122. ]
  16123. ))
  16124. characterMakers.push(() => makeCharacter(
  16125. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16126. {
  16127. front: {
  16128. height: math.unit(6, "feet"),
  16129. weight: math.unit(150, "lb"),
  16130. name: "Front",
  16131. image: {
  16132. source: "./media/characters/verin-raharra/front.svg",
  16133. extra: 5019 / 4835,
  16134. bottom: 0.023
  16135. }
  16136. },
  16137. },
  16138. [
  16139. {
  16140. name: "Normal",
  16141. height: math.unit(7 + 5 / 12, "feet"),
  16142. default: true
  16143. },
  16144. {
  16145. name: "Upsized",
  16146. height: math.unit(20, "feet")
  16147. },
  16148. ]
  16149. ))
  16150. characterMakers.push(() => makeCharacter(
  16151. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16152. {
  16153. front: {
  16154. height: math.unit(7, "feet"),
  16155. weight: math.unit(230, "lb"),
  16156. name: "Front",
  16157. image: {
  16158. source: "./media/characters/nakata/front.svg",
  16159. extra: 1.005,
  16160. bottom: 0.01
  16161. }
  16162. },
  16163. },
  16164. [
  16165. {
  16166. name: "Normal",
  16167. height: math.unit(7, "feet"),
  16168. default: true
  16169. },
  16170. {
  16171. name: "Big",
  16172. height: math.unit(14, "feet")
  16173. },
  16174. {
  16175. name: "Macro",
  16176. height: math.unit(400, "feet")
  16177. },
  16178. ]
  16179. ))
  16180. characterMakers.push(() => makeCharacter(
  16181. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16182. {
  16183. front: {
  16184. height: math.unit(4.91, "feet"),
  16185. weight: math.unit(100, "lb"),
  16186. name: "Front",
  16187. image: {
  16188. source: "./media/characters/lily/front.svg",
  16189. extra: 1585 / 1415,
  16190. bottom: 0.02
  16191. }
  16192. },
  16193. },
  16194. [
  16195. {
  16196. name: "Normal",
  16197. height: math.unit(4.91, "feet"),
  16198. default: true
  16199. },
  16200. ]
  16201. ))
  16202. characterMakers.push(() => makeCharacter(
  16203. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16204. {
  16205. laying: {
  16206. height: math.unit(4 + 4 / 12, "feet"),
  16207. weight: math.unit(600, "lb"),
  16208. name: "Laying",
  16209. image: {
  16210. source: "./media/characters/sheila/laying.svg",
  16211. extra: 1333 / 1265,
  16212. bottom: 0.16
  16213. }
  16214. },
  16215. },
  16216. [
  16217. {
  16218. name: "Normal",
  16219. height: math.unit(4 + 4 / 12, "feet"),
  16220. default: true
  16221. },
  16222. ]
  16223. ))
  16224. characterMakers.push(() => makeCharacter(
  16225. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16226. {
  16227. front: {
  16228. height: math.unit(6, "feet"),
  16229. weight: math.unit(190, "lb"),
  16230. name: "Front",
  16231. image: {
  16232. source: "./media/characters/sax/front.svg",
  16233. extra: 1187 / 973,
  16234. bottom: 0.042
  16235. }
  16236. },
  16237. },
  16238. [
  16239. {
  16240. name: "Micro",
  16241. height: math.unit(4, "inches"),
  16242. default: true
  16243. },
  16244. ]
  16245. ))
  16246. characterMakers.push(() => makeCharacter(
  16247. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16248. {
  16249. front: {
  16250. height: math.unit(6, "feet"),
  16251. weight: math.unit(150, "lb"),
  16252. name: "Front",
  16253. image: {
  16254. source: "./media/characters/pandora/front.svg",
  16255. extra: 2720 / 2556,
  16256. bottom: 0.015
  16257. }
  16258. },
  16259. back: {
  16260. height: math.unit(6, "feet"),
  16261. weight: math.unit(150, "lb"),
  16262. name: "Back",
  16263. image: {
  16264. source: "./media/characters/pandora/back.svg",
  16265. extra: 2720 / 2556,
  16266. bottom: 0.01
  16267. }
  16268. },
  16269. beans: {
  16270. height: math.unit(6 / 8, "feet"),
  16271. name: "Beans",
  16272. image: {
  16273. source: "./media/characters/pandora/beans.svg"
  16274. }
  16275. },
  16276. collar: {
  16277. height: math.unit(0.31, "feet"),
  16278. name: "Collar",
  16279. image: {
  16280. source: "./media/characters/pandora/collar.svg"
  16281. }
  16282. },
  16283. skirt: {
  16284. height: math.unit(6, "feet"),
  16285. weight: math.unit(150, "lb"),
  16286. name: "Skirt",
  16287. image: {
  16288. source: "./media/characters/pandora/skirt.svg",
  16289. extra: 1622 / 1525,
  16290. bottom: 0.015
  16291. }
  16292. },
  16293. hoodie: {
  16294. height: math.unit(6, "feet"),
  16295. weight: math.unit(150, "lb"),
  16296. name: "Hoodie",
  16297. image: {
  16298. source: "./media/characters/pandora/hoodie.svg",
  16299. extra: 1622 / 1525,
  16300. bottom: 0.015
  16301. }
  16302. },
  16303. casual: {
  16304. height: math.unit(6, "feet"),
  16305. weight: math.unit(150, "lb"),
  16306. name: "Casual",
  16307. image: {
  16308. source: "./media/characters/pandora/casual.svg",
  16309. extra: 1622 / 1525,
  16310. bottom: 0.015
  16311. }
  16312. },
  16313. },
  16314. [
  16315. {
  16316. name: "Normal",
  16317. height: math.unit(6, "feet")
  16318. },
  16319. {
  16320. name: "Big Steppy",
  16321. height: math.unit(1, "km"),
  16322. default: true
  16323. },
  16324. {
  16325. name: "Galactic Steppy",
  16326. height: math.unit(2, "gigameters")
  16327. },
  16328. ]
  16329. ))
  16330. characterMakers.push(() => makeCharacter(
  16331. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16332. {
  16333. side: {
  16334. height: math.unit(10, "feet"),
  16335. weight: math.unit(800, "kg"),
  16336. name: "Side",
  16337. image: {
  16338. source: "./media/characters/venio-darcony/side.svg",
  16339. extra: 1373 / 1003,
  16340. bottom: 0.037
  16341. }
  16342. },
  16343. front: {
  16344. height: math.unit(19, "feet"),
  16345. weight: math.unit(800, "kg"),
  16346. name: "Front",
  16347. image: {
  16348. source: "./media/characters/venio-darcony/front.svg"
  16349. }
  16350. },
  16351. back: {
  16352. height: math.unit(19, "feet"),
  16353. weight: math.unit(800, "kg"),
  16354. name: "Back",
  16355. image: {
  16356. source: "./media/characters/venio-darcony/back.svg"
  16357. }
  16358. },
  16359. sideNsfw: {
  16360. height: math.unit(10, "feet"),
  16361. weight: math.unit(800, "kg"),
  16362. name: "Side (NSFW)",
  16363. image: {
  16364. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16365. extra: 1373 / 1003,
  16366. bottom: 0.037
  16367. }
  16368. },
  16369. frontNsfw: {
  16370. height: math.unit(19, "feet"),
  16371. weight: math.unit(800, "kg"),
  16372. name: "Front (NSFW)",
  16373. image: {
  16374. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16375. }
  16376. },
  16377. backNsfw: {
  16378. height: math.unit(19, "feet"),
  16379. weight: math.unit(800, "kg"),
  16380. name: "Back (NSFW)",
  16381. image: {
  16382. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16383. }
  16384. },
  16385. sideArmored: {
  16386. height: math.unit(10, "feet"),
  16387. weight: math.unit(800, "kg"),
  16388. name: "Side (Armored)",
  16389. image: {
  16390. source: "./media/characters/venio-darcony/side-armored.svg",
  16391. extra: 1373 / 1003,
  16392. bottom: 0.037
  16393. }
  16394. },
  16395. frontArmored: {
  16396. height: math.unit(19, "feet"),
  16397. weight: math.unit(900, "kg"),
  16398. name: "Front (Armored)",
  16399. image: {
  16400. source: "./media/characters/venio-darcony/front-armored.svg"
  16401. }
  16402. },
  16403. backArmored: {
  16404. height: math.unit(19, "feet"),
  16405. weight: math.unit(900, "kg"),
  16406. name: "Back (Armored)",
  16407. image: {
  16408. source: "./media/characters/venio-darcony/back-armored.svg"
  16409. }
  16410. },
  16411. sword: {
  16412. height: math.unit(10, "feet"),
  16413. weight: math.unit(50, "lb"),
  16414. name: "Sword",
  16415. image: {
  16416. source: "./media/characters/venio-darcony/sword.svg"
  16417. }
  16418. },
  16419. },
  16420. [
  16421. {
  16422. name: "Normal",
  16423. height: math.unit(10, "feet")
  16424. },
  16425. {
  16426. name: "Macro",
  16427. height: math.unit(130, "feet"),
  16428. default: true
  16429. },
  16430. {
  16431. name: "Macro+",
  16432. height: math.unit(240, "feet")
  16433. },
  16434. ]
  16435. ))
  16436. characterMakers.push(() => makeCharacter(
  16437. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16438. {
  16439. front: {
  16440. height: math.unit(6, "feet"),
  16441. weight: math.unit(150, "lb"),
  16442. name: "Front",
  16443. image: {
  16444. source: "./media/characters/veski/front.svg",
  16445. extra: 1299 / 1225,
  16446. bottom: 0.04
  16447. }
  16448. },
  16449. back: {
  16450. height: math.unit(6, "feet"),
  16451. weight: math.unit(150, "lb"),
  16452. name: "Back",
  16453. image: {
  16454. source: "./media/characters/veski/back.svg",
  16455. extra: 1299 / 1225,
  16456. bottom: 0.008
  16457. }
  16458. },
  16459. maw: {
  16460. height: math.unit(1.5 * 1.21, "feet"),
  16461. name: "Maw",
  16462. image: {
  16463. source: "./media/characters/veski/maw.svg"
  16464. }
  16465. },
  16466. },
  16467. [
  16468. {
  16469. name: "Macro",
  16470. height: math.unit(2, "km"),
  16471. default: true
  16472. },
  16473. ]
  16474. ))
  16475. characterMakers.push(() => makeCharacter(
  16476. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16477. {
  16478. front: {
  16479. height: math.unit(5 + 7 / 12, "feet"),
  16480. name: "Front",
  16481. image: {
  16482. source: "./media/characters/isabelle/front.svg",
  16483. extra: 2130 / 1976,
  16484. bottom: 0.05
  16485. }
  16486. },
  16487. },
  16488. [
  16489. {
  16490. name: "Supermicro",
  16491. height: math.unit(10, "micrometers")
  16492. },
  16493. {
  16494. name: "Micro",
  16495. height: math.unit(1, "inch")
  16496. },
  16497. {
  16498. name: "Tiny",
  16499. height: math.unit(5, "inches")
  16500. },
  16501. {
  16502. name: "Standard",
  16503. height: math.unit(5 + 7 / 12, "inches")
  16504. },
  16505. {
  16506. name: "Macro",
  16507. height: math.unit(80, "meters"),
  16508. default: true
  16509. },
  16510. {
  16511. name: "Megamacro",
  16512. height: math.unit(250, "meters")
  16513. },
  16514. {
  16515. name: "Gigamacro",
  16516. height: math.unit(5, "km")
  16517. },
  16518. {
  16519. name: "Cosmic",
  16520. height: math.unit(2.5e6, "miles")
  16521. },
  16522. ]
  16523. ))
  16524. characterMakers.push(() => makeCharacter(
  16525. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16526. {
  16527. front: {
  16528. height: math.unit(6, "feet"),
  16529. weight: math.unit(150, "lb"),
  16530. name: "Front",
  16531. image: {
  16532. source: "./media/characters/hanzo/front.svg",
  16533. extra: 374 / 344,
  16534. bottom: 0.02
  16535. }
  16536. },
  16537. },
  16538. [
  16539. {
  16540. name: "Normal",
  16541. height: math.unit(8, "feet"),
  16542. default: true
  16543. },
  16544. ]
  16545. ))
  16546. characterMakers.push(() => makeCharacter(
  16547. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16548. {
  16549. front: {
  16550. height: math.unit(7, "feet"),
  16551. weight: math.unit(130, "lb"),
  16552. name: "Front",
  16553. image: {
  16554. source: "./media/characters/anna/front.svg",
  16555. extra: 169 / 145,
  16556. bottom: 0.06
  16557. }
  16558. },
  16559. full: {
  16560. height: math.unit(4.96, "feet"),
  16561. weight: math.unit(220, "lb"),
  16562. name: "Full",
  16563. image: {
  16564. source: "./media/characters/anna/full.svg",
  16565. extra: 138 / 114,
  16566. bottom: 0.15
  16567. }
  16568. },
  16569. tongue: {
  16570. height: math.unit(2.53, "feet"),
  16571. name: "Tongue",
  16572. image: {
  16573. source: "./media/characters/anna/tongue.svg"
  16574. }
  16575. },
  16576. },
  16577. [
  16578. {
  16579. name: "Normal",
  16580. height: math.unit(7, "feet"),
  16581. default: true
  16582. },
  16583. ]
  16584. ))
  16585. characterMakers.push(() => makeCharacter(
  16586. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16587. {
  16588. front: {
  16589. height: math.unit(7, "feet"),
  16590. weight: math.unit(150, "lb"),
  16591. name: "Front",
  16592. image: {
  16593. source: "./media/characters/ian-corvid/front.svg",
  16594. extra: 150 / 142,
  16595. bottom: 0.02
  16596. }
  16597. },
  16598. back: {
  16599. height: math.unit(7, "feet"),
  16600. weight: math.unit(150, "lb"),
  16601. name: "Back",
  16602. image: {
  16603. source: "./media/characters/ian-corvid/back.svg",
  16604. extra: 150 / 143,
  16605. bottom: 0.01
  16606. }
  16607. },
  16608. stomping: {
  16609. height: math.unit(7, "feet"),
  16610. weight: math.unit(150, "lb"),
  16611. name: "Stomping",
  16612. image: {
  16613. source: "./media/characters/ian-corvid/stomping.svg",
  16614. extra: 76 / 72
  16615. }
  16616. },
  16617. sitting: {
  16618. height: math.unit(7 / 1.8, "feet"),
  16619. weight: math.unit(150, "lb"),
  16620. name: "Sitting",
  16621. image: {
  16622. source: "./media/characters/ian-corvid/sitting.svg",
  16623. extra: 1400 / 1269,
  16624. bottom: 0.15
  16625. }
  16626. },
  16627. },
  16628. [
  16629. {
  16630. name: "Tiny Microw",
  16631. height: math.unit(1, "inch")
  16632. },
  16633. {
  16634. name: "Microw",
  16635. height: math.unit(6, "inches")
  16636. },
  16637. {
  16638. name: "Crow",
  16639. height: math.unit(7 + 1 / 12, "feet"),
  16640. default: true
  16641. },
  16642. {
  16643. name: "Macrow",
  16644. height: math.unit(176, "feet")
  16645. },
  16646. ]
  16647. ))
  16648. characterMakers.push(() => makeCharacter(
  16649. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16650. {
  16651. front: {
  16652. height: math.unit(5 + 7 / 12, "feet"),
  16653. weight: math.unit(147, "lb"),
  16654. name: "Front",
  16655. image: {
  16656. source: "./media/characters/natalie-kellon/front.svg",
  16657. extra: 1214 / 1141,
  16658. bottom: 0.02
  16659. }
  16660. },
  16661. },
  16662. [
  16663. {
  16664. name: "Micro",
  16665. height: math.unit(1 / 16, "inch")
  16666. },
  16667. {
  16668. name: "Tiny",
  16669. height: math.unit(4, "inches")
  16670. },
  16671. {
  16672. name: "Normal",
  16673. height: math.unit(5 + 7 / 12, "feet"),
  16674. default: true
  16675. },
  16676. {
  16677. name: "Amazon",
  16678. height: math.unit(12, "feet")
  16679. },
  16680. {
  16681. name: "Giantess",
  16682. height: math.unit(160, "meters")
  16683. },
  16684. {
  16685. name: "Titaness",
  16686. height: math.unit(800, "meters")
  16687. },
  16688. ]
  16689. ))
  16690. characterMakers.push(() => makeCharacter(
  16691. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16692. {
  16693. front: {
  16694. height: math.unit(6, "feet"),
  16695. weight: math.unit(150, "lb"),
  16696. name: "Front",
  16697. image: {
  16698. source: "./media/characters/alluria/front.svg",
  16699. extra: 806 / 738,
  16700. bottom: 0.01
  16701. }
  16702. },
  16703. side: {
  16704. height: math.unit(6, "feet"),
  16705. weight: math.unit(150, "lb"),
  16706. name: "Side",
  16707. image: {
  16708. source: "./media/characters/alluria/side.svg",
  16709. extra: 800 / 750,
  16710. }
  16711. },
  16712. back: {
  16713. height: math.unit(6, "feet"),
  16714. weight: math.unit(150, "lb"),
  16715. name: "Back",
  16716. image: {
  16717. source: "./media/characters/alluria/back.svg",
  16718. extra: 806 / 738,
  16719. }
  16720. },
  16721. frontMaid: {
  16722. height: math.unit(6, "feet"),
  16723. weight: math.unit(150, "lb"),
  16724. name: "Front (Maid)",
  16725. image: {
  16726. source: "./media/characters/alluria/front-maid.svg",
  16727. extra: 806 / 738,
  16728. bottom: 0.01
  16729. }
  16730. },
  16731. sideMaid: {
  16732. height: math.unit(6, "feet"),
  16733. weight: math.unit(150, "lb"),
  16734. name: "Side (Maid)",
  16735. image: {
  16736. source: "./media/characters/alluria/side-maid.svg",
  16737. extra: 800 / 750,
  16738. bottom: 0.005
  16739. }
  16740. },
  16741. backMaid: {
  16742. height: math.unit(6, "feet"),
  16743. weight: math.unit(150, "lb"),
  16744. name: "Back (Maid)",
  16745. image: {
  16746. source: "./media/characters/alluria/back-maid.svg",
  16747. extra: 806 / 738,
  16748. }
  16749. },
  16750. },
  16751. [
  16752. {
  16753. name: "Micro",
  16754. height: math.unit(6, "inches"),
  16755. default: true
  16756. },
  16757. ]
  16758. ))
  16759. characterMakers.push(() => makeCharacter(
  16760. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16761. {
  16762. front: {
  16763. height: math.unit(6, "feet"),
  16764. weight: math.unit(150, "lb"),
  16765. name: "Front",
  16766. image: {
  16767. source: "./media/characters/kyle/front.svg",
  16768. extra: 1069 / 962,
  16769. bottom: 77.228 / 1727.45
  16770. }
  16771. },
  16772. },
  16773. [
  16774. {
  16775. name: "Macro",
  16776. height: math.unit(150, "feet"),
  16777. default: true
  16778. },
  16779. ]
  16780. ))
  16781. characterMakers.push(() => makeCharacter(
  16782. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16783. {
  16784. front: {
  16785. height: math.unit(6, "feet"),
  16786. weight: math.unit(300, "lb"),
  16787. name: "Front",
  16788. image: {
  16789. source: "./media/characters/duncan/front.svg",
  16790. extra: 1650 / 1482,
  16791. bottom: 0.05
  16792. }
  16793. },
  16794. },
  16795. [
  16796. {
  16797. name: "Macro",
  16798. height: math.unit(100, "feet"),
  16799. default: true
  16800. },
  16801. ]
  16802. ))
  16803. characterMakers.push(() => makeCharacter(
  16804. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16805. {
  16806. front: {
  16807. height: math.unit(5 + 4 / 12, "feet"),
  16808. weight: math.unit(220, "lb"),
  16809. name: "Front",
  16810. image: {
  16811. source: "./media/characters/memory/front.svg",
  16812. extra: 3641 / 3545,
  16813. bottom: 0.03
  16814. }
  16815. },
  16816. back: {
  16817. height: math.unit(5 + 4 / 12, "feet"),
  16818. weight: math.unit(220, "lb"),
  16819. name: "Back",
  16820. image: {
  16821. source: "./media/characters/memory/back.svg",
  16822. extra: 3641 / 3545,
  16823. bottom: 0.025
  16824. }
  16825. },
  16826. frontSkirt: {
  16827. height: math.unit(5 + 4 / 12, "feet"),
  16828. weight: math.unit(220, "lb"),
  16829. name: "Front (Skirt)",
  16830. image: {
  16831. source: "./media/characters/memory/front-skirt.svg",
  16832. extra: 3641 / 3545,
  16833. bottom: 0.03
  16834. }
  16835. },
  16836. frontDress: {
  16837. height: math.unit(5 + 4 / 12, "feet"),
  16838. weight: math.unit(220, "lb"),
  16839. name: "Front (Dress)",
  16840. image: {
  16841. source: "./media/characters/memory/front-dress.svg",
  16842. extra: 3641 / 3545,
  16843. bottom: 0.03
  16844. }
  16845. },
  16846. },
  16847. [
  16848. {
  16849. name: "Micro",
  16850. height: math.unit(6, "inches"),
  16851. default: true
  16852. },
  16853. {
  16854. name: "Normal",
  16855. height: math.unit(5 + 4 / 12, "feet")
  16856. },
  16857. ]
  16858. ))
  16859. characterMakers.push(() => makeCharacter(
  16860. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16861. {
  16862. front: {
  16863. height: math.unit(4 + 11 / 12, "feet"),
  16864. weight: math.unit(100, "lb"),
  16865. name: "Front",
  16866. image: {
  16867. source: "./media/characters/luno/front.svg",
  16868. extra: 1535 / 1487,
  16869. bottom: 0.03
  16870. }
  16871. },
  16872. },
  16873. [
  16874. {
  16875. name: "Micro",
  16876. height: math.unit(3, "inches")
  16877. },
  16878. {
  16879. name: "Normal",
  16880. height: math.unit(4 + 11 / 12, "feet"),
  16881. default: true
  16882. },
  16883. {
  16884. name: "Macro",
  16885. height: math.unit(300, "feet")
  16886. },
  16887. {
  16888. name: "Megamacro",
  16889. height: math.unit(700, "miles")
  16890. },
  16891. ]
  16892. ))
  16893. characterMakers.push(() => makeCharacter(
  16894. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16895. {
  16896. front: {
  16897. height: math.unit(6 + 2 / 12, "feet"),
  16898. weight: math.unit(170, "lb"),
  16899. name: "Front",
  16900. image: {
  16901. source: "./media/characters/jamesy/front.svg",
  16902. extra: 440 / 382,
  16903. bottom: 0.005
  16904. }
  16905. },
  16906. },
  16907. [
  16908. {
  16909. name: "Micro",
  16910. height: math.unit(3, "inches")
  16911. },
  16912. {
  16913. name: "Normal",
  16914. height: math.unit(6 + 2 / 12, "feet"),
  16915. default: true
  16916. },
  16917. {
  16918. name: "Macro",
  16919. height: math.unit(300, "feet")
  16920. },
  16921. {
  16922. name: "Megamacro",
  16923. height: math.unit(700, "miles")
  16924. },
  16925. ]
  16926. ))
  16927. characterMakers.push(() => makeCharacter(
  16928. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16929. {
  16930. front: {
  16931. height: math.unit(6, "feet"),
  16932. weight: math.unit(160, "lb"),
  16933. name: "Front",
  16934. image: {
  16935. source: "./media/characters/mark/front.svg",
  16936. extra: 3300 / 3100,
  16937. bottom: 136.42 / 3440.47
  16938. }
  16939. },
  16940. },
  16941. [
  16942. {
  16943. name: "Macro",
  16944. height: math.unit(120, "meters")
  16945. },
  16946. {
  16947. name: "Bigger Macro",
  16948. height: math.unit(350, "meters")
  16949. },
  16950. {
  16951. name: "Megamacro",
  16952. height: math.unit(8, "km"),
  16953. default: true
  16954. },
  16955. {
  16956. name: "Continental",
  16957. height: math.unit(4550, "km")
  16958. },
  16959. {
  16960. name: "Planetary",
  16961. height: math.unit(65000, "km")
  16962. },
  16963. ]
  16964. ))
  16965. characterMakers.push(() => makeCharacter(
  16966. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16967. {
  16968. front: {
  16969. height: math.unit(6, "feet"),
  16970. weight: math.unit(400, "lb"),
  16971. name: "Front",
  16972. image: {
  16973. source: "./media/characters/mac/front.svg",
  16974. extra: 1048 / 987.7,
  16975. bottom: 60 / 1107.6,
  16976. }
  16977. },
  16978. },
  16979. [
  16980. {
  16981. name: "Macro",
  16982. height: math.unit(500, "feet"),
  16983. default: true
  16984. },
  16985. ]
  16986. ))
  16987. characterMakers.push(() => makeCharacter(
  16988. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16989. {
  16990. front: {
  16991. height: math.unit(5 + 2 / 12, "feet"),
  16992. weight: math.unit(190, "lb"),
  16993. name: "Front",
  16994. image: {
  16995. source: "./media/characters/bari/front.svg",
  16996. extra: 3156 / 2880,
  16997. bottom: 0.03
  16998. }
  16999. },
  17000. back: {
  17001. height: math.unit(5 + 2 / 12, "feet"),
  17002. weight: math.unit(190, "lb"),
  17003. name: "Back",
  17004. image: {
  17005. source: "./media/characters/bari/back.svg",
  17006. extra: 3260 / 2834,
  17007. bottom: 0.025
  17008. }
  17009. },
  17010. frontPlush: {
  17011. height: math.unit(5 + 2 / 12, "feet"),
  17012. weight: math.unit(190, "lb"),
  17013. name: "Front (Plush)",
  17014. image: {
  17015. source: "./media/characters/bari/front-plush.svg",
  17016. extra: 1112 / 1061,
  17017. bottom: 0.002
  17018. }
  17019. },
  17020. },
  17021. [
  17022. {
  17023. name: "Micro",
  17024. height: math.unit(3, "inches")
  17025. },
  17026. {
  17027. name: "Normal",
  17028. height: math.unit(5 + 2 / 12, "feet"),
  17029. default: true
  17030. },
  17031. {
  17032. name: "Macro",
  17033. height: math.unit(20, "feet")
  17034. },
  17035. ]
  17036. ))
  17037. characterMakers.push(() => makeCharacter(
  17038. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17039. {
  17040. front: {
  17041. height: math.unit(6 + 1 / 12, "feet"),
  17042. weight: math.unit(275, "lb"),
  17043. name: "Front",
  17044. image: {
  17045. source: "./media/characters/hunter-misha-raven/front.svg"
  17046. }
  17047. },
  17048. },
  17049. [
  17050. {
  17051. name: "Mortal",
  17052. height: math.unit(6 + 1 / 12, "feet")
  17053. },
  17054. {
  17055. name: "Divine",
  17056. height: math.unit(1.12134e34, "parsecs"),
  17057. default: true
  17058. },
  17059. ]
  17060. ))
  17061. characterMakers.push(() => makeCharacter(
  17062. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17063. {
  17064. front: {
  17065. height: math.unit(6 + 3 / 12, "feet"),
  17066. weight: math.unit(220, "lb"),
  17067. name: "Front",
  17068. image: {
  17069. source: "./media/characters/max-calore/front.svg",
  17070. extra: 1700 / 1648,
  17071. bottom: 0.01
  17072. }
  17073. },
  17074. back: {
  17075. height: math.unit(6 + 3 / 12, "feet"),
  17076. weight: math.unit(220, "lb"),
  17077. name: "Back",
  17078. image: {
  17079. source: "./media/characters/max-calore/back.svg",
  17080. extra: 1700 / 1648,
  17081. bottom: 0.01
  17082. }
  17083. },
  17084. },
  17085. [
  17086. {
  17087. name: "Normal",
  17088. height: math.unit(6 + 3 / 12, "feet"),
  17089. default: true
  17090. },
  17091. ]
  17092. ))
  17093. characterMakers.push(() => makeCharacter(
  17094. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17095. {
  17096. side: {
  17097. height: math.unit(2 + 8 / 12, "feet"),
  17098. weight: math.unit(99, "lb"),
  17099. name: "Side",
  17100. image: {
  17101. source: "./media/characters/aspen/side.svg",
  17102. extra: 152 / 138,
  17103. bottom: 0.032
  17104. }
  17105. },
  17106. },
  17107. [
  17108. {
  17109. name: "Normal",
  17110. height: math.unit(2 + 8 / 12, "feet"),
  17111. default: true
  17112. },
  17113. ]
  17114. ))
  17115. characterMakers.push(() => makeCharacter(
  17116. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17117. {
  17118. side: {
  17119. height: math.unit(3 + 2 / 12, "feet"),
  17120. weight: math.unit(224, "lb"),
  17121. name: "Side",
  17122. image: {
  17123. source: "./media/characters/sheila-feral-wolf/side.svg",
  17124. extra: 179 / 166,
  17125. bottom: 0.03
  17126. }
  17127. },
  17128. },
  17129. [
  17130. {
  17131. name: "Normal",
  17132. height: math.unit(3 + 2 / 12, "feet"),
  17133. default: true
  17134. },
  17135. ]
  17136. ))
  17137. characterMakers.push(() => makeCharacter(
  17138. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17139. {
  17140. side: {
  17141. height: math.unit(1 + 9 / 12, "feet"),
  17142. weight: math.unit(38, "lb"),
  17143. name: "Side",
  17144. image: {
  17145. source: "./media/characters/michelle/side.svg",
  17146. extra: 147 / 136.7,
  17147. bottom: 0.03
  17148. }
  17149. },
  17150. },
  17151. [
  17152. {
  17153. name: "Normal",
  17154. height: math.unit(1 + 9 / 12, "feet"),
  17155. default: true
  17156. },
  17157. ]
  17158. ))
  17159. characterMakers.push(() => makeCharacter(
  17160. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17161. {
  17162. front: {
  17163. height: math.unit(1 + 1 / 12, "feet"),
  17164. weight: math.unit(18, "lb"),
  17165. name: "Front",
  17166. image: {
  17167. source: "./media/characters/nino/front.svg"
  17168. }
  17169. },
  17170. },
  17171. [
  17172. {
  17173. name: "Normal",
  17174. height: math.unit(1 + 1 / 12, "feet"),
  17175. default: true
  17176. },
  17177. ]
  17178. ))
  17179. characterMakers.push(() => makeCharacter(
  17180. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17181. {
  17182. front: {
  17183. height: math.unit(1, "feet"),
  17184. weight: math.unit(16, "lb"),
  17185. name: "Front",
  17186. image: {
  17187. source: "./media/characters/viola/front.svg"
  17188. }
  17189. },
  17190. },
  17191. [
  17192. {
  17193. name: "Normal",
  17194. height: math.unit(1, "feet"),
  17195. default: true
  17196. },
  17197. ]
  17198. ))
  17199. characterMakers.push(() => makeCharacter(
  17200. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17201. {
  17202. front: {
  17203. height: math.unit(6 + 5 / 12, "feet"),
  17204. weight: math.unit(580, "lb"),
  17205. name: "Front",
  17206. image: {
  17207. source: "./media/characters/atlas/front.svg",
  17208. extra: 298.5 / 290,
  17209. bottom: 0.015
  17210. }
  17211. },
  17212. },
  17213. [
  17214. {
  17215. name: "Normal",
  17216. height: math.unit(6 + 5 / 12, "feet"),
  17217. default: true
  17218. },
  17219. ]
  17220. ))
  17221. characterMakers.push(() => makeCharacter(
  17222. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17223. {
  17224. side: {
  17225. height: math.unit(1 + 10 / 12, "feet"),
  17226. weight: math.unit(25, "lb"),
  17227. name: "Side",
  17228. image: {
  17229. source: "./media/characters/davy/side.svg",
  17230. extra: 200 / 170,
  17231. bottom: 0.01
  17232. }
  17233. },
  17234. },
  17235. [
  17236. {
  17237. name: "Normal",
  17238. height: math.unit(1 + 10 / 12, "feet"),
  17239. default: true
  17240. },
  17241. ]
  17242. ))
  17243. characterMakers.push(() => makeCharacter(
  17244. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17245. {
  17246. side: {
  17247. height: math.unit(4 + 8 / 12, "feet"),
  17248. weight: math.unit(166, "lb"),
  17249. name: "Side",
  17250. image: {
  17251. source: "./media/characters/fiona/side.svg",
  17252. extra: 232 / 220,
  17253. bottom: 0.03
  17254. }
  17255. },
  17256. },
  17257. [
  17258. {
  17259. name: "Normal",
  17260. height: math.unit(4 + 8 / 12, "feet"),
  17261. default: true
  17262. },
  17263. ]
  17264. ))
  17265. characterMakers.push(() => makeCharacter(
  17266. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17267. {
  17268. front: {
  17269. height: math.unit(2, "feet"),
  17270. weight: math.unit(62, "lb"),
  17271. name: "Front",
  17272. image: {
  17273. source: "./media/characters/lyla/front.svg",
  17274. bottom: 0.1
  17275. }
  17276. },
  17277. },
  17278. [
  17279. {
  17280. name: "Normal",
  17281. height: math.unit(2, "feet"),
  17282. default: true
  17283. },
  17284. ]
  17285. ))
  17286. characterMakers.push(() => makeCharacter(
  17287. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17288. {
  17289. side: {
  17290. height: math.unit(1.8, "feet"),
  17291. weight: math.unit(44, "lb"),
  17292. name: "Side",
  17293. image: {
  17294. source: "./media/characters/perseus/side.svg",
  17295. bottom: 0.21
  17296. }
  17297. },
  17298. },
  17299. [
  17300. {
  17301. name: "Normal",
  17302. height: math.unit(1.8, "feet"),
  17303. default: true
  17304. },
  17305. ]
  17306. ))
  17307. characterMakers.push(() => makeCharacter(
  17308. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17309. {
  17310. side: {
  17311. height: math.unit(4 + 2 / 12, "feet"),
  17312. weight: math.unit(20, "lb"),
  17313. name: "Side",
  17314. image: {
  17315. source: "./media/characters/remus/side.svg"
  17316. }
  17317. },
  17318. },
  17319. [
  17320. {
  17321. name: "Normal",
  17322. height: math.unit(4 + 2 / 12, "feet"),
  17323. default: true
  17324. },
  17325. ]
  17326. ))
  17327. characterMakers.push(() => makeCharacter(
  17328. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17329. {
  17330. front: {
  17331. height: math.unit(4 + 11 / 12, "feet"),
  17332. weight: math.unit(114, "lb"),
  17333. name: "Front",
  17334. image: {
  17335. source: "./media/characters/raf/front.svg",
  17336. extra: 1504/1339,
  17337. bottom: 26/1530
  17338. }
  17339. },
  17340. side: {
  17341. height: math.unit(4 + 11 / 12, "feet"),
  17342. weight: math.unit(114, "lb"),
  17343. name: "Side",
  17344. image: {
  17345. source: "./media/characters/raf/side.svg",
  17346. extra: 1466/1316,
  17347. bottom: 29/1495
  17348. }
  17349. },
  17350. },
  17351. [
  17352. {
  17353. name: "Micro",
  17354. height: math.unit(2, "inches")
  17355. },
  17356. {
  17357. name: "Normal",
  17358. height: math.unit(4 + 11 / 12, "feet"),
  17359. default: true
  17360. },
  17361. {
  17362. name: "Macro",
  17363. height: math.unit(70, "feet")
  17364. },
  17365. ]
  17366. ))
  17367. characterMakers.push(() => makeCharacter(
  17368. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17369. {
  17370. front: {
  17371. height: math.unit(1.5, "meters"),
  17372. weight: math.unit(68, "kg"),
  17373. name: "Front",
  17374. image: {
  17375. source: "./media/characters/liam-einarr/front.svg",
  17376. extra: 2822 / 2666
  17377. }
  17378. },
  17379. back: {
  17380. height: math.unit(1.5, "meters"),
  17381. weight: math.unit(68, "kg"),
  17382. name: "Back",
  17383. image: {
  17384. source: "./media/characters/liam-einarr/back.svg",
  17385. extra: 2822 / 2666,
  17386. bottom: 0.015
  17387. }
  17388. },
  17389. },
  17390. [
  17391. {
  17392. name: "Normal",
  17393. height: math.unit(1.5, "meters"),
  17394. default: true
  17395. },
  17396. {
  17397. name: "Macro",
  17398. height: math.unit(150, "meters")
  17399. },
  17400. {
  17401. name: "Megamacro",
  17402. height: math.unit(35, "km")
  17403. },
  17404. ]
  17405. ))
  17406. characterMakers.push(() => makeCharacter(
  17407. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17408. {
  17409. front: {
  17410. height: math.unit(6, "feet"),
  17411. weight: math.unit(75, "kg"),
  17412. name: "Front",
  17413. image: {
  17414. source: "./media/characters/linda/front.svg",
  17415. extra: 930 / 874,
  17416. bottom: 0.004
  17417. }
  17418. },
  17419. },
  17420. [
  17421. {
  17422. name: "Normal",
  17423. height: math.unit(6, "feet"),
  17424. default: true
  17425. },
  17426. ]
  17427. ))
  17428. characterMakers.push(() => makeCharacter(
  17429. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17430. {
  17431. front: {
  17432. height: math.unit(6 + 8 / 12, "feet"),
  17433. weight: math.unit(220, "lb"),
  17434. name: "Front",
  17435. image: {
  17436. source: "./media/characters/caylex/front.svg",
  17437. extra: 821 / 772,
  17438. bottom: 0.07
  17439. }
  17440. },
  17441. back: {
  17442. height: math.unit(6 + 8 / 12, "feet"),
  17443. weight: math.unit(220, "lb"),
  17444. name: "Back",
  17445. image: {
  17446. source: "./media/characters/caylex/back.svg",
  17447. extra: 821 / 772,
  17448. bottom: 0.022
  17449. }
  17450. },
  17451. hand: {
  17452. height: math.unit(1.25, "feet"),
  17453. name: "Hand",
  17454. image: {
  17455. source: "./media/characters/caylex/hand.svg"
  17456. }
  17457. },
  17458. foot: {
  17459. height: math.unit(1.6, "feet"),
  17460. name: "Foot",
  17461. image: {
  17462. source: "./media/characters/caylex/foot.svg"
  17463. }
  17464. },
  17465. armored: {
  17466. height: math.unit(6 + 8 / 12, "feet"),
  17467. weight: math.unit(250, "lb"),
  17468. name: "Armored",
  17469. image: {
  17470. source: "./media/characters/caylex/armored.svg",
  17471. extra: 1420 / 1310,
  17472. bottom: 0.045
  17473. }
  17474. },
  17475. },
  17476. [
  17477. {
  17478. name: "Normal",
  17479. height: math.unit(6 + 8 / 12, "feet"),
  17480. default: true
  17481. },
  17482. {
  17483. name: "Normal+",
  17484. height: math.unit(12, "feet")
  17485. },
  17486. ]
  17487. ))
  17488. characterMakers.push(() => makeCharacter(
  17489. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17490. {
  17491. front: {
  17492. height: math.unit(7 + 6 / 12, "feet"),
  17493. weight: math.unit(288, "lb"),
  17494. name: "Front",
  17495. image: {
  17496. source: "./media/characters/alana/front.svg",
  17497. extra: 679 / 653,
  17498. bottom: 22.5 / 701
  17499. }
  17500. },
  17501. },
  17502. [
  17503. {
  17504. name: "Normal",
  17505. height: math.unit(7 + 6 / 12, "feet")
  17506. },
  17507. {
  17508. name: "Large",
  17509. height: math.unit(50, "feet")
  17510. },
  17511. {
  17512. name: "Macro",
  17513. height: math.unit(100, "feet"),
  17514. default: true
  17515. },
  17516. {
  17517. name: "Macro+",
  17518. height: math.unit(200, "feet")
  17519. },
  17520. ]
  17521. ))
  17522. characterMakers.push(() => makeCharacter(
  17523. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17524. {
  17525. front: {
  17526. height: math.unit(6 + 1 / 12, "feet"),
  17527. weight: math.unit(210, "lb"),
  17528. name: "Front",
  17529. image: {
  17530. source: "./media/characters/hasani/front.svg",
  17531. extra: 244 / 232,
  17532. bottom: 0.01
  17533. }
  17534. },
  17535. back: {
  17536. height: math.unit(6 + 1 / 12, "feet"),
  17537. weight: math.unit(210, "lb"),
  17538. name: "Back",
  17539. image: {
  17540. source: "./media/characters/hasani/back.svg",
  17541. extra: 244 / 232,
  17542. bottom: 0.01
  17543. }
  17544. },
  17545. },
  17546. [
  17547. {
  17548. name: "Normal",
  17549. height: math.unit(6 + 1 / 12, "feet")
  17550. },
  17551. {
  17552. name: "Macro",
  17553. height: math.unit(175, "feet"),
  17554. default: true
  17555. },
  17556. ]
  17557. ))
  17558. characterMakers.push(() => makeCharacter(
  17559. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17560. {
  17561. front: {
  17562. height: math.unit(1.82, "meters"),
  17563. weight: math.unit(140, "lb"),
  17564. name: "Front",
  17565. image: {
  17566. source: "./media/characters/nita/front.svg",
  17567. extra: 2473 / 2363,
  17568. bottom: 0.01
  17569. }
  17570. },
  17571. },
  17572. [
  17573. {
  17574. name: "Normal",
  17575. height: math.unit(1.82, "m")
  17576. },
  17577. {
  17578. name: "Macro",
  17579. height: math.unit(300, "m")
  17580. },
  17581. {
  17582. name: "Mistake Canon",
  17583. height: math.unit(0.5, "miles"),
  17584. default: true
  17585. },
  17586. {
  17587. name: "Big Mistake",
  17588. height: math.unit(13, "miles")
  17589. },
  17590. {
  17591. name: "Playing God",
  17592. height: math.unit(2450, "miles")
  17593. },
  17594. ]
  17595. ))
  17596. characterMakers.push(() => makeCharacter(
  17597. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17598. {
  17599. front: {
  17600. height: math.unit(4, "feet"),
  17601. weight: math.unit(120, "lb"),
  17602. name: "Front",
  17603. image: {
  17604. source: "./media/characters/shiriko/front.svg",
  17605. extra: 970/934,
  17606. bottom: 5/975
  17607. }
  17608. },
  17609. },
  17610. [
  17611. {
  17612. name: "Normal",
  17613. height: math.unit(4, "feet"),
  17614. default: true
  17615. },
  17616. ]
  17617. ))
  17618. characterMakers.push(() => makeCharacter(
  17619. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17620. {
  17621. front: {
  17622. height: math.unit(6, "feet"),
  17623. name: "front",
  17624. image: {
  17625. source: "./media/characters/deja/front.svg",
  17626. extra: 926 / 840,
  17627. bottom: 0.07
  17628. }
  17629. },
  17630. },
  17631. [
  17632. {
  17633. name: "Planck Length",
  17634. height: math.unit(1.6e-35, "meters")
  17635. },
  17636. {
  17637. name: "Normal",
  17638. height: math.unit(30.48, "meters"),
  17639. default: true
  17640. },
  17641. {
  17642. name: "Universal",
  17643. height: math.unit(8.8e26, "meters")
  17644. },
  17645. ]
  17646. ))
  17647. characterMakers.push(() => makeCharacter(
  17648. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17649. {
  17650. side: {
  17651. height: math.unit(8, "feet"),
  17652. weight: math.unit(6300, "lb"),
  17653. name: "Side",
  17654. image: {
  17655. source: "./media/characters/anima/side.svg",
  17656. bottom: 0.035
  17657. }
  17658. },
  17659. },
  17660. [
  17661. {
  17662. name: "Normal",
  17663. height: math.unit(8, "feet"),
  17664. default: true
  17665. },
  17666. ]
  17667. ))
  17668. characterMakers.push(() => makeCharacter(
  17669. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17670. {
  17671. front: {
  17672. height: math.unit(8, "feet"),
  17673. weight: math.unit(350, "lb"),
  17674. name: "Front",
  17675. image: {
  17676. source: "./media/characters/bianca/front.svg",
  17677. extra: 234 / 225,
  17678. bottom: 0.03
  17679. }
  17680. },
  17681. },
  17682. [
  17683. {
  17684. name: "Normal",
  17685. height: math.unit(8, "feet"),
  17686. default: true
  17687. },
  17688. ]
  17689. ))
  17690. characterMakers.push(() => makeCharacter(
  17691. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17692. {
  17693. front: {
  17694. height: math.unit(6, "feet"),
  17695. weight: math.unit(150, "lb"),
  17696. name: "Front",
  17697. image: {
  17698. source: "./media/characters/adinia/front.svg",
  17699. extra: 1845 / 1672,
  17700. bottom: 0.02
  17701. }
  17702. },
  17703. back: {
  17704. height: math.unit(6, "feet"),
  17705. weight: math.unit(150, "lb"),
  17706. name: "Back",
  17707. image: {
  17708. source: "./media/characters/adinia/back.svg",
  17709. extra: 1845 / 1672,
  17710. bottom: 0.002
  17711. }
  17712. },
  17713. },
  17714. [
  17715. {
  17716. name: "Normal",
  17717. height: math.unit(11 + 5 / 12, "feet"),
  17718. default: true
  17719. },
  17720. ]
  17721. ))
  17722. characterMakers.push(() => makeCharacter(
  17723. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17724. {
  17725. front: {
  17726. height: math.unit(3, "meters"),
  17727. weight: math.unit(200, "kg"),
  17728. name: "Front",
  17729. image: {
  17730. source: "./media/characters/lykasa/front.svg",
  17731. extra: 1076 / 976,
  17732. bottom: 0.06
  17733. }
  17734. },
  17735. },
  17736. [
  17737. {
  17738. name: "Normal",
  17739. height: math.unit(3, "meters")
  17740. },
  17741. {
  17742. name: "Kaiju",
  17743. height: math.unit(120, "meters"),
  17744. default: true
  17745. },
  17746. {
  17747. name: "Mega Kaiju",
  17748. height: math.unit(240, "km")
  17749. },
  17750. {
  17751. name: "Giga Kaiju",
  17752. height: math.unit(400, "megameters")
  17753. },
  17754. {
  17755. name: "Tera Kaiju",
  17756. height: math.unit(800, "gigameters")
  17757. },
  17758. {
  17759. name: "Kaiju Dragon Goddess",
  17760. height: math.unit(26, "zettaparsecs")
  17761. },
  17762. ]
  17763. ))
  17764. characterMakers.push(() => makeCharacter(
  17765. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17766. {
  17767. side: {
  17768. height: math.unit(283 / 124 * 6, "feet"),
  17769. weight: math.unit(35000, "lb"),
  17770. name: "Side",
  17771. image: {
  17772. source: "./media/characters/malfaren/side.svg",
  17773. extra: 2500 / 1010,
  17774. bottom: 0.01
  17775. }
  17776. },
  17777. front: {
  17778. height: math.unit(22.36, "feet"),
  17779. weight: math.unit(35000, "lb"),
  17780. name: "Front",
  17781. image: {
  17782. source: "./media/characters/malfaren/front.svg",
  17783. extra: 1631 / 1476,
  17784. bottom: 0.01
  17785. }
  17786. },
  17787. maw: {
  17788. height: math.unit(6.9, "feet"),
  17789. name: "Maw",
  17790. image: {
  17791. source: "./media/characters/malfaren/maw.svg"
  17792. }
  17793. },
  17794. },
  17795. [
  17796. {
  17797. name: "Big",
  17798. height: math.unit(283 / 162 * 6, "feet"),
  17799. },
  17800. {
  17801. name: "Bigger",
  17802. height: math.unit(283 / 124 * 6, "feet")
  17803. },
  17804. {
  17805. name: "Massive",
  17806. height: math.unit(283 / 92 * 6, "feet"),
  17807. default: true
  17808. },
  17809. {
  17810. name: "👀💦",
  17811. height: math.unit(283 / 73 * 6, "feet"),
  17812. },
  17813. ]
  17814. ))
  17815. characterMakers.push(() => makeCharacter(
  17816. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17817. {
  17818. front: {
  17819. height: math.unit(1.7, "m"),
  17820. weight: math.unit(70, "kg"),
  17821. name: "Front",
  17822. image: {
  17823. source: "./media/characters/kernel/front.svg",
  17824. extra: 222 / 210,
  17825. bottom: 0.007
  17826. }
  17827. },
  17828. },
  17829. [
  17830. {
  17831. name: "Nano",
  17832. height: math.unit(17, "micrometers")
  17833. },
  17834. {
  17835. name: "Micro",
  17836. height: math.unit(1.7, "mm")
  17837. },
  17838. {
  17839. name: "Small",
  17840. height: math.unit(1.7, "cm")
  17841. },
  17842. {
  17843. name: "Normal",
  17844. height: math.unit(1.7, "m"),
  17845. default: true
  17846. },
  17847. ]
  17848. ))
  17849. characterMakers.push(() => makeCharacter(
  17850. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17851. {
  17852. front: {
  17853. height: math.unit(1.75, "meters"),
  17854. weight: math.unit(65, "kg"),
  17855. name: "Front",
  17856. image: {
  17857. source: "./media/characters/jayne-folest/front.svg",
  17858. extra: 2115 / 2007,
  17859. bottom: 0.02
  17860. }
  17861. },
  17862. back: {
  17863. height: math.unit(1.75, "meters"),
  17864. weight: math.unit(65, "kg"),
  17865. name: "Back",
  17866. image: {
  17867. source: "./media/characters/jayne-folest/back.svg",
  17868. extra: 2115 / 2007,
  17869. bottom: 0.005
  17870. }
  17871. },
  17872. frontClothed: {
  17873. height: math.unit(1.75, "meters"),
  17874. weight: math.unit(65, "kg"),
  17875. name: "Front (Clothed)",
  17876. image: {
  17877. source: "./media/characters/jayne-folest/front-clothed.svg",
  17878. extra: 2115 / 2007,
  17879. bottom: 0.035
  17880. }
  17881. },
  17882. hand: {
  17883. height: math.unit(1 / 1.260, "feet"),
  17884. name: "Hand",
  17885. image: {
  17886. source: "./media/characters/jayne-folest/hand.svg"
  17887. }
  17888. },
  17889. foot: {
  17890. height: math.unit(1 / 0.918, "feet"),
  17891. name: "Foot",
  17892. image: {
  17893. source: "./media/characters/jayne-folest/foot.svg"
  17894. }
  17895. },
  17896. },
  17897. [
  17898. {
  17899. name: "Micro",
  17900. height: math.unit(4, "cm")
  17901. },
  17902. {
  17903. name: "Normal",
  17904. height: math.unit(1.75, "meters")
  17905. },
  17906. {
  17907. name: "Macro",
  17908. height: math.unit(47.5, "meters"),
  17909. default: true
  17910. },
  17911. ]
  17912. ))
  17913. characterMakers.push(() => makeCharacter(
  17914. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17915. {
  17916. front: {
  17917. height: math.unit(180, "cm"),
  17918. weight: math.unit(70, "kg"),
  17919. name: "Front",
  17920. image: {
  17921. source: "./media/characters/algier/front.svg",
  17922. extra: 596 / 572,
  17923. bottom: 0.04
  17924. }
  17925. },
  17926. back: {
  17927. height: math.unit(180, "cm"),
  17928. weight: math.unit(70, "kg"),
  17929. name: "Back",
  17930. image: {
  17931. source: "./media/characters/algier/back.svg",
  17932. extra: 596 / 572,
  17933. bottom: 0.025
  17934. }
  17935. },
  17936. frontdressed: {
  17937. height: math.unit(180, "cm"),
  17938. weight: math.unit(150, "kg"),
  17939. name: "Front-dressed",
  17940. image: {
  17941. source: "./media/characters/algier/front-dressed.svg",
  17942. extra: 596 / 572,
  17943. bottom: 0.038
  17944. }
  17945. },
  17946. },
  17947. [
  17948. {
  17949. name: "Micro",
  17950. height: math.unit(5, "cm")
  17951. },
  17952. {
  17953. name: "Normal",
  17954. height: math.unit(180, "cm"),
  17955. default: true
  17956. },
  17957. {
  17958. name: "Macro",
  17959. height: math.unit(64, "m")
  17960. },
  17961. ]
  17962. ))
  17963. characterMakers.push(() => makeCharacter(
  17964. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17965. {
  17966. upright: {
  17967. height: math.unit(7, "feet"),
  17968. weight: math.unit(300, "lb"),
  17969. name: "Upright",
  17970. image: {
  17971. source: "./media/characters/pretzel/upright.svg",
  17972. extra: 534 / 522,
  17973. bottom: 0.065
  17974. }
  17975. },
  17976. sprawling: {
  17977. height: math.unit(3.75, "feet"),
  17978. weight: math.unit(300, "lb"),
  17979. name: "Sprawling",
  17980. image: {
  17981. source: "./media/characters/pretzel/sprawling.svg",
  17982. extra: 314 / 281,
  17983. bottom: 0.1
  17984. }
  17985. },
  17986. tongue: {
  17987. height: math.unit(2, "feet"),
  17988. name: "Tongue",
  17989. image: {
  17990. source: "./media/characters/pretzel/tongue.svg"
  17991. }
  17992. },
  17993. },
  17994. [
  17995. {
  17996. name: "Normal",
  17997. height: math.unit(7, "feet"),
  17998. default: true
  17999. },
  18000. {
  18001. name: "Oversized",
  18002. height: math.unit(15, "feet")
  18003. },
  18004. {
  18005. name: "Huge",
  18006. height: math.unit(30, "feet")
  18007. },
  18008. {
  18009. name: "Macro",
  18010. height: math.unit(250, "feet")
  18011. },
  18012. ]
  18013. ))
  18014. characterMakers.push(() => makeCharacter(
  18015. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18016. {
  18017. sideFront: {
  18018. height: math.unit(5 + 2 / 12, "feet"),
  18019. weight: math.unit(120, "lb"),
  18020. name: "Front Side",
  18021. image: {
  18022. source: "./media/characters/roxi/side-front.svg",
  18023. extra: 2924 / 2717,
  18024. bottom: 0.08
  18025. }
  18026. },
  18027. sideBack: {
  18028. height: math.unit(5 + 2 / 12, "feet"),
  18029. weight: math.unit(120, "lb"),
  18030. name: "Back Side",
  18031. image: {
  18032. source: "./media/characters/roxi/side-back.svg",
  18033. extra: 2904 / 2693,
  18034. bottom: 0.06
  18035. }
  18036. },
  18037. front: {
  18038. height: math.unit(5 + 2 / 12, "feet"),
  18039. weight: math.unit(120, "lb"),
  18040. name: "Front",
  18041. image: {
  18042. source: "./media/characters/roxi/front.svg",
  18043. extra: 2028 / 1907,
  18044. bottom: 0.01
  18045. }
  18046. },
  18047. frontAlt: {
  18048. height: math.unit(5 + 2 / 12, "feet"),
  18049. weight: math.unit(120, "lb"),
  18050. name: "Front (Alt)",
  18051. image: {
  18052. source: "./media/characters/roxi/front-alt.svg",
  18053. extra: 1828 / 1798,
  18054. bottom: 0.01
  18055. }
  18056. },
  18057. sitting: {
  18058. height: math.unit(2.8, "feet"),
  18059. weight: math.unit(120, "lb"),
  18060. name: "Sitting",
  18061. image: {
  18062. source: "./media/characters/roxi/sitting.svg",
  18063. extra: 2660 / 2462,
  18064. bottom: 0.1
  18065. }
  18066. },
  18067. },
  18068. [
  18069. {
  18070. name: "Normal",
  18071. height: math.unit(5 + 2 / 12, "feet"),
  18072. default: true
  18073. },
  18074. ]
  18075. ))
  18076. characterMakers.push(() => makeCharacter(
  18077. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18078. {
  18079. side: {
  18080. height: math.unit(55, "feet"),
  18081. weight: math.unit(153, "tons"),
  18082. name: "Side",
  18083. image: {
  18084. source: "./media/characters/shadow/side.svg",
  18085. extra: 701 / 628,
  18086. bottom: 0.02
  18087. }
  18088. },
  18089. flying: {
  18090. height: math.unit(145, "feet"),
  18091. weight: math.unit(153, "tons"),
  18092. name: "Flying",
  18093. image: {
  18094. source: "./media/characters/shadow/flying.svg"
  18095. }
  18096. },
  18097. },
  18098. [
  18099. {
  18100. name: "Normal",
  18101. height: math.unit(55, "feet"),
  18102. default: true
  18103. },
  18104. ]
  18105. ))
  18106. characterMakers.push(() => makeCharacter(
  18107. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18108. {
  18109. front: {
  18110. height: math.unit(6, "feet"),
  18111. weight: math.unit(200, "lb"),
  18112. name: "Front",
  18113. image: {
  18114. source: "./media/characters/marcie/front.svg",
  18115. extra: 960 / 876,
  18116. bottom: 58 / 1017.87
  18117. }
  18118. },
  18119. },
  18120. [
  18121. {
  18122. name: "Macro",
  18123. height: math.unit(1, "mile"),
  18124. default: true
  18125. },
  18126. ]
  18127. ))
  18128. characterMakers.push(() => makeCharacter(
  18129. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18130. {
  18131. front: {
  18132. height: math.unit(7, "feet"),
  18133. weight: math.unit(200, "lb"),
  18134. name: "Front",
  18135. image: {
  18136. source: "./media/characters/kachina/front.svg",
  18137. extra: 1290.68 / 1119,
  18138. bottom: 36.5 / 1327.18
  18139. }
  18140. },
  18141. },
  18142. [
  18143. {
  18144. name: "Normal",
  18145. height: math.unit(7, "feet"),
  18146. default: true
  18147. },
  18148. ]
  18149. ))
  18150. characterMakers.push(() => makeCharacter(
  18151. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18152. {
  18153. looking: {
  18154. height: math.unit(2, "meters"),
  18155. weight: math.unit(300, "kg"),
  18156. name: "Looking",
  18157. image: {
  18158. source: "./media/characters/kash/looking.svg",
  18159. extra: 474 / 344,
  18160. bottom: 0.03
  18161. }
  18162. },
  18163. side: {
  18164. height: math.unit(2, "meters"),
  18165. weight: math.unit(300, "kg"),
  18166. name: "Side",
  18167. image: {
  18168. source: "./media/characters/kash/side.svg",
  18169. extra: 302 / 251,
  18170. bottom: 0.03
  18171. }
  18172. },
  18173. front: {
  18174. height: math.unit(2, "meters"),
  18175. weight: math.unit(300, "kg"),
  18176. name: "Front",
  18177. image: {
  18178. source: "./media/characters/kash/front.svg",
  18179. extra: 495 / 360,
  18180. bottom: 0.015
  18181. }
  18182. },
  18183. },
  18184. [
  18185. {
  18186. name: "Normal",
  18187. height: math.unit(2, "meters"),
  18188. default: true
  18189. },
  18190. {
  18191. name: "Big",
  18192. height: math.unit(3, "meters")
  18193. },
  18194. {
  18195. name: "Large",
  18196. height: math.unit(5, "meters")
  18197. },
  18198. ]
  18199. ))
  18200. characterMakers.push(() => makeCharacter(
  18201. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18202. {
  18203. feeding: {
  18204. height: math.unit(6.7, "feet"),
  18205. weight: math.unit(350, "lb"),
  18206. name: "Feeding",
  18207. image: {
  18208. source: "./media/characters/lalim/feeding.svg",
  18209. }
  18210. },
  18211. },
  18212. [
  18213. {
  18214. name: "Normal",
  18215. height: math.unit(6.7, "feet"),
  18216. default: true
  18217. },
  18218. ]
  18219. ))
  18220. characterMakers.push(() => makeCharacter(
  18221. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18222. {
  18223. front: {
  18224. height: math.unit(9.5, "feet"),
  18225. weight: math.unit(600, "lb"),
  18226. name: "Front",
  18227. image: {
  18228. source: "./media/characters/de'vout/front.svg",
  18229. extra: 1443 / 1328,
  18230. bottom: 0.025
  18231. }
  18232. },
  18233. back: {
  18234. height: math.unit(9.5, "feet"),
  18235. weight: math.unit(600, "lb"),
  18236. name: "Back",
  18237. image: {
  18238. source: "./media/characters/de'vout/back.svg",
  18239. extra: 1443 / 1328
  18240. }
  18241. },
  18242. frontDressed: {
  18243. height: math.unit(9.5, "feet"),
  18244. weight: math.unit(600, "lb"),
  18245. name: "Front (Dressed",
  18246. image: {
  18247. source: "./media/characters/de'vout/front-dressed.svg",
  18248. extra: 1443 / 1328,
  18249. bottom: 0.025
  18250. }
  18251. },
  18252. backDressed: {
  18253. height: math.unit(9.5, "feet"),
  18254. weight: math.unit(600, "lb"),
  18255. name: "Back (Dressed",
  18256. image: {
  18257. source: "./media/characters/de'vout/back-dressed.svg",
  18258. extra: 1443 / 1328
  18259. }
  18260. },
  18261. },
  18262. [
  18263. {
  18264. name: "Normal",
  18265. height: math.unit(9.5, "feet"),
  18266. default: true
  18267. },
  18268. ]
  18269. ))
  18270. characterMakers.push(() => makeCharacter(
  18271. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18272. {
  18273. front: {
  18274. height: math.unit(8, "feet"),
  18275. weight: math.unit(225, "lb"),
  18276. name: "Front",
  18277. image: {
  18278. source: "./media/characters/talana/front.svg",
  18279. extra: 1410 / 1300,
  18280. bottom: 0.015
  18281. }
  18282. },
  18283. frontDressed: {
  18284. height: math.unit(8, "feet"),
  18285. weight: math.unit(225, "lb"),
  18286. name: "Front (Dressed",
  18287. image: {
  18288. source: "./media/characters/talana/front-dressed.svg",
  18289. extra: 1410 / 1300,
  18290. bottom: 0.015
  18291. }
  18292. },
  18293. },
  18294. [
  18295. {
  18296. name: "Normal",
  18297. height: math.unit(8, "feet"),
  18298. default: true
  18299. },
  18300. ]
  18301. ))
  18302. characterMakers.push(() => makeCharacter(
  18303. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18304. {
  18305. side: {
  18306. height: math.unit(7.2, "feet"),
  18307. weight: math.unit(150, "lb"),
  18308. name: "Side",
  18309. image: {
  18310. source: "./media/characters/xeauvok/side.svg",
  18311. extra: 1975 / 1523,
  18312. bottom: 0.07
  18313. }
  18314. },
  18315. },
  18316. [
  18317. {
  18318. name: "Normal",
  18319. height: math.unit(7.2, "feet"),
  18320. default: true
  18321. },
  18322. ]
  18323. ))
  18324. characterMakers.push(() => makeCharacter(
  18325. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18326. {
  18327. side: {
  18328. height: math.unit(10, "feet"),
  18329. weight: math.unit(900, "kg"),
  18330. name: "Side",
  18331. image: {
  18332. source: "./media/characters/zara/side.svg",
  18333. extra: 504 / 498
  18334. }
  18335. },
  18336. },
  18337. [
  18338. {
  18339. name: "Normal",
  18340. height: math.unit(10, "feet"),
  18341. default: true
  18342. },
  18343. ]
  18344. ))
  18345. characterMakers.push(() => makeCharacter(
  18346. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18347. {
  18348. side: {
  18349. height: math.unit(6, "feet"),
  18350. weight: math.unit(150, "lb"),
  18351. name: "Side",
  18352. image: {
  18353. source: "./media/characters/richard-dragon/side.svg",
  18354. extra: 845 / 340,
  18355. bottom: 0.017
  18356. }
  18357. },
  18358. maw: {
  18359. height: math.unit(2.97, "feet"),
  18360. name: "Maw",
  18361. image: {
  18362. source: "./media/characters/richard-dragon/maw.svg"
  18363. }
  18364. },
  18365. },
  18366. [
  18367. ]
  18368. ))
  18369. characterMakers.push(() => makeCharacter(
  18370. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18371. {
  18372. front: {
  18373. height: math.unit(4, "feet"),
  18374. weight: math.unit(100, "lb"),
  18375. name: "Front",
  18376. image: {
  18377. source: "./media/characters/richard-smeargle/front.svg",
  18378. extra: 2952 / 2820,
  18379. bottom: 0.028
  18380. }
  18381. },
  18382. },
  18383. [
  18384. {
  18385. name: "Normal",
  18386. height: math.unit(4, "feet"),
  18387. default: true
  18388. },
  18389. {
  18390. name: "Dynamax",
  18391. height: math.unit(20, "meters")
  18392. },
  18393. ]
  18394. ))
  18395. characterMakers.push(() => makeCharacter(
  18396. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18397. {
  18398. front: {
  18399. height: math.unit(6, "feet"),
  18400. weight: math.unit(110, "lb"),
  18401. name: "Front",
  18402. image: {
  18403. source: "./media/characters/klay/front.svg",
  18404. extra: 962 / 883,
  18405. bottom: 0.04
  18406. }
  18407. },
  18408. back: {
  18409. height: math.unit(6, "feet"),
  18410. weight: math.unit(110, "lb"),
  18411. name: "Back",
  18412. image: {
  18413. source: "./media/characters/klay/back.svg",
  18414. extra: 962 / 883
  18415. }
  18416. },
  18417. beans: {
  18418. height: math.unit(1.15, "feet"),
  18419. name: "Beans",
  18420. image: {
  18421. source: "./media/characters/klay/beans.svg"
  18422. }
  18423. },
  18424. },
  18425. [
  18426. {
  18427. name: "Micro",
  18428. height: math.unit(6, "inches")
  18429. },
  18430. {
  18431. name: "Mini",
  18432. height: math.unit(3, "feet")
  18433. },
  18434. {
  18435. name: "Normal",
  18436. height: math.unit(6, "feet"),
  18437. default: true
  18438. },
  18439. {
  18440. name: "Big",
  18441. height: math.unit(25, "feet")
  18442. },
  18443. {
  18444. name: "Macro",
  18445. height: math.unit(100, "feet")
  18446. },
  18447. {
  18448. name: "Megamacro",
  18449. height: math.unit(400, "feet")
  18450. },
  18451. ]
  18452. ))
  18453. characterMakers.push(() => makeCharacter(
  18454. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18455. {
  18456. front: {
  18457. height: math.unit(6, "feet"),
  18458. weight: math.unit(160, "lb"),
  18459. name: "Front",
  18460. image: {
  18461. source: "./media/characters/marcus/front.svg",
  18462. extra: 734 / 676,
  18463. bottom: 0.03
  18464. }
  18465. },
  18466. },
  18467. [
  18468. {
  18469. name: "Little",
  18470. height: math.unit(6, "feet")
  18471. },
  18472. {
  18473. name: "Normal",
  18474. height: math.unit(110, "feet"),
  18475. default: true
  18476. },
  18477. {
  18478. name: "Macro",
  18479. height: math.unit(250, "feet")
  18480. },
  18481. {
  18482. name: "Megamacro",
  18483. height: math.unit(1000, "feet")
  18484. },
  18485. ]
  18486. ))
  18487. characterMakers.push(() => makeCharacter(
  18488. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18489. {
  18490. front: {
  18491. height: math.unit(7, "feet"),
  18492. weight: math.unit(275, "lb"),
  18493. name: "Front",
  18494. image: {
  18495. source: "./media/characters/claude-delroute/front.svg",
  18496. extra: 230 / 214,
  18497. bottom: 0.007
  18498. }
  18499. },
  18500. side: {
  18501. height: math.unit(7, "feet"),
  18502. weight: math.unit(275, "lb"),
  18503. name: "Side",
  18504. image: {
  18505. source: "./media/characters/claude-delroute/side.svg",
  18506. extra: 222 / 214,
  18507. bottom: 0.01
  18508. }
  18509. },
  18510. back: {
  18511. height: math.unit(7, "feet"),
  18512. weight: math.unit(275, "lb"),
  18513. name: "Back",
  18514. image: {
  18515. source: "./media/characters/claude-delroute/back.svg",
  18516. extra: 230 / 214,
  18517. bottom: 0.015
  18518. }
  18519. },
  18520. maw: {
  18521. height: math.unit(0.6407, "meters"),
  18522. name: "Maw",
  18523. image: {
  18524. source: "./media/characters/claude-delroute/maw.svg"
  18525. }
  18526. },
  18527. },
  18528. [
  18529. {
  18530. name: "Normal",
  18531. height: math.unit(7, "feet"),
  18532. default: true
  18533. },
  18534. {
  18535. name: "Lorge",
  18536. height: math.unit(20, "feet")
  18537. },
  18538. ]
  18539. ))
  18540. characterMakers.push(() => makeCharacter(
  18541. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18542. {
  18543. front: {
  18544. height: math.unit(8 + 4 / 12, "feet"),
  18545. weight: math.unit(600, "lb"),
  18546. name: "Front",
  18547. image: {
  18548. source: "./media/characters/dragonien/front.svg",
  18549. extra: 100 / 94,
  18550. bottom: 3.3 / 103.3445
  18551. }
  18552. },
  18553. back: {
  18554. height: math.unit(8 + 4 / 12, "feet"),
  18555. weight: math.unit(600, "lb"),
  18556. name: "Back",
  18557. image: {
  18558. source: "./media/characters/dragonien/back.svg",
  18559. extra: 776 / 746,
  18560. bottom: 6.4 / 782.0616
  18561. }
  18562. },
  18563. foot: {
  18564. height: math.unit(1.54, "feet"),
  18565. name: "Foot",
  18566. image: {
  18567. source: "./media/characters/dragonien/foot.svg",
  18568. }
  18569. },
  18570. },
  18571. [
  18572. {
  18573. name: "Normal",
  18574. height: math.unit(8 + 4 / 12, "feet"),
  18575. default: true
  18576. },
  18577. {
  18578. name: "Macro",
  18579. height: math.unit(200, "feet")
  18580. },
  18581. {
  18582. name: "Megamacro",
  18583. height: math.unit(1, "mile")
  18584. },
  18585. {
  18586. name: "Gigamacro",
  18587. height: math.unit(1000, "miles")
  18588. },
  18589. ]
  18590. ))
  18591. characterMakers.push(() => makeCharacter(
  18592. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18593. {
  18594. front: {
  18595. height: math.unit(5 + 2 / 12, "feet"),
  18596. weight: math.unit(110, "lb"),
  18597. name: "Front",
  18598. image: {
  18599. source: "./media/characters/desta/front.svg",
  18600. extra: 767 / 726,
  18601. bottom: 11.7 / 779
  18602. }
  18603. },
  18604. back: {
  18605. height: math.unit(5 + 2 / 12, "feet"),
  18606. weight: math.unit(110, "lb"),
  18607. name: "Back",
  18608. image: {
  18609. source: "./media/characters/desta/back.svg",
  18610. extra: 777 / 728,
  18611. bottom: 6 / 784
  18612. }
  18613. },
  18614. frontAlt: {
  18615. height: math.unit(5 + 2 / 12, "feet"),
  18616. weight: math.unit(110, "lb"),
  18617. name: "Front",
  18618. image: {
  18619. source: "./media/characters/desta/front-alt.svg",
  18620. extra: 1482 / 1417
  18621. }
  18622. },
  18623. side: {
  18624. height: math.unit(5 + 2 / 12, "feet"),
  18625. weight: math.unit(110, "lb"),
  18626. name: "Side",
  18627. image: {
  18628. source: "./media/characters/desta/side.svg",
  18629. extra: 2579 / 2491,
  18630. bottom: 0.053
  18631. }
  18632. },
  18633. },
  18634. [
  18635. {
  18636. name: "Micro",
  18637. height: math.unit(6, "inches")
  18638. },
  18639. {
  18640. name: "Normal",
  18641. height: math.unit(5 + 2 / 12, "feet"),
  18642. default: true
  18643. },
  18644. {
  18645. name: "Macro",
  18646. height: math.unit(62, "feet")
  18647. },
  18648. {
  18649. name: "Megamacro",
  18650. height: math.unit(1800, "feet")
  18651. },
  18652. ]
  18653. ))
  18654. characterMakers.push(() => makeCharacter(
  18655. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18656. {
  18657. front: {
  18658. height: math.unit(10, "feet"),
  18659. weight: math.unit(700, "lb"),
  18660. name: "Front",
  18661. image: {
  18662. source: "./media/characters/storm-alystar/front.svg",
  18663. extra: 2112 / 1898,
  18664. bottom: 0.034
  18665. }
  18666. },
  18667. },
  18668. [
  18669. {
  18670. name: "Micro",
  18671. height: math.unit(3.5, "inches")
  18672. },
  18673. {
  18674. name: "Normal",
  18675. height: math.unit(10, "feet"),
  18676. default: true
  18677. },
  18678. {
  18679. name: "Macro",
  18680. height: math.unit(400, "feet")
  18681. },
  18682. {
  18683. name: "Deific",
  18684. height: math.unit(60, "miles")
  18685. },
  18686. ]
  18687. ))
  18688. characterMakers.push(() => makeCharacter(
  18689. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18690. {
  18691. front: {
  18692. height: math.unit(2.35, "meters"),
  18693. weight: math.unit(119, "kg"),
  18694. name: "Front",
  18695. image: {
  18696. source: "./media/characters/ilia/front.svg",
  18697. extra: 1285 / 1255,
  18698. bottom: 0.06
  18699. }
  18700. },
  18701. },
  18702. [
  18703. {
  18704. name: "Normal",
  18705. height: math.unit(2.35, "meters")
  18706. },
  18707. {
  18708. name: "Macro",
  18709. height: math.unit(140, "meters"),
  18710. default: true
  18711. },
  18712. {
  18713. name: "Megamacro",
  18714. height: math.unit(100, "miles")
  18715. },
  18716. ]
  18717. ))
  18718. characterMakers.push(() => makeCharacter(
  18719. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18720. {
  18721. front: {
  18722. height: math.unit(6 + 5 / 12, "feet"),
  18723. weight: math.unit(190, "lb"),
  18724. name: "Front",
  18725. image: {
  18726. source: "./media/characters/kingdead/front.svg",
  18727. extra: 1228 / 1177
  18728. }
  18729. },
  18730. },
  18731. [
  18732. {
  18733. name: "Micro",
  18734. height: math.unit(7, "inches")
  18735. },
  18736. {
  18737. name: "Normal",
  18738. height: math.unit(6 + 5 / 12, "feet")
  18739. },
  18740. {
  18741. name: "Macro",
  18742. height: math.unit(150, "feet"),
  18743. default: true
  18744. },
  18745. {
  18746. name: "Megamacro",
  18747. height: math.unit(200, "miles")
  18748. },
  18749. ]
  18750. ))
  18751. characterMakers.push(() => makeCharacter(
  18752. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18753. {
  18754. front: {
  18755. height: math.unit(8, "feet"),
  18756. weight: math.unit(600, "lb"),
  18757. name: "Front",
  18758. image: {
  18759. source: "./media/characters/kyrehx/front.svg",
  18760. extra: 1195 / 1095,
  18761. bottom: 0.034
  18762. }
  18763. },
  18764. },
  18765. [
  18766. {
  18767. name: "Micro",
  18768. height: math.unit(2, "inches")
  18769. },
  18770. {
  18771. name: "Normal",
  18772. height: math.unit(8, "feet"),
  18773. default: true
  18774. },
  18775. {
  18776. name: "Macro",
  18777. height: math.unit(255, "feet")
  18778. },
  18779. ]
  18780. ))
  18781. characterMakers.push(() => makeCharacter(
  18782. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18783. {
  18784. front: {
  18785. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18786. weight: math.unit(184, "lb"),
  18787. name: "Front",
  18788. image: {
  18789. source: "./media/characters/xang/front.svg",
  18790. extra: 845 / 755
  18791. }
  18792. },
  18793. },
  18794. [
  18795. {
  18796. name: "Normal",
  18797. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18798. default: true
  18799. },
  18800. {
  18801. name: "Macro",
  18802. height: math.unit(0.935 * 146, "feet")
  18803. },
  18804. {
  18805. name: "Megamacro",
  18806. height: math.unit(0.935 * 3, "miles")
  18807. },
  18808. ]
  18809. ))
  18810. characterMakers.push(() => makeCharacter(
  18811. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18812. {
  18813. frontDressed: {
  18814. height: math.unit(5 + 7 / 12, "feet"),
  18815. weight: math.unit(140, "lb"),
  18816. name: "Front (Dressed)",
  18817. image: {
  18818. source: "./media/characters/doc-weardno/front-dressed.svg",
  18819. extra: 263 / 234
  18820. }
  18821. },
  18822. backDressed: {
  18823. height: math.unit(5 + 7 / 12, "feet"),
  18824. weight: math.unit(140, "lb"),
  18825. name: "Back (Dressed)",
  18826. image: {
  18827. source: "./media/characters/doc-weardno/back-dressed.svg",
  18828. extra: 266 / 238
  18829. }
  18830. },
  18831. front: {
  18832. height: math.unit(5 + 7 / 12, "feet"),
  18833. weight: math.unit(140, "lb"),
  18834. name: "Front",
  18835. image: {
  18836. source: "./media/characters/doc-weardno/front.svg",
  18837. extra: 254 / 233
  18838. }
  18839. },
  18840. },
  18841. [
  18842. {
  18843. name: "Micro",
  18844. height: math.unit(3, "inches")
  18845. },
  18846. {
  18847. name: "Normal",
  18848. height: math.unit(5 + 7 / 12, "feet"),
  18849. default: true
  18850. },
  18851. {
  18852. name: "Macro",
  18853. height: math.unit(25, "feet")
  18854. },
  18855. {
  18856. name: "Megamacro",
  18857. height: math.unit(2, "miles")
  18858. },
  18859. ]
  18860. ))
  18861. characterMakers.push(() => makeCharacter(
  18862. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18863. {
  18864. front: {
  18865. height: math.unit(6 + 2 / 12, "feet"),
  18866. weight: math.unit(153, "lb"),
  18867. name: "Front",
  18868. image: {
  18869. source: "./media/characters/seth-whilst/front.svg",
  18870. bottom: 0.07
  18871. }
  18872. },
  18873. },
  18874. [
  18875. {
  18876. name: "Micro",
  18877. height: math.unit(5, "inches")
  18878. },
  18879. {
  18880. name: "Normal",
  18881. height: math.unit(6 + 2 / 12, "feet"),
  18882. default: true
  18883. },
  18884. ]
  18885. ))
  18886. characterMakers.push(() => makeCharacter(
  18887. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18888. {
  18889. front: {
  18890. height: math.unit(3, "inches"),
  18891. weight: math.unit(8, "grams"),
  18892. name: "Front",
  18893. image: {
  18894. source: "./media/characters/pocket-jabari/front.svg",
  18895. extra: 1024 / 974,
  18896. bottom: 0.039
  18897. }
  18898. },
  18899. },
  18900. [
  18901. {
  18902. name: "Minimicro",
  18903. height: math.unit(8, "mm")
  18904. },
  18905. {
  18906. name: "Micro",
  18907. height: math.unit(3, "inches"),
  18908. default: true
  18909. },
  18910. {
  18911. name: "Normal",
  18912. height: math.unit(3, "feet")
  18913. },
  18914. ]
  18915. ))
  18916. characterMakers.push(() => makeCharacter(
  18917. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18918. {
  18919. front: {
  18920. height: math.unit(15, "feet"),
  18921. weight: math.unit(3280, "lb"),
  18922. name: "Front",
  18923. image: {
  18924. source: "./media/characters/sapphy/front.svg",
  18925. extra: 671 / 577,
  18926. bottom: 0.085
  18927. }
  18928. },
  18929. back: {
  18930. height: math.unit(15, "feet"),
  18931. weight: math.unit(3280, "lb"),
  18932. name: "Back",
  18933. image: {
  18934. source: "./media/characters/sapphy/back.svg",
  18935. extra: 631 / 607,
  18936. bottom: 0.045
  18937. }
  18938. },
  18939. },
  18940. [
  18941. {
  18942. name: "Normal",
  18943. height: math.unit(15, "feet")
  18944. },
  18945. {
  18946. name: "Casual Macro",
  18947. height: math.unit(120, "feet")
  18948. },
  18949. {
  18950. name: "Macro",
  18951. height: math.unit(2150, "feet"),
  18952. default: true
  18953. },
  18954. {
  18955. name: "Megamacro",
  18956. height: math.unit(8, "miles")
  18957. },
  18958. {
  18959. name: "Galaxy Mom",
  18960. height: math.unit(6, "megalightyears")
  18961. },
  18962. ]
  18963. ))
  18964. characterMakers.push(() => makeCharacter(
  18965. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18966. {
  18967. front: {
  18968. height: math.unit(6, "feet"),
  18969. weight: math.unit(170, "lb"),
  18970. name: "Front",
  18971. image: {
  18972. source: "./media/characters/kiro/front.svg",
  18973. extra: 1064 / 1012,
  18974. bottom: 0.052
  18975. }
  18976. },
  18977. },
  18978. [
  18979. {
  18980. name: "Micro",
  18981. height: math.unit(6, "inches")
  18982. },
  18983. {
  18984. name: "Normal",
  18985. height: math.unit(6, "feet"),
  18986. default: true
  18987. },
  18988. {
  18989. name: "Macro",
  18990. height: math.unit(72, "feet")
  18991. },
  18992. ]
  18993. ))
  18994. characterMakers.push(() => makeCharacter(
  18995. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18996. {
  18997. front: {
  18998. height: math.unit(5 + 9 / 12, "feet"),
  18999. weight: math.unit(175, "lb"),
  19000. name: "Front",
  19001. image: {
  19002. source: "./media/characters/irishfox/front.svg",
  19003. extra: 1912 / 1680,
  19004. bottom: 0.02
  19005. }
  19006. },
  19007. },
  19008. [
  19009. {
  19010. name: "Nano",
  19011. height: math.unit(1, "mm")
  19012. },
  19013. {
  19014. name: "Micro",
  19015. height: math.unit(2, "inches")
  19016. },
  19017. {
  19018. name: "Normal",
  19019. height: math.unit(5 + 9 / 12, "feet"),
  19020. default: true
  19021. },
  19022. {
  19023. name: "Macro",
  19024. height: math.unit(45, "feet")
  19025. },
  19026. ]
  19027. ))
  19028. characterMakers.push(() => makeCharacter(
  19029. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19030. {
  19031. front: {
  19032. height: math.unit(6 + 1 / 12, "feet"),
  19033. weight: math.unit(75, "lb"),
  19034. name: "Front",
  19035. image: {
  19036. source: "./media/characters/aronai-sieyes/front.svg",
  19037. extra: 1556 / 1480,
  19038. bottom: 0.015
  19039. }
  19040. },
  19041. side: {
  19042. height: math.unit(6 + 1 / 12, "feet"),
  19043. weight: math.unit(75, "lb"),
  19044. name: "Side",
  19045. image: {
  19046. source: "./media/characters/aronai-sieyes/side.svg",
  19047. extra: 1433 / 1390,
  19048. bottom: 0.0393
  19049. }
  19050. },
  19051. back: {
  19052. height: math.unit(6 + 1 / 12, "feet"),
  19053. weight: math.unit(75, "lb"),
  19054. name: "Back",
  19055. image: {
  19056. source: "./media/characters/aronai-sieyes/back.svg",
  19057. extra: 1544 / 1494,
  19058. bottom: 0.02
  19059. }
  19060. },
  19061. frontClothed: {
  19062. height: math.unit(6 + 1 / 12, "feet"),
  19063. weight: math.unit(75, "lb"),
  19064. name: "Front (Clothed)",
  19065. image: {
  19066. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  19067. extra: 1582 / 1527
  19068. }
  19069. },
  19070. feral: {
  19071. height: math.unit(18, "feet"),
  19072. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19073. name: "Feral",
  19074. image: {
  19075. source: "./media/characters/aronai-sieyes/feral.svg",
  19076. extra: 1530 / 1240,
  19077. bottom: 0.035
  19078. }
  19079. },
  19080. },
  19081. [
  19082. {
  19083. name: "Micro",
  19084. height: math.unit(2, "inches")
  19085. },
  19086. {
  19087. name: "Normal",
  19088. height: math.unit(6 + 1 / 12, "feet"),
  19089. default: true
  19090. }
  19091. ]
  19092. ))
  19093. characterMakers.push(() => makeCharacter(
  19094. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19095. {
  19096. front: {
  19097. height: math.unit(12, "feet"),
  19098. weight: math.unit(410, "kg"),
  19099. name: "Front",
  19100. image: {
  19101. source: "./media/characters/xuna/front.svg",
  19102. extra: 2184 / 1980
  19103. }
  19104. },
  19105. side: {
  19106. height: math.unit(12, "feet"),
  19107. weight: math.unit(410, "kg"),
  19108. name: "Side",
  19109. image: {
  19110. source: "./media/characters/xuna/side.svg",
  19111. extra: 2184 / 1980
  19112. }
  19113. },
  19114. back: {
  19115. height: math.unit(12, "feet"),
  19116. weight: math.unit(410, "kg"),
  19117. name: "Back",
  19118. image: {
  19119. source: "./media/characters/xuna/back.svg",
  19120. extra: 2184 / 1980
  19121. }
  19122. },
  19123. },
  19124. [
  19125. {
  19126. name: "Nano glow",
  19127. height: math.unit(10, "nm")
  19128. },
  19129. {
  19130. name: "Micro floof",
  19131. height: math.unit(0.3, "m")
  19132. },
  19133. {
  19134. name: "Huggable softy boi",
  19135. height: math.unit(3.6576, "m"),
  19136. default: true
  19137. },
  19138. {
  19139. name: "Admirable floof",
  19140. height: math.unit(80, "meters")
  19141. },
  19142. {
  19143. name: "Gentle macro",
  19144. height: math.unit(300, "meters")
  19145. },
  19146. {
  19147. name: "Very careful floof",
  19148. height: math.unit(3200, "meters")
  19149. },
  19150. {
  19151. name: "The mega floof",
  19152. height: math.unit(36000, "meters")
  19153. },
  19154. {
  19155. name: "Giga-fur-Wicker",
  19156. height: math.unit(4800000, "meters")
  19157. },
  19158. {
  19159. name: "Licky world",
  19160. height: math.unit(20000000, "meters")
  19161. },
  19162. {
  19163. name: "Floofy cyan sun",
  19164. height: math.unit(1500000000, "meters")
  19165. },
  19166. {
  19167. name: "Milky Wicker",
  19168. height: math.unit(1000000000000000000000, "meters")
  19169. },
  19170. {
  19171. name: "The observing Wicker",
  19172. height: math.unit(999999999999999999999999999, "meters")
  19173. },
  19174. ]
  19175. ))
  19176. characterMakers.push(() => makeCharacter(
  19177. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19178. {
  19179. front: {
  19180. height: math.unit(5 + 9 / 12, "feet"),
  19181. weight: math.unit(150, "lb"),
  19182. name: "Front",
  19183. image: {
  19184. source: "./media/characters/arokha-sieyes/front.svg",
  19185. extra: 1425 / 1284,
  19186. bottom: 0.05
  19187. }
  19188. },
  19189. },
  19190. [
  19191. {
  19192. name: "Normal",
  19193. height: math.unit(5 + 9 / 12, "feet")
  19194. },
  19195. {
  19196. name: "Macro",
  19197. height: math.unit(30, "meters"),
  19198. default: true
  19199. },
  19200. ]
  19201. ))
  19202. characterMakers.push(() => makeCharacter(
  19203. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19204. {
  19205. front: {
  19206. height: math.unit(6, "feet"),
  19207. weight: math.unit(180, "lb"),
  19208. name: "Front",
  19209. image: {
  19210. source: "./media/characters/arokh-sieyes/front.svg",
  19211. extra: 1830 / 1769,
  19212. bottom: 0.01
  19213. }
  19214. },
  19215. },
  19216. [
  19217. {
  19218. name: "Normal",
  19219. height: math.unit(6, "feet")
  19220. },
  19221. {
  19222. name: "Macro",
  19223. height: math.unit(30, "meters"),
  19224. default: true
  19225. },
  19226. ]
  19227. ))
  19228. characterMakers.push(() => makeCharacter(
  19229. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19230. {
  19231. side: {
  19232. height: math.unit(13 + 1 / 12, "feet"),
  19233. weight: math.unit(8.5, "tonnes"),
  19234. name: "Side",
  19235. image: {
  19236. source: "./media/characters/goldeneye/side.svg",
  19237. extra: 1182 / 778,
  19238. bottom: 0.067
  19239. }
  19240. },
  19241. paw: {
  19242. height: math.unit(3.4, "feet"),
  19243. name: "Paw",
  19244. image: {
  19245. source: "./media/characters/goldeneye/paw.svg"
  19246. }
  19247. },
  19248. },
  19249. [
  19250. {
  19251. name: "Normal",
  19252. height: math.unit(13 + 1 / 12, "feet"),
  19253. default: true
  19254. },
  19255. ]
  19256. ))
  19257. characterMakers.push(() => makeCharacter(
  19258. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19259. {
  19260. front: {
  19261. height: math.unit(6 + 1 / 12, "feet"),
  19262. weight: math.unit(210, "lb"),
  19263. name: "Front",
  19264. image: {
  19265. source: "./media/characters/leonardo-lycheborne/front.svg",
  19266. extra: 776/723,
  19267. bottom: 34/810
  19268. }
  19269. },
  19270. side: {
  19271. height: math.unit(6 + 1 / 12, "feet"),
  19272. weight: math.unit(210, "lb"),
  19273. name: "Side",
  19274. image: {
  19275. source: "./media/characters/leonardo-lycheborne/side.svg",
  19276. extra: 780/728,
  19277. bottom: 12/792
  19278. }
  19279. },
  19280. back: {
  19281. height: math.unit(6 + 1 / 12, "feet"),
  19282. weight: math.unit(210, "lb"),
  19283. name: "Back",
  19284. image: {
  19285. source: "./media/characters/leonardo-lycheborne/back.svg",
  19286. extra: 775/721,
  19287. bottom: 17/792
  19288. }
  19289. },
  19290. hand: {
  19291. height: math.unit(1.08, "feet"),
  19292. name: "Hand",
  19293. image: {
  19294. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19295. }
  19296. },
  19297. foot: {
  19298. height: math.unit(1.32, "feet"),
  19299. name: "Foot",
  19300. image: {
  19301. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19302. }
  19303. },
  19304. maw: {
  19305. height: math.unit(1, "feet"),
  19306. name: "Maw",
  19307. image: {
  19308. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19309. }
  19310. },
  19311. were: {
  19312. height: math.unit(20, "feet"),
  19313. weight: math.unit(7800, "lb"),
  19314. name: "Were",
  19315. image: {
  19316. source: "./media/characters/leonardo-lycheborne/were.svg",
  19317. extra: 1224/1165,
  19318. bottom: 72/1296
  19319. }
  19320. },
  19321. feral: {
  19322. height: math.unit(7.5, "feet"),
  19323. weight: math.unit(600, "lb"),
  19324. name: "Feral",
  19325. image: {
  19326. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19327. extra: 797/702,
  19328. bottom: 139/936
  19329. }
  19330. },
  19331. taur: {
  19332. height: math.unit(11, "feet"),
  19333. weight: math.unit(3300, "lb"),
  19334. name: "Taur",
  19335. image: {
  19336. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19337. extra: 1271/1197,
  19338. bottom: 47/1318
  19339. }
  19340. },
  19341. barghest: {
  19342. height: math.unit(11, "feet"),
  19343. weight: math.unit(1300, "lb"),
  19344. name: "Barghest",
  19345. image: {
  19346. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19347. extra: 1291/1204,
  19348. bottom: 37/1328
  19349. }
  19350. },
  19351. dick: {
  19352. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19353. name: "Dick",
  19354. image: {
  19355. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19356. }
  19357. },
  19358. dickWere: {
  19359. height: math.unit((20) / 3.8, "feet"),
  19360. name: "Dick (Were)",
  19361. image: {
  19362. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19363. }
  19364. },
  19365. },
  19366. [
  19367. {
  19368. name: "Normal",
  19369. height: math.unit(6 + 1 / 12, "feet"),
  19370. default: true
  19371. },
  19372. ]
  19373. ))
  19374. characterMakers.push(() => makeCharacter(
  19375. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19376. {
  19377. front: {
  19378. height: math.unit(10, "feet"),
  19379. weight: math.unit(350, "lb"),
  19380. name: "Front",
  19381. image: {
  19382. source: "./media/characters/jet/front.svg",
  19383. extra: 2050 / 1980,
  19384. bottom: 0.013
  19385. }
  19386. },
  19387. back: {
  19388. height: math.unit(10, "feet"),
  19389. weight: math.unit(350, "lb"),
  19390. name: "Back",
  19391. image: {
  19392. source: "./media/characters/jet/back.svg",
  19393. extra: 2050 / 1980,
  19394. bottom: 0.013
  19395. }
  19396. },
  19397. },
  19398. [
  19399. {
  19400. name: "Micro",
  19401. height: math.unit(6, "inches")
  19402. },
  19403. {
  19404. name: "Normal",
  19405. height: math.unit(10, "feet"),
  19406. default: true
  19407. },
  19408. {
  19409. name: "Macro",
  19410. height: math.unit(100, "feet")
  19411. },
  19412. ]
  19413. ))
  19414. characterMakers.push(() => makeCharacter(
  19415. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19416. {
  19417. front: {
  19418. height: math.unit(15, "feet"),
  19419. weight: math.unit(2800, "lb"),
  19420. name: "Front",
  19421. image: {
  19422. source: "./media/characters/tanarath/front.svg",
  19423. extra: 2392 / 2220,
  19424. bottom: 0.03
  19425. }
  19426. },
  19427. back: {
  19428. height: math.unit(15, "feet"),
  19429. weight: math.unit(2800, "lb"),
  19430. name: "Back",
  19431. image: {
  19432. source: "./media/characters/tanarath/back.svg",
  19433. extra: 2392 / 2220,
  19434. bottom: 0.03
  19435. }
  19436. },
  19437. },
  19438. [
  19439. {
  19440. name: "Normal",
  19441. height: math.unit(15, "feet"),
  19442. default: true
  19443. },
  19444. ]
  19445. ))
  19446. characterMakers.push(() => makeCharacter(
  19447. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19448. {
  19449. front: {
  19450. height: math.unit(7 + 1 / 12, "feet"),
  19451. weight: math.unit(175, "lb"),
  19452. name: "Front",
  19453. image: {
  19454. source: "./media/characters/patty-cattybatty/front.svg",
  19455. extra: 908 / 874,
  19456. bottom: 0.025
  19457. }
  19458. },
  19459. },
  19460. [
  19461. {
  19462. name: "Micro",
  19463. height: math.unit(1, "inch")
  19464. },
  19465. {
  19466. name: "Normal",
  19467. height: math.unit(7 + 1 / 12, "feet")
  19468. },
  19469. {
  19470. name: "Mini Macro",
  19471. height: math.unit(155, "feet")
  19472. },
  19473. {
  19474. name: "Macro",
  19475. height: math.unit(1077, "feet")
  19476. },
  19477. {
  19478. name: "Mega Macro",
  19479. height: math.unit(47650, "feet"),
  19480. default: true
  19481. },
  19482. {
  19483. name: "Giga Macro",
  19484. height: math.unit(440, "miles")
  19485. },
  19486. {
  19487. name: "Tera Macro",
  19488. height: math.unit(8700, "miles")
  19489. },
  19490. {
  19491. name: "Planetary Macro",
  19492. height: math.unit(32700, "miles")
  19493. },
  19494. {
  19495. name: "Solar Macro",
  19496. height: math.unit(550000, "miles")
  19497. },
  19498. {
  19499. name: "Celestial Macro",
  19500. height: math.unit(2.5, "AU")
  19501. },
  19502. ]
  19503. ))
  19504. characterMakers.push(() => makeCharacter(
  19505. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19506. {
  19507. front: {
  19508. height: math.unit(4 + 5 / 12, "feet"),
  19509. weight: math.unit(90, "lb"),
  19510. name: "Front",
  19511. image: {
  19512. source: "./media/characters/cappu/front.svg",
  19513. extra: 1247 / 1152,
  19514. bottom: 0.012
  19515. }
  19516. },
  19517. },
  19518. [
  19519. {
  19520. name: "Normal",
  19521. height: math.unit(4 + 5 / 12, "feet"),
  19522. default: true
  19523. },
  19524. ]
  19525. ))
  19526. characterMakers.push(() => makeCharacter(
  19527. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19528. {
  19529. frontDressed: {
  19530. height: math.unit(70, "cm"),
  19531. weight: math.unit(6, "kg"),
  19532. name: "Front (Dressed)",
  19533. image: {
  19534. source: "./media/characters/sebi/front-dressed.svg",
  19535. extra: 713.5 / 686.5,
  19536. bottom: 0.003
  19537. }
  19538. },
  19539. front: {
  19540. height: math.unit(70, "cm"),
  19541. weight: math.unit(5, "kg"),
  19542. name: "Front",
  19543. image: {
  19544. source: "./media/characters/sebi/front.svg",
  19545. extra: 713.5 / 686.5,
  19546. bottom: 0.003
  19547. }
  19548. }
  19549. },
  19550. [
  19551. {
  19552. name: "Normal",
  19553. height: math.unit(70, "cm"),
  19554. default: true
  19555. },
  19556. {
  19557. name: "Macro",
  19558. height: math.unit(8, "meters")
  19559. },
  19560. ]
  19561. ))
  19562. characterMakers.push(() => makeCharacter(
  19563. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19564. {
  19565. front: {
  19566. height: math.unit(6, "feet"),
  19567. weight: math.unit(150, "lb"),
  19568. name: "Front",
  19569. image: {
  19570. source: "./media/characters/typhek/front.svg",
  19571. extra: 1948 / 1929,
  19572. bottom: 0.025
  19573. }
  19574. },
  19575. side: {
  19576. height: math.unit(6, "feet"),
  19577. weight: math.unit(150, "lb"),
  19578. name: "Side",
  19579. image: {
  19580. source: "./media/characters/typhek/side.svg",
  19581. extra: 2034 / 2010,
  19582. bottom: 0.003
  19583. }
  19584. },
  19585. back: {
  19586. height: math.unit(6, "feet"),
  19587. weight: math.unit(150, "lb"),
  19588. name: "Back",
  19589. image: {
  19590. source: "./media/characters/typhek/back.svg",
  19591. extra: 2005 / 1978,
  19592. bottom: 0.004
  19593. }
  19594. },
  19595. palm: {
  19596. height: math.unit(1.2, "feet"),
  19597. name: "Palm",
  19598. image: {
  19599. source: "./media/characters/typhek/palm.svg"
  19600. }
  19601. },
  19602. fist: {
  19603. height: math.unit(1.1, "feet"),
  19604. name: "Fist",
  19605. image: {
  19606. source: "./media/characters/typhek/fist.svg"
  19607. }
  19608. },
  19609. foot: {
  19610. height: math.unit(1.57, "feet"),
  19611. name: "Foot",
  19612. image: {
  19613. source: "./media/characters/typhek/foot.svg"
  19614. }
  19615. },
  19616. sole: {
  19617. height: math.unit(2.05, "feet"),
  19618. name: "Sole",
  19619. image: {
  19620. source: "./media/characters/typhek/sole.svg"
  19621. }
  19622. },
  19623. },
  19624. [
  19625. {
  19626. name: "Macro",
  19627. height: math.unit(40, "stories"),
  19628. default: true
  19629. },
  19630. {
  19631. name: "Megamacro",
  19632. height: math.unit(1, "mile")
  19633. },
  19634. {
  19635. name: "Gigamacro",
  19636. height: math.unit(4000, "solarradii")
  19637. },
  19638. {
  19639. name: "Universal",
  19640. height: math.unit(1.1, "universes")
  19641. }
  19642. ]
  19643. ))
  19644. characterMakers.push(() => makeCharacter(
  19645. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19646. {
  19647. side: {
  19648. height: math.unit(5 + 7 / 12, "feet"),
  19649. weight: math.unit(150, "lb"),
  19650. name: "Side",
  19651. image: {
  19652. source: "./media/characters/kassy/side.svg",
  19653. extra: 1280 / 1225,
  19654. bottom: 0.002
  19655. }
  19656. },
  19657. front: {
  19658. height: math.unit(5 + 7 / 12, "feet"),
  19659. weight: math.unit(150, "lb"),
  19660. name: "Front",
  19661. image: {
  19662. source: "./media/characters/kassy/front.svg",
  19663. extra: 1280 / 1225,
  19664. bottom: 0.025
  19665. }
  19666. },
  19667. back: {
  19668. height: math.unit(5 + 7 / 12, "feet"),
  19669. weight: math.unit(150, "lb"),
  19670. name: "Back",
  19671. image: {
  19672. source: "./media/characters/kassy/back.svg",
  19673. extra: 1280 / 1225,
  19674. bottom: 0.002
  19675. }
  19676. },
  19677. foot: {
  19678. height: math.unit(1.266, "feet"),
  19679. name: "Foot",
  19680. image: {
  19681. source: "./media/characters/kassy/foot.svg"
  19682. }
  19683. },
  19684. },
  19685. [
  19686. {
  19687. name: "Normal",
  19688. height: math.unit(5 + 7 / 12, "feet")
  19689. },
  19690. {
  19691. name: "Macro",
  19692. height: math.unit(137, "feet"),
  19693. default: true
  19694. },
  19695. {
  19696. name: "Megamacro",
  19697. height: math.unit(1, "mile")
  19698. },
  19699. ]
  19700. ))
  19701. characterMakers.push(() => makeCharacter(
  19702. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19703. {
  19704. front: {
  19705. height: math.unit(6 + 1 / 12, "feet"),
  19706. weight: math.unit(200, "lb"),
  19707. name: "Front",
  19708. image: {
  19709. source: "./media/characters/neil/front.svg",
  19710. extra: 1326 / 1250,
  19711. bottom: 0.023
  19712. }
  19713. },
  19714. },
  19715. [
  19716. {
  19717. name: "Normal",
  19718. height: math.unit(6 + 1 / 12, "feet"),
  19719. default: true
  19720. },
  19721. {
  19722. name: "Macro",
  19723. height: math.unit(200, "feet")
  19724. },
  19725. ]
  19726. ))
  19727. characterMakers.push(() => makeCharacter(
  19728. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19729. {
  19730. front: {
  19731. height: math.unit(5 + 9 / 12, "feet"),
  19732. weight: math.unit(190, "lb"),
  19733. name: "Front",
  19734. image: {
  19735. source: "./media/characters/atticus/front.svg",
  19736. extra: 2934 / 2785,
  19737. bottom: 0.025
  19738. }
  19739. },
  19740. },
  19741. [
  19742. {
  19743. name: "Normal",
  19744. height: math.unit(5 + 9 / 12, "feet"),
  19745. default: true
  19746. },
  19747. {
  19748. name: "Macro",
  19749. height: math.unit(180, "feet")
  19750. },
  19751. ]
  19752. ))
  19753. characterMakers.push(() => makeCharacter(
  19754. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19755. {
  19756. side: {
  19757. height: math.unit(9, "feet"),
  19758. weight: math.unit(650, "lb"),
  19759. name: "Side",
  19760. image: {
  19761. source: "./media/characters/milo/side.svg",
  19762. extra: 2644 / 2310,
  19763. bottom: 0.032
  19764. }
  19765. },
  19766. },
  19767. [
  19768. {
  19769. name: "Normal",
  19770. height: math.unit(9, "feet"),
  19771. default: true
  19772. },
  19773. {
  19774. name: "Macro",
  19775. height: math.unit(300, "feet")
  19776. },
  19777. ]
  19778. ))
  19779. characterMakers.push(() => makeCharacter(
  19780. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19781. {
  19782. side: {
  19783. height: math.unit(8, "meters"),
  19784. weight: math.unit(90000, "kg"),
  19785. name: "Side",
  19786. image: {
  19787. source: "./media/characters/ijzer/side.svg",
  19788. extra: 2756 / 1600,
  19789. bottom: 0.01
  19790. }
  19791. },
  19792. },
  19793. [
  19794. {
  19795. name: "Small",
  19796. height: math.unit(3, "meters")
  19797. },
  19798. {
  19799. name: "Normal",
  19800. height: math.unit(8, "meters"),
  19801. default: true
  19802. },
  19803. {
  19804. name: "Normal+",
  19805. height: math.unit(10, "meters")
  19806. },
  19807. {
  19808. name: "Bigger",
  19809. height: math.unit(24, "meters")
  19810. },
  19811. {
  19812. name: "Huge",
  19813. height: math.unit(80, "meters")
  19814. },
  19815. ]
  19816. ))
  19817. characterMakers.push(() => makeCharacter(
  19818. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19819. {
  19820. front: {
  19821. height: math.unit(6 + 2 / 12, "feet"),
  19822. weight: math.unit(153, "lb"),
  19823. name: "Front",
  19824. image: {
  19825. source: "./media/characters/luca-cervicum/front.svg",
  19826. extra: 370 / 327,
  19827. bottom: 0.015
  19828. }
  19829. },
  19830. back: {
  19831. height: math.unit(6 + 2 / 12, "feet"),
  19832. weight: math.unit(153, "lb"),
  19833. name: "Back",
  19834. image: {
  19835. source: "./media/characters/luca-cervicum/back.svg",
  19836. extra: 367 / 333,
  19837. bottom: 0.005
  19838. }
  19839. },
  19840. frontGear: {
  19841. height: math.unit(6 + 2 / 12, "feet"),
  19842. weight: math.unit(173, "lb"),
  19843. name: "Front (Gear)",
  19844. image: {
  19845. source: "./media/characters/luca-cervicum/front-gear.svg",
  19846. extra: 377 / 333,
  19847. bottom: 0.006
  19848. }
  19849. },
  19850. },
  19851. [
  19852. {
  19853. name: "Normal",
  19854. height: math.unit(6 + 2 / 12, "feet"),
  19855. default: true
  19856. },
  19857. ]
  19858. ))
  19859. characterMakers.push(() => makeCharacter(
  19860. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19861. {
  19862. front: {
  19863. height: math.unit(6 + 1 / 12, "feet"),
  19864. weight: math.unit(304, "lb"),
  19865. name: "Front",
  19866. image: {
  19867. source: "./media/characters/oliver/front.svg",
  19868. extra: 157 / 143,
  19869. bottom: 0.08
  19870. }
  19871. },
  19872. },
  19873. [
  19874. {
  19875. name: "Normal",
  19876. height: math.unit(6 + 1 / 12, "feet"),
  19877. default: true
  19878. },
  19879. ]
  19880. ))
  19881. characterMakers.push(() => makeCharacter(
  19882. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19883. {
  19884. front: {
  19885. height: math.unit(5 + 7 / 12, "feet"),
  19886. weight: math.unit(140, "lb"),
  19887. name: "Front",
  19888. image: {
  19889. source: "./media/characters/shane/front.svg",
  19890. extra: 304 / 289,
  19891. bottom: 0.005
  19892. }
  19893. },
  19894. },
  19895. [
  19896. {
  19897. name: "Normal",
  19898. height: math.unit(5 + 7 / 12, "feet"),
  19899. default: true
  19900. },
  19901. ]
  19902. ))
  19903. characterMakers.push(() => makeCharacter(
  19904. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19905. {
  19906. front: {
  19907. height: math.unit(5 + 9 / 12, "feet"),
  19908. weight: math.unit(178, "lb"),
  19909. name: "Front",
  19910. image: {
  19911. source: "./media/characters/shin/front.svg",
  19912. extra: 159 / 151,
  19913. bottom: 0.015
  19914. }
  19915. },
  19916. },
  19917. [
  19918. {
  19919. name: "Normal",
  19920. height: math.unit(5 + 9 / 12, "feet"),
  19921. default: true
  19922. },
  19923. ]
  19924. ))
  19925. characterMakers.push(() => makeCharacter(
  19926. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19927. {
  19928. front: {
  19929. height: math.unit(5 + 10 / 12, "feet"),
  19930. weight: math.unit(168, "lb"),
  19931. name: "Front",
  19932. image: {
  19933. source: "./media/characters/xerxes/front.svg",
  19934. extra: 282 / 260,
  19935. bottom: 0.045
  19936. }
  19937. },
  19938. },
  19939. [
  19940. {
  19941. name: "Normal",
  19942. height: math.unit(5 + 10 / 12, "feet"),
  19943. default: true
  19944. },
  19945. ]
  19946. ))
  19947. characterMakers.push(() => makeCharacter(
  19948. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19949. {
  19950. front: {
  19951. height: math.unit(6 + 7 / 12, "feet"),
  19952. weight: math.unit(208, "lb"),
  19953. name: "Front",
  19954. image: {
  19955. source: "./media/characters/chaska/front.svg",
  19956. extra: 332 / 319,
  19957. bottom: 0.015
  19958. }
  19959. },
  19960. },
  19961. [
  19962. {
  19963. name: "Normal",
  19964. height: math.unit(6 + 7 / 12, "feet"),
  19965. default: true
  19966. },
  19967. ]
  19968. ))
  19969. characterMakers.push(() => makeCharacter(
  19970. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19971. {
  19972. front: {
  19973. height: math.unit(5 + 8 / 12, "feet"),
  19974. weight: math.unit(208, "lb"),
  19975. name: "Front",
  19976. image: {
  19977. source: "./media/characters/enuk/front.svg",
  19978. extra: 437 / 406,
  19979. bottom: 0.02
  19980. }
  19981. },
  19982. },
  19983. [
  19984. {
  19985. name: "Normal",
  19986. height: math.unit(5 + 8 / 12, "feet"),
  19987. default: true
  19988. },
  19989. ]
  19990. ))
  19991. characterMakers.push(() => makeCharacter(
  19992. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19993. {
  19994. front: {
  19995. height: math.unit(5 + 10 / 12, "feet"),
  19996. weight: math.unit(252, "lb"),
  19997. name: "Front",
  19998. image: {
  19999. source: "./media/characters/bruun/front.svg",
  20000. extra: 197 / 187,
  20001. bottom: 0.012
  20002. }
  20003. },
  20004. },
  20005. [
  20006. {
  20007. name: "Normal",
  20008. height: math.unit(5 + 10 / 12, "feet"),
  20009. default: true
  20010. },
  20011. ]
  20012. ))
  20013. characterMakers.push(() => makeCharacter(
  20014. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20015. {
  20016. front: {
  20017. height: math.unit(6 + 10 / 12, "feet"),
  20018. weight: math.unit(255, "lb"),
  20019. name: "Front",
  20020. image: {
  20021. source: "./media/characters/alexeev/front.svg",
  20022. extra: 213 / 200,
  20023. bottom: 0.05
  20024. }
  20025. },
  20026. },
  20027. [
  20028. {
  20029. name: "Normal",
  20030. height: math.unit(6 + 10 / 12, "feet"),
  20031. default: true
  20032. },
  20033. ]
  20034. ))
  20035. characterMakers.push(() => makeCharacter(
  20036. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20037. {
  20038. front: {
  20039. height: math.unit(2 + 8 / 12, "feet"),
  20040. weight: math.unit(22, "lb"),
  20041. name: "Front",
  20042. image: {
  20043. source: "./media/characters/evelyn/front.svg",
  20044. extra: 208 / 180
  20045. }
  20046. },
  20047. },
  20048. [
  20049. {
  20050. name: "Normal",
  20051. height: math.unit(2 + 8 / 12, "feet"),
  20052. default: true
  20053. },
  20054. ]
  20055. ))
  20056. characterMakers.push(() => makeCharacter(
  20057. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20058. {
  20059. front: {
  20060. height: math.unit(5 + 9 / 12, "feet"),
  20061. weight: math.unit(139, "lb"),
  20062. name: "Front",
  20063. image: {
  20064. source: "./media/characters/inca/front.svg",
  20065. extra: 294 / 291,
  20066. bottom: 0.03
  20067. }
  20068. },
  20069. },
  20070. [
  20071. {
  20072. name: "Normal",
  20073. height: math.unit(5 + 9 / 12, "feet"),
  20074. default: true
  20075. },
  20076. ]
  20077. ))
  20078. characterMakers.push(() => makeCharacter(
  20079. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  20080. {
  20081. front: {
  20082. height: math.unit(5 + 1 / 12, "feet"),
  20083. weight: math.unit(84, "lb"),
  20084. name: "Front",
  20085. image: {
  20086. source: "./media/characters/magdalene/front.svg",
  20087. extra: 293 / 273
  20088. }
  20089. },
  20090. },
  20091. [
  20092. {
  20093. name: "Normal",
  20094. height: math.unit(5 + 1 / 12, "feet"),
  20095. default: true
  20096. },
  20097. ]
  20098. ))
  20099. characterMakers.push(() => makeCharacter(
  20100. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20101. {
  20102. front: {
  20103. height: math.unit(6 + 3 / 12, "feet"),
  20104. weight: math.unit(185, "lb"),
  20105. name: "Front",
  20106. image: {
  20107. source: "./media/characters/mera/front.svg",
  20108. extra: 291 / 277,
  20109. bottom: 0.03
  20110. }
  20111. },
  20112. },
  20113. [
  20114. {
  20115. name: "Normal",
  20116. height: math.unit(6 + 3 / 12, "feet"),
  20117. default: true
  20118. },
  20119. ]
  20120. ))
  20121. characterMakers.push(() => makeCharacter(
  20122. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20123. {
  20124. front: {
  20125. height: math.unit(6 + 7 / 12, "feet"),
  20126. weight: math.unit(160, "lb"),
  20127. name: "Front",
  20128. image: {
  20129. source: "./media/characters/ceres/front.svg",
  20130. extra: 1023 / 950,
  20131. bottom: 0.027
  20132. }
  20133. },
  20134. back: {
  20135. height: math.unit(6 + 7 / 12, "feet"),
  20136. weight: math.unit(160, "lb"),
  20137. name: "Back",
  20138. image: {
  20139. source: "./media/characters/ceres/back.svg",
  20140. extra: 1023 / 950
  20141. }
  20142. },
  20143. },
  20144. [
  20145. {
  20146. name: "Normal",
  20147. height: math.unit(6 + 7 / 12, "feet"),
  20148. default: true
  20149. },
  20150. ]
  20151. ))
  20152. characterMakers.push(() => makeCharacter(
  20153. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20154. {
  20155. front: {
  20156. height: math.unit(5 + 10 / 12, "feet"),
  20157. weight: math.unit(150, "lb"),
  20158. name: "Front",
  20159. image: {
  20160. source: "./media/characters/kris/front.svg",
  20161. extra: 885 / 803,
  20162. bottom: 0.03
  20163. }
  20164. },
  20165. },
  20166. [
  20167. {
  20168. name: "Normal",
  20169. height: math.unit(5 + 10 / 12, "feet"),
  20170. default: true
  20171. },
  20172. ]
  20173. ))
  20174. characterMakers.push(() => makeCharacter(
  20175. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20176. {
  20177. front: {
  20178. height: math.unit(7, "feet"),
  20179. weight: math.unit(120, "kg"),
  20180. name: "Front",
  20181. image: {
  20182. source: "./media/characters/taluthus/front.svg",
  20183. extra: 903 / 833,
  20184. bottom: 0.015
  20185. }
  20186. },
  20187. },
  20188. [
  20189. {
  20190. name: "Normal",
  20191. height: math.unit(7, "feet"),
  20192. default: true
  20193. },
  20194. {
  20195. name: "Macro",
  20196. height: math.unit(300, "feet")
  20197. },
  20198. ]
  20199. ))
  20200. characterMakers.push(() => makeCharacter(
  20201. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20202. {
  20203. front: {
  20204. height: math.unit(5 + 9 / 12, "feet"),
  20205. weight: math.unit(145, "lb"),
  20206. name: "Front",
  20207. image: {
  20208. source: "./media/characters/dawn/front.svg",
  20209. extra: 2094 / 2016,
  20210. bottom: 0.025
  20211. }
  20212. },
  20213. back: {
  20214. height: math.unit(5 + 9 / 12, "feet"),
  20215. weight: math.unit(160, "lb"),
  20216. name: "Back",
  20217. image: {
  20218. source: "./media/characters/dawn/back.svg",
  20219. extra: 2112 / 2080,
  20220. bottom: 0.005
  20221. }
  20222. },
  20223. },
  20224. [
  20225. {
  20226. name: "Normal",
  20227. height: math.unit(6 + 7 / 12, "feet"),
  20228. default: true
  20229. },
  20230. ]
  20231. ))
  20232. characterMakers.push(() => makeCharacter(
  20233. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20234. {
  20235. anthro: {
  20236. height: math.unit(8 + 3 / 12, "feet"),
  20237. weight: math.unit(450, "lb"),
  20238. name: "Anthro",
  20239. image: {
  20240. source: "./media/characters/arador/anthro.svg",
  20241. extra: 1835 / 1718,
  20242. bottom: 0.025
  20243. }
  20244. },
  20245. feral: {
  20246. height: math.unit(4, "feet"),
  20247. weight: math.unit(200, "lb"),
  20248. name: "Feral",
  20249. image: {
  20250. source: "./media/characters/arador/feral.svg",
  20251. extra: 1683 / 1514,
  20252. bottom: 0.07
  20253. }
  20254. },
  20255. },
  20256. [
  20257. {
  20258. name: "Normal",
  20259. height: math.unit(8 + 3 / 12, "feet")
  20260. },
  20261. {
  20262. name: "Macro",
  20263. height: math.unit(82.5, "feet"),
  20264. default: true
  20265. },
  20266. ]
  20267. ))
  20268. characterMakers.push(() => makeCharacter(
  20269. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20270. {
  20271. front: {
  20272. height: math.unit(5 + 10 / 12, "feet"),
  20273. weight: math.unit(125, "lb"),
  20274. name: "Front",
  20275. image: {
  20276. source: "./media/characters/dharsi/front.svg",
  20277. extra: 716 / 630,
  20278. bottom: 0.035
  20279. }
  20280. },
  20281. },
  20282. [
  20283. {
  20284. name: "Nano",
  20285. height: math.unit(100, "nm")
  20286. },
  20287. {
  20288. name: "Micro",
  20289. height: math.unit(2, "inches")
  20290. },
  20291. {
  20292. name: "Normal",
  20293. height: math.unit(5 + 10 / 12, "feet"),
  20294. default: true
  20295. },
  20296. {
  20297. name: "Macro",
  20298. height: math.unit(1000, "feet")
  20299. },
  20300. {
  20301. name: "Megamacro",
  20302. height: math.unit(10, "miles")
  20303. },
  20304. {
  20305. name: "Gigamacro",
  20306. height: math.unit(3000, "miles")
  20307. },
  20308. {
  20309. name: "Teramacro",
  20310. height: math.unit(500000, "miles")
  20311. },
  20312. {
  20313. name: "Teramacro+",
  20314. height: math.unit(30, "galaxies")
  20315. },
  20316. ]
  20317. ))
  20318. characterMakers.push(() => makeCharacter(
  20319. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20320. {
  20321. front: {
  20322. height: math.unit(6, "feet"),
  20323. weight: math.unit(150, "lb"),
  20324. name: "Front",
  20325. image: {
  20326. source: "./media/characters/deathy/front.svg",
  20327. extra: 1552 / 1463,
  20328. bottom: 0.025
  20329. }
  20330. },
  20331. side: {
  20332. height: math.unit(6, "feet"),
  20333. weight: math.unit(150, "lb"),
  20334. name: "Side",
  20335. image: {
  20336. source: "./media/characters/deathy/side.svg",
  20337. extra: 1604 / 1455,
  20338. bottom: 0.025
  20339. }
  20340. },
  20341. back: {
  20342. height: math.unit(6, "feet"),
  20343. weight: math.unit(150, "lb"),
  20344. name: "Back",
  20345. image: {
  20346. source: "./media/characters/deathy/back.svg",
  20347. extra: 1580 / 1463,
  20348. bottom: 0.005
  20349. }
  20350. },
  20351. },
  20352. [
  20353. {
  20354. name: "Micro",
  20355. height: math.unit(5, "millimeters")
  20356. },
  20357. {
  20358. name: "Normal",
  20359. height: math.unit(6 + 5 / 12, "feet"),
  20360. default: true
  20361. },
  20362. ]
  20363. ))
  20364. characterMakers.push(() => makeCharacter(
  20365. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20366. {
  20367. front: {
  20368. height: math.unit(16, "feet"),
  20369. weight: math.unit(4000, "lb"),
  20370. name: "Front",
  20371. image: {
  20372. source: "./media/characters/juniper/front.svg",
  20373. bottom: 0.04
  20374. }
  20375. },
  20376. },
  20377. [
  20378. {
  20379. name: "Normal",
  20380. height: math.unit(16, "feet"),
  20381. default: true
  20382. },
  20383. ]
  20384. ))
  20385. characterMakers.push(() => makeCharacter(
  20386. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20387. {
  20388. front: {
  20389. height: math.unit(6, "feet"),
  20390. weight: math.unit(150, "lb"),
  20391. name: "Front",
  20392. image: {
  20393. source: "./media/characters/hipster/front.svg",
  20394. extra: 1312 / 1209,
  20395. bottom: 0.025
  20396. }
  20397. },
  20398. back: {
  20399. height: math.unit(6, "feet"),
  20400. weight: math.unit(150, "lb"),
  20401. name: "Back",
  20402. image: {
  20403. source: "./media/characters/hipster/back.svg",
  20404. extra: 1281 / 1196,
  20405. bottom: 0.01
  20406. }
  20407. },
  20408. },
  20409. [
  20410. {
  20411. name: "Micro",
  20412. height: math.unit(1, "mm")
  20413. },
  20414. {
  20415. name: "Normal",
  20416. height: math.unit(4, "inches"),
  20417. default: true
  20418. },
  20419. {
  20420. name: "Macro",
  20421. height: math.unit(500, "feet")
  20422. },
  20423. {
  20424. name: "Megamacro",
  20425. height: math.unit(1000, "miles")
  20426. },
  20427. ]
  20428. ))
  20429. characterMakers.push(() => makeCharacter(
  20430. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20431. {
  20432. front: {
  20433. height: math.unit(6, "feet"),
  20434. weight: math.unit(150, "lb"),
  20435. name: "Front",
  20436. image: {
  20437. source: "./media/characters/tendirmuldr/front.svg",
  20438. extra: 1878 / 1772,
  20439. bottom: 0.015
  20440. }
  20441. },
  20442. },
  20443. [
  20444. {
  20445. name: "Megamacro",
  20446. height: math.unit(1500, "miles"),
  20447. default: true
  20448. },
  20449. ]
  20450. ))
  20451. characterMakers.push(() => makeCharacter(
  20452. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20453. {
  20454. front: {
  20455. height: math.unit(14, "feet"),
  20456. weight: math.unit(12000, "lb"),
  20457. name: "Front",
  20458. image: {
  20459. source: "./media/characters/mort/front.svg",
  20460. extra: 365 / 318,
  20461. bottom: 0.01
  20462. }
  20463. },
  20464. side: {
  20465. height: math.unit(14, "feet"),
  20466. weight: math.unit(12000, "lb"),
  20467. name: "Side",
  20468. image: {
  20469. source: "./media/characters/mort/side.svg",
  20470. extra: 365 / 318,
  20471. bottom: 0.052
  20472. },
  20473. default: true
  20474. },
  20475. back: {
  20476. height: math.unit(14, "feet"),
  20477. weight: math.unit(12000, "lb"),
  20478. name: "Back",
  20479. image: {
  20480. source: "./media/characters/mort/back.svg",
  20481. extra: 371 / 332,
  20482. bottom: 0.18
  20483. }
  20484. },
  20485. },
  20486. [
  20487. {
  20488. name: "Normal",
  20489. height: math.unit(14, "feet"),
  20490. default: true
  20491. },
  20492. ]
  20493. ))
  20494. characterMakers.push(() => makeCharacter(
  20495. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20496. {
  20497. front: {
  20498. height: math.unit(8, "feet"),
  20499. weight: math.unit(1, "ton"),
  20500. name: "Front",
  20501. image: {
  20502. source: "./media/characters/lycoa/front.svg",
  20503. extra: 1875 / 1789,
  20504. bottom: 0.022
  20505. }
  20506. },
  20507. back: {
  20508. height: math.unit(8, "feet"),
  20509. weight: math.unit(1, "ton"),
  20510. name: "Back",
  20511. image: {
  20512. source: "./media/characters/lycoa/back.svg",
  20513. extra: 1835 / 1781,
  20514. bottom: 0.03
  20515. }
  20516. },
  20517. head: {
  20518. height: math.unit(2.1, "feet"),
  20519. name: "Head",
  20520. image: {
  20521. source: "./media/characters/lycoa/head.svg"
  20522. }
  20523. },
  20524. tailmaw: {
  20525. height: math.unit(1.9, "feet"),
  20526. name: "Tailmaw",
  20527. image: {
  20528. source: "./media/characters/lycoa/tailmaw.svg"
  20529. }
  20530. },
  20531. tentacles: {
  20532. height: math.unit(2.1, "feet"),
  20533. name: "Tentacles",
  20534. image: {
  20535. source: "./media/characters/lycoa/tentacles.svg"
  20536. }
  20537. },
  20538. dick: {
  20539. height: math.unit(1.73, "feet"),
  20540. name: "Dick",
  20541. image: {
  20542. source: "./media/characters/lycoa/dick.svg"
  20543. }
  20544. },
  20545. },
  20546. [
  20547. {
  20548. name: "Normal",
  20549. height: math.unit(8, "feet"),
  20550. default: true
  20551. },
  20552. {
  20553. name: "Macro",
  20554. height: math.unit(30, "feet")
  20555. },
  20556. ]
  20557. ))
  20558. characterMakers.push(() => makeCharacter(
  20559. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20560. {
  20561. front: {
  20562. height: math.unit(4 + 2 / 12, "feet"),
  20563. weight: math.unit(70, "lb"),
  20564. name: "Front",
  20565. image: {
  20566. source: "./media/characters/naldara/front.svg",
  20567. extra: 841 / 720,
  20568. bottom: 0.04
  20569. }
  20570. },
  20571. naga: {
  20572. height: math.unit(23, "feet"),
  20573. weight: math.unit(15000, "kg"),
  20574. name: "Naga",
  20575. image: {
  20576. source: "./media/characters/naldara/naga.svg",
  20577. extra: 3290 / 2959,
  20578. bottom: 124 / 3432
  20579. }
  20580. },
  20581. },
  20582. [
  20583. {
  20584. name: "Normal",
  20585. height: math.unit(4 + 2 / 12, "feet"),
  20586. default: true
  20587. },
  20588. ]
  20589. ))
  20590. characterMakers.push(() => makeCharacter(
  20591. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20592. {
  20593. front: {
  20594. height: math.unit(13 + 7 / 12, "feet"),
  20595. weight: math.unit(1500, "lb"),
  20596. name: "Front",
  20597. image: {
  20598. source: "./media/characters/briar/front.svg",
  20599. extra: 626 / 596,
  20600. bottom: 0.08
  20601. }
  20602. },
  20603. },
  20604. [
  20605. {
  20606. name: "Normal",
  20607. height: math.unit(13 + 7 / 12, "feet"),
  20608. default: true
  20609. },
  20610. ]
  20611. ))
  20612. characterMakers.push(() => makeCharacter(
  20613. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20614. {
  20615. side: {
  20616. height: math.unit(10, "feet"),
  20617. weight: math.unit(500, "lb"),
  20618. name: "Side",
  20619. image: {
  20620. source: "./media/characters/vanguard/side.svg",
  20621. extra: 502 / 425,
  20622. bottom: 0.087
  20623. }
  20624. },
  20625. },
  20626. [
  20627. {
  20628. name: "Normal",
  20629. height: math.unit(10, "feet"),
  20630. default: true
  20631. },
  20632. ]
  20633. ))
  20634. characterMakers.push(() => makeCharacter(
  20635. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20636. {
  20637. front: {
  20638. height: math.unit(7.5, "feet"),
  20639. weight: math.unit(2, "lb"),
  20640. name: "Front",
  20641. image: {
  20642. source: "./media/characters/artemis/front.svg",
  20643. extra: 1192 / 1075,
  20644. bottom: 0.07
  20645. }
  20646. },
  20647. frontNsfw: {
  20648. height: math.unit(7.5, "feet"),
  20649. weight: math.unit(2, "lb"),
  20650. name: "Front (NSFW)",
  20651. image: {
  20652. source: "./media/characters/artemis/front-nsfw.svg",
  20653. extra: 1192 / 1075,
  20654. bottom: 0.07
  20655. }
  20656. },
  20657. frontNsfwer: {
  20658. height: math.unit(7.5, "feet"),
  20659. weight: math.unit(2, "lb"),
  20660. name: "Front (NSFW-er)",
  20661. image: {
  20662. source: "./media/characters/artemis/front-nsfwer.svg",
  20663. extra: 1192 / 1075,
  20664. bottom: 0.07
  20665. }
  20666. },
  20667. side: {
  20668. height: math.unit(7.5, "feet"),
  20669. weight: math.unit(2, "lb"),
  20670. name: "Side",
  20671. image: {
  20672. source: "./media/characters/artemis/side.svg",
  20673. extra: 1192 / 1075,
  20674. bottom: 0.07
  20675. }
  20676. },
  20677. sideNsfw: {
  20678. height: math.unit(7.5, "feet"),
  20679. weight: math.unit(2, "lb"),
  20680. name: "Side (NSFW)",
  20681. image: {
  20682. source: "./media/characters/artemis/side-nsfw.svg",
  20683. extra: 1192 / 1075,
  20684. bottom: 0.07
  20685. }
  20686. },
  20687. sideNsfwer: {
  20688. height: math.unit(7.5, "feet"),
  20689. weight: math.unit(2, "lb"),
  20690. name: "Side (NSFW-er)",
  20691. image: {
  20692. source: "./media/characters/artemis/side-nsfwer.svg",
  20693. extra: 1192 / 1075,
  20694. bottom: 0.07
  20695. }
  20696. },
  20697. maw: {
  20698. height: math.unit(1.1, "feet"),
  20699. name: "Maw",
  20700. image: {
  20701. source: "./media/characters/artemis/maw.svg"
  20702. }
  20703. },
  20704. stomach: {
  20705. height: math.unit(0.95, "feet"),
  20706. name: "Stomach",
  20707. image: {
  20708. source: "./media/characters/artemis/stomach.svg"
  20709. }
  20710. },
  20711. dickCanine: {
  20712. height: math.unit(1, "feet"),
  20713. name: "Dick (Canine)",
  20714. image: {
  20715. source: "./media/characters/artemis/dick-canine.svg"
  20716. }
  20717. },
  20718. dickEquine: {
  20719. height: math.unit(0.85, "feet"),
  20720. name: "Dick (Equine)",
  20721. image: {
  20722. source: "./media/characters/artemis/dick-equine.svg"
  20723. }
  20724. },
  20725. dickExotic: {
  20726. height: math.unit(0.85, "feet"),
  20727. name: "Dick (Exotic)",
  20728. image: {
  20729. source: "./media/characters/artemis/dick-exotic.svg"
  20730. }
  20731. },
  20732. },
  20733. [
  20734. {
  20735. name: "Normal",
  20736. height: math.unit(7.5, "feet"),
  20737. default: true
  20738. },
  20739. {
  20740. name: "Enlarged",
  20741. height: math.unit(12, "feet")
  20742. },
  20743. ]
  20744. ))
  20745. characterMakers.push(() => makeCharacter(
  20746. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20747. {
  20748. front: {
  20749. height: math.unit(5 + 3 / 12, "feet"),
  20750. weight: math.unit(160, "lb"),
  20751. name: "Front",
  20752. image: {
  20753. source: "./media/characters/kira/front.svg",
  20754. extra: 906 / 786,
  20755. bottom: 0.01
  20756. }
  20757. },
  20758. back: {
  20759. height: math.unit(5 + 3 / 12, "feet"),
  20760. weight: math.unit(160, "lb"),
  20761. name: "Back",
  20762. image: {
  20763. source: "./media/characters/kira/back.svg",
  20764. extra: 882 / 757,
  20765. bottom: 0.005
  20766. }
  20767. },
  20768. frontDressed: {
  20769. height: math.unit(5 + 3 / 12, "feet"),
  20770. weight: math.unit(160, "lb"),
  20771. name: "Front (Dressed)",
  20772. image: {
  20773. source: "./media/characters/kira/front-dressed.svg",
  20774. extra: 906 / 786,
  20775. bottom: 0.01
  20776. }
  20777. },
  20778. beans: {
  20779. height: math.unit(0.92, "feet"),
  20780. name: "Beans",
  20781. image: {
  20782. source: "./media/characters/kira/beans.svg"
  20783. }
  20784. },
  20785. },
  20786. [
  20787. {
  20788. name: "Normal",
  20789. height: math.unit(5 + 3 / 12, "feet"),
  20790. default: true
  20791. },
  20792. ]
  20793. ))
  20794. characterMakers.push(() => makeCharacter(
  20795. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20796. {
  20797. front: {
  20798. height: math.unit(5 + 4 / 12, "feet"),
  20799. weight: math.unit(145, "lb"),
  20800. name: "Front",
  20801. image: {
  20802. source: "./media/characters/scramble/front.svg",
  20803. extra: 763 / 727,
  20804. bottom: 0.05
  20805. }
  20806. },
  20807. back: {
  20808. height: math.unit(5 + 4 / 12, "feet"),
  20809. weight: math.unit(145, "lb"),
  20810. name: "Back",
  20811. image: {
  20812. source: "./media/characters/scramble/back.svg",
  20813. extra: 826 / 737,
  20814. bottom: 0.002
  20815. }
  20816. },
  20817. },
  20818. [
  20819. {
  20820. name: "Normal",
  20821. height: math.unit(5 + 4 / 12, "feet"),
  20822. default: true
  20823. },
  20824. ]
  20825. ))
  20826. characterMakers.push(() => makeCharacter(
  20827. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20828. {
  20829. side: {
  20830. height: math.unit(6 + 2 / 12, "feet"),
  20831. weight: math.unit(190, "lb"),
  20832. name: "Side",
  20833. image: {
  20834. source: "./media/characters/biscuit/side.svg",
  20835. extra: 858 / 791,
  20836. bottom: 0.044
  20837. }
  20838. },
  20839. },
  20840. [
  20841. {
  20842. name: "Normal",
  20843. height: math.unit(6 + 2 / 12, "feet"),
  20844. default: true
  20845. },
  20846. ]
  20847. ))
  20848. characterMakers.push(() => makeCharacter(
  20849. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20850. {
  20851. front: {
  20852. height: math.unit(5 + 2 / 12, "feet"),
  20853. weight: math.unit(120, "lb"),
  20854. name: "Front",
  20855. image: {
  20856. source: "./media/characters/poffin/front.svg",
  20857. extra: 786 / 680,
  20858. bottom: 0.005
  20859. }
  20860. },
  20861. },
  20862. [
  20863. {
  20864. name: "Normal",
  20865. height: math.unit(5 + 2 / 12, "feet"),
  20866. default: true
  20867. },
  20868. ]
  20869. ))
  20870. characterMakers.push(() => makeCharacter(
  20871. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20872. {
  20873. front: {
  20874. height: math.unit(6 + 3 / 12, "feet"),
  20875. weight: math.unit(519, "lb"),
  20876. name: "Front",
  20877. image: {
  20878. source: "./media/characters/dhari/front.svg",
  20879. extra: 1048 / 946,
  20880. bottom: 0.015
  20881. }
  20882. },
  20883. back: {
  20884. height: math.unit(6 + 3 / 12, "feet"),
  20885. weight: math.unit(519, "lb"),
  20886. name: "Back",
  20887. image: {
  20888. source: "./media/characters/dhari/back.svg",
  20889. extra: 1048 / 931,
  20890. bottom: 0.005
  20891. }
  20892. },
  20893. frontDressed: {
  20894. height: math.unit(6 + 3 / 12, "feet"),
  20895. weight: math.unit(519, "lb"),
  20896. name: "Front (Dressed)",
  20897. image: {
  20898. source: "./media/characters/dhari/front-dressed.svg",
  20899. extra: 1713 / 1546,
  20900. bottom: 0.02
  20901. }
  20902. },
  20903. backDressed: {
  20904. height: math.unit(6 + 3 / 12, "feet"),
  20905. weight: math.unit(519, "lb"),
  20906. name: "Back (Dressed)",
  20907. image: {
  20908. source: "./media/characters/dhari/back-dressed.svg",
  20909. extra: 1699 / 1537,
  20910. bottom: 0.01
  20911. }
  20912. },
  20913. maw: {
  20914. height: math.unit(0.95, "feet"),
  20915. name: "Maw",
  20916. image: {
  20917. source: "./media/characters/dhari/maw.svg"
  20918. }
  20919. },
  20920. wereFront: {
  20921. height: math.unit(12 + 8 / 12, "feet"),
  20922. weight: math.unit(4000, "lb"),
  20923. name: "Front (Were)",
  20924. image: {
  20925. source: "./media/characters/dhari/were-front.svg",
  20926. extra: 1065 / 969,
  20927. bottom: 0.015
  20928. }
  20929. },
  20930. wereBack: {
  20931. height: math.unit(12 + 8 / 12, "feet"),
  20932. weight: math.unit(4000, "lb"),
  20933. name: "Back (Were)",
  20934. image: {
  20935. source: "./media/characters/dhari/were-back.svg",
  20936. extra: 1065 / 969,
  20937. bottom: 0.012
  20938. }
  20939. },
  20940. wereMaw: {
  20941. height: math.unit(0.625, "meters"),
  20942. name: "Maw (Were)",
  20943. image: {
  20944. source: "./media/characters/dhari/were-maw.svg"
  20945. }
  20946. },
  20947. },
  20948. [
  20949. {
  20950. name: "Normal",
  20951. height: math.unit(6 + 3 / 12, "feet"),
  20952. default: true
  20953. },
  20954. ]
  20955. ))
  20956. characterMakers.push(() => makeCharacter(
  20957. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20958. {
  20959. anthro: {
  20960. height: math.unit(5 + 7 / 12, "feet"),
  20961. weight: math.unit(175, "lb"),
  20962. name: "Anthro",
  20963. image: {
  20964. source: "./media/characters/rena-dyne/anthro.svg",
  20965. extra: 1849 / 1785,
  20966. bottom: 0.005
  20967. }
  20968. },
  20969. taur: {
  20970. height: math.unit(15 + 6 / 12, "feet"),
  20971. weight: math.unit(8000, "lb"),
  20972. name: "Taur",
  20973. image: {
  20974. source: "./media/characters/rena-dyne/taur.svg",
  20975. extra: 2315 / 2234,
  20976. bottom: 0.033
  20977. }
  20978. },
  20979. },
  20980. [
  20981. {
  20982. name: "Normal",
  20983. height: math.unit(5 + 7 / 12, "feet"),
  20984. default: true
  20985. },
  20986. ]
  20987. ))
  20988. characterMakers.push(() => makeCharacter(
  20989. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20990. {
  20991. front: {
  20992. height: math.unit(8, "feet"),
  20993. weight: math.unit(600, "lb"),
  20994. name: "Front",
  20995. image: {
  20996. source: "./media/characters/weremeep/front.svg",
  20997. extra: 967 / 862,
  20998. bottom: 0.01
  20999. }
  21000. },
  21001. },
  21002. [
  21003. {
  21004. name: "Normal",
  21005. height: math.unit(8, "feet"),
  21006. default: true
  21007. },
  21008. {
  21009. name: "Lorg",
  21010. height: math.unit(12, "feet")
  21011. },
  21012. {
  21013. name: "Oh Lawd She Comin'",
  21014. height: math.unit(20, "feet")
  21015. },
  21016. ]
  21017. ))
  21018. characterMakers.push(() => makeCharacter(
  21019. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21020. {
  21021. front: {
  21022. height: math.unit(4, "feet"),
  21023. weight: math.unit(90, "lb"),
  21024. name: "Front",
  21025. image: {
  21026. source: "./media/characters/reza/front.svg",
  21027. extra: 1183 / 1111,
  21028. bottom: 0.017
  21029. }
  21030. },
  21031. back: {
  21032. height: math.unit(4, "feet"),
  21033. weight: math.unit(90, "lb"),
  21034. name: "Back",
  21035. image: {
  21036. source: "./media/characters/reza/back.svg",
  21037. extra: 1183 / 1111,
  21038. bottom: 0.01
  21039. }
  21040. },
  21041. drake: {
  21042. height: math.unit(30, "feet"),
  21043. weight: math.unit(246960, "lb"),
  21044. name: "Drake",
  21045. image: {
  21046. source: "./media/characters/reza/drake.svg",
  21047. extra: 2350 / 2024,
  21048. bottom: 60.7 / 2403
  21049. }
  21050. },
  21051. },
  21052. [
  21053. {
  21054. name: "Normal",
  21055. height: math.unit(4, "feet"),
  21056. default: true
  21057. },
  21058. ]
  21059. ))
  21060. characterMakers.push(() => makeCharacter(
  21061. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21062. {
  21063. side: {
  21064. height: math.unit(15, "feet"),
  21065. weight: math.unit(14, "tons"),
  21066. name: "Side",
  21067. image: {
  21068. source: "./media/characters/athea/side.svg",
  21069. extra: 960 / 540,
  21070. bottom: 0.003
  21071. }
  21072. },
  21073. sitting: {
  21074. height: math.unit(6 * 2.85, "feet"),
  21075. weight: math.unit(14, "tons"),
  21076. name: "Sitting",
  21077. image: {
  21078. source: "./media/characters/athea/sitting.svg",
  21079. extra: 621 / 581,
  21080. bottom: 0.075
  21081. }
  21082. },
  21083. maw: {
  21084. height: math.unit(7.59498031496063, "feet"),
  21085. name: "Maw",
  21086. image: {
  21087. source: "./media/characters/athea/maw.svg"
  21088. }
  21089. },
  21090. },
  21091. [
  21092. {
  21093. name: "Lap Cat",
  21094. height: math.unit(2.5, "feet")
  21095. },
  21096. {
  21097. name: "Minimacro",
  21098. height: math.unit(15, "feet"),
  21099. default: true
  21100. },
  21101. {
  21102. name: "Macro",
  21103. height: math.unit(120, "feet")
  21104. },
  21105. {
  21106. name: "Macro+",
  21107. height: math.unit(640, "feet")
  21108. },
  21109. {
  21110. name: "Colossus",
  21111. height: math.unit(2.2, "miles")
  21112. },
  21113. ]
  21114. ))
  21115. characterMakers.push(() => makeCharacter(
  21116. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21117. {
  21118. front: {
  21119. height: math.unit(8 + 8 / 12, "feet"),
  21120. weight: math.unit(130, "kg"),
  21121. name: "Front",
  21122. image: {
  21123. source: "./media/characters/seroko/front.svg",
  21124. extra: 1385 / 1280,
  21125. bottom: 0.025
  21126. }
  21127. },
  21128. back: {
  21129. height: math.unit(8 + 8 / 12, "feet"),
  21130. weight: math.unit(130, "kg"),
  21131. name: "Back",
  21132. image: {
  21133. source: "./media/characters/seroko/back.svg",
  21134. extra: 1369 / 1238,
  21135. bottom: 0.018
  21136. }
  21137. },
  21138. frontDressed: {
  21139. height: math.unit(8 + 8 / 12, "feet"),
  21140. weight: math.unit(130, "kg"),
  21141. name: "Front (Dressed)",
  21142. image: {
  21143. source: "./media/characters/seroko/front-dressed.svg",
  21144. extra: 1366 / 1275,
  21145. bottom: 0.03
  21146. }
  21147. },
  21148. },
  21149. [
  21150. {
  21151. name: "Normal",
  21152. height: math.unit(8 + 8 / 12, "feet"),
  21153. default: true
  21154. },
  21155. ]
  21156. ))
  21157. characterMakers.push(() => makeCharacter(
  21158. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21159. {
  21160. front: {
  21161. height: math.unit(5.5, "feet"),
  21162. weight: math.unit(160, "lb"),
  21163. name: "Front",
  21164. image: {
  21165. source: "./media/characters/quatzi/front.svg",
  21166. extra: 2346 / 2242,
  21167. bottom: 0.015
  21168. }
  21169. },
  21170. },
  21171. [
  21172. {
  21173. name: "Normal",
  21174. height: math.unit(5.5, "feet"),
  21175. default: true
  21176. },
  21177. {
  21178. name: "Big",
  21179. height: math.unit(7.7, "feet")
  21180. },
  21181. ]
  21182. ))
  21183. characterMakers.push(() => makeCharacter(
  21184. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21185. {
  21186. front: {
  21187. height: math.unit(5 + 11 / 12, "feet"),
  21188. weight: math.unit(180, "lb"),
  21189. name: "Front",
  21190. image: {
  21191. source: "./media/characters/sen/front.svg",
  21192. extra: 1321 / 1254,
  21193. bottom: 0.015
  21194. }
  21195. },
  21196. side: {
  21197. height: math.unit(5 + 11 / 12, "feet"),
  21198. weight: math.unit(180, "lb"),
  21199. name: "Side",
  21200. image: {
  21201. source: "./media/characters/sen/side.svg",
  21202. extra: 1321 / 1254,
  21203. bottom: 0.007
  21204. }
  21205. },
  21206. back: {
  21207. height: math.unit(5 + 11 / 12, "feet"),
  21208. weight: math.unit(180, "lb"),
  21209. name: "Back",
  21210. image: {
  21211. source: "./media/characters/sen/back.svg",
  21212. extra: 1321 / 1254
  21213. }
  21214. },
  21215. },
  21216. [
  21217. {
  21218. name: "Normal",
  21219. height: math.unit(5 + 11 / 12, "feet"),
  21220. default: true
  21221. },
  21222. ]
  21223. ))
  21224. characterMakers.push(() => makeCharacter(
  21225. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21226. {
  21227. front: {
  21228. height: math.unit(166.6, "cm"),
  21229. weight: math.unit(66.6, "kg"),
  21230. name: "Front",
  21231. image: {
  21232. source: "./media/characters/fruity/front.svg",
  21233. extra: 1510 / 1386,
  21234. bottom: 0.04
  21235. }
  21236. },
  21237. back: {
  21238. height: math.unit(166.6, "cm"),
  21239. weight: math.unit(66.6, "lb"),
  21240. name: "Back",
  21241. image: {
  21242. source: "./media/characters/fruity/back.svg",
  21243. extra: 1563 / 1435,
  21244. bottom: 0.005
  21245. }
  21246. },
  21247. },
  21248. [
  21249. {
  21250. name: "Normal",
  21251. height: math.unit(166.6, "cm"),
  21252. default: true
  21253. },
  21254. {
  21255. name: "Demonic",
  21256. height: math.unit(166.6, "feet")
  21257. },
  21258. ]
  21259. ))
  21260. characterMakers.push(() => makeCharacter(
  21261. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21262. {
  21263. side: {
  21264. height: math.unit(10, "feet"),
  21265. weight: math.unit(500, "lb"),
  21266. name: "Side",
  21267. image: {
  21268. source: "./media/characters/zost/side.svg",
  21269. extra: 966 / 880,
  21270. bottom: 0.075
  21271. }
  21272. },
  21273. mawFront: {
  21274. height: math.unit(1.08, "meters"),
  21275. name: "Maw (Front)",
  21276. image: {
  21277. source: "./media/characters/zost/maw-front.svg"
  21278. }
  21279. },
  21280. mawSide: {
  21281. height: math.unit(2.66, "feet"),
  21282. name: "Maw (Side)",
  21283. image: {
  21284. source: "./media/characters/zost/maw-side.svg"
  21285. }
  21286. },
  21287. },
  21288. [
  21289. {
  21290. name: "Normal",
  21291. height: math.unit(10, "feet"),
  21292. default: true
  21293. },
  21294. ]
  21295. ))
  21296. characterMakers.push(() => makeCharacter(
  21297. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21298. {
  21299. front: {
  21300. height: math.unit(5 + 4 / 12, "feet"),
  21301. weight: math.unit(120, "lb"),
  21302. name: "Front",
  21303. image: {
  21304. source: "./media/characters/luci/front.svg",
  21305. extra: 1985 / 1884,
  21306. bottom: 0.04
  21307. }
  21308. },
  21309. back: {
  21310. height: math.unit(5 + 4 / 12, "feet"),
  21311. weight: math.unit(120, "lb"),
  21312. name: "Back",
  21313. image: {
  21314. source: "./media/characters/luci/back.svg",
  21315. extra: 1892 / 1791,
  21316. bottom: 0.002
  21317. }
  21318. },
  21319. },
  21320. [
  21321. {
  21322. name: "Normal",
  21323. height: math.unit(5 + 4 / 12, "feet"),
  21324. default: true
  21325. },
  21326. ]
  21327. ))
  21328. characterMakers.push(() => makeCharacter(
  21329. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21330. {
  21331. front: {
  21332. height: math.unit(1500, "feet"),
  21333. weight: math.unit(3.8e6, "tons"),
  21334. name: "Front",
  21335. image: {
  21336. source: "./media/characters/2th/front.svg",
  21337. extra: 3489 / 3350,
  21338. bottom: 0.1
  21339. }
  21340. },
  21341. foot: {
  21342. height: math.unit(461, "feet"),
  21343. name: "Foot",
  21344. image: {
  21345. source: "./media/characters/2th/foot.svg"
  21346. }
  21347. },
  21348. },
  21349. [
  21350. {
  21351. name: "\"Micro\"",
  21352. height: math.unit(15 + 7 / 12, "feet")
  21353. },
  21354. {
  21355. name: "Normal",
  21356. height: math.unit(1500, "feet"),
  21357. default: true
  21358. },
  21359. {
  21360. name: "Macro",
  21361. height: math.unit(5000, "feet")
  21362. },
  21363. {
  21364. name: "Megamacro",
  21365. height: math.unit(15, "miles")
  21366. },
  21367. {
  21368. name: "Gigamacro",
  21369. height: math.unit(4000, "miles")
  21370. },
  21371. {
  21372. name: "Galactic",
  21373. height: math.unit(50, "AU")
  21374. },
  21375. ]
  21376. ))
  21377. characterMakers.push(() => makeCharacter(
  21378. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21379. {
  21380. front: {
  21381. height: math.unit(5 + 6 / 12, "feet"),
  21382. weight: math.unit(220, "lb"),
  21383. name: "Front",
  21384. image: {
  21385. source: "./media/characters/amethyst/front.svg",
  21386. extra: 2078 / 2040,
  21387. bottom: 0.045
  21388. }
  21389. },
  21390. back: {
  21391. height: math.unit(5 + 6 / 12, "feet"),
  21392. weight: math.unit(220, "lb"),
  21393. name: "Back",
  21394. image: {
  21395. source: "./media/characters/amethyst/back.svg",
  21396. extra: 2021 / 1989,
  21397. bottom: 0.02
  21398. }
  21399. },
  21400. },
  21401. [
  21402. {
  21403. name: "Normal",
  21404. height: math.unit(5 + 6 / 12, "feet"),
  21405. default: true
  21406. },
  21407. ]
  21408. ))
  21409. characterMakers.push(() => makeCharacter(
  21410. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21411. {
  21412. front: {
  21413. height: math.unit(4 + 11 / 12, "feet"),
  21414. weight: math.unit(120, "lb"),
  21415. name: "Front",
  21416. image: {
  21417. source: "./media/characters/yumi-akiyama/front.svg",
  21418. extra: 1327 / 1235,
  21419. bottom: 0.02
  21420. }
  21421. },
  21422. back: {
  21423. height: math.unit(4 + 11 / 12, "feet"),
  21424. weight: math.unit(120, "lb"),
  21425. name: "Back",
  21426. image: {
  21427. source: "./media/characters/yumi-akiyama/back.svg",
  21428. extra: 1287 / 1245,
  21429. bottom: 0.002
  21430. }
  21431. },
  21432. },
  21433. [
  21434. {
  21435. name: "Galactic",
  21436. height: math.unit(50, "galaxies"),
  21437. default: true
  21438. },
  21439. {
  21440. name: "Universal",
  21441. height: math.unit(100, "universes")
  21442. },
  21443. ]
  21444. ))
  21445. characterMakers.push(() => makeCharacter(
  21446. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21447. {
  21448. front: {
  21449. height: math.unit(8, "feet"),
  21450. weight: math.unit(500, "lb"),
  21451. name: "Front",
  21452. image: {
  21453. source: "./media/characters/rifter-yrmori/front.svg",
  21454. extra: 1180 / 1125,
  21455. bottom: 0.02
  21456. }
  21457. },
  21458. back: {
  21459. height: math.unit(8, "feet"),
  21460. weight: math.unit(500, "lb"),
  21461. name: "Back",
  21462. image: {
  21463. source: "./media/characters/rifter-yrmori/back.svg",
  21464. extra: 1190 / 1145,
  21465. bottom: 0.001
  21466. }
  21467. },
  21468. wings: {
  21469. height: math.unit(7.75, "feet"),
  21470. weight: math.unit(500, "lb"),
  21471. name: "Wings",
  21472. image: {
  21473. source: "./media/characters/rifter-yrmori/wings.svg",
  21474. extra: 1357 / 1285
  21475. }
  21476. },
  21477. maw: {
  21478. height: math.unit(0.8, "feet"),
  21479. name: "Maw",
  21480. image: {
  21481. source: "./media/characters/rifter-yrmori/maw.svg"
  21482. }
  21483. },
  21484. mawfront: {
  21485. height: math.unit(1.45, "feet"),
  21486. name: "Maw (Front)",
  21487. image: {
  21488. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21489. }
  21490. },
  21491. },
  21492. [
  21493. {
  21494. name: "Normal",
  21495. height: math.unit(8, "feet"),
  21496. default: true
  21497. },
  21498. {
  21499. name: "Macro",
  21500. height: math.unit(42, "meters")
  21501. },
  21502. ]
  21503. ))
  21504. characterMakers.push(() => makeCharacter(
  21505. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21506. {
  21507. were: {
  21508. height: math.unit(25 + 6 / 12, "feet"),
  21509. weight: math.unit(10000, "lb"),
  21510. name: "Were",
  21511. image: {
  21512. source: "./media/characters/tahajin/were.svg",
  21513. extra: 801 / 770,
  21514. bottom: 0.042
  21515. }
  21516. },
  21517. aquatic: {
  21518. height: math.unit(6 + 4 / 12, "feet"),
  21519. weight: math.unit(160, "lb"),
  21520. name: "Aquatic",
  21521. image: {
  21522. source: "./media/characters/tahajin/aquatic.svg",
  21523. extra: 572 / 542,
  21524. bottom: 0.04
  21525. }
  21526. },
  21527. chow: {
  21528. height: math.unit(8 + 11 / 12, "feet"),
  21529. weight: math.unit(450, "lb"),
  21530. name: "Chow",
  21531. image: {
  21532. source: "./media/characters/tahajin/chow.svg",
  21533. extra: 660 / 640,
  21534. bottom: 0.015
  21535. }
  21536. },
  21537. demiNaga: {
  21538. height: math.unit(6 + 8 / 12, "feet"),
  21539. weight: math.unit(300, "lb"),
  21540. name: "Demi Naga",
  21541. image: {
  21542. source: "./media/characters/tahajin/demi-naga.svg",
  21543. extra: 643 / 615,
  21544. bottom: 0.1
  21545. }
  21546. },
  21547. data: {
  21548. height: math.unit(5, "inches"),
  21549. weight: math.unit(0.1, "lb"),
  21550. name: "Data",
  21551. image: {
  21552. source: "./media/characters/tahajin/data.svg"
  21553. }
  21554. },
  21555. fluu: {
  21556. height: math.unit(5 + 7 / 12, "feet"),
  21557. weight: math.unit(140, "lb"),
  21558. name: "Fluu",
  21559. image: {
  21560. source: "./media/characters/tahajin/fluu.svg",
  21561. extra: 628 / 592,
  21562. bottom: 0.02
  21563. }
  21564. },
  21565. starWarrior: {
  21566. height: math.unit(4 + 5 / 12, "feet"),
  21567. weight: math.unit(50, "lb"),
  21568. name: "Star Warrior",
  21569. image: {
  21570. source: "./media/characters/tahajin/star-warrior.svg"
  21571. }
  21572. },
  21573. },
  21574. [
  21575. {
  21576. name: "Normal",
  21577. height: math.unit(25 + 6 / 12, "feet"),
  21578. default: true
  21579. },
  21580. ]
  21581. ))
  21582. characterMakers.push(() => makeCharacter(
  21583. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21584. {
  21585. front: {
  21586. height: math.unit(8, "feet"),
  21587. weight: math.unit(350, "lb"),
  21588. name: "Front",
  21589. image: {
  21590. source: "./media/characters/gabira/front.svg",
  21591. extra: 608 / 580,
  21592. bottom: 0.03
  21593. }
  21594. },
  21595. back: {
  21596. height: math.unit(8, "feet"),
  21597. weight: math.unit(350, "lb"),
  21598. name: "Back",
  21599. image: {
  21600. source: "./media/characters/gabira/back.svg",
  21601. extra: 608 / 580,
  21602. bottom: 0.03
  21603. }
  21604. },
  21605. },
  21606. [
  21607. {
  21608. name: "Normal",
  21609. height: math.unit(8, "feet"),
  21610. default: true
  21611. },
  21612. ]
  21613. ))
  21614. characterMakers.push(() => makeCharacter(
  21615. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21616. {
  21617. front: {
  21618. height: math.unit(5 + 3 / 12, "feet"),
  21619. weight: math.unit(137, "lb"),
  21620. name: "Front",
  21621. image: {
  21622. source: "./media/characters/sasha-katraine/front.svg",
  21623. bottom: 0.045
  21624. }
  21625. },
  21626. },
  21627. [
  21628. {
  21629. name: "Micro",
  21630. height: math.unit(5, "inches")
  21631. },
  21632. {
  21633. name: "Normal",
  21634. height: math.unit(5 + 3 / 12, "feet"),
  21635. default: true
  21636. },
  21637. ]
  21638. ))
  21639. characterMakers.push(() => makeCharacter(
  21640. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21641. {
  21642. side: {
  21643. height: math.unit(4, "inches"),
  21644. weight: math.unit(200, "grams"),
  21645. name: "Side",
  21646. image: {
  21647. source: "./media/characters/der/side.svg",
  21648. extra: 719 / 400,
  21649. bottom: 30.6 / 749.9187
  21650. }
  21651. },
  21652. },
  21653. [
  21654. {
  21655. name: "Micro",
  21656. height: math.unit(4, "inches"),
  21657. default: true
  21658. },
  21659. ]
  21660. ))
  21661. characterMakers.push(() => makeCharacter(
  21662. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21663. {
  21664. side: {
  21665. height: math.unit(30, "meters"),
  21666. weight: math.unit(700, "tonnes"),
  21667. name: "Side",
  21668. image: {
  21669. source: "./media/characters/fixerdragon/side.svg",
  21670. extra: (1293.0514 - 116.03) / 1106.86,
  21671. bottom: 116.03 / 1293.0514
  21672. }
  21673. },
  21674. },
  21675. [
  21676. {
  21677. name: "Planck",
  21678. height: math.unit(1.6e-35, "meters")
  21679. },
  21680. {
  21681. name: "Micro",
  21682. height: math.unit(0.4, "meters")
  21683. },
  21684. {
  21685. name: "Normal",
  21686. height: math.unit(30, "meters"),
  21687. default: true
  21688. },
  21689. {
  21690. name: "Megamacro",
  21691. height: math.unit(1.2, "megameters")
  21692. },
  21693. {
  21694. name: "Teramacro",
  21695. height: math.unit(130, "terameters")
  21696. },
  21697. {
  21698. name: "Yottamacro",
  21699. height: math.unit(6200, "yottameters")
  21700. },
  21701. ]
  21702. ));
  21703. characterMakers.push(() => makeCharacter(
  21704. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21705. {
  21706. front: {
  21707. height: math.unit(8, "feet"),
  21708. weight: math.unit(250, "lb"),
  21709. name: "Front",
  21710. image: {
  21711. source: "./media/characters/kite/front.svg",
  21712. extra: 2796 / 2659,
  21713. bottom: 0.002
  21714. }
  21715. },
  21716. },
  21717. [
  21718. {
  21719. name: "Normal",
  21720. height: math.unit(8, "feet"),
  21721. default: true
  21722. },
  21723. {
  21724. name: "Macro",
  21725. height: math.unit(360, "feet")
  21726. },
  21727. {
  21728. name: "Megamacro",
  21729. height: math.unit(1500, "feet")
  21730. },
  21731. ]
  21732. ))
  21733. characterMakers.push(() => makeCharacter(
  21734. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21735. {
  21736. front: {
  21737. height: math.unit(5 + 11/12, "feet"),
  21738. weight: math.unit(170, "lb"),
  21739. name: "Front",
  21740. image: {
  21741. source: "./media/characters/poojawa-vynar/front.svg",
  21742. extra: 1735/1585,
  21743. bottom: 96/1831
  21744. }
  21745. },
  21746. back: {
  21747. height: math.unit(5 + 11/12, "feet"),
  21748. weight: math.unit(170, "lb"),
  21749. name: "Back",
  21750. image: {
  21751. source: "./media/characters/poojawa-vynar/back.svg",
  21752. extra: 1749/1607,
  21753. bottom: 28/1777
  21754. }
  21755. },
  21756. male: {
  21757. height: math.unit(5 + 11/12, "feet"),
  21758. weight: math.unit(170, "lb"),
  21759. name: "Male",
  21760. image: {
  21761. source: "./media/characters/poojawa-vynar/male.svg",
  21762. extra: 1855/1713,
  21763. bottom: 63/1918
  21764. }
  21765. },
  21766. taur: {
  21767. height: math.unit(5 + 11/12, "feet"),
  21768. weight: math.unit(170, "lb"),
  21769. name: "Taur",
  21770. image: {
  21771. source: "./media/characters/poojawa-vynar/taur.svg",
  21772. extra: 1151/1059,
  21773. bottom: 356/1507
  21774. }
  21775. },
  21776. frontDressed: {
  21777. height: math.unit(5 + 11/12, "feet"),
  21778. weight: math.unit(170, "lb"),
  21779. name: "Front (Dressed)",
  21780. image: {
  21781. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21782. extra: 1735/1585,
  21783. bottom: 96/1831
  21784. }
  21785. },
  21786. backDressed: {
  21787. height: math.unit(5 + 11/12, "feet"),
  21788. weight: math.unit(170, "lb"),
  21789. name: "Back (Dressed)",
  21790. image: {
  21791. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21792. extra: 1749/1607,
  21793. bottom: 28/1777
  21794. }
  21795. },
  21796. maleDressed: {
  21797. height: math.unit(5 + 11/12, "feet"),
  21798. weight: math.unit(170, "lb"),
  21799. name: "Male (Dressed)",
  21800. image: {
  21801. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21802. extra: 1855/1713,
  21803. bottom: 63/1918
  21804. }
  21805. },
  21806. taurDressed: {
  21807. height: math.unit(5 + 11/12, "feet"),
  21808. weight: math.unit(170, "lb"),
  21809. name: "Taur (Dressed)",
  21810. image: {
  21811. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21812. extra: 1151/1059,
  21813. bottom: 356/1507
  21814. }
  21815. },
  21816. maw: {
  21817. height: math.unit(1.46, "feet"),
  21818. name: "Maw",
  21819. image: {
  21820. source: "./media/characters/poojawa-vynar/maw.svg"
  21821. }
  21822. },
  21823. head: {
  21824. height: math.unit(2.34, "feet"),
  21825. name: "Head",
  21826. image: {
  21827. source: "./media/characters/poojawa-vynar/head.svg"
  21828. }
  21829. },
  21830. paw: {
  21831. height: math.unit(1.61, "feet"),
  21832. name: "Paw",
  21833. image: {
  21834. source: "./media/characters/poojawa-vynar/paw.svg"
  21835. }
  21836. },
  21837. pawToering: {
  21838. height: math.unit(1.72, "feet"),
  21839. name: "Paw (Toering)",
  21840. image: {
  21841. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21842. }
  21843. },
  21844. toering: {
  21845. height: math.unit(2.9, "inches"),
  21846. name: "Toering",
  21847. image: {
  21848. source: "./media/characters/poojawa-vynar/toering.svg"
  21849. }
  21850. },
  21851. shaft: {
  21852. height: math.unit(0.625, "feet"),
  21853. name: "Shaft",
  21854. image: {
  21855. source: "./media/characters/poojawa-vynar/shaft.svg"
  21856. }
  21857. },
  21858. spade: {
  21859. height: math.unit(0.42, "feet"),
  21860. name: "Spade",
  21861. image: {
  21862. source: "./media/characters/poojawa-vynar/spade.svg"
  21863. }
  21864. },
  21865. },
  21866. [
  21867. {
  21868. name: "Shortstack",
  21869. height: math.unit(4, "feet")
  21870. },
  21871. {
  21872. name: "Normal",
  21873. height: math.unit(5 + 11 / 12, "feet"),
  21874. default: true
  21875. },
  21876. {
  21877. name: "Tauric",
  21878. height: math.unit(4, "meters")
  21879. },
  21880. ]
  21881. ))
  21882. characterMakers.push(() => makeCharacter(
  21883. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21884. {
  21885. front: {
  21886. height: math.unit(293, "meters"),
  21887. weight: math.unit(70400, "tons"),
  21888. name: "Front",
  21889. image: {
  21890. source: "./media/characters/violette/front.svg",
  21891. extra: 1227 / 1180,
  21892. bottom: 0.005
  21893. }
  21894. },
  21895. back: {
  21896. height: math.unit(293, "meters"),
  21897. weight: math.unit(70400, "tons"),
  21898. name: "Back",
  21899. image: {
  21900. source: "./media/characters/violette/back.svg",
  21901. extra: 1227 / 1180,
  21902. bottom: 0.005
  21903. }
  21904. },
  21905. },
  21906. [
  21907. {
  21908. name: "Macro",
  21909. height: math.unit(293, "meters"),
  21910. default: true
  21911. },
  21912. ]
  21913. ))
  21914. characterMakers.push(() => makeCharacter(
  21915. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21916. {
  21917. front: {
  21918. height: math.unit(1050, "feet"),
  21919. weight: math.unit(200000, "tons"),
  21920. name: "Front",
  21921. image: {
  21922. source: "./media/characters/alessandra/front.svg",
  21923. extra: 960 / 912,
  21924. bottom: 0.06
  21925. }
  21926. },
  21927. },
  21928. [
  21929. {
  21930. name: "Macro",
  21931. height: math.unit(1050, "feet")
  21932. },
  21933. {
  21934. name: "Macro+",
  21935. height: math.unit(900, "meters"),
  21936. default: true
  21937. },
  21938. ]
  21939. ))
  21940. characterMakers.push(() => makeCharacter(
  21941. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21942. {
  21943. front: {
  21944. height: math.unit(5, "feet"),
  21945. weight: math.unit(187, "lb"),
  21946. name: "Front",
  21947. image: {
  21948. source: "./media/characters/person/front.svg",
  21949. extra: 3087 / 2945,
  21950. bottom: 91 / 3181
  21951. }
  21952. },
  21953. },
  21954. [
  21955. {
  21956. name: "Micro",
  21957. height: math.unit(3, "inches")
  21958. },
  21959. {
  21960. name: "Normal",
  21961. height: math.unit(5, "feet"),
  21962. default: true
  21963. },
  21964. {
  21965. name: "Macro",
  21966. height: math.unit(90, "feet")
  21967. },
  21968. {
  21969. name: "Max Size",
  21970. height: math.unit(280, "feet")
  21971. },
  21972. ]
  21973. ))
  21974. characterMakers.push(() => makeCharacter(
  21975. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21976. {
  21977. front: {
  21978. height: math.unit(4.5, "meters"),
  21979. weight: math.unit(3200, "lb"),
  21980. name: "Front",
  21981. image: {
  21982. source: "./media/characters/ty/front.svg",
  21983. extra: 1038 / 960,
  21984. bottom: 31.156 / 1068
  21985. }
  21986. },
  21987. back: {
  21988. height: math.unit(4.5, "meters"),
  21989. weight: math.unit(3200, "lb"),
  21990. name: "Back",
  21991. image: {
  21992. source: "./media/characters/ty/back.svg",
  21993. extra: 1044 / 966,
  21994. bottom: 7.48 / 1049
  21995. }
  21996. },
  21997. },
  21998. [
  21999. {
  22000. name: "Normal",
  22001. height: math.unit(4.5, "meters"),
  22002. default: true
  22003. },
  22004. ]
  22005. ))
  22006. characterMakers.push(() => makeCharacter(
  22007. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22008. {
  22009. front: {
  22010. height: math.unit(5 + 4 / 12, "feet"),
  22011. weight: math.unit(115, "lb"),
  22012. name: "Front",
  22013. image: {
  22014. source: "./media/characters/rocky/front.svg",
  22015. extra: 1012 / 975,
  22016. bottom: 54 / 1066
  22017. }
  22018. },
  22019. },
  22020. [
  22021. {
  22022. name: "Normal",
  22023. height: math.unit(5 + 4 / 12, "feet"),
  22024. default: true
  22025. },
  22026. ]
  22027. ))
  22028. characterMakers.push(() => makeCharacter(
  22029. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22030. {
  22031. upright: {
  22032. height: math.unit(6, "meters"),
  22033. weight: math.unit(4000, "kg"),
  22034. name: "Upright",
  22035. image: {
  22036. source: "./media/characters/ruin/upright.svg",
  22037. extra: 668 / 661,
  22038. bottom: 42 / 799.8396
  22039. }
  22040. },
  22041. },
  22042. [
  22043. {
  22044. name: "Normal",
  22045. height: math.unit(6, "meters"),
  22046. default: true
  22047. },
  22048. ]
  22049. ))
  22050. characterMakers.push(() => makeCharacter(
  22051. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22052. {
  22053. front: {
  22054. height: math.unit(5, "feet"),
  22055. weight: math.unit(106, "lb"),
  22056. name: "Front",
  22057. image: {
  22058. source: "./media/characters/robin/front.svg",
  22059. extra: 862 / 799,
  22060. bottom: 42.4 / 914.8856
  22061. }
  22062. },
  22063. },
  22064. [
  22065. {
  22066. name: "Normal",
  22067. height: math.unit(5, "feet"),
  22068. default: true
  22069. },
  22070. ]
  22071. ))
  22072. characterMakers.push(() => makeCharacter(
  22073. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22074. {
  22075. side: {
  22076. height: math.unit(3, "feet"),
  22077. weight: math.unit(225, "lb"),
  22078. name: "Side",
  22079. image: {
  22080. source: "./media/characters/saian/side.svg",
  22081. extra: 566 / 356,
  22082. bottom: 79.7 / 643
  22083. }
  22084. },
  22085. maw: {
  22086. height: math.unit(2.85, "feet"),
  22087. name: "Maw",
  22088. image: {
  22089. source: "./media/characters/saian/maw.svg"
  22090. }
  22091. },
  22092. },
  22093. [
  22094. {
  22095. name: "Normal",
  22096. height: math.unit(3, "feet"),
  22097. default: true
  22098. },
  22099. ]
  22100. ))
  22101. characterMakers.push(() => makeCharacter(
  22102. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22103. {
  22104. side: {
  22105. height: math.unit(8, "feet"),
  22106. weight: math.unit(300, "lb"),
  22107. name: "Side",
  22108. image: {
  22109. source: "./media/characters/equus-silvermane/side.svg",
  22110. extra: 2176 / 2050,
  22111. bottom: 65.7 / 2245
  22112. }
  22113. },
  22114. front: {
  22115. height: math.unit(8, "feet"),
  22116. weight: math.unit(300, "lb"),
  22117. name: "Front",
  22118. image: {
  22119. source: "./media/characters/equus-silvermane/front.svg",
  22120. extra: 4633 / 4400,
  22121. bottom: 71.3 / 4706.915
  22122. }
  22123. },
  22124. sideStepping: {
  22125. height: math.unit(8, "feet"),
  22126. weight: math.unit(300, "lb"),
  22127. name: "Side (Stepping)",
  22128. image: {
  22129. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22130. extra: 1968 / 1860,
  22131. bottom: 16.4 / 1989
  22132. }
  22133. },
  22134. },
  22135. [
  22136. {
  22137. name: "Normal",
  22138. height: math.unit(8, "feet")
  22139. },
  22140. {
  22141. name: "Minimacro",
  22142. height: math.unit(75, "feet"),
  22143. default: true
  22144. },
  22145. {
  22146. name: "Macro",
  22147. height: math.unit(150, "feet")
  22148. },
  22149. {
  22150. name: "Macro+",
  22151. height: math.unit(1000, "feet")
  22152. },
  22153. {
  22154. name: "Megamacro",
  22155. height: math.unit(1, "mile")
  22156. },
  22157. ]
  22158. ))
  22159. characterMakers.push(() => makeCharacter(
  22160. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22161. {
  22162. side: {
  22163. height: math.unit(20, "feet"),
  22164. weight: math.unit(30000, "kg"),
  22165. name: "Side",
  22166. image: {
  22167. source: "./media/characters/windar/side.svg",
  22168. extra: 1491 / 1248,
  22169. bottom: 82.56 / 1568
  22170. }
  22171. },
  22172. },
  22173. [
  22174. {
  22175. name: "Normal",
  22176. height: math.unit(20, "feet"),
  22177. default: true
  22178. },
  22179. ]
  22180. ))
  22181. characterMakers.push(() => makeCharacter(
  22182. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22183. {
  22184. side: {
  22185. height: math.unit(15.66, "feet"),
  22186. weight: math.unit(150, "lb"),
  22187. name: "Side",
  22188. image: {
  22189. source: "./media/characters/melody/side.svg",
  22190. extra: 1097 / 944,
  22191. bottom: 11.8 / 1109
  22192. }
  22193. },
  22194. sideOutfit: {
  22195. height: math.unit(15.66, "feet"),
  22196. weight: math.unit(150, "lb"),
  22197. name: "Side (Outfit)",
  22198. image: {
  22199. source: "./media/characters/melody/side-outfit.svg",
  22200. extra: 1097 / 944,
  22201. bottom: 11.8 / 1109
  22202. }
  22203. },
  22204. },
  22205. [
  22206. {
  22207. name: "Normal",
  22208. height: math.unit(15.66, "feet"),
  22209. default: true
  22210. },
  22211. ]
  22212. ))
  22213. characterMakers.push(() => makeCharacter(
  22214. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22215. {
  22216. front: {
  22217. height: math.unit(8, "feet"),
  22218. weight: math.unit(325, "lb"),
  22219. name: "Front",
  22220. image: {
  22221. source: "./media/characters/windera/front.svg",
  22222. extra: 3180 / 2845,
  22223. bottom: 178 / 3365
  22224. }
  22225. },
  22226. },
  22227. [
  22228. {
  22229. name: "Normal",
  22230. height: math.unit(8, "feet"),
  22231. default: true
  22232. },
  22233. ]
  22234. ))
  22235. characterMakers.push(() => makeCharacter(
  22236. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22237. {
  22238. front: {
  22239. height: math.unit(28.75, "feet"),
  22240. weight: math.unit(2000, "kg"),
  22241. name: "Front",
  22242. image: {
  22243. source: "./media/characters/sonear/front.svg",
  22244. extra: 1041.1 / 964.9,
  22245. bottom: 53.7 / 1096.6
  22246. }
  22247. },
  22248. },
  22249. [
  22250. {
  22251. name: "Normal",
  22252. height: math.unit(28.75, "feet"),
  22253. default: true
  22254. },
  22255. ]
  22256. ))
  22257. characterMakers.push(() => makeCharacter(
  22258. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22259. {
  22260. side: {
  22261. height: math.unit(25.5, "feet"),
  22262. weight: math.unit(23000, "kg"),
  22263. name: "Side",
  22264. image: {
  22265. source: "./media/characters/kanara/side.svg"
  22266. }
  22267. },
  22268. },
  22269. [
  22270. {
  22271. name: "Normal",
  22272. height: math.unit(25.5, "feet"),
  22273. default: true
  22274. },
  22275. ]
  22276. ))
  22277. characterMakers.push(() => makeCharacter(
  22278. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22279. {
  22280. side: {
  22281. height: math.unit(10, "feet"),
  22282. weight: math.unit(1000, "kg"),
  22283. name: "Side",
  22284. image: {
  22285. source: "./media/characters/ereus/side.svg",
  22286. extra: 1157 / 959,
  22287. bottom: 153 / 1312.5
  22288. }
  22289. },
  22290. },
  22291. [
  22292. {
  22293. name: "Normal",
  22294. height: math.unit(10, "feet"),
  22295. default: true
  22296. },
  22297. ]
  22298. ))
  22299. characterMakers.push(() => makeCharacter(
  22300. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22301. {
  22302. side: {
  22303. height: math.unit(4.5, "feet"),
  22304. weight: math.unit(500, "lb"),
  22305. name: "Side",
  22306. image: {
  22307. source: "./media/characters/e-ter/side.svg",
  22308. extra: 1550 / 1248,
  22309. bottom: 146 / 1694
  22310. }
  22311. },
  22312. },
  22313. [
  22314. {
  22315. name: "Normal",
  22316. height: math.unit(4.5, "feet"),
  22317. default: true
  22318. },
  22319. ]
  22320. ))
  22321. characterMakers.push(() => makeCharacter(
  22322. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22323. {
  22324. side: {
  22325. height: math.unit(9.7, "feet"),
  22326. weight: math.unit(4000, "kg"),
  22327. name: "Side",
  22328. image: {
  22329. source: "./media/characters/yamie/side.svg"
  22330. }
  22331. },
  22332. },
  22333. [
  22334. {
  22335. name: "Normal",
  22336. height: math.unit(9.7, "feet"),
  22337. default: true
  22338. },
  22339. ]
  22340. ))
  22341. characterMakers.push(() => makeCharacter(
  22342. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22343. {
  22344. front: {
  22345. height: math.unit(50, "feet"),
  22346. weight: math.unit(50000, "kg"),
  22347. name: "Front",
  22348. image: {
  22349. source: "./media/characters/anders/front.svg",
  22350. extra: 570 / 539,
  22351. bottom: 14.7 / 586.7
  22352. }
  22353. },
  22354. },
  22355. [
  22356. {
  22357. name: "Large",
  22358. height: math.unit(50, "feet")
  22359. },
  22360. {
  22361. name: "Macro",
  22362. height: math.unit(2000, "feet"),
  22363. default: true
  22364. },
  22365. {
  22366. name: "Megamacro",
  22367. height: math.unit(12, "miles")
  22368. },
  22369. ]
  22370. ))
  22371. characterMakers.push(() => makeCharacter(
  22372. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22373. {
  22374. front: {
  22375. height: math.unit(7 + 2 / 12, "feet"),
  22376. weight: math.unit(300, "lb"),
  22377. name: "Front",
  22378. image: {
  22379. source: "./media/characters/reban/front.svg",
  22380. extra: 516 / 487,
  22381. bottom: 42.82 / 558.356
  22382. }
  22383. },
  22384. dick: {
  22385. height: math.unit(7 / 5, "feet"),
  22386. name: "Dick",
  22387. image: {
  22388. source: "./media/characters/reban/dick.svg"
  22389. }
  22390. },
  22391. },
  22392. [
  22393. {
  22394. name: "Natural Height",
  22395. height: math.unit(7 + 2 / 12, "feet")
  22396. },
  22397. {
  22398. name: "Macro",
  22399. height: math.unit(500, "feet"),
  22400. default: true
  22401. },
  22402. {
  22403. name: "Canon Height",
  22404. height: math.unit(50, "AU")
  22405. },
  22406. ]
  22407. ))
  22408. characterMakers.push(() => makeCharacter(
  22409. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22410. {
  22411. front: {
  22412. height: math.unit(6, "feet"),
  22413. weight: math.unit(150, "lb"),
  22414. name: "Front",
  22415. image: {
  22416. source: "./media/characters/terrance-keayes/front.svg",
  22417. extra: 1.005,
  22418. bottom: 151 / 1615
  22419. }
  22420. },
  22421. side: {
  22422. height: math.unit(6, "feet"),
  22423. weight: math.unit(150, "lb"),
  22424. name: "Side",
  22425. image: {
  22426. source: "./media/characters/terrance-keayes/side.svg",
  22427. extra: 1.005,
  22428. bottom: 129.4 / 1544
  22429. }
  22430. },
  22431. back: {
  22432. height: math.unit(6, "feet"),
  22433. weight: math.unit(150, "lb"),
  22434. name: "Back",
  22435. image: {
  22436. source: "./media/characters/terrance-keayes/back.svg",
  22437. extra: 1.005,
  22438. bottom: 58.4 / 1557.3
  22439. }
  22440. },
  22441. dick: {
  22442. height: math.unit(6 * 0.208, "feet"),
  22443. name: "Dick",
  22444. image: {
  22445. source: "./media/characters/terrance-keayes/dick.svg"
  22446. }
  22447. },
  22448. },
  22449. [
  22450. {
  22451. name: "Canon Height",
  22452. height: math.unit(35, "miles"),
  22453. default: true
  22454. },
  22455. ]
  22456. ))
  22457. characterMakers.push(() => makeCharacter(
  22458. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22459. {
  22460. front: {
  22461. height: math.unit(6, "feet"),
  22462. weight: math.unit(150, "lb"),
  22463. name: "Front",
  22464. image: {
  22465. source: "./media/characters/ofelia/front.svg",
  22466. extra: 546 / 541,
  22467. bottom: 39 / 583
  22468. }
  22469. },
  22470. back: {
  22471. height: math.unit(6, "feet"),
  22472. weight: math.unit(150, "lb"),
  22473. name: "Back",
  22474. image: {
  22475. source: "./media/characters/ofelia/back.svg",
  22476. extra: 564 / 559.5,
  22477. bottom: 8.69 / 573.02
  22478. }
  22479. },
  22480. maw: {
  22481. height: math.unit(1, "feet"),
  22482. name: "Maw",
  22483. image: {
  22484. source: "./media/characters/ofelia/maw.svg"
  22485. }
  22486. },
  22487. foot: {
  22488. height: math.unit(1.949, "feet"),
  22489. name: "Foot",
  22490. image: {
  22491. source: "./media/characters/ofelia/foot.svg"
  22492. }
  22493. },
  22494. },
  22495. [
  22496. {
  22497. name: "Canon Height",
  22498. height: math.unit(2000, "miles"),
  22499. default: true
  22500. },
  22501. ]
  22502. ))
  22503. characterMakers.push(() => makeCharacter(
  22504. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22505. {
  22506. front: {
  22507. height: math.unit(6, "feet"),
  22508. weight: math.unit(150, "lb"),
  22509. name: "Front",
  22510. image: {
  22511. source: "./media/characters/samuel/front.svg",
  22512. extra: 265 / 258,
  22513. bottom: 2 / 266.1566
  22514. }
  22515. },
  22516. },
  22517. [
  22518. {
  22519. name: "Macro",
  22520. height: math.unit(100, "feet"),
  22521. default: true
  22522. },
  22523. {
  22524. name: "Full Size",
  22525. height: math.unit(1000, "miles")
  22526. },
  22527. ]
  22528. ))
  22529. characterMakers.push(() => makeCharacter(
  22530. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22531. {
  22532. front: {
  22533. height: math.unit(6, "feet"),
  22534. weight: math.unit(300, "lb"),
  22535. name: "Front",
  22536. image: {
  22537. source: "./media/characters/beishir-kiel/front.svg",
  22538. extra: 569 / 547,
  22539. bottom: 41.9 / 609
  22540. }
  22541. },
  22542. maw: {
  22543. height: math.unit(6 * 0.202, "feet"),
  22544. name: "Maw",
  22545. image: {
  22546. source: "./media/characters/beishir-kiel/maw.svg"
  22547. }
  22548. },
  22549. },
  22550. [
  22551. {
  22552. name: "Macro",
  22553. height: math.unit(300, "feet"),
  22554. default: true
  22555. },
  22556. ]
  22557. ))
  22558. characterMakers.push(() => makeCharacter(
  22559. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22560. {
  22561. front: {
  22562. height: math.unit(5 + 7/12, "feet"),
  22563. weight: math.unit(120, "lb"),
  22564. name: "Front",
  22565. image: {
  22566. source: "./media/characters/logan-grey/front.svg",
  22567. extra: 1836/1738,
  22568. bottom: 108/1944
  22569. }
  22570. },
  22571. back: {
  22572. height: math.unit(5 + 7/12, "feet"),
  22573. weight: math.unit(120, "lb"),
  22574. name: "Back",
  22575. image: {
  22576. source: "./media/characters/logan-grey/back.svg",
  22577. extra: 1880/1794,
  22578. bottom: 24/1904
  22579. }
  22580. },
  22581. frontSfw: {
  22582. height: math.unit(5 + 7/12, "feet"),
  22583. weight: math.unit(120, "lb"),
  22584. name: "Front (SFW)",
  22585. image: {
  22586. source: "./media/characters/logan-grey/front-sfw.svg",
  22587. extra: 1836/1738,
  22588. bottom: 108/1944
  22589. }
  22590. },
  22591. backSfw: {
  22592. height: math.unit(5 + 7/12, "feet"),
  22593. weight: math.unit(120, "lb"),
  22594. name: "Back (SFW)",
  22595. image: {
  22596. source: "./media/characters/logan-grey/back-sfw.svg",
  22597. extra: 1880/1794,
  22598. bottom: 24/1904
  22599. }
  22600. },
  22601. hands: {
  22602. height: math.unit(0.84, "feet"),
  22603. name: "Hands",
  22604. image: {
  22605. source: "./media/characters/logan-grey/hands.svg"
  22606. }
  22607. },
  22608. paws: {
  22609. height: math.unit(0.72, "feet"),
  22610. name: "Paws",
  22611. image: {
  22612. source: "./media/characters/logan-grey/paws.svg"
  22613. }
  22614. },
  22615. cock: {
  22616. height: math.unit(1.45, "feet"),
  22617. name: "Cock",
  22618. image: {
  22619. source: "./media/characters/logan-grey/cock.svg"
  22620. }
  22621. },
  22622. cockAlt: {
  22623. height: math.unit(1.437, "feet"),
  22624. name: "Cock (alt)",
  22625. image: {
  22626. source: "./media/characters/logan-grey/cock-alt.svg"
  22627. }
  22628. },
  22629. },
  22630. [
  22631. {
  22632. name: "Normal",
  22633. height: math.unit(5 + 8 / 12, "feet")
  22634. },
  22635. {
  22636. name: "The 500 Foot Femboy",
  22637. height: math.unit(500, "feet"),
  22638. default: true
  22639. },
  22640. {
  22641. name: "Megmacro",
  22642. height: math.unit(20, "miles")
  22643. },
  22644. ]
  22645. ))
  22646. characterMakers.push(() => makeCharacter(
  22647. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22648. {
  22649. front: {
  22650. height: math.unit(8 + 2 / 12, "feet"),
  22651. weight: math.unit(275, "lb"),
  22652. name: "Front",
  22653. image: {
  22654. source: "./media/characters/draganta/front.svg",
  22655. extra: 1177 / 1135,
  22656. bottom: 33.46 / 1212.1
  22657. }
  22658. },
  22659. },
  22660. [
  22661. {
  22662. name: "Normal",
  22663. height: math.unit(8 + 6 / 12, "feet"),
  22664. default: true
  22665. },
  22666. {
  22667. name: "Macro",
  22668. height: math.unit(150, "feet")
  22669. },
  22670. {
  22671. name: "Megamacro",
  22672. height: math.unit(1000, "miles")
  22673. },
  22674. ]
  22675. ))
  22676. characterMakers.push(() => makeCharacter(
  22677. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22678. {
  22679. front: {
  22680. height: math.unit(1.72, "m"),
  22681. weight: math.unit(80, "lb"),
  22682. name: "Front",
  22683. image: {
  22684. source: "./media/characters/voski/front.svg",
  22685. extra: 2076.22 / 2022.4,
  22686. bottom: 102.7 / 2177.3866
  22687. }
  22688. },
  22689. frontNsfw: {
  22690. height: math.unit(1.72, "m"),
  22691. weight: math.unit(80, "lb"),
  22692. name: "Front (NSFW)",
  22693. image: {
  22694. source: "./media/characters/voski/front-nsfw.svg",
  22695. extra: 2076.22 / 2022.4,
  22696. bottom: 102.7 / 2177.3866
  22697. }
  22698. },
  22699. back: {
  22700. height: math.unit(1.72, "m"),
  22701. weight: math.unit(80, "lb"),
  22702. name: "Back",
  22703. image: {
  22704. source: "./media/characters/voski/back.svg",
  22705. extra: 2104 / 2051,
  22706. bottom: 10.45 / 2113.63
  22707. }
  22708. },
  22709. },
  22710. [
  22711. {
  22712. name: "Normal",
  22713. height: math.unit(1.72, "m")
  22714. },
  22715. {
  22716. name: "Macro",
  22717. height: math.unit(55, "m"),
  22718. default: true
  22719. },
  22720. {
  22721. name: "Macro+",
  22722. height: math.unit(300, "m")
  22723. },
  22724. {
  22725. name: "Macro++",
  22726. height: math.unit(700, "m")
  22727. },
  22728. {
  22729. name: "Macro+++",
  22730. height: math.unit(4500, "m")
  22731. },
  22732. {
  22733. name: "Macro++++",
  22734. height: math.unit(45, "km")
  22735. },
  22736. {
  22737. name: "Macro+++++",
  22738. height: math.unit(1220, "km")
  22739. },
  22740. ]
  22741. ))
  22742. characterMakers.push(() => makeCharacter(
  22743. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22744. {
  22745. front: {
  22746. height: math.unit(2.3, "m"),
  22747. weight: math.unit(304, "kg"),
  22748. name: "Front",
  22749. image: {
  22750. source: "./media/characters/icowom-lee/front.svg",
  22751. extra: 985 / 955,
  22752. bottom: 25.4 / 1012
  22753. }
  22754. },
  22755. fronttentacles: {
  22756. height: math.unit(2.3, "m"),
  22757. weight: math.unit(304, "kg"),
  22758. name: "Front-tentacles",
  22759. image: {
  22760. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22761. extra: 985 / 955,
  22762. bottom: 25.4 / 1012
  22763. }
  22764. },
  22765. back: {
  22766. height: math.unit(2.3, "m"),
  22767. weight: math.unit(304, "kg"),
  22768. name: "Back",
  22769. image: {
  22770. source: "./media/characters/icowom-lee/back.svg",
  22771. extra: 975 / 954,
  22772. bottom: 9.5 / 985
  22773. }
  22774. },
  22775. backtentacles: {
  22776. height: math.unit(2.3, "m"),
  22777. weight: math.unit(304, "kg"),
  22778. name: "Back-tentacles",
  22779. image: {
  22780. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22781. extra: 975 / 954,
  22782. bottom: 9.5 / 985
  22783. }
  22784. },
  22785. frontDressed: {
  22786. height: math.unit(2.3, "m"),
  22787. weight: math.unit(304, "kg"),
  22788. name: "Front (Dressed)",
  22789. image: {
  22790. source: "./media/characters/icowom-lee/front-dressed.svg",
  22791. extra: 3076 / 2933,
  22792. bottom: 51.4 / 3125.1889
  22793. }
  22794. },
  22795. rump: {
  22796. height: math.unit(0.776, "meters"),
  22797. name: "Rump",
  22798. image: {
  22799. source: "./media/characters/icowom-lee/rump.svg"
  22800. }
  22801. },
  22802. genitals: {
  22803. height: math.unit(0.78, "meters"),
  22804. name: "Genitals",
  22805. image: {
  22806. source: "./media/characters/icowom-lee/genitals.svg"
  22807. }
  22808. },
  22809. },
  22810. [
  22811. {
  22812. name: "Normal",
  22813. height: math.unit(2.3, "meters"),
  22814. default: true
  22815. },
  22816. {
  22817. name: "Macro",
  22818. height: math.unit(94, "meters"),
  22819. default: true
  22820. },
  22821. ]
  22822. ))
  22823. characterMakers.push(() => makeCharacter(
  22824. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22825. {
  22826. front: {
  22827. height: math.unit(22, "meters"),
  22828. weight: math.unit(21000, "kg"),
  22829. name: "Front",
  22830. image: {
  22831. source: "./media/characters/shock-diamond/front.svg",
  22832. extra: 2204 / 2053,
  22833. bottom: 65 / 2239.47
  22834. }
  22835. },
  22836. frontNude: {
  22837. height: math.unit(22, "meters"),
  22838. weight: math.unit(21000, "kg"),
  22839. name: "Front (Nude)",
  22840. image: {
  22841. source: "./media/characters/shock-diamond/front-nude.svg",
  22842. extra: 2514 / 2285,
  22843. bottom: 13 / 2527.56
  22844. }
  22845. },
  22846. },
  22847. [
  22848. {
  22849. name: "Normal",
  22850. height: math.unit(3, "meters")
  22851. },
  22852. {
  22853. name: "Macro",
  22854. height: math.unit(22, "meters"),
  22855. default: true
  22856. },
  22857. ]
  22858. ))
  22859. characterMakers.push(() => makeCharacter(
  22860. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22861. {
  22862. front: {
  22863. height: math.unit(5 + 4 / 12, "feet"),
  22864. weight: math.unit(120, "lb"),
  22865. name: "Front",
  22866. image: {
  22867. source: "./media/characters/rory/front.svg",
  22868. extra: 1318/1241,
  22869. bottom: 42/1360
  22870. }
  22871. },
  22872. back: {
  22873. height: math.unit(5 + 4 / 12, "feet"),
  22874. weight: math.unit(120, "lb"),
  22875. name: "Back",
  22876. image: {
  22877. source: "./media/characters/rory/back.svg",
  22878. extra: 1318/1241,
  22879. bottom: 42/1360
  22880. }
  22881. },
  22882. butt: {
  22883. height: math.unit(1.74, "feet"),
  22884. name: "Butt",
  22885. image: {
  22886. source: "./media/characters/rory/butt.svg"
  22887. }
  22888. },
  22889. dick: {
  22890. height: math.unit(1.02, "feet"),
  22891. name: "Dick",
  22892. image: {
  22893. source: "./media/characters/rory/dick.svg"
  22894. }
  22895. },
  22896. paws: {
  22897. height: math.unit(1, "feet"),
  22898. name: "Paws",
  22899. image: {
  22900. source: "./media/characters/rory/paws.svg"
  22901. }
  22902. },
  22903. frontAlt: {
  22904. height: math.unit(5 + 4 / 12, "feet"),
  22905. weight: math.unit(120, "lb"),
  22906. name: "Front (Alt)",
  22907. image: {
  22908. source: "./media/characters/rory/front-alt.svg",
  22909. extra: 589 / 556,
  22910. bottom: 45.7 / 635.76
  22911. }
  22912. },
  22913. frontAltNude: {
  22914. height: math.unit(5 + 4 / 12, "feet"),
  22915. weight: math.unit(120, "lb"),
  22916. name: "Front (Alt, Nude)",
  22917. image: {
  22918. source: "./media/characters/rory/front-alt-nude.svg",
  22919. extra: 589 / 556,
  22920. bottom: 45.7 / 635.76
  22921. }
  22922. },
  22923. side: {
  22924. height: math.unit(5 + 4 / 12, "feet"),
  22925. weight: math.unit(120, "lb"),
  22926. name: "Side",
  22927. image: {
  22928. source: "./media/characters/rory/side.svg",
  22929. extra: 597 / 564,
  22930. bottom: 55 / 653
  22931. }
  22932. },
  22933. backAlt: {
  22934. height: math.unit(5 + 4 / 12, "feet"),
  22935. weight: math.unit(120, "lb"),
  22936. name: "Back (Alt)",
  22937. image: {
  22938. source: "./media/characters/rory/back-alt.svg",
  22939. extra: 620 / 585,
  22940. bottom: 8.86 / 630.43
  22941. }
  22942. },
  22943. dickAlt: {
  22944. height: math.unit(0.86, "feet"),
  22945. name: "Dick (Alt)",
  22946. image: {
  22947. source: "./media/characters/rory/dick-alt.svg"
  22948. }
  22949. },
  22950. },
  22951. [
  22952. {
  22953. name: "Normal",
  22954. height: math.unit(5 + 4 / 12, "feet"),
  22955. default: true
  22956. },
  22957. {
  22958. name: "Macro",
  22959. height: math.unit(100, "feet")
  22960. },
  22961. {
  22962. name: "Macro+",
  22963. height: math.unit(140, "feet")
  22964. },
  22965. {
  22966. name: "Macro++",
  22967. height: math.unit(300, "feet")
  22968. },
  22969. ]
  22970. ))
  22971. characterMakers.push(() => makeCharacter(
  22972. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22973. {
  22974. front: {
  22975. height: math.unit(5 + 9 / 12, "feet"),
  22976. weight: math.unit(190, "lb"),
  22977. name: "Front",
  22978. image: {
  22979. source: "./media/characters/sprisk/front.svg",
  22980. extra: 1225 / 1180,
  22981. bottom: 42.7 / 1266.4
  22982. }
  22983. },
  22984. frontNsfw: {
  22985. height: math.unit(5 + 9 / 12, "feet"),
  22986. weight: math.unit(190, "lb"),
  22987. name: "Front (NSFW)",
  22988. image: {
  22989. source: "./media/characters/sprisk/front-nsfw.svg",
  22990. extra: 1225 / 1180,
  22991. bottom: 42.7 / 1266.4
  22992. }
  22993. },
  22994. back: {
  22995. height: math.unit(5 + 9 / 12, "feet"),
  22996. weight: math.unit(190, "lb"),
  22997. name: "Back",
  22998. image: {
  22999. source: "./media/characters/sprisk/back.svg",
  23000. extra: 1247 / 1200,
  23001. bottom: 5.6 / 1253.04
  23002. }
  23003. },
  23004. },
  23005. [
  23006. {
  23007. name: "Tiny",
  23008. height: math.unit(2, "inches")
  23009. },
  23010. {
  23011. name: "Normal",
  23012. height: math.unit(5 + 9 / 12, "feet"),
  23013. default: true
  23014. },
  23015. {
  23016. name: "Mini Macro",
  23017. height: math.unit(18, "feet")
  23018. },
  23019. {
  23020. name: "Macro",
  23021. height: math.unit(100, "feet")
  23022. },
  23023. {
  23024. name: "MACRO",
  23025. height: math.unit(50, "miles")
  23026. },
  23027. {
  23028. name: "M A C R O",
  23029. height: math.unit(300, "miles")
  23030. },
  23031. ]
  23032. ))
  23033. characterMakers.push(() => makeCharacter(
  23034. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23035. {
  23036. side: {
  23037. height: math.unit(15.6, "meters"),
  23038. weight: math.unit(700000, "kg"),
  23039. name: "Side",
  23040. image: {
  23041. source: "./media/characters/bunsen/side.svg",
  23042. extra: 1644 / 358
  23043. }
  23044. },
  23045. foot: {
  23046. height: math.unit(1.611 * 1644 / 358, "meter"),
  23047. name: "Foot",
  23048. image: {
  23049. source: "./media/characters/bunsen/foot.svg"
  23050. }
  23051. },
  23052. },
  23053. [
  23054. {
  23055. name: "Small",
  23056. height: math.unit(10, "feet")
  23057. },
  23058. {
  23059. name: "Normal",
  23060. height: math.unit(15.6, "meters"),
  23061. default: true
  23062. },
  23063. ]
  23064. ))
  23065. characterMakers.push(() => makeCharacter(
  23066. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23067. {
  23068. front: {
  23069. height: math.unit(4 + 11 / 12, "feet"),
  23070. weight: math.unit(140, "lb"),
  23071. name: "Front",
  23072. image: {
  23073. source: "./media/characters/sesh/front.svg",
  23074. extra: 3420 / 3231,
  23075. bottom: 72 / 3949.5
  23076. }
  23077. },
  23078. },
  23079. [
  23080. {
  23081. name: "Normal",
  23082. height: math.unit(4 + 11 / 12, "feet")
  23083. },
  23084. {
  23085. name: "Grown",
  23086. height: math.unit(15, "feet"),
  23087. default: true
  23088. },
  23089. {
  23090. name: "Macro",
  23091. height: math.unit(1500, "feet")
  23092. },
  23093. {
  23094. name: "Megamacro",
  23095. height: math.unit(30, "miles")
  23096. },
  23097. {
  23098. name: "Continental",
  23099. height: math.unit(3000, "miles")
  23100. },
  23101. {
  23102. name: "Gravity Mass",
  23103. height: math.unit(300000, "miles")
  23104. },
  23105. {
  23106. name: "Planet Buster",
  23107. height: math.unit(30000000, "miles")
  23108. },
  23109. {
  23110. name: "Big",
  23111. height: math.unit(3000000000, "miles")
  23112. },
  23113. ]
  23114. ))
  23115. characterMakers.push(() => makeCharacter(
  23116. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23117. {
  23118. front: {
  23119. height: math.unit(9, "feet"),
  23120. weight: math.unit(350, "lb"),
  23121. name: "Front",
  23122. image: {
  23123. source: "./media/characters/pepper/front.svg",
  23124. extra: 1448 / 1312,
  23125. bottom: 9.4 / 1457.88
  23126. }
  23127. },
  23128. back: {
  23129. height: math.unit(9, "feet"),
  23130. weight: math.unit(350, "lb"),
  23131. name: "Back",
  23132. image: {
  23133. source: "./media/characters/pepper/back.svg",
  23134. extra: 1423 / 1300,
  23135. bottom: 4.6 / 1429
  23136. }
  23137. },
  23138. maw: {
  23139. height: math.unit(0.932, "feet"),
  23140. name: "Maw",
  23141. image: {
  23142. source: "./media/characters/pepper/maw.svg"
  23143. }
  23144. },
  23145. },
  23146. [
  23147. {
  23148. name: "Normal",
  23149. height: math.unit(9, "feet"),
  23150. default: true
  23151. },
  23152. ]
  23153. ))
  23154. characterMakers.push(() => makeCharacter(
  23155. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23156. {
  23157. front: {
  23158. height: math.unit(6, "feet"),
  23159. weight: math.unit(150, "lb"),
  23160. name: "Front",
  23161. image: {
  23162. source: "./media/characters/maelstrom/front.svg",
  23163. extra: 2100 / 1883,
  23164. bottom: 94 / 2196.7
  23165. }
  23166. },
  23167. },
  23168. [
  23169. {
  23170. name: "Less Kaiju",
  23171. height: math.unit(200, "feet")
  23172. },
  23173. {
  23174. name: "Kaiju",
  23175. height: math.unit(400, "feet"),
  23176. default: true
  23177. },
  23178. {
  23179. name: "Kaiju-er",
  23180. height: math.unit(600, "feet")
  23181. },
  23182. ]
  23183. ))
  23184. characterMakers.push(() => makeCharacter(
  23185. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23186. {
  23187. front: {
  23188. height: math.unit(6 + 5 / 12, "feet"),
  23189. weight: math.unit(180, "lb"),
  23190. name: "Front",
  23191. image: {
  23192. source: "./media/characters/lexir/front.svg",
  23193. extra: 180 / 172,
  23194. bottom: 12 / 192
  23195. }
  23196. },
  23197. back: {
  23198. height: math.unit(6 + 5 / 12, "feet"),
  23199. weight: math.unit(180, "lb"),
  23200. name: "Back",
  23201. image: {
  23202. source: "./media/characters/lexir/back.svg",
  23203. extra: 183.84 / 175.5,
  23204. bottom: 3.1 / 187
  23205. }
  23206. },
  23207. },
  23208. [
  23209. {
  23210. name: "Very Smal",
  23211. height: math.unit(1, "nm")
  23212. },
  23213. {
  23214. name: "Normal",
  23215. height: math.unit(6 + 5 / 12, "feet"),
  23216. default: true
  23217. },
  23218. {
  23219. name: "Macro",
  23220. height: math.unit(1, "mile")
  23221. },
  23222. {
  23223. name: "Megamacro",
  23224. height: math.unit(50, "miles")
  23225. },
  23226. ]
  23227. ))
  23228. characterMakers.push(() => makeCharacter(
  23229. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23230. {
  23231. front: {
  23232. height: math.unit(1.5, "meters"),
  23233. weight: math.unit(100, "lb"),
  23234. name: "Front",
  23235. image: {
  23236. source: "./media/characters/maksio/front.svg",
  23237. extra: 1549 / 1531,
  23238. bottom: 123.7 / 1674.5429
  23239. }
  23240. },
  23241. back: {
  23242. height: math.unit(1.5, "meters"),
  23243. weight: math.unit(100, "lb"),
  23244. name: "Back",
  23245. image: {
  23246. source: "./media/characters/maksio/back.svg",
  23247. extra: 1541 / 1509,
  23248. bottom: 97 / 1639
  23249. }
  23250. },
  23251. hand: {
  23252. height: math.unit(0.621, "feet"),
  23253. name: "Hand",
  23254. image: {
  23255. source: "./media/characters/maksio/hand.svg"
  23256. }
  23257. },
  23258. foot: {
  23259. height: math.unit(1.611, "feet"),
  23260. name: "Foot",
  23261. image: {
  23262. source: "./media/characters/maksio/foot.svg"
  23263. }
  23264. },
  23265. },
  23266. [
  23267. {
  23268. name: "Shrunken",
  23269. height: math.unit(10, "cm")
  23270. },
  23271. {
  23272. name: "Normal",
  23273. height: math.unit(150, "cm"),
  23274. default: true
  23275. },
  23276. ]
  23277. ))
  23278. characterMakers.push(() => makeCharacter(
  23279. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23280. {
  23281. front: {
  23282. height: math.unit(100, "feet"),
  23283. name: "Front",
  23284. image: {
  23285. source: "./media/characters/erza-bear/front.svg",
  23286. extra: 2449 / 2390,
  23287. bottom: 46 / 2494
  23288. }
  23289. },
  23290. back: {
  23291. height: math.unit(100, "feet"),
  23292. name: "Back",
  23293. image: {
  23294. source: "./media/characters/erza-bear/back.svg",
  23295. extra: 2489 / 2430,
  23296. bottom: 85.4 / 2480
  23297. }
  23298. },
  23299. tail: {
  23300. height: math.unit(42, "feet"),
  23301. name: "Tail",
  23302. image: {
  23303. source: "./media/characters/erza-bear/tail.svg"
  23304. }
  23305. },
  23306. tongue: {
  23307. height: math.unit(8, "feet"),
  23308. name: "Tongue",
  23309. image: {
  23310. source: "./media/characters/erza-bear/tongue.svg"
  23311. }
  23312. },
  23313. dick: {
  23314. height: math.unit(10.5, "feet"),
  23315. name: "Dick",
  23316. image: {
  23317. source: "./media/characters/erza-bear/dick.svg"
  23318. }
  23319. },
  23320. dickVertical: {
  23321. height: math.unit(16.9, "feet"),
  23322. name: "Dick (Vertical)",
  23323. image: {
  23324. source: "./media/characters/erza-bear/dick-vertical.svg"
  23325. }
  23326. },
  23327. },
  23328. [
  23329. {
  23330. name: "Macro",
  23331. height: math.unit(100, "feet"),
  23332. default: true
  23333. },
  23334. ]
  23335. ))
  23336. characterMakers.push(() => makeCharacter(
  23337. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23338. {
  23339. front: {
  23340. height: math.unit(172, "cm"),
  23341. weight: math.unit(73, "kg"),
  23342. name: "Front",
  23343. image: {
  23344. source: "./media/characters/violet-flor/front.svg",
  23345. extra: 1530 / 1442,
  23346. bottom: 61.9 / 1588.8
  23347. }
  23348. },
  23349. back: {
  23350. height: math.unit(180, "cm"),
  23351. weight: math.unit(73, "kg"),
  23352. name: "Back",
  23353. image: {
  23354. source: "./media/characters/violet-flor/back.svg",
  23355. extra: 1692 / 1630,
  23356. bottom: 20 / 1712
  23357. }
  23358. },
  23359. },
  23360. [
  23361. {
  23362. name: "Normal",
  23363. height: math.unit(172, "cm"),
  23364. default: true
  23365. },
  23366. ]
  23367. ))
  23368. characterMakers.push(() => makeCharacter(
  23369. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23370. {
  23371. front: {
  23372. height: math.unit(6, "feet"),
  23373. weight: math.unit(220, "lb"),
  23374. name: "Front",
  23375. image: {
  23376. source: "./media/characters/lynn-rhea/front.svg",
  23377. extra: 310 / 273
  23378. }
  23379. },
  23380. back: {
  23381. height: math.unit(6, "feet"),
  23382. weight: math.unit(220, "lb"),
  23383. name: "Back",
  23384. image: {
  23385. source: "./media/characters/lynn-rhea/back.svg",
  23386. extra: 310 / 273
  23387. }
  23388. },
  23389. dicks: {
  23390. height: math.unit(0.9, "feet"),
  23391. name: "Dicks",
  23392. image: {
  23393. source: "./media/characters/lynn-rhea/dicks.svg"
  23394. }
  23395. },
  23396. slit: {
  23397. height: math.unit(0.4, "feet"),
  23398. name: "Slit",
  23399. image: {
  23400. source: "./media/characters/lynn-rhea/slit.svg"
  23401. }
  23402. },
  23403. },
  23404. [
  23405. {
  23406. name: "Micro",
  23407. height: math.unit(1, "inch")
  23408. },
  23409. {
  23410. name: "Macro",
  23411. height: math.unit(60, "feet"),
  23412. default: true
  23413. },
  23414. {
  23415. name: "Megamacro",
  23416. height: math.unit(2, "miles")
  23417. },
  23418. {
  23419. name: "Gigamacro",
  23420. height: math.unit(3, "earths")
  23421. },
  23422. {
  23423. name: "Galactic",
  23424. height: math.unit(0.8, "galaxies")
  23425. },
  23426. ]
  23427. ))
  23428. characterMakers.push(() => makeCharacter(
  23429. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23430. {
  23431. front: {
  23432. height: math.unit(1600, "feet"),
  23433. weight: math.unit(85758785169, "kg"),
  23434. name: "Front",
  23435. image: {
  23436. source: "./media/characters/valathos/front.svg",
  23437. extra: 1451 / 1339
  23438. }
  23439. },
  23440. },
  23441. [
  23442. {
  23443. name: "Macro",
  23444. height: math.unit(1600, "feet"),
  23445. default: true
  23446. },
  23447. ]
  23448. ))
  23449. characterMakers.push(() => makeCharacter(
  23450. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23451. {
  23452. front: {
  23453. height: math.unit(7 + 5 / 12, "feet"),
  23454. weight: math.unit(300, "lb"),
  23455. name: "Front",
  23456. image: {
  23457. source: "./media/characters/azula/front.svg",
  23458. extra: 3208 / 2880,
  23459. bottom: 80.2 / 3277
  23460. }
  23461. },
  23462. back: {
  23463. height: math.unit(7 + 5 / 12, "feet"),
  23464. weight: math.unit(300, "lb"),
  23465. name: "Back",
  23466. image: {
  23467. source: "./media/characters/azula/back.svg",
  23468. extra: 3169 / 2822,
  23469. bottom: 150.6 / 3321
  23470. }
  23471. },
  23472. },
  23473. [
  23474. {
  23475. name: "Normal",
  23476. height: math.unit(7 + 5 / 12, "feet"),
  23477. default: true
  23478. },
  23479. {
  23480. name: "Big",
  23481. height: math.unit(20, "feet")
  23482. },
  23483. ]
  23484. ))
  23485. characterMakers.push(() => makeCharacter(
  23486. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23487. {
  23488. front: {
  23489. height: math.unit(5 + 1 / 12, "feet"),
  23490. weight: math.unit(110, "lb"),
  23491. name: "Front",
  23492. image: {
  23493. source: "./media/characters/rupert/front.svg",
  23494. extra: 1549 / 1495,
  23495. bottom: 54.2 / 1604.4
  23496. }
  23497. },
  23498. },
  23499. [
  23500. {
  23501. name: "Normal",
  23502. height: math.unit(5 + 1 / 12, "feet"),
  23503. default: true
  23504. },
  23505. ]
  23506. ))
  23507. characterMakers.push(() => makeCharacter(
  23508. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23509. {
  23510. front: {
  23511. height: math.unit(8 + 4 / 12, "feet"),
  23512. weight: math.unit(350, "lb"),
  23513. name: "Front",
  23514. image: {
  23515. source: "./media/characters/sheera-castellar/front.svg",
  23516. extra: 1957 / 1894,
  23517. bottom: 26.97 / 1975.017
  23518. }
  23519. },
  23520. side: {
  23521. height: math.unit(8 + 4 / 12, "feet"),
  23522. weight: math.unit(350, "lb"),
  23523. name: "Side",
  23524. image: {
  23525. source: "./media/characters/sheera-castellar/side.svg",
  23526. extra: 1957 / 1894
  23527. }
  23528. },
  23529. back: {
  23530. height: math.unit(8 + 4 / 12, "feet"),
  23531. weight: math.unit(350, "lb"),
  23532. name: "Back",
  23533. image: {
  23534. source: "./media/characters/sheera-castellar/back.svg",
  23535. extra: 1957 / 1894
  23536. }
  23537. },
  23538. angled: {
  23539. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23540. weight: math.unit(350, "lb"),
  23541. name: "Angled",
  23542. image: {
  23543. source: "./media/characters/sheera-castellar/angled.svg",
  23544. extra: 1807 / 1707,
  23545. bottom: 68 / 1875
  23546. }
  23547. },
  23548. genitals: {
  23549. height: math.unit(2.2, "feet"),
  23550. name: "Genitals",
  23551. image: {
  23552. source: "./media/characters/sheera-castellar/genitals.svg"
  23553. }
  23554. },
  23555. taur: {
  23556. height: math.unit(10 + 6/12, "feet"),
  23557. name: "Taur",
  23558. image: {
  23559. source: "./media/characters/sheera-castellar/taur.svg",
  23560. extra: 2017/1909,
  23561. bottom: 185/2202
  23562. }
  23563. },
  23564. },
  23565. [
  23566. {
  23567. name: "Normal",
  23568. height: math.unit(8 + 4 / 12, "feet")
  23569. },
  23570. {
  23571. name: "Macro",
  23572. height: math.unit(150, "feet"),
  23573. default: true
  23574. },
  23575. {
  23576. name: "Macro+",
  23577. height: math.unit(800, "feet")
  23578. },
  23579. ]
  23580. ))
  23581. characterMakers.push(() => makeCharacter(
  23582. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23583. {
  23584. front: {
  23585. height: math.unit(6, "feet"),
  23586. weight: math.unit(150, "lb"),
  23587. name: "Front",
  23588. image: {
  23589. source: "./media/characters/jaipur/front.svg",
  23590. extra: 3860 / 3731,
  23591. bottom: 287 / 4140
  23592. }
  23593. },
  23594. back: {
  23595. height: math.unit(6, "feet"),
  23596. weight: math.unit(150, "lb"),
  23597. name: "Back",
  23598. image: {
  23599. source: "./media/characters/jaipur/back.svg",
  23600. extra: 4060 / 3930,
  23601. bottom: 151 / 4200
  23602. }
  23603. },
  23604. },
  23605. [
  23606. {
  23607. name: "Normal",
  23608. height: math.unit(1.85, "meters"),
  23609. default: true
  23610. },
  23611. {
  23612. name: "Macro",
  23613. height: math.unit(150, "meters")
  23614. },
  23615. {
  23616. name: "Macro+",
  23617. height: math.unit(0.5, "miles")
  23618. },
  23619. {
  23620. name: "Macro++",
  23621. height: math.unit(2.5, "miles")
  23622. },
  23623. {
  23624. name: "Macro+++",
  23625. height: math.unit(12, "miles")
  23626. },
  23627. {
  23628. name: "Macro++++",
  23629. height: math.unit(120, "miles")
  23630. },
  23631. {
  23632. name: "Macro+++++",
  23633. height: math.unit(1200, "miles")
  23634. },
  23635. ]
  23636. ))
  23637. characterMakers.push(() => makeCharacter(
  23638. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23639. {
  23640. front: {
  23641. height: math.unit(6, "feet"),
  23642. weight: math.unit(150, "lb"),
  23643. name: "Front",
  23644. image: {
  23645. source: "./media/characters/sheila-wolf/front.svg",
  23646. extra: 1931 / 1808,
  23647. bottom: 29.5 / 1960
  23648. }
  23649. },
  23650. dick: {
  23651. height: math.unit(1.464, "feet"),
  23652. name: "Dick",
  23653. image: {
  23654. source: "./media/characters/sheila-wolf/dick.svg"
  23655. }
  23656. },
  23657. muzzle: {
  23658. height: math.unit(0.513, "feet"),
  23659. name: "Muzzle",
  23660. image: {
  23661. source: "./media/characters/sheila-wolf/muzzle.svg"
  23662. }
  23663. },
  23664. },
  23665. [
  23666. {
  23667. name: "Macro",
  23668. height: math.unit(70, "feet"),
  23669. default: true
  23670. },
  23671. ]
  23672. ))
  23673. characterMakers.push(() => makeCharacter(
  23674. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23675. {
  23676. front: {
  23677. height: math.unit(32, "meters"),
  23678. weight: math.unit(300000, "kg"),
  23679. name: "Front",
  23680. image: {
  23681. source: "./media/characters/almor/front.svg",
  23682. extra: 1408 / 1322,
  23683. bottom: 94.6 / 1506.5
  23684. }
  23685. },
  23686. },
  23687. [
  23688. {
  23689. name: "Macro",
  23690. height: math.unit(32, "meters"),
  23691. default: true
  23692. },
  23693. ]
  23694. ))
  23695. characterMakers.push(() => makeCharacter(
  23696. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23697. {
  23698. front: {
  23699. height: math.unit(7, "feet"),
  23700. weight: math.unit(200, "lb"),
  23701. name: "Front",
  23702. image: {
  23703. source: "./media/characters/silver/front.svg",
  23704. extra: 472.1 / 450.5,
  23705. bottom: 26.5 / 499.424
  23706. }
  23707. },
  23708. },
  23709. [
  23710. {
  23711. name: "Normal",
  23712. height: math.unit(7, "feet"),
  23713. default: true
  23714. },
  23715. {
  23716. name: "Macro",
  23717. height: math.unit(800, "feet")
  23718. },
  23719. {
  23720. name: "Megamacro",
  23721. height: math.unit(250, "miles")
  23722. },
  23723. ]
  23724. ))
  23725. characterMakers.push(() => makeCharacter(
  23726. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23727. {
  23728. front: {
  23729. height: math.unit(6, "feet"),
  23730. weight: math.unit(150, "lb"),
  23731. name: "Front",
  23732. image: {
  23733. source: "./media/characters/pliskin/front.svg",
  23734. extra: 1469 / 1359,
  23735. bottom: 70 / 1540
  23736. }
  23737. },
  23738. },
  23739. [
  23740. {
  23741. name: "Micro",
  23742. height: math.unit(3, "inches")
  23743. },
  23744. {
  23745. name: "Normal",
  23746. height: math.unit(5 + 11 / 12, "feet"),
  23747. default: true
  23748. },
  23749. {
  23750. name: "Macro",
  23751. height: math.unit(120, "feet")
  23752. },
  23753. ]
  23754. ))
  23755. characterMakers.push(() => makeCharacter(
  23756. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23757. {
  23758. front: {
  23759. height: math.unit(6, "feet"),
  23760. weight: math.unit(150, "lb"),
  23761. name: "Front",
  23762. image: {
  23763. source: "./media/characters/sammy/front.svg",
  23764. extra: 1193 / 1089,
  23765. bottom: 30.5 / 1226
  23766. }
  23767. },
  23768. },
  23769. [
  23770. {
  23771. name: "Macro",
  23772. height: math.unit(1700, "feet"),
  23773. default: true
  23774. },
  23775. {
  23776. name: "Examacro",
  23777. height: math.unit(2.5e9, "lightyears")
  23778. },
  23779. ]
  23780. ))
  23781. characterMakers.push(() => makeCharacter(
  23782. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23783. {
  23784. front: {
  23785. height: math.unit(21, "meters"),
  23786. weight: math.unit(12, "tonnes"),
  23787. name: "Front",
  23788. image: {
  23789. source: "./media/characters/kuru/front.svg",
  23790. extra: 4301 / 3785,
  23791. bottom: 371.3 / 4691
  23792. }
  23793. },
  23794. },
  23795. [
  23796. {
  23797. name: "Macro",
  23798. height: math.unit(21, "meters"),
  23799. default: true
  23800. },
  23801. ]
  23802. ))
  23803. characterMakers.push(() => makeCharacter(
  23804. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23805. {
  23806. front: {
  23807. height: math.unit(23, "meters"),
  23808. weight: math.unit(12.2, "tonnes"),
  23809. name: "Front",
  23810. image: {
  23811. source: "./media/characters/rakka/front.svg",
  23812. extra: 4670 / 4169,
  23813. bottom: 301 / 4968.7
  23814. }
  23815. },
  23816. },
  23817. [
  23818. {
  23819. name: "Macro",
  23820. height: math.unit(23, "meters"),
  23821. default: true
  23822. },
  23823. ]
  23824. ))
  23825. characterMakers.push(() => makeCharacter(
  23826. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23827. {
  23828. front: {
  23829. height: math.unit(6, "feet"),
  23830. weight: math.unit(150, "lb"),
  23831. name: "Front",
  23832. image: {
  23833. source: "./media/characters/rhys-feline/front.svg",
  23834. extra: 2488 / 2308,
  23835. bottom: 35.67 / 2519.19
  23836. }
  23837. },
  23838. },
  23839. [
  23840. {
  23841. name: "Really Small",
  23842. height: math.unit(1, "nm")
  23843. },
  23844. {
  23845. name: "Micro",
  23846. height: math.unit(4, "inches")
  23847. },
  23848. {
  23849. name: "Normal",
  23850. height: math.unit(4 + 10 / 12, "feet"),
  23851. default: true
  23852. },
  23853. {
  23854. name: "Macro",
  23855. height: math.unit(100, "feet")
  23856. },
  23857. {
  23858. name: "Megamacto",
  23859. height: math.unit(50, "miles")
  23860. },
  23861. ]
  23862. ))
  23863. characterMakers.push(() => makeCharacter(
  23864. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23865. {
  23866. side: {
  23867. height: math.unit(30, "feet"),
  23868. weight: math.unit(35000, "kg"),
  23869. name: "Side",
  23870. image: {
  23871. source: "./media/characters/alydar/side.svg",
  23872. extra: 234 / 222,
  23873. bottom: 6.5 / 241
  23874. }
  23875. },
  23876. front: {
  23877. height: math.unit(30, "feet"),
  23878. weight: math.unit(35000, "kg"),
  23879. name: "Front",
  23880. image: {
  23881. source: "./media/characters/alydar/front.svg",
  23882. extra: 223.37 / 210.2,
  23883. bottom: 22.3 / 246.76
  23884. }
  23885. },
  23886. top: {
  23887. height: math.unit(64.54, "feet"),
  23888. weight: math.unit(35000, "kg"),
  23889. name: "Top",
  23890. image: {
  23891. source: "./media/characters/alydar/top.svg"
  23892. }
  23893. },
  23894. anthro: {
  23895. height: math.unit(30, "feet"),
  23896. weight: math.unit(9000, "kg"),
  23897. name: "Anthro",
  23898. image: {
  23899. source: "./media/characters/alydar/anthro.svg",
  23900. extra: 432 / 421,
  23901. bottom: 7.18 / 440
  23902. }
  23903. },
  23904. maw: {
  23905. height: math.unit(11.693, "feet"),
  23906. name: "Maw",
  23907. image: {
  23908. source: "./media/characters/alydar/maw.svg"
  23909. }
  23910. },
  23911. head: {
  23912. height: math.unit(11.693, "feet"),
  23913. name: "Head",
  23914. image: {
  23915. source: "./media/characters/alydar/head.svg"
  23916. }
  23917. },
  23918. headAlt: {
  23919. height: math.unit(12.861, "feet"),
  23920. name: "Head (Alt)",
  23921. image: {
  23922. source: "./media/characters/alydar/head-alt.svg"
  23923. }
  23924. },
  23925. wing: {
  23926. height: math.unit(20.712, "feet"),
  23927. name: "Wing",
  23928. image: {
  23929. source: "./media/characters/alydar/wing.svg"
  23930. }
  23931. },
  23932. wingFeather: {
  23933. height: math.unit(9.662, "feet"),
  23934. name: "Wing Feather",
  23935. image: {
  23936. source: "./media/characters/alydar/wing-feather.svg"
  23937. }
  23938. },
  23939. countourFeather: {
  23940. height: math.unit(4.154, "feet"),
  23941. name: "Contour Feather",
  23942. image: {
  23943. source: "./media/characters/alydar/contour-feather.svg"
  23944. }
  23945. },
  23946. },
  23947. [
  23948. {
  23949. name: "Diplomatic",
  23950. height: math.unit(13, "feet"),
  23951. default: true
  23952. },
  23953. {
  23954. name: "Small",
  23955. height: math.unit(30, "feet")
  23956. },
  23957. {
  23958. name: "Normal",
  23959. height: math.unit(95, "feet"),
  23960. default: true
  23961. },
  23962. {
  23963. name: "Large",
  23964. height: math.unit(285, "feet")
  23965. },
  23966. {
  23967. name: "Incomprehensible",
  23968. height: math.unit(450, "megameters")
  23969. },
  23970. ]
  23971. ))
  23972. characterMakers.push(() => makeCharacter(
  23973. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23974. {
  23975. side: {
  23976. height: math.unit(11, "feet"),
  23977. weight: math.unit(1750, "kg"),
  23978. name: "Side",
  23979. image: {
  23980. source: "./media/characters/selicia/side.svg",
  23981. extra: 440 / 396,
  23982. bottom: 24.8 / 465.979
  23983. }
  23984. },
  23985. maw: {
  23986. height: math.unit(4.665, "feet"),
  23987. name: "Maw",
  23988. image: {
  23989. source: "./media/characters/selicia/maw.svg"
  23990. }
  23991. },
  23992. },
  23993. [
  23994. {
  23995. name: "Normal",
  23996. height: math.unit(11, "feet"),
  23997. default: true
  23998. },
  23999. ]
  24000. ))
  24001. characterMakers.push(() => makeCharacter(
  24002. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24003. {
  24004. side: {
  24005. height: math.unit(2 + 6 / 12, "feet"),
  24006. weight: math.unit(30, "lb"),
  24007. name: "Side",
  24008. image: {
  24009. source: "./media/characters/layla/side.svg",
  24010. extra: 244 / 188,
  24011. bottom: 18.2 / 262.1
  24012. }
  24013. },
  24014. back: {
  24015. height: math.unit(2 + 6 / 12, "feet"),
  24016. weight: math.unit(30, "lb"),
  24017. name: "Back",
  24018. image: {
  24019. source: "./media/characters/layla/back.svg",
  24020. extra: 308 / 241.5,
  24021. bottom: 8.9 / 316.8
  24022. }
  24023. },
  24024. cumming: {
  24025. height: math.unit(2 + 6 / 12, "feet"),
  24026. weight: math.unit(30, "lb"),
  24027. name: "Cumming",
  24028. image: {
  24029. source: "./media/characters/layla/cumming.svg",
  24030. extra: 342 / 279,
  24031. bottom: 595 / 938
  24032. }
  24033. },
  24034. dickFlaccid: {
  24035. height: math.unit(2.595, "feet"),
  24036. name: "Flaccid Genitals",
  24037. image: {
  24038. source: "./media/characters/layla/dick-flaccid.svg"
  24039. }
  24040. },
  24041. dickErect: {
  24042. height: math.unit(2.359, "feet"),
  24043. name: "Erect Genitals",
  24044. image: {
  24045. source: "./media/characters/layla/dick-erect.svg"
  24046. }
  24047. },
  24048. dragon: {
  24049. height: math.unit(40, "feet"),
  24050. name: "Dragon",
  24051. image: {
  24052. source: "./media/characters/layla/dragon.svg",
  24053. extra: 610/535,
  24054. bottom: 367/977
  24055. }
  24056. },
  24057. taur: {
  24058. height: math.unit(30, "feet"),
  24059. name: "Taur",
  24060. image: {
  24061. source: "./media/characters/layla/taur.svg",
  24062. extra: 1268/1199,
  24063. bottom: 112/1380
  24064. }
  24065. },
  24066. },
  24067. [
  24068. {
  24069. name: "Micro",
  24070. height: math.unit(1, "inch")
  24071. },
  24072. {
  24073. name: "Small",
  24074. height: math.unit(1, "foot")
  24075. },
  24076. {
  24077. name: "Normal",
  24078. height: math.unit(2 + 6 / 12, "feet"),
  24079. default: true
  24080. },
  24081. {
  24082. name: "Macro",
  24083. height: math.unit(200, "feet")
  24084. },
  24085. {
  24086. name: "Megamacro",
  24087. height: math.unit(1000, "miles")
  24088. },
  24089. {
  24090. name: "Planetary",
  24091. height: math.unit(8000, "miles")
  24092. },
  24093. {
  24094. name: "True Layla",
  24095. height: math.unit(200000 * 7, "multiverses")
  24096. },
  24097. ]
  24098. ))
  24099. characterMakers.push(() => makeCharacter(
  24100. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24101. {
  24102. back: {
  24103. height: math.unit(10.5, "feet"),
  24104. weight: math.unit(800, "lb"),
  24105. name: "Back",
  24106. image: {
  24107. source: "./media/characters/knox/back.svg",
  24108. extra: 1486 / 1089,
  24109. bottom: 107 / 1601.4
  24110. }
  24111. },
  24112. side: {
  24113. height: math.unit(10.5, "feet"),
  24114. weight: math.unit(800, "lb"),
  24115. name: "Side",
  24116. image: {
  24117. source: "./media/characters/knox/side.svg",
  24118. extra: 244 / 218,
  24119. bottom: 14 / 260
  24120. }
  24121. },
  24122. },
  24123. [
  24124. {
  24125. name: "Compact",
  24126. height: math.unit(10.5, "feet"),
  24127. default: true
  24128. },
  24129. {
  24130. name: "Dynamax",
  24131. height: math.unit(210, "feet")
  24132. },
  24133. {
  24134. name: "Full Macro",
  24135. height: math.unit(850, "feet")
  24136. },
  24137. ]
  24138. ))
  24139. characterMakers.push(() => makeCharacter(
  24140. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24141. {
  24142. front: {
  24143. height: math.unit(28, "feet"),
  24144. weight: math.unit(10500, "lb"),
  24145. name: "Front",
  24146. image: {
  24147. source: "./media/characters/kayda/front.svg",
  24148. extra: 1536 / 1428,
  24149. bottom: 68.7 / 1603
  24150. }
  24151. },
  24152. back: {
  24153. height: math.unit(28, "feet"),
  24154. weight: math.unit(10500, "lb"),
  24155. name: "Back",
  24156. image: {
  24157. source: "./media/characters/kayda/back.svg",
  24158. extra: 1557 / 1464,
  24159. bottom: 39.5 / 1597.49
  24160. }
  24161. },
  24162. dick: {
  24163. height: math.unit(3.858, "feet"),
  24164. name: "Dick",
  24165. image: {
  24166. source: "./media/characters/kayda/dick.svg"
  24167. }
  24168. },
  24169. },
  24170. [
  24171. {
  24172. name: "Macro",
  24173. height: math.unit(28, "feet"),
  24174. default: true
  24175. },
  24176. ]
  24177. ))
  24178. characterMakers.push(() => makeCharacter(
  24179. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24180. {
  24181. front: {
  24182. height: math.unit(10 + 11 / 12, "feet"),
  24183. weight: math.unit(1400, "lb"),
  24184. name: "Front",
  24185. image: {
  24186. source: "./media/characters/brian/front.svg",
  24187. extra: 737 / 692,
  24188. bottom: 55.4 / 785
  24189. }
  24190. },
  24191. },
  24192. [
  24193. {
  24194. name: "Normal",
  24195. height: math.unit(10 + 11 / 12, "feet"),
  24196. default: true
  24197. },
  24198. ]
  24199. ))
  24200. characterMakers.push(() => makeCharacter(
  24201. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24202. {
  24203. front: {
  24204. height: math.unit(5 + 8 / 12, "feet"),
  24205. weight: math.unit(140, "lb"),
  24206. name: "Front",
  24207. image: {
  24208. source: "./media/characters/khemri/front.svg",
  24209. extra: 4780 / 4059,
  24210. bottom: 80.1 / 4859.25
  24211. }
  24212. },
  24213. },
  24214. [
  24215. {
  24216. name: "Micro",
  24217. height: math.unit(6, "inches")
  24218. },
  24219. {
  24220. name: "Normal",
  24221. height: math.unit(5 + 8 / 12, "feet"),
  24222. default: true
  24223. },
  24224. ]
  24225. ))
  24226. characterMakers.push(() => makeCharacter(
  24227. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24228. {
  24229. front: {
  24230. height: math.unit(13, "feet"),
  24231. weight: math.unit(1700, "lb"),
  24232. name: "Front",
  24233. image: {
  24234. source: "./media/characters/felix-braveheart/front.svg",
  24235. extra: 1222 / 1157,
  24236. bottom: 53.2 / 1280
  24237. }
  24238. },
  24239. back: {
  24240. height: math.unit(13, "feet"),
  24241. weight: math.unit(1700, "lb"),
  24242. name: "Back",
  24243. image: {
  24244. source: "./media/characters/felix-braveheart/back.svg",
  24245. extra: 1277 / 1203,
  24246. bottom: 50.2 / 1327
  24247. }
  24248. },
  24249. feral: {
  24250. height: math.unit(6, "feet"),
  24251. weight: math.unit(400, "lb"),
  24252. name: "Feral",
  24253. image: {
  24254. source: "./media/characters/felix-braveheart/feral.svg",
  24255. extra: 682 / 625,
  24256. bottom: 6.9 / 688
  24257. }
  24258. },
  24259. },
  24260. [
  24261. {
  24262. name: "Normal",
  24263. height: math.unit(13, "feet"),
  24264. default: true
  24265. },
  24266. ]
  24267. ))
  24268. characterMakers.push(() => makeCharacter(
  24269. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24270. {
  24271. side: {
  24272. height: math.unit(5 + 11 / 12, "feet"),
  24273. weight: math.unit(1400, "lb"),
  24274. name: "Side",
  24275. image: {
  24276. source: "./media/characters/shadow-blade/side.svg",
  24277. extra: 1726 / 1267,
  24278. bottom: 58.4 / 1785
  24279. }
  24280. },
  24281. },
  24282. [
  24283. {
  24284. name: "Normal",
  24285. height: math.unit(5 + 11 / 12, "feet"),
  24286. default: true
  24287. },
  24288. ]
  24289. ))
  24290. characterMakers.push(() => makeCharacter(
  24291. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24292. {
  24293. front: {
  24294. height: math.unit(1 + 6 / 12, "feet"),
  24295. weight: math.unit(25, "lb"),
  24296. name: "Front",
  24297. image: {
  24298. source: "./media/characters/karla-halldor/front.svg",
  24299. extra: 1459 / 1383,
  24300. bottom: 12 / 1472
  24301. }
  24302. },
  24303. },
  24304. [
  24305. {
  24306. name: "Normal",
  24307. height: math.unit(1 + 6 / 12, "feet"),
  24308. default: true
  24309. },
  24310. ]
  24311. ))
  24312. characterMakers.push(() => makeCharacter(
  24313. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24314. {
  24315. front: {
  24316. height: math.unit(6 + 2 / 12, "feet"),
  24317. weight: math.unit(160, "lb"),
  24318. name: "Front",
  24319. image: {
  24320. source: "./media/characters/ariam/front.svg",
  24321. extra: 1073/976,
  24322. bottom: 52/1125
  24323. }
  24324. },
  24325. back: {
  24326. height: math.unit(6 + 2/12, "feet"),
  24327. weight: math.unit(160, "lb"),
  24328. name: "Back",
  24329. image: {
  24330. source: "./media/characters/ariam/back.svg",
  24331. extra: 1103/1023,
  24332. bottom: 9/1112
  24333. }
  24334. },
  24335. dressed: {
  24336. height: math.unit(6 + 2/12, "feet"),
  24337. weight: math.unit(160, "lb"),
  24338. name: "Dressed",
  24339. image: {
  24340. source: "./media/characters/ariam/dressed.svg",
  24341. extra: 1099/1009,
  24342. bottom: 25/1124
  24343. }
  24344. },
  24345. squatting: {
  24346. height: math.unit(4.1, "feet"),
  24347. weight: math.unit(160, "lb"),
  24348. name: "Squatting",
  24349. image: {
  24350. source: "./media/characters/ariam/squatting.svg",
  24351. extra: 2617 / 2112,
  24352. bottom: 61.2 / 2681,
  24353. }
  24354. },
  24355. },
  24356. [
  24357. {
  24358. name: "Normal",
  24359. height: math.unit(6 + 2 / 12, "feet"),
  24360. default: true
  24361. },
  24362. {
  24363. name: "Normal+",
  24364. height: math.unit(4, "meters")
  24365. },
  24366. {
  24367. name: "Macro",
  24368. height: math.unit(50, "meters")
  24369. },
  24370. {
  24371. name: "Macro+",
  24372. height: math.unit(100, "meters")
  24373. },
  24374. {
  24375. name: "Megamacro",
  24376. height: math.unit(20, "km")
  24377. },
  24378. {
  24379. name: "Caretaker",
  24380. height: math.unit(444, "megameters")
  24381. },
  24382. ]
  24383. ))
  24384. characterMakers.push(() => makeCharacter(
  24385. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24386. {
  24387. front: {
  24388. height: math.unit(1.67, "meters"),
  24389. weight: math.unit(140, "lb"),
  24390. name: "Front",
  24391. image: {
  24392. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24393. extra: 438 / 410,
  24394. bottom: 0.75 / 439
  24395. }
  24396. },
  24397. },
  24398. [
  24399. {
  24400. name: "Shrunken",
  24401. height: math.unit(7.6, "cm")
  24402. },
  24403. {
  24404. name: "Human Scale",
  24405. height: math.unit(1.67, "meters")
  24406. },
  24407. {
  24408. name: "Wolxi Scale",
  24409. height: math.unit(36.7, "meters"),
  24410. default: true
  24411. },
  24412. ]
  24413. ))
  24414. characterMakers.push(() => makeCharacter(
  24415. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24416. {
  24417. front: {
  24418. height: math.unit(1.73, "meters"),
  24419. weight: math.unit(240, "lb"),
  24420. name: "Front",
  24421. image: {
  24422. source: "./media/characters/izue-two-mothers/front.svg",
  24423. extra: 469 / 437,
  24424. bottom: 1.24 / 470.6
  24425. }
  24426. },
  24427. },
  24428. [
  24429. {
  24430. name: "Shrunken",
  24431. height: math.unit(7.86, "cm")
  24432. },
  24433. {
  24434. name: "Human Scale",
  24435. height: math.unit(1.73, "meters")
  24436. },
  24437. {
  24438. name: "Wolxi Scale",
  24439. height: math.unit(38, "meters"),
  24440. default: true
  24441. },
  24442. ]
  24443. ))
  24444. characterMakers.push(() => makeCharacter(
  24445. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24446. {
  24447. front: {
  24448. height: math.unit(1.55, "meters"),
  24449. weight: math.unit(120, "lb"),
  24450. name: "Front",
  24451. image: {
  24452. source: "./media/characters/teeku-love-shack/front.svg",
  24453. extra: 387 / 362,
  24454. bottom: 1.51 / 388
  24455. }
  24456. },
  24457. },
  24458. [
  24459. {
  24460. name: "Shrunken",
  24461. height: math.unit(7, "cm")
  24462. },
  24463. {
  24464. name: "Human Scale",
  24465. height: math.unit(1.55, "meters")
  24466. },
  24467. {
  24468. name: "Wolxi Scale",
  24469. height: math.unit(34.1, "meters"),
  24470. default: true
  24471. },
  24472. ]
  24473. ))
  24474. characterMakers.push(() => makeCharacter(
  24475. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24476. {
  24477. front: {
  24478. height: math.unit(1.83, "meters"),
  24479. weight: math.unit(135, "lb"),
  24480. name: "Front",
  24481. image: {
  24482. source: "./media/characters/dejma-the-red/front.svg",
  24483. extra: 480 / 458,
  24484. bottom: 1.8 / 482
  24485. }
  24486. },
  24487. },
  24488. [
  24489. {
  24490. name: "Shrunken",
  24491. height: math.unit(8.3, "cm")
  24492. },
  24493. {
  24494. name: "Human Scale",
  24495. height: math.unit(1.83, "meters")
  24496. },
  24497. {
  24498. name: "Wolxi Scale",
  24499. height: math.unit(40, "meters"),
  24500. default: true
  24501. },
  24502. ]
  24503. ))
  24504. characterMakers.push(() => makeCharacter(
  24505. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24506. {
  24507. front: {
  24508. height: math.unit(1.78, "meters"),
  24509. weight: math.unit(65, "kg"),
  24510. name: "Front",
  24511. image: {
  24512. source: "./media/characters/aki/front.svg",
  24513. extra: 452 / 415
  24514. }
  24515. },
  24516. frontNsfw: {
  24517. height: math.unit(1.78, "meters"),
  24518. weight: math.unit(65, "kg"),
  24519. name: "Front (NSFW)",
  24520. image: {
  24521. source: "./media/characters/aki/front-nsfw.svg",
  24522. extra: 452 / 415
  24523. }
  24524. },
  24525. back: {
  24526. height: math.unit(1.78, "meters"),
  24527. weight: math.unit(65, "kg"),
  24528. name: "Back",
  24529. image: {
  24530. source: "./media/characters/aki/back.svg",
  24531. extra: 452 / 415
  24532. }
  24533. },
  24534. rump: {
  24535. height: math.unit(2.05, "feet"),
  24536. name: "Rump",
  24537. image: {
  24538. source: "./media/characters/aki/rump.svg"
  24539. }
  24540. },
  24541. dick: {
  24542. height: math.unit(0.95, "feet"),
  24543. name: "Dick",
  24544. image: {
  24545. source: "./media/characters/aki/dick.svg"
  24546. }
  24547. },
  24548. },
  24549. [
  24550. {
  24551. name: "Micro",
  24552. height: math.unit(15, "cm")
  24553. },
  24554. {
  24555. name: "Normal",
  24556. height: math.unit(178, "cm"),
  24557. default: true
  24558. },
  24559. {
  24560. name: "Macro",
  24561. height: math.unit(214, "m")
  24562. },
  24563. {
  24564. name: "Macro+",
  24565. height: math.unit(534, "m")
  24566. },
  24567. ]
  24568. ))
  24569. characterMakers.push(() => makeCharacter(
  24570. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24571. {
  24572. front: {
  24573. height: math.unit(5 + 5 / 12, "feet"),
  24574. weight: math.unit(120, "lb"),
  24575. name: "Front",
  24576. image: {
  24577. source: "./media/characters/ari/front.svg",
  24578. extra: 714.5 / 682,
  24579. bottom: 8 / 722.5
  24580. }
  24581. },
  24582. },
  24583. [
  24584. {
  24585. name: "Normal",
  24586. height: math.unit(5 + 5 / 12, "feet")
  24587. },
  24588. {
  24589. name: "Macro",
  24590. height: math.unit(100, "feet"),
  24591. default: true
  24592. },
  24593. {
  24594. name: "Megamacro",
  24595. height: math.unit(100, "miles")
  24596. },
  24597. {
  24598. name: "Gigamacro",
  24599. height: math.unit(80000, "miles")
  24600. },
  24601. ]
  24602. ))
  24603. characterMakers.push(() => makeCharacter(
  24604. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24605. {
  24606. side: {
  24607. height: math.unit(9, "feet"),
  24608. weight: math.unit(400, "kg"),
  24609. name: "Side",
  24610. image: {
  24611. source: "./media/characters/bolt/side.svg",
  24612. extra: 1126 / 896,
  24613. bottom: 60 / 1187.3,
  24614. }
  24615. },
  24616. },
  24617. [
  24618. {
  24619. name: "Micro",
  24620. height: math.unit(5, "inches")
  24621. },
  24622. {
  24623. name: "Normal",
  24624. height: math.unit(9, "feet"),
  24625. default: true
  24626. },
  24627. {
  24628. name: "Macro",
  24629. height: math.unit(700, "feet")
  24630. },
  24631. {
  24632. name: "Max Size",
  24633. height: math.unit(1.52e22, "yottameters")
  24634. },
  24635. ]
  24636. ))
  24637. characterMakers.push(() => makeCharacter(
  24638. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24639. {
  24640. front: {
  24641. height: math.unit(4.53, "meters"),
  24642. weight: math.unit(3, "tons"),
  24643. name: "Front",
  24644. image: {
  24645. source: "./media/characters/draekon-sylviar/front.svg",
  24646. extra: 1228 / 1068,
  24647. bottom: 41 / 1270
  24648. }
  24649. },
  24650. tail: {
  24651. height: math.unit(1.772, "meter"),
  24652. name: "Tail",
  24653. image: {
  24654. source: "./media/characters/draekon-sylviar/tail.svg"
  24655. }
  24656. },
  24657. head: {
  24658. height: math.unit(1.331, "meter"),
  24659. name: "Head",
  24660. image: {
  24661. source: "./media/characters/draekon-sylviar/head.svg"
  24662. }
  24663. },
  24664. hand: {
  24665. height: math.unit(0.564, "meter"),
  24666. name: "Hand",
  24667. image: {
  24668. source: "./media/characters/draekon-sylviar/hand.svg"
  24669. }
  24670. },
  24671. foot: {
  24672. height: math.unit(0.621, "meter"),
  24673. name: "Foot",
  24674. image: {
  24675. source: "./media/characters/draekon-sylviar/foot.svg",
  24676. bottom: 32 / 324
  24677. }
  24678. },
  24679. dick: {
  24680. height: math.unit(61, "cm"),
  24681. name: "Dick",
  24682. image: {
  24683. source: "./media/characters/draekon-sylviar/dick.svg"
  24684. }
  24685. },
  24686. dickseparated: {
  24687. height: math.unit(61, "cm"),
  24688. name: "Dick-separated",
  24689. image: {
  24690. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24691. }
  24692. },
  24693. },
  24694. [
  24695. {
  24696. name: "Small",
  24697. height: math.unit(4.53 / 2, "meters"),
  24698. default: true
  24699. },
  24700. {
  24701. name: "Normal",
  24702. height: math.unit(4.53, "meters"),
  24703. default: true
  24704. },
  24705. {
  24706. name: "Large",
  24707. height: math.unit(4.53 * 2, "meters"),
  24708. },
  24709. ]
  24710. ))
  24711. characterMakers.push(() => makeCharacter(
  24712. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24713. {
  24714. front: {
  24715. height: math.unit(6 + 2 / 12, "feet"),
  24716. weight: math.unit(180, "lb"),
  24717. name: "Front",
  24718. image: {
  24719. source: "./media/characters/brawler/front.svg",
  24720. extra: 3301 / 3027,
  24721. bottom: 138 / 3439
  24722. }
  24723. },
  24724. },
  24725. [
  24726. {
  24727. name: "Normal",
  24728. height: math.unit(6 + 2 / 12, "feet"),
  24729. default: true
  24730. },
  24731. ]
  24732. ))
  24733. characterMakers.push(() => makeCharacter(
  24734. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24735. {
  24736. front: {
  24737. height: math.unit(11, "feet"),
  24738. weight: math.unit(1000, "lb"),
  24739. name: "Front",
  24740. image: {
  24741. source: "./media/characters/alex/front.svg",
  24742. bottom: 44.5 / 620
  24743. }
  24744. },
  24745. },
  24746. [
  24747. {
  24748. name: "Micro",
  24749. height: math.unit(5, "inches")
  24750. },
  24751. {
  24752. name: "Normal",
  24753. height: math.unit(11, "feet"),
  24754. default: true
  24755. },
  24756. {
  24757. name: "Macro",
  24758. height: math.unit(9.5e9, "feet")
  24759. },
  24760. {
  24761. name: "Max Size",
  24762. height: math.unit(1.4e283, "yottameters")
  24763. },
  24764. ]
  24765. ))
  24766. characterMakers.push(() => makeCharacter(
  24767. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24768. {
  24769. female: {
  24770. height: math.unit(29.9, "m"),
  24771. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24772. name: "Female",
  24773. image: {
  24774. source: "./media/characters/zenari/female.svg",
  24775. extra: 3281.6 / 3217,
  24776. bottom: 72.2 / 3353
  24777. }
  24778. },
  24779. male: {
  24780. height: math.unit(27.7, "m"),
  24781. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24782. name: "Male",
  24783. image: {
  24784. source: "./media/characters/zenari/male.svg",
  24785. extra: 3008 / 2991,
  24786. bottom: 54.6 / 3069
  24787. }
  24788. },
  24789. },
  24790. [
  24791. {
  24792. name: "Macro",
  24793. height: math.unit(29.7, "meters"),
  24794. default: true
  24795. },
  24796. ]
  24797. ))
  24798. characterMakers.push(() => makeCharacter(
  24799. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24800. {
  24801. female: {
  24802. height: math.unit(23.8, "m"),
  24803. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24804. name: "Female",
  24805. image: {
  24806. source: "./media/characters/mactarian/female.svg",
  24807. extra: 2662 / 2569,
  24808. bottom: 73 / 2736
  24809. }
  24810. },
  24811. male: {
  24812. height: math.unit(23.8, "m"),
  24813. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24814. name: "Male",
  24815. image: {
  24816. source: "./media/characters/mactarian/male.svg",
  24817. extra: 2673 / 2600,
  24818. bottom: 76 / 2750
  24819. }
  24820. },
  24821. },
  24822. [
  24823. {
  24824. name: "Macro",
  24825. height: math.unit(23.8, "meters"),
  24826. default: true
  24827. },
  24828. ]
  24829. ))
  24830. characterMakers.push(() => makeCharacter(
  24831. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24832. {
  24833. female: {
  24834. height: math.unit(19.3, "m"),
  24835. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24836. name: "Female",
  24837. image: {
  24838. source: "./media/characters/umok/female.svg",
  24839. extra: 2186 / 2078,
  24840. bottom: 87 / 2277
  24841. }
  24842. },
  24843. male: {
  24844. height: math.unit(19.5, "m"),
  24845. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24846. name: "Male",
  24847. image: {
  24848. source: "./media/characters/umok/male.svg",
  24849. extra: 2233 / 2140,
  24850. bottom: 24.4 / 2258
  24851. }
  24852. },
  24853. },
  24854. [
  24855. {
  24856. name: "Macro",
  24857. height: math.unit(19.3, "meters"),
  24858. default: true
  24859. },
  24860. ]
  24861. ))
  24862. characterMakers.push(() => makeCharacter(
  24863. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24864. {
  24865. female: {
  24866. height: math.unit(26.15, "m"),
  24867. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24868. name: "Female",
  24869. image: {
  24870. source: "./media/characters/joraxian/female.svg",
  24871. extra: 2912 / 2824,
  24872. bottom: 36 / 2956
  24873. }
  24874. },
  24875. male: {
  24876. height: math.unit(25.4, "m"),
  24877. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24878. name: "Male",
  24879. image: {
  24880. source: "./media/characters/joraxian/male.svg",
  24881. extra: 2877 / 2721,
  24882. bottom: 82 / 2967
  24883. }
  24884. },
  24885. },
  24886. [
  24887. {
  24888. name: "Macro",
  24889. height: math.unit(26.15, "meters"),
  24890. default: true
  24891. },
  24892. ]
  24893. ))
  24894. characterMakers.push(() => makeCharacter(
  24895. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24896. {
  24897. female: {
  24898. height: math.unit(21.6, "m"),
  24899. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24900. name: "Female",
  24901. image: {
  24902. source: "./media/characters/sthara/female.svg",
  24903. extra: 2516 / 2347,
  24904. bottom: 21.5 / 2537
  24905. }
  24906. },
  24907. male: {
  24908. height: math.unit(24, "m"),
  24909. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24910. name: "Male",
  24911. image: {
  24912. source: "./media/characters/sthara/male.svg",
  24913. extra: 2732 / 2607,
  24914. bottom: 23 / 2732
  24915. }
  24916. },
  24917. },
  24918. [
  24919. {
  24920. name: "Macro",
  24921. height: math.unit(21.6, "meters"),
  24922. default: true
  24923. },
  24924. ]
  24925. ))
  24926. characterMakers.push(() => makeCharacter(
  24927. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24928. {
  24929. front: {
  24930. height: math.unit(6 + 4 / 12, "feet"),
  24931. weight: math.unit(175, "lb"),
  24932. name: "Front",
  24933. image: {
  24934. source: "./media/characters/luka-bryzant/front.svg",
  24935. extra: 311 / 289,
  24936. bottom: 4 / 315
  24937. }
  24938. },
  24939. back: {
  24940. height: math.unit(6 + 4 / 12, "feet"),
  24941. weight: math.unit(175, "lb"),
  24942. name: "Back",
  24943. image: {
  24944. source: "./media/characters/luka-bryzant/back.svg",
  24945. extra: 311 / 289,
  24946. bottom: 3.8 / 313.7
  24947. }
  24948. },
  24949. },
  24950. [
  24951. {
  24952. name: "Micro",
  24953. height: math.unit(10, "inches")
  24954. },
  24955. {
  24956. name: "Normal",
  24957. height: math.unit(6 + 4 / 12, "feet"),
  24958. default: true
  24959. },
  24960. {
  24961. name: "Large",
  24962. height: math.unit(12, "feet")
  24963. },
  24964. ]
  24965. ))
  24966. characterMakers.push(() => makeCharacter(
  24967. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24968. {
  24969. front: {
  24970. height: math.unit(5 + 7 / 12, "feet"),
  24971. weight: math.unit(185, "lb"),
  24972. name: "Front",
  24973. image: {
  24974. source: "./media/characters/aman-aquila/front.svg",
  24975. extra: 1013 / 976,
  24976. bottom: 45.6 / 1057
  24977. }
  24978. },
  24979. side: {
  24980. height: math.unit(5 + 7 / 12, "feet"),
  24981. weight: math.unit(185, "lb"),
  24982. name: "Side",
  24983. image: {
  24984. source: "./media/characters/aman-aquila/side.svg",
  24985. extra: 1054 / 1011,
  24986. bottom: 15 / 1070
  24987. }
  24988. },
  24989. back: {
  24990. height: math.unit(5 + 7 / 12, "feet"),
  24991. weight: math.unit(185, "lb"),
  24992. name: "Back",
  24993. image: {
  24994. source: "./media/characters/aman-aquila/back.svg",
  24995. extra: 1026 / 970,
  24996. bottom: 12 / 1039
  24997. }
  24998. },
  24999. head: {
  25000. height: math.unit(1.211, "feet"),
  25001. name: "Head",
  25002. image: {
  25003. source: "./media/characters/aman-aquila/head.svg",
  25004. }
  25005. },
  25006. },
  25007. [
  25008. {
  25009. name: "Minimicro",
  25010. height: math.unit(0.057, "inches")
  25011. },
  25012. {
  25013. name: "Micro",
  25014. height: math.unit(7, "inches")
  25015. },
  25016. {
  25017. name: "Mini",
  25018. height: math.unit(3 + 7 / 12, "feet")
  25019. },
  25020. {
  25021. name: "Normal",
  25022. height: math.unit(5 + 7 / 12, "feet"),
  25023. default: true
  25024. },
  25025. {
  25026. name: "Macro",
  25027. height: math.unit(157 + 7 / 12, "feet")
  25028. },
  25029. {
  25030. name: "Megamacro",
  25031. height: math.unit(1557 + 7 / 12, "feet")
  25032. },
  25033. {
  25034. name: "Gigamacro",
  25035. height: math.unit(15557 + 7 / 12, "feet")
  25036. },
  25037. ]
  25038. ))
  25039. characterMakers.push(() => makeCharacter(
  25040. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25041. {
  25042. front: {
  25043. height: math.unit(3 + 2 / 12, "inches"),
  25044. weight: math.unit(0.3, "ounces"),
  25045. name: "Front",
  25046. image: {
  25047. source: "./media/characters/hiphae/front.svg",
  25048. extra: 1931 / 1683,
  25049. bottom: 24 / 1955
  25050. }
  25051. },
  25052. },
  25053. [
  25054. {
  25055. name: "Normal",
  25056. height: math.unit(3 + 1 / 2, "inches"),
  25057. default: true
  25058. },
  25059. ]
  25060. ))
  25061. characterMakers.push(() => makeCharacter(
  25062. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25063. {
  25064. front: {
  25065. height: math.unit(5 + 10 / 12, "feet"),
  25066. weight: math.unit(165, "lb"),
  25067. name: "Front",
  25068. image: {
  25069. source: "./media/characters/nicky/front.svg",
  25070. extra: 3144 / 2886,
  25071. bottom: 45.6 / 3192
  25072. }
  25073. },
  25074. back: {
  25075. height: math.unit(5 + 10 / 12, "feet"),
  25076. weight: math.unit(165, "lb"),
  25077. name: "Back",
  25078. image: {
  25079. source: "./media/characters/nicky/back.svg",
  25080. extra: 3055 / 2804,
  25081. bottom: 28.4 / 3087
  25082. }
  25083. },
  25084. frontclothed: {
  25085. height: math.unit(5 + 10 / 12, "feet"),
  25086. weight: math.unit(165, "lb"),
  25087. name: "Front-clothed",
  25088. image: {
  25089. source: "./media/characters/nicky/front-clothed.svg",
  25090. extra: 3184.9 / 2926.9,
  25091. bottom: 86.5 / 3239.9
  25092. }
  25093. },
  25094. foot: {
  25095. height: math.unit(1.16, "feet"),
  25096. name: "Foot",
  25097. image: {
  25098. source: "./media/characters/nicky/foot.svg"
  25099. }
  25100. },
  25101. feet: {
  25102. height: math.unit(1.34, "feet"),
  25103. name: "Feet",
  25104. image: {
  25105. source: "./media/characters/nicky/feet.svg"
  25106. }
  25107. },
  25108. maw: {
  25109. height: math.unit(0.9, "feet"),
  25110. name: "Maw",
  25111. image: {
  25112. source: "./media/characters/nicky/maw.svg"
  25113. }
  25114. },
  25115. },
  25116. [
  25117. {
  25118. name: "Normal",
  25119. height: math.unit(5 + 10 / 12, "feet"),
  25120. default: true
  25121. },
  25122. {
  25123. name: "Macro",
  25124. height: math.unit(60, "feet")
  25125. },
  25126. {
  25127. name: "Megamacro",
  25128. height: math.unit(1, "mile")
  25129. },
  25130. ]
  25131. ))
  25132. characterMakers.push(() => makeCharacter(
  25133. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25134. {
  25135. side: {
  25136. height: math.unit(10, "feet"),
  25137. weight: math.unit(600, "lb"),
  25138. name: "Side",
  25139. image: {
  25140. source: "./media/characters/blair/side.svg",
  25141. bottom: 16.6 / 475,
  25142. extra: 458 / 431
  25143. }
  25144. },
  25145. },
  25146. [
  25147. {
  25148. name: "Micro",
  25149. height: math.unit(8, "inches")
  25150. },
  25151. {
  25152. name: "Normal",
  25153. height: math.unit(10, "feet"),
  25154. default: true
  25155. },
  25156. {
  25157. name: "Macro",
  25158. height: math.unit(180, "feet")
  25159. },
  25160. ]
  25161. ))
  25162. characterMakers.push(() => makeCharacter(
  25163. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25164. {
  25165. front: {
  25166. height: math.unit(5 + 4 / 12, "feet"),
  25167. weight: math.unit(125, "lb"),
  25168. name: "Front",
  25169. image: {
  25170. source: "./media/characters/fisher/front.svg",
  25171. extra: 444 / 390,
  25172. bottom: 2 / 444.8
  25173. }
  25174. },
  25175. },
  25176. [
  25177. {
  25178. name: "Micro",
  25179. height: math.unit(4, "inches")
  25180. },
  25181. {
  25182. name: "Normal",
  25183. height: math.unit(5 + 4 / 12, "feet"),
  25184. default: true
  25185. },
  25186. {
  25187. name: "Macro",
  25188. height: math.unit(100, "feet")
  25189. },
  25190. ]
  25191. ))
  25192. characterMakers.push(() => makeCharacter(
  25193. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25194. {
  25195. front: {
  25196. height: math.unit(6.71, "feet"),
  25197. weight: math.unit(200, "lb"),
  25198. capacity: math.unit(1000000, "people"),
  25199. name: "Front",
  25200. image: {
  25201. source: "./media/characters/gliss/front.svg",
  25202. extra: 2347 / 2231,
  25203. bottom: 113 / 2462
  25204. }
  25205. },
  25206. hammerspaceSize: {
  25207. height: math.unit(6.71 * 717, "feet"),
  25208. weight: math.unit(200, "lb"),
  25209. capacity: math.unit(1000000, "people"),
  25210. name: "Hammerspace Size",
  25211. image: {
  25212. source: "./media/characters/gliss/front.svg",
  25213. extra: 2347 / 2231,
  25214. bottom: 113 / 2462
  25215. }
  25216. },
  25217. },
  25218. [
  25219. {
  25220. name: "Normal",
  25221. height: math.unit(6.71, "feet"),
  25222. default: true
  25223. },
  25224. ]
  25225. ))
  25226. characterMakers.push(() => makeCharacter(
  25227. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25228. {
  25229. side: {
  25230. height: math.unit(1.44, "m"),
  25231. weight: math.unit(80, "kg"),
  25232. name: "Side",
  25233. image: {
  25234. source: "./media/characters/dune-anderson/side.svg",
  25235. bottom: 49 / 1426
  25236. }
  25237. },
  25238. },
  25239. [
  25240. {
  25241. name: "Wolf-sized",
  25242. height: math.unit(1.44, "meters")
  25243. },
  25244. {
  25245. name: "Normal",
  25246. height: math.unit(5.05, "meters"),
  25247. default: true
  25248. },
  25249. {
  25250. name: "Big",
  25251. height: math.unit(14.4, "meters")
  25252. },
  25253. {
  25254. name: "Huge",
  25255. height: math.unit(144, "meters")
  25256. },
  25257. ]
  25258. ))
  25259. characterMakers.push(() => makeCharacter(
  25260. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25261. {
  25262. front: {
  25263. height: math.unit(7, "feet"),
  25264. weight: math.unit(425, "lb"),
  25265. name: "Front",
  25266. image: {
  25267. source: "./media/characters/hind/front.svg",
  25268. extra: 2091 / 1860,
  25269. bottom: 129 / 2220
  25270. }
  25271. },
  25272. back: {
  25273. height: math.unit(7, "feet"),
  25274. weight: math.unit(425, "lb"),
  25275. name: "Back",
  25276. image: {
  25277. source: "./media/characters/hind/back.svg",
  25278. extra: 2091 / 1860,
  25279. bottom: 24.6 / 2309
  25280. }
  25281. },
  25282. tail: {
  25283. height: math.unit(2.8, "feet"),
  25284. name: "Tail",
  25285. image: {
  25286. source: "./media/characters/hind/tail.svg"
  25287. }
  25288. },
  25289. head: {
  25290. height: math.unit(2.55, "feet"),
  25291. name: "Head",
  25292. image: {
  25293. source: "./media/characters/hind/head.svg"
  25294. }
  25295. },
  25296. },
  25297. [
  25298. {
  25299. name: "XS",
  25300. height: math.unit(0.7, "feet")
  25301. },
  25302. {
  25303. name: "Normal",
  25304. height: math.unit(7, "feet"),
  25305. default: true
  25306. },
  25307. {
  25308. name: "XL",
  25309. height: math.unit(70, "feet")
  25310. },
  25311. ]
  25312. ))
  25313. characterMakers.push(() => makeCharacter(
  25314. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25315. {
  25316. front: {
  25317. height: math.unit(2.1, "meters"),
  25318. weight: math.unit(150, "lb"),
  25319. name: "Front",
  25320. image: {
  25321. source: "./media/characters/tharquench-sizestealer/front.svg",
  25322. extra: 1605/1470,
  25323. bottom: 36/1641
  25324. }
  25325. },
  25326. frontAlt: {
  25327. height: math.unit(2.1, "meters"),
  25328. weight: math.unit(150, "lb"),
  25329. name: "Front (Alt)",
  25330. image: {
  25331. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25332. extra: 2318 / 2063,
  25333. bottom: 93.4 / 2410
  25334. }
  25335. },
  25336. },
  25337. [
  25338. {
  25339. name: "Nano",
  25340. height: math.unit(1, "mm")
  25341. },
  25342. {
  25343. name: "Micro",
  25344. height: math.unit(1, "cm")
  25345. },
  25346. {
  25347. name: "Normal",
  25348. height: math.unit(2.1, "meters"),
  25349. default: true
  25350. },
  25351. ]
  25352. ))
  25353. characterMakers.push(() => makeCharacter(
  25354. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25355. {
  25356. front: {
  25357. height: math.unit(7 + 5 / 12, "feet"),
  25358. weight: math.unit(357, "lb"),
  25359. name: "Front",
  25360. image: {
  25361. source: "./media/characters/solex-draconov/front.svg",
  25362. extra: 1993 / 1865,
  25363. bottom: 117 / 2111
  25364. }
  25365. },
  25366. },
  25367. [
  25368. {
  25369. name: "Natural Height",
  25370. height: math.unit(7 + 5 / 12, "feet"),
  25371. default: true
  25372. },
  25373. {
  25374. name: "Macro",
  25375. height: math.unit(350, "feet")
  25376. },
  25377. {
  25378. name: "Macro+",
  25379. height: math.unit(1000, "feet")
  25380. },
  25381. {
  25382. name: "Megamacro",
  25383. height: math.unit(20, "km")
  25384. },
  25385. {
  25386. name: "Megamacro+",
  25387. height: math.unit(1000, "km")
  25388. },
  25389. {
  25390. name: "Gigamacro",
  25391. height: math.unit(2.5, "Gm")
  25392. },
  25393. {
  25394. name: "Teramacro",
  25395. height: math.unit(15, "Tm")
  25396. },
  25397. {
  25398. name: "Galactic",
  25399. height: math.unit(30, "Zm")
  25400. },
  25401. {
  25402. name: "Universal",
  25403. height: math.unit(21000, "Ym")
  25404. },
  25405. {
  25406. name: "Omniversal",
  25407. height: math.unit(9.861e50, "Ym")
  25408. },
  25409. {
  25410. name: "Existential",
  25411. height: math.unit(1e300, "meters")
  25412. },
  25413. ]
  25414. ))
  25415. characterMakers.push(() => makeCharacter(
  25416. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25417. {
  25418. side: {
  25419. height: math.unit(25, "feet"),
  25420. weight: math.unit(90000, "lb"),
  25421. name: "Side",
  25422. image: {
  25423. source: "./media/characters/mandarax/side.svg",
  25424. extra: 614 / 332,
  25425. bottom: 55 / 630
  25426. }
  25427. },
  25428. head: {
  25429. height: math.unit(11.4, "feet"),
  25430. name: "Head",
  25431. image: {
  25432. source: "./media/characters/mandarax/head.svg"
  25433. }
  25434. },
  25435. belly: {
  25436. height: math.unit(33, "feet"),
  25437. name: "Belly",
  25438. capacity: math.unit(500, "people"),
  25439. image: {
  25440. source: "./media/characters/mandarax/belly.svg"
  25441. }
  25442. },
  25443. dick: {
  25444. height: math.unit(8.46, "feet"),
  25445. name: "Dick",
  25446. image: {
  25447. source: "./media/characters/mandarax/dick.svg"
  25448. }
  25449. },
  25450. top: {
  25451. height: math.unit(28, "meters"),
  25452. name: "Top",
  25453. image: {
  25454. source: "./media/characters/mandarax/top.svg"
  25455. }
  25456. },
  25457. },
  25458. [
  25459. {
  25460. name: "Normal",
  25461. height: math.unit(25, "feet"),
  25462. default: true
  25463. },
  25464. ]
  25465. ))
  25466. characterMakers.push(() => makeCharacter(
  25467. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25468. {
  25469. front: {
  25470. height: math.unit(5, "feet"),
  25471. weight: math.unit(90, "lb"),
  25472. name: "Front",
  25473. image: {
  25474. source: "./media/characters/pixil/front.svg",
  25475. extra: 2000 / 1618,
  25476. bottom: 12.3 / 2011
  25477. }
  25478. },
  25479. },
  25480. [
  25481. {
  25482. name: "Normal",
  25483. height: math.unit(5, "feet"),
  25484. default: true
  25485. },
  25486. {
  25487. name: "Megamacro",
  25488. height: math.unit(10, "miles"),
  25489. },
  25490. ]
  25491. ))
  25492. characterMakers.push(() => makeCharacter(
  25493. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25494. {
  25495. front: {
  25496. height: math.unit(7 + 2 / 12, "feet"),
  25497. weight: math.unit(200, "lb"),
  25498. name: "Front",
  25499. image: {
  25500. source: "./media/characters/angel/front.svg",
  25501. extra: 1830 / 1737,
  25502. bottom: 22.6 / 1854,
  25503. }
  25504. },
  25505. },
  25506. [
  25507. {
  25508. name: "Normal",
  25509. height: math.unit(7 + 2 / 12, "feet"),
  25510. default: true
  25511. },
  25512. {
  25513. name: "Macro",
  25514. height: math.unit(1000, "feet")
  25515. },
  25516. {
  25517. name: "Megamacro",
  25518. height: math.unit(2, "miles")
  25519. },
  25520. {
  25521. name: "Gigamacro",
  25522. height: math.unit(20, "earths")
  25523. },
  25524. ]
  25525. ))
  25526. characterMakers.push(() => makeCharacter(
  25527. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25528. {
  25529. front: {
  25530. height: math.unit(5, "feet"),
  25531. weight: math.unit(180, "lb"),
  25532. name: "Front",
  25533. image: {
  25534. source: "./media/characters/mekana/front.svg",
  25535. extra: 1671 / 1605,
  25536. bottom: 3.5 / 1691
  25537. }
  25538. },
  25539. side: {
  25540. height: math.unit(5, "feet"),
  25541. weight: math.unit(180, "lb"),
  25542. name: "Side",
  25543. image: {
  25544. source: "./media/characters/mekana/side.svg",
  25545. extra: 1671 / 1605,
  25546. bottom: 3.5 / 1691
  25547. }
  25548. },
  25549. back: {
  25550. height: math.unit(5, "feet"),
  25551. weight: math.unit(180, "lb"),
  25552. name: "Back",
  25553. image: {
  25554. source: "./media/characters/mekana/back.svg",
  25555. extra: 1671 / 1605,
  25556. bottom: 3.5 / 1691
  25557. }
  25558. },
  25559. },
  25560. [
  25561. {
  25562. name: "Normal",
  25563. height: math.unit(5, "feet"),
  25564. default: true
  25565. },
  25566. ]
  25567. ))
  25568. characterMakers.push(() => makeCharacter(
  25569. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25570. {
  25571. front: {
  25572. height: math.unit(4 + 6 / 12, "feet"),
  25573. weight: math.unit(80, "lb"),
  25574. name: "Front",
  25575. image: {
  25576. source: "./media/characters/pixie/front.svg",
  25577. extra: 1924 / 1825,
  25578. bottom: 22.4 / 1946
  25579. }
  25580. },
  25581. },
  25582. [
  25583. {
  25584. name: "Normal",
  25585. height: math.unit(4 + 6 / 12, "feet"),
  25586. default: true
  25587. },
  25588. {
  25589. name: "Macro",
  25590. height: math.unit(40, "feet")
  25591. },
  25592. ]
  25593. ))
  25594. characterMakers.push(() => makeCharacter(
  25595. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25596. {
  25597. front: {
  25598. height: math.unit(2.1, "meters"),
  25599. weight: math.unit(200, "lb"),
  25600. name: "Front",
  25601. image: {
  25602. source: "./media/characters/the-lascivious/front.svg",
  25603. extra: 1 / 0.893,
  25604. bottom: 3.5 / 573.7
  25605. }
  25606. },
  25607. },
  25608. [
  25609. {
  25610. name: "Human Scale",
  25611. height: math.unit(2.1, "meters")
  25612. },
  25613. {
  25614. name: "Wolxi Scale",
  25615. height: math.unit(46.2, "m"),
  25616. default: true
  25617. },
  25618. {
  25619. name: "Boinker of Buildings",
  25620. height: math.unit(10, "km")
  25621. },
  25622. {
  25623. name: "Shagger of Skyscrapers",
  25624. height: math.unit(40, "km")
  25625. },
  25626. {
  25627. name: "Banger of Boroughs",
  25628. height: math.unit(4000, "km")
  25629. },
  25630. {
  25631. name: "Screwer of States",
  25632. height: math.unit(100000, "km")
  25633. },
  25634. {
  25635. name: "Pounder of Planets",
  25636. height: math.unit(2000000, "km")
  25637. },
  25638. ]
  25639. ))
  25640. characterMakers.push(() => makeCharacter(
  25641. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25642. {
  25643. front: {
  25644. height: math.unit(6, "feet"),
  25645. weight: math.unit(150, "lb"),
  25646. name: "Front",
  25647. image: {
  25648. source: "./media/characters/aj/front.svg",
  25649. extra: 2039 / 1562,
  25650. bottom: 40 / 2079
  25651. }
  25652. },
  25653. },
  25654. [
  25655. {
  25656. name: "Normal",
  25657. height: math.unit(11 + 6 / 12, "feet"),
  25658. default: true
  25659. },
  25660. {
  25661. name: "Megamacro",
  25662. height: math.unit(60, "megameters")
  25663. },
  25664. ]
  25665. ))
  25666. characterMakers.push(() => makeCharacter(
  25667. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25668. {
  25669. side: {
  25670. height: math.unit(31 + 8 / 12, "feet"),
  25671. weight: math.unit(75000, "kg"),
  25672. name: "Side",
  25673. image: {
  25674. source: "./media/characters/koros/side.svg",
  25675. extra: 1442 / 1297,
  25676. bottom: 122.7 / 1562
  25677. }
  25678. },
  25679. dicksKingsCrown: {
  25680. height: math.unit(6, "feet"),
  25681. name: "Dicks (King's Crown)",
  25682. image: {
  25683. source: "./media/characters/koros/dicks-kings-crown.svg"
  25684. }
  25685. },
  25686. dicksTailSet: {
  25687. height: math.unit(3, "feet"),
  25688. name: "Dicks (Tail Set)",
  25689. image: {
  25690. source: "./media/characters/koros/dicks-tail-set.svg"
  25691. }
  25692. },
  25693. dickCumming: {
  25694. height: math.unit(7.98, "feet"),
  25695. name: "Dick (Cumming)",
  25696. image: {
  25697. source: "./media/characters/koros/dick-cumming.svg"
  25698. }
  25699. },
  25700. dicksBack: {
  25701. height: math.unit(5.9, "feet"),
  25702. name: "Dicks (Back)",
  25703. image: {
  25704. source: "./media/characters/koros/dicks-back.svg"
  25705. }
  25706. },
  25707. dicksFront: {
  25708. height: math.unit(3.72, "feet"),
  25709. name: "Dicks (Front)",
  25710. image: {
  25711. source: "./media/characters/koros/dicks-front.svg"
  25712. }
  25713. },
  25714. dicksPeeking: {
  25715. height: math.unit(3.0, "feet"),
  25716. name: "Dicks (Peeking)",
  25717. image: {
  25718. source: "./media/characters/koros/dicks-peeking.svg"
  25719. }
  25720. },
  25721. eye: {
  25722. height: math.unit(1.7, "feet"),
  25723. name: "Eye",
  25724. image: {
  25725. source: "./media/characters/koros/eye.svg"
  25726. }
  25727. },
  25728. headFront: {
  25729. height: math.unit(11.69, "feet"),
  25730. name: "Head (Front)",
  25731. image: {
  25732. source: "./media/characters/koros/head-front.svg"
  25733. }
  25734. },
  25735. headSide: {
  25736. height: math.unit(14, "feet"),
  25737. name: "Head (Side)",
  25738. image: {
  25739. source: "./media/characters/koros/head-side.svg"
  25740. }
  25741. },
  25742. leg: {
  25743. height: math.unit(17, "feet"),
  25744. name: "Leg",
  25745. image: {
  25746. source: "./media/characters/koros/leg.svg"
  25747. }
  25748. },
  25749. mawSide: {
  25750. height: math.unit(12.8, "feet"),
  25751. name: "Maw (Side)",
  25752. image: {
  25753. source: "./media/characters/koros/maw-side.svg"
  25754. }
  25755. },
  25756. mawSpitting: {
  25757. height: math.unit(17, "feet"),
  25758. name: "Maw (Spitting)",
  25759. image: {
  25760. source: "./media/characters/koros/maw-spitting.svg"
  25761. }
  25762. },
  25763. slit: {
  25764. height: math.unit(2.8, "feet"),
  25765. name: "Slit",
  25766. image: {
  25767. source: "./media/characters/koros/slit.svg"
  25768. }
  25769. },
  25770. stomach: {
  25771. height: math.unit(6.8, "feet"),
  25772. capacity: math.unit(20, "people"),
  25773. name: "Stomach",
  25774. image: {
  25775. source: "./media/characters/koros/stomach.svg"
  25776. }
  25777. },
  25778. wingspanBottom: {
  25779. height: math.unit(114, "feet"),
  25780. name: "Wingspan (Bottom)",
  25781. image: {
  25782. source: "./media/characters/koros/wingspan-bottom.svg"
  25783. }
  25784. },
  25785. wingspanTop: {
  25786. height: math.unit(104, "feet"),
  25787. name: "Wingspan (Top)",
  25788. image: {
  25789. source: "./media/characters/koros/wingspan-top.svg"
  25790. }
  25791. },
  25792. },
  25793. [
  25794. {
  25795. name: "Normal",
  25796. height: math.unit(31 + 8 / 12, "feet"),
  25797. default: true
  25798. },
  25799. ]
  25800. ))
  25801. characterMakers.push(() => makeCharacter(
  25802. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25803. {
  25804. front: {
  25805. height: math.unit(18 + 5 / 12, "feet"),
  25806. weight: math.unit(3750, "kg"),
  25807. name: "Front",
  25808. image: {
  25809. source: "./media/characters/vexx/front.svg",
  25810. extra: 426 / 396,
  25811. bottom: 31.5 / 458
  25812. }
  25813. },
  25814. maw: {
  25815. height: math.unit(6, "feet"),
  25816. name: "Maw",
  25817. image: {
  25818. source: "./media/characters/vexx/maw.svg"
  25819. }
  25820. },
  25821. },
  25822. [
  25823. {
  25824. name: "Normal",
  25825. height: math.unit(18 + 5 / 12, "feet"),
  25826. default: true
  25827. },
  25828. ]
  25829. ))
  25830. characterMakers.push(() => makeCharacter(
  25831. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25832. {
  25833. front: {
  25834. height: math.unit(17 + 6 / 12, "feet"),
  25835. weight: math.unit(150, "lb"),
  25836. name: "Front",
  25837. image: {
  25838. source: "./media/characters/baadra/front.svg",
  25839. extra: 3137 / 2890,
  25840. bottom: 168.4 / 3305
  25841. }
  25842. },
  25843. back: {
  25844. height: math.unit(17 + 6 / 12, "feet"),
  25845. weight: math.unit(150, "lb"),
  25846. name: "Back",
  25847. image: {
  25848. source: "./media/characters/baadra/back.svg",
  25849. extra: 3142 / 2890,
  25850. bottom: 220 / 3371
  25851. }
  25852. },
  25853. head: {
  25854. height: math.unit(5.45, "feet"),
  25855. name: "Head",
  25856. image: {
  25857. source: "./media/characters/baadra/head.svg"
  25858. }
  25859. },
  25860. headAngry: {
  25861. height: math.unit(4.95, "feet"),
  25862. name: "Head (Angry)",
  25863. image: {
  25864. source: "./media/characters/baadra/head-angry.svg"
  25865. }
  25866. },
  25867. headOpen: {
  25868. height: math.unit(6, "feet"),
  25869. name: "Head (Open)",
  25870. image: {
  25871. source: "./media/characters/baadra/head-open.svg"
  25872. }
  25873. },
  25874. },
  25875. [
  25876. {
  25877. name: "Normal",
  25878. height: math.unit(17 + 6 / 12, "feet"),
  25879. default: true
  25880. },
  25881. ]
  25882. ))
  25883. characterMakers.push(() => makeCharacter(
  25884. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25885. {
  25886. front: {
  25887. height: math.unit(7 + 3 / 12, "feet"),
  25888. weight: math.unit(180, "lb"),
  25889. name: "Front",
  25890. image: {
  25891. source: "./media/characters/juri/front.svg",
  25892. extra: 1401 / 1237,
  25893. bottom: 18.5 / 1418
  25894. }
  25895. },
  25896. side: {
  25897. height: math.unit(7 + 3 / 12, "feet"),
  25898. weight: math.unit(180, "lb"),
  25899. name: "Side",
  25900. image: {
  25901. source: "./media/characters/juri/side.svg",
  25902. extra: 1424 / 1242,
  25903. bottom: 18.5 / 1447
  25904. }
  25905. },
  25906. sitting: {
  25907. height: math.unit(6, "feet"),
  25908. weight: math.unit(180, "lb"),
  25909. name: "Sitting",
  25910. image: {
  25911. source: "./media/characters/juri/sitting.svg",
  25912. extra: 1270 / 1143,
  25913. bottom: 100 / 1343
  25914. }
  25915. },
  25916. back: {
  25917. height: math.unit(7 + 3 / 12, "feet"),
  25918. weight: math.unit(180, "lb"),
  25919. name: "Back",
  25920. image: {
  25921. source: "./media/characters/juri/back.svg",
  25922. extra: 1377 / 1240,
  25923. bottom: 23.7 / 1405
  25924. }
  25925. },
  25926. maw: {
  25927. height: math.unit(2.8, "feet"),
  25928. name: "Maw",
  25929. image: {
  25930. source: "./media/characters/juri/maw.svg"
  25931. }
  25932. },
  25933. stomach: {
  25934. height: math.unit(0.89, "feet"),
  25935. capacity: math.unit(4, "liters"),
  25936. name: "Stomach",
  25937. image: {
  25938. source: "./media/characters/juri/stomach.svg"
  25939. }
  25940. },
  25941. },
  25942. [
  25943. {
  25944. name: "Normal",
  25945. height: math.unit(7 + 3 / 12, "feet"),
  25946. default: true
  25947. },
  25948. ]
  25949. ))
  25950. characterMakers.push(() => makeCharacter(
  25951. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25952. {
  25953. fox: {
  25954. height: math.unit(5 + 6 / 12, "feet"),
  25955. weight: math.unit(140, "lb"),
  25956. name: "Fox",
  25957. image: {
  25958. source: "./media/characters/maxene-sita/fox.svg",
  25959. extra: 146 / 138,
  25960. bottom: 2.1 / 148.19
  25961. }
  25962. },
  25963. foxLaying: {
  25964. height: math.unit(1.70, "feet"),
  25965. weight: math.unit(140, "lb"),
  25966. name: "Fox (Laying)",
  25967. image: {
  25968. source: "./media/characters/maxene-sita/fox-laying.svg",
  25969. extra: 910 / 572,
  25970. bottom: 71 / 981
  25971. }
  25972. },
  25973. kitsune: {
  25974. height: math.unit(10, "feet"),
  25975. weight: math.unit(800, "lb"),
  25976. name: "Kitsune",
  25977. image: {
  25978. source: "./media/characters/maxene-sita/kitsune.svg",
  25979. extra: 185 / 176,
  25980. bottom: 4.7 / 189.9
  25981. }
  25982. },
  25983. hellhound: {
  25984. height: math.unit(10, "feet"),
  25985. weight: math.unit(700, "lb"),
  25986. name: "Hellhound",
  25987. image: {
  25988. source: "./media/characters/maxene-sita/hellhound.svg",
  25989. extra: 1600 / 1545,
  25990. bottom: 81 / 1681
  25991. }
  25992. },
  25993. },
  25994. [
  25995. {
  25996. name: "Normal",
  25997. height: math.unit(5 + 6 / 12, "feet"),
  25998. default: true
  25999. },
  26000. ]
  26001. ))
  26002. characterMakers.push(() => makeCharacter(
  26003. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26004. {
  26005. front: {
  26006. height: math.unit(3 + 4 / 12, "feet"),
  26007. weight: math.unit(70, "lb"),
  26008. name: "Front",
  26009. image: {
  26010. source: "./media/characters/maia/front.svg",
  26011. extra: 227 / 219.5,
  26012. bottom: 40 / 267
  26013. }
  26014. },
  26015. back: {
  26016. height: math.unit(3 + 4 / 12, "feet"),
  26017. weight: math.unit(70, "lb"),
  26018. name: "Back",
  26019. image: {
  26020. source: "./media/characters/maia/back.svg",
  26021. extra: 237 / 225
  26022. }
  26023. },
  26024. },
  26025. [
  26026. {
  26027. name: "Normal",
  26028. height: math.unit(3 + 4 / 12, "feet"),
  26029. default: true
  26030. },
  26031. ]
  26032. ))
  26033. characterMakers.push(() => makeCharacter(
  26034. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26035. {
  26036. front: {
  26037. height: math.unit(5 + 10 / 12, "feet"),
  26038. weight: math.unit(197, "lb"),
  26039. name: "Front",
  26040. image: {
  26041. source: "./media/characters/jabaro/front.svg",
  26042. extra: 225 / 216,
  26043. bottom: 5.06 / 230
  26044. }
  26045. },
  26046. back: {
  26047. height: math.unit(5 + 10 / 12, "feet"),
  26048. weight: math.unit(197, "lb"),
  26049. name: "Back",
  26050. image: {
  26051. source: "./media/characters/jabaro/back.svg",
  26052. extra: 225 / 219,
  26053. bottom: 1.9 / 227
  26054. }
  26055. },
  26056. },
  26057. [
  26058. {
  26059. name: "Normal",
  26060. height: math.unit(5 + 10 / 12, "feet"),
  26061. default: true
  26062. },
  26063. ]
  26064. ))
  26065. characterMakers.push(() => makeCharacter(
  26066. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26067. {
  26068. front: {
  26069. height: math.unit(5 + 8 / 12, "feet"),
  26070. weight: math.unit(139, "lb"),
  26071. name: "Front",
  26072. image: {
  26073. source: "./media/characters/risa/front.svg",
  26074. extra: 270 / 260,
  26075. bottom: 11.2 / 282
  26076. }
  26077. },
  26078. back: {
  26079. height: math.unit(5 + 8 / 12, "feet"),
  26080. weight: math.unit(139, "lb"),
  26081. name: "Back",
  26082. image: {
  26083. source: "./media/characters/risa/back.svg",
  26084. extra: 264 / 255,
  26085. bottom: 4 / 268
  26086. }
  26087. },
  26088. },
  26089. [
  26090. {
  26091. name: "Normal",
  26092. height: math.unit(5 + 8 / 12, "feet"),
  26093. default: true
  26094. },
  26095. ]
  26096. ))
  26097. characterMakers.push(() => makeCharacter(
  26098. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26099. {
  26100. front: {
  26101. height: math.unit(2 + 11 / 12, "feet"),
  26102. weight: math.unit(30, "lb"),
  26103. name: "Front",
  26104. image: {
  26105. source: "./media/characters/weatley/front.svg",
  26106. bottom: 10.7 / 414,
  26107. extra: 403.5 / 362
  26108. }
  26109. },
  26110. back: {
  26111. height: math.unit(2 + 11 / 12, "feet"),
  26112. weight: math.unit(30, "lb"),
  26113. name: "Back",
  26114. image: {
  26115. source: "./media/characters/weatley/back.svg",
  26116. bottom: 10.7 / 414,
  26117. extra: 403.5 / 362
  26118. }
  26119. },
  26120. },
  26121. [
  26122. {
  26123. name: "Normal",
  26124. height: math.unit(2 + 11 / 12, "feet"),
  26125. default: true
  26126. },
  26127. ]
  26128. ))
  26129. characterMakers.push(() => makeCharacter(
  26130. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26131. {
  26132. front: {
  26133. height: math.unit(5 + 2 / 12, "feet"),
  26134. weight: math.unit(50, "kg"),
  26135. name: "Front",
  26136. image: {
  26137. source: "./media/characters/mercury-crescent/front.svg",
  26138. extra: 1088 / 1033,
  26139. bottom: 18.9 / 1109
  26140. }
  26141. },
  26142. },
  26143. [
  26144. {
  26145. name: "Normal",
  26146. height: math.unit(5 + 2 / 12, "feet"),
  26147. default: true
  26148. },
  26149. ]
  26150. ))
  26151. characterMakers.push(() => makeCharacter(
  26152. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26153. {
  26154. front: {
  26155. height: math.unit(2, "feet"),
  26156. weight: math.unit(15, "kg"),
  26157. name: "Front",
  26158. image: {
  26159. source: "./media/characters/diamond-jones/front.svg",
  26160. extra: 727/723,
  26161. bottom: 46/773
  26162. }
  26163. },
  26164. },
  26165. [
  26166. {
  26167. name: "Normal",
  26168. height: math.unit(2, "feet"),
  26169. default: true
  26170. },
  26171. ]
  26172. ))
  26173. characterMakers.push(() => makeCharacter(
  26174. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26175. {
  26176. front: {
  26177. height: math.unit(3, "feet"),
  26178. weight: math.unit(30, "kg"),
  26179. name: "Front",
  26180. image: {
  26181. source: "./media/characters/sweet-bit/front.svg",
  26182. extra: 675 / 567,
  26183. bottom: 27.7 / 703
  26184. }
  26185. },
  26186. },
  26187. [
  26188. {
  26189. name: "Normal",
  26190. height: math.unit(3, "feet"),
  26191. default: true
  26192. },
  26193. ]
  26194. ))
  26195. characterMakers.push(() => makeCharacter(
  26196. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26197. {
  26198. side: {
  26199. height: math.unit(9.178, "feet"),
  26200. weight: math.unit(500, "lb"),
  26201. name: "Side",
  26202. image: {
  26203. source: "./media/characters/umbrazen/side.svg",
  26204. extra: 1730 / 1473,
  26205. bottom: 34.6 / 1765
  26206. }
  26207. },
  26208. },
  26209. [
  26210. {
  26211. name: "Normal",
  26212. height: math.unit(9.178, "feet"),
  26213. default: true
  26214. },
  26215. ]
  26216. ))
  26217. characterMakers.push(() => makeCharacter(
  26218. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26219. {
  26220. front: {
  26221. height: math.unit(10, "feet"),
  26222. weight: math.unit(750, "lb"),
  26223. name: "Front",
  26224. image: {
  26225. source: "./media/characters/arlist/front.svg",
  26226. extra: 961 / 778,
  26227. bottom: 6.2 / 986
  26228. }
  26229. },
  26230. },
  26231. [
  26232. {
  26233. name: "Normal",
  26234. height: math.unit(10, "feet"),
  26235. default: true
  26236. },
  26237. ]
  26238. ))
  26239. characterMakers.push(() => makeCharacter(
  26240. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26241. {
  26242. front: {
  26243. height: math.unit(5 + 1 / 12, "feet"),
  26244. weight: math.unit(110, "lb"),
  26245. name: "Front",
  26246. image: {
  26247. source: "./media/characters/aradel/front.svg",
  26248. extra: 324 / 303,
  26249. bottom: 3.6 / 329.4
  26250. }
  26251. },
  26252. },
  26253. [
  26254. {
  26255. name: "Normal",
  26256. height: math.unit(5 + 1 / 12, "feet"),
  26257. default: true
  26258. },
  26259. ]
  26260. ))
  26261. characterMakers.push(() => makeCharacter(
  26262. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26263. {
  26264. front: {
  26265. height: math.unit(3 + 8 / 12, "feet"),
  26266. weight: math.unit(50, "lb"),
  26267. name: "Front",
  26268. image: {
  26269. source: "./media/characters/serryn/front.svg",
  26270. extra: 1792 / 1656,
  26271. bottom: 43.5 / 1840
  26272. }
  26273. },
  26274. },
  26275. [
  26276. {
  26277. name: "Normal",
  26278. height: math.unit(3 + 8 / 12, "feet"),
  26279. default: true
  26280. },
  26281. ]
  26282. ))
  26283. characterMakers.push(() => makeCharacter(
  26284. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26285. {
  26286. front: {
  26287. height: math.unit(7 + 10 / 12, "feet"),
  26288. weight: math.unit(255, "lb"),
  26289. name: "Front",
  26290. image: {
  26291. source: "./media/characters/xavier-thyme/front.svg",
  26292. extra: 3733 / 3642,
  26293. bottom: 131 / 3869
  26294. }
  26295. },
  26296. frontRaven: {
  26297. height: math.unit(7 + 10 / 12, "feet"),
  26298. weight: math.unit(255, "lb"),
  26299. name: "Front (Raven)",
  26300. image: {
  26301. source: "./media/characters/xavier-thyme/front-raven.svg",
  26302. extra: 4385 / 3642,
  26303. bottom: 131 / 4517
  26304. }
  26305. },
  26306. },
  26307. [
  26308. {
  26309. name: "Normal",
  26310. height: math.unit(7 + 10 / 12, "feet"),
  26311. default: true
  26312. },
  26313. ]
  26314. ))
  26315. characterMakers.push(() => makeCharacter(
  26316. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26317. {
  26318. front: {
  26319. height: math.unit(1.6, "m"),
  26320. weight: math.unit(50, "kg"),
  26321. name: "Front",
  26322. image: {
  26323. source: "./media/characters/kiki/front.svg",
  26324. extra: 4682 / 3610,
  26325. bottom: 115 / 4777
  26326. }
  26327. },
  26328. },
  26329. [
  26330. {
  26331. name: "Normal",
  26332. height: math.unit(1.6, "meters"),
  26333. default: true
  26334. },
  26335. ]
  26336. ))
  26337. characterMakers.push(() => makeCharacter(
  26338. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26339. {
  26340. front: {
  26341. height: math.unit(50, "m"),
  26342. weight: math.unit(500, "tonnes"),
  26343. name: "Front",
  26344. image: {
  26345. source: "./media/characters/ryoko/front.svg",
  26346. extra: 4632 / 3926,
  26347. bottom: 193 / 4823
  26348. }
  26349. },
  26350. },
  26351. [
  26352. {
  26353. name: "Normal",
  26354. height: math.unit(50, "meters"),
  26355. default: true
  26356. },
  26357. ]
  26358. ))
  26359. characterMakers.push(() => makeCharacter(
  26360. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26361. {
  26362. front: {
  26363. height: math.unit(30, "m"),
  26364. weight: math.unit(22, "tonnes"),
  26365. name: "Front",
  26366. image: {
  26367. source: "./media/characters/elio/front.svg",
  26368. extra: 4582 / 3720,
  26369. bottom: 236 / 4828
  26370. }
  26371. },
  26372. },
  26373. [
  26374. {
  26375. name: "Normal",
  26376. height: math.unit(30, "meters"),
  26377. default: true
  26378. },
  26379. ]
  26380. ))
  26381. characterMakers.push(() => makeCharacter(
  26382. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26383. {
  26384. front: {
  26385. height: math.unit(6 + 3 / 12, "feet"),
  26386. weight: math.unit(120, "lb"),
  26387. name: "Front",
  26388. image: {
  26389. source: "./media/characters/azura/front.svg",
  26390. extra: 1149 / 1135,
  26391. bottom: 45 / 1194
  26392. }
  26393. },
  26394. frontClothed: {
  26395. height: math.unit(6 + 3 / 12, "feet"),
  26396. weight: math.unit(120, "lb"),
  26397. name: "Front (Clothed)",
  26398. image: {
  26399. source: "./media/characters/azura/front-clothed.svg",
  26400. extra: 1149 / 1135,
  26401. bottom: 45 / 1194
  26402. }
  26403. },
  26404. },
  26405. [
  26406. {
  26407. name: "Normal",
  26408. height: math.unit(6 + 3 / 12, "feet"),
  26409. default: true
  26410. },
  26411. {
  26412. name: "Macro",
  26413. height: math.unit(20 + 6 / 12, "feet")
  26414. },
  26415. {
  26416. name: "Megamacro",
  26417. height: math.unit(12, "miles")
  26418. },
  26419. {
  26420. name: "Gigamacro",
  26421. height: math.unit(10000, "miles")
  26422. },
  26423. {
  26424. name: "Teramacro",
  26425. height: math.unit(900000, "miles")
  26426. },
  26427. ]
  26428. ))
  26429. characterMakers.push(() => makeCharacter(
  26430. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26431. {
  26432. front: {
  26433. height: math.unit(12, "feet"),
  26434. weight: math.unit(1, "ton"),
  26435. capacity: math.unit(660000, "gallons"),
  26436. name: "Front",
  26437. image: {
  26438. source: "./media/characters/zeus/front.svg",
  26439. extra: 5005 / 4717,
  26440. bottom: 363 / 5388
  26441. }
  26442. },
  26443. },
  26444. [
  26445. {
  26446. name: "Normal",
  26447. height: math.unit(12, "feet")
  26448. },
  26449. {
  26450. name: "Preferred Size",
  26451. height: math.unit(0.5, "miles"),
  26452. default: true
  26453. },
  26454. {
  26455. name: "Giga Horse",
  26456. height: math.unit(300, "miles")
  26457. },
  26458. {
  26459. name: "Riding Planets",
  26460. height: math.unit(30, "megameters")
  26461. },
  26462. {
  26463. name: "Cosmic Giant",
  26464. height: math.unit(3, "zettameters")
  26465. },
  26466. {
  26467. name: "Breeding God",
  26468. height: math.unit(9.92e22, "yottameters")
  26469. },
  26470. ]
  26471. ))
  26472. characterMakers.push(() => makeCharacter(
  26473. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26474. {
  26475. side: {
  26476. height: math.unit(9, "feet"),
  26477. weight: math.unit(1500, "kg"),
  26478. name: "Side",
  26479. image: {
  26480. source: "./media/characters/fang/side.svg",
  26481. extra: 924 / 866,
  26482. bottom: 47.5 / 972.3
  26483. }
  26484. },
  26485. },
  26486. [
  26487. {
  26488. name: "Normal",
  26489. height: math.unit(9, "feet"),
  26490. default: true
  26491. },
  26492. {
  26493. name: "Macro",
  26494. height: math.unit(75 + 6 / 12, "feet")
  26495. },
  26496. {
  26497. name: "Teramacro",
  26498. height: math.unit(50000, "miles")
  26499. },
  26500. ]
  26501. ))
  26502. characterMakers.push(() => makeCharacter(
  26503. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26504. {
  26505. front: {
  26506. height: math.unit(10, "feet"),
  26507. weight: math.unit(2, "tons"),
  26508. name: "Front",
  26509. image: {
  26510. source: "./media/characters/rekhit/front.svg",
  26511. extra: 2796 / 2590,
  26512. bottom: 225 / 3022
  26513. }
  26514. },
  26515. },
  26516. [
  26517. {
  26518. name: "Normal",
  26519. height: math.unit(10, "feet"),
  26520. default: true
  26521. },
  26522. {
  26523. name: "Macro",
  26524. height: math.unit(500, "feet")
  26525. },
  26526. ]
  26527. ))
  26528. characterMakers.push(() => makeCharacter(
  26529. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26530. {
  26531. front: {
  26532. height: math.unit(7 + 6.451 / 12, "feet"),
  26533. weight: math.unit(310, "lb"),
  26534. name: "Front",
  26535. image: {
  26536. source: "./media/characters/dahlia-verrick/front.svg",
  26537. extra: 1488 / 1365,
  26538. bottom: 6.2 / 1495
  26539. }
  26540. },
  26541. back: {
  26542. height: math.unit(7 + 6.451 / 12, "feet"),
  26543. weight: math.unit(310, "lb"),
  26544. name: "Back",
  26545. image: {
  26546. source: "./media/characters/dahlia-verrick/back.svg",
  26547. extra: 1472 / 1351,
  26548. bottom: 5.28 / 1477
  26549. }
  26550. },
  26551. frontBusiness: {
  26552. height: math.unit(7 + 6.451 / 12, "feet"),
  26553. weight: math.unit(200, "lb"),
  26554. name: "Front (Business)",
  26555. image: {
  26556. source: "./media/characters/dahlia-verrick/front-business.svg",
  26557. extra: 1478 / 1381,
  26558. bottom: 5.5 / 1484
  26559. }
  26560. },
  26561. frontCasual: {
  26562. height: math.unit(7 + 6.451 / 12, "feet"),
  26563. weight: math.unit(200, "lb"),
  26564. name: "Front (Casual)",
  26565. image: {
  26566. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26567. extra: 1478 / 1381,
  26568. bottom: 5.5 / 1484
  26569. }
  26570. },
  26571. },
  26572. [
  26573. {
  26574. name: "Travel-Sized",
  26575. height: math.unit(7.45, "inches")
  26576. },
  26577. {
  26578. name: "Normal",
  26579. height: math.unit(7 + 6.451 / 12, "feet"),
  26580. default: true
  26581. },
  26582. {
  26583. name: "Hitting the Town",
  26584. height: math.unit(37 + 8 / 12, "feet")
  26585. },
  26586. {
  26587. name: "Stomp in the Suburbs",
  26588. height: math.unit(964 + 9.728 / 12, "feet")
  26589. },
  26590. {
  26591. name: "Sit on the City",
  26592. height: math.unit(61747 + 10.592 / 12, "feet")
  26593. },
  26594. {
  26595. name: "Glomp the Globe",
  26596. height: math.unit(252919327 + 4.832 / 12, "feet")
  26597. },
  26598. ]
  26599. ))
  26600. characterMakers.push(() => makeCharacter(
  26601. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26602. {
  26603. front: {
  26604. height: math.unit(6 + 4 / 12, "feet"),
  26605. weight: math.unit(320, "lb"),
  26606. name: "Front",
  26607. image: {
  26608. source: "./media/characters/balina-mahigan/front.svg",
  26609. extra: 447 / 428,
  26610. bottom: 18 / 466
  26611. }
  26612. },
  26613. back: {
  26614. height: math.unit(6 + 4 / 12, "feet"),
  26615. weight: math.unit(320, "lb"),
  26616. name: "Back",
  26617. image: {
  26618. source: "./media/characters/balina-mahigan/back.svg",
  26619. extra: 445 / 428,
  26620. bottom: 4.07 / 448
  26621. }
  26622. },
  26623. arm: {
  26624. height: math.unit(1.88, "feet"),
  26625. name: "Arm",
  26626. image: {
  26627. source: "./media/characters/balina-mahigan/arm.svg"
  26628. }
  26629. },
  26630. backPort: {
  26631. height: math.unit(0.685, "feet"),
  26632. name: "Back Port",
  26633. image: {
  26634. source: "./media/characters/balina-mahigan/back-port.svg"
  26635. }
  26636. },
  26637. hoofpaw: {
  26638. height: math.unit(1.41, "feet"),
  26639. name: "Hoofpaw",
  26640. image: {
  26641. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26642. }
  26643. },
  26644. leftHandBack: {
  26645. height: math.unit(0.938, "feet"),
  26646. name: "Left Hand (Back)",
  26647. image: {
  26648. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26649. }
  26650. },
  26651. leftHandFront: {
  26652. height: math.unit(0.938, "feet"),
  26653. name: "Left Hand (Front)",
  26654. image: {
  26655. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26656. }
  26657. },
  26658. rightHandBack: {
  26659. height: math.unit(0.95, "feet"),
  26660. name: "Right Hand (Back)",
  26661. image: {
  26662. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26663. }
  26664. },
  26665. rightHandFront: {
  26666. height: math.unit(0.95, "feet"),
  26667. name: "Right Hand (Front)",
  26668. image: {
  26669. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26670. }
  26671. },
  26672. },
  26673. [
  26674. {
  26675. name: "Normal",
  26676. height: math.unit(6 + 4 / 12, "feet"),
  26677. default: true
  26678. },
  26679. ]
  26680. ))
  26681. characterMakers.push(() => makeCharacter(
  26682. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26683. {
  26684. front: {
  26685. height: math.unit(6, "feet"),
  26686. weight: math.unit(320, "lb"),
  26687. name: "Front",
  26688. image: {
  26689. source: "./media/characters/balina-mejeri/front.svg",
  26690. extra: 517 / 488,
  26691. bottom: 44.2 / 561
  26692. }
  26693. },
  26694. },
  26695. [
  26696. {
  26697. name: "Normal",
  26698. height: math.unit(6 + 4 / 12, "feet")
  26699. },
  26700. {
  26701. name: "Business",
  26702. height: math.unit(155, "feet"),
  26703. default: true
  26704. },
  26705. ]
  26706. ))
  26707. characterMakers.push(() => makeCharacter(
  26708. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26709. {
  26710. kneeling: {
  26711. height: math.unit(6 + 4 / 12, "feet"),
  26712. weight: math.unit(300 * 20, "lb"),
  26713. name: "Kneeling",
  26714. image: {
  26715. source: "./media/characters/balbarian/kneeling.svg",
  26716. extra: 922 / 862,
  26717. bottom: 42.4 / 965
  26718. }
  26719. },
  26720. },
  26721. [
  26722. {
  26723. name: "Normal",
  26724. height: math.unit(6 + 4 / 12, "feet")
  26725. },
  26726. {
  26727. name: "Treasured",
  26728. height: math.unit(18 + 9 / 12, "feet"),
  26729. default: true
  26730. },
  26731. {
  26732. name: "Macro",
  26733. height: math.unit(900, "feet")
  26734. },
  26735. ]
  26736. ))
  26737. characterMakers.push(() => makeCharacter(
  26738. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26739. {
  26740. front: {
  26741. height: math.unit(6 + 4 / 12, "feet"),
  26742. weight: math.unit(325, "lb"),
  26743. name: "Front",
  26744. image: {
  26745. source: "./media/characters/balina-amarini/front.svg",
  26746. extra: 415 / 403,
  26747. bottom: 19 / 433.4
  26748. }
  26749. },
  26750. back: {
  26751. height: math.unit(6 + 4 / 12, "feet"),
  26752. weight: math.unit(325, "lb"),
  26753. name: "Back",
  26754. image: {
  26755. source: "./media/characters/balina-amarini/back.svg",
  26756. extra: 415 / 403,
  26757. bottom: 13.5 / 432
  26758. }
  26759. },
  26760. overdrive: {
  26761. height: math.unit(6 + 4 / 12, "feet"),
  26762. weight: math.unit(400, "lb"),
  26763. name: "Overdrive",
  26764. image: {
  26765. source: "./media/characters/balina-amarini/overdrive.svg",
  26766. extra: 269 / 259,
  26767. bottom: 12 / 282
  26768. }
  26769. },
  26770. },
  26771. [
  26772. {
  26773. name: "Boom",
  26774. height: math.unit(9 + 10 / 12, "feet"),
  26775. default: true
  26776. },
  26777. {
  26778. name: "Macro",
  26779. height: math.unit(280, "feet")
  26780. },
  26781. ]
  26782. ))
  26783. characterMakers.push(() => makeCharacter(
  26784. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26785. {
  26786. goddess: {
  26787. height: math.unit(600, "feet"),
  26788. weight: math.unit(2000000, "tons"),
  26789. name: "Goddess",
  26790. image: {
  26791. source: "./media/characters/lady-kubwa/goddess.svg",
  26792. extra: 1240.5 / 1223,
  26793. bottom: 22 / 1263
  26794. }
  26795. },
  26796. goddesser: {
  26797. height: math.unit(900, "feet"),
  26798. weight: math.unit(20000000, "lb"),
  26799. name: "Goddess-er",
  26800. image: {
  26801. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26802. extra: 899 / 888,
  26803. bottom: 12.6 / 912
  26804. }
  26805. },
  26806. },
  26807. [
  26808. {
  26809. name: "Macro",
  26810. height: math.unit(600, "feet"),
  26811. default: true
  26812. },
  26813. {
  26814. name: "Megamacro",
  26815. height: math.unit(250, "miles")
  26816. },
  26817. ]
  26818. ))
  26819. characterMakers.push(() => makeCharacter(
  26820. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26821. {
  26822. front: {
  26823. height: math.unit(7 + 7 / 12, "feet"),
  26824. weight: math.unit(250, "lb"),
  26825. name: "Front",
  26826. image: {
  26827. source: "./media/characters/tala-grovehorn/front.svg",
  26828. extra: 2636 / 2525,
  26829. bottom: 147 / 2781
  26830. }
  26831. },
  26832. back: {
  26833. height: math.unit(7 + 7 / 12, "feet"),
  26834. weight: math.unit(250, "lb"),
  26835. name: "Back",
  26836. image: {
  26837. source: "./media/characters/tala-grovehorn/back.svg",
  26838. extra: 2635 / 2539,
  26839. bottom: 100 / 2732.8
  26840. }
  26841. },
  26842. mouth: {
  26843. height: math.unit(1.15, "feet"),
  26844. name: "Mouth",
  26845. image: {
  26846. source: "./media/characters/tala-grovehorn/mouth.svg"
  26847. }
  26848. },
  26849. dick: {
  26850. height: math.unit(2.36, "feet"),
  26851. name: "Dick",
  26852. image: {
  26853. source: "./media/characters/tala-grovehorn/dick.svg"
  26854. }
  26855. },
  26856. slit: {
  26857. height: math.unit(0.61, "feet"),
  26858. name: "Slit",
  26859. image: {
  26860. source: "./media/characters/tala-grovehorn/slit.svg"
  26861. }
  26862. },
  26863. },
  26864. [
  26865. ]
  26866. ))
  26867. characterMakers.push(() => makeCharacter(
  26868. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26869. {
  26870. front: {
  26871. height: math.unit(7 + 7 / 12, "feet"),
  26872. weight: math.unit(225, "lb"),
  26873. name: "Front",
  26874. image: {
  26875. source: "./media/characters/epona/front.svg",
  26876. extra: 2445 / 2290,
  26877. bottom: 251 / 2696
  26878. }
  26879. },
  26880. back: {
  26881. height: math.unit(7 + 7 / 12, "feet"),
  26882. weight: math.unit(225, "lb"),
  26883. name: "Back",
  26884. image: {
  26885. source: "./media/characters/epona/back.svg",
  26886. extra: 2546 / 2408,
  26887. bottom: 44 / 2589
  26888. }
  26889. },
  26890. genitals: {
  26891. height: math.unit(1.5, "feet"),
  26892. name: "Genitals",
  26893. image: {
  26894. source: "./media/characters/epona/genitals.svg"
  26895. }
  26896. },
  26897. },
  26898. [
  26899. {
  26900. name: "Normal",
  26901. height: math.unit(7 + 7 / 12, "feet"),
  26902. default: true
  26903. },
  26904. ]
  26905. ))
  26906. characterMakers.push(() => makeCharacter(
  26907. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26908. {
  26909. front: {
  26910. height: math.unit(7, "feet"),
  26911. weight: math.unit(518, "lb"),
  26912. name: "Front",
  26913. image: {
  26914. source: "./media/characters/avia-bloodbourn/front.svg",
  26915. extra: 1466 / 1350,
  26916. bottom: 65 / 1527
  26917. }
  26918. },
  26919. },
  26920. [
  26921. ]
  26922. ))
  26923. characterMakers.push(() => makeCharacter(
  26924. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26925. {
  26926. front: {
  26927. height: math.unit(9.35, "feet"),
  26928. weight: math.unit(600, "lb"),
  26929. name: "Front",
  26930. image: {
  26931. source: "./media/characters/amera/front.svg",
  26932. extra: 891 / 818,
  26933. bottom: 30 / 922.7
  26934. }
  26935. },
  26936. back: {
  26937. height: math.unit(9.35, "feet"),
  26938. weight: math.unit(600, "lb"),
  26939. name: "Back",
  26940. image: {
  26941. source: "./media/characters/amera/back.svg",
  26942. extra: 876 / 824,
  26943. bottom: 6.8 / 884
  26944. }
  26945. },
  26946. dick: {
  26947. height: math.unit(2.14, "feet"),
  26948. name: "Dick",
  26949. image: {
  26950. source: "./media/characters/amera/dick.svg"
  26951. }
  26952. },
  26953. },
  26954. [
  26955. {
  26956. name: "Normal",
  26957. height: math.unit(9.35, "feet"),
  26958. default: true
  26959. },
  26960. ]
  26961. ))
  26962. characterMakers.push(() => makeCharacter(
  26963. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26964. {
  26965. kneeling: {
  26966. height: math.unit(3 + 4 / 12, "feet"),
  26967. weight: math.unit(90, "lb"),
  26968. name: "Kneeling",
  26969. image: {
  26970. source: "./media/characters/rosewen/kneeling.svg",
  26971. extra: 1835 / 1571,
  26972. bottom: 27.7 / 1862
  26973. }
  26974. },
  26975. },
  26976. [
  26977. {
  26978. name: "Normal",
  26979. height: math.unit(3 + 4 / 12, "feet"),
  26980. default: true
  26981. },
  26982. ]
  26983. ))
  26984. characterMakers.push(() => makeCharacter(
  26985. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26986. {
  26987. front: {
  26988. height: math.unit(5 + 10 / 12, "feet"),
  26989. weight: math.unit(200, "lb"),
  26990. name: "Front",
  26991. image: {
  26992. source: "./media/characters/sabah/front.svg",
  26993. extra: 849 / 763,
  26994. bottom: 33.9 / 881
  26995. }
  26996. },
  26997. },
  26998. [
  26999. {
  27000. name: "Normal",
  27001. height: math.unit(5 + 10 / 12, "feet"),
  27002. default: true
  27003. },
  27004. ]
  27005. ))
  27006. characterMakers.push(() => makeCharacter(
  27007. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27008. {
  27009. front: {
  27010. height: math.unit(3 + 5 / 12, "feet"),
  27011. weight: math.unit(40, "kg"),
  27012. name: "Front",
  27013. image: {
  27014. source: "./media/characters/purple-flame/front.svg",
  27015. extra: 1577 / 1412,
  27016. bottom: 97 / 1694
  27017. }
  27018. },
  27019. frontDressed: {
  27020. height: math.unit(3 + 5 / 12, "feet"),
  27021. weight: math.unit(40, "kg"),
  27022. name: "Front (Dressed)",
  27023. image: {
  27024. source: "./media/characters/purple-flame/front-dressed.svg",
  27025. extra: 1577 / 1412,
  27026. bottom: 97 / 1694
  27027. }
  27028. },
  27029. headphones: {
  27030. height: math.unit(0.85, "feet"),
  27031. name: "Headphones",
  27032. image: {
  27033. source: "./media/characters/purple-flame/headphones.svg"
  27034. }
  27035. },
  27036. },
  27037. [
  27038. {
  27039. name: "Really Small",
  27040. height: math.unit(5, "cm")
  27041. },
  27042. {
  27043. name: "Micro",
  27044. height: math.unit(1 + 5 / 12, "feet")
  27045. },
  27046. {
  27047. name: "Normal",
  27048. height: math.unit(3 + 5 / 12, "feet"),
  27049. default: true
  27050. },
  27051. {
  27052. name: "Minimacro",
  27053. height: math.unit(125, "feet")
  27054. },
  27055. {
  27056. name: "Macro",
  27057. height: math.unit(0.5, "miles")
  27058. },
  27059. {
  27060. name: "Megamacro",
  27061. height: math.unit(50, "miles")
  27062. },
  27063. {
  27064. name: "Gigantic",
  27065. height: math.unit(750, "miles")
  27066. },
  27067. {
  27068. name: "Planetary",
  27069. height: math.unit(15000, "miles")
  27070. },
  27071. ]
  27072. ))
  27073. characterMakers.push(() => makeCharacter(
  27074. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27075. {
  27076. front: {
  27077. height: math.unit(14, "feet"),
  27078. weight: math.unit(959, "lb"),
  27079. name: "Front",
  27080. image: {
  27081. source: "./media/characters/arsenal/front.svg",
  27082. extra: 2357 / 2157,
  27083. bottom: 93 / 2458
  27084. }
  27085. },
  27086. },
  27087. [
  27088. {
  27089. name: "Normal",
  27090. height: math.unit(14, "feet"),
  27091. default: true
  27092. },
  27093. ]
  27094. ))
  27095. characterMakers.push(() => makeCharacter(
  27096. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27097. {
  27098. front: {
  27099. height: math.unit(6, "feet"),
  27100. weight: math.unit(150, "lb"),
  27101. name: "Front",
  27102. image: {
  27103. source: "./media/characters/adira/front.svg",
  27104. extra: 1078 / 1029,
  27105. bottom: 87 / 1166
  27106. }
  27107. },
  27108. },
  27109. [
  27110. {
  27111. name: "Micro",
  27112. height: math.unit(4, "inches"),
  27113. default: true
  27114. },
  27115. {
  27116. name: "Macro",
  27117. height: math.unit(50, "feet")
  27118. },
  27119. ]
  27120. ))
  27121. characterMakers.push(() => makeCharacter(
  27122. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27123. {
  27124. front: {
  27125. height: math.unit(16, "feet"),
  27126. weight: math.unit(1000, "lb"),
  27127. name: "Front",
  27128. image: {
  27129. source: "./media/characters/grim/front.svg",
  27130. extra: 622 / 614,
  27131. bottom: 18.1 / 642
  27132. }
  27133. },
  27134. back: {
  27135. height: math.unit(16, "feet"),
  27136. weight: math.unit(1000, "lb"),
  27137. name: "Back",
  27138. image: {
  27139. source: "./media/characters/grim/back.svg",
  27140. extra: 610.6 / 602,
  27141. bottom: 40.8 / 652
  27142. }
  27143. },
  27144. hunched: {
  27145. height: math.unit(9.75, "feet"),
  27146. weight: math.unit(1000, "lb"),
  27147. name: "Hunched",
  27148. image: {
  27149. source: "./media/characters/grim/hunched.svg",
  27150. extra: 304 / 297,
  27151. bottom: 35.4 / 394
  27152. }
  27153. },
  27154. },
  27155. [
  27156. {
  27157. name: "Normal",
  27158. height: math.unit(16, "feet"),
  27159. default: true
  27160. },
  27161. ]
  27162. ))
  27163. characterMakers.push(() => makeCharacter(
  27164. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27165. {
  27166. front: {
  27167. height: math.unit(2.3, "meters"),
  27168. weight: math.unit(300, "lb"),
  27169. name: "Front",
  27170. image: {
  27171. source: "./media/characters/sinja/front-sfw.svg",
  27172. extra: 1393 / 1294,
  27173. bottom: 70 / 1463
  27174. }
  27175. },
  27176. frontNsfw: {
  27177. height: math.unit(2.3, "meters"),
  27178. weight: math.unit(300, "lb"),
  27179. name: "Front (NSFW)",
  27180. image: {
  27181. source: "./media/characters/sinja/front-nsfw.svg",
  27182. extra: 1393 / 1294,
  27183. bottom: 70 / 1463
  27184. }
  27185. },
  27186. back: {
  27187. height: math.unit(2.3, "meters"),
  27188. weight: math.unit(300, "lb"),
  27189. name: "Back",
  27190. image: {
  27191. source: "./media/characters/sinja/back.svg",
  27192. extra: 1393 / 1294,
  27193. bottom: 70 / 1463
  27194. }
  27195. },
  27196. head: {
  27197. height: math.unit(1.771, "feet"),
  27198. name: "Head",
  27199. image: {
  27200. source: "./media/characters/sinja/head.svg"
  27201. }
  27202. },
  27203. slit: {
  27204. height: math.unit(0.8, "feet"),
  27205. name: "Slit",
  27206. image: {
  27207. source: "./media/characters/sinja/slit.svg"
  27208. }
  27209. },
  27210. },
  27211. [
  27212. {
  27213. name: "Normal",
  27214. height: math.unit(2.3, "meters")
  27215. },
  27216. {
  27217. name: "Macro",
  27218. height: math.unit(91, "meters"),
  27219. default: true
  27220. },
  27221. {
  27222. name: "Megamacro",
  27223. height: math.unit(91440, "meters")
  27224. },
  27225. {
  27226. name: "Gigamacro",
  27227. height: math.unit(60960000, "meters")
  27228. },
  27229. {
  27230. name: "Teramacro",
  27231. height: math.unit(9144000000, "meters")
  27232. },
  27233. ]
  27234. ))
  27235. characterMakers.push(() => makeCharacter(
  27236. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27237. {
  27238. front: {
  27239. height: math.unit(1.7, "meters"),
  27240. weight: math.unit(130, "lb"),
  27241. name: "Front",
  27242. image: {
  27243. source: "./media/characters/kyu/front.svg",
  27244. extra: 415 / 395,
  27245. bottom: 5 / 420
  27246. }
  27247. },
  27248. head: {
  27249. height: math.unit(1.75, "feet"),
  27250. name: "Head",
  27251. image: {
  27252. source: "./media/characters/kyu/head.svg"
  27253. }
  27254. },
  27255. foot: {
  27256. height: math.unit(0.81, "feet"),
  27257. name: "Foot",
  27258. image: {
  27259. source: "./media/characters/kyu/foot.svg"
  27260. }
  27261. },
  27262. },
  27263. [
  27264. {
  27265. name: "Normal",
  27266. height: math.unit(1.7, "meters")
  27267. },
  27268. {
  27269. name: "Macro",
  27270. height: math.unit(131, "feet"),
  27271. default: true
  27272. },
  27273. {
  27274. name: "Megamacro",
  27275. height: math.unit(91440, "meters")
  27276. },
  27277. {
  27278. name: "Gigamacro",
  27279. height: math.unit(60960000, "meters")
  27280. },
  27281. {
  27282. name: "Teramacro",
  27283. height: math.unit(9144000000, "meters")
  27284. },
  27285. ]
  27286. ))
  27287. characterMakers.push(() => makeCharacter(
  27288. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27289. {
  27290. front: {
  27291. height: math.unit(7 + 1 / 12, "feet"),
  27292. weight: math.unit(250, "lb"),
  27293. name: "Front",
  27294. image: {
  27295. source: "./media/characters/joey/front.svg",
  27296. extra: 1791 / 1537,
  27297. bottom: 28 / 1816
  27298. }
  27299. },
  27300. },
  27301. [
  27302. {
  27303. name: "Micro",
  27304. height: math.unit(3, "inches")
  27305. },
  27306. {
  27307. name: "Normal",
  27308. height: math.unit(7 + 1 / 12, "feet"),
  27309. default: true
  27310. },
  27311. ]
  27312. ))
  27313. characterMakers.push(() => makeCharacter(
  27314. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27315. {
  27316. front: {
  27317. height: math.unit(165, "cm"),
  27318. weight: math.unit(140, "lb"),
  27319. name: "Front",
  27320. image: {
  27321. source: "./media/characters/sam-evans/front.svg",
  27322. extra: 3417 / 3230,
  27323. bottom: 41.3 / 3417
  27324. }
  27325. },
  27326. frontSixTails: {
  27327. height: math.unit(165, "cm"),
  27328. weight: math.unit(140, "lb"),
  27329. name: "Front-six-tails",
  27330. image: {
  27331. source: "./media/characters/sam-evans/front-six-tails.svg",
  27332. extra: 3417 / 3230,
  27333. bottom: 41.3 / 3417
  27334. }
  27335. },
  27336. back: {
  27337. height: math.unit(165, "cm"),
  27338. weight: math.unit(140, "lb"),
  27339. name: "Back",
  27340. image: {
  27341. source: "./media/characters/sam-evans/back.svg",
  27342. extra: 3227 / 3032,
  27343. bottom: 6.8 / 3234
  27344. }
  27345. },
  27346. face: {
  27347. height: math.unit(0.68, "feet"),
  27348. name: "Face",
  27349. image: {
  27350. source: "./media/characters/sam-evans/face.svg"
  27351. }
  27352. },
  27353. },
  27354. [
  27355. {
  27356. name: "Normal",
  27357. height: math.unit(165, "cm"),
  27358. default: true
  27359. },
  27360. {
  27361. name: "Macro",
  27362. height: math.unit(100, "meters")
  27363. },
  27364. {
  27365. name: "Macro+",
  27366. height: math.unit(800, "meters")
  27367. },
  27368. {
  27369. name: "Macro++",
  27370. height: math.unit(3, "km")
  27371. },
  27372. {
  27373. name: "Macro+++",
  27374. height: math.unit(30, "km")
  27375. },
  27376. ]
  27377. ))
  27378. characterMakers.push(() => makeCharacter(
  27379. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27380. {
  27381. front: {
  27382. height: math.unit(10, "feet"),
  27383. weight: math.unit(750, "lb"),
  27384. name: "Front",
  27385. image: {
  27386. source: "./media/characters/juliet-a/front.svg",
  27387. extra: 1766 / 1720,
  27388. bottom: 43 / 1809
  27389. }
  27390. },
  27391. back: {
  27392. height: math.unit(10, "feet"),
  27393. weight: math.unit(750, "lb"),
  27394. name: "Back",
  27395. image: {
  27396. source: "./media/characters/juliet-a/back.svg",
  27397. extra: 1781 / 1734,
  27398. bottom: 35 / 1810,
  27399. }
  27400. },
  27401. },
  27402. [
  27403. {
  27404. name: "Normal",
  27405. height: math.unit(10, "feet"),
  27406. default: true
  27407. },
  27408. {
  27409. name: "Dragon Form",
  27410. height: math.unit(250, "feet")
  27411. },
  27412. {
  27413. name: "Macro",
  27414. height: math.unit(1000, "feet")
  27415. },
  27416. {
  27417. name: "Megamacro",
  27418. height: math.unit(10000, "feet")
  27419. }
  27420. ]
  27421. ))
  27422. characterMakers.push(() => makeCharacter(
  27423. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27424. {
  27425. regular: {
  27426. height: math.unit(7 + 3 / 12, "feet"),
  27427. weight: math.unit(260, "lb"),
  27428. name: "Regular",
  27429. image: {
  27430. source: "./media/characters/wild/regular.svg",
  27431. extra: 97.45 / 92,
  27432. bottom: 6.8 / 104.3
  27433. }
  27434. },
  27435. biggums: {
  27436. height: math.unit(8 + 6 / 12, "feet"),
  27437. weight: math.unit(425, "lb"),
  27438. name: "Biggums",
  27439. image: {
  27440. source: "./media/characters/wild/biggums.svg",
  27441. extra: 97.45 / 92,
  27442. bottom: 7.5 / 132.34
  27443. }
  27444. },
  27445. mawRegular: {
  27446. height: math.unit(1.24, "feet"),
  27447. name: "Maw (Regular)",
  27448. image: {
  27449. source: "./media/characters/wild/maw.svg"
  27450. }
  27451. },
  27452. mawBiggums: {
  27453. height: math.unit(1.47, "feet"),
  27454. name: "Maw (Biggums)",
  27455. image: {
  27456. source: "./media/characters/wild/maw.svg"
  27457. }
  27458. },
  27459. },
  27460. [
  27461. {
  27462. name: "Normal",
  27463. height: math.unit(7 + 3 / 12, "feet"),
  27464. default: true
  27465. },
  27466. ]
  27467. ))
  27468. characterMakers.push(() => makeCharacter(
  27469. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27470. {
  27471. front: {
  27472. height: math.unit(2.5, "meters"),
  27473. weight: math.unit(200, "kg"),
  27474. name: "Front",
  27475. image: {
  27476. source: "./media/characters/vidar/front.svg",
  27477. extra: 2994 / 2795,
  27478. bottom: 56 / 3061
  27479. }
  27480. },
  27481. back: {
  27482. height: math.unit(2.5, "meters"),
  27483. weight: math.unit(200, "kg"),
  27484. name: "Back",
  27485. image: {
  27486. source: "./media/characters/vidar/back.svg",
  27487. extra: 3131 / 2928,
  27488. bottom: 13.5 / 3141.5
  27489. }
  27490. },
  27491. feral: {
  27492. height: math.unit(2.5, "meters"),
  27493. weight: math.unit(2000, "kg"),
  27494. name: "Feral",
  27495. image: {
  27496. source: "./media/characters/vidar/feral.svg",
  27497. extra: 2790 / 1765,
  27498. bottom: 6 / 2796
  27499. }
  27500. },
  27501. },
  27502. [
  27503. {
  27504. name: "Normal",
  27505. height: math.unit(2.5, "meters"),
  27506. default: true
  27507. },
  27508. {
  27509. name: "Macro",
  27510. height: math.unit(100, "meters")
  27511. },
  27512. ]
  27513. ))
  27514. characterMakers.push(() => makeCharacter(
  27515. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27516. {
  27517. front: {
  27518. height: math.unit(5 + 9 / 12, "feet"),
  27519. weight: math.unit(120, "lb"),
  27520. name: "Front",
  27521. image: {
  27522. source: "./media/characters/ash/front.svg",
  27523. extra: 2189 / 1961,
  27524. bottom: 5.2 / 2194
  27525. }
  27526. },
  27527. },
  27528. [
  27529. {
  27530. name: "Normal",
  27531. height: math.unit(5 + 9 / 12, "feet"),
  27532. default: true
  27533. },
  27534. ]
  27535. ))
  27536. characterMakers.push(() => makeCharacter(
  27537. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27538. {
  27539. front: {
  27540. height: math.unit(9, "feet"),
  27541. weight: math.unit(10000, "lb"),
  27542. name: "Front",
  27543. image: {
  27544. source: "./media/characters/gygabite/front.svg",
  27545. bottom: 31.7 / 537.8,
  27546. extra: 505 / 370
  27547. }
  27548. },
  27549. },
  27550. [
  27551. {
  27552. name: "Normal",
  27553. height: math.unit(9, "feet"),
  27554. default: true
  27555. },
  27556. ]
  27557. ))
  27558. characterMakers.push(() => makeCharacter(
  27559. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27560. {
  27561. front: {
  27562. height: math.unit(12, "feet"),
  27563. weight: math.unit(35000, "lb"),
  27564. name: "Front",
  27565. image: {
  27566. source: "./media/characters/p0tat0/front.svg",
  27567. extra: 1065 / 921,
  27568. bottom: 55.7 / 1121.25
  27569. }
  27570. },
  27571. },
  27572. [
  27573. {
  27574. name: "Normal",
  27575. height: math.unit(12, "feet"),
  27576. default: true
  27577. },
  27578. ]
  27579. ))
  27580. characterMakers.push(() => makeCharacter(
  27581. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27582. {
  27583. side: {
  27584. height: math.unit(6.5, "feet"),
  27585. weight: math.unit(800, "lb"),
  27586. name: "Side",
  27587. image: {
  27588. source: "./media/characters/dusk/side.svg",
  27589. extra: 615 / 373,
  27590. bottom: 53 / 664
  27591. }
  27592. },
  27593. sitting: {
  27594. height: math.unit(7, "feet"),
  27595. weight: math.unit(800, "lb"),
  27596. name: "Sitting",
  27597. image: {
  27598. source: "./media/characters/dusk/sitting.svg",
  27599. extra: 753 / 425,
  27600. bottom: 33 / 774
  27601. }
  27602. },
  27603. head: {
  27604. height: math.unit(6.1, "feet"),
  27605. name: "Head",
  27606. image: {
  27607. source: "./media/characters/dusk/head.svg"
  27608. }
  27609. },
  27610. },
  27611. [
  27612. {
  27613. name: "Normal",
  27614. height: math.unit(7, "feet"),
  27615. default: true
  27616. },
  27617. ]
  27618. ))
  27619. characterMakers.push(() => makeCharacter(
  27620. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27621. {
  27622. front: {
  27623. height: math.unit(15, "feet"),
  27624. weight: math.unit(7000, "lb"),
  27625. name: "Front",
  27626. image: {
  27627. source: "./media/characters/jay-direwolf/front.svg",
  27628. extra: 1810 / 1732,
  27629. bottom: 66 / 1892
  27630. }
  27631. },
  27632. },
  27633. [
  27634. {
  27635. name: "Normal",
  27636. height: math.unit(15, "feet"),
  27637. default: true
  27638. },
  27639. ]
  27640. ))
  27641. characterMakers.push(() => makeCharacter(
  27642. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27643. {
  27644. front: {
  27645. height: math.unit(4 + 9 / 12, "feet"),
  27646. weight: math.unit(130, "lb"),
  27647. name: "Front",
  27648. image: {
  27649. source: "./media/characters/anchovie/front.svg",
  27650. extra: 382 / 350,
  27651. bottom: 25 / 409
  27652. }
  27653. },
  27654. back: {
  27655. height: math.unit(4 + 9 / 12, "feet"),
  27656. weight: math.unit(130, "lb"),
  27657. name: "Back",
  27658. image: {
  27659. source: "./media/characters/anchovie/back.svg",
  27660. extra: 385 / 352,
  27661. bottom: 16.6 / 402
  27662. }
  27663. },
  27664. frontDressed: {
  27665. height: math.unit(4 + 9 / 12, "feet"),
  27666. weight: math.unit(130, "lb"),
  27667. name: "Front (Dressed)",
  27668. image: {
  27669. source: "./media/characters/anchovie/front-dressed.svg",
  27670. extra: 382 / 350,
  27671. bottom: 25 / 409
  27672. }
  27673. },
  27674. backDressed: {
  27675. height: math.unit(4 + 9 / 12, "feet"),
  27676. weight: math.unit(130, "lb"),
  27677. name: "Back (Dressed)",
  27678. image: {
  27679. source: "./media/characters/anchovie/back-dressed.svg",
  27680. extra: 385 / 352,
  27681. bottom: 16.6 / 402
  27682. }
  27683. },
  27684. },
  27685. [
  27686. {
  27687. name: "Micro",
  27688. height: math.unit(6.4, "inches")
  27689. },
  27690. {
  27691. name: "Normal",
  27692. height: math.unit(4 + 9 / 12, "feet"),
  27693. default: true
  27694. },
  27695. ]
  27696. ))
  27697. characterMakers.push(() => makeCharacter(
  27698. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27699. {
  27700. front: {
  27701. height: math.unit(2, "meters"),
  27702. weight: math.unit(180, "lb"),
  27703. name: "Front",
  27704. image: {
  27705. source: "./media/characters/acidrenamon/front.svg",
  27706. extra: 987 / 890,
  27707. bottom: 22.8 / 1009
  27708. }
  27709. },
  27710. back: {
  27711. height: math.unit(2, "meters"),
  27712. weight: math.unit(180, "lb"),
  27713. name: "Back",
  27714. image: {
  27715. source: "./media/characters/acidrenamon/back.svg",
  27716. extra: 983 / 891,
  27717. bottom: 8.4 / 992
  27718. }
  27719. },
  27720. head: {
  27721. height: math.unit(1.92, "feet"),
  27722. name: "Head",
  27723. image: {
  27724. source: "./media/characters/acidrenamon/head.svg"
  27725. }
  27726. },
  27727. rump: {
  27728. height: math.unit(1.72, "feet"),
  27729. name: "Rump",
  27730. image: {
  27731. source: "./media/characters/acidrenamon/rump.svg"
  27732. }
  27733. },
  27734. tail: {
  27735. height: math.unit(4.2, "feet"),
  27736. name: "Tail",
  27737. image: {
  27738. source: "./media/characters/acidrenamon/tail.svg"
  27739. }
  27740. },
  27741. },
  27742. [
  27743. {
  27744. name: "Normal",
  27745. height: math.unit(2, "meters"),
  27746. default: true
  27747. },
  27748. {
  27749. name: "Minimacro",
  27750. height: math.unit(7, "meters")
  27751. },
  27752. {
  27753. name: "Macro",
  27754. height: math.unit(200, "meters")
  27755. },
  27756. {
  27757. name: "Gigamacro",
  27758. height: math.unit(0.2, "earths")
  27759. },
  27760. ]
  27761. ))
  27762. characterMakers.push(() => makeCharacter(
  27763. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27764. {
  27765. front: {
  27766. height: math.unit(152, "feet"),
  27767. name: "Front",
  27768. image: {
  27769. source: "./media/characters/kenzie-lee/front.svg",
  27770. extra: 1869/1774,
  27771. bottom: 128/1997
  27772. }
  27773. },
  27774. side: {
  27775. height: math.unit(86, "feet"),
  27776. name: "Side",
  27777. image: {
  27778. source: "./media/characters/kenzie-lee/side.svg",
  27779. extra: 930/815,
  27780. bottom: 177/1107
  27781. }
  27782. },
  27783. paw: {
  27784. height: math.unit(15, "feet"),
  27785. name: "Paw",
  27786. image: {
  27787. source: "./media/characters/kenzie-lee/paw.svg"
  27788. }
  27789. },
  27790. },
  27791. [
  27792. {
  27793. name: "Micro",
  27794. height: math.unit(1.5, "inches")
  27795. },
  27796. {
  27797. name: "Normal",
  27798. height: math.unit(152, "feet"),
  27799. default: true
  27800. },
  27801. {
  27802. name: "Megamacro",
  27803. height: math.unit(7, "miles")
  27804. },
  27805. {
  27806. name: "Gigamacro",
  27807. height: math.unit(8000, "miles")
  27808. },
  27809. ]
  27810. ))
  27811. characterMakers.push(() => makeCharacter(
  27812. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27813. {
  27814. side: {
  27815. height: math.unit(6, "feet"),
  27816. weight: math.unit(150, "lb"),
  27817. name: "Side",
  27818. image: {
  27819. source: "./media/characters/withers/side.svg",
  27820. extra: 1830 / 1728,
  27821. bottom: 96 / 1927
  27822. }
  27823. },
  27824. front: {
  27825. height: math.unit(6, "feet"),
  27826. weight: math.unit(150, "lb"),
  27827. name: "Front",
  27828. image: {
  27829. source: "./media/characters/withers/front.svg",
  27830. extra: 1514 / 1438,
  27831. bottom: 118 / 1632
  27832. }
  27833. },
  27834. },
  27835. [
  27836. {
  27837. name: "Macro",
  27838. height: math.unit(168, "feet"),
  27839. default: true
  27840. },
  27841. {
  27842. name: "Megamacro",
  27843. height: math.unit(15, "miles")
  27844. }
  27845. ]
  27846. ))
  27847. characterMakers.push(() => makeCharacter(
  27848. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27849. {
  27850. front: {
  27851. height: math.unit(6 + 7 / 12, "feet"),
  27852. weight: math.unit(250, "lb"),
  27853. name: "Front",
  27854. image: {
  27855. source: "./media/characters/nemoskii/front.svg",
  27856. extra: 2270 / 1734,
  27857. bottom: 86 / 2354
  27858. }
  27859. },
  27860. back: {
  27861. height: math.unit(6 + 7 / 12, "feet"),
  27862. weight: math.unit(250, "lb"),
  27863. name: "Back",
  27864. image: {
  27865. source: "./media/characters/nemoskii/back.svg",
  27866. extra: 1845 / 1788,
  27867. bottom: 10.5 / 1852
  27868. }
  27869. },
  27870. head: {
  27871. height: math.unit(1.31, "feet"),
  27872. name: "Head",
  27873. image: {
  27874. source: "./media/characters/nemoskii/head.svg"
  27875. }
  27876. },
  27877. },
  27878. [
  27879. {
  27880. name: "Micro",
  27881. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27882. },
  27883. {
  27884. name: "Normal",
  27885. height: math.unit(6 + 7 / 12, "feet"),
  27886. default: true
  27887. },
  27888. {
  27889. name: "Macro",
  27890. height: math.unit((6 + 7 / 12) * 150, "feet")
  27891. },
  27892. {
  27893. name: "Macro+",
  27894. height: math.unit((6 + 7 / 12) * 500, "feet")
  27895. },
  27896. {
  27897. name: "Megamacro",
  27898. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27899. },
  27900. ]
  27901. ))
  27902. characterMakers.push(() => makeCharacter(
  27903. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27904. {
  27905. front: {
  27906. height: math.unit(1, "mile"),
  27907. weight: math.unit(265261.9, "lb"),
  27908. name: "Front",
  27909. image: {
  27910. source: "./media/characters/shui/front.svg",
  27911. extra: 1633 / 1564,
  27912. bottom: 91.5 / 1726
  27913. }
  27914. },
  27915. },
  27916. [
  27917. {
  27918. name: "Macro",
  27919. height: math.unit(1, "mile"),
  27920. default: true
  27921. },
  27922. ]
  27923. ))
  27924. characterMakers.push(() => makeCharacter(
  27925. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27926. {
  27927. front: {
  27928. height: math.unit(12 + 6 / 12, "feet"),
  27929. weight: math.unit(1342, "lb"),
  27930. name: "Front",
  27931. image: {
  27932. source: "./media/characters/arokh-takakura/front.svg",
  27933. extra: 1089 / 1043,
  27934. bottom: 77.4 / 1176.7
  27935. }
  27936. },
  27937. back: {
  27938. height: math.unit(12 + 6 / 12, "feet"),
  27939. weight: math.unit(1342, "lb"),
  27940. name: "Back",
  27941. image: {
  27942. source: "./media/characters/arokh-takakura/back.svg",
  27943. extra: 1046 / 1019,
  27944. bottom: 102 / 1150
  27945. }
  27946. },
  27947. },
  27948. [
  27949. {
  27950. name: "Big",
  27951. height: math.unit(12 + 6 / 12, "feet"),
  27952. default: true
  27953. },
  27954. ]
  27955. ))
  27956. characterMakers.push(() => makeCharacter(
  27957. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27958. {
  27959. front: {
  27960. height: math.unit(5 + 6 / 12, "feet"),
  27961. weight: math.unit(150, "lb"),
  27962. name: "Front",
  27963. image: {
  27964. source: "./media/characters/theo/front.svg",
  27965. extra: 1184 / 1131,
  27966. bottom: 7.4 / 1191
  27967. }
  27968. },
  27969. },
  27970. [
  27971. {
  27972. name: "Micro",
  27973. height: math.unit(5, "inches")
  27974. },
  27975. {
  27976. name: "Normal",
  27977. height: math.unit(5 + 6 / 12, "feet"),
  27978. default: true
  27979. },
  27980. ]
  27981. ))
  27982. characterMakers.push(() => makeCharacter(
  27983. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27984. {
  27985. front: {
  27986. height: math.unit(5 + 9 / 12, "feet"),
  27987. weight: math.unit(130, "lb"),
  27988. name: "Front",
  27989. image: {
  27990. source: "./media/characters/cecelia-swift/front.svg",
  27991. extra: 502 / 484,
  27992. bottom: 23 / 523
  27993. }
  27994. },
  27995. back: {
  27996. height: math.unit(5 + 9 / 12, "feet"),
  27997. weight: math.unit(130, "lb"),
  27998. name: "Back",
  27999. image: {
  28000. source: "./media/characters/cecelia-swift/back.svg",
  28001. extra: 499 / 485,
  28002. bottom: 12 / 511
  28003. }
  28004. },
  28005. head: {
  28006. height: math.unit(0.90, "feet"),
  28007. name: "Head",
  28008. image: {
  28009. source: "./media/characters/cecelia-swift/head.svg"
  28010. }
  28011. },
  28012. rump: {
  28013. height: math.unit(1.75, "feet"),
  28014. name: "Rump",
  28015. image: {
  28016. source: "./media/characters/cecelia-swift/rump.svg"
  28017. }
  28018. },
  28019. },
  28020. [
  28021. {
  28022. name: "Normal",
  28023. height: math.unit(5 + 9 / 12, "feet"),
  28024. default: true
  28025. },
  28026. {
  28027. name: "Big",
  28028. height: math.unit(50, "feet")
  28029. },
  28030. {
  28031. name: "Macro",
  28032. height: math.unit(100, "feet")
  28033. },
  28034. {
  28035. name: "Macro+",
  28036. height: math.unit(500, "feet")
  28037. },
  28038. {
  28039. name: "Macro++",
  28040. height: math.unit(1000, "feet")
  28041. },
  28042. ]
  28043. ))
  28044. characterMakers.push(() => makeCharacter(
  28045. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28046. {
  28047. front: {
  28048. height: math.unit(6, "feet"),
  28049. weight: math.unit(150, "lb"),
  28050. name: "Front",
  28051. image: {
  28052. source: "./media/characters/kaunan/front.svg",
  28053. extra: 2890 / 2523,
  28054. bottom: 49 / 2939
  28055. }
  28056. },
  28057. },
  28058. [
  28059. {
  28060. name: "Macro",
  28061. height: math.unit(150, "feet"),
  28062. default: true
  28063. },
  28064. ]
  28065. ))
  28066. characterMakers.push(() => makeCharacter(
  28067. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28068. {
  28069. front: {
  28070. height: math.unit(175, "cm"),
  28071. weight: math.unit(60, "kg"),
  28072. name: "Front",
  28073. image: {
  28074. source: "./media/characters/fei/front.svg",
  28075. extra: 1873/1723,
  28076. bottom: 53/1926
  28077. }
  28078. },
  28079. },
  28080. [
  28081. {
  28082. name: "Mortal",
  28083. height: math.unit(175, "cm")
  28084. },
  28085. {
  28086. name: "Normal",
  28087. height: math.unit(3500, "m"),
  28088. default: true
  28089. },
  28090. {
  28091. name: "Stroll",
  28092. height: math.unit(17.5, "km")
  28093. },
  28094. {
  28095. name: "Showoff",
  28096. height: math.unit(175, "km")
  28097. },
  28098. ]
  28099. ))
  28100. characterMakers.push(() => makeCharacter(
  28101. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28102. {
  28103. front: {
  28104. height: math.unit(7, "feet"),
  28105. weight: math.unit(1000, "kg"),
  28106. name: "Front",
  28107. image: {
  28108. source: "./media/characters/edrax/front.svg",
  28109. extra: 2838 / 2550,
  28110. bottom: 130 / 2968
  28111. }
  28112. },
  28113. },
  28114. [
  28115. {
  28116. name: "Small",
  28117. height: math.unit(7, "feet")
  28118. },
  28119. {
  28120. name: "Normal",
  28121. height: math.unit(1500, "meters")
  28122. },
  28123. {
  28124. name: "Mega",
  28125. height: math.unit(12000000, "km"),
  28126. default: true
  28127. },
  28128. {
  28129. name: "Megamacro",
  28130. height: math.unit(10600000, "lightyears")
  28131. },
  28132. {
  28133. name: "Hypermacro",
  28134. height: math.unit(256, "yottameters")
  28135. },
  28136. ]
  28137. ))
  28138. characterMakers.push(() => makeCharacter(
  28139. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28140. {
  28141. front: {
  28142. height: math.unit(10, "feet"),
  28143. weight: math.unit(750, "lb"),
  28144. name: "Front",
  28145. image: {
  28146. source: "./media/characters/clove/front.svg",
  28147. extra: 1918/1751,
  28148. bottom: 52/1970
  28149. }
  28150. },
  28151. back: {
  28152. height: math.unit(10, "feet"),
  28153. weight: math.unit(750, "lb"),
  28154. name: "Back",
  28155. image: {
  28156. source: "./media/characters/clove/back.svg",
  28157. extra: 1912/1747,
  28158. bottom: 50/1962
  28159. }
  28160. },
  28161. },
  28162. [
  28163. {
  28164. name: "Normal",
  28165. height: math.unit(10, "feet"),
  28166. default: true
  28167. },
  28168. ]
  28169. ))
  28170. characterMakers.push(() => makeCharacter(
  28171. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28172. {
  28173. front: {
  28174. height: math.unit(4, "feet"),
  28175. weight: math.unit(50, "lb"),
  28176. name: "Front",
  28177. image: {
  28178. source: "./media/characters/alex-rabbit/front.svg",
  28179. extra: 507 / 458,
  28180. bottom: 18.5 / 527
  28181. }
  28182. },
  28183. back: {
  28184. height: math.unit(4, "feet"),
  28185. weight: math.unit(50, "lb"),
  28186. name: "Back",
  28187. image: {
  28188. source: "./media/characters/alex-rabbit/back.svg",
  28189. extra: 502 / 460,
  28190. bottom: 18.9 / 521
  28191. }
  28192. },
  28193. },
  28194. [
  28195. {
  28196. name: "Normal",
  28197. height: math.unit(4, "feet"),
  28198. default: true
  28199. },
  28200. ]
  28201. ))
  28202. characterMakers.push(() => makeCharacter(
  28203. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28204. {
  28205. front: {
  28206. height: math.unit(1 + 3 / 12, "feet"),
  28207. weight: math.unit(80, "lb"),
  28208. name: "Front",
  28209. image: {
  28210. source: "./media/characters/zander-rose/front.svg",
  28211. extra: 916 / 797,
  28212. bottom: 17 / 933
  28213. }
  28214. },
  28215. back: {
  28216. height: math.unit(1 + 3 / 12, "feet"),
  28217. weight: math.unit(80, "lb"),
  28218. name: "Back",
  28219. image: {
  28220. source: "./media/characters/zander-rose/back.svg",
  28221. extra: 903 / 779,
  28222. bottom: 31 / 934
  28223. }
  28224. },
  28225. },
  28226. [
  28227. {
  28228. name: "Normal",
  28229. height: math.unit(1 + 3 / 12, "feet"),
  28230. default: true
  28231. },
  28232. ]
  28233. ))
  28234. characterMakers.push(() => makeCharacter(
  28235. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28236. {
  28237. anthro: {
  28238. height: math.unit(6, "feet"),
  28239. weight: math.unit(150, "lb"),
  28240. name: "Anthro",
  28241. image: {
  28242. source: "./media/characters/razz/anthro.svg",
  28243. extra: 1437 / 1343,
  28244. bottom: 48 / 1485
  28245. }
  28246. },
  28247. feral: {
  28248. height: math.unit(6, "feet"),
  28249. weight: math.unit(150, "lb"),
  28250. name: "Feral",
  28251. image: {
  28252. source: "./media/characters/razz/feral.svg",
  28253. extra: 2569 / 1385,
  28254. bottom: 95 / 2664
  28255. }
  28256. },
  28257. },
  28258. [
  28259. {
  28260. name: "Normal",
  28261. height: math.unit(6, "feet"),
  28262. default: true
  28263. },
  28264. ]
  28265. ))
  28266. characterMakers.push(() => makeCharacter(
  28267. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28268. {
  28269. front: {
  28270. height: math.unit(9 + 4 / 12, "feet"),
  28271. weight: math.unit(500, "lb"),
  28272. name: "Front",
  28273. image: {
  28274. source: "./media/characters/morrigan/front.svg",
  28275. extra: 2707 / 2579,
  28276. bottom: 156 / 2863
  28277. }
  28278. },
  28279. },
  28280. [
  28281. {
  28282. name: "Normal",
  28283. height: math.unit(9 + 4 / 12, "feet"),
  28284. default: true
  28285. },
  28286. ]
  28287. ))
  28288. characterMakers.push(() => makeCharacter(
  28289. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28290. {
  28291. front: {
  28292. height: math.unit(5, "stories"),
  28293. weight: math.unit(4000, "lb"),
  28294. name: "Front",
  28295. image: {
  28296. source: "./media/characters/jenene/front.svg",
  28297. extra: 1780 / 1710,
  28298. bottom: 57 / 1837
  28299. }
  28300. },
  28301. },
  28302. [
  28303. {
  28304. name: "Normal",
  28305. height: math.unit(5, "stories"),
  28306. default: true
  28307. },
  28308. ]
  28309. ))
  28310. characterMakers.push(() => makeCharacter(
  28311. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28312. {
  28313. taurSfw: {
  28314. height: math.unit(10, "meters"),
  28315. weight: math.unit(17500, "kg"),
  28316. name: "Taur",
  28317. image: {
  28318. source: "./media/characters/faey/taur-sfw.svg",
  28319. extra: 1200 / 968,
  28320. bottom: 41 / 1241
  28321. }
  28322. },
  28323. chestmaw: {
  28324. height: math.unit(2.01, "meters"),
  28325. name: "Chestmaw",
  28326. image: {
  28327. source: "./media/characters/faey/chestmaw.svg"
  28328. }
  28329. },
  28330. foot: {
  28331. height: math.unit(2.43, "meters"),
  28332. name: "Foot",
  28333. image: {
  28334. source: "./media/characters/faey/foot.svg"
  28335. }
  28336. },
  28337. jaws: {
  28338. height: math.unit(1.66, "meters"),
  28339. name: "Jaws",
  28340. image: {
  28341. source: "./media/characters/faey/jaws.svg"
  28342. }
  28343. },
  28344. tongues: {
  28345. height: math.unit(2.01, "meters"),
  28346. name: "Tongues",
  28347. image: {
  28348. source: "./media/characters/faey/tongues.svg"
  28349. }
  28350. },
  28351. },
  28352. [
  28353. {
  28354. name: "Small",
  28355. height: math.unit(10, "meters"),
  28356. default: true
  28357. },
  28358. {
  28359. name: "Big",
  28360. height: math.unit(500000, "km")
  28361. },
  28362. ]
  28363. ))
  28364. characterMakers.push(() => makeCharacter(
  28365. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28366. {
  28367. front: {
  28368. height: math.unit(7, "feet"),
  28369. weight: math.unit(275, "lb"),
  28370. name: "Front",
  28371. image: {
  28372. source: "./media/characters/roku/front.svg",
  28373. extra: 903 / 878,
  28374. bottom: 37 / 940
  28375. }
  28376. },
  28377. },
  28378. [
  28379. {
  28380. name: "Normal",
  28381. height: math.unit(7, "feet"),
  28382. default: true
  28383. },
  28384. {
  28385. name: "Macro",
  28386. height: math.unit(500, "feet")
  28387. },
  28388. {
  28389. name: "Megamacro",
  28390. height: math.unit(200, "miles")
  28391. },
  28392. ]
  28393. ))
  28394. characterMakers.push(() => makeCharacter(
  28395. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28396. {
  28397. front: {
  28398. height: math.unit(6 + 2 / 12, "feet"),
  28399. weight: math.unit(150, "lb"),
  28400. name: "Front",
  28401. image: {
  28402. source: "./media/characters/lira/front.svg",
  28403. extra: 1727 / 1605,
  28404. bottom: 26 / 1753
  28405. }
  28406. },
  28407. back: {
  28408. height: math.unit(6 + 2 / 12, "feet"),
  28409. weight: math.unit(150, "lb"),
  28410. name: "Back",
  28411. image: {
  28412. source: "./media/characters/lira/back.svg",
  28413. extra: 1713/1621,
  28414. bottom: 20/1733
  28415. }
  28416. },
  28417. hand: {
  28418. height: math.unit(0.75, "feet"),
  28419. name: "Hand",
  28420. image: {
  28421. source: "./media/characters/lira/hand.svg"
  28422. }
  28423. },
  28424. maw: {
  28425. height: math.unit(0.65, "feet"),
  28426. name: "Maw",
  28427. image: {
  28428. source: "./media/characters/lira/maw.svg"
  28429. }
  28430. },
  28431. pawDigi: {
  28432. height: math.unit(1.6, "feet"),
  28433. name: "Paw Digi",
  28434. image: {
  28435. source: "./media/characters/lira/paw-digi.svg"
  28436. }
  28437. },
  28438. pawPlanti: {
  28439. height: math.unit(1.4, "feet"),
  28440. name: "Paw Planti",
  28441. image: {
  28442. source: "./media/characters/lira/paw-planti.svg"
  28443. }
  28444. },
  28445. },
  28446. [
  28447. {
  28448. name: "Normal",
  28449. height: math.unit(6 + 2 / 12, "feet"),
  28450. default: true
  28451. },
  28452. {
  28453. name: "Macro",
  28454. height: math.unit(100, "feet")
  28455. },
  28456. {
  28457. name: "Macro²",
  28458. height: math.unit(1600, "feet")
  28459. },
  28460. {
  28461. name: "Planetary",
  28462. height: math.unit(20, "earths")
  28463. },
  28464. ]
  28465. ))
  28466. characterMakers.push(() => makeCharacter(
  28467. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28468. {
  28469. front: {
  28470. height: math.unit(6, "feet"),
  28471. weight: math.unit(150, "lb"),
  28472. name: "Front",
  28473. image: {
  28474. source: "./media/characters/hadjet/front.svg",
  28475. extra: 1480 / 1346,
  28476. bottom: 26 / 1506
  28477. }
  28478. },
  28479. frontNsfw: {
  28480. height: math.unit(6, "feet"),
  28481. weight: math.unit(150, "lb"),
  28482. name: "Front (NSFW)",
  28483. image: {
  28484. source: "./media/characters/hadjet/front-nsfw.svg",
  28485. extra: 1440 / 1358,
  28486. bottom: 52 / 1492
  28487. }
  28488. },
  28489. },
  28490. [
  28491. {
  28492. name: "Macro",
  28493. height: math.unit(10, "stories"),
  28494. default: true
  28495. },
  28496. {
  28497. name: "Megamacro",
  28498. height: math.unit(1.5, "miles")
  28499. },
  28500. {
  28501. name: "Megamacro+",
  28502. height: math.unit(5, "miles")
  28503. },
  28504. ]
  28505. ))
  28506. characterMakers.push(() => makeCharacter(
  28507. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28508. {
  28509. side: {
  28510. height: math.unit(106, "feet"),
  28511. weight: math.unit(500, "tonnes"),
  28512. name: "Side",
  28513. image: {
  28514. source: "./media/characters/kodran/side.svg",
  28515. extra: 553 / 480,
  28516. bottom: 33 / 586
  28517. }
  28518. },
  28519. front: {
  28520. height: math.unit(132, "feet"),
  28521. weight: math.unit(500, "tonnes"),
  28522. name: "Front",
  28523. image: {
  28524. source: "./media/characters/kodran/front.svg",
  28525. extra: 667 / 643,
  28526. bottom: 42 / 709
  28527. }
  28528. },
  28529. flying: {
  28530. height: math.unit(350, "feet"),
  28531. weight: math.unit(500, "tonnes"),
  28532. name: "Flying",
  28533. image: {
  28534. source: "./media/characters/kodran/flying.svg"
  28535. }
  28536. },
  28537. foot: {
  28538. height: math.unit(33, "feet"),
  28539. name: "Foot",
  28540. image: {
  28541. source: "./media/characters/kodran/foot.svg"
  28542. }
  28543. },
  28544. footFront: {
  28545. height: math.unit(19, "feet"),
  28546. name: "Foot (Front)",
  28547. image: {
  28548. source: "./media/characters/kodran/foot-front.svg",
  28549. extra: 261 / 261,
  28550. bottom: 91 / 352
  28551. }
  28552. },
  28553. headFront: {
  28554. height: math.unit(53, "feet"),
  28555. name: "Head (Front)",
  28556. image: {
  28557. source: "./media/characters/kodran/head-front.svg"
  28558. }
  28559. },
  28560. headSide: {
  28561. height: math.unit(65, "feet"),
  28562. name: "Head (Side)",
  28563. image: {
  28564. source: "./media/characters/kodran/head-side.svg"
  28565. }
  28566. },
  28567. throat: {
  28568. height: math.unit(79, "feet"),
  28569. name: "Throat",
  28570. image: {
  28571. source: "./media/characters/kodran/throat.svg"
  28572. }
  28573. },
  28574. },
  28575. [
  28576. {
  28577. name: "Large",
  28578. height: math.unit(106, "feet"),
  28579. default: true
  28580. },
  28581. ]
  28582. ))
  28583. characterMakers.push(() => makeCharacter(
  28584. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28585. {
  28586. side: {
  28587. height: math.unit(11, "feet"),
  28588. weight: math.unit(150, "lb"),
  28589. name: "Side",
  28590. image: {
  28591. source: "./media/characters/pyxaron/side.svg",
  28592. extra: 305 / 195,
  28593. bottom: 17 / 322
  28594. }
  28595. },
  28596. },
  28597. [
  28598. {
  28599. name: "Normal",
  28600. height: math.unit(11, "feet"),
  28601. default: true
  28602. },
  28603. ]
  28604. ))
  28605. characterMakers.push(() => makeCharacter(
  28606. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28607. {
  28608. front: {
  28609. height: math.unit(6, "feet"),
  28610. weight: math.unit(150, "lb"),
  28611. name: "Front",
  28612. image: {
  28613. source: "./media/characters/meep/front.svg",
  28614. extra: 88 / 80,
  28615. bottom: 6 / 94
  28616. }
  28617. },
  28618. },
  28619. [
  28620. {
  28621. name: "Fun Sized",
  28622. height: math.unit(2, "inches"),
  28623. default: true
  28624. },
  28625. {
  28626. name: "Friend Sized",
  28627. height: math.unit(8, "inches")
  28628. },
  28629. ]
  28630. ))
  28631. characterMakers.push(() => makeCharacter(
  28632. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28633. {
  28634. front: {
  28635. height: math.unit(15, "feet"),
  28636. weight: math.unit(2500, "lb"),
  28637. name: "Front",
  28638. image: {
  28639. source: "./media/characters/holly-rabbit/front.svg",
  28640. extra: 1433 / 1233,
  28641. bottom: 125 / 1558
  28642. }
  28643. },
  28644. dick: {
  28645. height: math.unit(4.6, "feet"),
  28646. name: "Dick",
  28647. image: {
  28648. source: "./media/characters/holly-rabbit/dick.svg"
  28649. }
  28650. },
  28651. },
  28652. [
  28653. {
  28654. name: "Normal",
  28655. height: math.unit(15, "feet"),
  28656. default: true
  28657. },
  28658. {
  28659. name: "Macro",
  28660. height: math.unit(250, "feet")
  28661. },
  28662. {
  28663. name: "Macro+",
  28664. height: math.unit(2500, "feet")
  28665. },
  28666. ]
  28667. ))
  28668. characterMakers.push(() => makeCharacter(
  28669. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28670. {
  28671. front: {
  28672. height: math.unit(3.02, "meters"),
  28673. weight: math.unit(500, "kg"),
  28674. name: "Front",
  28675. image: {
  28676. source: "./media/characters/drena/front.svg",
  28677. extra: 282 / 243,
  28678. bottom: 8 / 290
  28679. }
  28680. },
  28681. side: {
  28682. height: math.unit(3.02, "meters"),
  28683. weight: math.unit(500, "kg"),
  28684. name: "Side",
  28685. image: {
  28686. source: "./media/characters/drena/side.svg",
  28687. extra: 280 / 245,
  28688. bottom: 10 / 290
  28689. }
  28690. },
  28691. back: {
  28692. height: math.unit(3.02, "meters"),
  28693. weight: math.unit(500, "kg"),
  28694. name: "Back",
  28695. image: {
  28696. source: "./media/characters/drena/back.svg",
  28697. extra: 278 / 243,
  28698. bottom: 2 / 280
  28699. }
  28700. },
  28701. foot: {
  28702. height: math.unit(0.75, "meters"),
  28703. name: "Foot",
  28704. image: {
  28705. source: "./media/characters/drena/foot.svg"
  28706. }
  28707. },
  28708. maw: {
  28709. height: math.unit(0.82, "meters"),
  28710. name: "Maw",
  28711. image: {
  28712. source: "./media/characters/drena/maw.svg"
  28713. }
  28714. },
  28715. rump: {
  28716. height: math.unit(0.93, "meters"),
  28717. name: "Rump",
  28718. image: {
  28719. source: "./media/characters/drena/rump.svg"
  28720. }
  28721. },
  28722. },
  28723. [
  28724. {
  28725. name: "Normal",
  28726. height: math.unit(3.02, "meters"),
  28727. default: true
  28728. },
  28729. ]
  28730. ))
  28731. characterMakers.push(() => makeCharacter(
  28732. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28733. {
  28734. front: {
  28735. height: math.unit(6 + 4 / 12, "feet"),
  28736. weight: math.unit(250, "lb"),
  28737. name: "Front",
  28738. image: {
  28739. source: "./media/characters/remmyzilla/front.svg",
  28740. extra: 4033 / 3588,
  28741. bottom: 123 / 4156
  28742. }
  28743. },
  28744. back: {
  28745. height: math.unit(6 + 4 / 12, "feet"),
  28746. weight: math.unit(250, "lb"),
  28747. name: "Back",
  28748. image: {
  28749. source: "./media/characters/remmyzilla/back.svg",
  28750. extra: 2687 / 2555,
  28751. bottom: 48 / 2735
  28752. }
  28753. },
  28754. paw: {
  28755. height: math.unit(1.73, "feet"),
  28756. name: "Paw",
  28757. image: {
  28758. source: "./media/characters/remmyzilla/paw.svg"
  28759. }
  28760. },
  28761. maw: {
  28762. height: math.unit(1.73, "feet"),
  28763. name: "Maw",
  28764. image: {
  28765. source: "./media/characters/remmyzilla/maw.svg"
  28766. }
  28767. },
  28768. },
  28769. [
  28770. {
  28771. name: "Normal",
  28772. height: math.unit(6 + 4 / 12, "feet")
  28773. },
  28774. {
  28775. name: "Minimacro",
  28776. height: math.unit(12 + 8 / 12, "feet")
  28777. },
  28778. {
  28779. name: "Normal",
  28780. height: math.unit(640, "feet"),
  28781. default: true
  28782. },
  28783. {
  28784. name: "Megamacro",
  28785. height: math.unit(6400, "feet")
  28786. },
  28787. {
  28788. name: "Gigamacro",
  28789. height: math.unit(64000, "miles")
  28790. },
  28791. ]
  28792. ))
  28793. characterMakers.push(() => makeCharacter(
  28794. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28795. {
  28796. front: {
  28797. height: math.unit(2.5, "meters"),
  28798. weight: math.unit(300, "lb"),
  28799. name: "Front",
  28800. image: {
  28801. source: "./media/characters/lawrence/front.svg",
  28802. extra: 357 / 335,
  28803. bottom: 30 / 387
  28804. }
  28805. },
  28806. back: {
  28807. height: math.unit(2.5, "meters"),
  28808. weight: math.unit(300, "lb"),
  28809. name: "Back",
  28810. image: {
  28811. source: "./media/characters/lawrence/back.svg",
  28812. extra: 357 / 338,
  28813. bottom: 16 / 373
  28814. }
  28815. },
  28816. head: {
  28817. height: math.unit(0.9, "meter"),
  28818. name: "Head",
  28819. image: {
  28820. source: "./media/characters/lawrence/head.svg"
  28821. }
  28822. },
  28823. maw: {
  28824. height: math.unit(0.7, "meter"),
  28825. name: "Maw",
  28826. image: {
  28827. source: "./media/characters/lawrence/maw.svg"
  28828. }
  28829. },
  28830. footBottom: {
  28831. height: math.unit(0.5, "meter"),
  28832. name: "Foot (Bottom)",
  28833. image: {
  28834. source: "./media/characters/lawrence/foot-bottom.svg"
  28835. }
  28836. },
  28837. footTop: {
  28838. height: math.unit(0.5, "meter"),
  28839. name: "Foot (Top)",
  28840. image: {
  28841. source: "./media/characters/lawrence/foot-top.svg"
  28842. }
  28843. },
  28844. },
  28845. [
  28846. {
  28847. name: "Normal",
  28848. height: math.unit(2.5, "meters"),
  28849. default: true
  28850. },
  28851. {
  28852. name: "Macro",
  28853. height: math.unit(95, "meters")
  28854. },
  28855. {
  28856. name: "Megamacro",
  28857. height: math.unit(150, "km")
  28858. },
  28859. ]
  28860. ))
  28861. characterMakers.push(() => makeCharacter(
  28862. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28863. {
  28864. front: {
  28865. height: math.unit(4.2, "meters"),
  28866. name: "Front",
  28867. image: {
  28868. source: "./media/characters/sydney/front.svg",
  28869. extra: 1323 / 1277,
  28870. bottom: 111 / 1434
  28871. }
  28872. },
  28873. },
  28874. [
  28875. {
  28876. name: "Normal",
  28877. height: math.unit(4.2, "meters"),
  28878. default: true
  28879. },
  28880. ]
  28881. ))
  28882. characterMakers.push(() => makeCharacter(
  28883. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28884. {
  28885. back: {
  28886. height: math.unit(201, "feet"),
  28887. name: "Back",
  28888. image: {
  28889. source: "./media/characters/jessica/back.svg",
  28890. extra: 273 / 259,
  28891. bottom: 7 / 280
  28892. }
  28893. },
  28894. },
  28895. [
  28896. {
  28897. name: "Normal",
  28898. height: math.unit(201, "feet"),
  28899. default: true
  28900. },
  28901. {
  28902. name: "Megamacro",
  28903. height: math.unit(8, "miles")
  28904. },
  28905. ]
  28906. ))
  28907. characterMakers.push(() => makeCharacter(
  28908. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28909. {
  28910. side: {
  28911. height: math.unit(320, "cm"),
  28912. name: "Side",
  28913. image: {
  28914. source: "./media/characters/victoria/side.svg",
  28915. extra: 778 / 346,
  28916. bottom: 56 / 834
  28917. }
  28918. },
  28919. maw: {
  28920. height: math.unit(5.9, "feet"),
  28921. name: "Maw",
  28922. image: {
  28923. source: "./media/characters/victoria/maw.svg"
  28924. }
  28925. },
  28926. },
  28927. [
  28928. {
  28929. name: "Normal",
  28930. height: math.unit(320, "cm"),
  28931. default: true
  28932. },
  28933. ]
  28934. ))
  28935. characterMakers.push(() => makeCharacter(
  28936. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28937. {
  28938. front: {
  28939. height: math.unit(5 + 6 / 12, "feet"),
  28940. name: "Front",
  28941. image: {
  28942. source: "./media/characters/cat/front.svg",
  28943. extra: 1449/1295,
  28944. bottom: 34/1483
  28945. }
  28946. },
  28947. back: {
  28948. height: math.unit(5 + 6 / 12, "feet"),
  28949. name: "Back",
  28950. image: {
  28951. source: "./media/characters/cat/back.svg",
  28952. extra: 1466/1301,
  28953. bottom: 19/1485
  28954. }
  28955. },
  28956. taur: {
  28957. height: math.unit(7, "feet"),
  28958. name: "Taur",
  28959. image: {
  28960. source: "./media/characters/cat/taur.svg",
  28961. extra: 1389/1233,
  28962. bottom: 83/1472
  28963. }
  28964. },
  28965. lucarioFront: {
  28966. height: math.unit(4, "feet"),
  28967. name: "Lucario (Front)",
  28968. image: {
  28969. source: "./media/characters/cat/lucario-front.svg",
  28970. extra: 1149/1019,
  28971. bottom: 84/1233
  28972. }
  28973. },
  28974. lucarioBack: {
  28975. height: math.unit(4, "feet"),
  28976. name: "Lucario (Back)",
  28977. image: {
  28978. source: "./media/characters/cat/lucario-back.svg",
  28979. extra: 1190/1059,
  28980. bottom: 33/1223
  28981. }
  28982. },
  28983. megaLucario: {
  28984. height: math.unit(4, "feet"),
  28985. name: "Mega Lucario",
  28986. image: {
  28987. source: "./media/characters/cat/mega-lucario.svg",
  28988. extra: 1515 / 1319,
  28989. bottom: 63 / 1578
  28990. }
  28991. },
  28992. nickit: {
  28993. height: math.unit(2, "feet"),
  28994. name: "Nickit",
  28995. image: {
  28996. source: "./media/characters/cat/nickit.svg",
  28997. extra: 1980 / 1585,
  28998. bottom: 102 / 2082
  28999. }
  29000. },
  29001. lopunnyFront: {
  29002. height: math.unit(5, "feet"),
  29003. name: "Lopunny (Front)",
  29004. image: {
  29005. source: "./media/characters/cat/lopunny-front.svg",
  29006. extra: 1782 / 1469,
  29007. bottom: 38 / 1820
  29008. }
  29009. },
  29010. lopunnyBack: {
  29011. height: math.unit(5, "feet"),
  29012. name: "Lopunny (Back)",
  29013. image: {
  29014. source: "./media/characters/cat/lopunny-back.svg",
  29015. extra: 1660 / 1490,
  29016. bottom: 25 / 1685
  29017. }
  29018. },
  29019. },
  29020. [
  29021. {
  29022. name: "Really small",
  29023. height: math.unit(1, "nm")
  29024. },
  29025. {
  29026. name: "Micro",
  29027. height: math.unit(5, "inches")
  29028. },
  29029. {
  29030. name: "Normal",
  29031. height: math.unit(5 + 6 / 12, "feet"),
  29032. default: true
  29033. },
  29034. {
  29035. name: "Macro",
  29036. height: math.unit(50, "feet")
  29037. },
  29038. {
  29039. name: "Macro+",
  29040. height: math.unit(150, "feet")
  29041. },
  29042. {
  29043. name: "Megamacro",
  29044. height: math.unit(100, "miles")
  29045. },
  29046. ]
  29047. ))
  29048. characterMakers.push(() => makeCharacter(
  29049. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29050. {
  29051. front: {
  29052. height: math.unit(63.4, "meters"),
  29053. weight: math.unit(3.28349e+6, "kilograms"),
  29054. name: "Front",
  29055. image: {
  29056. source: "./media/characters/kirina-violet/front.svg",
  29057. extra: 2812 / 2725,
  29058. bottom: 0 / 2812
  29059. }
  29060. },
  29061. back: {
  29062. height: math.unit(63.4, "meters"),
  29063. weight: math.unit(3.28349e+6, "kilograms"),
  29064. name: "Back",
  29065. image: {
  29066. source: "./media/characters/kirina-violet/back.svg",
  29067. extra: 2812 / 2725,
  29068. bottom: 0 / 2812
  29069. }
  29070. },
  29071. mouth: {
  29072. height: math.unit(4.35, "meters"),
  29073. name: "Mouth",
  29074. image: {
  29075. source: "./media/characters/kirina-violet/mouth.svg"
  29076. }
  29077. },
  29078. paw: {
  29079. height: math.unit(5.6, "meters"),
  29080. name: "Paw",
  29081. image: {
  29082. source: "./media/characters/kirina-violet/paw.svg"
  29083. }
  29084. },
  29085. tail: {
  29086. height: math.unit(18, "meters"),
  29087. name: "Tail",
  29088. image: {
  29089. source: "./media/characters/kirina-violet/tail.svg"
  29090. }
  29091. },
  29092. },
  29093. [
  29094. {
  29095. name: "Macro",
  29096. height: math.unit(63.4, "meters"),
  29097. default: true
  29098. },
  29099. ]
  29100. ))
  29101. characterMakers.push(() => makeCharacter(
  29102. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29103. {
  29104. front: {
  29105. height: math.unit(75, "feet"),
  29106. name: "Front",
  29107. image: {
  29108. source: "./media/characters/cat-gigachu/front.svg",
  29109. extra: 1239/1027,
  29110. bottom: 32/1271
  29111. }
  29112. },
  29113. back: {
  29114. height: math.unit(75, "feet"),
  29115. name: "Back",
  29116. image: {
  29117. source: "./media/characters/cat-gigachu/back.svg",
  29118. extra: 1229/1030,
  29119. bottom: 9/1238
  29120. }
  29121. },
  29122. },
  29123. [
  29124. {
  29125. name: "Dynamax",
  29126. height: math.unit(75, "feet"),
  29127. default: true
  29128. },
  29129. ]
  29130. ))
  29131. characterMakers.push(() => makeCharacter(
  29132. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29133. {
  29134. front: {
  29135. height: math.unit(6, "feet"),
  29136. weight: math.unit(150, "lb"),
  29137. name: "Front",
  29138. image: {
  29139. source: "./media/characters/sfaiyan/front.svg",
  29140. extra: 999 / 978,
  29141. bottom: 5 / 1004
  29142. }
  29143. },
  29144. },
  29145. [
  29146. {
  29147. name: "Normal",
  29148. height: math.unit(1.82, "meters")
  29149. },
  29150. {
  29151. name: "Giant",
  29152. height: math.unit(2.27, "km"),
  29153. default: true
  29154. },
  29155. ]
  29156. ))
  29157. characterMakers.push(() => makeCharacter(
  29158. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29159. {
  29160. front: {
  29161. height: math.unit(179, "cm"),
  29162. weight: math.unit(100, "kg"),
  29163. name: "Front",
  29164. image: {
  29165. source: "./media/characters/raunehkeli/front.svg",
  29166. extra: 1934 / 1926,
  29167. bottom: 0 / 1934
  29168. }
  29169. },
  29170. },
  29171. [
  29172. {
  29173. name: "Normal",
  29174. height: math.unit(179, "cm")
  29175. },
  29176. {
  29177. name: "Maximum",
  29178. height: math.unit(575, "meters"),
  29179. default: true
  29180. },
  29181. ]
  29182. ))
  29183. characterMakers.push(() => makeCharacter(
  29184. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29185. {
  29186. front: {
  29187. height: math.unit(6, "feet"),
  29188. weight: math.unit(150, "lb"),
  29189. name: "Front",
  29190. image: {
  29191. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29192. extra: 2625 / 2518,
  29193. bottom: 60 / 2685
  29194. }
  29195. },
  29196. },
  29197. [
  29198. {
  29199. name: "Normal",
  29200. height: math.unit(6 + 2 / 12, "feet")
  29201. },
  29202. {
  29203. name: "Macro",
  29204. height: math.unit(1180, "feet"),
  29205. default: true
  29206. },
  29207. ]
  29208. ))
  29209. characterMakers.push(() => makeCharacter(
  29210. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29211. {
  29212. front: {
  29213. height: math.unit(5 + 6 / 12, "feet"),
  29214. weight: math.unit(108, "lb"),
  29215. name: "Front",
  29216. image: {
  29217. source: "./media/characters/lilith-zott/front.svg",
  29218. extra: 2510 / 2238,
  29219. bottom: 100 / 2610
  29220. }
  29221. },
  29222. frontDressed: {
  29223. height: math.unit(5 + 6 / 12, "feet"),
  29224. weight: math.unit(108, "lb"),
  29225. name: "Front (Dressed)",
  29226. image: {
  29227. source: "./media/characters/lilith-zott/front-dressed.svg",
  29228. extra: 2510 / 2238,
  29229. bottom: 100 / 2610
  29230. }
  29231. },
  29232. },
  29233. [
  29234. {
  29235. name: "Normal",
  29236. height: math.unit(5 + 6 / 12, "feet")
  29237. },
  29238. {
  29239. name: "Macro",
  29240. height: math.unit(1030, "feet"),
  29241. default: true
  29242. },
  29243. ]
  29244. ))
  29245. characterMakers.push(() => makeCharacter(
  29246. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29247. {
  29248. front: {
  29249. height: math.unit(6, "feet"),
  29250. weight: math.unit(150, "lb"),
  29251. name: "Front",
  29252. image: {
  29253. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29254. extra: 2567 / 2435,
  29255. bottom: 39 / 2606
  29256. }
  29257. },
  29258. frontSuper: {
  29259. height: math.unit(6, "feet"),
  29260. name: "Front (Super)",
  29261. image: {
  29262. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29263. extra: 2567 / 2435,
  29264. bottom: 39 / 2606
  29265. }
  29266. },
  29267. },
  29268. [
  29269. {
  29270. name: "Normal",
  29271. height: math.unit(5 + 10 / 12, "feet")
  29272. },
  29273. {
  29274. name: "Macro",
  29275. height: math.unit(1100, "feet"),
  29276. default: true
  29277. },
  29278. ]
  29279. ))
  29280. characterMakers.push(() => makeCharacter(
  29281. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29282. {
  29283. front: {
  29284. height: math.unit(100, "miles"),
  29285. name: "Front",
  29286. image: {
  29287. source: "./media/characters/sona/front.svg",
  29288. extra: 2433 / 2201,
  29289. bottom: 53 / 2486
  29290. }
  29291. },
  29292. foot: {
  29293. height: math.unit(16.1, "miles"),
  29294. name: "Foot",
  29295. image: {
  29296. source: "./media/characters/sona/foot.svg"
  29297. }
  29298. },
  29299. },
  29300. [
  29301. {
  29302. name: "Macro",
  29303. height: math.unit(100, "miles"),
  29304. default: true
  29305. },
  29306. ]
  29307. ))
  29308. characterMakers.push(() => makeCharacter(
  29309. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29310. {
  29311. front: {
  29312. height: math.unit(6, "feet"),
  29313. weight: math.unit(150, "lb"),
  29314. name: "Front",
  29315. image: {
  29316. source: "./media/characters/bailey/front.svg",
  29317. extra: 1778 / 1724,
  29318. bottom: 30 / 1808
  29319. }
  29320. },
  29321. },
  29322. [
  29323. {
  29324. name: "Micro",
  29325. height: math.unit(4, "inches")
  29326. },
  29327. {
  29328. name: "Normal",
  29329. height: math.unit(5 + 5 / 12, "feet"),
  29330. default: true
  29331. },
  29332. {
  29333. name: "Macro",
  29334. height: math.unit(250, "feet")
  29335. },
  29336. {
  29337. name: "Megamacro",
  29338. height: math.unit(100, "miles")
  29339. },
  29340. ]
  29341. ))
  29342. characterMakers.push(() => makeCharacter(
  29343. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29344. {
  29345. front: {
  29346. height: math.unit(5 + 2 / 12, "feet"),
  29347. weight: math.unit(120, "lb"),
  29348. name: "Front",
  29349. image: {
  29350. source: "./media/characters/snaps/front.svg",
  29351. extra: 2370 / 2177,
  29352. bottom: 48 / 2418
  29353. }
  29354. },
  29355. back: {
  29356. height: math.unit(5 + 2 / 12, "feet"),
  29357. weight: math.unit(120, "lb"),
  29358. name: "Back",
  29359. image: {
  29360. source: "./media/characters/snaps/back.svg",
  29361. extra: 2408 / 2258,
  29362. bottom: 15 / 2423
  29363. }
  29364. },
  29365. },
  29366. [
  29367. {
  29368. name: "Micro",
  29369. height: math.unit(9, "inches")
  29370. },
  29371. {
  29372. name: "Normal",
  29373. height: math.unit(5 + 2 / 12, "feet"),
  29374. default: true
  29375. },
  29376. {
  29377. name: "Mini Macro",
  29378. height: math.unit(10, "feet")
  29379. },
  29380. ]
  29381. ))
  29382. characterMakers.push(() => makeCharacter(
  29383. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29384. {
  29385. front: {
  29386. height: math.unit(1.8, "meters"),
  29387. weight: math.unit(85, "kg"),
  29388. name: "Front",
  29389. image: {
  29390. source: "./media/characters/azteck/front.svg",
  29391. extra: 2815 / 2625,
  29392. bottom: 89 / 2904
  29393. }
  29394. },
  29395. back: {
  29396. height: math.unit(1.8, "meters"),
  29397. weight: math.unit(85, "kg"),
  29398. name: "Back",
  29399. image: {
  29400. source: "./media/characters/azteck/back.svg",
  29401. extra: 2856 / 2648,
  29402. bottom: 85 / 2941
  29403. }
  29404. },
  29405. frontDressed: {
  29406. height: math.unit(1.8, "meters"),
  29407. weight: math.unit(85, "kg"),
  29408. name: "Front (Dressed)",
  29409. image: {
  29410. source: "./media/characters/azteck/front-dressed.svg",
  29411. extra: 2147 / 2003,
  29412. bottom: 68 / 2215
  29413. }
  29414. },
  29415. head: {
  29416. height: math.unit(0.47, "meters"),
  29417. weight: math.unit(85, "kg"),
  29418. name: "Head",
  29419. image: {
  29420. source: "./media/characters/azteck/head.svg"
  29421. }
  29422. },
  29423. },
  29424. [
  29425. {
  29426. name: "Bite sized",
  29427. height: math.unit(16, "cm")
  29428. },
  29429. {
  29430. name: "Normal",
  29431. height: math.unit(1.8, "meters"),
  29432. default: true
  29433. },
  29434. ]
  29435. ))
  29436. characterMakers.push(() => makeCharacter(
  29437. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29438. {
  29439. front: {
  29440. height: math.unit(6, "feet"),
  29441. weight: math.unit(150, "lb"),
  29442. name: "Front",
  29443. image: {
  29444. source: "./media/characters/pidge/front.svg",
  29445. extra: 620 / 588,
  29446. bottom: 9 / 629
  29447. }
  29448. },
  29449. back: {
  29450. height: math.unit(6, "feet"),
  29451. weight: math.unit(150, "lb"),
  29452. name: "Back",
  29453. image: {
  29454. source: "./media/characters/pidge/back.svg",
  29455. extra: 620 / 588,
  29456. bottom: 9 / 629
  29457. }
  29458. },
  29459. },
  29460. [
  29461. {
  29462. name: "Macro",
  29463. height: math.unit(1, "mile"),
  29464. default: true
  29465. },
  29466. ]
  29467. ))
  29468. characterMakers.push(() => makeCharacter(
  29469. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29470. {
  29471. front: {
  29472. height: math.unit(6, "feet"),
  29473. weight: math.unit(150, "lb"),
  29474. name: "Front",
  29475. image: {
  29476. source: "./media/characters/en/front.svg",
  29477. extra: 1697 / 1563,
  29478. bottom: 103 / 1800
  29479. }
  29480. },
  29481. back: {
  29482. height: math.unit(6, "feet"),
  29483. weight: math.unit(150, "lb"),
  29484. name: "Back",
  29485. image: {
  29486. source: "./media/characters/en/back.svg",
  29487. extra: 1700 / 1570,
  29488. bottom: 51 / 1751
  29489. }
  29490. },
  29491. frontDressed: {
  29492. height: math.unit(6, "feet"),
  29493. weight: math.unit(150, "lb"),
  29494. name: "Front (Dressed)",
  29495. image: {
  29496. source: "./media/characters/en/front-dressed.svg",
  29497. extra: 1697 / 1563,
  29498. bottom: 103 / 1800
  29499. }
  29500. },
  29501. backDressed: {
  29502. height: math.unit(6, "feet"),
  29503. weight: math.unit(150, "lb"),
  29504. name: "Back (Dressed)",
  29505. image: {
  29506. source: "./media/characters/en/back-dressed.svg",
  29507. extra: 1700 / 1570,
  29508. bottom: 51 / 1751
  29509. }
  29510. },
  29511. },
  29512. [
  29513. {
  29514. name: "Macro",
  29515. height: math.unit(210, "feet"),
  29516. default: true
  29517. },
  29518. ]
  29519. ))
  29520. characterMakers.push(() => makeCharacter(
  29521. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29522. {
  29523. front: {
  29524. height: math.unit(6, "feet"),
  29525. weight: math.unit(150, "lb"),
  29526. name: "Front",
  29527. image: {
  29528. source: "./media/characters/haze-orris/front.svg",
  29529. extra: 3975 / 3525,
  29530. bottom: 137 / 4112
  29531. }
  29532. },
  29533. },
  29534. [
  29535. {
  29536. name: "Micro",
  29537. height: math.unit(150, "mm"),
  29538. default: true
  29539. },
  29540. ]
  29541. ))
  29542. characterMakers.push(() => makeCharacter(
  29543. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29544. {
  29545. front: {
  29546. height: math.unit(6, "feet"),
  29547. weight: math.unit(150, "lb"),
  29548. name: "Front",
  29549. image: {
  29550. source: "./media/characters/casselene-yaro/front.svg",
  29551. extra: 4721 / 4541,
  29552. bottom: 82 / 4803
  29553. }
  29554. },
  29555. back: {
  29556. height: math.unit(6, "feet"),
  29557. weight: math.unit(150, "lb"),
  29558. name: "Back",
  29559. image: {
  29560. source: "./media/characters/casselene-yaro/back.svg",
  29561. extra: 4569 / 4377,
  29562. bottom: 69 / 4638
  29563. }
  29564. },
  29565. frontDressed: {
  29566. height: math.unit(6, "feet"),
  29567. weight: math.unit(150, "lb"),
  29568. name: "Front-dressed",
  29569. image: {
  29570. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29571. extra: 4721 / 4541,
  29572. bottom: 82 / 4803
  29573. }
  29574. },
  29575. },
  29576. [
  29577. {
  29578. name: "Macro",
  29579. height: math.unit(190, "feet"),
  29580. default: true
  29581. },
  29582. ]
  29583. ))
  29584. characterMakers.push(() => makeCharacter(
  29585. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29586. {
  29587. front: {
  29588. height: math.unit(6, "feet"),
  29589. weight: math.unit(150, "lb"),
  29590. name: "Front",
  29591. image: {
  29592. source: "./media/characters/myra-rue-delore/front.svg",
  29593. extra: 1340 / 1308,
  29594. bottom: 67 / 1407
  29595. }
  29596. },
  29597. back: {
  29598. height: math.unit(6, "feet"),
  29599. weight: math.unit(150, "lb"),
  29600. name: "Back",
  29601. image: {
  29602. source: "./media/characters/myra-rue-delore/back.svg",
  29603. extra: 1341 / 1310,
  29604. bottom: 40 / 1381
  29605. }
  29606. },
  29607. frontDressed: {
  29608. height: math.unit(6, "feet"),
  29609. weight: math.unit(150, "lb"),
  29610. name: "Front (Dressed)",
  29611. image: {
  29612. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29613. extra: 1340 / 1308,
  29614. bottom: 67 / 1407
  29615. }
  29616. },
  29617. },
  29618. [
  29619. {
  29620. name: "Macro",
  29621. height: math.unit(150, "feet"),
  29622. default: true
  29623. },
  29624. ]
  29625. ))
  29626. characterMakers.push(() => makeCharacter(
  29627. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29628. {
  29629. front: {
  29630. height: math.unit(10, "feet"),
  29631. weight: math.unit(15015, "lb"),
  29632. name: "Front",
  29633. image: {
  29634. source: "./media/characters/fem!plat/front.svg",
  29635. extra: 2799 / 2604,
  29636. bottom: 149 / 2948
  29637. }
  29638. },
  29639. },
  29640. [
  29641. {
  29642. name: "Normal",
  29643. height: math.unit(10, "feet"),
  29644. default: true
  29645. },
  29646. {
  29647. name: "Macro",
  29648. height: math.unit(100, "feet")
  29649. },
  29650. {
  29651. name: "Megamacro",
  29652. height: math.unit(1000, "feet")
  29653. },
  29654. ]
  29655. ))
  29656. characterMakers.push(() => makeCharacter(
  29657. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29658. {
  29659. front: {
  29660. height: math.unit(15 + 5 / 12, "feet"),
  29661. weight: math.unit(4600, "lb"),
  29662. name: "Front",
  29663. image: {
  29664. source: "./media/characters/neapolitan-ananassa/front.svg",
  29665. extra: 2903 / 2736,
  29666. bottom: 0 / 2903
  29667. }
  29668. },
  29669. side: {
  29670. height: math.unit(15 + 5 / 12, "feet"),
  29671. weight: math.unit(4600, "lb"),
  29672. name: "Side",
  29673. image: {
  29674. source: "./media/characters/neapolitan-ananassa/side.svg",
  29675. extra: 2925 / 2719,
  29676. bottom: 0 / 2925
  29677. }
  29678. },
  29679. back: {
  29680. height: math.unit(15 + 5 / 12, "feet"),
  29681. weight: math.unit(4600, "lb"),
  29682. name: "Back",
  29683. image: {
  29684. source: "./media/characters/neapolitan-ananassa/back.svg",
  29685. extra: 2903 / 2736,
  29686. bottom: 0 / 2903
  29687. }
  29688. },
  29689. },
  29690. [
  29691. {
  29692. name: "Normal",
  29693. height: math.unit(15 + 5 / 12, "feet"),
  29694. default: true
  29695. },
  29696. {
  29697. name: "Post-Millenium",
  29698. height: math.unit(35 + 5 / 12, "feet")
  29699. },
  29700. {
  29701. name: "Post-Era",
  29702. height: math.unit(450 + 5 / 12, "feet")
  29703. },
  29704. ]
  29705. ))
  29706. characterMakers.push(() => makeCharacter(
  29707. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29708. {
  29709. front: {
  29710. height: math.unit(300, "meters"),
  29711. weight: math.unit(125000, "tonnes"),
  29712. name: "Front",
  29713. image: {
  29714. source: "./media/characters/pazuzu/front.svg",
  29715. extra: 877 / 794,
  29716. bottom: 47 / 924
  29717. }
  29718. },
  29719. },
  29720. [
  29721. {
  29722. name: "Macro",
  29723. height: math.unit(300, "meters"),
  29724. default: true
  29725. },
  29726. ]
  29727. ))
  29728. characterMakers.push(() => makeCharacter(
  29729. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29730. {
  29731. side: {
  29732. height: math.unit(10 + 7 / 12, "feet"),
  29733. weight: math.unit(2.5, "tons"),
  29734. name: "Side",
  29735. image: {
  29736. source: "./media/characters/aasha/side.svg",
  29737. extra: 1345 / 1245,
  29738. bottom: 111 / 1456
  29739. }
  29740. },
  29741. back: {
  29742. height: math.unit(10 + 7 / 12, "feet"),
  29743. weight: math.unit(2.5, "tons"),
  29744. name: "Back",
  29745. image: {
  29746. source: "./media/characters/aasha/back.svg",
  29747. extra: 1133 / 1057,
  29748. bottom: 257 / 1390
  29749. }
  29750. },
  29751. },
  29752. [
  29753. {
  29754. name: "Normal",
  29755. height: math.unit(10 + 7 / 12, "feet"),
  29756. default: true
  29757. },
  29758. ]
  29759. ))
  29760. characterMakers.push(() => makeCharacter(
  29761. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29762. {
  29763. front: {
  29764. height: math.unit(6 + 3 / 12, "feet"),
  29765. name: "Front",
  29766. image: {
  29767. source: "./media/characters/nevan/front.svg",
  29768. extra: 704 / 704,
  29769. bottom: 28 / 732
  29770. }
  29771. },
  29772. back: {
  29773. height: math.unit(6 + 3 / 12, "feet"),
  29774. name: "Back",
  29775. image: {
  29776. source: "./media/characters/nevan/back.svg",
  29777. extra: 714 / 714,
  29778. bottom: 21 / 735
  29779. }
  29780. },
  29781. frontFlaccid: {
  29782. height: math.unit(6 + 3 / 12, "feet"),
  29783. name: "Front (Flaccid)",
  29784. image: {
  29785. source: "./media/characters/nevan/front-flaccid.svg",
  29786. extra: 704 / 704,
  29787. bottom: 28 / 732
  29788. }
  29789. },
  29790. frontErect: {
  29791. height: math.unit(6 + 3 / 12, "feet"),
  29792. name: "Front (Erect)",
  29793. image: {
  29794. source: "./media/characters/nevan/front-erect.svg",
  29795. extra: 704 / 704,
  29796. bottom: 28 / 732
  29797. }
  29798. },
  29799. backFlaccid: {
  29800. height: math.unit(6 + 3 / 12, "feet"),
  29801. name: "Back (Flaccid)",
  29802. image: {
  29803. source: "./media/characters/nevan/back-flaccid.svg",
  29804. extra: 714 / 714,
  29805. bottom: 21 / 735
  29806. }
  29807. },
  29808. },
  29809. [
  29810. {
  29811. name: "Normal",
  29812. height: math.unit(6 + 3 / 12, "feet"),
  29813. default: true
  29814. },
  29815. ]
  29816. ))
  29817. characterMakers.push(() => makeCharacter(
  29818. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29819. {
  29820. front: {
  29821. height: math.unit(4, "feet"),
  29822. name: "Front",
  29823. image: {
  29824. source: "./media/characters/arhan/front.svg",
  29825. extra: 3368 / 3133,
  29826. bottom: 0 / 3368
  29827. }
  29828. },
  29829. side: {
  29830. height: math.unit(4, "feet"),
  29831. name: "Side",
  29832. image: {
  29833. source: "./media/characters/arhan/side.svg",
  29834. extra: 3347 / 3105,
  29835. bottom: 0 / 3347
  29836. }
  29837. },
  29838. tongue: {
  29839. height: math.unit(1.42, "feet"),
  29840. name: "Tongue",
  29841. image: {
  29842. source: "./media/characters/arhan/tongue.svg"
  29843. }
  29844. },
  29845. head: {
  29846. height: math.unit(0.85, "feet"),
  29847. name: "Head",
  29848. image: {
  29849. source: "./media/characters/arhan/head.svg"
  29850. }
  29851. },
  29852. },
  29853. [
  29854. {
  29855. name: "Normal",
  29856. height: math.unit(4, "feet"),
  29857. default: true
  29858. },
  29859. ]
  29860. ))
  29861. characterMakers.push(() => makeCharacter(
  29862. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29863. {
  29864. front: {
  29865. height: math.unit(5 + 7.5 / 12, "feet"),
  29866. weight: math.unit(120, "lb"),
  29867. name: "Front",
  29868. image: {
  29869. source: "./media/characters/digi-duncan/front.svg",
  29870. extra: 330 / 326,
  29871. bottom: 16 / 346
  29872. }
  29873. },
  29874. side: {
  29875. height: math.unit(5 + 7.5 / 12, "feet"),
  29876. weight: math.unit(120, "lb"),
  29877. name: "Side",
  29878. image: {
  29879. source: "./media/characters/digi-duncan/side.svg",
  29880. extra: 341 / 337,
  29881. bottom: 1 / 342
  29882. }
  29883. },
  29884. back: {
  29885. height: math.unit(5 + 7.5 / 12, "feet"),
  29886. weight: math.unit(120, "lb"),
  29887. name: "Back",
  29888. image: {
  29889. source: "./media/characters/digi-duncan/back.svg",
  29890. extra: 330 / 326,
  29891. bottom: 12 / 342
  29892. }
  29893. },
  29894. },
  29895. [
  29896. {
  29897. name: "Speck",
  29898. height: math.unit(0.25, "mm")
  29899. },
  29900. {
  29901. name: "Micro",
  29902. height: math.unit(5, "mm")
  29903. },
  29904. {
  29905. name: "Tiny",
  29906. height: math.unit(0.5, "inches"),
  29907. default: true
  29908. },
  29909. {
  29910. name: "Human",
  29911. height: math.unit(5 + 7.5 / 12, "feet")
  29912. },
  29913. {
  29914. name: "Minigiant",
  29915. height: math.unit(8 + 5.25, "feet")
  29916. },
  29917. {
  29918. name: "Giant",
  29919. height: math.unit(2000, "feet")
  29920. },
  29921. {
  29922. name: "Mega",
  29923. height: math.unit(371.1, "miles")
  29924. },
  29925. ]
  29926. ))
  29927. characterMakers.push(() => makeCharacter(
  29928. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29929. {
  29930. front: {
  29931. height: math.unit(2, "meters"),
  29932. weight: math.unit(350, "kg"),
  29933. name: "Front",
  29934. image: {
  29935. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29936. extra: 898 / 838,
  29937. bottom: 9 / 907
  29938. }
  29939. },
  29940. },
  29941. [
  29942. {
  29943. name: "Micro",
  29944. height: math.unit(8, "meters")
  29945. },
  29946. {
  29947. name: "Normal",
  29948. height: math.unit(50, "meters"),
  29949. default: true
  29950. },
  29951. {
  29952. name: "Macro",
  29953. height: math.unit(500, "meters")
  29954. },
  29955. ]
  29956. ))
  29957. characterMakers.push(() => makeCharacter(
  29958. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29959. {
  29960. front: {
  29961. height: math.unit(6 + 6 / 12, "feet"),
  29962. name: "Front",
  29963. image: {
  29964. source: "./media/characters/khardesh/front.svg",
  29965. extra: 888 / 797,
  29966. bottom: 25 / 913
  29967. }
  29968. },
  29969. },
  29970. [
  29971. {
  29972. name: "Normal",
  29973. height: math.unit(6 + 6 / 12, "feet"),
  29974. default: true
  29975. },
  29976. {
  29977. name: "Normal+",
  29978. height: math.unit(4, "meters")
  29979. },
  29980. {
  29981. name: "Macro",
  29982. height: math.unit(50, "meters")
  29983. },
  29984. {
  29985. name: "Macro+",
  29986. height: math.unit(100, "meters")
  29987. },
  29988. {
  29989. name: "Megamacro",
  29990. height: math.unit(20, "km")
  29991. },
  29992. ]
  29993. ))
  29994. characterMakers.push(() => makeCharacter(
  29995. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29996. {
  29997. front: {
  29998. height: math.unit(6, "feet"),
  29999. weight: math.unit(150, "lb"),
  30000. name: "Front",
  30001. image: {
  30002. source: "./media/characters/kosho/front.svg",
  30003. extra: 1847 / 1847,
  30004. bottom: 86 / 1933
  30005. }
  30006. },
  30007. },
  30008. [
  30009. {
  30010. name: "Second-stage micro",
  30011. height: math.unit(0.5, "inches")
  30012. },
  30013. {
  30014. name: "First-stage micro",
  30015. height: math.unit(6, "inches")
  30016. },
  30017. {
  30018. name: "Normal",
  30019. height: math.unit(6, "feet"),
  30020. default: true
  30021. },
  30022. {
  30023. name: "First-stage macro",
  30024. height: math.unit(72, "feet")
  30025. },
  30026. {
  30027. name: "Second-stage macro",
  30028. height: math.unit(864, "feet")
  30029. },
  30030. ]
  30031. ))
  30032. characterMakers.push(() => makeCharacter(
  30033. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30034. {
  30035. normal: {
  30036. height: math.unit(4 + 6 / 12, "feet"),
  30037. name: "Normal",
  30038. image: {
  30039. source: "./media/characters/hydra/normal.svg",
  30040. extra: 2833 / 2634,
  30041. bottom: 68 / 2901
  30042. }
  30043. },
  30044. smol: {
  30045. height: math.unit(0.705, "inches"),
  30046. name: "Smol",
  30047. image: {
  30048. source: "./media/characters/hydra/smol.svg",
  30049. extra: 2715 / 2540,
  30050. bottom: 0 / 2715
  30051. }
  30052. },
  30053. },
  30054. [
  30055. {
  30056. name: "Normal",
  30057. height: math.unit(4 + 6 / 12, "feet"),
  30058. default: true
  30059. }
  30060. ]
  30061. ))
  30062. characterMakers.push(() => makeCharacter(
  30063. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30064. {
  30065. front: {
  30066. height: math.unit(0.6, "cm"),
  30067. name: "Front",
  30068. image: {
  30069. source: "./media/characters/daz/front.svg",
  30070. extra: 1682 / 1164,
  30071. bottom: 42 / 1724
  30072. }
  30073. },
  30074. },
  30075. [
  30076. {
  30077. name: "Normal",
  30078. height: math.unit(0.6, "cm"),
  30079. default: true
  30080. },
  30081. ]
  30082. ))
  30083. characterMakers.push(() => makeCharacter(
  30084. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30085. {
  30086. front: {
  30087. height: math.unit(6, "feet"),
  30088. weight: math.unit(235, "lb"),
  30089. name: "Front",
  30090. image: {
  30091. source: "./media/characters/theo-pangolin/front.svg",
  30092. extra: 1996 / 1969,
  30093. bottom: 115 / 2111
  30094. }
  30095. },
  30096. back: {
  30097. height: math.unit(6, "feet"),
  30098. weight: math.unit(235, "lb"),
  30099. name: "Back",
  30100. image: {
  30101. source: "./media/characters/theo-pangolin/back.svg",
  30102. extra: 1979 / 1979,
  30103. bottom: 40 / 2019
  30104. }
  30105. },
  30106. feral: {
  30107. height: math.unit(2, "feet"),
  30108. weight: math.unit(30, "lb"),
  30109. name: "Feral",
  30110. image: {
  30111. source: "./media/characters/theo-pangolin/feral.svg",
  30112. extra: 803 / 791,
  30113. bottom: 181 / 984
  30114. }
  30115. },
  30116. footFive: {
  30117. height: math.unit(1.43, "feet"),
  30118. name: "Foot (Five Toes)",
  30119. image: {
  30120. source: "./media/characters/theo-pangolin/foot-five.svg"
  30121. }
  30122. },
  30123. footFour: {
  30124. height: math.unit(1.43, "feet"),
  30125. name: "Foot (Four Toes)",
  30126. image: {
  30127. source: "./media/characters/theo-pangolin/foot-four.svg"
  30128. }
  30129. },
  30130. handFour: {
  30131. height: math.unit(0.81, "feet"),
  30132. name: "Hand (Four Fingers)",
  30133. image: {
  30134. source: "./media/characters/theo-pangolin/hand-four.svg"
  30135. }
  30136. },
  30137. handThree: {
  30138. height: math.unit(0.81, "feet"),
  30139. name: "Hand (Three Fingers)",
  30140. image: {
  30141. source: "./media/characters/theo-pangolin/hand-three.svg"
  30142. }
  30143. },
  30144. headFront: {
  30145. height: math.unit(1.37, "feet"),
  30146. name: "Head (Front)",
  30147. image: {
  30148. source: "./media/characters/theo-pangolin/head-front.svg"
  30149. }
  30150. },
  30151. headSide: {
  30152. height: math.unit(1.43, "feet"),
  30153. name: "Head (Side)",
  30154. image: {
  30155. source: "./media/characters/theo-pangolin/head-side.svg"
  30156. }
  30157. },
  30158. tongue: {
  30159. height: math.unit(2.29, "feet"),
  30160. name: "Tongue",
  30161. image: {
  30162. source: "./media/characters/theo-pangolin/tongue.svg"
  30163. }
  30164. },
  30165. },
  30166. [
  30167. {
  30168. name: "Normal",
  30169. height: math.unit(6, "feet")
  30170. },
  30171. {
  30172. name: "Macro",
  30173. height: math.unit(400, "feet"),
  30174. default: true
  30175. },
  30176. ]
  30177. ))
  30178. characterMakers.push(() => makeCharacter(
  30179. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30180. {
  30181. front: {
  30182. height: math.unit(6, "inches"),
  30183. weight: math.unit(0.036, "kg"),
  30184. name: "Front",
  30185. image: {
  30186. source: "./media/characters/renée/front.svg",
  30187. extra: 900 / 886,
  30188. bottom: 8 / 908
  30189. }
  30190. },
  30191. },
  30192. [
  30193. {
  30194. name: "Nano",
  30195. height: math.unit(1, "nm")
  30196. },
  30197. {
  30198. name: "Micro",
  30199. height: math.unit(1, "mm")
  30200. },
  30201. {
  30202. name: "Normal",
  30203. height: math.unit(6, "inches")
  30204. },
  30205. {
  30206. name: "Macro",
  30207. height: math.unit(2000, "feet"),
  30208. default: true
  30209. },
  30210. {
  30211. name: "Megamacro",
  30212. height: math.unit(2, "km")
  30213. },
  30214. {
  30215. name: "Gigamacro",
  30216. height: math.unit(2000, "km")
  30217. },
  30218. {
  30219. name: "Teramacro",
  30220. height: math.unit(250000, "km")
  30221. },
  30222. ]
  30223. ))
  30224. characterMakers.push(() => makeCharacter(
  30225. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30226. {
  30227. front: {
  30228. height: math.unit(4, "meters"),
  30229. weight: math.unit(150, "kg"),
  30230. name: "Front",
  30231. image: {
  30232. source: "./media/characters/caledvwlch/front.svg",
  30233. extra: 1760 / 1551,
  30234. bottom: 28 / 1788
  30235. }
  30236. },
  30237. side: {
  30238. height: math.unit(4, "meters"),
  30239. weight: math.unit(150, "kg"),
  30240. name: "Side",
  30241. image: {
  30242. source: "./media/characters/caledvwlch/side.svg",
  30243. extra: 1605 / 1536,
  30244. bottom: 31 / 1636
  30245. }
  30246. },
  30247. back: {
  30248. height: math.unit(4, "meters"),
  30249. weight: math.unit(150, "kg"),
  30250. name: "Back",
  30251. image: {
  30252. source: "./media/characters/caledvwlch/back.svg",
  30253. extra: 1635 / 1565,
  30254. bottom: 27 / 1662
  30255. }
  30256. },
  30257. },
  30258. [
  30259. {
  30260. name: "\"Incognito\"",
  30261. height: math.unit(4, "meters")
  30262. },
  30263. {
  30264. name: "Small rampage",
  30265. height: math.unit(600, "meters")
  30266. },
  30267. {
  30268. name: "Mega",
  30269. height: math.unit(30, "km")
  30270. },
  30271. {
  30272. name: "Home-size",
  30273. height: math.unit(50, "km"),
  30274. default: true
  30275. },
  30276. {
  30277. name: "Giga",
  30278. height: math.unit(300, "km")
  30279. },
  30280. {
  30281. name: "Lounging",
  30282. height: math.unit(11000, "km")
  30283. },
  30284. {
  30285. name: "Planet snacking",
  30286. height: math.unit(2000000, "km")
  30287. },
  30288. ]
  30289. ))
  30290. characterMakers.push(() => makeCharacter(
  30291. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30292. {
  30293. front: {
  30294. height: math.unit(6, "feet"),
  30295. weight: math.unit(215, "lb"),
  30296. name: "Front",
  30297. image: {
  30298. source: "./media/characters/sapphire-svell/front.svg",
  30299. extra: 495 / 455,
  30300. bottom: 20 / 515
  30301. }
  30302. },
  30303. back: {
  30304. height: math.unit(6, "feet"),
  30305. weight: math.unit(216, "lb"),
  30306. name: "Back",
  30307. image: {
  30308. source: "./media/characters/sapphire-svell/back.svg",
  30309. extra: 497 / 477,
  30310. bottom: 7 / 504
  30311. }
  30312. },
  30313. maw: {
  30314. height: math.unit(1.57, "feet"),
  30315. name: "Maw",
  30316. image: {
  30317. source: "./media/characters/sapphire-svell/maw.svg"
  30318. }
  30319. },
  30320. foot: {
  30321. height: math.unit(1.07, "feet"),
  30322. name: "Foot",
  30323. image: {
  30324. source: "./media/characters/sapphire-svell/foot.svg"
  30325. }
  30326. },
  30327. toering: {
  30328. height: math.unit(1.7, "inch"),
  30329. name: "Toering",
  30330. image: {
  30331. source: "./media/characters/sapphire-svell/toering.svg"
  30332. }
  30333. },
  30334. },
  30335. [
  30336. {
  30337. name: "Normal",
  30338. height: math.unit(300, "feet"),
  30339. default: true
  30340. },
  30341. {
  30342. name: "Augmented",
  30343. height: math.unit(1250, "feet")
  30344. },
  30345. {
  30346. name: "Unleashed",
  30347. height: math.unit(3000, "feet")
  30348. },
  30349. ]
  30350. ))
  30351. characterMakers.push(() => makeCharacter(
  30352. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30353. {
  30354. side: {
  30355. height: math.unit(2 + 3 / 12, "feet"),
  30356. weight: math.unit(110, "lb"),
  30357. name: "Side",
  30358. image: {
  30359. source: "./media/characters/glitch-flux/side.svg",
  30360. extra: 997 / 805,
  30361. bottom: 20 / 1017
  30362. }
  30363. },
  30364. },
  30365. [
  30366. {
  30367. name: "Normal",
  30368. height: math.unit(2 + 3 / 12, "feet"),
  30369. default: true
  30370. },
  30371. ]
  30372. ))
  30373. characterMakers.push(() => makeCharacter(
  30374. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30375. {
  30376. front: {
  30377. height: math.unit(4, "meters"),
  30378. name: "Front",
  30379. image: {
  30380. source: "./media/characters/mid/front.svg",
  30381. extra: 507 / 476,
  30382. bottom: 17 / 524
  30383. }
  30384. },
  30385. back: {
  30386. height: math.unit(4, "meters"),
  30387. name: "Back",
  30388. image: {
  30389. source: "./media/characters/mid/back.svg",
  30390. extra: 519 / 487,
  30391. bottom: 7 / 526
  30392. }
  30393. },
  30394. stuck: {
  30395. height: math.unit(2.2, "meters"),
  30396. name: "Stuck",
  30397. image: {
  30398. source: "./media/characters/mid/stuck.svg",
  30399. extra: 1951 / 1869,
  30400. bottom: 88 / 2039
  30401. }
  30402. }
  30403. },
  30404. [
  30405. {
  30406. name: "Normal",
  30407. height: math.unit(4, "meters"),
  30408. default: true
  30409. },
  30410. {
  30411. name: "Big",
  30412. height: math.unit(10, "meters")
  30413. },
  30414. {
  30415. name: "Macro",
  30416. height: math.unit(800, "meters")
  30417. },
  30418. {
  30419. name: "Megamacro",
  30420. height: math.unit(100, "km")
  30421. },
  30422. {
  30423. name: "Overgrown",
  30424. height: math.unit(1, "parsec")
  30425. },
  30426. ]
  30427. ))
  30428. characterMakers.push(() => makeCharacter(
  30429. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30430. {
  30431. front: {
  30432. height: math.unit(2.5, "meters"),
  30433. weight: math.unit(225, "kg"),
  30434. name: "Front",
  30435. image: {
  30436. source: "./media/characters/iris/front.svg",
  30437. extra: 3348 / 3251,
  30438. bottom: 205 / 3553
  30439. }
  30440. },
  30441. maw: {
  30442. height: math.unit(0.56, "meter"),
  30443. name: "Maw",
  30444. image: {
  30445. source: "./media/characters/iris/maw.svg"
  30446. }
  30447. },
  30448. },
  30449. [
  30450. {
  30451. name: "Mewter cat",
  30452. height: math.unit(1.2, "meters")
  30453. },
  30454. {
  30455. name: "Minimacro",
  30456. height: math.unit(2.5, "meters"),
  30457. default: true
  30458. },
  30459. {
  30460. name: "Macro",
  30461. height: math.unit(180, "meters")
  30462. },
  30463. {
  30464. name: "Megamacro",
  30465. height: math.unit(2746, "meters")
  30466. },
  30467. ]
  30468. ))
  30469. characterMakers.push(() => makeCharacter(
  30470. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30471. {
  30472. front: {
  30473. height: math.unit(6, "feet"),
  30474. weight: math.unit(135, "lb"),
  30475. name: "Front",
  30476. image: {
  30477. source: "./media/characters/axel/front.svg",
  30478. extra: 908 / 908,
  30479. bottom: 58 / 966
  30480. }
  30481. },
  30482. side: {
  30483. height: math.unit(6, "feet"),
  30484. weight: math.unit(135, "lb"),
  30485. name: "Side",
  30486. image: {
  30487. source: "./media/characters/axel/side.svg",
  30488. extra: 958 / 958,
  30489. bottom: 11 / 969
  30490. }
  30491. },
  30492. back: {
  30493. height: math.unit(6, "feet"),
  30494. weight: math.unit(135, "lb"),
  30495. name: "Back",
  30496. image: {
  30497. source: "./media/characters/axel/back.svg",
  30498. extra: 887 / 887,
  30499. bottom: 34 / 921
  30500. }
  30501. },
  30502. head: {
  30503. height: math.unit(1.07, "feet"),
  30504. name: "Head",
  30505. image: {
  30506. source: "./media/characters/axel/head.svg"
  30507. }
  30508. },
  30509. beak: {
  30510. height: math.unit(1.4, "feet"),
  30511. name: "Beak",
  30512. image: {
  30513. source: "./media/characters/axel/beak.svg"
  30514. }
  30515. },
  30516. beakSide: {
  30517. height: math.unit(1.4, "feet"),
  30518. name: "Beak Side",
  30519. image: {
  30520. source: "./media/characters/axel/beak-side.svg"
  30521. }
  30522. },
  30523. sheath: {
  30524. height: math.unit(0.5, "feet"),
  30525. name: "Sheath",
  30526. image: {
  30527. source: "./media/characters/axel/sheath.svg"
  30528. }
  30529. },
  30530. dick: {
  30531. height: math.unit(0.98, "feet"),
  30532. name: "Dick",
  30533. image: {
  30534. source: "./media/characters/axel/dick.svg"
  30535. }
  30536. },
  30537. },
  30538. [
  30539. {
  30540. name: "Macro",
  30541. height: math.unit(68, "meters"),
  30542. default: true
  30543. },
  30544. ]
  30545. ))
  30546. characterMakers.push(() => makeCharacter(
  30547. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30548. {
  30549. front: {
  30550. height: math.unit(3.5, "meters"),
  30551. weight: math.unit(1200, "kg"),
  30552. name: "Front",
  30553. image: {
  30554. source: "./media/characters/joanna/front.svg",
  30555. extra: 1596 / 1488,
  30556. bottom: 29 / 1625
  30557. }
  30558. },
  30559. back: {
  30560. height: math.unit(3.5, "meters"),
  30561. weight: math.unit(1200, "kg"),
  30562. name: "Back",
  30563. image: {
  30564. source: "./media/characters/joanna/back.svg",
  30565. extra: 1594 / 1495,
  30566. bottom: 26 / 1620
  30567. }
  30568. },
  30569. frontShorts: {
  30570. height: math.unit(3.5, "meters"),
  30571. weight: math.unit(1200, "kg"),
  30572. name: "Front (Shorts)",
  30573. image: {
  30574. source: "./media/characters/joanna/front-shorts.svg",
  30575. extra: 1596 / 1488,
  30576. bottom: 29 / 1625
  30577. }
  30578. },
  30579. frontBiker: {
  30580. height: math.unit(3.5, "meters"),
  30581. weight: math.unit(1200, "kg"),
  30582. name: "Front (Biker)",
  30583. image: {
  30584. source: "./media/characters/joanna/front-biker.svg",
  30585. extra: 1596 / 1488,
  30586. bottom: 29 / 1625
  30587. }
  30588. },
  30589. backBiker: {
  30590. height: math.unit(3.5, "meters"),
  30591. weight: math.unit(1200, "kg"),
  30592. name: "Back (Biker)",
  30593. image: {
  30594. source: "./media/characters/joanna/back-biker.svg",
  30595. extra: 1594 / 1495,
  30596. bottom: 88 / 1682
  30597. }
  30598. },
  30599. bikeLeft: {
  30600. height: math.unit(2.4, "meters"),
  30601. weight: math.unit(1600, "kg"),
  30602. name: "Bike (Left)",
  30603. image: {
  30604. source: "./media/characters/joanna/bike-left.svg",
  30605. extra: 720 / 720,
  30606. bottom: 8 / 728
  30607. }
  30608. },
  30609. bikeRight: {
  30610. height: math.unit(2.4, "meters"),
  30611. weight: math.unit(1600, "kg"),
  30612. name: "Bike (Right)",
  30613. image: {
  30614. source: "./media/characters/joanna/bike-right.svg",
  30615. extra: 720 / 720,
  30616. bottom: 8 / 728
  30617. }
  30618. },
  30619. },
  30620. [
  30621. {
  30622. name: "Incognito",
  30623. height: math.unit(3.5, "meters")
  30624. },
  30625. {
  30626. name: "Casual Big",
  30627. height: math.unit(200, "meters")
  30628. },
  30629. {
  30630. name: "Macro",
  30631. height: math.unit(600, "meters")
  30632. },
  30633. {
  30634. name: "Original",
  30635. height: math.unit(20, "km"),
  30636. default: true
  30637. },
  30638. {
  30639. name: "Giga",
  30640. height: math.unit(400, "km")
  30641. },
  30642. {
  30643. name: "Lounging",
  30644. height: math.unit(1500, "km")
  30645. },
  30646. {
  30647. name: "Planetary",
  30648. height: math.unit(200000, "km")
  30649. },
  30650. ]
  30651. ))
  30652. characterMakers.push(() => makeCharacter(
  30653. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30654. {
  30655. front: {
  30656. height: math.unit(6, "feet"),
  30657. weight: math.unit(150, "lb"),
  30658. name: "Front",
  30659. image: {
  30660. source: "./media/characters/hugo-sigil/front.svg",
  30661. extra: 522 / 500,
  30662. bottom: 2 / 524
  30663. }
  30664. },
  30665. back: {
  30666. height: math.unit(6, "feet"),
  30667. weight: math.unit(150, "lb"),
  30668. name: "Back",
  30669. image: {
  30670. source: "./media/characters/hugo-sigil/back.svg",
  30671. extra: 519 / 495,
  30672. bottom: 5 / 524
  30673. }
  30674. },
  30675. maw: {
  30676. height: math.unit(1.4, "feet"),
  30677. weight: math.unit(150, "lb"),
  30678. name: "Maw",
  30679. image: {
  30680. source: "./media/characters/hugo-sigil/maw.svg"
  30681. }
  30682. },
  30683. feet: {
  30684. height: math.unit(1.56, "feet"),
  30685. weight: math.unit(150, "lb"),
  30686. name: "Feet",
  30687. image: {
  30688. source: "./media/characters/hugo-sigil/feet.svg",
  30689. extra: 177 / 177,
  30690. bottom: 12 / 189
  30691. }
  30692. },
  30693. },
  30694. [
  30695. {
  30696. name: "Normal",
  30697. height: math.unit(6, "feet")
  30698. },
  30699. {
  30700. name: "Macro",
  30701. height: math.unit(200, "feet"),
  30702. default: true
  30703. },
  30704. ]
  30705. ))
  30706. characterMakers.push(() => makeCharacter(
  30707. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30708. {
  30709. front: {
  30710. height: math.unit(6, "feet"),
  30711. weight: math.unit(150, "lb"),
  30712. name: "Front",
  30713. image: {
  30714. source: "./media/characters/peri/front.svg",
  30715. extra: 2354 / 2233,
  30716. bottom: 49 / 2403
  30717. }
  30718. },
  30719. },
  30720. [
  30721. {
  30722. name: "Really Small",
  30723. height: math.unit(1, "nm")
  30724. },
  30725. {
  30726. name: "Micro",
  30727. height: math.unit(4, "inches")
  30728. },
  30729. {
  30730. name: "Normal",
  30731. height: math.unit(7, "inches"),
  30732. default: true
  30733. },
  30734. {
  30735. name: "Macro",
  30736. height: math.unit(400, "feet")
  30737. },
  30738. {
  30739. name: "Megamacro",
  30740. height: math.unit(100, "miles")
  30741. },
  30742. ]
  30743. ))
  30744. characterMakers.push(() => makeCharacter(
  30745. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30746. {
  30747. frontSlim: {
  30748. height: math.unit(7, "feet"),
  30749. name: "Front (Slim)",
  30750. image: {
  30751. source: "./media/characters/issilora/front-slim.svg",
  30752. extra: 529 / 449,
  30753. bottom: 53 / 582
  30754. }
  30755. },
  30756. sideSlim: {
  30757. height: math.unit(7, "feet"),
  30758. name: "Side (Slim)",
  30759. image: {
  30760. source: "./media/characters/issilora/side-slim.svg",
  30761. extra: 570 / 480,
  30762. bottom: 30 / 600
  30763. }
  30764. },
  30765. backSlim: {
  30766. height: math.unit(7, "feet"),
  30767. name: "Back (Slim)",
  30768. image: {
  30769. source: "./media/characters/issilora/back-slim.svg",
  30770. extra: 537 / 455,
  30771. bottom: 46 / 583
  30772. }
  30773. },
  30774. frontBuff: {
  30775. height: math.unit(7, "feet"),
  30776. name: "Front (Buff)",
  30777. image: {
  30778. source: "./media/characters/issilora/front-buff.svg",
  30779. extra: 2310 / 2035,
  30780. bottom: 335 / 2645
  30781. }
  30782. },
  30783. head: {
  30784. height: math.unit(1.94, "feet"),
  30785. name: "Head",
  30786. image: {
  30787. source: "./media/characters/issilora/head.svg"
  30788. }
  30789. },
  30790. },
  30791. [
  30792. {
  30793. name: "Minimum",
  30794. height: math.unit(7, "feet")
  30795. },
  30796. {
  30797. name: "Comfortable",
  30798. height: math.unit(17, "feet")
  30799. },
  30800. {
  30801. name: "Fun Size",
  30802. height: math.unit(47, "feet")
  30803. },
  30804. {
  30805. name: "Natural Macro",
  30806. height: math.unit(137, "feet"),
  30807. default: true
  30808. },
  30809. {
  30810. name: "Maximum Kaiju",
  30811. height: math.unit(397, "feet")
  30812. },
  30813. ]
  30814. ))
  30815. characterMakers.push(() => makeCharacter(
  30816. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30817. {
  30818. front: {
  30819. height: math.unit(50 + 9/12, "feet"),
  30820. weight: math.unit(32.8, "tons"),
  30821. name: "Front",
  30822. image: {
  30823. source: "./media/characters/irb'iiritaahn/front.svg",
  30824. extra: 1878/1826,
  30825. bottom: 326/2204
  30826. }
  30827. },
  30828. back: {
  30829. height: math.unit(50 + 9/12, "feet"),
  30830. weight: math.unit(32.8, "tons"),
  30831. name: "Back",
  30832. image: {
  30833. source: "./media/characters/irb'iiritaahn/back.svg",
  30834. extra: 2052/2018,
  30835. bottom: 152/2204
  30836. }
  30837. },
  30838. head: {
  30839. height: math.unit(12.86, "feet"),
  30840. name: "Head",
  30841. image: {
  30842. source: "./media/characters/irb'iiritaahn/head.svg"
  30843. }
  30844. },
  30845. maw: {
  30846. height: math.unit(9.66, "feet"),
  30847. name: "Maw",
  30848. image: {
  30849. source: "./media/characters/irb'iiritaahn/maw.svg"
  30850. }
  30851. },
  30852. frontDick: {
  30853. height: math.unit(8.78461, "feet"),
  30854. name: "Front Dick",
  30855. image: {
  30856. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30857. }
  30858. },
  30859. rearDick: {
  30860. height: math.unit(8.78461, "feet"),
  30861. name: "Rear Dick",
  30862. image: {
  30863. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30864. }
  30865. },
  30866. rearDickUnfolded: {
  30867. height: math.unit(8.78, "feet"),
  30868. name: "Rear Dick (Unfolded)",
  30869. image: {
  30870. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30871. }
  30872. },
  30873. wings: {
  30874. height: math.unit(43, "feet"),
  30875. name: "Wings",
  30876. image: {
  30877. source: "./media/characters/irb'iiritaahn/wings.svg"
  30878. }
  30879. },
  30880. },
  30881. [
  30882. {
  30883. name: "Macro",
  30884. height: math.unit(50 + 9/12, "feet"),
  30885. default: true
  30886. },
  30887. ]
  30888. ))
  30889. characterMakers.push(() => makeCharacter(
  30890. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30891. {
  30892. front: {
  30893. height: math.unit(205, "cm"),
  30894. weight: math.unit(102, "kg"),
  30895. name: "Front",
  30896. image: {
  30897. source: "./media/characters/irbisgreif/front.svg",
  30898. extra: 785/706,
  30899. bottom: 13/798
  30900. }
  30901. },
  30902. back: {
  30903. height: math.unit(205, "cm"),
  30904. weight: math.unit(102, "kg"),
  30905. name: "Back",
  30906. image: {
  30907. source: "./media/characters/irbisgreif/back.svg",
  30908. extra: 713/701,
  30909. bottom: 26/739
  30910. }
  30911. },
  30912. frontDressed: {
  30913. height: math.unit(216, "cm"),
  30914. weight: math.unit(102, "kg"),
  30915. name: "Front-dressed",
  30916. image: {
  30917. source: "./media/characters/irbisgreif/front-dressed.svg",
  30918. extra: 902/776,
  30919. bottom: 14/916
  30920. }
  30921. },
  30922. sideDressed: {
  30923. height: math.unit(195, "cm"),
  30924. weight: math.unit(102, "kg"),
  30925. name: "Side-dressed",
  30926. image: {
  30927. source: "./media/characters/irbisgreif/side-dressed.svg",
  30928. extra: 788/688,
  30929. bottom: 21/809
  30930. }
  30931. },
  30932. backDressed: {
  30933. height: math.unit(216, "cm"),
  30934. weight: math.unit(102, "kg"),
  30935. name: "Back-dressed",
  30936. image: {
  30937. source: "./media/characters/irbisgreif/back-dressed.svg",
  30938. extra: 901/783,
  30939. bottom: 10/911
  30940. }
  30941. },
  30942. dick: {
  30943. height: math.unit(0.49, "feet"),
  30944. name: "Dick",
  30945. image: {
  30946. source: "./media/characters/irbisgreif/dick.svg"
  30947. }
  30948. },
  30949. wingTop: {
  30950. height: math.unit(1.93 , "feet"),
  30951. name: "Wing-top",
  30952. image: {
  30953. source: "./media/characters/irbisgreif/wing-top.svg"
  30954. }
  30955. },
  30956. wingBottom: {
  30957. height: math.unit(1.93 , "feet"),
  30958. name: "Wing-bottom",
  30959. image: {
  30960. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30961. }
  30962. },
  30963. },
  30964. [
  30965. {
  30966. name: "Normal",
  30967. height: math.unit(216, "cm"),
  30968. default: true
  30969. },
  30970. ]
  30971. ))
  30972. characterMakers.push(() => makeCharacter(
  30973. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30974. {
  30975. front: {
  30976. height: math.unit(6, "feet"),
  30977. weight: math.unit(150, "lb"),
  30978. name: "Front",
  30979. image: {
  30980. source: "./media/characters/pride/front.svg",
  30981. extra: 1299/1230,
  30982. bottom: 18/1317
  30983. }
  30984. },
  30985. },
  30986. [
  30987. {
  30988. name: "Normal",
  30989. height: math.unit(7, "feet")
  30990. },
  30991. {
  30992. name: "Mini-macro",
  30993. height: math.unit(11, "feet")
  30994. },
  30995. {
  30996. name: "Macro",
  30997. height: math.unit(15, "meters"),
  30998. default: true
  30999. },
  31000. {
  31001. name: "Macro+",
  31002. height: math.unit(40, "meters")
  31003. },
  31004. ]
  31005. ))
  31006. characterMakers.push(() => makeCharacter(
  31007. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31008. {
  31009. front: {
  31010. height: math.unit(4 + 2 / 12, "feet"),
  31011. weight: math.unit(95, "lb"),
  31012. name: "Front",
  31013. image: {
  31014. source: "./media/characters/vaelophis-nyx/front.svg",
  31015. extra: 2532/2330,
  31016. bottom: 0/2532
  31017. }
  31018. },
  31019. back: {
  31020. height: math.unit(4 + 2 / 12, "feet"),
  31021. weight: math.unit(95, "lb"),
  31022. name: "Back",
  31023. image: {
  31024. source: "./media/characters/vaelophis-nyx/back.svg",
  31025. extra: 2484/2361,
  31026. bottom: 0/2484
  31027. }
  31028. },
  31029. feralSide: {
  31030. height: math.unit(2 + 1/12, "feet"),
  31031. weight: math.unit(20, "lb"),
  31032. name: "Feral (Side)",
  31033. image: {
  31034. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31035. extra: 1721/1581,
  31036. bottom: 70/1791
  31037. }
  31038. },
  31039. feralLazing: {
  31040. height: math.unit(1.08, "feet"),
  31041. weight: math.unit(20, "lb"),
  31042. name: "Feral (Lazing)",
  31043. image: {
  31044. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31045. extra: 822/822,
  31046. bottom: 248/1070
  31047. }
  31048. },
  31049. ear: {
  31050. height: math.unit(0.416, "feet"),
  31051. name: "Ear",
  31052. image: {
  31053. source: "./media/characters/vaelophis-nyx/ear.svg"
  31054. }
  31055. },
  31056. eye: {
  31057. height: math.unit(0.0748, "feet"),
  31058. name: "Eye",
  31059. image: {
  31060. source: "./media/characters/vaelophis-nyx/eye.svg"
  31061. }
  31062. },
  31063. mouth: {
  31064. height: math.unit(0.378, "feet"),
  31065. name: "Mouth",
  31066. image: {
  31067. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31068. }
  31069. },
  31070. spade: {
  31071. height: math.unit(0.55, "feet"),
  31072. name: "Spade",
  31073. image: {
  31074. source: "./media/characters/vaelophis-nyx/spade.svg"
  31075. }
  31076. },
  31077. },
  31078. [
  31079. {
  31080. name: "Normal",
  31081. height: math.unit(4 + 2/12, "feet"),
  31082. default: true
  31083. },
  31084. ]
  31085. ))
  31086. characterMakers.push(() => makeCharacter(
  31087. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31088. {
  31089. front: {
  31090. height: math.unit(7, "feet"),
  31091. weight: math.unit(231, "lb"),
  31092. name: "Front",
  31093. image: {
  31094. source: "./media/characters/flux/front.svg",
  31095. extra: 919/871,
  31096. bottom: 0/919
  31097. }
  31098. },
  31099. back: {
  31100. height: math.unit(7, "feet"),
  31101. weight: math.unit(231, "lb"),
  31102. name: "Back",
  31103. image: {
  31104. source: "./media/characters/flux/back.svg",
  31105. extra: 1040/992,
  31106. bottom: 0/1040
  31107. }
  31108. },
  31109. frontDressed: {
  31110. height: math.unit(7, "feet"),
  31111. weight: math.unit(231, "lb"),
  31112. name: "Front (Dressed)",
  31113. image: {
  31114. source: "./media/characters/flux/front-dressed.svg",
  31115. extra: 919/871,
  31116. bottom: 0/919
  31117. }
  31118. },
  31119. feralSide: {
  31120. height: math.unit(5, "feet"),
  31121. weight: math.unit(150, "lb"),
  31122. name: "Feral (Side)",
  31123. image: {
  31124. source: "./media/characters/flux/feral-side.svg",
  31125. extra: 598/528,
  31126. bottom: 28/626
  31127. }
  31128. },
  31129. head: {
  31130. height: math.unit(1.585, "feet"),
  31131. name: "Head",
  31132. image: {
  31133. source: "./media/characters/flux/head.svg"
  31134. }
  31135. },
  31136. headSide: {
  31137. height: math.unit(1.74, "feet"),
  31138. name: "Head (Side)",
  31139. image: {
  31140. source: "./media/characters/flux/head-side.svg"
  31141. }
  31142. },
  31143. headSideFire: {
  31144. height: math.unit(1.76, "feet"),
  31145. name: "Head (Side, Fire)",
  31146. image: {
  31147. source: "./media/characters/flux/head-side-fire.svg"
  31148. }
  31149. },
  31150. },
  31151. [
  31152. {
  31153. name: "Normal",
  31154. height: math.unit(7, "feet"),
  31155. default: true
  31156. },
  31157. ]
  31158. ))
  31159. characterMakers.push(() => makeCharacter(
  31160. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31161. {
  31162. front: {
  31163. height: math.unit(9, "feet"),
  31164. weight: math.unit(1012, "lb"),
  31165. name: "Front",
  31166. image: {
  31167. source: "./media/characters/ulfra-lupae/front.svg",
  31168. extra: 1083/1011,
  31169. bottom: 67/1150
  31170. }
  31171. },
  31172. },
  31173. [
  31174. {
  31175. name: "Micro",
  31176. height: math.unit(6, "inches")
  31177. },
  31178. {
  31179. name: "Socializing",
  31180. height: math.unit(6 + 5/12, "feet")
  31181. },
  31182. {
  31183. name: "Normal",
  31184. height: math.unit(9, "feet"),
  31185. default: true
  31186. },
  31187. {
  31188. name: "Macro",
  31189. height: math.unit(150, "feet")
  31190. },
  31191. ]
  31192. ))
  31193. characterMakers.push(() => makeCharacter(
  31194. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31195. {
  31196. front: {
  31197. height: math.unit(5 + 2/12, "feet"),
  31198. weight: math.unit(120, "lb"),
  31199. name: "Front",
  31200. image: {
  31201. source: "./media/characters/timber/front.svg",
  31202. extra: 2814/2705,
  31203. bottom: 181/2995
  31204. }
  31205. },
  31206. },
  31207. [
  31208. {
  31209. name: "Normal",
  31210. height: math.unit(5 + 2/12, "feet"),
  31211. default: true
  31212. },
  31213. ]
  31214. ))
  31215. characterMakers.push(() => makeCharacter(
  31216. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31217. {
  31218. front: {
  31219. height: math.unit(5 + 7/12, "feet"),
  31220. weight: math.unit(220, "lb"),
  31221. name: "Front",
  31222. image: {
  31223. source: "./media/characters/nicki/front.svg",
  31224. extra: 453/419,
  31225. bottom: 7/460
  31226. }
  31227. },
  31228. frontAlt: {
  31229. height: math.unit(5 + 7/12, "feet"),
  31230. weight: math.unit(220, "lb"),
  31231. name: "Front-alt",
  31232. image: {
  31233. source: "./media/characters/nicki/front-alt.svg",
  31234. extra: 435/411,
  31235. bottom: 12/447
  31236. }
  31237. },
  31238. back: {
  31239. height: math.unit(5 + 7/12, "feet"),
  31240. weight: math.unit(220, "lb"),
  31241. name: "Back",
  31242. image: {
  31243. source: "./media/characters/nicki/back.svg",
  31244. extra: 440/413,
  31245. bottom: 19/459
  31246. }
  31247. },
  31248. taur: {
  31249. height: math.unit(7 + 6/12, "feet"),
  31250. weight: math.unit(700, "lb"),
  31251. name: "Taur",
  31252. image: {
  31253. source: "./media/characters/nicki/taur.svg",
  31254. extra: 975/773,
  31255. bottom: 0/975
  31256. }
  31257. },
  31258. frontNsfw: {
  31259. height: math.unit(5 + 7/12, "feet"),
  31260. weight: math.unit(220, "lb"),
  31261. name: "Front (NSFW)",
  31262. image: {
  31263. source: "./media/characters/nicki/front-nsfw.svg",
  31264. extra: 453/419,
  31265. bottom: 7/460
  31266. }
  31267. },
  31268. frontNsfwAlt: {
  31269. height: math.unit(5 + 7/12, "feet"),
  31270. weight: math.unit(220, "lb"),
  31271. name: "Front (Alt, NSFW)",
  31272. image: {
  31273. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31274. extra: 435/411,
  31275. bottom: 12/447
  31276. }
  31277. },
  31278. backNsfw: {
  31279. height: math.unit(5 + 7/12, "feet"),
  31280. weight: math.unit(220, "lb"),
  31281. name: "Back (NSFW)",
  31282. image: {
  31283. source: "./media/characters/nicki/back-nsfw.svg",
  31284. extra: 440/413,
  31285. bottom: 19/459
  31286. }
  31287. },
  31288. head: {
  31289. height: math.unit(2.1, "feet"),
  31290. name: "Head",
  31291. image: {
  31292. source: "./media/characters/nicki/head.svg"
  31293. }
  31294. },
  31295. paw: {
  31296. height: math.unit(1.88, "feet"),
  31297. name: "Paw",
  31298. image: {
  31299. source: "./media/characters/nicki/paw.svg"
  31300. }
  31301. },
  31302. },
  31303. [
  31304. {
  31305. name: "Normal",
  31306. height: math.unit(5 + 7/12, "feet"),
  31307. default: true
  31308. },
  31309. ]
  31310. ))
  31311. characterMakers.push(() => makeCharacter(
  31312. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31313. {
  31314. front: {
  31315. height: math.unit(7 + 10/12, "feet"),
  31316. weight: math.unit(3.5, "tons"),
  31317. name: "Front",
  31318. image: {
  31319. source: "./media/characters/lee/front.svg",
  31320. extra: 1773/1615,
  31321. bottom: 86/1859
  31322. }
  31323. },
  31324. hand: {
  31325. height: math.unit(1.78, "feet"),
  31326. name: "Hand",
  31327. image: {
  31328. source: "./media/characters/lee/hand.svg"
  31329. }
  31330. },
  31331. maw: {
  31332. height: math.unit(1.18, "feet"),
  31333. name: "Maw",
  31334. image: {
  31335. source: "./media/characters/lee/maw.svg"
  31336. }
  31337. },
  31338. },
  31339. [
  31340. {
  31341. name: "Normal",
  31342. height: math.unit(7 + 10/12, "feet"),
  31343. default: true
  31344. },
  31345. ]
  31346. ))
  31347. characterMakers.push(() => makeCharacter(
  31348. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31349. {
  31350. front: {
  31351. height: math.unit(9, "feet"),
  31352. name: "Front",
  31353. image: {
  31354. source: "./media/characters/guti/front.svg",
  31355. extra: 4551/4355,
  31356. bottom: 123/4674
  31357. }
  31358. },
  31359. tongue: {
  31360. height: math.unit(1, "feet"),
  31361. name: "Tongue",
  31362. image: {
  31363. source: "./media/characters/guti/tongue.svg"
  31364. }
  31365. },
  31366. paw: {
  31367. height: math.unit(1.18, "feet"),
  31368. name: "Paw",
  31369. image: {
  31370. source: "./media/characters/guti/paw.svg"
  31371. }
  31372. },
  31373. },
  31374. [
  31375. {
  31376. name: "Normal",
  31377. height: math.unit(9, "feet"),
  31378. default: true
  31379. },
  31380. ]
  31381. ))
  31382. characterMakers.push(() => makeCharacter(
  31383. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31384. {
  31385. side: {
  31386. height: math.unit(5, "meters"),
  31387. name: "Side",
  31388. image: {
  31389. source: "./media/characters/vesper/side.svg",
  31390. extra: 1605/1518,
  31391. bottom: 0/1605
  31392. }
  31393. },
  31394. },
  31395. [
  31396. {
  31397. name: "Small",
  31398. height: math.unit(5, "meters")
  31399. },
  31400. {
  31401. name: "Sage",
  31402. height: math.unit(100, "meters"),
  31403. default: true
  31404. },
  31405. {
  31406. name: "Fun Size",
  31407. height: math.unit(600, "meters")
  31408. },
  31409. {
  31410. name: "Goddess",
  31411. height: math.unit(20000, "km")
  31412. },
  31413. {
  31414. name: "Maximum",
  31415. height: math.unit(5, "galaxies")
  31416. },
  31417. ]
  31418. ))
  31419. characterMakers.push(() => makeCharacter(
  31420. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31421. {
  31422. front: {
  31423. height: math.unit(6 + 3/12, "feet"),
  31424. weight: math.unit(190, "lb"),
  31425. name: "Front",
  31426. image: {
  31427. source: "./media/characters/gawain/front.svg",
  31428. extra: 2222/2139,
  31429. bottom: 90/2312
  31430. }
  31431. },
  31432. back: {
  31433. height: math.unit(6 + 3/12, "feet"),
  31434. weight: math.unit(190, "lb"),
  31435. name: "Back",
  31436. image: {
  31437. source: "./media/characters/gawain/back.svg",
  31438. extra: 2199/2111,
  31439. bottom: 73/2272
  31440. }
  31441. },
  31442. },
  31443. [
  31444. {
  31445. name: "Normal",
  31446. height: math.unit(6 + 3/12, "feet"),
  31447. default: true
  31448. },
  31449. ]
  31450. ))
  31451. characterMakers.push(() => makeCharacter(
  31452. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31453. {
  31454. side: {
  31455. height: math.unit(3.5, "meters"),
  31456. weight: math.unit(16000, "lb"),
  31457. name: "Side",
  31458. image: {
  31459. source: "./media/characters/dascalti/side.svg",
  31460. extra: 392/273,
  31461. bottom: 47/439
  31462. }
  31463. },
  31464. breath: {
  31465. height: math.unit(7.4, "feet"),
  31466. name: "Breath",
  31467. image: {
  31468. source: "./media/characters/dascalti/breath.svg"
  31469. }
  31470. },
  31471. fed: {
  31472. height: math.unit(3.6, "meters"),
  31473. weight: math.unit(16000, "lb"),
  31474. name: "Fed",
  31475. image: {
  31476. source: "./media/characters/dascalti/fed.svg",
  31477. extra: 1419/820,
  31478. bottom: 95/1514
  31479. }
  31480. },
  31481. },
  31482. [
  31483. {
  31484. name: "Normal",
  31485. height: math.unit(3.5, "meters"),
  31486. default: true
  31487. },
  31488. ]
  31489. ))
  31490. characterMakers.push(() => makeCharacter(
  31491. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31492. {
  31493. front: {
  31494. height: math.unit(3 + 5/12, "feet"),
  31495. name: "Front",
  31496. image: {
  31497. source: "./media/characters/mauve/front.svg",
  31498. extra: 1126/1033,
  31499. bottom: 65/1191
  31500. }
  31501. },
  31502. side: {
  31503. height: math.unit(3 + 5/12, "feet"),
  31504. name: "Side",
  31505. image: {
  31506. source: "./media/characters/mauve/side.svg",
  31507. extra: 1089/1001,
  31508. bottom: 29/1118
  31509. }
  31510. },
  31511. back: {
  31512. height: math.unit(3 + 5/12, "feet"),
  31513. name: "Back",
  31514. image: {
  31515. source: "./media/characters/mauve/back.svg",
  31516. extra: 1173/1053,
  31517. bottom: 109/1282
  31518. }
  31519. },
  31520. },
  31521. [
  31522. {
  31523. name: "Normal",
  31524. height: math.unit(3 + 5/12, "feet"),
  31525. default: true
  31526. },
  31527. ]
  31528. ))
  31529. characterMakers.push(() => makeCharacter(
  31530. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31531. {
  31532. front: {
  31533. height: math.unit(6 + 3/12, "feet"),
  31534. weight: math.unit(430, "lb"),
  31535. name: "Front",
  31536. image: {
  31537. source: "./media/characters/carlos/front.svg",
  31538. extra: 1964/1913,
  31539. bottom: 70/2034
  31540. }
  31541. },
  31542. },
  31543. [
  31544. {
  31545. name: "Normal",
  31546. height: math.unit(6 + 3/12, "feet"),
  31547. default: true
  31548. },
  31549. ]
  31550. ))
  31551. characterMakers.push(() => makeCharacter(
  31552. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31553. {
  31554. back: {
  31555. height: math.unit(5 + 10/12, "feet"),
  31556. weight: math.unit(200, "lb"),
  31557. name: "Back",
  31558. image: {
  31559. source: "./media/characters/jax/back.svg",
  31560. extra: 764/739,
  31561. bottom: 25/789
  31562. }
  31563. },
  31564. },
  31565. [
  31566. {
  31567. name: "Normal",
  31568. height: math.unit(5 + 10/12, "feet"),
  31569. default: true
  31570. },
  31571. ]
  31572. ))
  31573. characterMakers.push(() => makeCharacter(
  31574. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31575. {
  31576. front: {
  31577. height: math.unit(8, "feet"),
  31578. weight: math.unit(250, "lb"),
  31579. name: "Front",
  31580. image: {
  31581. source: "./media/characters/eikthynir/front.svg",
  31582. extra: 1332/1166,
  31583. bottom: 82/1414
  31584. }
  31585. },
  31586. back: {
  31587. height: math.unit(8, "feet"),
  31588. weight: math.unit(250, "lb"),
  31589. name: "Back",
  31590. image: {
  31591. source: "./media/characters/eikthynir/back.svg",
  31592. extra: 1342/1190,
  31593. bottom: 19/1361
  31594. }
  31595. },
  31596. dick: {
  31597. height: math.unit(2.35, "feet"),
  31598. name: "Dick",
  31599. image: {
  31600. source: "./media/characters/eikthynir/dick.svg"
  31601. }
  31602. },
  31603. },
  31604. [
  31605. {
  31606. name: "Normal",
  31607. height: math.unit(8, "feet"),
  31608. default: true
  31609. },
  31610. ]
  31611. ))
  31612. characterMakers.push(() => makeCharacter(
  31613. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31614. {
  31615. front: {
  31616. height: math.unit(99, "meters"),
  31617. weight: math.unit(13000, "tons"),
  31618. name: "Front",
  31619. image: {
  31620. source: "./media/characters/zlmos/front.svg",
  31621. extra: 2202/1992,
  31622. bottom: 315/2517
  31623. }
  31624. },
  31625. },
  31626. [
  31627. {
  31628. name: "Macro",
  31629. height: math.unit(99, "meters"),
  31630. default: true
  31631. },
  31632. ]
  31633. ))
  31634. characterMakers.push(() => makeCharacter(
  31635. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31636. {
  31637. front: {
  31638. height: math.unit(6 + 5/12, "feet"),
  31639. name: "Front",
  31640. image: {
  31641. source: "./media/characters/purri/front.svg",
  31642. extra: 1698/1610,
  31643. bottom: 32/1730
  31644. }
  31645. },
  31646. frontAlt: {
  31647. height: math.unit(6 + 5/12, "feet"),
  31648. name: "Front (Alt)",
  31649. image: {
  31650. source: "./media/characters/purri/front-alt.svg",
  31651. extra: 450/420,
  31652. bottom: 26/476
  31653. }
  31654. },
  31655. boots: {
  31656. height: math.unit(5.5, "feet"),
  31657. name: "Boots",
  31658. image: {
  31659. source: "./media/characters/purri/boots.svg",
  31660. extra: 905/853,
  31661. bottom: 18/923
  31662. }
  31663. },
  31664. lying: {
  31665. height: math.unit(2, "feet"),
  31666. name: "Lying",
  31667. image: {
  31668. source: "./media/characters/purri/lying.svg",
  31669. extra: 940/843,
  31670. bottom: 146/1086
  31671. }
  31672. },
  31673. devious: {
  31674. height: math.unit(1.77, "feet"),
  31675. name: "Devious",
  31676. image: {
  31677. source: "./media/characters/purri/devious.svg",
  31678. extra: 1440/1155,
  31679. bottom: 147/1587
  31680. }
  31681. },
  31682. bean: {
  31683. height: math.unit(1.94, "feet"),
  31684. name: "Bean",
  31685. image: {
  31686. source: "./media/characters/purri/bean.svg"
  31687. }
  31688. },
  31689. },
  31690. [
  31691. {
  31692. name: "Micro",
  31693. height: math.unit(1, "mm")
  31694. },
  31695. {
  31696. name: "Normal",
  31697. height: math.unit(6 + 5/12, "feet"),
  31698. default: true
  31699. },
  31700. {
  31701. name: "Macro :3c",
  31702. height: math.unit(2, "miles")
  31703. },
  31704. ]
  31705. ))
  31706. characterMakers.push(() => makeCharacter(
  31707. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31708. {
  31709. front: {
  31710. height: math.unit(6 + 2/12, "feet"),
  31711. weight: math.unit(250, "lb"),
  31712. name: "Front",
  31713. image: {
  31714. source: "./media/characters/moonlight/front.svg",
  31715. extra: 1044/908,
  31716. bottom: 56/1100
  31717. }
  31718. },
  31719. feral: {
  31720. height: math.unit(3 + 1/12, "feet"),
  31721. weight: math.unit(50, "kg"),
  31722. name: "Feral",
  31723. image: {
  31724. source: "./media/characters/moonlight/feral.svg",
  31725. extra: 3705/2791,
  31726. bottom: 145/3850
  31727. }
  31728. },
  31729. paw: {
  31730. height: math.unit(1, "feet"),
  31731. name: "Paw",
  31732. image: {
  31733. source: "./media/characters/moonlight/paw.svg"
  31734. }
  31735. },
  31736. paws: {
  31737. height: math.unit(0.98, "feet"),
  31738. name: "Paws",
  31739. image: {
  31740. source: "./media/characters/moonlight/paws.svg",
  31741. extra: 939/939,
  31742. bottom: 50/989
  31743. }
  31744. },
  31745. mouth: {
  31746. height: math.unit(0.48, "feet"),
  31747. name: "Mouth",
  31748. image: {
  31749. source: "./media/characters/moonlight/mouth.svg"
  31750. }
  31751. },
  31752. dick: {
  31753. height: math.unit(1.46, "feet"),
  31754. name: "Dick",
  31755. image: {
  31756. source: "./media/characters/moonlight/dick.svg"
  31757. }
  31758. },
  31759. },
  31760. [
  31761. {
  31762. name: "Normal",
  31763. height: math.unit(6 + 2/12, "feet"),
  31764. default: true
  31765. },
  31766. {
  31767. name: "Macro",
  31768. height: math.unit(300, "feet")
  31769. },
  31770. {
  31771. name: "Macro+",
  31772. height: math.unit(1, "mile")
  31773. },
  31774. {
  31775. name: "Mt. Moon",
  31776. height: math.unit(5, "miles")
  31777. },
  31778. {
  31779. name: "Megamacro",
  31780. height: math.unit(15, "miles")
  31781. },
  31782. ]
  31783. ))
  31784. characterMakers.push(() => makeCharacter(
  31785. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31786. {
  31787. back: {
  31788. height: math.unit(6, "feet"),
  31789. weight: math.unit(150, "lb"),
  31790. name: "Back",
  31791. image: {
  31792. source: "./media/characters/sylen/back.svg",
  31793. extra: 1335/1273,
  31794. bottom: 107/1442
  31795. }
  31796. },
  31797. },
  31798. [
  31799. {
  31800. name: "Normal",
  31801. height: math.unit(5 + 5/12, "feet")
  31802. },
  31803. {
  31804. name: "Megamacro",
  31805. height: math.unit(3, "miles"),
  31806. default: true
  31807. },
  31808. ]
  31809. ))
  31810. characterMakers.push(() => makeCharacter(
  31811. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31812. {
  31813. front: {
  31814. height: math.unit(6, "feet"),
  31815. weight: math.unit(190, "lb"),
  31816. name: "Front",
  31817. image: {
  31818. source: "./media/characters/huttser/front.svg",
  31819. extra: 1152/1058,
  31820. bottom: 23/1175
  31821. }
  31822. },
  31823. side: {
  31824. height: math.unit(6, "feet"),
  31825. weight: math.unit(190, "lb"),
  31826. name: "Side",
  31827. image: {
  31828. source: "./media/characters/huttser/side.svg",
  31829. extra: 1174/1065,
  31830. bottom: 18/1192
  31831. }
  31832. },
  31833. back: {
  31834. height: math.unit(6, "feet"),
  31835. weight: math.unit(190, "lb"),
  31836. name: "Back",
  31837. image: {
  31838. source: "./media/characters/huttser/back.svg",
  31839. extra: 1158/1056,
  31840. bottom: 12/1170
  31841. }
  31842. },
  31843. },
  31844. [
  31845. ]
  31846. ))
  31847. characterMakers.push(() => makeCharacter(
  31848. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31849. {
  31850. side: {
  31851. height: math.unit(12 + 9/12, "feet"),
  31852. weight: math.unit(15000, "lb"),
  31853. name: "Side",
  31854. image: {
  31855. source: "./media/characters/faan/side.svg",
  31856. extra: 2747/2697,
  31857. bottom: 0/2747
  31858. }
  31859. },
  31860. front: {
  31861. height: math.unit(12 + 9/12, "feet"),
  31862. weight: math.unit(15000, "lb"),
  31863. name: "Front",
  31864. image: {
  31865. source: "./media/characters/faan/front.svg",
  31866. extra: 607/571,
  31867. bottom: 24/631
  31868. }
  31869. },
  31870. head: {
  31871. height: math.unit(2.85, "feet"),
  31872. name: "Head",
  31873. image: {
  31874. source: "./media/characters/faan/head.svg"
  31875. }
  31876. },
  31877. headAlt: {
  31878. height: math.unit(3.13, "feet"),
  31879. name: "Head-alt",
  31880. image: {
  31881. source: "./media/characters/faan/head-alt.svg"
  31882. }
  31883. },
  31884. },
  31885. [
  31886. {
  31887. name: "Normal",
  31888. height: math.unit(12 + 9/12, "feet"),
  31889. default: true
  31890. },
  31891. ]
  31892. ))
  31893. characterMakers.push(() => makeCharacter(
  31894. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31895. {
  31896. front: {
  31897. height: math.unit(6, "feet"),
  31898. weight: math.unit(300, "lb"),
  31899. name: "Front",
  31900. image: {
  31901. source: "./media/characters/tanio/front.svg",
  31902. extra: 711/673,
  31903. bottom: 25/736
  31904. }
  31905. },
  31906. },
  31907. [
  31908. {
  31909. name: "Normal",
  31910. height: math.unit(6, "feet"),
  31911. default: true
  31912. },
  31913. ]
  31914. ))
  31915. characterMakers.push(() => makeCharacter(
  31916. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31917. {
  31918. front: {
  31919. height: math.unit(3, "inches"),
  31920. name: "Front",
  31921. image: {
  31922. source: "./media/characters/noboru/front.svg",
  31923. extra: 1039/932,
  31924. bottom: 18/1057
  31925. }
  31926. },
  31927. },
  31928. [
  31929. {
  31930. name: "Micro",
  31931. height: math.unit(3, "inches"),
  31932. default: true
  31933. },
  31934. ]
  31935. ))
  31936. characterMakers.push(() => makeCharacter(
  31937. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31938. {
  31939. front: {
  31940. height: math.unit(1.85, "meters"),
  31941. weight: math.unit(80, "kg"),
  31942. name: "Front",
  31943. image: {
  31944. source: "./media/characters/daniel-barrett/front.svg",
  31945. extra: 355/337,
  31946. bottom: 9/364
  31947. }
  31948. },
  31949. },
  31950. [
  31951. {
  31952. name: "Pico",
  31953. height: math.unit(0.0433, "mm")
  31954. },
  31955. {
  31956. name: "Nano",
  31957. height: math.unit(1.5, "mm")
  31958. },
  31959. {
  31960. name: "Micro",
  31961. height: math.unit(5.3, "cm"),
  31962. default: true
  31963. },
  31964. {
  31965. name: "Normal",
  31966. height: math.unit(1.85, "meters")
  31967. },
  31968. {
  31969. name: "Macro",
  31970. height: math.unit(64.7, "meters")
  31971. },
  31972. {
  31973. name: "Megamacro",
  31974. height: math.unit(2.26, "km")
  31975. },
  31976. {
  31977. name: "Gigamacro",
  31978. height: math.unit(79, "km")
  31979. },
  31980. {
  31981. name: "Teramacro",
  31982. height: math.unit(2765, "km")
  31983. },
  31984. {
  31985. name: "Petamacro",
  31986. height: math.unit(96678, "km")
  31987. },
  31988. ]
  31989. ))
  31990. characterMakers.push(() => makeCharacter(
  31991. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31992. {
  31993. front: {
  31994. height: math.unit(30, "meters"),
  31995. weight: math.unit(400, "tons"),
  31996. name: "Front",
  31997. image: {
  31998. source: "./media/characters/zeel/front.svg",
  31999. extra: 2599/2599,
  32000. bottom: 226/2825
  32001. }
  32002. },
  32003. },
  32004. [
  32005. {
  32006. name: "Macro",
  32007. height: math.unit(30, "meters"),
  32008. default: true
  32009. },
  32010. ]
  32011. ))
  32012. characterMakers.push(() => makeCharacter(
  32013. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32014. {
  32015. front: {
  32016. height: math.unit(6 + 7/12, "feet"),
  32017. weight: math.unit(210, "lb"),
  32018. name: "Front",
  32019. image: {
  32020. source: "./media/characters/tarn/front.svg",
  32021. extra: 3517/3220,
  32022. bottom: 91/3608
  32023. }
  32024. },
  32025. back: {
  32026. height: math.unit(6 + 7/12, "feet"),
  32027. weight: math.unit(210, "lb"),
  32028. name: "Back",
  32029. image: {
  32030. source: "./media/characters/tarn/back.svg",
  32031. extra: 3566/3241,
  32032. bottom: 34/3600
  32033. }
  32034. },
  32035. dick: {
  32036. height: math.unit(1.65, "feet"),
  32037. name: "Dick",
  32038. image: {
  32039. source: "./media/characters/tarn/dick.svg"
  32040. }
  32041. },
  32042. paw: {
  32043. height: math.unit(1.80, "feet"),
  32044. name: "Paw",
  32045. image: {
  32046. source: "./media/characters/tarn/paw.svg"
  32047. }
  32048. },
  32049. tongue: {
  32050. height: math.unit(0.97, "feet"),
  32051. name: "Tongue",
  32052. image: {
  32053. source: "./media/characters/tarn/tongue.svg"
  32054. }
  32055. },
  32056. },
  32057. [
  32058. {
  32059. name: "Micro",
  32060. height: math.unit(4, "inches")
  32061. },
  32062. {
  32063. name: "Normal",
  32064. height: math.unit(6 + 7/12, "feet"),
  32065. default: true
  32066. },
  32067. {
  32068. name: "Macro",
  32069. height: math.unit(300, "feet")
  32070. },
  32071. ]
  32072. ))
  32073. characterMakers.push(() => makeCharacter(
  32074. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32075. {
  32076. front: {
  32077. height: math.unit(5 + 7/12, "feet"),
  32078. weight: math.unit(80, "kg"),
  32079. name: "Front",
  32080. image: {
  32081. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32082. extra: 3023/2865,
  32083. bottom: 33/3056
  32084. }
  32085. },
  32086. back: {
  32087. height: math.unit(5 + 7/12, "feet"),
  32088. weight: math.unit(80, "kg"),
  32089. name: "Back",
  32090. image: {
  32091. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32092. extra: 3020/2886,
  32093. bottom: 30/3050
  32094. }
  32095. },
  32096. dick: {
  32097. height: math.unit(0.98, "feet"),
  32098. name: "Dick",
  32099. image: {
  32100. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32101. }
  32102. },
  32103. anatomy: {
  32104. height: math.unit(2.86, "feet"),
  32105. name: "Anatomy",
  32106. image: {
  32107. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32108. }
  32109. },
  32110. },
  32111. [
  32112. {
  32113. name: "Really Small",
  32114. height: math.unit(2, "inches")
  32115. },
  32116. {
  32117. name: "Micro",
  32118. height: math.unit(5.583, "inches")
  32119. },
  32120. {
  32121. name: "Normal",
  32122. height: math.unit(5 + 7/12, "feet"),
  32123. default: true
  32124. },
  32125. {
  32126. name: "Macro",
  32127. height: math.unit(67, "feet")
  32128. },
  32129. {
  32130. name: "Megamacro",
  32131. height: math.unit(134, "feet")
  32132. },
  32133. ]
  32134. ))
  32135. characterMakers.push(() => makeCharacter(
  32136. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32137. {
  32138. front: {
  32139. height: math.unit(9, "feet"),
  32140. weight: math.unit(120, "lb"),
  32141. name: "Front",
  32142. image: {
  32143. source: "./media/characters/sally/front.svg",
  32144. extra: 1506/1349,
  32145. bottom: 66/1572
  32146. }
  32147. },
  32148. },
  32149. [
  32150. {
  32151. name: "Normal",
  32152. height: math.unit(9, "feet"),
  32153. default: true
  32154. },
  32155. ]
  32156. ))
  32157. characterMakers.push(() => makeCharacter(
  32158. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32159. {
  32160. front: {
  32161. height: math.unit(8, "feet"),
  32162. weight: math.unit(900, "lb"),
  32163. name: "Front",
  32164. image: {
  32165. source: "./media/characters/owen/front.svg",
  32166. extra: 1761/1657,
  32167. bottom: 74/1835
  32168. }
  32169. },
  32170. side: {
  32171. height: math.unit(8, "feet"),
  32172. weight: math.unit(900, "lb"),
  32173. name: "Side",
  32174. image: {
  32175. source: "./media/characters/owen/side.svg",
  32176. extra: 1797/1734,
  32177. bottom: 30/1827
  32178. }
  32179. },
  32180. back: {
  32181. height: math.unit(8, "feet"),
  32182. weight: math.unit(900, "lb"),
  32183. name: "Back",
  32184. image: {
  32185. source: "./media/characters/owen/back.svg",
  32186. extra: 1796/1706,
  32187. bottom: 59/1855
  32188. }
  32189. },
  32190. maw: {
  32191. height: math.unit(1.76, "feet"),
  32192. name: "Maw",
  32193. image: {
  32194. source: "./media/characters/owen/maw.svg"
  32195. }
  32196. },
  32197. },
  32198. [
  32199. {
  32200. name: "Normal",
  32201. height: math.unit(8, "feet"),
  32202. default: true
  32203. },
  32204. ]
  32205. ))
  32206. characterMakers.push(() => makeCharacter(
  32207. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32208. {
  32209. front: {
  32210. height: math.unit(4, "feet"),
  32211. weight: math.unit(400, "lb"),
  32212. name: "Front",
  32213. image: {
  32214. source: "./media/characters/ryth/front.svg",
  32215. extra: 1920/1748,
  32216. bottom: 42/1962
  32217. }
  32218. },
  32219. back: {
  32220. height: math.unit(4, "feet"),
  32221. weight: math.unit(400, "lb"),
  32222. name: "Back",
  32223. image: {
  32224. source: "./media/characters/ryth/back.svg",
  32225. extra: 1897/1690,
  32226. bottom: 89/1986
  32227. }
  32228. },
  32229. mouth: {
  32230. height: math.unit(1.39, "feet"),
  32231. name: "Mouth",
  32232. image: {
  32233. source: "./media/characters/ryth/mouth.svg"
  32234. }
  32235. },
  32236. tailmaw: {
  32237. height: math.unit(1.23, "feet"),
  32238. name: "Tailmaw",
  32239. image: {
  32240. source: "./media/characters/ryth/tailmaw.svg"
  32241. }
  32242. },
  32243. goia: {
  32244. height: math.unit(4, "meters"),
  32245. weight: math.unit(10800, "lb"),
  32246. name: "Goia",
  32247. image: {
  32248. source: "./media/characters/ryth/goia.svg",
  32249. extra: 745/640,
  32250. bottom: 107/852
  32251. }
  32252. },
  32253. goiaFront: {
  32254. height: math.unit(4, "meters"),
  32255. weight: math.unit(10800, "lb"),
  32256. name: "Goia (Front)",
  32257. image: {
  32258. source: "./media/characters/ryth/goia-front.svg",
  32259. extra: 750/586,
  32260. bottom: 114/864
  32261. }
  32262. },
  32263. goiaMaw: {
  32264. height: math.unit(5.55, "feet"),
  32265. name: "Goia Maw",
  32266. image: {
  32267. source: "./media/characters/ryth/goia-maw.svg"
  32268. }
  32269. },
  32270. goiaForepaw: {
  32271. height: math.unit(3.5, "feet"),
  32272. name: "Goia Forepaw",
  32273. image: {
  32274. source: "./media/characters/ryth/goia-forepaw.svg"
  32275. }
  32276. },
  32277. goiaHindpaw: {
  32278. height: math.unit(5.55, "feet"),
  32279. name: "Goia Hindpaw",
  32280. image: {
  32281. source: "./media/characters/ryth/goia-hindpaw.svg"
  32282. }
  32283. },
  32284. },
  32285. [
  32286. {
  32287. name: "Normal",
  32288. height: math.unit(4, "feet"),
  32289. default: true
  32290. },
  32291. ]
  32292. ))
  32293. characterMakers.push(() => makeCharacter(
  32294. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32295. {
  32296. front: {
  32297. height: math.unit(7, "feet"),
  32298. weight: math.unit(180, "lb"),
  32299. name: "Front",
  32300. image: {
  32301. source: "./media/characters/necrolance/front.svg",
  32302. extra: 1062/947,
  32303. bottom: 41/1103
  32304. }
  32305. },
  32306. back: {
  32307. height: math.unit(7, "feet"),
  32308. weight: math.unit(180, "lb"),
  32309. name: "Back",
  32310. image: {
  32311. source: "./media/characters/necrolance/back.svg",
  32312. extra: 1045/984,
  32313. bottom: 14/1059
  32314. }
  32315. },
  32316. wing: {
  32317. height: math.unit(2.67, "feet"),
  32318. name: "Wing",
  32319. image: {
  32320. source: "./media/characters/necrolance/wing.svg"
  32321. }
  32322. },
  32323. },
  32324. [
  32325. {
  32326. name: "Normal",
  32327. height: math.unit(7, "feet"),
  32328. default: true
  32329. },
  32330. ]
  32331. ))
  32332. characterMakers.push(() => makeCharacter(
  32333. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32334. {
  32335. front: {
  32336. height: math.unit(76, "meters"),
  32337. weight: math.unit(30000, "tons"),
  32338. name: "Front",
  32339. image: {
  32340. source: "./media/characters/tyler/front.svg",
  32341. extra: 1640/1640,
  32342. bottom: 114/1754
  32343. }
  32344. },
  32345. },
  32346. [
  32347. {
  32348. name: "Macro",
  32349. height: math.unit(76, "meters"),
  32350. default: true
  32351. },
  32352. ]
  32353. ))
  32354. characterMakers.push(() => makeCharacter(
  32355. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32356. {
  32357. front: {
  32358. height: math.unit(4 + 11/12, "feet"),
  32359. weight: math.unit(132, "lb"),
  32360. name: "Front",
  32361. image: {
  32362. source: "./media/characters/icey/front.svg",
  32363. extra: 2750/2550,
  32364. bottom: 33/2783
  32365. }
  32366. },
  32367. back: {
  32368. height: math.unit(4 + 11/12, "feet"),
  32369. weight: math.unit(132, "lb"),
  32370. name: "Back",
  32371. image: {
  32372. source: "./media/characters/icey/back.svg",
  32373. extra: 2624/2481,
  32374. bottom: 35/2659
  32375. }
  32376. },
  32377. },
  32378. [
  32379. {
  32380. name: "Normal",
  32381. height: math.unit(4 + 11/12, "feet"),
  32382. default: true
  32383. },
  32384. ]
  32385. ))
  32386. characterMakers.push(() => makeCharacter(
  32387. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32388. {
  32389. front: {
  32390. height: math.unit(100, "feet"),
  32391. weight: math.unit(0, "lb"),
  32392. name: "Front",
  32393. image: {
  32394. source: "./media/characters/smile/front.svg",
  32395. extra: 2983/2912,
  32396. bottom: 162/3145
  32397. }
  32398. },
  32399. back: {
  32400. height: math.unit(100, "feet"),
  32401. weight: math.unit(0, "lb"),
  32402. name: "Back",
  32403. image: {
  32404. source: "./media/characters/smile/back.svg",
  32405. extra: 3143/3031,
  32406. bottom: 91/3234
  32407. }
  32408. },
  32409. head: {
  32410. height: math.unit(26.3, "feet"),
  32411. weight: math.unit(0, "lb"),
  32412. name: "Head",
  32413. image: {
  32414. source: "./media/characters/smile/head.svg"
  32415. }
  32416. },
  32417. collar: {
  32418. height: math.unit(5.3, "feet"),
  32419. weight: math.unit(0, "lb"),
  32420. name: "Collar",
  32421. image: {
  32422. source: "./media/characters/smile/collar.svg"
  32423. }
  32424. },
  32425. },
  32426. [
  32427. {
  32428. name: "Macro",
  32429. height: math.unit(100, "feet"),
  32430. default: true
  32431. },
  32432. ]
  32433. ))
  32434. characterMakers.push(() => makeCharacter(
  32435. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32436. {
  32437. dragon: {
  32438. height: math.unit(26, "feet"),
  32439. weight: math.unit(36, "tons"),
  32440. name: "Dragon",
  32441. image: {
  32442. source: "./media/characters/arimphae/dragon.svg",
  32443. extra: 1574/983,
  32444. bottom: 357/1931
  32445. }
  32446. },
  32447. drake: {
  32448. height: math.unit(9, "feet"),
  32449. weight: math.unit(1.5, "tons"),
  32450. name: "Drake",
  32451. image: {
  32452. source: "./media/characters/arimphae/drake.svg",
  32453. extra: 1120/925,
  32454. bottom: 435/1555
  32455. }
  32456. },
  32457. },
  32458. [
  32459. {
  32460. name: "Small",
  32461. height: math.unit(26*5/9, "feet")
  32462. },
  32463. {
  32464. name: "Normal",
  32465. height: math.unit(26, "feet"),
  32466. default: true
  32467. },
  32468. ]
  32469. ))
  32470. characterMakers.push(() => makeCharacter(
  32471. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32472. {
  32473. front: {
  32474. height: math.unit(8 + 9/12, "feet"),
  32475. name: "Front",
  32476. image: {
  32477. source: "./media/characters/xander/front.svg",
  32478. extra: 1237/974,
  32479. bottom: 94/1331
  32480. }
  32481. },
  32482. },
  32483. [
  32484. {
  32485. name: "Normal",
  32486. height: math.unit(8 + 9/12, "feet"),
  32487. default: true
  32488. },
  32489. {
  32490. name: "Gaze Grabber",
  32491. height: math.unit(13 + 8/12, "feet")
  32492. },
  32493. {
  32494. name: "Jaw Dropper",
  32495. height: math.unit(27, "feet")
  32496. },
  32497. {
  32498. name: "Show Stopper",
  32499. height: math.unit(136, "feet")
  32500. },
  32501. {
  32502. name: "Superstar",
  32503. height: math.unit(1.9e6, "miles")
  32504. },
  32505. ]
  32506. ))
  32507. characterMakers.push(() => makeCharacter(
  32508. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32509. {
  32510. side: {
  32511. height: math.unit(2100, "feet"),
  32512. name: "Side",
  32513. image: {
  32514. source: "./media/characters/osiris/side.svg",
  32515. extra: 1105/939,
  32516. bottom: 167/1272
  32517. }
  32518. },
  32519. },
  32520. [
  32521. {
  32522. name: "Macro",
  32523. height: math.unit(2100, "feet"),
  32524. default: true
  32525. },
  32526. ]
  32527. ))
  32528. characterMakers.push(() => makeCharacter(
  32529. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32530. {
  32531. front: {
  32532. height: math.unit(6 + 8/12, "feet"),
  32533. weight: math.unit(225, "lb"),
  32534. name: "Front",
  32535. image: {
  32536. source: "./media/characters/rhys-londe/front.svg",
  32537. extra: 2258/2141,
  32538. bottom: 188/2446
  32539. }
  32540. },
  32541. back: {
  32542. height: math.unit(6 + 8/12, "feet"),
  32543. weight: math.unit(225, "lb"),
  32544. name: "Back",
  32545. image: {
  32546. source: "./media/characters/rhys-londe/back.svg",
  32547. extra: 2237/2137,
  32548. bottom: 63/2300
  32549. }
  32550. },
  32551. frontNsfw: {
  32552. height: math.unit(6 + 8/12, "feet"),
  32553. weight: math.unit(225, "lb"),
  32554. name: "Front (NSFW)",
  32555. image: {
  32556. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32557. extra: 2258/2141,
  32558. bottom: 188/2446
  32559. }
  32560. },
  32561. backNsfw: {
  32562. height: math.unit(6 + 8/12, "feet"),
  32563. weight: math.unit(225, "lb"),
  32564. name: "Back (NSFW)",
  32565. image: {
  32566. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32567. extra: 2237/2137,
  32568. bottom: 63/2300
  32569. }
  32570. },
  32571. dick: {
  32572. height: math.unit(30, "inches"),
  32573. name: "Dick",
  32574. image: {
  32575. source: "./media/characters/rhys-londe/dick.svg"
  32576. }
  32577. },
  32578. maw: {
  32579. height: math.unit(1.6, "feet"),
  32580. name: "Maw",
  32581. image: {
  32582. source: "./media/characters/rhys-londe/maw.svg"
  32583. }
  32584. },
  32585. },
  32586. [
  32587. {
  32588. name: "Normal",
  32589. height: math.unit(6 + 8/12, "feet"),
  32590. default: true
  32591. },
  32592. ]
  32593. ))
  32594. characterMakers.push(() => makeCharacter(
  32595. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32596. {
  32597. front: {
  32598. height: math.unit(3 + 10/12, "feet"),
  32599. weight: math.unit(90, "lb"),
  32600. name: "Front",
  32601. image: {
  32602. source: "./media/characters/taivas-ensim/front.svg",
  32603. extra: 1327/1216,
  32604. bottom: 96/1423
  32605. }
  32606. },
  32607. back: {
  32608. height: math.unit(3 + 10/12, "feet"),
  32609. weight: math.unit(90, "lb"),
  32610. name: "Back",
  32611. image: {
  32612. source: "./media/characters/taivas-ensim/back.svg",
  32613. extra: 1355/1247,
  32614. bottom: 11/1366
  32615. }
  32616. },
  32617. frontNsfw: {
  32618. height: math.unit(3 + 10/12, "feet"),
  32619. weight: math.unit(90, "lb"),
  32620. name: "Front (NSFW)",
  32621. image: {
  32622. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32623. extra: 1327/1216,
  32624. bottom: 96/1423
  32625. }
  32626. },
  32627. backNsfw: {
  32628. height: math.unit(3 + 10/12, "feet"),
  32629. weight: math.unit(90, "lb"),
  32630. name: "Back (NSFW)",
  32631. image: {
  32632. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32633. extra: 1355/1247,
  32634. bottom: 11/1366
  32635. }
  32636. },
  32637. },
  32638. [
  32639. {
  32640. name: "Normal",
  32641. height: math.unit(3 + 10/12, "feet"),
  32642. default: true
  32643. },
  32644. ]
  32645. ))
  32646. characterMakers.push(() => makeCharacter(
  32647. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32648. {
  32649. front: {
  32650. height: math.unit(9 + 6/12, "feet"),
  32651. weight: math.unit(940, "lb"),
  32652. name: "Front",
  32653. image: {
  32654. source: "./media/characters/byliss/front.svg",
  32655. extra: 1327/1290,
  32656. bottom: 82/1409
  32657. }
  32658. },
  32659. back: {
  32660. height: math.unit(9 + 6/12, "feet"),
  32661. weight: math.unit(940, "lb"),
  32662. name: "Back",
  32663. image: {
  32664. source: "./media/characters/byliss/back.svg",
  32665. extra: 1376/1349,
  32666. bottom: 9/1385
  32667. }
  32668. },
  32669. frontNsfw: {
  32670. height: math.unit(9 + 6/12, "feet"),
  32671. weight: math.unit(940, "lb"),
  32672. name: "Front (NSFW)",
  32673. image: {
  32674. source: "./media/characters/byliss/front-nsfw.svg",
  32675. extra: 1327/1290,
  32676. bottom: 82/1409
  32677. }
  32678. },
  32679. backNsfw: {
  32680. height: math.unit(9 + 6/12, "feet"),
  32681. weight: math.unit(940, "lb"),
  32682. name: "Back (NSFW)",
  32683. image: {
  32684. source: "./media/characters/byliss/back-nsfw.svg",
  32685. extra: 1376/1349,
  32686. bottom: 9/1385
  32687. }
  32688. },
  32689. },
  32690. [
  32691. {
  32692. name: "Normal",
  32693. height: math.unit(9 + 6/12, "feet"),
  32694. default: true
  32695. },
  32696. ]
  32697. ))
  32698. characterMakers.push(() => makeCharacter(
  32699. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32700. {
  32701. front: {
  32702. height: math.unit(5 + 2/12, "feet"),
  32703. weight: math.unit(200, "lb"),
  32704. name: "Front",
  32705. image: {
  32706. source: "./media/characters/noraly/front.svg",
  32707. extra: 4985/4773,
  32708. bottom: 150/5135
  32709. }
  32710. },
  32711. full: {
  32712. height: math.unit(5 + 2/12, "feet"),
  32713. weight: math.unit(164, "lb"),
  32714. name: "Full",
  32715. image: {
  32716. source: "./media/characters/noraly/full.svg",
  32717. extra: 1114/1059,
  32718. bottom: 35/1149
  32719. }
  32720. },
  32721. fuller: {
  32722. height: math.unit(5 + 2/12, "feet"),
  32723. weight: math.unit(230, "lb"),
  32724. name: "Fuller",
  32725. image: {
  32726. source: "./media/characters/noraly/fuller.svg",
  32727. extra: 1114/1059,
  32728. bottom: 35/1149
  32729. }
  32730. },
  32731. fullest: {
  32732. height: math.unit(5 + 2/12, "feet"),
  32733. weight: math.unit(300, "lb"),
  32734. name: "Fullest",
  32735. image: {
  32736. source: "./media/characters/noraly/fullest.svg",
  32737. extra: 1114/1059,
  32738. bottom: 35/1149
  32739. }
  32740. },
  32741. },
  32742. [
  32743. {
  32744. name: "Normal",
  32745. height: math.unit(5 + 2/12, "feet"),
  32746. default: true
  32747. },
  32748. ]
  32749. ))
  32750. characterMakers.push(() => makeCharacter(
  32751. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32752. {
  32753. front: {
  32754. height: math.unit(5 + 2/12, "feet"),
  32755. weight: math.unit(210, "lb"),
  32756. name: "Front",
  32757. image: {
  32758. source: "./media/characters/pera/front.svg",
  32759. extra: 1560/1531,
  32760. bottom: 165/1725
  32761. }
  32762. },
  32763. back: {
  32764. height: math.unit(5 + 2/12, "feet"),
  32765. weight: math.unit(210, "lb"),
  32766. name: "Back",
  32767. image: {
  32768. source: "./media/characters/pera/back.svg",
  32769. extra: 1523/1493,
  32770. bottom: 152/1675
  32771. }
  32772. },
  32773. dick: {
  32774. height: math.unit(2.4, "feet"),
  32775. name: "Dick",
  32776. image: {
  32777. source: "./media/characters/pera/dick.svg"
  32778. }
  32779. },
  32780. },
  32781. [
  32782. {
  32783. name: "Normal",
  32784. height: math.unit(5 + 2/12, "feet"),
  32785. default: true
  32786. },
  32787. ]
  32788. ))
  32789. characterMakers.push(() => makeCharacter(
  32790. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32791. {
  32792. front: {
  32793. height: math.unit(12, "feet"),
  32794. weight: math.unit(3200, "lb"),
  32795. name: "Front",
  32796. image: {
  32797. source: "./media/characters/julian/front.svg",
  32798. extra: 2962/2701,
  32799. bottom: 184/3146
  32800. }
  32801. },
  32802. maw: {
  32803. height: math.unit(5.35, "feet"),
  32804. name: "Maw",
  32805. image: {
  32806. source: "./media/characters/julian/maw.svg"
  32807. }
  32808. },
  32809. paw: {
  32810. height: math.unit(3.07, "feet"),
  32811. name: "Paw",
  32812. image: {
  32813. source: "./media/characters/julian/paw.svg"
  32814. }
  32815. },
  32816. },
  32817. [
  32818. {
  32819. name: "Default",
  32820. height: math.unit(12, "feet"),
  32821. default: true
  32822. },
  32823. {
  32824. name: "Big",
  32825. height: math.unit(50, "feet")
  32826. },
  32827. {
  32828. name: "Really Big",
  32829. height: math.unit(1, "mile")
  32830. },
  32831. {
  32832. name: "Extremely Big",
  32833. height: math.unit(100, "miles")
  32834. },
  32835. {
  32836. name: "Planet Hugger",
  32837. height: math.unit(200, "megameters")
  32838. },
  32839. {
  32840. name: "Unreasonably Big",
  32841. height: math.unit(1e300, "meters")
  32842. },
  32843. ]
  32844. ))
  32845. characterMakers.push(() => makeCharacter(
  32846. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32847. {
  32848. solgooleo: {
  32849. height: math.unit(4, "meters"),
  32850. weight: math.unit(6000*1.5, "kg"),
  32851. volume: math.unit(6000, "liters"),
  32852. name: "Solgooleo",
  32853. image: {
  32854. source: "./media/characters/pi/solgooleo.svg",
  32855. extra: 388/331,
  32856. bottom: 29/417
  32857. }
  32858. },
  32859. },
  32860. [
  32861. {
  32862. name: "Normal",
  32863. height: math.unit(4, "meters"),
  32864. default: true
  32865. },
  32866. ]
  32867. ))
  32868. characterMakers.push(() => makeCharacter(
  32869. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32870. {
  32871. front: {
  32872. height: math.unit(8, "feet"),
  32873. weight: math.unit(4, "tons"),
  32874. name: "Front",
  32875. image: {
  32876. source: "./media/characters/shaun/front.svg",
  32877. extra: 503/495,
  32878. bottom: 20/523
  32879. }
  32880. },
  32881. back: {
  32882. height: math.unit(8, "feet"),
  32883. weight: math.unit(4, "tons"),
  32884. name: "Back",
  32885. image: {
  32886. source: "./media/characters/shaun/back.svg",
  32887. extra: 487/480,
  32888. bottom: 20/507
  32889. }
  32890. },
  32891. },
  32892. [
  32893. {
  32894. name: "Lorg",
  32895. height: math.unit(8, "feet"),
  32896. default: true
  32897. },
  32898. ]
  32899. ))
  32900. characterMakers.push(() => makeCharacter(
  32901. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32902. {
  32903. front: {
  32904. height: math.unit(7, "feet"),
  32905. name: "Front",
  32906. image: {
  32907. source: "./media/characters/sini/front.svg",
  32908. extra: 726/678,
  32909. bottom: 35/761
  32910. }
  32911. },
  32912. back: {
  32913. height: math.unit(7, "feet"),
  32914. name: "Back",
  32915. image: {
  32916. source: "./media/characters/sini/back.svg",
  32917. extra: 743/701,
  32918. bottom: 12/755
  32919. }
  32920. },
  32921. mawAnthro: {
  32922. height: math.unit(2.14, "feet"),
  32923. name: "Maw (Anthro)",
  32924. image: {
  32925. source: "./media/characters/sini/maw-anthro.svg"
  32926. }
  32927. },
  32928. dick: {
  32929. height: math.unit(1.45, "feet"),
  32930. name: "Dick (Anthro)",
  32931. image: {
  32932. source: "./media/characters/sini/dick-anthro.svg"
  32933. }
  32934. },
  32935. feral: {
  32936. height: math.unit(16, "feet"),
  32937. name: "Feral",
  32938. image: {
  32939. source: "./media/characters/sini/feral.svg",
  32940. extra: 814/605,
  32941. bottom: 11/825
  32942. }
  32943. },
  32944. mawFeral: {
  32945. height: math.unit(5.66, "feet"),
  32946. name: "Maw-feral",
  32947. image: {
  32948. source: "./media/characters/sini/maw-feral.svg"
  32949. }
  32950. },
  32951. footFeral: {
  32952. height: math.unit(5.17, "feet"),
  32953. name: "Foot-feral",
  32954. image: {
  32955. source: "./media/characters/sini/foot-feral.svg"
  32956. }
  32957. },
  32958. },
  32959. [
  32960. {
  32961. name: "Normal",
  32962. height: math.unit(7, "feet"),
  32963. default: true
  32964. },
  32965. ]
  32966. ))
  32967. characterMakers.push(() => makeCharacter(
  32968. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32969. {
  32970. side: {
  32971. height: math.unit(13, "meters"),
  32972. weight: math.unit(9072, "kg"),
  32973. name: "Side",
  32974. image: {
  32975. source: "./media/characters/raylldo/side.svg",
  32976. extra: 403/344,
  32977. bottom: 42/445
  32978. }
  32979. },
  32980. leaping: {
  32981. height: math.unit(12.3, "meters"),
  32982. weight: math.unit(9072, "kg"),
  32983. name: "Leaping",
  32984. image: {
  32985. source: "./media/characters/raylldo/leaping.svg",
  32986. extra: 470/249,
  32987. bottom: 13/483
  32988. }
  32989. },
  32990. flying: {
  32991. height: math.unit(18, "meters"),
  32992. weight: math.unit(9072, "kg"),
  32993. name: "Flying",
  32994. image: {
  32995. source: "./media/characters/raylldo/flying.svg"
  32996. }
  32997. },
  32998. head: {
  32999. height: math.unit(5.85, "meters"),
  33000. name: "Head",
  33001. image: {
  33002. source: "./media/characters/raylldo/head.svg"
  33003. }
  33004. },
  33005. maw: {
  33006. height: math.unit(5.32, "meters"),
  33007. name: "Maw",
  33008. image: {
  33009. source: "./media/characters/raylldo/maw.svg"
  33010. }
  33011. },
  33012. eye: {
  33013. height: math.unit(0.54, "meters"),
  33014. name: "Eye",
  33015. image: {
  33016. source: "./media/characters/raylldo/eye.svg"
  33017. }
  33018. },
  33019. },
  33020. [
  33021. {
  33022. name: "Normal",
  33023. height: math.unit(13, "meters"),
  33024. default: true
  33025. },
  33026. ]
  33027. ))
  33028. characterMakers.push(() => makeCharacter(
  33029. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33030. {
  33031. anthroFront: {
  33032. height: math.unit(9, "feet"),
  33033. weight: math.unit(600, "lb"),
  33034. name: "Anthro (Front)",
  33035. image: {
  33036. source: "./media/characters/glint/anthro-front.svg",
  33037. extra: 1097/1018,
  33038. bottom: 28/1125
  33039. }
  33040. },
  33041. anthroBack: {
  33042. height: math.unit(9, "feet"),
  33043. weight: math.unit(600, "lb"),
  33044. name: "Anthro (Back)",
  33045. image: {
  33046. source: "./media/characters/glint/anthro-back.svg",
  33047. extra: 1154/997,
  33048. bottom: 36/1190
  33049. }
  33050. },
  33051. feral: {
  33052. height: math.unit(11, "feet"),
  33053. weight: math.unit(50000, "lb"),
  33054. name: "Feral",
  33055. image: {
  33056. source: "./media/characters/glint/feral.svg",
  33057. extra: 3035/1585,
  33058. bottom: 1169/4204
  33059. }
  33060. },
  33061. dickAnthro: {
  33062. height: math.unit(0.7, "meters"),
  33063. name: "Dick (Anthro)",
  33064. image: {
  33065. source: "./media/characters/glint/dick-anthro.svg"
  33066. }
  33067. },
  33068. dickFeral: {
  33069. height: math.unit(2.65, "meters"),
  33070. name: "Dick (Feral)",
  33071. image: {
  33072. source: "./media/characters/glint/dick-feral.svg"
  33073. }
  33074. },
  33075. slitHidden: {
  33076. height: math.unit(5.85, "meters"),
  33077. name: "Slit (Hidden)",
  33078. image: {
  33079. source: "./media/characters/glint/slit-hidden.svg"
  33080. }
  33081. },
  33082. slitErect: {
  33083. height: math.unit(5.85, "meters"),
  33084. name: "Slit (Erect)",
  33085. image: {
  33086. source: "./media/characters/glint/slit-erect.svg"
  33087. }
  33088. },
  33089. mawAnthro: {
  33090. height: math.unit(0.63, "meters"),
  33091. name: "Maw (Anthro)",
  33092. image: {
  33093. source: "./media/characters/glint/maw.svg"
  33094. }
  33095. },
  33096. mawFeral: {
  33097. height: math.unit(2.89, "meters"),
  33098. name: "Maw (Feral)",
  33099. image: {
  33100. source: "./media/characters/glint/maw.svg"
  33101. }
  33102. },
  33103. },
  33104. [
  33105. {
  33106. name: "Normal",
  33107. height: math.unit(9, "feet"),
  33108. default: true
  33109. },
  33110. ]
  33111. ))
  33112. characterMakers.push(() => makeCharacter(
  33113. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33114. {
  33115. side: {
  33116. height: math.unit(15, "feet"),
  33117. weight: math.unit(5000, "kg"),
  33118. name: "Side",
  33119. image: {
  33120. source: "./media/characters/kairne/side.svg",
  33121. extra: 979/811,
  33122. bottom: 13/992
  33123. }
  33124. },
  33125. front: {
  33126. height: math.unit(15, "feet"),
  33127. weight: math.unit(5000, "kg"),
  33128. name: "Front",
  33129. image: {
  33130. source: "./media/characters/kairne/front.svg",
  33131. extra: 908/814,
  33132. bottom: 26/934
  33133. }
  33134. },
  33135. sideNsfw: {
  33136. height: math.unit(15, "feet"),
  33137. weight: math.unit(5000, "kg"),
  33138. name: "Side (NSFW)",
  33139. image: {
  33140. source: "./media/characters/kairne/side-nsfw.svg",
  33141. extra: 979/811,
  33142. bottom: 13/992
  33143. }
  33144. },
  33145. frontNsfw: {
  33146. height: math.unit(15, "feet"),
  33147. weight: math.unit(5000, "kg"),
  33148. name: "Front (NSFW)",
  33149. image: {
  33150. source: "./media/characters/kairne/front-nsfw.svg",
  33151. extra: 908/814,
  33152. bottom: 26/934
  33153. }
  33154. },
  33155. dickCaged: {
  33156. height: math.unit(0.65, "meters"),
  33157. name: "Dick-caged",
  33158. image: {
  33159. source: "./media/characters/kairne/dick-caged.svg"
  33160. }
  33161. },
  33162. dick: {
  33163. height: math.unit(0.79, "meters"),
  33164. name: "Dick",
  33165. image: {
  33166. source: "./media/characters/kairne/dick.svg"
  33167. }
  33168. },
  33169. genitals: {
  33170. height: math.unit(1.29, "meters"),
  33171. name: "Genitals",
  33172. image: {
  33173. source: "./media/characters/kairne/genitals.svg"
  33174. }
  33175. },
  33176. maw: {
  33177. height: math.unit(1.73, "meters"),
  33178. name: "Maw",
  33179. image: {
  33180. source: "./media/characters/kairne/maw.svg"
  33181. }
  33182. },
  33183. },
  33184. [
  33185. {
  33186. name: "Normal",
  33187. height: math.unit(15, "feet"),
  33188. default: true
  33189. },
  33190. ]
  33191. ))
  33192. characterMakers.push(() => makeCharacter(
  33193. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33194. {
  33195. front: {
  33196. height: math.unit(5 + 8/12, "feet"),
  33197. weight: math.unit(139, "lb"),
  33198. name: "Front",
  33199. image: {
  33200. source: "./media/characters/biscuit-jackal/front.svg",
  33201. extra: 2106/1961,
  33202. bottom: 58/2164
  33203. }
  33204. },
  33205. back: {
  33206. height: math.unit(5 + 8/12, "feet"),
  33207. weight: math.unit(139, "lb"),
  33208. name: "Back",
  33209. image: {
  33210. source: "./media/characters/biscuit-jackal/back.svg",
  33211. extra: 2132/1976,
  33212. bottom: 57/2189
  33213. }
  33214. },
  33215. werejackal: {
  33216. height: math.unit(6 + 3/12, "feet"),
  33217. weight: math.unit(188, "lb"),
  33218. name: "Werejackal",
  33219. image: {
  33220. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33221. extra: 2373/2178,
  33222. bottom: 53/2426
  33223. }
  33224. },
  33225. },
  33226. [
  33227. {
  33228. name: "Normal",
  33229. height: math.unit(5 + 8/12, "feet"),
  33230. default: true
  33231. },
  33232. ]
  33233. ))
  33234. characterMakers.push(() => makeCharacter(
  33235. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33236. {
  33237. front: {
  33238. height: math.unit(140, "cm"),
  33239. weight: math.unit(45, "kg"),
  33240. name: "Front",
  33241. image: {
  33242. source: "./media/characters/tayra-white/front.svg",
  33243. extra: 2229/2192,
  33244. bottom: 75/2304
  33245. }
  33246. },
  33247. },
  33248. [
  33249. {
  33250. name: "Normal",
  33251. height: math.unit(140, "cm"),
  33252. default: true
  33253. },
  33254. ]
  33255. ))
  33256. characterMakers.push(() => makeCharacter(
  33257. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33258. {
  33259. front: {
  33260. height: math.unit(4 + 5/12, "feet"),
  33261. name: "Front",
  33262. image: {
  33263. source: "./media/characters/scoop/front.svg",
  33264. extra: 1257/1136,
  33265. bottom: 69/1326
  33266. }
  33267. },
  33268. back: {
  33269. height: math.unit(4 + 5/12, "feet"),
  33270. name: "Back",
  33271. image: {
  33272. source: "./media/characters/scoop/back.svg",
  33273. extra: 1321/1152,
  33274. bottom: 32/1353
  33275. }
  33276. },
  33277. maw: {
  33278. height: math.unit(0.68, "feet"),
  33279. name: "Maw",
  33280. image: {
  33281. source: "./media/characters/scoop/maw.svg"
  33282. }
  33283. },
  33284. },
  33285. [
  33286. {
  33287. name: "Really Small",
  33288. height: math.unit(1, "mm")
  33289. },
  33290. {
  33291. name: "Micro",
  33292. height: math.unit(1, "inch")
  33293. },
  33294. {
  33295. name: "Normal",
  33296. height: math.unit(4 + 5/12, "feet"),
  33297. default: true
  33298. },
  33299. {
  33300. name: "Macro",
  33301. height: math.unit(200, "feet")
  33302. },
  33303. {
  33304. name: "Megamacro",
  33305. height: math.unit(3240, "feet")
  33306. },
  33307. {
  33308. name: "Teramacro",
  33309. height: math.unit(2500, "miles")
  33310. },
  33311. ]
  33312. ))
  33313. characterMakers.push(() => makeCharacter(
  33314. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33315. {
  33316. front: {
  33317. height: math.unit(15 + 7/12, "feet"),
  33318. name: "Front",
  33319. image: {
  33320. source: "./media/characters/saphinara/front.svg",
  33321. extra: 604/546,
  33322. bottom: 19/623
  33323. }
  33324. },
  33325. side: {
  33326. height: math.unit(15 + 7/12, "feet"),
  33327. name: "Side",
  33328. image: {
  33329. source: "./media/characters/saphinara/side.svg",
  33330. extra: 605/547,
  33331. bottom: 6/611
  33332. }
  33333. },
  33334. back: {
  33335. height: math.unit(15 + 7/12, "feet"),
  33336. name: "Back",
  33337. image: {
  33338. source: "./media/characters/saphinara/back.svg",
  33339. extra: 591/531,
  33340. bottom: 13/604
  33341. }
  33342. },
  33343. frontTail: {
  33344. height: math.unit(15 + 7/12, "feet"),
  33345. name: "Front (Full Tail)",
  33346. image: {
  33347. source: "./media/characters/saphinara/front-tail.svg",
  33348. extra: 748/547,
  33349. bottom: 66/814
  33350. }
  33351. },
  33352. },
  33353. [
  33354. {
  33355. name: "Normal",
  33356. height: math.unit(15 + 7/12, "feet"),
  33357. default: true
  33358. },
  33359. {
  33360. name: "Angry",
  33361. height: math.unit(30 + 6/12, "feet")
  33362. },
  33363. {
  33364. name: "Enraged",
  33365. height: math.unit(102 + 1/12, "feet")
  33366. },
  33367. ]
  33368. ))
  33369. characterMakers.push(() => makeCharacter(
  33370. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33371. {
  33372. front: {
  33373. height: math.unit(6 + 8/12, "feet"),
  33374. weight: math.unit(300, "lb"),
  33375. name: "Front",
  33376. image: {
  33377. source: "./media/characters/jrain/front.svg",
  33378. extra: 3039/2865,
  33379. bottom: 399/3438
  33380. }
  33381. },
  33382. back: {
  33383. height: math.unit(6 + 8/12, "feet"),
  33384. weight: math.unit(300, "lb"),
  33385. name: "Back",
  33386. image: {
  33387. source: "./media/characters/jrain/back.svg",
  33388. extra: 3089/2938,
  33389. bottom: 172/3261
  33390. }
  33391. },
  33392. head: {
  33393. height: math.unit(2.14, "feet"),
  33394. name: "Head",
  33395. image: {
  33396. source: "./media/characters/jrain/head.svg"
  33397. }
  33398. },
  33399. maw: {
  33400. height: math.unit(1.77, "feet"),
  33401. name: "Maw",
  33402. image: {
  33403. source: "./media/characters/jrain/maw.svg"
  33404. }
  33405. },
  33406. leftHand: {
  33407. height: math.unit(1.1, "feet"),
  33408. name: "Left Hand",
  33409. image: {
  33410. source: "./media/characters/jrain/left-hand.svg"
  33411. }
  33412. },
  33413. rightHand: {
  33414. height: math.unit(1.1, "feet"),
  33415. name: "Right Hand",
  33416. image: {
  33417. source: "./media/characters/jrain/right-hand.svg"
  33418. }
  33419. },
  33420. eye: {
  33421. height: math.unit(0.35, "feet"),
  33422. name: "Eye",
  33423. image: {
  33424. source: "./media/characters/jrain/eye.svg"
  33425. }
  33426. },
  33427. },
  33428. [
  33429. {
  33430. name: "Normal",
  33431. height: math.unit(6 + 8/12, "feet"),
  33432. default: true
  33433. },
  33434. {
  33435. name: "Casually Large",
  33436. height: math.unit(25, "feet")
  33437. },
  33438. {
  33439. name: "Giant",
  33440. height: math.unit(100, "feet")
  33441. },
  33442. {
  33443. name: "Kaiju",
  33444. height: math.unit(300, "feet")
  33445. },
  33446. ]
  33447. ))
  33448. characterMakers.push(() => makeCharacter(
  33449. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33450. {
  33451. dragon: {
  33452. height: math.unit(5, "meters"),
  33453. name: "Dragon",
  33454. image: {
  33455. source: "./media/characters/sabrina/dragon.svg",
  33456. extra: 3670 / 2365,
  33457. bottom: 333 / 4003
  33458. }
  33459. },
  33460. gryphon: {
  33461. height: math.unit(3, "meters"),
  33462. name: "Gryphon",
  33463. image: {
  33464. source: "./media/characters/sabrina/gryphon.svg",
  33465. extra: 1576 / 945,
  33466. bottom: 71 / 1647
  33467. }
  33468. },
  33469. snake: {
  33470. height: math.unit(12, "meters"),
  33471. name: "Snake",
  33472. image: {
  33473. source: "./media/characters/sabrina/snake.svg",
  33474. extra: 1758 / 1320,
  33475. bottom: 186 / 1944
  33476. }
  33477. },
  33478. collar: {
  33479. height: math.unit(1.86, "meters"),
  33480. name: "Collar",
  33481. image: {
  33482. source: "./media/characters/sabrina/collar.svg"
  33483. }
  33484. },
  33485. eye: {
  33486. height: math.unit(0.53, "meters"),
  33487. name: "Eye",
  33488. image: {
  33489. source: "./media/characters/sabrina/eye.svg"
  33490. }
  33491. },
  33492. foot: {
  33493. height: math.unit(1.86, "meters"),
  33494. name: "Foot",
  33495. image: {
  33496. source: "./media/characters/sabrina/foot.svg"
  33497. }
  33498. },
  33499. hand: {
  33500. height: math.unit(1.32, "meters"),
  33501. name: "Hand",
  33502. image: {
  33503. source: "./media/characters/sabrina/hand.svg"
  33504. }
  33505. },
  33506. head: {
  33507. height: math.unit(2.44, "meters"),
  33508. name: "Head",
  33509. image: {
  33510. source: "./media/characters/sabrina/head.svg"
  33511. }
  33512. },
  33513. headAngry: {
  33514. height: math.unit(2.44, "meters"),
  33515. name: "Head (Angry))",
  33516. image: {
  33517. source: "./media/characters/sabrina/head-angry.svg"
  33518. }
  33519. },
  33520. maw: {
  33521. height: math.unit(1.65, "meters"),
  33522. name: "Maw",
  33523. image: {
  33524. source: "./media/characters/sabrina/maw.svg"
  33525. }
  33526. },
  33527. spikes: {
  33528. height: math.unit(1.69, "meters"),
  33529. name: "Spikes",
  33530. image: {
  33531. source: "./media/characters/sabrina/spikes.svg"
  33532. }
  33533. },
  33534. stomach: {
  33535. height: math.unit(1.15, "meters"),
  33536. name: "Stomach",
  33537. image: {
  33538. source: "./media/characters/sabrina/stomach.svg"
  33539. }
  33540. },
  33541. tongue: {
  33542. height: math.unit(1.27, "meters"),
  33543. name: "Tongue",
  33544. image: {
  33545. source: "./media/characters/sabrina/tongue.svg"
  33546. }
  33547. },
  33548. wingDorsal: {
  33549. height: math.unit(4.85, "meters"),
  33550. name: "Wing (Dorsal)",
  33551. image: {
  33552. source: "./media/characters/sabrina/wing-dorsal.svg"
  33553. }
  33554. },
  33555. wingVentral: {
  33556. height: math.unit(4.85, "meters"),
  33557. name: "Wing (Ventral)",
  33558. image: {
  33559. source: "./media/characters/sabrina/wing-ventral.svg"
  33560. }
  33561. },
  33562. },
  33563. [
  33564. {
  33565. name: "Normal",
  33566. height: math.unit(5, "meters"),
  33567. default: true
  33568. },
  33569. ]
  33570. ))
  33571. characterMakers.push(() => makeCharacter(
  33572. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33573. {
  33574. frontMaid: {
  33575. height: math.unit(5 + 5/12, "feet"),
  33576. weight: math.unit(130, "lb"),
  33577. name: "Front (Maid)",
  33578. image: {
  33579. source: "./media/characters/midnight-tales/front-maid.svg",
  33580. extra: 489/454,
  33581. bottom: 61/550
  33582. }
  33583. },
  33584. frontFormal: {
  33585. height: math.unit(5 + 5/12, "feet"),
  33586. weight: math.unit(130, "lb"),
  33587. name: "Front (Formal)",
  33588. image: {
  33589. source: "./media/characters/midnight-tales/front-formal.svg",
  33590. extra: 489/454,
  33591. bottom: 61/550
  33592. }
  33593. },
  33594. back: {
  33595. height: math.unit(5 + 5/12, "feet"),
  33596. weight: math.unit(130, "lb"),
  33597. name: "Back",
  33598. image: {
  33599. source: "./media/characters/midnight-tales/back.svg",
  33600. extra: 498/456,
  33601. bottom: 33/531
  33602. }
  33603. },
  33604. frontBeast: {
  33605. height: math.unit(40, "feet"),
  33606. weight: math.unit(64000, "lb"),
  33607. name: "Front (Beast)",
  33608. image: {
  33609. source: "./media/characters/midnight-tales/front-beast.svg",
  33610. extra: 927/860,
  33611. bottom: 53/980
  33612. }
  33613. },
  33614. backBeast: {
  33615. height: math.unit(40, "feet"),
  33616. weight: math.unit(64000, "lb"),
  33617. name: "Back (Beast)",
  33618. image: {
  33619. source: "./media/characters/midnight-tales/back-beast.svg",
  33620. extra: 929/855,
  33621. bottom: 16/945
  33622. }
  33623. },
  33624. footBeast: {
  33625. height: math.unit(6.7, "feet"),
  33626. name: "Foot (Beast)",
  33627. image: {
  33628. source: "./media/characters/midnight-tales/foot-beast.svg"
  33629. }
  33630. },
  33631. headBeast: {
  33632. height: math.unit(8, "feet"),
  33633. name: "Head (Beast)",
  33634. image: {
  33635. source: "./media/characters/midnight-tales/head-beast.svg"
  33636. }
  33637. },
  33638. },
  33639. [
  33640. {
  33641. name: "Normal",
  33642. height: math.unit(5 + 5 / 12, "feet"),
  33643. default: true
  33644. },
  33645. {
  33646. name: "Macro",
  33647. height: math.unit(25, "feet")
  33648. },
  33649. ]
  33650. ))
  33651. characterMakers.push(() => makeCharacter(
  33652. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33653. {
  33654. front: {
  33655. height: math.unit(5 + 10/12, "feet"),
  33656. name: "Front",
  33657. image: {
  33658. source: "./media/characters/argon/front.svg",
  33659. extra: 2009/1935,
  33660. bottom: 118/2127
  33661. }
  33662. },
  33663. back: {
  33664. height: math.unit(5 + 10/12, "feet"),
  33665. name: "Back",
  33666. image: {
  33667. source: "./media/characters/argon/back.svg",
  33668. extra: 2047/1992,
  33669. bottom: 20/2067
  33670. }
  33671. },
  33672. frontDressed: {
  33673. height: math.unit(5 + 10/12, "feet"),
  33674. name: "Front (Dressed)",
  33675. image: {
  33676. source: "./media/characters/argon/front-dressed.svg",
  33677. extra: 2009/1935,
  33678. bottom: 118/2127
  33679. }
  33680. },
  33681. },
  33682. [
  33683. {
  33684. name: "Normal",
  33685. height: math.unit(5 + 10/12, "feet"),
  33686. default: true
  33687. },
  33688. ]
  33689. ))
  33690. characterMakers.push(() => makeCharacter(
  33691. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33692. {
  33693. front: {
  33694. height: math.unit(8 + 6/12, "feet"),
  33695. weight: math.unit(1150, "lb"),
  33696. name: "Front",
  33697. image: {
  33698. source: "./media/characters/kichi/front.svg",
  33699. extra: 1267/1164,
  33700. bottom: 61/1328
  33701. }
  33702. },
  33703. back: {
  33704. height: math.unit(8 + 6/12, "feet"),
  33705. weight: math.unit(1150, "lb"),
  33706. name: "Back",
  33707. image: {
  33708. source: "./media/characters/kichi/back.svg",
  33709. extra: 1273/1166,
  33710. bottom: 33/1306
  33711. }
  33712. },
  33713. },
  33714. [
  33715. {
  33716. name: "Normal",
  33717. height: math.unit(8 + 6/12, "feet"),
  33718. default: true
  33719. },
  33720. ]
  33721. ))
  33722. characterMakers.push(() => makeCharacter(
  33723. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33724. {
  33725. front: {
  33726. height: math.unit(6, "feet"),
  33727. weight: math.unit(210, "lb"),
  33728. name: "Front",
  33729. image: {
  33730. source: "./media/characters/manetel-greyscale/front.svg",
  33731. extra: 350/312,
  33732. bottom: 8/358
  33733. }
  33734. },
  33735. },
  33736. [
  33737. {
  33738. name: "Micro",
  33739. height: math.unit(2, "inches")
  33740. },
  33741. {
  33742. name: "Normal",
  33743. height: math.unit(6, "feet"),
  33744. default: true
  33745. },
  33746. {
  33747. name: "Minimacro",
  33748. height: math.unit(17, "feet")
  33749. },
  33750. {
  33751. name: "Macro",
  33752. height: math.unit(117, "feet")
  33753. },
  33754. ]
  33755. ))
  33756. characterMakers.push(() => makeCharacter(
  33757. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33758. {
  33759. side: {
  33760. height: math.unit(5 + 1/12, "feet"),
  33761. weight: math.unit(418, "lb"),
  33762. name: "Side",
  33763. image: {
  33764. source: "./media/characters/softpurr/side.svg",
  33765. extra: 1993/1945,
  33766. bottom: 134/2127
  33767. }
  33768. },
  33769. front: {
  33770. height: math.unit(5 + 1/12, "feet"),
  33771. weight: math.unit(418, "lb"),
  33772. name: "Front",
  33773. image: {
  33774. source: "./media/characters/softpurr/front.svg",
  33775. extra: 1950/1856,
  33776. bottom: 174/2124
  33777. }
  33778. },
  33779. paw: {
  33780. height: math.unit(1, "feet"),
  33781. name: "Paw",
  33782. image: {
  33783. source: "./media/characters/softpurr/paw.svg"
  33784. }
  33785. },
  33786. },
  33787. [
  33788. {
  33789. name: "Normal",
  33790. height: math.unit(5 + 1/12, "feet"),
  33791. default: true
  33792. },
  33793. ]
  33794. ))
  33795. characterMakers.push(() => makeCharacter(
  33796. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33797. {
  33798. front: {
  33799. height: math.unit(260, "meters"),
  33800. name: "Front",
  33801. image: {
  33802. source: "./media/characters/anahita/front.svg",
  33803. extra: 665/635,
  33804. bottom: 89/754
  33805. }
  33806. },
  33807. },
  33808. [
  33809. {
  33810. name: "Macro",
  33811. height: math.unit(260, "meters"),
  33812. default: true
  33813. },
  33814. ]
  33815. ))
  33816. characterMakers.push(() => makeCharacter(
  33817. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33818. {
  33819. front: {
  33820. height: math.unit(4 + 10/12, "feet"),
  33821. weight: math.unit(160, "lb"),
  33822. name: "Front",
  33823. image: {
  33824. source: "./media/characters/chip-mouse/front.svg",
  33825. extra: 3528/3408,
  33826. bottom: 0/3528
  33827. }
  33828. },
  33829. frontNsfw: {
  33830. height: math.unit(4 + 10/12, "feet"),
  33831. weight: math.unit(160, "lb"),
  33832. name: "Front (NSFW)",
  33833. image: {
  33834. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33835. extra: 3528/3408,
  33836. bottom: 0/3528
  33837. }
  33838. },
  33839. },
  33840. [
  33841. {
  33842. name: "Normal",
  33843. height: math.unit(4 + 10/12, "feet"),
  33844. default: true
  33845. },
  33846. ]
  33847. ))
  33848. characterMakers.push(() => makeCharacter(
  33849. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33850. {
  33851. side: {
  33852. height: math.unit(10, "feet"),
  33853. weight: math.unit(14000, "lb"),
  33854. name: "Side",
  33855. image: {
  33856. source: "./media/characters/kremm/side.svg",
  33857. extra: 1390/1053,
  33858. bottom: 90/1480
  33859. }
  33860. },
  33861. gut: {
  33862. height: math.unit(5.8, "feet"),
  33863. name: "Gut",
  33864. image: {
  33865. source: "./media/characters/kremm/gut.svg"
  33866. }
  33867. },
  33868. ass: {
  33869. height: math.unit(6.1, "feet"),
  33870. name: "Ass",
  33871. image: {
  33872. source: "./media/characters/kremm/ass.svg"
  33873. }
  33874. },
  33875. jaws: {
  33876. height: math.unit(2.2, "feet"),
  33877. name: "Jaws",
  33878. image: {
  33879. source: "./media/characters/kremm/jaws.svg"
  33880. }
  33881. },
  33882. dick: {
  33883. height: math.unit(4.26, "feet"),
  33884. name: "Dick",
  33885. image: {
  33886. source: "./media/characters/kremm/dick.svg"
  33887. }
  33888. },
  33889. },
  33890. [
  33891. {
  33892. name: "Normal",
  33893. height: math.unit(10, "feet"),
  33894. default: true
  33895. },
  33896. ]
  33897. ))
  33898. characterMakers.push(() => makeCharacter(
  33899. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33900. {
  33901. front: {
  33902. height: math.unit(30, "stories"),
  33903. name: "Front",
  33904. image: {
  33905. source: "./media/characters/kai/front.svg",
  33906. extra: 1892/1718,
  33907. bottom: 162/2054
  33908. }
  33909. },
  33910. },
  33911. [
  33912. {
  33913. name: "Macro",
  33914. height: math.unit(30, "stories"),
  33915. default: true
  33916. },
  33917. ]
  33918. ))
  33919. characterMakers.push(() => makeCharacter(
  33920. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33921. {
  33922. front: {
  33923. height: math.unit(6 + 4/12, "feet"),
  33924. weight: math.unit(145, "lb"),
  33925. name: "Front",
  33926. image: {
  33927. source: "./media/characters/sykes/front.svg",
  33928. extra: 1321 / 1187,
  33929. bottom: 66 / 1387
  33930. }
  33931. },
  33932. back: {
  33933. height: math.unit(6 + 4/12, "feet"),
  33934. weight: math.unit(145, "lb"),
  33935. name: "Back",
  33936. image: {
  33937. source: "./media/characters/sykes/back.svg",
  33938. extra: 1326/1181,
  33939. bottom: 31/1357
  33940. }
  33941. },
  33942. handBack: {
  33943. height: math.unit(0.9, "feet"),
  33944. name: "Hand (Back)",
  33945. image: {
  33946. source: "./media/characters/sykes/hand-back.svg"
  33947. }
  33948. },
  33949. handFront: {
  33950. height: math.unit(0.839, "feet"),
  33951. name: "Hand (Front)",
  33952. image: {
  33953. source: "./media/characters/sykes/hand-front.svg"
  33954. }
  33955. },
  33956. leftFoot: {
  33957. height: math.unit(1.2, "feet"),
  33958. name: "Foot (Left)",
  33959. image: {
  33960. source: "./media/characters/sykes/foot-left.svg"
  33961. }
  33962. },
  33963. rightFoot: {
  33964. height: math.unit(1.2, "feet"),
  33965. name: "Foot (Right)",
  33966. image: {
  33967. source: "./media/characters/sykes/foot-right.svg"
  33968. }
  33969. },
  33970. maw: {
  33971. height: math.unit(1.93, "feet"),
  33972. name: "Maw",
  33973. image: {
  33974. source: "./media/characters/sykes/maw.svg"
  33975. }
  33976. },
  33977. teeth: {
  33978. height: math.unit(0.51, "feet"),
  33979. name: "Teeth",
  33980. image: {
  33981. source: "./media/characters/sykes/teeth.svg"
  33982. }
  33983. },
  33984. tongue: {
  33985. height: math.unit(2.13, "feet"),
  33986. name: "Tongue",
  33987. image: {
  33988. source: "./media/characters/sykes/tongue.svg"
  33989. }
  33990. },
  33991. uvula: {
  33992. height: math.unit(0.16, "feet"),
  33993. name: "Uvula",
  33994. image: {
  33995. source: "./media/characters/sykes/uvula.svg"
  33996. }
  33997. },
  33998. collar: {
  33999. height: math.unit(0.287, "feet"),
  34000. name: "Collar",
  34001. image: {
  34002. source: "./media/characters/sykes/collar.svg"
  34003. }
  34004. },
  34005. },
  34006. [
  34007. {
  34008. name: "Shrunken",
  34009. height: math.unit(5, "inches")
  34010. },
  34011. {
  34012. name: "Normal",
  34013. height: math.unit(6 + 4 / 12, "feet"),
  34014. default: true
  34015. },
  34016. {
  34017. name: "Big",
  34018. height: math.unit(15, "feet")
  34019. },
  34020. ]
  34021. ))
  34022. characterMakers.push(() => makeCharacter(
  34023. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34024. {
  34025. front: {
  34026. height: math.unit(5 + 8/12, "feet"),
  34027. weight: math.unit(190, "lb"),
  34028. name: "Front",
  34029. image: {
  34030. source: "./media/characters/oven-otter/front.svg",
  34031. extra: 1809/1740,
  34032. bottom: 181/1990
  34033. }
  34034. },
  34035. back: {
  34036. height: math.unit(5 + 8/12, "feet"),
  34037. weight: math.unit(190, "lb"),
  34038. name: "Back",
  34039. image: {
  34040. source: "./media/characters/oven-otter/back.svg",
  34041. extra: 1709/1635,
  34042. bottom: 118/1827
  34043. }
  34044. },
  34045. hand: {
  34046. height: math.unit(1.07, "feet"),
  34047. name: "Hand",
  34048. image: {
  34049. source: "./media/characters/oven-otter/hand.svg"
  34050. }
  34051. },
  34052. beans: {
  34053. height: math.unit(1.74, "feet"),
  34054. name: "Beans",
  34055. image: {
  34056. source: "./media/characters/oven-otter/beans.svg"
  34057. }
  34058. },
  34059. },
  34060. [
  34061. {
  34062. name: "Micro",
  34063. height: math.unit(0.5, "inches")
  34064. },
  34065. {
  34066. name: "Normal",
  34067. height: math.unit(5 + 8/12, "feet"),
  34068. default: true
  34069. },
  34070. {
  34071. name: "Macro",
  34072. height: math.unit(250, "feet")
  34073. },
  34074. {
  34075. name: "Really High",
  34076. height: math.unit(420, "feet")
  34077. },
  34078. ]
  34079. ))
  34080. characterMakers.push(() => makeCharacter(
  34081. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34082. {
  34083. front: {
  34084. height: math.unit(5, "meters"),
  34085. weight: math.unit(292000000000000, "kg"),
  34086. name: "Front",
  34087. image: {
  34088. source: "./media/characters/devourer/front.svg",
  34089. extra: 1800/1733,
  34090. bottom: 211/2011
  34091. }
  34092. },
  34093. maw: {
  34094. height: math.unit(1.1, "meter"),
  34095. name: "Maw",
  34096. image: {
  34097. source: "./media/characters/devourer/maw.svg"
  34098. }
  34099. },
  34100. },
  34101. [
  34102. {
  34103. name: "Small",
  34104. height: math.unit(3, "meters")
  34105. },
  34106. {
  34107. name: "Large",
  34108. height: math.unit(5, "meters"),
  34109. default: true
  34110. },
  34111. ]
  34112. ))
  34113. characterMakers.push(() => makeCharacter(
  34114. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34115. {
  34116. front: {
  34117. height: math.unit(6, "feet"),
  34118. weight: math.unit(400, "lb"),
  34119. name: "Front",
  34120. image: {
  34121. source: "./media/characters/ellarby/front.svg",
  34122. extra: 1909/1763,
  34123. bottom: 80/1989
  34124. }
  34125. },
  34126. back: {
  34127. height: math.unit(6, "feet"),
  34128. weight: math.unit(400, "lb"),
  34129. name: "Back",
  34130. image: {
  34131. source: "./media/characters/ellarby/back.svg",
  34132. extra: 1914/1784,
  34133. bottom: 172/2086
  34134. }
  34135. },
  34136. },
  34137. [
  34138. {
  34139. name: "Mischief",
  34140. height: math.unit(18, "inches")
  34141. },
  34142. {
  34143. name: "Trouble",
  34144. height: math.unit(12, "feet")
  34145. },
  34146. {
  34147. name: "Havoc",
  34148. height: math.unit(200, "feet"),
  34149. default: true
  34150. },
  34151. {
  34152. name: "Pandemonium",
  34153. height: math.unit(1, "mile")
  34154. },
  34155. {
  34156. name: "Catastrophe",
  34157. height: math.unit(100, "miles")
  34158. },
  34159. ]
  34160. ))
  34161. characterMakers.push(() => makeCharacter(
  34162. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34163. {
  34164. front: {
  34165. height: math.unit(4.7, "meters"),
  34166. weight: math.unit(6500, "kg"),
  34167. name: "Front",
  34168. image: {
  34169. source: "./media/characters/vex/front.svg",
  34170. extra: 1288/1140,
  34171. bottom: 100/1388
  34172. }
  34173. },
  34174. },
  34175. [
  34176. {
  34177. name: "Normal",
  34178. height: math.unit(4.7, "meters"),
  34179. default: true
  34180. },
  34181. ]
  34182. ))
  34183. characterMakers.push(() => makeCharacter(
  34184. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34185. {
  34186. normal: {
  34187. height: math.unit(6, "feet"),
  34188. weight: math.unit(350, "lb"),
  34189. name: "Normal",
  34190. image: {
  34191. source: "./media/characters/teshy/normal.svg",
  34192. extra: 1795/1735,
  34193. bottom: 16/1811
  34194. }
  34195. },
  34196. monsterFront: {
  34197. height: math.unit(12, "feet"),
  34198. weight: math.unit(4700, "lb"),
  34199. name: "Monster (Front)",
  34200. image: {
  34201. source: "./media/characters/teshy/monster-front.svg",
  34202. extra: 2042/2034,
  34203. bottom: 128/2170
  34204. }
  34205. },
  34206. monsterSide: {
  34207. height: math.unit(12, "feet"),
  34208. weight: math.unit(4700, "lb"),
  34209. name: "Monster (Side)",
  34210. image: {
  34211. source: "./media/characters/teshy/monster-side.svg",
  34212. extra: 2067/2056,
  34213. bottom: 70/2137
  34214. }
  34215. },
  34216. monsterBack: {
  34217. height: math.unit(12, "feet"),
  34218. weight: math.unit(4700, "lb"),
  34219. name: "Monster (Back)",
  34220. image: {
  34221. source: "./media/characters/teshy/monster-back.svg",
  34222. extra: 1921/1914,
  34223. bottom: 171/2092
  34224. }
  34225. },
  34226. },
  34227. [
  34228. {
  34229. name: "Normal",
  34230. height: math.unit(6, "feet"),
  34231. default: true
  34232. },
  34233. ]
  34234. ))
  34235. characterMakers.push(() => makeCharacter(
  34236. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34237. {
  34238. front: {
  34239. height: math.unit(6, "feet"),
  34240. name: "Front",
  34241. image: {
  34242. source: "./media/characters/ramey/front.svg",
  34243. extra: 790/787,
  34244. bottom: 27/817
  34245. }
  34246. },
  34247. },
  34248. [
  34249. {
  34250. name: "Normal",
  34251. height: math.unit(6, "feet"),
  34252. default: true
  34253. },
  34254. ]
  34255. ))
  34256. characterMakers.push(() => makeCharacter(
  34257. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34258. {
  34259. front: {
  34260. height: math.unit(5 + 5/12, "feet"),
  34261. weight: math.unit(120, "lb"),
  34262. name: "Front",
  34263. image: {
  34264. source: "./media/characters/phirae/front.svg",
  34265. extra: 2491/2436,
  34266. bottom: 38/2529
  34267. }
  34268. },
  34269. },
  34270. [
  34271. {
  34272. name: "Normal",
  34273. height: math.unit(5 + 5/12, "feet"),
  34274. default: true
  34275. },
  34276. ]
  34277. ))
  34278. characterMakers.push(() => makeCharacter(
  34279. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34280. {
  34281. front: {
  34282. height: math.unit(5 + 3/12, "feet"),
  34283. name: "Front",
  34284. image: {
  34285. source: "./media/characters/stagglas/front.svg",
  34286. extra: 962/882,
  34287. bottom: 53/1015
  34288. }
  34289. },
  34290. feral: {
  34291. height: math.unit(335, "cm"),
  34292. name: "Feral",
  34293. image: {
  34294. source: "./media/characters/stagglas/feral.svg",
  34295. extra: 1732/1090,
  34296. bottom: 48/1780
  34297. }
  34298. },
  34299. },
  34300. [
  34301. {
  34302. name: "Normal",
  34303. height: math.unit(5 + 3/12, "feet"),
  34304. default: true
  34305. },
  34306. ]
  34307. ))
  34308. characterMakers.push(() => makeCharacter(
  34309. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34310. {
  34311. front: {
  34312. height: math.unit(5 + 4/12, "feet"),
  34313. weight: math.unit(145, "lb"),
  34314. name: "Front",
  34315. image: {
  34316. source: "./media/characters/starra/front.svg",
  34317. extra: 1790/1691,
  34318. bottom: 91/1881
  34319. }
  34320. },
  34321. },
  34322. [
  34323. {
  34324. name: "Normal",
  34325. height: math.unit(5 + 4/12, "feet"),
  34326. default: true
  34327. },
  34328. ]
  34329. ))
  34330. characterMakers.push(() => makeCharacter(
  34331. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34332. {
  34333. front: {
  34334. height: math.unit(2.2, "meters"),
  34335. name: "Front",
  34336. image: {
  34337. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34338. extra: 1194/1005,
  34339. bottom: 25/1219
  34340. }
  34341. },
  34342. },
  34343. [
  34344. {
  34345. name: "Normal",
  34346. height: math.unit(2.2, "meters"),
  34347. default: true
  34348. },
  34349. ]
  34350. ))
  34351. characterMakers.push(() => makeCharacter(
  34352. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34353. {
  34354. side: {
  34355. height: math.unit(8 + 2/12, "feet"),
  34356. weight: math.unit(1240, "lb"),
  34357. name: "Side",
  34358. image: {
  34359. source: "./media/characters/mika-valentine/side.svg",
  34360. extra: 2670/2501,
  34361. bottom: 250/2920
  34362. }
  34363. },
  34364. },
  34365. [
  34366. {
  34367. name: "Normal",
  34368. height: math.unit(8 + 2/12, "feet"),
  34369. default: true
  34370. },
  34371. ]
  34372. ))
  34373. characterMakers.push(() => makeCharacter(
  34374. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34375. {
  34376. front: {
  34377. height: math.unit(7 + 2/12, "feet"),
  34378. name: "Front",
  34379. image: {
  34380. source: "./media/characters/xoltol/front.svg",
  34381. extra: 2212/2124,
  34382. bottom: 84/2296
  34383. }
  34384. },
  34385. side: {
  34386. height: math.unit(7 + 2/12, "feet"),
  34387. name: "Side",
  34388. image: {
  34389. source: "./media/characters/xoltol/side.svg",
  34390. extra: 2273/2197,
  34391. bottom: 26/2299
  34392. }
  34393. },
  34394. hand: {
  34395. height: math.unit(2.5, "feet"),
  34396. name: "Hand",
  34397. image: {
  34398. source: "./media/characters/xoltol/hand.svg"
  34399. }
  34400. },
  34401. },
  34402. [
  34403. {
  34404. name: "Small-ish",
  34405. height: math.unit(5 + 11/12, "feet")
  34406. },
  34407. {
  34408. name: "Normal",
  34409. height: math.unit(7 + 2/12, "feet")
  34410. },
  34411. {
  34412. name: "\"Macro\"",
  34413. height: math.unit(14 + 9/12, "feet"),
  34414. default: true
  34415. },
  34416. {
  34417. name: "Alternate Height",
  34418. height: math.unit(20, "feet")
  34419. },
  34420. {
  34421. name: "Actually Macro",
  34422. height: math.unit(100, "feet")
  34423. },
  34424. ]
  34425. ))
  34426. characterMakers.push(() => makeCharacter(
  34427. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34428. {
  34429. front: {
  34430. height: math.unit(5 + 2/12, "feet"),
  34431. name: "Front",
  34432. image: {
  34433. source: "./media/characters/kotetsu-redwood/front.svg",
  34434. extra: 1053/942,
  34435. bottom: 60/1113
  34436. }
  34437. },
  34438. },
  34439. [
  34440. {
  34441. name: "Normal",
  34442. height: math.unit(5 + 2/12, "feet"),
  34443. default: true
  34444. },
  34445. ]
  34446. ))
  34447. characterMakers.push(() => makeCharacter(
  34448. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34449. {
  34450. front: {
  34451. height: math.unit(2.4, "meters"),
  34452. weight: math.unit(125, "kg"),
  34453. name: "Front",
  34454. image: {
  34455. source: "./media/characters/lilith/front.svg",
  34456. extra: 1590/1513,
  34457. bottom: 203/1793
  34458. }
  34459. },
  34460. },
  34461. [
  34462. {
  34463. name: "Humanoid",
  34464. height: math.unit(2.4, "meters")
  34465. },
  34466. {
  34467. name: "Normal",
  34468. height: math.unit(6, "meters"),
  34469. default: true
  34470. },
  34471. {
  34472. name: "Largest",
  34473. height: math.unit(55, "meters")
  34474. },
  34475. ]
  34476. ))
  34477. characterMakers.push(() => makeCharacter(
  34478. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34479. {
  34480. front: {
  34481. height: math.unit(8 + 4/12, "feet"),
  34482. weight: math.unit(535, "lb"),
  34483. name: "Front",
  34484. image: {
  34485. source: "./media/characters/beh'kah-bolger/front.svg",
  34486. extra: 1660/1603,
  34487. bottom: 37/1697
  34488. }
  34489. },
  34490. },
  34491. [
  34492. {
  34493. name: "Normal",
  34494. height: math.unit(8 + 4/12, "feet"),
  34495. default: true
  34496. },
  34497. {
  34498. name: "Kaiju",
  34499. height: math.unit(250, "feet")
  34500. },
  34501. {
  34502. name: "Still Growing",
  34503. height: math.unit(10, "miles")
  34504. },
  34505. {
  34506. name: "Continental",
  34507. height: math.unit(5000, "miles")
  34508. },
  34509. {
  34510. name: "Final Form",
  34511. height: math.unit(2500000, "miles")
  34512. },
  34513. ]
  34514. ))
  34515. characterMakers.push(() => makeCharacter(
  34516. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34517. {
  34518. front: {
  34519. height: math.unit(7 + 2/12, "feet"),
  34520. weight: math.unit(230, "kg"),
  34521. name: "Front",
  34522. image: {
  34523. source: "./media/characters/tatyana-milewska/front.svg",
  34524. extra: 1199/1150,
  34525. bottom: 86/1285
  34526. }
  34527. },
  34528. },
  34529. [
  34530. {
  34531. name: "Normal",
  34532. height: math.unit(7 + 2/12, "feet"),
  34533. default: true
  34534. },
  34535. {
  34536. name: "Big",
  34537. height: math.unit(12, "feet")
  34538. },
  34539. {
  34540. name: "Minimacro",
  34541. height: math.unit(20, "feet")
  34542. },
  34543. {
  34544. name: "Macro",
  34545. height: math.unit(120, "feet")
  34546. },
  34547. ]
  34548. ))
  34549. characterMakers.push(() => makeCharacter(
  34550. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34551. {
  34552. front: {
  34553. height: math.unit(7 + 8/12, "feet"),
  34554. weight: math.unit(152, "kg"),
  34555. name: "Front",
  34556. image: {
  34557. source: "./media/characters/helen-arri/front.svg",
  34558. extra: 440/423,
  34559. bottom: 14/454
  34560. }
  34561. },
  34562. back: {
  34563. height: math.unit(7 + 8/12, "feet"),
  34564. weight: math.unit(152, "kg"),
  34565. name: "Back",
  34566. image: {
  34567. source: "./media/characters/helen-arri/back.svg",
  34568. extra: 443/426,
  34569. bottom: 8/451
  34570. }
  34571. },
  34572. },
  34573. [
  34574. {
  34575. name: "Normal",
  34576. height: math.unit(7 + 8/12, "feet"),
  34577. default: true
  34578. },
  34579. {
  34580. name: "Big",
  34581. height: math.unit(14, "feet")
  34582. },
  34583. {
  34584. name: "Minimacro",
  34585. height: math.unit(24, "feet")
  34586. },
  34587. {
  34588. name: "Macro",
  34589. height: math.unit(140, "feet")
  34590. },
  34591. ]
  34592. ))
  34593. characterMakers.push(() => makeCharacter(
  34594. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34595. {
  34596. front: {
  34597. height: math.unit(6, "meters"),
  34598. name: "Front",
  34599. image: {
  34600. source: "./media/characters/ehanu-rehu/front.svg",
  34601. extra: 1800/1800,
  34602. bottom: 59/1859
  34603. }
  34604. },
  34605. },
  34606. [
  34607. {
  34608. name: "Normal",
  34609. height: math.unit(6, "meters"),
  34610. default: true
  34611. },
  34612. ]
  34613. ))
  34614. characterMakers.push(() => makeCharacter(
  34615. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34616. {
  34617. front: {
  34618. height: math.unit(7 + 3/12, "feet"),
  34619. name: "Front",
  34620. image: {
  34621. source: "./media/characters/renholder/front.svg",
  34622. extra: 3096/2960,
  34623. bottom: 250/3346
  34624. }
  34625. },
  34626. },
  34627. [
  34628. {
  34629. name: "Normal Bat",
  34630. height: math.unit(7 + 3/12, "feet"),
  34631. default: true
  34632. },
  34633. {
  34634. name: "Slightly Tall Bat",
  34635. height: math.unit(100, "feet")
  34636. },
  34637. {
  34638. name: "Big Bat",
  34639. height: math.unit(1000, "feet")
  34640. },
  34641. {
  34642. name: "City-Sized Bat",
  34643. height: math.unit(200000, "feet")
  34644. },
  34645. {
  34646. name: "Bigger Bat",
  34647. height: math.unit(10000, "miles")
  34648. },
  34649. {
  34650. name: "Solar Sized Bat",
  34651. height: math.unit(100, "AU")
  34652. },
  34653. {
  34654. name: "Galactic Bat",
  34655. height: math.unit(200000, "lightyears")
  34656. },
  34657. {
  34658. name: "Universally Known Bat",
  34659. height: math.unit(1, "universe")
  34660. },
  34661. ]
  34662. ))
  34663. characterMakers.push(() => makeCharacter(
  34664. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34665. {
  34666. front: {
  34667. height: math.unit(6 + 11/12, "feet"),
  34668. weight: math.unit(250, "lb"),
  34669. name: "Front",
  34670. image: {
  34671. source: "./media/characters/cookiecat/front.svg",
  34672. extra: 893/827,
  34673. bottom: 14/907
  34674. }
  34675. },
  34676. },
  34677. [
  34678. {
  34679. name: "Micro",
  34680. height: math.unit(3, "inches")
  34681. },
  34682. {
  34683. name: "Normal",
  34684. height: math.unit(6 + 11/12, "feet"),
  34685. default: true
  34686. },
  34687. {
  34688. name: "Macro",
  34689. height: math.unit(100, "feet")
  34690. },
  34691. {
  34692. name: "Macro+",
  34693. height: math.unit(404, "feet")
  34694. },
  34695. {
  34696. name: "Megamacro",
  34697. height: math.unit(165, "miles")
  34698. },
  34699. {
  34700. name: "Planetary",
  34701. height: math.unit(4600, "miles")
  34702. },
  34703. ]
  34704. ))
  34705. characterMakers.push(() => makeCharacter(
  34706. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34707. {
  34708. front: {
  34709. height: math.unit(10 + 3/12, "feet"),
  34710. weight: math.unit(1500, "lb"),
  34711. name: "Front",
  34712. image: {
  34713. source: "./media/characters/tux-kusanagi/front.svg",
  34714. extra: 944/840,
  34715. bottom: 39/983
  34716. }
  34717. },
  34718. back: {
  34719. height: math.unit(10 + 3/12, "feet"),
  34720. weight: math.unit(1500, "lb"),
  34721. name: "Back",
  34722. image: {
  34723. source: "./media/characters/tux-kusanagi/back.svg",
  34724. extra: 941/842,
  34725. bottom: 28/969
  34726. }
  34727. },
  34728. rump: {
  34729. height: math.unit(5.25, "feet"),
  34730. name: "Rump",
  34731. image: {
  34732. source: "./media/characters/tux-kusanagi/rump.svg"
  34733. }
  34734. },
  34735. beak: {
  34736. height: math.unit(1.54, "feet"),
  34737. name: "Beak",
  34738. image: {
  34739. source: "./media/characters/tux-kusanagi/beak.svg"
  34740. }
  34741. },
  34742. },
  34743. [
  34744. {
  34745. name: "Normal",
  34746. height: math.unit(10 + 3/12, "feet"),
  34747. default: true
  34748. },
  34749. ]
  34750. ))
  34751. characterMakers.push(() => makeCharacter(
  34752. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34753. {
  34754. front: {
  34755. height: math.unit(58, "feet"),
  34756. weight: math.unit(200, "tons"),
  34757. name: "Front",
  34758. image: {
  34759. source: "./media/characters/uzarmazari/front.svg",
  34760. extra: 1575/1455,
  34761. bottom: 152/1727
  34762. }
  34763. },
  34764. back: {
  34765. height: math.unit(58, "feet"),
  34766. weight: math.unit(200, "tons"),
  34767. name: "Back",
  34768. image: {
  34769. source: "./media/characters/uzarmazari/back.svg",
  34770. extra: 1585/1510,
  34771. bottom: 157/1742
  34772. }
  34773. },
  34774. head: {
  34775. height: math.unit(26, "feet"),
  34776. name: "Head",
  34777. image: {
  34778. source: "./media/characters/uzarmazari/head.svg"
  34779. }
  34780. },
  34781. },
  34782. [
  34783. {
  34784. name: "Normal",
  34785. height: math.unit(58, "feet"),
  34786. default: true
  34787. },
  34788. ]
  34789. ))
  34790. characterMakers.push(() => makeCharacter(
  34791. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34792. {
  34793. side: {
  34794. height: math.unit(15, "feet"),
  34795. name: "Side",
  34796. image: {
  34797. source: "./media/characters/akitu/side.svg",
  34798. extra: 1421/1321,
  34799. bottom: 157/1578
  34800. }
  34801. },
  34802. front: {
  34803. height: math.unit(15, "feet"),
  34804. name: "Front",
  34805. image: {
  34806. source: "./media/characters/akitu/front.svg",
  34807. extra: 1435/1326,
  34808. bottom: 232/1667
  34809. }
  34810. },
  34811. },
  34812. [
  34813. {
  34814. name: "Normal",
  34815. height: math.unit(15, "feet"),
  34816. default: true
  34817. },
  34818. ]
  34819. ))
  34820. characterMakers.push(() => makeCharacter(
  34821. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34822. {
  34823. front: {
  34824. height: math.unit(10 + 8/12, "feet"),
  34825. name: "Front",
  34826. image: {
  34827. source: "./media/characters/azalie-croixland/front.svg",
  34828. extra: 1972/1856,
  34829. bottom: 31/2003
  34830. }
  34831. },
  34832. },
  34833. [
  34834. {
  34835. name: "Original Height",
  34836. height: math.unit(5 + 4/12, "feet")
  34837. },
  34838. {
  34839. name: "Normal Height",
  34840. height: math.unit(10 + 8/12, "feet"),
  34841. default: true
  34842. },
  34843. ]
  34844. ))
  34845. characterMakers.push(() => makeCharacter(
  34846. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34847. {
  34848. side: {
  34849. height: math.unit(7 + 1/12, "feet"),
  34850. weight: math.unit(245, "lb"),
  34851. name: "Side",
  34852. image: {
  34853. source: "./media/characters/kavus-kazian/side.svg",
  34854. extra: 349/342,
  34855. bottom: 15/364
  34856. }
  34857. },
  34858. },
  34859. [
  34860. {
  34861. name: "Normal",
  34862. height: math.unit(7 + 1/12, "feet"),
  34863. default: true
  34864. },
  34865. ]
  34866. ))
  34867. characterMakers.push(() => makeCharacter(
  34868. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34869. {
  34870. normal: {
  34871. height: math.unit(5 + 11/12, "feet"),
  34872. name: "Normal",
  34873. image: {
  34874. source: "./media/characters/moonlight-rose/normal.svg",
  34875. extra: 1979/1835,
  34876. bottom: 14/1993
  34877. }
  34878. },
  34879. demon: {
  34880. height: math.unit(5, "km"),
  34881. name: "Demon",
  34882. image: {
  34883. source: "./media/characters/moonlight-rose/demon.svg",
  34884. extra: 986/916,
  34885. bottom: 28/1014
  34886. }
  34887. },
  34888. },
  34889. [
  34890. {
  34891. name: "\"Natural\" height",
  34892. height: math.unit(5 + 11/12, "feet")
  34893. },
  34894. {
  34895. name: "Comfortable Size",
  34896. height: math.unit(40, "meters")
  34897. },
  34898. {
  34899. name: "Common Size",
  34900. height: math.unit(50, "km"),
  34901. default: true
  34902. },
  34903. {
  34904. name: "Demonic",
  34905. height: math.unit(1.24415e+21, "meters")
  34906. },
  34907. ]
  34908. ))
  34909. characterMakers.push(() => makeCharacter(
  34910. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34911. {
  34912. front: {
  34913. height: math.unit(16, "feet"),
  34914. weight: math.unit(610, "kg"),
  34915. name: "Front",
  34916. image: {
  34917. source: "./media/characters/huckle/front.svg",
  34918. extra: 1731/1625,
  34919. bottom: 33/1764
  34920. }
  34921. },
  34922. back: {
  34923. height: math.unit(16, "feet"),
  34924. weight: math.unit(610, "kg"),
  34925. name: "Back",
  34926. image: {
  34927. source: "./media/characters/huckle/back.svg",
  34928. extra: 1738/1651,
  34929. bottom: 37/1775
  34930. }
  34931. },
  34932. laughing: {
  34933. height: math.unit(3.75, "feet"),
  34934. name: "Laughing",
  34935. image: {
  34936. source: "./media/characters/huckle/laughing.svg"
  34937. }
  34938. },
  34939. angry: {
  34940. height: math.unit(4.15, "feet"),
  34941. name: "Angry",
  34942. image: {
  34943. source: "./media/characters/huckle/angry.svg"
  34944. }
  34945. },
  34946. },
  34947. [
  34948. {
  34949. name: "Normal",
  34950. height: math.unit(16, "feet"),
  34951. default: true
  34952. },
  34953. {
  34954. name: "Mini Macro",
  34955. height: math.unit(463, "feet")
  34956. },
  34957. {
  34958. name: "Macro",
  34959. height: math.unit(1680, "meters")
  34960. },
  34961. {
  34962. name: "Mega Macro",
  34963. height: math.unit(175, "km")
  34964. },
  34965. {
  34966. name: "Terra Macro",
  34967. height: math.unit(32, "gigameters")
  34968. },
  34969. {
  34970. name: "Multiverse+",
  34971. height: math.unit(2.56e23, "yottameters")
  34972. },
  34973. ]
  34974. ))
  34975. characterMakers.push(() => makeCharacter(
  34976. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34977. {
  34978. front: {
  34979. height: math.unit(6 + 9/12, "feet"),
  34980. weight: math.unit(280, "lb"),
  34981. name: "Front",
  34982. image: {
  34983. source: "./media/characters/candy/front.svg",
  34984. extra: 234/217,
  34985. bottom: 11/245
  34986. }
  34987. },
  34988. },
  34989. [
  34990. {
  34991. name: "Really Small",
  34992. height: math.unit(0.1, "nm")
  34993. },
  34994. {
  34995. name: "Micro",
  34996. height: math.unit(2, "inches")
  34997. },
  34998. {
  34999. name: "Normal",
  35000. height: math.unit(6 + 9/12, "feet"),
  35001. default: true
  35002. },
  35003. {
  35004. name: "Small Macro",
  35005. height: math.unit(69, "feet")
  35006. },
  35007. {
  35008. name: "Macro",
  35009. height: math.unit(160, "feet")
  35010. },
  35011. {
  35012. name: "Megamacro",
  35013. height: math.unit(22000, "miles")
  35014. },
  35015. {
  35016. name: "Gigamacro",
  35017. height: math.unit(50000, "miles")
  35018. },
  35019. ]
  35020. ))
  35021. characterMakers.push(() => makeCharacter(
  35022. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35023. {
  35024. front: {
  35025. height: math.unit(4, "feet"),
  35026. weight: math.unit(90, "lb"),
  35027. name: "Front",
  35028. image: {
  35029. source: "./media/characters/joey-mcdonald/front.svg",
  35030. extra: 1059/852,
  35031. bottom: 33/1092
  35032. }
  35033. },
  35034. back: {
  35035. height: math.unit(4, "feet"),
  35036. weight: math.unit(90, "lb"),
  35037. name: "Back",
  35038. image: {
  35039. source: "./media/characters/joey-mcdonald/back.svg",
  35040. extra: 1077/879,
  35041. bottom: 5/1082
  35042. }
  35043. },
  35044. frontKobold: {
  35045. height: math.unit(4, "feet"),
  35046. weight: math.unit(100, "lb"),
  35047. name: "Front-kobold",
  35048. image: {
  35049. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35050. extra: 1480/1367,
  35051. bottom: 0/1480
  35052. }
  35053. },
  35054. backKobold: {
  35055. height: math.unit(4, "feet"),
  35056. weight: math.unit(100, "lb"),
  35057. name: "Back-kobold",
  35058. image: {
  35059. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35060. extra: 1449/1361,
  35061. bottom: 0/1449
  35062. }
  35063. },
  35064. },
  35065. [
  35066. {
  35067. name: "Normal",
  35068. height: math.unit(4, "feet"),
  35069. default: true
  35070. },
  35071. ]
  35072. ))
  35073. characterMakers.push(() => makeCharacter(
  35074. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35075. {
  35076. front: {
  35077. height: math.unit(12 + 6/12, "feet"),
  35078. name: "Front",
  35079. image: {
  35080. source: "./media/characters/kass-lockheed/front.svg",
  35081. extra: 354/343,
  35082. bottom: 9/363
  35083. }
  35084. },
  35085. back: {
  35086. height: math.unit(12 + 6/12, "feet"),
  35087. name: "Back",
  35088. image: {
  35089. source: "./media/characters/kass-lockheed/back.svg",
  35090. extra: 364/352,
  35091. bottom: 3/367
  35092. }
  35093. },
  35094. dick: {
  35095. height: math.unit(3.12, "feet"),
  35096. name: "Dick",
  35097. image: {
  35098. source: "./media/characters/kass-lockheed/dick.svg"
  35099. }
  35100. },
  35101. head: {
  35102. height: math.unit(2.6, "feet"),
  35103. name: "Head",
  35104. image: {
  35105. source: "./media/characters/kass-lockheed/head.svg"
  35106. }
  35107. },
  35108. bleh: {
  35109. height: math.unit(2.85, "feet"),
  35110. name: "Bleh",
  35111. image: {
  35112. source: "./media/characters/kass-lockheed/bleh.svg"
  35113. }
  35114. },
  35115. smug: {
  35116. height: math.unit(2.85, "feet"),
  35117. name: "Smug",
  35118. image: {
  35119. source: "./media/characters/kass-lockheed/smug.svg"
  35120. }
  35121. },
  35122. },
  35123. [
  35124. {
  35125. name: "Normal",
  35126. height: math.unit(12 + 6/12, "feet"),
  35127. default: true
  35128. },
  35129. ]
  35130. ))
  35131. characterMakers.push(() => makeCharacter(
  35132. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35133. {
  35134. front: {
  35135. height: math.unit(6 + 2/12, "feet"),
  35136. name: "Front",
  35137. image: {
  35138. source: "./media/characters/taylor/front.svg",
  35139. extra: 639/495,
  35140. bottom: 12/651
  35141. }
  35142. },
  35143. },
  35144. [
  35145. {
  35146. name: "Normal",
  35147. height: math.unit(6 + 2/12, "feet"),
  35148. default: true
  35149. },
  35150. {
  35151. name: "Big",
  35152. height: math.unit(15, "feet")
  35153. },
  35154. {
  35155. name: "Lorg",
  35156. height: math.unit(80, "feet")
  35157. },
  35158. {
  35159. name: "Too Lorg",
  35160. height: math.unit(120, "feet")
  35161. },
  35162. ]
  35163. ))
  35164. characterMakers.push(() => makeCharacter(
  35165. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35166. {
  35167. front: {
  35168. height: math.unit(15, "feet"),
  35169. name: "Front",
  35170. image: {
  35171. source: "./media/characters/kaizer/front.svg",
  35172. extra: 1612/1436,
  35173. bottom: 43/1655
  35174. }
  35175. },
  35176. },
  35177. [
  35178. {
  35179. name: "Normal",
  35180. height: math.unit(15, "feet"),
  35181. default: true
  35182. },
  35183. ]
  35184. ))
  35185. characterMakers.push(() => makeCharacter(
  35186. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35187. {
  35188. front: {
  35189. height: math.unit(2, "feet"),
  35190. weight: math.unit(30, "lb"),
  35191. name: "Front",
  35192. image: {
  35193. source: "./media/characters/sandy/front.svg",
  35194. extra: 1439/1307,
  35195. bottom: 194/1633
  35196. }
  35197. },
  35198. },
  35199. [
  35200. {
  35201. name: "Normal",
  35202. height: math.unit(2, "feet"),
  35203. default: true
  35204. },
  35205. ]
  35206. ))
  35207. characterMakers.push(() => makeCharacter(
  35208. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35209. {
  35210. front: {
  35211. height: math.unit(3, "feet"),
  35212. name: "Front",
  35213. image: {
  35214. source: "./media/characters/mellvi/front.svg",
  35215. extra: 1831/1630,
  35216. bottom: 58/1889
  35217. }
  35218. },
  35219. },
  35220. [
  35221. {
  35222. name: "Normal",
  35223. height: math.unit(3, "feet"),
  35224. default: true
  35225. },
  35226. ]
  35227. ))
  35228. characterMakers.push(() => makeCharacter(
  35229. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35230. {
  35231. front: {
  35232. height: math.unit(5 + 11/12, "feet"),
  35233. weight: math.unit(200, "lb"),
  35234. name: "Front",
  35235. image: {
  35236. source: "./media/characters/shirou/front.svg",
  35237. extra: 2491/2383,
  35238. bottom: 189/2680
  35239. }
  35240. },
  35241. back: {
  35242. height: math.unit(5 + 11/12, "feet"),
  35243. weight: math.unit(200, "lb"),
  35244. name: "Back",
  35245. image: {
  35246. source: "./media/characters/shirou/back.svg",
  35247. extra: 2554/2450,
  35248. bottom: 76/2630
  35249. }
  35250. },
  35251. },
  35252. [
  35253. {
  35254. name: "Normal",
  35255. height: math.unit(5 + 11/12, "feet"),
  35256. default: true
  35257. },
  35258. ]
  35259. ))
  35260. characterMakers.push(() => makeCharacter(
  35261. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35262. {
  35263. front: {
  35264. height: math.unit(6 + 3/12, "feet"),
  35265. weight: math.unit(177, "lb"),
  35266. name: "Front",
  35267. image: {
  35268. source: "./media/characters/noryu/front.svg",
  35269. extra: 973/885,
  35270. bottom: 10/983
  35271. }
  35272. },
  35273. },
  35274. [
  35275. {
  35276. name: "Normal",
  35277. height: math.unit(6 + 3/12, "feet"),
  35278. default: true
  35279. },
  35280. ]
  35281. ))
  35282. characterMakers.push(() => makeCharacter(
  35283. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35284. {
  35285. front: {
  35286. height: math.unit(5 + 6/12, "feet"),
  35287. weight: math.unit(170, "lb"),
  35288. name: "Front",
  35289. image: {
  35290. source: "./media/characters/mevolas-rubenido/front.svg",
  35291. extra: 2109/1901,
  35292. bottom: 96/2205
  35293. }
  35294. },
  35295. },
  35296. [
  35297. {
  35298. name: "Normal",
  35299. height: math.unit(5 + 6/12, "feet"),
  35300. default: true
  35301. },
  35302. ]
  35303. ))
  35304. characterMakers.push(() => makeCharacter(
  35305. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35306. {
  35307. front: {
  35308. height: math.unit(100, "feet"),
  35309. name: "Front",
  35310. image: {
  35311. source: "./media/characters/dee/front.svg",
  35312. extra: 2153/2036,
  35313. bottom: 59/2212
  35314. }
  35315. },
  35316. back: {
  35317. height: math.unit(100, "feet"),
  35318. name: "Back",
  35319. image: {
  35320. source: "./media/characters/dee/back.svg",
  35321. extra: 2183/2058,
  35322. bottom: 75/2258
  35323. }
  35324. },
  35325. foot: {
  35326. height: math.unit(19.43, "feet"),
  35327. name: "Foot",
  35328. image: {
  35329. source: "./media/characters/dee/foot.svg"
  35330. }
  35331. },
  35332. hoof: {
  35333. height: math.unit(20.6, "feet"),
  35334. name: "Hoof",
  35335. image: {
  35336. source: "./media/characters/dee/hoof.svg"
  35337. }
  35338. },
  35339. },
  35340. [
  35341. {
  35342. name: "Macro",
  35343. height: math.unit(100, "feet"),
  35344. default: true
  35345. },
  35346. ]
  35347. ))
  35348. characterMakers.push(() => makeCharacter(
  35349. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35350. {
  35351. front: {
  35352. height: math.unit(5 + 6/12, "feet"),
  35353. name: "Front",
  35354. image: {
  35355. source: "./media/characters/teh/front.svg",
  35356. extra: 1002/847,
  35357. bottom: 62/1064
  35358. }
  35359. },
  35360. },
  35361. [
  35362. {
  35363. name: "Normal",
  35364. height: math.unit(5 + 6/12, "feet"),
  35365. default: true
  35366. },
  35367. ]
  35368. ))
  35369. characterMakers.push(() => makeCharacter(
  35370. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35371. {
  35372. side: {
  35373. height: math.unit(6 + 1/12, "feet"),
  35374. weight: math.unit(204, "lb"),
  35375. name: "Side",
  35376. image: {
  35377. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35378. extra: 974/775,
  35379. bottom: 169/1143
  35380. }
  35381. },
  35382. sitting: {
  35383. height: math.unit(6 + 2/12, "feet"),
  35384. weight: math.unit(204, "lb"),
  35385. name: "Sitting",
  35386. image: {
  35387. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35388. extra: 1175/964,
  35389. bottom: 378/1553
  35390. }
  35391. },
  35392. },
  35393. [
  35394. {
  35395. name: "Normal",
  35396. height: math.unit(6 + 1/12, "feet"),
  35397. default: true
  35398. },
  35399. ]
  35400. ))
  35401. characterMakers.push(() => makeCharacter(
  35402. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35403. {
  35404. front: {
  35405. height: math.unit(6, "inches"),
  35406. name: "Front",
  35407. image: {
  35408. source: "./media/characters/tululi/front.svg",
  35409. extra: 1997/1876,
  35410. bottom: 20/2017
  35411. }
  35412. },
  35413. },
  35414. [
  35415. {
  35416. name: "Normal",
  35417. height: math.unit(6, "inches"),
  35418. default: true
  35419. },
  35420. ]
  35421. ))
  35422. characterMakers.push(() => makeCharacter(
  35423. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35424. {
  35425. front: {
  35426. height: math.unit(4 + 1/12, "feet"),
  35427. name: "Front",
  35428. image: {
  35429. source: "./media/characters/star/front.svg",
  35430. extra: 1493/1189,
  35431. bottom: 48/1541
  35432. }
  35433. },
  35434. },
  35435. [
  35436. {
  35437. name: "Normal",
  35438. height: math.unit(4 + 1/12, "feet"),
  35439. default: true
  35440. },
  35441. ]
  35442. ))
  35443. characterMakers.push(() => makeCharacter(
  35444. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35445. {
  35446. front: {
  35447. height: math.unit(6 + 3/12, "feet"),
  35448. name: "Front",
  35449. image: {
  35450. source: "./media/characters/comet/front.svg",
  35451. extra: 1681/1462,
  35452. bottom: 26/1707
  35453. }
  35454. },
  35455. },
  35456. [
  35457. {
  35458. name: "Normal",
  35459. height: math.unit(6 + 3/12, "feet"),
  35460. default: true
  35461. },
  35462. ]
  35463. ))
  35464. characterMakers.push(() => makeCharacter(
  35465. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35466. {
  35467. front: {
  35468. height: math.unit(950, "feet"),
  35469. name: "Front",
  35470. image: {
  35471. source: "./media/characters/vortex/front.svg",
  35472. extra: 1497/1434,
  35473. bottom: 56/1553
  35474. }
  35475. },
  35476. maw: {
  35477. height: math.unit(285, "feet"),
  35478. name: "Maw",
  35479. image: {
  35480. source: "./media/characters/vortex/maw.svg"
  35481. }
  35482. },
  35483. },
  35484. [
  35485. {
  35486. name: "Macro",
  35487. height: math.unit(950, "feet"),
  35488. default: true
  35489. },
  35490. ]
  35491. ))
  35492. characterMakers.push(() => makeCharacter(
  35493. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35494. {
  35495. front: {
  35496. height: math.unit(600, "feet"),
  35497. weight: math.unit(0.02, "grams"),
  35498. name: "Front",
  35499. image: {
  35500. source: "./media/characters/doodle/front.svg",
  35501. extra: 1578/1413,
  35502. bottom: 37/1615
  35503. }
  35504. },
  35505. },
  35506. [
  35507. {
  35508. name: "Macro",
  35509. height: math.unit(600, "feet"),
  35510. default: true
  35511. },
  35512. ]
  35513. ))
  35514. characterMakers.push(() => makeCharacter(
  35515. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35516. {
  35517. front: {
  35518. height: math.unit(6 + 6/12, "feet"),
  35519. name: "Front",
  35520. image: {
  35521. source: "./media/characters/jai/front.svg",
  35522. extra: 1645/1534,
  35523. bottom: 115/1760
  35524. }
  35525. },
  35526. },
  35527. [
  35528. {
  35529. name: "Normal",
  35530. height: math.unit(6 + 6/12, "feet"),
  35531. default: true
  35532. },
  35533. ]
  35534. ))
  35535. characterMakers.push(() => makeCharacter(
  35536. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35537. {
  35538. front: {
  35539. height: math.unit(6 + 8/12, "feet"),
  35540. name: "Front",
  35541. image: {
  35542. source: "./media/characters/pixel/front.svg",
  35543. extra: 1900/1735,
  35544. bottom: 63/1963
  35545. }
  35546. },
  35547. },
  35548. [
  35549. {
  35550. name: "Normal",
  35551. height: math.unit(6 + 8/12, "feet"),
  35552. default: true
  35553. },
  35554. ]
  35555. ))
  35556. characterMakers.push(() => makeCharacter(
  35557. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35558. {
  35559. back: {
  35560. height: math.unit(4 + 1/12, "feet"),
  35561. weight: math.unit(75, "lb"),
  35562. name: "Back",
  35563. image: {
  35564. source: "./media/characters/rhett/back.svg",
  35565. extra: 930/878,
  35566. bottom: 25/955
  35567. }
  35568. },
  35569. front: {
  35570. height: math.unit(4 + 1/12, "feet"),
  35571. weight: math.unit(75, "lb"),
  35572. name: "Front",
  35573. image: {
  35574. source: "./media/characters/rhett/front.svg",
  35575. extra: 1682/1586,
  35576. bottom: 92/1774
  35577. }
  35578. },
  35579. },
  35580. [
  35581. {
  35582. name: "Micro",
  35583. height: math.unit(8, "inches")
  35584. },
  35585. {
  35586. name: "Tiny",
  35587. height: math.unit(2, "feet")
  35588. },
  35589. {
  35590. name: "Normal",
  35591. height: math.unit(4 + 1/12, "feet"),
  35592. default: true
  35593. },
  35594. ]
  35595. ))
  35596. characterMakers.push(() => makeCharacter(
  35597. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35598. {
  35599. front: {
  35600. height: math.unit(3 + 3/12, "feet"),
  35601. name: "Front",
  35602. image: {
  35603. source: "./media/characters/penny/front.svg",
  35604. extra: 1406/1311,
  35605. bottom: 26/1432
  35606. }
  35607. },
  35608. },
  35609. [
  35610. {
  35611. name: "Normal",
  35612. height: math.unit(3 + 3/12, "feet"),
  35613. default: true
  35614. },
  35615. ]
  35616. ))
  35617. characterMakers.push(() => makeCharacter(
  35618. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35619. {
  35620. front: {
  35621. height: math.unit(4 + 11/12, "feet"),
  35622. name: "Front",
  35623. image: {
  35624. source: "./media/characters/monty/front.svg",
  35625. extra: 1479/1209,
  35626. bottom: 0/1479
  35627. }
  35628. },
  35629. },
  35630. [
  35631. {
  35632. name: "Normal",
  35633. height: math.unit(4 + 11/12, "feet"),
  35634. default: true
  35635. },
  35636. ]
  35637. ))
  35638. characterMakers.push(() => makeCharacter(
  35639. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35640. {
  35641. front: {
  35642. height: math.unit(8 + 4/12, "feet"),
  35643. name: "Front",
  35644. image: {
  35645. source: "./media/characters/sterling/front.svg",
  35646. extra: 1420/1236,
  35647. bottom: 27/1447
  35648. }
  35649. },
  35650. },
  35651. [
  35652. {
  35653. name: "Normal",
  35654. height: math.unit(8 + 4/12, "feet"),
  35655. default: true
  35656. },
  35657. ]
  35658. ))
  35659. characterMakers.push(() => makeCharacter(
  35660. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35661. {
  35662. front: {
  35663. height: math.unit(15, "feet"),
  35664. name: "Front",
  35665. image: {
  35666. source: "./media/characters/marble/front.svg",
  35667. extra: 973/937,
  35668. bottom: 32/1005
  35669. }
  35670. },
  35671. },
  35672. [
  35673. {
  35674. name: "Normal",
  35675. height: math.unit(15, "feet"),
  35676. default: true
  35677. },
  35678. ]
  35679. ))
  35680. characterMakers.push(() => makeCharacter(
  35681. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35682. {
  35683. front: {
  35684. height: math.unit(3, "inches"),
  35685. name: "Front",
  35686. image: {
  35687. source: "./media/characters/powder/front.svg",
  35688. extra: 1504/1334,
  35689. bottom: 518/2022
  35690. }
  35691. },
  35692. },
  35693. [
  35694. {
  35695. name: "Normal",
  35696. height: math.unit(3, "inches"),
  35697. default: true
  35698. },
  35699. ]
  35700. ))
  35701. characterMakers.push(() => makeCharacter(
  35702. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35703. {
  35704. front: {
  35705. height: math.unit(4 + 5/12, "feet"),
  35706. name: "Front",
  35707. image: {
  35708. source: "./media/characters/joey-raccoon/front.svg",
  35709. extra: 1273/1197,
  35710. bottom: 0/1273
  35711. }
  35712. },
  35713. },
  35714. [
  35715. {
  35716. name: "Normal",
  35717. height: math.unit(4 + 5/12, "feet"),
  35718. default: true
  35719. },
  35720. ]
  35721. ))
  35722. characterMakers.push(() => makeCharacter(
  35723. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35724. {
  35725. front: {
  35726. height: math.unit(8 + 4/12, "feet"),
  35727. name: "Front",
  35728. image: {
  35729. source: "./media/characters/vick/front.svg",
  35730. extra: 2187/2118,
  35731. bottom: 47/2234
  35732. }
  35733. },
  35734. },
  35735. [
  35736. {
  35737. name: "Normal",
  35738. height: math.unit(8 + 4/12, "feet"),
  35739. default: true
  35740. },
  35741. ]
  35742. ))
  35743. characterMakers.push(() => makeCharacter(
  35744. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35745. {
  35746. front: {
  35747. height: math.unit(5 + 5/12, "feet"),
  35748. name: "Front",
  35749. image: {
  35750. source: "./media/characters/mitsy/front.svg",
  35751. extra: 1842/1695,
  35752. bottom: 0/1842
  35753. }
  35754. },
  35755. },
  35756. [
  35757. {
  35758. name: "Normal",
  35759. height: math.unit(5 + 5/12, "feet"),
  35760. default: true
  35761. },
  35762. ]
  35763. ))
  35764. characterMakers.push(() => makeCharacter(
  35765. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35766. {
  35767. front: {
  35768. height: math.unit(6 + 3/12, "feet"),
  35769. name: "Front",
  35770. image: {
  35771. source: "./media/characters/silvy/front.svg",
  35772. extra: 1995/1836,
  35773. bottom: 225/2220
  35774. }
  35775. },
  35776. },
  35777. [
  35778. {
  35779. name: "Normal",
  35780. height: math.unit(6 + 3/12, "feet"),
  35781. default: true
  35782. },
  35783. ]
  35784. ))
  35785. characterMakers.push(() => makeCharacter(
  35786. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35787. {
  35788. front: {
  35789. height: math.unit(3 + 8/12, "feet"),
  35790. name: "Front",
  35791. image: {
  35792. source: "./media/characters/rodney/front.svg",
  35793. extra: 1956/1747,
  35794. bottom: 31/1987
  35795. }
  35796. },
  35797. frontDressed: {
  35798. height: math.unit(2.9, "feet"),
  35799. name: "Front (Dressed)",
  35800. image: {
  35801. source: "./media/characters/rodney/front-dressed.svg",
  35802. extra: 1382/1241,
  35803. bottom: 385/1767
  35804. }
  35805. },
  35806. },
  35807. [
  35808. {
  35809. name: "Normal",
  35810. height: math.unit(3 + 8/12, "feet"),
  35811. default: true
  35812. },
  35813. ]
  35814. ))
  35815. characterMakers.push(() => makeCharacter(
  35816. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35817. {
  35818. front: {
  35819. height: math.unit(5 + 9/12, "feet"),
  35820. weight: math.unit(194, "lbs"),
  35821. name: "Front",
  35822. image: {
  35823. source: "./media/characters/zakail-sudekai/front.svg",
  35824. extra: 2696/2533,
  35825. bottom: 248/2944
  35826. }
  35827. },
  35828. maw: {
  35829. height: math.unit(1.35, "feet"),
  35830. name: "Maw",
  35831. image: {
  35832. source: "./media/characters/zakail-sudekai/maw.svg"
  35833. }
  35834. },
  35835. },
  35836. [
  35837. {
  35838. name: "Normal",
  35839. height: math.unit(5 + 9/12, "feet"),
  35840. default: true
  35841. },
  35842. ]
  35843. ))
  35844. characterMakers.push(() => makeCharacter(
  35845. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35846. {
  35847. front: {
  35848. height: math.unit(8 + 4/12, "feet"),
  35849. weight: math.unit(1200, "lb"),
  35850. name: "Front",
  35851. image: {
  35852. source: "./media/characters/eleanor/front.svg",
  35853. extra: 1226/1192,
  35854. bottom: 52/1278
  35855. }
  35856. },
  35857. back: {
  35858. height: math.unit(8 + 4/12, "feet"),
  35859. weight: math.unit(1200, "lb"),
  35860. name: "Back",
  35861. image: {
  35862. source: "./media/characters/eleanor/back.svg",
  35863. extra: 1242/1184,
  35864. bottom: 60/1302
  35865. }
  35866. },
  35867. head: {
  35868. height: math.unit(2.62, "feet"),
  35869. name: "Head",
  35870. image: {
  35871. source: "./media/characters/eleanor/head.svg"
  35872. }
  35873. },
  35874. },
  35875. [
  35876. {
  35877. name: "Normal",
  35878. height: math.unit(8 + 4/12, "feet"),
  35879. default: true
  35880. },
  35881. ]
  35882. ))
  35883. characterMakers.push(() => makeCharacter(
  35884. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35885. {
  35886. front: {
  35887. height: math.unit(8 + 4/12, "feet"),
  35888. weight: math.unit(750, "lb"),
  35889. name: "Front",
  35890. image: {
  35891. source: "./media/characters/tanya/front.svg",
  35892. extra: 1749/1615,
  35893. bottom: 33/1782
  35894. }
  35895. },
  35896. },
  35897. [
  35898. {
  35899. name: "Normal",
  35900. height: math.unit(8 + 4/12, "feet"),
  35901. default: true
  35902. },
  35903. ]
  35904. ))
  35905. characterMakers.push(() => makeCharacter(
  35906. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35907. {
  35908. front: {
  35909. height: math.unit(5, "feet"),
  35910. weight: math.unit(225, "lb"),
  35911. name: "Front",
  35912. image: {
  35913. source: "./media/characters/cindy/front.svg",
  35914. extra: 1320/1250,
  35915. bottom: 42/1362
  35916. }
  35917. },
  35918. frontDressed: {
  35919. height: math.unit(5, "feet"),
  35920. weight: math.unit(225, "lb"),
  35921. name: "Front (Dressed)",
  35922. image: {
  35923. source: "./media/characters/cindy/front-dressed.svg",
  35924. extra: 1320/1250,
  35925. bottom: 42/1362
  35926. }
  35927. },
  35928. back: {
  35929. height: math.unit(5, "feet"),
  35930. weight: math.unit(225, "lb"),
  35931. name: "Back",
  35932. image: {
  35933. source: "./media/characters/cindy/back.svg",
  35934. extra: 1384/1346,
  35935. bottom: 14/1398
  35936. }
  35937. },
  35938. },
  35939. [
  35940. {
  35941. name: "Normal",
  35942. height: math.unit(5, "feet"),
  35943. default: true
  35944. },
  35945. ]
  35946. ))
  35947. characterMakers.push(() => makeCharacter(
  35948. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35949. {
  35950. front: {
  35951. height: math.unit(6 + 9/12, "feet"),
  35952. weight: math.unit(440, "lb"),
  35953. name: "Front",
  35954. image: {
  35955. source: "./media/characters/wilbur-owen/front.svg",
  35956. extra: 1575/1448,
  35957. bottom: 72/1647
  35958. }
  35959. },
  35960. back: {
  35961. height: math.unit(6 + 9/12, "feet"),
  35962. weight: math.unit(440, "lb"),
  35963. name: "Back",
  35964. image: {
  35965. source: "./media/characters/wilbur-owen/back.svg",
  35966. extra: 1578/1445,
  35967. bottom: 36/1614
  35968. }
  35969. },
  35970. },
  35971. [
  35972. {
  35973. name: "Normal",
  35974. height: math.unit(6 + 9/12, "feet"),
  35975. default: true
  35976. },
  35977. ]
  35978. ))
  35979. characterMakers.push(() => makeCharacter(
  35980. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35981. {
  35982. front: {
  35983. height: math.unit(6 + 5/12, "feet"),
  35984. weight: math.unit(650, "lb"),
  35985. name: "Front",
  35986. image: {
  35987. source: "./media/characters/keegan/front.svg",
  35988. extra: 2387/2198,
  35989. bottom: 33/2420
  35990. }
  35991. },
  35992. side: {
  35993. height: math.unit(6 + 5/12, "feet"),
  35994. weight: math.unit(650, "lb"),
  35995. name: "Side",
  35996. image: {
  35997. source: "./media/characters/keegan/side.svg",
  35998. extra: 2390/2202,
  35999. bottom: 47/2437
  36000. }
  36001. },
  36002. back: {
  36003. height: math.unit(6 + 5/12, "feet"),
  36004. weight: math.unit(650, "lb"),
  36005. name: "Back",
  36006. image: {
  36007. source: "./media/characters/keegan/back.svg",
  36008. extra: 2418/2268,
  36009. bottom: 15/2433
  36010. }
  36011. },
  36012. frontSfw: {
  36013. height: math.unit(6 + 5/12, "feet"),
  36014. weight: math.unit(650, "lb"),
  36015. name: "Front (SFW)",
  36016. image: {
  36017. source: "./media/characters/keegan/front-sfw.svg",
  36018. extra: 2387/2198,
  36019. bottom: 33/2420
  36020. }
  36021. },
  36022. beans: {
  36023. height: math.unit(1.85, "feet"),
  36024. name: "Beans",
  36025. image: {
  36026. source: "./media/characters/keegan/beans.svg"
  36027. }
  36028. },
  36029. },
  36030. [
  36031. {
  36032. name: "Normal",
  36033. height: math.unit(6 + 5/12, "feet"),
  36034. default: true
  36035. },
  36036. ]
  36037. ))
  36038. characterMakers.push(() => makeCharacter(
  36039. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36040. {
  36041. front: {
  36042. height: math.unit(9, "feet"),
  36043. name: "Front",
  36044. image: {
  36045. source: "./media/characters/colton/front.svg",
  36046. extra: 1589/1326,
  36047. bottom: 139/1728
  36048. }
  36049. },
  36050. },
  36051. [
  36052. {
  36053. name: "Normal",
  36054. height: math.unit(9, "feet"),
  36055. default: true
  36056. },
  36057. ]
  36058. ))
  36059. characterMakers.push(() => makeCharacter(
  36060. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36061. {
  36062. front: {
  36063. height: math.unit(2 + 9/12, "feet"),
  36064. name: "Front",
  36065. image: {
  36066. source: "./media/characters/bora/front.svg",
  36067. extra: 1265/1250,
  36068. bottom: 24/1289
  36069. }
  36070. },
  36071. },
  36072. [
  36073. {
  36074. name: "Normal",
  36075. height: math.unit(2 + 9/12, "feet"),
  36076. default: true
  36077. },
  36078. ]
  36079. ))
  36080. characterMakers.push(() => makeCharacter(
  36081. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36082. {
  36083. front: {
  36084. height: math.unit(8, "feet"),
  36085. name: "Front",
  36086. image: {
  36087. source: "./media/characters/myu-myu/front.svg",
  36088. extra: 1949/1857,
  36089. bottom: 90/2039
  36090. }
  36091. },
  36092. },
  36093. [
  36094. {
  36095. name: "Normal",
  36096. height: math.unit(8, "feet"),
  36097. default: true
  36098. },
  36099. {
  36100. name: "Big",
  36101. height: math.unit(15, "feet")
  36102. },
  36103. {
  36104. name: "BIG",
  36105. height: math.unit(25, "feet")
  36106. },
  36107. ]
  36108. ))
  36109. characterMakers.push(() => makeCharacter(
  36110. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36111. {
  36112. side: {
  36113. height: math.unit(7 + 5/12, "feet"),
  36114. weight: math.unit(2800, "lb"),
  36115. name: "Side",
  36116. image: {
  36117. source: "./media/characters/haloren/side.svg",
  36118. extra: 1793/409,
  36119. bottom: 59/1852
  36120. }
  36121. },
  36122. frontPaw: {
  36123. height: math.unit(2.36, "feet"),
  36124. name: "Front paw",
  36125. image: {
  36126. source: "./media/characters/haloren/front-paw.svg"
  36127. }
  36128. },
  36129. hindPaw: {
  36130. height: math.unit(3.18, "feet"),
  36131. name: "Hind paw",
  36132. image: {
  36133. source: "./media/characters/haloren/hind-paw.svg"
  36134. }
  36135. },
  36136. maw: {
  36137. height: math.unit(5.05, "feet"),
  36138. name: "Maw",
  36139. image: {
  36140. source: "./media/characters/haloren/maw.svg"
  36141. }
  36142. },
  36143. dick: {
  36144. height: math.unit(2.90, "feet"),
  36145. name: "Dick",
  36146. image: {
  36147. source: "./media/characters/haloren/dick.svg"
  36148. }
  36149. },
  36150. },
  36151. [
  36152. {
  36153. name: "Normal",
  36154. height: math.unit(7 + 5/12, "feet"),
  36155. default: true
  36156. },
  36157. {
  36158. name: "Enhanced",
  36159. height: math.unit(14 + 3/12, "feet")
  36160. },
  36161. ]
  36162. ))
  36163. characterMakers.push(() => makeCharacter(
  36164. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36165. {
  36166. front: {
  36167. height: math.unit(171, "cm"),
  36168. name: "Front",
  36169. image: {
  36170. source: "./media/characters/kimmy/front.svg",
  36171. extra: 1491/1435,
  36172. bottom: 53/1544
  36173. }
  36174. },
  36175. },
  36176. [
  36177. {
  36178. name: "Small",
  36179. height: math.unit(9, "cm")
  36180. },
  36181. {
  36182. name: "Normal",
  36183. height: math.unit(171, "cm"),
  36184. default: true
  36185. },
  36186. ]
  36187. ))
  36188. characterMakers.push(() => makeCharacter(
  36189. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36190. {
  36191. front: {
  36192. height: math.unit(8, "feet"),
  36193. weight: math.unit(300, "lb"),
  36194. name: "Front",
  36195. image: {
  36196. source: "./media/characters/galeboomer/front.svg",
  36197. extra: 4651/4415,
  36198. bottom: 162/4813
  36199. }
  36200. },
  36201. back: {
  36202. height: math.unit(8, "feet"),
  36203. weight: math.unit(300, "lb"),
  36204. name: "Back",
  36205. image: {
  36206. source: "./media/characters/galeboomer/back.svg",
  36207. extra: 4544/4314,
  36208. bottom: 16/4560
  36209. }
  36210. },
  36211. frontAlt: {
  36212. height: math.unit(8, "feet"),
  36213. weight: math.unit(300, "lb"),
  36214. name: "Front (Alt)",
  36215. image: {
  36216. source: "./media/characters/galeboomer/front-alt.svg",
  36217. extra: 4458/4228,
  36218. bottom: 68/4526
  36219. }
  36220. },
  36221. maw: {
  36222. height: math.unit(1.2, "feet"),
  36223. name: "Maw",
  36224. image: {
  36225. source: "./media/characters/galeboomer/maw.svg"
  36226. }
  36227. },
  36228. },
  36229. [
  36230. {
  36231. name: "Normal",
  36232. height: math.unit(8, "feet"),
  36233. default: true
  36234. },
  36235. ]
  36236. ))
  36237. characterMakers.push(() => makeCharacter(
  36238. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36239. {
  36240. front: {
  36241. height: math.unit(5 + 9/12, "feet"),
  36242. weight: math.unit(120, "lb"),
  36243. name: "Front",
  36244. image: {
  36245. source: "./media/characters/chyr/front.svg",
  36246. extra: 1323/1254,
  36247. bottom: 63/1386
  36248. }
  36249. },
  36250. back: {
  36251. height: math.unit(5 + 9/12, "feet"),
  36252. weight: math.unit(120, "lb"),
  36253. name: "Back",
  36254. image: {
  36255. source: "./media/characters/chyr/back.svg",
  36256. extra: 1323/1252,
  36257. bottom: 48/1371
  36258. }
  36259. },
  36260. },
  36261. [
  36262. {
  36263. name: "Normal",
  36264. height: math.unit(5 + 9/12, "feet"),
  36265. default: true
  36266. },
  36267. ]
  36268. ))
  36269. characterMakers.push(() => makeCharacter(
  36270. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36271. {
  36272. front: {
  36273. height: math.unit(7, "feet"),
  36274. weight: math.unit(310, "lb"),
  36275. name: "Front",
  36276. image: {
  36277. source: "./media/characters/solarus/front.svg",
  36278. extra: 2415/2021,
  36279. bottom: 103/2518
  36280. }
  36281. },
  36282. back: {
  36283. height: math.unit(7, "feet"),
  36284. weight: math.unit(310, "lb"),
  36285. name: "Back",
  36286. image: {
  36287. source: "./media/characters/solarus/back.svg",
  36288. extra: 2463/2089,
  36289. bottom: 79/2542
  36290. }
  36291. },
  36292. },
  36293. [
  36294. {
  36295. name: "Normal",
  36296. height: math.unit(7, "feet"),
  36297. default: true
  36298. },
  36299. ]
  36300. ))
  36301. characterMakers.push(() => makeCharacter(
  36302. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36303. {
  36304. front: {
  36305. height: math.unit(16, "feet"),
  36306. name: "Front",
  36307. image: {
  36308. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36309. extra: 1844/1780,
  36310. bottom: 58/1902
  36311. }
  36312. },
  36313. winterCoat: {
  36314. height: math.unit(16, "feet"),
  36315. name: "Winter Coat",
  36316. image: {
  36317. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36318. extra: 1807/1775,
  36319. bottom: 69/1876
  36320. }
  36321. },
  36322. },
  36323. [
  36324. {
  36325. name: "Normal",
  36326. height: math.unit(16, "feet"),
  36327. default: true
  36328. },
  36329. {
  36330. name: "Chicago Size",
  36331. height: math.unit(560, "feet")
  36332. },
  36333. ]
  36334. ))
  36335. characterMakers.push(() => makeCharacter(
  36336. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36337. {
  36338. front: {
  36339. height: math.unit(11 + 6/12, "feet"),
  36340. weight: math.unit(1366, "lb"),
  36341. name: "Front",
  36342. image: {
  36343. source: "./media/characters/lexor/front.svg",
  36344. extra: 1560/1481,
  36345. bottom: 211/1771
  36346. }
  36347. },
  36348. back: {
  36349. height: math.unit(11 + 6/12, "feet"),
  36350. weight: math.unit(1366, "lb"),
  36351. name: "Back",
  36352. image: {
  36353. source: "./media/characters/lexor/back.svg",
  36354. extra: 1614/1533,
  36355. bottom: 76/1690
  36356. }
  36357. },
  36358. maw: {
  36359. height: math.unit(3, "feet"),
  36360. name: "Maw",
  36361. image: {
  36362. source: "./media/characters/lexor/maw.svg"
  36363. }
  36364. },
  36365. dick: {
  36366. height: math.unit(2.59, "feet"),
  36367. name: "Dick",
  36368. image: {
  36369. source: "./media/characters/lexor/dick.svg"
  36370. }
  36371. },
  36372. },
  36373. [
  36374. {
  36375. name: "Normal",
  36376. height: math.unit(11 + 6/12, "feet"),
  36377. default: true
  36378. },
  36379. ]
  36380. ))
  36381. characterMakers.push(() => makeCharacter(
  36382. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36383. {
  36384. front: {
  36385. height: math.unit(5 + 8/12, "feet"),
  36386. name: "Front",
  36387. image: {
  36388. source: "./media/characters/magnum/front.svg",
  36389. extra: 942/855,
  36390. bottom: 26/968
  36391. }
  36392. },
  36393. },
  36394. [
  36395. {
  36396. name: "Normal",
  36397. height: math.unit(5 + 8/12, "feet"),
  36398. default: true
  36399. },
  36400. ]
  36401. ))
  36402. characterMakers.push(() => makeCharacter(
  36403. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36404. {
  36405. front: {
  36406. height: math.unit(18 + 4/12, "feet"),
  36407. weight: math.unit(1500, "kg"),
  36408. name: "Front",
  36409. image: {
  36410. source: "./media/characters/solas-sharpsman/front.svg",
  36411. extra: 1698/1589,
  36412. bottom: 0/1698
  36413. }
  36414. },
  36415. },
  36416. [
  36417. {
  36418. name: "Normal",
  36419. height: math.unit(18 + 4/12, "feet"),
  36420. default: true
  36421. },
  36422. ]
  36423. ))
  36424. characterMakers.push(() => makeCharacter(
  36425. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36426. {
  36427. front: {
  36428. height: math.unit(5 + 5/12, "feet"),
  36429. weight: math.unit(180, "lb"),
  36430. name: "Front",
  36431. image: {
  36432. source: "./media/characters/october/front.svg",
  36433. extra: 1800/1650,
  36434. bottom: 0/1800
  36435. }
  36436. },
  36437. frontNsfw: {
  36438. height: math.unit(5 + 5/12, "feet"),
  36439. weight: math.unit(180, "lb"),
  36440. name: "Front (NSFW)",
  36441. image: {
  36442. source: "./media/characters/october/front-nsfw.svg",
  36443. extra: 1392/1307,
  36444. bottom: 42/1434
  36445. }
  36446. },
  36447. },
  36448. [
  36449. {
  36450. name: "Normal",
  36451. height: math.unit(5 + 5/12, "feet"),
  36452. default: true
  36453. },
  36454. ]
  36455. ))
  36456. characterMakers.push(() => makeCharacter(
  36457. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36458. {
  36459. front: {
  36460. height: math.unit(8 + 6/12, "feet"),
  36461. name: "Front",
  36462. image: {
  36463. source: "./media/characters/essynkardi/front.svg",
  36464. extra: 1914/1846,
  36465. bottom: 22/1936
  36466. }
  36467. },
  36468. },
  36469. [
  36470. {
  36471. name: "Normal",
  36472. height: math.unit(8 + 6/12, "feet"),
  36473. default: true
  36474. },
  36475. ]
  36476. ))
  36477. characterMakers.push(() => makeCharacter(
  36478. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36479. {
  36480. front: {
  36481. height: math.unit(6 + 6/12, "feet"),
  36482. weight: math.unit(7, "lb"),
  36483. name: "Front",
  36484. image: {
  36485. source: "./media/characters/icky/front.svg",
  36486. extra: 813/782,
  36487. bottom: 66/879
  36488. }
  36489. },
  36490. back: {
  36491. height: math.unit(6 + 6/12, "feet"),
  36492. weight: math.unit(7, "lb"),
  36493. name: "Back",
  36494. image: {
  36495. source: "./media/characters/icky/back.svg",
  36496. extra: 754/735,
  36497. bottom: 56/810
  36498. }
  36499. },
  36500. },
  36501. [
  36502. {
  36503. name: "Normal",
  36504. height: math.unit(6 + 6/12, "feet"),
  36505. default: true
  36506. },
  36507. ]
  36508. ))
  36509. characterMakers.push(() => makeCharacter(
  36510. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36511. {
  36512. front: {
  36513. height: math.unit(15, "feet"),
  36514. name: "Front",
  36515. image: {
  36516. source: "./media/characters/rojas/front.svg",
  36517. extra: 1462/1408,
  36518. bottom: 95/1557
  36519. }
  36520. },
  36521. back: {
  36522. height: math.unit(15, "feet"),
  36523. name: "Back",
  36524. image: {
  36525. source: "./media/characters/rojas/back.svg",
  36526. extra: 1023/954,
  36527. bottom: 28/1051
  36528. }
  36529. },
  36530. },
  36531. [
  36532. {
  36533. name: "Normal",
  36534. height: math.unit(15, "feet"),
  36535. default: true
  36536. },
  36537. ]
  36538. ))
  36539. characterMakers.push(() => makeCharacter(
  36540. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36541. {
  36542. frontHuman: {
  36543. height: math.unit(5 + 7/12, "feet"),
  36544. name: "Front (Human)",
  36545. image: {
  36546. source: "./media/characters/alek-dryagan/front-human.svg",
  36547. extra: 1687/1667,
  36548. bottom: 69/1756
  36549. }
  36550. },
  36551. backHuman: {
  36552. height: math.unit(5 + 7/12, "feet"),
  36553. name: "Back (Human)",
  36554. image: {
  36555. source: "./media/characters/alek-dryagan/back-human.svg",
  36556. extra: 1670/1649,
  36557. bottom: 65/1735
  36558. }
  36559. },
  36560. frontDemi: {
  36561. height: math.unit(65, "feet"),
  36562. name: "Front (Demi)",
  36563. image: {
  36564. source: "./media/characters/alek-dryagan/front-demi.svg",
  36565. extra: 1669/1642,
  36566. bottom: 49/1718
  36567. }
  36568. },
  36569. backDemi: {
  36570. height: math.unit(65, "feet"),
  36571. name: "Back (Demi)",
  36572. image: {
  36573. source: "./media/characters/alek-dryagan/back-demi.svg",
  36574. extra: 1658/1637,
  36575. bottom: 40/1698
  36576. }
  36577. },
  36578. mawHuman: {
  36579. height: math.unit(0.3, "feet"),
  36580. name: "Maw (Human)",
  36581. image: {
  36582. source: "./media/characters/alek-dryagan/maw-human.svg"
  36583. }
  36584. },
  36585. mawDemi: {
  36586. height: math.unit(3.8, "feet"),
  36587. name: "Maw (Demi)",
  36588. image: {
  36589. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36590. }
  36591. },
  36592. },
  36593. [
  36594. {
  36595. name: "Normal",
  36596. height: math.unit(5 + 7/12, "feet"),
  36597. default: true
  36598. },
  36599. ]
  36600. ))
  36601. characterMakers.push(() => makeCharacter(
  36602. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36603. {
  36604. frontHuman: {
  36605. height: math.unit(5 + 2/12, "feet"),
  36606. name: "Front (Human)",
  36607. image: {
  36608. source: "./media/characters/gen/front-human.svg",
  36609. extra: 1627/1538,
  36610. bottom: 71/1698
  36611. }
  36612. },
  36613. backHuman: {
  36614. height: math.unit(5 + 2/12, "feet"),
  36615. name: "Back (Human)",
  36616. image: {
  36617. source: "./media/characters/gen/back-human.svg",
  36618. extra: 1638/1548,
  36619. bottom: 69/1707
  36620. }
  36621. },
  36622. frontDemi: {
  36623. height: math.unit(5 + 2/12, "feet"),
  36624. name: "Front (Demi)",
  36625. image: {
  36626. source: "./media/characters/gen/front-demi.svg",
  36627. extra: 1627/1538,
  36628. bottom: 71/1698
  36629. }
  36630. },
  36631. backDemi: {
  36632. height: math.unit(5 + 2/12, "feet"),
  36633. name: "Back (Demi)",
  36634. image: {
  36635. source: "./media/characters/gen/back-demi.svg",
  36636. extra: 1638/1548,
  36637. bottom: 69/1707
  36638. }
  36639. },
  36640. },
  36641. [
  36642. {
  36643. name: "Normal",
  36644. height: math.unit(5 + 2/12, "feet"),
  36645. default: true
  36646. },
  36647. ]
  36648. ))
  36649. characterMakers.push(() => makeCharacter(
  36650. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36651. {
  36652. frontImp: {
  36653. height: math.unit(1 + 11/12, "feet"),
  36654. name: "Front (Imp)",
  36655. image: {
  36656. source: "./media/characters/max-kobold/front-imp.svg",
  36657. extra: 1238/1134,
  36658. bottom: 81/1319
  36659. }
  36660. },
  36661. backImp: {
  36662. height: math.unit(1 + 11/12, "feet"),
  36663. name: "Back (Imp)",
  36664. image: {
  36665. source: "./media/characters/max-kobold/back-imp.svg",
  36666. extra: 1334/1175,
  36667. bottom: 34/1368
  36668. }
  36669. },
  36670. frontDemi: {
  36671. height: math.unit(5 + 9/12, "feet"),
  36672. name: "Front (Demi)",
  36673. image: {
  36674. source: "./media/characters/max-kobold/front-demi.svg",
  36675. extra: 1715/1685,
  36676. bottom: 54/1769
  36677. }
  36678. },
  36679. backDemi: {
  36680. height: math.unit(5 + 9/12, "feet"),
  36681. name: "Back (Demi)",
  36682. image: {
  36683. source: "./media/characters/max-kobold/back-demi.svg",
  36684. extra: 1752/1729,
  36685. bottom: 41/1793
  36686. }
  36687. },
  36688. handImp: {
  36689. height: math.unit(0.45, "feet"),
  36690. name: "Hand (Imp)",
  36691. image: {
  36692. source: "./media/characters/max-kobold/hand.svg"
  36693. }
  36694. },
  36695. pawImp: {
  36696. height: math.unit(0.46, "feet"),
  36697. name: "Paw (Imp)",
  36698. image: {
  36699. source: "./media/characters/max-kobold/paw.svg"
  36700. }
  36701. },
  36702. handDemi: {
  36703. height: math.unit(0.80, "feet"),
  36704. name: "Hand (Demi)",
  36705. image: {
  36706. source: "./media/characters/max-kobold/hand.svg"
  36707. }
  36708. },
  36709. pawDemi: {
  36710. height: math.unit(1.1, "feet"),
  36711. name: "Paw (Demi)",
  36712. image: {
  36713. source: "./media/characters/max-kobold/paw.svg"
  36714. }
  36715. },
  36716. headImp: {
  36717. height: math.unit(1.33, "feet"),
  36718. name: "Head (Imp)",
  36719. image: {
  36720. source: "./media/characters/max-kobold/head-imp.svg"
  36721. }
  36722. },
  36723. mawImp: {
  36724. height: math.unit(0.75, "feet"),
  36725. name: "Maw (Imp)",
  36726. image: {
  36727. source: "./media/characters/max-kobold/maw-imp.svg"
  36728. }
  36729. },
  36730. mawDemi: {
  36731. height: math.unit(0.42, "feet"),
  36732. name: "Maw (Demi)",
  36733. image: {
  36734. source: "./media/characters/max-kobold/maw-demi.svg"
  36735. }
  36736. },
  36737. },
  36738. [
  36739. {
  36740. name: "Normal",
  36741. height: math.unit(1 + 11/12, "feet"),
  36742. default: true
  36743. },
  36744. ]
  36745. ))
  36746. characterMakers.push(() => makeCharacter(
  36747. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36748. {
  36749. front: {
  36750. height: math.unit(7 + 5/12, "feet"),
  36751. name: "Front",
  36752. image: {
  36753. source: "./media/characters/carbon/front.svg",
  36754. extra: 1754/1689,
  36755. bottom: 65/1819
  36756. }
  36757. },
  36758. back: {
  36759. height: math.unit(7 + 5/12, "feet"),
  36760. name: "Back",
  36761. image: {
  36762. source: "./media/characters/carbon/back.svg",
  36763. extra: 1762/1695,
  36764. bottom: 24/1786
  36765. }
  36766. },
  36767. frontGigantamax: {
  36768. height: math.unit(150, "feet"),
  36769. name: "Front (Gigantamax)",
  36770. image: {
  36771. source: "./media/characters/carbon/front-gigantamax.svg",
  36772. extra: 1826/1669,
  36773. bottom: 59/1885
  36774. }
  36775. },
  36776. backGigantamax: {
  36777. height: math.unit(150, "feet"),
  36778. name: "Back (Gigantamax)",
  36779. image: {
  36780. source: "./media/characters/carbon/back-gigantamax.svg",
  36781. extra: 1796/1653,
  36782. bottom: 53/1849
  36783. }
  36784. },
  36785. maw: {
  36786. height: math.unit(0.48, "feet"),
  36787. name: "Maw",
  36788. image: {
  36789. source: "./media/characters/carbon/maw.svg"
  36790. }
  36791. },
  36792. mawGigantamax: {
  36793. height: math.unit(7.5, "feet"),
  36794. name: "Maw (Gigantamax)",
  36795. image: {
  36796. source: "./media/characters/carbon/maw-gigantamax.svg"
  36797. }
  36798. },
  36799. },
  36800. [
  36801. {
  36802. name: "Normal",
  36803. height: math.unit(7 + 5/12, "feet"),
  36804. default: true
  36805. },
  36806. ]
  36807. ))
  36808. characterMakers.push(() => makeCharacter(
  36809. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36810. {
  36811. front: {
  36812. height: math.unit(6, "feet"),
  36813. name: "Front",
  36814. image: {
  36815. source: "./media/characters/maverick/front.svg",
  36816. extra: 1672/1661,
  36817. bottom: 85/1757
  36818. }
  36819. },
  36820. back: {
  36821. height: math.unit(6, "feet"),
  36822. name: "Back",
  36823. image: {
  36824. source: "./media/characters/maverick/back.svg",
  36825. extra: 1642/1631,
  36826. bottom: 38/1680
  36827. }
  36828. },
  36829. },
  36830. [
  36831. {
  36832. name: "Normal",
  36833. height: math.unit(6, "feet"),
  36834. default: true
  36835. },
  36836. ]
  36837. ))
  36838. characterMakers.push(() => makeCharacter(
  36839. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36840. {
  36841. front: {
  36842. height: math.unit(15, "feet"),
  36843. weight: math.unit(615, "lb"),
  36844. name: "Front",
  36845. image: {
  36846. source: "./media/characters/grockle/front.svg",
  36847. extra: 1535/1427,
  36848. bottom: 56/1591
  36849. }
  36850. },
  36851. },
  36852. [
  36853. {
  36854. name: "Normal",
  36855. height: math.unit(15, "feet"),
  36856. default: true
  36857. },
  36858. {
  36859. name: "Large",
  36860. height: math.unit(150, "feet")
  36861. },
  36862. {
  36863. name: "Macro",
  36864. height: math.unit(1876, "feet")
  36865. },
  36866. {
  36867. name: "Mega Macro",
  36868. height: math.unit(121940, "feet")
  36869. },
  36870. {
  36871. name: "Giga Macro",
  36872. height: math.unit(750, "km")
  36873. },
  36874. {
  36875. name: "Tera Macro",
  36876. height: math.unit(750000, "km")
  36877. },
  36878. {
  36879. name: "Galactic",
  36880. height: math.unit(1.4e5, "km")
  36881. },
  36882. {
  36883. name: "Godlike",
  36884. height: math.unit(9.8e280, "galaxies")
  36885. },
  36886. ]
  36887. ))
  36888. characterMakers.push(() => makeCharacter(
  36889. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36890. {
  36891. front: {
  36892. height: math.unit(11, "meters"),
  36893. weight: math.unit(20, "tonnes"),
  36894. name: "Front",
  36895. image: {
  36896. source: "./media/characters/alistair/front.svg",
  36897. extra: 1265/1009,
  36898. bottom: 93/1358
  36899. }
  36900. },
  36901. },
  36902. [
  36903. {
  36904. name: "Normal",
  36905. height: math.unit(11, "meters"),
  36906. default: true
  36907. },
  36908. ]
  36909. ))
  36910. characterMakers.push(() => makeCharacter(
  36911. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36912. {
  36913. front: {
  36914. height: math.unit(5 + 8/12, "feet"),
  36915. name: "Front",
  36916. image: {
  36917. source: "./media/characters/haruka/front.svg",
  36918. extra: 2012/1952,
  36919. bottom: 0/2012
  36920. }
  36921. },
  36922. },
  36923. [
  36924. {
  36925. name: "Normal",
  36926. height: math.unit(5 + 8/12, "feet"),
  36927. default: true
  36928. },
  36929. ]
  36930. ))
  36931. characterMakers.push(() => makeCharacter(
  36932. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36933. {
  36934. back: {
  36935. height: math.unit(9, "feet"),
  36936. name: "Back",
  36937. image: {
  36938. source: "./media/characters/vivian-sylveon/back.svg",
  36939. extra: 1853/1714,
  36940. bottom: 0/1853
  36941. }
  36942. },
  36943. },
  36944. [
  36945. {
  36946. name: "Normal",
  36947. height: math.unit(9, "feet"),
  36948. default: true
  36949. },
  36950. {
  36951. name: "Macro",
  36952. height: math.unit(500, "feet")
  36953. },
  36954. {
  36955. name: "Megamacro",
  36956. height: math.unit(600, "miles")
  36957. },
  36958. {
  36959. name: "Gigamacro",
  36960. height: math.unit(30000, "miles")
  36961. },
  36962. ]
  36963. ))
  36964. characterMakers.push(() => makeCharacter(
  36965. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36966. {
  36967. anthro: {
  36968. height: math.unit(5 + 10/12, "feet"),
  36969. weight: math.unit(100, "lb"),
  36970. name: "Anthro",
  36971. image: {
  36972. source: "./media/characters/daiki/anthro.svg",
  36973. extra: 1115/1027,
  36974. bottom: 69/1184
  36975. }
  36976. },
  36977. feral: {
  36978. height: math.unit(200, "feet"),
  36979. name: "Feral",
  36980. image: {
  36981. source: "./media/characters/daiki/feral.svg",
  36982. extra: 1256/313,
  36983. bottom: 39/1295
  36984. }
  36985. },
  36986. feralHead: {
  36987. height: math.unit(171, "feet"),
  36988. name: "Feral Head",
  36989. image: {
  36990. source: "./media/characters/daiki/feral-head.svg"
  36991. }
  36992. },
  36993. manaDragon: {
  36994. height: math.unit(170, "meters"),
  36995. name: "Mana-dragon",
  36996. image: {
  36997. source: "./media/characters/daiki/mana-dragon.svg",
  36998. extra: 763/420,
  36999. bottom: 97/860
  37000. }
  37001. },
  37002. },
  37003. [
  37004. {
  37005. name: "Normal",
  37006. height: math.unit(5 + 10/12, "feet"),
  37007. default: true
  37008. },
  37009. ]
  37010. ))
  37011. characterMakers.push(() => makeCharacter(
  37012. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37013. {
  37014. fullyEquippedFront: {
  37015. height: math.unit(3 + 1/12, "feet"),
  37016. weight: math.unit(24, "lb"),
  37017. name: "Fully Equipped (Front)",
  37018. image: {
  37019. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37020. extra: 687/605,
  37021. bottom: 18/705
  37022. }
  37023. },
  37024. fullyEquippedBack: {
  37025. height: math.unit(3 + 1/12, "feet"),
  37026. weight: math.unit(24, "lb"),
  37027. name: "Fully Equipped (Back)",
  37028. image: {
  37029. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37030. extra: 689/590,
  37031. bottom: 18/707
  37032. }
  37033. },
  37034. dailyWear: {
  37035. height: math.unit(3 + 1/12, "feet"),
  37036. weight: math.unit(24, "lb"),
  37037. name: "Daily Wear",
  37038. image: {
  37039. source: "./media/characters/tea-spot/daily-wear.svg",
  37040. extra: 701/620,
  37041. bottom: 21/722
  37042. }
  37043. },
  37044. maidWork: {
  37045. height: math.unit(3 + 1/12, "feet"),
  37046. weight: math.unit(24, "lb"),
  37047. name: "Maid Work",
  37048. image: {
  37049. source: "./media/characters/tea-spot/maid-work.svg",
  37050. extra: 693/609,
  37051. bottom: 15/708
  37052. }
  37053. },
  37054. },
  37055. [
  37056. {
  37057. name: "Normal",
  37058. height: math.unit(3 + 1/12, "feet"),
  37059. default: true
  37060. },
  37061. ]
  37062. ))
  37063. characterMakers.push(() => makeCharacter(
  37064. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37065. {
  37066. front: {
  37067. height: math.unit(175, "cm"),
  37068. weight: math.unit(75, "kg"),
  37069. name: "Front",
  37070. image: {
  37071. source: "./media/characters/chee/front.svg",
  37072. extra: 1796/1740,
  37073. bottom: 40/1836
  37074. }
  37075. },
  37076. },
  37077. [
  37078. {
  37079. name: "Micro-Micro",
  37080. height: math.unit(1, "nm")
  37081. },
  37082. {
  37083. name: "Micro-erst",
  37084. height: math.unit(1, "micrometer")
  37085. },
  37086. {
  37087. name: "Micro-er",
  37088. height: math.unit(1, "cm")
  37089. },
  37090. {
  37091. name: "Normal",
  37092. height: math.unit(175, "cm"),
  37093. default: true
  37094. },
  37095. {
  37096. name: "Macro",
  37097. height: math.unit(100, "m")
  37098. },
  37099. {
  37100. name: "Macro-er",
  37101. height: math.unit(1, "km")
  37102. },
  37103. {
  37104. name: "Macro-erst",
  37105. height: math.unit(10, "km")
  37106. },
  37107. {
  37108. name: "Macro-Macro",
  37109. height: math.unit(100, "km")
  37110. },
  37111. ]
  37112. ))
  37113. characterMakers.push(() => makeCharacter(
  37114. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37115. {
  37116. front: {
  37117. height: math.unit(11 + 9/12, "feet"),
  37118. weight: math.unit(935, "lb"),
  37119. name: "Front",
  37120. image: {
  37121. source: "./media/characters/kingsley/front.svg",
  37122. extra: 1803/1674,
  37123. bottom: 127/1930
  37124. }
  37125. },
  37126. frontNude: {
  37127. height: math.unit(11 + 9/12, "feet"),
  37128. weight: math.unit(935, "lb"),
  37129. name: "Front (Nude)",
  37130. image: {
  37131. source: "./media/characters/kingsley/front-nude.svg",
  37132. extra: 1803/1674,
  37133. bottom: 127/1930
  37134. }
  37135. },
  37136. },
  37137. [
  37138. {
  37139. name: "Normal",
  37140. height: math.unit(11 + 9/12, "feet"),
  37141. default: true
  37142. },
  37143. ]
  37144. ))
  37145. characterMakers.push(() => makeCharacter(
  37146. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37147. {
  37148. side: {
  37149. height: math.unit(9, "feet"),
  37150. name: "Side",
  37151. image: {
  37152. source: "./media/characters/rymel/side.svg",
  37153. extra: 792/469,
  37154. bottom: 121/913
  37155. }
  37156. },
  37157. maw: {
  37158. height: math.unit(2.4, "meters"),
  37159. name: "Maw",
  37160. image: {
  37161. source: "./media/characters/rymel/maw.svg"
  37162. }
  37163. },
  37164. },
  37165. [
  37166. {
  37167. name: "House Drake",
  37168. height: math.unit(2, "feet")
  37169. },
  37170. {
  37171. name: "Reduced",
  37172. height: math.unit(4.5, "feet")
  37173. },
  37174. {
  37175. name: "Normal",
  37176. height: math.unit(9, "feet"),
  37177. default: true
  37178. },
  37179. ]
  37180. ))
  37181. characterMakers.push(() => makeCharacter(
  37182. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37183. {
  37184. front: {
  37185. height: math.unit(1.74, "meters"),
  37186. weight: math.unit(55, "kg"),
  37187. name: "Front",
  37188. image: {
  37189. source: "./media/characters/rubus/front.svg",
  37190. extra: 1894/1742,
  37191. bottom: 44/1938
  37192. }
  37193. },
  37194. },
  37195. [
  37196. {
  37197. name: "Normal",
  37198. height: math.unit(1.74, "meters"),
  37199. default: true
  37200. },
  37201. ]
  37202. ))
  37203. characterMakers.push(() => makeCharacter(
  37204. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37205. {
  37206. front: {
  37207. height: math.unit(5 + 2/12, "feet"),
  37208. weight: math.unit(112, "lb"),
  37209. name: "Front",
  37210. image: {
  37211. source: "./media/characters/cassie-kingston/front.svg",
  37212. extra: 1438/1390,
  37213. bottom: 47/1485
  37214. }
  37215. },
  37216. },
  37217. [
  37218. {
  37219. name: "Normal",
  37220. height: math.unit(5 + 2/12, "feet"),
  37221. default: true
  37222. },
  37223. {
  37224. name: "Macro",
  37225. height: math.unit(128, "feet")
  37226. },
  37227. {
  37228. name: "Megamacro",
  37229. height: math.unit(2.56, "miles")
  37230. },
  37231. ]
  37232. ))
  37233. characterMakers.push(() => makeCharacter(
  37234. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37235. {
  37236. front: {
  37237. height: math.unit(7, "feet"),
  37238. name: "Front",
  37239. image: {
  37240. source: "./media/characters/fox/front.svg",
  37241. extra: 1798/1703,
  37242. bottom: 55/1853
  37243. }
  37244. },
  37245. back: {
  37246. height: math.unit(7, "feet"),
  37247. name: "Back",
  37248. image: {
  37249. source: "./media/characters/fox/back.svg",
  37250. extra: 1748/1649,
  37251. bottom: 32/1780
  37252. }
  37253. },
  37254. head: {
  37255. height: math.unit(1.95, "feet"),
  37256. name: "Head",
  37257. image: {
  37258. source: "./media/characters/fox/head.svg"
  37259. }
  37260. },
  37261. dick: {
  37262. height: math.unit(1.33, "feet"),
  37263. name: "Dick",
  37264. image: {
  37265. source: "./media/characters/fox/dick.svg"
  37266. }
  37267. },
  37268. foot: {
  37269. height: math.unit(1, "feet"),
  37270. name: "Foot",
  37271. image: {
  37272. source: "./media/characters/fox/foot.svg"
  37273. }
  37274. },
  37275. paw: {
  37276. height: math.unit(0.92, "feet"),
  37277. name: "Paw",
  37278. image: {
  37279. source: "./media/characters/fox/paw.svg"
  37280. }
  37281. },
  37282. },
  37283. [
  37284. {
  37285. name: "Small",
  37286. height: math.unit(3, "inches")
  37287. },
  37288. {
  37289. name: "\"Realistic\"",
  37290. height: math.unit(7, "feet")
  37291. },
  37292. {
  37293. name: "Normal",
  37294. height: math.unit(150, "feet"),
  37295. default: true
  37296. },
  37297. {
  37298. name: "BIG",
  37299. height: math.unit(1200, "feet")
  37300. },
  37301. {
  37302. name: "👀",
  37303. height: math.unit(5, "miles")
  37304. },
  37305. {
  37306. name: "👀👀👀",
  37307. height: math.unit(64, "miles")
  37308. },
  37309. ]
  37310. ))
  37311. characterMakers.push(() => makeCharacter(
  37312. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37313. {
  37314. front: {
  37315. height: math.unit(625, "feet"),
  37316. name: "Front",
  37317. image: {
  37318. source: "./media/characters/asonja-rossa/front.svg",
  37319. extra: 1833/1686,
  37320. bottom: 24/1857
  37321. }
  37322. },
  37323. back: {
  37324. height: math.unit(625, "feet"),
  37325. name: "Back",
  37326. image: {
  37327. source: "./media/characters/asonja-rossa/back.svg",
  37328. extra: 1852/1753,
  37329. bottom: 26/1878
  37330. }
  37331. },
  37332. },
  37333. [
  37334. {
  37335. name: "Macro",
  37336. height: math.unit(625, "feet"),
  37337. default: true
  37338. },
  37339. ]
  37340. ))
  37341. characterMakers.push(() => makeCharacter(
  37342. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37343. {
  37344. side: {
  37345. height: math.unit(8, "feet"),
  37346. name: "Side",
  37347. image: {
  37348. source: "./media/characters/rezukii/side.svg",
  37349. extra: 979/542,
  37350. bottom: 87/1066
  37351. }
  37352. },
  37353. sitting: {
  37354. height: math.unit(14.6, "feet"),
  37355. name: "Sitting",
  37356. image: {
  37357. source: "./media/characters/rezukii/sitting.svg",
  37358. extra: 1023/813,
  37359. bottom: 45/1068
  37360. }
  37361. },
  37362. },
  37363. [
  37364. {
  37365. name: "Tiny",
  37366. height: math.unit(2, "feet")
  37367. },
  37368. {
  37369. name: "Smol",
  37370. height: math.unit(4, "feet")
  37371. },
  37372. {
  37373. name: "Normal",
  37374. height: math.unit(8, "feet"),
  37375. default: true
  37376. },
  37377. {
  37378. name: "Big",
  37379. height: math.unit(12, "feet")
  37380. },
  37381. {
  37382. name: "Macro",
  37383. height: math.unit(30, "feet")
  37384. },
  37385. ]
  37386. ))
  37387. characterMakers.push(() => makeCharacter(
  37388. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37389. {
  37390. front: {
  37391. height: math.unit(14, "feet"),
  37392. weight: math.unit(9.5, "tonnes"),
  37393. name: "Front",
  37394. image: {
  37395. source: "./media/characters/dawnheart/front.svg",
  37396. extra: 2792/2675,
  37397. bottom: 64/2856
  37398. }
  37399. },
  37400. },
  37401. [
  37402. {
  37403. name: "Normal",
  37404. height: math.unit(14, "feet"),
  37405. default: true
  37406. },
  37407. ]
  37408. ))
  37409. characterMakers.push(() => makeCharacter(
  37410. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37411. {
  37412. front: {
  37413. height: math.unit(1.7, "m"),
  37414. name: "Front",
  37415. image: {
  37416. source: "./media/characters/gladi/front.svg",
  37417. extra: 1460/1362,
  37418. bottom: 19/1479
  37419. }
  37420. },
  37421. back: {
  37422. height: math.unit(1.7, "m"),
  37423. name: "Back",
  37424. image: {
  37425. source: "./media/characters/gladi/back.svg",
  37426. extra: 1459/1357,
  37427. bottom: 12/1471
  37428. }
  37429. },
  37430. feral: {
  37431. height: math.unit(2.05, "m"),
  37432. name: "Feral",
  37433. image: {
  37434. source: "./media/characters/gladi/feral.svg",
  37435. extra: 821/557,
  37436. bottom: 91/912
  37437. }
  37438. },
  37439. },
  37440. [
  37441. {
  37442. name: "Shortest",
  37443. height: math.unit(70, "cm")
  37444. },
  37445. {
  37446. name: "Normal",
  37447. height: math.unit(1.7, "m")
  37448. },
  37449. {
  37450. name: "Macro",
  37451. height: math.unit(10, "m"),
  37452. default: true
  37453. },
  37454. {
  37455. name: "Tallest",
  37456. height: math.unit(200, "m")
  37457. },
  37458. ]
  37459. ))
  37460. characterMakers.push(() => makeCharacter(
  37461. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37462. {
  37463. front: {
  37464. height: math.unit(5 + 7/12, "feet"),
  37465. weight: math.unit(2, "tons"),
  37466. name: "Front",
  37467. image: {
  37468. source: "./media/characters/erdno/front.svg",
  37469. extra: 1234/1129,
  37470. bottom: 35/1269
  37471. }
  37472. },
  37473. angled: {
  37474. height: math.unit(5 + 7/12, "feet"),
  37475. weight: math.unit(2, "tons"),
  37476. name: "Angled",
  37477. image: {
  37478. source: "./media/characters/erdno/angled.svg",
  37479. extra: 1185/1139,
  37480. bottom: 36/1221
  37481. }
  37482. },
  37483. side: {
  37484. height: math.unit(5 + 7/12, "feet"),
  37485. weight: math.unit(2, "tons"),
  37486. name: "Side",
  37487. image: {
  37488. source: "./media/characters/erdno/side.svg",
  37489. extra: 1191/1144,
  37490. bottom: 40/1231
  37491. }
  37492. },
  37493. back: {
  37494. height: math.unit(5 + 7/12, "feet"),
  37495. weight: math.unit(2, "tons"),
  37496. name: "Back",
  37497. image: {
  37498. source: "./media/characters/erdno/back.svg",
  37499. extra: 1202/1146,
  37500. bottom: 17/1219
  37501. }
  37502. },
  37503. frontNsfw: {
  37504. height: math.unit(5 + 7/12, "feet"),
  37505. weight: math.unit(2, "tons"),
  37506. name: "Front (NSFW)",
  37507. image: {
  37508. source: "./media/characters/erdno/front-nsfw.svg",
  37509. extra: 1234/1129,
  37510. bottom: 35/1269
  37511. }
  37512. },
  37513. angledNsfw: {
  37514. height: math.unit(5 + 7/12, "feet"),
  37515. weight: math.unit(2, "tons"),
  37516. name: "Angled (NSFW)",
  37517. image: {
  37518. source: "./media/characters/erdno/angled-nsfw.svg",
  37519. extra: 1185/1139,
  37520. bottom: 36/1221
  37521. }
  37522. },
  37523. sideNsfw: {
  37524. height: math.unit(5 + 7/12, "feet"),
  37525. weight: math.unit(2, "tons"),
  37526. name: "Side (NSFW)",
  37527. image: {
  37528. source: "./media/characters/erdno/side-nsfw.svg",
  37529. extra: 1191/1144,
  37530. bottom: 40/1231
  37531. }
  37532. },
  37533. backNsfw: {
  37534. height: math.unit(5 + 7/12, "feet"),
  37535. weight: math.unit(2, "tons"),
  37536. name: "Back (NSFW)",
  37537. image: {
  37538. source: "./media/characters/erdno/back-nsfw.svg",
  37539. extra: 1202/1146,
  37540. bottom: 17/1219
  37541. }
  37542. },
  37543. frontHyper: {
  37544. height: math.unit(5 + 7/12, "feet"),
  37545. weight: math.unit(2, "tons"),
  37546. name: "Front (Hyper)",
  37547. image: {
  37548. source: "./media/characters/erdno/front-hyper.svg",
  37549. extra: 1298/1136,
  37550. bottom: 35/1333
  37551. }
  37552. },
  37553. },
  37554. [
  37555. {
  37556. name: "Normal",
  37557. height: math.unit(5 + 7/12, "feet"),
  37558. default: true
  37559. },
  37560. {
  37561. name: "Big",
  37562. height: math.unit(5.7, "meters")
  37563. },
  37564. {
  37565. name: "Macro",
  37566. height: math.unit(5.7, "kilometers")
  37567. },
  37568. {
  37569. name: "Megamacro",
  37570. height: math.unit(5.7, "earths")
  37571. },
  37572. ]
  37573. ))
  37574. characterMakers.push(() => makeCharacter(
  37575. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37576. {
  37577. front: {
  37578. height: math.unit(5 + 10/12, "feet"),
  37579. weight: math.unit(150, "lb"),
  37580. name: "Front",
  37581. image: {
  37582. source: "./media/characters/jamie/front.svg",
  37583. extra: 1908/1768,
  37584. bottom: 19/1927
  37585. }
  37586. },
  37587. },
  37588. [
  37589. {
  37590. name: "Minimum",
  37591. height: math.unit(2, "cm")
  37592. },
  37593. {
  37594. name: "Micro",
  37595. height: math.unit(3, "inches")
  37596. },
  37597. {
  37598. name: "Normal",
  37599. height: math.unit(5 + 10/12, "feet"),
  37600. default: true
  37601. },
  37602. {
  37603. name: "Macro",
  37604. height: math.unit(150, "feet")
  37605. },
  37606. {
  37607. name: "Megamacro",
  37608. height: math.unit(10000, "m")
  37609. },
  37610. ]
  37611. ))
  37612. characterMakers.push(() => makeCharacter(
  37613. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37614. {
  37615. front: {
  37616. height: math.unit(2, "meters"),
  37617. weight: math.unit(100, "kg"),
  37618. name: "Front",
  37619. image: {
  37620. source: "./media/characters/shiron/front.svg",
  37621. extra: 2103/1985,
  37622. bottom: 98/2201
  37623. }
  37624. },
  37625. back: {
  37626. height: math.unit(2, "meters"),
  37627. weight: math.unit(100, "kg"),
  37628. name: "Back",
  37629. image: {
  37630. source: "./media/characters/shiron/back.svg",
  37631. extra: 2110/2015,
  37632. bottom: 89/2199
  37633. }
  37634. },
  37635. hand: {
  37636. height: math.unit(0.96, "feet"),
  37637. name: "Hand",
  37638. image: {
  37639. source: "./media/characters/shiron/hand.svg"
  37640. }
  37641. },
  37642. foot: {
  37643. height: math.unit(1.464, "feet"),
  37644. name: "Foot",
  37645. image: {
  37646. source: "./media/characters/shiron/foot.svg"
  37647. }
  37648. },
  37649. },
  37650. [
  37651. {
  37652. name: "Normal",
  37653. height: math.unit(2, "meters")
  37654. },
  37655. {
  37656. name: "Macro",
  37657. height: math.unit(500, "meters"),
  37658. default: true
  37659. },
  37660. {
  37661. name: "Megamacro",
  37662. height: math.unit(20, "km")
  37663. },
  37664. ]
  37665. ))
  37666. characterMakers.push(() => makeCharacter(
  37667. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37668. {
  37669. front: {
  37670. height: math.unit(6, "feet"),
  37671. name: "Front",
  37672. image: {
  37673. source: "./media/characters/sam/front.svg",
  37674. extra: 849/826,
  37675. bottom: 19/868
  37676. }
  37677. },
  37678. },
  37679. [
  37680. {
  37681. name: "Normal",
  37682. height: math.unit(6, "feet"),
  37683. default: true
  37684. },
  37685. ]
  37686. ))
  37687. characterMakers.push(() => makeCharacter(
  37688. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37689. {
  37690. front: {
  37691. height: math.unit(8 + 4/12, "feet"),
  37692. weight: math.unit(122, "kg"),
  37693. name: "Front",
  37694. image: {
  37695. source: "./media/characters/namori-kurogawa/front.svg",
  37696. extra: 1894/1576,
  37697. bottom: 34/1928
  37698. }
  37699. },
  37700. },
  37701. [
  37702. {
  37703. name: "Normal",
  37704. height: math.unit(8 + 4/12, "feet"),
  37705. default: true
  37706. },
  37707. ]
  37708. ))
  37709. characterMakers.push(() => makeCharacter(
  37710. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37711. {
  37712. front: {
  37713. height: math.unit(9, "feet"),
  37714. weight: math.unit(621, "lb"),
  37715. name: "Front",
  37716. image: {
  37717. source: "./media/characters/unmru/front.svg",
  37718. extra: 1853/1747,
  37719. bottom: 73/1926
  37720. }
  37721. },
  37722. side: {
  37723. height: math.unit(9, "feet"),
  37724. weight: math.unit(621, "lb"),
  37725. name: "Side",
  37726. image: {
  37727. source: "./media/characters/unmru/side.svg",
  37728. extra: 1781/1671,
  37729. bottom: 127/1908
  37730. }
  37731. },
  37732. back: {
  37733. height: math.unit(9, "feet"),
  37734. weight: math.unit(621, "lb"),
  37735. name: "Back",
  37736. image: {
  37737. source: "./media/characters/unmru/back.svg",
  37738. extra: 1894/1765,
  37739. bottom: 75/1969
  37740. }
  37741. },
  37742. dick: {
  37743. height: math.unit(3, "feet"),
  37744. weight: math.unit(35, "lb"),
  37745. name: "Dick",
  37746. image: {
  37747. source: "./media/characters/unmru/dick.svg"
  37748. }
  37749. },
  37750. },
  37751. [
  37752. {
  37753. name: "Normal",
  37754. height: math.unit(9, "feet")
  37755. },
  37756. {
  37757. name: "Natural",
  37758. height: math.unit(27, "feet"),
  37759. default: true
  37760. },
  37761. {
  37762. name: "Giant",
  37763. height: math.unit(90, "feet")
  37764. },
  37765. {
  37766. name: "Kaiju",
  37767. height: math.unit(270, "feet")
  37768. },
  37769. {
  37770. name: "Macro",
  37771. height: math.unit(900, "feet")
  37772. },
  37773. {
  37774. name: "Macro+",
  37775. height: math.unit(2700, "feet")
  37776. },
  37777. {
  37778. name: "Megamacro",
  37779. height: math.unit(9000, "feet")
  37780. },
  37781. {
  37782. name: "City-Crushing",
  37783. height: math.unit(27000, "feet")
  37784. },
  37785. {
  37786. name: "Mountain-Mashing",
  37787. height: math.unit(90000, "feet")
  37788. },
  37789. {
  37790. name: "Earth-Eclipsing",
  37791. height: math.unit(2.7e8, "feet")
  37792. },
  37793. {
  37794. name: "Sol-Swallowing",
  37795. height: math.unit(9e10, "feet")
  37796. },
  37797. {
  37798. name: "Majoris-Munching",
  37799. height: math.unit(2.7e13, "feet")
  37800. },
  37801. ]
  37802. ))
  37803. characterMakers.push(() => makeCharacter(
  37804. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37805. {
  37806. front: {
  37807. height: math.unit(1, "inch"),
  37808. name: "Front",
  37809. image: {
  37810. source: "./media/characters/squeaks-mouse/front.svg",
  37811. extra: 352/308,
  37812. bottom: 25/377
  37813. }
  37814. },
  37815. },
  37816. [
  37817. {
  37818. name: "Micro",
  37819. height: math.unit(1, "inch"),
  37820. default: true
  37821. },
  37822. ]
  37823. ))
  37824. characterMakers.push(() => makeCharacter(
  37825. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37826. {
  37827. side: {
  37828. height: math.unit(35, "feet"),
  37829. name: "Side",
  37830. image: {
  37831. source: "./media/characters/sayko/side.svg",
  37832. extra: 1697/1021,
  37833. bottom: 82/1779
  37834. }
  37835. },
  37836. head: {
  37837. height: math.unit(16, "feet"),
  37838. name: "Head",
  37839. image: {
  37840. source: "./media/characters/sayko/head.svg"
  37841. }
  37842. },
  37843. forepaw: {
  37844. height: math.unit(7.85, "feet"),
  37845. name: "Forepaw",
  37846. image: {
  37847. source: "./media/characters/sayko/forepaw.svg"
  37848. }
  37849. },
  37850. hindpaw: {
  37851. height: math.unit(8.8, "feet"),
  37852. name: "Hindpaw",
  37853. image: {
  37854. source: "./media/characters/sayko/hindpaw.svg"
  37855. }
  37856. },
  37857. },
  37858. [
  37859. {
  37860. name: "Normal",
  37861. height: math.unit(35, "feet"),
  37862. default: true
  37863. },
  37864. {
  37865. name: "Colossus",
  37866. height: math.unit(100, "meters")
  37867. },
  37868. {
  37869. name: "\"Small\" Deity",
  37870. height: math.unit(1, "km")
  37871. },
  37872. {
  37873. name: "\"Large\" Deity",
  37874. height: math.unit(15, "km")
  37875. },
  37876. ]
  37877. ))
  37878. characterMakers.push(() => makeCharacter(
  37879. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37880. {
  37881. front: {
  37882. height: math.unit(6, "feet"),
  37883. weight: math.unit(250, "lb"),
  37884. name: "Front",
  37885. image: {
  37886. source: "./media/characters/mukiro/front.svg",
  37887. extra: 1368/1310,
  37888. bottom: 34/1402
  37889. }
  37890. },
  37891. },
  37892. [
  37893. {
  37894. name: "Normal",
  37895. height: math.unit(6, "feet"),
  37896. default: true
  37897. },
  37898. ]
  37899. ))
  37900. characterMakers.push(() => makeCharacter(
  37901. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37902. {
  37903. front: {
  37904. height: math.unit(12 + 4/12, "feet"),
  37905. name: "Front",
  37906. image: {
  37907. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37908. extra: 1346/1311,
  37909. bottom: 65/1411
  37910. }
  37911. },
  37912. },
  37913. [
  37914. {
  37915. name: "Base",
  37916. height: math.unit(12 + 4/12, "feet"),
  37917. default: true
  37918. },
  37919. {
  37920. name: "Macro",
  37921. height: math.unit(150, "feet")
  37922. },
  37923. {
  37924. name: "Mega",
  37925. height: math.unit(2, "miles")
  37926. },
  37927. {
  37928. name: "Demi God",
  37929. height: math.unit(4, "AU")
  37930. },
  37931. {
  37932. name: "God Size",
  37933. height: math.unit(1, "universe")
  37934. },
  37935. ]
  37936. ))
  37937. characterMakers.push(() => makeCharacter(
  37938. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37939. {
  37940. front: {
  37941. height: math.unit(3 + 3/12, "feet"),
  37942. weight: math.unit(88, "lb"),
  37943. name: "Front",
  37944. image: {
  37945. source: "./media/characters/trey/front.svg",
  37946. extra: 1815/1509,
  37947. bottom: 60/1875
  37948. }
  37949. },
  37950. },
  37951. [
  37952. {
  37953. name: "Normal",
  37954. height: math.unit(3 + 3/12, "feet"),
  37955. default: true
  37956. },
  37957. ]
  37958. ))
  37959. characterMakers.push(() => makeCharacter(
  37960. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  37961. {
  37962. front: {
  37963. height: math.unit(4, "meters"),
  37964. name: "Front",
  37965. image: {
  37966. source: "./media/characters/adelonda/front.svg",
  37967. extra: 1077/982,
  37968. bottom: 39/1116
  37969. }
  37970. },
  37971. back: {
  37972. height: math.unit(4, "meters"),
  37973. name: "Back",
  37974. image: {
  37975. source: "./media/characters/adelonda/back.svg",
  37976. extra: 1105/1003,
  37977. bottom: 25/1130
  37978. }
  37979. },
  37980. feral: {
  37981. height: math.unit(40/1.5, "meters"),
  37982. name: "Feral",
  37983. image: {
  37984. source: "./media/characters/adelonda/feral.svg",
  37985. extra: 597/271,
  37986. bottom: 387/984
  37987. }
  37988. },
  37989. },
  37990. [
  37991. {
  37992. name: "Normal",
  37993. height: math.unit(4, "meters"),
  37994. default: true
  37995. },
  37996. ]
  37997. ))
  37998. characterMakers.push(() => makeCharacter(
  37999. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38000. {
  38001. front: {
  38002. height: math.unit(8 + 4/12, "feet"),
  38003. weight: math.unit(670, "lb"),
  38004. name: "Front",
  38005. image: {
  38006. source: "./media/characters/acadiel/front.svg",
  38007. extra: 1901/1595,
  38008. bottom: 142/2043
  38009. }
  38010. },
  38011. },
  38012. [
  38013. {
  38014. name: "Normal",
  38015. height: math.unit(8 + 4/12, "feet"),
  38016. default: true
  38017. },
  38018. {
  38019. name: "Macro",
  38020. height: math.unit(200, "feet")
  38021. },
  38022. ]
  38023. ))
  38024. characterMakers.push(() => makeCharacter(
  38025. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38026. {
  38027. front: {
  38028. height: math.unit(6 + 2/12, "feet"),
  38029. weight: math.unit(185, "lb"),
  38030. name: "Front",
  38031. image: {
  38032. source: "./media/characters/kayne-ein/front.svg",
  38033. extra: 1780/1560,
  38034. bottom: 81/1861
  38035. }
  38036. },
  38037. },
  38038. [
  38039. {
  38040. name: "Normal",
  38041. height: math.unit(6 + 2/12, "feet"),
  38042. default: true
  38043. },
  38044. {
  38045. name: "Transformation Stage",
  38046. height: math.unit(15, "feet")
  38047. },
  38048. {
  38049. name: "Macro",
  38050. height: math.unit(150, "feet")
  38051. },
  38052. {
  38053. name: "Earth's Shadow",
  38054. height: math.unit(6200, "miles")
  38055. },
  38056. {
  38057. name: "Universal Demon",
  38058. height: math.unit(28e9, "parsecs")
  38059. },
  38060. {
  38061. name: "Multiverse God",
  38062. height: math.unit(3, "multiverses")
  38063. },
  38064. ]
  38065. ))
  38066. characterMakers.push(() => makeCharacter(
  38067. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38068. {
  38069. front: {
  38070. height: math.unit(5 + 5/12, "feet"),
  38071. name: "Front",
  38072. image: {
  38073. source: "./media/characters/fawn/front.svg",
  38074. extra: 1873/1731,
  38075. bottom: 95/1968
  38076. }
  38077. },
  38078. back: {
  38079. height: math.unit(5 + 5/12, "feet"),
  38080. name: "Back",
  38081. image: {
  38082. source: "./media/characters/fawn/back.svg",
  38083. extra: 1813/1700,
  38084. bottom: 14/1827
  38085. }
  38086. },
  38087. hoof: {
  38088. height: math.unit(1.45, "feet"),
  38089. name: "Hoof",
  38090. image: {
  38091. source: "./media/characters/fawn/hoof.svg"
  38092. }
  38093. },
  38094. },
  38095. [
  38096. {
  38097. name: "Normal",
  38098. height: math.unit(5 + 5/12, "feet"),
  38099. default: true
  38100. },
  38101. ]
  38102. ))
  38103. characterMakers.push(() => makeCharacter(
  38104. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38105. {
  38106. front: {
  38107. height: math.unit(2 + 5/12, "feet"),
  38108. name: "Front",
  38109. image: {
  38110. source: "./media/characters/orion/front.svg",
  38111. extra: 1366/1304,
  38112. bottom: 43/1409
  38113. }
  38114. },
  38115. paw: {
  38116. height: math.unit(0.52, "feet"),
  38117. name: "Paw",
  38118. image: {
  38119. source: "./media/characters/orion/paw.svg"
  38120. }
  38121. },
  38122. },
  38123. [
  38124. {
  38125. name: "Normal",
  38126. height: math.unit(2 + 5/12, "feet"),
  38127. default: true
  38128. },
  38129. ]
  38130. ))
  38131. characterMakers.push(() => makeCharacter(
  38132. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38133. {
  38134. front: {
  38135. height: math.unit(5 + 10/12, "feet"),
  38136. name: "Front",
  38137. image: {
  38138. source: "./media/characters/vera/front.svg",
  38139. extra: 1680/1575,
  38140. bottom: 49/1729
  38141. }
  38142. },
  38143. back: {
  38144. height: math.unit(5 + 10/12, "feet"),
  38145. name: "Back",
  38146. image: {
  38147. source: "./media/characters/vera/back.svg",
  38148. extra: 1700/1588,
  38149. bottom: 18/1718
  38150. }
  38151. },
  38152. arcanine: {
  38153. height: math.unit(6 + 8/12, "feet"),
  38154. name: "Arcanine",
  38155. image: {
  38156. source: "./media/characters/vera/arcanine.svg",
  38157. extra: 1590/1511,
  38158. bottom: 71/1661
  38159. }
  38160. },
  38161. maw: {
  38162. height: math.unit(0.82, "feet"),
  38163. name: "Maw",
  38164. image: {
  38165. source: "./media/characters/vera/maw.svg"
  38166. }
  38167. },
  38168. mawArcanine: {
  38169. height: math.unit(0.97, "feet"),
  38170. name: "Maw (Arcanine)",
  38171. image: {
  38172. source: "./media/characters/vera/maw-arcanine.svg"
  38173. }
  38174. },
  38175. paw: {
  38176. height: math.unit(0.75, "feet"),
  38177. name: "Paw",
  38178. image: {
  38179. source: "./media/characters/vera/paw.svg"
  38180. }
  38181. },
  38182. pawprint: {
  38183. height: math.unit(0.52, "feet"),
  38184. name: "Pawprint",
  38185. image: {
  38186. source: "./media/characters/vera/pawprint.svg"
  38187. }
  38188. },
  38189. },
  38190. [
  38191. {
  38192. name: "Normal",
  38193. height: math.unit(5 + 10/12, "feet"),
  38194. default: true
  38195. },
  38196. {
  38197. name: "Macro",
  38198. height: math.unit(75, "feet")
  38199. },
  38200. ]
  38201. ))
  38202. characterMakers.push(() => makeCharacter(
  38203. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38204. {
  38205. front: {
  38206. height: math.unit(4, "feet"),
  38207. weight: math.unit(40, "lb"),
  38208. name: "Front",
  38209. image: {
  38210. source: "./media/characters/orvan-rabbit/front.svg",
  38211. extra: 1896/1642,
  38212. bottom: 29/1925
  38213. }
  38214. },
  38215. },
  38216. [
  38217. {
  38218. name: "Normal",
  38219. height: math.unit(4, "feet"),
  38220. default: true
  38221. },
  38222. ]
  38223. ))
  38224. characterMakers.push(() => makeCharacter(
  38225. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38226. {
  38227. front: {
  38228. height: math.unit(6, "feet"),
  38229. weight: math.unit(168, "lb"),
  38230. name: "Front",
  38231. image: {
  38232. source: "./media/characters/lisa/front.svg",
  38233. extra: 2065/1867,
  38234. bottom: 46/2111
  38235. }
  38236. },
  38237. back: {
  38238. height: math.unit(6, "feet"),
  38239. weight: math.unit(168, "lb"),
  38240. name: "Back",
  38241. image: {
  38242. source: "./media/characters/lisa/back.svg",
  38243. extra: 1982/1838,
  38244. bottom: 29/2011
  38245. }
  38246. },
  38247. maw: {
  38248. height: math.unit(0.81, "feet"),
  38249. name: "Maw",
  38250. image: {
  38251. source: "./media/characters/lisa/maw.svg"
  38252. }
  38253. },
  38254. paw: {
  38255. height: math.unit(0.9, "feet"),
  38256. name: "Paw",
  38257. image: {
  38258. source: "./media/characters/lisa/paw.svg"
  38259. }
  38260. },
  38261. caribousune: {
  38262. height: math.unit(7 + 2/12, "feet"),
  38263. weight: math.unit(268, "lb"),
  38264. name: "Caribousune",
  38265. image: {
  38266. source: "./media/characters/lisa/caribousune.svg",
  38267. extra: 1843/1633,
  38268. bottom: 29/1872
  38269. }
  38270. },
  38271. frontCaribousune: {
  38272. height: math.unit(7 + 2/12, "feet"),
  38273. weight: math.unit(268, "lb"),
  38274. name: "Front (Caribousune)",
  38275. image: {
  38276. source: "./media/characters/lisa/front-caribousune.svg",
  38277. extra: 1818/1638,
  38278. bottom: 52/1870
  38279. }
  38280. },
  38281. sideCaribousune: {
  38282. height: math.unit(7 + 2/12, "feet"),
  38283. weight: math.unit(268, "lb"),
  38284. name: "Side (Caribousune)",
  38285. image: {
  38286. source: "./media/characters/lisa/side-caribousune.svg",
  38287. extra: 1851/1635,
  38288. bottom: 16/1867
  38289. }
  38290. },
  38291. backCaribousune: {
  38292. height: math.unit(7 + 2/12, "feet"),
  38293. weight: math.unit(268, "lb"),
  38294. name: "Back (Caribousune)",
  38295. image: {
  38296. source: "./media/characters/lisa/back-caribousune.svg",
  38297. extra: 1801/1604,
  38298. bottom: 44/1845
  38299. }
  38300. },
  38301. caribou: {
  38302. height: math.unit(7 + 2/12, "feet"),
  38303. weight: math.unit(268, "lb"),
  38304. name: "Caribou",
  38305. image: {
  38306. source: "./media/characters/lisa/caribou.svg",
  38307. extra: 1843/1633,
  38308. bottom: 29/1872
  38309. }
  38310. },
  38311. frontCaribou: {
  38312. height: math.unit(7 + 2/12, "feet"),
  38313. weight: math.unit(268, "lb"),
  38314. name: "Front (Caribou)",
  38315. image: {
  38316. source: "./media/characters/lisa/front-caribou.svg",
  38317. extra: 1818/1638,
  38318. bottom: 52/1870
  38319. }
  38320. },
  38321. sideCaribou: {
  38322. height: math.unit(7 + 2/12, "feet"),
  38323. weight: math.unit(268, "lb"),
  38324. name: "Side (Caribou)",
  38325. image: {
  38326. source: "./media/characters/lisa/side-caribou.svg",
  38327. extra: 1851/1635,
  38328. bottom: 16/1867
  38329. }
  38330. },
  38331. backCaribou: {
  38332. height: math.unit(7 + 2/12, "feet"),
  38333. weight: math.unit(268, "lb"),
  38334. name: "Back (Caribou)",
  38335. image: {
  38336. source: "./media/characters/lisa/back-caribou.svg",
  38337. extra: 1801/1604,
  38338. bottom: 44/1845
  38339. }
  38340. },
  38341. mawCaribou: {
  38342. height: math.unit(1.45, "feet"),
  38343. name: "Maw (Caribou)",
  38344. image: {
  38345. source: "./media/characters/lisa/maw-caribou.svg"
  38346. }
  38347. },
  38348. mawCaribousune: {
  38349. height: math.unit(1.45, "feet"),
  38350. name: "Maw (Caribousune)",
  38351. image: {
  38352. source: "./media/characters/lisa/maw-caribousune.svg"
  38353. }
  38354. },
  38355. pawCaribousune: {
  38356. height: math.unit(1.61, "feet"),
  38357. name: "Paw (Caribou)",
  38358. image: {
  38359. source: "./media/characters/lisa/paw-caribousune.svg"
  38360. }
  38361. },
  38362. },
  38363. [
  38364. {
  38365. name: "Normal",
  38366. height: math.unit(6, "feet")
  38367. },
  38368. {
  38369. name: "God Size",
  38370. height: math.unit(72, "feet"),
  38371. default: true
  38372. },
  38373. {
  38374. name: "Towering",
  38375. height: math.unit(288, "feet")
  38376. },
  38377. {
  38378. name: "City Size",
  38379. height: math.unit(48384, "feet")
  38380. },
  38381. {
  38382. name: "Continental",
  38383. height: math.unit(4200, "miles")
  38384. },
  38385. {
  38386. name: "Planet Eater",
  38387. height: math.unit(42, "earths")
  38388. },
  38389. {
  38390. name: "Star Swallower",
  38391. height: math.unit(42, "solarradii")
  38392. },
  38393. {
  38394. name: "System Swallower",
  38395. height: math.unit(84000, "AU")
  38396. },
  38397. {
  38398. name: "Galaxy Gobbler",
  38399. height: math.unit(42, "galaxies")
  38400. },
  38401. {
  38402. name: "Universe Devourer",
  38403. height: math.unit(42, "universes")
  38404. },
  38405. {
  38406. name: "Multiverse Muncher",
  38407. height: math.unit(42, "multiverses")
  38408. },
  38409. ]
  38410. ))
  38411. characterMakers.push(() => makeCharacter(
  38412. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38413. {
  38414. front: {
  38415. height: math.unit(36, "feet"),
  38416. name: "Front",
  38417. image: {
  38418. source: "./media/characters/shadow-rat/front.svg",
  38419. extra: 1845/1758,
  38420. bottom: 83/1928
  38421. }
  38422. },
  38423. },
  38424. [
  38425. {
  38426. name: "Macro",
  38427. height: math.unit(36, "feet"),
  38428. default: true
  38429. },
  38430. ]
  38431. ))
  38432. characterMakers.push(() => makeCharacter(
  38433. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38434. {
  38435. side: {
  38436. height: math.unit(8, "feet"),
  38437. weight: math.unit(2630, "lb"),
  38438. name: "Side",
  38439. image: {
  38440. source: "./media/characters/torallia/side.svg",
  38441. extra: 2164/2021,
  38442. bottom: 371/2535
  38443. }
  38444. },
  38445. },
  38446. [
  38447. {
  38448. name: "Mortal Interaction",
  38449. height: math.unit(8, "feet")
  38450. },
  38451. {
  38452. name: "Natural",
  38453. height: math.unit(24, "feet"),
  38454. default: true
  38455. },
  38456. {
  38457. name: "Giant",
  38458. height: math.unit(80, "feet")
  38459. },
  38460. {
  38461. name: "Kaiju",
  38462. height: math.unit(240, "feet")
  38463. },
  38464. {
  38465. name: "Macro",
  38466. height: math.unit(800, "feet")
  38467. },
  38468. {
  38469. name: "Macro+",
  38470. height: math.unit(2400, "feet")
  38471. },
  38472. {
  38473. name: "Macro++",
  38474. height: math.unit(8000, "feet")
  38475. },
  38476. {
  38477. name: "City-Crushing",
  38478. height: math.unit(24000, "feet")
  38479. },
  38480. {
  38481. name: "Mountain-Mashing",
  38482. height: math.unit(80000, "feet")
  38483. },
  38484. {
  38485. name: "District Demolisher",
  38486. height: math.unit(240000, "feet")
  38487. },
  38488. {
  38489. name: "Tri-County Terror",
  38490. height: math.unit(800000, "feet")
  38491. },
  38492. {
  38493. name: "State Smasher",
  38494. height: math.unit(2.4e6, "feet")
  38495. },
  38496. {
  38497. name: "Nation Nemesis",
  38498. height: math.unit(8e6, "feet")
  38499. },
  38500. {
  38501. name: "Continent Cracker",
  38502. height: math.unit(2.4e7, "feet")
  38503. },
  38504. {
  38505. name: "Planet-Pillaging",
  38506. height: math.unit(8e7, "feet")
  38507. },
  38508. {
  38509. name: "Earth-Eclipsing",
  38510. height: math.unit(2.4e8, "feet")
  38511. },
  38512. {
  38513. name: "Jovian-Jostling",
  38514. height: math.unit(8e8, "feet")
  38515. },
  38516. {
  38517. name: "Gas Giant Gulper",
  38518. height: math.unit(2.4e9, "feet")
  38519. },
  38520. {
  38521. name: "Astral Annihilator",
  38522. height: math.unit(8e9, "feet")
  38523. },
  38524. {
  38525. name: "Celestial Conqueror",
  38526. height: math.unit(2.4e10, "feet")
  38527. },
  38528. {
  38529. name: "Sol-Swallowing",
  38530. height: math.unit(8e10, "feet")
  38531. },
  38532. {
  38533. name: "Hunter of the Heavens",
  38534. height: math.unit(2.4e13, "feet")
  38535. },
  38536. ]
  38537. ))
  38538. characterMakers.push(() => makeCharacter(
  38539. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38540. {
  38541. front: {
  38542. height: math.unit(6 + 8/12, "feet"),
  38543. name: "Front",
  38544. image: {
  38545. source: "./media/characters/rebecca-pawlson/front.svg",
  38546. extra: 1737/1596,
  38547. bottom: 107/1844
  38548. }
  38549. },
  38550. back: {
  38551. height: math.unit(6 + 8/12, "feet"),
  38552. name: "Back",
  38553. image: {
  38554. source: "./media/characters/rebecca-pawlson/back.svg",
  38555. extra: 1702/1523,
  38556. bottom: 86/1788
  38557. }
  38558. },
  38559. },
  38560. [
  38561. {
  38562. name: "Normal",
  38563. height: math.unit(6 + 8/12, "feet")
  38564. },
  38565. {
  38566. name: "Mini Macro",
  38567. height: math.unit(10, "feet"),
  38568. default: true
  38569. },
  38570. {
  38571. name: "Macro",
  38572. height: math.unit(100, "feet")
  38573. },
  38574. {
  38575. name: "Mega Macro",
  38576. height: math.unit(2500, "feet")
  38577. },
  38578. {
  38579. name: "Giga Macro",
  38580. height: math.unit(50, "miles")
  38581. },
  38582. ]
  38583. ))
  38584. characterMakers.push(() => makeCharacter(
  38585. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38586. {
  38587. front: {
  38588. height: math.unit(7 + 6/12, "feet"),
  38589. weight: math.unit(600, "lb"),
  38590. name: "Front",
  38591. image: {
  38592. source: "./media/characters/moxie-nova/front.svg",
  38593. extra: 1734/1652,
  38594. bottom: 41/1775
  38595. }
  38596. },
  38597. },
  38598. [
  38599. {
  38600. name: "Normal",
  38601. height: math.unit(7 + 6/12, "feet"),
  38602. default: true
  38603. },
  38604. ]
  38605. ))
  38606. characterMakers.push(() => makeCharacter(
  38607. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38608. {
  38609. goat: {
  38610. height: math.unit(4, "feet"),
  38611. weight: math.unit(180, "lb"),
  38612. name: "Goat",
  38613. image: {
  38614. source: "./media/characters/tiffany/goat.svg",
  38615. extra: 1845/1595,
  38616. bottom: 106/1951
  38617. }
  38618. },
  38619. front: {
  38620. height: math.unit(5, "feet"),
  38621. weight: math.unit(150, "lb"),
  38622. name: "Foxcoon",
  38623. image: {
  38624. source: "./media/characters/tiffany/foxcoon.svg",
  38625. extra: 1941/1845,
  38626. bottom: 58/1999
  38627. }
  38628. },
  38629. },
  38630. [
  38631. {
  38632. name: "Normal",
  38633. height: math.unit(5, "feet"),
  38634. default: true
  38635. },
  38636. ]
  38637. ))
  38638. characterMakers.push(() => makeCharacter(
  38639. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38640. {
  38641. front: {
  38642. height: math.unit(8, "feet"),
  38643. weight: math.unit(300, "lb"),
  38644. name: "Front",
  38645. image: {
  38646. source: "./media/characters/raxinath/front.svg",
  38647. extra: 1407/1309,
  38648. bottom: 39/1446
  38649. }
  38650. },
  38651. back: {
  38652. height: math.unit(8, "feet"),
  38653. weight: math.unit(300, "lb"),
  38654. name: "Back",
  38655. image: {
  38656. source: "./media/characters/raxinath/back.svg",
  38657. extra: 1405/1315,
  38658. bottom: 9/1414
  38659. }
  38660. },
  38661. },
  38662. [
  38663. {
  38664. name: "Speck",
  38665. height: math.unit(0.5, "nm")
  38666. },
  38667. {
  38668. name: "Micro",
  38669. height: math.unit(3, "inches")
  38670. },
  38671. {
  38672. name: "Kobold",
  38673. height: math.unit(3, "feet")
  38674. },
  38675. {
  38676. name: "Normal",
  38677. height: math.unit(8, "feet"),
  38678. default: true
  38679. },
  38680. {
  38681. name: "Giant",
  38682. height: math.unit(50, "feet")
  38683. },
  38684. {
  38685. name: "Macro",
  38686. height: math.unit(1000, "feet")
  38687. },
  38688. {
  38689. name: "Megamacro",
  38690. height: math.unit(1, "mile")
  38691. },
  38692. ]
  38693. ))
  38694. characterMakers.push(() => makeCharacter(
  38695. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38696. {
  38697. front: {
  38698. height: math.unit(10, "feet"),
  38699. weight: math.unit(1442, "lb"),
  38700. name: "Front",
  38701. image: {
  38702. source: "./media/characters/mal-dragon/front.svg",
  38703. extra: 1515/1444,
  38704. bottom: 113/1628
  38705. }
  38706. },
  38707. back: {
  38708. height: math.unit(10, "feet"),
  38709. weight: math.unit(1442, "lb"),
  38710. name: "Back",
  38711. image: {
  38712. source: "./media/characters/mal-dragon/back.svg",
  38713. extra: 1527/1434,
  38714. bottom: 25/1552
  38715. }
  38716. },
  38717. },
  38718. [
  38719. {
  38720. name: "Mortal Interaction",
  38721. height: math.unit(10, "feet"),
  38722. default: true
  38723. },
  38724. {
  38725. name: "Large",
  38726. height: math.unit(30, "feet")
  38727. },
  38728. {
  38729. name: "Kaiju",
  38730. height: math.unit(300, "feet")
  38731. },
  38732. {
  38733. name: "Megamacro",
  38734. height: math.unit(10000, "feet")
  38735. },
  38736. {
  38737. name: "Continent Cracker",
  38738. height: math.unit(30000000, "feet")
  38739. },
  38740. {
  38741. name: "Sol-Swallowing",
  38742. height: math.unit(1e11, "feet")
  38743. },
  38744. {
  38745. name: "Light Universal",
  38746. height: math.unit(5, "universes")
  38747. },
  38748. {
  38749. name: "Universe Atoms",
  38750. height: math.unit(1.829e9, "universes")
  38751. },
  38752. {
  38753. name: "Light Multiversal",
  38754. height: math.unit(5, "multiverses")
  38755. },
  38756. {
  38757. name: "Multiverse Atoms",
  38758. height: math.unit(1.829e9, "multiverses")
  38759. },
  38760. {
  38761. name: "Fabric of Time",
  38762. height: math.unit(1e262, "multiverses")
  38763. },
  38764. ]
  38765. ))
  38766. characterMakers.push(() => makeCharacter(
  38767. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38768. {
  38769. front: {
  38770. height: math.unit(9, "feet"),
  38771. weight: math.unit(1050, "lb"),
  38772. name: "Front",
  38773. image: {
  38774. source: "./media/characters/tabitha/front.svg",
  38775. extra: 2083/1994,
  38776. bottom: 68/2151
  38777. }
  38778. },
  38779. },
  38780. [
  38781. {
  38782. name: "Baseline",
  38783. height: math.unit(9, "feet"),
  38784. default: true
  38785. },
  38786. {
  38787. name: "Giant",
  38788. height: math.unit(90, "feet")
  38789. },
  38790. {
  38791. name: "Macro",
  38792. height: math.unit(900, "feet")
  38793. },
  38794. {
  38795. name: "Megamacro",
  38796. height: math.unit(9000, "feet")
  38797. },
  38798. {
  38799. name: "City-Crushing",
  38800. height: math.unit(27000, "feet")
  38801. },
  38802. {
  38803. name: "Mountain-Mashing",
  38804. height: math.unit(90000, "feet")
  38805. },
  38806. {
  38807. name: "Nation Nemesis",
  38808. height: math.unit(9e6, "feet")
  38809. },
  38810. {
  38811. name: "Continent Cracker",
  38812. height: math.unit(27e6, "feet")
  38813. },
  38814. {
  38815. name: "Earth-Eclipsing",
  38816. height: math.unit(2.7e8, "feet")
  38817. },
  38818. {
  38819. name: "Gas Giant Gulper",
  38820. height: math.unit(2.7e9, "feet")
  38821. },
  38822. {
  38823. name: "Sol-Swallowing",
  38824. height: math.unit(9e10, "feet")
  38825. },
  38826. {
  38827. name: "Galaxy Gulper",
  38828. height: math.unit(9, "galaxies")
  38829. },
  38830. {
  38831. name: "Cosmos Churner",
  38832. height: math.unit(9, "universes")
  38833. },
  38834. ]
  38835. ))
  38836. characterMakers.push(() => makeCharacter(
  38837. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38838. {
  38839. front: {
  38840. height: math.unit(160, "cm"),
  38841. weight: math.unit(55, "kg"),
  38842. name: "Front",
  38843. image: {
  38844. source: "./media/characters/tow/front.svg",
  38845. extra: 1751/1722,
  38846. bottom: 74/1825
  38847. }
  38848. },
  38849. },
  38850. [
  38851. {
  38852. name: "Norm",
  38853. height: math.unit(160, "cm")
  38854. },
  38855. {
  38856. name: "Casual",
  38857. height: math.unit(3200, "m"),
  38858. default: true
  38859. },
  38860. {
  38861. name: "Show-Off",
  38862. height: math.unit(160, "km")
  38863. },
  38864. ]
  38865. ))
  38866. characterMakers.push(() => makeCharacter(
  38867. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38868. {
  38869. front: {
  38870. height: math.unit(7 + 11/12, "feet"),
  38871. weight: math.unit(342.8, "lb"),
  38872. name: "Front",
  38873. image: {
  38874. source: "./media/characters/vivian-orca-dragon/front.svg",
  38875. extra: 1890/1865,
  38876. bottom: 28/1918
  38877. }
  38878. },
  38879. },
  38880. [
  38881. {
  38882. name: "Micro",
  38883. height: math.unit(5, "inches")
  38884. },
  38885. {
  38886. name: "Normal",
  38887. height: math.unit(7 + 11/12, "feet"),
  38888. default: true
  38889. },
  38890. {
  38891. name: "Macro",
  38892. height: math.unit(395 + 7/12, "feet")
  38893. },
  38894. ]
  38895. ))
  38896. characterMakers.push(() => makeCharacter(
  38897. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38898. {
  38899. side: {
  38900. height: math.unit(10, "feet"),
  38901. weight: math.unit(1442, "lb"),
  38902. name: "Side",
  38903. image: {
  38904. source: "./media/characters/lotherakon/side.svg",
  38905. extra: 1604/1497,
  38906. bottom: 89/1693
  38907. }
  38908. },
  38909. },
  38910. [
  38911. {
  38912. name: "Mortal Interaction",
  38913. height: math.unit(10, "feet")
  38914. },
  38915. {
  38916. name: "Large",
  38917. height: math.unit(30, "feet"),
  38918. default: true
  38919. },
  38920. {
  38921. name: "Giant",
  38922. height: math.unit(100, "feet")
  38923. },
  38924. {
  38925. name: "Kaiju",
  38926. height: math.unit(300, "feet")
  38927. },
  38928. {
  38929. name: "Macro",
  38930. height: math.unit(1000, "feet")
  38931. },
  38932. {
  38933. name: "Macro+",
  38934. height: math.unit(3000, "feet")
  38935. },
  38936. {
  38937. name: "Megamacro",
  38938. height: math.unit(10000, "feet")
  38939. },
  38940. {
  38941. name: "City-Crushing",
  38942. height: math.unit(30000, "feet")
  38943. },
  38944. {
  38945. name: "Continent Cracker",
  38946. height: math.unit(30e6, "feet")
  38947. },
  38948. {
  38949. name: "Earth Eclipsing",
  38950. height: math.unit(3e8, "feet")
  38951. },
  38952. {
  38953. name: "Gas Giant Gulper",
  38954. height: math.unit(3e9, "feet")
  38955. },
  38956. {
  38957. name: "Sol-Swallowing",
  38958. height: math.unit(1e11, "feet")
  38959. },
  38960. {
  38961. name: "System Swallower",
  38962. height: math.unit(3e14, "feet")
  38963. },
  38964. {
  38965. name: "Galaxy Gulper",
  38966. height: math.unit(10, "galaxies")
  38967. },
  38968. {
  38969. name: "Light Universal",
  38970. height: math.unit(5, "universes")
  38971. },
  38972. {
  38973. name: "Universe Palm",
  38974. height: math.unit(20, "universes")
  38975. },
  38976. {
  38977. name: "Light Multiversal",
  38978. height: math.unit(5, "multiverses")
  38979. },
  38980. {
  38981. name: "Multiverse Palm",
  38982. height: math.unit(20, "multiverses")
  38983. },
  38984. {
  38985. name: "Inferno Incarnate",
  38986. height: math.unit(1e7, "multiverses")
  38987. },
  38988. ]
  38989. ))
  38990. characterMakers.push(() => makeCharacter(
  38991. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38992. {
  38993. front: {
  38994. height: math.unit(8, "feet"),
  38995. weight: math.unit(1200, "lb"),
  38996. name: "Front",
  38997. image: {
  38998. source: "./media/characters/malithee/front.svg",
  38999. extra: 1675/1640,
  39000. bottom: 162/1837
  39001. }
  39002. },
  39003. },
  39004. [
  39005. {
  39006. name: "Mortal Interaction",
  39007. height: math.unit(8, "feet"),
  39008. default: true
  39009. },
  39010. {
  39011. name: "Large",
  39012. height: math.unit(24, "feet")
  39013. },
  39014. {
  39015. name: "Kaiju",
  39016. height: math.unit(240, "feet")
  39017. },
  39018. {
  39019. name: "Megamacro",
  39020. height: math.unit(8000, "feet")
  39021. },
  39022. {
  39023. name: "Continent Cracker",
  39024. height: math.unit(24e6, "feet")
  39025. },
  39026. {
  39027. name: "Earth-Eclipsing",
  39028. height: math.unit(2.4e8, "feet")
  39029. },
  39030. {
  39031. name: "Sol-Swallowing",
  39032. height: math.unit(8e10, "feet")
  39033. },
  39034. {
  39035. name: "Galaxy Gulper",
  39036. height: math.unit(8, "galaxies")
  39037. },
  39038. {
  39039. name: "Light Universal",
  39040. height: math.unit(4, "universes")
  39041. },
  39042. {
  39043. name: "Universe Atoms",
  39044. height: math.unit(1.829e9, "universes")
  39045. },
  39046. {
  39047. name: "Light Multiversal",
  39048. height: math.unit(4, "multiverses")
  39049. },
  39050. {
  39051. name: "Multiverse Atoms",
  39052. height: math.unit(1.829e9, "multiverses")
  39053. },
  39054. {
  39055. name: "Nigh-Omnipresence",
  39056. height: math.unit(8e261, "multiverses")
  39057. },
  39058. ]
  39059. ))
  39060. characterMakers.push(() => makeCharacter(
  39061. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39062. {
  39063. front: {
  39064. height: math.unit(10, "feet"),
  39065. weight: math.unit(1500, "lb"),
  39066. name: "Front",
  39067. image: {
  39068. source: "./media/characters/miles-thestia/front.svg",
  39069. extra: 1812/1727,
  39070. bottom: 86/1898
  39071. }
  39072. },
  39073. back: {
  39074. height: math.unit(10, "feet"),
  39075. weight: math.unit(1500, "lb"),
  39076. name: "Back",
  39077. image: {
  39078. source: "./media/characters/miles-thestia/back.svg",
  39079. extra: 1799/1690,
  39080. bottom: 47/1846
  39081. }
  39082. },
  39083. frontNsfw: {
  39084. height: math.unit(10, "feet"),
  39085. weight: math.unit(1500, "lb"),
  39086. name: "Front (NSFW)",
  39087. image: {
  39088. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39089. extra: 1812/1727,
  39090. bottom: 86/1898
  39091. }
  39092. },
  39093. },
  39094. [
  39095. {
  39096. name: "Mini-Macro",
  39097. height: math.unit(10, "feet"),
  39098. default: true
  39099. },
  39100. ]
  39101. ))
  39102. characterMakers.push(() => makeCharacter(
  39103. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39104. {
  39105. front: {
  39106. height: math.unit(25, "feet"),
  39107. name: "Front",
  39108. image: {
  39109. source: "./media/characters/titan-s-wulf/front.svg",
  39110. extra: 1560/1484,
  39111. bottom: 76/1636
  39112. }
  39113. },
  39114. },
  39115. [
  39116. {
  39117. name: "Smallest",
  39118. height: math.unit(25, "feet"),
  39119. default: true
  39120. },
  39121. {
  39122. name: "Normal",
  39123. height: math.unit(200, "feet")
  39124. },
  39125. {
  39126. name: "Macro",
  39127. height: math.unit(200000, "feet")
  39128. },
  39129. {
  39130. name: "Multiversal Original",
  39131. height: math.unit(10000, "multiverses")
  39132. },
  39133. ]
  39134. ))
  39135. characterMakers.push(() => makeCharacter(
  39136. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39137. {
  39138. front: {
  39139. height: math.unit(8, "feet"),
  39140. weight: math.unit(553, "lb"),
  39141. name: "Front",
  39142. image: {
  39143. source: "./media/characters/tawendeh/front.svg",
  39144. extra: 2365/2268,
  39145. bottom: 83/2448
  39146. }
  39147. },
  39148. frontClothed: {
  39149. height: math.unit(8, "feet"),
  39150. weight: math.unit(553, "lb"),
  39151. name: "Front (Clothed)",
  39152. image: {
  39153. source: "./media/characters/tawendeh/front-clothed.svg",
  39154. extra: 2365/2268,
  39155. bottom: 83/2448
  39156. }
  39157. },
  39158. back: {
  39159. height: math.unit(8, "feet"),
  39160. weight: math.unit(553, "lb"),
  39161. name: "Back",
  39162. image: {
  39163. source: "./media/characters/tawendeh/back.svg",
  39164. extra: 2397/2294,
  39165. bottom: 42/2439
  39166. }
  39167. },
  39168. },
  39169. [
  39170. {
  39171. name: "Mortal Interaction",
  39172. height: math.unit(8, "feet"),
  39173. default: true
  39174. },
  39175. {
  39176. name: "Giant",
  39177. height: math.unit(80, "feet")
  39178. },
  39179. {
  39180. name: "Macro",
  39181. height: math.unit(800, "feet")
  39182. },
  39183. {
  39184. name: "Megamacro",
  39185. height: math.unit(8000, "feet")
  39186. },
  39187. {
  39188. name: "City-Crushing",
  39189. height: math.unit(24000, "feet")
  39190. },
  39191. {
  39192. name: "Mountain-Mashing",
  39193. height: math.unit(80000, "feet")
  39194. },
  39195. {
  39196. name: "Nation Nemesis",
  39197. height: math.unit(8e6, "feet")
  39198. },
  39199. {
  39200. name: "Continent Cracker",
  39201. height: math.unit(24e6, "feet")
  39202. },
  39203. {
  39204. name: "Earth-Eclipsing",
  39205. height: math.unit(2.4e8, "feet")
  39206. },
  39207. {
  39208. name: "Gas Giant Gulper",
  39209. height: math.unit(2.4e9, "feet")
  39210. },
  39211. {
  39212. name: "Sol-Swallowing",
  39213. height: math.unit(8e10, "feet")
  39214. },
  39215. {
  39216. name: "Galaxy Gulper",
  39217. height: math.unit(8, "galaxies")
  39218. },
  39219. {
  39220. name: "Cosmos Churner",
  39221. height: math.unit(8, "universes")
  39222. },
  39223. {
  39224. name: "Omnipotent Otter",
  39225. height: math.unit(80, "universes")
  39226. },
  39227. ]
  39228. ))
  39229. characterMakers.push(() => makeCharacter(
  39230. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39231. {
  39232. front: {
  39233. height: math.unit(2.6, "meters"),
  39234. weight: math.unit(900, "kg"),
  39235. name: "Front",
  39236. image: {
  39237. source: "./media/characters/neesha/front.svg",
  39238. extra: 1803/1653,
  39239. bottom: 128/1931
  39240. }
  39241. },
  39242. },
  39243. [
  39244. {
  39245. name: "Normal",
  39246. height: math.unit(2.6, "meters"),
  39247. default: true
  39248. },
  39249. {
  39250. name: "Macro",
  39251. height: math.unit(50, "meters")
  39252. },
  39253. ]
  39254. ))
  39255. characterMakers.push(() => makeCharacter(
  39256. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39257. {
  39258. front: {
  39259. height: math.unit(5, "feet"),
  39260. weight: math.unit(185, "lb"),
  39261. name: "Front",
  39262. image: {
  39263. source: "./media/characters/kyera/front.svg",
  39264. extra: 1875/1790,
  39265. bottom: 96/1971
  39266. }
  39267. },
  39268. },
  39269. [
  39270. {
  39271. name: "Normal",
  39272. height: math.unit(5, "feet"),
  39273. default: true
  39274. },
  39275. ]
  39276. ))
  39277. characterMakers.push(() => makeCharacter(
  39278. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39279. {
  39280. front: {
  39281. height: math.unit(7 + 6/12, "feet"),
  39282. weight: math.unit(540, "lb"),
  39283. name: "Front",
  39284. image: {
  39285. source: "./media/characters/yuko/front.svg",
  39286. extra: 1282/1222,
  39287. bottom: 101/1383
  39288. }
  39289. },
  39290. frontClothed: {
  39291. height: math.unit(7 + 6/12, "feet"),
  39292. weight: math.unit(540, "lb"),
  39293. name: "Front (Clothed)",
  39294. image: {
  39295. source: "./media/characters/yuko/front-clothed.svg",
  39296. extra: 1282/1222,
  39297. bottom: 101/1383
  39298. }
  39299. },
  39300. },
  39301. [
  39302. {
  39303. name: "Normal",
  39304. height: math.unit(7 + 6/12, "feet"),
  39305. default: true
  39306. },
  39307. {
  39308. name: "Macro",
  39309. height: math.unit(26 + 9/12, "feet")
  39310. },
  39311. {
  39312. name: "Megamacro",
  39313. height: math.unit(300, "feet")
  39314. },
  39315. {
  39316. name: "Gigamacro",
  39317. height: math.unit(5000, "feet")
  39318. },
  39319. {
  39320. name: "Planetary",
  39321. height: math.unit(10000, "miles")
  39322. },
  39323. ]
  39324. ))
  39325. characterMakers.push(() => makeCharacter(
  39326. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39327. {
  39328. front: {
  39329. height: math.unit(8 + 2/12, "feet"),
  39330. weight: math.unit(600, "lb"),
  39331. name: "Front",
  39332. image: {
  39333. source: "./media/characters/deam-nitrel/front.svg",
  39334. extra: 1308/1234,
  39335. bottom: 125/1433
  39336. }
  39337. },
  39338. },
  39339. [
  39340. {
  39341. name: "Normal",
  39342. height: math.unit(8 + 2/12, "feet"),
  39343. default: true
  39344. },
  39345. ]
  39346. ))
  39347. characterMakers.push(() => makeCharacter(
  39348. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39349. {
  39350. front: {
  39351. height: math.unit(6.1, "feet"),
  39352. weight: math.unit(180, "lb"),
  39353. name: "Front",
  39354. image: {
  39355. source: "./media/characters/skyress/front.svg",
  39356. extra: 1045/915,
  39357. bottom: 28/1073
  39358. }
  39359. },
  39360. maw: {
  39361. height: math.unit(1, "feet"),
  39362. name: "Maw",
  39363. image: {
  39364. source: "./media/characters/skyress/maw.svg"
  39365. }
  39366. },
  39367. },
  39368. [
  39369. {
  39370. name: "Normal",
  39371. height: math.unit(6.1, "feet"),
  39372. default: true
  39373. },
  39374. {
  39375. name: "Macro",
  39376. height: math.unit(200, "feet")
  39377. },
  39378. ]
  39379. ))
  39380. characterMakers.push(() => makeCharacter(
  39381. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39382. {
  39383. front: {
  39384. height: math.unit(4 + 2/12, "feet"),
  39385. weight: math.unit(40, "kg"),
  39386. name: "Front",
  39387. image: {
  39388. source: "./media/characters/amethyst-jones/front.svg",
  39389. extra: 1220/1150,
  39390. bottom: 101/1321
  39391. }
  39392. },
  39393. },
  39394. [
  39395. {
  39396. name: "Normal",
  39397. height: math.unit(4 + 2/12, "feet"),
  39398. default: true
  39399. },
  39400. ]
  39401. ))
  39402. characterMakers.push(() => makeCharacter(
  39403. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39404. {
  39405. front: {
  39406. height: math.unit(1.7, "m"),
  39407. weight: math.unit(135, "lb"),
  39408. name: "Front",
  39409. image: {
  39410. source: "./media/characters/jade/front.svg",
  39411. extra: 1818/1767,
  39412. bottom: 32/1850
  39413. }
  39414. },
  39415. back: {
  39416. height: math.unit(1.7, "m"),
  39417. weight: math.unit(135, "lb"),
  39418. name: "Back",
  39419. image: {
  39420. source: "./media/characters/jade/back.svg",
  39421. extra: 1869/1809,
  39422. bottom: 35/1904
  39423. }
  39424. },
  39425. hand: {
  39426. height: math.unit(0.24, "m"),
  39427. name: "Hand",
  39428. image: {
  39429. source: "./media/characters/jade/hand.svg"
  39430. }
  39431. },
  39432. foot: {
  39433. height: math.unit(0.263, "m"),
  39434. name: "Foot",
  39435. image: {
  39436. source: "./media/characters/jade/foot.svg"
  39437. }
  39438. },
  39439. dick: {
  39440. height: math.unit(0.47, "m"),
  39441. name: "Dick",
  39442. image: {
  39443. source: "./media/characters/jade/dick.svg"
  39444. }
  39445. },
  39446. },
  39447. [
  39448. {
  39449. name: "Micro",
  39450. height: math.unit(22, "cm")
  39451. },
  39452. {
  39453. name: "Normal",
  39454. height: math.unit(1.7, "m"),
  39455. default: true
  39456. },
  39457. {
  39458. name: "Macro",
  39459. height: math.unit(152, "m")
  39460. },
  39461. ]
  39462. ))
  39463. characterMakers.push(() => makeCharacter(
  39464. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39465. {
  39466. front: {
  39467. height: math.unit(100, "miles"),
  39468. weight: math.unit(20000, "tons"),
  39469. name: "Front",
  39470. image: {
  39471. source: "./media/characters/cookie/front.svg",
  39472. extra: 1125/1070,
  39473. bottom: 30/1155
  39474. }
  39475. },
  39476. },
  39477. [
  39478. {
  39479. name: "Big",
  39480. height: math.unit(50, "feet")
  39481. },
  39482. {
  39483. name: "Macro",
  39484. height: math.unit(100, "miles"),
  39485. default: true
  39486. },
  39487. {
  39488. name: "Megamacro",
  39489. height: math.unit(90000, "miles")
  39490. },
  39491. ]
  39492. ))
  39493. characterMakers.push(() => makeCharacter(
  39494. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39495. {
  39496. front: {
  39497. height: math.unit(6, "feet"),
  39498. weight: math.unit(145, "lb"),
  39499. name: "Front",
  39500. image: {
  39501. source: "./media/characters/farzian/front.svg",
  39502. extra: 1902/1693,
  39503. bottom: 108/2010
  39504. }
  39505. },
  39506. },
  39507. [
  39508. {
  39509. name: "Macro",
  39510. height: math.unit(500, "feet"),
  39511. default: true
  39512. },
  39513. ]
  39514. ))
  39515. characterMakers.push(() => makeCharacter(
  39516. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39517. {
  39518. front: {
  39519. height: math.unit(3 + 6/12, "feet"),
  39520. weight: math.unit(50, "lb"),
  39521. name: "Front",
  39522. image: {
  39523. source: "./media/characters/kimberly-tilson/front.svg",
  39524. extra: 1400/1322,
  39525. bottom: 36/1436
  39526. }
  39527. },
  39528. back: {
  39529. height: math.unit(3 + 6/12, "feet"),
  39530. weight: math.unit(50, "lb"),
  39531. name: "Back",
  39532. image: {
  39533. source: "./media/characters/kimberly-tilson/back.svg",
  39534. extra: 1370/1307,
  39535. bottom: 20/1390
  39536. }
  39537. },
  39538. },
  39539. [
  39540. {
  39541. name: "Normal",
  39542. height: math.unit(3 + 6/12, "feet"),
  39543. default: true
  39544. },
  39545. ]
  39546. ))
  39547. characterMakers.push(() => makeCharacter(
  39548. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39549. {
  39550. front: {
  39551. height: math.unit(1148, "feet"),
  39552. weight: math.unit(34057, "lb"),
  39553. name: "Front",
  39554. image: {
  39555. source: "./media/characters/harthos/front.svg",
  39556. extra: 1391/1339,
  39557. bottom: 13/1404
  39558. }
  39559. },
  39560. },
  39561. [
  39562. {
  39563. name: "Macro",
  39564. height: math.unit(1148, "feet"),
  39565. default: true
  39566. },
  39567. ]
  39568. ))
  39569. characterMakers.push(() => makeCharacter(
  39570. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39571. {
  39572. front: {
  39573. height: math.unit(15, "feet"),
  39574. name: "Front",
  39575. image: {
  39576. source: "./media/characters/hypatia/front.svg",
  39577. extra: 1653/1591,
  39578. bottom: 79/1732
  39579. }
  39580. },
  39581. },
  39582. [
  39583. {
  39584. name: "Normal",
  39585. height: math.unit(15, "feet")
  39586. },
  39587. {
  39588. name: "Small",
  39589. height: math.unit(300, "feet")
  39590. },
  39591. {
  39592. name: "Macro",
  39593. height: math.unit(2500, "feet"),
  39594. default: true
  39595. },
  39596. {
  39597. name: "Mega Macro",
  39598. height: math.unit(1500, "miles")
  39599. },
  39600. {
  39601. name: "Giga Macro",
  39602. height: math.unit(1.5e6, "miles")
  39603. },
  39604. ]
  39605. ))
  39606. characterMakers.push(() => makeCharacter(
  39607. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39608. {
  39609. front: {
  39610. height: math.unit(6, "feet"),
  39611. weight: math.unit(200, "lb"),
  39612. name: "Front",
  39613. image: {
  39614. source: "./media/characters/wulver/front.svg",
  39615. extra: 1724/1632,
  39616. bottom: 130/1854
  39617. }
  39618. },
  39619. frontNsfw: {
  39620. height: math.unit(6, "feet"),
  39621. weight: math.unit(200, "lb"),
  39622. name: "Front (NSFW)",
  39623. image: {
  39624. source: "./media/characters/wulver/front-nsfw.svg",
  39625. extra: 1724/1632,
  39626. bottom: 130/1854
  39627. }
  39628. },
  39629. },
  39630. [
  39631. {
  39632. name: "Human-Sized",
  39633. height: math.unit(6, "feet")
  39634. },
  39635. {
  39636. name: "Normal",
  39637. height: math.unit(4, "meters"),
  39638. default: true
  39639. },
  39640. {
  39641. name: "Large",
  39642. height: math.unit(6, "m")
  39643. },
  39644. ]
  39645. ))
  39646. characterMakers.push(() => makeCharacter(
  39647. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39648. {
  39649. front: {
  39650. height: math.unit(7, "feet"),
  39651. name: "Front",
  39652. image: {
  39653. source: "./media/characters/maru/front.svg",
  39654. extra: 1595/1570,
  39655. bottom: 0/1595
  39656. }
  39657. },
  39658. },
  39659. [
  39660. {
  39661. name: "Normal",
  39662. height: math.unit(7, "feet"),
  39663. default: true
  39664. },
  39665. {
  39666. name: "Macro",
  39667. height: math.unit(700, "feet")
  39668. },
  39669. {
  39670. name: "Mega Macro",
  39671. height: math.unit(25, "miles")
  39672. },
  39673. ]
  39674. ))
  39675. characterMakers.push(() => makeCharacter(
  39676. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39677. {
  39678. front: {
  39679. height: math.unit(6, "feet"),
  39680. weight: math.unit(170, "lb"),
  39681. name: "Front",
  39682. image: {
  39683. source: "./media/characters/xenon/front.svg",
  39684. extra: 1376/1305,
  39685. bottom: 56/1432
  39686. }
  39687. },
  39688. back: {
  39689. height: math.unit(6, "feet"),
  39690. weight: math.unit(170, "lb"),
  39691. name: "Back",
  39692. image: {
  39693. source: "./media/characters/xenon/back.svg",
  39694. extra: 1328/1259,
  39695. bottom: 95/1423
  39696. }
  39697. },
  39698. maw: {
  39699. height: math.unit(0.52, "feet"),
  39700. name: "Maw",
  39701. image: {
  39702. source: "./media/characters/xenon/maw.svg"
  39703. }
  39704. },
  39705. hand: {
  39706. height: math.unit(0.82, "feet"),
  39707. name: "Hand",
  39708. image: {
  39709. source: "./media/characters/xenon/hand.svg"
  39710. }
  39711. },
  39712. foot: {
  39713. height: math.unit(1.13, "feet"),
  39714. name: "Foot",
  39715. image: {
  39716. source: "./media/characters/xenon/foot.svg"
  39717. }
  39718. },
  39719. },
  39720. [
  39721. {
  39722. name: "Micro",
  39723. height: math.unit(0.8, "inches")
  39724. },
  39725. {
  39726. name: "Normal",
  39727. height: math.unit(6, "feet")
  39728. },
  39729. {
  39730. name: "Macro",
  39731. height: math.unit(50, "feet"),
  39732. default: true
  39733. },
  39734. {
  39735. name: "Macro+",
  39736. height: math.unit(250, "feet")
  39737. },
  39738. {
  39739. name: "Megamacro",
  39740. height: math.unit(1500, "feet")
  39741. },
  39742. ]
  39743. ))
  39744. characterMakers.push(() => makeCharacter(
  39745. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39746. {
  39747. front: {
  39748. height: math.unit(7 + 5/12, "feet"),
  39749. name: "Front",
  39750. image: {
  39751. source: "./media/characters/zane/front.svg",
  39752. extra: 1260/1203,
  39753. bottom: 94/1354
  39754. }
  39755. },
  39756. back: {
  39757. height: math.unit(5.05, "feet"),
  39758. name: "Back",
  39759. image: {
  39760. source: "./media/characters/zane/back.svg",
  39761. extra: 893/829,
  39762. bottom: 30/923
  39763. }
  39764. },
  39765. werewolf: {
  39766. height: math.unit(11, "feet"),
  39767. name: "Werewolf",
  39768. image: {
  39769. source: "./media/characters/zane/werewolf.svg",
  39770. extra: 1383/1323,
  39771. bottom: 89/1472
  39772. }
  39773. },
  39774. foot: {
  39775. height: math.unit(1.46, "feet"),
  39776. name: "Foot",
  39777. image: {
  39778. source: "./media/characters/zane/foot.svg"
  39779. }
  39780. },
  39781. footFront: {
  39782. height: math.unit(0.784, "feet"),
  39783. name: "Foot (Front)",
  39784. image: {
  39785. source: "./media/characters/zane/foot-front.svg"
  39786. }
  39787. },
  39788. dick: {
  39789. height: math.unit(1.95, "feet"),
  39790. name: "Dick",
  39791. image: {
  39792. source: "./media/characters/zane/dick.svg"
  39793. }
  39794. },
  39795. dickWerewolf: {
  39796. height: math.unit(3.77, "feet"),
  39797. name: "Dick (Werewolf)",
  39798. image: {
  39799. source: "./media/characters/zane/dick.svg"
  39800. }
  39801. },
  39802. },
  39803. [
  39804. {
  39805. name: "Normal",
  39806. height: math.unit(7 + 5/12, "feet"),
  39807. default: true
  39808. },
  39809. ]
  39810. ))
  39811. characterMakers.push(() => makeCharacter(
  39812. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39813. {
  39814. front: {
  39815. height: math.unit(6 + 2/12, "feet"),
  39816. weight: math.unit(284, "lb"),
  39817. name: "Front",
  39818. image: {
  39819. source: "./media/characters/benni-desparque/front.svg",
  39820. extra: 1353/1126,
  39821. bottom: 69/1422
  39822. }
  39823. },
  39824. },
  39825. [
  39826. {
  39827. name: "Civilian",
  39828. height: math.unit(6 + 2/12, "feet")
  39829. },
  39830. {
  39831. name: "Normal",
  39832. height: math.unit(98, "feet"),
  39833. default: true
  39834. },
  39835. {
  39836. name: "Kaiju Fighter",
  39837. height: math.unit(268, "feet")
  39838. },
  39839. ]
  39840. ))
  39841. characterMakers.push(() => makeCharacter(
  39842. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39843. {
  39844. front: {
  39845. height: math.unit(5, "feet"),
  39846. weight: math.unit(105, "lb"),
  39847. name: "Front",
  39848. image: {
  39849. source: "./media/characters/maxine/front.svg",
  39850. extra: 1386/1250,
  39851. bottom: 71/1457
  39852. }
  39853. },
  39854. },
  39855. [
  39856. {
  39857. name: "Normal",
  39858. height: math.unit(5, "feet"),
  39859. default: true
  39860. },
  39861. ]
  39862. ))
  39863. characterMakers.push(() => makeCharacter(
  39864. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39865. {
  39866. front: {
  39867. height: math.unit(11 + 7/12, "feet"),
  39868. weight: math.unit(9576, "lb"),
  39869. name: "Front",
  39870. image: {
  39871. source: "./media/characters/scaly/front.svg",
  39872. extra: 888/867,
  39873. bottom: 36/924
  39874. }
  39875. },
  39876. },
  39877. [
  39878. {
  39879. name: "Normal",
  39880. height: math.unit(11 + 7/12, "feet"),
  39881. default: true
  39882. },
  39883. ]
  39884. ))
  39885. characterMakers.push(() => makeCharacter(
  39886. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39887. {
  39888. front: {
  39889. height: math.unit(9, "inches"),
  39890. name: "Front",
  39891. image: {
  39892. source: "./media/characters/saelria/front.svg",
  39893. extra: 662/621,
  39894. bottom: 12/674
  39895. }
  39896. },
  39897. },
  39898. [
  39899. {
  39900. name: "Tiny",
  39901. height: math.unit(9, "inches"),
  39902. default: true
  39903. },
  39904. ]
  39905. ))
  39906. characterMakers.push(() => makeCharacter(
  39907. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39908. {
  39909. front: {
  39910. height: math.unit(80, "meters"),
  39911. weight: math.unit(7000, "tonnes"),
  39912. name: "Front",
  39913. image: {
  39914. source: "./media/characters/tef/front.svg",
  39915. extra: 2036/1991,
  39916. bottom: 54/2090
  39917. }
  39918. },
  39919. back: {
  39920. height: math.unit(80, "meters"),
  39921. weight: math.unit(7000, "tonnes"),
  39922. name: "Back",
  39923. image: {
  39924. source: "./media/characters/tef/back.svg",
  39925. extra: 2036/1991,
  39926. bottom: 54/2090
  39927. }
  39928. },
  39929. },
  39930. [
  39931. {
  39932. name: "Macro",
  39933. height: math.unit(80, "meters"),
  39934. default: true
  39935. },
  39936. ]
  39937. ))
  39938. characterMakers.push(() => makeCharacter(
  39939. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39940. {
  39941. front: {
  39942. height: math.unit(13, "feet"),
  39943. weight: math.unit(6, "tons"),
  39944. name: "Front",
  39945. image: {
  39946. source: "./media/characters/rover/front.svg",
  39947. extra: 1233/1156,
  39948. bottom: 50/1283
  39949. }
  39950. },
  39951. back: {
  39952. height: math.unit(13, "feet"),
  39953. weight: math.unit(6, "tons"),
  39954. name: "Back",
  39955. image: {
  39956. source: "./media/characters/rover/back.svg",
  39957. extra: 1327/1258,
  39958. bottom: 39/1366
  39959. }
  39960. },
  39961. },
  39962. [
  39963. {
  39964. name: "Normal",
  39965. height: math.unit(13, "feet"),
  39966. default: true
  39967. },
  39968. {
  39969. name: "Macro",
  39970. height: math.unit(1300, "feet")
  39971. },
  39972. {
  39973. name: "Megamacro",
  39974. height: math.unit(1300, "miles")
  39975. },
  39976. {
  39977. name: "Gigamacro",
  39978. height: math.unit(1300000, "miles")
  39979. },
  39980. ]
  39981. ))
  39982. characterMakers.push(() => makeCharacter(
  39983. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39984. {
  39985. front: {
  39986. height: math.unit(6, "feet"),
  39987. weight: math.unit(150, "lb"),
  39988. name: "Front",
  39989. image: {
  39990. source: "./media/characters/ariz/front.svg",
  39991. extra: 1401/1346,
  39992. bottom: 5/1406
  39993. }
  39994. },
  39995. },
  39996. [
  39997. {
  39998. name: "Normal",
  39999. height: math.unit(10, "feet"),
  40000. default: true
  40001. },
  40002. ]
  40003. ))
  40004. characterMakers.push(() => makeCharacter(
  40005. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40006. {
  40007. front: {
  40008. height: math.unit(6, "feet"),
  40009. weight: math.unit(140, "lb"),
  40010. name: "Front",
  40011. image: {
  40012. source: "./media/characters/sigrun/front.svg",
  40013. extra: 1418/1359,
  40014. bottom: 27/1445
  40015. }
  40016. },
  40017. },
  40018. [
  40019. {
  40020. name: "Macro",
  40021. height: math.unit(35, "feet"),
  40022. default: true
  40023. },
  40024. ]
  40025. ))
  40026. characterMakers.push(() => makeCharacter(
  40027. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40028. {
  40029. front: {
  40030. height: math.unit(6, "feet"),
  40031. weight: math.unit(150, "lb"),
  40032. name: "Front",
  40033. image: {
  40034. source: "./media/characters/numin/front.svg",
  40035. extra: 1433/1388,
  40036. bottom: 12/1445
  40037. }
  40038. },
  40039. },
  40040. [
  40041. {
  40042. name: "Macro",
  40043. height: math.unit(21.5, "km"),
  40044. default: true
  40045. },
  40046. ]
  40047. ))
  40048. characterMakers.push(() => makeCharacter(
  40049. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40050. {
  40051. front: {
  40052. height: math.unit(6, "feet"),
  40053. weight: math.unit(463, "lb"),
  40054. name: "Front",
  40055. image: {
  40056. source: "./media/characters/melwa/front.svg",
  40057. extra: 1307/1248,
  40058. bottom: 93/1400
  40059. }
  40060. },
  40061. },
  40062. [
  40063. {
  40064. name: "Macro",
  40065. height: math.unit(50, "meters"),
  40066. default: true
  40067. },
  40068. ]
  40069. ))
  40070. characterMakers.push(() => makeCharacter(
  40071. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40072. {
  40073. front: {
  40074. height: math.unit(325, "feet"),
  40075. name: "Front",
  40076. image: {
  40077. source: "./media/characters/zorkaiju/front.svg",
  40078. extra: 1955/1814,
  40079. bottom: 40/1995
  40080. }
  40081. },
  40082. frontExtended: {
  40083. height: math.unit(325, "feet"),
  40084. name: "Front (Extended)",
  40085. image: {
  40086. source: "./media/characters/zorkaiju/front-extended.svg",
  40087. extra: 1955/1814,
  40088. bottom: 40/1995
  40089. }
  40090. },
  40091. side: {
  40092. height: math.unit(325, "feet"),
  40093. name: "Side",
  40094. image: {
  40095. source: "./media/characters/zorkaiju/side.svg",
  40096. extra: 1495/1396,
  40097. bottom: 17/1512
  40098. }
  40099. },
  40100. sideExtended: {
  40101. height: math.unit(325, "feet"),
  40102. name: "Side (Extended)",
  40103. image: {
  40104. source: "./media/characters/zorkaiju/side-extended.svg",
  40105. extra: 1495/1396,
  40106. bottom: 17/1512
  40107. }
  40108. },
  40109. back: {
  40110. height: math.unit(325, "feet"),
  40111. name: "Back",
  40112. image: {
  40113. source: "./media/characters/zorkaiju/back.svg",
  40114. extra: 1959/1821,
  40115. bottom: 31/1990
  40116. }
  40117. },
  40118. backExtended: {
  40119. height: math.unit(325, "feet"),
  40120. name: "Back (Extended)",
  40121. image: {
  40122. source: "./media/characters/zorkaiju/back-extended.svg",
  40123. extra: 1959/1821,
  40124. bottom: 31/1990
  40125. }
  40126. },
  40127. hand: {
  40128. height: math.unit(58.4, "feet"),
  40129. name: "Hand",
  40130. image: {
  40131. source: "./media/characters/zorkaiju/hand.svg"
  40132. }
  40133. },
  40134. handExtended: {
  40135. height: math.unit(61.4, "feet"),
  40136. name: "Hand (Extended)",
  40137. image: {
  40138. source: "./media/characters/zorkaiju/hand-extended.svg"
  40139. }
  40140. },
  40141. foot: {
  40142. height: math.unit(95, "feet"),
  40143. name: "Foot",
  40144. image: {
  40145. source: "./media/characters/zorkaiju/foot.svg"
  40146. }
  40147. },
  40148. leftArm: {
  40149. height: math.unit(59, "feet"),
  40150. name: "Left Arm",
  40151. image: {
  40152. source: "./media/characters/zorkaiju/left-arm.svg"
  40153. }
  40154. },
  40155. rightArm: {
  40156. height: math.unit(59, "feet"),
  40157. name: "Right Arm",
  40158. image: {
  40159. source: "./media/characters/zorkaiju/right-arm.svg"
  40160. }
  40161. },
  40162. tail: {
  40163. height: math.unit(104, "feet"),
  40164. name: "Tail",
  40165. image: {
  40166. source: "./media/characters/zorkaiju/tail.svg"
  40167. }
  40168. },
  40169. tailExtended: {
  40170. height: math.unit(104, "feet"),
  40171. name: "Tail (Extended)",
  40172. image: {
  40173. source: "./media/characters/zorkaiju/tail-extended.svg"
  40174. }
  40175. },
  40176. tailBottom: {
  40177. height: math.unit(104, "feet"),
  40178. name: "Tail Bottom",
  40179. image: {
  40180. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40181. }
  40182. },
  40183. crystal: {
  40184. height: math.unit(27.54, "feet"),
  40185. name: "Crystal",
  40186. image: {
  40187. source: "./media/characters/zorkaiju/crystal.svg"
  40188. }
  40189. },
  40190. },
  40191. [
  40192. {
  40193. name: "Kaiju",
  40194. height: math.unit(325, "feet"),
  40195. default: true
  40196. },
  40197. ]
  40198. ))
  40199. characterMakers.push(() => makeCharacter(
  40200. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40201. {
  40202. front: {
  40203. height: math.unit(6 + 1/12, "feet"),
  40204. weight: math.unit(115, "lb"),
  40205. name: "Front",
  40206. image: {
  40207. source: "./media/characters/bailey-belfry/front.svg",
  40208. extra: 1240/1121,
  40209. bottom: 101/1341
  40210. }
  40211. },
  40212. },
  40213. [
  40214. {
  40215. name: "Normal",
  40216. height: math.unit(6 + 1/12, "feet"),
  40217. default: true
  40218. },
  40219. ]
  40220. ))
  40221. characterMakers.push(() => makeCharacter(
  40222. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40223. {
  40224. side: {
  40225. height: math.unit(4, "meters"),
  40226. weight: math.unit(250, "kg"),
  40227. name: "Side",
  40228. image: {
  40229. source: "./media/characters/blacky/side.svg",
  40230. extra: 1027/919,
  40231. bottom: 43/1070
  40232. }
  40233. },
  40234. maw: {
  40235. height: math.unit(1, "meters"),
  40236. name: "Maw",
  40237. image: {
  40238. source: "./media/characters/blacky/maw.svg"
  40239. }
  40240. },
  40241. paw: {
  40242. height: math.unit(1, "meters"),
  40243. name: "Paw",
  40244. image: {
  40245. source: "./media/characters/blacky/paw.svg"
  40246. }
  40247. },
  40248. },
  40249. [
  40250. {
  40251. name: "Normal",
  40252. height: math.unit(4, "meters"),
  40253. default: true
  40254. },
  40255. ]
  40256. ))
  40257. characterMakers.push(() => makeCharacter(
  40258. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40259. {
  40260. front: {
  40261. height: math.unit(170, "cm"),
  40262. weight: math.unit(66, "kg"),
  40263. name: "Front",
  40264. image: {
  40265. source: "./media/characters/thux-ei/front.svg",
  40266. extra: 1109/1011,
  40267. bottom: 8/1117
  40268. }
  40269. },
  40270. },
  40271. [
  40272. {
  40273. name: "Normal",
  40274. height: math.unit(170, "cm"),
  40275. default: true
  40276. },
  40277. ]
  40278. ))
  40279. characterMakers.push(() => makeCharacter(
  40280. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40281. {
  40282. front: {
  40283. height: math.unit(5, "feet"),
  40284. weight: math.unit(120, "lb"),
  40285. name: "Front",
  40286. image: {
  40287. source: "./media/characters/roxanne-voltaire/front.svg",
  40288. extra: 1901/1779,
  40289. bottom: 53/1954
  40290. }
  40291. },
  40292. },
  40293. [
  40294. {
  40295. name: "Normal",
  40296. height: math.unit(5, "feet"),
  40297. default: true
  40298. },
  40299. {
  40300. name: "Giant",
  40301. height: math.unit(50, "feet")
  40302. },
  40303. {
  40304. name: "Titan",
  40305. height: math.unit(500, "feet")
  40306. },
  40307. {
  40308. name: "Macro",
  40309. height: math.unit(5000, "feet")
  40310. },
  40311. {
  40312. name: "Megamacro",
  40313. height: math.unit(50000, "feet")
  40314. },
  40315. {
  40316. name: "Gigamacro",
  40317. height: math.unit(500000, "feet")
  40318. },
  40319. {
  40320. name: "Teramacro",
  40321. height: math.unit(5e6, "feet")
  40322. },
  40323. ]
  40324. ))
  40325. characterMakers.push(() => makeCharacter(
  40326. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40327. {
  40328. front: {
  40329. height: math.unit(6 + 2/12, "feet"),
  40330. name: "Front",
  40331. image: {
  40332. source: "./media/characters/squeaks/front.svg",
  40333. extra: 1823/1768,
  40334. bottom: 138/1961
  40335. }
  40336. },
  40337. },
  40338. [
  40339. {
  40340. name: "Micro",
  40341. height: math.unit(0.5, "inches")
  40342. },
  40343. {
  40344. name: "Normal",
  40345. height: math.unit(6 + 2/12, "feet"),
  40346. default: true
  40347. },
  40348. {
  40349. name: "Macro",
  40350. height: math.unit(600, "feet")
  40351. },
  40352. ]
  40353. ))
  40354. characterMakers.push(() => makeCharacter(
  40355. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40356. {
  40357. front: {
  40358. height: math.unit(1.72, "meters"),
  40359. name: "Front",
  40360. image: {
  40361. source: "./media/characters/archinger/front.svg",
  40362. extra: 1861/1675,
  40363. bottom: 125/1986
  40364. }
  40365. },
  40366. back: {
  40367. height: math.unit(1.72, "meters"),
  40368. name: "Back",
  40369. image: {
  40370. source: "./media/characters/archinger/back.svg",
  40371. extra: 1844/1701,
  40372. bottom: 104/1948
  40373. }
  40374. },
  40375. cock: {
  40376. height: math.unit(0.59, "feet"),
  40377. name: "Cock",
  40378. image: {
  40379. source: "./media/characters/archinger/cock.svg"
  40380. }
  40381. },
  40382. },
  40383. [
  40384. {
  40385. name: "Normal",
  40386. height: math.unit(1.72, "meters"),
  40387. default: true
  40388. },
  40389. {
  40390. name: "Macro",
  40391. height: math.unit(84, "meters")
  40392. },
  40393. {
  40394. name: "Macro+",
  40395. height: math.unit(112, "meters")
  40396. },
  40397. {
  40398. name: "Macro++",
  40399. height: math.unit(960, "meters")
  40400. },
  40401. {
  40402. name: "Macro+++",
  40403. height: math.unit(4, "km")
  40404. },
  40405. {
  40406. name: "Macro++++",
  40407. height: math.unit(48, "km")
  40408. },
  40409. {
  40410. name: "Macro+++++",
  40411. height: math.unit(4500, "km")
  40412. },
  40413. ]
  40414. ))
  40415. characterMakers.push(() => makeCharacter(
  40416. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40417. {
  40418. front: {
  40419. height: math.unit(5 + 5/12, "feet"),
  40420. name: "Front",
  40421. image: {
  40422. source: "./media/characters/alsnapz/front.svg",
  40423. extra: 1157/1065,
  40424. bottom: 42/1199
  40425. }
  40426. },
  40427. },
  40428. [
  40429. {
  40430. name: "Normal",
  40431. height: math.unit(5 + 5/12, "feet"),
  40432. default: true
  40433. },
  40434. ]
  40435. ))
  40436. characterMakers.push(() => makeCharacter(
  40437. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40438. {
  40439. side: {
  40440. height: math.unit(3.2, "earths"),
  40441. name: "Side",
  40442. image: {
  40443. source: "./media/characters/mag/side.svg",
  40444. extra: 1331/1008,
  40445. bottom: 52/1383
  40446. }
  40447. },
  40448. wing: {
  40449. height: math.unit(1.94, "earths"),
  40450. name: "Wing",
  40451. image: {
  40452. source: "./media/characters/mag/wing.svg"
  40453. }
  40454. },
  40455. dick: {
  40456. height: math.unit(1.8, "earths"),
  40457. name: "Dick",
  40458. image: {
  40459. source: "./media/characters/mag/dick.svg"
  40460. }
  40461. },
  40462. ass: {
  40463. height: math.unit(1.33, "earths"),
  40464. name: "Ass",
  40465. image: {
  40466. source: "./media/characters/mag/ass.svg"
  40467. }
  40468. },
  40469. head: {
  40470. height: math.unit(1.1, "earths"),
  40471. name: "Head",
  40472. image: {
  40473. source: "./media/characters/mag/head.svg"
  40474. }
  40475. },
  40476. maw: {
  40477. height: math.unit(1.62, "earths"),
  40478. name: "Maw",
  40479. image: {
  40480. source: "./media/characters/mag/maw.svg"
  40481. }
  40482. },
  40483. },
  40484. [
  40485. {
  40486. name: "Small",
  40487. height: math.unit(162, "feet")
  40488. },
  40489. {
  40490. name: "Normal",
  40491. height: math.unit(3.2, "earths"),
  40492. default: true
  40493. },
  40494. ]
  40495. ))
  40496. characterMakers.push(() => makeCharacter(
  40497. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40498. {
  40499. front: {
  40500. height: math.unit(512, "feet"),
  40501. weight: math.unit(63509, "tonnes"),
  40502. name: "Front",
  40503. image: {
  40504. source: "./media/characters/vorrel-harroc/front.svg",
  40505. extra: 1075/1063,
  40506. bottom: 62/1137
  40507. }
  40508. },
  40509. },
  40510. [
  40511. {
  40512. name: "Normal",
  40513. height: math.unit(10, "feet")
  40514. },
  40515. {
  40516. name: "Macro",
  40517. height: math.unit(512, "feet"),
  40518. default: true
  40519. },
  40520. {
  40521. name: "Megamacro",
  40522. height: math.unit(256, "miles")
  40523. },
  40524. {
  40525. name: "Gigamacro",
  40526. height: math.unit(4096, "miles")
  40527. },
  40528. ]
  40529. ))
  40530. characterMakers.push(() => makeCharacter(
  40531. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40532. {
  40533. side: {
  40534. height: math.unit(50, "feet"),
  40535. name: "Side",
  40536. image: {
  40537. source: "./media/characters/froimar/side.svg",
  40538. extra: 855/638,
  40539. bottom: 99/954
  40540. }
  40541. },
  40542. },
  40543. [
  40544. {
  40545. name: "Macro",
  40546. height: math.unit(50, "feet"),
  40547. default: true
  40548. },
  40549. ]
  40550. ))
  40551. characterMakers.push(() => makeCharacter(
  40552. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40553. {
  40554. front: {
  40555. height: math.unit(210, "miles"),
  40556. name: "Front",
  40557. image: {
  40558. source: "./media/characters/timothy/front.svg",
  40559. extra: 1007/943,
  40560. bottom: 62/1069
  40561. }
  40562. },
  40563. frontSkirt: {
  40564. height: math.unit(210, "miles"),
  40565. name: "Front (Skirt)",
  40566. image: {
  40567. source: "./media/characters/timothy/front-skirt.svg",
  40568. extra: 1007/943,
  40569. bottom: 62/1069
  40570. }
  40571. },
  40572. frontCoat: {
  40573. height: math.unit(210, "miles"),
  40574. name: "Front (Coat)",
  40575. image: {
  40576. source: "./media/characters/timothy/front-coat.svg",
  40577. extra: 1007/943,
  40578. bottom: 62/1069
  40579. }
  40580. },
  40581. },
  40582. [
  40583. {
  40584. name: "Macro",
  40585. height: math.unit(210, "miles"),
  40586. default: true
  40587. },
  40588. {
  40589. name: "Megamacro",
  40590. height: math.unit(210000, "miles")
  40591. },
  40592. ]
  40593. ))
  40594. characterMakers.push(() => makeCharacter(
  40595. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40596. {
  40597. front: {
  40598. height: math.unit(188, "feet"),
  40599. name: "Front",
  40600. image: {
  40601. source: "./media/characters/pyotr/front.svg",
  40602. extra: 1912/1826,
  40603. bottom: 18/1930
  40604. }
  40605. },
  40606. },
  40607. [
  40608. {
  40609. name: "Macro",
  40610. height: math.unit(188, "feet"),
  40611. default: true
  40612. },
  40613. {
  40614. name: "Megamacro",
  40615. height: math.unit(8, "miles")
  40616. },
  40617. ]
  40618. ))
  40619. characterMakers.push(() => makeCharacter(
  40620. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40621. {
  40622. side: {
  40623. height: math.unit(10, "feet"),
  40624. weight: math.unit(4500, "lb"),
  40625. name: "Side",
  40626. image: {
  40627. source: "./media/characters/ackart/side.svg",
  40628. extra: 1776/1668,
  40629. bottom: 116/1892
  40630. }
  40631. },
  40632. },
  40633. [
  40634. {
  40635. name: "Normal",
  40636. height: math.unit(10, "feet"),
  40637. default: true
  40638. },
  40639. ]
  40640. ))
  40641. characterMakers.push(() => makeCharacter(
  40642. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40643. {
  40644. side: {
  40645. height: math.unit(21, "feet"),
  40646. name: "Side",
  40647. image: {
  40648. source: "./media/characters/nolow/side.svg",
  40649. extra: 1484/1434,
  40650. bottom: 85/1569
  40651. }
  40652. },
  40653. sideErect: {
  40654. height: math.unit(21, "feet"),
  40655. name: "Side-erect",
  40656. image: {
  40657. source: "./media/characters/nolow/side-erect.svg",
  40658. extra: 1484/1434,
  40659. bottom: 85/1569
  40660. }
  40661. },
  40662. },
  40663. [
  40664. {
  40665. name: "Regular",
  40666. height: math.unit(12, "feet")
  40667. },
  40668. {
  40669. name: "Big Chee",
  40670. height: math.unit(21, "feet"),
  40671. default: true
  40672. },
  40673. ]
  40674. ))
  40675. characterMakers.push(() => makeCharacter(
  40676. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40677. {
  40678. front: {
  40679. height: math.unit(7, "feet"),
  40680. weight: math.unit(250, "lb"),
  40681. name: "Front",
  40682. image: {
  40683. source: "./media/characters/nines/front.svg",
  40684. extra: 1741/1607,
  40685. bottom: 41/1782
  40686. }
  40687. },
  40688. side: {
  40689. height: math.unit(7, "feet"),
  40690. weight: math.unit(250, "lb"),
  40691. name: "Side",
  40692. image: {
  40693. source: "./media/characters/nines/side.svg",
  40694. extra: 1854/1735,
  40695. bottom: 93/1947
  40696. }
  40697. },
  40698. back: {
  40699. height: math.unit(7, "feet"),
  40700. weight: math.unit(250, "lb"),
  40701. name: "Back",
  40702. image: {
  40703. source: "./media/characters/nines/back.svg",
  40704. extra: 1748/1615,
  40705. bottom: 20/1768
  40706. }
  40707. },
  40708. },
  40709. [
  40710. {
  40711. name: "Megamacro",
  40712. height: math.unit(99, "km"),
  40713. default: true
  40714. },
  40715. ]
  40716. ))
  40717. characterMakers.push(() => makeCharacter(
  40718. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40719. {
  40720. front: {
  40721. height: math.unit(5 + 10/12, "feet"),
  40722. weight: math.unit(210, "lb"),
  40723. name: "Front",
  40724. image: {
  40725. source: "./media/characters/zenith/front.svg",
  40726. extra: 1531/1452,
  40727. bottom: 198/1729
  40728. }
  40729. },
  40730. back: {
  40731. height: math.unit(5 + 10/12, "feet"),
  40732. weight: math.unit(210, "lb"),
  40733. name: "Back",
  40734. image: {
  40735. source: "./media/characters/zenith/back.svg",
  40736. extra: 1571/1487,
  40737. bottom: 75/1646
  40738. }
  40739. },
  40740. },
  40741. [
  40742. {
  40743. name: "Normal",
  40744. height: math.unit(5 + 10/12, "feet"),
  40745. default: true
  40746. }
  40747. ]
  40748. ))
  40749. characterMakers.push(() => makeCharacter(
  40750. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40751. {
  40752. front: {
  40753. height: math.unit(4, "feet"),
  40754. weight: math.unit(60, "lb"),
  40755. name: "Front",
  40756. image: {
  40757. source: "./media/characters/jasper/front.svg",
  40758. extra: 1450/1379,
  40759. bottom: 19/1469
  40760. }
  40761. },
  40762. },
  40763. [
  40764. {
  40765. name: "Normal",
  40766. height: math.unit(4, "feet"),
  40767. default: true
  40768. },
  40769. ]
  40770. ))
  40771. characterMakers.push(() => makeCharacter(
  40772. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40773. {
  40774. front: {
  40775. height: math.unit(6 + 5/12, "feet"),
  40776. weight: math.unit(290, "lb"),
  40777. name: "Front",
  40778. image: {
  40779. source: "./media/characters/tiberius-thyben/front.svg",
  40780. extra: 757/739,
  40781. bottom: 39/796
  40782. }
  40783. },
  40784. },
  40785. [
  40786. {
  40787. name: "Micro",
  40788. height: math.unit(1.5, "inches")
  40789. },
  40790. {
  40791. name: "Normal",
  40792. height: math.unit(6 + 5/12, "feet"),
  40793. default: true
  40794. },
  40795. {
  40796. name: "Macro",
  40797. height: math.unit(300, "feet")
  40798. },
  40799. ]
  40800. ))
  40801. characterMakers.push(() => makeCharacter(
  40802. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40803. {
  40804. front: {
  40805. height: math.unit(5 + 6/12, "feet"),
  40806. weight: math.unit(60, "kg"),
  40807. name: "Front",
  40808. image: {
  40809. source: "./media/characters/sabre/front.svg",
  40810. extra: 738/671,
  40811. bottom: 27/765
  40812. }
  40813. },
  40814. },
  40815. [
  40816. {
  40817. name: "Teeny",
  40818. height: math.unit(2, "inches")
  40819. },
  40820. {
  40821. name: "Smol",
  40822. height: math.unit(8, "inches")
  40823. },
  40824. {
  40825. name: "Normal",
  40826. height: math.unit(5 + 6/12, "feet"),
  40827. default: true
  40828. },
  40829. {
  40830. name: "Mini-Macro",
  40831. height: math.unit(15, "feet")
  40832. },
  40833. {
  40834. name: "Macro",
  40835. height: math.unit(50, "feet")
  40836. },
  40837. ]
  40838. ))
  40839. characterMakers.push(() => makeCharacter(
  40840. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40841. {
  40842. front: {
  40843. height: math.unit(6 + 4/12, "feet"),
  40844. weight: math.unit(170, "lb"),
  40845. name: "Front",
  40846. image: {
  40847. source: "./media/characters/charlie/front.svg",
  40848. extra: 1348/1228,
  40849. bottom: 15/1363
  40850. }
  40851. },
  40852. },
  40853. [
  40854. {
  40855. name: "Macro",
  40856. height: math.unit(1700, "meters"),
  40857. default: true
  40858. },
  40859. {
  40860. name: "MegaMacro",
  40861. height: math.unit(20400, "meters")
  40862. },
  40863. ]
  40864. ))
  40865. characterMakers.push(() => makeCharacter(
  40866. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40867. {
  40868. front: {
  40869. height: math.unit(6 + 3/12, "feet"),
  40870. weight: math.unit(185, "lb"),
  40871. name: "Front",
  40872. image: {
  40873. source: "./media/characters/susan-grant/front.svg",
  40874. extra: 1351/1327,
  40875. bottom: 26/1377
  40876. }
  40877. },
  40878. },
  40879. [
  40880. {
  40881. name: "Normal",
  40882. height: math.unit(6 + 3/12, "feet"),
  40883. default: true
  40884. },
  40885. {
  40886. name: "Macro",
  40887. height: math.unit(225, "feet")
  40888. },
  40889. {
  40890. name: "Macro+",
  40891. height: math.unit(900, "feet")
  40892. },
  40893. {
  40894. name: "MegaMacro",
  40895. height: math.unit(14400, "feet")
  40896. },
  40897. ]
  40898. ))
  40899. characterMakers.push(() => makeCharacter(
  40900. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40901. {
  40902. front: {
  40903. height: math.unit(5 + 4/12, "feet"),
  40904. weight: math.unit(110, "lb"),
  40905. name: "Front",
  40906. image: {
  40907. source: "./media/characters/axel-isanov/front.svg",
  40908. extra: 1096/1065,
  40909. bottom: 13/1109
  40910. }
  40911. },
  40912. },
  40913. [
  40914. {
  40915. name: "Normal",
  40916. height: math.unit(5 + 4/12, "feet"),
  40917. default: true
  40918. },
  40919. ]
  40920. ))
  40921. characterMakers.push(() => makeCharacter(
  40922. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40923. {
  40924. front: {
  40925. height: math.unit(9, "feet"),
  40926. weight: math.unit(467, "lb"),
  40927. name: "Front",
  40928. image: {
  40929. source: "./media/characters/necahual/front.svg",
  40930. extra: 920/873,
  40931. bottom: 26/946
  40932. }
  40933. },
  40934. back: {
  40935. height: math.unit(9, "feet"),
  40936. weight: math.unit(467, "lb"),
  40937. name: "Back",
  40938. image: {
  40939. source: "./media/characters/necahual/back.svg",
  40940. extra: 930/884,
  40941. bottom: 16/946
  40942. }
  40943. },
  40944. frontUnderwear: {
  40945. height: math.unit(9, "feet"),
  40946. weight: math.unit(467, "lb"),
  40947. name: "Front (Underwear)",
  40948. image: {
  40949. source: "./media/characters/necahual/front-underwear.svg",
  40950. extra: 920/873,
  40951. bottom: 26/946
  40952. }
  40953. },
  40954. frontDressed: {
  40955. height: math.unit(9, "feet"),
  40956. weight: math.unit(467, "lb"),
  40957. name: "Front (Dressed)",
  40958. image: {
  40959. source: "./media/characters/necahual/front-dressed.svg",
  40960. extra: 920/873,
  40961. bottom: 26/946
  40962. }
  40963. },
  40964. },
  40965. [
  40966. {
  40967. name: "Comprsesed",
  40968. height: math.unit(9, "feet")
  40969. },
  40970. {
  40971. name: "Natural",
  40972. height: math.unit(15, "feet"),
  40973. default: true
  40974. },
  40975. {
  40976. name: "Boosted",
  40977. height: math.unit(50, "feet")
  40978. },
  40979. {
  40980. name: "Boosted+",
  40981. height: math.unit(150, "feet")
  40982. },
  40983. {
  40984. name: "Max",
  40985. height: math.unit(500, "feet")
  40986. },
  40987. ]
  40988. ))
  40989. characterMakers.push(() => makeCharacter(
  40990. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40991. {
  40992. front: {
  40993. height: math.unit(22 + 1/12, "feet"),
  40994. weight: math.unit(3200, "lb"),
  40995. name: "Front",
  40996. image: {
  40997. source: "./media/characters/theo-acacia/front.svg",
  40998. extra: 1796/1741,
  40999. bottom: 83/1879
  41000. }
  41001. },
  41002. frontUnderwear: {
  41003. height: math.unit(22 + 1/12, "feet"),
  41004. weight: math.unit(3200, "lb"),
  41005. name: "Front (Underwear)",
  41006. image: {
  41007. source: "./media/characters/theo-acacia/front-underwear.svg",
  41008. extra: 1796/1741,
  41009. bottom: 83/1879
  41010. }
  41011. },
  41012. frontNude: {
  41013. height: math.unit(22 + 1/12, "feet"),
  41014. weight: math.unit(3200, "lb"),
  41015. name: "Front (Nude)",
  41016. image: {
  41017. source: "./media/characters/theo-acacia/front-nude.svg",
  41018. extra: 1796/1741,
  41019. bottom: 83/1879
  41020. }
  41021. },
  41022. },
  41023. [
  41024. {
  41025. name: "Normal",
  41026. height: math.unit(22 + 1/12, "feet"),
  41027. default: true
  41028. },
  41029. ]
  41030. ))
  41031. characterMakers.push(() => makeCharacter(
  41032. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41033. {
  41034. front: {
  41035. height: math.unit(20, "feet"),
  41036. name: "Front",
  41037. image: {
  41038. source: "./media/characters/astra/front.svg",
  41039. extra: 1850/1714,
  41040. bottom: 106/1956
  41041. }
  41042. },
  41043. frontUndressed: {
  41044. height: math.unit(20, "feet"),
  41045. name: "Front (Undressed)",
  41046. image: {
  41047. source: "./media/characters/astra/front-undressed.svg",
  41048. extra: 1926/1749,
  41049. bottom: 0/1926
  41050. }
  41051. },
  41052. hand: {
  41053. height: math.unit(1.53, "feet"),
  41054. name: "Hand",
  41055. image: {
  41056. source: "./media/characters/astra/hand.svg"
  41057. }
  41058. },
  41059. paw: {
  41060. height: math.unit(1.53, "feet"),
  41061. name: "Paw",
  41062. image: {
  41063. source: "./media/characters/astra/paw.svg"
  41064. }
  41065. },
  41066. },
  41067. [
  41068. {
  41069. name: "Smallest",
  41070. height: math.unit(20, "feet")
  41071. },
  41072. {
  41073. name: "Normal",
  41074. height: math.unit(1e9, "miles"),
  41075. default: true
  41076. },
  41077. {
  41078. name: "Larger",
  41079. height: math.unit(5, "multiverses")
  41080. },
  41081. {
  41082. name: "Largest",
  41083. height: math.unit(1e9, "multiverses")
  41084. },
  41085. ]
  41086. ))
  41087. characterMakers.push(() => makeCharacter(
  41088. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41089. {
  41090. front: {
  41091. height: math.unit(8, "feet"),
  41092. name: "Front",
  41093. image: {
  41094. source: "./media/characters/breanna/front.svg",
  41095. extra: 1912/1632,
  41096. bottom: 33/1945
  41097. }
  41098. },
  41099. },
  41100. [
  41101. {
  41102. name: "Smallest",
  41103. height: math.unit(8, "feet")
  41104. },
  41105. {
  41106. name: "Normal",
  41107. height: math.unit(1, "mile"),
  41108. default: true
  41109. },
  41110. {
  41111. name: "Maximum",
  41112. height: math.unit(1500000000000, "lightyears")
  41113. },
  41114. ]
  41115. ))
  41116. characterMakers.push(() => makeCharacter(
  41117. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41118. {
  41119. front: {
  41120. height: math.unit(5 + 11/12, "feet"),
  41121. weight: math.unit(155, "lb"),
  41122. name: "Front",
  41123. image: {
  41124. source: "./media/characters/cai/front.svg",
  41125. extra: 1823/1702,
  41126. bottom: 32/1855
  41127. }
  41128. },
  41129. back: {
  41130. height: math.unit(5 + 11/12, "feet"),
  41131. weight: math.unit(155, "lb"),
  41132. name: "Back",
  41133. image: {
  41134. source: "./media/characters/cai/back.svg",
  41135. extra: 1809/1708,
  41136. bottom: 31/1840
  41137. }
  41138. },
  41139. },
  41140. [
  41141. {
  41142. name: "Normal",
  41143. height: math.unit(5 + 11/12, "feet"),
  41144. default: true
  41145. },
  41146. {
  41147. name: "Big",
  41148. height: math.unit(15, "feet")
  41149. },
  41150. {
  41151. name: "Macro",
  41152. height: math.unit(200, "feet")
  41153. },
  41154. ]
  41155. ))
  41156. characterMakers.push(() => makeCharacter(
  41157. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41158. {
  41159. front: {
  41160. height: math.unit(5 + 6/12, "feet"),
  41161. weight: math.unit(160, "lb"),
  41162. name: "Front",
  41163. image: {
  41164. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41165. extra: 1227/1174,
  41166. bottom: 37/1264
  41167. }
  41168. },
  41169. },
  41170. [
  41171. {
  41172. name: "Macro",
  41173. height: math.unit(444, "meters"),
  41174. default: true
  41175. },
  41176. ]
  41177. ))
  41178. characterMakers.push(() => makeCharacter(
  41179. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41180. {
  41181. front: {
  41182. height: math.unit(18 + 7/12, "feet"),
  41183. name: "Front",
  41184. image: {
  41185. source: "./media/characters/rex/front.svg",
  41186. extra: 1941/1807,
  41187. bottom: 66/2007
  41188. }
  41189. },
  41190. back: {
  41191. height: math.unit(18 + 7/12, "feet"),
  41192. name: "Back",
  41193. image: {
  41194. source: "./media/characters/rex/back.svg",
  41195. extra: 1937/1822,
  41196. bottom: 42/1979
  41197. }
  41198. },
  41199. boot: {
  41200. height: math.unit(3.45, "feet"),
  41201. name: "Boot",
  41202. image: {
  41203. source: "./media/characters/rex/boot.svg"
  41204. }
  41205. },
  41206. paw: {
  41207. height: math.unit(4.17, "feet"),
  41208. name: "Paw",
  41209. image: {
  41210. source: "./media/characters/rex/paw.svg"
  41211. }
  41212. },
  41213. head: {
  41214. height: math.unit(6.728, "feet"),
  41215. name: "Head",
  41216. image: {
  41217. source: "./media/characters/rex/head.svg"
  41218. }
  41219. },
  41220. },
  41221. [
  41222. {
  41223. name: "Nano",
  41224. height: math.unit(18 + 7/12, "feet")
  41225. },
  41226. {
  41227. name: "Micro",
  41228. height: math.unit(1.5, "megameters")
  41229. },
  41230. {
  41231. name: "Normal",
  41232. height: math.unit(440, "megameters"),
  41233. default: true
  41234. },
  41235. {
  41236. name: "Macro",
  41237. height: math.unit(2.5, "gigameters")
  41238. },
  41239. {
  41240. name: "Gigamacro",
  41241. height: math.unit(2, "galaxies")
  41242. },
  41243. ]
  41244. ))
  41245. characterMakers.push(() => makeCharacter(
  41246. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41247. {
  41248. side: {
  41249. height: math.unit(32, "feet"),
  41250. weight: math.unit(250000, "lb"),
  41251. name: "Side",
  41252. image: {
  41253. source: "./media/characters/silverwing/side.svg",
  41254. extra: 1100/1019,
  41255. bottom: 204/1304
  41256. }
  41257. },
  41258. },
  41259. [
  41260. {
  41261. name: "Normal",
  41262. height: math.unit(32, "feet"),
  41263. default: true
  41264. },
  41265. ]
  41266. ))
  41267. characterMakers.push(() => makeCharacter(
  41268. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41269. {
  41270. front: {
  41271. height: math.unit(6 + 6/12, "feet"),
  41272. weight: math.unit(350, "lb"),
  41273. name: "Front",
  41274. image: {
  41275. source: "./media/characters/tristan-hawthorne/front.svg",
  41276. extra: 1159/1124,
  41277. bottom: 37/1196
  41278. }
  41279. },
  41280. },
  41281. [
  41282. {
  41283. name: "Normal",
  41284. height: math.unit(6 + 6/12, "feet"),
  41285. default: true
  41286. },
  41287. ]
  41288. ))
  41289. characterMakers.push(() => makeCharacter(
  41290. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41291. {
  41292. front: {
  41293. height: math.unit(5 + 11/12, "feet"),
  41294. weight: math.unit(190, "lb"),
  41295. name: "Front",
  41296. image: {
  41297. source: "./media/characters/mizu/front.svg",
  41298. extra: 1988/1788,
  41299. bottom: 14/2002
  41300. }
  41301. },
  41302. },
  41303. [
  41304. {
  41305. name: "Normal",
  41306. height: math.unit(5 + 11/12, "feet"),
  41307. default: true
  41308. },
  41309. ]
  41310. ))
  41311. characterMakers.push(() => makeCharacter(
  41312. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  41313. {
  41314. front: {
  41315. height: math.unit(6, "feet"),
  41316. name: "Front",
  41317. image: {
  41318. source: "./media/characters/moonlight-rose-terra/front.svg",
  41319. extra: 1434/1252,
  41320. bottom: 48/1482
  41321. }
  41322. },
  41323. },
  41324. [
  41325. {
  41326. name: "TRAPPIST-1D",
  41327. height: math.unit(4992*2, "km")
  41328. },
  41329. {
  41330. name: "Earth",
  41331. height: math.unit(6367*2, "km"),
  41332. default: true
  41333. },
  41334. {
  41335. name: "Kepler-22b",
  41336. height: math.unit(15282*2, "km")
  41337. },
  41338. ]
  41339. ))
  41340. characterMakers.push(() => makeCharacter(
  41341. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  41342. {
  41343. front: {
  41344. height: math.unit(6, "feet"),
  41345. name: "Front",
  41346. image: {
  41347. source: "./media/characters/moonlight-rose-neptune/front.svg",
  41348. extra: 1851/1712,
  41349. bottom: 0/1851
  41350. }
  41351. },
  41352. },
  41353. [
  41354. {
  41355. name: "Enceladus",
  41356. height: math.unit(513*2, "km")
  41357. },
  41358. {
  41359. name: "Europe",
  41360. height: math.unit(1560*2, "km")
  41361. },
  41362. {
  41363. name: "Neptune",
  41364. height: math.unit(24622*2, "km"),
  41365. default: true
  41366. },
  41367. {
  41368. name: "CoRoT-9b",
  41369. height: math.unit(75067*2, "km")
  41370. },
  41371. ]
  41372. ))
  41373. characterMakers.push(() => makeCharacter(
  41374. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  41375. {
  41376. front: {
  41377. height: math.unit(6, "feet"),
  41378. name: "Front",
  41379. image: {
  41380. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  41381. extra: 1367/1286,
  41382. bottom: 55/1422
  41383. }
  41384. },
  41385. },
  41386. [
  41387. {
  41388. name: "Saturn",
  41389. height: math.unit(58232*2, "km")
  41390. },
  41391. {
  41392. name: "Jupiter",
  41393. height: math.unit(69911*2, "km"),
  41394. default: true
  41395. },
  41396. {
  41397. name: "HD 100546 b",
  41398. height: math.unit(482938, "km")
  41399. },
  41400. ]
  41401. ))
  41402. characterMakers.push(() => makeCharacter(
  41403. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41404. {
  41405. front: {
  41406. height: math.unit(1.7, "feet"),
  41407. weight: math.unit(50, "lb"),
  41408. name: "Front",
  41409. image: {
  41410. source: "./media/characters/dechroma/front.svg",
  41411. extra: 1095/859,
  41412. bottom: 64/1159
  41413. }
  41414. },
  41415. },
  41416. [
  41417. {
  41418. name: "Normal",
  41419. height: math.unit(1.7, "feet"),
  41420. default: true
  41421. },
  41422. ]
  41423. ))
  41424. characterMakers.push(() => makeCharacter(
  41425. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41426. {
  41427. side: {
  41428. height: math.unit(30, "feet"),
  41429. name: "Side",
  41430. image: {
  41431. source: "./media/characters/veluren-thanazel/side.svg",
  41432. extra: 1611/633,
  41433. bottom: 118/1729
  41434. }
  41435. },
  41436. front: {
  41437. height: math.unit(30, "feet"),
  41438. name: "Front",
  41439. image: {
  41440. source: "./media/characters/veluren-thanazel/front.svg",
  41441. extra: 1486/636,
  41442. bottom: 238/1724
  41443. }
  41444. },
  41445. head: {
  41446. height: math.unit(21.4, "feet"),
  41447. name: "Head",
  41448. image: {
  41449. source: "./media/characters/veluren-thanazel/head.svg"
  41450. }
  41451. },
  41452. genitals: {
  41453. height: math.unit(19.4, "feet"),
  41454. name: "Genitals",
  41455. image: {
  41456. source: "./media/characters/veluren-thanazel/genitals.svg"
  41457. }
  41458. },
  41459. },
  41460. [
  41461. {
  41462. name: "Social",
  41463. height: math.unit(6, "feet")
  41464. },
  41465. {
  41466. name: "Play",
  41467. height: math.unit(12, "feet")
  41468. },
  41469. {
  41470. name: "True",
  41471. height: math.unit(30, "feet"),
  41472. default: true
  41473. },
  41474. ]
  41475. ))
  41476. characterMakers.push(() => makeCharacter(
  41477. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41478. {
  41479. front: {
  41480. height: math.unit(7 + 6/12, "feet"),
  41481. weight: math.unit(500, "kg"),
  41482. name: "Front",
  41483. image: {
  41484. source: "./media/characters/arcturas/front.svg",
  41485. extra: 1700/1500,
  41486. bottom: 145/1845
  41487. }
  41488. },
  41489. },
  41490. [
  41491. {
  41492. name: "Normal",
  41493. height: math.unit(7 + 6/12, "feet"),
  41494. default: true
  41495. },
  41496. ]
  41497. ))
  41498. characterMakers.push(() => makeCharacter(
  41499. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41500. {
  41501. side: {
  41502. height: math.unit(6, "feet"),
  41503. weight: math.unit(2, "tons"),
  41504. name: "Side",
  41505. image: {
  41506. source: "./media/characters/vitaen/side.svg",
  41507. extra: 1157/617,
  41508. bottom: 122/1279
  41509. }
  41510. },
  41511. },
  41512. [
  41513. {
  41514. name: "Normal",
  41515. height: math.unit(6, "feet"),
  41516. default: true
  41517. },
  41518. ]
  41519. ))
  41520. characterMakers.push(() => makeCharacter(
  41521. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41522. {
  41523. front: {
  41524. height: math.unit(19, "feet"),
  41525. name: "Front",
  41526. image: {
  41527. source: "./media/characters/fia-dreamweaver/front.svg",
  41528. extra: 1630/1504,
  41529. bottom: 25/1655
  41530. }
  41531. },
  41532. },
  41533. [
  41534. {
  41535. name: "Normal",
  41536. height: math.unit(19, "feet"),
  41537. default: true
  41538. },
  41539. ]
  41540. ))
  41541. characterMakers.push(() => makeCharacter(
  41542. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41543. {
  41544. front: {
  41545. height: math.unit(5 + 4/12, "feet"),
  41546. name: "Front",
  41547. image: {
  41548. source: "./media/characters/artan/front.svg",
  41549. extra: 1618/1535,
  41550. bottom: 46/1664
  41551. }
  41552. },
  41553. back: {
  41554. height: math.unit(5 + 4/12, "feet"),
  41555. name: "Back",
  41556. image: {
  41557. source: "./media/characters/artan/back.svg",
  41558. extra: 1618/1543,
  41559. bottom: 31/1649
  41560. }
  41561. },
  41562. },
  41563. [
  41564. {
  41565. name: "Normal",
  41566. height: math.unit(5 + 4/12, "feet"),
  41567. default: true
  41568. },
  41569. ]
  41570. ))
  41571. characterMakers.push(() => makeCharacter(
  41572. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41573. {
  41574. side: {
  41575. height: math.unit(182, "cm"),
  41576. weight: math.unit(1000, "lb"),
  41577. name: "Side",
  41578. image: {
  41579. source: "./media/characters/silver-dragon/side.svg",
  41580. extra: 710/287,
  41581. bottom: 88/798
  41582. }
  41583. },
  41584. },
  41585. [
  41586. {
  41587. name: "Normal",
  41588. height: math.unit(182, "cm"),
  41589. default: true
  41590. },
  41591. ]
  41592. ))
  41593. characterMakers.push(() => makeCharacter(
  41594. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41595. {
  41596. side: {
  41597. height: math.unit(6 + 6/12, "feet"),
  41598. weight: math.unit(1.5, "tons"),
  41599. name: "Side",
  41600. image: {
  41601. source: "./media/characters/zephyr/side.svg",
  41602. extra: 1433/586,
  41603. bottom: 109/1542
  41604. }
  41605. },
  41606. },
  41607. [
  41608. {
  41609. name: "Normal",
  41610. height: math.unit(6 + 6/12, "feet"),
  41611. default: true
  41612. },
  41613. ]
  41614. ))
  41615. characterMakers.push(() => makeCharacter(
  41616. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41617. {
  41618. side: {
  41619. height: math.unit(1, "feet"),
  41620. name: "Side",
  41621. image: {
  41622. source: "./media/characters/vixye/side.svg",
  41623. extra: 632/541,
  41624. bottom: 0/632
  41625. }
  41626. },
  41627. },
  41628. [
  41629. {
  41630. name: "Normal",
  41631. height: math.unit(1, "feet"),
  41632. default: true
  41633. },
  41634. {
  41635. name: "True",
  41636. height: math.unit(1e15, "multiverses")
  41637. },
  41638. ]
  41639. ))
  41640. characterMakers.push(() => makeCharacter(
  41641. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41642. {
  41643. front: {
  41644. height: math.unit(8 + 2/12, "feet"),
  41645. weight: math.unit(650, "lb"),
  41646. name: "Front",
  41647. image: {
  41648. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41649. extra: 1174/1137,
  41650. bottom: 82/1256
  41651. }
  41652. },
  41653. back: {
  41654. height: math.unit(8 + 2/12, "feet"),
  41655. weight: math.unit(650, "lb"),
  41656. name: "Back",
  41657. image: {
  41658. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41659. extra: 1204/1157,
  41660. bottom: 46/1250
  41661. }
  41662. },
  41663. },
  41664. [
  41665. {
  41666. name: "Wildform",
  41667. height: math.unit(8 + 2/12, "feet"),
  41668. default: true
  41669. },
  41670. ]
  41671. ))
  41672. characterMakers.push(() => makeCharacter(
  41673. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41674. {
  41675. front: {
  41676. height: math.unit(18, "feet"),
  41677. name: "Front",
  41678. image: {
  41679. source: "./media/characters/cyphin/front.svg",
  41680. extra: 970/886,
  41681. bottom: 42/1012
  41682. }
  41683. },
  41684. back: {
  41685. height: math.unit(18, "feet"),
  41686. name: "Back",
  41687. image: {
  41688. source: "./media/characters/cyphin/back.svg",
  41689. extra: 1009/894,
  41690. bottom: 24/1033
  41691. }
  41692. },
  41693. head: {
  41694. height: math.unit(5.05, "feet"),
  41695. name: "Head",
  41696. image: {
  41697. source: "./media/characters/cyphin/head.svg"
  41698. }
  41699. },
  41700. tailbud: {
  41701. height: math.unit(5, "feet"),
  41702. name: "Tailbud",
  41703. image: {
  41704. source: "./media/characters/cyphin/tailbud.svg"
  41705. }
  41706. },
  41707. },
  41708. [
  41709. ]
  41710. ))
  41711. characterMakers.push(() => makeCharacter(
  41712. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41713. {
  41714. side: {
  41715. height: math.unit(10, "feet"),
  41716. weight: math.unit(6, "tons"),
  41717. name: "Side",
  41718. image: {
  41719. source: "./media/characters/raijin/side.svg",
  41720. extra: 1529/613,
  41721. bottom: 337/1866
  41722. }
  41723. },
  41724. },
  41725. [
  41726. {
  41727. name: "Normal",
  41728. height: math.unit(10, "feet"),
  41729. default: true
  41730. },
  41731. ]
  41732. ))
  41733. characterMakers.push(() => makeCharacter(
  41734. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41735. {
  41736. side: {
  41737. height: math.unit(9, "feet"),
  41738. name: "Side",
  41739. image: {
  41740. source: "./media/characters/nilghais/side.svg",
  41741. extra: 1047/744,
  41742. bottom: 91/1138
  41743. }
  41744. },
  41745. head: {
  41746. height: math.unit(3.14, "feet"),
  41747. name: "Head",
  41748. image: {
  41749. source: "./media/characters/nilghais/head.svg"
  41750. }
  41751. },
  41752. mouth: {
  41753. height: math.unit(4.6, "feet"),
  41754. name: "Mouth",
  41755. image: {
  41756. source: "./media/characters/nilghais/mouth.svg"
  41757. }
  41758. },
  41759. wings: {
  41760. height: math.unit(24, "feet"),
  41761. name: "Wings",
  41762. image: {
  41763. source: "./media/characters/nilghais/wings.svg"
  41764. }
  41765. },
  41766. ass: {
  41767. height: math.unit(6.12, "feet"),
  41768. name: "Ass",
  41769. image: {
  41770. source: "./media/characters/nilghais/ass.svg"
  41771. }
  41772. },
  41773. },
  41774. [
  41775. {
  41776. name: "Normal",
  41777. height: math.unit(9, "feet"),
  41778. default: true
  41779. },
  41780. ]
  41781. ))
  41782. characterMakers.push(() => makeCharacter(
  41783. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41784. {
  41785. regular: {
  41786. height: math.unit(16 + 2/12, "feet"),
  41787. weight: math.unit(2300, "lb"),
  41788. name: "Regular",
  41789. image: {
  41790. source: "./media/characters/zolgar/regular.svg",
  41791. extra: 1246/1004,
  41792. bottom: 124/1370
  41793. }
  41794. },
  41795. boxers: {
  41796. height: math.unit(16 + 2/12, "feet"),
  41797. weight: math.unit(2300, "lb"),
  41798. name: "Boxers",
  41799. image: {
  41800. source: "./media/characters/zolgar/boxers.svg",
  41801. extra: 1246/1004,
  41802. bottom: 124/1370
  41803. }
  41804. },
  41805. armored: {
  41806. height: math.unit(16 + 2/12, "feet"),
  41807. weight: math.unit(2300, "lb"),
  41808. name: "Armored",
  41809. image: {
  41810. source: "./media/characters/zolgar/armored.svg",
  41811. extra: 1246/1004,
  41812. bottom: 124/1370
  41813. }
  41814. },
  41815. goth: {
  41816. height: math.unit(16 + 2/12, "feet"),
  41817. weight: math.unit(2300, "lb"),
  41818. name: "Goth",
  41819. image: {
  41820. source: "./media/characters/zolgar/goth.svg",
  41821. extra: 1246/1004,
  41822. bottom: 124/1370
  41823. }
  41824. },
  41825. },
  41826. [
  41827. {
  41828. name: "Shrunken Down",
  41829. height: math.unit(9 + 2/12, "feet")
  41830. },
  41831. {
  41832. name: "Normal",
  41833. height: math.unit(16 + 2/12, "feet"),
  41834. default: true
  41835. },
  41836. ]
  41837. ))
  41838. characterMakers.push(() => makeCharacter(
  41839. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41840. {
  41841. front: {
  41842. height: math.unit(6, "feet"),
  41843. weight: math.unit(168, "lb"),
  41844. name: "Front",
  41845. image: {
  41846. source: "./media/characters/luca/front.svg",
  41847. extra: 841/667,
  41848. bottom: 102/943
  41849. }
  41850. },
  41851. },
  41852. [
  41853. {
  41854. name: "Normal",
  41855. height: math.unit(6, "feet"),
  41856. default: true
  41857. },
  41858. ]
  41859. ))
  41860. characterMakers.push(() => makeCharacter(
  41861. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41862. {
  41863. side: {
  41864. height: math.unit(7 + 3/12, "feet"),
  41865. weight: math.unit(312, "lb"),
  41866. name: "Side",
  41867. image: {
  41868. source: "./media/characters/zezo/side.svg",
  41869. extra: 1192/1067,
  41870. bottom: 63/1255
  41871. }
  41872. },
  41873. },
  41874. [
  41875. {
  41876. name: "Normal",
  41877. height: math.unit(7 + 3/12, "feet"),
  41878. default: true
  41879. },
  41880. ]
  41881. ))
  41882. characterMakers.push(() => makeCharacter(
  41883. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41884. {
  41885. front: {
  41886. height: math.unit(5 + 5/12, "feet"),
  41887. weight: math.unit(170, "lb"),
  41888. name: "Front",
  41889. image: {
  41890. source: "./media/characters/mayso/front.svg",
  41891. extra: 1215/1108,
  41892. bottom: 16/1231
  41893. }
  41894. },
  41895. },
  41896. [
  41897. {
  41898. name: "Normal",
  41899. height: math.unit(5 + 5/12, "feet"),
  41900. default: true
  41901. },
  41902. ]
  41903. ))
  41904. characterMakers.push(() => makeCharacter(
  41905. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41906. {
  41907. front: {
  41908. height: math.unit(4 + 3/12, "feet"),
  41909. weight: math.unit(80, "lb"),
  41910. name: "Front",
  41911. image: {
  41912. source: "./media/characters/hess/front.svg",
  41913. extra: 1200/1123,
  41914. bottom: 16/1216
  41915. }
  41916. },
  41917. },
  41918. [
  41919. {
  41920. name: "Normal",
  41921. height: math.unit(4 + 3/12, "feet"),
  41922. default: true
  41923. },
  41924. ]
  41925. ))
  41926. characterMakers.push(() => makeCharacter(
  41927. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41928. {
  41929. front: {
  41930. height: math.unit(1.9, "meters"),
  41931. name: "Front",
  41932. image: {
  41933. source: "./media/characters/ashgar/front.svg",
  41934. extra: 1177/1146,
  41935. bottom: 99/1276
  41936. }
  41937. },
  41938. back: {
  41939. height: math.unit(1.9, "meters"),
  41940. name: "Back",
  41941. image: {
  41942. source: "./media/characters/ashgar/back.svg",
  41943. extra: 1201/1183,
  41944. bottom: 53/1254
  41945. }
  41946. },
  41947. feral: {
  41948. height: math.unit(1.4, "meters"),
  41949. name: "Feral",
  41950. image: {
  41951. source: "./media/characters/ashgar/feral.svg",
  41952. extra: 370/345,
  41953. bottom: 45/415
  41954. }
  41955. },
  41956. },
  41957. [
  41958. {
  41959. name: "Normal",
  41960. height: math.unit(1.9, "meters"),
  41961. default: true
  41962. },
  41963. ]
  41964. ))
  41965. characterMakers.push(() => makeCharacter(
  41966. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41967. {
  41968. regular: {
  41969. height: math.unit(6, "feet"),
  41970. weight: math.unit(220, "lb"),
  41971. name: "Regular",
  41972. image: {
  41973. source: "./media/characters/phillip/regular.svg",
  41974. extra: 1373/1277,
  41975. bottom: 75/1448
  41976. }
  41977. },
  41978. dressed: {
  41979. height: math.unit(6, "feet"),
  41980. weight: math.unit(220, "lb"),
  41981. name: "Dressed",
  41982. image: {
  41983. source: "./media/characters/phillip/dressed.svg",
  41984. extra: 1373/1277,
  41985. bottom: 75/1448
  41986. }
  41987. },
  41988. paw: {
  41989. height: math.unit(1.44, "feet"),
  41990. name: "Paw",
  41991. image: {
  41992. source: "./media/characters/phillip/paw.svg"
  41993. }
  41994. },
  41995. },
  41996. [
  41997. {
  41998. name: "Normal",
  41999. height: math.unit(6, "feet"),
  42000. default: true
  42001. },
  42002. ]
  42003. ))
  42004. characterMakers.push(() => makeCharacter(
  42005. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42006. {
  42007. side: {
  42008. height: math.unit(42, "feet"),
  42009. name: "Side",
  42010. image: {
  42011. source: "./media/characters/uvula/side.svg",
  42012. extra: 683/586,
  42013. bottom: 60/743
  42014. }
  42015. },
  42016. front: {
  42017. height: math.unit(42, "feet"),
  42018. name: "Front",
  42019. image: {
  42020. source: "./media/characters/uvula/front.svg",
  42021. extra: 705/613,
  42022. bottom: 54/759
  42023. }
  42024. },
  42025. maw: {
  42026. height: math.unit(23.5, "feet"),
  42027. name: "Maw",
  42028. image: {
  42029. source: "./media/characters/uvula/maw.svg"
  42030. }
  42031. },
  42032. },
  42033. [
  42034. {
  42035. name: "Original Size",
  42036. height: math.unit(14, "inches")
  42037. },
  42038. {
  42039. name: "Human Size",
  42040. height: math.unit(6, "feet")
  42041. },
  42042. {
  42043. name: "Big",
  42044. height: math.unit(42, "feet"),
  42045. default: true
  42046. },
  42047. {
  42048. name: "Bigger",
  42049. height: math.unit(100, "feet")
  42050. },
  42051. ]
  42052. ))
  42053. characterMakers.push(() => makeCharacter(
  42054. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42055. {
  42056. front: {
  42057. height: math.unit(5 + 11/12, "feet"),
  42058. name: "Front",
  42059. image: {
  42060. source: "./media/characters/lannah/front.svg",
  42061. extra: 1208/1113,
  42062. bottom: 97/1305
  42063. }
  42064. },
  42065. },
  42066. [
  42067. {
  42068. name: "Normal",
  42069. height: math.unit(5 + 11/12, "feet"),
  42070. default: true
  42071. },
  42072. ]
  42073. ))
  42074. characterMakers.push(() => makeCharacter(
  42075. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42076. {
  42077. front: {
  42078. height: math.unit(6 + 3/12, "feet"),
  42079. weight: math.unit(3.5, "tons"),
  42080. name: "Front",
  42081. image: {
  42082. source: "./media/characters/emberflame/front.svg",
  42083. extra: 1198/672,
  42084. bottom: 82/1280
  42085. }
  42086. },
  42087. side: {
  42088. height: math.unit(6 + 3/12, "feet"),
  42089. weight: math.unit(3.5, "tons"),
  42090. name: "Side",
  42091. image: {
  42092. source: "./media/characters/emberflame/side.svg",
  42093. extra: 938/527,
  42094. bottom: 56/994
  42095. }
  42096. },
  42097. },
  42098. [
  42099. {
  42100. name: "Normal",
  42101. height: math.unit(6 + 3/12, "feet"),
  42102. default: true
  42103. },
  42104. ]
  42105. ))
  42106. characterMakers.push(() => makeCharacter(
  42107. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42108. {
  42109. side: {
  42110. height: math.unit(17.5, "feet"),
  42111. weight: math.unit(35, "tons"),
  42112. name: "Side",
  42113. image: {
  42114. source: "./media/characters/sophie-ambrose/side.svg",
  42115. extra: 1573/1242,
  42116. bottom: 71/1644
  42117. }
  42118. },
  42119. maw: {
  42120. height: math.unit(7.4, "feet"),
  42121. name: "Maw",
  42122. image: {
  42123. source: "./media/characters/sophie-ambrose/maw.svg"
  42124. }
  42125. },
  42126. },
  42127. [
  42128. {
  42129. name: "Normal",
  42130. height: math.unit(17.5, "feet"),
  42131. default: true
  42132. },
  42133. ]
  42134. ))
  42135. characterMakers.push(() => makeCharacter(
  42136. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42137. {
  42138. front: {
  42139. height: math.unit(280, "feet"),
  42140. weight: math.unit(550, "tons"),
  42141. name: "Front",
  42142. image: {
  42143. source: "./media/characters/king-mugi/front.svg",
  42144. extra: 1102/947,
  42145. bottom: 104/1206
  42146. }
  42147. },
  42148. },
  42149. [
  42150. {
  42151. name: "King Mugi",
  42152. height: math.unit(280, "feet"),
  42153. default: true
  42154. },
  42155. ]
  42156. ))
  42157. characterMakers.push(() => makeCharacter(
  42158. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42159. {
  42160. front: {
  42161. height: math.unit(64, "meters"),
  42162. name: "Front",
  42163. image: {
  42164. source: "./media/characters/nova-fox/front.svg",
  42165. extra: 1310/1246,
  42166. bottom: 65/1375
  42167. }
  42168. },
  42169. },
  42170. [
  42171. {
  42172. name: "Macro",
  42173. height: math.unit(64, "meters"),
  42174. default: true
  42175. },
  42176. ]
  42177. ))
  42178. characterMakers.push(() => makeCharacter(
  42179. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42180. {
  42181. front: {
  42182. height: math.unit(6 + 3/12, "feet"),
  42183. weight: math.unit(170, "lb"),
  42184. name: "Front",
  42185. image: {
  42186. source: "./media/characters/sam-bat/front.svg",
  42187. extra: 1601/1411,
  42188. bottom: 125/1726
  42189. }
  42190. },
  42191. back: {
  42192. height: math.unit(6 + 3/12, "feet"),
  42193. weight: math.unit(170, "lb"),
  42194. name: "Back",
  42195. image: {
  42196. source: "./media/characters/sam-bat/back.svg",
  42197. extra: 1577/1405,
  42198. bottom: 58/1635
  42199. }
  42200. },
  42201. },
  42202. [
  42203. {
  42204. name: "Normal",
  42205. height: math.unit(6 + 3/12, "feet"),
  42206. default: true
  42207. },
  42208. ]
  42209. ))
  42210. characterMakers.push(() => makeCharacter(
  42211. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42212. {
  42213. front: {
  42214. height: math.unit(59, "feet"),
  42215. weight: math.unit(40000, "lb"),
  42216. name: "Front",
  42217. image: {
  42218. source: "./media/characters/inari/front.svg",
  42219. extra: 1884/1350,
  42220. bottom: 95/1979
  42221. }
  42222. },
  42223. },
  42224. [
  42225. {
  42226. name: "Gigantamax",
  42227. height: math.unit(59, "feet"),
  42228. default: true
  42229. },
  42230. ]
  42231. ))
  42232. characterMakers.push(() => makeCharacter(
  42233. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42234. {
  42235. front: {
  42236. height: math.unit(5 + 8/12, "feet"),
  42237. name: "Front",
  42238. image: {
  42239. source: "./media/characters/elizabeth/front.svg",
  42240. extra: 1395/1298,
  42241. bottom: 54/1449
  42242. }
  42243. },
  42244. mouth: {
  42245. height: math.unit(1.97, "feet"),
  42246. name: "Mouth",
  42247. image: {
  42248. source: "./media/characters/elizabeth/mouth.svg"
  42249. }
  42250. },
  42251. foot: {
  42252. height: math.unit(1.17, "feet"),
  42253. name: "Foot",
  42254. image: {
  42255. source: "./media/characters/elizabeth/foot.svg"
  42256. }
  42257. },
  42258. },
  42259. [
  42260. {
  42261. name: "Normal",
  42262. height: math.unit(5 + 8/12, "feet"),
  42263. default: true
  42264. },
  42265. {
  42266. name: "Minimacro",
  42267. height: math.unit(18, "feet")
  42268. },
  42269. {
  42270. name: "Macro",
  42271. height: math.unit(180, "feet")
  42272. },
  42273. ]
  42274. ))
  42275. characterMakers.push(() => makeCharacter(
  42276. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42277. {
  42278. front: {
  42279. height: math.unit(5 + 2/12, "feet"),
  42280. name: "Front",
  42281. image: {
  42282. source: "./media/characters/october-gossamer/front.svg",
  42283. extra: 505/454,
  42284. bottom: 7/512
  42285. }
  42286. },
  42287. back: {
  42288. height: math.unit(5 + 2/12, "feet"),
  42289. name: "Back",
  42290. image: {
  42291. source: "./media/characters/october-gossamer/back.svg",
  42292. extra: 501/454,
  42293. bottom: 11/512
  42294. }
  42295. },
  42296. },
  42297. [
  42298. {
  42299. name: "Normal",
  42300. height: math.unit(5 + 2/12, "feet"),
  42301. default: true
  42302. },
  42303. ]
  42304. ))
  42305. characterMakers.push(() => makeCharacter(
  42306. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42307. {
  42308. front: {
  42309. height: math.unit(5, "feet"),
  42310. name: "Front",
  42311. image: {
  42312. source: "./media/characters/epiglottis/front.svg",
  42313. extra: 923/849,
  42314. bottom: 17/940
  42315. }
  42316. },
  42317. },
  42318. [
  42319. {
  42320. name: "Original Size",
  42321. height: math.unit(10, "inches")
  42322. },
  42323. {
  42324. name: "Human Size",
  42325. height: math.unit(5, "feet"),
  42326. default: true
  42327. },
  42328. {
  42329. name: "Big",
  42330. height: math.unit(25, "feet")
  42331. },
  42332. {
  42333. name: "Bigger",
  42334. height: math.unit(50, "feet")
  42335. },
  42336. {
  42337. name: "oh lawd",
  42338. height: math.unit(75, "feet")
  42339. },
  42340. ]
  42341. ))
  42342. characterMakers.push(() => makeCharacter(
  42343. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42344. {
  42345. front: {
  42346. height: math.unit(2 + 4/12, "feet"),
  42347. weight: math.unit(60, "lb"),
  42348. name: "Front",
  42349. image: {
  42350. source: "./media/characters/lerm/front.svg",
  42351. extra: 796/790,
  42352. bottom: 79/875
  42353. }
  42354. },
  42355. },
  42356. [
  42357. {
  42358. name: "Normal",
  42359. height: math.unit(2 + 4/12, "feet"),
  42360. default: true
  42361. },
  42362. ]
  42363. ))
  42364. characterMakers.push(() => makeCharacter(
  42365. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42366. {
  42367. front: {
  42368. height: math.unit(5.5, "feet"),
  42369. weight: math.unit(130, "lb"),
  42370. name: "Front",
  42371. image: {
  42372. source: "./media/characters/xena-nebadon/front.svg",
  42373. extra: 1828/1730,
  42374. bottom: 79/1907
  42375. }
  42376. },
  42377. },
  42378. [
  42379. {
  42380. name: "Tiny Puppy",
  42381. height: math.unit(3, "inches")
  42382. },
  42383. {
  42384. name: "Normal",
  42385. height: math.unit(5.5, "feet"),
  42386. default: true
  42387. },
  42388. {
  42389. name: "Lotta Lady",
  42390. height: math.unit(12, "feet")
  42391. },
  42392. {
  42393. name: "Pretty Big",
  42394. height: math.unit(100, "feet")
  42395. },
  42396. {
  42397. name: "Big",
  42398. height: math.unit(500, "feet")
  42399. },
  42400. {
  42401. name: "Skyscraper Toys",
  42402. height: math.unit(2500, "feet")
  42403. },
  42404. {
  42405. name: "Plane Catcher",
  42406. height: math.unit(8, "miles")
  42407. },
  42408. {
  42409. name: "Planet Toys",
  42410. height: math.unit(15, "earths")
  42411. },
  42412. {
  42413. name: "Stardust",
  42414. height: math.unit(0.25, "galaxies")
  42415. },
  42416. {
  42417. name: "Snacks",
  42418. height: math.unit(70, "universes")
  42419. },
  42420. ]
  42421. ))
  42422. characterMakers.push(() => makeCharacter(
  42423. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42424. {
  42425. front: {
  42426. height: math.unit(1.6, "meters"),
  42427. weight: math.unit(60, "kg"),
  42428. name: "Front",
  42429. image: {
  42430. source: "./media/characters/bounty/front.svg",
  42431. extra: 1426/1308,
  42432. bottom: 15/1441
  42433. }
  42434. },
  42435. back: {
  42436. height: math.unit(1.6, "meters"),
  42437. weight: math.unit(60, "kg"),
  42438. name: "Back",
  42439. image: {
  42440. source: "./media/characters/bounty/back.svg",
  42441. extra: 1417/1307,
  42442. bottom: 8/1425
  42443. }
  42444. },
  42445. },
  42446. [
  42447. {
  42448. name: "Normal",
  42449. height: math.unit(1.6, "meters"),
  42450. default: true
  42451. },
  42452. {
  42453. name: "Macro",
  42454. height: math.unit(300, "meters")
  42455. },
  42456. ]
  42457. ))
  42458. characterMakers.push(() => makeCharacter(
  42459. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42460. {
  42461. front: {
  42462. height: math.unit(2 + 8/12, "feet"),
  42463. weight: math.unit(15, "lb"),
  42464. name: "Front",
  42465. image: {
  42466. source: "./media/characters/mochi/front.svg",
  42467. extra: 1022/852,
  42468. bottom: 435/1457
  42469. }
  42470. },
  42471. back: {
  42472. height: math.unit(2 + 8/12, "feet"),
  42473. weight: math.unit(15, "lb"),
  42474. name: "Back",
  42475. image: {
  42476. source: "./media/characters/mochi/back.svg",
  42477. extra: 1335/1119,
  42478. bottom: 39/1374
  42479. }
  42480. },
  42481. bird: {
  42482. height: math.unit(2 + 8/12, "feet"),
  42483. weight: math.unit(15, "lb"),
  42484. name: "Bird",
  42485. image: {
  42486. source: "./media/characters/mochi/bird.svg",
  42487. extra: 1251/1113,
  42488. bottom: 178/1429
  42489. }
  42490. },
  42491. kaiju: {
  42492. height: math.unit(154, "feet"),
  42493. weight: math.unit(1e7, "lb"),
  42494. name: "Kaiju",
  42495. image: {
  42496. source: "./media/characters/mochi/kaiju.svg",
  42497. extra: 460/324,
  42498. bottom: 40/500
  42499. }
  42500. },
  42501. head: {
  42502. height: math.unit(1.21, "feet"),
  42503. name: "Head",
  42504. image: {
  42505. source: "./media/characters/mochi/head.svg"
  42506. }
  42507. },
  42508. alternateTail: {
  42509. height: math.unit(2 + 8/12, "feet"),
  42510. weight: math.unit(45, "lb"),
  42511. name: "Alternate Tail",
  42512. image: {
  42513. source: "./media/characters/mochi/alternate-tail.svg",
  42514. extra: 139/76,
  42515. bottom: 45/184
  42516. }
  42517. },
  42518. },
  42519. [
  42520. {
  42521. name: "Micro",
  42522. height: math.unit(2, "inches")
  42523. },
  42524. {
  42525. name: "Normal",
  42526. height: math.unit(2 + 8/12, "feet"),
  42527. default: true
  42528. },
  42529. {
  42530. name: "Macro",
  42531. height: math.unit(106, "feet")
  42532. },
  42533. ]
  42534. ))
  42535. characterMakers.push(() => makeCharacter(
  42536. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42537. {
  42538. front: {
  42539. height: math.unit(5.67, "feet"),
  42540. weight: math.unit(135, "lb"),
  42541. name: "Front",
  42542. image: {
  42543. source: "./media/characters/sarel/front.svg",
  42544. extra: 865/788,
  42545. bottom: 97/962
  42546. }
  42547. },
  42548. back: {
  42549. height: math.unit(5.67, "feet"),
  42550. weight: math.unit(135, "lb"),
  42551. name: "Back",
  42552. image: {
  42553. source: "./media/characters/sarel/back.svg",
  42554. extra: 857/777,
  42555. bottom: 32/889
  42556. }
  42557. },
  42558. chozoan: {
  42559. height: math.unit(5.67, "feet"),
  42560. weight: math.unit(135, "lb"),
  42561. name: "Chozoan",
  42562. image: {
  42563. source: "./media/characters/sarel/chozoan.svg",
  42564. extra: 865/788,
  42565. bottom: 97/962
  42566. }
  42567. },
  42568. current: {
  42569. height: math.unit(5.67, "feet"),
  42570. weight: math.unit(135, "lb"),
  42571. name: "Current",
  42572. image: {
  42573. source: "./media/characters/sarel/current.svg",
  42574. extra: 865/788,
  42575. bottom: 97/962
  42576. }
  42577. },
  42578. head: {
  42579. height: math.unit(1.77, "feet"),
  42580. name: "Head",
  42581. image: {
  42582. source: "./media/characters/sarel/head.svg"
  42583. }
  42584. },
  42585. claws: {
  42586. height: math.unit(1.8, "feet"),
  42587. name: "Claws",
  42588. image: {
  42589. source: "./media/characters/sarel/claws.svg"
  42590. }
  42591. },
  42592. clawsAlt: {
  42593. height: math.unit(1.8, "feet"),
  42594. name: "Claws-alt",
  42595. image: {
  42596. source: "./media/characters/sarel/claws-alt.svg"
  42597. }
  42598. },
  42599. },
  42600. [
  42601. {
  42602. name: "Normal",
  42603. height: math.unit(5.67, "feet"),
  42604. default: true
  42605. },
  42606. ]
  42607. ))
  42608. characterMakers.push(() => makeCharacter(
  42609. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42610. {
  42611. front: {
  42612. height: math.unit(5500, "feet"),
  42613. name: "Front",
  42614. image: {
  42615. source: "./media/characters/alyonia/front.svg",
  42616. extra: 1200/1135,
  42617. bottom: 29/1229
  42618. }
  42619. },
  42620. back: {
  42621. height: math.unit(5500, "feet"),
  42622. name: "Back",
  42623. image: {
  42624. source: "./media/characters/alyonia/back.svg",
  42625. extra: 1205/1138,
  42626. bottom: 10/1215
  42627. }
  42628. },
  42629. },
  42630. [
  42631. {
  42632. name: "Small",
  42633. height: math.unit(10, "feet")
  42634. },
  42635. {
  42636. name: "Macro",
  42637. height: math.unit(500, "feet")
  42638. },
  42639. {
  42640. name: "Mega Macro",
  42641. height: math.unit(5500, "feet"),
  42642. default: true
  42643. },
  42644. {
  42645. name: "Mega Macro+",
  42646. height: math.unit(500000, "feet")
  42647. },
  42648. {
  42649. name: "Giga Macro",
  42650. height: math.unit(3000, "miles")
  42651. },
  42652. {
  42653. name: "Tera Macro",
  42654. height: math.unit(2.8e6, "miles")
  42655. },
  42656. {
  42657. name: "Galactic",
  42658. height: math.unit(120000, "lightyears")
  42659. },
  42660. ]
  42661. ))
  42662. characterMakers.push(() => makeCharacter(
  42663. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42664. {
  42665. werewolf: {
  42666. height: math.unit(8, "feet"),
  42667. weight: math.unit(425, "lb"),
  42668. name: "Werewolf",
  42669. image: {
  42670. source: "./media/characters/autumn/werewolf.svg",
  42671. extra: 2154/2031,
  42672. bottom: 160/2314
  42673. }
  42674. },
  42675. human: {
  42676. height: math.unit(5 + 8/12, "feet"),
  42677. weight: math.unit(150, "lb"),
  42678. name: "Human",
  42679. image: {
  42680. source: "./media/characters/autumn/human.svg",
  42681. extra: 1200/1149,
  42682. bottom: 30/1230
  42683. }
  42684. },
  42685. },
  42686. [
  42687. {
  42688. name: "Normal",
  42689. height: math.unit(8, "feet"),
  42690. default: true
  42691. },
  42692. ]
  42693. ))
  42694. characterMakers.push(() => makeCharacter(
  42695. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42696. {
  42697. front: {
  42698. height: math.unit(8 + 5/12, "feet"),
  42699. weight: math.unit(825, "lb"),
  42700. name: "Front",
  42701. image: {
  42702. source: "./media/characters/cobalt-charizard/front.svg",
  42703. extra: 1268/1155,
  42704. bottom: 122/1390
  42705. }
  42706. },
  42707. side: {
  42708. height: math.unit(8 + 5/12, "feet"),
  42709. weight: math.unit(825, "lb"),
  42710. name: "Side",
  42711. image: {
  42712. source: "./media/characters/cobalt-charizard/side.svg",
  42713. extra: 1348/1257,
  42714. bottom: 58/1406
  42715. }
  42716. },
  42717. gMax: {
  42718. height: math.unit(134 + 11/12, "feet"),
  42719. name: "G-Max",
  42720. image: {
  42721. source: "./media/characters/cobalt-charizard/g-max.svg",
  42722. extra: 1835/1541,
  42723. bottom: 151/1986
  42724. }
  42725. },
  42726. },
  42727. [
  42728. {
  42729. name: "Normal",
  42730. height: math.unit(8 + 5/12, "feet"),
  42731. default: true
  42732. },
  42733. ]
  42734. ))
  42735. characterMakers.push(() => makeCharacter(
  42736. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42737. {
  42738. front: {
  42739. height: math.unit(6 + 3/12, "feet"),
  42740. weight: math.unit(210, "lb"),
  42741. name: "Front",
  42742. image: {
  42743. source: "./media/characters/stella/front.svg",
  42744. extra: 3549/3335,
  42745. bottom: 51/3600
  42746. }
  42747. },
  42748. },
  42749. [
  42750. {
  42751. name: "Normal",
  42752. height: math.unit(6 + 3/12, "feet"),
  42753. default: true
  42754. },
  42755. ]
  42756. ))
  42757. characterMakers.push(() => makeCharacter(
  42758. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42759. {
  42760. front: {
  42761. height: math.unit(5, "feet"),
  42762. weight: math.unit(90, "lb"),
  42763. name: "Front",
  42764. image: {
  42765. source: "./media/characters/riley-bishop/front.svg",
  42766. extra: 1450/1428,
  42767. bottom: 152/1602
  42768. }
  42769. },
  42770. },
  42771. [
  42772. {
  42773. name: "Normal",
  42774. height: math.unit(5, "feet"),
  42775. default: true
  42776. },
  42777. ]
  42778. ))
  42779. characterMakers.push(() => makeCharacter(
  42780. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42781. {
  42782. side: {
  42783. height: math.unit(8 + 2/12, "feet"),
  42784. weight: math.unit(500, "kg"),
  42785. name: "Side",
  42786. image: {
  42787. source: "./media/characters/theo-arcanine/side.svg",
  42788. extra: 1342/1074,
  42789. bottom: 111/1453
  42790. }
  42791. },
  42792. },
  42793. [
  42794. {
  42795. name: "Normal",
  42796. height: math.unit(8 + 2/12, "feet"),
  42797. default: true
  42798. },
  42799. ]
  42800. ))
  42801. characterMakers.push(() => makeCharacter(
  42802. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42803. {
  42804. front: {
  42805. height: math.unit(4, "feet"),
  42806. name: "Front",
  42807. image: {
  42808. source: "./media/characters/kali/front.svg",
  42809. extra: 1921/1357,
  42810. bottom: 70/1991
  42811. }
  42812. },
  42813. },
  42814. [
  42815. {
  42816. name: "Normal",
  42817. height: math.unit(4, "feet"),
  42818. default: true
  42819. },
  42820. {
  42821. name: "Macro",
  42822. height: math.unit(32, "meters")
  42823. },
  42824. {
  42825. name: "Macro+",
  42826. height: math.unit(150, "meters")
  42827. },
  42828. {
  42829. name: "Megamacro",
  42830. height: math.unit(7500, "meters")
  42831. },
  42832. {
  42833. name: "Megamacro+",
  42834. height: math.unit(80, "kilometers")
  42835. },
  42836. ]
  42837. ))
  42838. characterMakers.push(() => makeCharacter(
  42839. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42840. {
  42841. side: {
  42842. height: math.unit(5 + 11/12, "feet"),
  42843. weight: math.unit(236, "lb"),
  42844. name: "Side",
  42845. image: {
  42846. source: "./media/characters/gapp/side.svg",
  42847. extra: 775/340,
  42848. bottom: 58/833
  42849. }
  42850. },
  42851. mouth: {
  42852. height: math.unit(2.98, "feet"),
  42853. name: "Mouth",
  42854. image: {
  42855. source: "./media/characters/gapp/mouth.svg"
  42856. }
  42857. },
  42858. },
  42859. [
  42860. {
  42861. name: "Normal",
  42862. height: math.unit(5 + 1/12, "feet"),
  42863. default: true
  42864. },
  42865. ]
  42866. ))
  42867. characterMakers.push(() => makeCharacter(
  42868. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42869. {
  42870. front: {
  42871. height: math.unit(6, "feet"),
  42872. name: "Front",
  42873. image: {
  42874. source: "./media/characters/persephone/front.svg",
  42875. extra: 1895/1717,
  42876. bottom: 96/1991
  42877. }
  42878. },
  42879. back: {
  42880. height: math.unit(6, "feet"),
  42881. name: "Back",
  42882. image: {
  42883. source: "./media/characters/persephone/back.svg",
  42884. extra: 1868/1679,
  42885. bottom: 26/1894
  42886. }
  42887. },
  42888. casual: {
  42889. height: math.unit(6, "feet"),
  42890. name: "Casual",
  42891. image: {
  42892. source: "./media/characters/persephone/casual.svg",
  42893. extra: 1713/1541,
  42894. bottom: 76/1789
  42895. }
  42896. },
  42897. },
  42898. [
  42899. {
  42900. name: "Human Size",
  42901. height: math.unit(6, "feet")
  42902. },
  42903. {
  42904. name: "Big Steppy",
  42905. height: math.unit(600, "meters"),
  42906. default: true
  42907. },
  42908. {
  42909. name: "Galaxy Brain",
  42910. height: math.unit(1, "zettameter")
  42911. },
  42912. ]
  42913. ))
  42914. characterMakers.push(() => makeCharacter(
  42915. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42916. {
  42917. front: {
  42918. height: math.unit(1.85, "meters"),
  42919. name: "Front",
  42920. image: {
  42921. source: "./media/characters/riley-foxthing/front.svg",
  42922. extra: 1495/1354,
  42923. bottom: 122/1617
  42924. }
  42925. },
  42926. frontAlt: {
  42927. height: math.unit(1.85, "meters"),
  42928. name: "Front (Alt)",
  42929. image: {
  42930. source: "./media/characters/riley-foxthing/front-alt.svg",
  42931. extra: 1572/1389,
  42932. bottom: 116/1688
  42933. }
  42934. },
  42935. },
  42936. [
  42937. {
  42938. name: "Normal Sized",
  42939. height: math.unit(1.85, "meters"),
  42940. default: true
  42941. },
  42942. {
  42943. name: "Quite Sizable",
  42944. height: math.unit(5, "meters")
  42945. },
  42946. {
  42947. name: "Rather Large",
  42948. height: math.unit(20, "meters")
  42949. },
  42950. {
  42951. name: "Macro",
  42952. height: math.unit(450, "meters")
  42953. },
  42954. {
  42955. name: "Giga",
  42956. height: math.unit(5, "km")
  42957. },
  42958. ]
  42959. ))
  42960. characterMakers.push(() => makeCharacter(
  42961. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42962. {
  42963. front: {
  42964. height: math.unit(6, "feet"),
  42965. weight: math.unit(200, "lb"),
  42966. name: "Front",
  42967. image: {
  42968. source: "./media/characters/blizzard/front.svg",
  42969. extra: 1136/990,
  42970. bottom: 136/1272
  42971. }
  42972. },
  42973. back: {
  42974. height: math.unit(6, "feet"),
  42975. weight: math.unit(200, "lb"),
  42976. name: "Back",
  42977. image: {
  42978. source: "./media/characters/blizzard/back.svg",
  42979. extra: 1175/1034,
  42980. bottom: 97/1272
  42981. }
  42982. },
  42983. sitting: {
  42984. height: math.unit(3.725, "feet"),
  42985. weight: math.unit(200, "lb"),
  42986. name: "Sitting",
  42987. image: {
  42988. source: "./media/characters/blizzard/sitting.svg",
  42989. extra: 581/485,
  42990. bottom: 90/671
  42991. }
  42992. },
  42993. frontWizard: {
  42994. height: math.unit(7.9, "feet"),
  42995. weight: math.unit(200, "lb"),
  42996. name: "Front (Wizard)",
  42997. image: {
  42998. source: "./media/characters/blizzard/front-wizard.svg"
  42999. }
  43000. },
  43001. backWizard: {
  43002. height: math.unit(7.9, "feet"),
  43003. weight: math.unit(200, "lb"),
  43004. name: "Back (Wizard)",
  43005. image: {
  43006. source: "./media/characters/blizzard/back-wizard.svg"
  43007. }
  43008. },
  43009. frontNsfw: {
  43010. height: math.unit(6, "feet"),
  43011. weight: math.unit(200, "lb"),
  43012. name: "Front (NSFW)",
  43013. image: {
  43014. source: "./media/characters/blizzard/front-nsfw.svg",
  43015. extra: 1136/990,
  43016. bottom: 136/1272
  43017. }
  43018. },
  43019. backNsfw: {
  43020. height: math.unit(6, "feet"),
  43021. weight: math.unit(200, "lb"),
  43022. name: "Back (NSFW)",
  43023. image: {
  43024. source: "./media/characters/blizzard/back-nsfw.svg",
  43025. extra: 1175/1034,
  43026. bottom: 97/1272
  43027. }
  43028. },
  43029. sittingNsfw: {
  43030. height: math.unit(3.725, "feet"),
  43031. weight: math.unit(200, "lb"),
  43032. name: "Sitting (NSFW)",
  43033. image: {
  43034. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43035. extra: 581/485,
  43036. bottom: 90/671
  43037. }
  43038. },
  43039. wizardFrontNsfw: {
  43040. height: math.unit(7.9, "feet"),
  43041. weight: math.unit(200, "lb"),
  43042. name: "Wizard (Front, NSFW)",
  43043. image: {
  43044. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43045. }
  43046. },
  43047. },
  43048. [
  43049. {
  43050. name: "Normal",
  43051. height: math.unit(6, "feet"),
  43052. default: true
  43053. },
  43054. ]
  43055. ))
  43056. characterMakers.push(() => makeCharacter(
  43057. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43058. {
  43059. front: {
  43060. height: math.unit(5 + 2/12, "feet"),
  43061. name: "Front",
  43062. image: {
  43063. source: "./media/characters/lumi/front.svg",
  43064. extra: 1328/1268,
  43065. bottom: 103/1431
  43066. }
  43067. },
  43068. back: {
  43069. height: math.unit(5 + 2/12, "feet"),
  43070. name: "Back",
  43071. image: {
  43072. source: "./media/characters/lumi/back.svg",
  43073. extra: 1381/1327,
  43074. bottom: 43/1424
  43075. }
  43076. },
  43077. },
  43078. [
  43079. {
  43080. name: "Normal",
  43081. height: math.unit(5 + 2/12, "feet"),
  43082. default: true
  43083. },
  43084. ]
  43085. ))
  43086. characterMakers.push(() => makeCharacter(
  43087. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43088. {
  43089. front: {
  43090. height: math.unit(5 + 9/12, "feet"),
  43091. name: "Front",
  43092. image: {
  43093. source: "./media/characters/aliya-cotton/front.svg",
  43094. extra: 577/564,
  43095. bottom: 29/606
  43096. }
  43097. },
  43098. },
  43099. [
  43100. {
  43101. name: "Normal",
  43102. height: math.unit(5 + 9/12, "feet"),
  43103. default: true
  43104. },
  43105. ]
  43106. ))
  43107. characterMakers.push(() => makeCharacter(
  43108. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43109. {
  43110. front: {
  43111. height: math.unit(2.7, "meters"),
  43112. weight: math.unit(25000, "lb"),
  43113. name: "Front",
  43114. image: {
  43115. source: "./media/characters/noah-luxray/front.svg",
  43116. extra: 1644/825,
  43117. bottom: 339/1983
  43118. }
  43119. },
  43120. side: {
  43121. height: math.unit(2.97, "meters"),
  43122. weight: math.unit(25000, "lb"),
  43123. name: "Side",
  43124. image: {
  43125. source: "./media/characters/noah-luxray/side.svg",
  43126. extra: 1319/650,
  43127. bottom: 163/1482
  43128. }
  43129. },
  43130. dick: {
  43131. height: math.unit(7.4, "feet"),
  43132. weight: math.unit(2500, "lb"),
  43133. name: "Dick",
  43134. image: {
  43135. source: "./media/characters/noah-luxray/dick.svg"
  43136. }
  43137. },
  43138. dickAlt: {
  43139. height: math.unit(10.83, "feet"),
  43140. weight: math.unit(2500, "lb"),
  43141. name: "Dick-alt",
  43142. image: {
  43143. source: "./media/characters/noah-luxray/dick-alt.svg"
  43144. }
  43145. },
  43146. },
  43147. [
  43148. {
  43149. name: "BIG",
  43150. height: math.unit(2.7, "meters"),
  43151. default: true
  43152. },
  43153. ]
  43154. ))
  43155. characterMakers.push(() => makeCharacter(
  43156. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43157. {
  43158. standing: {
  43159. height: math.unit(183, "cm"),
  43160. weight: math.unit(68, "kg"),
  43161. name: "Standing",
  43162. image: {
  43163. source: "./media/characters/arion/standing.svg",
  43164. extra: 1869/1807,
  43165. bottom: 93/1962
  43166. }
  43167. },
  43168. reclining: {
  43169. height: math.unit(70.5, "cm"),
  43170. weight: math.unit(68, "lb"),
  43171. name: "Reclining",
  43172. image: {
  43173. source: "./media/characters/arion/reclining.svg",
  43174. extra: 937/870,
  43175. bottom: 63/1000
  43176. }
  43177. },
  43178. },
  43179. [
  43180. {
  43181. name: "Colossus Size, Low",
  43182. height: math.unit(33, "meters"),
  43183. default: true
  43184. },
  43185. {
  43186. name: "Colossus Size, Mid",
  43187. height: math.unit(52, "meters")
  43188. },
  43189. {
  43190. name: "Colossus Size, High",
  43191. height: math.unit(60, "meters")
  43192. },
  43193. {
  43194. name: "Titan Size, Low",
  43195. height: math.unit(91, "meters"),
  43196. },
  43197. {
  43198. name: "Titan Size, Mid",
  43199. height: math.unit(122, "meters")
  43200. },
  43201. {
  43202. name: "Titan Size, High",
  43203. height: math.unit(162, "meters")
  43204. },
  43205. ]
  43206. ))
  43207. characterMakers.push(() => makeCharacter(
  43208. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43209. {
  43210. front: {
  43211. height: math.unit(53, "meters"),
  43212. name: "Front",
  43213. image: {
  43214. source: "./media/characters/stellar-marbey/front.svg",
  43215. extra: 1913/1805,
  43216. bottom: 92/2005
  43217. }
  43218. },
  43219. back: {
  43220. height: math.unit(53, "meters"),
  43221. name: "Back",
  43222. image: {
  43223. source: "./media/characters/stellar-marbey/back.svg",
  43224. extra: 1960/1851,
  43225. bottom: 28/1988
  43226. }
  43227. },
  43228. mouth: {
  43229. height: math.unit(3.5, "meters"),
  43230. name: "Mouth",
  43231. image: {
  43232. source: "./media/characters/stellar-marbey/mouth.svg"
  43233. }
  43234. },
  43235. },
  43236. [
  43237. {
  43238. name: "Macro",
  43239. height: math.unit(53, "meters"),
  43240. default: true
  43241. },
  43242. ]
  43243. ))
  43244. characterMakers.push(() => makeCharacter(
  43245. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43246. {
  43247. front: {
  43248. height: math.unit(8 + 1/12, "feet"),
  43249. weight: math.unit(233, "lb"),
  43250. name: "Front",
  43251. image: {
  43252. source: "./media/characters/matsu/front.svg",
  43253. extra: 832/772,
  43254. bottom: 40/872
  43255. }
  43256. },
  43257. back: {
  43258. height: math.unit(8 + 1/12, "feet"),
  43259. weight: math.unit(233, "lb"),
  43260. name: "Back",
  43261. image: {
  43262. source: "./media/characters/matsu/back.svg",
  43263. extra: 839/780,
  43264. bottom: 47/886
  43265. }
  43266. },
  43267. },
  43268. [
  43269. {
  43270. name: "Normal",
  43271. height: math.unit(8 + 1/12, "feet"),
  43272. default: true
  43273. },
  43274. ]
  43275. ))
  43276. characterMakers.push(() => makeCharacter(
  43277. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43278. {
  43279. front: {
  43280. height: math.unit(4, "feet"),
  43281. weight: math.unit(148, "lb"),
  43282. name: "Front",
  43283. image: {
  43284. source: "./media/characters/thiz/front.svg",
  43285. extra: 1913/1748,
  43286. bottom: 62/1975
  43287. }
  43288. },
  43289. },
  43290. [
  43291. {
  43292. name: "Normal",
  43293. height: math.unit(4, "feet"),
  43294. default: true
  43295. },
  43296. ]
  43297. ))
  43298. characterMakers.push(() => makeCharacter(
  43299. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43300. {
  43301. front: {
  43302. height: math.unit(7 + 6/12, "feet"),
  43303. weight: math.unit(267, "lb"),
  43304. name: "Front",
  43305. image: {
  43306. source: "./media/characters/marcel/front.svg",
  43307. extra: 1221/1096,
  43308. bottom: 76/1297
  43309. }
  43310. },
  43311. },
  43312. [
  43313. {
  43314. name: "Normal",
  43315. height: math.unit(7 + 6/12, "feet"),
  43316. default: true
  43317. },
  43318. ]
  43319. ))
  43320. characterMakers.push(() => makeCharacter(
  43321. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43322. {
  43323. side: {
  43324. height: math.unit(42, "meters"),
  43325. name: "Side",
  43326. image: {
  43327. source: "./media/characters/flake/side.svg",
  43328. extra: 1525/1306,
  43329. bottom: 209/1734
  43330. }
  43331. },
  43332. },
  43333. [
  43334. {
  43335. name: "Normal",
  43336. height: math.unit(42, "meters"),
  43337. default: true
  43338. },
  43339. ]
  43340. ))
  43341. characterMakers.push(() => makeCharacter(
  43342. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43343. {
  43344. dressed: {
  43345. height: math.unit(6 + 4/12, "feet"),
  43346. weight: math.unit(520, "lb"),
  43347. name: "Dressed",
  43348. image: {
  43349. source: "./media/characters/someonne/dressed.svg",
  43350. extra: 1020/1010,
  43351. bottom: 178/1198
  43352. }
  43353. },
  43354. undressed: {
  43355. height: math.unit(6 + 4/12, "feet"),
  43356. weight: math.unit(520, "lb"),
  43357. name: "Undressed",
  43358. image: {
  43359. source: "./media/characters/someonne/undressed.svg",
  43360. extra: 1019/1014,
  43361. bottom: 169/1188
  43362. }
  43363. },
  43364. },
  43365. [
  43366. {
  43367. name: "Normal",
  43368. height: math.unit(6 + 4/12, "feet"),
  43369. default: true
  43370. },
  43371. ]
  43372. ))
  43373. characterMakers.push(() => makeCharacter(
  43374. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43375. {
  43376. front: {
  43377. height: math.unit(3, "feet"),
  43378. weight: math.unit(30, "lb"),
  43379. name: "Front",
  43380. image: {
  43381. source: "./media/characters/till/front.svg",
  43382. extra: 892/823,
  43383. bottom: 55/947
  43384. }
  43385. },
  43386. },
  43387. [
  43388. {
  43389. name: "Normal",
  43390. height: math.unit(3, "feet"),
  43391. default: true
  43392. },
  43393. ]
  43394. ))
  43395. characterMakers.push(() => makeCharacter(
  43396. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43397. {
  43398. front: {
  43399. height: math.unit(9 + 8/12, "feet"),
  43400. weight: math.unit(800, "lb"),
  43401. name: "Front",
  43402. image: {
  43403. source: "./media/characters/sydney-heki/front.svg",
  43404. extra: 1360/1300,
  43405. bottom: 22/1382
  43406. }
  43407. },
  43408. back: {
  43409. height: math.unit(9 + 8/12, "feet"),
  43410. weight: math.unit(800, "lb"),
  43411. name: "Back",
  43412. image: {
  43413. source: "./media/characters/sydney-heki/back.svg",
  43414. extra: 1356/1293,
  43415. bottom: 12/1368
  43416. }
  43417. },
  43418. frontDressed: {
  43419. height: math.unit(9 + 8/12, "feet"),
  43420. weight: math.unit(800, "lb"),
  43421. name: "Front-dressed",
  43422. image: {
  43423. source: "./media/characters/sydney-heki/front-dressed.svg",
  43424. extra: 1360/1300,
  43425. bottom: 22/1382
  43426. }
  43427. },
  43428. },
  43429. [
  43430. {
  43431. name: "Normal",
  43432. height: math.unit(9 + 8/12, "feet"),
  43433. default: true
  43434. },
  43435. {
  43436. name: "Macro",
  43437. height: math.unit(500, "feet")
  43438. },
  43439. {
  43440. name: "Megamacro",
  43441. height: math.unit(3.6, "miles")
  43442. },
  43443. ]
  43444. ))
  43445. characterMakers.push(() => makeCharacter(
  43446. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43447. {
  43448. front: {
  43449. height: math.unit(200, "cm"),
  43450. weight: math.unit(250, "lb"),
  43451. name: "Front",
  43452. image: {
  43453. source: "./media/characters/fowler-karlsson/front.svg",
  43454. extra: 897/845,
  43455. bottom: 123/1020
  43456. }
  43457. },
  43458. back: {
  43459. height: math.unit(200, "cm"),
  43460. weight: math.unit(250, "lb"),
  43461. name: "Back",
  43462. image: {
  43463. source: "./media/characters/fowler-karlsson/back.svg",
  43464. extra: 999/944,
  43465. bottom: 26/1025
  43466. }
  43467. },
  43468. dick: {
  43469. height: math.unit(1.92, "feet"),
  43470. weight: math.unit(150, "lb"),
  43471. name: "Dick",
  43472. image: {
  43473. source: "./media/characters/fowler-karlsson/dick.svg"
  43474. }
  43475. },
  43476. },
  43477. [
  43478. {
  43479. name: "Normal",
  43480. height: math.unit(200, "cm"),
  43481. default: true
  43482. },
  43483. {
  43484. name: "Smaller Macro",
  43485. height: math.unit(90, "m")
  43486. },
  43487. {
  43488. name: "Macro",
  43489. height: math.unit(150, "m")
  43490. },
  43491. {
  43492. name: "Bigger Macro",
  43493. height: math.unit(300, "m")
  43494. },
  43495. ]
  43496. ))
  43497. characterMakers.push(() => makeCharacter(
  43498. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43499. {
  43500. side: {
  43501. height: math.unit(8 + 2/12, "feet"),
  43502. weight: math.unit(1, "tonne"),
  43503. name: "Side",
  43504. image: {
  43505. source: "./media/characters/rylide/side.svg",
  43506. extra: 1318/1034,
  43507. bottom: 106/1424
  43508. }
  43509. },
  43510. sitting: {
  43511. height: math.unit(303, "cm"),
  43512. weight: math.unit(1, "tonne"),
  43513. name: "Sitting",
  43514. image: {
  43515. source: "./media/characters/rylide/sitting.svg",
  43516. extra: 1303/1103,
  43517. bottom: 36/1339
  43518. }
  43519. },
  43520. },
  43521. [
  43522. {
  43523. name: "Normal",
  43524. height: math.unit(8 + 2/12, "feet"),
  43525. default: true
  43526. },
  43527. ]
  43528. ))
  43529. characterMakers.push(() => makeCharacter(
  43530. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43531. {
  43532. front: {
  43533. height: math.unit(5 + 10/12, "feet"),
  43534. weight: math.unit(160, "lb"),
  43535. name: "Front",
  43536. image: {
  43537. source: "./media/characters/pudask/front.svg",
  43538. extra: 1616/1590,
  43539. bottom: 161/1777
  43540. }
  43541. },
  43542. },
  43543. [
  43544. {
  43545. name: "Ferret Height",
  43546. height: math.unit(2 + 5/12, "feet")
  43547. },
  43548. {
  43549. name: "Canon Height",
  43550. height: math.unit(5 + 10/12, "feet"),
  43551. default: true
  43552. },
  43553. ]
  43554. ))
  43555. characterMakers.push(() => makeCharacter(
  43556. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43557. {
  43558. front: {
  43559. height: math.unit(3 + 6/12, "feet"),
  43560. weight: math.unit(60, "lb"),
  43561. name: "Front",
  43562. image: {
  43563. source: "./media/characters/ramita/front.svg",
  43564. extra: 1402/1232,
  43565. bottom: 62/1464
  43566. }
  43567. },
  43568. dressed: {
  43569. height: math.unit(3 + 6/12, "feet"),
  43570. weight: math.unit(60, "lb"),
  43571. name: "Dressed",
  43572. image: {
  43573. source: "./media/characters/ramita/dressed.svg",
  43574. extra: 1534/1249,
  43575. bottom: 50/1584
  43576. }
  43577. },
  43578. },
  43579. [
  43580. {
  43581. name: "Normal",
  43582. height: math.unit(3 + 6/12, "feet"),
  43583. default: true
  43584. },
  43585. ]
  43586. ))
  43587. characterMakers.push(() => makeCharacter(
  43588. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43589. {
  43590. front: {
  43591. height: math.unit(8, "feet"),
  43592. name: "Front",
  43593. image: {
  43594. source: "./media/characters/ark/front.svg",
  43595. extra: 772/693,
  43596. bottom: 45/817
  43597. }
  43598. },
  43599. },
  43600. [
  43601. {
  43602. name: "Normal",
  43603. height: math.unit(8, "feet"),
  43604. default: true
  43605. },
  43606. ]
  43607. ))
  43608. characterMakers.push(() => makeCharacter(
  43609. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43610. {
  43611. front: {
  43612. height: math.unit(6, "feet"),
  43613. weight: math.unit(250, "lb"),
  43614. volume: math.unit(5/8, "gallons"),
  43615. name: "Front",
  43616. image: {
  43617. source: "./media/characters/ludwig-horn/front.svg",
  43618. extra: 1782/1635,
  43619. bottom: 96/1878
  43620. }
  43621. },
  43622. back: {
  43623. height: math.unit(6, "feet"),
  43624. weight: math.unit(250, "lb"),
  43625. volume: math.unit(5/8, "gallons"),
  43626. name: "Back",
  43627. image: {
  43628. source: "./media/characters/ludwig-horn/back.svg",
  43629. extra: 1874/1729,
  43630. bottom: 27/1901
  43631. }
  43632. },
  43633. dick: {
  43634. height: math.unit(1.05, "feet"),
  43635. weight: math.unit(15, "lb"),
  43636. volume: math.unit(5/8, "gallons"),
  43637. name: "Dick",
  43638. image: {
  43639. source: "./media/characters/ludwig-horn/dick.svg"
  43640. }
  43641. },
  43642. },
  43643. [
  43644. {
  43645. name: "Small",
  43646. height: math.unit(6, "feet")
  43647. },
  43648. {
  43649. name: "Typical",
  43650. height: math.unit(12, "feet"),
  43651. default: true
  43652. },
  43653. {
  43654. name: "Building",
  43655. height: math.unit(80, "feet")
  43656. },
  43657. {
  43658. name: "Town",
  43659. height: math.unit(800, "feet")
  43660. },
  43661. {
  43662. name: "Kingdom",
  43663. height: math.unit(80000, "feet")
  43664. },
  43665. {
  43666. name: "Planet",
  43667. height: math.unit(8000000, "feet")
  43668. },
  43669. {
  43670. name: "Universe",
  43671. height: math.unit(8000000000, "feet")
  43672. },
  43673. {
  43674. name: "Transcended",
  43675. height: math.unit(8e27, "feet")
  43676. },
  43677. ]
  43678. ))
  43679. characterMakers.push(() => makeCharacter(
  43680. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43681. {
  43682. front: {
  43683. height: math.unit(5, "feet"),
  43684. weight: math.unit(50, "kg"),
  43685. name: "Front",
  43686. image: {
  43687. source: "./media/characters/biot-avery/front.svg",
  43688. extra: 1295/1232,
  43689. bottom: 86/1381
  43690. }
  43691. },
  43692. },
  43693. [
  43694. {
  43695. name: "Normal",
  43696. height: math.unit(5, "feet"),
  43697. default: true
  43698. },
  43699. ]
  43700. ))
  43701. characterMakers.push(() => makeCharacter(
  43702. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43703. {
  43704. front: {
  43705. height: math.unit(6, "feet"),
  43706. name: "Front",
  43707. image: {
  43708. source: "./media/characters/kitsune-kiro/front.svg",
  43709. extra: 1270/1158,
  43710. bottom: 42/1312
  43711. }
  43712. },
  43713. frontAlt: {
  43714. height: math.unit(6, "feet"),
  43715. name: "Front-alt",
  43716. image: {
  43717. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43718. extra: 1130/1081,
  43719. bottom: 36/1166
  43720. }
  43721. },
  43722. },
  43723. [
  43724. {
  43725. name: "Smol",
  43726. height: math.unit(3, "feet")
  43727. },
  43728. {
  43729. name: "Normal",
  43730. height: math.unit(6, "feet"),
  43731. default: true
  43732. },
  43733. ]
  43734. ))
  43735. characterMakers.push(() => makeCharacter(
  43736. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43737. {
  43738. front: {
  43739. height: math.unit(6, "feet"),
  43740. weight: math.unit(125, "lb"),
  43741. name: "Front",
  43742. image: {
  43743. source: "./media/characters/jack-thatcher/front.svg",
  43744. extra: 1474/1370,
  43745. bottom: 26/1500
  43746. }
  43747. },
  43748. back: {
  43749. height: math.unit(6, "feet"),
  43750. weight: math.unit(125, "lb"),
  43751. name: "Back",
  43752. image: {
  43753. source: "./media/characters/jack-thatcher/back.svg",
  43754. extra: 1489/1384,
  43755. bottom: 18/1507
  43756. }
  43757. },
  43758. },
  43759. [
  43760. {
  43761. name: "Normal",
  43762. height: math.unit(6, "feet"),
  43763. default: true
  43764. },
  43765. {
  43766. name: "Macro",
  43767. height: math.unit(75, "feet")
  43768. },
  43769. {
  43770. name: "Macro-er",
  43771. height: math.unit(250, "feet")
  43772. },
  43773. ]
  43774. ))
  43775. characterMakers.push(() => makeCharacter(
  43776. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43777. {
  43778. front: {
  43779. height: math.unit(7, "feet"),
  43780. weight: math.unit(110, "kg"),
  43781. name: "Front",
  43782. image: {
  43783. source: "./media/characters/max-hyper/front.svg",
  43784. extra: 1969/1881,
  43785. bottom: 49/2018
  43786. }
  43787. },
  43788. },
  43789. [
  43790. {
  43791. name: "Normal",
  43792. height: math.unit(7, "feet"),
  43793. default: true
  43794. },
  43795. ]
  43796. ))
  43797. characterMakers.push(() => makeCharacter(
  43798. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43799. {
  43800. front: {
  43801. height: math.unit(5 + 5/12, "feet"),
  43802. weight: math.unit(160, "lb"),
  43803. name: "Front",
  43804. image: {
  43805. source: "./media/characters/spook/front.svg",
  43806. extra: 794/791,
  43807. bottom: 54/848
  43808. }
  43809. },
  43810. back: {
  43811. height: math.unit(5 + 5/12, "feet"),
  43812. weight: math.unit(160, "lb"),
  43813. name: "Back",
  43814. image: {
  43815. source: "./media/characters/spook/back.svg",
  43816. extra: 812/798,
  43817. bottom: 32/844
  43818. }
  43819. },
  43820. },
  43821. [
  43822. {
  43823. name: "Normal",
  43824. height: math.unit(5 + 5/12, "feet"),
  43825. default: true
  43826. },
  43827. ]
  43828. ))
  43829. characterMakers.push(() => makeCharacter(
  43830. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43831. {
  43832. front: {
  43833. height: math.unit(18, "feet"),
  43834. name: "Front",
  43835. image: {
  43836. source: "./media/characters/xeaduulix/front.svg",
  43837. extra: 1380/1166,
  43838. bottom: 110/1490
  43839. }
  43840. },
  43841. back: {
  43842. height: math.unit(18, "feet"),
  43843. name: "Back",
  43844. image: {
  43845. source: "./media/characters/xeaduulix/back.svg",
  43846. extra: 1592/1170,
  43847. bottom: 128/1720
  43848. }
  43849. },
  43850. frontNsfw: {
  43851. height: math.unit(18, "feet"),
  43852. name: "Front (NSFW)",
  43853. image: {
  43854. source: "./media/characters/xeaduulix/front-nsfw.svg",
  43855. extra: 1380/1166,
  43856. bottom: 110/1490
  43857. }
  43858. },
  43859. backNsfw: {
  43860. height: math.unit(18, "feet"),
  43861. name: "Back (NSFW)",
  43862. image: {
  43863. source: "./media/characters/xeaduulix/back-nsfw.svg",
  43864. extra: 1592/1170,
  43865. bottom: 128/1720
  43866. }
  43867. },
  43868. },
  43869. [
  43870. {
  43871. name: "Normal",
  43872. height: math.unit(18, "feet"),
  43873. default: true
  43874. },
  43875. ]
  43876. ))
  43877. characterMakers.push(() => makeCharacter(
  43878. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  43879. {
  43880. spreadWings: {
  43881. height: math.unit(20, "feet"),
  43882. name: "Spread Wings",
  43883. image: {
  43884. source: "./media/characters/fledge/spread-wings.svg",
  43885. extra: 693/635,
  43886. bottom: 26/719
  43887. }
  43888. },
  43889. front: {
  43890. height: math.unit(20, "feet"),
  43891. name: "Front",
  43892. image: {
  43893. source: "./media/characters/fledge/front.svg",
  43894. extra: 684/637,
  43895. bottom: 18/702
  43896. }
  43897. },
  43898. frontAlt: {
  43899. height: math.unit(20, "feet"),
  43900. name: "Front (Alt)",
  43901. image: {
  43902. source: "./media/characters/fledge/front-alt.svg",
  43903. extra: 708/664,
  43904. bottom: 13/721
  43905. }
  43906. },
  43907. back: {
  43908. height: math.unit(20, "feet"),
  43909. name: "Back",
  43910. image: {
  43911. source: "./media/characters/fledge/back.svg",
  43912. extra: 718/634,
  43913. bottom: 22/740
  43914. }
  43915. },
  43916. head: {
  43917. height: math.unit(5.55, "feet"),
  43918. name: "Head",
  43919. image: {
  43920. source: "./media/characters/fledge/head.svg"
  43921. }
  43922. },
  43923. headAlt: {
  43924. height: math.unit(5.1, "feet"),
  43925. name: "Head (Alt)",
  43926. image: {
  43927. source: "./media/characters/fledge/head-alt.svg"
  43928. }
  43929. },
  43930. },
  43931. [
  43932. {
  43933. name: "Small",
  43934. height: math.unit(6 + 2/12, "feet")
  43935. },
  43936. {
  43937. name: "Big",
  43938. height: math.unit(20, "feet"),
  43939. default: true
  43940. },
  43941. {
  43942. name: "Giant",
  43943. height: math.unit(100, "feet")
  43944. },
  43945. {
  43946. name: "Macro",
  43947. height: math.unit(200, "feet")
  43948. },
  43949. ]
  43950. ))
  43951. characterMakers.push(() => makeCharacter(
  43952. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  43953. {
  43954. front: {
  43955. height: math.unit(1, "meter"),
  43956. name: "Front",
  43957. image: {
  43958. source: "./media/characters/atlas-morenai/front.svg",
  43959. extra: 1275/1043,
  43960. bottom: 19/1294
  43961. }
  43962. },
  43963. back: {
  43964. height: math.unit(1, "meter"),
  43965. name: "Back",
  43966. image: {
  43967. source: "./media/characters/atlas-morenai/back.svg",
  43968. extra: 1141/1001,
  43969. bottom: 25/1166
  43970. }
  43971. },
  43972. },
  43973. [
  43974. {
  43975. name: "Normal",
  43976. height: math.unit(1, "meter"),
  43977. default: true
  43978. },
  43979. {
  43980. name: "Magic-Infused",
  43981. height: math.unit(5, "meters")
  43982. },
  43983. ]
  43984. ))
  43985. characterMakers.push(() => makeCharacter(
  43986. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  43987. {
  43988. front: {
  43989. height: math.unit(5, "meters"),
  43990. name: "Front",
  43991. image: {
  43992. source: "./media/characters/cintia/front.svg",
  43993. extra: 1312/1228,
  43994. bottom: 38/1350
  43995. }
  43996. },
  43997. back: {
  43998. height: math.unit(5, "meters"),
  43999. name: "Back",
  44000. image: {
  44001. source: "./media/characters/cintia/back.svg",
  44002. extra: 1260/1166,
  44003. bottom: 98/1358
  44004. }
  44005. },
  44006. frontDick: {
  44007. height: math.unit(5, "meters"),
  44008. name: "Front (Dick)",
  44009. image: {
  44010. source: "./media/characters/cintia/front-dick.svg",
  44011. extra: 1312/1228,
  44012. bottom: 38/1350
  44013. }
  44014. },
  44015. backDick: {
  44016. height: math.unit(5, "meters"),
  44017. name: "Back (Dick)",
  44018. image: {
  44019. source: "./media/characters/cintia/back-dick.svg",
  44020. extra: 1260/1166,
  44021. bottom: 98/1358
  44022. }
  44023. },
  44024. bust: {
  44025. height: math.unit(1.97, "meters"),
  44026. name: "Bust",
  44027. image: {
  44028. source: "./media/characters/cintia/bust.svg",
  44029. extra: 617/565,
  44030. bottom: 0/617
  44031. }
  44032. },
  44033. },
  44034. [
  44035. {
  44036. name: "Normal",
  44037. height: math.unit(5, "meters"),
  44038. default: true
  44039. },
  44040. ]
  44041. ))
  44042. characterMakers.push(() => makeCharacter(
  44043. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44044. {
  44045. side: {
  44046. height: math.unit(100, "feet"),
  44047. name: "Side",
  44048. image: {
  44049. source: "./media/characters/denora/side.svg",
  44050. extra: 875/803,
  44051. bottom: 9/884
  44052. }
  44053. },
  44054. },
  44055. [
  44056. {
  44057. name: "Standard",
  44058. height: math.unit(100, "feet"),
  44059. default: true
  44060. },
  44061. {
  44062. name: "Grand",
  44063. height: math.unit(1000, "feet")
  44064. },
  44065. {
  44066. name: "Conquering",
  44067. height: math.unit(10000, "feet")
  44068. },
  44069. ]
  44070. ))
  44071. characterMakers.push(() => makeCharacter(
  44072. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44073. {
  44074. dressed: {
  44075. height: math.unit(8 + 5/12, "feet"),
  44076. weight: math.unit(700, "lb"),
  44077. name: "Dressed",
  44078. image: {
  44079. source: "./media/characters/kiva/dressed.svg",
  44080. extra: 1102/1055,
  44081. bottom: 60/1162
  44082. }
  44083. },
  44084. nude: {
  44085. height: math.unit(8 + 5/12, "feet"),
  44086. weight: math.unit(700, "lb"),
  44087. name: "Nude",
  44088. image: {
  44089. source: "./media/characters/kiva/nude.svg",
  44090. extra: 1102/1055,
  44091. bottom: 60/1162
  44092. }
  44093. },
  44094. },
  44095. [
  44096. {
  44097. name: "Base Height",
  44098. height: math.unit(8 + 5/12, "feet"),
  44099. default: true
  44100. },
  44101. {
  44102. name: "Macro",
  44103. height: math.unit(100, "feet")
  44104. },
  44105. {
  44106. name: "Max",
  44107. height: math.unit(3280, "feet")
  44108. },
  44109. ]
  44110. ))
  44111. characterMakers.push(() => makeCharacter(
  44112. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44113. {
  44114. front: {
  44115. height: math.unit(6 + 8/12, "feet"),
  44116. weight: math.unit(250, "lb"),
  44117. name: "Front",
  44118. image: {
  44119. source: "./media/characters/ztragon/front.svg",
  44120. extra: 1825/1684,
  44121. bottom: 98/1923
  44122. }
  44123. },
  44124. },
  44125. [
  44126. {
  44127. name: "Normal",
  44128. height: math.unit(6 + 8/12, "feet"),
  44129. default: true
  44130. },
  44131. {
  44132. name: "Macro",
  44133. height: math.unit(80, "feet")
  44134. },
  44135. ]
  44136. ))
  44137. characterMakers.push(() => makeCharacter(
  44138. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44139. {
  44140. front: {
  44141. height: math.unit(10.4, "feet"),
  44142. weight: math.unit(2, "tons"),
  44143. name: "Front",
  44144. image: {
  44145. source: "./media/characters/yesenia/front.svg",
  44146. extra: 1479/1474,
  44147. bottom: 233/1712
  44148. }
  44149. },
  44150. },
  44151. [
  44152. {
  44153. name: "Normal",
  44154. height: math.unit(10.4, "feet"),
  44155. default: true
  44156. },
  44157. ]
  44158. ))
  44159. characterMakers.push(() => makeCharacter(
  44160. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44161. {
  44162. normal: {
  44163. height: math.unit(6 + 1/12, "feet"),
  44164. weight: math.unit(180, "lb"),
  44165. name: "Normal",
  44166. image: {
  44167. source: "./media/characters/leanne-lycheborne/normal.svg",
  44168. extra: 1748/1660,
  44169. bottom: 98/1846
  44170. }
  44171. },
  44172. were: {
  44173. height: math.unit(12, "feet"),
  44174. weight: math.unit(1600, "lb"),
  44175. name: "Were",
  44176. image: {
  44177. source: "./media/characters/leanne-lycheborne/were.svg",
  44178. extra: 1485/1432,
  44179. bottom: 66/1551
  44180. }
  44181. },
  44182. },
  44183. [
  44184. {
  44185. name: "Normal",
  44186. height: math.unit(6 + 1/12, "feet"),
  44187. default: true
  44188. },
  44189. ]
  44190. ))
  44191. characterMakers.push(() => makeCharacter(
  44192. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44193. {
  44194. side: {
  44195. height: math.unit(13, "feet"),
  44196. name: "Side",
  44197. image: {
  44198. source: "./media/characters/kira-tyler/side.svg",
  44199. extra: 693/393,
  44200. bottom: 58/751
  44201. }
  44202. },
  44203. },
  44204. [
  44205. {
  44206. name: "Normal",
  44207. height: math.unit(13, "feet"),
  44208. default: true
  44209. },
  44210. ]
  44211. ))
  44212. characterMakers.push(() => makeCharacter(
  44213. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44214. {
  44215. front: {
  44216. height: math.unit(10.3, "feet"),
  44217. weight: math.unit(150, "lb"),
  44218. name: "Front",
  44219. image: {
  44220. source: "./media/characters/blaze/front.svg",
  44221. extra: 1378/1286,
  44222. bottom: 172/1550
  44223. }
  44224. },
  44225. },
  44226. [
  44227. {
  44228. name: "Normal",
  44229. height: math.unit(10.3, "feet"),
  44230. default: true
  44231. },
  44232. ]
  44233. ))
  44234. characterMakers.push(() => makeCharacter(
  44235. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44236. {
  44237. side: {
  44238. height: math.unit(2, "meters"),
  44239. weight: math.unit(400, "kg"),
  44240. name: "Side",
  44241. image: {
  44242. source: "./media/characters/anu/side.svg",
  44243. extra: 506/394,
  44244. bottom: 18/524
  44245. }
  44246. },
  44247. },
  44248. [
  44249. {
  44250. name: "Humanoid",
  44251. height: math.unit(2, "meters")
  44252. },
  44253. {
  44254. name: "Normal",
  44255. height: math.unit(5, "meters"),
  44256. default: true
  44257. },
  44258. ]
  44259. ))
  44260. characterMakers.push(() => makeCharacter(
  44261. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44262. {
  44263. front: {
  44264. height: math.unit(5 + 5/12, "feet"),
  44265. weight: math.unit(170, "lb"),
  44266. name: "Front",
  44267. image: {
  44268. source: "./media/characters/synx-the-lynx/front.svg",
  44269. extra: 1893/1745,
  44270. bottom: 17/1910
  44271. }
  44272. },
  44273. side: {
  44274. height: math.unit(5 + 5/12, "feet"),
  44275. weight: math.unit(170, "lb"),
  44276. name: "Side",
  44277. image: {
  44278. source: "./media/characters/synx-the-lynx/side.svg",
  44279. extra: 1884/1740,
  44280. bottom: 39/1923
  44281. }
  44282. },
  44283. back: {
  44284. height: math.unit(5 + 5/12, "feet"),
  44285. weight: math.unit(170, "lb"),
  44286. name: "Back",
  44287. image: {
  44288. source: "./media/characters/synx-the-lynx/back.svg",
  44289. extra: 1903/1755,
  44290. bottom: 14/1917
  44291. }
  44292. },
  44293. },
  44294. [
  44295. {
  44296. name: "Normal",
  44297. height: math.unit(5 + 5/12, "feet"),
  44298. default: true
  44299. },
  44300. ]
  44301. ))
  44302. characterMakers.push(() => makeCharacter(
  44303. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44304. {
  44305. back: {
  44306. height: math.unit(15, "feet"),
  44307. name: "Back",
  44308. image: {
  44309. source: "./media/characters/nadezda-fex/back.svg",
  44310. extra: 1695/1481,
  44311. bottom: 25/1720
  44312. }
  44313. },
  44314. },
  44315. [
  44316. {
  44317. name: "Normal",
  44318. height: math.unit(15, "feet"),
  44319. default: true
  44320. },
  44321. {
  44322. name: "Macro",
  44323. height: math.unit(2.5, "miles")
  44324. },
  44325. {
  44326. name: "Goddess",
  44327. height: math.unit(2, "multiverses")
  44328. },
  44329. ]
  44330. ))
  44331. characterMakers.push(() => makeCharacter(
  44332. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44333. {
  44334. front: {
  44335. height: math.unit(216, "cm"),
  44336. name: "Front",
  44337. image: {
  44338. source: "./media/characters/lev/front.svg",
  44339. extra: 1728/1670,
  44340. bottom: 82/1810
  44341. }
  44342. },
  44343. back: {
  44344. height: math.unit(216, "cm"),
  44345. name: "Back",
  44346. image: {
  44347. source: "./media/characters/lev/back.svg",
  44348. extra: 1738/1675,
  44349. bottom: 24/1762
  44350. }
  44351. },
  44352. dressed: {
  44353. height: math.unit(216, "cm"),
  44354. name: "Dressed",
  44355. image: {
  44356. source: "./media/characters/lev/dressed.svg",
  44357. extra: 1397/1351,
  44358. bottom: 73/1470
  44359. }
  44360. },
  44361. head: {
  44362. height: math.unit(0.51, "meter"),
  44363. name: "Head",
  44364. image: {
  44365. source: "./media/characters/lev/head.svg"
  44366. }
  44367. },
  44368. },
  44369. [
  44370. {
  44371. name: "Normal",
  44372. height: math.unit(216, "cm"),
  44373. default: true
  44374. },
  44375. {
  44376. name: "Relatively Macro",
  44377. height: math.unit(80, "meters")
  44378. },
  44379. {
  44380. name: "Megamacro",
  44381. height: math.unit(21600, "meters")
  44382. },
  44383. {
  44384. name: "Megamacro+",
  44385. height: math.unit(64800, "meters")
  44386. },
  44387. ]
  44388. ))
  44389. characterMakers.push(() => makeCharacter(
  44390. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44391. {
  44392. front: {
  44393. height: math.unit(2, "meters"),
  44394. weight: math.unit(80, "kg"),
  44395. name: "Front",
  44396. image: {
  44397. source: "./media/characters/moka/front.svg",
  44398. extra: 1337/1255,
  44399. bottom: 58/1395
  44400. }
  44401. },
  44402. },
  44403. [
  44404. {
  44405. name: "Micro",
  44406. height: math.unit(15, "cm")
  44407. },
  44408. {
  44409. name: "Normal",
  44410. height: math.unit(2, "meters"),
  44411. default: true
  44412. },
  44413. {
  44414. name: "Macro",
  44415. height: math.unit(20, "meters"),
  44416. },
  44417. ]
  44418. ))
  44419. characterMakers.push(() => makeCharacter(
  44420. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44421. {
  44422. front: {
  44423. height: math.unit(9, "feet"),
  44424. weight: math.unit(240, "lb"),
  44425. name: "Front",
  44426. image: {
  44427. source: "./media/characters/kuzco/front.svg",
  44428. extra: 1593/1487,
  44429. bottom: 32/1625
  44430. }
  44431. },
  44432. side: {
  44433. height: math.unit(9, "feet"),
  44434. weight: math.unit(240, "lb"),
  44435. name: "Side",
  44436. image: {
  44437. source: "./media/characters/kuzco/side.svg",
  44438. extra: 1575/1485,
  44439. bottom: 30/1605
  44440. }
  44441. },
  44442. back: {
  44443. height: math.unit(9, "feet"),
  44444. weight: math.unit(240, "lb"),
  44445. name: "Back",
  44446. image: {
  44447. source: "./media/characters/kuzco/back.svg",
  44448. extra: 1603/1514,
  44449. bottom: 14/1617
  44450. }
  44451. },
  44452. },
  44453. [
  44454. {
  44455. name: "Normal",
  44456. height: math.unit(9, "feet"),
  44457. default: true
  44458. },
  44459. ]
  44460. ))
  44461. characterMakers.push(() => makeCharacter(
  44462. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44463. {
  44464. side: {
  44465. height: math.unit(2, "meters"),
  44466. weight: math.unit(300, "kg"),
  44467. name: "Side",
  44468. image: {
  44469. source: "./media/characters/ceruleus/side.svg",
  44470. extra: 1068/974,
  44471. bottom: 126/1194
  44472. }
  44473. },
  44474. },
  44475. [
  44476. {
  44477. name: "Normal",
  44478. height: math.unit(16, "meters"),
  44479. default: true
  44480. },
  44481. ]
  44482. ))
  44483. characterMakers.push(() => makeCharacter(
  44484. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44485. {
  44486. front: {
  44487. height: math.unit(9, "feet"),
  44488. weight: math.unit(500, "kg"),
  44489. name: "Front",
  44490. image: {
  44491. source: "./media/characters/acouya/front.svg",
  44492. extra: 1660/1473,
  44493. bottom: 28/1688
  44494. }
  44495. },
  44496. },
  44497. [
  44498. {
  44499. name: "Normal",
  44500. height: math.unit(9, "feet"),
  44501. default: true
  44502. },
  44503. ]
  44504. ))
  44505. characterMakers.push(() => makeCharacter(
  44506. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44507. {
  44508. front: {
  44509. height: math.unit(5 + 6/12, "feet"),
  44510. weight: math.unit(195, "lb"),
  44511. name: "Front",
  44512. image: {
  44513. source: "./media/characters/vant/front.svg",
  44514. extra: 1396/1320,
  44515. bottom: 20/1416
  44516. }
  44517. },
  44518. back: {
  44519. height: math.unit(5 + 6/12, "feet"),
  44520. weight: math.unit(195, "lb"),
  44521. name: "Back",
  44522. image: {
  44523. source: "./media/characters/vant/back.svg",
  44524. extra: 1396/1320,
  44525. bottom: 20/1416
  44526. }
  44527. },
  44528. maw: {
  44529. height: math.unit(0.75, "feet"),
  44530. name: "Maw",
  44531. image: {
  44532. source: "./media/characters/vant/maw.svg"
  44533. }
  44534. },
  44535. paw: {
  44536. height: math.unit(1.07, "feet"),
  44537. name: "Paw",
  44538. image: {
  44539. source: "./media/characters/vant/paw.svg"
  44540. }
  44541. },
  44542. },
  44543. [
  44544. {
  44545. name: "Micro",
  44546. height: math.unit(0.25, "inches")
  44547. },
  44548. {
  44549. name: "Normal",
  44550. height: math.unit(5 + 6/12, "feet"),
  44551. default: true
  44552. },
  44553. {
  44554. name: "Macro",
  44555. height: math.unit(75, "feet")
  44556. },
  44557. ]
  44558. ))
  44559. characterMakers.push(() => makeCharacter(
  44560. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  44561. {
  44562. front: {
  44563. height: math.unit(30, "meters"),
  44564. weight: math.unit(363, "tons"),
  44565. name: "Front",
  44566. image: {
  44567. source: "./media/characters/ahra/front.svg",
  44568. extra: 1914/1814,
  44569. bottom: 46/1960
  44570. }
  44571. },
  44572. },
  44573. [
  44574. {
  44575. name: "Macro",
  44576. height: math.unit(30, "meters"),
  44577. default: true
  44578. },
  44579. ]
  44580. ))
  44581. characterMakers.push(() => makeCharacter(
  44582. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  44583. {
  44584. undressed: {
  44585. height: math.unit(2, "m"),
  44586. weight: math.unit(250, "kg"),
  44587. name: "Undressed",
  44588. image: {
  44589. source: "./media/characters/coriander/undressed.svg",
  44590. extra: 1757/1606,
  44591. bottom: 107/1864
  44592. }
  44593. },
  44594. dressed: {
  44595. height: math.unit(2, "m"),
  44596. weight: math.unit(250, "kg"),
  44597. name: "Dressed",
  44598. image: {
  44599. source: "./media/characters/coriander/dressed.svg",
  44600. extra: 1757/1606,
  44601. bottom: 107/1864
  44602. }
  44603. },
  44604. },
  44605. [
  44606. {
  44607. name: "Normal",
  44608. height: math.unit(4, "meters"),
  44609. default: true
  44610. },
  44611. {
  44612. name: "XL",
  44613. height: math.unit(6, "meters")
  44614. },
  44615. {
  44616. name: "XXL",
  44617. height: math.unit(8, "meters")
  44618. },
  44619. ]
  44620. ))
  44621. characterMakers.push(() => makeCharacter(
  44622. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  44623. {
  44624. front: {
  44625. height: math.unit(6, "feet"),
  44626. name: "Front",
  44627. image: {
  44628. source: "./media/characters/syrinx/front.svg",
  44629. extra: 1557/1259,
  44630. bottom: 171/1728
  44631. }
  44632. },
  44633. },
  44634. [
  44635. {
  44636. name: "Normal",
  44637. height: math.unit(6 + 3/12, "feet"),
  44638. default: true
  44639. },
  44640. ]
  44641. ))
  44642. characterMakers.push(() => makeCharacter(
  44643. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  44644. {
  44645. front: {
  44646. height: math.unit(11 + 6/12, "feet"),
  44647. weight: math.unit(1.5, "tons"),
  44648. name: "Front",
  44649. image: {
  44650. source: "./media/characters/bor/front.svg",
  44651. extra: 1189/1109,
  44652. bottom: 170/1359
  44653. }
  44654. },
  44655. },
  44656. [
  44657. {
  44658. name: "Normal",
  44659. height: math.unit(11 + 6/12, "feet"),
  44660. default: true
  44661. },
  44662. {
  44663. name: "Macro",
  44664. height: math.unit(32 + 9/12, "feet")
  44665. },
  44666. ]
  44667. ))
  44668. characterMakers.push(() => makeCharacter(
  44669. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  44670. {
  44671. anthro: {
  44672. height: math.unit(9, "feet"),
  44673. weight: math.unit(2076, "lb"),
  44674. name: "Anthro",
  44675. image: {
  44676. source: "./media/characters/abacus/anthro.svg",
  44677. extra: 1540/1494,
  44678. bottom: 233/1773
  44679. }
  44680. },
  44681. pigeon: {
  44682. height: math.unit(1, "feet"),
  44683. name: "Pigeon",
  44684. image: {
  44685. source: "./media/characters/abacus/pigeon.svg",
  44686. extra: 528/525,
  44687. bottom: 46/574
  44688. }
  44689. },
  44690. },
  44691. [
  44692. {
  44693. name: "Normal",
  44694. height: math.unit(9, "feet"),
  44695. default: true
  44696. },
  44697. ]
  44698. ))
  44699. characterMakers.push(() => makeCharacter(
  44700. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  44701. {
  44702. side: {
  44703. height: math.unit(6, "feet"),
  44704. name: "Side",
  44705. image: {
  44706. source: "./media/characters/delkhan/side.svg",
  44707. extra: 1884/1786,
  44708. bottom: 308/2192
  44709. }
  44710. },
  44711. head: {
  44712. height: math.unit(3.38, "feet"),
  44713. name: "Head",
  44714. image: {
  44715. source: "./media/characters/delkhan/head.svg"
  44716. }
  44717. },
  44718. },
  44719. [
  44720. {
  44721. name: "Normal",
  44722. height: math.unit(72, "feet"),
  44723. default: true
  44724. },
  44725. {
  44726. name: "Giant",
  44727. height: math.unit(172, "feet")
  44728. },
  44729. ]
  44730. ))
  44731. characterMakers.push(() => makeCharacter(
  44732. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  44733. {
  44734. standing: {
  44735. height: math.unit(6, "feet"),
  44736. name: "Standing",
  44737. image: {
  44738. source: "./media/characters/euchidat/standing.svg",
  44739. extra: 1612/1553,
  44740. bottom: 116/1728
  44741. }
  44742. },
  44743. leaning: {
  44744. height: math.unit(6, "feet"),
  44745. name: "Leaning",
  44746. image: {
  44747. source: "./media/characters/euchidat/leaning.svg",
  44748. extra: 1719/1674,
  44749. bottom: 27/1746
  44750. }
  44751. },
  44752. },
  44753. [
  44754. {
  44755. name: "Normal",
  44756. height: math.unit(175, "feet"),
  44757. default: true
  44758. },
  44759. {
  44760. name: "Megamacro",
  44761. height: math.unit(190, "miles")
  44762. },
  44763. {
  44764. name: "Gigamacro",
  44765. height: math.unit(190000, "miles")
  44766. },
  44767. ]
  44768. ))
  44769. characterMakers.push(() => makeCharacter(
  44770. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  44771. {
  44772. front: {
  44773. height: math.unit(6, "feet"),
  44774. weight: math.unit(150, "lb"),
  44775. name: "Front",
  44776. image: {
  44777. source: "./media/characters/rebecca-stack/front.svg",
  44778. extra: 1256/1201,
  44779. bottom: 18/1274
  44780. }
  44781. },
  44782. },
  44783. [
  44784. {
  44785. name: "Normal",
  44786. height: math.unit(5 + 8/12, "feet"),
  44787. default: true
  44788. },
  44789. {
  44790. name: "Demolitionist",
  44791. height: math.unit(200, "feet")
  44792. },
  44793. {
  44794. name: "Out of Control",
  44795. height: math.unit(2, "miles")
  44796. },
  44797. {
  44798. name: "Giga",
  44799. height: math.unit(7200, "miles")
  44800. },
  44801. ]
  44802. ))
  44803. characterMakers.push(() => makeCharacter(
  44804. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  44805. {
  44806. front: {
  44807. height: math.unit(6, "feet"),
  44808. weight: math.unit(150, "lb"),
  44809. name: "Front",
  44810. image: {
  44811. source: "./media/characters/jenny-cartwright/front.svg",
  44812. extra: 1384/1376,
  44813. bottom: 58/1442
  44814. }
  44815. },
  44816. },
  44817. [
  44818. {
  44819. name: "Normal",
  44820. height: math.unit(6 + 7/12, "feet"),
  44821. default: true
  44822. },
  44823. {
  44824. name: "Librarian",
  44825. height: math.unit(55, "feet")
  44826. },
  44827. {
  44828. name: "Sightseer",
  44829. height: math.unit(50, "miles")
  44830. },
  44831. {
  44832. name: "Giga",
  44833. height: math.unit(30000, "miles")
  44834. },
  44835. ]
  44836. ))
  44837. characterMakers.push(() => makeCharacter(
  44838. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  44839. {
  44840. nude: {
  44841. height: math.unit(8, "feet"),
  44842. weight: math.unit(225, "lb"),
  44843. name: "Nude",
  44844. image: {
  44845. source: "./media/characters/marvy/nude.svg",
  44846. extra: 1900/1683,
  44847. bottom: 89/1989
  44848. }
  44849. },
  44850. dressed: {
  44851. height: math.unit(8, "feet"),
  44852. weight: math.unit(225, "lb"),
  44853. name: "Dressed",
  44854. image: {
  44855. source: "./media/characters/marvy/dressed.svg",
  44856. extra: 1900/1683,
  44857. bottom: 89/1989
  44858. }
  44859. },
  44860. head: {
  44861. height: math.unit(2.85, "feet"),
  44862. name: "Head",
  44863. image: {
  44864. source: "./media/characters/marvy/head.svg"
  44865. }
  44866. },
  44867. },
  44868. [
  44869. {
  44870. name: "Normal",
  44871. height: math.unit(8, "feet"),
  44872. default: true
  44873. },
  44874. ]
  44875. ))
  44876. //characters
  44877. function makeCharacters() {
  44878. const results = [];
  44879. characterMakers.forEach(character => {
  44880. results.push(character());
  44881. });
  44882. return results;
  44883. }