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.
 
 
 

43988 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. }
  1779. //species
  1780. function getSpeciesInfo(speciesList) {
  1781. let result = new Set();
  1782. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1783. result.add(entry)
  1784. });
  1785. return Array.from(result);
  1786. };
  1787. function getSpeciesInfoHelper(species) {
  1788. if (!speciesData[species]) {
  1789. console.warn(species + " doesn't exist");
  1790. return [];
  1791. }
  1792. if (speciesData[species].parents) {
  1793. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1794. } else {
  1795. return [species];
  1796. }
  1797. }
  1798. characterMakers.push(() => makeCharacter(
  1799. {
  1800. name: "Fen",
  1801. species: ["crux"],
  1802. description: {
  1803. title: "Bio",
  1804. text: "Very furry. Sheds on everything."
  1805. },
  1806. tags: [
  1807. "anthro",
  1808. "goo"
  1809. ]
  1810. },
  1811. {
  1812. back: {
  1813. height: math.unit(2.2428, "meter"),
  1814. weight: math.unit(124.738, "kg"),
  1815. name: "Back",
  1816. image: {
  1817. source: "./media/characters/fen/back.svg",
  1818. },
  1819. info: {
  1820. description: {
  1821. mode: "append",
  1822. text: "\n\nHe is not currently looking at you."
  1823. }
  1824. }
  1825. },
  1826. full: {
  1827. height: math.unit(0.91, "meter"),
  1828. weight: math.unit(225, "kg"),
  1829. name: "Full",
  1830. image: {
  1831. source: "./media/characters/fen/full.svg",
  1832. extra: 1133/859,
  1833. bottom: 145/1278
  1834. },
  1835. info: {
  1836. description: {
  1837. mode: "append",
  1838. text: "\n\nMunch."
  1839. }
  1840. }
  1841. },
  1842. kneeling: {
  1843. height: math.unit(5.4, "feet"),
  1844. weight: math.unit(124.738, "kg"),
  1845. name: "Kneeling",
  1846. image: {
  1847. source: "./media/characters/fen/kneeling.svg",
  1848. extra: 563 / 507
  1849. }
  1850. },
  1851. goo: {
  1852. height: math.unit(2.8, "feet"),
  1853. weight: math.unit(125, "kg"),
  1854. capacity: math.unit(1, "people"),
  1855. name: "Goo",
  1856. image: {
  1857. source: "./media/characters/fen/goo.svg",
  1858. bottom: 116 / 613
  1859. }
  1860. },
  1861. lounging: {
  1862. height: math.unit(6.5, "feet"),
  1863. weight: math.unit(125, "kg"),
  1864. name: "Lounging",
  1865. image: {
  1866. source: "./media/characters/fen/lounging.svg"
  1867. }
  1868. },
  1869. },
  1870. [
  1871. {
  1872. name: "Normal",
  1873. height: math.unit(2.2428, "meter")
  1874. },
  1875. {
  1876. name: "Big",
  1877. height: math.unit(12, "feet")
  1878. },
  1879. {
  1880. name: "Minimacro",
  1881. height: math.unit(40, "feet"),
  1882. default: true,
  1883. info: {
  1884. description: {
  1885. mode: "append",
  1886. text: "\n\nTOO DAMN BIG"
  1887. }
  1888. }
  1889. },
  1890. {
  1891. name: "Macro",
  1892. height: math.unit(100, "feet"),
  1893. info: {
  1894. description: {
  1895. mode: "append",
  1896. text: "\n\nTOO DAMN BIG"
  1897. }
  1898. }
  1899. },
  1900. {
  1901. name: "Macro+",
  1902. height: math.unit(300, "feet")
  1903. },
  1904. {
  1905. name: "Megamacro",
  1906. height: math.unit(2, "miles")
  1907. }
  1908. ]
  1909. ))
  1910. characterMakers.push(() => makeCharacter(
  1911. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1912. {
  1913. front: {
  1914. height: math.unit(183, "cm"),
  1915. weight: math.unit(80, "kg"),
  1916. name: "Front",
  1917. image: {
  1918. source: "./media/characters/sofia-fluttertail/front.svg",
  1919. bottom: 0.01,
  1920. extra: 2154 / 2081
  1921. }
  1922. },
  1923. frontAlt: {
  1924. height: math.unit(183, "cm"),
  1925. weight: math.unit(80, "kg"),
  1926. name: "Front (alt)",
  1927. image: {
  1928. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1929. }
  1930. },
  1931. back: {
  1932. height: math.unit(183, "cm"),
  1933. weight: math.unit(80, "kg"),
  1934. name: "Back",
  1935. image: {
  1936. source: "./media/characters/sofia-fluttertail/back.svg"
  1937. }
  1938. },
  1939. kneeling: {
  1940. height: math.unit(125, "cm"),
  1941. weight: math.unit(80, "kg"),
  1942. name: "Kneeling",
  1943. image: {
  1944. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1945. extra: 1033 / 977,
  1946. bottom: 23.7 / 1057
  1947. }
  1948. },
  1949. maw: {
  1950. height: math.unit(183 / 5, "cm"),
  1951. name: "Maw",
  1952. image: {
  1953. source: "./media/characters/sofia-fluttertail/maw.svg"
  1954. }
  1955. },
  1956. mawcloseup: {
  1957. height: math.unit(183 / 5 * 0.41, "cm"),
  1958. name: "Maw (Closeup)",
  1959. image: {
  1960. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1961. }
  1962. },
  1963. paws: {
  1964. height: math.unit(1.17, "feet"),
  1965. name: "Paws",
  1966. image: {
  1967. source: "./media/characters/sofia-fluttertail/paws.svg",
  1968. extra: 851 / 851,
  1969. bottom: 17 / 868
  1970. }
  1971. },
  1972. },
  1973. [
  1974. {
  1975. name: "Normal",
  1976. height: math.unit(1.83, "meter")
  1977. },
  1978. {
  1979. name: "Size Thief",
  1980. height: math.unit(18, "feet")
  1981. },
  1982. {
  1983. name: "50 Foot Collie",
  1984. height: math.unit(50, "feet")
  1985. },
  1986. {
  1987. name: "Macro",
  1988. height: math.unit(96, "feet"),
  1989. default: true
  1990. },
  1991. {
  1992. name: "Megamerger",
  1993. height: math.unit(650, "feet")
  1994. },
  1995. ]
  1996. ))
  1997. characterMakers.push(() => makeCharacter(
  1998. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1999. {
  2000. front: {
  2001. height: math.unit(7, "feet"),
  2002. weight: math.unit(100, "kg"),
  2003. name: "Front",
  2004. image: {
  2005. source: "./media/characters/march/front.svg",
  2006. extra: 1992/1851,
  2007. bottom: 39/2031
  2008. }
  2009. },
  2010. foot: {
  2011. height: math.unit(0.9, "feet"),
  2012. name: "Foot",
  2013. image: {
  2014. source: "./media/characters/march/foot.svg"
  2015. }
  2016. },
  2017. },
  2018. [
  2019. {
  2020. name: "Normal",
  2021. height: math.unit(7.9, "feet")
  2022. },
  2023. {
  2024. name: "Macro",
  2025. height: math.unit(220, "meters")
  2026. },
  2027. {
  2028. name: "Megamacro",
  2029. height: math.unit(2.98, "km"),
  2030. default: true
  2031. },
  2032. {
  2033. name: "Gigamacro",
  2034. height: math.unit(15963, "km")
  2035. },
  2036. {
  2037. name: "Teramacro",
  2038. height: math.unit(2980000000, "km")
  2039. },
  2040. {
  2041. name: "Examacro",
  2042. height: math.unit(250, "parsecs")
  2043. },
  2044. ]
  2045. ))
  2046. characterMakers.push(() => makeCharacter(
  2047. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2048. {
  2049. front: {
  2050. height: math.unit(6, "feet"),
  2051. weight: math.unit(60, "kg"),
  2052. name: "Front",
  2053. image: {
  2054. source: "./media/characters/noir/front.svg",
  2055. extra: 1,
  2056. bottom: 0.032
  2057. }
  2058. },
  2059. },
  2060. [
  2061. {
  2062. name: "Normal",
  2063. height: math.unit(6.6, "feet")
  2064. },
  2065. {
  2066. name: "Macro",
  2067. height: math.unit(500, "feet")
  2068. },
  2069. {
  2070. name: "Megamacro",
  2071. height: math.unit(2.5, "km"),
  2072. default: true
  2073. },
  2074. {
  2075. name: "Gigamacro",
  2076. height: math.unit(22500, "km")
  2077. },
  2078. {
  2079. name: "Teramacro",
  2080. height: math.unit(2500000000, "km")
  2081. },
  2082. {
  2083. name: "Examacro",
  2084. height: math.unit(200, "parsecs")
  2085. },
  2086. ]
  2087. ))
  2088. characterMakers.push(() => makeCharacter(
  2089. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2090. {
  2091. front: {
  2092. height: math.unit(7, "feet"),
  2093. weight: math.unit(100, "kg"),
  2094. name: "Front",
  2095. image: {
  2096. source: "./media/characters/okuri/front.svg",
  2097. extra: 1,
  2098. bottom: 0.037
  2099. }
  2100. },
  2101. back: {
  2102. height: math.unit(7, "feet"),
  2103. weight: math.unit(100, "kg"),
  2104. name: "Back",
  2105. image: {
  2106. source: "./media/characters/okuri/back.svg",
  2107. extra: 1,
  2108. bottom: 0.007
  2109. }
  2110. },
  2111. },
  2112. [
  2113. {
  2114. name: "Megamacro",
  2115. height: math.unit(100, "miles"),
  2116. default: true
  2117. },
  2118. ]
  2119. ))
  2120. characterMakers.push(() => makeCharacter(
  2121. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2122. {
  2123. front: {
  2124. height: math.unit(7, "feet"),
  2125. weight: math.unit(100, "kg"),
  2126. name: "Front",
  2127. image: {
  2128. source: "./media/characters/manny/front.svg",
  2129. extra: 1,
  2130. bottom: 0.06
  2131. }
  2132. },
  2133. back: {
  2134. height: math.unit(7, "feet"),
  2135. weight: math.unit(100, "kg"),
  2136. name: "Back",
  2137. image: {
  2138. source: "./media/characters/manny/back.svg",
  2139. extra: 1,
  2140. bottom: 0.014
  2141. }
  2142. },
  2143. },
  2144. [
  2145. {
  2146. name: "Normal",
  2147. height: math.unit(7, "feet"),
  2148. },
  2149. {
  2150. name: "Macro",
  2151. height: math.unit(78, "feet"),
  2152. default: true
  2153. },
  2154. {
  2155. name: "Macro+",
  2156. height: math.unit(300, "meters")
  2157. },
  2158. {
  2159. name: "Macro++",
  2160. height: math.unit(2400, "meters")
  2161. },
  2162. {
  2163. name: "Megamacro",
  2164. height: math.unit(5167, "meters")
  2165. },
  2166. {
  2167. name: "Gigamacro",
  2168. height: math.unit(41769, "miles")
  2169. },
  2170. ]
  2171. ))
  2172. characterMakers.push(() => makeCharacter(
  2173. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2174. {
  2175. front: {
  2176. height: math.unit(7, "feet"),
  2177. weight: math.unit(100, "kg"),
  2178. name: "Front",
  2179. image: {
  2180. source: "./media/characters/adake/front-1.svg"
  2181. }
  2182. },
  2183. frontAlt: {
  2184. height: math.unit(7, "feet"),
  2185. weight: math.unit(100, "kg"),
  2186. name: "Front (Alt)",
  2187. image: {
  2188. source: "./media/characters/adake/front-2.svg",
  2189. extra: 1,
  2190. bottom: 0.01
  2191. }
  2192. },
  2193. back: {
  2194. height: math.unit(7, "feet"),
  2195. weight: math.unit(100, "kg"),
  2196. name: "Back",
  2197. image: {
  2198. source: "./media/characters/adake/back.svg",
  2199. }
  2200. },
  2201. kneel: {
  2202. height: math.unit(5.385, "feet"),
  2203. weight: math.unit(100, "kg"),
  2204. name: "Kneeling",
  2205. image: {
  2206. source: "./media/characters/adake/kneel.svg",
  2207. bottom: 0.052
  2208. }
  2209. },
  2210. },
  2211. [
  2212. {
  2213. name: "Normal",
  2214. height: math.unit(7, "feet"),
  2215. },
  2216. {
  2217. name: "Macro",
  2218. height: math.unit(78, "feet"),
  2219. default: true
  2220. },
  2221. {
  2222. name: "Macro+",
  2223. height: math.unit(300, "meters")
  2224. },
  2225. {
  2226. name: "Macro++",
  2227. height: math.unit(2400, "meters")
  2228. },
  2229. {
  2230. name: "Megamacro",
  2231. height: math.unit(5167, "meters")
  2232. },
  2233. {
  2234. name: "Gigamacro",
  2235. height: math.unit(41769, "miles")
  2236. },
  2237. ]
  2238. ))
  2239. characterMakers.push(() => makeCharacter(
  2240. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2241. {
  2242. front: {
  2243. height: math.unit(1.65, "meters"),
  2244. weight: math.unit(50, "kg"),
  2245. name: "Front",
  2246. image: {
  2247. source: "./media/characters/elijah/front.svg",
  2248. extra: 858 / 830,
  2249. bottom: 95.5 / 953.8559
  2250. }
  2251. },
  2252. back: {
  2253. height: math.unit(1.65, "meters"),
  2254. weight: math.unit(50, "kg"),
  2255. name: "Back",
  2256. image: {
  2257. source: "./media/characters/elijah/back.svg",
  2258. extra: 895 / 850,
  2259. bottom: 5.3 / 897.956
  2260. }
  2261. },
  2262. frontNsfw: {
  2263. height: math.unit(1.65, "meters"),
  2264. weight: math.unit(50, "kg"),
  2265. name: "Front (NSFW)",
  2266. image: {
  2267. source: "./media/characters/elijah/front-nsfw.svg",
  2268. extra: 858 / 830,
  2269. bottom: 95.5 / 953.8559
  2270. }
  2271. },
  2272. backNsfw: {
  2273. height: math.unit(1.65, "meters"),
  2274. weight: math.unit(50, "kg"),
  2275. name: "Back (NSFW)",
  2276. image: {
  2277. source: "./media/characters/elijah/back-nsfw.svg",
  2278. extra: 895 / 850,
  2279. bottom: 5.3 / 897.956
  2280. }
  2281. },
  2282. dick: {
  2283. height: math.unit(1, "feet"),
  2284. name: "Dick",
  2285. image: {
  2286. source: "./media/characters/elijah/dick.svg"
  2287. }
  2288. },
  2289. beakOpen: {
  2290. height: math.unit(1.25, "feet"),
  2291. name: "Beak (Open)",
  2292. image: {
  2293. source: "./media/characters/elijah/beak-open.svg"
  2294. }
  2295. },
  2296. beakShut: {
  2297. height: math.unit(1.25, "feet"),
  2298. name: "Beak (Shut)",
  2299. image: {
  2300. source: "./media/characters/elijah/beak-shut.svg"
  2301. }
  2302. },
  2303. footFlexing: {
  2304. height: math.unit(1.61, "feet"),
  2305. name: "Foot (Flexing)",
  2306. image: {
  2307. source: "./media/characters/elijah/foot-flexing.svg"
  2308. }
  2309. },
  2310. footStepping: {
  2311. height: math.unit(1.44, "feet"),
  2312. name: "Foot (Stepping)",
  2313. image: {
  2314. source: "./media/characters/elijah/foot-stepping.svg"
  2315. }
  2316. },
  2317. plantigradeLeg: {
  2318. height: math.unit(2.34, "feet"),
  2319. name: "Plantigrade Leg",
  2320. image: {
  2321. source: "./media/characters/elijah/plantigrade-leg.svg"
  2322. }
  2323. },
  2324. plantigradeFootLeft: {
  2325. height: math.unit(0.9, "feet"),
  2326. name: "Plantigrade Foot (Left)",
  2327. image: {
  2328. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2329. }
  2330. },
  2331. plantigradeFootRight: {
  2332. height: math.unit(0.9, "feet"),
  2333. name: "Plantigrade Foot (Right)",
  2334. image: {
  2335. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2336. }
  2337. },
  2338. },
  2339. [
  2340. {
  2341. name: "Normal",
  2342. height: math.unit(1.65, "meters")
  2343. },
  2344. {
  2345. name: "Macro",
  2346. height: math.unit(55, "meters"),
  2347. default: true
  2348. },
  2349. {
  2350. name: "Macro+",
  2351. height: math.unit(105, "meters")
  2352. },
  2353. ]
  2354. ))
  2355. characterMakers.push(() => makeCharacter(
  2356. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2357. {
  2358. front: {
  2359. height: math.unit(11, "feet"),
  2360. weight: math.unit(320, "kg"),
  2361. name: "Front",
  2362. image: {
  2363. source: "./media/characters/rai/front.svg",
  2364. extra: 1802/1696,
  2365. bottom: 68/1870
  2366. }
  2367. },
  2368. frontDressed: {
  2369. height: math.unit(11, "feet"),
  2370. weight: math.unit(320, "kg"),
  2371. name: "Front (Dressed)",
  2372. image: {
  2373. source: "./media/characters/rai/front-dressed.svg",
  2374. extra: 1802/1696,
  2375. bottom: 68/1870
  2376. }
  2377. },
  2378. side: {
  2379. height: math.unit(11, "feet"),
  2380. weight: math.unit(320, "kg"),
  2381. name: "Side",
  2382. image: {
  2383. source: "./media/characters/rai/side.svg",
  2384. extra: 1789/1710,
  2385. bottom: 115/1904
  2386. }
  2387. },
  2388. back: {
  2389. height: math.unit(11, "feet"),
  2390. weight: math.unit(320, "kg"),
  2391. name: "Back",
  2392. image: {
  2393. source: "./media/characters/rai/back.svg",
  2394. extra: 1770/1707,
  2395. bottom: 28/1798
  2396. }
  2397. },
  2398. feral: {
  2399. height: math.unit(11, "feet"),
  2400. weight: math.unit(640, "kg"),
  2401. name: "Feral",
  2402. image: {
  2403. source: "./media/characters/rai/feral.svg",
  2404. extra: 1035/642,
  2405. bottom: 86/1121
  2406. }
  2407. },
  2408. dragon: {
  2409. height: math.unit(23, "feet"),
  2410. weight: math.unit(50000, "lb"),
  2411. name: "Dragon",
  2412. image: {
  2413. source: "./media/characters/rai/dragon.svg",
  2414. extra: 2498 / 2030,
  2415. bottom: 85.2 / 2584
  2416. }
  2417. },
  2418. maw: {
  2419. height: math.unit(6 / 3.81416, "feet"),
  2420. name: "Maw",
  2421. image: {
  2422. source: "./media/characters/rai/maw.svg"
  2423. }
  2424. },
  2425. },
  2426. [
  2427. {
  2428. name: "Normal",
  2429. height: math.unit(11, "feet")
  2430. },
  2431. {
  2432. name: "Macro",
  2433. height: math.unit(302, "feet"),
  2434. default: true
  2435. },
  2436. ]
  2437. ))
  2438. characterMakers.push(() => makeCharacter(
  2439. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2440. {
  2441. frontDressed: {
  2442. height: math.unit(216, "feet"),
  2443. weight: math.unit(7000000, "lb"),
  2444. name: "Front (Dressed)",
  2445. image: {
  2446. source: "./media/characters/jazzy/front-dressed.svg",
  2447. extra: 2738 / 2651,
  2448. bottom: 41.8 / 2786
  2449. }
  2450. },
  2451. backDressed: {
  2452. height: math.unit(216, "feet"),
  2453. weight: math.unit(7000000, "lb"),
  2454. name: "Back (Dressed)",
  2455. image: {
  2456. source: "./media/characters/jazzy/back-dressed.svg",
  2457. extra: 2775 / 2673,
  2458. bottom: 36.8 / 2817
  2459. }
  2460. },
  2461. front: {
  2462. height: math.unit(216, "feet"),
  2463. weight: math.unit(7000000, "lb"),
  2464. name: "Front",
  2465. image: {
  2466. source: "./media/characters/jazzy/front.svg",
  2467. extra: 2738 / 2651,
  2468. bottom: 41.8 / 2786
  2469. }
  2470. },
  2471. back: {
  2472. height: math.unit(216, "feet"),
  2473. weight: math.unit(7000000, "lb"),
  2474. name: "Back",
  2475. image: {
  2476. source: "./media/characters/jazzy/back.svg",
  2477. extra: 2775 / 2673,
  2478. bottom: 36.8 / 2817
  2479. }
  2480. },
  2481. maw: {
  2482. height: math.unit(20, "feet"),
  2483. name: "Maw",
  2484. image: {
  2485. source: "./media/characters/jazzy/maw.svg"
  2486. }
  2487. },
  2488. paws: {
  2489. height: math.unit(27.5, "feet"),
  2490. name: "Paws",
  2491. image: {
  2492. source: "./media/characters/jazzy/paws.svg"
  2493. }
  2494. },
  2495. eye: {
  2496. height: math.unit(4.4, "feet"),
  2497. name: "Eye",
  2498. image: {
  2499. source: "./media/characters/jazzy/eye.svg"
  2500. }
  2501. },
  2502. droneOffense: {
  2503. height: math.unit(9.5, "inches"),
  2504. name: "Drone (Offense)",
  2505. image: {
  2506. source: "./media/characters/jazzy/drone-offense.svg"
  2507. }
  2508. },
  2509. droneRecon: {
  2510. height: math.unit(9.5, "inches"),
  2511. name: "Drone (Recon)",
  2512. image: {
  2513. source: "./media/characters/jazzy/drone-recon.svg"
  2514. }
  2515. },
  2516. droneDefense: {
  2517. height: math.unit(9.5, "inches"),
  2518. name: "Drone (Defense)",
  2519. image: {
  2520. source: "./media/characters/jazzy/drone-defense.svg"
  2521. }
  2522. },
  2523. },
  2524. [
  2525. {
  2526. name: "Macro",
  2527. height: math.unit(216, "feet"),
  2528. default: true
  2529. },
  2530. ]
  2531. ))
  2532. characterMakers.push(() => makeCharacter(
  2533. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2534. {
  2535. front: {
  2536. height: math.unit(9 + 6/12, "feet"),
  2537. weight: math.unit(700, "lb"),
  2538. name: "Front",
  2539. image: {
  2540. source: "./media/characters/flamm/front.svg",
  2541. extra: 1751/1632,
  2542. bottom: 46/1797
  2543. }
  2544. },
  2545. buff: {
  2546. height: math.unit(9 + 6/12, "feet"),
  2547. weight: math.unit(950, "lb"),
  2548. name: "Buff",
  2549. image: {
  2550. source: "./media/characters/flamm/buff.svg",
  2551. extra: 3018/2874,
  2552. bottom: 221/3239
  2553. }
  2554. },
  2555. },
  2556. [
  2557. {
  2558. name: "Normal",
  2559. height: math.unit(9.5, "feet")
  2560. },
  2561. {
  2562. name: "Macro",
  2563. height: math.unit(200, "feet"),
  2564. default: true
  2565. },
  2566. ]
  2567. ))
  2568. characterMakers.push(() => makeCharacter(
  2569. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2570. {
  2571. front: {
  2572. height: math.unit(5 + 3/12, "feet"),
  2573. weight: math.unit(60, "kg"),
  2574. name: "Front",
  2575. image: {
  2576. source: "./media/characters/zephiro/front.svg",
  2577. extra: 2309 / 2162,
  2578. bottom: 0.069
  2579. }
  2580. },
  2581. side: {
  2582. height: math.unit(5 + 3/12, "feet"),
  2583. weight: math.unit(60, "kg"),
  2584. name: "Side",
  2585. image: {
  2586. source: "./media/characters/zephiro/side.svg",
  2587. extra: 2403 / 2279,
  2588. bottom: 0.015
  2589. }
  2590. },
  2591. back: {
  2592. height: math.unit(5 + 3/12, "feet"),
  2593. weight: math.unit(60, "kg"),
  2594. name: "Back",
  2595. image: {
  2596. source: "./media/characters/zephiro/back.svg",
  2597. extra: 2373 / 2244,
  2598. bottom: 0.013
  2599. }
  2600. },
  2601. hand: {
  2602. height: math.unit(0.68, "feet"),
  2603. name: "Hand",
  2604. image: {
  2605. source: "./media/characters/zephiro/hand.svg"
  2606. }
  2607. },
  2608. paw: {
  2609. height: math.unit(1, "feet"),
  2610. name: "Paw",
  2611. image: {
  2612. source: "./media/characters/zephiro/paw.svg"
  2613. }
  2614. },
  2615. beans: {
  2616. height: math.unit(0.93, "feet"),
  2617. name: "Beans",
  2618. image: {
  2619. source: "./media/characters/zephiro/beans.svg"
  2620. }
  2621. },
  2622. },
  2623. [
  2624. {
  2625. name: "Micro",
  2626. height: math.unit(3, "inches")
  2627. },
  2628. {
  2629. name: "Normal",
  2630. height: math.unit(5 + 3 / 12, "feet"),
  2631. default: true
  2632. },
  2633. {
  2634. name: "Macro",
  2635. height: math.unit(118, "feet")
  2636. },
  2637. ]
  2638. ))
  2639. characterMakers.push(() => makeCharacter(
  2640. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2641. {
  2642. front: {
  2643. height: math.unit(5, "feet"),
  2644. weight: math.unit(90, "kg"),
  2645. name: "Front",
  2646. image: {
  2647. source: "./media/characters/fory/front.svg",
  2648. extra: 2862 / 2674,
  2649. bottom: 180 / 3043.8
  2650. }
  2651. },
  2652. back: {
  2653. height: math.unit(5, "feet"),
  2654. weight: math.unit(90, "kg"),
  2655. name: "Back",
  2656. image: {
  2657. source: "./media/characters/fory/back.svg",
  2658. extra: 2962 / 2791,
  2659. bottom: 106 / 3071.8
  2660. }
  2661. },
  2662. foot: {
  2663. height: math.unit(2.14, "feet"),
  2664. name: "Foot",
  2665. image: {
  2666. source: "./media/characters/fory/foot.svg"
  2667. }
  2668. },
  2669. },
  2670. [
  2671. {
  2672. name: "Normal",
  2673. height: math.unit(5, "feet")
  2674. },
  2675. {
  2676. name: "Macro",
  2677. height: math.unit(50, "feet"),
  2678. default: true
  2679. },
  2680. {
  2681. name: "Megamacro",
  2682. height: math.unit(10, "miles")
  2683. },
  2684. {
  2685. name: "Gigamacro",
  2686. height: math.unit(5, "earths")
  2687. },
  2688. ]
  2689. ))
  2690. characterMakers.push(() => makeCharacter(
  2691. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2692. {
  2693. front: {
  2694. height: math.unit(7, "feet"),
  2695. weight: math.unit(90, "kg"),
  2696. name: "Front",
  2697. image: {
  2698. source: "./media/characters/kurrikage/front.svg",
  2699. extra: 1,
  2700. bottom: 0.035
  2701. }
  2702. },
  2703. back: {
  2704. height: math.unit(7, "feet"),
  2705. weight: math.unit(90, "lb"),
  2706. name: "Back",
  2707. image: {
  2708. source: "./media/characters/kurrikage/back.svg"
  2709. }
  2710. },
  2711. paw: {
  2712. height: math.unit(1.5, "feet"),
  2713. name: "Paw",
  2714. image: {
  2715. source: "./media/characters/kurrikage/paw.svg"
  2716. }
  2717. },
  2718. staff: {
  2719. height: math.unit(6.7, "feet"),
  2720. name: "Staff",
  2721. image: {
  2722. source: "./media/characters/kurrikage/staff.svg"
  2723. }
  2724. },
  2725. peek: {
  2726. height: math.unit(1.05, "feet"),
  2727. name: "Peeking",
  2728. image: {
  2729. source: "./media/characters/kurrikage/peek.svg",
  2730. bottom: 0.08
  2731. }
  2732. },
  2733. },
  2734. [
  2735. {
  2736. name: "Normal",
  2737. height: math.unit(12, "feet"),
  2738. default: true
  2739. },
  2740. {
  2741. name: "Big",
  2742. height: math.unit(20, "feet")
  2743. },
  2744. {
  2745. name: "Macro",
  2746. height: math.unit(500, "feet")
  2747. },
  2748. {
  2749. name: "Megamacro",
  2750. height: math.unit(20, "miles")
  2751. },
  2752. ]
  2753. ))
  2754. characterMakers.push(() => makeCharacter(
  2755. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2756. {
  2757. front: {
  2758. height: math.unit(6, "feet"),
  2759. weight: math.unit(75, "kg"),
  2760. name: "Front",
  2761. image: {
  2762. source: "./media/characters/shingo/front.svg",
  2763. extra: 1900/1825,
  2764. bottom: 82/1982
  2765. }
  2766. },
  2767. side: {
  2768. height: math.unit(6, "feet"),
  2769. weight: math.unit(75, "kg"),
  2770. name: "Side",
  2771. image: {
  2772. source: "./media/characters/shingo/side.svg",
  2773. extra: 1930/1865,
  2774. bottom: 16/1946
  2775. }
  2776. },
  2777. back: {
  2778. height: math.unit(6, "feet"),
  2779. weight: math.unit(75, "kg"),
  2780. name: "Back",
  2781. image: {
  2782. source: "./media/characters/shingo/back.svg",
  2783. extra: 1922/1852,
  2784. bottom: 16/1938
  2785. }
  2786. },
  2787. frontDressed: {
  2788. height: math.unit(6, "feet"),
  2789. weight: math.unit(150, "lb"),
  2790. name: "Front-dressed",
  2791. image: {
  2792. source: "./media/characters/shingo/front-dressed.svg",
  2793. extra: 1900/1825,
  2794. bottom: 82/1982
  2795. }
  2796. },
  2797. paw: {
  2798. height: math.unit(1.29, "feet"),
  2799. name: "Paw",
  2800. image: {
  2801. source: "./media/characters/shingo/paw.svg"
  2802. }
  2803. },
  2804. hand: {
  2805. height: math.unit(1.07, "feet"),
  2806. name: "Hand",
  2807. image: {
  2808. source: "./media/characters/shingo/hand.svg"
  2809. }
  2810. },
  2811. frontAlt: {
  2812. height: math.unit(6, "feet"),
  2813. weight: math.unit(75, "kg"),
  2814. name: "Front (Alt)",
  2815. image: {
  2816. source: "./media/characters/shingo/front-alt.svg",
  2817. extra: 3511 / 3338,
  2818. bottom: 0.005
  2819. }
  2820. },
  2821. frontAlt2: {
  2822. height: math.unit(6, "feet"),
  2823. weight: math.unit(75, "kg"),
  2824. name: "Front (Alt 2)",
  2825. image: {
  2826. source: "./media/characters/shingo/front-alt-2.svg",
  2827. extra: 706/681,
  2828. bottom: 11/717
  2829. }
  2830. },
  2831. pawAlt: {
  2832. height: math.unit(1, "feet"),
  2833. name: "Paw (Alt)",
  2834. image: {
  2835. source: "./media/characters/shingo/paw-alt.svg"
  2836. }
  2837. },
  2838. },
  2839. [
  2840. {
  2841. name: "Micro",
  2842. height: math.unit(4, "inches")
  2843. },
  2844. {
  2845. name: "Normal",
  2846. height: math.unit(6, "feet"),
  2847. default: true
  2848. },
  2849. {
  2850. name: "Macro",
  2851. height: math.unit(108, "feet")
  2852. },
  2853. {
  2854. name: "Macro+",
  2855. height: math.unit(1500, "feet")
  2856. },
  2857. ]
  2858. ))
  2859. characterMakers.push(() => makeCharacter(
  2860. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2861. {
  2862. side: {
  2863. height: math.unit(6, "feet"),
  2864. weight: math.unit(75, "kg"),
  2865. name: "Side",
  2866. image: {
  2867. source: "./media/characters/aigey/side.svg"
  2868. }
  2869. },
  2870. },
  2871. [
  2872. {
  2873. name: "Macro",
  2874. height: math.unit(200, "feet"),
  2875. default: true
  2876. },
  2877. {
  2878. name: "Megamacro",
  2879. height: math.unit(100, "miles")
  2880. },
  2881. ]
  2882. )
  2883. )
  2884. characterMakers.push(() => makeCharacter(
  2885. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2886. {
  2887. front: {
  2888. height: math.unit(5 + 5 / 12, "feet"),
  2889. weight: math.unit(75, "kg"),
  2890. name: "Front",
  2891. image: {
  2892. source: "./media/characters/natasha/front.svg",
  2893. extra: 859 / 824,
  2894. bottom: 23 / 879.6
  2895. }
  2896. },
  2897. frontNsfw: {
  2898. height: math.unit(5 + 5 / 12, "feet"),
  2899. weight: math.unit(75, "kg"),
  2900. name: "Front (NSFW)",
  2901. image: {
  2902. source: "./media/characters/natasha/front-nsfw.svg",
  2903. extra: 859 / 824,
  2904. bottom: 23 / 879.6
  2905. }
  2906. },
  2907. frontErect: {
  2908. height: math.unit(5 + 5 / 12, "feet"),
  2909. weight: math.unit(75, "kg"),
  2910. name: "Front (Erect)",
  2911. image: {
  2912. source: "./media/characters/natasha/front-erect.svg",
  2913. extra: 859 / 824,
  2914. bottom: 23 / 879.6
  2915. }
  2916. },
  2917. back: {
  2918. height: math.unit(5 + 5 / 12, "feet"),
  2919. weight: math.unit(75, "kg"),
  2920. name: "Back",
  2921. image: {
  2922. source: "./media/characters/natasha/back.svg",
  2923. extra: 887.9 / 852.6,
  2924. bottom: 9.7 / 896.4
  2925. }
  2926. },
  2927. backAlt: {
  2928. height: math.unit(5 + 5 / 12, "feet"),
  2929. weight: math.unit(75, "kg"),
  2930. name: "Back (Alt)",
  2931. image: {
  2932. source: "./media/characters/natasha/back-alt.svg",
  2933. extra: 1236.7 / 1192,
  2934. bottom: 22.3 / 1258.2
  2935. }
  2936. },
  2937. dick: {
  2938. height: math.unit(1.772, "feet"),
  2939. name: "Dick",
  2940. image: {
  2941. source: "./media/characters/natasha/dick.svg"
  2942. }
  2943. },
  2944. paw: {
  2945. height: math.unit(0.250, "meters"),
  2946. name: "Paw",
  2947. image: {
  2948. source: "./media/characters/natasha/paw.svg"
  2949. }
  2950. },
  2951. },
  2952. [
  2953. {
  2954. name: "Normal",
  2955. height: math.unit(5 + 5 / 12, "feet")
  2956. },
  2957. {
  2958. name: "Large",
  2959. height: math.unit(12, "feet")
  2960. },
  2961. {
  2962. name: "Macro",
  2963. height: math.unit(100, "feet"),
  2964. default: true
  2965. },
  2966. {
  2967. name: "Macro+",
  2968. height: math.unit(260, "feet")
  2969. },
  2970. {
  2971. name: "Macro++",
  2972. height: math.unit(1, "mile")
  2973. },
  2974. ]
  2975. ))
  2976. characterMakers.push(() => makeCharacter(
  2977. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2978. {
  2979. front: {
  2980. height: math.unit(6, "feet"),
  2981. weight: math.unit(75, "kg"),
  2982. name: "Front",
  2983. image: {
  2984. source: "./media/characters/malik/front.svg"
  2985. }
  2986. },
  2987. side: {
  2988. height: math.unit(6, "feet"),
  2989. weight: math.unit(75, "kg"),
  2990. name: "Side",
  2991. image: {
  2992. source: "./media/characters/malik/side.svg",
  2993. extra: 1.1539
  2994. }
  2995. },
  2996. back: {
  2997. height: math.unit(6, "feet"),
  2998. weight: math.unit(75, "kg"),
  2999. name: "Back",
  3000. image: {
  3001. source: "./media/characters/malik/back.svg"
  3002. }
  3003. },
  3004. },
  3005. [
  3006. {
  3007. name: "Macro",
  3008. height: math.unit(156, "feet"),
  3009. default: true
  3010. },
  3011. {
  3012. name: "Macro+",
  3013. height: math.unit(1188, "feet")
  3014. },
  3015. ]
  3016. ))
  3017. characterMakers.push(() => makeCharacter(
  3018. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3019. {
  3020. front: {
  3021. height: math.unit(6, "feet"),
  3022. weight: math.unit(75, "kg"),
  3023. name: "Front",
  3024. image: {
  3025. source: "./media/characters/sefer/front.svg",
  3026. extra: 848 / 659,
  3027. bottom: 28.3 / 876.442
  3028. }
  3029. },
  3030. back: {
  3031. height: math.unit(6, "feet"),
  3032. weight: math.unit(75, "kg"),
  3033. name: "Back",
  3034. image: {
  3035. source: "./media/characters/sefer/back.svg",
  3036. extra: 864 / 695,
  3037. bottom: 10 / 871
  3038. }
  3039. },
  3040. frontDressed: {
  3041. height: math.unit(6, "feet"),
  3042. weight: math.unit(75, "kg"),
  3043. name: "Front (Dressed)",
  3044. image: {
  3045. source: "./media/characters/sefer/front-dressed.svg",
  3046. extra: 839 / 653,
  3047. bottom: 37.6 / 878
  3048. }
  3049. },
  3050. },
  3051. [
  3052. {
  3053. name: "Normal",
  3054. height: math.unit(6, "feet"),
  3055. default: true
  3056. },
  3057. ]
  3058. ))
  3059. characterMakers.push(() => makeCharacter(
  3060. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3061. {
  3062. body: {
  3063. height: math.unit(2.2428, "meter"),
  3064. weight: math.unit(124.738, "kg"),
  3065. name: "Body",
  3066. image: {
  3067. extra: 1225 / 1050,
  3068. source: "./media/characters/north/front.svg"
  3069. }
  3070. }
  3071. },
  3072. [
  3073. {
  3074. name: "Micro",
  3075. height: math.unit(4, "inches")
  3076. },
  3077. {
  3078. name: "Macro",
  3079. height: math.unit(63, "meters")
  3080. },
  3081. {
  3082. name: "Megamacro",
  3083. height: math.unit(101, "miles"),
  3084. default: true
  3085. }
  3086. ]
  3087. ))
  3088. characterMakers.push(() => makeCharacter(
  3089. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3090. {
  3091. angled: {
  3092. height: math.unit(4, "meter"),
  3093. weight: math.unit(150, "kg"),
  3094. name: "Angled",
  3095. image: {
  3096. source: "./media/characters/talan/angled-sfw.svg",
  3097. bottom: 29 / 3734
  3098. }
  3099. },
  3100. angledNsfw: {
  3101. height: math.unit(4, "meter"),
  3102. weight: math.unit(150, "kg"),
  3103. name: "Angled (NSFW)",
  3104. image: {
  3105. source: "./media/characters/talan/angled-nsfw.svg",
  3106. bottom: 29 / 3734
  3107. }
  3108. },
  3109. frontNsfw: {
  3110. height: math.unit(4, "meter"),
  3111. weight: math.unit(150, "kg"),
  3112. name: "Front (NSFW)",
  3113. image: {
  3114. source: "./media/characters/talan/front-nsfw.svg",
  3115. bottom: 29 / 3734
  3116. }
  3117. },
  3118. sideNsfw: {
  3119. height: math.unit(4, "meter"),
  3120. weight: math.unit(150, "kg"),
  3121. name: "Side (NSFW)",
  3122. image: {
  3123. source: "./media/characters/talan/side-nsfw.svg",
  3124. bottom: 29 / 3734
  3125. }
  3126. },
  3127. back: {
  3128. height: math.unit(4, "meter"),
  3129. weight: math.unit(150, "kg"),
  3130. name: "Back",
  3131. image: {
  3132. source: "./media/characters/talan/back.svg"
  3133. }
  3134. },
  3135. dickBottom: {
  3136. height: math.unit(0.621, "meter"),
  3137. name: "Dick (Bottom)",
  3138. image: {
  3139. source: "./media/characters/talan/dick-bottom.svg"
  3140. }
  3141. },
  3142. dickTop: {
  3143. height: math.unit(0.621, "meter"),
  3144. name: "Dick (Top)",
  3145. image: {
  3146. source: "./media/characters/talan/dick-top.svg"
  3147. }
  3148. },
  3149. dickSide: {
  3150. height: math.unit(0.305, "meter"),
  3151. name: "Dick (Side)",
  3152. image: {
  3153. source: "./media/characters/talan/dick-side.svg"
  3154. }
  3155. },
  3156. dickFront: {
  3157. height: math.unit(0.305, "meter"),
  3158. name: "Dick (Front)",
  3159. image: {
  3160. source: "./media/characters/talan/dick-front.svg"
  3161. }
  3162. },
  3163. },
  3164. [
  3165. {
  3166. name: "Normal",
  3167. height: math.unit(4, "meters")
  3168. },
  3169. {
  3170. name: "Macro",
  3171. height: math.unit(100, "meters")
  3172. },
  3173. {
  3174. name: "Megamacro",
  3175. height: math.unit(2, "miles"),
  3176. default: true
  3177. },
  3178. {
  3179. name: "Gigamacro",
  3180. height: math.unit(5000, "miles")
  3181. },
  3182. {
  3183. name: "Teramacro",
  3184. height: math.unit(100, "parsecs")
  3185. }
  3186. ]
  3187. ))
  3188. characterMakers.push(() => makeCharacter(
  3189. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3190. {
  3191. front: {
  3192. height: math.unit(2, "meter"),
  3193. weight: math.unit(90, "kg"),
  3194. name: "Front",
  3195. image: {
  3196. source: "./media/characters/gael'rathus/front.svg"
  3197. }
  3198. },
  3199. frontAlt: {
  3200. height: math.unit(2, "meter"),
  3201. weight: math.unit(90, "kg"),
  3202. name: "Front (alt)",
  3203. image: {
  3204. source: "./media/characters/gael'rathus/front-alt.svg"
  3205. }
  3206. },
  3207. frontAlt2: {
  3208. height: math.unit(2, "meter"),
  3209. weight: math.unit(90, "kg"),
  3210. name: "Front (alt 2)",
  3211. image: {
  3212. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3213. }
  3214. }
  3215. },
  3216. [
  3217. {
  3218. name: "Normal",
  3219. height: math.unit(9, "feet"),
  3220. default: true
  3221. },
  3222. {
  3223. name: "Large",
  3224. height: math.unit(25, "feet")
  3225. },
  3226. {
  3227. name: "Macro",
  3228. height: math.unit(0.25, "miles")
  3229. },
  3230. {
  3231. name: "Megamacro",
  3232. height: math.unit(10, "miles")
  3233. }
  3234. ]
  3235. ))
  3236. characterMakers.push(() => makeCharacter(
  3237. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3238. {
  3239. side: {
  3240. height: math.unit(2, "meter"),
  3241. weight: math.unit(140, "kg"),
  3242. name: "Side",
  3243. image: {
  3244. source: "./media/characters/sosha/side.svg",
  3245. bottom: 0.042
  3246. }
  3247. },
  3248. },
  3249. [
  3250. {
  3251. name: "Normal",
  3252. height: math.unit(12, "feet"),
  3253. default: true
  3254. }
  3255. ]
  3256. ))
  3257. characterMakers.push(() => makeCharacter(
  3258. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3259. {
  3260. side: {
  3261. height: math.unit(5 + 5 / 12, "feet"),
  3262. weight: math.unit(170, "kg"),
  3263. name: "Side",
  3264. image: {
  3265. source: "./media/characters/runnola/side.svg",
  3266. extra: 741 / 448,
  3267. bottom: 0.05
  3268. }
  3269. },
  3270. },
  3271. [
  3272. {
  3273. name: "Small",
  3274. height: math.unit(3, "feet")
  3275. },
  3276. {
  3277. name: "Normal",
  3278. height: math.unit(5 + 5 / 12, "feet"),
  3279. default: true
  3280. },
  3281. {
  3282. name: "Big",
  3283. height: math.unit(10, "feet")
  3284. },
  3285. ]
  3286. ))
  3287. characterMakers.push(() => makeCharacter(
  3288. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3289. {
  3290. front: {
  3291. height: math.unit(2, "meter"),
  3292. weight: math.unit(50, "kg"),
  3293. name: "Front",
  3294. image: {
  3295. source: "./media/characters/kurribird/front.svg",
  3296. bottom: 0.015
  3297. }
  3298. },
  3299. frontAlt: {
  3300. height: math.unit(1.5, "meter"),
  3301. weight: math.unit(50, "kg"),
  3302. name: "Front (Alt)",
  3303. image: {
  3304. source: "./media/characters/kurribird/front-alt.svg",
  3305. extra: 1.45
  3306. }
  3307. },
  3308. },
  3309. [
  3310. {
  3311. name: "Normal",
  3312. height: math.unit(7, "feet")
  3313. },
  3314. {
  3315. name: "Big",
  3316. height: math.unit(12, "feet"),
  3317. default: true
  3318. },
  3319. {
  3320. name: "Macro",
  3321. height: math.unit(1500, "feet")
  3322. },
  3323. {
  3324. name: "Megamacro",
  3325. height: math.unit(2, "miles")
  3326. }
  3327. ]
  3328. ))
  3329. characterMakers.push(() => makeCharacter(
  3330. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3331. {
  3332. front: {
  3333. height: math.unit(2, "meter"),
  3334. weight: math.unit(80, "kg"),
  3335. name: "Front",
  3336. image: {
  3337. source: "./media/characters/elbial/front.svg",
  3338. extra: 1643 / 1556,
  3339. bottom: 60.2 / 1696
  3340. }
  3341. },
  3342. side: {
  3343. height: math.unit(2, "meter"),
  3344. weight: math.unit(80, "kg"),
  3345. name: "Side",
  3346. image: {
  3347. source: "./media/characters/elbial/side.svg",
  3348. extra: 1630 / 1565,
  3349. bottom: 71.5 / 1697
  3350. }
  3351. },
  3352. back: {
  3353. height: math.unit(2, "meter"),
  3354. weight: math.unit(80, "kg"),
  3355. name: "Back",
  3356. image: {
  3357. source: "./media/characters/elbial/back.svg",
  3358. extra: 1668 / 1595,
  3359. bottom: 5.6 / 1672
  3360. }
  3361. },
  3362. frontDressed: {
  3363. height: math.unit(2, "meter"),
  3364. weight: math.unit(80, "kg"),
  3365. name: "Front (Dressed)",
  3366. image: {
  3367. source: "./media/characters/elbial/front-dressed.svg",
  3368. extra: 1653 / 1584,
  3369. bottom: 57 / 1708
  3370. }
  3371. },
  3372. genitals: {
  3373. height: math.unit(2 / 3.367, "meter"),
  3374. name: "Genitals",
  3375. image: {
  3376. source: "./media/characters/elbial/genitals.svg"
  3377. }
  3378. },
  3379. },
  3380. [
  3381. {
  3382. name: "Large",
  3383. height: math.unit(100, "feet")
  3384. },
  3385. {
  3386. name: "Macro",
  3387. height: math.unit(500, "feet"),
  3388. default: true
  3389. },
  3390. {
  3391. name: "Megamacro",
  3392. height: math.unit(10, "miles")
  3393. },
  3394. {
  3395. name: "Gigamacro",
  3396. height: math.unit(25000, "miles")
  3397. },
  3398. {
  3399. name: "Full-Size",
  3400. height: math.unit(8000000, "gigaparsecs")
  3401. }
  3402. ]
  3403. ))
  3404. characterMakers.push(() => makeCharacter(
  3405. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3406. {
  3407. front: {
  3408. height: math.unit(2, "meter"),
  3409. weight: math.unit(60, "kg"),
  3410. name: "Front",
  3411. image: {
  3412. source: "./media/characters/noah/front.svg"
  3413. }
  3414. },
  3415. talons: {
  3416. height: math.unit(0.315, "meter"),
  3417. name: "Talons",
  3418. image: {
  3419. source: "./media/characters/noah/talons.svg"
  3420. }
  3421. }
  3422. },
  3423. [
  3424. {
  3425. name: "Large",
  3426. height: math.unit(50, "feet")
  3427. },
  3428. {
  3429. name: "Macro",
  3430. height: math.unit(750, "feet"),
  3431. default: true
  3432. },
  3433. {
  3434. name: "Megamacro",
  3435. height: math.unit(50, "miles")
  3436. },
  3437. {
  3438. name: "Gigamacro",
  3439. height: math.unit(100000, "miles")
  3440. },
  3441. {
  3442. name: "Full-Size",
  3443. height: math.unit(3000000000, "miles")
  3444. }
  3445. ]
  3446. ))
  3447. characterMakers.push(() => makeCharacter(
  3448. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3449. {
  3450. front: {
  3451. height: math.unit(2, "meter"),
  3452. weight: math.unit(80, "kg"),
  3453. name: "Front",
  3454. image: {
  3455. source: "./media/characters/natalya/front.svg"
  3456. }
  3457. },
  3458. back: {
  3459. height: math.unit(2, "meter"),
  3460. weight: math.unit(80, "kg"),
  3461. name: "Back",
  3462. image: {
  3463. source: "./media/characters/natalya/back.svg"
  3464. }
  3465. }
  3466. },
  3467. [
  3468. {
  3469. name: "Normal",
  3470. height: math.unit(150, "feet"),
  3471. default: true
  3472. },
  3473. {
  3474. name: "Megamacro",
  3475. height: math.unit(5, "miles")
  3476. },
  3477. {
  3478. name: "Full-Size",
  3479. height: math.unit(600, "kiloparsecs")
  3480. }
  3481. ]
  3482. ))
  3483. characterMakers.push(() => makeCharacter(
  3484. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3485. {
  3486. front: {
  3487. height: math.unit(2, "meter"),
  3488. weight: math.unit(50, "kg"),
  3489. name: "Front",
  3490. image: {
  3491. source: "./media/characters/erestrebah/front.svg",
  3492. extra: 208 / 193,
  3493. bottom: 0.055
  3494. }
  3495. },
  3496. back: {
  3497. height: math.unit(2, "meter"),
  3498. weight: math.unit(50, "kg"),
  3499. name: "Back",
  3500. image: {
  3501. source: "./media/characters/erestrebah/back.svg",
  3502. extra: 1.3
  3503. }
  3504. }
  3505. },
  3506. [
  3507. {
  3508. name: "Normal",
  3509. height: math.unit(10, "feet")
  3510. },
  3511. {
  3512. name: "Large",
  3513. height: math.unit(50, "feet"),
  3514. default: true
  3515. },
  3516. {
  3517. name: "Macro",
  3518. height: math.unit(300, "feet")
  3519. },
  3520. {
  3521. name: "Macro+",
  3522. height: math.unit(750, "feet")
  3523. },
  3524. {
  3525. name: "Megamacro",
  3526. height: math.unit(3, "miles")
  3527. }
  3528. ]
  3529. ))
  3530. characterMakers.push(() => makeCharacter(
  3531. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3532. {
  3533. front: {
  3534. height: math.unit(2, "meter"),
  3535. weight: math.unit(80, "kg"),
  3536. name: "Front",
  3537. image: {
  3538. source: "./media/characters/jennifer/front.svg",
  3539. bottom: 0.11,
  3540. extra: 1.16
  3541. }
  3542. },
  3543. frontAlt: {
  3544. height: math.unit(2, "meter"),
  3545. weight: math.unit(80, "kg"),
  3546. name: "Front (Alt)",
  3547. image: {
  3548. source: "./media/characters/jennifer/front-alt.svg"
  3549. }
  3550. }
  3551. },
  3552. [
  3553. {
  3554. name: "Canon Height",
  3555. height: math.unit(120, "feet"),
  3556. default: true
  3557. },
  3558. {
  3559. name: "Macro+",
  3560. height: math.unit(300, "feet")
  3561. },
  3562. {
  3563. name: "Megamacro",
  3564. height: math.unit(20000, "feet")
  3565. }
  3566. ]
  3567. ))
  3568. characterMakers.push(() => makeCharacter(
  3569. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3570. {
  3571. front: {
  3572. height: math.unit(2, "meter"),
  3573. weight: math.unit(50, "kg"),
  3574. name: "Front",
  3575. image: {
  3576. source: "./media/characters/kalista/front.svg",
  3577. extra: 1947 / 1700,
  3578. bottom: 76.6 / 1412.98
  3579. }
  3580. },
  3581. back: {
  3582. height: math.unit(2, "meter"),
  3583. weight: math.unit(50, "kg"),
  3584. name: "Back",
  3585. image: {
  3586. source: "./media/characters/kalista/back.svg",
  3587. extra: 1366 / 1156,
  3588. bottom: 33.9 / 1362.78
  3589. }
  3590. }
  3591. },
  3592. [
  3593. {
  3594. name: "Uncomfortably Small",
  3595. height: math.unit(10, "feet")
  3596. },
  3597. {
  3598. name: "Small",
  3599. height: math.unit(30, "feet")
  3600. },
  3601. {
  3602. name: "Macro",
  3603. height: math.unit(100, "feet"),
  3604. default: true
  3605. },
  3606. {
  3607. name: "Macro+",
  3608. height: math.unit(2000, "feet")
  3609. },
  3610. {
  3611. name: "True Form",
  3612. height: math.unit(8924, "miles")
  3613. }
  3614. ]
  3615. ))
  3616. characterMakers.push(() => makeCharacter(
  3617. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3618. {
  3619. front: {
  3620. height: math.unit(2, "meter"),
  3621. weight: math.unit(120, "kg"),
  3622. name: "Front",
  3623. image: {
  3624. source: "./media/characters/ggv/front.svg"
  3625. }
  3626. },
  3627. side: {
  3628. height: math.unit(2, "meter"),
  3629. weight: math.unit(120, "kg"),
  3630. name: "Side",
  3631. image: {
  3632. source: "./media/characters/ggv/side.svg"
  3633. }
  3634. }
  3635. },
  3636. [
  3637. {
  3638. name: "Extremely Puny",
  3639. height: math.unit(9 + 5 / 12, "feet")
  3640. },
  3641. {
  3642. name: "Horribly Small",
  3643. height: math.unit(47.7, "miles"),
  3644. default: true
  3645. },
  3646. {
  3647. name: "Reasonably Sized",
  3648. height: math.unit(25000, "parsecs")
  3649. },
  3650. {
  3651. name: "Slightly Uncompressed",
  3652. height: math.unit(7.77e31, "parsecs")
  3653. },
  3654. {
  3655. name: "Omniversal",
  3656. height: math.unit(1e300, "meters")
  3657. },
  3658. ]
  3659. ))
  3660. characterMakers.push(() => makeCharacter(
  3661. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3662. {
  3663. front: {
  3664. height: math.unit(2, "meter"),
  3665. weight: math.unit(75, "lb"),
  3666. name: "Front",
  3667. image: {
  3668. source: "./media/characters/napalm/front.svg"
  3669. }
  3670. },
  3671. back: {
  3672. height: math.unit(2, "meter"),
  3673. weight: math.unit(75, "lb"),
  3674. name: "Back",
  3675. image: {
  3676. source: "./media/characters/napalm/back.svg"
  3677. }
  3678. }
  3679. },
  3680. [
  3681. {
  3682. name: "Standard",
  3683. height: math.unit(55, "feet"),
  3684. default: true
  3685. }
  3686. ]
  3687. ))
  3688. characterMakers.push(() => makeCharacter(
  3689. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3690. {
  3691. front: {
  3692. height: math.unit(7 + 5 / 6, "feet"),
  3693. weight: math.unit(325, "lb"),
  3694. name: "Front",
  3695. image: {
  3696. source: "./media/characters/asana/front.svg",
  3697. extra: 1133 / 1060,
  3698. bottom: 15.2 / 1148.6
  3699. }
  3700. },
  3701. back: {
  3702. height: math.unit(7 + 5 / 6, "feet"),
  3703. weight: math.unit(325, "lb"),
  3704. name: "Back",
  3705. image: {
  3706. source: "./media/characters/asana/back.svg",
  3707. extra: 1114 / 1043,
  3708. bottom: 5 / 1120
  3709. }
  3710. },
  3711. dressedDark: {
  3712. height: math.unit(7 + 5 / 6, "feet"),
  3713. weight: math.unit(325, "lb"),
  3714. name: "Dressed (Dark)",
  3715. image: {
  3716. source: "./media/characters/asana/dressed-dark.svg",
  3717. extra: 1133 / 1060,
  3718. bottom: 15.2 / 1148.6
  3719. }
  3720. },
  3721. dressedLight: {
  3722. height: math.unit(7 + 5 / 6, "feet"),
  3723. weight: math.unit(325, "lb"),
  3724. name: "Dressed (Light)",
  3725. image: {
  3726. source: "./media/characters/asana/dressed-light.svg",
  3727. extra: 1133 / 1060,
  3728. bottom: 15.2 / 1148.6
  3729. }
  3730. },
  3731. },
  3732. [
  3733. {
  3734. name: "Standard",
  3735. height: math.unit(7 + 5 / 6, "feet"),
  3736. default: true
  3737. },
  3738. {
  3739. name: "Large",
  3740. height: math.unit(10, "meters")
  3741. },
  3742. {
  3743. name: "Macro",
  3744. height: math.unit(2500, "meters")
  3745. },
  3746. {
  3747. name: "Megamacro",
  3748. height: math.unit(5e6, "meters")
  3749. },
  3750. {
  3751. name: "Examacro",
  3752. height: math.unit(5e12, "lightyears")
  3753. },
  3754. {
  3755. name: "Max Size",
  3756. height: math.unit(1e31, "lightyears")
  3757. }
  3758. ]
  3759. ))
  3760. characterMakers.push(() => makeCharacter(
  3761. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3762. {
  3763. front: {
  3764. height: math.unit(2, "meter"),
  3765. weight: math.unit(60, "kg"),
  3766. name: "Front",
  3767. image: {
  3768. source: "./media/characters/ebony/front.svg",
  3769. bottom: 0.03,
  3770. extra: 1045 / 810 + 0.03
  3771. }
  3772. },
  3773. side: {
  3774. height: math.unit(2, "meter"),
  3775. weight: math.unit(60, "kg"),
  3776. name: "Side",
  3777. image: {
  3778. source: "./media/characters/ebony/side.svg",
  3779. bottom: 0.03,
  3780. extra: 1045 / 810 + 0.03
  3781. }
  3782. },
  3783. back: {
  3784. height: math.unit(2, "meter"),
  3785. weight: math.unit(60, "kg"),
  3786. name: "Back",
  3787. image: {
  3788. source: "./media/characters/ebony/back.svg",
  3789. bottom: 0.01,
  3790. extra: 1045 / 810 + 0.01
  3791. }
  3792. },
  3793. },
  3794. [
  3795. // TODO check why I did this lol
  3796. {
  3797. name: "Standard",
  3798. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3799. default: true
  3800. },
  3801. {
  3802. name: "Macro",
  3803. height: math.unit(200, "feet")
  3804. },
  3805. {
  3806. name: "Gigamacro",
  3807. height: math.unit(13000, "km")
  3808. }
  3809. ]
  3810. ))
  3811. characterMakers.push(() => makeCharacter(
  3812. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3813. {
  3814. front: {
  3815. height: math.unit(6, "feet"),
  3816. weight: math.unit(175, "lb"),
  3817. name: "Front",
  3818. image: {
  3819. source: "./media/characters/mountain/front.svg",
  3820. extra: 972 / 955,
  3821. bottom: 64 / 1036.6
  3822. }
  3823. },
  3824. back: {
  3825. height: math.unit(6, "feet"),
  3826. weight: math.unit(175, "lb"),
  3827. name: "Back",
  3828. image: {
  3829. source: "./media/characters/mountain/back.svg",
  3830. extra: 970 / 950,
  3831. bottom: 28.25 / 999
  3832. }
  3833. },
  3834. },
  3835. [
  3836. {
  3837. name: "Large",
  3838. height: math.unit(20, "meters")
  3839. },
  3840. {
  3841. name: "Macro",
  3842. height: math.unit(300, "meters")
  3843. },
  3844. {
  3845. name: "Gigamacro",
  3846. height: math.unit(10000, "km"),
  3847. default: true
  3848. },
  3849. {
  3850. name: "Examacro",
  3851. height: math.unit(10e9, "lightyears")
  3852. }
  3853. ]
  3854. ))
  3855. characterMakers.push(() => makeCharacter(
  3856. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3857. {
  3858. front: {
  3859. height: math.unit(8, "feet"),
  3860. weight: math.unit(500, "lb"),
  3861. name: "Front",
  3862. image: {
  3863. source: "./media/characters/rick/front.svg"
  3864. }
  3865. }
  3866. },
  3867. [
  3868. {
  3869. name: "Normal",
  3870. height: math.unit(8, "feet"),
  3871. default: true
  3872. },
  3873. {
  3874. name: "Macro",
  3875. height: math.unit(5, "km")
  3876. }
  3877. ]
  3878. ))
  3879. characterMakers.push(() => makeCharacter(
  3880. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3881. {
  3882. front: {
  3883. height: math.unit(8, "feet"),
  3884. weight: math.unit(120, "lb"),
  3885. name: "Front",
  3886. image: {
  3887. source: "./media/characters/ona/front.svg"
  3888. }
  3889. },
  3890. frontAlt: {
  3891. height: math.unit(8, "feet"),
  3892. weight: math.unit(120, "lb"),
  3893. name: "Front (Alt)",
  3894. image: {
  3895. source: "./media/characters/ona/front-alt.svg"
  3896. }
  3897. },
  3898. back: {
  3899. height: math.unit(8, "feet"),
  3900. weight: math.unit(120, "lb"),
  3901. name: "Back",
  3902. image: {
  3903. source: "./media/characters/ona/back.svg"
  3904. }
  3905. },
  3906. foot: {
  3907. height: math.unit(1.1, "feet"),
  3908. name: "Foot",
  3909. image: {
  3910. source: "./media/characters/ona/foot.svg"
  3911. }
  3912. }
  3913. },
  3914. [
  3915. {
  3916. name: "Megamacro",
  3917. height: math.unit(70, "km"),
  3918. default: true
  3919. },
  3920. {
  3921. name: "Gigamacro",
  3922. height: math.unit(681818, "miles")
  3923. },
  3924. {
  3925. name: "Examacro",
  3926. height: math.unit(3800000, "lightyears")
  3927. },
  3928. ]
  3929. ))
  3930. characterMakers.push(() => makeCharacter(
  3931. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3932. {
  3933. front: {
  3934. height: math.unit(12, "feet"),
  3935. weight: math.unit(3000, "lb"),
  3936. name: "Front",
  3937. image: {
  3938. source: "./media/characters/mech/front.svg",
  3939. extra: 2900 / 2770,
  3940. bottom: 110 / 3010
  3941. }
  3942. },
  3943. back: {
  3944. height: math.unit(12, "feet"),
  3945. weight: math.unit(3000, "lb"),
  3946. name: "Back",
  3947. image: {
  3948. source: "./media/characters/mech/back.svg",
  3949. extra: 3011 / 2890,
  3950. bottom: 94 / 3105
  3951. }
  3952. },
  3953. maw: {
  3954. height: math.unit(3.07, "feet"),
  3955. name: "Maw",
  3956. image: {
  3957. source: "./media/characters/mech/maw.svg"
  3958. }
  3959. },
  3960. head: {
  3961. height: math.unit(2.82, "feet"),
  3962. name: "Head",
  3963. image: {
  3964. source: "./media/characters/mech/head.svg"
  3965. }
  3966. },
  3967. dick: {
  3968. height: math.unit(1.43, "feet"),
  3969. name: "Dick",
  3970. image: {
  3971. source: "./media/characters/mech/dick.svg"
  3972. }
  3973. },
  3974. },
  3975. [
  3976. {
  3977. name: "Normal",
  3978. height: math.unit(12, "feet")
  3979. },
  3980. {
  3981. name: "Macro",
  3982. height: math.unit(300, "feet"),
  3983. default: true
  3984. },
  3985. {
  3986. name: "Macro+",
  3987. height: math.unit(1500, "feet")
  3988. },
  3989. ]
  3990. ))
  3991. characterMakers.push(() => makeCharacter(
  3992. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3993. {
  3994. front: {
  3995. height: math.unit(1.3, "meter"),
  3996. weight: math.unit(30, "kg"),
  3997. name: "Front",
  3998. image: {
  3999. source: "./media/characters/gregory/front.svg",
  4000. }
  4001. }
  4002. },
  4003. [
  4004. {
  4005. name: "Normal",
  4006. height: math.unit(1.3, "meter"),
  4007. default: true
  4008. },
  4009. {
  4010. name: "Macro",
  4011. height: math.unit(20, "meter")
  4012. }
  4013. ]
  4014. ))
  4015. characterMakers.push(() => makeCharacter(
  4016. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4017. {
  4018. front: {
  4019. height: math.unit(2.8, "meter"),
  4020. weight: math.unit(200, "kg"),
  4021. name: "Front",
  4022. image: {
  4023. source: "./media/characters/elory/front.svg",
  4024. }
  4025. }
  4026. },
  4027. [
  4028. {
  4029. name: "Normal",
  4030. height: math.unit(2.8, "meter"),
  4031. default: true
  4032. },
  4033. {
  4034. name: "Macro",
  4035. height: math.unit(38, "meter")
  4036. }
  4037. ]
  4038. ))
  4039. characterMakers.push(() => makeCharacter(
  4040. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4041. {
  4042. front: {
  4043. height: math.unit(470, "feet"),
  4044. weight: math.unit(924, "tons"),
  4045. name: "Front",
  4046. image: {
  4047. source: "./media/characters/angelpatamon/front.svg",
  4048. }
  4049. }
  4050. },
  4051. [
  4052. {
  4053. name: "Normal",
  4054. height: math.unit(470, "feet"),
  4055. default: true
  4056. },
  4057. {
  4058. name: "Deity Size I",
  4059. height: math.unit(28651.2, "km")
  4060. },
  4061. {
  4062. name: "Deity Size II",
  4063. height: math.unit(171907.2, "km")
  4064. }
  4065. ]
  4066. ))
  4067. characterMakers.push(() => makeCharacter(
  4068. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4069. {
  4070. side: {
  4071. height: math.unit(7.2, "meter"),
  4072. weight: math.unit(8.2, "tons"),
  4073. name: "Side",
  4074. image: {
  4075. source: "./media/characters/cryae/side.svg",
  4076. extra: 3500 / 1500
  4077. }
  4078. }
  4079. },
  4080. [
  4081. {
  4082. name: "Normal",
  4083. height: math.unit(7.2, "meter"),
  4084. default: true
  4085. }
  4086. ]
  4087. ))
  4088. characterMakers.push(() => makeCharacter(
  4089. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4090. {
  4091. front: {
  4092. height: math.unit(6, "feet"),
  4093. weight: math.unit(175, "lb"),
  4094. name: "Front",
  4095. image: {
  4096. source: "./media/characters/xera/front.svg",
  4097. extra: 2377 / 1972,
  4098. bottom: 75.5 / 2452
  4099. }
  4100. },
  4101. side: {
  4102. height: math.unit(6, "feet"),
  4103. weight: math.unit(175, "lb"),
  4104. name: "Side",
  4105. image: {
  4106. source: "./media/characters/xera/side.svg",
  4107. extra: 2345 / 2019,
  4108. bottom: 39.7 / 2384
  4109. }
  4110. },
  4111. back: {
  4112. height: math.unit(6, "feet"),
  4113. weight: math.unit(175, "lb"),
  4114. name: "Back",
  4115. image: {
  4116. source: "./media/characters/xera/back.svg",
  4117. extra: 2095 / 1984,
  4118. bottom: 67 / 2166
  4119. }
  4120. },
  4121. },
  4122. [
  4123. {
  4124. name: "Small",
  4125. height: math.unit(10, "feet")
  4126. },
  4127. {
  4128. name: "Macro",
  4129. height: math.unit(500, "meters"),
  4130. default: true
  4131. },
  4132. {
  4133. name: "Macro+",
  4134. height: math.unit(10, "km")
  4135. },
  4136. {
  4137. name: "Gigamacro",
  4138. height: math.unit(25000, "km")
  4139. },
  4140. {
  4141. name: "Teramacro",
  4142. height: math.unit(3e6, "km")
  4143. }
  4144. ]
  4145. ))
  4146. characterMakers.push(() => makeCharacter(
  4147. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4148. {
  4149. front: {
  4150. height: math.unit(6, "feet"),
  4151. weight: math.unit(175, "lb"),
  4152. name: "Front",
  4153. image: {
  4154. source: "./media/characters/nebula/front.svg",
  4155. extra: 2566 / 2362,
  4156. bottom: 81 / 2644
  4157. }
  4158. }
  4159. },
  4160. [
  4161. {
  4162. name: "Small",
  4163. height: math.unit(4.5, "meters")
  4164. },
  4165. {
  4166. name: "Macro",
  4167. height: math.unit(1500, "meters"),
  4168. default: true
  4169. },
  4170. {
  4171. name: "Megamacro",
  4172. height: math.unit(150, "km")
  4173. },
  4174. {
  4175. name: "Gigamacro",
  4176. height: math.unit(27000, "km")
  4177. }
  4178. ]
  4179. ))
  4180. characterMakers.push(() => makeCharacter(
  4181. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4182. {
  4183. front: {
  4184. height: math.unit(6, "feet"),
  4185. weight: math.unit(225, "lb"),
  4186. name: "Front",
  4187. image: {
  4188. source: "./media/characters/abysgar/front.svg"
  4189. }
  4190. }
  4191. },
  4192. [
  4193. {
  4194. name: "Small",
  4195. height: math.unit(4.5, "meters")
  4196. },
  4197. {
  4198. name: "Macro",
  4199. height: math.unit(1250, "meters"),
  4200. default: true
  4201. },
  4202. {
  4203. name: "Megamacro",
  4204. height: math.unit(125, "km")
  4205. },
  4206. {
  4207. name: "Gigamacro",
  4208. height: math.unit(26000, "km")
  4209. }
  4210. ]
  4211. ))
  4212. characterMakers.push(() => makeCharacter(
  4213. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4214. {
  4215. front: {
  4216. height: math.unit(6, "feet"),
  4217. weight: math.unit(180, "lb"),
  4218. name: "Front",
  4219. image: {
  4220. source: "./media/characters/yakuz/front.svg"
  4221. }
  4222. }
  4223. },
  4224. [
  4225. {
  4226. name: "Small",
  4227. height: math.unit(5, "meters")
  4228. },
  4229. {
  4230. name: "Macro",
  4231. height: math.unit(1500, "meters"),
  4232. default: true
  4233. },
  4234. {
  4235. name: "Megamacro",
  4236. height: math.unit(200, "km")
  4237. },
  4238. {
  4239. name: "Gigamacro",
  4240. height: math.unit(100000, "km")
  4241. }
  4242. ]
  4243. ))
  4244. characterMakers.push(() => makeCharacter(
  4245. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4246. {
  4247. front: {
  4248. height: math.unit(6, "feet"),
  4249. weight: math.unit(175, "lb"),
  4250. name: "Front",
  4251. image: {
  4252. source: "./media/characters/mirova/front.svg",
  4253. extra: 3334 / 3071,
  4254. bottom: 42 / 3375.6
  4255. }
  4256. }
  4257. },
  4258. [
  4259. {
  4260. name: "Small",
  4261. height: math.unit(5, "meters")
  4262. },
  4263. {
  4264. name: "Macro",
  4265. height: math.unit(900, "meters"),
  4266. default: true
  4267. },
  4268. {
  4269. name: "Megamacro",
  4270. height: math.unit(135, "km")
  4271. },
  4272. {
  4273. name: "Gigamacro",
  4274. height: math.unit(20000, "km")
  4275. }
  4276. ]
  4277. ))
  4278. characterMakers.push(() => makeCharacter(
  4279. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4280. {
  4281. side: {
  4282. height: math.unit(28.35, "feet"),
  4283. weight: math.unit(99.75, "tons"),
  4284. name: "Side",
  4285. image: {
  4286. source: "./media/characters/asana-mech/side.svg",
  4287. extra: 923 / 699,
  4288. bottom: 50 / 975
  4289. }
  4290. },
  4291. chaingun: {
  4292. height: math.unit(7, "feet"),
  4293. weight: math.unit(2400, "lb"),
  4294. name: "Chaingun",
  4295. image: {
  4296. source: "./media/characters/asana-mech/chaingun.svg"
  4297. }
  4298. },
  4299. laser: {
  4300. height: math.unit(7.12, "feet"),
  4301. weight: math.unit(2000, "lb"),
  4302. name: "Laser",
  4303. image: {
  4304. source: "./media/characters/asana-mech/laser.svg"
  4305. }
  4306. },
  4307. },
  4308. [
  4309. {
  4310. name: "Normal",
  4311. height: math.unit(28.35, "feet"),
  4312. default: true
  4313. },
  4314. {
  4315. name: "Macro",
  4316. height: math.unit(2500, "feet")
  4317. },
  4318. {
  4319. name: "Megamacro",
  4320. height: math.unit(25, "miles")
  4321. },
  4322. {
  4323. name: "Examacro",
  4324. height: math.unit(6e8, "lightyears")
  4325. },
  4326. ]
  4327. ))
  4328. characterMakers.push(() => makeCharacter(
  4329. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4330. {
  4331. front: {
  4332. height: math.unit(5, "meters"),
  4333. weight: math.unit(1000, "kg"),
  4334. name: "Front",
  4335. image: {
  4336. source: "./media/characters/asche/front.svg",
  4337. extra: 1258 / 1190,
  4338. bottom: 47 / 1305
  4339. }
  4340. },
  4341. frontUnderwear: {
  4342. height: math.unit(5, "meters"),
  4343. weight: math.unit(1000, "kg"),
  4344. name: "Front (Underwear)",
  4345. image: {
  4346. source: "./media/characters/asche/front-underwear.svg",
  4347. extra: 1258 / 1190,
  4348. bottom: 47 / 1305
  4349. }
  4350. },
  4351. frontDressed: {
  4352. height: math.unit(5, "meters"),
  4353. weight: math.unit(1000, "kg"),
  4354. name: "Front (Dressed)",
  4355. image: {
  4356. source: "./media/characters/asche/front-dressed.svg",
  4357. extra: 1258 / 1190,
  4358. bottom: 47 / 1305
  4359. }
  4360. },
  4361. frontArmor: {
  4362. height: math.unit(5, "meters"),
  4363. weight: math.unit(1000, "kg"),
  4364. name: "Front (Armored)",
  4365. image: {
  4366. source: "./media/characters/asche/front-armored.svg",
  4367. extra: 1374 / 1308,
  4368. bottom: 23 / 1397
  4369. }
  4370. },
  4371. mp724: {
  4372. height: math.unit(0.96, "meters"),
  4373. weight: math.unit(38, "kg"),
  4374. name: "H&K MP724",
  4375. image: {
  4376. source: "./media/characters/asche/h&k-mp724.svg"
  4377. }
  4378. },
  4379. side: {
  4380. height: math.unit(5, "meters"),
  4381. weight: math.unit(1000, "kg"),
  4382. name: "Side",
  4383. image: {
  4384. source: "./media/characters/asche/side.svg",
  4385. extra: 1717 / 1609,
  4386. bottom: 0.005
  4387. }
  4388. },
  4389. back: {
  4390. height: math.unit(5, "meters"),
  4391. weight: math.unit(1000, "kg"),
  4392. name: "Back",
  4393. image: {
  4394. source: "./media/characters/asche/back.svg",
  4395. extra: 1570 / 1501
  4396. }
  4397. },
  4398. },
  4399. [
  4400. {
  4401. name: "DEFCON 5",
  4402. height: math.unit(5, "meters")
  4403. },
  4404. {
  4405. name: "DEFCON 4",
  4406. height: math.unit(500, "meters"),
  4407. default: true
  4408. },
  4409. {
  4410. name: "DEFCON 3",
  4411. height: math.unit(5, "km")
  4412. },
  4413. {
  4414. name: "DEFCON 2",
  4415. height: math.unit(500, "km")
  4416. },
  4417. {
  4418. name: "DEFCON 1",
  4419. height: math.unit(500000, "km")
  4420. },
  4421. {
  4422. name: "DEFCON 0",
  4423. height: math.unit(3, "gigaparsecs")
  4424. },
  4425. ]
  4426. ))
  4427. characterMakers.push(() => makeCharacter(
  4428. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4429. {
  4430. front: {
  4431. height: math.unit(2, "meters"),
  4432. weight: math.unit(76, "kg"),
  4433. name: "Front",
  4434. image: {
  4435. source: "./media/characters/gale/front.svg"
  4436. }
  4437. },
  4438. frontAlt1: {
  4439. height: math.unit(2, "meters"),
  4440. weight: math.unit(76, "kg"),
  4441. name: "Front (Alt 1)",
  4442. image: {
  4443. source: "./media/characters/gale/front-alt-1.svg"
  4444. }
  4445. },
  4446. frontAlt2: {
  4447. height: math.unit(2, "meters"),
  4448. weight: math.unit(76, "kg"),
  4449. name: "Front (Alt 2)",
  4450. image: {
  4451. source: "./media/characters/gale/front-alt-2.svg"
  4452. }
  4453. },
  4454. },
  4455. [
  4456. {
  4457. name: "Normal",
  4458. height: math.unit(7, "feet")
  4459. },
  4460. {
  4461. name: "Macro",
  4462. height: math.unit(150, "feet"),
  4463. default: true
  4464. },
  4465. {
  4466. name: "Macro+",
  4467. height: math.unit(300, "feet")
  4468. },
  4469. ]
  4470. ))
  4471. characterMakers.push(() => makeCharacter(
  4472. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4473. {
  4474. front: {
  4475. height: math.unit(2, "meters"),
  4476. weight: math.unit(76, "kg"),
  4477. name: "Front",
  4478. image: {
  4479. source: "./media/characters/draylen/front.svg"
  4480. }
  4481. }
  4482. },
  4483. [
  4484. {
  4485. name: "Macro",
  4486. height: math.unit(150, "feet"),
  4487. default: true
  4488. }
  4489. ]
  4490. ))
  4491. characterMakers.push(() => makeCharacter(
  4492. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4493. {
  4494. front: {
  4495. height: math.unit(7 + 9 / 12, "feet"),
  4496. weight: math.unit(379, "lbs"),
  4497. name: "Front",
  4498. image: {
  4499. source: "./media/characters/chez/front.svg"
  4500. }
  4501. },
  4502. side: {
  4503. height: math.unit(7 + 9 / 12, "feet"),
  4504. weight: math.unit(379, "lbs"),
  4505. name: "Side",
  4506. image: {
  4507. source: "./media/characters/chez/side.svg"
  4508. }
  4509. }
  4510. },
  4511. [
  4512. {
  4513. name: "Normal",
  4514. height: math.unit(7 + 9 / 12, "feet"),
  4515. default: true
  4516. },
  4517. {
  4518. name: "God King",
  4519. height: math.unit(9750000, "meters")
  4520. }
  4521. ]
  4522. ))
  4523. characterMakers.push(() => makeCharacter(
  4524. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4525. {
  4526. front: {
  4527. height: math.unit(6, "feet"),
  4528. weight: math.unit(275, "lbs"),
  4529. name: "Front",
  4530. image: {
  4531. source: "./media/characters/kaylum/front.svg",
  4532. bottom: 0.01,
  4533. extra: 1166 / 1031
  4534. }
  4535. },
  4536. frontWingless: {
  4537. height: math.unit(6, "feet"),
  4538. weight: math.unit(275, "lbs"),
  4539. name: "Front (Wingless)",
  4540. image: {
  4541. source: "./media/characters/kaylum/front-wingless.svg",
  4542. bottom: 0.01,
  4543. extra: 1117 / 1031
  4544. }
  4545. }
  4546. },
  4547. [
  4548. {
  4549. name: "Normal",
  4550. height: math.unit(3.05, "meters")
  4551. },
  4552. {
  4553. name: "Master",
  4554. height: math.unit(5.5, "meters")
  4555. },
  4556. {
  4557. name: "Rampage",
  4558. height: math.unit(19, "meters")
  4559. },
  4560. {
  4561. name: "Macro Lite",
  4562. height: math.unit(37, "meters")
  4563. },
  4564. {
  4565. name: "Hyper Predator",
  4566. height: math.unit(61, "meters")
  4567. },
  4568. {
  4569. name: "Macro",
  4570. height: math.unit(138, "meters"),
  4571. default: true
  4572. }
  4573. ]
  4574. ))
  4575. characterMakers.push(() => makeCharacter(
  4576. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4577. {
  4578. front: {
  4579. height: math.unit(6, "feet"),
  4580. weight: math.unit(150, "lbs"),
  4581. name: "Front",
  4582. image: {
  4583. source: "./media/characters/geta/front.svg"
  4584. }
  4585. }
  4586. },
  4587. [
  4588. {
  4589. name: "Micro",
  4590. height: math.unit(3, "inches"),
  4591. default: true
  4592. },
  4593. {
  4594. name: "Normal",
  4595. height: math.unit(5 + 5 / 12, "feet")
  4596. }
  4597. ]
  4598. ))
  4599. characterMakers.push(() => makeCharacter(
  4600. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4601. {
  4602. front: {
  4603. height: math.unit(6, "feet"),
  4604. weight: math.unit(300, "lbs"),
  4605. name: "Front",
  4606. image: {
  4607. source: "./media/characters/tyrnn/front.svg"
  4608. }
  4609. }
  4610. },
  4611. [
  4612. {
  4613. name: "Main Height",
  4614. height: math.unit(355, "feet"),
  4615. default: true
  4616. },
  4617. {
  4618. name: "Fave. Height",
  4619. height: math.unit(2400, "feet")
  4620. }
  4621. ]
  4622. ))
  4623. characterMakers.push(() => makeCharacter(
  4624. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4625. {
  4626. front: {
  4627. height: math.unit(6, "feet"),
  4628. weight: math.unit(300, "lbs"),
  4629. name: "Front",
  4630. image: {
  4631. source: "./media/characters/appledectomy/front.svg"
  4632. }
  4633. }
  4634. },
  4635. [
  4636. {
  4637. name: "Macro",
  4638. height: math.unit(2500, "feet")
  4639. },
  4640. {
  4641. name: "Megamacro",
  4642. height: math.unit(50, "miles"),
  4643. default: true
  4644. },
  4645. {
  4646. name: "Gigamacro",
  4647. height: math.unit(5000, "miles")
  4648. },
  4649. {
  4650. name: "Teramacro",
  4651. height: math.unit(250000, "miles")
  4652. },
  4653. ]
  4654. ))
  4655. characterMakers.push(() => makeCharacter(
  4656. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4657. {
  4658. front: {
  4659. height: math.unit(6, "feet"),
  4660. weight: math.unit(200, "lbs"),
  4661. name: "Front",
  4662. image: {
  4663. source: "./media/characters/vulpes/front.svg",
  4664. extra: 573 / 543,
  4665. bottom: 0.033
  4666. }
  4667. },
  4668. side: {
  4669. height: math.unit(6, "feet"),
  4670. weight: math.unit(200, "lbs"),
  4671. name: "Side",
  4672. image: {
  4673. source: "./media/characters/vulpes/side.svg",
  4674. extra: 577 / 549,
  4675. bottom: 11 / 588
  4676. }
  4677. },
  4678. back: {
  4679. height: math.unit(6, "feet"),
  4680. weight: math.unit(200, "lbs"),
  4681. name: "Back",
  4682. image: {
  4683. source: "./media/characters/vulpes/back.svg",
  4684. extra: 573 / 549,
  4685. bottom: 20 / 593
  4686. }
  4687. },
  4688. feet: {
  4689. height: math.unit(1.276, "feet"),
  4690. name: "Feet",
  4691. image: {
  4692. source: "./media/characters/vulpes/feet.svg"
  4693. }
  4694. },
  4695. maw: {
  4696. height: math.unit(1.18, "feet"),
  4697. name: "Maw",
  4698. image: {
  4699. source: "./media/characters/vulpes/maw.svg"
  4700. }
  4701. },
  4702. },
  4703. [
  4704. {
  4705. name: "Micro",
  4706. height: math.unit(2, "inches")
  4707. },
  4708. {
  4709. name: "Normal",
  4710. height: math.unit(6.3, "feet")
  4711. },
  4712. {
  4713. name: "Macro",
  4714. height: math.unit(850, "feet")
  4715. },
  4716. {
  4717. name: "Megamacro",
  4718. height: math.unit(7500, "feet"),
  4719. default: true
  4720. },
  4721. {
  4722. name: "Gigamacro",
  4723. height: math.unit(570000, "miles")
  4724. }
  4725. ]
  4726. ))
  4727. characterMakers.push(() => makeCharacter(
  4728. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4729. {
  4730. front: {
  4731. height: math.unit(6, "feet"),
  4732. weight: math.unit(210, "lbs"),
  4733. name: "Front",
  4734. image: {
  4735. source: "./media/characters/rain-fallen/front.svg"
  4736. }
  4737. },
  4738. side: {
  4739. height: math.unit(6, "feet"),
  4740. weight: math.unit(210, "lbs"),
  4741. name: "Side",
  4742. image: {
  4743. source: "./media/characters/rain-fallen/side.svg"
  4744. }
  4745. },
  4746. back: {
  4747. height: math.unit(6, "feet"),
  4748. weight: math.unit(210, "lbs"),
  4749. name: "Back",
  4750. image: {
  4751. source: "./media/characters/rain-fallen/back.svg"
  4752. }
  4753. },
  4754. feral: {
  4755. height: math.unit(9, "feet"),
  4756. weight: math.unit(700, "lbs"),
  4757. name: "Feral",
  4758. image: {
  4759. source: "./media/characters/rain-fallen/feral.svg"
  4760. }
  4761. },
  4762. },
  4763. [
  4764. {
  4765. name: "Meddling with Mortals",
  4766. height: math.unit(8 + 8/12, "feet")
  4767. },
  4768. {
  4769. name: "Normal",
  4770. height: math.unit(5, "meter")
  4771. },
  4772. {
  4773. name: "Macro",
  4774. height: math.unit(150, "meter"),
  4775. default: true
  4776. },
  4777. {
  4778. name: "Megamacro",
  4779. height: math.unit(278e6, "meter")
  4780. },
  4781. {
  4782. name: "Gigamacro",
  4783. height: math.unit(2e9, "meter")
  4784. },
  4785. {
  4786. name: "Teramacro",
  4787. height: math.unit(8e12, "meter")
  4788. },
  4789. {
  4790. name: "Devourer",
  4791. height: math.unit(14, "zettameters")
  4792. },
  4793. {
  4794. name: "Scarlet King",
  4795. height: math.unit(18, "yottameters")
  4796. },
  4797. {
  4798. name: "Void",
  4799. height: math.unit(1e88, "yottameters")
  4800. }
  4801. ]
  4802. ))
  4803. characterMakers.push(() => makeCharacter(
  4804. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4805. {
  4806. standing: {
  4807. height: math.unit(6, "feet"),
  4808. weight: math.unit(180, "lbs"),
  4809. name: "Standing",
  4810. image: {
  4811. source: "./media/characters/zaakira/standing.svg",
  4812. extra: 1599/1504,
  4813. bottom: 39/1638
  4814. }
  4815. },
  4816. laying: {
  4817. height: math.unit(3, "feet"),
  4818. weight: math.unit(180, "lbs"),
  4819. name: "Laying",
  4820. image: {
  4821. source: "./media/characters/zaakira/laying.svg"
  4822. }
  4823. },
  4824. },
  4825. [
  4826. {
  4827. name: "Normal",
  4828. height: math.unit(12, "feet")
  4829. },
  4830. {
  4831. name: "Macro",
  4832. height: math.unit(279, "feet"),
  4833. default: true
  4834. }
  4835. ]
  4836. ))
  4837. characterMakers.push(() => makeCharacter(
  4838. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4839. {
  4840. femSfw: {
  4841. height: math.unit(8, "feet"),
  4842. weight: math.unit(350, "lb"),
  4843. name: "Fem",
  4844. image: {
  4845. source: "./media/characters/sigvald/fem-sfw.svg",
  4846. extra: 182 / 164,
  4847. bottom: 8.7 / 190.5
  4848. }
  4849. },
  4850. femNsfw: {
  4851. height: math.unit(8, "feet"),
  4852. weight: math.unit(350, "lb"),
  4853. name: "Fem (NSFW)",
  4854. image: {
  4855. source: "./media/characters/sigvald/fem-nsfw.svg",
  4856. extra: 182 / 164,
  4857. bottom: 8.7 / 190.5
  4858. }
  4859. },
  4860. maleNsfw: {
  4861. height: math.unit(8, "feet"),
  4862. weight: math.unit(350, "lb"),
  4863. name: "Male (NSFW)",
  4864. image: {
  4865. source: "./media/characters/sigvald/male-nsfw.svg",
  4866. extra: 182 / 164,
  4867. bottom: 8.7 / 190.5
  4868. }
  4869. },
  4870. hermNsfw: {
  4871. height: math.unit(8, "feet"),
  4872. weight: math.unit(350, "lb"),
  4873. name: "Herm (NSFW)",
  4874. image: {
  4875. source: "./media/characters/sigvald/herm-nsfw.svg",
  4876. extra: 182 / 164,
  4877. bottom: 8.7 / 190.5
  4878. }
  4879. },
  4880. dick: {
  4881. height: math.unit(2.36, "feet"),
  4882. name: "Dick",
  4883. image: {
  4884. source: "./media/characters/sigvald/dick.svg"
  4885. }
  4886. },
  4887. eye: {
  4888. height: math.unit(0.31, "feet"),
  4889. name: "Eye",
  4890. image: {
  4891. source: "./media/characters/sigvald/eye.svg"
  4892. }
  4893. },
  4894. mouth: {
  4895. height: math.unit(0.92, "feet"),
  4896. name: "Mouth",
  4897. image: {
  4898. source: "./media/characters/sigvald/mouth.svg"
  4899. }
  4900. },
  4901. paws: {
  4902. height: math.unit(2.2, "feet"),
  4903. name: "Paws",
  4904. image: {
  4905. source: "./media/characters/sigvald/paws.svg"
  4906. }
  4907. }
  4908. },
  4909. [
  4910. {
  4911. name: "Normal",
  4912. height: math.unit(8, "feet")
  4913. },
  4914. {
  4915. name: "Large",
  4916. height: math.unit(12, "feet")
  4917. },
  4918. {
  4919. name: "Larger",
  4920. height: math.unit(20, "feet")
  4921. },
  4922. {
  4923. name: "Macro",
  4924. height: math.unit(150, "feet")
  4925. },
  4926. {
  4927. name: "Macro+",
  4928. height: math.unit(200, "feet"),
  4929. default: true
  4930. },
  4931. ]
  4932. ))
  4933. characterMakers.push(() => makeCharacter(
  4934. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4935. {
  4936. side: {
  4937. height: math.unit(12, "feet"),
  4938. weight: math.unit(2000, "kg"),
  4939. name: "Side",
  4940. image: {
  4941. source: "./media/characters/scott/side.svg",
  4942. extra: 754 / 724,
  4943. bottom: 0.069
  4944. }
  4945. },
  4946. upright: {
  4947. height: math.unit(12, "feet"),
  4948. weight: math.unit(2000, "kg"),
  4949. name: "Upright",
  4950. image: {
  4951. source: "./media/characters/scott/upright.svg",
  4952. extra: 3881 / 3722,
  4953. bottom: 0.05
  4954. }
  4955. },
  4956. },
  4957. [
  4958. {
  4959. name: "Normal",
  4960. height: math.unit(12, "feet"),
  4961. default: true
  4962. },
  4963. ]
  4964. ))
  4965. characterMakers.push(() => makeCharacter(
  4966. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4967. {
  4968. side: {
  4969. height: math.unit(8, "meters"),
  4970. weight: math.unit(84755, "lbs"),
  4971. name: "Side",
  4972. image: {
  4973. source: "./media/characters/tobias/side.svg",
  4974. extra: 1474 / 1096,
  4975. bottom: 38.9 / 1513.1235
  4976. }
  4977. },
  4978. },
  4979. [
  4980. {
  4981. name: "Normal",
  4982. height: math.unit(8, "meters"),
  4983. default: true
  4984. },
  4985. ]
  4986. ))
  4987. characterMakers.push(() => makeCharacter(
  4988. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4989. {
  4990. front: {
  4991. height: math.unit(5.5, "feet"),
  4992. weight: math.unit(400, "lbs"),
  4993. name: "Front",
  4994. image: {
  4995. source: "./media/characters/kieran/front.svg",
  4996. extra: 2694 / 2364,
  4997. bottom: 217 / 2908
  4998. }
  4999. },
  5000. side: {
  5001. height: math.unit(5.5, "feet"),
  5002. weight: math.unit(400, "lbs"),
  5003. name: "Side",
  5004. image: {
  5005. source: "./media/characters/kieran/side.svg",
  5006. extra: 875 / 777,
  5007. bottom: 84.6 / 959
  5008. }
  5009. },
  5010. },
  5011. [
  5012. {
  5013. name: "Normal",
  5014. height: math.unit(5.5, "feet"),
  5015. default: true
  5016. },
  5017. ]
  5018. ))
  5019. characterMakers.push(() => makeCharacter(
  5020. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5021. {
  5022. side: {
  5023. height: math.unit(2, "meters"),
  5024. weight: math.unit(70, "kg"),
  5025. name: "Side",
  5026. image: {
  5027. source: "./media/characters/sanya/side.svg",
  5028. bottom: 0.02,
  5029. extra: 1.02
  5030. }
  5031. },
  5032. },
  5033. [
  5034. {
  5035. name: "Small",
  5036. height: math.unit(2, "meters")
  5037. },
  5038. {
  5039. name: "Normal",
  5040. height: math.unit(3, "meters")
  5041. },
  5042. {
  5043. name: "Macro",
  5044. height: math.unit(16, "meters"),
  5045. default: true
  5046. },
  5047. ]
  5048. ))
  5049. characterMakers.push(() => makeCharacter(
  5050. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5051. {
  5052. front: {
  5053. height: math.unit(2, "meters"),
  5054. weight: math.unit(120, "kg"),
  5055. name: "Front",
  5056. image: {
  5057. source: "./media/characters/miranda/front.svg",
  5058. extra: 195 / 185,
  5059. bottom: 10.9 / 206.5
  5060. }
  5061. },
  5062. back: {
  5063. height: math.unit(2, "meters"),
  5064. weight: math.unit(120, "kg"),
  5065. name: "Back",
  5066. image: {
  5067. source: "./media/characters/miranda/back.svg",
  5068. extra: 201 / 193,
  5069. bottom: 2.3 / 203.7
  5070. }
  5071. },
  5072. },
  5073. [
  5074. {
  5075. name: "Normal",
  5076. height: math.unit(10, "feet"),
  5077. default: true
  5078. }
  5079. ]
  5080. ))
  5081. characterMakers.push(() => makeCharacter(
  5082. { name: "James", species: ["deer"], tags: ["anthro"] },
  5083. {
  5084. side: {
  5085. height: math.unit(2, "meters"),
  5086. weight: math.unit(100, "kg"),
  5087. name: "Front",
  5088. image: {
  5089. source: "./media/characters/james/front.svg",
  5090. extra: 10 / 8.5
  5091. }
  5092. },
  5093. },
  5094. [
  5095. {
  5096. name: "Normal",
  5097. height: math.unit(8.5, "feet"),
  5098. default: true
  5099. }
  5100. ]
  5101. ))
  5102. characterMakers.push(() => makeCharacter(
  5103. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5104. {
  5105. side: {
  5106. height: math.unit(9.5, "feet"),
  5107. weight: math.unit(2500, "lbs"),
  5108. name: "Side",
  5109. image: {
  5110. source: "./media/characters/heather/side.svg"
  5111. }
  5112. },
  5113. },
  5114. [
  5115. {
  5116. name: "Normal",
  5117. height: math.unit(9.5, "feet"),
  5118. default: true
  5119. }
  5120. ]
  5121. ))
  5122. characterMakers.push(() => makeCharacter(
  5123. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5124. {
  5125. side: {
  5126. height: math.unit(6.5, "feet"),
  5127. weight: math.unit(400, "lbs"),
  5128. name: "Side",
  5129. image: {
  5130. source: "./media/characters/lukas/side.svg",
  5131. extra: 7.25 / 6.5
  5132. }
  5133. },
  5134. },
  5135. [
  5136. {
  5137. name: "Normal",
  5138. height: math.unit(6.5, "feet"),
  5139. default: true
  5140. }
  5141. ]
  5142. ))
  5143. characterMakers.push(() => makeCharacter(
  5144. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5145. {
  5146. side: {
  5147. height: math.unit(5, "feet"),
  5148. weight: math.unit(3000, "lbs"),
  5149. name: "Side",
  5150. image: {
  5151. source: "./media/characters/louise/side.svg"
  5152. }
  5153. },
  5154. },
  5155. [
  5156. {
  5157. name: "Normal",
  5158. height: math.unit(5, "feet"),
  5159. default: true
  5160. }
  5161. ]
  5162. ))
  5163. characterMakers.push(() => makeCharacter(
  5164. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5165. {
  5166. side: {
  5167. height: math.unit(6, "feet"),
  5168. weight: math.unit(150, "lbs"),
  5169. name: "Side",
  5170. image: {
  5171. source: "./media/characters/ramona/side.svg"
  5172. }
  5173. },
  5174. },
  5175. [
  5176. {
  5177. name: "Normal",
  5178. height: math.unit(5.3, "meters"),
  5179. default: true
  5180. },
  5181. {
  5182. name: "Macro",
  5183. height: math.unit(20, "stories")
  5184. },
  5185. {
  5186. name: "Macro+",
  5187. height: math.unit(50, "stories")
  5188. },
  5189. ]
  5190. ))
  5191. characterMakers.push(() => makeCharacter(
  5192. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5193. {
  5194. standing: {
  5195. height: math.unit(5.75, "feet"),
  5196. weight: math.unit(160, "lbs"),
  5197. name: "Standing",
  5198. image: {
  5199. source: "./media/characters/deerpuff/standing.svg",
  5200. extra: 682 / 624
  5201. }
  5202. },
  5203. sitting: {
  5204. height: math.unit(5.75 / 1.79, "feet"),
  5205. weight: math.unit(160, "lbs"),
  5206. name: "Sitting",
  5207. image: {
  5208. source: "./media/characters/deerpuff/sitting.svg",
  5209. bottom: 44 / 400,
  5210. extra: 1
  5211. }
  5212. },
  5213. taurLaying: {
  5214. height: math.unit(6, "feet"),
  5215. weight: math.unit(400, "lbs"),
  5216. name: "Taur (Laying)",
  5217. image: {
  5218. source: "./media/characters/deerpuff/taur-laying.svg"
  5219. }
  5220. },
  5221. },
  5222. [
  5223. {
  5224. name: "Puffball",
  5225. height: math.unit(6, "inches")
  5226. },
  5227. {
  5228. name: "Normalpuff",
  5229. height: math.unit(5.75, "feet")
  5230. },
  5231. {
  5232. name: "Macropuff",
  5233. height: math.unit(1500, "feet"),
  5234. default: true
  5235. },
  5236. {
  5237. name: "Megapuff",
  5238. height: math.unit(500, "miles")
  5239. },
  5240. {
  5241. name: "Gigapuff",
  5242. height: math.unit(250000, "miles")
  5243. },
  5244. {
  5245. name: "Omegapuff",
  5246. height: math.unit(1000, "lightyears")
  5247. },
  5248. ]
  5249. ))
  5250. characterMakers.push(() => makeCharacter(
  5251. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5252. {
  5253. stomping: {
  5254. height: math.unit(6, "feet"),
  5255. weight: math.unit(170, "lbs"),
  5256. name: "Stomping",
  5257. image: {
  5258. source: "./media/characters/vivian/stomping.svg"
  5259. }
  5260. },
  5261. sitting: {
  5262. height: math.unit(6 / 1.75, "feet"),
  5263. weight: math.unit(170, "lbs"),
  5264. name: "Sitting",
  5265. image: {
  5266. source: "./media/characters/vivian/sitting.svg",
  5267. bottom: 1 / 6.4,
  5268. extra: 1,
  5269. }
  5270. },
  5271. },
  5272. [
  5273. {
  5274. name: "Normal",
  5275. height: math.unit(7, "feet"),
  5276. default: true
  5277. },
  5278. {
  5279. name: "Macro",
  5280. height: math.unit(10, "stories")
  5281. },
  5282. {
  5283. name: "Macro+",
  5284. height: math.unit(30, "stories")
  5285. },
  5286. {
  5287. name: "Megamacro",
  5288. height: math.unit(10, "miles")
  5289. },
  5290. {
  5291. name: "Megamacro+",
  5292. height: math.unit(2750000, "meters")
  5293. },
  5294. ]
  5295. ))
  5296. characterMakers.push(() => makeCharacter(
  5297. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5298. {
  5299. front: {
  5300. height: math.unit(6, "feet"),
  5301. weight: math.unit(160, "lbs"),
  5302. name: "Front",
  5303. image: {
  5304. source: "./media/characters/prince/front.svg",
  5305. extra: 3400 / 3000
  5306. }
  5307. },
  5308. jumping: {
  5309. height: math.unit(6, "feet"),
  5310. weight: math.unit(160, "lbs"),
  5311. name: "Jumping",
  5312. image: {
  5313. source: "./media/characters/prince/jump.svg",
  5314. extra: 2555 / 2134
  5315. }
  5316. },
  5317. },
  5318. [
  5319. {
  5320. name: "Normal",
  5321. height: math.unit(7.75, "feet"),
  5322. default: true
  5323. },
  5324. {
  5325. name: "Not cute",
  5326. height: math.unit(17, "feet")
  5327. },
  5328. {
  5329. name: "I said NOT",
  5330. height: math.unit(91, "feet")
  5331. },
  5332. {
  5333. name: "Please stop",
  5334. height: math.unit(560, "feet")
  5335. },
  5336. {
  5337. name: "What have you done",
  5338. height: math.unit(2200, "feet")
  5339. },
  5340. {
  5341. name: "Deer God",
  5342. height: math.unit(3.6, "miles")
  5343. },
  5344. ]
  5345. ))
  5346. characterMakers.push(() => makeCharacter(
  5347. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5348. {
  5349. standing: {
  5350. height: math.unit(6, "feet"),
  5351. weight: math.unit(300, "lbs"),
  5352. name: "Standing",
  5353. image: {
  5354. source: "./media/characters/psymon/standing.svg",
  5355. extra: 1888 / 1810,
  5356. bottom: 0.05
  5357. }
  5358. },
  5359. slithering: {
  5360. height: math.unit(6, "feet"),
  5361. weight: math.unit(300, "lbs"),
  5362. name: "Slithering",
  5363. image: {
  5364. source: "./media/characters/psymon/slithering.svg",
  5365. extra: 1330 / 1224
  5366. }
  5367. },
  5368. slitheringAlt: {
  5369. height: math.unit(6, "feet"),
  5370. weight: math.unit(300, "lbs"),
  5371. name: "Slithering (Alt)",
  5372. image: {
  5373. source: "./media/characters/psymon/slithering-alt.svg",
  5374. extra: 1330 / 1224
  5375. }
  5376. },
  5377. },
  5378. [
  5379. {
  5380. name: "Normal",
  5381. height: math.unit(11.25, "feet"),
  5382. default: true
  5383. },
  5384. {
  5385. name: "Large",
  5386. height: math.unit(27, "feet")
  5387. },
  5388. {
  5389. name: "Giant",
  5390. height: math.unit(87, "feet")
  5391. },
  5392. {
  5393. name: "Macro",
  5394. height: math.unit(365, "feet")
  5395. },
  5396. {
  5397. name: "Megamacro",
  5398. height: math.unit(3, "miles")
  5399. },
  5400. {
  5401. name: "World Serpent",
  5402. height: math.unit(8000, "miles")
  5403. },
  5404. ]
  5405. ))
  5406. characterMakers.push(() => makeCharacter(
  5407. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5408. {
  5409. front: {
  5410. height: math.unit(6, "feet"),
  5411. weight: math.unit(180, "lbs"),
  5412. name: "Front",
  5413. image: {
  5414. source: "./media/characters/daimos/front.svg",
  5415. extra: 4160 / 3897,
  5416. bottom: 0.021
  5417. }
  5418. }
  5419. },
  5420. [
  5421. {
  5422. name: "Normal",
  5423. height: math.unit(8, "feet"),
  5424. default: true
  5425. },
  5426. {
  5427. name: "Big Dog",
  5428. height: math.unit(22, "feet")
  5429. },
  5430. {
  5431. name: "Macro",
  5432. height: math.unit(127, "feet")
  5433. },
  5434. {
  5435. name: "Megamacro",
  5436. height: math.unit(3600, "feet")
  5437. },
  5438. ]
  5439. ))
  5440. characterMakers.push(() => makeCharacter(
  5441. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5442. {
  5443. side: {
  5444. height: math.unit(6, "feet"),
  5445. weight: math.unit(180, "lbs"),
  5446. name: "Side",
  5447. image: {
  5448. source: "./media/characters/blake/side.svg",
  5449. extra: 1212 / 1120,
  5450. bottom: 0.05
  5451. }
  5452. },
  5453. crouched: {
  5454. height: math.unit(6 * 0.57, "feet"),
  5455. weight: math.unit(180, "lbs"),
  5456. name: "Crouched",
  5457. image: {
  5458. source: "./media/characters/blake/crouched.svg",
  5459. extra: 840 / 587,
  5460. bottom: 0.04
  5461. }
  5462. },
  5463. bent: {
  5464. height: math.unit(6 * 0.75, "feet"),
  5465. weight: math.unit(180, "lbs"),
  5466. name: "Bent",
  5467. image: {
  5468. source: "./media/characters/blake/bent.svg",
  5469. extra: 592 / 544,
  5470. bottom: 0.035
  5471. }
  5472. },
  5473. },
  5474. [
  5475. {
  5476. name: "Normal",
  5477. height: math.unit(8 + 1 / 6, "feet"),
  5478. default: true
  5479. },
  5480. {
  5481. name: "Big Backside",
  5482. height: math.unit(37, "feet")
  5483. },
  5484. {
  5485. name: "Subway Shredder",
  5486. height: math.unit(72, "feet")
  5487. },
  5488. {
  5489. name: "City Carver",
  5490. height: math.unit(1675, "feet")
  5491. },
  5492. {
  5493. name: "Tectonic Tweaker",
  5494. height: math.unit(2300, "miles")
  5495. },
  5496. ]
  5497. ))
  5498. characterMakers.push(() => makeCharacter(
  5499. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5500. {
  5501. front: {
  5502. height: math.unit(6, "feet"),
  5503. weight: math.unit(180, "lbs"),
  5504. name: "Front",
  5505. image: {
  5506. source: "./media/characters/guisetto/front.svg",
  5507. extra: 856 / 817,
  5508. bottom: 0.06
  5509. }
  5510. },
  5511. airborne: {
  5512. height: math.unit(6, "feet"),
  5513. weight: math.unit(180, "lbs"),
  5514. name: "Airborne",
  5515. image: {
  5516. source: "./media/characters/guisetto/airborne.svg",
  5517. extra: 584 / 525
  5518. }
  5519. },
  5520. },
  5521. [
  5522. {
  5523. name: "Normal",
  5524. height: math.unit(10 + 11 / 12, "feet"),
  5525. default: true
  5526. },
  5527. {
  5528. name: "Large",
  5529. height: math.unit(35, "feet")
  5530. },
  5531. {
  5532. name: "Macro",
  5533. height: math.unit(475, "feet")
  5534. },
  5535. ]
  5536. ))
  5537. characterMakers.push(() => makeCharacter(
  5538. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5539. {
  5540. front: {
  5541. height: math.unit(6, "feet"),
  5542. weight: math.unit(180, "lbs"),
  5543. name: "Front",
  5544. image: {
  5545. source: "./media/characters/luxor/front.svg",
  5546. extra: 2940 / 2152
  5547. }
  5548. },
  5549. back: {
  5550. height: math.unit(6, "feet"),
  5551. weight: math.unit(180, "lbs"),
  5552. name: "Back",
  5553. image: {
  5554. source: "./media/characters/luxor/back.svg",
  5555. extra: 1083 / 960
  5556. }
  5557. },
  5558. },
  5559. [
  5560. {
  5561. name: "Normal",
  5562. height: math.unit(5 + 5 / 6, "feet"),
  5563. default: true
  5564. },
  5565. {
  5566. name: "Lamp",
  5567. height: math.unit(50, "feet")
  5568. },
  5569. {
  5570. name: "Lämp",
  5571. height: math.unit(300, "feet")
  5572. },
  5573. {
  5574. name: "The sun is a lamp",
  5575. height: math.unit(250000, "miles")
  5576. },
  5577. ]
  5578. ))
  5579. characterMakers.push(() => makeCharacter(
  5580. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5581. {
  5582. front: {
  5583. height: math.unit(6, "feet"),
  5584. weight: math.unit(50, "lbs"),
  5585. name: "Front",
  5586. image: {
  5587. source: "./media/characters/huoyan/front.svg"
  5588. }
  5589. },
  5590. side: {
  5591. height: math.unit(6, "feet"),
  5592. weight: math.unit(180, "lbs"),
  5593. name: "Side",
  5594. image: {
  5595. source: "./media/characters/huoyan/side.svg"
  5596. }
  5597. },
  5598. },
  5599. [
  5600. {
  5601. name: "Chef",
  5602. height: math.unit(9, "feet")
  5603. },
  5604. {
  5605. name: "Normal",
  5606. height: math.unit(65, "feet"),
  5607. default: true
  5608. },
  5609. {
  5610. name: "Macro",
  5611. height: math.unit(780, "feet")
  5612. },
  5613. {
  5614. name: "Flaming Mountain",
  5615. height: math.unit(4.8, "miles")
  5616. },
  5617. {
  5618. name: "Celestial",
  5619. height: math.unit(765000, "miles")
  5620. },
  5621. ]
  5622. ))
  5623. characterMakers.push(() => makeCharacter(
  5624. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5625. {
  5626. front: {
  5627. height: math.unit(5 + 3 / 4, "feet"),
  5628. weight: math.unit(120, "lbs"),
  5629. name: "Front",
  5630. image: {
  5631. source: "./media/characters/tails/front.svg"
  5632. }
  5633. }
  5634. },
  5635. [
  5636. {
  5637. name: "Normal",
  5638. height: math.unit(5 + 3 / 4, "feet"),
  5639. default: true
  5640. }
  5641. ]
  5642. ))
  5643. characterMakers.push(() => makeCharacter(
  5644. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5645. {
  5646. front: {
  5647. height: math.unit(4, "feet"),
  5648. weight: math.unit(50, "lbs"),
  5649. name: "Front",
  5650. image: {
  5651. source: "./media/characters/rainy/front.svg"
  5652. }
  5653. }
  5654. },
  5655. [
  5656. {
  5657. name: "Macro",
  5658. height: math.unit(800, "feet"),
  5659. default: true
  5660. }
  5661. ]
  5662. ))
  5663. characterMakers.push(() => makeCharacter(
  5664. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5665. {
  5666. front: {
  5667. height: math.unit(6, "feet"),
  5668. weight: math.unit(150, "lbs"),
  5669. name: "Front",
  5670. image: {
  5671. source: "./media/characters/rainier/front.svg"
  5672. }
  5673. }
  5674. },
  5675. [
  5676. {
  5677. name: "Micro",
  5678. height: math.unit(2, "mm"),
  5679. default: true
  5680. }
  5681. ]
  5682. ))
  5683. characterMakers.push(() => makeCharacter(
  5684. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5685. {
  5686. front: {
  5687. height: math.unit(8 + 4/12, "feet"),
  5688. name: "Front",
  5689. image: {
  5690. source: "./media/characters/andy-renard/front.svg",
  5691. extra: 1839/1726,
  5692. bottom: 134/1973
  5693. }
  5694. },
  5695. back: {
  5696. height: math.unit(8 + 4/12, "feet"),
  5697. name: "Back",
  5698. image: {
  5699. source: "./media/characters/andy-renard/back.svg",
  5700. extra: 1838/1710,
  5701. bottom: 105/1943
  5702. }
  5703. },
  5704. },
  5705. [
  5706. {
  5707. name: "Tall",
  5708. height: math.unit(8 + 4/12, "feet")
  5709. },
  5710. {
  5711. name: "Mini Macro",
  5712. height: math.unit(15, "feet"),
  5713. default: true
  5714. },
  5715. {
  5716. name: "Macro",
  5717. height: math.unit(100, "feet")
  5718. },
  5719. {
  5720. name: "Mega Macro",
  5721. height: math.unit(1000, "feet")
  5722. },
  5723. {
  5724. name: "Giga Macro",
  5725. height: math.unit(10, "miles")
  5726. },
  5727. {
  5728. name: "God Macro",
  5729. height: math.unit(1, "multiverse")
  5730. },
  5731. ]
  5732. ))
  5733. characterMakers.push(() => makeCharacter(
  5734. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5735. {
  5736. front: {
  5737. height: math.unit(6, "feet"),
  5738. weight: math.unit(210, "lbs"),
  5739. name: "Front",
  5740. image: {
  5741. source: "./media/characters/cimmaron/front-sfw.svg",
  5742. extra: 701 / 676,
  5743. bottom: 0.046
  5744. }
  5745. },
  5746. back: {
  5747. height: math.unit(6, "feet"),
  5748. weight: math.unit(210, "lbs"),
  5749. name: "Back",
  5750. image: {
  5751. source: "./media/characters/cimmaron/back-sfw.svg",
  5752. extra: 701 / 676,
  5753. bottom: 0.046
  5754. }
  5755. },
  5756. frontNsfw: {
  5757. height: math.unit(6, "feet"),
  5758. weight: math.unit(210, "lbs"),
  5759. name: "Front (NSFW)",
  5760. image: {
  5761. source: "./media/characters/cimmaron/front-nsfw.svg",
  5762. extra: 701 / 676,
  5763. bottom: 0.046
  5764. }
  5765. },
  5766. backNsfw: {
  5767. height: math.unit(6, "feet"),
  5768. weight: math.unit(210, "lbs"),
  5769. name: "Back (NSFW)",
  5770. image: {
  5771. source: "./media/characters/cimmaron/back-nsfw.svg",
  5772. extra: 701 / 676,
  5773. bottom: 0.046
  5774. }
  5775. },
  5776. dick: {
  5777. height: math.unit(1.714, "feet"),
  5778. name: "Dick",
  5779. image: {
  5780. source: "./media/characters/cimmaron/dick.svg"
  5781. }
  5782. },
  5783. },
  5784. [
  5785. {
  5786. name: "Normal",
  5787. height: math.unit(6, "feet"),
  5788. default: true
  5789. },
  5790. {
  5791. name: "Macro Mayor",
  5792. height: math.unit(350, "meters")
  5793. },
  5794. ]
  5795. ))
  5796. characterMakers.push(() => makeCharacter(
  5797. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5798. {
  5799. front: {
  5800. height: math.unit(6, "feet"),
  5801. weight: math.unit(200, "lbs"),
  5802. name: "Front",
  5803. image: {
  5804. source: "./media/characters/akari/front.svg",
  5805. extra: 962 / 901,
  5806. bottom: 0.04
  5807. }
  5808. }
  5809. },
  5810. [
  5811. {
  5812. name: "Micro",
  5813. height: math.unit(5, "inches"),
  5814. default: true
  5815. },
  5816. {
  5817. name: "Normal",
  5818. height: math.unit(7, "feet")
  5819. },
  5820. ]
  5821. ))
  5822. characterMakers.push(() => makeCharacter(
  5823. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5824. {
  5825. front: {
  5826. height: math.unit(6, "feet"),
  5827. weight: math.unit(140, "lbs"),
  5828. name: "Front",
  5829. image: {
  5830. source: "./media/characters/cynosura/front.svg",
  5831. extra: 896 / 847
  5832. }
  5833. },
  5834. back: {
  5835. height: math.unit(6, "feet"),
  5836. weight: math.unit(140, "lbs"),
  5837. name: "Back",
  5838. image: {
  5839. source: "./media/characters/cynosura/back.svg",
  5840. extra: 1365 / 1250
  5841. }
  5842. },
  5843. },
  5844. [
  5845. {
  5846. name: "Micro",
  5847. height: math.unit(4, "inches")
  5848. },
  5849. {
  5850. name: "Normal",
  5851. height: math.unit(5.75, "feet"),
  5852. default: true
  5853. },
  5854. {
  5855. name: "Tall",
  5856. height: math.unit(10, "feet")
  5857. },
  5858. {
  5859. name: "Big",
  5860. height: math.unit(20, "feet")
  5861. },
  5862. {
  5863. name: "Macro",
  5864. height: math.unit(50, "feet")
  5865. },
  5866. ]
  5867. ))
  5868. characterMakers.push(() => makeCharacter(
  5869. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5870. {
  5871. front: {
  5872. height: math.unit(13 + 2/12, "feet"),
  5873. weight: math.unit(800, "kg"),
  5874. name: "Front",
  5875. image: {
  5876. source: "./media/characters/gin/front.svg",
  5877. extra: 1312/1191,
  5878. bottom: 45/1357
  5879. }
  5880. },
  5881. mouth: {
  5882. height: math.unit(2.39 * 1.8, "feet"),
  5883. name: "Mouth",
  5884. image: {
  5885. source: "./media/characters/gin/mouth.svg"
  5886. }
  5887. },
  5888. hand: {
  5889. height: math.unit(1.57 * 2.19, "feet"),
  5890. name: "Hand",
  5891. image: {
  5892. source: "./media/characters/gin/hand.svg"
  5893. }
  5894. },
  5895. foot: {
  5896. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5897. name: "Foot",
  5898. image: {
  5899. source: "./media/characters/gin/foot.svg"
  5900. }
  5901. },
  5902. sole: {
  5903. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5904. name: "Sole",
  5905. image: {
  5906. source: "./media/characters/gin/sole.svg"
  5907. }
  5908. },
  5909. },
  5910. [
  5911. {
  5912. name: "Very Small",
  5913. height: math.unit(13 + 2 / 12, "feet")
  5914. },
  5915. {
  5916. name: "Micro",
  5917. height: math.unit(600, "miles")
  5918. },
  5919. {
  5920. name: "Regular",
  5921. height: math.unit(20, "earths"),
  5922. default: true
  5923. },
  5924. {
  5925. name: "Macro",
  5926. height: math.unit(2.2, "solarradii")
  5927. },
  5928. {
  5929. name: "Teramacro",
  5930. height: math.unit(1.2, "galaxies")
  5931. },
  5932. {
  5933. name: "Omegamacro",
  5934. height: math.unit(200, "universes")
  5935. },
  5936. ]
  5937. ))
  5938. characterMakers.push(() => makeCharacter(
  5939. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5940. {
  5941. front: {
  5942. height: math.unit(6 + 1 / 6, "feet"),
  5943. weight: math.unit(178, "lbs"),
  5944. name: "Front",
  5945. image: {
  5946. source: "./media/characters/guy/front.svg"
  5947. }
  5948. }
  5949. },
  5950. [
  5951. {
  5952. name: "Normal",
  5953. height: math.unit(6 + 1 / 6, "feet"),
  5954. default: true
  5955. },
  5956. {
  5957. name: "Large",
  5958. height: math.unit(25 + 7 / 12, "feet")
  5959. },
  5960. {
  5961. name: "Macro",
  5962. height: math.unit(60 + 9 / 12, "feet")
  5963. },
  5964. {
  5965. name: "Macro+",
  5966. height: math.unit(246, "feet")
  5967. },
  5968. {
  5969. name: "Macro++",
  5970. height: math.unit(878, "feet")
  5971. }
  5972. ]
  5973. ))
  5974. characterMakers.push(() => makeCharacter(
  5975. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5976. {
  5977. front: {
  5978. height: math.unit(9, "feet"),
  5979. weight: math.unit(800, "lbs"),
  5980. name: "Front",
  5981. image: {
  5982. source: "./media/characters/tiberius/front.svg",
  5983. extra: 2295 / 2071
  5984. }
  5985. },
  5986. back: {
  5987. height: math.unit(9, "feet"),
  5988. weight: math.unit(800, "lbs"),
  5989. name: "Back",
  5990. image: {
  5991. source: "./media/characters/tiberius/back.svg",
  5992. extra: 2373 / 2160
  5993. }
  5994. },
  5995. },
  5996. [
  5997. {
  5998. name: "Normal",
  5999. height: math.unit(9, "feet"),
  6000. default: true
  6001. }
  6002. ]
  6003. ))
  6004. characterMakers.push(() => makeCharacter(
  6005. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6006. {
  6007. front: {
  6008. height: math.unit(6, "feet"),
  6009. weight: math.unit(600, "lbs"),
  6010. name: "Front",
  6011. image: {
  6012. source: "./media/characters/surgo/front.svg",
  6013. extra: 3591 / 2227
  6014. }
  6015. },
  6016. back: {
  6017. height: math.unit(6, "feet"),
  6018. weight: math.unit(600, "lbs"),
  6019. name: "Back",
  6020. image: {
  6021. source: "./media/characters/surgo/back.svg",
  6022. extra: 3557 / 2228
  6023. }
  6024. },
  6025. laying: {
  6026. height: math.unit(6 * 0.85, "feet"),
  6027. weight: math.unit(600, "lbs"),
  6028. name: "Laying",
  6029. image: {
  6030. source: "./media/characters/surgo/laying.svg"
  6031. }
  6032. },
  6033. },
  6034. [
  6035. {
  6036. name: "Normal",
  6037. height: math.unit(6, "feet"),
  6038. default: true
  6039. }
  6040. ]
  6041. ))
  6042. characterMakers.push(() => makeCharacter(
  6043. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6044. {
  6045. side: {
  6046. height: math.unit(6, "feet"),
  6047. weight: math.unit(150, "lbs"),
  6048. name: "Side",
  6049. image: {
  6050. source: "./media/characters/cibus/side.svg",
  6051. extra: 800 / 400
  6052. }
  6053. },
  6054. },
  6055. [
  6056. {
  6057. name: "Normal",
  6058. height: math.unit(6, "feet"),
  6059. default: true
  6060. }
  6061. ]
  6062. ))
  6063. characterMakers.push(() => makeCharacter(
  6064. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6065. {
  6066. front: {
  6067. height: math.unit(6, "feet"),
  6068. weight: math.unit(240, "lbs"),
  6069. name: "Front",
  6070. image: {
  6071. source: "./media/characters/nibbles/front.svg"
  6072. }
  6073. },
  6074. side: {
  6075. height: math.unit(6, "feet"),
  6076. weight: math.unit(240, "lbs"),
  6077. name: "Side",
  6078. image: {
  6079. source: "./media/characters/nibbles/side.svg"
  6080. }
  6081. },
  6082. },
  6083. [
  6084. {
  6085. name: "Normal",
  6086. height: math.unit(9, "feet"),
  6087. default: true
  6088. }
  6089. ]
  6090. ))
  6091. characterMakers.push(() => makeCharacter(
  6092. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6093. {
  6094. side: {
  6095. height: math.unit(5 + 1 / 6, "feet"),
  6096. weight: math.unit(130, "lbs"),
  6097. name: "Side",
  6098. image: {
  6099. source: "./media/characters/rikky/side.svg",
  6100. extra: 851 / 801
  6101. }
  6102. },
  6103. },
  6104. [
  6105. {
  6106. name: "Normal",
  6107. height: math.unit(5 + 1 / 6, "feet")
  6108. },
  6109. {
  6110. name: "Macro",
  6111. height: math.unit(152, "feet"),
  6112. default: true
  6113. },
  6114. {
  6115. name: "Megamacro",
  6116. height: math.unit(7, "miles")
  6117. }
  6118. ]
  6119. ))
  6120. characterMakers.push(() => makeCharacter(
  6121. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6122. {
  6123. side: {
  6124. height: math.unit(370, "cm"),
  6125. weight: math.unit(350, "lbs"),
  6126. name: "Side",
  6127. image: {
  6128. source: "./media/characters/malfressa/side.svg"
  6129. }
  6130. },
  6131. walking: {
  6132. height: math.unit(370, "cm"),
  6133. weight: math.unit(350, "lbs"),
  6134. name: "Walking",
  6135. image: {
  6136. source: "./media/characters/malfressa/walking.svg"
  6137. }
  6138. },
  6139. feral: {
  6140. height: math.unit(2500, "cm"),
  6141. weight: math.unit(100000, "lbs"),
  6142. name: "Feral",
  6143. image: {
  6144. source: "./media/characters/malfressa/feral.svg",
  6145. extra: 2108 / 837,
  6146. bottom: 0.02
  6147. }
  6148. },
  6149. },
  6150. [
  6151. {
  6152. name: "Normal",
  6153. height: math.unit(370, "cm")
  6154. },
  6155. {
  6156. name: "Macro",
  6157. height: math.unit(300, "meters"),
  6158. default: true
  6159. }
  6160. ]
  6161. ))
  6162. characterMakers.push(() => makeCharacter(
  6163. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6164. {
  6165. front: {
  6166. height: math.unit(6, "feet"),
  6167. weight: math.unit(60, "kg"),
  6168. name: "Front",
  6169. image: {
  6170. source: "./media/characters/jaro/front.svg"
  6171. }
  6172. },
  6173. back: {
  6174. height: math.unit(6, "feet"),
  6175. weight: math.unit(60, "kg"),
  6176. name: "Back",
  6177. image: {
  6178. source: "./media/characters/jaro/back.svg"
  6179. }
  6180. },
  6181. },
  6182. [
  6183. {
  6184. name: "Micro",
  6185. height: math.unit(7, "inches")
  6186. },
  6187. {
  6188. name: "Normal",
  6189. height: math.unit(5.5, "feet"),
  6190. default: true
  6191. },
  6192. {
  6193. name: "Minimacro",
  6194. height: math.unit(20, "feet")
  6195. },
  6196. {
  6197. name: "Macro",
  6198. height: math.unit(200, "meters")
  6199. }
  6200. ]
  6201. ))
  6202. characterMakers.push(() => makeCharacter(
  6203. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6204. {
  6205. front: {
  6206. height: math.unit(6, "feet"),
  6207. weight: math.unit(195, "lb"),
  6208. name: "Front",
  6209. image: {
  6210. source: "./media/characters/rogue/front.svg"
  6211. }
  6212. },
  6213. },
  6214. [
  6215. {
  6216. name: "Macro",
  6217. height: math.unit(90, "feet"),
  6218. default: true
  6219. },
  6220. ]
  6221. ))
  6222. characterMakers.push(() => makeCharacter(
  6223. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6224. {
  6225. front: {
  6226. height: math.unit(5 + 8 / 12, "feet"),
  6227. weight: math.unit(140, "lb"),
  6228. name: "Front",
  6229. image: {
  6230. source: "./media/characters/piper/front.svg",
  6231. extra: 3948/3655,
  6232. bottom: 0/3948
  6233. }
  6234. },
  6235. },
  6236. [
  6237. {
  6238. name: "Micro",
  6239. height: math.unit(2, "inches")
  6240. },
  6241. {
  6242. name: "Normal",
  6243. height: math.unit(5 + 8 / 12, "feet")
  6244. },
  6245. {
  6246. name: "Macro",
  6247. height: math.unit(250, "feet"),
  6248. default: true
  6249. },
  6250. {
  6251. name: "Megamacro",
  6252. height: math.unit(7, "miles")
  6253. },
  6254. ]
  6255. ))
  6256. characterMakers.push(() => makeCharacter(
  6257. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6258. {
  6259. front: {
  6260. height: math.unit(6, "feet"),
  6261. weight: math.unit(220, "lb"),
  6262. name: "Front",
  6263. image: {
  6264. source: "./media/characters/gemini/front.svg"
  6265. }
  6266. },
  6267. back: {
  6268. height: math.unit(6, "feet"),
  6269. weight: math.unit(220, "lb"),
  6270. name: "Back",
  6271. image: {
  6272. source: "./media/characters/gemini/back.svg"
  6273. }
  6274. },
  6275. kneeling: {
  6276. height: math.unit(6 / 1.5, "feet"),
  6277. weight: math.unit(220, "lb"),
  6278. name: "Kneeling",
  6279. image: {
  6280. source: "./media/characters/gemini/kneeling.svg",
  6281. bottom: 0.02
  6282. }
  6283. },
  6284. },
  6285. [
  6286. {
  6287. name: "Macro",
  6288. height: math.unit(300, "meters"),
  6289. default: true
  6290. },
  6291. {
  6292. name: "Megamacro",
  6293. height: math.unit(6900, "meters")
  6294. },
  6295. ]
  6296. ))
  6297. characterMakers.push(() => makeCharacter(
  6298. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6299. {
  6300. anthro: {
  6301. height: math.unit(2.35, "meters"),
  6302. weight: math.unit(73, "kg"),
  6303. name: "Anthro",
  6304. image: {
  6305. source: "./media/characters/alicia/anthro.svg",
  6306. extra: 2571 / 2385,
  6307. bottom: 75 / 2648
  6308. }
  6309. },
  6310. paw: {
  6311. height: math.unit(1.32, "feet"),
  6312. name: "Paw",
  6313. image: {
  6314. source: "./media/characters/alicia/paw.svg"
  6315. }
  6316. },
  6317. feral: {
  6318. height: math.unit(1.69, "meters"),
  6319. weight: math.unit(73, "kg"),
  6320. name: "Feral",
  6321. image: {
  6322. source: "./media/characters/alicia/feral.svg",
  6323. extra: 2123 / 1715,
  6324. bottom: 222 / 2349
  6325. }
  6326. },
  6327. },
  6328. [
  6329. {
  6330. name: "Normal",
  6331. height: math.unit(2.35, "meters")
  6332. },
  6333. {
  6334. name: "Macro",
  6335. height: math.unit(60, "meters"),
  6336. default: true
  6337. },
  6338. {
  6339. name: "Megamacro",
  6340. height: math.unit(10000, "kilometers")
  6341. },
  6342. ]
  6343. ))
  6344. characterMakers.push(() => makeCharacter(
  6345. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6346. {
  6347. front: {
  6348. height: math.unit(7, "feet"),
  6349. weight: math.unit(250, "lbs"),
  6350. name: "Front",
  6351. image: {
  6352. source: "./media/characters/archy/front.svg"
  6353. }
  6354. }
  6355. },
  6356. [
  6357. {
  6358. name: "Micro",
  6359. height: math.unit(1, "inch")
  6360. },
  6361. {
  6362. name: "Shorty",
  6363. height: math.unit(5, "feet")
  6364. },
  6365. {
  6366. name: "Normal",
  6367. height: math.unit(7, "feet")
  6368. },
  6369. {
  6370. name: "Macro",
  6371. height: math.unit(600, "meters"),
  6372. default: true
  6373. },
  6374. {
  6375. name: "Megamacro",
  6376. height: math.unit(1, "mile")
  6377. },
  6378. ]
  6379. ))
  6380. characterMakers.push(() => makeCharacter(
  6381. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6382. {
  6383. front: {
  6384. height: math.unit(1.65, "meters"),
  6385. weight: math.unit(74, "kg"),
  6386. name: "Front",
  6387. image: {
  6388. source: "./media/characters/berri/front.svg",
  6389. extra: 857 / 837,
  6390. bottom: 18 / 877
  6391. }
  6392. },
  6393. bum: {
  6394. height: math.unit(1.46, "feet"),
  6395. name: "Bum",
  6396. image: {
  6397. source: "./media/characters/berri/bum.svg"
  6398. }
  6399. },
  6400. mouth: {
  6401. height: math.unit(0.44, "feet"),
  6402. name: "Mouth",
  6403. image: {
  6404. source: "./media/characters/berri/mouth.svg"
  6405. }
  6406. },
  6407. paw: {
  6408. height: math.unit(0.826, "feet"),
  6409. name: "Paw",
  6410. image: {
  6411. source: "./media/characters/berri/paw.svg"
  6412. }
  6413. },
  6414. },
  6415. [
  6416. {
  6417. name: "Normal",
  6418. height: math.unit(1.65, "meters")
  6419. },
  6420. {
  6421. name: "Macro",
  6422. height: math.unit(60, "m"),
  6423. default: true
  6424. },
  6425. {
  6426. name: "Megamacro",
  6427. height: math.unit(9.213, "km")
  6428. },
  6429. {
  6430. name: "Planet Eater",
  6431. height: math.unit(489, "megameters")
  6432. },
  6433. {
  6434. name: "Teramacro",
  6435. height: math.unit(2471635000000, "meters")
  6436. },
  6437. {
  6438. name: "Examacro",
  6439. height: math.unit(8.0624e+26, "meters")
  6440. }
  6441. ]
  6442. ))
  6443. characterMakers.push(() => makeCharacter(
  6444. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6445. {
  6446. front: {
  6447. height: math.unit(1.72, "meters"),
  6448. weight: math.unit(68, "kg"),
  6449. name: "Front",
  6450. image: {
  6451. source: "./media/characters/lexi/front.svg"
  6452. }
  6453. }
  6454. },
  6455. [
  6456. {
  6457. name: "Very Smol",
  6458. height: math.unit(10, "mm")
  6459. },
  6460. {
  6461. name: "Micro",
  6462. height: math.unit(6.8, "cm"),
  6463. default: true
  6464. },
  6465. {
  6466. name: "Normal",
  6467. height: math.unit(1.72, "m")
  6468. }
  6469. ]
  6470. ))
  6471. characterMakers.push(() => makeCharacter(
  6472. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6473. {
  6474. front: {
  6475. height: math.unit(1.69, "meters"),
  6476. weight: math.unit(68, "kg"),
  6477. name: "Front",
  6478. image: {
  6479. source: "./media/characters/martin/front.svg",
  6480. extra: 596 / 581
  6481. }
  6482. }
  6483. },
  6484. [
  6485. {
  6486. name: "Micro",
  6487. height: math.unit(6.85, "cm"),
  6488. default: true
  6489. },
  6490. {
  6491. name: "Normal",
  6492. height: math.unit(1.69, "m")
  6493. }
  6494. ]
  6495. ))
  6496. characterMakers.push(() => makeCharacter(
  6497. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6498. {
  6499. front: {
  6500. height: math.unit(1.69, "meters"),
  6501. weight: math.unit(68, "kg"),
  6502. name: "Front",
  6503. image: {
  6504. source: "./media/characters/juno/front.svg"
  6505. }
  6506. }
  6507. },
  6508. [
  6509. {
  6510. name: "Micro",
  6511. height: math.unit(7, "cm")
  6512. },
  6513. {
  6514. name: "Normal",
  6515. height: math.unit(1.89, "m")
  6516. },
  6517. {
  6518. name: "Macro",
  6519. height: math.unit(353, "meters"),
  6520. default: true
  6521. }
  6522. ]
  6523. ))
  6524. characterMakers.push(() => makeCharacter(
  6525. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6526. {
  6527. front: {
  6528. height: math.unit(1.93, "meters"),
  6529. weight: math.unit(83, "kg"),
  6530. name: "Front",
  6531. image: {
  6532. source: "./media/characters/samantha/front.svg"
  6533. }
  6534. },
  6535. frontClothed: {
  6536. height: math.unit(1.93, "meters"),
  6537. weight: math.unit(83, "kg"),
  6538. name: "Front (Clothed)",
  6539. image: {
  6540. source: "./media/characters/samantha/front-clothed.svg"
  6541. }
  6542. },
  6543. back: {
  6544. height: math.unit(1.93, "meters"),
  6545. weight: math.unit(83, "kg"),
  6546. name: "Back",
  6547. image: {
  6548. source: "./media/characters/samantha/back.svg"
  6549. }
  6550. },
  6551. },
  6552. [
  6553. {
  6554. name: "Normal",
  6555. height: math.unit(1.93, "m")
  6556. },
  6557. {
  6558. name: "Macro",
  6559. height: math.unit(74, "meters"),
  6560. default: true
  6561. },
  6562. {
  6563. name: "Macro+",
  6564. height: math.unit(223, "meters"),
  6565. },
  6566. {
  6567. name: "Megamacro",
  6568. height: math.unit(8381, "meters"),
  6569. },
  6570. {
  6571. name: "Megamacro+",
  6572. height: math.unit(12000, "kilometers")
  6573. },
  6574. ]
  6575. ))
  6576. characterMakers.push(() => makeCharacter(
  6577. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6578. {
  6579. front: {
  6580. height: math.unit(1.92, "meters"),
  6581. weight: math.unit(80, "kg"),
  6582. name: "Front",
  6583. image: {
  6584. source: "./media/characters/dr-clay/front.svg"
  6585. }
  6586. },
  6587. frontClothed: {
  6588. height: math.unit(1.92, "meters"),
  6589. weight: math.unit(80, "kg"),
  6590. name: "Front (Clothed)",
  6591. image: {
  6592. source: "./media/characters/dr-clay/front-clothed.svg"
  6593. }
  6594. }
  6595. },
  6596. [
  6597. {
  6598. name: "Normal",
  6599. height: math.unit(1.92, "m")
  6600. },
  6601. {
  6602. name: "Macro",
  6603. height: math.unit(214, "meters"),
  6604. default: true
  6605. },
  6606. {
  6607. name: "Macro+",
  6608. height: math.unit(12.237, "meters"),
  6609. },
  6610. {
  6611. name: "Megamacro",
  6612. height: math.unit(557, "megameters"),
  6613. },
  6614. {
  6615. name: "Unimaginable",
  6616. height: math.unit(120e9, "lightyears")
  6617. },
  6618. ]
  6619. ))
  6620. characterMakers.push(() => makeCharacter(
  6621. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6622. {
  6623. front: {
  6624. height: math.unit(2, "meters"),
  6625. weight: math.unit(80, "kg"),
  6626. name: "Front",
  6627. image: {
  6628. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6629. }
  6630. }
  6631. },
  6632. [
  6633. {
  6634. name: "Teramacro",
  6635. height: math.unit(500000, "lightyears"),
  6636. default: true
  6637. },
  6638. ]
  6639. ))
  6640. characterMakers.push(() => makeCharacter(
  6641. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6642. {
  6643. crux: {
  6644. height: math.unit(2, "meters"),
  6645. weight: math.unit(150, "kg"),
  6646. name: "Crux",
  6647. image: {
  6648. source: "./media/characters/vemus/crux.svg",
  6649. extra: 1074/936,
  6650. bottom: 23/1097
  6651. }
  6652. },
  6653. skunkTanuki: {
  6654. height: math.unit(2, "meters"),
  6655. weight: math.unit(150, "kg"),
  6656. name: "Skunk-Tanuki",
  6657. image: {
  6658. source: "./media/characters/vemus/skunk-tanuki.svg",
  6659. extra: 926/893,
  6660. bottom: 20/946
  6661. }
  6662. },
  6663. },
  6664. [
  6665. {
  6666. name: "Normal",
  6667. height: math.unit(3.75, "meters"),
  6668. default: true
  6669. },
  6670. {
  6671. name: "Big",
  6672. height: math.unit(8, "meters")
  6673. },
  6674. {
  6675. name: "Macro",
  6676. height: math.unit(100, "meters")
  6677. },
  6678. {
  6679. name: "Macro+",
  6680. height: math.unit(1500, "meters")
  6681. },
  6682. {
  6683. name: "Stellar",
  6684. height: math.unit(14e8, "meters")
  6685. },
  6686. ]
  6687. ))
  6688. characterMakers.push(() => makeCharacter(
  6689. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6690. {
  6691. front: {
  6692. height: math.unit(2, "meters"),
  6693. weight: math.unit(70, "kg"),
  6694. name: "Front",
  6695. image: {
  6696. source: "./media/characters/beherit/front.svg",
  6697. extra: 1408 / 1242
  6698. }
  6699. }
  6700. },
  6701. [
  6702. {
  6703. name: "Normal",
  6704. height: math.unit(6, "feet")
  6705. },
  6706. {
  6707. name: "Lorg",
  6708. height: math.unit(25, "feet"),
  6709. default: true
  6710. },
  6711. {
  6712. name: "Lorger",
  6713. height: math.unit(75, "feet")
  6714. },
  6715. {
  6716. name: "Macro",
  6717. height: math.unit(200, "meters")
  6718. },
  6719. ]
  6720. ))
  6721. characterMakers.push(() => makeCharacter(
  6722. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6723. {
  6724. front: {
  6725. height: math.unit(2, "meters"),
  6726. weight: math.unit(150, "kg"),
  6727. name: "Front",
  6728. image: {
  6729. source: "./media/characters/everett/front.svg",
  6730. extra: 2038 / 1737,
  6731. bottom: 0.03
  6732. }
  6733. },
  6734. paw: {
  6735. height: math.unit(2 / 3.6, "meters"),
  6736. name: "Paw",
  6737. image: {
  6738. source: "./media/characters/everett/paw.svg"
  6739. }
  6740. },
  6741. },
  6742. [
  6743. {
  6744. name: "Normal",
  6745. height: math.unit(15, "feet"),
  6746. default: true
  6747. },
  6748. {
  6749. name: "Lorg",
  6750. height: math.unit(70, "feet"),
  6751. default: true
  6752. },
  6753. {
  6754. name: "Lorger",
  6755. height: math.unit(250, "feet")
  6756. },
  6757. {
  6758. name: "Macro",
  6759. height: math.unit(500, "meters")
  6760. },
  6761. ]
  6762. ))
  6763. characterMakers.push(() => makeCharacter(
  6764. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6765. {
  6766. front: {
  6767. height: math.unit(2, "meters"),
  6768. weight: math.unit(86, "kg"),
  6769. name: "Front",
  6770. image: {
  6771. source: "./media/characters/rose/front.svg",
  6772. extra: 1785/1636,
  6773. bottom: 30/1815
  6774. }
  6775. },
  6776. frontSporty: {
  6777. height: math.unit(2, "meters"),
  6778. weight: math.unit(86, "kg"),
  6779. name: "Front (Sporty)",
  6780. image: {
  6781. source: "./media/characters/rose/front-sporty.svg",
  6782. extra: 350/335,
  6783. bottom: 10/360
  6784. }
  6785. },
  6786. frontAlt: {
  6787. height: math.unit(1.6, "meters"),
  6788. weight: math.unit(86, "kg"),
  6789. name: "Front (Alt)",
  6790. image: {
  6791. source: "./media/characters/rose/front-alt.svg",
  6792. extra: 299/283,
  6793. bottom: 3/302
  6794. }
  6795. },
  6796. plush: {
  6797. height: math.unit(2, "meters"),
  6798. weight: math.unit(86/3, "kg"),
  6799. name: "Plush",
  6800. image: {
  6801. source: "./media/characters/rose/plush.svg",
  6802. extra: 361/337,
  6803. bottom: 11/372
  6804. }
  6805. },
  6806. },
  6807. [
  6808. {
  6809. name: "True Micro",
  6810. height: math.unit(9, "cm")
  6811. },
  6812. {
  6813. name: "Micro",
  6814. height: math.unit(16, "cm")
  6815. },
  6816. {
  6817. name: "Normal",
  6818. height: math.unit(1.85, "meters"),
  6819. default: true
  6820. },
  6821. {
  6822. name: "Mini-Macro",
  6823. height: math.unit(5, "meters")
  6824. },
  6825. {
  6826. name: "Macro",
  6827. height: math.unit(15, "meters")
  6828. },
  6829. {
  6830. name: "True Macro",
  6831. height: math.unit(40, "meters")
  6832. },
  6833. {
  6834. name: "City Scale",
  6835. height: math.unit(1, "km")
  6836. },
  6837. ]
  6838. ))
  6839. characterMakers.push(() => makeCharacter(
  6840. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6841. {
  6842. front: {
  6843. height: math.unit(2, "meters"),
  6844. weight: math.unit(350, "lbs"),
  6845. name: "Front",
  6846. image: {
  6847. source: "./media/characters/regal/front.svg"
  6848. }
  6849. },
  6850. back: {
  6851. height: math.unit(2, "meters"),
  6852. weight: math.unit(350, "lbs"),
  6853. name: "Back",
  6854. image: {
  6855. source: "./media/characters/regal/back.svg"
  6856. }
  6857. },
  6858. },
  6859. [
  6860. {
  6861. name: "Macro",
  6862. height: math.unit(350, "feet"),
  6863. default: true
  6864. }
  6865. ]
  6866. ))
  6867. characterMakers.push(() => makeCharacter(
  6868. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6869. {
  6870. front: {
  6871. height: math.unit(4 + 11 / 12, "feet"),
  6872. weight: math.unit(100, "lbs"),
  6873. name: "Front",
  6874. image: {
  6875. source: "./media/characters/opal/front.svg"
  6876. }
  6877. },
  6878. frontAlt: {
  6879. height: math.unit(4 + 11 / 12, "feet"),
  6880. weight: math.unit(100, "lbs"),
  6881. name: "Front (Alt)",
  6882. image: {
  6883. source: "./media/characters/opal/front-alt.svg"
  6884. }
  6885. },
  6886. },
  6887. [
  6888. {
  6889. name: "Small",
  6890. height: math.unit(4 + 11 / 12, "feet")
  6891. },
  6892. {
  6893. name: "Normal",
  6894. height: math.unit(20, "feet"),
  6895. default: true
  6896. },
  6897. {
  6898. name: "Macro",
  6899. height: math.unit(120, "feet")
  6900. },
  6901. {
  6902. name: "Megamacro",
  6903. height: math.unit(80, "miles")
  6904. },
  6905. {
  6906. name: "True Size",
  6907. height: math.unit(100000, "lightyears")
  6908. },
  6909. ]
  6910. ))
  6911. characterMakers.push(() => makeCharacter(
  6912. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6913. {
  6914. front: {
  6915. height: math.unit(6, "feet"),
  6916. weight: math.unit(200, "lbs"),
  6917. name: "Front",
  6918. image: {
  6919. source: "./media/characters/vector-wuff/front.svg"
  6920. }
  6921. }
  6922. },
  6923. [
  6924. {
  6925. name: "Normal",
  6926. height: math.unit(2.8, "meters")
  6927. },
  6928. {
  6929. name: "Macro",
  6930. height: math.unit(450, "meters"),
  6931. default: true
  6932. },
  6933. {
  6934. name: "Megamacro",
  6935. height: math.unit(15, "kilometers")
  6936. }
  6937. ]
  6938. ))
  6939. characterMakers.push(() => makeCharacter(
  6940. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6941. {
  6942. front: {
  6943. height: math.unit(6, "feet"),
  6944. weight: math.unit(256, "lbs"),
  6945. name: "Front",
  6946. image: {
  6947. source: "./media/characters/dannik/front.svg"
  6948. }
  6949. }
  6950. },
  6951. [
  6952. {
  6953. name: "Macro",
  6954. height: math.unit(69.57, "meters"),
  6955. default: true
  6956. },
  6957. ]
  6958. ))
  6959. characterMakers.push(() => makeCharacter(
  6960. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6961. {
  6962. front: {
  6963. height: math.unit(6, "feet"),
  6964. weight: math.unit(120, "lbs"),
  6965. name: "Front",
  6966. image: {
  6967. source: "./media/characters/azura-saharah/front.svg"
  6968. }
  6969. },
  6970. back: {
  6971. height: math.unit(6, "feet"),
  6972. weight: math.unit(120, "lbs"),
  6973. name: "Back",
  6974. image: {
  6975. source: "./media/characters/azura-saharah/back.svg"
  6976. }
  6977. },
  6978. },
  6979. [
  6980. {
  6981. name: "Macro",
  6982. height: math.unit(100, "feet"),
  6983. default: true
  6984. },
  6985. ]
  6986. ))
  6987. characterMakers.push(() => makeCharacter(
  6988. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6989. {
  6990. side: {
  6991. height: math.unit(5 + 4 / 12, "feet"),
  6992. weight: math.unit(163, "lbs"),
  6993. name: "Side",
  6994. image: {
  6995. source: "./media/characters/kennedy/side.svg"
  6996. }
  6997. }
  6998. },
  6999. [
  7000. {
  7001. name: "Standard Doggo",
  7002. height: math.unit(5 + 4 / 12, "feet")
  7003. },
  7004. {
  7005. name: "Big Doggo",
  7006. height: math.unit(25 + 3 / 12, "feet"),
  7007. default: true
  7008. },
  7009. ]
  7010. ))
  7011. characterMakers.push(() => makeCharacter(
  7012. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7013. {
  7014. front: {
  7015. height: math.unit(6, "feet"),
  7016. weight: math.unit(90, "lbs"),
  7017. name: "Front",
  7018. image: {
  7019. source: "./media/characters/odi-lunar/front.svg"
  7020. }
  7021. }
  7022. },
  7023. [
  7024. {
  7025. name: "Micro",
  7026. height: math.unit(3, "inches"),
  7027. default: true
  7028. },
  7029. {
  7030. name: "Normal",
  7031. height: math.unit(5.5, "feet")
  7032. }
  7033. ]
  7034. ))
  7035. characterMakers.push(() => makeCharacter(
  7036. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7037. {
  7038. back: {
  7039. height: math.unit(6, "feet"),
  7040. weight: math.unit(220, "lbs"),
  7041. name: "Back",
  7042. image: {
  7043. source: "./media/characters/mandake/back.svg"
  7044. }
  7045. }
  7046. },
  7047. [
  7048. {
  7049. name: "Normal",
  7050. height: math.unit(7, "feet"),
  7051. default: true
  7052. },
  7053. {
  7054. name: "Macro",
  7055. height: math.unit(78, "feet")
  7056. },
  7057. {
  7058. name: "Macro+",
  7059. height: math.unit(300, "meters")
  7060. },
  7061. {
  7062. name: "Macro++",
  7063. height: math.unit(2400, "feet")
  7064. },
  7065. {
  7066. name: "Megamacro",
  7067. height: math.unit(5167, "meters")
  7068. },
  7069. {
  7070. name: "Gigamacro",
  7071. height: math.unit(41769, "miles")
  7072. },
  7073. ]
  7074. ))
  7075. characterMakers.push(() => makeCharacter(
  7076. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7077. {
  7078. front: {
  7079. height: math.unit(6, "feet"),
  7080. weight: math.unit(120, "lbs"),
  7081. name: "Front",
  7082. image: {
  7083. source: "./media/characters/yozey/front.svg"
  7084. }
  7085. },
  7086. frontAlt: {
  7087. height: math.unit(6, "feet"),
  7088. weight: math.unit(120, "lbs"),
  7089. name: "Front (Alt)",
  7090. image: {
  7091. source: "./media/characters/yozey/front-alt.svg"
  7092. }
  7093. },
  7094. side: {
  7095. height: math.unit(6, "feet"),
  7096. weight: math.unit(120, "lbs"),
  7097. name: "Side",
  7098. image: {
  7099. source: "./media/characters/yozey/side.svg"
  7100. }
  7101. },
  7102. },
  7103. [
  7104. {
  7105. name: "Micro",
  7106. height: math.unit(3, "inches"),
  7107. default: true
  7108. },
  7109. {
  7110. name: "Normal",
  7111. height: math.unit(6, "feet")
  7112. }
  7113. ]
  7114. ))
  7115. characterMakers.push(() => makeCharacter(
  7116. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7117. {
  7118. front: {
  7119. height: math.unit(6, "feet"),
  7120. weight: math.unit(103, "lbs"),
  7121. name: "Front",
  7122. image: {
  7123. source: "./media/characters/valeska-voss/front.svg"
  7124. }
  7125. }
  7126. },
  7127. [
  7128. {
  7129. name: "Mini-Sized Sub",
  7130. height: math.unit(3.1, "inches")
  7131. },
  7132. {
  7133. name: "Mid-Sized Sub",
  7134. height: math.unit(6.2, "inches")
  7135. },
  7136. {
  7137. name: "Full-Sized Sub",
  7138. height: math.unit(9.3, "inches")
  7139. },
  7140. {
  7141. name: "Normal",
  7142. height: math.unit(5 + 2 / 12, "foot"),
  7143. default: true
  7144. },
  7145. ]
  7146. ))
  7147. characterMakers.push(() => makeCharacter(
  7148. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7149. {
  7150. front: {
  7151. height: math.unit(6, "feet"),
  7152. weight: math.unit(160, "lbs"),
  7153. name: "Front",
  7154. image: {
  7155. source: "./media/characters/gene-zeta/front.svg",
  7156. extra: 3006 / 2826,
  7157. bottom: 182 / 3188
  7158. }
  7159. }
  7160. },
  7161. [
  7162. {
  7163. name: "Micro",
  7164. height: math.unit(6, "inches")
  7165. },
  7166. {
  7167. name: "Normal",
  7168. height: math.unit(5 + 11 / 12, "foot"),
  7169. default: true
  7170. },
  7171. {
  7172. name: "Macro",
  7173. height: math.unit(140, "feet")
  7174. },
  7175. {
  7176. name: "Supercharged",
  7177. height: math.unit(2500, "feet")
  7178. },
  7179. ]
  7180. ))
  7181. characterMakers.push(() => makeCharacter(
  7182. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7183. {
  7184. front: {
  7185. height: math.unit(6, "feet"),
  7186. weight: math.unit(350, "lbs"),
  7187. name: "Front",
  7188. image: {
  7189. source: "./media/characters/razinox/front.svg",
  7190. extra: 1686 / 1548,
  7191. bottom: 28.2 / 1868
  7192. }
  7193. },
  7194. back: {
  7195. height: math.unit(6, "feet"),
  7196. weight: math.unit(350, "lbs"),
  7197. name: "Back",
  7198. image: {
  7199. source: "./media/characters/razinox/back.svg",
  7200. extra: 1660 / 1590,
  7201. bottom: 15 / 1665
  7202. }
  7203. },
  7204. },
  7205. [
  7206. {
  7207. name: "Normal",
  7208. height: math.unit(10 + 8 / 12, "foot")
  7209. },
  7210. {
  7211. name: "Minimacro",
  7212. height: math.unit(15, "foot")
  7213. },
  7214. {
  7215. name: "Macro",
  7216. height: math.unit(60, "foot"),
  7217. default: true
  7218. },
  7219. {
  7220. name: "Megamacro",
  7221. height: math.unit(5, "miles")
  7222. },
  7223. {
  7224. name: "Gigamacro",
  7225. height: math.unit(6000, "miles")
  7226. },
  7227. ]
  7228. ))
  7229. characterMakers.push(() => makeCharacter(
  7230. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7231. {
  7232. front: {
  7233. height: math.unit(6, "feet"),
  7234. weight: math.unit(150, "lbs"),
  7235. name: "Front",
  7236. image: {
  7237. source: "./media/characters/cobalt/front.svg"
  7238. }
  7239. }
  7240. },
  7241. [
  7242. {
  7243. name: "Normal",
  7244. height: math.unit(8 + 1 / 12, "foot")
  7245. },
  7246. {
  7247. name: "Macro",
  7248. height: math.unit(111, "foot"),
  7249. default: true
  7250. },
  7251. {
  7252. name: "Supracosmic",
  7253. height: math.unit(1e42, "feet")
  7254. },
  7255. ]
  7256. ))
  7257. characterMakers.push(() => makeCharacter(
  7258. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7259. {
  7260. front: {
  7261. height: math.unit(6, "feet"),
  7262. weight: math.unit(140, "lbs"),
  7263. name: "Front",
  7264. image: {
  7265. source: "./media/characters/amanda/front.svg"
  7266. }
  7267. }
  7268. },
  7269. [
  7270. {
  7271. name: "Micro",
  7272. height: math.unit(5, "inches"),
  7273. default: true
  7274. },
  7275. ]
  7276. ))
  7277. characterMakers.push(() => makeCharacter(
  7278. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7279. {
  7280. front: {
  7281. height: math.unit(2.75, "meters"),
  7282. weight: math.unit(1200, "lb"),
  7283. name: "Front",
  7284. image: {
  7285. source: "./media/characters/teal/front.svg",
  7286. extra: 2463 / 2320,
  7287. bottom: 166 / 2629
  7288. }
  7289. },
  7290. back: {
  7291. height: math.unit(2.75, "meters"),
  7292. weight: math.unit(1200, "lb"),
  7293. name: "Back",
  7294. image: {
  7295. source: "./media/characters/teal/back.svg",
  7296. extra: 2580 / 2489,
  7297. bottom: 151 / 2731
  7298. }
  7299. },
  7300. sitting: {
  7301. height: math.unit(1.9, "meters"),
  7302. weight: math.unit(1200, "lb"),
  7303. name: "Sitting",
  7304. image: {
  7305. source: "./media/characters/teal/sitting.svg",
  7306. extra: 623 / 590,
  7307. bottom: 121 / 744
  7308. }
  7309. },
  7310. standing: {
  7311. height: math.unit(2.75, "meters"),
  7312. weight: math.unit(1200, "lb"),
  7313. name: "Standing",
  7314. image: {
  7315. source: "./media/characters/teal/standing.svg",
  7316. extra: 923 / 893,
  7317. bottom: 60 / 983
  7318. }
  7319. },
  7320. stretching: {
  7321. height: math.unit(3.65, "meters"),
  7322. weight: math.unit(1200, "lb"),
  7323. name: "Stretching",
  7324. image: {
  7325. source: "./media/characters/teal/stretching.svg",
  7326. extra: 1276 / 1244,
  7327. bottom: 0 / 1276
  7328. }
  7329. },
  7330. legged: {
  7331. height: math.unit(1.3, "meters"),
  7332. weight: math.unit(100, "lb"),
  7333. name: "Legged",
  7334. image: {
  7335. source: "./media/characters/teal/legged.svg",
  7336. extra: 462 / 437,
  7337. bottom: 24 / 486
  7338. }
  7339. },
  7340. naga: {
  7341. height: math.unit(5.4, "meters"),
  7342. weight: math.unit(4000, "lb"),
  7343. name: "Naga",
  7344. image: {
  7345. source: "./media/characters/teal/naga.svg",
  7346. extra: 1902 / 1858,
  7347. bottom: 0 / 1902
  7348. }
  7349. },
  7350. hand: {
  7351. height: math.unit(0.52, "meters"),
  7352. name: "Hand",
  7353. image: {
  7354. source: "./media/characters/teal/hand.svg"
  7355. }
  7356. },
  7357. maw: {
  7358. height: math.unit(0.43, "meters"),
  7359. name: "Maw",
  7360. image: {
  7361. source: "./media/characters/teal/maw.svg"
  7362. }
  7363. },
  7364. slit: {
  7365. height: math.unit(0.25, "meters"),
  7366. name: "Slit",
  7367. image: {
  7368. source: "./media/characters/teal/slit.svg"
  7369. }
  7370. },
  7371. },
  7372. [
  7373. {
  7374. name: "Normal",
  7375. height: math.unit(2.75, "meters"),
  7376. default: true
  7377. },
  7378. {
  7379. name: "Macro",
  7380. height: math.unit(300, "feet")
  7381. },
  7382. {
  7383. name: "Macro+",
  7384. height: math.unit(2000, "feet")
  7385. },
  7386. ]
  7387. ))
  7388. characterMakers.push(() => makeCharacter(
  7389. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7390. {
  7391. frontCat: {
  7392. height: math.unit(6, "feet"),
  7393. weight: math.unit(180, "lbs"),
  7394. name: "Front (Cat)",
  7395. image: {
  7396. source: "./media/characters/ravin-amulet/front-cat.svg"
  7397. }
  7398. },
  7399. frontCatAlt: {
  7400. height: math.unit(6, "feet"),
  7401. weight: math.unit(180, "lbs"),
  7402. name: "Front (Alt, Cat)",
  7403. image: {
  7404. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7405. }
  7406. },
  7407. frontWerewolf: {
  7408. height: math.unit(6 * 1.2, "feet"),
  7409. weight: math.unit(225, "lbs"),
  7410. name: "Front (Werewolf)",
  7411. image: {
  7412. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7413. }
  7414. },
  7415. backWerewolf: {
  7416. height: math.unit(6 * 1.2, "feet"),
  7417. weight: math.unit(225, "lbs"),
  7418. name: "Back (Werewolf)",
  7419. image: {
  7420. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7421. }
  7422. },
  7423. },
  7424. [
  7425. {
  7426. name: "Nano",
  7427. height: math.unit(1, "micrometer")
  7428. },
  7429. {
  7430. name: "Micro",
  7431. height: math.unit(1, "inch")
  7432. },
  7433. {
  7434. name: "Normal",
  7435. height: math.unit(6, "feet"),
  7436. default: true
  7437. },
  7438. {
  7439. name: "Macro",
  7440. height: math.unit(60, "feet")
  7441. }
  7442. ]
  7443. ))
  7444. characterMakers.push(() => makeCharacter(
  7445. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7446. {
  7447. front: {
  7448. height: math.unit(6, "feet"),
  7449. weight: math.unit(165, "lbs"),
  7450. name: "Front",
  7451. image: {
  7452. source: "./media/characters/fluoresce/front.svg"
  7453. }
  7454. }
  7455. },
  7456. [
  7457. {
  7458. name: "Micro",
  7459. height: math.unit(6, "cm")
  7460. },
  7461. {
  7462. name: "Normal",
  7463. height: math.unit(5 + 7 / 12, "feet"),
  7464. default: true
  7465. },
  7466. {
  7467. name: "Macro",
  7468. height: math.unit(56, "feet")
  7469. },
  7470. {
  7471. name: "Megamacro",
  7472. height: math.unit(1.9, "miles")
  7473. },
  7474. ]
  7475. ))
  7476. characterMakers.push(() => makeCharacter(
  7477. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7478. {
  7479. front: {
  7480. height: math.unit(9 + 6 / 12, "feet"),
  7481. weight: math.unit(523, "lbs"),
  7482. name: "Side",
  7483. image: {
  7484. source: "./media/characters/aurora/side.svg"
  7485. }
  7486. }
  7487. },
  7488. [
  7489. {
  7490. name: "Normal",
  7491. height: math.unit(9 + 6 / 12, "feet")
  7492. },
  7493. {
  7494. name: "Macro",
  7495. height: math.unit(96, "feet"),
  7496. default: true
  7497. },
  7498. {
  7499. name: "Macro+",
  7500. height: math.unit(243, "feet")
  7501. },
  7502. ]
  7503. ))
  7504. characterMakers.push(() => makeCharacter(
  7505. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7506. {
  7507. front: {
  7508. height: math.unit(194, "cm"),
  7509. weight: math.unit(90, "kg"),
  7510. name: "Front",
  7511. image: {
  7512. source: "./media/characters/ranek/front.svg"
  7513. }
  7514. },
  7515. side: {
  7516. height: math.unit(194, "cm"),
  7517. weight: math.unit(90, "kg"),
  7518. name: "Side",
  7519. image: {
  7520. source: "./media/characters/ranek/side.svg"
  7521. }
  7522. },
  7523. back: {
  7524. height: math.unit(194, "cm"),
  7525. weight: math.unit(90, "kg"),
  7526. name: "Back",
  7527. image: {
  7528. source: "./media/characters/ranek/back.svg"
  7529. }
  7530. },
  7531. feral: {
  7532. height: math.unit(30, "cm"),
  7533. weight: math.unit(1.6, "lbs"),
  7534. name: "Feral",
  7535. image: {
  7536. source: "./media/characters/ranek/feral.svg"
  7537. }
  7538. },
  7539. },
  7540. [
  7541. {
  7542. name: "Normal",
  7543. height: math.unit(194, "cm"),
  7544. default: true
  7545. },
  7546. {
  7547. name: "Macro",
  7548. height: math.unit(100, "meters")
  7549. },
  7550. ]
  7551. ))
  7552. characterMakers.push(() => makeCharacter(
  7553. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7554. {
  7555. front: {
  7556. height: math.unit(5 + 6 / 12, "feet"),
  7557. weight: math.unit(153, "lbs"),
  7558. name: "Front",
  7559. image: {
  7560. source: "./media/characters/andrew-cooper/front.svg"
  7561. }
  7562. },
  7563. },
  7564. [
  7565. {
  7566. name: "Nano",
  7567. height: math.unit(1, "mm")
  7568. },
  7569. {
  7570. name: "Micro",
  7571. height: math.unit(2, "inches")
  7572. },
  7573. {
  7574. name: "Normal",
  7575. height: math.unit(5 + 6 / 12, "feet"),
  7576. default: true
  7577. }
  7578. ]
  7579. ))
  7580. characterMakers.push(() => makeCharacter(
  7581. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7582. {
  7583. front: {
  7584. height: math.unit(6, "feet"),
  7585. weight: math.unit(180, "lbs"),
  7586. name: "Front",
  7587. image: {
  7588. source: "./media/characters/akane-sato/front.svg",
  7589. extra: 1219 / 1140
  7590. }
  7591. },
  7592. back: {
  7593. height: math.unit(6, "feet"),
  7594. weight: math.unit(180, "lbs"),
  7595. name: "Back",
  7596. image: {
  7597. source: "./media/characters/akane-sato/back.svg",
  7598. extra: 1219 / 1170
  7599. }
  7600. },
  7601. },
  7602. [
  7603. {
  7604. name: "Normal",
  7605. height: math.unit(2.5, "meters")
  7606. },
  7607. {
  7608. name: "Macro",
  7609. height: math.unit(250, "meters"),
  7610. default: true
  7611. },
  7612. {
  7613. name: "Megamacro",
  7614. height: math.unit(25, "km")
  7615. },
  7616. ]
  7617. ))
  7618. characterMakers.push(() => makeCharacter(
  7619. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7620. {
  7621. front: {
  7622. height: math.unit(6, "feet"),
  7623. weight: math.unit(65, "kg"),
  7624. name: "Front",
  7625. image: {
  7626. source: "./media/characters/rook/front.svg",
  7627. extra: 960 / 950
  7628. }
  7629. }
  7630. },
  7631. [
  7632. {
  7633. name: "Normal",
  7634. height: math.unit(8.8, "feet")
  7635. },
  7636. {
  7637. name: "Macro",
  7638. height: math.unit(88, "feet"),
  7639. default: true
  7640. },
  7641. {
  7642. name: "Megamacro",
  7643. height: math.unit(8, "miles")
  7644. },
  7645. ]
  7646. ))
  7647. characterMakers.push(() => makeCharacter(
  7648. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7649. {
  7650. front: {
  7651. height: math.unit(12 + 2 / 12, "feet"),
  7652. weight: math.unit(808, "lbs"),
  7653. name: "Front",
  7654. image: {
  7655. source: "./media/characters/prodigy/front.svg"
  7656. }
  7657. }
  7658. },
  7659. [
  7660. {
  7661. name: "Normal",
  7662. height: math.unit(12 + 2 / 12, "feet"),
  7663. default: true
  7664. },
  7665. {
  7666. name: "Macro",
  7667. height: math.unit(143, "feet")
  7668. },
  7669. {
  7670. name: "Macro+",
  7671. height: math.unit(400, "feet")
  7672. },
  7673. ]
  7674. ))
  7675. characterMakers.push(() => makeCharacter(
  7676. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7677. {
  7678. front: {
  7679. height: math.unit(6, "feet"),
  7680. weight: math.unit(225, "lbs"),
  7681. name: "Front",
  7682. image: {
  7683. source: "./media/characters/daniel/front.svg"
  7684. }
  7685. },
  7686. leaning: {
  7687. height: math.unit(6, "feet"),
  7688. weight: math.unit(225, "lbs"),
  7689. name: "Leaning",
  7690. image: {
  7691. source: "./media/characters/daniel/leaning.svg"
  7692. }
  7693. },
  7694. },
  7695. [
  7696. {
  7697. name: "Macro",
  7698. height: math.unit(1000, "feet"),
  7699. default: true
  7700. },
  7701. ]
  7702. ))
  7703. characterMakers.push(() => makeCharacter(
  7704. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7705. {
  7706. front: {
  7707. height: math.unit(6, "feet"),
  7708. weight: math.unit(88, "lbs"),
  7709. name: "Front",
  7710. image: {
  7711. source: "./media/characters/chiros/front.svg",
  7712. extra: 306 / 226
  7713. }
  7714. },
  7715. side: {
  7716. height: math.unit(6, "feet"),
  7717. weight: math.unit(88, "lbs"),
  7718. name: "Side",
  7719. image: {
  7720. source: "./media/characters/chiros/side.svg",
  7721. extra: 306 / 226
  7722. }
  7723. },
  7724. },
  7725. [
  7726. {
  7727. name: "Normal",
  7728. height: math.unit(6, "cm"),
  7729. default: true
  7730. },
  7731. ]
  7732. ))
  7733. characterMakers.push(() => makeCharacter(
  7734. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7735. {
  7736. front: {
  7737. height: math.unit(6, "feet"),
  7738. weight: math.unit(100, "lbs"),
  7739. name: "Front",
  7740. image: {
  7741. source: "./media/characters/selka/front.svg",
  7742. extra: 947 / 887
  7743. }
  7744. }
  7745. },
  7746. [
  7747. {
  7748. name: "Normal",
  7749. height: math.unit(5, "cm"),
  7750. default: true
  7751. },
  7752. ]
  7753. ))
  7754. characterMakers.push(() => makeCharacter(
  7755. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7756. {
  7757. front: {
  7758. height: math.unit(8 + 3 / 12, "feet"),
  7759. weight: math.unit(424, "lbs"),
  7760. name: "Front",
  7761. image: {
  7762. source: "./media/characters/verin/front.svg",
  7763. extra: 1845 / 1550
  7764. }
  7765. },
  7766. frontArmored: {
  7767. height: math.unit(8 + 3 / 12, "feet"),
  7768. weight: math.unit(424, "lbs"),
  7769. name: "Front (Armored)",
  7770. image: {
  7771. source: "./media/characters/verin/front-armor.svg",
  7772. extra: 1845 / 1550,
  7773. bottom: 0.01
  7774. }
  7775. },
  7776. back: {
  7777. height: math.unit(8 + 3 / 12, "feet"),
  7778. weight: math.unit(424, "lbs"),
  7779. name: "Back",
  7780. image: {
  7781. source: "./media/characters/verin/back.svg",
  7782. bottom: 0.1,
  7783. extra: 1
  7784. }
  7785. },
  7786. foot: {
  7787. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7788. name: "Foot",
  7789. image: {
  7790. source: "./media/characters/verin/foot.svg"
  7791. }
  7792. },
  7793. },
  7794. [
  7795. {
  7796. name: "Normal",
  7797. height: math.unit(8 + 3 / 12, "feet")
  7798. },
  7799. {
  7800. name: "Minimacro",
  7801. height: math.unit(21, "feet"),
  7802. default: true
  7803. },
  7804. {
  7805. name: "Macro",
  7806. height: math.unit(626, "feet")
  7807. },
  7808. ]
  7809. ))
  7810. characterMakers.push(() => makeCharacter(
  7811. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7812. {
  7813. front: {
  7814. height: math.unit(2.718, "meters"),
  7815. weight: math.unit(150, "lbs"),
  7816. name: "Front",
  7817. image: {
  7818. source: "./media/characters/sovrim-terraquian/front.svg"
  7819. }
  7820. },
  7821. back: {
  7822. height: math.unit(2.718, "meters"),
  7823. weight: math.unit(150, "lbs"),
  7824. name: "Back",
  7825. image: {
  7826. source: "./media/characters/sovrim-terraquian/back.svg"
  7827. }
  7828. }
  7829. },
  7830. [
  7831. {
  7832. name: "Micro",
  7833. height: math.unit(2, "inches")
  7834. },
  7835. {
  7836. name: "Small",
  7837. height: math.unit(1, "meter")
  7838. },
  7839. {
  7840. name: "Normal",
  7841. height: math.unit(Math.E, "meters"),
  7842. default: true
  7843. },
  7844. {
  7845. name: "Macro",
  7846. height: math.unit(20, "meters")
  7847. },
  7848. {
  7849. name: "Macro+",
  7850. height: math.unit(400, "meters")
  7851. },
  7852. ]
  7853. ))
  7854. characterMakers.push(() => makeCharacter(
  7855. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7856. {
  7857. front: {
  7858. height: math.unit(7, "feet"),
  7859. weight: math.unit(489, "lbs"),
  7860. name: "Front",
  7861. image: {
  7862. source: "./media/characters/reece-silvermane/front.svg",
  7863. bottom: 0.02,
  7864. extra: 1
  7865. }
  7866. },
  7867. },
  7868. [
  7869. {
  7870. name: "Macro",
  7871. height: math.unit(1.5, "miles"),
  7872. default: true
  7873. },
  7874. ]
  7875. ))
  7876. characterMakers.push(() => makeCharacter(
  7877. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7878. {
  7879. front: {
  7880. height: math.unit(6, "feet"),
  7881. weight: math.unit(78, "kg"),
  7882. name: "Front",
  7883. image: {
  7884. source: "./media/characters/kane/front.svg",
  7885. extra: 978 / 899
  7886. }
  7887. },
  7888. },
  7889. [
  7890. {
  7891. name: "Normal",
  7892. height: math.unit(2.1, "m"),
  7893. },
  7894. {
  7895. name: "Macro",
  7896. height: math.unit(1, "km"),
  7897. default: true
  7898. },
  7899. ]
  7900. ))
  7901. characterMakers.push(() => makeCharacter(
  7902. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7903. {
  7904. front: {
  7905. height: math.unit(6, "feet"),
  7906. weight: math.unit(200, "kg"),
  7907. name: "Front",
  7908. image: {
  7909. source: "./media/characters/tegon/front.svg",
  7910. bottom: 0.01,
  7911. extra: 1
  7912. }
  7913. },
  7914. },
  7915. [
  7916. {
  7917. name: "Micro",
  7918. height: math.unit(1, "inch")
  7919. },
  7920. {
  7921. name: "Normal",
  7922. height: math.unit(6 + 3 / 12, "feet"),
  7923. default: true
  7924. },
  7925. {
  7926. name: "Macro",
  7927. height: math.unit(300, "feet")
  7928. },
  7929. {
  7930. name: "Megamacro",
  7931. height: math.unit(69, "miles")
  7932. },
  7933. ]
  7934. ))
  7935. characterMakers.push(() => makeCharacter(
  7936. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7937. {
  7938. side: {
  7939. height: math.unit(6, "feet"),
  7940. weight: math.unit(2304, "lbs"),
  7941. name: "Side",
  7942. image: {
  7943. source: "./media/characters/arcturax/side.svg",
  7944. extra: 790 / 376,
  7945. bottom: 0.01
  7946. }
  7947. },
  7948. },
  7949. [
  7950. {
  7951. name: "Micro",
  7952. height: math.unit(2, "inch")
  7953. },
  7954. {
  7955. name: "Normal",
  7956. height: math.unit(6, "feet")
  7957. },
  7958. {
  7959. name: "Macro",
  7960. height: math.unit(39, "feet"),
  7961. default: true
  7962. },
  7963. {
  7964. name: "Megamacro",
  7965. height: math.unit(7, "miles")
  7966. },
  7967. ]
  7968. ))
  7969. characterMakers.push(() => makeCharacter(
  7970. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7971. {
  7972. front: {
  7973. height: math.unit(6, "feet"),
  7974. weight: math.unit(50, "lbs"),
  7975. name: "Front",
  7976. image: {
  7977. source: "./media/characters/sentri/front.svg",
  7978. extra: 1750 / 1570,
  7979. bottom: 0.025
  7980. }
  7981. },
  7982. frontAlt: {
  7983. height: math.unit(6, "feet"),
  7984. weight: math.unit(50, "lbs"),
  7985. name: "Front (Alt)",
  7986. image: {
  7987. source: "./media/characters/sentri/front-alt.svg",
  7988. extra: 1750 / 1570,
  7989. bottom: 0.025
  7990. }
  7991. },
  7992. },
  7993. [
  7994. {
  7995. name: "Normal",
  7996. height: math.unit(15, "feet"),
  7997. default: true
  7998. },
  7999. {
  8000. name: "Macro",
  8001. height: math.unit(2500, "feet")
  8002. }
  8003. ]
  8004. ))
  8005. characterMakers.push(() => makeCharacter(
  8006. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8007. {
  8008. front: {
  8009. height: math.unit(5 + 8 / 12, "feet"),
  8010. weight: math.unit(130, "lbs"),
  8011. name: "Front",
  8012. image: {
  8013. source: "./media/characters/corvin/front.svg",
  8014. extra: 1803 / 1629
  8015. }
  8016. },
  8017. frontShirt: {
  8018. height: math.unit(5 + 8 / 12, "feet"),
  8019. weight: math.unit(130, "lbs"),
  8020. name: "Front (Shirt)",
  8021. image: {
  8022. source: "./media/characters/corvin/front-shirt.svg",
  8023. extra: 1803 / 1629
  8024. }
  8025. },
  8026. frontPoncho: {
  8027. height: math.unit(5 + 8 / 12, "feet"),
  8028. weight: math.unit(130, "lbs"),
  8029. name: "Front (Poncho)",
  8030. image: {
  8031. source: "./media/characters/corvin/front-poncho.svg",
  8032. extra: 1803 / 1629
  8033. }
  8034. },
  8035. side: {
  8036. height: math.unit(5 + 8 / 12, "feet"),
  8037. weight: math.unit(130, "lbs"),
  8038. name: "Side",
  8039. image: {
  8040. source: "./media/characters/corvin/side.svg",
  8041. extra: 1012 / 945
  8042. }
  8043. },
  8044. back: {
  8045. height: math.unit(5 + 8 / 12, "feet"),
  8046. weight: math.unit(130, "lbs"),
  8047. name: "Back",
  8048. image: {
  8049. source: "./media/characters/corvin/back.svg",
  8050. extra: 1803 / 1629
  8051. }
  8052. },
  8053. },
  8054. [
  8055. {
  8056. name: "Micro",
  8057. height: math.unit(3, "inches")
  8058. },
  8059. {
  8060. name: "Normal",
  8061. height: math.unit(5 + 8 / 12, "feet")
  8062. },
  8063. {
  8064. name: "Macro",
  8065. height: math.unit(300, "feet"),
  8066. default: true
  8067. },
  8068. {
  8069. name: "Megamacro",
  8070. height: math.unit(500, "miles")
  8071. }
  8072. ]
  8073. ))
  8074. characterMakers.push(() => makeCharacter(
  8075. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8076. {
  8077. front: {
  8078. height: math.unit(6, "feet"),
  8079. weight: math.unit(135, "lbs"),
  8080. name: "Front",
  8081. image: {
  8082. source: "./media/characters/q/front.svg",
  8083. extra: 854 / 752,
  8084. bottom: 0.005
  8085. }
  8086. },
  8087. back: {
  8088. height: math.unit(6, "feet"),
  8089. weight: math.unit(130, "lbs"),
  8090. name: "Back",
  8091. image: {
  8092. source: "./media/characters/q/back.svg",
  8093. extra: 854 / 752
  8094. }
  8095. },
  8096. },
  8097. [
  8098. {
  8099. name: "Macro",
  8100. height: math.unit(90, "feet"),
  8101. default: true
  8102. },
  8103. {
  8104. name: "Extra Macro",
  8105. height: math.unit(300, "feet"),
  8106. },
  8107. {
  8108. name: "BIG WALF",
  8109. height: math.unit(750, "feet"),
  8110. },
  8111. ]
  8112. ))
  8113. characterMakers.push(() => makeCharacter(
  8114. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8115. {
  8116. front: {
  8117. height: math.unit(6, "feet"),
  8118. weight: math.unit(150, "lbs"),
  8119. name: "Front",
  8120. image: {
  8121. source: "./media/characters/carley/front.svg",
  8122. extra: 3927 / 3540,
  8123. bottom: 29.2 / 735
  8124. }
  8125. }
  8126. },
  8127. [
  8128. {
  8129. name: "Normal",
  8130. height: math.unit(6 + 3 / 12, "feet")
  8131. },
  8132. {
  8133. name: "Macro",
  8134. height: math.unit(185, "feet"),
  8135. default: true
  8136. },
  8137. {
  8138. name: "Megamacro",
  8139. height: math.unit(8, "miles"),
  8140. },
  8141. ]
  8142. ))
  8143. characterMakers.push(() => makeCharacter(
  8144. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8145. {
  8146. front: {
  8147. height: math.unit(3, "feet"),
  8148. weight: math.unit(28, "lbs"),
  8149. name: "Front",
  8150. image: {
  8151. source: "./media/characters/citrine/front.svg"
  8152. }
  8153. }
  8154. },
  8155. [
  8156. {
  8157. name: "Normal",
  8158. height: math.unit(3, "feet"),
  8159. default: true
  8160. }
  8161. ]
  8162. ))
  8163. characterMakers.push(() => makeCharacter(
  8164. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8165. {
  8166. front: {
  8167. height: math.unit(14, "feet"),
  8168. weight: math.unit(1450, "kg"),
  8169. capacity: math.unit(15, "people"),
  8170. name: "Front",
  8171. image: {
  8172. source: "./media/characters/aura-starwind/front.svg",
  8173. extra: 1440/1327,
  8174. bottom: 11/1451
  8175. }
  8176. },
  8177. side: {
  8178. height: math.unit(14, "feet"),
  8179. weight: math.unit(1450, "kg"),
  8180. capacity: math.unit(15, "people"),
  8181. name: "Side",
  8182. image: {
  8183. source: "./media/characters/aura-starwind/side.svg",
  8184. extra: 1654 / 1497
  8185. }
  8186. },
  8187. taur: {
  8188. height: math.unit(18, "feet"),
  8189. weight: math.unit(5500, "kg"),
  8190. capacity: math.unit(50, "people"),
  8191. name: "Taur",
  8192. image: {
  8193. source: "./media/characters/aura-starwind/taur.svg",
  8194. extra: 1760 / 1650
  8195. }
  8196. },
  8197. feral: {
  8198. height: math.unit(46, "feet"),
  8199. weight: math.unit(25000, "kg"),
  8200. capacity: math.unit(120, "people"),
  8201. name: "Feral",
  8202. image: {
  8203. source: "./media/characters/aura-starwind/feral.svg"
  8204. }
  8205. },
  8206. },
  8207. [
  8208. {
  8209. name: "Normal",
  8210. height: math.unit(14, "feet"),
  8211. default: true
  8212. },
  8213. {
  8214. name: "Macro",
  8215. height: math.unit(50, "meters")
  8216. },
  8217. {
  8218. name: "Megamacro",
  8219. height: math.unit(5000, "meters")
  8220. },
  8221. {
  8222. name: "Gigamacro",
  8223. height: math.unit(100000, "kilometers")
  8224. },
  8225. ]
  8226. ))
  8227. characterMakers.push(() => makeCharacter(
  8228. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8229. {
  8230. front: {
  8231. height: math.unit(2 + 7 / 12, "feet"),
  8232. weight: math.unit(32, "lbs"),
  8233. name: "Front",
  8234. image: {
  8235. source: "./media/characters/rivet/front.svg",
  8236. extra: 1716 / 1658,
  8237. bottom: 0.03
  8238. }
  8239. },
  8240. foot: {
  8241. height: math.unit(0.551, "feet"),
  8242. name: "Rivet's Foot",
  8243. image: {
  8244. source: "./media/characters/rivet/foot.svg"
  8245. },
  8246. rename: true
  8247. }
  8248. },
  8249. [
  8250. {
  8251. name: "Micro",
  8252. height: math.unit(1.5, "inches"),
  8253. },
  8254. {
  8255. name: "Normal",
  8256. height: math.unit(2 + 7 / 12, "feet"),
  8257. default: true
  8258. },
  8259. {
  8260. name: "Macro",
  8261. height: math.unit(85, "feet")
  8262. },
  8263. {
  8264. name: "Megamacro",
  8265. height: math.unit(2.2, "km")
  8266. }
  8267. ]
  8268. ))
  8269. characterMakers.push(() => makeCharacter(
  8270. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8271. {
  8272. front: {
  8273. height: math.unit(5 + 9 / 12, "feet"),
  8274. weight: math.unit(150, "lbs"),
  8275. name: "Front",
  8276. image: {
  8277. source: "./media/characters/coffee/front.svg",
  8278. extra: 3666 / 3032,
  8279. bottom: 0.04
  8280. }
  8281. },
  8282. foot: {
  8283. height: math.unit(1.29, "feet"),
  8284. name: "Foot",
  8285. image: {
  8286. source: "./media/characters/coffee/foot.svg"
  8287. }
  8288. },
  8289. },
  8290. [
  8291. {
  8292. name: "Micro",
  8293. height: math.unit(2, "inches"),
  8294. },
  8295. {
  8296. name: "Normal",
  8297. height: math.unit(5 + 9 / 12, "feet"),
  8298. default: true
  8299. },
  8300. {
  8301. name: "Macro",
  8302. height: math.unit(800, "feet")
  8303. },
  8304. {
  8305. name: "Megamacro",
  8306. height: math.unit(25, "miles")
  8307. }
  8308. ]
  8309. ))
  8310. characterMakers.push(() => makeCharacter(
  8311. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8312. {
  8313. front: {
  8314. height: math.unit(6, "feet"),
  8315. weight: math.unit(200, "lbs"),
  8316. name: "Front",
  8317. image: {
  8318. source: "./media/characters/chari-gal/front.svg",
  8319. extra: 1568 / 1385,
  8320. bottom: 0.047
  8321. }
  8322. },
  8323. gigantamax: {
  8324. height: math.unit(6 * 16, "feet"),
  8325. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8326. name: "Gigantamax",
  8327. image: {
  8328. source: "./media/characters/chari-gal/gigantamax.svg",
  8329. extra: 1124 / 888,
  8330. bottom: 0.03
  8331. }
  8332. },
  8333. },
  8334. [
  8335. {
  8336. name: "Normal",
  8337. height: math.unit(5 + 7 / 12, "feet")
  8338. },
  8339. {
  8340. name: "Macro",
  8341. height: math.unit(200, "feet"),
  8342. default: true
  8343. }
  8344. ]
  8345. ))
  8346. characterMakers.push(() => makeCharacter(
  8347. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8348. {
  8349. front: {
  8350. height: math.unit(6, "feet"),
  8351. weight: math.unit(150, "lbs"),
  8352. name: "Front",
  8353. image: {
  8354. source: "./media/characters/nova/front.svg",
  8355. extra: 5000 / 4722,
  8356. bottom: 0.02
  8357. }
  8358. }
  8359. },
  8360. [
  8361. {
  8362. name: "Micro-",
  8363. height: math.unit(0.8, "inches")
  8364. },
  8365. {
  8366. name: "Micro",
  8367. height: math.unit(2, "inches"),
  8368. default: true
  8369. },
  8370. ]
  8371. ))
  8372. characterMakers.push(() => makeCharacter(
  8373. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8374. {
  8375. front: {
  8376. height: math.unit(3 + 1 / 12, "feet"),
  8377. weight: math.unit(21.7, "lbs"),
  8378. name: "Front",
  8379. image: {
  8380. source: "./media/characters/argent/front.svg",
  8381. extra: 1471 / 1331,
  8382. bottom: 100.8 / 1575.5
  8383. }
  8384. }
  8385. },
  8386. [
  8387. {
  8388. name: "Micro",
  8389. height: math.unit(2, "inches")
  8390. },
  8391. {
  8392. name: "Normal",
  8393. height: math.unit(3 + 1 / 12, "feet"),
  8394. default: true
  8395. },
  8396. {
  8397. name: "Macro",
  8398. height: math.unit(120, "feet")
  8399. },
  8400. ]
  8401. ))
  8402. characterMakers.push(() => makeCharacter(
  8403. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8404. {
  8405. lamp: {
  8406. height: math.unit(7 * 1559 / 989, "feet"),
  8407. name: "Magic Lamp",
  8408. image: {
  8409. source: "./media/characters/mira-al-cul/lamp.svg",
  8410. extra: 1617 / 1559
  8411. }
  8412. },
  8413. front: {
  8414. height: math.unit(7, "feet"),
  8415. name: "Front",
  8416. image: {
  8417. source: "./media/characters/mira-al-cul/front.svg",
  8418. extra: 1044 / 990
  8419. }
  8420. },
  8421. },
  8422. [
  8423. {
  8424. name: "Heavily Restricted",
  8425. height: math.unit(7 * 1559 / 989, "feet")
  8426. },
  8427. {
  8428. name: "Freshly Freed",
  8429. height: math.unit(50 * 1559 / 989, "feet")
  8430. },
  8431. {
  8432. name: "World Encompassing",
  8433. height: math.unit(10000 * 1559 / 989, "miles")
  8434. },
  8435. {
  8436. name: "Galactic",
  8437. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8438. },
  8439. {
  8440. name: "Palmed Universe",
  8441. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8442. default: true
  8443. },
  8444. {
  8445. name: "Multiversal Matriarch",
  8446. height: math.unit(8.87e10, "yottameters")
  8447. },
  8448. {
  8449. name: "Void Mother",
  8450. height: math.unit(3.14e110, "yottaparsecs")
  8451. },
  8452. {
  8453. name: "Toying with Transcendence",
  8454. height: math.unit(1e307, "meters")
  8455. },
  8456. ]
  8457. ))
  8458. characterMakers.push(() => makeCharacter(
  8459. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8460. {
  8461. front: {
  8462. height: math.unit(17 + 1 / 12, "feet"),
  8463. weight: math.unit(476.2 * 5, "lbs"),
  8464. name: "Front",
  8465. image: {
  8466. source: "./media/characters/kuro-shi-uchū/front.svg",
  8467. extra: 2329 / 1835,
  8468. bottom: 0.02
  8469. }
  8470. },
  8471. },
  8472. [
  8473. {
  8474. name: "Micro",
  8475. height: math.unit(2, "inches")
  8476. },
  8477. {
  8478. name: "Normal",
  8479. height: math.unit(12, "meters")
  8480. },
  8481. {
  8482. name: "Planetary",
  8483. height: math.unit(0.00929, "AU"),
  8484. default: true
  8485. },
  8486. {
  8487. name: "Universal",
  8488. height: math.unit(20, "gigaparsecs")
  8489. },
  8490. ]
  8491. ))
  8492. characterMakers.push(() => makeCharacter(
  8493. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8494. {
  8495. front: {
  8496. height: math.unit(5 + 2 / 12, "feet"),
  8497. weight: math.unit(120, "lbs"),
  8498. name: "Front",
  8499. image: {
  8500. source: "./media/characters/katherine/front.svg",
  8501. extra: 2075 / 1969
  8502. }
  8503. },
  8504. dress: {
  8505. height: math.unit(5 + 2 / 12, "feet"),
  8506. weight: math.unit(120, "lbs"),
  8507. name: "Dress",
  8508. image: {
  8509. source: "./media/characters/katherine/dress.svg",
  8510. extra: 2258 / 2064
  8511. }
  8512. },
  8513. },
  8514. [
  8515. {
  8516. name: "Micro",
  8517. height: math.unit(1, "inches"),
  8518. default: true
  8519. },
  8520. {
  8521. name: "Normal",
  8522. height: math.unit(5 + 2 / 12, "feet")
  8523. },
  8524. {
  8525. name: "Macro",
  8526. height: math.unit(100, "meters")
  8527. },
  8528. {
  8529. name: "Megamacro",
  8530. height: math.unit(80, "miles")
  8531. },
  8532. ]
  8533. ))
  8534. characterMakers.push(() => makeCharacter(
  8535. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8536. {
  8537. front: {
  8538. height: math.unit(7 + 8 / 12, "feet"),
  8539. weight: math.unit(250, "lbs"),
  8540. name: "Front",
  8541. image: {
  8542. source: "./media/characters/yevis/front.svg",
  8543. extra: 1938 / 1755
  8544. }
  8545. }
  8546. },
  8547. [
  8548. {
  8549. name: "Mortal",
  8550. height: math.unit(7 + 8 / 12, "feet")
  8551. },
  8552. {
  8553. name: "Battle",
  8554. height: math.unit(25 + 11 / 12, "feet")
  8555. },
  8556. {
  8557. name: "Wrath",
  8558. height: math.unit(1654 + 11 / 12, "feet")
  8559. },
  8560. {
  8561. name: "Planet Destroyer",
  8562. height: math.unit(12000, "miles")
  8563. },
  8564. {
  8565. name: "Galaxy Conqueror",
  8566. height: math.unit(1.45, "zettameters"),
  8567. default: true
  8568. },
  8569. {
  8570. name: "Universal War",
  8571. height: math.unit(184, "gigaparsecs")
  8572. },
  8573. {
  8574. name: "Eternity War",
  8575. height: math.unit(1.98e55, "yottaparsecs")
  8576. },
  8577. ]
  8578. ))
  8579. characterMakers.push(() => makeCharacter(
  8580. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8581. {
  8582. front: {
  8583. height: math.unit(5 + 8 / 12, "feet"),
  8584. weight: math.unit(63, "kg"),
  8585. name: "Front",
  8586. image: {
  8587. source: "./media/characters/xavier/front.svg",
  8588. extra: 944 / 883
  8589. }
  8590. },
  8591. frontStretch: {
  8592. height: math.unit(5 + 8 / 12, "feet"),
  8593. weight: math.unit(63, "kg"),
  8594. name: "Stretching",
  8595. image: {
  8596. source: "./media/characters/xavier/front-stretch.svg",
  8597. extra: 962 / 820
  8598. }
  8599. },
  8600. },
  8601. [
  8602. {
  8603. name: "Normal",
  8604. height: math.unit(5 + 8 / 12, "feet")
  8605. },
  8606. {
  8607. name: "Macro",
  8608. height: math.unit(100, "meters"),
  8609. default: true
  8610. },
  8611. {
  8612. name: "McLargeHuge",
  8613. height: math.unit(10, "miles")
  8614. },
  8615. ]
  8616. ))
  8617. characterMakers.push(() => makeCharacter(
  8618. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8619. {
  8620. front: {
  8621. height: math.unit(5 + 5 / 12, "feet"),
  8622. weight: math.unit(150, "lb"),
  8623. name: "Front",
  8624. image: {
  8625. source: "./media/characters/joshii/front.svg",
  8626. extra: 765 / 653,
  8627. bottom: 51 / 816
  8628. }
  8629. },
  8630. foot: {
  8631. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8632. name: "Foot",
  8633. image: {
  8634. source: "./media/characters/joshii/foot.svg"
  8635. }
  8636. },
  8637. },
  8638. [
  8639. {
  8640. name: "Micro",
  8641. height: math.unit(2, "inches"),
  8642. default: true
  8643. },
  8644. {
  8645. name: "Normal",
  8646. height: math.unit(5 + 5 / 12, "feet")
  8647. },
  8648. {
  8649. name: "Macro",
  8650. height: math.unit(785, "feet")
  8651. },
  8652. {
  8653. name: "Megamacro",
  8654. height: math.unit(24.5, "miles")
  8655. },
  8656. ]
  8657. ))
  8658. characterMakers.push(() => makeCharacter(
  8659. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8660. {
  8661. front: {
  8662. height: math.unit(6, "feet"),
  8663. weight: math.unit(150, "lb"),
  8664. name: "Front",
  8665. image: {
  8666. source: "./media/characters/goddess-elizabeth/front.svg",
  8667. extra: 1800 / 1525,
  8668. bottom: 0.005
  8669. }
  8670. },
  8671. foot: {
  8672. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8673. name: "Foot",
  8674. image: {
  8675. source: "./media/characters/goddess-elizabeth/foot.svg"
  8676. }
  8677. },
  8678. mouth: {
  8679. height: math.unit(6, "feet"),
  8680. name: "Mouth",
  8681. image: {
  8682. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8683. }
  8684. },
  8685. },
  8686. [
  8687. {
  8688. name: "Micro",
  8689. height: math.unit(12, "feet")
  8690. },
  8691. {
  8692. name: "Normal",
  8693. height: math.unit(80, "miles"),
  8694. default: true
  8695. },
  8696. {
  8697. name: "Macro",
  8698. height: math.unit(15000, "parsecs")
  8699. },
  8700. ]
  8701. ))
  8702. characterMakers.push(() => makeCharacter(
  8703. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8704. {
  8705. front: {
  8706. height: math.unit(5 + 9 / 12, "feet"),
  8707. weight: math.unit(144, "lb"),
  8708. name: "Front",
  8709. image: {
  8710. source: "./media/characters/kara/front.svg"
  8711. }
  8712. },
  8713. feet: {
  8714. height: math.unit(6 / 6.765, "feet"),
  8715. name: "Kara's Feet",
  8716. rename: true,
  8717. image: {
  8718. source: "./media/characters/kara/feet.svg"
  8719. }
  8720. },
  8721. },
  8722. [
  8723. {
  8724. name: "Normal",
  8725. height: math.unit(5 + 9 / 12, "feet")
  8726. },
  8727. {
  8728. name: "Macro",
  8729. height: math.unit(174, "feet"),
  8730. default: true
  8731. },
  8732. ]
  8733. ))
  8734. characterMakers.push(() => makeCharacter(
  8735. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8736. {
  8737. front: {
  8738. height: math.unit(18, "feet"),
  8739. weight: math.unit(4050, "lb"),
  8740. name: "Front",
  8741. image: {
  8742. source: "./media/characters/tyrone/front.svg",
  8743. extra: 2405 / 2270,
  8744. bottom: 182 / 2587
  8745. }
  8746. },
  8747. },
  8748. [
  8749. {
  8750. name: "Normal",
  8751. height: math.unit(18, "feet"),
  8752. default: true
  8753. },
  8754. {
  8755. name: "Macro",
  8756. height: math.unit(300, "feet")
  8757. },
  8758. {
  8759. name: "Megamacro",
  8760. height: math.unit(15, "km")
  8761. },
  8762. {
  8763. name: "Gigamacro",
  8764. height: math.unit(500, "km")
  8765. },
  8766. {
  8767. name: "Teramacro",
  8768. height: math.unit(0.5, "gigameters")
  8769. },
  8770. {
  8771. name: "Omnimacro",
  8772. height: math.unit(1e252, "yottauniverse")
  8773. },
  8774. ]
  8775. ))
  8776. characterMakers.push(() => makeCharacter(
  8777. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8778. {
  8779. front: {
  8780. height: math.unit(7 + 8 / 12, "feet"),
  8781. weight: math.unit(120, "lb"),
  8782. name: "Front",
  8783. image: {
  8784. source: "./media/characters/danny/front.svg",
  8785. extra: 1490 / 1350
  8786. }
  8787. },
  8788. back: {
  8789. height: math.unit(7 + 8 / 12, "feet"),
  8790. weight: math.unit(120, "lb"),
  8791. name: "Back",
  8792. image: {
  8793. source: "./media/characters/danny/back.svg",
  8794. extra: 1490 / 1350
  8795. }
  8796. },
  8797. },
  8798. [
  8799. {
  8800. name: "Normal",
  8801. height: math.unit(7 + 8 / 12, "feet"),
  8802. default: true
  8803. },
  8804. ]
  8805. ))
  8806. characterMakers.push(() => makeCharacter(
  8807. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8808. {
  8809. front: {
  8810. height: math.unit(3.5, "inches"),
  8811. weight: math.unit(19, "grams"),
  8812. name: "Front",
  8813. image: {
  8814. source: "./media/characters/mallow/front.svg",
  8815. extra: 471 / 431
  8816. }
  8817. },
  8818. back: {
  8819. height: math.unit(3.5, "inches"),
  8820. weight: math.unit(19, "grams"),
  8821. name: "Back",
  8822. image: {
  8823. source: "./media/characters/mallow/back.svg",
  8824. extra: 471 / 431
  8825. }
  8826. },
  8827. },
  8828. [
  8829. {
  8830. name: "Normal",
  8831. height: math.unit(3.5, "inches"),
  8832. default: true
  8833. },
  8834. ]
  8835. ))
  8836. characterMakers.push(() => makeCharacter(
  8837. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8838. {
  8839. front: {
  8840. height: math.unit(9, "feet"),
  8841. weight: math.unit(230, "kg"),
  8842. name: "Front",
  8843. image: {
  8844. source: "./media/characters/starry-aqua/front.svg"
  8845. }
  8846. },
  8847. back: {
  8848. height: math.unit(9, "feet"),
  8849. weight: math.unit(230, "kg"),
  8850. name: "Back",
  8851. image: {
  8852. source: "./media/characters/starry-aqua/back.svg"
  8853. }
  8854. },
  8855. hand: {
  8856. height: math.unit(9 * 0.1168, "feet"),
  8857. name: "Hand",
  8858. image: {
  8859. source: "./media/characters/starry-aqua/hand.svg"
  8860. }
  8861. },
  8862. foot: {
  8863. height: math.unit(9 * 0.18, "feet"),
  8864. name: "Foot",
  8865. image: {
  8866. source: "./media/characters/starry-aqua/foot.svg"
  8867. }
  8868. }
  8869. },
  8870. [
  8871. {
  8872. name: "Micro",
  8873. height: math.unit(3, "inches")
  8874. },
  8875. {
  8876. name: "Normal",
  8877. height: math.unit(9, "feet")
  8878. },
  8879. {
  8880. name: "Macro",
  8881. height: math.unit(300, "feet"),
  8882. default: true
  8883. },
  8884. {
  8885. name: "Megamacro",
  8886. height: math.unit(3200, "feet")
  8887. }
  8888. ]
  8889. ))
  8890. characterMakers.push(() => makeCharacter(
  8891. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8892. {
  8893. front: {
  8894. height: math.unit(6, "feet"),
  8895. weight: math.unit(230, "lb"),
  8896. name: "Front",
  8897. image: {
  8898. source: "./media/characters/luka/front.svg",
  8899. extra: 1,
  8900. bottom: 0.025
  8901. }
  8902. },
  8903. },
  8904. [
  8905. {
  8906. name: "Normal",
  8907. height: math.unit(12 + 8 / 12, "feet"),
  8908. default: true
  8909. },
  8910. {
  8911. name: "Minimacro",
  8912. height: math.unit(20, "feet")
  8913. },
  8914. {
  8915. name: "Macro",
  8916. height: math.unit(250, "feet")
  8917. },
  8918. {
  8919. name: "Megamacro",
  8920. height: math.unit(5, "miles")
  8921. },
  8922. {
  8923. name: "Gigamacro",
  8924. height: math.unit(8000, "miles")
  8925. },
  8926. ]
  8927. ))
  8928. characterMakers.push(() => makeCharacter(
  8929. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8930. {
  8931. front: {
  8932. height: math.unit(6, "feet"),
  8933. weight: math.unit(150, "lb"),
  8934. name: "Front",
  8935. image: {
  8936. source: "./media/characters/natalie-nightring/front.svg",
  8937. extra: 1,
  8938. bottom: 0.06
  8939. }
  8940. },
  8941. },
  8942. [
  8943. {
  8944. name: "Uh Oh",
  8945. height: math.unit(0.1, "mm")
  8946. },
  8947. {
  8948. name: "Small",
  8949. height: math.unit(3, "inches")
  8950. },
  8951. {
  8952. name: "Human Scale",
  8953. height: math.unit(6, "feet")
  8954. },
  8955. {
  8956. name: "Librarian",
  8957. height: math.unit(50, "feet"),
  8958. default: true
  8959. },
  8960. {
  8961. name: "Immense",
  8962. height: math.unit(200, "miles")
  8963. },
  8964. ]
  8965. ))
  8966. characterMakers.push(() => makeCharacter(
  8967. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8968. {
  8969. front: {
  8970. height: math.unit(6, "feet"),
  8971. weight: math.unit(180, "lbs"),
  8972. name: "Front",
  8973. image: {
  8974. source: "./media/characters/danni-rosie/front.svg",
  8975. extra: 1260 / 1128,
  8976. bottom: 0.022
  8977. }
  8978. },
  8979. },
  8980. [
  8981. {
  8982. name: "Micro",
  8983. height: math.unit(2, "inches"),
  8984. default: true
  8985. },
  8986. ]
  8987. ))
  8988. characterMakers.push(() => makeCharacter(
  8989. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8990. {
  8991. front: {
  8992. height: math.unit(5 + 9 / 12, "feet"),
  8993. weight: math.unit(220, "lb"),
  8994. name: "Front",
  8995. image: {
  8996. source: "./media/characters/samantha-kruse/front.svg",
  8997. extra: (985 / 935),
  8998. bottom: 0.03
  8999. }
  9000. },
  9001. frontUndressed: {
  9002. height: math.unit(5 + 9 / 12, "feet"),
  9003. weight: math.unit(220, "lb"),
  9004. name: "Front (Undressed)",
  9005. image: {
  9006. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9007. extra: (973 / 923),
  9008. bottom: 0.025
  9009. }
  9010. },
  9011. fat: {
  9012. height: math.unit(5 + 9 / 12, "feet"),
  9013. weight: math.unit(900, "lb"),
  9014. name: "Front (Fat)",
  9015. image: {
  9016. source: "./media/characters/samantha-kruse/fat.svg",
  9017. extra: 2688 / 2561
  9018. }
  9019. },
  9020. },
  9021. [
  9022. {
  9023. name: "Normal",
  9024. height: math.unit(5 + 9 / 12, "feet"),
  9025. default: true
  9026. }
  9027. ]
  9028. ))
  9029. characterMakers.push(() => makeCharacter(
  9030. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9031. {
  9032. back: {
  9033. height: math.unit(5 + 4 / 12, "feet"),
  9034. weight: math.unit(4963, "lb"),
  9035. name: "Back",
  9036. image: {
  9037. source: "./media/characters/amelia-rosie/back.svg",
  9038. extra: 1113 / 963,
  9039. bottom: 0.01
  9040. }
  9041. },
  9042. },
  9043. [
  9044. {
  9045. name: "Level 0",
  9046. height: math.unit(5 + 4 / 12, "feet")
  9047. },
  9048. {
  9049. name: "Level 1",
  9050. height: math.unit(164597, "feet"),
  9051. default: true
  9052. },
  9053. {
  9054. name: "Level 2",
  9055. height: math.unit(956243, "miles")
  9056. },
  9057. {
  9058. name: "Level 3",
  9059. height: math.unit(29421709423, "miles")
  9060. },
  9061. {
  9062. name: "Level 4",
  9063. height: math.unit(154, "lightyears")
  9064. },
  9065. {
  9066. name: "Level 5",
  9067. height: math.unit(4738272, "lightyears")
  9068. },
  9069. {
  9070. name: "Level 6",
  9071. height: math.unit(145787152896, "lightyears")
  9072. },
  9073. ]
  9074. ))
  9075. characterMakers.push(() => makeCharacter(
  9076. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9077. {
  9078. front: {
  9079. height: math.unit(5 + 11 / 12, "feet"),
  9080. weight: math.unit(65, "kg"),
  9081. name: "Front",
  9082. image: {
  9083. source: "./media/characters/rook-kitara/front.svg",
  9084. extra: 1347 / 1274,
  9085. bottom: 0.005
  9086. }
  9087. },
  9088. },
  9089. [
  9090. {
  9091. name: "Totally Unfair",
  9092. height: math.unit(1.8, "mm")
  9093. },
  9094. {
  9095. name: "Lap Rookie",
  9096. height: math.unit(1.4, "feet")
  9097. },
  9098. {
  9099. name: "Normal",
  9100. height: math.unit(5 + 11 / 12, "feet"),
  9101. default: true
  9102. },
  9103. {
  9104. name: "How Did This Happen",
  9105. height: math.unit(80, "miles")
  9106. }
  9107. ]
  9108. ))
  9109. characterMakers.push(() => makeCharacter(
  9110. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9111. {
  9112. front: {
  9113. height: math.unit(7, "feet"),
  9114. weight: math.unit(300, "lb"),
  9115. name: "Front",
  9116. image: {
  9117. source: "./media/characters/pisces/front.svg",
  9118. extra: 2255 / 2115,
  9119. bottom: 0.03
  9120. }
  9121. },
  9122. back: {
  9123. height: math.unit(7, "feet"),
  9124. weight: math.unit(300, "lb"),
  9125. name: "Back",
  9126. image: {
  9127. source: "./media/characters/pisces/back.svg",
  9128. extra: 2146 / 2055,
  9129. bottom: 0.04
  9130. }
  9131. },
  9132. },
  9133. [
  9134. {
  9135. name: "Normal",
  9136. height: math.unit(7, "feet"),
  9137. default: true
  9138. },
  9139. {
  9140. name: "Swimming Pool",
  9141. height: math.unit(12.2, "meters")
  9142. },
  9143. {
  9144. name: "Olympic Swimming Pool",
  9145. height: math.unit(56.3, "meters")
  9146. },
  9147. {
  9148. name: "Lake Superior",
  9149. height: math.unit(93900, "meters")
  9150. },
  9151. {
  9152. name: "Mediterranean Sea",
  9153. height: math.unit(644457, "meters")
  9154. },
  9155. {
  9156. name: "World's Oceans",
  9157. height: math.unit(4567491, "meters")
  9158. },
  9159. ]
  9160. ))
  9161. characterMakers.push(() => makeCharacter(
  9162. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9163. {
  9164. front: {
  9165. height: math.unit(2.3, "meters"),
  9166. weight: math.unit(120, "kg"),
  9167. name: "Front",
  9168. image: {
  9169. source: "./media/characters/zelas/front.svg"
  9170. }
  9171. },
  9172. side: {
  9173. height: math.unit(2.3, "meters"),
  9174. weight: math.unit(120, "kg"),
  9175. name: "Side",
  9176. image: {
  9177. source: "./media/characters/zelas/side.svg"
  9178. }
  9179. },
  9180. back: {
  9181. height: math.unit(2.3, "meters"),
  9182. weight: math.unit(120, "kg"),
  9183. name: "Back",
  9184. image: {
  9185. source: "./media/characters/zelas/back.svg"
  9186. }
  9187. },
  9188. foot: {
  9189. height: math.unit(1.116, "feet"),
  9190. name: "Foot",
  9191. image: {
  9192. source: "./media/characters/zelas/foot.svg"
  9193. }
  9194. },
  9195. },
  9196. [
  9197. {
  9198. name: "Normal",
  9199. height: math.unit(2.3, "meters")
  9200. },
  9201. {
  9202. name: "Macro",
  9203. height: math.unit(30, "meters"),
  9204. default: true
  9205. },
  9206. ]
  9207. ))
  9208. characterMakers.push(() => makeCharacter(
  9209. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9210. {
  9211. front: {
  9212. height: math.unit(1, "inch"),
  9213. weight: math.unit(0.21, "grams"),
  9214. name: "Front",
  9215. image: {
  9216. source: "./media/characters/talbot/front.svg",
  9217. extra: 594 / 544
  9218. }
  9219. },
  9220. },
  9221. [
  9222. {
  9223. name: "Micro",
  9224. height: math.unit(1, "inch"),
  9225. default: true
  9226. },
  9227. ]
  9228. ))
  9229. characterMakers.push(() => makeCharacter(
  9230. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9231. {
  9232. front: {
  9233. height: math.unit(3 + 3 / 12, "feet"),
  9234. weight: math.unit(51.8, "lb"),
  9235. name: "Front",
  9236. image: {
  9237. source: "./media/characters/fliss/front.svg",
  9238. extra: 840 / 640
  9239. }
  9240. },
  9241. },
  9242. [
  9243. {
  9244. name: "Teeny Tiny",
  9245. height: math.unit(1, "mm")
  9246. },
  9247. {
  9248. name: "Small",
  9249. height: math.unit(1, "inch"),
  9250. default: true
  9251. },
  9252. {
  9253. name: "Standard Sylveon",
  9254. height: math.unit(3 + 3 / 12, "feet")
  9255. },
  9256. {
  9257. name: "Large Nuisance",
  9258. height: math.unit(33, "feet")
  9259. },
  9260. {
  9261. name: "City Filler",
  9262. height: math.unit(3000, "feet")
  9263. },
  9264. {
  9265. name: "New Horizon",
  9266. height: math.unit(6000, "miles")
  9267. },
  9268. ]
  9269. ))
  9270. characterMakers.push(() => makeCharacter(
  9271. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9272. {
  9273. front: {
  9274. height: math.unit(5, "cm"),
  9275. weight: math.unit(1.94, "g"),
  9276. name: "Front",
  9277. image: {
  9278. source: "./media/characters/fleta/front.svg",
  9279. extra: 835 / 803
  9280. }
  9281. },
  9282. back: {
  9283. height: math.unit(5, "cm"),
  9284. weight: math.unit(1.94, "g"),
  9285. name: "Back",
  9286. image: {
  9287. source: "./media/characters/fleta/back.svg",
  9288. extra: 835 / 803
  9289. }
  9290. },
  9291. },
  9292. [
  9293. {
  9294. name: "Micro",
  9295. height: math.unit(5, "cm"),
  9296. default: true
  9297. },
  9298. ]
  9299. ))
  9300. characterMakers.push(() => makeCharacter(
  9301. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9302. {
  9303. front: {
  9304. height: math.unit(6, "feet"),
  9305. weight: math.unit(225, "lb"),
  9306. name: "Front",
  9307. image: {
  9308. source: "./media/characters/dominic/front.svg",
  9309. extra: 1770 / 1620,
  9310. bottom: 0.025
  9311. }
  9312. },
  9313. back: {
  9314. height: math.unit(6, "feet"),
  9315. weight: math.unit(225, "lb"),
  9316. name: "Back",
  9317. image: {
  9318. source: "./media/characters/dominic/back.svg",
  9319. extra: 1745 / 1620,
  9320. bottom: 0.065
  9321. }
  9322. },
  9323. },
  9324. [
  9325. {
  9326. name: "Nano",
  9327. height: math.unit(0.1, "mm")
  9328. },
  9329. {
  9330. name: "Micro-",
  9331. height: math.unit(1, "mm")
  9332. },
  9333. {
  9334. name: "Micro",
  9335. height: math.unit(4, "inches")
  9336. },
  9337. {
  9338. name: "Normal",
  9339. height: math.unit(6 + 4 / 12, "feet"),
  9340. default: true
  9341. },
  9342. {
  9343. name: "Macro",
  9344. height: math.unit(115, "feet")
  9345. },
  9346. {
  9347. name: "Macro+",
  9348. height: math.unit(955, "feet")
  9349. },
  9350. {
  9351. name: "Megamacro",
  9352. height: math.unit(8990, "feet")
  9353. },
  9354. {
  9355. name: "Gigmacro",
  9356. height: math.unit(9310, "miles")
  9357. },
  9358. {
  9359. name: "Teramacro",
  9360. height: math.unit(1567005010, "miles")
  9361. },
  9362. {
  9363. name: "Examacro",
  9364. height: math.unit(1425, "parsecs")
  9365. },
  9366. ]
  9367. ))
  9368. characterMakers.push(() => makeCharacter(
  9369. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9370. {
  9371. front: {
  9372. height: math.unit(400, "feet"),
  9373. weight: math.unit(44444444, "lb"),
  9374. name: "Front",
  9375. image: {
  9376. source: "./media/characters/major-colonel/front.svg"
  9377. }
  9378. },
  9379. back: {
  9380. height: math.unit(400, "feet"),
  9381. weight: math.unit(44444444, "lb"),
  9382. name: "Back",
  9383. image: {
  9384. source: "./media/characters/major-colonel/back.svg"
  9385. }
  9386. },
  9387. },
  9388. [
  9389. {
  9390. name: "Macro",
  9391. height: math.unit(400, "feet"),
  9392. default: true
  9393. },
  9394. ]
  9395. ))
  9396. characterMakers.push(() => makeCharacter(
  9397. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9398. {
  9399. catFront: {
  9400. height: math.unit(6, "feet"),
  9401. weight: math.unit(120, "lb"),
  9402. name: "Front (Cat Side)",
  9403. image: {
  9404. source: "./media/characters/axel-lycan/cat-front.svg",
  9405. extra: 430 / 402,
  9406. bottom: 43 / 472.35
  9407. }
  9408. },
  9409. catBack: {
  9410. height: math.unit(6, "feet"),
  9411. weight: math.unit(120, "lb"),
  9412. name: "Back (Cat Side)",
  9413. image: {
  9414. source: "./media/characters/axel-lycan/cat-back.svg",
  9415. extra: 447 / 419,
  9416. bottom: 23.3 / 469
  9417. }
  9418. },
  9419. wolfFront: {
  9420. height: math.unit(6, "feet"),
  9421. weight: math.unit(120, "lb"),
  9422. name: "Front (Wolf Side)",
  9423. image: {
  9424. source: "./media/characters/axel-lycan/wolf-front.svg",
  9425. extra: 485 / 456,
  9426. bottom: 19 / 504
  9427. }
  9428. },
  9429. wolfBack: {
  9430. height: math.unit(6, "feet"),
  9431. weight: math.unit(120, "lb"),
  9432. name: "Back (Wolf Side)",
  9433. image: {
  9434. source: "./media/characters/axel-lycan/wolf-back.svg",
  9435. extra: 475 / 438,
  9436. bottom: 39.2 / 514
  9437. }
  9438. },
  9439. },
  9440. [
  9441. {
  9442. name: "Macro",
  9443. height: math.unit(1, "km"),
  9444. default: true
  9445. },
  9446. ]
  9447. ))
  9448. characterMakers.push(() => makeCharacter(
  9449. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9450. {
  9451. front: {
  9452. height: math.unit(5 + 9 / 12, "feet"),
  9453. weight: math.unit(175, "lb"),
  9454. name: "Front",
  9455. image: {
  9456. source: "./media/characters/vanrel-hyena/front.svg",
  9457. extra: 1086 / 1010,
  9458. bottom: 0.04
  9459. }
  9460. },
  9461. },
  9462. [
  9463. {
  9464. name: "Normal",
  9465. height: math.unit(5 + 9 / 12, "feet"),
  9466. default: true
  9467. },
  9468. ]
  9469. ))
  9470. characterMakers.push(() => makeCharacter(
  9471. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9472. {
  9473. front: {
  9474. height: math.unit(6, "feet"),
  9475. weight: math.unit(103, "lb"),
  9476. name: "Front",
  9477. image: {
  9478. source: "./media/characters/abbott-absol/front.svg",
  9479. extra: 2010 / 1842
  9480. }
  9481. },
  9482. },
  9483. [
  9484. {
  9485. name: "Megamicro",
  9486. height: math.unit(0.1, "mm")
  9487. },
  9488. {
  9489. name: "Micro",
  9490. height: math.unit(1, "inch")
  9491. },
  9492. {
  9493. name: "Normal",
  9494. height: math.unit(6, "feet"),
  9495. default: true
  9496. },
  9497. ]
  9498. ))
  9499. characterMakers.push(() => makeCharacter(
  9500. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9501. {
  9502. front: {
  9503. height: math.unit(6, "feet"),
  9504. weight: math.unit(264, "lb"),
  9505. name: "Front",
  9506. image: {
  9507. source: "./media/characters/hector/front.svg",
  9508. extra: 2280 / 2130,
  9509. bottom: 0.07
  9510. }
  9511. },
  9512. },
  9513. [
  9514. {
  9515. name: "Normal",
  9516. height: math.unit(12.25, "foot"),
  9517. default: true
  9518. },
  9519. {
  9520. name: "Macro",
  9521. height: math.unit(160, "feet")
  9522. },
  9523. ]
  9524. ))
  9525. characterMakers.push(() => makeCharacter(
  9526. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9527. {
  9528. front: {
  9529. height: math.unit(6, "feet"),
  9530. weight: math.unit(150, "lb"),
  9531. name: "Front",
  9532. image: {
  9533. source: "./media/characters/sal/front.svg",
  9534. extra: 1846 / 1699,
  9535. bottom: 0.04
  9536. }
  9537. },
  9538. },
  9539. [
  9540. {
  9541. name: "Megamacro",
  9542. height: math.unit(10, "miles"),
  9543. default: true
  9544. },
  9545. ]
  9546. ))
  9547. characterMakers.push(() => makeCharacter(
  9548. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9549. {
  9550. front: {
  9551. height: math.unit(3, "meters"),
  9552. weight: math.unit(450, "kg"),
  9553. name: "front",
  9554. image: {
  9555. source: "./media/characters/ranger/front.svg",
  9556. extra: 2401 / 2243,
  9557. bottom: 0.05
  9558. }
  9559. },
  9560. },
  9561. [
  9562. {
  9563. name: "Normal",
  9564. height: math.unit(3, "meters"),
  9565. default: true
  9566. },
  9567. ]
  9568. ))
  9569. characterMakers.push(() => makeCharacter(
  9570. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9571. {
  9572. front: {
  9573. height: math.unit(14, "feet"),
  9574. weight: math.unit(800, "kg"),
  9575. name: "Front",
  9576. image: {
  9577. source: "./media/characters/theresa/front.svg",
  9578. extra: 3575 / 3346,
  9579. bottom: 0.03
  9580. }
  9581. },
  9582. },
  9583. [
  9584. {
  9585. name: "Normal",
  9586. height: math.unit(14, "feet"),
  9587. default: true
  9588. },
  9589. ]
  9590. ))
  9591. characterMakers.push(() => makeCharacter(
  9592. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9593. {
  9594. front: {
  9595. height: math.unit(6, "feet"),
  9596. weight: math.unit(3, "kg"),
  9597. name: "Front",
  9598. image: {
  9599. source: "./media/characters/ine/front.svg",
  9600. extra: 678 / 539,
  9601. bottom: 0.023
  9602. }
  9603. },
  9604. },
  9605. [
  9606. {
  9607. name: "Normal",
  9608. height: math.unit(2.265, "feet"),
  9609. default: true
  9610. },
  9611. ]
  9612. ))
  9613. characterMakers.push(() => makeCharacter(
  9614. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9615. {
  9616. front: {
  9617. height: math.unit(5, "feet"),
  9618. weight: math.unit(30, "kg"),
  9619. name: "Front",
  9620. image: {
  9621. source: "./media/characters/vial/front.svg",
  9622. extra: 1365 / 1277,
  9623. bottom: 0.04
  9624. }
  9625. },
  9626. },
  9627. [
  9628. {
  9629. name: "Normal",
  9630. height: math.unit(5, "feet"),
  9631. default: true
  9632. },
  9633. ]
  9634. ))
  9635. characterMakers.push(() => makeCharacter(
  9636. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9637. {
  9638. side: {
  9639. height: math.unit(3.4, "meters"),
  9640. weight: math.unit(1000, "lb"),
  9641. name: "Side",
  9642. image: {
  9643. source: "./media/characters/rovoska/side.svg",
  9644. extra: 4403 / 1515
  9645. }
  9646. },
  9647. },
  9648. [
  9649. {
  9650. name: "Normal",
  9651. height: math.unit(3.4, "meters"),
  9652. default: true
  9653. },
  9654. ]
  9655. ))
  9656. characterMakers.push(() => makeCharacter(
  9657. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9658. {
  9659. front: {
  9660. height: math.unit(8, "feet"),
  9661. weight: math.unit(315, "lb"),
  9662. name: "Front",
  9663. image: {
  9664. source: "./media/characters/gunner-rotthbauer/front.svg"
  9665. }
  9666. },
  9667. back: {
  9668. height: math.unit(8, "feet"),
  9669. weight: math.unit(315, "lb"),
  9670. name: "Back",
  9671. image: {
  9672. source: "./media/characters/gunner-rotthbauer/back.svg"
  9673. }
  9674. },
  9675. },
  9676. [
  9677. {
  9678. name: "Micro",
  9679. height: math.unit(3.5, "inches")
  9680. },
  9681. {
  9682. name: "Normal",
  9683. height: math.unit(8, "feet"),
  9684. default: true
  9685. },
  9686. {
  9687. name: "Macro",
  9688. height: math.unit(250, "feet")
  9689. },
  9690. {
  9691. name: "Megamacro",
  9692. height: math.unit(1, "AU")
  9693. },
  9694. ]
  9695. ))
  9696. characterMakers.push(() => makeCharacter(
  9697. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9698. {
  9699. front: {
  9700. height: math.unit(5 + 5 / 12, "feet"),
  9701. weight: math.unit(140, "lb"),
  9702. name: "Front",
  9703. image: {
  9704. source: "./media/characters/allatia/front.svg",
  9705. extra: 1227 / 1180,
  9706. bottom: 0.027
  9707. }
  9708. },
  9709. },
  9710. [
  9711. {
  9712. name: "Normal",
  9713. height: math.unit(5 + 5 / 12, "feet")
  9714. },
  9715. {
  9716. name: "Macro",
  9717. height: math.unit(250, "feet"),
  9718. default: true
  9719. },
  9720. {
  9721. name: "Megamacro",
  9722. height: math.unit(8, "miles")
  9723. }
  9724. ]
  9725. ))
  9726. characterMakers.push(() => makeCharacter(
  9727. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9728. {
  9729. front: {
  9730. height: math.unit(6, "feet"),
  9731. weight: math.unit(120, "lb"),
  9732. name: "Front",
  9733. image: {
  9734. source: "./media/characters/tene/front.svg",
  9735. extra: 1728 / 1578,
  9736. bottom: 0.022
  9737. }
  9738. },
  9739. stomping: {
  9740. height: math.unit(2.025, "meters"),
  9741. weight: math.unit(120, "lb"),
  9742. name: "Stomping",
  9743. image: {
  9744. source: "./media/characters/tene/stomping.svg",
  9745. extra: 938 / 873,
  9746. bottom: 0.01
  9747. }
  9748. },
  9749. sitting: {
  9750. height: math.unit(1, "meter"),
  9751. weight: math.unit(120, "lb"),
  9752. name: "Sitting",
  9753. image: {
  9754. source: "./media/characters/tene/sitting.svg",
  9755. extra: 437 / 415,
  9756. bottom: 0.1
  9757. }
  9758. },
  9759. feral: {
  9760. height: math.unit(3.9, "feet"),
  9761. weight: math.unit(250, "lb"),
  9762. name: "Feral",
  9763. image: {
  9764. source: "./media/characters/tene/feral.svg",
  9765. extra: 717 / 458,
  9766. bottom: 0.179
  9767. }
  9768. },
  9769. },
  9770. [
  9771. {
  9772. name: "Normal",
  9773. height: math.unit(6, "feet")
  9774. },
  9775. {
  9776. name: "Macro",
  9777. height: math.unit(300, "feet"),
  9778. default: true
  9779. },
  9780. {
  9781. name: "Megamacro",
  9782. height: math.unit(5, "miles")
  9783. },
  9784. ]
  9785. ))
  9786. characterMakers.push(() => makeCharacter(
  9787. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9788. {
  9789. side: {
  9790. height: math.unit(6, "feet"),
  9791. name: "Side",
  9792. image: {
  9793. source: "./media/characters/evander/side.svg",
  9794. extra: 877 / 477
  9795. }
  9796. },
  9797. },
  9798. [
  9799. {
  9800. name: "Normal",
  9801. height: math.unit(0.83, "meters"),
  9802. default: true
  9803. },
  9804. ]
  9805. ))
  9806. characterMakers.push(() => makeCharacter(
  9807. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9808. {
  9809. front: {
  9810. height: math.unit(12, "feet"),
  9811. weight: math.unit(1000, "lb"),
  9812. name: "Front",
  9813. image: {
  9814. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9815. extra: 1762 / 1611
  9816. }
  9817. },
  9818. back: {
  9819. height: math.unit(12, "feet"),
  9820. weight: math.unit(1000, "lb"),
  9821. name: "Back",
  9822. image: {
  9823. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9824. extra: 1762 / 1611
  9825. }
  9826. },
  9827. },
  9828. [
  9829. {
  9830. name: "Normal",
  9831. height: math.unit(12, "feet"),
  9832. default: true
  9833. },
  9834. {
  9835. name: "Kaiju",
  9836. height: math.unit(150, "feet")
  9837. },
  9838. ]
  9839. ))
  9840. characterMakers.push(() => makeCharacter(
  9841. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9842. {
  9843. front: {
  9844. height: math.unit(6, "feet"),
  9845. weight: math.unit(150, "lb"),
  9846. name: "Front",
  9847. image: {
  9848. source: "./media/characters/zero-alurus/front.svg"
  9849. }
  9850. },
  9851. back: {
  9852. height: math.unit(6, "feet"),
  9853. weight: math.unit(150, "lb"),
  9854. name: "Back",
  9855. image: {
  9856. source: "./media/characters/zero-alurus/back.svg"
  9857. }
  9858. },
  9859. },
  9860. [
  9861. {
  9862. name: "Normal",
  9863. height: math.unit(5 + 10 / 12, "feet")
  9864. },
  9865. {
  9866. name: "Macro",
  9867. height: math.unit(60, "feet"),
  9868. default: true
  9869. },
  9870. {
  9871. name: "Macro+",
  9872. height: math.unit(450, "feet")
  9873. },
  9874. ]
  9875. ))
  9876. characterMakers.push(() => makeCharacter(
  9877. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9878. {
  9879. front: {
  9880. height: math.unit(6, "feet"),
  9881. weight: math.unit(200, "lb"),
  9882. name: "Front",
  9883. image: {
  9884. source: "./media/characters/mega-shi/front.svg",
  9885. extra: 1279 / 1250,
  9886. bottom: 0.02
  9887. }
  9888. },
  9889. back: {
  9890. height: math.unit(6, "feet"),
  9891. weight: math.unit(200, "lb"),
  9892. name: "Back",
  9893. image: {
  9894. source: "./media/characters/mega-shi/back.svg",
  9895. extra: 1279 / 1250,
  9896. bottom: 0.02
  9897. }
  9898. },
  9899. },
  9900. [
  9901. {
  9902. name: "Micro",
  9903. height: math.unit(16 + 6 / 12, "feet")
  9904. },
  9905. {
  9906. name: "Third Dimension",
  9907. height: math.unit(40, "meters")
  9908. },
  9909. {
  9910. name: "Normal",
  9911. height: math.unit(660, "feet"),
  9912. default: true
  9913. },
  9914. {
  9915. name: "Megamacro",
  9916. height: math.unit(10, "miles")
  9917. },
  9918. {
  9919. name: "Planetary Launch",
  9920. height: math.unit(500, "miles")
  9921. },
  9922. {
  9923. name: "Interstellar",
  9924. height: math.unit(1e9, "miles")
  9925. },
  9926. {
  9927. name: "Leaving the Universe",
  9928. height: math.unit(1, "gigaparsec")
  9929. },
  9930. {
  9931. name: "Travelling Universes",
  9932. height: math.unit(30e15, "parsecs")
  9933. },
  9934. ]
  9935. ))
  9936. characterMakers.push(() => makeCharacter(
  9937. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9938. {
  9939. front: {
  9940. height: math.unit(6, "feet"),
  9941. weight: math.unit(150, "lb"),
  9942. name: "Front",
  9943. image: {
  9944. source: "./media/characters/odyssey/front.svg",
  9945. extra: 1782 / 1582,
  9946. bottom: 0.01
  9947. }
  9948. },
  9949. side: {
  9950. height: math.unit(5.7, "feet"),
  9951. weight: math.unit(140, "lb"),
  9952. name: "Side",
  9953. image: {
  9954. source: "./media/characters/odyssey/side.svg",
  9955. extra: 6462 / 5700
  9956. }
  9957. },
  9958. },
  9959. [
  9960. {
  9961. name: "Normal",
  9962. height: math.unit(5 + 4 / 12, "feet")
  9963. },
  9964. {
  9965. name: "Macro",
  9966. height: math.unit(1, "km")
  9967. },
  9968. {
  9969. name: "Megamacro",
  9970. height: math.unit(3000, "km")
  9971. },
  9972. {
  9973. name: "Gigamacro",
  9974. height: math.unit(1, "AU"),
  9975. default: true
  9976. },
  9977. {
  9978. name: "Omniversal",
  9979. height: math.unit(100e14, "lightyears")
  9980. },
  9981. ]
  9982. ))
  9983. characterMakers.push(() => makeCharacter(
  9984. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9985. {
  9986. front: {
  9987. height: math.unit(6, "feet"),
  9988. weight: math.unit(300, "lb"),
  9989. name: "Front",
  9990. image: {
  9991. source: "./media/characters/mekuto/front.svg",
  9992. extra: 921 / 832,
  9993. bottom: 0.03
  9994. }
  9995. },
  9996. hand: {
  9997. height: math.unit(6 / 10.24, "feet"),
  9998. name: "Hand",
  9999. image: {
  10000. source: "./media/characters/mekuto/hand.svg"
  10001. }
  10002. },
  10003. foot: {
  10004. height: math.unit(6 / 5.05, "feet"),
  10005. name: "Foot",
  10006. image: {
  10007. source: "./media/characters/mekuto/foot.svg"
  10008. }
  10009. },
  10010. },
  10011. [
  10012. {
  10013. name: "Minimicro",
  10014. height: math.unit(0.2, "inches")
  10015. },
  10016. {
  10017. name: "Micro",
  10018. height: math.unit(1.5, "inches")
  10019. },
  10020. {
  10021. name: "Normal",
  10022. height: math.unit(5 + 11 / 12, "feet"),
  10023. default: true
  10024. },
  10025. {
  10026. name: "Minimacro",
  10027. height: math.unit(17 + 9 / 12, "feet")
  10028. },
  10029. {
  10030. name: "Macro",
  10031. height: math.unit(177.5, "feet")
  10032. },
  10033. {
  10034. name: "Megamacro",
  10035. height: math.unit(152, "miles")
  10036. },
  10037. ]
  10038. ))
  10039. characterMakers.push(() => makeCharacter(
  10040. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10041. {
  10042. front: {
  10043. height: math.unit(6.5, "inches"),
  10044. weight: math.unit(13, "oz"),
  10045. name: "Front",
  10046. image: {
  10047. source: "./media/characters/dafydd-tomos/front.svg",
  10048. extra: 2990 / 2603,
  10049. bottom: 0.03
  10050. }
  10051. },
  10052. },
  10053. [
  10054. {
  10055. name: "Micro",
  10056. height: math.unit(6.5, "inches"),
  10057. default: true
  10058. },
  10059. ]
  10060. ))
  10061. characterMakers.push(() => makeCharacter(
  10062. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10063. {
  10064. front: {
  10065. height: math.unit(6, "feet"),
  10066. weight: math.unit(150, "lb"),
  10067. name: "Front",
  10068. image: {
  10069. source: "./media/characters/splinter/front.svg",
  10070. extra: 2990 / 2882,
  10071. bottom: 0.04
  10072. }
  10073. },
  10074. back: {
  10075. height: math.unit(6, "feet"),
  10076. weight: math.unit(150, "lb"),
  10077. name: "Back",
  10078. image: {
  10079. source: "./media/characters/splinter/back.svg",
  10080. extra: 2990 / 2882,
  10081. bottom: 0.04
  10082. }
  10083. },
  10084. },
  10085. [
  10086. {
  10087. name: "Normal",
  10088. height: math.unit(6, "feet")
  10089. },
  10090. {
  10091. name: "Macro",
  10092. height: math.unit(230, "meters"),
  10093. default: true
  10094. },
  10095. ]
  10096. ))
  10097. characterMakers.push(() => makeCharacter(
  10098. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10099. {
  10100. front: {
  10101. height: math.unit(4 + 10 / 12, "feet"),
  10102. weight: math.unit(480, "lb"),
  10103. name: "Front",
  10104. image: {
  10105. source: "./media/characters/snow-gabumon/front.svg",
  10106. extra: 1140 / 963,
  10107. bottom: 0.058
  10108. }
  10109. },
  10110. back: {
  10111. height: math.unit(4 + 10 / 12, "feet"),
  10112. weight: math.unit(480, "lb"),
  10113. name: "Back",
  10114. image: {
  10115. source: "./media/characters/snow-gabumon/back.svg",
  10116. extra: 1115 / 962,
  10117. bottom: 0.041
  10118. }
  10119. },
  10120. frontUndresed: {
  10121. height: math.unit(4 + 10 / 12, "feet"),
  10122. weight: math.unit(480, "lb"),
  10123. name: "Front (Undressed)",
  10124. image: {
  10125. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10126. extra: 1061 / 960,
  10127. bottom: 0.045
  10128. }
  10129. },
  10130. },
  10131. [
  10132. {
  10133. name: "Micro",
  10134. height: math.unit(1, "inch")
  10135. },
  10136. {
  10137. name: "Normal",
  10138. height: math.unit(4 + 10 / 12, "feet"),
  10139. default: true
  10140. },
  10141. {
  10142. name: "Macro",
  10143. height: math.unit(200, "feet")
  10144. },
  10145. {
  10146. name: "Megamacro",
  10147. height: math.unit(120, "miles")
  10148. },
  10149. {
  10150. name: "Gigamacro",
  10151. height: math.unit(9800, "miles")
  10152. },
  10153. ]
  10154. ))
  10155. characterMakers.push(() => makeCharacter(
  10156. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10157. {
  10158. front: {
  10159. height: math.unit(1.7, "meters"),
  10160. weight: math.unit(140, "lb"),
  10161. name: "Front",
  10162. image: {
  10163. source: "./media/characters/moody/front.svg",
  10164. extra: 3226 / 3007,
  10165. bottom: 0.087
  10166. }
  10167. },
  10168. },
  10169. [
  10170. {
  10171. name: "Micro",
  10172. height: math.unit(1, "mm")
  10173. },
  10174. {
  10175. name: "Normal",
  10176. height: math.unit(1.7, "meters"),
  10177. default: true
  10178. },
  10179. {
  10180. name: "Macro",
  10181. height: math.unit(80, "meters")
  10182. },
  10183. {
  10184. name: "Macro+",
  10185. height: math.unit(500, "meters")
  10186. },
  10187. ]
  10188. ))
  10189. characterMakers.push(() => makeCharacter(
  10190. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10191. {
  10192. front: {
  10193. height: math.unit(6, "feet"),
  10194. weight: math.unit(150, "lb"),
  10195. name: "Front",
  10196. image: {
  10197. source: "./media/characters/zyas/front.svg",
  10198. extra: 1180 / 1120,
  10199. bottom: 0.045
  10200. }
  10201. },
  10202. },
  10203. [
  10204. {
  10205. name: "Normal",
  10206. height: math.unit(10, "feet"),
  10207. default: true
  10208. },
  10209. {
  10210. name: "Macro",
  10211. height: math.unit(500, "feet")
  10212. },
  10213. {
  10214. name: "Megamacro",
  10215. height: math.unit(5, "miles")
  10216. },
  10217. {
  10218. name: "Teramacro",
  10219. height: math.unit(150000, "miles")
  10220. },
  10221. ]
  10222. ))
  10223. characterMakers.push(() => makeCharacter(
  10224. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10225. {
  10226. front: {
  10227. height: math.unit(6, "feet"),
  10228. weight: math.unit(150, "lb"),
  10229. name: "Front",
  10230. image: {
  10231. source: "./media/characters/cuon/front.svg",
  10232. extra: 1390 / 1320,
  10233. bottom: 0.008
  10234. }
  10235. },
  10236. },
  10237. [
  10238. {
  10239. name: "Micro",
  10240. height: math.unit(3, "inches")
  10241. },
  10242. {
  10243. name: "Normal",
  10244. height: math.unit(18 + 9 / 12, "feet"),
  10245. default: true
  10246. },
  10247. {
  10248. name: "Macro",
  10249. height: math.unit(360, "feet")
  10250. },
  10251. {
  10252. name: "Megamacro",
  10253. height: math.unit(360, "miles")
  10254. },
  10255. ]
  10256. ))
  10257. characterMakers.push(() => makeCharacter(
  10258. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10259. {
  10260. front: {
  10261. height: math.unit(2.4, "meters"),
  10262. weight: math.unit(70, "kg"),
  10263. name: "Front",
  10264. image: {
  10265. source: "./media/characters/nyanuxk/front.svg",
  10266. extra: 1172 / 1084,
  10267. bottom: 0.065
  10268. }
  10269. },
  10270. side: {
  10271. height: math.unit(2.4, "meters"),
  10272. weight: math.unit(70, "kg"),
  10273. name: "Side",
  10274. image: {
  10275. source: "./media/characters/nyanuxk/side.svg",
  10276. extra: 1190 / 1132,
  10277. bottom: 0.007
  10278. }
  10279. },
  10280. back: {
  10281. height: math.unit(2.4, "meters"),
  10282. weight: math.unit(70, "kg"),
  10283. name: "Back",
  10284. image: {
  10285. source: "./media/characters/nyanuxk/back.svg",
  10286. extra: 1200 / 1141,
  10287. bottom: 0.015
  10288. }
  10289. },
  10290. foot: {
  10291. height: math.unit(0.52, "meters"),
  10292. name: "Foot",
  10293. image: {
  10294. source: "./media/characters/nyanuxk/foot.svg"
  10295. }
  10296. },
  10297. },
  10298. [
  10299. {
  10300. name: "Micro",
  10301. height: math.unit(2, "cm")
  10302. },
  10303. {
  10304. name: "Normal",
  10305. height: math.unit(2.4, "meters"),
  10306. default: true
  10307. },
  10308. {
  10309. name: "Smaller Macro",
  10310. height: math.unit(120, "meters")
  10311. },
  10312. {
  10313. name: "Bigger Macro",
  10314. height: math.unit(1.2, "km")
  10315. },
  10316. {
  10317. name: "Megamacro",
  10318. height: math.unit(15, "kilometers")
  10319. },
  10320. {
  10321. name: "Gigamacro",
  10322. height: math.unit(2000, "km")
  10323. },
  10324. {
  10325. name: "Teramacro",
  10326. height: math.unit(500000, "km")
  10327. },
  10328. ]
  10329. ))
  10330. characterMakers.push(() => makeCharacter(
  10331. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10332. {
  10333. side: {
  10334. height: math.unit(6, "feet"),
  10335. name: "Side",
  10336. image: {
  10337. source: "./media/characters/ailbhe/side.svg",
  10338. extra: 757 / 464,
  10339. bottom: 0.041
  10340. }
  10341. },
  10342. },
  10343. [
  10344. {
  10345. name: "Normal",
  10346. height: math.unit(1.07, "meters"),
  10347. default: true
  10348. },
  10349. ]
  10350. ))
  10351. characterMakers.push(() => makeCharacter(
  10352. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10353. {
  10354. front: {
  10355. height: math.unit(6, "feet"),
  10356. weight: math.unit(120, "kg"),
  10357. name: "Front",
  10358. image: {
  10359. source: "./media/characters/zevulfius/front.svg",
  10360. extra: 965 / 903
  10361. }
  10362. },
  10363. side: {
  10364. height: math.unit(6, "feet"),
  10365. weight: math.unit(120, "kg"),
  10366. name: "Side",
  10367. image: {
  10368. source: "./media/characters/zevulfius/side.svg",
  10369. extra: 939 / 900
  10370. }
  10371. },
  10372. back: {
  10373. height: math.unit(6, "feet"),
  10374. weight: math.unit(120, "kg"),
  10375. name: "Back",
  10376. image: {
  10377. source: "./media/characters/zevulfius/back.svg",
  10378. extra: 918 / 854,
  10379. bottom: 0.005
  10380. }
  10381. },
  10382. foot: {
  10383. height: math.unit(6 / 3.72, "feet"),
  10384. name: "Foot",
  10385. image: {
  10386. source: "./media/characters/zevulfius/foot.svg"
  10387. }
  10388. },
  10389. },
  10390. [
  10391. {
  10392. name: "Macro",
  10393. height: math.unit(750, "meters")
  10394. },
  10395. {
  10396. name: "Megamacro",
  10397. height: math.unit(20, "km"),
  10398. default: true
  10399. },
  10400. {
  10401. name: "Gigamacro",
  10402. height: math.unit(2000, "km")
  10403. },
  10404. {
  10405. name: "Teramacro",
  10406. height: math.unit(250000, "km")
  10407. },
  10408. ]
  10409. ))
  10410. characterMakers.push(() => makeCharacter(
  10411. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10412. {
  10413. front: {
  10414. height: math.unit(100, "feet"),
  10415. weight: math.unit(350, "kg"),
  10416. name: "Front",
  10417. image: {
  10418. source: "./media/characters/rikes/front.svg",
  10419. extra: 1565 / 1483,
  10420. bottom: 0.017
  10421. }
  10422. },
  10423. },
  10424. [
  10425. {
  10426. name: "Macro",
  10427. height: math.unit(100, "feet"),
  10428. default: true
  10429. },
  10430. ]
  10431. ))
  10432. characterMakers.push(() => makeCharacter(
  10433. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10434. {
  10435. anthro: {
  10436. height: math.unit(8, "feet"),
  10437. weight: math.unit(120, "kg"),
  10438. name: "Anthro",
  10439. image: {
  10440. source: "./media/characters/adam-silver-mane/anthro.svg",
  10441. extra: 5743 / 5339,
  10442. bottom: 0.07
  10443. }
  10444. },
  10445. taur: {
  10446. height: math.unit(16, "feet"),
  10447. weight: math.unit(1500, "kg"),
  10448. name: "Taur",
  10449. image: {
  10450. source: "./media/characters/adam-silver-mane/taur.svg",
  10451. extra: 1713 / 1571,
  10452. bottom: 0.01
  10453. }
  10454. },
  10455. },
  10456. [
  10457. {
  10458. name: "Normal",
  10459. height: math.unit(8, "feet")
  10460. },
  10461. {
  10462. name: "Minimacro",
  10463. height: math.unit(80, "feet")
  10464. },
  10465. {
  10466. name: "Macro",
  10467. height: math.unit(800, "feet"),
  10468. default: true
  10469. },
  10470. {
  10471. name: "Megamacro",
  10472. height: math.unit(8000, "feet")
  10473. },
  10474. {
  10475. name: "Gigamacro",
  10476. height: math.unit(800, "miles")
  10477. },
  10478. {
  10479. name: "Teramacro",
  10480. height: math.unit(80000, "miles")
  10481. },
  10482. {
  10483. name: "Celestial",
  10484. height: math.unit(8e6, "miles")
  10485. },
  10486. {
  10487. name: "Star Dragon",
  10488. height: math.unit(800000, "parsecs")
  10489. },
  10490. {
  10491. name: "Godly",
  10492. height: math.unit(800, "teraparsecs")
  10493. },
  10494. ]
  10495. ))
  10496. characterMakers.push(() => makeCharacter(
  10497. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10498. {
  10499. front: {
  10500. height: math.unit(6, "feet"),
  10501. weight: math.unit(150, "lb"),
  10502. name: "Front",
  10503. image: {
  10504. source: "./media/characters/ky'owin/front.svg",
  10505. extra: 3888 / 3068,
  10506. bottom: 0.015
  10507. }
  10508. },
  10509. },
  10510. [
  10511. {
  10512. name: "Normal",
  10513. height: math.unit(6 + 8 / 12, "feet")
  10514. },
  10515. {
  10516. name: "Large",
  10517. height: math.unit(68, "feet")
  10518. },
  10519. {
  10520. name: "Macro",
  10521. height: math.unit(132, "feet")
  10522. },
  10523. {
  10524. name: "Macro+",
  10525. height: math.unit(340, "feet")
  10526. },
  10527. {
  10528. name: "Macro++",
  10529. height: math.unit(680, "feet"),
  10530. default: true
  10531. },
  10532. {
  10533. name: "Megamacro",
  10534. height: math.unit(1, "mile")
  10535. },
  10536. {
  10537. name: "Megamacro+",
  10538. height: math.unit(10, "miles")
  10539. },
  10540. ]
  10541. ))
  10542. characterMakers.push(() => makeCharacter(
  10543. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10544. {
  10545. front: {
  10546. height: math.unit(4, "feet"),
  10547. weight: math.unit(50, "lb"),
  10548. name: "Front",
  10549. image: {
  10550. source: "./media/characters/mal/front.svg",
  10551. extra: 785 / 724,
  10552. bottom: 0.07
  10553. }
  10554. },
  10555. },
  10556. [
  10557. {
  10558. name: "Micro",
  10559. height: math.unit(4, "inches")
  10560. },
  10561. {
  10562. name: "Normal",
  10563. height: math.unit(4, "feet"),
  10564. default: true
  10565. },
  10566. {
  10567. name: "Macro",
  10568. height: math.unit(200, "feet")
  10569. },
  10570. ]
  10571. ))
  10572. characterMakers.push(() => makeCharacter(
  10573. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10574. {
  10575. front: {
  10576. height: math.unit(6, "feet"),
  10577. weight: math.unit(150, "lb"),
  10578. name: "Front",
  10579. image: {
  10580. source: "./media/characters/jordan-deware/front.svg",
  10581. extra: 1191 / 1012
  10582. }
  10583. },
  10584. },
  10585. [
  10586. {
  10587. name: "Nano",
  10588. height: math.unit(0.01, "mm")
  10589. },
  10590. {
  10591. name: "Minimicro",
  10592. height: math.unit(1, "mm")
  10593. },
  10594. {
  10595. name: "Micro",
  10596. height: math.unit(0.5, "inches")
  10597. },
  10598. {
  10599. name: "Normal",
  10600. height: math.unit(4, "feet"),
  10601. default: true
  10602. },
  10603. {
  10604. name: "Minimacro",
  10605. height: math.unit(40, "meters")
  10606. },
  10607. {
  10608. name: "Small Macro",
  10609. height: math.unit(400, "meters")
  10610. },
  10611. {
  10612. name: "Macro",
  10613. height: math.unit(4, "miles")
  10614. },
  10615. {
  10616. name: "Megamacro",
  10617. height: math.unit(40, "miles")
  10618. },
  10619. {
  10620. name: "Megamacro+",
  10621. height: math.unit(400, "miles")
  10622. },
  10623. {
  10624. name: "Gigamacro",
  10625. height: math.unit(400000, "miles")
  10626. },
  10627. ]
  10628. ))
  10629. characterMakers.push(() => makeCharacter(
  10630. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10631. {
  10632. side: {
  10633. height: math.unit(6, "feet"),
  10634. weight: math.unit(150, "lb"),
  10635. name: "Side",
  10636. image: {
  10637. source: "./media/characters/kimiko/side.svg",
  10638. extra: 600 / 358
  10639. }
  10640. },
  10641. },
  10642. [
  10643. {
  10644. name: "Normal",
  10645. height: math.unit(15, "feet"),
  10646. default: true
  10647. },
  10648. {
  10649. name: "Macro",
  10650. height: math.unit(220, "feet")
  10651. },
  10652. {
  10653. name: "Macro+",
  10654. height: math.unit(1450, "feet")
  10655. },
  10656. {
  10657. name: "Megamacro",
  10658. height: math.unit(11500, "feet")
  10659. },
  10660. {
  10661. name: "Gigamacro",
  10662. height: math.unit(9500, "miles")
  10663. },
  10664. {
  10665. name: "Teramacro",
  10666. height: math.unit(2208005005, "miles")
  10667. },
  10668. {
  10669. name: "Examacro",
  10670. height: math.unit(2750, "parsecs")
  10671. },
  10672. {
  10673. name: "Zettamacro",
  10674. height: math.unit(101500, "parsecs")
  10675. },
  10676. ]
  10677. ))
  10678. characterMakers.push(() => makeCharacter(
  10679. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10680. {
  10681. front: {
  10682. height: math.unit(6, "feet"),
  10683. weight: math.unit(70, "kg"),
  10684. name: "Front",
  10685. image: {
  10686. source: "./media/characters/andrew-sleepy/front.svg"
  10687. }
  10688. },
  10689. side: {
  10690. height: math.unit(6, "feet"),
  10691. weight: math.unit(70, "kg"),
  10692. name: "Side",
  10693. image: {
  10694. source: "./media/characters/andrew-sleepy/side.svg"
  10695. }
  10696. },
  10697. },
  10698. [
  10699. {
  10700. name: "Micro",
  10701. height: math.unit(1, "mm"),
  10702. default: true
  10703. },
  10704. ]
  10705. ))
  10706. characterMakers.push(() => makeCharacter(
  10707. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10708. {
  10709. front: {
  10710. height: math.unit(6, "feet"),
  10711. weight: math.unit(150, "lb"),
  10712. name: "Front",
  10713. image: {
  10714. source: "./media/characters/judio/front.svg",
  10715. extra: 1258 / 1110
  10716. }
  10717. },
  10718. },
  10719. [
  10720. {
  10721. name: "Normal",
  10722. height: math.unit(5 + 6 / 12, "feet")
  10723. },
  10724. {
  10725. name: "Macro",
  10726. height: math.unit(1000, "feet"),
  10727. default: true
  10728. },
  10729. {
  10730. name: "Megamacro",
  10731. height: math.unit(10, "miles")
  10732. },
  10733. ]
  10734. ))
  10735. characterMakers.push(() => makeCharacter(
  10736. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10737. {
  10738. front: {
  10739. height: math.unit(6, "feet"),
  10740. weight: math.unit(68, "kg"),
  10741. name: "Front",
  10742. image: {
  10743. source: "./media/characters/nomaxice/front.svg",
  10744. extra: 1498 / 1073,
  10745. bottom: 0.075
  10746. }
  10747. },
  10748. foot: {
  10749. height: math.unit(1.1, "feet"),
  10750. name: "Foot",
  10751. image: {
  10752. source: "./media/characters/nomaxice/foot.svg"
  10753. }
  10754. },
  10755. },
  10756. [
  10757. {
  10758. name: "Micro",
  10759. height: math.unit(8, "cm")
  10760. },
  10761. {
  10762. name: "Norm",
  10763. height: math.unit(1.82, "m")
  10764. },
  10765. {
  10766. name: "Norm+",
  10767. height: math.unit(8.8, "feet")
  10768. },
  10769. {
  10770. name: "Big",
  10771. height: math.unit(8, "meters"),
  10772. default: true
  10773. },
  10774. {
  10775. name: "Macro",
  10776. height: math.unit(18, "meters")
  10777. },
  10778. {
  10779. name: "Macro+",
  10780. height: math.unit(88, "meters")
  10781. },
  10782. ]
  10783. ))
  10784. characterMakers.push(() => makeCharacter(
  10785. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10786. {
  10787. front: {
  10788. height: math.unit(12, "feet"),
  10789. weight: math.unit(1.5, "tons"),
  10790. name: "Front",
  10791. image: {
  10792. source: "./media/characters/dydros/front.svg",
  10793. extra: 863 / 800,
  10794. bottom: 0.015
  10795. }
  10796. },
  10797. back: {
  10798. height: math.unit(12, "feet"),
  10799. weight: math.unit(1.5, "tons"),
  10800. name: "Back",
  10801. image: {
  10802. source: "./media/characters/dydros/back.svg",
  10803. extra: 900 / 843,
  10804. bottom: 0.005
  10805. }
  10806. },
  10807. },
  10808. [
  10809. {
  10810. name: "Normal",
  10811. height: math.unit(12, "feet"),
  10812. default: true
  10813. },
  10814. ]
  10815. ))
  10816. characterMakers.push(() => makeCharacter(
  10817. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10818. {
  10819. front: {
  10820. height: math.unit(6, "feet"),
  10821. weight: math.unit(100, "kg"),
  10822. name: "Front",
  10823. image: {
  10824. source: "./media/characters/riggi/front.svg",
  10825. extra: 5787 / 5303
  10826. }
  10827. },
  10828. hyper: {
  10829. height: math.unit(6 * 5 / 3, "feet"),
  10830. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10831. name: "Hyper",
  10832. image: {
  10833. source: "./media/characters/riggi/hyper.svg",
  10834. extra: 3595 / 3485
  10835. }
  10836. },
  10837. },
  10838. [
  10839. {
  10840. name: "Small Macro",
  10841. height: math.unit(50, "feet")
  10842. },
  10843. {
  10844. name: "Default",
  10845. height: math.unit(200, "feet"),
  10846. default: true
  10847. },
  10848. {
  10849. name: "Loom",
  10850. height: math.unit(10000, "feet")
  10851. },
  10852. {
  10853. name: "Cruising Altitude",
  10854. height: math.unit(30000, "feet")
  10855. },
  10856. {
  10857. name: "Megamacro",
  10858. height: math.unit(100, "miles")
  10859. },
  10860. {
  10861. name: "Continent Sized",
  10862. height: math.unit(2800, "miles")
  10863. },
  10864. {
  10865. name: "Earth Sized",
  10866. height: math.unit(8000, "miles")
  10867. },
  10868. ]
  10869. ))
  10870. characterMakers.push(() => makeCharacter(
  10871. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10872. {
  10873. front: {
  10874. height: math.unit(6, "feet"),
  10875. weight: math.unit(250, "lb"),
  10876. name: "Front",
  10877. image: {
  10878. source: "./media/characters/alexi/front.svg",
  10879. extra: 3483 / 3291,
  10880. bottom: 0.04
  10881. }
  10882. },
  10883. back: {
  10884. height: math.unit(6, "feet"),
  10885. weight: math.unit(250, "lb"),
  10886. name: "Back",
  10887. image: {
  10888. source: "./media/characters/alexi/back.svg",
  10889. extra: 3533 / 3356,
  10890. bottom: 0.021
  10891. }
  10892. },
  10893. frontTransforming: {
  10894. height: math.unit(8.58, "feet"),
  10895. weight: math.unit(1300, "lb"),
  10896. name: "Transforming",
  10897. image: {
  10898. source: "./media/characters/alexi/front-transforming.svg",
  10899. extra: 437 / 409,
  10900. bottom: 19 / 458.66
  10901. }
  10902. },
  10903. frontTransformed: {
  10904. height: math.unit(12.5, "feet"),
  10905. weight: math.unit(4000, "lb"),
  10906. name: "Transformed",
  10907. image: {
  10908. source: "./media/characters/alexi/front-transformed.svg",
  10909. extra: 639 / 614,
  10910. bottom: 30.55 / 671
  10911. }
  10912. },
  10913. },
  10914. [
  10915. {
  10916. name: "Normal",
  10917. height: math.unit(14, "feet"),
  10918. default: true
  10919. },
  10920. {
  10921. name: "Minimacro",
  10922. height: math.unit(30, "meters")
  10923. },
  10924. {
  10925. name: "Macro",
  10926. height: math.unit(500, "meters")
  10927. },
  10928. {
  10929. name: "Megamacro",
  10930. height: math.unit(9000, "km")
  10931. },
  10932. {
  10933. name: "Teramacro",
  10934. height: math.unit(384000, "km")
  10935. },
  10936. ]
  10937. ))
  10938. characterMakers.push(() => makeCharacter(
  10939. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10940. {
  10941. front: {
  10942. height: math.unit(6, "feet"),
  10943. weight: math.unit(150, "lb"),
  10944. name: "Front",
  10945. image: {
  10946. source: "./media/characters/kayroo/front.svg",
  10947. extra: 1153 / 1038,
  10948. bottom: 0.06
  10949. }
  10950. },
  10951. foot: {
  10952. height: math.unit(6, "feet"),
  10953. weight: math.unit(150, "lb"),
  10954. name: "Foot",
  10955. image: {
  10956. source: "./media/characters/kayroo/foot.svg"
  10957. }
  10958. },
  10959. },
  10960. [
  10961. {
  10962. name: "Normal",
  10963. height: math.unit(8, "feet"),
  10964. default: true
  10965. },
  10966. {
  10967. name: "Minimacro",
  10968. height: math.unit(250, "feet")
  10969. },
  10970. {
  10971. name: "Macro",
  10972. height: math.unit(2800, "feet")
  10973. },
  10974. {
  10975. name: "Megamacro",
  10976. height: math.unit(5200, "feet")
  10977. },
  10978. {
  10979. name: "Gigamacro",
  10980. height: math.unit(27000, "feet")
  10981. },
  10982. {
  10983. name: "Omega",
  10984. height: math.unit(45000, "feet")
  10985. },
  10986. ]
  10987. ))
  10988. characterMakers.push(() => makeCharacter(
  10989. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10990. {
  10991. front: {
  10992. height: math.unit(18, "feet"),
  10993. weight: math.unit(5800, "lb"),
  10994. name: "Front",
  10995. image: {
  10996. source: "./media/characters/rhys/front.svg",
  10997. extra: 3386 / 3090,
  10998. bottom: 0.07
  10999. }
  11000. },
  11001. },
  11002. [
  11003. {
  11004. name: "Normal",
  11005. height: math.unit(18, "feet"),
  11006. default: true
  11007. },
  11008. {
  11009. name: "Working Size",
  11010. height: math.unit(200, "feet")
  11011. },
  11012. {
  11013. name: "Demolition Size",
  11014. height: math.unit(2000, "feet")
  11015. },
  11016. {
  11017. name: "Maximum Licensed Size",
  11018. height: math.unit(5, "miles")
  11019. },
  11020. {
  11021. name: "Maximum Observed Size",
  11022. height: math.unit(10, "yottameters")
  11023. },
  11024. ]
  11025. ))
  11026. characterMakers.push(() => makeCharacter(
  11027. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11028. {
  11029. front: {
  11030. height: math.unit(6, "feet"),
  11031. weight: math.unit(250, "lb"),
  11032. name: "Front",
  11033. image: {
  11034. source: "./media/characters/toto/front.svg",
  11035. extra: 527 / 479,
  11036. bottom: 0.05
  11037. }
  11038. },
  11039. },
  11040. [
  11041. {
  11042. name: "Micro",
  11043. height: math.unit(3, "feet")
  11044. },
  11045. {
  11046. name: "Normal",
  11047. height: math.unit(10, "feet")
  11048. },
  11049. {
  11050. name: "Macro",
  11051. height: math.unit(150, "feet"),
  11052. default: true
  11053. },
  11054. {
  11055. name: "Megamacro",
  11056. height: math.unit(1200, "feet")
  11057. },
  11058. ]
  11059. ))
  11060. characterMakers.push(() => makeCharacter(
  11061. { name: "King", species: ["lion"], tags: ["anthro"] },
  11062. {
  11063. back: {
  11064. height: math.unit(6, "feet"),
  11065. weight: math.unit(150, "lb"),
  11066. name: "Back",
  11067. image: {
  11068. source: "./media/characters/king/back.svg"
  11069. }
  11070. },
  11071. },
  11072. [
  11073. {
  11074. name: "Micro",
  11075. height: math.unit(2, "inches")
  11076. },
  11077. {
  11078. name: "Normal",
  11079. height: math.unit(8, "feet")
  11080. },
  11081. {
  11082. name: "Macro",
  11083. height: math.unit(200, "feet"),
  11084. default: true
  11085. },
  11086. {
  11087. name: "Megamacro",
  11088. height: math.unit(50, "miles")
  11089. },
  11090. ]
  11091. ))
  11092. characterMakers.push(() => makeCharacter(
  11093. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11094. {
  11095. anthro: {
  11096. height: math.unit(6 + 5 / 12, "feet"),
  11097. weight: math.unit(280, "lb"),
  11098. name: "Anthro",
  11099. image: {
  11100. source: "./media/characters/cordite/anthro.svg",
  11101. extra: 1986 / 1905,
  11102. bottom: 0.025
  11103. }
  11104. },
  11105. feral: {
  11106. height: math.unit(2, "feet"),
  11107. weight: math.unit(90, "lb"),
  11108. name: "Feral",
  11109. image: {
  11110. source: "./media/characters/cordite/feral.svg",
  11111. extra: 1260 / 755,
  11112. bottom: 0.05
  11113. }
  11114. },
  11115. },
  11116. [
  11117. {
  11118. name: "Normal",
  11119. height: math.unit(6 + 5 / 12, "feet"),
  11120. default: true
  11121. },
  11122. ]
  11123. ))
  11124. characterMakers.push(() => makeCharacter(
  11125. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11126. {
  11127. front: {
  11128. height: math.unit(6, "feet"),
  11129. weight: math.unit(150, "lb"),
  11130. name: "Front",
  11131. image: {
  11132. source: "./media/characters/pianostrong/front.svg",
  11133. extra: 6577 / 6254,
  11134. bottom: 0.02
  11135. }
  11136. },
  11137. side: {
  11138. height: math.unit(6, "feet"),
  11139. weight: math.unit(150, "lb"),
  11140. name: "Side",
  11141. image: {
  11142. source: "./media/characters/pianostrong/side.svg",
  11143. extra: 6106 / 5730
  11144. }
  11145. },
  11146. back: {
  11147. height: math.unit(6, "feet"),
  11148. weight: math.unit(150, "lb"),
  11149. name: "Back",
  11150. image: {
  11151. source: "./media/characters/pianostrong/back.svg",
  11152. extra: 6085 / 5733,
  11153. bottom: 0.01
  11154. }
  11155. },
  11156. },
  11157. [
  11158. {
  11159. name: "Macro",
  11160. height: math.unit(100, "feet")
  11161. },
  11162. {
  11163. name: "Macro+",
  11164. height: math.unit(300, "feet"),
  11165. default: true
  11166. },
  11167. {
  11168. name: "Macro++",
  11169. height: math.unit(1000, "feet")
  11170. },
  11171. ]
  11172. ))
  11173. characterMakers.push(() => makeCharacter(
  11174. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11175. {
  11176. front: {
  11177. height: math.unit(6, "feet"),
  11178. weight: math.unit(150, "lb"),
  11179. name: "Front",
  11180. image: {
  11181. source: "./media/characters/kona/front.svg",
  11182. extra: 2960 / 2629,
  11183. bottom: 0.005
  11184. }
  11185. },
  11186. },
  11187. [
  11188. {
  11189. name: "Normal",
  11190. height: math.unit(11 + 8 / 12, "feet")
  11191. },
  11192. {
  11193. name: "Macro",
  11194. height: math.unit(850, "feet"),
  11195. default: true
  11196. },
  11197. {
  11198. name: "Macro+",
  11199. height: math.unit(1.5, "km"),
  11200. default: true
  11201. },
  11202. {
  11203. name: "Megamacro",
  11204. height: math.unit(80, "miles")
  11205. },
  11206. {
  11207. name: "Gigamacro",
  11208. height: math.unit(3500, "miles")
  11209. },
  11210. ]
  11211. ))
  11212. characterMakers.push(() => makeCharacter(
  11213. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11214. {
  11215. side: {
  11216. height: math.unit(1.9, "meters"),
  11217. weight: math.unit(326, "kg"),
  11218. name: "Side",
  11219. image: {
  11220. source: "./media/characters/levi/side.svg",
  11221. extra: 1704 / 1334,
  11222. bottom: 0.02
  11223. }
  11224. },
  11225. },
  11226. [
  11227. {
  11228. name: "Normal",
  11229. height: math.unit(1.9, "meters"),
  11230. default: true
  11231. },
  11232. {
  11233. name: "Macro",
  11234. height: math.unit(20, "meters")
  11235. },
  11236. {
  11237. name: "Macro+",
  11238. height: math.unit(200, "meters")
  11239. },
  11240. {
  11241. name: "Megamacro",
  11242. height: math.unit(2, "km")
  11243. },
  11244. {
  11245. name: "Megamacro+",
  11246. height: math.unit(20, "km")
  11247. },
  11248. {
  11249. name: "Gigamacro",
  11250. height: math.unit(2500, "km")
  11251. },
  11252. {
  11253. name: "Gigamacro+",
  11254. height: math.unit(120000, "km")
  11255. },
  11256. {
  11257. name: "Teramacro",
  11258. height: math.unit(7.77e6, "km")
  11259. },
  11260. ]
  11261. ))
  11262. characterMakers.push(() => makeCharacter(
  11263. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11264. {
  11265. front: {
  11266. height: math.unit(6 + 4/12, "feet"),
  11267. weight: math.unit(190, "lb"),
  11268. name: "Front",
  11269. image: {
  11270. source: "./media/characters/bmc/front.svg",
  11271. extra: 1626/1472,
  11272. bottom: 79/1705
  11273. }
  11274. },
  11275. back: {
  11276. height: math.unit(6 + 4/12, "feet"),
  11277. weight: math.unit(190, "lb"),
  11278. name: "Back",
  11279. image: {
  11280. source: "./media/characters/bmc/back.svg",
  11281. extra: 1640/1479,
  11282. bottom: 45/1685
  11283. }
  11284. },
  11285. frontArmor: {
  11286. height: math.unit(6 + 4/12, "feet"),
  11287. weight: math.unit(190, "lb"),
  11288. name: "Front-armor",
  11289. image: {
  11290. source: "./media/characters/bmc/front-armor.svg",
  11291. extra: 1538/1468,
  11292. bottom: 79/1617
  11293. }
  11294. },
  11295. },
  11296. [
  11297. {
  11298. name: "Human-sized",
  11299. height: math.unit(6 + 4 / 12, "feet")
  11300. },
  11301. {
  11302. name: "Interactive Size",
  11303. height: math.unit(25, "feet")
  11304. },
  11305. {
  11306. name: "Small",
  11307. height: math.unit(250, "feet")
  11308. },
  11309. {
  11310. name: "Normal",
  11311. height: math.unit(1250, "feet"),
  11312. default: true
  11313. },
  11314. {
  11315. name: "Good Day",
  11316. height: math.unit(88, "miles")
  11317. },
  11318. {
  11319. name: "Largest Measured Size",
  11320. height: math.unit(105.960, "galaxies")
  11321. },
  11322. ]
  11323. ))
  11324. characterMakers.push(() => makeCharacter(
  11325. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11326. {
  11327. front: {
  11328. height: math.unit(20, "feet"),
  11329. weight: math.unit(2016, "kg"),
  11330. name: "Front",
  11331. image: {
  11332. source: "./media/characters/sven-the-kaiju/front.svg",
  11333. extra: 1277/1250,
  11334. bottom: 35/1312
  11335. }
  11336. },
  11337. mouth: {
  11338. height: math.unit(1.85, "feet"),
  11339. name: "Mouth",
  11340. image: {
  11341. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11342. }
  11343. },
  11344. },
  11345. [
  11346. {
  11347. name: "Fairy",
  11348. height: math.unit(6, "inches")
  11349. },
  11350. {
  11351. name: "Normal",
  11352. height: math.unit(20, "feet"),
  11353. default: true
  11354. },
  11355. {
  11356. name: "Rampage",
  11357. height: math.unit(200, "feet")
  11358. },
  11359. {
  11360. name: "Archfey Forest Guardian",
  11361. height: math.unit(1, "mile")
  11362. },
  11363. ]
  11364. ))
  11365. characterMakers.push(() => makeCharacter(
  11366. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11367. {
  11368. front: {
  11369. height: math.unit(4, "meters"),
  11370. weight: math.unit(2, "tons"),
  11371. name: "Front",
  11372. image: {
  11373. source: "./media/characters/marik/front.svg",
  11374. extra: 1057 / 1003,
  11375. bottom: 0.08
  11376. }
  11377. },
  11378. },
  11379. [
  11380. {
  11381. name: "Normal",
  11382. height: math.unit(4, "meters"),
  11383. default: true
  11384. },
  11385. {
  11386. name: "Macro",
  11387. height: math.unit(20, "meters")
  11388. },
  11389. {
  11390. name: "Megamacro",
  11391. height: math.unit(50, "km")
  11392. },
  11393. {
  11394. name: "Gigamacro",
  11395. height: math.unit(100, "km")
  11396. },
  11397. {
  11398. name: "Alpha Macro",
  11399. height: math.unit(7.88e7, "yottameters")
  11400. },
  11401. ]
  11402. ))
  11403. characterMakers.push(() => makeCharacter(
  11404. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11405. {
  11406. front: {
  11407. height: math.unit(6, "feet"),
  11408. weight: math.unit(110, "lb"),
  11409. name: "Front",
  11410. image: {
  11411. source: "./media/characters/mel/front.svg",
  11412. extra: 736 / 617,
  11413. bottom: 0.017
  11414. }
  11415. },
  11416. },
  11417. [
  11418. {
  11419. name: "Pico",
  11420. height: math.unit(3, "pm")
  11421. },
  11422. {
  11423. name: "Nano",
  11424. height: math.unit(3, "nm")
  11425. },
  11426. {
  11427. name: "Micro",
  11428. height: math.unit(0.3, "mm"),
  11429. default: true
  11430. },
  11431. {
  11432. name: "Micro+",
  11433. height: math.unit(3, "mm")
  11434. },
  11435. {
  11436. name: "Normal",
  11437. height: math.unit(5 + 10.5 / 12, "feet")
  11438. },
  11439. ]
  11440. ))
  11441. characterMakers.push(() => makeCharacter(
  11442. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11443. {
  11444. kaiju: {
  11445. height: math.unit(1.75, "meters"),
  11446. weight: math.unit(55, "kg"),
  11447. name: "Kaiju",
  11448. image: {
  11449. source: "./media/characters/lykonous/kaiju.svg",
  11450. extra: 1055 / 946,
  11451. bottom: 0.135
  11452. }
  11453. },
  11454. },
  11455. [
  11456. {
  11457. name: "Normal",
  11458. height: math.unit(2.5, "meters"),
  11459. default: true
  11460. },
  11461. {
  11462. name: "Kaiju Dragon",
  11463. height: math.unit(60, "meters")
  11464. },
  11465. {
  11466. name: "Mega Kaiju",
  11467. height: math.unit(120, "km")
  11468. },
  11469. {
  11470. name: "Giga Kaiju",
  11471. height: math.unit(200, "megameters")
  11472. },
  11473. {
  11474. name: "Terra Kaiju",
  11475. height: math.unit(400, "gigameters")
  11476. },
  11477. {
  11478. name: "Kaiju Dragon God",
  11479. height: math.unit(13000, "exaparsecs")
  11480. },
  11481. ]
  11482. ))
  11483. characterMakers.push(() => makeCharacter(
  11484. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11485. {
  11486. front: {
  11487. height: math.unit(6, "feet"),
  11488. weight: math.unit(150, "lb"),
  11489. name: "Front",
  11490. image: {
  11491. source: "./media/characters/blü/front.svg",
  11492. extra: 1883 / 1564,
  11493. bottom: 0.031
  11494. }
  11495. },
  11496. },
  11497. [
  11498. {
  11499. name: "Normal",
  11500. height: math.unit(13, "feet"),
  11501. default: true
  11502. },
  11503. {
  11504. name: "Big Boi",
  11505. height: math.unit(150, "meters")
  11506. },
  11507. {
  11508. name: "Mini Stomper",
  11509. height: math.unit(300, "meters")
  11510. },
  11511. {
  11512. name: "Macro",
  11513. height: math.unit(1000, "meters")
  11514. },
  11515. {
  11516. name: "Megamacro",
  11517. height: math.unit(11000, "meters")
  11518. },
  11519. {
  11520. name: "Gigamacro",
  11521. height: math.unit(11000, "km")
  11522. },
  11523. {
  11524. name: "Teramacro",
  11525. height: math.unit(420000, "km")
  11526. },
  11527. {
  11528. name: "Examacro",
  11529. height: math.unit(120, "parsecs")
  11530. },
  11531. {
  11532. name: "God Tho",
  11533. height: math.unit(98000000000, "parsecs")
  11534. },
  11535. ]
  11536. ))
  11537. characterMakers.push(() => makeCharacter(
  11538. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11539. {
  11540. taurFront: {
  11541. height: math.unit(6, "feet"),
  11542. weight: math.unit(200, "lb"),
  11543. name: "Taur (Front)",
  11544. image: {
  11545. source: "./media/characters/scales/taur-front.svg",
  11546. extra: 1,
  11547. bottom: 0.05
  11548. }
  11549. },
  11550. taurBack: {
  11551. height: math.unit(6, "feet"),
  11552. weight: math.unit(200, "lb"),
  11553. name: "Taur (Back)",
  11554. image: {
  11555. source: "./media/characters/scales/taur-back.svg",
  11556. extra: 1,
  11557. bottom: 0.08
  11558. }
  11559. },
  11560. anthro: {
  11561. height: math.unit(6 * 7 / 12, "feet"),
  11562. weight: math.unit(100, "lb"),
  11563. name: "Anthro",
  11564. image: {
  11565. source: "./media/characters/scales/anthro.svg",
  11566. extra: 1,
  11567. bottom: 0.06
  11568. }
  11569. },
  11570. },
  11571. [
  11572. {
  11573. name: "Normal",
  11574. height: math.unit(12, "feet"),
  11575. default: true
  11576. },
  11577. ]
  11578. ))
  11579. characterMakers.push(() => makeCharacter(
  11580. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11581. {
  11582. front: {
  11583. height: math.unit(6, "feet"),
  11584. weight: math.unit(150, "lb"),
  11585. name: "Front",
  11586. image: {
  11587. source: "./media/characters/koragos/front.svg",
  11588. extra: 841 / 794,
  11589. bottom: 0.035
  11590. }
  11591. },
  11592. back: {
  11593. height: math.unit(6, "feet"),
  11594. weight: math.unit(150, "lb"),
  11595. name: "Back",
  11596. image: {
  11597. source: "./media/characters/koragos/back.svg",
  11598. extra: 841 / 810,
  11599. bottom: 0.022
  11600. }
  11601. },
  11602. },
  11603. [
  11604. {
  11605. name: "Normal",
  11606. height: math.unit(6 + 11 / 12, "feet"),
  11607. default: true
  11608. },
  11609. {
  11610. name: "Macro",
  11611. height: math.unit(490, "feet")
  11612. },
  11613. {
  11614. name: "Megamacro",
  11615. height: math.unit(10, "miles")
  11616. },
  11617. {
  11618. name: "Gigamacro",
  11619. height: math.unit(50, "miles")
  11620. },
  11621. ]
  11622. ))
  11623. characterMakers.push(() => makeCharacter(
  11624. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11625. {
  11626. front: {
  11627. height: math.unit(6, "feet"),
  11628. weight: math.unit(250, "lb"),
  11629. name: "Front",
  11630. image: {
  11631. source: "./media/characters/xylrem/front.svg",
  11632. extra: 3323 / 3050,
  11633. bottom: 0.065
  11634. }
  11635. },
  11636. },
  11637. [
  11638. {
  11639. name: "Micro",
  11640. height: math.unit(4, "feet")
  11641. },
  11642. {
  11643. name: "Normal",
  11644. height: math.unit(16, "feet"),
  11645. default: true
  11646. },
  11647. {
  11648. name: "Macro",
  11649. height: math.unit(2720, "feet")
  11650. },
  11651. {
  11652. name: "Megamacro",
  11653. height: math.unit(25000, "miles")
  11654. },
  11655. ]
  11656. ))
  11657. characterMakers.push(() => makeCharacter(
  11658. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11659. {
  11660. front: {
  11661. height: math.unit(8, "feet"),
  11662. weight: math.unit(250, "kg"),
  11663. name: "Front",
  11664. image: {
  11665. source: "./media/characters/ikideru/front.svg",
  11666. extra: 930 / 870,
  11667. bottom: 0.087
  11668. }
  11669. },
  11670. back: {
  11671. height: math.unit(8, "feet"),
  11672. weight: math.unit(250, "kg"),
  11673. name: "Back",
  11674. image: {
  11675. source: "./media/characters/ikideru/back.svg",
  11676. extra: 919 / 852,
  11677. bottom: 0.055
  11678. }
  11679. },
  11680. },
  11681. [
  11682. {
  11683. name: "Rare",
  11684. height: math.unit(8, "feet"),
  11685. default: true
  11686. },
  11687. {
  11688. name: "Playful Loom",
  11689. height: math.unit(80, "feet")
  11690. },
  11691. {
  11692. name: "City Leaner",
  11693. height: math.unit(230, "feet")
  11694. },
  11695. {
  11696. name: "Megamacro",
  11697. height: math.unit(2500, "feet")
  11698. },
  11699. {
  11700. name: "Gigamacro",
  11701. height: math.unit(26400, "feet")
  11702. },
  11703. {
  11704. name: "Tectonic Shifter",
  11705. height: math.unit(1.7, "megameters")
  11706. },
  11707. {
  11708. name: "Planet Carer",
  11709. height: math.unit(21, "megameters")
  11710. },
  11711. {
  11712. name: "God",
  11713. height: math.unit(11157.22, "parsecs")
  11714. },
  11715. ]
  11716. ))
  11717. characterMakers.push(() => makeCharacter(
  11718. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11719. {
  11720. front: {
  11721. height: math.unit(6, "feet"),
  11722. weight: math.unit(120, "lb"),
  11723. name: "Front",
  11724. image: {
  11725. source: "./media/characters/neo/front.svg"
  11726. }
  11727. },
  11728. },
  11729. [
  11730. {
  11731. name: "Micro",
  11732. height: math.unit(2, "inches"),
  11733. default: true
  11734. },
  11735. {
  11736. name: "Human Size",
  11737. height: math.unit(5 + 8 / 12, "feet")
  11738. },
  11739. ]
  11740. ))
  11741. characterMakers.push(() => makeCharacter(
  11742. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11743. {
  11744. front: {
  11745. height: math.unit(13 + 10 / 12, "feet"),
  11746. weight: math.unit(5320, "lb"),
  11747. name: "Front",
  11748. image: {
  11749. source: "./media/characters/chauncey-chantz/front.svg",
  11750. extra: 1587 / 1435,
  11751. bottom: 0.02
  11752. }
  11753. },
  11754. },
  11755. [
  11756. {
  11757. name: "Normal",
  11758. height: math.unit(13 + 10 / 12, "feet"),
  11759. default: true
  11760. },
  11761. {
  11762. name: "Macro",
  11763. height: math.unit(45, "feet")
  11764. },
  11765. {
  11766. name: "Megamacro",
  11767. height: math.unit(250, "miles")
  11768. },
  11769. {
  11770. name: "Planetary",
  11771. height: math.unit(10000, "miles")
  11772. },
  11773. {
  11774. name: "Galactic",
  11775. height: math.unit(40000, "parsecs")
  11776. },
  11777. {
  11778. name: "Universal",
  11779. height: math.unit(1, "yottameter")
  11780. },
  11781. ]
  11782. ))
  11783. characterMakers.push(() => makeCharacter(
  11784. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11785. {
  11786. front: {
  11787. height: math.unit(6, "feet"),
  11788. weight: math.unit(150, "lb"),
  11789. name: "Front",
  11790. image: {
  11791. source: "./media/characters/epifox/front.svg",
  11792. extra: 1,
  11793. bottom: 0.075
  11794. }
  11795. },
  11796. },
  11797. [
  11798. {
  11799. name: "Micro",
  11800. height: math.unit(6, "inches")
  11801. },
  11802. {
  11803. name: "Normal",
  11804. height: math.unit(12, "feet"),
  11805. default: true
  11806. },
  11807. {
  11808. name: "Macro",
  11809. height: math.unit(3810, "feet")
  11810. },
  11811. {
  11812. name: "Megamacro",
  11813. height: math.unit(500, "miles")
  11814. },
  11815. ]
  11816. ))
  11817. characterMakers.push(() => makeCharacter(
  11818. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11819. {
  11820. front: {
  11821. height: math.unit(1.8796, "m"),
  11822. weight: math.unit(230, "lb"),
  11823. name: "Front",
  11824. image: {
  11825. source: "./media/characters/colin-t/front.svg",
  11826. extra: 1272 / 1193,
  11827. bottom: 0.07
  11828. }
  11829. },
  11830. },
  11831. [
  11832. {
  11833. name: "Micro",
  11834. height: math.unit(0.571, "meters")
  11835. },
  11836. {
  11837. name: "Normal",
  11838. height: math.unit(1.8796, "meters"),
  11839. default: true
  11840. },
  11841. {
  11842. name: "Tall",
  11843. height: math.unit(4, "meters")
  11844. },
  11845. {
  11846. name: "Macro",
  11847. height: math.unit(67.241, "meters")
  11848. },
  11849. {
  11850. name: "Megamacro",
  11851. height: math.unit(371.856, "meters")
  11852. },
  11853. {
  11854. name: "Planetary",
  11855. height: math.unit(12631.5689, "km")
  11856. },
  11857. ]
  11858. ))
  11859. characterMakers.push(() => makeCharacter(
  11860. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11861. {
  11862. front: {
  11863. height: math.unit(1.85, "meters"),
  11864. weight: math.unit(80, "kg"),
  11865. name: "Front",
  11866. image: {
  11867. source: "./media/characters/matvei/front.svg",
  11868. extra: 614 / 594,
  11869. bottom: 0.01
  11870. }
  11871. },
  11872. },
  11873. [
  11874. {
  11875. name: "Normal",
  11876. height: math.unit(1.85, "meters"),
  11877. default: true
  11878. },
  11879. ]
  11880. ))
  11881. characterMakers.push(() => makeCharacter(
  11882. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11883. {
  11884. front: {
  11885. height: math.unit(5 + 9 / 12, "feet"),
  11886. weight: math.unit(70, "lb"),
  11887. name: "Front",
  11888. image: {
  11889. source: "./media/characters/quincy/front.svg",
  11890. extra: 3041 / 2751
  11891. }
  11892. },
  11893. back: {
  11894. height: math.unit(5 + 9 / 12, "feet"),
  11895. weight: math.unit(70, "lb"),
  11896. name: "Back",
  11897. image: {
  11898. source: "./media/characters/quincy/back.svg",
  11899. extra: 3041 / 2751
  11900. }
  11901. },
  11902. flying: {
  11903. height: math.unit(5 + 4 / 12, "feet"),
  11904. weight: math.unit(70, "lb"),
  11905. name: "Flying",
  11906. image: {
  11907. source: "./media/characters/quincy/flying.svg",
  11908. extra: 1044 / 930
  11909. }
  11910. },
  11911. },
  11912. [
  11913. {
  11914. name: "Micro",
  11915. height: math.unit(3, "cm")
  11916. },
  11917. {
  11918. name: "Normal",
  11919. height: math.unit(5 + 9 / 12, "feet")
  11920. },
  11921. {
  11922. name: "Macro",
  11923. height: math.unit(200, "meters"),
  11924. default: true
  11925. },
  11926. {
  11927. name: "Megamacro",
  11928. height: math.unit(1000, "meters")
  11929. },
  11930. ]
  11931. ))
  11932. characterMakers.push(() => makeCharacter(
  11933. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11934. {
  11935. front: {
  11936. height: math.unit(3 + 11/12, "feet"),
  11937. weight: math.unit(50, "lb"),
  11938. name: "Front",
  11939. image: {
  11940. source: "./media/characters/vanrel/front.svg",
  11941. extra: 1104/949,
  11942. bottom: 52/1156
  11943. }
  11944. },
  11945. back: {
  11946. height: math.unit(3 + 11/12, "feet"),
  11947. weight: math.unit(50, "lb"),
  11948. name: "Back",
  11949. image: {
  11950. source: "./media/characters/vanrel/back.svg",
  11951. extra: 1119/976,
  11952. bottom: 37/1156
  11953. }
  11954. },
  11955. tome: {
  11956. height: math.unit(1.35, "feet"),
  11957. weight: math.unit(10, "lb"),
  11958. name: "Vanrel's Tome",
  11959. rename: true,
  11960. image: {
  11961. source: "./media/characters/vanrel/tome.svg"
  11962. }
  11963. },
  11964. beans: {
  11965. height: math.unit(0.89, "feet"),
  11966. name: "Beans",
  11967. image: {
  11968. source: "./media/characters/vanrel/beans.svg"
  11969. }
  11970. },
  11971. },
  11972. [
  11973. {
  11974. name: "Normal",
  11975. height: math.unit(3 + 11/12, "feet"),
  11976. default: true
  11977. },
  11978. ]
  11979. ))
  11980. characterMakers.push(() => makeCharacter(
  11981. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11982. {
  11983. front: {
  11984. height: math.unit(7 + 5 / 12, "feet"),
  11985. name: "Front",
  11986. image: {
  11987. source: "./media/characters/kuiper-vanrel/front.svg",
  11988. extra: 1219/1169,
  11989. bottom: 69/1288
  11990. }
  11991. },
  11992. back: {
  11993. height: math.unit(7 + 5 / 12, "feet"),
  11994. name: "Back",
  11995. image: {
  11996. source: "./media/characters/kuiper-vanrel/back.svg",
  11997. extra: 1236/1193,
  11998. bottom: 27/1263
  11999. }
  12000. },
  12001. foot: {
  12002. height: math.unit(0.55, "meters"),
  12003. name: "Foot",
  12004. image: {
  12005. source: "./media/characters/kuiper-vanrel/foot.svg",
  12006. }
  12007. },
  12008. battle: {
  12009. height: math.unit(6.824, "feet"),
  12010. name: "Battle",
  12011. image: {
  12012. source: "./media/characters/kuiper-vanrel/battle.svg",
  12013. extra: 1466 / 1327,
  12014. bottom: 29 / 1492.5
  12015. }
  12016. },
  12017. meerkui: {
  12018. height: math.unit(18, "inches"),
  12019. name: "Meerkui",
  12020. image: {
  12021. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12022. extra: 1354/1289,
  12023. bottom: 69/1423
  12024. }
  12025. },
  12026. },
  12027. [
  12028. {
  12029. name: "Normal",
  12030. height: math.unit(7 + 5 / 12, "feet"),
  12031. default: true
  12032. },
  12033. ]
  12034. ))
  12035. characterMakers.push(() => makeCharacter(
  12036. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12037. {
  12038. front: {
  12039. height: math.unit(8 + 5 / 12, "feet"),
  12040. name: "Front",
  12041. image: {
  12042. source: "./media/characters/keset-vanrel/front.svg",
  12043. extra: 1231/1148,
  12044. bottom: 82/1313
  12045. }
  12046. },
  12047. back: {
  12048. height: math.unit(8 + 5 / 12, "feet"),
  12049. name: "Back",
  12050. image: {
  12051. source: "./media/characters/keset-vanrel/back.svg",
  12052. extra: 1240/1174,
  12053. bottom: 33/1273
  12054. }
  12055. },
  12056. hand: {
  12057. height: math.unit(0.6, "meters"),
  12058. name: "Hand",
  12059. image: {
  12060. source: "./media/characters/keset-vanrel/hand.svg"
  12061. }
  12062. },
  12063. foot: {
  12064. height: math.unit(0.94978, "meters"),
  12065. name: "Foot",
  12066. image: {
  12067. source: "./media/characters/keset-vanrel/foot.svg"
  12068. }
  12069. },
  12070. battle: {
  12071. height: math.unit(7.408, "feet"),
  12072. name: "Battle",
  12073. image: {
  12074. source: "./media/characters/keset-vanrel/battle.svg",
  12075. extra: 1890 / 1386,
  12076. bottom: 73.28 / 1970
  12077. }
  12078. },
  12079. },
  12080. [
  12081. {
  12082. name: "Normal",
  12083. height: math.unit(8 + 5 / 12, "feet"),
  12084. default: true
  12085. },
  12086. ]
  12087. ))
  12088. characterMakers.push(() => makeCharacter(
  12089. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12090. {
  12091. front: {
  12092. height: math.unit(6, "feet"),
  12093. weight: math.unit(150, "lb"),
  12094. name: "Front",
  12095. image: {
  12096. source: "./media/characters/neos/front.svg",
  12097. extra: 1696 / 992,
  12098. bottom: 0.14
  12099. }
  12100. },
  12101. },
  12102. [
  12103. {
  12104. name: "Normal",
  12105. height: math.unit(54, "cm"),
  12106. default: true
  12107. },
  12108. {
  12109. name: "Macro",
  12110. height: math.unit(100, "m")
  12111. },
  12112. {
  12113. name: "Megamacro",
  12114. height: math.unit(10, "km")
  12115. },
  12116. {
  12117. name: "Megamacro+",
  12118. height: math.unit(100, "km")
  12119. },
  12120. {
  12121. name: "Gigamacro",
  12122. height: math.unit(100, "Mm")
  12123. },
  12124. {
  12125. name: "Teramacro",
  12126. height: math.unit(100, "Gm")
  12127. },
  12128. {
  12129. name: "Examacro",
  12130. height: math.unit(100, "Em")
  12131. },
  12132. {
  12133. name: "Godly",
  12134. height: math.unit(10000, "Ym")
  12135. },
  12136. {
  12137. name: "Beyond Godly",
  12138. height: math.unit(25, "multiverses")
  12139. },
  12140. ]
  12141. ))
  12142. characterMakers.push(() => makeCharacter(
  12143. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12144. {
  12145. feminine: {
  12146. height: math.unit(5, "feet"),
  12147. weight: math.unit(100, "lb"),
  12148. name: "Feminine",
  12149. image: {
  12150. source: "./media/characters/sammy-mouse/feminine.svg",
  12151. extra: 2526 / 2425,
  12152. bottom: 0.123
  12153. }
  12154. },
  12155. masculine: {
  12156. height: math.unit(5, "feet"),
  12157. weight: math.unit(100, "lb"),
  12158. name: "Masculine",
  12159. image: {
  12160. source: "./media/characters/sammy-mouse/masculine.svg",
  12161. extra: 2526 / 2425,
  12162. bottom: 0.123
  12163. }
  12164. },
  12165. },
  12166. [
  12167. {
  12168. name: "Micro",
  12169. height: math.unit(5, "inches")
  12170. },
  12171. {
  12172. name: "Normal",
  12173. height: math.unit(5, "feet"),
  12174. default: true
  12175. },
  12176. {
  12177. name: "Macro",
  12178. height: math.unit(60, "feet")
  12179. },
  12180. ]
  12181. ))
  12182. characterMakers.push(() => makeCharacter(
  12183. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12184. {
  12185. front: {
  12186. height: math.unit(4, "feet"),
  12187. weight: math.unit(50, "lb"),
  12188. name: "Front",
  12189. image: {
  12190. source: "./media/characters/kole/front.svg",
  12191. extra: 1423 / 1303,
  12192. bottom: 0.025
  12193. }
  12194. },
  12195. back: {
  12196. height: math.unit(4, "feet"),
  12197. weight: math.unit(50, "lb"),
  12198. name: "Back",
  12199. image: {
  12200. source: "./media/characters/kole/back.svg",
  12201. extra: 1426 / 1280,
  12202. bottom: 0.02
  12203. }
  12204. },
  12205. },
  12206. [
  12207. {
  12208. name: "Normal",
  12209. height: math.unit(4, "feet"),
  12210. default: true
  12211. },
  12212. ]
  12213. ))
  12214. characterMakers.push(() => makeCharacter(
  12215. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12216. {
  12217. front: {
  12218. height: math.unit(2.5, "feet"),
  12219. weight: math.unit(32, "lb"),
  12220. name: "Front",
  12221. image: {
  12222. source: "./media/characters/rufran/front.svg",
  12223. extra: 1313/885,
  12224. bottom: 94/1407
  12225. }
  12226. },
  12227. side: {
  12228. height: math.unit(2.5, "feet"),
  12229. weight: math.unit(32, "lb"),
  12230. name: "Side",
  12231. image: {
  12232. source: "./media/characters/rufran/side.svg",
  12233. extra: 1109/852,
  12234. bottom: 118/1227
  12235. }
  12236. },
  12237. back: {
  12238. height: math.unit(2.5, "feet"),
  12239. weight: math.unit(32, "lb"),
  12240. name: "Back",
  12241. image: {
  12242. source: "./media/characters/rufran/back.svg",
  12243. extra: 1280/878,
  12244. bottom: 131/1411
  12245. }
  12246. },
  12247. mouth: {
  12248. height: math.unit(1.13, "feet"),
  12249. name: "Mouth",
  12250. image: {
  12251. source: "./media/characters/rufran/mouth.svg"
  12252. }
  12253. },
  12254. foot: {
  12255. height: math.unit(1.33, "feet"),
  12256. name: "Foot",
  12257. image: {
  12258. source: "./media/characters/rufran/foot.svg"
  12259. }
  12260. },
  12261. koboldFront: {
  12262. height: math.unit(2 + 6 / 12, "feet"),
  12263. weight: math.unit(20, "lb"),
  12264. name: "Front (Kobold)",
  12265. image: {
  12266. source: "./media/characters/rufran/kobold-front.svg",
  12267. extra: 2041 / 1839,
  12268. bottom: 0.055
  12269. }
  12270. },
  12271. koboldBack: {
  12272. height: math.unit(2 + 6 / 12, "feet"),
  12273. weight: math.unit(20, "lb"),
  12274. name: "Back (Kobold)",
  12275. image: {
  12276. source: "./media/characters/rufran/kobold-back.svg",
  12277. extra: 2054 / 1839,
  12278. bottom: 0.01
  12279. }
  12280. },
  12281. koboldHand: {
  12282. height: math.unit(0.2166, "meters"),
  12283. name: "Hand (Kobold)",
  12284. image: {
  12285. source: "./media/characters/rufran/kobold-hand.svg"
  12286. }
  12287. },
  12288. koboldFoot: {
  12289. height: math.unit(0.185, "meters"),
  12290. name: "Foot (Kobold)",
  12291. image: {
  12292. source: "./media/characters/rufran/kobold-foot.svg"
  12293. }
  12294. },
  12295. },
  12296. [
  12297. {
  12298. name: "Micro",
  12299. height: math.unit(1, "inch")
  12300. },
  12301. {
  12302. name: "Normal",
  12303. height: math.unit(2 + 6 / 12, "feet"),
  12304. default: true
  12305. },
  12306. {
  12307. name: "Big",
  12308. height: math.unit(60, "feet")
  12309. },
  12310. {
  12311. name: "Macro",
  12312. height: math.unit(325, "feet")
  12313. },
  12314. ]
  12315. ))
  12316. characterMakers.push(() => makeCharacter(
  12317. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12318. {
  12319. front: {
  12320. height: math.unit(0.3, "meters"),
  12321. weight: math.unit(3.5, "kg"),
  12322. name: "Front",
  12323. image: {
  12324. source: "./media/characters/chip/front.svg",
  12325. extra: 748 / 674
  12326. }
  12327. },
  12328. },
  12329. [
  12330. {
  12331. name: "Micro",
  12332. height: math.unit(1, "inch"),
  12333. default: true
  12334. },
  12335. ]
  12336. ))
  12337. characterMakers.push(() => makeCharacter(
  12338. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12339. {
  12340. side: {
  12341. height: math.unit(2.3, "meters"),
  12342. weight: math.unit(3500, "lb"),
  12343. name: "Side",
  12344. image: {
  12345. source: "./media/characters/torvid/side.svg",
  12346. extra: 1972 / 722,
  12347. bottom: 0.035
  12348. }
  12349. },
  12350. },
  12351. [
  12352. {
  12353. name: "Normal",
  12354. height: math.unit(2.3, "meters"),
  12355. default: true
  12356. },
  12357. ]
  12358. ))
  12359. characterMakers.push(() => makeCharacter(
  12360. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12361. {
  12362. front: {
  12363. height: math.unit(2, "meters"),
  12364. weight: math.unit(150.5, "kg"),
  12365. name: "Front",
  12366. image: {
  12367. source: "./media/characters/susan/front.svg",
  12368. extra: 693 / 635,
  12369. bottom: 0.05
  12370. }
  12371. },
  12372. },
  12373. [
  12374. {
  12375. name: "Megamacro",
  12376. height: math.unit(505, "miles"),
  12377. default: true
  12378. },
  12379. ]
  12380. ))
  12381. characterMakers.push(() => makeCharacter(
  12382. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12383. {
  12384. front: {
  12385. height: math.unit(6, "feet"),
  12386. weight: math.unit(150, "lb"),
  12387. name: "Front",
  12388. image: {
  12389. source: "./media/characters/raindrops/front.svg",
  12390. extra: 2655 / 2461,
  12391. bottom: 49 / 2705
  12392. }
  12393. },
  12394. back: {
  12395. height: math.unit(6, "feet"),
  12396. weight: math.unit(150, "lb"),
  12397. name: "Back",
  12398. image: {
  12399. source: "./media/characters/raindrops/back.svg",
  12400. extra: 2574 / 2400,
  12401. bottom: 65 / 2634
  12402. }
  12403. },
  12404. },
  12405. [
  12406. {
  12407. name: "Micro",
  12408. height: math.unit(6, "inches")
  12409. },
  12410. {
  12411. name: "Normal",
  12412. height: math.unit(6 + 2 / 12, "feet")
  12413. },
  12414. {
  12415. name: "Macro",
  12416. height: math.unit(131, "feet"),
  12417. default: true
  12418. },
  12419. {
  12420. name: "Megamacro",
  12421. height: math.unit(15, "miles")
  12422. },
  12423. {
  12424. name: "Gigamacro",
  12425. height: math.unit(4000, "miles")
  12426. },
  12427. {
  12428. name: "Teramacro",
  12429. height: math.unit(315000, "miles")
  12430. },
  12431. ]
  12432. ))
  12433. characterMakers.push(() => makeCharacter(
  12434. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12435. {
  12436. front: {
  12437. height: math.unit(2.794, "meters"),
  12438. weight: math.unit(325, "kg"),
  12439. name: "Front",
  12440. image: {
  12441. source: "./media/characters/tezwa/front.svg",
  12442. extra: 2083 / 1906,
  12443. bottom: 0.031
  12444. }
  12445. },
  12446. foot: {
  12447. height: math.unit(0.687, "meters"),
  12448. name: "Foot",
  12449. image: {
  12450. source: "./media/characters/tezwa/foot.svg"
  12451. }
  12452. },
  12453. },
  12454. [
  12455. {
  12456. name: "Normal",
  12457. height: math.unit(9 + 2 / 12, "feet"),
  12458. default: true
  12459. },
  12460. ]
  12461. ))
  12462. characterMakers.push(() => makeCharacter(
  12463. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12464. {
  12465. front: {
  12466. height: math.unit(58, "feet"),
  12467. weight: math.unit(89000, "lb"),
  12468. name: "Front",
  12469. image: {
  12470. source: "./media/characters/typhus/front.svg",
  12471. extra: 816 / 800,
  12472. bottom: 0.065
  12473. }
  12474. },
  12475. },
  12476. [
  12477. {
  12478. name: "Macro",
  12479. height: math.unit(58, "feet"),
  12480. default: true
  12481. },
  12482. ]
  12483. ))
  12484. characterMakers.push(() => makeCharacter(
  12485. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12486. {
  12487. front: {
  12488. height: math.unit(12, "feet"),
  12489. weight: math.unit(6, "tonnes"),
  12490. name: "Front",
  12491. image: {
  12492. source: "./media/characters/lyra-von-wulf/front.svg",
  12493. extra: 1,
  12494. bottom: 0.10
  12495. }
  12496. },
  12497. frontMecha: {
  12498. height: math.unit(12, "feet"),
  12499. weight: math.unit(12, "tonnes"),
  12500. name: "Front (Mecha)",
  12501. image: {
  12502. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12503. extra: 1,
  12504. bottom: 0.042
  12505. }
  12506. },
  12507. maw: {
  12508. height: math.unit(2.2, "feet"),
  12509. name: "Maw",
  12510. image: {
  12511. source: "./media/characters/lyra-von-wulf/maw.svg"
  12512. }
  12513. },
  12514. },
  12515. [
  12516. {
  12517. name: "Normal",
  12518. height: math.unit(12, "feet"),
  12519. default: true
  12520. },
  12521. {
  12522. name: "Classic",
  12523. height: math.unit(50, "feet")
  12524. },
  12525. {
  12526. name: "Macro",
  12527. height: math.unit(500, "feet")
  12528. },
  12529. {
  12530. name: "Megamacro",
  12531. height: math.unit(1, "mile")
  12532. },
  12533. {
  12534. name: "Gigamacro",
  12535. height: math.unit(400, "miles")
  12536. },
  12537. {
  12538. name: "Teramacro",
  12539. height: math.unit(22000, "miles")
  12540. },
  12541. {
  12542. name: "Solarmacro",
  12543. height: math.unit(8600000, "miles")
  12544. },
  12545. {
  12546. name: "Galactic",
  12547. height: math.unit(1057000, "lightyears")
  12548. },
  12549. ]
  12550. ))
  12551. characterMakers.push(() => makeCharacter(
  12552. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12553. {
  12554. front: {
  12555. height: math.unit(6 + 10 / 12, "feet"),
  12556. weight: math.unit(150, "lb"),
  12557. name: "Front",
  12558. image: {
  12559. source: "./media/characters/dixon/front.svg",
  12560. extra: 3361 / 3209,
  12561. bottom: 0.01
  12562. }
  12563. },
  12564. },
  12565. [
  12566. {
  12567. name: "Normal",
  12568. height: math.unit(6 + 10 / 12, "feet"),
  12569. default: true
  12570. },
  12571. {
  12572. name: "Big",
  12573. height: math.unit(12, "meters")
  12574. },
  12575. {
  12576. name: "Macro",
  12577. height: math.unit(500, "meters")
  12578. },
  12579. {
  12580. name: "Megamacro",
  12581. height: math.unit(2, "km")
  12582. },
  12583. ]
  12584. ))
  12585. characterMakers.push(() => makeCharacter(
  12586. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12587. {
  12588. front: {
  12589. height: math.unit(185, "cm"),
  12590. weight: math.unit(68, "kg"),
  12591. name: "Front",
  12592. image: {
  12593. source: "./media/characters/kauko/front.svg",
  12594. extra: 1455 / 1421,
  12595. bottom: 0.03
  12596. }
  12597. },
  12598. back: {
  12599. height: math.unit(185, "cm"),
  12600. weight: math.unit(68, "kg"),
  12601. name: "Back",
  12602. image: {
  12603. source: "./media/characters/kauko/back.svg",
  12604. extra: 1455 / 1421,
  12605. bottom: 0.004
  12606. }
  12607. },
  12608. },
  12609. [
  12610. {
  12611. name: "Normal",
  12612. height: math.unit(185, "cm"),
  12613. default: true
  12614. },
  12615. ]
  12616. ))
  12617. characterMakers.push(() => makeCharacter(
  12618. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12619. {
  12620. front: {
  12621. height: math.unit(6, "feet"),
  12622. weight: math.unit(150, "kg"),
  12623. name: "Front",
  12624. image: {
  12625. source: "./media/characters/varg/front.svg",
  12626. extra: 1108 / 1018,
  12627. bottom: 0.0375
  12628. }
  12629. },
  12630. },
  12631. [
  12632. {
  12633. name: "Normal",
  12634. height: math.unit(5, "meters")
  12635. },
  12636. {
  12637. name: "Macro",
  12638. height: math.unit(200, "meters")
  12639. },
  12640. {
  12641. name: "Megamacro",
  12642. height: math.unit(20, "kilometers")
  12643. },
  12644. {
  12645. name: "True Size",
  12646. height: math.unit(211, "km"),
  12647. default: true
  12648. },
  12649. {
  12650. name: "Gigamacro",
  12651. height: math.unit(1000, "km")
  12652. },
  12653. {
  12654. name: "Gigamacro+",
  12655. height: math.unit(8000, "km")
  12656. },
  12657. {
  12658. name: "Teramacro",
  12659. height: math.unit(1000000, "km")
  12660. },
  12661. ]
  12662. ))
  12663. characterMakers.push(() => makeCharacter(
  12664. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12665. {
  12666. front: {
  12667. height: math.unit(7 + 7 / 12, "feet"),
  12668. weight: math.unit(267, "lb"),
  12669. name: "Front",
  12670. image: {
  12671. source: "./media/characters/dayza/front.svg",
  12672. extra: 1262 / 1200,
  12673. bottom: 0.035
  12674. }
  12675. },
  12676. side: {
  12677. height: math.unit(7 + 7 / 12, "feet"),
  12678. weight: math.unit(267, "lb"),
  12679. name: "Side",
  12680. image: {
  12681. source: "./media/characters/dayza/side.svg",
  12682. extra: 1295 / 1245,
  12683. bottom: 0.05
  12684. }
  12685. },
  12686. back: {
  12687. height: math.unit(7 + 7 / 12, "feet"),
  12688. weight: math.unit(267, "lb"),
  12689. name: "Back",
  12690. image: {
  12691. source: "./media/characters/dayza/back.svg",
  12692. extra: 1241 / 1170
  12693. }
  12694. },
  12695. },
  12696. [
  12697. {
  12698. name: "Normal",
  12699. height: math.unit(7 + 7 / 12, "feet"),
  12700. default: true
  12701. },
  12702. {
  12703. name: "Macro",
  12704. height: math.unit(155, "feet")
  12705. },
  12706. ]
  12707. ))
  12708. characterMakers.push(() => makeCharacter(
  12709. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12710. {
  12711. front: {
  12712. height: math.unit(6 + 5 / 12, "feet"),
  12713. weight: math.unit(160, "lb"),
  12714. name: "Front",
  12715. image: {
  12716. source: "./media/characters/xanthos/front.svg",
  12717. extra: 1,
  12718. bottom: 0.04
  12719. }
  12720. },
  12721. back: {
  12722. height: math.unit(6 + 5 / 12, "feet"),
  12723. weight: math.unit(160, "lb"),
  12724. name: "Back",
  12725. image: {
  12726. source: "./media/characters/xanthos/back.svg",
  12727. extra: 1,
  12728. bottom: 0.03
  12729. }
  12730. },
  12731. hand: {
  12732. height: math.unit(0.928, "feet"),
  12733. name: "Hand",
  12734. image: {
  12735. source: "./media/characters/xanthos/hand.svg"
  12736. }
  12737. },
  12738. foot: {
  12739. height: math.unit(1.286, "feet"),
  12740. name: "Foot",
  12741. image: {
  12742. source: "./media/characters/xanthos/foot.svg"
  12743. }
  12744. },
  12745. },
  12746. [
  12747. {
  12748. name: "Normal",
  12749. height: math.unit(6 + 5 / 12, "feet"),
  12750. default: true
  12751. },
  12752. {
  12753. name: "Normal+",
  12754. height: math.unit(6, "meters")
  12755. },
  12756. {
  12757. name: "Macro",
  12758. height: math.unit(40, "feet")
  12759. },
  12760. {
  12761. name: "Macro+",
  12762. height: math.unit(200, "meters")
  12763. },
  12764. {
  12765. name: "Megamacro",
  12766. height: math.unit(20, "km")
  12767. },
  12768. {
  12769. name: "Megamacro+",
  12770. height: math.unit(100, "km")
  12771. },
  12772. {
  12773. name: "Gigamacro",
  12774. height: math.unit(200, "megameters")
  12775. },
  12776. {
  12777. name: "Gigamacro+",
  12778. height: math.unit(1.5, "gigameters")
  12779. },
  12780. ]
  12781. ))
  12782. characterMakers.push(() => makeCharacter(
  12783. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12784. {
  12785. front: {
  12786. height: math.unit(6 + 3 / 12, "feet"),
  12787. weight: math.unit(215, "lb"),
  12788. name: "Front",
  12789. image: {
  12790. source: "./media/characters/grynn/front.svg",
  12791. extra: 4627 / 4209,
  12792. bottom: 0.047
  12793. }
  12794. },
  12795. },
  12796. [
  12797. {
  12798. name: "Micro",
  12799. height: math.unit(6, "inches")
  12800. },
  12801. {
  12802. name: "Normal",
  12803. height: math.unit(6 + 3 / 12, "feet"),
  12804. default: true
  12805. },
  12806. {
  12807. name: "Big",
  12808. height: math.unit(104, "feet")
  12809. },
  12810. {
  12811. name: "Macro",
  12812. height: math.unit(944, "feet")
  12813. },
  12814. {
  12815. name: "Macro+",
  12816. height: math.unit(9480, "feet")
  12817. },
  12818. {
  12819. name: "Megamacro",
  12820. height: math.unit(78752, "feet")
  12821. },
  12822. {
  12823. name: "Megamacro+",
  12824. height: math.unit(630128, "feet")
  12825. },
  12826. {
  12827. name: "Megamacro++",
  12828. height: math.unit(3150695, "feet")
  12829. },
  12830. ]
  12831. ))
  12832. characterMakers.push(() => makeCharacter(
  12833. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12834. {
  12835. front: {
  12836. height: math.unit(7 + 5 / 12, "feet"),
  12837. weight: math.unit(450, "lb"),
  12838. name: "Front",
  12839. image: {
  12840. source: "./media/characters/mocha-aura/front.svg",
  12841. extra: 1907 / 1817,
  12842. bottom: 0.04
  12843. }
  12844. },
  12845. back: {
  12846. height: math.unit(7 + 5 / 12, "feet"),
  12847. weight: math.unit(450, "lb"),
  12848. name: "Back",
  12849. image: {
  12850. source: "./media/characters/mocha-aura/back.svg",
  12851. extra: 1900 / 1825,
  12852. bottom: 0.045
  12853. }
  12854. },
  12855. },
  12856. [
  12857. {
  12858. name: "Nano",
  12859. height: math.unit(1, "nm")
  12860. },
  12861. {
  12862. name: "Megamicro",
  12863. height: math.unit(1, "mm")
  12864. },
  12865. {
  12866. name: "Micro",
  12867. height: math.unit(3, "inches")
  12868. },
  12869. {
  12870. name: "Normal",
  12871. height: math.unit(7 + 5 / 12, "feet"),
  12872. default: true
  12873. },
  12874. {
  12875. name: "Macro",
  12876. height: math.unit(30, "feet")
  12877. },
  12878. {
  12879. name: "Megamacro",
  12880. height: math.unit(3500, "feet")
  12881. },
  12882. {
  12883. name: "Teramacro",
  12884. height: math.unit(500000, "miles")
  12885. },
  12886. {
  12887. name: "Petamacro",
  12888. height: math.unit(50000000000000000, "parsecs")
  12889. },
  12890. ]
  12891. ))
  12892. characterMakers.push(() => makeCharacter(
  12893. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12894. {
  12895. front: {
  12896. height: math.unit(6, "feet"),
  12897. weight: math.unit(150, "lb"),
  12898. name: "Front",
  12899. image: {
  12900. source: "./media/characters/ilisha-devya/front.svg",
  12901. extra: 1,
  12902. bottom: 0.175
  12903. }
  12904. },
  12905. back: {
  12906. height: math.unit(6, "feet"),
  12907. weight: math.unit(150, "lb"),
  12908. name: "Back",
  12909. image: {
  12910. source: "./media/characters/ilisha-devya/back.svg",
  12911. extra: 1,
  12912. bottom: 0.015
  12913. }
  12914. },
  12915. },
  12916. [
  12917. {
  12918. name: "Macro",
  12919. height: math.unit(500, "feet"),
  12920. default: true
  12921. },
  12922. {
  12923. name: "Megamacro",
  12924. height: math.unit(10, "miles")
  12925. },
  12926. {
  12927. name: "Gigamacro",
  12928. height: math.unit(100000, "miles")
  12929. },
  12930. {
  12931. name: "Examacro",
  12932. height: math.unit(1e9, "lightyears")
  12933. },
  12934. {
  12935. name: "Omniversal",
  12936. height: math.unit(1e33, "lightyears")
  12937. },
  12938. {
  12939. name: "Beyond Infinite",
  12940. height: math.unit(1e100, "lightyears")
  12941. },
  12942. ]
  12943. ))
  12944. characterMakers.push(() => makeCharacter(
  12945. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12946. {
  12947. Side: {
  12948. height: math.unit(6, "feet"),
  12949. weight: math.unit(150, "lb"),
  12950. name: "Side",
  12951. image: {
  12952. source: "./media/characters/mira/side.svg",
  12953. extra: 900 / 799,
  12954. bottom: 0.02
  12955. }
  12956. },
  12957. },
  12958. [
  12959. {
  12960. name: "Human Size",
  12961. height: math.unit(6, "feet")
  12962. },
  12963. {
  12964. name: "Macro",
  12965. height: math.unit(100, "feet"),
  12966. default: true
  12967. },
  12968. {
  12969. name: "Megamacro",
  12970. height: math.unit(10, "miles")
  12971. },
  12972. {
  12973. name: "Gigamacro",
  12974. height: math.unit(25000, "miles")
  12975. },
  12976. {
  12977. name: "Teramacro",
  12978. height: math.unit(300, "AU")
  12979. },
  12980. {
  12981. name: "Full Size",
  12982. height: math.unit(4.5e10, "lightyears")
  12983. },
  12984. ]
  12985. ))
  12986. characterMakers.push(() => makeCharacter(
  12987. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12988. {
  12989. front: {
  12990. height: math.unit(6, "feet"),
  12991. weight: math.unit(150, "lb"),
  12992. name: "Front",
  12993. image: {
  12994. source: "./media/characters/holly/front.svg",
  12995. extra: 639 / 606
  12996. }
  12997. },
  12998. back: {
  12999. height: math.unit(6, "feet"),
  13000. weight: math.unit(150, "lb"),
  13001. name: "Back",
  13002. image: {
  13003. source: "./media/characters/holly/back.svg",
  13004. extra: 623 / 598
  13005. }
  13006. },
  13007. frontWorking: {
  13008. height: math.unit(6, "feet"),
  13009. weight: math.unit(150, "lb"),
  13010. name: "Front (Working)",
  13011. image: {
  13012. source: "./media/characters/holly/front-working.svg",
  13013. extra: 607 / 577,
  13014. bottom: 0.048
  13015. }
  13016. },
  13017. },
  13018. [
  13019. {
  13020. name: "Normal",
  13021. height: math.unit(12 + 3 / 12, "feet"),
  13022. default: true
  13023. },
  13024. ]
  13025. ))
  13026. characterMakers.push(() => makeCharacter(
  13027. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13028. {
  13029. front: {
  13030. height: math.unit(6, "feet"),
  13031. weight: math.unit(150, "lb"),
  13032. name: "Front",
  13033. image: {
  13034. source: "./media/characters/porter/front.svg",
  13035. extra: 1,
  13036. bottom: 0.01
  13037. }
  13038. },
  13039. frontRobes: {
  13040. height: math.unit(6, "feet"),
  13041. weight: math.unit(150, "lb"),
  13042. name: "Front (Robes)",
  13043. image: {
  13044. source: "./media/characters/porter/front-robes.svg",
  13045. extra: 1.01,
  13046. bottom: 0.01
  13047. }
  13048. },
  13049. },
  13050. [
  13051. {
  13052. name: "Normal",
  13053. height: math.unit(11 + 9 / 12, "feet"),
  13054. default: true
  13055. },
  13056. ]
  13057. ))
  13058. characterMakers.push(() => makeCharacter(
  13059. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13060. {
  13061. legendary: {
  13062. height: math.unit(6, "feet"),
  13063. weight: math.unit(150, "lb"),
  13064. name: "Legendary",
  13065. image: {
  13066. source: "./media/characters/lucy/legendary.svg",
  13067. extra: 1355 / 1100,
  13068. bottom: 0.045
  13069. }
  13070. },
  13071. },
  13072. [
  13073. {
  13074. name: "Legendary",
  13075. height: math.unit(86882 * 2, "miles"),
  13076. default: true
  13077. },
  13078. ]
  13079. ))
  13080. characterMakers.push(() => makeCharacter(
  13081. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13082. {
  13083. front: {
  13084. height: math.unit(6, "feet"),
  13085. weight: math.unit(150, "lb"),
  13086. name: "Front",
  13087. image: {
  13088. source: "./media/characters/drusilla/front.svg",
  13089. extra: 678 / 635,
  13090. bottom: 0.03
  13091. }
  13092. },
  13093. back: {
  13094. height: math.unit(6, "feet"),
  13095. weight: math.unit(150, "lb"),
  13096. name: "Back",
  13097. image: {
  13098. source: "./media/characters/drusilla/back.svg",
  13099. extra: 678 / 635,
  13100. bottom: 0.005
  13101. }
  13102. },
  13103. },
  13104. [
  13105. {
  13106. name: "Macro",
  13107. height: math.unit(100, "feet")
  13108. },
  13109. {
  13110. name: "Canon Height",
  13111. height: math.unit(2000, "feet"),
  13112. default: true
  13113. },
  13114. ]
  13115. ))
  13116. characterMakers.push(() => makeCharacter(
  13117. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13118. {
  13119. front: {
  13120. height: math.unit(6, "feet"),
  13121. weight: math.unit(180, "lb"),
  13122. name: "Front",
  13123. image: {
  13124. source: "./media/characters/renard-thatch/front.svg",
  13125. extra: 2411 / 2275,
  13126. bottom: 0.01
  13127. }
  13128. },
  13129. frontPosing: {
  13130. height: math.unit(6, "feet"),
  13131. weight: math.unit(180, "lb"),
  13132. name: "Front (Posing)",
  13133. image: {
  13134. source: "./media/characters/renard-thatch/front-posing.svg",
  13135. extra: 2381 / 2261,
  13136. bottom: 0.01
  13137. }
  13138. },
  13139. back: {
  13140. height: math.unit(6, "feet"),
  13141. weight: math.unit(180, "lb"),
  13142. name: "Back",
  13143. image: {
  13144. source: "./media/characters/renard-thatch/back.svg",
  13145. extra: 2428 / 2288
  13146. }
  13147. },
  13148. },
  13149. [
  13150. {
  13151. name: "Micro",
  13152. height: math.unit(3, "inches")
  13153. },
  13154. {
  13155. name: "Default",
  13156. height: math.unit(6, "feet"),
  13157. default: true
  13158. },
  13159. {
  13160. name: "Macro",
  13161. height: math.unit(75, "feet")
  13162. },
  13163. ]
  13164. ))
  13165. characterMakers.push(() => makeCharacter(
  13166. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13167. {
  13168. front: {
  13169. height: math.unit(1450, "feet"),
  13170. weight: math.unit(1.21e6, "tons"),
  13171. name: "Front",
  13172. image: {
  13173. source: "./media/characters/sekvra/front.svg",
  13174. extra: 1,
  13175. bottom: 0.03
  13176. }
  13177. },
  13178. frontClothed: {
  13179. height: math.unit(1450, "feet"),
  13180. weight: math.unit(1.21e6, "tons"),
  13181. name: "Front (Clothed)",
  13182. image: {
  13183. source: "./media/characters/sekvra/front-clothed.svg",
  13184. extra: 1,
  13185. bottom: 0.03
  13186. }
  13187. },
  13188. side: {
  13189. height: math.unit(1450, "feet"),
  13190. weight: math.unit(1.21e6, "tons"),
  13191. name: "Side",
  13192. image: {
  13193. source: "./media/characters/sekvra/side.svg",
  13194. extra: 1,
  13195. bottom: 0.025
  13196. }
  13197. },
  13198. back: {
  13199. height: math.unit(1450, "feet"),
  13200. weight: math.unit(1.21e6, "tons"),
  13201. name: "Back",
  13202. image: {
  13203. source: "./media/characters/sekvra/back.svg",
  13204. extra: 1,
  13205. bottom: 0.005
  13206. }
  13207. },
  13208. },
  13209. [
  13210. {
  13211. name: "Macro",
  13212. height: math.unit(1450, "feet"),
  13213. default: true
  13214. },
  13215. {
  13216. name: "Megamacro",
  13217. height: math.unit(15000, "feet")
  13218. },
  13219. ]
  13220. ))
  13221. characterMakers.push(() => makeCharacter(
  13222. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13223. {
  13224. front: {
  13225. height: math.unit(6, "feet"),
  13226. weight: math.unit(150, "lb"),
  13227. name: "Front",
  13228. image: {
  13229. source: "./media/characters/carmine/front.svg",
  13230. extra: 1,
  13231. bottom: 0.035
  13232. }
  13233. },
  13234. frontArmor: {
  13235. height: math.unit(6, "feet"),
  13236. weight: math.unit(150, "lb"),
  13237. name: "Front (Armor)",
  13238. image: {
  13239. source: "./media/characters/carmine/front-armor.svg",
  13240. extra: 1,
  13241. bottom: 0.035
  13242. }
  13243. },
  13244. },
  13245. [
  13246. {
  13247. name: "Large",
  13248. height: math.unit(1, "mile")
  13249. },
  13250. {
  13251. name: "Huge",
  13252. height: math.unit(40, "miles"),
  13253. default: true
  13254. },
  13255. {
  13256. name: "Colossal",
  13257. height: math.unit(2500, "miles")
  13258. },
  13259. ]
  13260. ))
  13261. characterMakers.push(() => makeCharacter(
  13262. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13263. {
  13264. front: {
  13265. height: math.unit(6, "feet"),
  13266. weight: math.unit(150, "lb"),
  13267. name: "Front",
  13268. image: {
  13269. source: "./media/characters/elyssia/front.svg",
  13270. extra: 2201 / 2035,
  13271. bottom: 0.05
  13272. }
  13273. },
  13274. frontClothed: {
  13275. height: math.unit(6, "feet"),
  13276. weight: math.unit(150, "lb"),
  13277. name: "Front (Clothed)",
  13278. image: {
  13279. source: "./media/characters/elyssia/front-clothed.svg",
  13280. extra: 2201 / 2035,
  13281. bottom: 0.05
  13282. }
  13283. },
  13284. back: {
  13285. height: math.unit(6, "feet"),
  13286. weight: math.unit(150, "lb"),
  13287. name: "Back",
  13288. image: {
  13289. source: "./media/characters/elyssia/back.svg",
  13290. extra: 2201 / 2035,
  13291. bottom: 0.013
  13292. }
  13293. },
  13294. },
  13295. [
  13296. {
  13297. name: "Smaller",
  13298. height: math.unit(150, "feet")
  13299. },
  13300. {
  13301. name: "Standard",
  13302. height: math.unit(1400, "feet"),
  13303. default: true
  13304. },
  13305. {
  13306. name: "Distracted",
  13307. height: math.unit(15000, "feet")
  13308. },
  13309. ]
  13310. ))
  13311. characterMakers.push(() => makeCharacter(
  13312. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13313. {
  13314. front: {
  13315. height: math.unit(7 + 4 / 12, "feet"),
  13316. weight: math.unit(500, "lb"),
  13317. name: "Front",
  13318. image: {
  13319. source: "./media/characters/geno-maxwell/front.svg",
  13320. extra: 2207 / 2040,
  13321. bottom: 0.015
  13322. }
  13323. },
  13324. },
  13325. [
  13326. {
  13327. name: "Micro",
  13328. height: math.unit(3, "inches")
  13329. },
  13330. {
  13331. name: "Normal",
  13332. height: math.unit(7 + 4 / 12, "feet"),
  13333. default: true
  13334. },
  13335. {
  13336. name: "Macro",
  13337. height: math.unit(220, "feet")
  13338. },
  13339. {
  13340. name: "Megamacro",
  13341. height: math.unit(11, "miles")
  13342. },
  13343. ]
  13344. ))
  13345. characterMakers.push(() => makeCharacter(
  13346. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13347. {
  13348. front: {
  13349. height: math.unit(7 + 4 / 12, "feet"),
  13350. weight: math.unit(500, "lb"),
  13351. name: "Front",
  13352. image: {
  13353. source: "./media/characters/regena-maxwell/front.svg",
  13354. extra: 3115 / 2770,
  13355. bottom: 0.02
  13356. }
  13357. },
  13358. },
  13359. [
  13360. {
  13361. name: "Normal",
  13362. height: math.unit(7 + 4 / 12, "feet"),
  13363. default: true
  13364. },
  13365. {
  13366. name: "Macro",
  13367. height: math.unit(220, "feet")
  13368. },
  13369. {
  13370. name: "Megamacro",
  13371. height: math.unit(11, "miles")
  13372. },
  13373. ]
  13374. ))
  13375. characterMakers.push(() => makeCharacter(
  13376. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13377. {
  13378. front: {
  13379. height: math.unit(6, "feet"),
  13380. weight: math.unit(150, "lb"),
  13381. name: "Front",
  13382. image: {
  13383. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13384. extra: 860 / 690,
  13385. bottom: 0.03
  13386. }
  13387. },
  13388. },
  13389. [
  13390. {
  13391. name: "Normal",
  13392. height: math.unit(1.7, "meters"),
  13393. default: true
  13394. },
  13395. ]
  13396. ))
  13397. characterMakers.push(() => makeCharacter(
  13398. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13399. {
  13400. front: {
  13401. height: math.unit(6, "feet"),
  13402. weight: math.unit(150, "lb"),
  13403. name: "Front",
  13404. image: {
  13405. source: "./media/characters/quilly/front.svg",
  13406. extra: 890 / 776
  13407. }
  13408. },
  13409. },
  13410. [
  13411. {
  13412. name: "Gigamacro",
  13413. height: math.unit(404090, "miles"),
  13414. default: true
  13415. },
  13416. ]
  13417. ))
  13418. characterMakers.push(() => makeCharacter(
  13419. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13420. {
  13421. front: {
  13422. height: math.unit(7 + 8 / 12, "feet"),
  13423. weight: math.unit(350, "lb"),
  13424. name: "Front",
  13425. image: {
  13426. source: "./media/characters/tempest/front.svg",
  13427. extra: 1175 / 1086,
  13428. bottom: 0.02
  13429. }
  13430. },
  13431. },
  13432. [
  13433. {
  13434. name: "Normal",
  13435. height: math.unit(7 + 8 / 12, "feet"),
  13436. default: true
  13437. },
  13438. ]
  13439. ))
  13440. characterMakers.push(() => makeCharacter(
  13441. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13442. {
  13443. side: {
  13444. height: math.unit(4 + 5 / 12, "feet"),
  13445. weight: math.unit(80, "lb"),
  13446. name: "Side",
  13447. image: {
  13448. source: "./media/characters/rodger/side.svg",
  13449. extra: 1235 / 1118
  13450. }
  13451. },
  13452. },
  13453. [
  13454. {
  13455. name: "Micro",
  13456. height: math.unit(1, "inch")
  13457. },
  13458. {
  13459. name: "Normal",
  13460. height: math.unit(4 + 5 / 12, "feet"),
  13461. default: true
  13462. },
  13463. {
  13464. name: "Macro",
  13465. height: math.unit(120, "feet")
  13466. },
  13467. ]
  13468. ))
  13469. characterMakers.push(() => makeCharacter(
  13470. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13471. {
  13472. front: {
  13473. height: math.unit(6, "feet"),
  13474. weight: math.unit(150, "lb"),
  13475. name: "Front",
  13476. image: {
  13477. source: "./media/characters/danyel/front.svg",
  13478. extra: 1185 / 1123,
  13479. bottom: 0.05
  13480. }
  13481. },
  13482. },
  13483. [
  13484. {
  13485. name: "Shrunken",
  13486. height: math.unit(0.5, "mm")
  13487. },
  13488. {
  13489. name: "Micro",
  13490. height: math.unit(1, "mm"),
  13491. default: true
  13492. },
  13493. {
  13494. name: "Upsized",
  13495. height: math.unit(5 + 5 / 12, "feet")
  13496. },
  13497. ]
  13498. ))
  13499. characterMakers.push(() => makeCharacter(
  13500. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13501. {
  13502. front: {
  13503. height: math.unit(5 + 6 / 12, "feet"),
  13504. weight: math.unit(200, "lb"),
  13505. name: "Front",
  13506. image: {
  13507. source: "./media/characters/vivian-bijoux/front.svg",
  13508. extra: 1,
  13509. bottom: 0.072
  13510. }
  13511. },
  13512. },
  13513. [
  13514. {
  13515. name: "Normal",
  13516. height: math.unit(5 + 6 / 12, "feet"),
  13517. default: true
  13518. },
  13519. {
  13520. name: "Bad Dream",
  13521. height: math.unit(500, "feet")
  13522. },
  13523. {
  13524. name: "Nightmare",
  13525. height: math.unit(500, "miles")
  13526. },
  13527. ]
  13528. ))
  13529. characterMakers.push(() => makeCharacter(
  13530. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13531. {
  13532. front: {
  13533. height: math.unit(6 + 1 / 12, "feet"),
  13534. weight: math.unit(260, "lb"),
  13535. name: "Front",
  13536. image: {
  13537. source: "./media/characters/zeta/front.svg",
  13538. extra: 1968 / 1889,
  13539. bottom: 0.06
  13540. }
  13541. },
  13542. back: {
  13543. height: math.unit(6 + 1 / 12, "feet"),
  13544. weight: math.unit(260, "lb"),
  13545. name: "Back",
  13546. image: {
  13547. source: "./media/characters/zeta/back.svg",
  13548. extra: 1944 / 1858,
  13549. bottom: 0.03
  13550. }
  13551. },
  13552. hand: {
  13553. height: math.unit(1.112, "feet"),
  13554. name: "Hand",
  13555. image: {
  13556. source: "./media/characters/zeta/hand.svg"
  13557. }
  13558. },
  13559. foot: {
  13560. height: math.unit(1.48, "feet"),
  13561. name: "Foot",
  13562. image: {
  13563. source: "./media/characters/zeta/foot.svg"
  13564. }
  13565. },
  13566. },
  13567. [
  13568. {
  13569. name: "Micro",
  13570. height: math.unit(6, "inches")
  13571. },
  13572. {
  13573. name: "Normal",
  13574. height: math.unit(6 + 1 / 12, "feet"),
  13575. default: true
  13576. },
  13577. {
  13578. name: "Macro",
  13579. height: math.unit(20, "feet")
  13580. },
  13581. ]
  13582. ))
  13583. characterMakers.push(() => makeCharacter(
  13584. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13585. {
  13586. front: {
  13587. height: math.unit(6, "feet"),
  13588. weight: math.unit(150, "lb"),
  13589. name: "Front",
  13590. image: {
  13591. source: "./media/characters/jamie-larsen/front.svg",
  13592. extra: 962 / 933,
  13593. bottom: 0.02
  13594. }
  13595. },
  13596. back: {
  13597. height: math.unit(6, "feet"),
  13598. weight: math.unit(150, "lb"),
  13599. name: "Back",
  13600. image: {
  13601. source: "./media/characters/jamie-larsen/back.svg",
  13602. extra: 997 / 946
  13603. }
  13604. },
  13605. },
  13606. [
  13607. {
  13608. name: "Macro",
  13609. height: math.unit(28 + 7 / 12, "feet"),
  13610. default: true
  13611. },
  13612. {
  13613. name: "Macro+",
  13614. height: math.unit(180, "feet")
  13615. },
  13616. {
  13617. name: "Megamacro",
  13618. height: math.unit(10, "miles")
  13619. },
  13620. {
  13621. name: "Gigamacro",
  13622. height: math.unit(200000, "miles")
  13623. },
  13624. ]
  13625. ))
  13626. characterMakers.push(() => makeCharacter(
  13627. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13628. {
  13629. front: {
  13630. height: math.unit(6, "feet"),
  13631. weight: math.unit(120, "lb"),
  13632. name: "Front",
  13633. image: {
  13634. source: "./media/characters/vance/front.svg",
  13635. extra: 1980 / 1890,
  13636. bottom: 0.09
  13637. }
  13638. },
  13639. back: {
  13640. height: math.unit(6, "feet"),
  13641. weight: math.unit(120, "lb"),
  13642. name: "Back",
  13643. image: {
  13644. source: "./media/characters/vance/back.svg",
  13645. extra: 2081 / 1994,
  13646. bottom: 0.014
  13647. }
  13648. },
  13649. hand: {
  13650. height: math.unit(0.88, "feet"),
  13651. name: "Hand",
  13652. image: {
  13653. source: "./media/characters/vance/hand.svg"
  13654. }
  13655. },
  13656. foot: {
  13657. height: math.unit(0.64, "feet"),
  13658. name: "Foot",
  13659. image: {
  13660. source: "./media/characters/vance/foot.svg"
  13661. }
  13662. },
  13663. },
  13664. [
  13665. {
  13666. name: "Small",
  13667. height: math.unit(90, "feet"),
  13668. default: true
  13669. },
  13670. {
  13671. name: "Macro",
  13672. height: math.unit(100, "meters")
  13673. },
  13674. {
  13675. name: "Megamacro",
  13676. height: math.unit(15, "miles")
  13677. },
  13678. ]
  13679. ))
  13680. characterMakers.push(() => makeCharacter(
  13681. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13682. {
  13683. front: {
  13684. height: math.unit(6, "feet"),
  13685. weight: math.unit(180, "lb"),
  13686. name: "Front",
  13687. image: {
  13688. source: "./media/characters/xochitl/front.svg",
  13689. extra: 2297 / 2261,
  13690. bottom: 0.065
  13691. }
  13692. },
  13693. back: {
  13694. height: math.unit(6, "feet"),
  13695. weight: math.unit(180, "lb"),
  13696. name: "Back",
  13697. image: {
  13698. source: "./media/characters/xochitl/back.svg",
  13699. extra: 2386 / 2354,
  13700. bottom: 0.01
  13701. }
  13702. },
  13703. foot: {
  13704. height: math.unit(6 / 5 * 1.15, "feet"),
  13705. weight: math.unit(150, "lb"),
  13706. name: "Foot",
  13707. image: {
  13708. source: "./media/characters/xochitl/foot.svg"
  13709. }
  13710. },
  13711. },
  13712. [
  13713. {
  13714. name: "Macro",
  13715. height: math.unit(80, "feet")
  13716. },
  13717. {
  13718. name: "Macro+",
  13719. height: math.unit(400, "feet"),
  13720. default: true
  13721. },
  13722. {
  13723. name: "Gigamacro",
  13724. height: math.unit(80000, "miles")
  13725. },
  13726. {
  13727. name: "Gigamacro+",
  13728. height: math.unit(400000, "miles")
  13729. },
  13730. {
  13731. name: "Teramacro",
  13732. height: math.unit(300, "AU")
  13733. },
  13734. ]
  13735. ))
  13736. characterMakers.push(() => makeCharacter(
  13737. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13738. {
  13739. front: {
  13740. height: math.unit(6, "feet"),
  13741. weight: math.unit(150, "lb"),
  13742. name: "Front",
  13743. image: {
  13744. source: "./media/characters/vincent/front.svg",
  13745. extra: 1130 / 1080,
  13746. bottom: 0.055
  13747. }
  13748. },
  13749. beak: {
  13750. height: math.unit(6 * 0.1, "feet"),
  13751. name: "Beak",
  13752. image: {
  13753. source: "./media/characters/vincent/beak.svg"
  13754. }
  13755. },
  13756. hand: {
  13757. height: math.unit(6 * 0.85, "feet"),
  13758. weight: math.unit(150, "lb"),
  13759. name: "Hand",
  13760. image: {
  13761. source: "./media/characters/vincent/hand.svg"
  13762. }
  13763. },
  13764. foot: {
  13765. height: math.unit(6 * 0.19, "feet"),
  13766. weight: math.unit(150, "lb"),
  13767. name: "Foot",
  13768. image: {
  13769. source: "./media/characters/vincent/foot.svg"
  13770. }
  13771. },
  13772. },
  13773. [
  13774. {
  13775. name: "Base",
  13776. height: math.unit(6 + 5 / 12, "feet"),
  13777. default: true
  13778. },
  13779. {
  13780. name: "Macro",
  13781. height: math.unit(300, "feet")
  13782. },
  13783. {
  13784. name: "Megamacro",
  13785. height: math.unit(2, "miles")
  13786. },
  13787. {
  13788. name: "Gigamacro",
  13789. height: math.unit(1000, "miles")
  13790. },
  13791. ]
  13792. ))
  13793. characterMakers.push(() => makeCharacter(
  13794. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13795. {
  13796. front: {
  13797. height: math.unit(2, "meters"),
  13798. weight: math.unit(500, "kg"),
  13799. name: "Front",
  13800. image: {
  13801. source: "./media/characters/coatl/front.svg",
  13802. extra: 3948 / 3500,
  13803. bottom: 0.082
  13804. }
  13805. },
  13806. },
  13807. [
  13808. {
  13809. name: "Normal",
  13810. height: math.unit(4, "meters")
  13811. },
  13812. {
  13813. name: "Macro",
  13814. height: math.unit(100, "meters"),
  13815. default: true
  13816. },
  13817. {
  13818. name: "Macro+",
  13819. height: math.unit(300, "meters")
  13820. },
  13821. {
  13822. name: "Megamacro",
  13823. height: math.unit(3, "gigameters")
  13824. },
  13825. {
  13826. name: "Megamacro+",
  13827. height: math.unit(300, "terameters")
  13828. },
  13829. {
  13830. name: "Megamacro++",
  13831. height: math.unit(3, "lightyears")
  13832. },
  13833. ]
  13834. ))
  13835. characterMakers.push(() => makeCharacter(
  13836. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13837. {
  13838. front: {
  13839. height: math.unit(6, "feet"),
  13840. weight: math.unit(50, "kg"),
  13841. name: "front",
  13842. image: {
  13843. source: "./media/characters/shiroryu/front.svg",
  13844. extra: 1990 / 1935
  13845. }
  13846. },
  13847. },
  13848. [
  13849. {
  13850. name: "Mortal Mingling",
  13851. height: math.unit(3, "meters")
  13852. },
  13853. {
  13854. name: "Kaiju-ish",
  13855. height: math.unit(250, "meters")
  13856. },
  13857. {
  13858. name: "Somewhat Godly",
  13859. height: math.unit(400, "km"),
  13860. default: true
  13861. },
  13862. {
  13863. name: "Planetary",
  13864. height: math.unit(300, "megameters")
  13865. },
  13866. {
  13867. name: "Galaxy-dwarfing",
  13868. height: math.unit(450, "kiloparsecs")
  13869. },
  13870. {
  13871. name: "Universe Eater",
  13872. height: math.unit(150, "gigaparsecs")
  13873. },
  13874. {
  13875. name: "Almost Immeasurable",
  13876. height: math.unit(1.3e266, "yottaparsecs")
  13877. },
  13878. ]
  13879. ))
  13880. characterMakers.push(() => makeCharacter(
  13881. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13882. {
  13883. front: {
  13884. height: math.unit(6, "feet"),
  13885. weight: math.unit(150, "lb"),
  13886. name: "Front",
  13887. image: {
  13888. source: "./media/characters/umeko/front.svg",
  13889. extra: 1,
  13890. bottom: 0.019
  13891. }
  13892. },
  13893. frontArmored: {
  13894. height: math.unit(6, "feet"),
  13895. weight: math.unit(150, "lb"),
  13896. name: "Front (Armored)",
  13897. image: {
  13898. source: "./media/characters/umeko/front-armored.svg",
  13899. extra: 1,
  13900. bottom: 0.021
  13901. }
  13902. },
  13903. },
  13904. [
  13905. {
  13906. name: "Macro",
  13907. height: math.unit(220, "feet"),
  13908. default: true
  13909. },
  13910. {
  13911. name: "Guardian Dragon",
  13912. height: math.unit(50, "miles")
  13913. },
  13914. {
  13915. name: "Cosmic",
  13916. height: math.unit(800000, "miles")
  13917. },
  13918. ]
  13919. ))
  13920. characterMakers.push(() => makeCharacter(
  13921. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13922. {
  13923. front: {
  13924. height: math.unit(6, "feet"),
  13925. weight: math.unit(150, "lb"),
  13926. name: "Front",
  13927. image: {
  13928. source: "./media/characters/cassidy/front.svg",
  13929. extra: 1,
  13930. bottom: 0.043
  13931. }
  13932. },
  13933. },
  13934. [
  13935. {
  13936. name: "Canon Height",
  13937. height: math.unit(120, "feet"),
  13938. default: true
  13939. },
  13940. {
  13941. name: "Macro+",
  13942. height: math.unit(400, "feet")
  13943. },
  13944. {
  13945. name: "Macro++",
  13946. height: math.unit(4000, "feet")
  13947. },
  13948. {
  13949. name: "Megamacro",
  13950. height: math.unit(3, "miles")
  13951. },
  13952. ]
  13953. ))
  13954. characterMakers.push(() => makeCharacter(
  13955. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13956. {
  13957. front: {
  13958. height: math.unit(6, "feet"),
  13959. weight: math.unit(150, "lb"),
  13960. name: "Front",
  13961. image: {
  13962. source: "./media/characters/isaac/front.svg",
  13963. extra: 896 / 815,
  13964. bottom: 0.11
  13965. }
  13966. },
  13967. },
  13968. [
  13969. {
  13970. name: "Human Size",
  13971. height: math.unit(8, "feet"),
  13972. default: true
  13973. },
  13974. {
  13975. name: "Macro",
  13976. height: math.unit(400, "feet")
  13977. },
  13978. {
  13979. name: "Megamacro",
  13980. height: math.unit(50, "miles")
  13981. },
  13982. {
  13983. name: "Canon Height",
  13984. height: math.unit(200, "AU")
  13985. },
  13986. ]
  13987. ))
  13988. characterMakers.push(() => makeCharacter(
  13989. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13990. {
  13991. front: {
  13992. height: math.unit(6, "feet"),
  13993. weight: math.unit(72, "kg"),
  13994. name: "Front",
  13995. image: {
  13996. source: "./media/characters/sleekit/front.svg",
  13997. extra: 4693 / 4487,
  13998. bottom: 0.012
  13999. }
  14000. },
  14001. },
  14002. [
  14003. {
  14004. name: "Minimum Height",
  14005. height: math.unit(10, "meters")
  14006. },
  14007. {
  14008. name: "Smaller",
  14009. height: math.unit(25, "meters")
  14010. },
  14011. {
  14012. name: "Larger",
  14013. height: math.unit(38, "meters"),
  14014. default: true
  14015. },
  14016. {
  14017. name: "Maximum height",
  14018. height: math.unit(100, "meters")
  14019. },
  14020. ]
  14021. ))
  14022. characterMakers.push(() => makeCharacter(
  14023. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14024. {
  14025. front: {
  14026. height: math.unit(6, "feet"),
  14027. weight: math.unit(150, "lb"),
  14028. name: "Front",
  14029. image: {
  14030. source: "./media/characters/nillia/front.svg",
  14031. extra: 2195 / 2037,
  14032. bottom: 0.005
  14033. }
  14034. },
  14035. back: {
  14036. height: math.unit(6, "feet"),
  14037. weight: math.unit(150, "lb"),
  14038. name: "Back",
  14039. image: {
  14040. source: "./media/characters/nillia/back.svg",
  14041. extra: 2195 / 2037,
  14042. bottom: 0.005
  14043. }
  14044. },
  14045. },
  14046. [
  14047. {
  14048. name: "Canon Height",
  14049. height: math.unit(489, "feet"),
  14050. default: true
  14051. }
  14052. ]
  14053. ))
  14054. characterMakers.push(() => makeCharacter(
  14055. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14056. {
  14057. front: {
  14058. height: math.unit(6, "feet"),
  14059. weight: math.unit(150, "lb"),
  14060. name: "Front",
  14061. image: {
  14062. source: "./media/characters/mesmyriza/front.svg",
  14063. extra: 2067 / 1784,
  14064. bottom: 0.035
  14065. }
  14066. },
  14067. foot: {
  14068. height: math.unit(6 / (250 / 35), "feet"),
  14069. name: "Foot",
  14070. image: {
  14071. source: "./media/characters/mesmyriza/foot.svg"
  14072. }
  14073. },
  14074. },
  14075. [
  14076. {
  14077. name: "Macro",
  14078. height: math.unit(457, "meters"),
  14079. default: true
  14080. },
  14081. {
  14082. name: "Megamacro",
  14083. height: math.unit(8, "megameters")
  14084. },
  14085. ]
  14086. ))
  14087. characterMakers.push(() => makeCharacter(
  14088. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14089. {
  14090. front: {
  14091. height: math.unit(6, "feet"),
  14092. weight: math.unit(250, "lb"),
  14093. name: "Front",
  14094. image: {
  14095. source: "./media/characters/saudade/front.svg",
  14096. extra: 1172 / 1139,
  14097. bottom: 0.035
  14098. }
  14099. },
  14100. },
  14101. [
  14102. {
  14103. name: "Micro",
  14104. height: math.unit(3, "inches")
  14105. },
  14106. {
  14107. name: "Normal",
  14108. height: math.unit(6, "feet"),
  14109. default: true
  14110. },
  14111. {
  14112. name: "Macro",
  14113. height: math.unit(50, "feet")
  14114. },
  14115. {
  14116. name: "Megamacro",
  14117. height: math.unit(2800, "feet")
  14118. },
  14119. ]
  14120. ))
  14121. characterMakers.push(() => makeCharacter(
  14122. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14123. {
  14124. front: {
  14125. height: math.unit(5 + 4 / 12, "feet"),
  14126. weight: math.unit(100, "lb"),
  14127. name: "Front",
  14128. image: {
  14129. source: "./media/characters/keireer/front.svg",
  14130. extra: 716 / 666,
  14131. bottom: 0.05
  14132. }
  14133. },
  14134. },
  14135. [
  14136. {
  14137. name: "Normal",
  14138. height: math.unit(5 + 4 / 12, "feet"),
  14139. default: true
  14140. },
  14141. ]
  14142. ))
  14143. characterMakers.push(() => makeCharacter(
  14144. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14145. {
  14146. front: {
  14147. height: math.unit(6, "feet"),
  14148. weight: math.unit(90, "kg"),
  14149. name: "Front",
  14150. image: {
  14151. source: "./media/characters/mirja/front.svg",
  14152. extra: 1789 / 1683,
  14153. bottom: 0.05
  14154. }
  14155. },
  14156. frontDressed: {
  14157. height: math.unit(6, "feet"),
  14158. weight: math.unit(90, "lb"),
  14159. name: "Front (Dressed)",
  14160. image: {
  14161. source: "./media/characters/mirja/front-dressed.svg",
  14162. extra: 1789 / 1683,
  14163. bottom: 0.05
  14164. }
  14165. },
  14166. back: {
  14167. height: math.unit(6, "feet"),
  14168. weight: math.unit(90, "lb"),
  14169. name: "Back",
  14170. image: {
  14171. source: "./media/characters/mirja/back.svg",
  14172. extra: 953 / 917,
  14173. bottom: 0.017
  14174. }
  14175. },
  14176. },
  14177. [
  14178. {
  14179. name: "\"Incognito\"",
  14180. height: math.unit(3, "meters")
  14181. },
  14182. {
  14183. name: "Strolling Size",
  14184. height: math.unit(15, "km")
  14185. },
  14186. {
  14187. name: "Larger Strolling Size",
  14188. height: math.unit(400, "km")
  14189. },
  14190. {
  14191. name: "Preferred Size",
  14192. height: math.unit(5000, "km")
  14193. },
  14194. {
  14195. name: "True Size",
  14196. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14197. default: true
  14198. },
  14199. ]
  14200. ))
  14201. characterMakers.push(() => makeCharacter(
  14202. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14203. {
  14204. front: {
  14205. height: math.unit(15, "feet"),
  14206. weight: math.unit(880, "kg"),
  14207. name: "Front",
  14208. image: {
  14209. source: "./media/characters/nightraver/front.svg",
  14210. extra: 2444 / 2160,
  14211. bottom: 0.027
  14212. }
  14213. },
  14214. back: {
  14215. height: math.unit(15, "feet"),
  14216. weight: math.unit(880, "kg"),
  14217. name: "Back",
  14218. image: {
  14219. source: "./media/characters/nightraver/back.svg",
  14220. extra: 2309 / 2180,
  14221. bottom: 0.005
  14222. }
  14223. },
  14224. sole: {
  14225. height: math.unit(2.878, "feet"),
  14226. name: "Sole",
  14227. image: {
  14228. source: "./media/characters/nightraver/sole.svg"
  14229. }
  14230. },
  14231. foot: {
  14232. height: math.unit(2.285, "feet"),
  14233. name: "Foot",
  14234. image: {
  14235. source: "./media/characters/nightraver/foot.svg"
  14236. }
  14237. },
  14238. maw: {
  14239. height: math.unit(2.67, "feet"),
  14240. name: "Maw",
  14241. image: {
  14242. source: "./media/characters/nightraver/maw.svg"
  14243. }
  14244. },
  14245. },
  14246. [
  14247. {
  14248. name: "Micro",
  14249. height: math.unit(1, "cm")
  14250. },
  14251. {
  14252. name: "Normal",
  14253. height: math.unit(15, "feet"),
  14254. default: true
  14255. },
  14256. {
  14257. name: "Macro",
  14258. height: math.unit(300, "feet")
  14259. },
  14260. {
  14261. name: "Megamacro",
  14262. height: math.unit(300, "miles")
  14263. },
  14264. {
  14265. name: "Gigamacro",
  14266. height: math.unit(10000, "miles")
  14267. },
  14268. ]
  14269. ))
  14270. characterMakers.push(() => makeCharacter(
  14271. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14272. {
  14273. side: {
  14274. height: math.unit(2, "inches"),
  14275. weight: math.unit(5, "grams"),
  14276. name: "Side",
  14277. image: {
  14278. source: "./media/characters/arc/side.svg"
  14279. }
  14280. },
  14281. },
  14282. [
  14283. {
  14284. name: "Micro",
  14285. height: math.unit(2, "inches"),
  14286. default: true
  14287. },
  14288. ]
  14289. ))
  14290. characterMakers.push(() => makeCharacter(
  14291. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14292. {
  14293. front: {
  14294. height: math.unit(1.1938, "meters"),
  14295. weight: math.unit(54, "kg"),
  14296. name: "Front",
  14297. image: {
  14298. source: "./media/characters/nebula-shahar/front.svg",
  14299. extra: 1642 / 1436,
  14300. bottom: 0.06
  14301. }
  14302. },
  14303. },
  14304. [
  14305. {
  14306. name: "Megamicro",
  14307. height: math.unit(0.3, "mm")
  14308. },
  14309. {
  14310. name: "Micro",
  14311. height: math.unit(3, "cm")
  14312. },
  14313. {
  14314. name: "Normal",
  14315. height: math.unit(138, "cm"),
  14316. default: true
  14317. },
  14318. {
  14319. name: "Macro",
  14320. height: math.unit(30, "m")
  14321. },
  14322. ]
  14323. ))
  14324. characterMakers.push(() => makeCharacter(
  14325. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14326. {
  14327. front: {
  14328. height: math.unit(5.24, "feet"),
  14329. weight: math.unit(150, "lb"),
  14330. name: "Front",
  14331. image: {
  14332. source: "./media/characters/shayla/front.svg",
  14333. extra: 1512 / 1414,
  14334. bottom: 0.01
  14335. }
  14336. },
  14337. back: {
  14338. height: math.unit(5.24, "feet"),
  14339. weight: math.unit(150, "lb"),
  14340. name: "Back",
  14341. image: {
  14342. source: "./media/characters/shayla/back.svg",
  14343. extra: 1512 / 1414
  14344. }
  14345. },
  14346. hand: {
  14347. height: math.unit(0.7781496062992126, "feet"),
  14348. name: "Hand",
  14349. image: {
  14350. source: "./media/characters/shayla/hand.svg"
  14351. }
  14352. },
  14353. foot: {
  14354. height: math.unit(1.4206036745406823, "feet"),
  14355. name: "Foot",
  14356. image: {
  14357. source: "./media/characters/shayla/foot.svg"
  14358. }
  14359. },
  14360. },
  14361. [
  14362. {
  14363. name: "Micro",
  14364. height: math.unit(0.32, "feet")
  14365. },
  14366. {
  14367. name: "Normal",
  14368. height: math.unit(5.24, "feet"),
  14369. default: true
  14370. },
  14371. {
  14372. name: "Macro",
  14373. height: math.unit(492.12, "feet")
  14374. },
  14375. {
  14376. name: "Megamacro",
  14377. height: math.unit(186.41, "miles")
  14378. },
  14379. ]
  14380. ))
  14381. characterMakers.push(() => makeCharacter(
  14382. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14383. {
  14384. front: {
  14385. height: math.unit(2.2, "m"),
  14386. weight: math.unit(120, "kg"),
  14387. name: "Front",
  14388. image: {
  14389. source: "./media/characters/pia-jr/front.svg",
  14390. extra: 1000 / 970,
  14391. bottom: 0.035
  14392. }
  14393. },
  14394. hand: {
  14395. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14396. name: "Hand",
  14397. image: {
  14398. source: "./media/characters/pia-jr/hand.svg"
  14399. }
  14400. },
  14401. paw: {
  14402. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14403. name: "Paw",
  14404. image: {
  14405. source: "./media/characters/pia-jr/paw.svg"
  14406. }
  14407. },
  14408. },
  14409. [
  14410. {
  14411. name: "Micro",
  14412. height: math.unit(1.2, "cm")
  14413. },
  14414. {
  14415. name: "Normal",
  14416. height: math.unit(2.2, "m"),
  14417. default: true
  14418. },
  14419. {
  14420. name: "Macro",
  14421. height: math.unit(180, "m")
  14422. },
  14423. {
  14424. name: "Megamacro",
  14425. height: math.unit(420, "km")
  14426. },
  14427. ]
  14428. ))
  14429. characterMakers.push(() => makeCharacter(
  14430. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14431. {
  14432. front: {
  14433. height: math.unit(2, "m"),
  14434. weight: math.unit(115, "kg"),
  14435. name: "Front",
  14436. image: {
  14437. source: "./media/characters/pia-sr/front.svg",
  14438. extra: 760 / 730,
  14439. bottom: 0.015
  14440. }
  14441. },
  14442. back: {
  14443. height: math.unit(2, "m"),
  14444. weight: math.unit(115, "kg"),
  14445. name: "Back",
  14446. image: {
  14447. source: "./media/characters/pia-sr/back.svg",
  14448. extra: 760 / 730,
  14449. bottom: 0.01
  14450. }
  14451. },
  14452. hand: {
  14453. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14454. name: "Hand",
  14455. image: {
  14456. source: "./media/characters/pia-sr/hand.svg"
  14457. }
  14458. },
  14459. foot: {
  14460. height: math.unit(1.83, "feet"),
  14461. name: "Foot",
  14462. image: {
  14463. source: "./media/characters/pia-sr/foot.svg"
  14464. }
  14465. },
  14466. },
  14467. [
  14468. {
  14469. name: "Micro",
  14470. height: math.unit(88, "mm")
  14471. },
  14472. {
  14473. name: "Normal",
  14474. height: math.unit(2, "m"),
  14475. default: true
  14476. },
  14477. {
  14478. name: "Macro",
  14479. height: math.unit(200, "m")
  14480. },
  14481. {
  14482. name: "Megamacro",
  14483. height: math.unit(420, "km")
  14484. },
  14485. ]
  14486. ))
  14487. characterMakers.push(() => makeCharacter(
  14488. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14489. {
  14490. front: {
  14491. height: math.unit(8 + 2 / 12, "feet"),
  14492. weight: math.unit(300, "lb"),
  14493. name: "Front",
  14494. image: {
  14495. source: "./media/characters/kibibyte/front.svg",
  14496. extra: 2221 / 2098,
  14497. bottom: 0.04
  14498. }
  14499. },
  14500. },
  14501. [
  14502. {
  14503. name: "Normal",
  14504. height: math.unit(8 + 2 / 12, "feet"),
  14505. default: true
  14506. },
  14507. {
  14508. name: "Socialable Macro",
  14509. height: math.unit(50, "feet")
  14510. },
  14511. {
  14512. name: "Macro",
  14513. height: math.unit(300, "feet")
  14514. },
  14515. {
  14516. name: "Megamacro",
  14517. height: math.unit(500, "miles")
  14518. },
  14519. ]
  14520. ))
  14521. characterMakers.push(() => makeCharacter(
  14522. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14523. {
  14524. front: {
  14525. height: math.unit(6, "feet"),
  14526. weight: math.unit(150, "lb"),
  14527. name: "Front",
  14528. image: {
  14529. source: "./media/characters/felix/front.svg",
  14530. extra: 762 / 722,
  14531. bottom: 0.02
  14532. }
  14533. },
  14534. frontClothed: {
  14535. height: math.unit(6, "feet"),
  14536. weight: math.unit(150, "lb"),
  14537. name: "Front (Clothed)",
  14538. image: {
  14539. source: "./media/characters/felix/front-clothed.svg",
  14540. extra: 762 / 722,
  14541. bottom: 0.02
  14542. }
  14543. },
  14544. },
  14545. [
  14546. {
  14547. name: "Normal",
  14548. height: math.unit(6 + 8 / 12, "feet"),
  14549. default: true
  14550. },
  14551. {
  14552. name: "Macro",
  14553. height: math.unit(2600, "feet")
  14554. },
  14555. {
  14556. name: "Megamacro",
  14557. height: math.unit(450, "miles")
  14558. },
  14559. ]
  14560. ))
  14561. characterMakers.push(() => makeCharacter(
  14562. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14563. {
  14564. front: {
  14565. height: math.unit(6 + 1 / 12, "feet"),
  14566. weight: math.unit(250, "lb"),
  14567. name: "Front",
  14568. image: {
  14569. source: "./media/characters/tobo/front.svg",
  14570. extra: 608 / 586,
  14571. bottom: 0.023
  14572. }
  14573. },
  14574. back: {
  14575. height: math.unit(6 + 1 / 12, "feet"),
  14576. weight: math.unit(250, "lb"),
  14577. name: "Back",
  14578. image: {
  14579. source: "./media/characters/tobo/back.svg",
  14580. extra: 608 / 586
  14581. }
  14582. },
  14583. },
  14584. [
  14585. {
  14586. name: "Nano",
  14587. height: math.unit(2, "nm")
  14588. },
  14589. {
  14590. name: "Megamicro",
  14591. height: math.unit(0.1, "mm")
  14592. },
  14593. {
  14594. name: "Micro",
  14595. height: math.unit(1, "inch"),
  14596. default: true
  14597. },
  14598. {
  14599. name: "Human-sized",
  14600. height: math.unit(6 + 1 / 12, "feet")
  14601. },
  14602. {
  14603. name: "Macro",
  14604. height: math.unit(250, "feet")
  14605. },
  14606. {
  14607. name: "Megamacro",
  14608. height: math.unit(75, "miles")
  14609. },
  14610. {
  14611. name: "Texas-sized",
  14612. height: math.unit(750, "miles")
  14613. },
  14614. {
  14615. name: "Teramacro",
  14616. height: math.unit(50000, "miles")
  14617. },
  14618. ]
  14619. ))
  14620. characterMakers.push(() => makeCharacter(
  14621. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14622. {
  14623. front: {
  14624. height: math.unit(6, "feet"),
  14625. weight: math.unit(269, "lb"),
  14626. name: "Front",
  14627. image: {
  14628. source: "./media/characters/danny-kapowsky/front.svg",
  14629. extra: 766 / 736,
  14630. bottom: 0.044
  14631. }
  14632. },
  14633. back: {
  14634. height: math.unit(6, "feet"),
  14635. weight: math.unit(269, "lb"),
  14636. name: "Back",
  14637. image: {
  14638. source: "./media/characters/danny-kapowsky/back.svg",
  14639. extra: 797 / 760,
  14640. bottom: 0.025
  14641. }
  14642. },
  14643. },
  14644. [
  14645. {
  14646. name: "Macro",
  14647. height: math.unit(150, "feet"),
  14648. default: true
  14649. },
  14650. {
  14651. name: "Macro+",
  14652. height: math.unit(200, "feet")
  14653. },
  14654. {
  14655. name: "Macro++",
  14656. height: math.unit(300, "feet")
  14657. },
  14658. {
  14659. name: "Macro+++",
  14660. height: math.unit(400, "feet")
  14661. },
  14662. ]
  14663. ))
  14664. characterMakers.push(() => makeCharacter(
  14665. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14666. {
  14667. side: {
  14668. height: math.unit(6, "feet"),
  14669. weight: math.unit(170, "lb"),
  14670. name: "Side",
  14671. image: {
  14672. source: "./media/characters/finn/side.svg",
  14673. extra: 1953 / 1807,
  14674. bottom: 0.057
  14675. }
  14676. },
  14677. },
  14678. [
  14679. {
  14680. name: "Megamacro",
  14681. height: math.unit(14445, "feet"),
  14682. default: true
  14683. },
  14684. ]
  14685. ))
  14686. characterMakers.push(() => makeCharacter(
  14687. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14688. {
  14689. front: {
  14690. height: math.unit(5 + 6 / 12, "feet"),
  14691. weight: math.unit(125, "lb"),
  14692. name: "Front",
  14693. image: {
  14694. source: "./media/characters/roy/front.svg",
  14695. extra: 1,
  14696. bottom: 0.11
  14697. }
  14698. },
  14699. },
  14700. [
  14701. {
  14702. name: "Micro",
  14703. height: math.unit(3, "inches"),
  14704. default: true
  14705. },
  14706. {
  14707. name: "Normal",
  14708. height: math.unit(5 + 6 / 12, "feet")
  14709. },
  14710. {
  14711. name: "Lesser Macro",
  14712. height: math.unit(60, "feet")
  14713. },
  14714. {
  14715. name: "Greater Macro",
  14716. height: math.unit(120, "feet")
  14717. },
  14718. ]
  14719. ))
  14720. characterMakers.push(() => makeCharacter(
  14721. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14722. {
  14723. front: {
  14724. height: math.unit(6, "feet"),
  14725. weight: math.unit(100, "lb"),
  14726. name: "Front",
  14727. image: {
  14728. source: "./media/characters/aevsivs/front.svg",
  14729. extra: 1,
  14730. bottom: 0.03
  14731. }
  14732. },
  14733. back: {
  14734. height: math.unit(6, "feet"),
  14735. weight: math.unit(100, "lb"),
  14736. name: "Back",
  14737. image: {
  14738. source: "./media/characters/aevsivs/back.svg"
  14739. }
  14740. },
  14741. },
  14742. [
  14743. {
  14744. name: "Micro",
  14745. height: math.unit(2, "inches"),
  14746. default: true
  14747. },
  14748. {
  14749. name: "Normal",
  14750. height: math.unit(5, "feet")
  14751. },
  14752. ]
  14753. ))
  14754. characterMakers.push(() => makeCharacter(
  14755. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14756. {
  14757. front: {
  14758. height: math.unit(5 + 7 / 12, "feet"),
  14759. weight: math.unit(159, "lb"),
  14760. name: "Front",
  14761. image: {
  14762. source: "./media/characters/hildegard/front.svg",
  14763. extra: 289 / 269,
  14764. bottom: 7.63 / 297.8
  14765. }
  14766. },
  14767. back: {
  14768. height: math.unit(5 + 7 / 12, "feet"),
  14769. weight: math.unit(159, "lb"),
  14770. name: "Back",
  14771. image: {
  14772. source: "./media/characters/hildegard/back.svg",
  14773. extra: 280 / 260,
  14774. bottom: 2.3 / 282
  14775. }
  14776. },
  14777. },
  14778. [
  14779. {
  14780. name: "Normal",
  14781. height: math.unit(5 + 7 / 12, "feet"),
  14782. default: true
  14783. },
  14784. ]
  14785. ))
  14786. characterMakers.push(() => makeCharacter(
  14787. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14788. {
  14789. bernard: {
  14790. height: math.unit(2 + 7 / 12, "feet"),
  14791. weight: math.unit(66, "lb"),
  14792. name: "Bernard",
  14793. rename: true,
  14794. image: {
  14795. source: "./media/characters/bernard-wilder/bernard.svg",
  14796. extra: 192 / 128,
  14797. bottom: 0.05
  14798. }
  14799. },
  14800. wilder: {
  14801. height: math.unit(5 + 8 / 12, "feet"),
  14802. weight: math.unit(143, "lb"),
  14803. name: "Wilder",
  14804. rename: true,
  14805. image: {
  14806. source: "./media/characters/bernard-wilder/wilder.svg",
  14807. extra: 361 / 312,
  14808. bottom: 0.02
  14809. }
  14810. },
  14811. },
  14812. [
  14813. {
  14814. name: "Normal",
  14815. height: math.unit(2 + 7 / 12, "feet"),
  14816. default: true
  14817. },
  14818. ]
  14819. ))
  14820. characterMakers.push(() => makeCharacter(
  14821. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14822. {
  14823. anthro: {
  14824. height: math.unit(6 + 1 / 12, "feet"),
  14825. weight: math.unit(155, "lb"),
  14826. name: "Anthro",
  14827. image: {
  14828. source: "./media/characters/hearth/anthro.svg",
  14829. extra: 260 / 250,
  14830. bottom: 0.02
  14831. }
  14832. },
  14833. feral: {
  14834. height: math.unit(3.78, "feet"),
  14835. weight: math.unit(35, "kg"),
  14836. name: "Feral",
  14837. image: {
  14838. source: "./media/characters/hearth/feral.svg",
  14839. extra: 153 / 135,
  14840. bottom: 0.03
  14841. }
  14842. },
  14843. },
  14844. [
  14845. {
  14846. name: "Normal",
  14847. height: math.unit(6 + 1 / 12, "feet"),
  14848. default: true
  14849. },
  14850. ]
  14851. ))
  14852. characterMakers.push(() => makeCharacter(
  14853. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14854. {
  14855. front: {
  14856. height: math.unit(6, "feet"),
  14857. weight: math.unit(182, "lb"),
  14858. name: "Front",
  14859. image: {
  14860. source: "./media/characters/ingrid/front.svg",
  14861. extra: 294 / 268,
  14862. bottom: 0.027
  14863. }
  14864. },
  14865. },
  14866. [
  14867. {
  14868. name: "Normal",
  14869. height: math.unit(6, "feet"),
  14870. default: true
  14871. },
  14872. ]
  14873. ))
  14874. characterMakers.push(() => makeCharacter(
  14875. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14876. {
  14877. eevee: {
  14878. height: math.unit(2 + 10 / 12, "feet"),
  14879. weight: math.unit(86, "lb"),
  14880. name: "Malgam",
  14881. image: {
  14882. source: "./media/characters/malgam/eevee.svg",
  14883. extra: 218 / 180,
  14884. bottom: 0.2
  14885. }
  14886. },
  14887. sylveon: {
  14888. height: math.unit(4, "feet"),
  14889. weight: math.unit(101, "lb"),
  14890. name: "Future Malgam",
  14891. rename: true,
  14892. image: {
  14893. source: "./media/characters/malgam/sylveon.svg",
  14894. extra: 371 / 325,
  14895. bottom: 0.015
  14896. }
  14897. },
  14898. gigantamax: {
  14899. height: math.unit(50, "feet"),
  14900. name: "Gigantamax Malgam",
  14901. rename: true,
  14902. image: {
  14903. source: "./media/characters/malgam/gigantamax.svg"
  14904. }
  14905. },
  14906. },
  14907. [
  14908. {
  14909. name: "Normal",
  14910. height: math.unit(2 + 10 / 12, "feet"),
  14911. default: true
  14912. },
  14913. ]
  14914. ))
  14915. characterMakers.push(() => makeCharacter(
  14916. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14917. {
  14918. front: {
  14919. height: math.unit(5 + 11 / 12, "feet"),
  14920. weight: math.unit(188, "lb"),
  14921. name: "Front",
  14922. image: {
  14923. source: "./media/characters/fleur/front.svg",
  14924. extra: 309 / 283,
  14925. bottom: 0.007
  14926. }
  14927. },
  14928. },
  14929. [
  14930. {
  14931. name: "Normal",
  14932. height: math.unit(5 + 11 / 12, "feet"),
  14933. default: true
  14934. },
  14935. ]
  14936. ))
  14937. characterMakers.push(() => makeCharacter(
  14938. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14939. {
  14940. front: {
  14941. height: math.unit(5 + 4 / 12, "feet"),
  14942. weight: math.unit(122, "lb"),
  14943. name: "Front",
  14944. image: {
  14945. source: "./media/characters/jude/front.svg",
  14946. extra: 288 / 273,
  14947. bottom: 0.03
  14948. }
  14949. },
  14950. },
  14951. [
  14952. {
  14953. name: "Normal",
  14954. height: math.unit(5 + 4 / 12, "feet"),
  14955. default: true
  14956. },
  14957. ]
  14958. ))
  14959. characterMakers.push(() => makeCharacter(
  14960. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14961. {
  14962. front: {
  14963. height: math.unit(5 + 11 / 12, "feet"),
  14964. weight: math.unit(190, "lb"),
  14965. name: "Front",
  14966. image: {
  14967. source: "./media/characters/seara/front.svg",
  14968. extra: 1,
  14969. bottom: 0.05
  14970. }
  14971. },
  14972. },
  14973. [
  14974. {
  14975. name: "Normal",
  14976. height: math.unit(5 + 11 / 12, "feet"),
  14977. default: true
  14978. },
  14979. ]
  14980. ))
  14981. characterMakers.push(() => makeCharacter(
  14982. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14983. {
  14984. front: {
  14985. height: math.unit(16 + 5 / 12, "feet"),
  14986. weight: math.unit(524, "lb"),
  14987. name: "Front",
  14988. image: {
  14989. source: "./media/characters/caspian/front.svg",
  14990. extra: 1,
  14991. bottom: 0.04
  14992. }
  14993. },
  14994. },
  14995. [
  14996. {
  14997. name: "Normal",
  14998. height: math.unit(16 + 5 / 12, "feet"),
  14999. default: true
  15000. },
  15001. ]
  15002. ))
  15003. characterMakers.push(() => makeCharacter(
  15004. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15005. {
  15006. front: {
  15007. height: math.unit(5 + 7 / 12, "feet"),
  15008. weight: math.unit(170, "lb"),
  15009. name: "Front",
  15010. image: {
  15011. source: "./media/characters/mika/front.svg",
  15012. extra: 1,
  15013. bottom: 0.016
  15014. }
  15015. },
  15016. },
  15017. [
  15018. {
  15019. name: "Normal",
  15020. height: math.unit(5 + 7 / 12, "feet"),
  15021. default: true
  15022. },
  15023. ]
  15024. ))
  15025. characterMakers.push(() => makeCharacter(
  15026. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15027. {
  15028. front: {
  15029. height: math.unit(6 + 2 / 12, "feet"),
  15030. weight: math.unit(268, "lb"),
  15031. name: "Front",
  15032. image: {
  15033. source: "./media/characters/sol/front.svg",
  15034. extra: 247 / 231,
  15035. bottom: 0.05
  15036. }
  15037. },
  15038. },
  15039. [
  15040. {
  15041. name: "Normal",
  15042. height: math.unit(6 + 2 / 12, "feet"),
  15043. default: true
  15044. },
  15045. ]
  15046. ))
  15047. characterMakers.push(() => makeCharacter(
  15048. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15049. {
  15050. buizel: {
  15051. height: math.unit(2 + 5 / 12, "feet"),
  15052. weight: math.unit(87, "lb"),
  15053. name: "Buizel",
  15054. image: {
  15055. source: "./media/characters/umiko/buizel.svg",
  15056. extra: 172 / 157,
  15057. bottom: 0.01
  15058. }
  15059. },
  15060. floatzel: {
  15061. height: math.unit(5 + 9 / 12, "feet"),
  15062. weight: math.unit(250, "lb"),
  15063. name: "Floatzel",
  15064. image: {
  15065. source: "./media/characters/umiko/floatzel.svg",
  15066. extra: 262 / 248
  15067. }
  15068. },
  15069. },
  15070. [
  15071. {
  15072. name: "Normal",
  15073. height: math.unit(2 + 5 / 12, "feet"),
  15074. default: true
  15075. },
  15076. ]
  15077. ))
  15078. characterMakers.push(() => makeCharacter(
  15079. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15080. {
  15081. front: {
  15082. height: math.unit(6 + 2 / 12, "feet"),
  15083. weight: math.unit(146, "lb"),
  15084. name: "Front",
  15085. image: {
  15086. source: "./media/characters/iliac/front.svg",
  15087. extra: 389 / 365,
  15088. bottom: 0.035
  15089. }
  15090. },
  15091. },
  15092. [
  15093. {
  15094. name: "Normal",
  15095. height: math.unit(6 + 2 / 12, "feet"),
  15096. default: true
  15097. },
  15098. ]
  15099. ))
  15100. characterMakers.push(() => makeCharacter(
  15101. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15102. {
  15103. front: {
  15104. height: math.unit(6, "feet"),
  15105. weight: math.unit(170, "lb"),
  15106. name: "Front",
  15107. image: {
  15108. source: "./media/characters/topaz/front.svg",
  15109. extra: 317 / 303,
  15110. bottom: 0.055
  15111. }
  15112. },
  15113. },
  15114. [
  15115. {
  15116. name: "Normal",
  15117. height: math.unit(6, "feet"),
  15118. default: true
  15119. },
  15120. ]
  15121. ))
  15122. characterMakers.push(() => makeCharacter(
  15123. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15124. {
  15125. front: {
  15126. height: math.unit(5 + 11 / 12, "feet"),
  15127. weight: math.unit(144, "lb"),
  15128. name: "Front",
  15129. image: {
  15130. source: "./media/characters/gabriel/front.svg",
  15131. extra: 285 / 262,
  15132. bottom: 0.004
  15133. }
  15134. },
  15135. },
  15136. [
  15137. {
  15138. name: "Normal",
  15139. height: math.unit(5 + 11 / 12, "feet"),
  15140. default: true
  15141. },
  15142. ]
  15143. ))
  15144. characterMakers.push(() => makeCharacter(
  15145. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15146. {
  15147. side: {
  15148. height: math.unit(6 + 5 / 12, "feet"),
  15149. weight: math.unit(300, "lb"),
  15150. name: "Side",
  15151. image: {
  15152. source: "./media/characters/tempest-suicune/side.svg",
  15153. extra: 195 / 154,
  15154. bottom: 0.04
  15155. }
  15156. },
  15157. },
  15158. [
  15159. {
  15160. name: "Normal",
  15161. height: math.unit(6 + 5 / 12, "feet"),
  15162. default: true
  15163. },
  15164. ]
  15165. ))
  15166. characterMakers.push(() => makeCharacter(
  15167. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15168. {
  15169. front: {
  15170. height: math.unit(7 + 2 / 12, "feet"),
  15171. weight: math.unit(322, "lb"),
  15172. name: "Front",
  15173. image: {
  15174. source: "./media/characters/vulcan/front.svg",
  15175. extra: 154 / 147,
  15176. bottom: 0.04
  15177. }
  15178. },
  15179. },
  15180. [
  15181. {
  15182. name: "Normal",
  15183. height: math.unit(7 + 2 / 12, "feet"),
  15184. default: true
  15185. },
  15186. ]
  15187. ))
  15188. characterMakers.push(() => makeCharacter(
  15189. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15190. {
  15191. front: {
  15192. height: math.unit(5 + 10 / 12, "feet"),
  15193. weight: math.unit(264, "lb"),
  15194. name: "Front",
  15195. image: {
  15196. source: "./media/characters/gault/front.svg",
  15197. extra: 161 / 140,
  15198. bottom: 0.028
  15199. }
  15200. },
  15201. },
  15202. [
  15203. {
  15204. name: "Normal",
  15205. height: math.unit(5 + 10 / 12, "feet"),
  15206. default: true
  15207. },
  15208. ]
  15209. ))
  15210. characterMakers.push(() => makeCharacter(
  15211. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15212. {
  15213. front: {
  15214. height: math.unit(6, "feet"),
  15215. weight: math.unit(150, "lb"),
  15216. name: "Front",
  15217. image: {
  15218. source: "./media/characters/shard/front.svg",
  15219. extra: 273 / 238,
  15220. bottom: 0.02
  15221. }
  15222. },
  15223. },
  15224. [
  15225. {
  15226. name: "Normal",
  15227. height: math.unit(3 + 6 / 12, "feet"),
  15228. default: true
  15229. },
  15230. ]
  15231. ))
  15232. characterMakers.push(() => makeCharacter(
  15233. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15234. {
  15235. front: {
  15236. height: math.unit(5 + 11 / 12, "feet"),
  15237. weight: math.unit(146, "lb"),
  15238. name: "Front",
  15239. image: {
  15240. source: "./media/characters/ashe/front.svg",
  15241. extra: 400 / 373,
  15242. bottom: 0.01
  15243. }
  15244. },
  15245. },
  15246. [
  15247. {
  15248. name: "Normal",
  15249. height: math.unit(5 + 11 / 12, "feet"),
  15250. default: true
  15251. },
  15252. ]
  15253. ))
  15254. characterMakers.push(() => makeCharacter(
  15255. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15256. {
  15257. front: {
  15258. height: math.unit(5 + 5 / 12, "feet"),
  15259. weight: math.unit(135, "lb"),
  15260. name: "Front",
  15261. image: {
  15262. source: "./media/characters/beatrix/front.svg",
  15263. extra: 392 / 379,
  15264. bottom: 0.01
  15265. }
  15266. },
  15267. },
  15268. [
  15269. {
  15270. name: "Normal",
  15271. height: math.unit(6, "feet"),
  15272. default: true
  15273. },
  15274. ]
  15275. ))
  15276. characterMakers.push(() => makeCharacter(
  15277. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15278. {
  15279. front: {
  15280. height: math.unit(6, "feet"),
  15281. weight: math.unit(150, "lb"),
  15282. name: "Front",
  15283. image: {
  15284. source: "./media/characters/ignatius/front.svg",
  15285. extra: 245 / 222,
  15286. bottom: 0.01
  15287. }
  15288. },
  15289. },
  15290. [
  15291. {
  15292. name: "Normal",
  15293. height: math.unit(5 + 5 / 12, "feet"),
  15294. default: true
  15295. },
  15296. ]
  15297. ))
  15298. characterMakers.push(() => makeCharacter(
  15299. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15300. {
  15301. front: {
  15302. height: math.unit(6 + 2 / 12, "feet"),
  15303. weight: math.unit(138, "lb"),
  15304. name: "Front",
  15305. image: {
  15306. source: "./media/characters/mei-li/front.svg",
  15307. extra: 237 / 229,
  15308. bottom: 0.03
  15309. }
  15310. },
  15311. },
  15312. [
  15313. {
  15314. name: "Normal",
  15315. height: math.unit(6 + 2 / 12, "feet"),
  15316. default: true
  15317. },
  15318. ]
  15319. ))
  15320. characterMakers.push(() => makeCharacter(
  15321. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15322. {
  15323. front: {
  15324. height: math.unit(2 + 4 / 12, "feet"),
  15325. weight: math.unit(62, "lb"),
  15326. name: "Front",
  15327. image: {
  15328. source: "./media/characters/puru/front.svg",
  15329. extra: 206 / 149,
  15330. bottom: 0.06
  15331. }
  15332. },
  15333. },
  15334. [
  15335. {
  15336. name: "Normal",
  15337. height: math.unit(2 + 4 / 12, "feet"),
  15338. default: true
  15339. },
  15340. ]
  15341. ))
  15342. characterMakers.push(() => makeCharacter(
  15343. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15344. {
  15345. anthro: {
  15346. height: math.unit(5 + 8/12, "feet"),
  15347. weight: math.unit(200, "lb"),
  15348. energyNeed: math.unit(2000, "kcal"),
  15349. name: "Anthro",
  15350. image: {
  15351. source: "./media/characters/kee/anthro.svg",
  15352. extra: 3251/3184,
  15353. bottom: 250/3501
  15354. }
  15355. },
  15356. taur: {
  15357. height: math.unit(11, "feet"),
  15358. weight: math.unit(500, "lb"),
  15359. energyNeed: math.unit(5000, "kcal"),
  15360. name: "Taur",
  15361. image: {
  15362. source: "./media/characters/kee/taur.svg",
  15363. extra: 1362/1320,
  15364. bottom: 83/1445
  15365. }
  15366. },
  15367. },
  15368. [
  15369. {
  15370. name: "Normal",
  15371. height: math.unit(5 + 8/12, "feet"),
  15372. default: true
  15373. },
  15374. {
  15375. name: "Macro",
  15376. height: math.unit(35, "feet")
  15377. },
  15378. ]
  15379. ))
  15380. characterMakers.push(() => makeCharacter(
  15381. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15382. {
  15383. anthro: {
  15384. height: math.unit(7, "feet"),
  15385. weight: math.unit(190, "lb"),
  15386. name: "Anthro",
  15387. image: {
  15388. source: "./media/characters/cobalt-dracha/anthro.svg",
  15389. extra: 231 / 225,
  15390. bottom: 0.04
  15391. }
  15392. },
  15393. feral: {
  15394. height: math.unit(9 + 7 / 12, "feet"),
  15395. weight: math.unit(294, "lb"),
  15396. name: "Feral",
  15397. image: {
  15398. source: "./media/characters/cobalt-dracha/feral.svg",
  15399. extra: 692 / 633,
  15400. bottom: 0.05
  15401. }
  15402. },
  15403. },
  15404. [
  15405. {
  15406. name: "Normal",
  15407. height: math.unit(7, "feet"),
  15408. default: true
  15409. },
  15410. ]
  15411. ))
  15412. characterMakers.push(() => makeCharacter(
  15413. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15414. {
  15415. fallen: {
  15416. height: math.unit(11 + 8 / 12, "feet"),
  15417. weight: math.unit(485, "lb"),
  15418. name: "Java (Fallen)",
  15419. rename: true,
  15420. image: {
  15421. source: "./media/characters/java/fallen.svg",
  15422. extra: 226 / 208,
  15423. bottom: 0.005
  15424. }
  15425. },
  15426. godkin: {
  15427. height: math.unit(10 + 6 / 12, "feet"),
  15428. weight: math.unit(328, "lb"),
  15429. name: "Java (Godkin)",
  15430. rename: true,
  15431. image: {
  15432. source: "./media/characters/java/godkin.svg",
  15433. extra: 270 / 262,
  15434. bottom: 0.02
  15435. }
  15436. },
  15437. },
  15438. [
  15439. {
  15440. name: "Normal",
  15441. height: math.unit(11 + 8 / 12, "feet"),
  15442. default: true
  15443. },
  15444. ]
  15445. ))
  15446. characterMakers.push(() => makeCharacter(
  15447. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15448. {
  15449. front: {
  15450. height: math.unit(7 + 8 / 12, "feet"),
  15451. weight: math.unit(320, "lb"),
  15452. name: "Front",
  15453. image: {
  15454. source: "./media/characters/skoll/front.svg",
  15455. extra: 232 / 220,
  15456. bottom: 0.02
  15457. }
  15458. },
  15459. },
  15460. [
  15461. {
  15462. name: "Normal",
  15463. height: math.unit(7 + 8 / 12, "feet"),
  15464. default: true
  15465. },
  15466. ]
  15467. ))
  15468. characterMakers.push(() => makeCharacter(
  15469. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15470. {
  15471. front: {
  15472. height: math.unit(5 + 9 / 12, "feet"),
  15473. weight: math.unit(170, "lb"),
  15474. name: "Front",
  15475. image: {
  15476. source: "./media/characters/purna/front.svg",
  15477. extra: 239 / 229,
  15478. bottom: 0.01
  15479. }
  15480. },
  15481. },
  15482. [
  15483. {
  15484. name: "Normal",
  15485. height: math.unit(5 + 9 / 12, "feet"),
  15486. default: true
  15487. },
  15488. ]
  15489. ))
  15490. characterMakers.push(() => makeCharacter(
  15491. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15492. {
  15493. front: {
  15494. height: math.unit(5 + 9 / 12, "feet"),
  15495. weight: math.unit(142, "lb"),
  15496. name: "Front",
  15497. image: {
  15498. source: "./media/characters/kuva/front.svg",
  15499. extra: 281 / 271,
  15500. bottom: 0.006
  15501. }
  15502. },
  15503. },
  15504. [
  15505. {
  15506. name: "Normal",
  15507. height: math.unit(5 + 9 / 12, "feet"),
  15508. default: true
  15509. },
  15510. ]
  15511. ))
  15512. characterMakers.push(() => makeCharacter(
  15513. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15514. {
  15515. anthro: {
  15516. height: math.unit(9 + 2 / 12, "feet"),
  15517. weight: math.unit(270, "lb"),
  15518. name: "Anthro",
  15519. image: {
  15520. source: "./media/characters/embra/anthro.svg",
  15521. extra: 200 / 187,
  15522. bottom: 0.02
  15523. }
  15524. },
  15525. feral: {
  15526. height: math.unit(18 + 8 / 12, "feet"),
  15527. weight: math.unit(576, "lb"),
  15528. name: "Feral",
  15529. image: {
  15530. source: "./media/characters/embra/feral.svg",
  15531. extra: 152 / 137,
  15532. bottom: 0.037
  15533. }
  15534. },
  15535. },
  15536. [
  15537. {
  15538. name: "Normal",
  15539. height: math.unit(9 + 2 / 12, "feet"),
  15540. default: true
  15541. },
  15542. ]
  15543. ))
  15544. characterMakers.push(() => makeCharacter(
  15545. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15546. {
  15547. anthro: {
  15548. height: math.unit(10 + 9 / 12, "feet"),
  15549. weight: math.unit(224, "lb"),
  15550. name: "Anthro",
  15551. image: {
  15552. source: "./media/characters/grottos/anthro.svg",
  15553. extra: 350 / 332,
  15554. bottom: 0.045
  15555. }
  15556. },
  15557. feral: {
  15558. height: math.unit(20 + 7 / 12, "feet"),
  15559. weight: math.unit(629, "lb"),
  15560. name: "Feral",
  15561. image: {
  15562. source: "./media/characters/grottos/feral.svg",
  15563. extra: 207 / 190,
  15564. bottom: 0.05
  15565. }
  15566. },
  15567. },
  15568. [
  15569. {
  15570. name: "Normal",
  15571. height: math.unit(10 + 9 / 12, "feet"),
  15572. default: true
  15573. },
  15574. ]
  15575. ))
  15576. characterMakers.push(() => makeCharacter(
  15577. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15578. {
  15579. anthro: {
  15580. height: math.unit(9 + 6 / 12, "feet"),
  15581. weight: math.unit(298, "lb"),
  15582. name: "Anthro",
  15583. image: {
  15584. source: "./media/characters/frifna/anthro.svg",
  15585. extra: 282 / 269,
  15586. bottom: 0.015
  15587. }
  15588. },
  15589. feral: {
  15590. height: math.unit(16 + 2 / 12, "feet"),
  15591. weight: math.unit(624, "lb"),
  15592. name: "Feral",
  15593. image: {
  15594. source: "./media/characters/frifna/feral.svg"
  15595. }
  15596. },
  15597. },
  15598. [
  15599. {
  15600. name: "Normal",
  15601. height: math.unit(9 + 6 / 12, "feet"),
  15602. default: true
  15603. },
  15604. ]
  15605. ))
  15606. characterMakers.push(() => makeCharacter(
  15607. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15608. {
  15609. front: {
  15610. height: math.unit(6 + 2 / 12, "feet"),
  15611. weight: math.unit(168, "lb"),
  15612. name: "Front",
  15613. image: {
  15614. source: "./media/characters/elise/front.svg",
  15615. extra: 276 / 271
  15616. }
  15617. },
  15618. },
  15619. [
  15620. {
  15621. name: "Normal",
  15622. height: math.unit(6 + 2 / 12, "feet"),
  15623. default: true
  15624. },
  15625. ]
  15626. ))
  15627. characterMakers.push(() => makeCharacter(
  15628. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15629. {
  15630. front: {
  15631. height: math.unit(5 + 10 / 12, "feet"),
  15632. weight: math.unit(210, "lb"),
  15633. name: "Front",
  15634. image: {
  15635. source: "./media/characters/glade/front.svg",
  15636. extra: 258 / 247,
  15637. bottom: 0.008
  15638. }
  15639. },
  15640. },
  15641. [
  15642. {
  15643. name: "Normal",
  15644. height: math.unit(5 + 10 / 12, "feet"),
  15645. default: true
  15646. },
  15647. ]
  15648. ))
  15649. characterMakers.push(() => makeCharacter(
  15650. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15651. {
  15652. front: {
  15653. height: math.unit(5 + 10 / 12, "feet"),
  15654. weight: math.unit(129, "lb"),
  15655. name: "Front",
  15656. image: {
  15657. source: "./media/characters/rina/front.svg",
  15658. extra: 266 / 255,
  15659. bottom: 0.005
  15660. }
  15661. },
  15662. },
  15663. [
  15664. {
  15665. name: "Normal",
  15666. height: math.unit(5 + 10 / 12, "feet"),
  15667. default: true
  15668. },
  15669. ]
  15670. ))
  15671. characterMakers.push(() => makeCharacter(
  15672. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15673. {
  15674. front: {
  15675. height: math.unit(6 + 1 / 12, "feet"),
  15676. weight: math.unit(192, "lb"),
  15677. name: "Front",
  15678. image: {
  15679. source: "./media/characters/veronica/front.svg",
  15680. extra: 319 / 309,
  15681. bottom: 0.005
  15682. }
  15683. },
  15684. },
  15685. [
  15686. {
  15687. name: "Normal",
  15688. height: math.unit(6 + 1 / 12, "feet"),
  15689. default: true
  15690. },
  15691. ]
  15692. ))
  15693. characterMakers.push(() => makeCharacter(
  15694. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15695. {
  15696. front: {
  15697. height: math.unit(9 + 3 / 12, "feet"),
  15698. weight: math.unit(1100, "lb"),
  15699. name: "Front",
  15700. image: {
  15701. source: "./media/characters/braxton/front.svg",
  15702. extra: 1057 / 984,
  15703. bottom: 0.05
  15704. }
  15705. },
  15706. },
  15707. [
  15708. {
  15709. name: "Normal",
  15710. height: math.unit(9 + 3 / 12, "feet")
  15711. },
  15712. {
  15713. name: "Giant",
  15714. height: math.unit(300, "feet"),
  15715. default: true
  15716. },
  15717. {
  15718. name: "Macro",
  15719. height: math.unit(700, "feet")
  15720. },
  15721. {
  15722. name: "Megamacro",
  15723. height: math.unit(6000, "feet")
  15724. },
  15725. ]
  15726. ))
  15727. characterMakers.push(() => makeCharacter(
  15728. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15729. {
  15730. front: {
  15731. height: math.unit(6 + 7 / 12, "feet"),
  15732. weight: math.unit(150, "lb"),
  15733. name: "Front",
  15734. image: {
  15735. source: "./media/characters/blue-feyonics/front.svg",
  15736. extra: 1403 / 1306,
  15737. bottom: 0.047
  15738. }
  15739. },
  15740. },
  15741. [
  15742. {
  15743. name: "Normal",
  15744. height: math.unit(6 + 7 / 12, "feet"),
  15745. default: true
  15746. },
  15747. ]
  15748. ))
  15749. characterMakers.push(() => makeCharacter(
  15750. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15751. {
  15752. front: {
  15753. height: math.unit(1.8, "meters"),
  15754. weight: math.unit(60, "kg"),
  15755. name: "Front",
  15756. image: {
  15757. source: "./media/characters/maxwell/front.svg",
  15758. extra: 2060 / 1873
  15759. }
  15760. },
  15761. },
  15762. [
  15763. {
  15764. name: "Micro",
  15765. height: math.unit(1, "mm")
  15766. },
  15767. {
  15768. name: "Normal",
  15769. height: math.unit(1.8, "meter"),
  15770. default: true
  15771. },
  15772. {
  15773. name: "Macro",
  15774. height: math.unit(30, "meters")
  15775. },
  15776. {
  15777. name: "Megamacro",
  15778. height: math.unit(10, "km")
  15779. },
  15780. ]
  15781. ))
  15782. characterMakers.push(() => makeCharacter(
  15783. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15784. {
  15785. front: {
  15786. height: math.unit(6, "feet"),
  15787. weight: math.unit(150, "lb"),
  15788. name: "Front",
  15789. image: {
  15790. source: "./media/characters/jack/front.svg",
  15791. extra: 1754 / 1640,
  15792. bottom: 0.01
  15793. }
  15794. },
  15795. },
  15796. [
  15797. {
  15798. name: "Normal",
  15799. height: math.unit(80000, "feet"),
  15800. default: true
  15801. },
  15802. {
  15803. name: "Max size",
  15804. height: math.unit(10, "lightyears")
  15805. },
  15806. ]
  15807. ))
  15808. characterMakers.push(() => makeCharacter(
  15809. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15810. {
  15811. urban: {
  15812. height: math.unit(5, "feet"),
  15813. weight: math.unit(240, "lb"),
  15814. name: "Urban",
  15815. image: {
  15816. source: "./media/characters/cafat/urban.svg",
  15817. extra: 1223/1126,
  15818. bottom: 205/1428
  15819. }
  15820. },
  15821. summer: {
  15822. height: math.unit(5, "feet"),
  15823. weight: math.unit(240, "lb"),
  15824. name: "Summer",
  15825. image: {
  15826. source: "./media/characters/cafat/summer.svg",
  15827. extra: 1223/1126,
  15828. bottom: 205/1428
  15829. }
  15830. },
  15831. winter: {
  15832. height: math.unit(5, "feet"),
  15833. weight: math.unit(240, "lb"),
  15834. name: "Winter",
  15835. image: {
  15836. source: "./media/characters/cafat/winter.svg",
  15837. extra: 1223/1126,
  15838. bottom: 205/1428
  15839. }
  15840. },
  15841. lingerie: {
  15842. height: math.unit(5, "feet"),
  15843. weight: math.unit(240, "lb"),
  15844. name: "Lingerie",
  15845. image: {
  15846. source: "./media/characters/cafat/lingerie.svg",
  15847. extra: 1223/1126,
  15848. bottom: 205/1428
  15849. }
  15850. },
  15851. upright: {
  15852. height: math.unit(6.3, "feet"),
  15853. weight: math.unit(240, "lb"),
  15854. name: "Upright",
  15855. image: {
  15856. source: "./media/characters/cafat/upright.svg",
  15857. bottom: 0.01
  15858. }
  15859. },
  15860. uprightFull: {
  15861. height: math.unit(6.3, "feet"),
  15862. weight: math.unit(240, "lb"),
  15863. name: "Upright (Full)",
  15864. image: {
  15865. source: "./media/characters/cafat/upright-full.svg",
  15866. bottom: 0.01
  15867. }
  15868. },
  15869. },
  15870. [
  15871. {
  15872. name: "Small",
  15873. height: math.unit(5, "feet"),
  15874. default: true
  15875. },
  15876. {
  15877. name: "Large",
  15878. height: math.unit(13, "feet")
  15879. },
  15880. ]
  15881. ))
  15882. characterMakers.push(() => makeCharacter(
  15883. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15884. {
  15885. front: {
  15886. height: math.unit(6, "feet"),
  15887. weight: math.unit(150, "lb"),
  15888. name: "Front",
  15889. image: {
  15890. source: "./media/characters/verin-raharra/front.svg",
  15891. extra: 5019 / 4835,
  15892. bottom: 0.023
  15893. }
  15894. },
  15895. },
  15896. [
  15897. {
  15898. name: "Normal",
  15899. height: math.unit(7 + 5 / 12, "feet"),
  15900. default: true
  15901. },
  15902. {
  15903. name: "Upsized",
  15904. height: math.unit(20, "feet")
  15905. },
  15906. ]
  15907. ))
  15908. characterMakers.push(() => makeCharacter(
  15909. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15910. {
  15911. front: {
  15912. height: math.unit(7, "feet"),
  15913. weight: math.unit(230, "lb"),
  15914. name: "Front",
  15915. image: {
  15916. source: "./media/characters/nakata/front.svg",
  15917. extra: 1.005,
  15918. bottom: 0.01
  15919. }
  15920. },
  15921. },
  15922. [
  15923. {
  15924. name: "Normal",
  15925. height: math.unit(7, "feet"),
  15926. default: true
  15927. },
  15928. {
  15929. name: "Big",
  15930. height: math.unit(14, "feet")
  15931. },
  15932. {
  15933. name: "Macro",
  15934. height: math.unit(400, "feet")
  15935. },
  15936. ]
  15937. ))
  15938. characterMakers.push(() => makeCharacter(
  15939. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15940. {
  15941. front: {
  15942. height: math.unit(4.91, "feet"),
  15943. weight: math.unit(100, "lb"),
  15944. name: "Front",
  15945. image: {
  15946. source: "./media/characters/lily/front.svg",
  15947. extra: 1585 / 1415,
  15948. bottom: 0.02
  15949. }
  15950. },
  15951. },
  15952. [
  15953. {
  15954. name: "Normal",
  15955. height: math.unit(4.91, "feet"),
  15956. default: true
  15957. },
  15958. ]
  15959. ))
  15960. characterMakers.push(() => makeCharacter(
  15961. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15962. {
  15963. laying: {
  15964. height: math.unit(4 + 4 / 12, "feet"),
  15965. weight: math.unit(600, "lb"),
  15966. name: "Laying",
  15967. image: {
  15968. source: "./media/characters/sheila/laying.svg",
  15969. extra: 1333 / 1265,
  15970. bottom: 0.16
  15971. }
  15972. },
  15973. },
  15974. [
  15975. {
  15976. name: "Normal",
  15977. height: math.unit(4 + 4 / 12, "feet"),
  15978. default: true
  15979. },
  15980. ]
  15981. ))
  15982. characterMakers.push(() => makeCharacter(
  15983. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15984. {
  15985. front: {
  15986. height: math.unit(6, "feet"),
  15987. weight: math.unit(190, "lb"),
  15988. name: "Front",
  15989. image: {
  15990. source: "./media/characters/sax/front.svg",
  15991. extra: 1187 / 973,
  15992. bottom: 0.042
  15993. }
  15994. },
  15995. },
  15996. [
  15997. {
  15998. name: "Micro",
  15999. height: math.unit(4, "inches"),
  16000. default: true
  16001. },
  16002. ]
  16003. ))
  16004. characterMakers.push(() => makeCharacter(
  16005. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16006. {
  16007. front: {
  16008. height: math.unit(6, "feet"),
  16009. weight: math.unit(150, "lb"),
  16010. name: "Front",
  16011. image: {
  16012. source: "./media/characters/pandora/front.svg",
  16013. extra: 2720 / 2556,
  16014. bottom: 0.015
  16015. }
  16016. },
  16017. back: {
  16018. height: math.unit(6, "feet"),
  16019. weight: math.unit(150, "lb"),
  16020. name: "Back",
  16021. image: {
  16022. source: "./media/characters/pandora/back.svg",
  16023. extra: 2720 / 2556,
  16024. bottom: 0.01
  16025. }
  16026. },
  16027. beans: {
  16028. height: math.unit(6 / 8, "feet"),
  16029. name: "Beans",
  16030. image: {
  16031. source: "./media/characters/pandora/beans.svg"
  16032. }
  16033. },
  16034. collar: {
  16035. height: math.unit(0.31, "feet"),
  16036. name: "Collar",
  16037. image: {
  16038. source: "./media/characters/pandora/collar.svg"
  16039. }
  16040. },
  16041. skirt: {
  16042. height: math.unit(6, "feet"),
  16043. weight: math.unit(150, "lb"),
  16044. name: "Skirt",
  16045. image: {
  16046. source: "./media/characters/pandora/skirt.svg",
  16047. extra: 1622 / 1525,
  16048. bottom: 0.015
  16049. }
  16050. },
  16051. hoodie: {
  16052. height: math.unit(6, "feet"),
  16053. weight: math.unit(150, "lb"),
  16054. name: "Hoodie",
  16055. image: {
  16056. source: "./media/characters/pandora/hoodie.svg",
  16057. extra: 1622 / 1525,
  16058. bottom: 0.015
  16059. }
  16060. },
  16061. casual: {
  16062. height: math.unit(6, "feet"),
  16063. weight: math.unit(150, "lb"),
  16064. name: "Casual",
  16065. image: {
  16066. source: "./media/characters/pandora/casual.svg",
  16067. extra: 1622 / 1525,
  16068. bottom: 0.015
  16069. }
  16070. },
  16071. },
  16072. [
  16073. {
  16074. name: "Normal",
  16075. height: math.unit(6, "feet")
  16076. },
  16077. {
  16078. name: "Big Steppy",
  16079. height: math.unit(1, "km"),
  16080. default: true
  16081. },
  16082. {
  16083. name: "Galactic Steppy",
  16084. height: math.unit(2, "gigameters")
  16085. },
  16086. ]
  16087. ))
  16088. characterMakers.push(() => makeCharacter(
  16089. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16090. {
  16091. side: {
  16092. height: math.unit(10, "feet"),
  16093. weight: math.unit(800, "kg"),
  16094. name: "Side",
  16095. image: {
  16096. source: "./media/characters/venio-darcony/side.svg",
  16097. extra: 1373 / 1003,
  16098. bottom: 0.037
  16099. }
  16100. },
  16101. front: {
  16102. height: math.unit(19, "feet"),
  16103. weight: math.unit(800, "kg"),
  16104. name: "Front",
  16105. image: {
  16106. source: "./media/characters/venio-darcony/front.svg"
  16107. }
  16108. },
  16109. back: {
  16110. height: math.unit(19, "feet"),
  16111. weight: math.unit(800, "kg"),
  16112. name: "Back",
  16113. image: {
  16114. source: "./media/characters/venio-darcony/back.svg"
  16115. }
  16116. },
  16117. sideNsfw: {
  16118. height: math.unit(10, "feet"),
  16119. weight: math.unit(800, "kg"),
  16120. name: "Side (NSFW)",
  16121. image: {
  16122. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16123. extra: 1373 / 1003,
  16124. bottom: 0.037
  16125. }
  16126. },
  16127. frontNsfw: {
  16128. height: math.unit(19, "feet"),
  16129. weight: math.unit(800, "kg"),
  16130. name: "Front (NSFW)",
  16131. image: {
  16132. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16133. }
  16134. },
  16135. backNsfw: {
  16136. height: math.unit(19, "feet"),
  16137. weight: math.unit(800, "kg"),
  16138. name: "Back (NSFW)",
  16139. image: {
  16140. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16141. }
  16142. },
  16143. sideArmored: {
  16144. height: math.unit(10, "feet"),
  16145. weight: math.unit(800, "kg"),
  16146. name: "Side (Armored)",
  16147. image: {
  16148. source: "./media/characters/venio-darcony/side-armored.svg",
  16149. extra: 1373 / 1003,
  16150. bottom: 0.037
  16151. }
  16152. },
  16153. frontArmored: {
  16154. height: math.unit(19, "feet"),
  16155. weight: math.unit(900, "kg"),
  16156. name: "Front (Armored)",
  16157. image: {
  16158. source: "./media/characters/venio-darcony/front-armored.svg"
  16159. }
  16160. },
  16161. backArmored: {
  16162. height: math.unit(19, "feet"),
  16163. weight: math.unit(900, "kg"),
  16164. name: "Back (Armored)",
  16165. image: {
  16166. source: "./media/characters/venio-darcony/back-armored.svg"
  16167. }
  16168. },
  16169. sword: {
  16170. height: math.unit(10, "feet"),
  16171. weight: math.unit(50, "lb"),
  16172. name: "Sword",
  16173. image: {
  16174. source: "./media/characters/venio-darcony/sword.svg"
  16175. }
  16176. },
  16177. },
  16178. [
  16179. {
  16180. name: "Normal",
  16181. height: math.unit(10, "feet")
  16182. },
  16183. {
  16184. name: "Macro",
  16185. height: math.unit(130, "feet"),
  16186. default: true
  16187. },
  16188. {
  16189. name: "Macro+",
  16190. height: math.unit(240, "feet")
  16191. },
  16192. ]
  16193. ))
  16194. characterMakers.push(() => makeCharacter(
  16195. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16196. {
  16197. front: {
  16198. height: math.unit(6, "feet"),
  16199. weight: math.unit(150, "lb"),
  16200. name: "Front",
  16201. image: {
  16202. source: "./media/characters/veski/front.svg",
  16203. extra: 1299 / 1225,
  16204. bottom: 0.04
  16205. }
  16206. },
  16207. back: {
  16208. height: math.unit(6, "feet"),
  16209. weight: math.unit(150, "lb"),
  16210. name: "Back",
  16211. image: {
  16212. source: "./media/characters/veski/back.svg",
  16213. extra: 1299 / 1225,
  16214. bottom: 0.008
  16215. }
  16216. },
  16217. maw: {
  16218. height: math.unit(1.5 * 1.21, "feet"),
  16219. name: "Maw",
  16220. image: {
  16221. source: "./media/characters/veski/maw.svg"
  16222. }
  16223. },
  16224. },
  16225. [
  16226. {
  16227. name: "Macro",
  16228. height: math.unit(2, "km"),
  16229. default: true
  16230. },
  16231. ]
  16232. ))
  16233. characterMakers.push(() => makeCharacter(
  16234. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16235. {
  16236. front: {
  16237. height: math.unit(5 + 7 / 12, "feet"),
  16238. name: "Front",
  16239. image: {
  16240. source: "./media/characters/isabelle/front.svg",
  16241. extra: 2130 / 1976,
  16242. bottom: 0.05
  16243. }
  16244. },
  16245. },
  16246. [
  16247. {
  16248. name: "Supermicro",
  16249. height: math.unit(10, "micrometers")
  16250. },
  16251. {
  16252. name: "Micro",
  16253. height: math.unit(1, "inch")
  16254. },
  16255. {
  16256. name: "Tiny",
  16257. height: math.unit(5, "inches")
  16258. },
  16259. {
  16260. name: "Standard",
  16261. height: math.unit(5 + 7 / 12, "inches")
  16262. },
  16263. {
  16264. name: "Macro",
  16265. height: math.unit(80, "meters"),
  16266. default: true
  16267. },
  16268. {
  16269. name: "Megamacro",
  16270. height: math.unit(250, "meters")
  16271. },
  16272. {
  16273. name: "Gigamacro",
  16274. height: math.unit(5, "km")
  16275. },
  16276. {
  16277. name: "Cosmic",
  16278. height: math.unit(2.5e6, "miles")
  16279. },
  16280. ]
  16281. ))
  16282. characterMakers.push(() => makeCharacter(
  16283. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16284. {
  16285. front: {
  16286. height: math.unit(6, "feet"),
  16287. weight: math.unit(150, "lb"),
  16288. name: "Front",
  16289. image: {
  16290. source: "./media/characters/hanzo/front.svg",
  16291. extra: 374 / 344,
  16292. bottom: 0.02
  16293. }
  16294. },
  16295. },
  16296. [
  16297. {
  16298. name: "Normal",
  16299. height: math.unit(8, "feet"),
  16300. default: true
  16301. },
  16302. ]
  16303. ))
  16304. characterMakers.push(() => makeCharacter(
  16305. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16306. {
  16307. front: {
  16308. height: math.unit(7, "feet"),
  16309. weight: math.unit(130, "lb"),
  16310. name: "Front",
  16311. image: {
  16312. source: "./media/characters/anna/front.svg",
  16313. extra: 169 / 145,
  16314. bottom: 0.06
  16315. }
  16316. },
  16317. full: {
  16318. height: math.unit(4.96, "feet"),
  16319. weight: math.unit(220, "lb"),
  16320. name: "Full",
  16321. image: {
  16322. source: "./media/characters/anna/full.svg",
  16323. extra: 138 / 114,
  16324. bottom: 0.15
  16325. }
  16326. },
  16327. tongue: {
  16328. height: math.unit(2.53, "feet"),
  16329. name: "Tongue",
  16330. image: {
  16331. source: "./media/characters/anna/tongue.svg"
  16332. }
  16333. },
  16334. },
  16335. [
  16336. {
  16337. name: "Normal",
  16338. height: math.unit(7, "feet"),
  16339. default: true
  16340. },
  16341. ]
  16342. ))
  16343. characterMakers.push(() => makeCharacter(
  16344. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16345. {
  16346. front: {
  16347. height: math.unit(7, "feet"),
  16348. weight: math.unit(150, "lb"),
  16349. name: "Front",
  16350. image: {
  16351. source: "./media/characters/ian-corvid/front.svg",
  16352. extra: 150 / 142,
  16353. bottom: 0.02
  16354. }
  16355. },
  16356. back: {
  16357. height: math.unit(7, "feet"),
  16358. weight: math.unit(150, "lb"),
  16359. name: "Back",
  16360. image: {
  16361. source: "./media/characters/ian-corvid/back.svg",
  16362. extra: 150 / 143,
  16363. bottom: 0.01
  16364. }
  16365. },
  16366. stomping: {
  16367. height: math.unit(7, "feet"),
  16368. weight: math.unit(150, "lb"),
  16369. name: "Stomping",
  16370. image: {
  16371. source: "./media/characters/ian-corvid/stomping.svg",
  16372. extra: 76 / 72
  16373. }
  16374. },
  16375. sitting: {
  16376. height: math.unit(7 / 1.8, "feet"),
  16377. weight: math.unit(150, "lb"),
  16378. name: "Sitting",
  16379. image: {
  16380. source: "./media/characters/ian-corvid/sitting.svg",
  16381. extra: 1400 / 1269,
  16382. bottom: 0.15
  16383. }
  16384. },
  16385. },
  16386. [
  16387. {
  16388. name: "Tiny Microw",
  16389. height: math.unit(1, "inch")
  16390. },
  16391. {
  16392. name: "Microw",
  16393. height: math.unit(6, "inches")
  16394. },
  16395. {
  16396. name: "Crow",
  16397. height: math.unit(7 + 1 / 12, "feet"),
  16398. default: true
  16399. },
  16400. {
  16401. name: "Macrow",
  16402. height: math.unit(176, "feet")
  16403. },
  16404. ]
  16405. ))
  16406. characterMakers.push(() => makeCharacter(
  16407. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16408. {
  16409. front: {
  16410. height: math.unit(5 + 7 / 12, "feet"),
  16411. weight: math.unit(147, "lb"),
  16412. name: "Front",
  16413. image: {
  16414. source: "./media/characters/natalie-kellon/front.svg",
  16415. extra: 1214 / 1141,
  16416. bottom: 0.02
  16417. }
  16418. },
  16419. },
  16420. [
  16421. {
  16422. name: "Micro",
  16423. height: math.unit(1 / 16, "inch")
  16424. },
  16425. {
  16426. name: "Tiny",
  16427. height: math.unit(4, "inches")
  16428. },
  16429. {
  16430. name: "Normal",
  16431. height: math.unit(5 + 7 / 12, "feet"),
  16432. default: true
  16433. },
  16434. {
  16435. name: "Amazon",
  16436. height: math.unit(12, "feet")
  16437. },
  16438. {
  16439. name: "Giantess",
  16440. height: math.unit(160, "meters")
  16441. },
  16442. {
  16443. name: "Titaness",
  16444. height: math.unit(800, "meters")
  16445. },
  16446. ]
  16447. ))
  16448. characterMakers.push(() => makeCharacter(
  16449. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16450. {
  16451. front: {
  16452. height: math.unit(6, "feet"),
  16453. weight: math.unit(150, "lb"),
  16454. name: "Front",
  16455. image: {
  16456. source: "./media/characters/alluria/front.svg",
  16457. extra: 806 / 738,
  16458. bottom: 0.01
  16459. }
  16460. },
  16461. side: {
  16462. height: math.unit(6, "feet"),
  16463. weight: math.unit(150, "lb"),
  16464. name: "Side",
  16465. image: {
  16466. source: "./media/characters/alluria/side.svg",
  16467. extra: 800 / 750,
  16468. }
  16469. },
  16470. back: {
  16471. height: math.unit(6, "feet"),
  16472. weight: math.unit(150, "lb"),
  16473. name: "Back",
  16474. image: {
  16475. source: "./media/characters/alluria/back.svg",
  16476. extra: 806 / 738,
  16477. }
  16478. },
  16479. frontMaid: {
  16480. height: math.unit(6, "feet"),
  16481. weight: math.unit(150, "lb"),
  16482. name: "Front (Maid)",
  16483. image: {
  16484. source: "./media/characters/alluria/front-maid.svg",
  16485. extra: 806 / 738,
  16486. bottom: 0.01
  16487. }
  16488. },
  16489. sideMaid: {
  16490. height: math.unit(6, "feet"),
  16491. weight: math.unit(150, "lb"),
  16492. name: "Side (Maid)",
  16493. image: {
  16494. source: "./media/characters/alluria/side-maid.svg",
  16495. extra: 800 / 750,
  16496. bottom: 0.005
  16497. }
  16498. },
  16499. backMaid: {
  16500. height: math.unit(6, "feet"),
  16501. weight: math.unit(150, "lb"),
  16502. name: "Back (Maid)",
  16503. image: {
  16504. source: "./media/characters/alluria/back-maid.svg",
  16505. extra: 806 / 738,
  16506. }
  16507. },
  16508. },
  16509. [
  16510. {
  16511. name: "Micro",
  16512. height: math.unit(6, "inches"),
  16513. default: true
  16514. },
  16515. ]
  16516. ))
  16517. characterMakers.push(() => makeCharacter(
  16518. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16519. {
  16520. front: {
  16521. height: math.unit(6, "feet"),
  16522. weight: math.unit(150, "lb"),
  16523. name: "Front",
  16524. image: {
  16525. source: "./media/characters/kyle/front.svg",
  16526. extra: 1069 / 962,
  16527. bottom: 77.228 / 1727.45
  16528. }
  16529. },
  16530. },
  16531. [
  16532. {
  16533. name: "Macro",
  16534. height: math.unit(150, "feet"),
  16535. default: true
  16536. },
  16537. ]
  16538. ))
  16539. characterMakers.push(() => makeCharacter(
  16540. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16541. {
  16542. front: {
  16543. height: math.unit(6, "feet"),
  16544. weight: math.unit(300, "lb"),
  16545. name: "Front",
  16546. image: {
  16547. source: "./media/characters/duncan/front.svg",
  16548. extra: 1650 / 1482,
  16549. bottom: 0.05
  16550. }
  16551. },
  16552. },
  16553. [
  16554. {
  16555. name: "Macro",
  16556. height: math.unit(100, "feet"),
  16557. default: true
  16558. },
  16559. ]
  16560. ))
  16561. characterMakers.push(() => makeCharacter(
  16562. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16563. {
  16564. front: {
  16565. height: math.unit(5 + 4 / 12, "feet"),
  16566. weight: math.unit(220, "lb"),
  16567. name: "Front",
  16568. image: {
  16569. source: "./media/characters/memory/front.svg",
  16570. extra: 3641 / 3545,
  16571. bottom: 0.03
  16572. }
  16573. },
  16574. back: {
  16575. height: math.unit(5 + 4 / 12, "feet"),
  16576. weight: math.unit(220, "lb"),
  16577. name: "Back",
  16578. image: {
  16579. source: "./media/characters/memory/back.svg",
  16580. extra: 3641 / 3545,
  16581. bottom: 0.025
  16582. }
  16583. },
  16584. frontSkirt: {
  16585. height: math.unit(5 + 4 / 12, "feet"),
  16586. weight: math.unit(220, "lb"),
  16587. name: "Front (Skirt)",
  16588. image: {
  16589. source: "./media/characters/memory/front-skirt.svg",
  16590. extra: 3641 / 3545,
  16591. bottom: 0.03
  16592. }
  16593. },
  16594. frontDress: {
  16595. height: math.unit(5 + 4 / 12, "feet"),
  16596. weight: math.unit(220, "lb"),
  16597. name: "Front (Dress)",
  16598. image: {
  16599. source: "./media/characters/memory/front-dress.svg",
  16600. extra: 3641 / 3545,
  16601. bottom: 0.03
  16602. }
  16603. },
  16604. },
  16605. [
  16606. {
  16607. name: "Micro",
  16608. height: math.unit(6, "inches"),
  16609. default: true
  16610. },
  16611. {
  16612. name: "Normal",
  16613. height: math.unit(5 + 4 / 12, "feet")
  16614. },
  16615. ]
  16616. ))
  16617. characterMakers.push(() => makeCharacter(
  16618. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16619. {
  16620. front: {
  16621. height: math.unit(4 + 11 / 12, "feet"),
  16622. weight: math.unit(100, "lb"),
  16623. name: "Front",
  16624. image: {
  16625. source: "./media/characters/luno/front.svg",
  16626. extra: 1535 / 1487,
  16627. bottom: 0.03
  16628. }
  16629. },
  16630. },
  16631. [
  16632. {
  16633. name: "Micro",
  16634. height: math.unit(3, "inches")
  16635. },
  16636. {
  16637. name: "Normal",
  16638. height: math.unit(4 + 11 / 12, "feet"),
  16639. default: true
  16640. },
  16641. {
  16642. name: "Macro",
  16643. height: math.unit(300, "feet")
  16644. },
  16645. {
  16646. name: "Megamacro",
  16647. height: math.unit(700, "miles")
  16648. },
  16649. ]
  16650. ))
  16651. characterMakers.push(() => makeCharacter(
  16652. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16653. {
  16654. front: {
  16655. height: math.unit(6 + 2 / 12, "feet"),
  16656. weight: math.unit(170, "lb"),
  16657. name: "Front",
  16658. image: {
  16659. source: "./media/characters/jamesy/front.svg",
  16660. extra: 440 / 382,
  16661. bottom: 0.005
  16662. }
  16663. },
  16664. },
  16665. [
  16666. {
  16667. name: "Micro",
  16668. height: math.unit(3, "inches")
  16669. },
  16670. {
  16671. name: "Normal",
  16672. height: math.unit(6 + 2 / 12, "feet"),
  16673. default: true
  16674. },
  16675. {
  16676. name: "Macro",
  16677. height: math.unit(300, "feet")
  16678. },
  16679. {
  16680. name: "Megamacro",
  16681. height: math.unit(700, "miles")
  16682. },
  16683. ]
  16684. ))
  16685. characterMakers.push(() => makeCharacter(
  16686. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16687. {
  16688. front: {
  16689. height: math.unit(6, "feet"),
  16690. weight: math.unit(160, "lb"),
  16691. name: "Front",
  16692. image: {
  16693. source: "./media/characters/mark/front.svg",
  16694. extra: 3300 / 3100,
  16695. bottom: 136.42 / 3440.47
  16696. }
  16697. },
  16698. },
  16699. [
  16700. {
  16701. name: "Macro",
  16702. height: math.unit(120, "meters")
  16703. },
  16704. {
  16705. name: "Bigger Macro",
  16706. height: math.unit(350, "meters")
  16707. },
  16708. {
  16709. name: "Megamacro",
  16710. height: math.unit(8, "km"),
  16711. default: true
  16712. },
  16713. {
  16714. name: "Continental",
  16715. height: math.unit(4550, "km")
  16716. },
  16717. {
  16718. name: "Planetary",
  16719. height: math.unit(65000, "km")
  16720. },
  16721. ]
  16722. ))
  16723. characterMakers.push(() => makeCharacter(
  16724. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16725. {
  16726. front: {
  16727. height: math.unit(6, "feet"),
  16728. weight: math.unit(400, "lb"),
  16729. name: "Front",
  16730. image: {
  16731. source: "./media/characters/mac/front.svg",
  16732. extra: 1048 / 987.7,
  16733. bottom: 60 / 1107.6,
  16734. }
  16735. },
  16736. },
  16737. [
  16738. {
  16739. name: "Macro",
  16740. height: math.unit(500, "feet"),
  16741. default: true
  16742. },
  16743. ]
  16744. ))
  16745. characterMakers.push(() => makeCharacter(
  16746. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16747. {
  16748. front: {
  16749. height: math.unit(5 + 2 / 12, "feet"),
  16750. weight: math.unit(190, "lb"),
  16751. name: "Front",
  16752. image: {
  16753. source: "./media/characters/bari/front.svg",
  16754. extra: 3156 / 2880,
  16755. bottom: 0.03
  16756. }
  16757. },
  16758. back: {
  16759. height: math.unit(5 + 2 / 12, "feet"),
  16760. weight: math.unit(190, "lb"),
  16761. name: "Back",
  16762. image: {
  16763. source: "./media/characters/bari/back.svg",
  16764. extra: 3260 / 2834,
  16765. bottom: 0.025
  16766. }
  16767. },
  16768. frontPlush: {
  16769. height: math.unit(5 + 2 / 12, "feet"),
  16770. weight: math.unit(190, "lb"),
  16771. name: "Front (Plush)",
  16772. image: {
  16773. source: "./media/characters/bari/front-plush.svg",
  16774. extra: 1112 / 1061,
  16775. bottom: 0.002
  16776. }
  16777. },
  16778. },
  16779. [
  16780. {
  16781. name: "Micro",
  16782. height: math.unit(3, "inches")
  16783. },
  16784. {
  16785. name: "Normal",
  16786. height: math.unit(5 + 2 / 12, "feet"),
  16787. default: true
  16788. },
  16789. {
  16790. name: "Macro",
  16791. height: math.unit(20, "feet")
  16792. },
  16793. ]
  16794. ))
  16795. characterMakers.push(() => makeCharacter(
  16796. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16797. {
  16798. front: {
  16799. height: math.unit(6 + 1 / 12, "feet"),
  16800. weight: math.unit(275, "lb"),
  16801. name: "Front",
  16802. image: {
  16803. source: "./media/characters/hunter-misha-raven/front.svg"
  16804. }
  16805. },
  16806. },
  16807. [
  16808. {
  16809. name: "Mortal",
  16810. height: math.unit(6 + 1 / 12, "feet")
  16811. },
  16812. {
  16813. name: "Divine",
  16814. height: math.unit(1.12134e34, "parsecs"),
  16815. default: true
  16816. },
  16817. ]
  16818. ))
  16819. characterMakers.push(() => makeCharacter(
  16820. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16821. {
  16822. front: {
  16823. height: math.unit(6 + 3 / 12, "feet"),
  16824. weight: math.unit(220, "lb"),
  16825. name: "Front",
  16826. image: {
  16827. source: "./media/characters/max-calore/front.svg",
  16828. extra: 1700 / 1648,
  16829. bottom: 0.01
  16830. }
  16831. },
  16832. back: {
  16833. height: math.unit(6 + 3 / 12, "feet"),
  16834. weight: math.unit(220, "lb"),
  16835. name: "Back",
  16836. image: {
  16837. source: "./media/characters/max-calore/back.svg",
  16838. extra: 1700 / 1648,
  16839. bottom: 0.01
  16840. }
  16841. },
  16842. },
  16843. [
  16844. {
  16845. name: "Normal",
  16846. height: math.unit(6 + 3 / 12, "feet"),
  16847. default: true
  16848. },
  16849. ]
  16850. ))
  16851. characterMakers.push(() => makeCharacter(
  16852. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16853. {
  16854. side: {
  16855. height: math.unit(2 + 8 / 12, "feet"),
  16856. weight: math.unit(99, "lb"),
  16857. name: "Side",
  16858. image: {
  16859. source: "./media/characters/aspen/side.svg",
  16860. extra: 152 / 138,
  16861. bottom: 0.032
  16862. }
  16863. },
  16864. },
  16865. [
  16866. {
  16867. name: "Normal",
  16868. height: math.unit(2 + 8 / 12, "feet"),
  16869. default: true
  16870. },
  16871. ]
  16872. ))
  16873. characterMakers.push(() => makeCharacter(
  16874. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16875. {
  16876. side: {
  16877. height: math.unit(3 + 2 / 12, "feet"),
  16878. weight: math.unit(224, "lb"),
  16879. name: "Side",
  16880. image: {
  16881. source: "./media/characters/sheila-feral-wolf/side.svg",
  16882. extra: 179 / 166,
  16883. bottom: 0.03
  16884. }
  16885. },
  16886. },
  16887. [
  16888. {
  16889. name: "Normal",
  16890. height: math.unit(3 + 2 / 12, "feet"),
  16891. default: true
  16892. },
  16893. ]
  16894. ))
  16895. characterMakers.push(() => makeCharacter(
  16896. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16897. {
  16898. side: {
  16899. height: math.unit(1 + 9 / 12, "feet"),
  16900. weight: math.unit(38, "lb"),
  16901. name: "Side",
  16902. image: {
  16903. source: "./media/characters/michelle/side.svg",
  16904. extra: 147 / 136.7,
  16905. bottom: 0.03
  16906. }
  16907. },
  16908. },
  16909. [
  16910. {
  16911. name: "Normal",
  16912. height: math.unit(1 + 9 / 12, "feet"),
  16913. default: true
  16914. },
  16915. ]
  16916. ))
  16917. characterMakers.push(() => makeCharacter(
  16918. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16919. {
  16920. front: {
  16921. height: math.unit(1 + 1 / 12, "feet"),
  16922. weight: math.unit(18, "lb"),
  16923. name: "Front",
  16924. image: {
  16925. source: "./media/characters/nino/front.svg"
  16926. }
  16927. },
  16928. },
  16929. [
  16930. {
  16931. name: "Normal",
  16932. height: math.unit(1 + 1 / 12, "feet"),
  16933. default: true
  16934. },
  16935. ]
  16936. ))
  16937. characterMakers.push(() => makeCharacter(
  16938. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16939. {
  16940. front: {
  16941. height: math.unit(1, "feet"),
  16942. weight: math.unit(16, "lb"),
  16943. name: "Front",
  16944. image: {
  16945. source: "./media/characters/viola/front.svg"
  16946. }
  16947. },
  16948. },
  16949. [
  16950. {
  16951. name: "Normal",
  16952. height: math.unit(1, "feet"),
  16953. default: true
  16954. },
  16955. ]
  16956. ))
  16957. characterMakers.push(() => makeCharacter(
  16958. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16959. {
  16960. front: {
  16961. height: math.unit(6 + 5 / 12, "feet"),
  16962. weight: math.unit(580, "lb"),
  16963. name: "Front",
  16964. image: {
  16965. source: "./media/characters/atlas/front.svg",
  16966. extra: 298.5 / 290,
  16967. bottom: 0.015
  16968. }
  16969. },
  16970. },
  16971. [
  16972. {
  16973. name: "Normal",
  16974. height: math.unit(6 + 5 / 12, "feet"),
  16975. default: true
  16976. },
  16977. ]
  16978. ))
  16979. characterMakers.push(() => makeCharacter(
  16980. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16981. {
  16982. side: {
  16983. height: math.unit(1 + 10 / 12, "feet"),
  16984. weight: math.unit(25, "lb"),
  16985. name: "Side",
  16986. image: {
  16987. source: "./media/characters/davy/side.svg",
  16988. extra: 200 / 170,
  16989. bottom: 0.01
  16990. }
  16991. },
  16992. },
  16993. [
  16994. {
  16995. name: "Normal",
  16996. height: math.unit(1 + 10 / 12, "feet"),
  16997. default: true
  16998. },
  16999. ]
  17000. ))
  17001. characterMakers.push(() => makeCharacter(
  17002. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17003. {
  17004. side: {
  17005. height: math.unit(4 + 8 / 12, "feet"),
  17006. weight: math.unit(166, "lb"),
  17007. name: "Side",
  17008. image: {
  17009. source: "./media/characters/fiona/side.svg",
  17010. extra: 232 / 220,
  17011. bottom: 0.03
  17012. }
  17013. },
  17014. },
  17015. [
  17016. {
  17017. name: "Normal",
  17018. height: math.unit(4 + 8 / 12, "feet"),
  17019. default: true
  17020. },
  17021. ]
  17022. ))
  17023. characterMakers.push(() => makeCharacter(
  17024. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17025. {
  17026. front: {
  17027. height: math.unit(2, "feet"),
  17028. weight: math.unit(62, "lb"),
  17029. name: "Front",
  17030. image: {
  17031. source: "./media/characters/lyla/front.svg",
  17032. bottom: 0.1
  17033. }
  17034. },
  17035. },
  17036. [
  17037. {
  17038. name: "Normal",
  17039. height: math.unit(2, "feet"),
  17040. default: true
  17041. },
  17042. ]
  17043. ))
  17044. characterMakers.push(() => makeCharacter(
  17045. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17046. {
  17047. side: {
  17048. height: math.unit(1.8, "feet"),
  17049. weight: math.unit(44, "lb"),
  17050. name: "Side",
  17051. image: {
  17052. source: "./media/characters/perseus/side.svg",
  17053. bottom: 0.21
  17054. }
  17055. },
  17056. },
  17057. [
  17058. {
  17059. name: "Normal",
  17060. height: math.unit(1.8, "feet"),
  17061. default: true
  17062. },
  17063. ]
  17064. ))
  17065. characterMakers.push(() => makeCharacter(
  17066. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17067. {
  17068. side: {
  17069. height: math.unit(4 + 2 / 12, "feet"),
  17070. weight: math.unit(20, "lb"),
  17071. name: "Side",
  17072. image: {
  17073. source: "./media/characters/remus/side.svg"
  17074. }
  17075. },
  17076. },
  17077. [
  17078. {
  17079. name: "Normal",
  17080. height: math.unit(4 + 2 / 12, "feet"),
  17081. default: true
  17082. },
  17083. ]
  17084. ))
  17085. characterMakers.push(() => makeCharacter(
  17086. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17087. {
  17088. front: {
  17089. height: math.unit(4 + 11 / 12, "feet"),
  17090. weight: math.unit(114, "lb"),
  17091. name: "Front",
  17092. image: {
  17093. source: "./media/characters/raf/front.svg",
  17094. bottom: 20.5 / 1863
  17095. }
  17096. },
  17097. side: {
  17098. height: math.unit(4 + 11 / 12, "feet"),
  17099. weight: math.unit(114, "lb"),
  17100. name: "Side",
  17101. image: {
  17102. source: "./media/characters/raf/side.svg",
  17103. bottom: 22 / 1822
  17104. }
  17105. },
  17106. },
  17107. [
  17108. {
  17109. name: "Micro",
  17110. height: math.unit(2, "inches")
  17111. },
  17112. {
  17113. name: "Normal",
  17114. height: math.unit(4 + 11 / 12, "feet"),
  17115. default: true
  17116. },
  17117. {
  17118. name: "Macro",
  17119. height: math.unit(70, "feet")
  17120. },
  17121. ]
  17122. ))
  17123. characterMakers.push(() => makeCharacter(
  17124. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17125. {
  17126. front: {
  17127. height: math.unit(1.5, "meters"),
  17128. weight: math.unit(68, "kg"),
  17129. name: "Front",
  17130. image: {
  17131. source: "./media/characters/liam-einarr/front.svg",
  17132. extra: 2822 / 2666
  17133. }
  17134. },
  17135. back: {
  17136. height: math.unit(1.5, "meters"),
  17137. weight: math.unit(68, "kg"),
  17138. name: "Back",
  17139. image: {
  17140. source: "./media/characters/liam-einarr/back.svg",
  17141. extra: 2822 / 2666,
  17142. bottom: 0.015
  17143. }
  17144. },
  17145. },
  17146. [
  17147. {
  17148. name: "Normal",
  17149. height: math.unit(1.5, "meters"),
  17150. default: true
  17151. },
  17152. {
  17153. name: "Macro",
  17154. height: math.unit(150, "meters")
  17155. },
  17156. {
  17157. name: "Megamacro",
  17158. height: math.unit(35, "km")
  17159. },
  17160. ]
  17161. ))
  17162. characterMakers.push(() => makeCharacter(
  17163. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17164. {
  17165. front: {
  17166. height: math.unit(6, "feet"),
  17167. weight: math.unit(75, "kg"),
  17168. name: "Front",
  17169. image: {
  17170. source: "./media/characters/linda/front.svg",
  17171. extra: 930 / 874,
  17172. bottom: 0.004
  17173. }
  17174. },
  17175. },
  17176. [
  17177. {
  17178. name: "Normal",
  17179. height: math.unit(6, "feet"),
  17180. default: true
  17181. },
  17182. ]
  17183. ))
  17184. characterMakers.push(() => makeCharacter(
  17185. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17186. {
  17187. front: {
  17188. height: math.unit(6 + 8 / 12, "feet"),
  17189. weight: math.unit(220, "lb"),
  17190. name: "Front",
  17191. image: {
  17192. source: "./media/characters/caylex/front.svg",
  17193. extra: 821 / 772,
  17194. bottom: 0.07
  17195. }
  17196. },
  17197. back: {
  17198. height: math.unit(6 + 8 / 12, "feet"),
  17199. weight: math.unit(220, "lb"),
  17200. name: "Back",
  17201. image: {
  17202. source: "./media/characters/caylex/back.svg",
  17203. extra: 821 / 772,
  17204. bottom: 0.022
  17205. }
  17206. },
  17207. hand: {
  17208. height: math.unit(1.25, "feet"),
  17209. name: "Hand",
  17210. image: {
  17211. source: "./media/characters/caylex/hand.svg"
  17212. }
  17213. },
  17214. foot: {
  17215. height: math.unit(1.6, "feet"),
  17216. name: "Foot",
  17217. image: {
  17218. source: "./media/characters/caylex/foot.svg"
  17219. }
  17220. },
  17221. armored: {
  17222. height: math.unit(6 + 8 / 12, "feet"),
  17223. weight: math.unit(250, "lb"),
  17224. name: "Armored",
  17225. image: {
  17226. source: "./media/characters/caylex/armored.svg",
  17227. extra: 1420 / 1310,
  17228. bottom: 0.045
  17229. }
  17230. },
  17231. },
  17232. [
  17233. {
  17234. name: "Normal",
  17235. height: math.unit(6 + 8 / 12, "feet"),
  17236. default: true
  17237. },
  17238. {
  17239. name: "Normal+",
  17240. height: math.unit(12, "feet")
  17241. },
  17242. ]
  17243. ))
  17244. characterMakers.push(() => makeCharacter(
  17245. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17246. {
  17247. front: {
  17248. height: math.unit(7 + 6 / 12, "feet"),
  17249. weight: math.unit(288, "lb"),
  17250. name: "Front",
  17251. image: {
  17252. source: "./media/characters/alana/front.svg",
  17253. extra: 679 / 653,
  17254. bottom: 22.5 / 701
  17255. }
  17256. },
  17257. },
  17258. [
  17259. {
  17260. name: "Normal",
  17261. height: math.unit(7 + 6 / 12, "feet")
  17262. },
  17263. {
  17264. name: "Large",
  17265. height: math.unit(50, "feet")
  17266. },
  17267. {
  17268. name: "Macro",
  17269. height: math.unit(100, "feet"),
  17270. default: true
  17271. },
  17272. {
  17273. name: "Macro+",
  17274. height: math.unit(200, "feet")
  17275. },
  17276. ]
  17277. ))
  17278. characterMakers.push(() => makeCharacter(
  17279. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17280. {
  17281. front: {
  17282. height: math.unit(6 + 1 / 12, "feet"),
  17283. weight: math.unit(210, "lb"),
  17284. name: "Front",
  17285. image: {
  17286. source: "./media/characters/hasani/front.svg",
  17287. extra: 244 / 232,
  17288. bottom: 0.01
  17289. }
  17290. },
  17291. back: {
  17292. height: math.unit(6 + 1 / 12, "feet"),
  17293. weight: math.unit(210, "lb"),
  17294. name: "Back",
  17295. image: {
  17296. source: "./media/characters/hasani/back.svg",
  17297. extra: 244 / 232,
  17298. bottom: 0.01
  17299. }
  17300. },
  17301. },
  17302. [
  17303. {
  17304. name: "Normal",
  17305. height: math.unit(6 + 1 / 12, "feet")
  17306. },
  17307. {
  17308. name: "Macro",
  17309. height: math.unit(175, "feet"),
  17310. default: true
  17311. },
  17312. ]
  17313. ))
  17314. characterMakers.push(() => makeCharacter(
  17315. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17316. {
  17317. front: {
  17318. height: math.unit(1.82, "meters"),
  17319. weight: math.unit(140, "lb"),
  17320. name: "Front",
  17321. image: {
  17322. source: "./media/characters/nita/front.svg",
  17323. extra: 2473 / 2363,
  17324. bottom: 0.01
  17325. }
  17326. },
  17327. },
  17328. [
  17329. {
  17330. name: "Normal",
  17331. height: math.unit(1.82, "m")
  17332. },
  17333. {
  17334. name: "Macro",
  17335. height: math.unit(300, "m")
  17336. },
  17337. {
  17338. name: "Mistake Canon",
  17339. height: math.unit(0.5, "miles"),
  17340. default: true
  17341. },
  17342. {
  17343. name: "Big Mistake",
  17344. height: math.unit(13, "miles")
  17345. },
  17346. {
  17347. name: "Playing God",
  17348. height: math.unit(2450, "miles")
  17349. },
  17350. ]
  17351. ))
  17352. characterMakers.push(() => makeCharacter(
  17353. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17354. {
  17355. front: {
  17356. height: math.unit(4, "feet"),
  17357. weight: math.unit(120, "lb"),
  17358. name: "Front",
  17359. image: {
  17360. source: "./media/characters/shiriko/front.svg",
  17361. extra: 970/934,
  17362. bottom: 5/975
  17363. }
  17364. },
  17365. },
  17366. [
  17367. {
  17368. name: "Normal",
  17369. height: math.unit(4, "feet"),
  17370. default: true
  17371. },
  17372. ]
  17373. ))
  17374. characterMakers.push(() => makeCharacter(
  17375. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17376. {
  17377. front: {
  17378. height: math.unit(6, "feet"),
  17379. name: "front",
  17380. image: {
  17381. source: "./media/characters/deja/front.svg",
  17382. extra: 926 / 840,
  17383. bottom: 0.07
  17384. }
  17385. },
  17386. },
  17387. [
  17388. {
  17389. name: "Planck Length",
  17390. height: math.unit(1.6e-35, "meters")
  17391. },
  17392. {
  17393. name: "Normal",
  17394. height: math.unit(30.48, "meters"),
  17395. default: true
  17396. },
  17397. {
  17398. name: "Universal",
  17399. height: math.unit(8.8e26, "meters")
  17400. },
  17401. ]
  17402. ))
  17403. characterMakers.push(() => makeCharacter(
  17404. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17405. {
  17406. side: {
  17407. height: math.unit(8, "feet"),
  17408. weight: math.unit(6300, "lb"),
  17409. name: "Side",
  17410. image: {
  17411. source: "./media/characters/anima/side.svg",
  17412. bottom: 0.035
  17413. }
  17414. },
  17415. },
  17416. [
  17417. {
  17418. name: "Normal",
  17419. height: math.unit(8, "feet"),
  17420. default: true
  17421. },
  17422. ]
  17423. ))
  17424. characterMakers.push(() => makeCharacter(
  17425. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17426. {
  17427. front: {
  17428. height: math.unit(8, "feet"),
  17429. weight: math.unit(350, "lb"),
  17430. name: "Front",
  17431. image: {
  17432. source: "./media/characters/bianca/front.svg",
  17433. extra: 234 / 225,
  17434. bottom: 0.03
  17435. }
  17436. },
  17437. },
  17438. [
  17439. {
  17440. name: "Normal",
  17441. height: math.unit(8, "feet"),
  17442. default: true
  17443. },
  17444. ]
  17445. ))
  17446. characterMakers.push(() => makeCharacter(
  17447. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17448. {
  17449. front: {
  17450. height: math.unit(6, "feet"),
  17451. weight: math.unit(150, "lb"),
  17452. name: "Front",
  17453. image: {
  17454. source: "./media/characters/adinia/front.svg",
  17455. extra: 1845 / 1672,
  17456. bottom: 0.02
  17457. }
  17458. },
  17459. back: {
  17460. height: math.unit(6, "feet"),
  17461. weight: math.unit(150, "lb"),
  17462. name: "Back",
  17463. image: {
  17464. source: "./media/characters/adinia/back.svg",
  17465. extra: 1845 / 1672,
  17466. bottom: 0.002
  17467. }
  17468. },
  17469. },
  17470. [
  17471. {
  17472. name: "Normal",
  17473. height: math.unit(11 + 5 / 12, "feet"),
  17474. default: true
  17475. },
  17476. ]
  17477. ))
  17478. characterMakers.push(() => makeCharacter(
  17479. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17480. {
  17481. front: {
  17482. height: math.unit(3, "meters"),
  17483. weight: math.unit(200, "kg"),
  17484. name: "Front",
  17485. image: {
  17486. source: "./media/characters/lykasa/front.svg",
  17487. extra: 1076 / 976,
  17488. bottom: 0.06
  17489. }
  17490. },
  17491. },
  17492. [
  17493. {
  17494. name: "Normal",
  17495. height: math.unit(3, "meters")
  17496. },
  17497. {
  17498. name: "Kaiju",
  17499. height: math.unit(120, "meters"),
  17500. default: true
  17501. },
  17502. {
  17503. name: "Mega Kaiju",
  17504. height: math.unit(240, "km")
  17505. },
  17506. {
  17507. name: "Giga Kaiju",
  17508. height: math.unit(400, "megameters")
  17509. },
  17510. {
  17511. name: "Tera Kaiju",
  17512. height: math.unit(800, "gigameters")
  17513. },
  17514. {
  17515. name: "Kaiju Dragon Goddess",
  17516. height: math.unit(26, "zettaparsecs")
  17517. },
  17518. ]
  17519. ))
  17520. characterMakers.push(() => makeCharacter(
  17521. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17522. {
  17523. side: {
  17524. height: math.unit(283 / 124 * 6, "feet"),
  17525. weight: math.unit(35000, "lb"),
  17526. name: "Side",
  17527. image: {
  17528. source: "./media/characters/malfaren/side.svg",
  17529. extra: 2500 / 1010,
  17530. bottom: 0.01
  17531. }
  17532. },
  17533. front: {
  17534. height: math.unit(22.36, "feet"),
  17535. weight: math.unit(35000, "lb"),
  17536. name: "Front",
  17537. image: {
  17538. source: "./media/characters/malfaren/front.svg",
  17539. extra: 1631 / 1476,
  17540. bottom: 0.01
  17541. }
  17542. },
  17543. maw: {
  17544. height: math.unit(6.9, "feet"),
  17545. name: "Maw",
  17546. image: {
  17547. source: "./media/characters/malfaren/maw.svg"
  17548. }
  17549. },
  17550. },
  17551. [
  17552. {
  17553. name: "Big",
  17554. height: math.unit(283 / 162 * 6, "feet"),
  17555. },
  17556. {
  17557. name: "Bigger",
  17558. height: math.unit(283 / 124 * 6, "feet")
  17559. },
  17560. {
  17561. name: "Massive",
  17562. height: math.unit(283 / 92 * 6, "feet"),
  17563. default: true
  17564. },
  17565. {
  17566. name: "👀💦",
  17567. height: math.unit(283 / 73 * 6, "feet"),
  17568. },
  17569. ]
  17570. ))
  17571. characterMakers.push(() => makeCharacter(
  17572. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17573. {
  17574. front: {
  17575. height: math.unit(1.7, "m"),
  17576. weight: math.unit(70, "kg"),
  17577. name: "Front",
  17578. image: {
  17579. source: "./media/characters/kernel/front.svg",
  17580. extra: 222 / 210,
  17581. bottom: 0.007
  17582. }
  17583. },
  17584. },
  17585. [
  17586. {
  17587. name: "Nano",
  17588. height: math.unit(17, "micrometers")
  17589. },
  17590. {
  17591. name: "Micro",
  17592. height: math.unit(1.7, "mm")
  17593. },
  17594. {
  17595. name: "Small",
  17596. height: math.unit(1.7, "cm")
  17597. },
  17598. {
  17599. name: "Normal",
  17600. height: math.unit(1.7, "m"),
  17601. default: true
  17602. },
  17603. ]
  17604. ))
  17605. characterMakers.push(() => makeCharacter(
  17606. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17607. {
  17608. front: {
  17609. height: math.unit(1.75, "meters"),
  17610. weight: math.unit(65, "kg"),
  17611. name: "Front",
  17612. image: {
  17613. source: "./media/characters/jayne-folest/front.svg",
  17614. extra: 2115 / 2007,
  17615. bottom: 0.02
  17616. }
  17617. },
  17618. back: {
  17619. height: math.unit(1.75, "meters"),
  17620. weight: math.unit(65, "kg"),
  17621. name: "Back",
  17622. image: {
  17623. source: "./media/characters/jayne-folest/back.svg",
  17624. extra: 2115 / 2007,
  17625. bottom: 0.005
  17626. }
  17627. },
  17628. frontClothed: {
  17629. height: math.unit(1.75, "meters"),
  17630. weight: math.unit(65, "kg"),
  17631. name: "Front (Clothed)",
  17632. image: {
  17633. source: "./media/characters/jayne-folest/front-clothed.svg",
  17634. extra: 2115 / 2007,
  17635. bottom: 0.035
  17636. }
  17637. },
  17638. hand: {
  17639. height: math.unit(1 / 1.260, "feet"),
  17640. name: "Hand",
  17641. image: {
  17642. source: "./media/characters/jayne-folest/hand.svg"
  17643. }
  17644. },
  17645. foot: {
  17646. height: math.unit(1 / 0.918, "feet"),
  17647. name: "Foot",
  17648. image: {
  17649. source: "./media/characters/jayne-folest/foot.svg"
  17650. }
  17651. },
  17652. },
  17653. [
  17654. {
  17655. name: "Micro",
  17656. height: math.unit(4, "cm")
  17657. },
  17658. {
  17659. name: "Normal",
  17660. height: math.unit(1.75, "meters")
  17661. },
  17662. {
  17663. name: "Macro",
  17664. height: math.unit(47.5, "meters"),
  17665. default: true
  17666. },
  17667. ]
  17668. ))
  17669. characterMakers.push(() => makeCharacter(
  17670. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17671. {
  17672. front: {
  17673. height: math.unit(180, "cm"),
  17674. weight: math.unit(70, "kg"),
  17675. name: "Front",
  17676. image: {
  17677. source: "./media/characters/algier/front.svg",
  17678. extra: 596 / 572,
  17679. bottom: 0.04
  17680. }
  17681. },
  17682. back: {
  17683. height: math.unit(180, "cm"),
  17684. weight: math.unit(70, "kg"),
  17685. name: "Back",
  17686. image: {
  17687. source: "./media/characters/algier/back.svg",
  17688. extra: 596 / 572,
  17689. bottom: 0.025
  17690. }
  17691. },
  17692. frontdressed: {
  17693. height: math.unit(180, "cm"),
  17694. weight: math.unit(150, "kg"),
  17695. name: "Front-dressed",
  17696. image: {
  17697. source: "./media/characters/algier/front-dressed.svg",
  17698. extra: 596 / 572,
  17699. bottom: 0.038
  17700. }
  17701. },
  17702. },
  17703. [
  17704. {
  17705. name: "Micro",
  17706. height: math.unit(5, "cm")
  17707. },
  17708. {
  17709. name: "Normal",
  17710. height: math.unit(180, "cm"),
  17711. default: true
  17712. },
  17713. {
  17714. name: "Macro",
  17715. height: math.unit(64, "m")
  17716. },
  17717. ]
  17718. ))
  17719. characterMakers.push(() => makeCharacter(
  17720. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17721. {
  17722. upright: {
  17723. height: math.unit(7, "feet"),
  17724. weight: math.unit(300, "lb"),
  17725. name: "Upright",
  17726. image: {
  17727. source: "./media/characters/pretzel/upright.svg",
  17728. extra: 534 / 522,
  17729. bottom: 0.065
  17730. }
  17731. },
  17732. sprawling: {
  17733. height: math.unit(3.75, "feet"),
  17734. weight: math.unit(300, "lb"),
  17735. name: "Sprawling",
  17736. image: {
  17737. source: "./media/characters/pretzel/sprawling.svg",
  17738. extra: 314 / 281,
  17739. bottom: 0.1
  17740. }
  17741. },
  17742. tongue: {
  17743. height: math.unit(2, "feet"),
  17744. name: "Tongue",
  17745. image: {
  17746. source: "./media/characters/pretzel/tongue.svg"
  17747. }
  17748. },
  17749. },
  17750. [
  17751. {
  17752. name: "Normal",
  17753. height: math.unit(7, "feet"),
  17754. default: true
  17755. },
  17756. {
  17757. name: "Oversized",
  17758. height: math.unit(15, "feet")
  17759. },
  17760. {
  17761. name: "Huge",
  17762. height: math.unit(30, "feet")
  17763. },
  17764. {
  17765. name: "Macro",
  17766. height: math.unit(250, "feet")
  17767. },
  17768. ]
  17769. ))
  17770. characterMakers.push(() => makeCharacter(
  17771. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17772. {
  17773. sideFront: {
  17774. height: math.unit(5 + 2 / 12, "feet"),
  17775. weight: math.unit(120, "lb"),
  17776. name: "Front Side",
  17777. image: {
  17778. source: "./media/characters/roxi/side-front.svg",
  17779. extra: 2924 / 2717,
  17780. bottom: 0.08
  17781. }
  17782. },
  17783. sideBack: {
  17784. height: math.unit(5 + 2 / 12, "feet"),
  17785. weight: math.unit(120, "lb"),
  17786. name: "Back Side",
  17787. image: {
  17788. source: "./media/characters/roxi/side-back.svg",
  17789. extra: 2904 / 2693,
  17790. bottom: 0.06
  17791. }
  17792. },
  17793. front: {
  17794. height: math.unit(5 + 2 / 12, "feet"),
  17795. weight: math.unit(120, "lb"),
  17796. name: "Front",
  17797. image: {
  17798. source: "./media/characters/roxi/front.svg",
  17799. extra: 2028 / 1907,
  17800. bottom: 0.01
  17801. }
  17802. },
  17803. frontAlt: {
  17804. height: math.unit(5 + 2 / 12, "feet"),
  17805. weight: math.unit(120, "lb"),
  17806. name: "Front (Alt)",
  17807. image: {
  17808. source: "./media/characters/roxi/front-alt.svg",
  17809. extra: 1828 / 1798,
  17810. bottom: 0.01
  17811. }
  17812. },
  17813. sitting: {
  17814. height: math.unit(2.8, "feet"),
  17815. weight: math.unit(120, "lb"),
  17816. name: "Sitting",
  17817. image: {
  17818. source: "./media/characters/roxi/sitting.svg",
  17819. extra: 2660 / 2462,
  17820. bottom: 0.1
  17821. }
  17822. },
  17823. },
  17824. [
  17825. {
  17826. name: "Normal",
  17827. height: math.unit(5 + 2 / 12, "feet"),
  17828. default: true
  17829. },
  17830. ]
  17831. ))
  17832. characterMakers.push(() => makeCharacter(
  17833. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17834. {
  17835. side: {
  17836. height: math.unit(55, "feet"),
  17837. weight: math.unit(153, "tons"),
  17838. name: "Side",
  17839. image: {
  17840. source: "./media/characters/shadow/side.svg",
  17841. extra: 701 / 628,
  17842. bottom: 0.02
  17843. }
  17844. },
  17845. flying: {
  17846. height: math.unit(145, "feet"),
  17847. weight: math.unit(153, "tons"),
  17848. name: "Flying",
  17849. image: {
  17850. source: "./media/characters/shadow/flying.svg"
  17851. }
  17852. },
  17853. },
  17854. [
  17855. {
  17856. name: "Normal",
  17857. height: math.unit(55, "feet"),
  17858. default: true
  17859. },
  17860. ]
  17861. ))
  17862. characterMakers.push(() => makeCharacter(
  17863. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17864. {
  17865. front: {
  17866. height: math.unit(6, "feet"),
  17867. weight: math.unit(200, "lb"),
  17868. name: "Front",
  17869. image: {
  17870. source: "./media/characters/marcie/front.svg",
  17871. extra: 960 / 876,
  17872. bottom: 58 / 1017.87
  17873. }
  17874. },
  17875. },
  17876. [
  17877. {
  17878. name: "Macro",
  17879. height: math.unit(1, "mile"),
  17880. default: true
  17881. },
  17882. ]
  17883. ))
  17884. characterMakers.push(() => makeCharacter(
  17885. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17886. {
  17887. front: {
  17888. height: math.unit(7, "feet"),
  17889. weight: math.unit(200, "lb"),
  17890. name: "Front",
  17891. image: {
  17892. source: "./media/characters/kachina/front.svg",
  17893. extra: 1290.68 / 1119,
  17894. bottom: 36.5 / 1327.18
  17895. }
  17896. },
  17897. },
  17898. [
  17899. {
  17900. name: "Normal",
  17901. height: math.unit(7, "feet"),
  17902. default: true
  17903. },
  17904. ]
  17905. ))
  17906. characterMakers.push(() => makeCharacter(
  17907. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17908. {
  17909. looking: {
  17910. height: math.unit(2, "meters"),
  17911. weight: math.unit(300, "kg"),
  17912. name: "Looking",
  17913. image: {
  17914. source: "./media/characters/kash/looking.svg",
  17915. extra: 474 / 344,
  17916. bottom: 0.03
  17917. }
  17918. },
  17919. side: {
  17920. height: math.unit(2, "meters"),
  17921. weight: math.unit(300, "kg"),
  17922. name: "Side",
  17923. image: {
  17924. source: "./media/characters/kash/side.svg",
  17925. extra: 302 / 251,
  17926. bottom: 0.03
  17927. }
  17928. },
  17929. front: {
  17930. height: math.unit(2, "meters"),
  17931. weight: math.unit(300, "kg"),
  17932. name: "Front",
  17933. image: {
  17934. source: "./media/characters/kash/front.svg",
  17935. extra: 495 / 360,
  17936. bottom: 0.015
  17937. }
  17938. },
  17939. },
  17940. [
  17941. {
  17942. name: "Normal",
  17943. height: math.unit(2, "meters"),
  17944. default: true
  17945. },
  17946. {
  17947. name: "Big",
  17948. height: math.unit(3, "meters")
  17949. },
  17950. {
  17951. name: "Large",
  17952. height: math.unit(5, "meters")
  17953. },
  17954. ]
  17955. ))
  17956. characterMakers.push(() => makeCharacter(
  17957. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17958. {
  17959. feeding: {
  17960. height: math.unit(6.7, "feet"),
  17961. weight: math.unit(350, "lb"),
  17962. name: "Feeding",
  17963. image: {
  17964. source: "./media/characters/lalim/feeding.svg",
  17965. }
  17966. },
  17967. },
  17968. [
  17969. {
  17970. name: "Normal",
  17971. height: math.unit(6.7, "feet"),
  17972. default: true
  17973. },
  17974. ]
  17975. ))
  17976. characterMakers.push(() => makeCharacter(
  17977. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17978. {
  17979. front: {
  17980. height: math.unit(9.5, "feet"),
  17981. weight: math.unit(600, "lb"),
  17982. name: "Front",
  17983. image: {
  17984. source: "./media/characters/de'vout/front.svg",
  17985. extra: 1443 / 1328,
  17986. bottom: 0.025
  17987. }
  17988. },
  17989. back: {
  17990. height: math.unit(9.5, "feet"),
  17991. weight: math.unit(600, "lb"),
  17992. name: "Back",
  17993. image: {
  17994. source: "./media/characters/de'vout/back.svg",
  17995. extra: 1443 / 1328
  17996. }
  17997. },
  17998. frontDressed: {
  17999. height: math.unit(9.5, "feet"),
  18000. weight: math.unit(600, "lb"),
  18001. name: "Front (Dressed",
  18002. image: {
  18003. source: "./media/characters/de'vout/front-dressed.svg",
  18004. extra: 1443 / 1328,
  18005. bottom: 0.025
  18006. }
  18007. },
  18008. backDressed: {
  18009. height: math.unit(9.5, "feet"),
  18010. weight: math.unit(600, "lb"),
  18011. name: "Back (Dressed",
  18012. image: {
  18013. source: "./media/characters/de'vout/back-dressed.svg",
  18014. extra: 1443 / 1328
  18015. }
  18016. },
  18017. },
  18018. [
  18019. {
  18020. name: "Normal",
  18021. height: math.unit(9.5, "feet"),
  18022. default: true
  18023. },
  18024. ]
  18025. ))
  18026. characterMakers.push(() => makeCharacter(
  18027. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18028. {
  18029. front: {
  18030. height: math.unit(8, "feet"),
  18031. weight: math.unit(225, "lb"),
  18032. name: "Front",
  18033. image: {
  18034. source: "./media/characters/talana/front.svg",
  18035. extra: 1410 / 1300,
  18036. bottom: 0.015
  18037. }
  18038. },
  18039. frontDressed: {
  18040. height: math.unit(8, "feet"),
  18041. weight: math.unit(225, "lb"),
  18042. name: "Front (Dressed",
  18043. image: {
  18044. source: "./media/characters/talana/front-dressed.svg",
  18045. extra: 1410 / 1300,
  18046. bottom: 0.015
  18047. }
  18048. },
  18049. },
  18050. [
  18051. {
  18052. name: "Normal",
  18053. height: math.unit(8, "feet"),
  18054. default: true
  18055. },
  18056. ]
  18057. ))
  18058. characterMakers.push(() => makeCharacter(
  18059. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18060. {
  18061. side: {
  18062. height: math.unit(7.2, "feet"),
  18063. weight: math.unit(150, "lb"),
  18064. name: "Side",
  18065. image: {
  18066. source: "./media/characters/xeauvok/side.svg",
  18067. extra: 1975 / 1523,
  18068. bottom: 0.07
  18069. }
  18070. },
  18071. },
  18072. [
  18073. {
  18074. name: "Normal",
  18075. height: math.unit(7.2, "feet"),
  18076. default: true
  18077. },
  18078. ]
  18079. ))
  18080. characterMakers.push(() => makeCharacter(
  18081. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18082. {
  18083. side: {
  18084. height: math.unit(10, "feet"),
  18085. weight: math.unit(900, "kg"),
  18086. name: "Side",
  18087. image: {
  18088. source: "./media/characters/zara/side.svg",
  18089. extra: 504 / 498
  18090. }
  18091. },
  18092. },
  18093. [
  18094. {
  18095. name: "Normal",
  18096. height: math.unit(10, "feet"),
  18097. default: true
  18098. },
  18099. ]
  18100. ))
  18101. characterMakers.push(() => makeCharacter(
  18102. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18103. {
  18104. side: {
  18105. height: math.unit(6, "feet"),
  18106. weight: math.unit(150, "lb"),
  18107. name: "Side",
  18108. image: {
  18109. source: "./media/characters/richard-dragon/side.svg",
  18110. extra: 845 / 340,
  18111. bottom: 0.017
  18112. }
  18113. },
  18114. maw: {
  18115. height: math.unit(2.97, "feet"),
  18116. name: "Maw",
  18117. image: {
  18118. source: "./media/characters/richard-dragon/maw.svg"
  18119. }
  18120. },
  18121. },
  18122. [
  18123. ]
  18124. ))
  18125. characterMakers.push(() => makeCharacter(
  18126. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18127. {
  18128. front: {
  18129. height: math.unit(4, "feet"),
  18130. weight: math.unit(100, "lb"),
  18131. name: "Front",
  18132. image: {
  18133. source: "./media/characters/richard-smeargle/front.svg",
  18134. extra: 2952 / 2820,
  18135. bottom: 0.028
  18136. }
  18137. },
  18138. },
  18139. [
  18140. {
  18141. name: "Normal",
  18142. height: math.unit(4, "feet"),
  18143. default: true
  18144. },
  18145. {
  18146. name: "Dynamax",
  18147. height: math.unit(20, "meters")
  18148. },
  18149. ]
  18150. ))
  18151. characterMakers.push(() => makeCharacter(
  18152. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18153. {
  18154. front: {
  18155. height: math.unit(6, "feet"),
  18156. weight: math.unit(110, "lb"),
  18157. name: "Front",
  18158. image: {
  18159. source: "./media/characters/klay/front.svg",
  18160. extra: 962 / 883,
  18161. bottom: 0.04
  18162. }
  18163. },
  18164. back: {
  18165. height: math.unit(6, "feet"),
  18166. weight: math.unit(110, "lb"),
  18167. name: "Back",
  18168. image: {
  18169. source: "./media/characters/klay/back.svg",
  18170. extra: 962 / 883
  18171. }
  18172. },
  18173. beans: {
  18174. height: math.unit(1.15, "feet"),
  18175. name: "Beans",
  18176. image: {
  18177. source: "./media/characters/klay/beans.svg"
  18178. }
  18179. },
  18180. },
  18181. [
  18182. {
  18183. name: "Micro",
  18184. height: math.unit(6, "inches")
  18185. },
  18186. {
  18187. name: "Mini",
  18188. height: math.unit(3, "feet")
  18189. },
  18190. {
  18191. name: "Normal",
  18192. height: math.unit(6, "feet"),
  18193. default: true
  18194. },
  18195. {
  18196. name: "Big",
  18197. height: math.unit(25, "feet")
  18198. },
  18199. {
  18200. name: "Macro",
  18201. height: math.unit(100, "feet")
  18202. },
  18203. {
  18204. name: "Megamacro",
  18205. height: math.unit(400, "feet")
  18206. },
  18207. ]
  18208. ))
  18209. characterMakers.push(() => makeCharacter(
  18210. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18211. {
  18212. front: {
  18213. height: math.unit(6, "feet"),
  18214. weight: math.unit(160, "lb"),
  18215. name: "Front",
  18216. image: {
  18217. source: "./media/characters/marcus/front.svg",
  18218. extra: 734 / 676,
  18219. bottom: 0.03
  18220. }
  18221. },
  18222. },
  18223. [
  18224. {
  18225. name: "Little",
  18226. height: math.unit(6, "feet")
  18227. },
  18228. {
  18229. name: "Normal",
  18230. height: math.unit(110, "feet"),
  18231. default: true
  18232. },
  18233. {
  18234. name: "Macro",
  18235. height: math.unit(250, "feet")
  18236. },
  18237. {
  18238. name: "Megamacro",
  18239. height: math.unit(1000, "feet")
  18240. },
  18241. ]
  18242. ))
  18243. characterMakers.push(() => makeCharacter(
  18244. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18245. {
  18246. front: {
  18247. height: math.unit(7, "feet"),
  18248. weight: math.unit(275, "lb"),
  18249. name: "Front",
  18250. image: {
  18251. source: "./media/characters/claude-delroute/front.svg",
  18252. extra: 230 / 214,
  18253. bottom: 0.007
  18254. }
  18255. },
  18256. side: {
  18257. height: math.unit(7, "feet"),
  18258. weight: math.unit(275, "lb"),
  18259. name: "Side",
  18260. image: {
  18261. source: "./media/characters/claude-delroute/side.svg",
  18262. extra: 222 / 214,
  18263. bottom: 0.01
  18264. }
  18265. },
  18266. back: {
  18267. height: math.unit(7, "feet"),
  18268. weight: math.unit(275, "lb"),
  18269. name: "Back",
  18270. image: {
  18271. source: "./media/characters/claude-delroute/back.svg",
  18272. extra: 230 / 214,
  18273. bottom: 0.015
  18274. }
  18275. },
  18276. maw: {
  18277. height: math.unit(0.6407, "meters"),
  18278. name: "Maw",
  18279. image: {
  18280. source: "./media/characters/claude-delroute/maw.svg"
  18281. }
  18282. },
  18283. },
  18284. [
  18285. {
  18286. name: "Normal",
  18287. height: math.unit(7, "feet"),
  18288. default: true
  18289. },
  18290. {
  18291. name: "Lorge",
  18292. height: math.unit(20, "feet")
  18293. },
  18294. ]
  18295. ))
  18296. characterMakers.push(() => makeCharacter(
  18297. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18298. {
  18299. front: {
  18300. height: math.unit(8 + 4 / 12, "feet"),
  18301. weight: math.unit(600, "lb"),
  18302. name: "Front",
  18303. image: {
  18304. source: "./media/characters/dragonien/front.svg",
  18305. extra: 100 / 94,
  18306. bottom: 3.3 / 103.3445
  18307. }
  18308. },
  18309. back: {
  18310. height: math.unit(8 + 4 / 12, "feet"),
  18311. weight: math.unit(600, "lb"),
  18312. name: "Back",
  18313. image: {
  18314. source: "./media/characters/dragonien/back.svg",
  18315. extra: 776 / 746,
  18316. bottom: 6.4 / 782.0616
  18317. }
  18318. },
  18319. foot: {
  18320. height: math.unit(1.54, "feet"),
  18321. name: "Foot",
  18322. image: {
  18323. source: "./media/characters/dragonien/foot.svg",
  18324. }
  18325. },
  18326. },
  18327. [
  18328. {
  18329. name: "Normal",
  18330. height: math.unit(8 + 4 / 12, "feet"),
  18331. default: true
  18332. },
  18333. {
  18334. name: "Macro",
  18335. height: math.unit(200, "feet")
  18336. },
  18337. {
  18338. name: "Megamacro",
  18339. height: math.unit(1, "mile")
  18340. },
  18341. {
  18342. name: "Gigamacro",
  18343. height: math.unit(1000, "miles")
  18344. },
  18345. ]
  18346. ))
  18347. characterMakers.push(() => makeCharacter(
  18348. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18349. {
  18350. front: {
  18351. height: math.unit(5 + 2 / 12, "feet"),
  18352. weight: math.unit(110, "lb"),
  18353. name: "Front",
  18354. image: {
  18355. source: "./media/characters/desta/front.svg",
  18356. extra: 767 / 726,
  18357. bottom: 11.7 / 779
  18358. }
  18359. },
  18360. back: {
  18361. height: math.unit(5 + 2 / 12, "feet"),
  18362. weight: math.unit(110, "lb"),
  18363. name: "Back",
  18364. image: {
  18365. source: "./media/characters/desta/back.svg",
  18366. extra: 777 / 728,
  18367. bottom: 6 / 784
  18368. }
  18369. },
  18370. frontAlt: {
  18371. height: math.unit(5 + 2 / 12, "feet"),
  18372. weight: math.unit(110, "lb"),
  18373. name: "Front",
  18374. image: {
  18375. source: "./media/characters/desta/front-alt.svg",
  18376. extra: 1482 / 1417
  18377. }
  18378. },
  18379. side: {
  18380. height: math.unit(5 + 2 / 12, "feet"),
  18381. weight: math.unit(110, "lb"),
  18382. name: "Side",
  18383. image: {
  18384. source: "./media/characters/desta/side.svg",
  18385. extra: 2579 / 2491,
  18386. bottom: 0.053
  18387. }
  18388. },
  18389. },
  18390. [
  18391. {
  18392. name: "Micro",
  18393. height: math.unit(6, "inches")
  18394. },
  18395. {
  18396. name: "Normal",
  18397. height: math.unit(5 + 2 / 12, "feet"),
  18398. default: true
  18399. },
  18400. {
  18401. name: "Macro",
  18402. height: math.unit(62, "feet")
  18403. },
  18404. {
  18405. name: "Megamacro",
  18406. height: math.unit(1800, "feet")
  18407. },
  18408. ]
  18409. ))
  18410. characterMakers.push(() => makeCharacter(
  18411. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18412. {
  18413. front: {
  18414. height: math.unit(10, "feet"),
  18415. weight: math.unit(700, "lb"),
  18416. name: "Front",
  18417. image: {
  18418. source: "./media/characters/storm-alystar/front.svg",
  18419. extra: 2112 / 1898,
  18420. bottom: 0.034
  18421. }
  18422. },
  18423. },
  18424. [
  18425. {
  18426. name: "Micro",
  18427. height: math.unit(3.5, "inches")
  18428. },
  18429. {
  18430. name: "Normal",
  18431. height: math.unit(10, "feet"),
  18432. default: true
  18433. },
  18434. {
  18435. name: "Macro",
  18436. height: math.unit(400, "feet")
  18437. },
  18438. {
  18439. name: "Deific",
  18440. height: math.unit(60, "miles")
  18441. },
  18442. ]
  18443. ))
  18444. characterMakers.push(() => makeCharacter(
  18445. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18446. {
  18447. front: {
  18448. height: math.unit(2.35, "meters"),
  18449. weight: math.unit(119, "kg"),
  18450. name: "Front",
  18451. image: {
  18452. source: "./media/characters/ilia/front.svg",
  18453. extra: 1285 / 1255,
  18454. bottom: 0.06
  18455. }
  18456. },
  18457. },
  18458. [
  18459. {
  18460. name: "Normal",
  18461. height: math.unit(2.35, "meters")
  18462. },
  18463. {
  18464. name: "Macro",
  18465. height: math.unit(140, "meters"),
  18466. default: true
  18467. },
  18468. {
  18469. name: "Megamacro",
  18470. height: math.unit(100, "miles")
  18471. },
  18472. ]
  18473. ))
  18474. characterMakers.push(() => makeCharacter(
  18475. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18476. {
  18477. front: {
  18478. height: math.unit(6 + 5 / 12, "feet"),
  18479. weight: math.unit(190, "lb"),
  18480. name: "Front",
  18481. image: {
  18482. source: "./media/characters/kingdead/front.svg",
  18483. extra: 1228 / 1177
  18484. }
  18485. },
  18486. },
  18487. [
  18488. {
  18489. name: "Micro",
  18490. height: math.unit(7, "inches")
  18491. },
  18492. {
  18493. name: "Normal",
  18494. height: math.unit(6 + 5 / 12, "feet")
  18495. },
  18496. {
  18497. name: "Macro",
  18498. height: math.unit(150, "feet"),
  18499. default: true
  18500. },
  18501. {
  18502. name: "Megamacro",
  18503. height: math.unit(200, "miles")
  18504. },
  18505. ]
  18506. ))
  18507. characterMakers.push(() => makeCharacter(
  18508. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18509. {
  18510. front: {
  18511. height: math.unit(8, "feet"),
  18512. weight: math.unit(600, "lb"),
  18513. name: "Front",
  18514. image: {
  18515. source: "./media/characters/kyrehx/front.svg",
  18516. extra: 1195 / 1095,
  18517. bottom: 0.034
  18518. }
  18519. },
  18520. },
  18521. [
  18522. {
  18523. name: "Micro",
  18524. height: math.unit(2, "inches")
  18525. },
  18526. {
  18527. name: "Normal",
  18528. height: math.unit(8, "feet"),
  18529. default: true
  18530. },
  18531. {
  18532. name: "Macro",
  18533. height: math.unit(255, "feet")
  18534. },
  18535. ]
  18536. ))
  18537. characterMakers.push(() => makeCharacter(
  18538. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18539. {
  18540. front: {
  18541. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18542. weight: math.unit(184, "lb"),
  18543. name: "Front",
  18544. image: {
  18545. source: "./media/characters/xang/front.svg",
  18546. extra: 845 / 755
  18547. }
  18548. },
  18549. },
  18550. [
  18551. {
  18552. name: "Normal",
  18553. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18554. default: true
  18555. },
  18556. {
  18557. name: "Macro",
  18558. height: math.unit(0.935 * 146, "feet")
  18559. },
  18560. {
  18561. name: "Megamacro",
  18562. height: math.unit(0.935 * 3, "miles")
  18563. },
  18564. ]
  18565. ))
  18566. characterMakers.push(() => makeCharacter(
  18567. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18568. {
  18569. frontDressed: {
  18570. height: math.unit(5 + 7 / 12, "feet"),
  18571. weight: math.unit(140, "lb"),
  18572. name: "Front (Dressed)",
  18573. image: {
  18574. source: "./media/characters/doc-weardno/front-dressed.svg",
  18575. extra: 263 / 234
  18576. }
  18577. },
  18578. backDressed: {
  18579. height: math.unit(5 + 7 / 12, "feet"),
  18580. weight: math.unit(140, "lb"),
  18581. name: "Back (Dressed)",
  18582. image: {
  18583. source: "./media/characters/doc-weardno/back-dressed.svg",
  18584. extra: 266 / 238
  18585. }
  18586. },
  18587. front: {
  18588. height: math.unit(5 + 7 / 12, "feet"),
  18589. weight: math.unit(140, "lb"),
  18590. name: "Front",
  18591. image: {
  18592. source: "./media/characters/doc-weardno/front.svg",
  18593. extra: 254 / 233
  18594. }
  18595. },
  18596. },
  18597. [
  18598. {
  18599. name: "Micro",
  18600. height: math.unit(3, "inches")
  18601. },
  18602. {
  18603. name: "Normal",
  18604. height: math.unit(5 + 7 / 12, "feet"),
  18605. default: true
  18606. },
  18607. {
  18608. name: "Macro",
  18609. height: math.unit(25, "feet")
  18610. },
  18611. {
  18612. name: "Megamacro",
  18613. height: math.unit(2, "miles")
  18614. },
  18615. ]
  18616. ))
  18617. characterMakers.push(() => makeCharacter(
  18618. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18619. {
  18620. front: {
  18621. height: math.unit(6 + 2 / 12, "feet"),
  18622. weight: math.unit(153, "lb"),
  18623. name: "Front",
  18624. image: {
  18625. source: "./media/characters/seth-whilst/front.svg",
  18626. bottom: 0.07
  18627. }
  18628. },
  18629. },
  18630. [
  18631. {
  18632. name: "Micro",
  18633. height: math.unit(5, "inches")
  18634. },
  18635. {
  18636. name: "Normal",
  18637. height: math.unit(6 + 2 / 12, "feet"),
  18638. default: true
  18639. },
  18640. ]
  18641. ))
  18642. characterMakers.push(() => makeCharacter(
  18643. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18644. {
  18645. front: {
  18646. height: math.unit(3, "inches"),
  18647. weight: math.unit(8, "grams"),
  18648. name: "Front",
  18649. image: {
  18650. source: "./media/characters/pocket-jabari/front.svg",
  18651. extra: 1024 / 974,
  18652. bottom: 0.039
  18653. }
  18654. },
  18655. },
  18656. [
  18657. {
  18658. name: "Minimicro",
  18659. height: math.unit(8, "mm")
  18660. },
  18661. {
  18662. name: "Micro",
  18663. height: math.unit(3, "inches"),
  18664. default: true
  18665. },
  18666. {
  18667. name: "Normal",
  18668. height: math.unit(3, "feet")
  18669. },
  18670. ]
  18671. ))
  18672. characterMakers.push(() => makeCharacter(
  18673. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18674. {
  18675. front: {
  18676. height: math.unit(15, "feet"),
  18677. weight: math.unit(3280, "lb"),
  18678. name: "Front",
  18679. image: {
  18680. source: "./media/characters/sapphy/front.svg",
  18681. extra: 671 / 577,
  18682. bottom: 0.085
  18683. }
  18684. },
  18685. back: {
  18686. height: math.unit(15, "feet"),
  18687. weight: math.unit(3280, "lb"),
  18688. name: "Back",
  18689. image: {
  18690. source: "./media/characters/sapphy/back.svg",
  18691. extra: 631 / 607,
  18692. bottom: 0.045
  18693. }
  18694. },
  18695. },
  18696. [
  18697. {
  18698. name: "Normal",
  18699. height: math.unit(15, "feet")
  18700. },
  18701. {
  18702. name: "Casual Macro",
  18703. height: math.unit(120, "feet")
  18704. },
  18705. {
  18706. name: "Macro",
  18707. height: math.unit(2150, "feet"),
  18708. default: true
  18709. },
  18710. {
  18711. name: "Megamacro",
  18712. height: math.unit(8, "miles")
  18713. },
  18714. {
  18715. name: "Galaxy Mom",
  18716. height: math.unit(6, "megalightyears")
  18717. },
  18718. ]
  18719. ))
  18720. characterMakers.push(() => makeCharacter(
  18721. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18722. {
  18723. front: {
  18724. height: math.unit(6, "feet"),
  18725. weight: math.unit(170, "lb"),
  18726. name: "Front",
  18727. image: {
  18728. source: "./media/characters/kiro/front.svg",
  18729. extra: 1064 / 1012,
  18730. bottom: 0.052
  18731. }
  18732. },
  18733. },
  18734. [
  18735. {
  18736. name: "Micro",
  18737. height: math.unit(6, "inches")
  18738. },
  18739. {
  18740. name: "Normal",
  18741. height: math.unit(6, "feet"),
  18742. default: true
  18743. },
  18744. {
  18745. name: "Macro",
  18746. height: math.unit(72, "feet")
  18747. },
  18748. ]
  18749. ))
  18750. characterMakers.push(() => makeCharacter(
  18751. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18752. {
  18753. front: {
  18754. height: math.unit(5 + 9 / 12, "feet"),
  18755. weight: math.unit(175, "lb"),
  18756. name: "Front",
  18757. image: {
  18758. source: "./media/characters/irishfox/front.svg",
  18759. extra: 1912 / 1680,
  18760. bottom: 0.02
  18761. }
  18762. },
  18763. },
  18764. [
  18765. {
  18766. name: "Nano",
  18767. height: math.unit(1, "mm")
  18768. },
  18769. {
  18770. name: "Micro",
  18771. height: math.unit(2, "inches")
  18772. },
  18773. {
  18774. name: "Normal",
  18775. height: math.unit(5 + 9 / 12, "feet"),
  18776. default: true
  18777. },
  18778. {
  18779. name: "Macro",
  18780. height: math.unit(45, "feet")
  18781. },
  18782. ]
  18783. ))
  18784. characterMakers.push(() => makeCharacter(
  18785. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18786. {
  18787. front: {
  18788. height: math.unit(6 + 1 / 12, "feet"),
  18789. weight: math.unit(75, "lb"),
  18790. name: "Front",
  18791. image: {
  18792. source: "./media/characters/aronai-sieyes/front.svg",
  18793. extra: 1556 / 1480,
  18794. bottom: 0.015
  18795. }
  18796. },
  18797. side: {
  18798. height: math.unit(6 + 1 / 12, "feet"),
  18799. weight: math.unit(75, "lb"),
  18800. name: "Side",
  18801. image: {
  18802. source: "./media/characters/aronai-sieyes/side.svg",
  18803. extra: 1433 / 1390,
  18804. bottom: 0.0393
  18805. }
  18806. },
  18807. back: {
  18808. height: math.unit(6 + 1 / 12, "feet"),
  18809. weight: math.unit(75, "lb"),
  18810. name: "Back",
  18811. image: {
  18812. source: "./media/characters/aronai-sieyes/back.svg",
  18813. extra: 1544 / 1494,
  18814. bottom: 0.02
  18815. }
  18816. },
  18817. frontClothed: {
  18818. height: math.unit(6 + 1 / 12, "feet"),
  18819. weight: math.unit(75, "lb"),
  18820. name: "Front (Clothed)",
  18821. image: {
  18822. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18823. extra: 1582 / 1527
  18824. }
  18825. },
  18826. feral: {
  18827. height: math.unit(18, "feet"),
  18828. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18829. name: "Feral",
  18830. image: {
  18831. source: "./media/characters/aronai-sieyes/feral.svg",
  18832. extra: 1530 / 1240,
  18833. bottom: 0.035
  18834. }
  18835. },
  18836. },
  18837. [
  18838. {
  18839. name: "Micro",
  18840. height: math.unit(2, "inches")
  18841. },
  18842. {
  18843. name: "Normal",
  18844. height: math.unit(6 + 1 / 12, "feet"),
  18845. default: true
  18846. }
  18847. ]
  18848. ))
  18849. characterMakers.push(() => makeCharacter(
  18850. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18851. {
  18852. front: {
  18853. height: math.unit(12, "feet"),
  18854. weight: math.unit(410, "kg"),
  18855. name: "Front",
  18856. image: {
  18857. source: "./media/characters/xuna/front.svg",
  18858. extra: 2184 / 1980
  18859. }
  18860. },
  18861. side: {
  18862. height: math.unit(12, "feet"),
  18863. weight: math.unit(410, "kg"),
  18864. name: "Side",
  18865. image: {
  18866. source: "./media/characters/xuna/side.svg",
  18867. extra: 2184 / 1980
  18868. }
  18869. },
  18870. back: {
  18871. height: math.unit(12, "feet"),
  18872. weight: math.unit(410, "kg"),
  18873. name: "Back",
  18874. image: {
  18875. source: "./media/characters/xuna/back.svg",
  18876. extra: 2184 / 1980
  18877. }
  18878. },
  18879. },
  18880. [
  18881. {
  18882. name: "Nano glow",
  18883. height: math.unit(10, "nm")
  18884. },
  18885. {
  18886. name: "Micro floof",
  18887. height: math.unit(0.3, "m")
  18888. },
  18889. {
  18890. name: "Huggable softy boi",
  18891. height: math.unit(3.6576, "m"),
  18892. default: true
  18893. },
  18894. {
  18895. name: "Admirable floof",
  18896. height: math.unit(80, "meters")
  18897. },
  18898. {
  18899. name: "Gentle macro",
  18900. height: math.unit(300, "meters")
  18901. },
  18902. {
  18903. name: "Very careful floof",
  18904. height: math.unit(3200, "meters")
  18905. },
  18906. {
  18907. name: "The mega floof",
  18908. height: math.unit(36000, "meters")
  18909. },
  18910. {
  18911. name: "Giga-fur-Wicker",
  18912. height: math.unit(4800000, "meters")
  18913. },
  18914. {
  18915. name: "Licky world",
  18916. height: math.unit(20000000, "meters")
  18917. },
  18918. {
  18919. name: "Floofy cyan sun",
  18920. height: math.unit(1500000000, "meters")
  18921. },
  18922. {
  18923. name: "Milky Wicker",
  18924. height: math.unit(1000000000000000000000, "meters")
  18925. },
  18926. {
  18927. name: "The observing Wicker",
  18928. height: math.unit(999999999999999999999999999, "meters")
  18929. },
  18930. ]
  18931. ))
  18932. characterMakers.push(() => makeCharacter(
  18933. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18934. {
  18935. front: {
  18936. height: math.unit(5 + 9 / 12, "feet"),
  18937. weight: math.unit(150, "lb"),
  18938. name: "Front",
  18939. image: {
  18940. source: "./media/characters/arokha-sieyes/front.svg",
  18941. extra: 1425 / 1284,
  18942. bottom: 0.05
  18943. }
  18944. },
  18945. },
  18946. [
  18947. {
  18948. name: "Normal",
  18949. height: math.unit(5 + 9 / 12, "feet")
  18950. },
  18951. {
  18952. name: "Macro",
  18953. height: math.unit(30, "meters"),
  18954. default: true
  18955. },
  18956. ]
  18957. ))
  18958. characterMakers.push(() => makeCharacter(
  18959. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18960. {
  18961. front: {
  18962. height: math.unit(6, "feet"),
  18963. weight: math.unit(180, "lb"),
  18964. name: "Front",
  18965. image: {
  18966. source: "./media/characters/arokh-sieyes/front.svg",
  18967. extra: 1830 / 1769,
  18968. bottom: 0.01
  18969. }
  18970. },
  18971. },
  18972. [
  18973. {
  18974. name: "Normal",
  18975. height: math.unit(6, "feet")
  18976. },
  18977. {
  18978. name: "Macro",
  18979. height: math.unit(30, "meters"),
  18980. default: true
  18981. },
  18982. ]
  18983. ))
  18984. characterMakers.push(() => makeCharacter(
  18985. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18986. {
  18987. side: {
  18988. height: math.unit(13 + 1 / 12, "feet"),
  18989. weight: math.unit(8.5, "tonnes"),
  18990. name: "Side",
  18991. image: {
  18992. source: "./media/characters/goldeneye/side.svg",
  18993. extra: 1182 / 778,
  18994. bottom: 0.067
  18995. }
  18996. },
  18997. paw: {
  18998. height: math.unit(3.4, "feet"),
  18999. name: "Paw",
  19000. image: {
  19001. source: "./media/characters/goldeneye/paw.svg"
  19002. }
  19003. },
  19004. },
  19005. [
  19006. {
  19007. name: "Normal",
  19008. height: math.unit(13 + 1 / 12, "feet"),
  19009. default: true
  19010. },
  19011. ]
  19012. ))
  19013. characterMakers.push(() => makeCharacter(
  19014. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19015. {
  19016. front: {
  19017. height: math.unit(6 + 1 / 12, "feet"),
  19018. weight: math.unit(210, "lb"),
  19019. name: "Front",
  19020. image: {
  19021. source: "./media/characters/leonardo-lycheborne/front.svg",
  19022. extra: 390 / 365,
  19023. bottom: 0.032
  19024. }
  19025. },
  19026. side: {
  19027. height: math.unit(6 + 1 / 12, "feet"),
  19028. weight: math.unit(210, "lb"),
  19029. name: "Side",
  19030. image: {
  19031. source: "./media/characters/leonardo-lycheborne/side.svg",
  19032. extra: 390 / 365,
  19033. bottom: 0.005
  19034. }
  19035. },
  19036. back: {
  19037. height: math.unit(6 + 1 / 12, "feet"),
  19038. weight: math.unit(210, "lb"),
  19039. name: "Back",
  19040. image: {
  19041. source: "./media/characters/leonardo-lycheborne/back.svg",
  19042. extra: 392 / 366,
  19043. bottom: 0.01
  19044. }
  19045. },
  19046. hand: {
  19047. height: math.unit(1.08, "feet"),
  19048. name: "Hand",
  19049. image: {
  19050. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19051. }
  19052. },
  19053. foot: {
  19054. height: math.unit(1.32, "feet"),
  19055. name: "Foot",
  19056. image: {
  19057. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19058. }
  19059. },
  19060. were: {
  19061. height: math.unit(20, "feet"),
  19062. weight: math.unit(7800, "lb"),
  19063. name: "Were",
  19064. image: {
  19065. source: "./media/characters/leonardo-lycheborne/were.svg",
  19066. extra: 308 / 294,
  19067. bottom: 0.048
  19068. }
  19069. },
  19070. feral: {
  19071. height: math.unit(7.5, "feet"),
  19072. weight: math.unit(600, "lb"),
  19073. name: "Feral",
  19074. image: {
  19075. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19076. extra: 210 / 186,
  19077. bottom: 0.108
  19078. }
  19079. },
  19080. taur: {
  19081. height: math.unit(11, "feet"),
  19082. weight: math.unit(3300, "lb"),
  19083. name: "Taur",
  19084. image: {
  19085. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19086. extra: 320 / 303,
  19087. bottom: 0.025
  19088. }
  19089. },
  19090. barghest: {
  19091. height: math.unit(11, "feet"),
  19092. weight: math.unit(1300, "lb"),
  19093. name: "Barghest",
  19094. image: {
  19095. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19096. extra: 323 / 302,
  19097. bottom: 0.027
  19098. }
  19099. },
  19100. dick: {
  19101. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19102. name: "Dick",
  19103. image: {
  19104. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19105. }
  19106. },
  19107. dickWere: {
  19108. height: math.unit((20) / 3.8, "feet"),
  19109. name: "Dick (Were)",
  19110. image: {
  19111. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19112. }
  19113. },
  19114. },
  19115. [
  19116. {
  19117. name: "Normal",
  19118. height: math.unit(6 + 1 / 12, "feet"),
  19119. default: true
  19120. },
  19121. ]
  19122. ))
  19123. characterMakers.push(() => makeCharacter(
  19124. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19125. {
  19126. front: {
  19127. height: math.unit(10, "feet"),
  19128. weight: math.unit(350, "lb"),
  19129. name: "Front",
  19130. image: {
  19131. source: "./media/characters/jet/front.svg",
  19132. extra: 2050 / 1980,
  19133. bottom: 0.013
  19134. }
  19135. },
  19136. back: {
  19137. height: math.unit(10, "feet"),
  19138. weight: math.unit(350, "lb"),
  19139. name: "Back",
  19140. image: {
  19141. source: "./media/characters/jet/back.svg",
  19142. extra: 2050 / 1980,
  19143. bottom: 0.013
  19144. }
  19145. },
  19146. },
  19147. [
  19148. {
  19149. name: "Micro",
  19150. height: math.unit(6, "inches")
  19151. },
  19152. {
  19153. name: "Normal",
  19154. height: math.unit(10, "feet"),
  19155. default: true
  19156. },
  19157. {
  19158. name: "Macro",
  19159. height: math.unit(100, "feet")
  19160. },
  19161. ]
  19162. ))
  19163. characterMakers.push(() => makeCharacter(
  19164. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19165. {
  19166. front: {
  19167. height: math.unit(15, "feet"),
  19168. weight: math.unit(2800, "lb"),
  19169. name: "Front",
  19170. image: {
  19171. source: "./media/characters/tanarath/front.svg",
  19172. extra: 2392 / 2220,
  19173. bottom: 0.03
  19174. }
  19175. },
  19176. back: {
  19177. height: math.unit(15, "feet"),
  19178. weight: math.unit(2800, "lb"),
  19179. name: "Back",
  19180. image: {
  19181. source: "./media/characters/tanarath/back.svg",
  19182. extra: 2392 / 2220,
  19183. bottom: 0.03
  19184. }
  19185. },
  19186. },
  19187. [
  19188. {
  19189. name: "Normal",
  19190. height: math.unit(15, "feet"),
  19191. default: true
  19192. },
  19193. ]
  19194. ))
  19195. characterMakers.push(() => makeCharacter(
  19196. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19197. {
  19198. front: {
  19199. height: math.unit(7 + 1 / 12, "feet"),
  19200. weight: math.unit(175, "lb"),
  19201. name: "Front",
  19202. image: {
  19203. source: "./media/characters/patty-cattybatty/front.svg",
  19204. extra: 908 / 874,
  19205. bottom: 0.025
  19206. }
  19207. },
  19208. },
  19209. [
  19210. {
  19211. name: "Micro",
  19212. height: math.unit(1, "inch")
  19213. },
  19214. {
  19215. name: "Normal",
  19216. height: math.unit(7 + 1 / 12, "feet")
  19217. },
  19218. {
  19219. name: "Mini Macro",
  19220. height: math.unit(155, "feet")
  19221. },
  19222. {
  19223. name: "Macro",
  19224. height: math.unit(1077, "feet")
  19225. },
  19226. {
  19227. name: "Mega Macro",
  19228. height: math.unit(47650, "feet"),
  19229. default: true
  19230. },
  19231. {
  19232. name: "Giga Macro",
  19233. height: math.unit(440, "miles")
  19234. },
  19235. {
  19236. name: "Tera Macro",
  19237. height: math.unit(8700, "miles")
  19238. },
  19239. {
  19240. name: "Planetary Macro",
  19241. height: math.unit(32700, "miles")
  19242. },
  19243. {
  19244. name: "Solar Macro",
  19245. height: math.unit(550000, "miles")
  19246. },
  19247. {
  19248. name: "Celestial Macro",
  19249. height: math.unit(2.5, "AU")
  19250. },
  19251. ]
  19252. ))
  19253. characterMakers.push(() => makeCharacter(
  19254. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19255. {
  19256. front: {
  19257. height: math.unit(4 + 5 / 12, "feet"),
  19258. weight: math.unit(90, "lb"),
  19259. name: "Front",
  19260. image: {
  19261. source: "./media/characters/cappu/front.svg",
  19262. extra: 1247 / 1152,
  19263. bottom: 0.012
  19264. }
  19265. },
  19266. },
  19267. [
  19268. {
  19269. name: "Normal",
  19270. height: math.unit(4 + 5 / 12, "feet"),
  19271. default: true
  19272. },
  19273. ]
  19274. ))
  19275. characterMakers.push(() => makeCharacter(
  19276. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19277. {
  19278. frontDressed: {
  19279. height: math.unit(70, "cm"),
  19280. weight: math.unit(6, "kg"),
  19281. name: "Front (Dressed)",
  19282. image: {
  19283. source: "./media/characters/sebi/front-dressed.svg",
  19284. extra: 713.5 / 686.5,
  19285. bottom: 0.003
  19286. }
  19287. },
  19288. front: {
  19289. height: math.unit(70, "cm"),
  19290. weight: math.unit(5, "kg"),
  19291. name: "Front",
  19292. image: {
  19293. source: "./media/characters/sebi/front.svg",
  19294. extra: 713.5 / 686.5,
  19295. bottom: 0.003
  19296. }
  19297. }
  19298. },
  19299. [
  19300. {
  19301. name: "Normal",
  19302. height: math.unit(70, "cm"),
  19303. default: true
  19304. },
  19305. {
  19306. name: "Macro",
  19307. height: math.unit(8, "meters")
  19308. },
  19309. ]
  19310. ))
  19311. characterMakers.push(() => makeCharacter(
  19312. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19313. {
  19314. front: {
  19315. height: math.unit(6, "feet"),
  19316. weight: math.unit(150, "lb"),
  19317. name: "Front",
  19318. image: {
  19319. source: "./media/characters/typhek/front.svg",
  19320. extra: 1948 / 1929,
  19321. bottom: 0.025
  19322. }
  19323. },
  19324. side: {
  19325. height: math.unit(6, "feet"),
  19326. weight: math.unit(150, "lb"),
  19327. name: "Side",
  19328. image: {
  19329. source: "./media/characters/typhek/side.svg",
  19330. extra: 2034 / 2010,
  19331. bottom: 0.003
  19332. }
  19333. },
  19334. back: {
  19335. height: math.unit(6, "feet"),
  19336. weight: math.unit(150, "lb"),
  19337. name: "Back",
  19338. image: {
  19339. source: "./media/characters/typhek/back.svg",
  19340. extra: 2005 / 1978,
  19341. bottom: 0.004
  19342. }
  19343. },
  19344. palm: {
  19345. height: math.unit(1.2, "feet"),
  19346. name: "Palm",
  19347. image: {
  19348. source: "./media/characters/typhek/palm.svg"
  19349. }
  19350. },
  19351. fist: {
  19352. height: math.unit(1.1, "feet"),
  19353. name: "Fist",
  19354. image: {
  19355. source: "./media/characters/typhek/fist.svg"
  19356. }
  19357. },
  19358. foot: {
  19359. height: math.unit(1.57, "feet"),
  19360. name: "Foot",
  19361. image: {
  19362. source: "./media/characters/typhek/foot.svg"
  19363. }
  19364. },
  19365. sole: {
  19366. height: math.unit(2.05, "feet"),
  19367. name: "Sole",
  19368. image: {
  19369. source: "./media/characters/typhek/sole.svg"
  19370. }
  19371. },
  19372. },
  19373. [
  19374. {
  19375. name: "Macro",
  19376. height: math.unit(40, "stories"),
  19377. default: true
  19378. },
  19379. {
  19380. name: "Megamacro",
  19381. height: math.unit(1, "mile")
  19382. },
  19383. {
  19384. name: "Gigamacro",
  19385. height: math.unit(4000, "solarradii")
  19386. },
  19387. {
  19388. name: "Universal",
  19389. height: math.unit(1.1, "universes")
  19390. }
  19391. ]
  19392. ))
  19393. characterMakers.push(() => makeCharacter(
  19394. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19395. {
  19396. side: {
  19397. height: math.unit(5 + 7 / 12, "feet"),
  19398. weight: math.unit(150, "lb"),
  19399. name: "Side",
  19400. image: {
  19401. source: "./media/characters/kassy/side.svg",
  19402. extra: 1280 / 1225,
  19403. bottom: 0.002
  19404. }
  19405. },
  19406. front: {
  19407. height: math.unit(5 + 7 / 12, "feet"),
  19408. weight: math.unit(150, "lb"),
  19409. name: "Front",
  19410. image: {
  19411. source: "./media/characters/kassy/front.svg",
  19412. extra: 1280 / 1225,
  19413. bottom: 0.025
  19414. }
  19415. },
  19416. back: {
  19417. height: math.unit(5 + 7 / 12, "feet"),
  19418. weight: math.unit(150, "lb"),
  19419. name: "Back",
  19420. image: {
  19421. source: "./media/characters/kassy/back.svg",
  19422. extra: 1280 / 1225,
  19423. bottom: 0.002
  19424. }
  19425. },
  19426. foot: {
  19427. height: math.unit(1.266, "feet"),
  19428. name: "Foot",
  19429. image: {
  19430. source: "./media/characters/kassy/foot.svg"
  19431. }
  19432. },
  19433. },
  19434. [
  19435. {
  19436. name: "Normal",
  19437. height: math.unit(5 + 7 / 12, "feet")
  19438. },
  19439. {
  19440. name: "Macro",
  19441. height: math.unit(137, "feet"),
  19442. default: true
  19443. },
  19444. {
  19445. name: "Megamacro",
  19446. height: math.unit(1, "mile")
  19447. },
  19448. ]
  19449. ))
  19450. characterMakers.push(() => makeCharacter(
  19451. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19452. {
  19453. front: {
  19454. height: math.unit(6 + 1 / 12, "feet"),
  19455. weight: math.unit(200, "lb"),
  19456. name: "Front",
  19457. image: {
  19458. source: "./media/characters/neil/front.svg",
  19459. extra: 1326 / 1250,
  19460. bottom: 0.023
  19461. }
  19462. },
  19463. },
  19464. [
  19465. {
  19466. name: "Normal",
  19467. height: math.unit(6 + 1 / 12, "feet"),
  19468. default: true
  19469. },
  19470. {
  19471. name: "Macro",
  19472. height: math.unit(200, "feet")
  19473. },
  19474. ]
  19475. ))
  19476. characterMakers.push(() => makeCharacter(
  19477. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19478. {
  19479. front: {
  19480. height: math.unit(5 + 9 / 12, "feet"),
  19481. weight: math.unit(190, "lb"),
  19482. name: "Front",
  19483. image: {
  19484. source: "./media/characters/atticus/front.svg",
  19485. extra: 2934 / 2785,
  19486. bottom: 0.025
  19487. }
  19488. },
  19489. },
  19490. [
  19491. {
  19492. name: "Normal",
  19493. height: math.unit(5 + 9 / 12, "feet"),
  19494. default: true
  19495. },
  19496. {
  19497. name: "Macro",
  19498. height: math.unit(180, "feet")
  19499. },
  19500. ]
  19501. ))
  19502. characterMakers.push(() => makeCharacter(
  19503. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19504. {
  19505. side: {
  19506. height: math.unit(9, "feet"),
  19507. weight: math.unit(650, "lb"),
  19508. name: "Side",
  19509. image: {
  19510. source: "./media/characters/milo/side.svg",
  19511. extra: 2644 / 2310,
  19512. bottom: 0.032
  19513. }
  19514. },
  19515. },
  19516. [
  19517. {
  19518. name: "Normal",
  19519. height: math.unit(9, "feet"),
  19520. default: true
  19521. },
  19522. {
  19523. name: "Macro",
  19524. height: math.unit(300, "feet")
  19525. },
  19526. ]
  19527. ))
  19528. characterMakers.push(() => makeCharacter(
  19529. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19530. {
  19531. side: {
  19532. height: math.unit(8, "meters"),
  19533. weight: math.unit(90000, "kg"),
  19534. name: "Side",
  19535. image: {
  19536. source: "./media/characters/ijzer/side.svg",
  19537. extra: 2756 / 1600,
  19538. bottom: 0.01
  19539. }
  19540. },
  19541. },
  19542. [
  19543. {
  19544. name: "Small",
  19545. height: math.unit(3, "meters")
  19546. },
  19547. {
  19548. name: "Normal",
  19549. height: math.unit(8, "meters"),
  19550. default: true
  19551. },
  19552. {
  19553. name: "Normal+",
  19554. height: math.unit(10, "meters")
  19555. },
  19556. {
  19557. name: "Bigger",
  19558. height: math.unit(24, "meters")
  19559. },
  19560. {
  19561. name: "Huge",
  19562. height: math.unit(80, "meters")
  19563. },
  19564. ]
  19565. ))
  19566. characterMakers.push(() => makeCharacter(
  19567. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19568. {
  19569. front: {
  19570. height: math.unit(6 + 2 / 12, "feet"),
  19571. weight: math.unit(153, "lb"),
  19572. name: "Front",
  19573. image: {
  19574. source: "./media/characters/luca-cervicum/front.svg",
  19575. extra: 370 / 327,
  19576. bottom: 0.015
  19577. }
  19578. },
  19579. back: {
  19580. height: math.unit(6 + 2 / 12, "feet"),
  19581. weight: math.unit(153, "lb"),
  19582. name: "Back",
  19583. image: {
  19584. source: "./media/characters/luca-cervicum/back.svg",
  19585. extra: 367 / 333,
  19586. bottom: 0.005
  19587. }
  19588. },
  19589. frontGear: {
  19590. height: math.unit(6 + 2 / 12, "feet"),
  19591. weight: math.unit(173, "lb"),
  19592. name: "Front (Gear)",
  19593. image: {
  19594. source: "./media/characters/luca-cervicum/front-gear.svg",
  19595. extra: 377 / 333,
  19596. bottom: 0.006
  19597. }
  19598. },
  19599. },
  19600. [
  19601. {
  19602. name: "Normal",
  19603. height: math.unit(6 + 2 / 12, "feet"),
  19604. default: true
  19605. },
  19606. ]
  19607. ))
  19608. characterMakers.push(() => makeCharacter(
  19609. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19610. {
  19611. front: {
  19612. height: math.unit(6 + 1 / 12, "feet"),
  19613. weight: math.unit(304, "lb"),
  19614. name: "Front",
  19615. image: {
  19616. source: "./media/characters/oliver/front.svg",
  19617. extra: 157 / 143,
  19618. bottom: 0.08
  19619. }
  19620. },
  19621. },
  19622. [
  19623. {
  19624. name: "Normal",
  19625. height: math.unit(6 + 1 / 12, "feet"),
  19626. default: true
  19627. },
  19628. ]
  19629. ))
  19630. characterMakers.push(() => makeCharacter(
  19631. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19632. {
  19633. front: {
  19634. height: math.unit(5 + 7 / 12, "feet"),
  19635. weight: math.unit(140, "lb"),
  19636. name: "Front",
  19637. image: {
  19638. source: "./media/characters/shane/front.svg",
  19639. extra: 304 / 289,
  19640. bottom: 0.005
  19641. }
  19642. },
  19643. },
  19644. [
  19645. {
  19646. name: "Normal",
  19647. height: math.unit(5 + 7 / 12, "feet"),
  19648. default: true
  19649. },
  19650. ]
  19651. ))
  19652. characterMakers.push(() => makeCharacter(
  19653. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19654. {
  19655. front: {
  19656. height: math.unit(5 + 9 / 12, "feet"),
  19657. weight: math.unit(178, "lb"),
  19658. name: "Front",
  19659. image: {
  19660. source: "./media/characters/shin/front.svg",
  19661. extra: 159 / 151,
  19662. bottom: 0.015
  19663. }
  19664. },
  19665. },
  19666. [
  19667. {
  19668. name: "Normal",
  19669. height: math.unit(5 + 9 / 12, "feet"),
  19670. default: true
  19671. },
  19672. ]
  19673. ))
  19674. characterMakers.push(() => makeCharacter(
  19675. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19676. {
  19677. front: {
  19678. height: math.unit(5 + 10 / 12, "feet"),
  19679. weight: math.unit(168, "lb"),
  19680. name: "Front",
  19681. image: {
  19682. source: "./media/characters/xerxes/front.svg",
  19683. extra: 282 / 260,
  19684. bottom: 0.045
  19685. }
  19686. },
  19687. },
  19688. [
  19689. {
  19690. name: "Normal",
  19691. height: math.unit(5 + 10 / 12, "feet"),
  19692. default: true
  19693. },
  19694. ]
  19695. ))
  19696. characterMakers.push(() => makeCharacter(
  19697. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19698. {
  19699. front: {
  19700. height: math.unit(6 + 7 / 12, "feet"),
  19701. weight: math.unit(208, "lb"),
  19702. name: "Front",
  19703. image: {
  19704. source: "./media/characters/chaska/front.svg",
  19705. extra: 332 / 319,
  19706. bottom: 0.015
  19707. }
  19708. },
  19709. },
  19710. [
  19711. {
  19712. name: "Normal",
  19713. height: math.unit(6 + 7 / 12, "feet"),
  19714. default: true
  19715. },
  19716. ]
  19717. ))
  19718. characterMakers.push(() => makeCharacter(
  19719. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19720. {
  19721. front: {
  19722. height: math.unit(5 + 8 / 12, "feet"),
  19723. weight: math.unit(208, "lb"),
  19724. name: "Front",
  19725. image: {
  19726. source: "./media/characters/enuk/front.svg",
  19727. extra: 437 / 406,
  19728. bottom: 0.02
  19729. }
  19730. },
  19731. },
  19732. [
  19733. {
  19734. name: "Normal",
  19735. height: math.unit(5 + 8 / 12, "feet"),
  19736. default: true
  19737. },
  19738. ]
  19739. ))
  19740. characterMakers.push(() => makeCharacter(
  19741. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19742. {
  19743. front: {
  19744. height: math.unit(5 + 10 / 12, "feet"),
  19745. weight: math.unit(252, "lb"),
  19746. name: "Front",
  19747. image: {
  19748. source: "./media/characters/bruun/front.svg",
  19749. extra: 197 / 187,
  19750. bottom: 0.012
  19751. }
  19752. },
  19753. },
  19754. [
  19755. {
  19756. name: "Normal",
  19757. height: math.unit(5 + 10 / 12, "feet"),
  19758. default: true
  19759. },
  19760. ]
  19761. ))
  19762. characterMakers.push(() => makeCharacter(
  19763. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19764. {
  19765. front: {
  19766. height: math.unit(6 + 10 / 12, "feet"),
  19767. weight: math.unit(255, "lb"),
  19768. name: "Front",
  19769. image: {
  19770. source: "./media/characters/alexeev/front.svg",
  19771. extra: 213 / 200,
  19772. bottom: 0.05
  19773. }
  19774. },
  19775. },
  19776. [
  19777. {
  19778. name: "Normal",
  19779. height: math.unit(6 + 10 / 12, "feet"),
  19780. default: true
  19781. },
  19782. ]
  19783. ))
  19784. characterMakers.push(() => makeCharacter(
  19785. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19786. {
  19787. front: {
  19788. height: math.unit(2 + 8 / 12, "feet"),
  19789. weight: math.unit(22, "lb"),
  19790. name: "Front",
  19791. image: {
  19792. source: "./media/characters/evelyn/front.svg",
  19793. extra: 208 / 180
  19794. }
  19795. },
  19796. },
  19797. [
  19798. {
  19799. name: "Normal",
  19800. height: math.unit(2 + 8 / 12, "feet"),
  19801. default: true
  19802. },
  19803. ]
  19804. ))
  19805. characterMakers.push(() => makeCharacter(
  19806. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19807. {
  19808. front: {
  19809. height: math.unit(5 + 9 / 12, "feet"),
  19810. weight: math.unit(139, "lb"),
  19811. name: "Front",
  19812. image: {
  19813. source: "./media/characters/inca/front.svg",
  19814. extra: 294 / 291,
  19815. bottom: 0.03
  19816. }
  19817. },
  19818. },
  19819. [
  19820. {
  19821. name: "Normal",
  19822. height: math.unit(5 + 9 / 12, "feet"),
  19823. default: true
  19824. },
  19825. ]
  19826. ))
  19827. characterMakers.push(() => makeCharacter(
  19828. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19829. {
  19830. front: {
  19831. height: math.unit(5 + 1 / 12, "feet"),
  19832. weight: math.unit(84, "lb"),
  19833. name: "Front",
  19834. image: {
  19835. source: "./media/characters/magdalene/front.svg",
  19836. extra: 293 / 273
  19837. }
  19838. },
  19839. },
  19840. [
  19841. {
  19842. name: "Normal",
  19843. height: math.unit(5 + 1 / 12, "feet"),
  19844. default: true
  19845. },
  19846. ]
  19847. ))
  19848. characterMakers.push(() => makeCharacter(
  19849. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19850. {
  19851. front: {
  19852. height: math.unit(6 + 3 / 12, "feet"),
  19853. weight: math.unit(185, "lb"),
  19854. name: "Front",
  19855. image: {
  19856. source: "./media/characters/mera/front.svg",
  19857. extra: 291 / 277,
  19858. bottom: 0.03
  19859. }
  19860. },
  19861. },
  19862. [
  19863. {
  19864. name: "Normal",
  19865. height: math.unit(6 + 3 / 12, "feet"),
  19866. default: true
  19867. },
  19868. ]
  19869. ))
  19870. characterMakers.push(() => makeCharacter(
  19871. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19872. {
  19873. front: {
  19874. height: math.unit(6 + 7 / 12, "feet"),
  19875. weight: math.unit(160, "lb"),
  19876. name: "Front",
  19877. image: {
  19878. source: "./media/characters/ceres/front.svg",
  19879. extra: 1023 / 950,
  19880. bottom: 0.027
  19881. }
  19882. },
  19883. back: {
  19884. height: math.unit(6 + 7 / 12, "feet"),
  19885. weight: math.unit(160, "lb"),
  19886. name: "Back",
  19887. image: {
  19888. source: "./media/characters/ceres/back.svg",
  19889. extra: 1023 / 950
  19890. }
  19891. },
  19892. },
  19893. [
  19894. {
  19895. name: "Normal",
  19896. height: math.unit(6 + 7 / 12, "feet"),
  19897. default: true
  19898. },
  19899. ]
  19900. ))
  19901. characterMakers.push(() => makeCharacter(
  19902. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19903. {
  19904. front: {
  19905. height: math.unit(5 + 10 / 12, "feet"),
  19906. weight: math.unit(150, "lb"),
  19907. name: "Front",
  19908. image: {
  19909. source: "./media/characters/kris/front.svg",
  19910. extra: 885 / 803,
  19911. bottom: 0.03
  19912. }
  19913. },
  19914. },
  19915. [
  19916. {
  19917. name: "Normal",
  19918. height: math.unit(5 + 10 / 12, "feet"),
  19919. default: true
  19920. },
  19921. ]
  19922. ))
  19923. characterMakers.push(() => makeCharacter(
  19924. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19925. {
  19926. front: {
  19927. height: math.unit(7, "feet"),
  19928. weight: math.unit(120, "kg"),
  19929. name: "Front",
  19930. image: {
  19931. source: "./media/characters/taluthus/front.svg",
  19932. extra: 903 / 833,
  19933. bottom: 0.015
  19934. }
  19935. },
  19936. },
  19937. [
  19938. {
  19939. name: "Normal",
  19940. height: math.unit(7, "feet"),
  19941. default: true
  19942. },
  19943. {
  19944. name: "Macro",
  19945. height: math.unit(300, "feet")
  19946. },
  19947. ]
  19948. ))
  19949. characterMakers.push(() => makeCharacter(
  19950. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19951. {
  19952. front: {
  19953. height: math.unit(5 + 9 / 12, "feet"),
  19954. weight: math.unit(145, "lb"),
  19955. name: "Front",
  19956. image: {
  19957. source: "./media/characters/dawn/front.svg",
  19958. extra: 2094 / 2016,
  19959. bottom: 0.025
  19960. }
  19961. },
  19962. back: {
  19963. height: math.unit(5 + 9 / 12, "feet"),
  19964. weight: math.unit(160, "lb"),
  19965. name: "Back",
  19966. image: {
  19967. source: "./media/characters/dawn/back.svg",
  19968. extra: 2112 / 2080,
  19969. bottom: 0.005
  19970. }
  19971. },
  19972. },
  19973. [
  19974. {
  19975. name: "Normal",
  19976. height: math.unit(6 + 7 / 12, "feet"),
  19977. default: true
  19978. },
  19979. ]
  19980. ))
  19981. characterMakers.push(() => makeCharacter(
  19982. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19983. {
  19984. anthro: {
  19985. height: math.unit(8 + 3 / 12, "feet"),
  19986. weight: math.unit(450, "lb"),
  19987. name: "Anthro",
  19988. image: {
  19989. source: "./media/characters/arador/anthro.svg",
  19990. extra: 1835 / 1718,
  19991. bottom: 0.025
  19992. }
  19993. },
  19994. feral: {
  19995. height: math.unit(4, "feet"),
  19996. weight: math.unit(200, "lb"),
  19997. name: "Feral",
  19998. image: {
  19999. source: "./media/characters/arador/feral.svg",
  20000. extra: 1683 / 1514,
  20001. bottom: 0.07
  20002. }
  20003. },
  20004. },
  20005. [
  20006. {
  20007. name: "Normal",
  20008. height: math.unit(8 + 3 / 12, "feet")
  20009. },
  20010. {
  20011. name: "Macro",
  20012. height: math.unit(82.5, "feet"),
  20013. default: true
  20014. },
  20015. ]
  20016. ))
  20017. characterMakers.push(() => makeCharacter(
  20018. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20019. {
  20020. front: {
  20021. height: math.unit(5 + 10 / 12, "feet"),
  20022. weight: math.unit(125, "lb"),
  20023. name: "Front",
  20024. image: {
  20025. source: "./media/characters/dharsi/front.svg",
  20026. extra: 716 / 630,
  20027. bottom: 0.035
  20028. }
  20029. },
  20030. },
  20031. [
  20032. {
  20033. name: "Nano",
  20034. height: math.unit(100, "nm")
  20035. },
  20036. {
  20037. name: "Micro",
  20038. height: math.unit(2, "inches")
  20039. },
  20040. {
  20041. name: "Normal",
  20042. height: math.unit(5 + 10 / 12, "feet"),
  20043. default: true
  20044. },
  20045. {
  20046. name: "Macro",
  20047. height: math.unit(1000, "feet")
  20048. },
  20049. {
  20050. name: "Megamacro",
  20051. height: math.unit(10, "miles")
  20052. },
  20053. {
  20054. name: "Gigamacro",
  20055. height: math.unit(3000, "miles")
  20056. },
  20057. {
  20058. name: "Teramacro",
  20059. height: math.unit(500000, "miles")
  20060. },
  20061. {
  20062. name: "Teramacro+",
  20063. height: math.unit(30, "galaxies")
  20064. },
  20065. ]
  20066. ))
  20067. characterMakers.push(() => makeCharacter(
  20068. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20069. {
  20070. front: {
  20071. height: math.unit(6, "feet"),
  20072. weight: math.unit(150, "lb"),
  20073. name: "Front",
  20074. image: {
  20075. source: "./media/characters/deathy/front.svg",
  20076. extra: 1552 / 1463,
  20077. bottom: 0.025
  20078. }
  20079. },
  20080. side: {
  20081. height: math.unit(6, "feet"),
  20082. weight: math.unit(150, "lb"),
  20083. name: "Side",
  20084. image: {
  20085. source: "./media/characters/deathy/side.svg",
  20086. extra: 1604 / 1455,
  20087. bottom: 0.025
  20088. }
  20089. },
  20090. back: {
  20091. height: math.unit(6, "feet"),
  20092. weight: math.unit(150, "lb"),
  20093. name: "Back",
  20094. image: {
  20095. source: "./media/characters/deathy/back.svg",
  20096. extra: 1580 / 1463,
  20097. bottom: 0.005
  20098. }
  20099. },
  20100. },
  20101. [
  20102. {
  20103. name: "Micro",
  20104. height: math.unit(5, "millimeters")
  20105. },
  20106. {
  20107. name: "Normal",
  20108. height: math.unit(6 + 5 / 12, "feet"),
  20109. default: true
  20110. },
  20111. ]
  20112. ))
  20113. characterMakers.push(() => makeCharacter(
  20114. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20115. {
  20116. front: {
  20117. height: math.unit(16, "feet"),
  20118. weight: math.unit(4000, "lb"),
  20119. name: "Front",
  20120. image: {
  20121. source: "./media/characters/juniper/front.svg",
  20122. bottom: 0.04
  20123. }
  20124. },
  20125. },
  20126. [
  20127. {
  20128. name: "Normal",
  20129. height: math.unit(16, "feet"),
  20130. default: true
  20131. },
  20132. ]
  20133. ))
  20134. characterMakers.push(() => makeCharacter(
  20135. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20136. {
  20137. front: {
  20138. height: math.unit(6, "feet"),
  20139. weight: math.unit(150, "lb"),
  20140. name: "Front",
  20141. image: {
  20142. source: "./media/characters/hipster/front.svg",
  20143. extra: 1312 / 1209,
  20144. bottom: 0.025
  20145. }
  20146. },
  20147. back: {
  20148. height: math.unit(6, "feet"),
  20149. weight: math.unit(150, "lb"),
  20150. name: "Back",
  20151. image: {
  20152. source: "./media/characters/hipster/back.svg",
  20153. extra: 1281 / 1196,
  20154. bottom: 0.01
  20155. }
  20156. },
  20157. },
  20158. [
  20159. {
  20160. name: "Micro",
  20161. height: math.unit(1, "mm")
  20162. },
  20163. {
  20164. name: "Normal",
  20165. height: math.unit(4, "inches"),
  20166. default: true
  20167. },
  20168. {
  20169. name: "Macro",
  20170. height: math.unit(500, "feet")
  20171. },
  20172. {
  20173. name: "Megamacro",
  20174. height: math.unit(1000, "miles")
  20175. },
  20176. ]
  20177. ))
  20178. characterMakers.push(() => makeCharacter(
  20179. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20180. {
  20181. front: {
  20182. height: math.unit(6, "feet"),
  20183. weight: math.unit(150, "lb"),
  20184. name: "Front",
  20185. image: {
  20186. source: "./media/characters/tendirmuldr/front.svg",
  20187. extra: 1878 / 1772,
  20188. bottom: 0.015
  20189. }
  20190. },
  20191. },
  20192. [
  20193. {
  20194. name: "Megamacro",
  20195. height: math.unit(1500, "miles"),
  20196. default: true
  20197. },
  20198. ]
  20199. ))
  20200. characterMakers.push(() => makeCharacter(
  20201. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20202. {
  20203. front: {
  20204. height: math.unit(14, "feet"),
  20205. weight: math.unit(12000, "lb"),
  20206. name: "Front",
  20207. image: {
  20208. source: "./media/characters/mort/front.svg",
  20209. extra: 365 / 318,
  20210. bottom: 0.01
  20211. }
  20212. },
  20213. side: {
  20214. height: math.unit(14, "feet"),
  20215. weight: math.unit(12000, "lb"),
  20216. name: "Side",
  20217. image: {
  20218. source: "./media/characters/mort/side.svg",
  20219. extra: 365 / 318,
  20220. bottom: 0.052
  20221. },
  20222. default: true
  20223. },
  20224. back: {
  20225. height: math.unit(14, "feet"),
  20226. weight: math.unit(12000, "lb"),
  20227. name: "Back",
  20228. image: {
  20229. source: "./media/characters/mort/back.svg",
  20230. extra: 371 / 332,
  20231. bottom: 0.18
  20232. }
  20233. },
  20234. },
  20235. [
  20236. {
  20237. name: "Normal",
  20238. height: math.unit(14, "feet"),
  20239. default: true
  20240. },
  20241. ]
  20242. ))
  20243. characterMakers.push(() => makeCharacter(
  20244. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20245. {
  20246. front: {
  20247. height: math.unit(8, "feet"),
  20248. weight: math.unit(1, "ton"),
  20249. name: "Front",
  20250. image: {
  20251. source: "./media/characters/lycoa/front.svg",
  20252. extra: 1875 / 1789,
  20253. bottom: 0.022
  20254. }
  20255. },
  20256. back: {
  20257. height: math.unit(8, "feet"),
  20258. weight: math.unit(1, "ton"),
  20259. name: "Back",
  20260. image: {
  20261. source: "./media/characters/lycoa/back.svg",
  20262. extra: 1835 / 1781,
  20263. bottom: 0.03
  20264. }
  20265. },
  20266. head: {
  20267. height: math.unit(2.1, "feet"),
  20268. name: "Head",
  20269. image: {
  20270. source: "./media/characters/lycoa/head.svg"
  20271. }
  20272. },
  20273. tailmaw: {
  20274. height: math.unit(1.9, "feet"),
  20275. name: "Tailmaw",
  20276. image: {
  20277. source: "./media/characters/lycoa/tailmaw.svg"
  20278. }
  20279. },
  20280. tentacles: {
  20281. height: math.unit(2.1, "feet"),
  20282. name: "Tentacles",
  20283. image: {
  20284. source: "./media/characters/lycoa/tentacles.svg"
  20285. }
  20286. },
  20287. dick: {
  20288. height: math.unit(1.73, "feet"),
  20289. name: "Dick",
  20290. image: {
  20291. source: "./media/characters/lycoa/dick.svg"
  20292. }
  20293. },
  20294. },
  20295. [
  20296. {
  20297. name: "Normal",
  20298. height: math.unit(8, "feet"),
  20299. default: true
  20300. },
  20301. {
  20302. name: "Macro",
  20303. height: math.unit(30, "feet")
  20304. },
  20305. ]
  20306. ))
  20307. characterMakers.push(() => makeCharacter(
  20308. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20309. {
  20310. front: {
  20311. height: math.unit(4 + 2 / 12, "feet"),
  20312. weight: math.unit(70, "lb"),
  20313. name: "Front",
  20314. image: {
  20315. source: "./media/characters/naldara/front.svg",
  20316. extra: 841 / 720,
  20317. bottom: 0.04
  20318. }
  20319. },
  20320. naga: {
  20321. height: math.unit(23, "feet"),
  20322. weight: math.unit(15000, "kg"),
  20323. name: "Naga",
  20324. image: {
  20325. source: "./media/characters/naldara/naga.svg",
  20326. extra: 3290 / 2959,
  20327. bottom: 124 / 3432
  20328. }
  20329. },
  20330. },
  20331. [
  20332. {
  20333. name: "Normal",
  20334. height: math.unit(4 + 2 / 12, "feet"),
  20335. default: true
  20336. },
  20337. ]
  20338. ))
  20339. characterMakers.push(() => makeCharacter(
  20340. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20341. {
  20342. front: {
  20343. height: math.unit(13 + 7 / 12, "feet"),
  20344. weight: math.unit(1500, "lb"),
  20345. name: "Front",
  20346. image: {
  20347. source: "./media/characters/briar/front.svg",
  20348. extra: 626 / 596,
  20349. bottom: 0.08
  20350. }
  20351. },
  20352. },
  20353. [
  20354. {
  20355. name: "Normal",
  20356. height: math.unit(13 + 7 / 12, "feet"),
  20357. default: true
  20358. },
  20359. ]
  20360. ))
  20361. characterMakers.push(() => makeCharacter(
  20362. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20363. {
  20364. side: {
  20365. height: math.unit(10, "feet"),
  20366. weight: math.unit(500, "lb"),
  20367. name: "Side",
  20368. image: {
  20369. source: "./media/characters/vanguard/side.svg",
  20370. extra: 502 / 425,
  20371. bottom: 0.087
  20372. }
  20373. },
  20374. },
  20375. [
  20376. {
  20377. name: "Normal",
  20378. height: math.unit(10, "feet"),
  20379. default: true
  20380. },
  20381. ]
  20382. ))
  20383. characterMakers.push(() => makeCharacter(
  20384. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20385. {
  20386. front: {
  20387. height: math.unit(7.5, "feet"),
  20388. weight: math.unit(2, "lb"),
  20389. name: "Front",
  20390. image: {
  20391. source: "./media/characters/artemis/front.svg",
  20392. extra: 1192 / 1075,
  20393. bottom: 0.07
  20394. }
  20395. },
  20396. frontNsfw: {
  20397. height: math.unit(7.5, "feet"),
  20398. weight: math.unit(2, "lb"),
  20399. name: "Front (NSFW)",
  20400. image: {
  20401. source: "./media/characters/artemis/front-nsfw.svg",
  20402. extra: 1192 / 1075,
  20403. bottom: 0.07
  20404. }
  20405. },
  20406. frontNsfwer: {
  20407. height: math.unit(7.5, "feet"),
  20408. weight: math.unit(2, "lb"),
  20409. name: "Front (NSFW-er)",
  20410. image: {
  20411. source: "./media/characters/artemis/front-nsfwer.svg",
  20412. extra: 1192 / 1075,
  20413. bottom: 0.07
  20414. }
  20415. },
  20416. side: {
  20417. height: math.unit(7.5, "feet"),
  20418. weight: math.unit(2, "lb"),
  20419. name: "Side",
  20420. image: {
  20421. source: "./media/characters/artemis/side.svg",
  20422. extra: 1192 / 1075,
  20423. bottom: 0.07
  20424. }
  20425. },
  20426. sideNsfw: {
  20427. height: math.unit(7.5, "feet"),
  20428. weight: math.unit(2, "lb"),
  20429. name: "Side (NSFW)",
  20430. image: {
  20431. source: "./media/characters/artemis/side-nsfw.svg",
  20432. extra: 1192 / 1075,
  20433. bottom: 0.07
  20434. }
  20435. },
  20436. sideNsfwer: {
  20437. height: math.unit(7.5, "feet"),
  20438. weight: math.unit(2, "lb"),
  20439. name: "Side (NSFW-er)",
  20440. image: {
  20441. source: "./media/characters/artemis/side-nsfwer.svg",
  20442. extra: 1192 / 1075,
  20443. bottom: 0.07
  20444. }
  20445. },
  20446. maw: {
  20447. height: math.unit(1.1, "feet"),
  20448. name: "Maw",
  20449. image: {
  20450. source: "./media/characters/artemis/maw.svg"
  20451. }
  20452. },
  20453. stomach: {
  20454. height: math.unit(0.95, "feet"),
  20455. name: "Stomach",
  20456. image: {
  20457. source: "./media/characters/artemis/stomach.svg"
  20458. }
  20459. },
  20460. dickCanine: {
  20461. height: math.unit(1, "feet"),
  20462. name: "Dick (Canine)",
  20463. image: {
  20464. source: "./media/characters/artemis/dick-canine.svg"
  20465. }
  20466. },
  20467. dickEquine: {
  20468. height: math.unit(0.85, "feet"),
  20469. name: "Dick (Equine)",
  20470. image: {
  20471. source: "./media/characters/artemis/dick-equine.svg"
  20472. }
  20473. },
  20474. dickExotic: {
  20475. height: math.unit(0.85, "feet"),
  20476. name: "Dick (Exotic)",
  20477. image: {
  20478. source: "./media/characters/artemis/dick-exotic.svg"
  20479. }
  20480. },
  20481. },
  20482. [
  20483. {
  20484. name: "Normal",
  20485. height: math.unit(7.5, "feet"),
  20486. default: true
  20487. },
  20488. {
  20489. name: "Enlarged",
  20490. height: math.unit(12, "feet")
  20491. },
  20492. ]
  20493. ))
  20494. characterMakers.push(() => makeCharacter(
  20495. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20496. {
  20497. front: {
  20498. height: math.unit(5 + 3 / 12, "feet"),
  20499. weight: math.unit(160, "lb"),
  20500. name: "Front",
  20501. image: {
  20502. source: "./media/characters/kira/front.svg",
  20503. extra: 906 / 786,
  20504. bottom: 0.01
  20505. }
  20506. },
  20507. back: {
  20508. height: math.unit(5 + 3 / 12, "feet"),
  20509. weight: math.unit(160, "lb"),
  20510. name: "Back",
  20511. image: {
  20512. source: "./media/characters/kira/back.svg",
  20513. extra: 882 / 757,
  20514. bottom: 0.005
  20515. }
  20516. },
  20517. frontDressed: {
  20518. height: math.unit(5 + 3 / 12, "feet"),
  20519. weight: math.unit(160, "lb"),
  20520. name: "Front (Dressed)",
  20521. image: {
  20522. source: "./media/characters/kira/front-dressed.svg",
  20523. extra: 906 / 786,
  20524. bottom: 0.01
  20525. }
  20526. },
  20527. beans: {
  20528. height: math.unit(0.92, "feet"),
  20529. name: "Beans",
  20530. image: {
  20531. source: "./media/characters/kira/beans.svg"
  20532. }
  20533. },
  20534. },
  20535. [
  20536. {
  20537. name: "Normal",
  20538. height: math.unit(5 + 3 / 12, "feet"),
  20539. default: true
  20540. },
  20541. ]
  20542. ))
  20543. characterMakers.push(() => makeCharacter(
  20544. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20545. {
  20546. front: {
  20547. height: math.unit(5 + 4 / 12, "feet"),
  20548. weight: math.unit(145, "lb"),
  20549. name: "Front",
  20550. image: {
  20551. source: "./media/characters/scramble/front.svg",
  20552. extra: 763 / 727,
  20553. bottom: 0.05
  20554. }
  20555. },
  20556. back: {
  20557. height: math.unit(5 + 4 / 12, "feet"),
  20558. weight: math.unit(145, "lb"),
  20559. name: "Back",
  20560. image: {
  20561. source: "./media/characters/scramble/back.svg",
  20562. extra: 826 / 737,
  20563. bottom: 0.002
  20564. }
  20565. },
  20566. },
  20567. [
  20568. {
  20569. name: "Normal",
  20570. height: math.unit(5 + 4 / 12, "feet"),
  20571. default: true
  20572. },
  20573. ]
  20574. ))
  20575. characterMakers.push(() => makeCharacter(
  20576. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20577. {
  20578. side: {
  20579. height: math.unit(6 + 2 / 12, "feet"),
  20580. weight: math.unit(190, "lb"),
  20581. name: "Side",
  20582. image: {
  20583. source: "./media/characters/biscuit/side.svg",
  20584. extra: 858 / 791,
  20585. bottom: 0.044
  20586. }
  20587. },
  20588. },
  20589. [
  20590. {
  20591. name: "Normal",
  20592. height: math.unit(6 + 2 / 12, "feet"),
  20593. default: true
  20594. },
  20595. ]
  20596. ))
  20597. characterMakers.push(() => makeCharacter(
  20598. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20599. {
  20600. front: {
  20601. height: math.unit(5 + 2 / 12, "feet"),
  20602. weight: math.unit(120, "lb"),
  20603. name: "Front",
  20604. image: {
  20605. source: "./media/characters/poffin/front.svg",
  20606. extra: 786 / 680,
  20607. bottom: 0.005
  20608. }
  20609. },
  20610. },
  20611. [
  20612. {
  20613. name: "Normal",
  20614. height: math.unit(5 + 2 / 12, "feet"),
  20615. default: true
  20616. },
  20617. ]
  20618. ))
  20619. characterMakers.push(() => makeCharacter(
  20620. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20621. {
  20622. front: {
  20623. height: math.unit(6 + 3 / 12, "feet"),
  20624. weight: math.unit(519, "lb"),
  20625. name: "Front",
  20626. image: {
  20627. source: "./media/characters/dhari/front.svg",
  20628. extra: 1048 / 946,
  20629. bottom: 0.015
  20630. }
  20631. },
  20632. back: {
  20633. height: math.unit(6 + 3 / 12, "feet"),
  20634. weight: math.unit(519, "lb"),
  20635. name: "Back",
  20636. image: {
  20637. source: "./media/characters/dhari/back.svg",
  20638. extra: 1048 / 931,
  20639. bottom: 0.005
  20640. }
  20641. },
  20642. frontDressed: {
  20643. height: math.unit(6 + 3 / 12, "feet"),
  20644. weight: math.unit(519, "lb"),
  20645. name: "Front (Dressed)",
  20646. image: {
  20647. source: "./media/characters/dhari/front-dressed.svg",
  20648. extra: 1713 / 1546,
  20649. bottom: 0.02
  20650. }
  20651. },
  20652. backDressed: {
  20653. height: math.unit(6 + 3 / 12, "feet"),
  20654. weight: math.unit(519, "lb"),
  20655. name: "Back (Dressed)",
  20656. image: {
  20657. source: "./media/characters/dhari/back-dressed.svg",
  20658. extra: 1699 / 1537,
  20659. bottom: 0.01
  20660. }
  20661. },
  20662. maw: {
  20663. height: math.unit(0.95, "feet"),
  20664. name: "Maw",
  20665. image: {
  20666. source: "./media/characters/dhari/maw.svg"
  20667. }
  20668. },
  20669. wereFront: {
  20670. height: math.unit(12 + 8 / 12, "feet"),
  20671. weight: math.unit(4000, "lb"),
  20672. name: "Front (Were)",
  20673. image: {
  20674. source: "./media/characters/dhari/were-front.svg",
  20675. extra: 1065 / 969,
  20676. bottom: 0.015
  20677. }
  20678. },
  20679. wereBack: {
  20680. height: math.unit(12 + 8 / 12, "feet"),
  20681. weight: math.unit(4000, "lb"),
  20682. name: "Back (Were)",
  20683. image: {
  20684. source: "./media/characters/dhari/were-back.svg",
  20685. extra: 1065 / 969,
  20686. bottom: 0.012
  20687. }
  20688. },
  20689. wereMaw: {
  20690. height: math.unit(0.625, "meters"),
  20691. name: "Maw (Were)",
  20692. image: {
  20693. source: "./media/characters/dhari/were-maw.svg"
  20694. }
  20695. },
  20696. },
  20697. [
  20698. {
  20699. name: "Normal",
  20700. height: math.unit(6 + 3 / 12, "feet"),
  20701. default: true
  20702. },
  20703. ]
  20704. ))
  20705. characterMakers.push(() => makeCharacter(
  20706. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20707. {
  20708. anthro: {
  20709. height: math.unit(5 + 7 / 12, "feet"),
  20710. weight: math.unit(175, "lb"),
  20711. name: "Anthro",
  20712. image: {
  20713. source: "./media/characters/rena-dyne/anthro.svg",
  20714. extra: 1849 / 1785,
  20715. bottom: 0.005
  20716. }
  20717. },
  20718. taur: {
  20719. height: math.unit(15 + 6 / 12, "feet"),
  20720. weight: math.unit(8000, "lb"),
  20721. name: "Taur",
  20722. image: {
  20723. source: "./media/characters/rena-dyne/taur.svg",
  20724. extra: 2315 / 2234,
  20725. bottom: 0.033
  20726. }
  20727. },
  20728. },
  20729. [
  20730. {
  20731. name: "Normal",
  20732. height: math.unit(5 + 7 / 12, "feet"),
  20733. default: true
  20734. },
  20735. ]
  20736. ))
  20737. characterMakers.push(() => makeCharacter(
  20738. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20739. {
  20740. front: {
  20741. height: math.unit(8, "feet"),
  20742. weight: math.unit(600, "lb"),
  20743. name: "Front",
  20744. image: {
  20745. source: "./media/characters/weremeep/front.svg",
  20746. extra: 967 / 862,
  20747. bottom: 0.01
  20748. }
  20749. },
  20750. },
  20751. [
  20752. {
  20753. name: "Normal",
  20754. height: math.unit(8, "feet"),
  20755. default: true
  20756. },
  20757. {
  20758. name: "Lorg",
  20759. height: math.unit(12, "feet")
  20760. },
  20761. {
  20762. name: "Oh Lawd She Comin'",
  20763. height: math.unit(20, "feet")
  20764. },
  20765. ]
  20766. ))
  20767. characterMakers.push(() => makeCharacter(
  20768. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20769. {
  20770. front: {
  20771. height: math.unit(4, "feet"),
  20772. weight: math.unit(90, "lb"),
  20773. name: "Front",
  20774. image: {
  20775. source: "./media/characters/reza/front.svg",
  20776. extra: 1183 / 1111,
  20777. bottom: 0.017
  20778. }
  20779. },
  20780. back: {
  20781. height: math.unit(4, "feet"),
  20782. weight: math.unit(90, "lb"),
  20783. name: "Back",
  20784. image: {
  20785. source: "./media/characters/reza/back.svg",
  20786. extra: 1183 / 1111,
  20787. bottom: 0.01
  20788. }
  20789. },
  20790. drake: {
  20791. height: math.unit(30, "feet"),
  20792. weight: math.unit(246960, "lb"),
  20793. name: "Drake",
  20794. image: {
  20795. source: "./media/characters/reza/drake.svg",
  20796. extra: 2350 / 2024,
  20797. bottom: 60.7 / 2403
  20798. }
  20799. },
  20800. },
  20801. [
  20802. {
  20803. name: "Normal",
  20804. height: math.unit(4, "feet"),
  20805. default: true
  20806. },
  20807. ]
  20808. ))
  20809. characterMakers.push(() => makeCharacter(
  20810. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20811. {
  20812. side: {
  20813. height: math.unit(15, "feet"),
  20814. weight: math.unit(14, "tons"),
  20815. name: "Side",
  20816. image: {
  20817. source: "./media/characters/athea/side.svg",
  20818. extra: 960 / 540,
  20819. bottom: 0.003
  20820. }
  20821. },
  20822. sitting: {
  20823. height: math.unit(6 * 2.85, "feet"),
  20824. weight: math.unit(14, "tons"),
  20825. name: "Sitting",
  20826. image: {
  20827. source: "./media/characters/athea/sitting.svg",
  20828. extra: 621 / 581,
  20829. bottom: 0.075
  20830. }
  20831. },
  20832. maw: {
  20833. height: math.unit(7.59498031496063, "feet"),
  20834. name: "Maw",
  20835. image: {
  20836. source: "./media/characters/athea/maw.svg"
  20837. }
  20838. },
  20839. },
  20840. [
  20841. {
  20842. name: "Lap Cat",
  20843. height: math.unit(2.5, "feet")
  20844. },
  20845. {
  20846. name: "Minimacro",
  20847. height: math.unit(15, "feet"),
  20848. default: true
  20849. },
  20850. {
  20851. name: "Macro",
  20852. height: math.unit(120, "feet")
  20853. },
  20854. {
  20855. name: "Macro+",
  20856. height: math.unit(640, "feet")
  20857. },
  20858. {
  20859. name: "Colossus",
  20860. height: math.unit(2.2, "miles")
  20861. },
  20862. ]
  20863. ))
  20864. characterMakers.push(() => makeCharacter(
  20865. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20866. {
  20867. front: {
  20868. height: math.unit(8 + 8 / 12, "feet"),
  20869. weight: math.unit(130, "kg"),
  20870. name: "Front",
  20871. image: {
  20872. source: "./media/characters/seroko/front.svg",
  20873. extra: 1385 / 1280,
  20874. bottom: 0.025
  20875. }
  20876. },
  20877. back: {
  20878. height: math.unit(8 + 8 / 12, "feet"),
  20879. weight: math.unit(130, "kg"),
  20880. name: "Back",
  20881. image: {
  20882. source: "./media/characters/seroko/back.svg",
  20883. extra: 1369 / 1238,
  20884. bottom: 0.018
  20885. }
  20886. },
  20887. frontDressed: {
  20888. height: math.unit(8 + 8 / 12, "feet"),
  20889. weight: math.unit(130, "kg"),
  20890. name: "Front (Dressed)",
  20891. image: {
  20892. source: "./media/characters/seroko/front-dressed.svg",
  20893. extra: 1366 / 1275,
  20894. bottom: 0.03
  20895. }
  20896. },
  20897. },
  20898. [
  20899. {
  20900. name: "Normal",
  20901. height: math.unit(8 + 8 / 12, "feet"),
  20902. default: true
  20903. },
  20904. ]
  20905. ))
  20906. characterMakers.push(() => makeCharacter(
  20907. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20908. {
  20909. front: {
  20910. height: math.unit(5.5, "feet"),
  20911. weight: math.unit(160, "lb"),
  20912. name: "Front",
  20913. image: {
  20914. source: "./media/characters/quatzi/front.svg",
  20915. extra: 2346 / 2242,
  20916. bottom: 0.015
  20917. }
  20918. },
  20919. },
  20920. [
  20921. {
  20922. name: "Normal",
  20923. height: math.unit(5.5, "feet"),
  20924. default: true
  20925. },
  20926. {
  20927. name: "Big",
  20928. height: math.unit(7.7, "feet")
  20929. },
  20930. ]
  20931. ))
  20932. characterMakers.push(() => makeCharacter(
  20933. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20934. {
  20935. front: {
  20936. height: math.unit(5 + 11 / 12, "feet"),
  20937. weight: math.unit(180, "lb"),
  20938. name: "Front",
  20939. image: {
  20940. source: "./media/characters/sen/front.svg",
  20941. extra: 1321 / 1254,
  20942. bottom: 0.015
  20943. }
  20944. },
  20945. side: {
  20946. height: math.unit(5 + 11 / 12, "feet"),
  20947. weight: math.unit(180, "lb"),
  20948. name: "Side",
  20949. image: {
  20950. source: "./media/characters/sen/side.svg",
  20951. extra: 1321 / 1254,
  20952. bottom: 0.007
  20953. }
  20954. },
  20955. back: {
  20956. height: math.unit(5 + 11 / 12, "feet"),
  20957. weight: math.unit(180, "lb"),
  20958. name: "Back",
  20959. image: {
  20960. source: "./media/characters/sen/back.svg",
  20961. extra: 1321 / 1254
  20962. }
  20963. },
  20964. },
  20965. [
  20966. {
  20967. name: "Normal",
  20968. height: math.unit(5 + 11 / 12, "feet"),
  20969. default: true
  20970. },
  20971. ]
  20972. ))
  20973. characterMakers.push(() => makeCharacter(
  20974. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20975. {
  20976. front: {
  20977. height: math.unit(166.6, "cm"),
  20978. weight: math.unit(66.6, "kg"),
  20979. name: "Front",
  20980. image: {
  20981. source: "./media/characters/fruity/front.svg",
  20982. extra: 1510 / 1386,
  20983. bottom: 0.04
  20984. }
  20985. },
  20986. back: {
  20987. height: math.unit(166.6, "cm"),
  20988. weight: math.unit(66.6, "lb"),
  20989. name: "Back",
  20990. image: {
  20991. source: "./media/characters/fruity/back.svg",
  20992. extra: 1563 / 1435,
  20993. bottom: 0.005
  20994. }
  20995. },
  20996. },
  20997. [
  20998. {
  20999. name: "Normal",
  21000. height: math.unit(166.6, "cm"),
  21001. default: true
  21002. },
  21003. {
  21004. name: "Demonic",
  21005. height: math.unit(166.6, "feet")
  21006. },
  21007. ]
  21008. ))
  21009. characterMakers.push(() => makeCharacter(
  21010. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21011. {
  21012. side: {
  21013. height: math.unit(10, "feet"),
  21014. weight: math.unit(500, "lb"),
  21015. name: "Side",
  21016. image: {
  21017. source: "./media/characters/zost/side.svg",
  21018. extra: 966 / 880,
  21019. bottom: 0.075
  21020. }
  21021. },
  21022. mawFront: {
  21023. height: math.unit(1.08, "meters"),
  21024. name: "Maw (Front)",
  21025. image: {
  21026. source: "./media/characters/zost/maw-front.svg"
  21027. }
  21028. },
  21029. mawSide: {
  21030. height: math.unit(2.66, "feet"),
  21031. name: "Maw (Side)",
  21032. image: {
  21033. source: "./media/characters/zost/maw-side.svg"
  21034. }
  21035. },
  21036. },
  21037. [
  21038. {
  21039. name: "Normal",
  21040. height: math.unit(10, "feet"),
  21041. default: true
  21042. },
  21043. ]
  21044. ))
  21045. characterMakers.push(() => makeCharacter(
  21046. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21047. {
  21048. front: {
  21049. height: math.unit(5 + 4 / 12, "feet"),
  21050. weight: math.unit(120, "lb"),
  21051. name: "Front",
  21052. image: {
  21053. source: "./media/characters/luci/front.svg",
  21054. extra: 1985 / 1884,
  21055. bottom: 0.04
  21056. }
  21057. },
  21058. back: {
  21059. height: math.unit(5 + 4 / 12, "feet"),
  21060. weight: math.unit(120, "lb"),
  21061. name: "Back",
  21062. image: {
  21063. source: "./media/characters/luci/back.svg",
  21064. extra: 1892 / 1791,
  21065. bottom: 0.002
  21066. }
  21067. },
  21068. },
  21069. [
  21070. {
  21071. name: "Normal",
  21072. height: math.unit(5 + 4 / 12, "feet"),
  21073. default: true
  21074. },
  21075. ]
  21076. ))
  21077. characterMakers.push(() => makeCharacter(
  21078. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21079. {
  21080. front: {
  21081. height: math.unit(1500, "feet"),
  21082. weight: math.unit(3.8e6, "tons"),
  21083. name: "Front",
  21084. image: {
  21085. source: "./media/characters/2th/front.svg",
  21086. extra: 3489 / 3350,
  21087. bottom: 0.1
  21088. }
  21089. },
  21090. foot: {
  21091. height: math.unit(461, "feet"),
  21092. name: "Foot",
  21093. image: {
  21094. source: "./media/characters/2th/foot.svg"
  21095. }
  21096. },
  21097. },
  21098. [
  21099. {
  21100. name: "\"Micro\"",
  21101. height: math.unit(15 + 7 / 12, "feet")
  21102. },
  21103. {
  21104. name: "Normal",
  21105. height: math.unit(1500, "feet"),
  21106. default: true
  21107. },
  21108. {
  21109. name: "Macro",
  21110. height: math.unit(5000, "feet")
  21111. },
  21112. {
  21113. name: "Megamacro",
  21114. height: math.unit(15, "miles")
  21115. },
  21116. {
  21117. name: "Gigamacro",
  21118. height: math.unit(4000, "miles")
  21119. },
  21120. {
  21121. name: "Galactic",
  21122. height: math.unit(50, "AU")
  21123. },
  21124. ]
  21125. ))
  21126. characterMakers.push(() => makeCharacter(
  21127. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21128. {
  21129. front: {
  21130. height: math.unit(5 + 6 / 12, "feet"),
  21131. weight: math.unit(220, "lb"),
  21132. name: "Front",
  21133. image: {
  21134. source: "./media/characters/amethyst/front.svg",
  21135. extra: 2078 / 2040,
  21136. bottom: 0.045
  21137. }
  21138. },
  21139. back: {
  21140. height: math.unit(5 + 6 / 12, "feet"),
  21141. weight: math.unit(220, "lb"),
  21142. name: "Back",
  21143. image: {
  21144. source: "./media/characters/amethyst/back.svg",
  21145. extra: 2021 / 1989,
  21146. bottom: 0.02
  21147. }
  21148. },
  21149. },
  21150. [
  21151. {
  21152. name: "Normal",
  21153. height: math.unit(5 + 6 / 12, "feet"),
  21154. default: true
  21155. },
  21156. ]
  21157. ))
  21158. characterMakers.push(() => makeCharacter(
  21159. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21160. {
  21161. front: {
  21162. height: math.unit(4 + 11 / 12, "feet"),
  21163. weight: math.unit(120, "lb"),
  21164. name: "Front",
  21165. image: {
  21166. source: "./media/characters/yumi-akiyama/front.svg",
  21167. extra: 1327 / 1235,
  21168. bottom: 0.02
  21169. }
  21170. },
  21171. back: {
  21172. height: math.unit(4 + 11 / 12, "feet"),
  21173. weight: math.unit(120, "lb"),
  21174. name: "Back",
  21175. image: {
  21176. source: "./media/characters/yumi-akiyama/back.svg",
  21177. extra: 1287 / 1245,
  21178. bottom: 0.002
  21179. }
  21180. },
  21181. },
  21182. [
  21183. {
  21184. name: "Galactic",
  21185. height: math.unit(50, "galaxies"),
  21186. default: true
  21187. },
  21188. {
  21189. name: "Universal",
  21190. height: math.unit(100, "universes")
  21191. },
  21192. ]
  21193. ))
  21194. characterMakers.push(() => makeCharacter(
  21195. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21196. {
  21197. front: {
  21198. height: math.unit(8, "feet"),
  21199. weight: math.unit(500, "lb"),
  21200. name: "Front",
  21201. image: {
  21202. source: "./media/characters/rifter-yrmori/front.svg",
  21203. extra: 1180 / 1125,
  21204. bottom: 0.02
  21205. }
  21206. },
  21207. back: {
  21208. height: math.unit(8, "feet"),
  21209. weight: math.unit(500, "lb"),
  21210. name: "Back",
  21211. image: {
  21212. source: "./media/characters/rifter-yrmori/back.svg",
  21213. extra: 1190 / 1145,
  21214. bottom: 0.001
  21215. }
  21216. },
  21217. wings: {
  21218. height: math.unit(7.75, "feet"),
  21219. weight: math.unit(500, "lb"),
  21220. name: "Wings",
  21221. image: {
  21222. source: "./media/characters/rifter-yrmori/wings.svg",
  21223. extra: 1357 / 1285
  21224. }
  21225. },
  21226. maw: {
  21227. height: math.unit(0.8, "feet"),
  21228. name: "Maw",
  21229. image: {
  21230. source: "./media/characters/rifter-yrmori/maw.svg"
  21231. }
  21232. },
  21233. mawfront: {
  21234. height: math.unit(1.45, "feet"),
  21235. name: "Maw (Front)",
  21236. image: {
  21237. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21238. }
  21239. },
  21240. },
  21241. [
  21242. {
  21243. name: "Normal",
  21244. height: math.unit(8, "feet"),
  21245. default: true
  21246. },
  21247. {
  21248. name: "Macro",
  21249. height: math.unit(42, "meters")
  21250. },
  21251. ]
  21252. ))
  21253. characterMakers.push(() => makeCharacter(
  21254. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21255. {
  21256. were: {
  21257. height: math.unit(25 + 6 / 12, "feet"),
  21258. weight: math.unit(10000, "lb"),
  21259. name: "Were",
  21260. image: {
  21261. source: "./media/characters/tahajin/were.svg",
  21262. extra: 801 / 770,
  21263. bottom: 0.042
  21264. }
  21265. },
  21266. aquatic: {
  21267. height: math.unit(6 + 4 / 12, "feet"),
  21268. weight: math.unit(160, "lb"),
  21269. name: "Aquatic",
  21270. image: {
  21271. source: "./media/characters/tahajin/aquatic.svg",
  21272. extra: 572 / 542,
  21273. bottom: 0.04
  21274. }
  21275. },
  21276. chow: {
  21277. height: math.unit(8 + 11 / 12, "feet"),
  21278. weight: math.unit(450, "lb"),
  21279. name: "Chow",
  21280. image: {
  21281. source: "./media/characters/tahajin/chow.svg",
  21282. extra: 660 / 640,
  21283. bottom: 0.015
  21284. }
  21285. },
  21286. demiNaga: {
  21287. height: math.unit(6 + 8 / 12, "feet"),
  21288. weight: math.unit(300, "lb"),
  21289. name: "Demi Naga",
  21290. image: {
  21291. source: "./media/characters/tahajin/demi-naga.svg",
  21292. extra: 643 / 615,
  21293. bottom: 0.1
  21294. }
  21295. },
  21296. data: {
  21297. height: math.unit(5, "inches"),
  21298. weight: math.unit(0.1, "lb"),
  21299. name: "Data",
  21300. image: {
  21301. source: "./media/characters/tahajin/data.svg"
  21302. }
  21303. },
  21304. fluu: {
  21305. height: math.unit(5 + 7 / 12, "feet"),
  21306. weight: math.unit(140, "lb"),
  21307. name: "Fluu",
  21308. image: {
  21309. source: "./media/characters/tahajin/fluu.svg",
  21310. extra: 628 / 592,
  21311. bottom: 0.02
  21312. }
  21313. },
  21314. starWarrior: {
  21315. height: math.unit(4 + 5 / 12, "feet"),
  21316. weight: math.unit(50, "lb"),
  21317. name: "Star Warrior",
  21318. image: {
  21319. source: "./media/characters/tahajin/star-warrior.svg"
  21320. }
  21321. },
  21322. },
  21323. [
  21324. {
  21325. name: "Normal",
  21326. height: math.unit(25 + 6 / 12, "feet"),
  21327. default: true
  21328. },
  21329. ]
  21330. ))
  21331. characterMakers.push(() => makeCharacter(
  21332. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21333. {
  21334. front: {
  21335. height: math.unit(8, "feet"),
  21336. weight: math.unit(350, "lb"),
  21337. name: "Front",
  21338. image: {
  21339. source: "./media/characters/gabira/front.svg",
  21340. extra: 608 / 580,
  21341. bottom: 0.03
  21342. }
  21343. },
  21344. back: {
  21345. height: math.unit(8, "feet"),
  21346. weight: math.unit(350, "lb"),
  21347. name: "Back",
  21348. image: {
  21349. source: "./media/characters/gabira/back.svg",
  21350. extra: 608 / 580,
  21351. bottom: 0.03
  21352. }
  21353. },
  21354. },
  21355. [
  21356. {
  21357. name: "Normal",
  21358. height: math.unit(8, "feet"),
  21359. default: true
  21360. },
  21361. ]
  21362. ))
  21363. characterMakers.push(() => makeCharacter(
  21364. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21365. {
  21366. front: {
  21367. height: math.unit(5 + 3 / 12, "feet"),
  21368. weight: math.unit(137, "lb"),
  21369. name: "Front",
  21370. image: {
  21371. source: "./media/characters/sasha-katraine/front.svg",
  21372. bottom: 0.045
  21373. }
  21374. },
  21375. },
  21376. [
  21377. {
  21378. name: "Micro",
  21379. height: math.unit(5, "inches")
  21380. },
  21381. {
  21382. name: "Normal",
  21383. height: math.unit(5 + 3 / 12, "feet"),
  21384. default: true
  21385. },
  21386. ]
  21387. ))
  21388. characterMakers.push(() => makeCharacter(
  21389. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21390. {
  21391. side: {
  21392. height: math.unit(4, "inches"),
  21393. weight: math.unit(200, "grams"),
  21394. name: "Side",
  21395. image: {
  21396. source: "./media/characters/der/side.svg",
  21397. extra: 719 / 400,
  21398. bottom: 30.6 / 749.9187
  21399. }
  21400. },
  21401. },
  21402. [
  21403. {
  21404. name: "Micro",
  21405. height: math.unit(4, "inches"),
  21406. default: true
  21407. },
  21408. ]
  21409. ))
  21410. characterMakers.push(() => makeCharacter(
  21411. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21412. {
  21413. side: {
  21414. height: math.unit(30, "meters"),
  21415. weight: math.unit(700, "tonnes"),
  21416. name: "Side",
  21417. image: {
  21418. source: "./media/characters/fixerdragon/side.svg",
  21419. extra: (1293.0514 - 116.03) / 1106.86,
  21420. bottom: 116.03 / 1293.0514
  21421. }
  21422. },
  21423. },
  21424. [
  21425. {
  21426. name: "Planck",
  21427. height: math.unit(1.6e-35, "meters")
  21428. },
  21429. {
  21430. name: "Micro",
  21431. height: math.unit(0.4, "meters")
  21432. },
  21433. {
  21434. name: "Normal",
  21435. height: math.unit(30, "meters"),
  21436. default: true
  21437. },
  21438. {
  21439. name: "Megamacro",
  21440. height: math.unit(1.2, "megameters")
  21441. },
  21442. {
  21443. name: "Teramacro",
  21444. height: math.unit(130, "terameters")
  21445. },
  21446. {
  21447. name: "Yottamacro",
  21448. height: math.unit(6200, "yottameters")
  21449. },
  21450. ]
  21451. ));
  21452. characterMakers.push(() => makeCharacter(
  21453. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21454. {
  21455. front: {
  21456. height: math.unit(8, "feet"),
  21457. weight: math.unit(250, "lb"),
  21458. name: "Front",
  21459. image: {
  21460. source: "./media/characters/kite/front.svg",
  21461. extra: 2796 / 2659,
  21462. bottom: 0.002
  21463. }
  21464. },
  21465. },
  21466. [
  21467. {
  21468. name: "Normal",
  21469. height: math.unit(8, "feet"),
  21470. default: true
  21471. },
  21472. {
  21473. name: "Macro",
  21474. height: math.unit(360, "feet")
  21475. },
  21476. {
  21477. name: "Megamacro",
  21478. height: math.unit(1500, "feet")
  21479. },
  21480. ]
  21481. ))
  21482. characterMakers.push(() => makeCharacter(
  21483. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21484. {
  21485. front: {
  21486. height: math.unit(5 + 10 / 12, "feet"),
  21487. weight: math.unit(150, "lb"),
  21488. name: "Front",
  21489. image: {
  21490. source: "./media/characters/poojawa-vynar/front.svg",
  21491. extra: (1506.1547 - 55) / 1356.6,
  21492. bottom: 55 / 1506.1547
  21493. }
  21494. },
  21495. frontTailless: {
  21496. height: math.unit(5 + 10 / 12, "feet"),
  21497. weight: math.unit(150, "lb"),
  21498. name: "Front (Tailless)",
  21499. image: {
  21500. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21501. extra: (1506.1547 - 55) / 1356.6,
  21502. bottom: 55 / 1506.1547
  21503. }
  21504. },
  21505. },
  21506. [
  21507. {
  21508. name: "Normal",
  21509. height: math.unit(5 + 10 / 12, "feet"),
  21510. default: true
  21511. },
  21512. ]
  21513. ))
  21514. characterMakers.push(() => makeCharacter(
  21515. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21516. {
  21517. front: {
  21518. height: math.unit(293, "meters"),
  21519. weight: math.unit(70400, "tons"),
  21520. name: "Front",
  21521. image: {
  21522. source: "./media/characters/violette/front.svg",
  21523. extra: 1227 / 1180,
  21524. bottom: 0.005
  21525. }
  21526. },
  21527. back: {
  21528. height: math.unit(293, "meters"),
  21529. weight: math.unit(70400, "tons"),
  21530. name: "Back",
  21531. image: {
  21532. source: "./media/characters/violette/back.svg",
  21533. extra: 1227 / 1180,
  21534. bottom: 0.005
  21535. }
  21536. },
  21537. },
  21538. [
  21539. {
  21540. name: "Macro",
  21541. height: math.unit(293, "meters"),
  21542. default: true
  21543. },
  21544. ]
  21545. ))
  21546. characterMakers.push(() => makeCharacter(
  21547. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21548. {
  21549. front: {
  21550. height: math.unit(1050, "feet"),
  21551. weight: math.unit(200000, "tons"),
  21552. name: "Front",
  21553. image: {
  21554. source: "./media/characters/alessandra/front.svg",
  21555. extra: 960 / 912,
  21556. bottom: 0.06
  21557. }
  21558. },
  21559. },
  21560. [
  21561. {
  21562. name: "Macro",
  21563. height: math.unit(1050, "feet")
  21564. },
  21565. {
  21566. name: "Macro+",
  21567. height: math.unit(900, "meters"),
  21568. default: true
  21569. },
  21570. ]
  21571. ))
  21572. characterMakers.push(() => makeCharacter(
  21573. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21574. {
  21575. front: {
  21576. height: math.unit(5, "feet"),
  21577. weight: math.unit(187, "lb"),
  21578. name: "Front",
  21579. image: {
  21580. source: "./media/characters/person/front.svg",
  21581. extra: 3087 / 2945,
  21582. bottom: 91 / 3181
  21583. }
  21584. },
  21585. },
  21586. [
  21587. {
  21588. name: "Micro",
  21589. height: math.unit(3, "inches")
  21590. },
  21591. {
  21592. name: "Normal",
  21593. height: math.unit(5, "feet"),
  21594. default: true
  21595. },
  21596. {
  21597. name: "Macro",
  21598. height: math.unit(90, "feet")
  21599. },
  21600. {
  21601. name: "Max Size",
  21602. height: math.unit(280, "feet")
  21603. },
  21604. ]
  21605. ))
  21606. characterMakers.push(() => makeCharacter(
  21607. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21608. {
  21609. front: {
  21610. height: math.unit(4.5, "meters"),
  21611. weight: math.unit(3200, "lb"),
  21612. name: "Front",
  21613. image: {
  21614. source: "./media/characters/ty/front.svg",
  21615. extra: 1038 / 960,
  21616. bottom: 31.156 / 1068
  21617. }
  21618. },
  21619. back: {
  21620. height: math.unit(4.5, "meters"),
  21621. weight: math.unit(3200, "lb"),
  21622. name: "Back",
  21623. image: {
  21624. source: "./media/characters/ty/back.svg",
  21625. extra: 1044 / 966,
  21626. bottom: 7.48 / 1049
  21627. }
  21628. },
  21629. },
  21630. [
  21631. {
  21632. name: "Normal",
  21633. height: math.unit(4.5, "meters"),
  21634. default: true
  21635. },
  21636. ]
  21637. ))
  21638. characterMakers.push(() => makeCharacter(
  21639. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21640. {
  21641. front: {
  21642. height: math.unit(5 + 4 / 12, "feet"),
  21643. weight: math.unit(115, "lb"),
  21644. name: "Front",
  21645. image: {
  21646. source: "./media/characters/rocky/front.svg",
  21647. extra: 1012 / 975,
  21648. bottom: 54 / 1066
  21649. }
  21650. },
  21651. },
  21652. [
  21653. {
  21654. name: "Normal",
  21655. height: math.unit(5 + 4 / 12, "feet"),
  21656. default: true
  21657. },
  21658. ]
  21659. ))
  21660. characterMakers.push(() => makeCharacter(
  21661. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21662. {
  21663. upright: {
  21664. height: math.unit(6, "meters"),
  21665. weight: math.unit(4000, "kg"),
  21666. name: "Upright",
  21667. image: {
  21668. source: "./media/characters/ruin/upright.svg",
  21669. extra: 668 / 661,
  21670. bottom: 42 / 799.8396
  21671. }
  21672. },
  21673. },
  21674. [
  21675. {
  21676. name: "Normal",
  21677. height: math.unit(6, "meters"),
  21678. default: true
  21679. },
  21680. ]
  21681. ))
  21682. characterMakers.push(() => makeCharacter(
  21683. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21684. {
  21685. front: {
  21686. height: math.unit(5, "feet"),
  21687. weight: math.unit(106, "lb"),
  21688. name: "Front",
  21689. image: {
  21690. source: "./media/characters/robin/front.svg",
  21691. extra: 862 / 799,
  21692. bottom: 42.4 / 914.8856
  21693. }
  21694. },
  21695. },
  21696. [
  21697. {
  21698. name: "Normal",
  21699. height: math.unit(5, "feet"),
  21700. default: true
  21701. },
  21702. ]
  21703. ))
  21704. characterMakers.push(() => makeCharacter(
  21705. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21706. {
  21707. side: {
  21708. height: math.unit(3, "feet"),
  21709. weight: math.unit(225, "lb"),
  21710. name: "Side",
  21711. image: {
  21712. source: "./media/characters/saian/side.svg",
  21713. extra: 566 / 356,
  21714. bottom: 79.7 / 643
  21715. }
  21716. },
  21717. maw: {
  21718. height: math.unit(2.85, "feet"),
  21719. name: "Maw",
  21720. image: {
  21721. source: "./media/characters/saian/maw.svg"
  21722. }
  21723. },
  21724. },
  21725. [
  21726. {
  21727. name: "Normal",
  21728. height: math.unit(3, "feet"),
  21729. default: true
  21730. },
  21731. ]
  21732. ))
  21733. characterMakers.push(() => makeCharacter(
  21734. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21735. {
  21736. side: {
  21737. height: math.unit(8, "feet"),
  21738. weight: math.unit(300, "lb"),
  21739. name: "Side",
  21740. image: {
  21741. source: "./media/characters/equus-silvermane/side.svg",
  21742. extra: 2176 / 2050,
  21743. bottom: 65.7 / 2245
  21744. }
  21745. },
  21746. front: {
  21747. height: math.unit(8, "feet"),
  21748. weight: math.unit(300, "lb"),
  21749. name: "Front",
  21750. image: {
  21751. source: "./media/characters/equus-silvermane/front.svg",
  21752. extra: 4633 / 4400,
  21753. bottom: 71.3 / 4706.915
  21754. }
  21755. },
  21756. sideStepping: {
  21757. height: math.unit(8, "feet"),
  21758. weight: math.unit(300, "lb"),
  21759. name: "Side (Stepping)",
  21760. image: {
  21761. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21762. extra: 1968 / 1860,
  21763. bottom: 16.4 / 1989
  21764. }
  21765. },
  21766. },
  21767. [
  21768. {
  21769. name: "Normal",
  21770. height: math.unit(8, "feet")
  21771. },
  21772. {
  21773. name: "Minimacro",
  21774. height: math.unit(75, "feet"),
  21775. default: true
  21776. },
  21777. {
  21778. name: "Macro",
  21779. height: math.unit(150, "feet")
  21780. },
  21781. {
  21782. name: "Macro+",
  21783. height: math.unit(1000, "feet")
  21784. },
  21785. {
  21786. name: "Megamacro",
  21787. height: math.unit(1, "mile")
  21788. },
  21789. ]
  21790. ))
  21791. characterMakers.push(() => makeCharacter(
  21792. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21793. {
  21794. side: {
  21795. height: math.unit(20, "feet"),
  21796. weight: math.unit(30000, "kg"),
  21797. name: "Side",
  21798. image: {
  21799. source: "./media/characters/windar/side.svg",
  21800. extra: 1491 / 1248,
  21801. bottom: 82.56 / 1568
  21802. }
  21803. },
  21804. },
  21805. [
  21806. {
  21807. name: "Normal",
  21808. height: math.unit(20, "feet"),
  21809. default: true
  21810. },
  21811. ]
  21812. ))
  21813. characterMakers.push(() => makeCharacter(
  21814. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21815. {
  21816. side: {
  21817. height: math.unit(15.66, "feet"),
  21818. weight: math.unit(150, "lb"),
  21819. name: "Side",
  21820. image: {
  21821. source: "./media/characters/melody/side.svg",
  21822. extra: 1097 / 944,
  21823. bottom: 11.8 / 1109
  21824. }
  21825. },
  21826. sideOutfit: {
  21827. height: math.unit(15.66, "feet"),
  21828. weight: math.unit(150, "lb"),
  21829. name: "Side (Outfit)",
  21830. image: {
  21831. source: "./media/characters/melody/side-outfit.svg",
  21832. extra: 1097 / 944,
  21833. bottom: 11.8 / 1109
  21834. }
  21835. },
  21836. },
  21837. [
  21838. {
  21839. name: "Normal",
  21840. height: math.unit(15.66, "feet"),
  21841. default: true
  21842. },
  21843. ]
  21844. ))
  21845. characterMakers.push(() => makeCharacter(
  21846. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21847. {
  21848. front: {
  21849. height: math.unit(8, "feet"),
  21850. weight: math.unit(325, "lb"),
  21851. name: "Front",
  21852. image: {
  21853. source: "./media/characters/windera/front.svg",
  21854. extra: 3180 / 2845,
  21855. bottom: 178 / 3365
  21856. }
  21857. },
  21858. },
  21859. [
  21860. {
  21861. name: "Normal",
  21862. height: math.unit(8, "feet"),
  21863. default: true
  21864. },
  21865. ]
  21866. ))
  21867. characterMakers.push(() => makeCharacter(
  21868. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21869. {
  21870. front: {
  21871. height: math.unit(28.75, "feet"),
  21872. weight: math.unit(2000, "kg"),
  21873. name: "Front",
  21874. image: {
  21875. source: "./media/characters/sonear/front.svg",
  21876. extra: 1041.1 / 964.9,
  21877. bottom: 53.7 / 1096.6
  21878. }
  21879. },
  21880. },
  21881. [
  21882. {
  21883. name: "Normal",
  21884. height: math.unit(28.75, "feet"),
  21885. default: true
  21886. },
  21887. ]
  21888. ))
  21889. characterMakers.push(() => makeCharacter(
  21890. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21891. {
  21892. side: {
  21893. height: math.unit(25.5, "feet"),
  21894. weight: math.unit(23000, "kg"),
  21895. name: "Side",
  21896. image: {
  21897. source: "./media/characters/kanara/side.svg"
  21898. }
  21899. },
  21900. },
  21901. [
  21902. {
  21903. name: "Normal",
  21904. height: math.unit(25.5, "feet"),
  21905. default: true
  21906. },
  21907. ]
  21908. ))
  21909. characterMakers.push(() => makeCharacter(
  21910. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21911. {
  21912. side: {
  21913. height: math.unit(10, "feet"),
  21914. weight: math.unit(1000, "kg"),
  21915. name: "Side",
  21916. image: {
  21917. source: "./media/characters/ereus/side.svg",
  21918. extra: 1157 / 959,
  21919. bottom: 153 / 1312.5
  21920. }
  21921. },
  21922. },
  21923. [
  21924. {
  21925. name: "Normal",
  21926. height: math.unit(10, "feet"),
  21927. default: true
  21928. },
  21929. ]
  21930. ))
  21931. characterMakers.push(() => makeCharacter(
  21932. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21933. {
  21934. side: {
  21935. height: math.unit(4.5, "feet"),
  21936. weight: math.unit(500, "lb"),
  21937. name: "Side",
  21938. image: {
  21939. source: "./media/characters/e-ter/side.svg",
  21940. extra: 1550 / 1248,
  21941. bottom: 146 / 1694
  21942. }
  21943. },
  21944. },
  21945. [
  21946. {
  21947. name: "Normal",
  21948. height: math.unit(4.5, "feet"),
  21949. default: true
  21950. },
  21951. ]
  21952. ))
  21953. characterMakers.push(() => makeCharacter(
  21954. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21955. {
  21956. side: {
  21957. height: math.unit(9.7, "feet"),
  21958. weight: math.unit(4000, "kg"),
  21959. name: "Side",
  21960. image: {
  21961. source: "./media/characters/yamie/side.svg"
  21962. }
  21963. },
  21964. },
  21965. [
  21966. {
  21967. name: "Normal",
  21968. height: math.unit(9.7, "feet"),
  21969. default: true
  21970. },
  21971. ]
  21972. ))
  21973. characterMakers.push(() => makeCharacter(
  21974. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21975. {
  21976. front: {
  21977. height: math.unit(50, "feet"),
  21978. weight: math.unit(50000, "kg"),
  21979. name: "Front",
  21980. image: {
  21981. source: "./media/characters/anders/front.svg",
  21982. extra: 570 / 539,
  21983. bottom: 14.7 / 586.7
  21984. }
  21985. },
  21986. },
  21987. [
  21988. {
  21989. name: "Large",
  21990. height: math.unit(50, "feet")
  21991. },
  21992. {
  21993. name: "Macro",
  21994. height: math.unit(2000, "feet"),
  21995. default: true
  21996. },
  21997. {
  21998. name: "Megamacro",
  21999. height: math.unit(12, "miles")
  22000. },
  22001. ]
  22002. ))
  22003. characterMakers.push(() => makeCharacter(
  22004. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22005. {
  22006. front: {
  22007. height: math.unit(7 + 2 / 12, "feet"),
  22008. weight: math.unit(300, "lb"),
  22009. name: "Front",
  22010. image: {
  22011. source: "./media/characters/reban/front.svg",
  22012. extra: 516 / 487,
  22013. bottom: 42.82 / 558.356
  22014. }
  22015. },
  22016. dick: {
  22017. height: math.unit(7 / 5, "feet"),
  22018. name: "Dick",
  22019. image: {
  22020. source: "./media/characters/reban/dick.svg"
  22021. }
  22022. },
  22023. },
  22024. [
  22025. {
  22026. name: "Natural Height",
  22027. height: math.unit(7 + 2 / 12, "feet")
  22028. },
  22029. {
  22030. name: "Macro",
  22031. height: math.unit(500, "feet"),
  22032. default: true
  22033. },
  22034. {
  22035. name: "Canon Height",
  22036. height: math.unit(50, "AU")
  22037. },
  22038. ]
  22039. ))
  22040. characterMakers.push(() => makeCharacter(
  22041. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22042. {
  22043. front: {
  22044. height: math.unit(6, "feet"),
  22045. weight: math.unit(150, "lb"),
  22046. name: "Front",
  22047. image: {
  22048. source: "./media/characters/terrance-keayes/front.svg",
  22049. extra: 1.005,
  22050. bottom: 151 / 1615
  22051. }
  22052. },
  22053. side: {
  22054. height: math.unit(6, "feet"),
  22055. weight: math.unit(150, "lb"),
  22056. name: "Side",
  22057. image: {
  22058. source: "./media/characters/terrance-keayes/side.svg",
  22059. extra: 1.005,
  22060. bottom: 129.4 / 1544
  22061. }
  22062. },
  22063. back: {
  22064. height: math.unit(6, "feet"),
  22065. weight: math.unit(150, "lb"),
  22066. name: "Back",
  22067. image: {
  22068. source: "./media/characters/terrance-keayes/back.svg",
  22069. extra: 1.005,
  22070. bottom: 58.4 / 1557.3
  22071. }
  22072. },
  22073. dick: {
  22074. height: math.unit(6 * 0.208, "feet"),
  22075. name: "Dick",
  22076. image: {
  22077. source: "./media/characters/terrance-keayes/dick.svg"
  22078. }
  22079. },
  22080. },
  22081. [
  22082. {
  22083. name: "Canon Height",
  22084. height: math.unit(35, "miles"),
  22085. default: true
  22086. },
  22087. ]
  22088. ))
  22089. characterMakers.push(() => makeCharacter(
  22090. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22091. {
  22092. front: {
  22093. height: math.unit(6, "feet"),
  22094. weight: math.unit(150, "lb"),
  22095. name: "Front",
  22096. image: {
  22097. source: "./media/characters/ofelia/front.svg",
  22098. extra: 546 / 541,
  22099. bottom: 39 / 583
  22100. }
  22101. },
  22102. back: {
  22103. height: math.unit(6, "feet"),
  22104. weight: math.unit(150, "lb"),
  22105. name: "Back",
  22106. image: {
  22107. source: "./media/characters/ofelia/back.svg",
  22108. extra: 564 / 559.5,
  22109. bottom: 8.69 / 573.02
  22110. }
  22111. },
  22112. maw: {
  22113. height: math.unit(1, "feet"),
  22114. name: "Maw",
  22115. image: {
  22116. source: "./media/characters/ofelia/maw.svg"
  22117. }
  22118. },
  22119. foot: {
  22120. height: math.unit(1.949, "feet"),
  22121. name: "Foot",
  22122. image: {
  22123. source: "./media/characters/ofelia/foot.svg"
  22124. }
  22125. },
  22126. },
  22127. [
  22128. {
  22129. name: "Canon Height",
  22130. height: math.unit(2000, "miles"),
  22131. default: true
  22132. },
  22133. ]
  22134. ))
  22135. characterMakers.push(() => makeCharacter(
  22136. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22137. {
  22138. front: {
  22139. height: math.unit(6, "feet"),
  22140. weight: math.unit(150, "lb"),
  22141. name: "Front",
  22142. image: {
  22143. source: "./media/characters/samuel/front.svg",
  22144. extra: 265 / 258,
  22145. bottom: 2 / 266.1566
  22146. }
  22147. },
  22148. },
  22149. [
  22150. {
  22151. name: "Macro",
  22152. height: math.unit(100, "feet"),
  22153. default: true
  22154. },
  22155. {
  22156. name: "Full Size",
  22157. height: math.unit(1000, "miles")
  22158. },
  22159. ]
  22160. ))
  22161. characterMakers.push(() => makeCharacter(
  22162. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22163. {
  22164. front: {
  22165. height: math.unit(6, "feet"),
  22166. weight: math.unit(300, "lb"),
  22167. name: "Front",
  22168. image: {
  22169. source: "./media/characters/beishir-kiel/front.svg",
  22170. extra: 569 / 547,
  22171. bottom: 41.9 / 609
  22172. }
  22173. },
  22174. maw: {
  22175. height: math.unit(6 * 0.202, "feet"),
  22176. name: "Maw",
  22177. image: {
  22178. source: "./media/characters/beishir-kiel/maw.svg"
  22179. }
  22180. },
  22181. },
  22182. [
  22183. {
  22184. name: "Macro",
  22185. height: math.unit(300, "feet"),
  22186. default: true
  22187. },
  22188. ]
  22189. ))
  22190. characterMakers.push(() => makeCharacter(
  22191. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22192. {
  22193. front: {
  22194. height: math.unit(5 + 7/12, "feet"),
  22195. weight: math.unit(120, "lb"),
  22196. name: "Front",
  22197. image: {
  22198. source: "./media/characters/logan-grey/front.svg",
  22199. extra: 1836/1738,
  22200. bottom: 108/1944
  22201. }
  22202. },
  22203. back: {
  22204. height: math.unit(5 + 7/12, "feet"),
  22205. weight: math.unit(120, "lb"),
  22206. name: "Back",
  22207. image: {
  22208. source: "./media/characters/logan-grey/back.svg",
  22209. extra: 1880/1794,
  22210. bottom: 24/1904
  22211. }
  22212. },
  22213. frontSfw: {
  22214. height: math.unit(5 + 7/12, "feet"),
  22215. weight: math.unit(120, "lb"),
  22216. name: "Front (SFW)",
  22217. image: {
  22218. source: "./media/characters/logan-grey/front-sfw.svg",
  22219. extra: 1836/1738,
  22220. bottom: 108/1944
  22221. }
  22222. },
  22223. backSfw: {
  22224. height: math.unit(5 + 7/12, "feet"),
  22225. weight: math.unit(120, "lb"),
  22226. name: "Back (SFW)",
  22227. image: {
  22228. source: "./media/characters/logan-grey/back-sfw.svg",
  22229. extra: 1880/1794,
  22230. bottom: 24/1904
  22231. }
  22232. },
  22233. hands: {
  22234. height: math.unit(0.84, "feet"),
  22235. name: "Hands",
  22236. image: {
  22237. source: "./media/characters/logan-grey/hands.svg"
  22238. }
  22239. },
  22240. paws: {
  22241. height: math.unit(0.72, "feet"),
  22242. name: "Paws",
  22243. image: {
  22244. source: "./media/characters/logan-grey/paws.svg"
  22245. }
  22246. },
  22247. cock: {
  22248. height: math.unit(1.45, "feet"),
  22249. name: "Cock",
  22250. image: {
  22251. source: "./media/characters/logan-grey/cock.svg"
  22252. }
  22253. },
  22254. cockAlt: {
  22255. height: math.unit(1.437, "feet"),
  22256. name: "Cock (alt)",
  22257. image: {
  22258. source: "./media/characters/logan-grey/cock-alt.svg"
  22259. }
  22260. },
  22261. },
  22262. [
  22263. {
  22264. name: "Normal",
  22265. height: math.unit(5 + 8 / 12, "feet")
  22266. },
  22267. {
  22268. name: "The 500 Foot Femboy",
  22269. height: math.unit(500, "feet"),
  22270. default: true
  22271. },
  22272. {
  22273. name: "Megmacro",
  22274. height: math.unit(20, "miles")
  22275. },
  22276. ]
  22277. ))
  22278. characterMakers.push(() => makeCharacter(
  22279. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22280. {
  22281. front: {
  22282. height: math.unit(8 + 2 / 12, "feet"),
  22283. weight: math.unit(275, "lb"),
  22284. name: "Front",
  22285. image: {
  22286. source: "./media/characters/draganta/front.svg",
  22287. extra: 1177 / 1135,
  22288. bottom: 33.46 / 1212.1
  22289. }
  22290. },
  22291. },
  22292. [
  22293. {
  22294. name: "Normal",
  22295. height: math.unit(8 + 6 / 12, "feet"),
  22296. default: true
  22297. },
  22298. {
  22299. name: "Macro",
  22300. height: math.unit(150, "feet")
  22301. },
  22302. {
  22303. name: "Megamacro",
  22304. height: math.unit(1000, "miles")
  22305. },
  22306. ]
  22307. ))
  22308. characterMakers.push(() => makeCharacter(
  22309. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22310. {
  22311. front: {
  22312. height: math.unit(1.72, "m"),
  22313. weight: math.unit(80, "lb"),
  22314. name: "Front",
  22315. image: {
  22316. source: "./media/characters/voski/front.svg",
  22317. extra: 2076.22 / 2022.4,
  22318. bottom: 102.7 / 2177.3866
  22319. }
  22320. },
  22321. frontNsfw: {
  22322. height: math.unit(1.72, "m"),
  22323. weight: math.unit(80, "lb"),
  22324. name: "Front (NSFW)",
  22325. image: {
  22326. source: "./media/characters/voski/front-nsfw.svg",
  22327. extra: 2076.22 / 2022.4,
  22328. bottom: 102.7 / 2177.3866
  22329. }
  22330. },
  22331. back: {
  22332. height: math.unit(1.72, "m"),
  22333. weight: math.unit(80, "lb"),
  22334. name: "Back",
  22335. image: {
  22336. source: "./media/characters/voski/back.svg",
  22337. extra: 2104 / 2051,
  22338. bottom: 10.45 / 2113.63
  22339. }
  22340. },
  22341. },
  22342. [
  22343. {
  22344. name: "Normal",
  22345. height: math.unit(1.72, "m")
  22346. },
  22347. {
  22348. name: "Macro",
  22349. height: math.unit(55, "m"),
  22350. default: true
  22351. },
  22352. {
  22353. name: "Macro+",
  22354. height: math.unit(300, "m")
  22355. },
  22356. {
  22357. name: "Macro++",
  22358. height: math.unit(700, "m")
  22359. },
  22360. {
  22361. name: "Macro+++",
  22362. height: math.unit(4500, "m")
  22363. },
  22364. {
  22365. name: "Macro++++",
  22366. height: math.unit(45, "km")
  22367. },
  22368. {
  22369. name: "Macro+++++",
  22370. height: math.unit(1220, "km")
  22371. },
  22372. ]
  22373. ))
  22374. characterMakers.push(() => makeCharacter(
  22375. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22376. {
  22377. front: {
  22378. height: math.unit(2.3, "m"),
  22379. weight: math.unit(304, "kg"),
  22380. name: "Front",
  22381. image: {
  22382. source: "./media/characters/icowom-lee/front.svg",
  22383. extra: 985 / 955,
  22384. bottom: 25.4 / 1012
  22385. }
  22386. },
  22387. fronttentacles: {
  22388. height: math.unit(2.3, "m"),
  22389. weight: math.unit(304, "kg"),
  22390. name: "Front-tentacles",
  22391. image: {
  22392. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22393. extra: 985 / 955,
  22394. bottom: 25.4 / 1012
  22395. }
  22396. },
  22397. back: {
  22398. height: math.unit(2.3, "m"),
  22399. weight: math.unit(304, "kg"),
  22400. name: "Back",
  22401. image: {
  22402. source: "./media/characters/icowom-lee/back.svg",
  22403. extra: 975 / 954,
  22404. bottom: 9.5 / 985
  22405. }
  22406. },
  22407. backtentacles: {
  22408. height: math.unit(2.3, "m"),
  22409. weight: math.unit(304, "kg"),
  22410. name: "Back-tentacles",
  22411. image: {
  22412. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22413. extra: 975 / 954,
  22414. bottom: 9.5 / 985
  22415. }
  22416. },
  22417. frontDressed: {
  22418. height: math.unit(2.3, "m"),
  22419. weight: math.unit(304, "kg"),
  22420. name: "Front (Dressed)",
  22421. image: {
  22422. source: "./media/characters/icowom-lee/front-dressed.svg",
  22423. extra: 3076 / 2933,
  22424. bottom: 51.4 / 3125.1889
  22425. }
  22426. },
  22427. rump: {
  22428. height: math.unit(0.776, "meters"),
  22429. name: "Rump",
  22430. image: {
  22431. source: "./media/characters/icowom-lee/rump.svg"
  22432. }
  22433. },
  22434. genitals: {
  22435. height: math.unit(0.78, "meters"),
  22436. name: "Genitals",
  22437. image: {
  22438. source: "./media/characters/icowom-lee/genitals.svg"
  22439. }
  22440. },
  22441. },
  22442. [
  22443. {
  22444. name: "Normal",
  22445. height: math.unit(2.3, "meters"),
  22446. default: true
  22447. },
  22448. {
  22449. name: "Macro",
  22450. height: math.unit(94, "meters"),
  22451. default: true
  22452. },
  22453. ]
  22454. ))
  22455. characterMakers.push(() => makeCharacter(
  22456. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22457. {
  22458. front: {
  22459. height: math.unit(22, "meters"),
  22460. weight: math.unit(21000, "kg"),
  22461. name: "Front",
  22462. image: {
  22463. source: "./media/characters/shock-diamond/front.svg",
  22464. extra: 2204 / 2053,
  22465. bottom: 65 / 2239.47
  22466. }
  22467. },
  22468. frontNude: {
  22469. height: math.unit(22, "meters"),
  22470. weight: math.unit(21000, "kg"),
  22471. name: "Front (Nude)",
  22472. image: {
  22473. source: "./media/characters/shock-diamond/front-nude.svg",
  22474. extra: 2514 / 2285,
  22475. bottom: 13 / 2527.56
  22476. }
  22477. },
  22478. },
  22479. [
  22480. {
  22481. name: "Normal",
  22482. height: math.unit(3, "meters")
  22483. },
  22484. {
  22485. name: "Macro",
  22486. height: math.unit(22, "meters"),
  22487. default: true
  22488. },
  22489. ]
  22490. ))
  22491. characterMakers.push(() => makeCharacter(
  22492. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22493. {
  22494. front: {
  22495. height: math.unit(5 + 4 / 12, "feet"),
  22496. weight: math.unit(120, "lb"),
  22497. name: "Front",
  22498. image: {
  22499. source: "./media/characters/rory/front.svg",
  22500. extra: 1318/1241,
  22501. bottom: 42/1360
  22502. }
  22503. },
  22504. back: {
  22505. height: math.unit(5 + 4 / 12, "feet"),
  22506. weight: math.unit(120, "lb"),
  22507. name: "Back",
  22508. image: {
  22509. source: "./media/characters/rory/back.svg",
  22510. extra: 1318/1241,
  22511. bottom: 42/1360
  22512. }
  22513. },
  22514. butt: {
  22515. height: math.unit(1.74, "feet"),
  22516. name: "Butt",
  22517. image: {
  22518. source: "./media/characters/rory/butt.svg"
  22519. }
  22520. },
  22521. dick: {
  22522. height: math.unit(1.02, "feet"),
  22523. name: "Dick",
  22524. image: {
  22525. source: "./media/characters/rory/dick.svg"
  22526. }
  22527. },
  22528. paws: {
  22529. height: math.unit(1, "feet"),
  22530. name: "Paws",
  22531. image: {
  22532. source: "./media/characters/rory/paws.svg"
  22533. }
  22534. },
  22535. frontAlt: {
  22536. height: math.unit(5 + 4 / 12, "feet"),
  22537. weight: math.unit(120, "lb"),
  22538. name: "Front (Alt)",
  22539. image: {
  22540. source: "./media/characters/rory/front-alt.svg",
  22541. extra: 589 / 556,
  22542. bottom: 45.7 / 635.76
  22543. }
  22544. },
  22545. frontAltNude: {
  22546. height: math.unit(5 + 4 / 12, "feet"),
  22547. weight: math.unit(120, "lb"),
  22548. name: "Front (Alt, Nude)",
  22549. image: {
  22550. source: "./media/characters/rory/front-alt-nude.svg",
  22551. extra: 589 / 556,
  22552. bottom: 45.7 / 635.76
  22553. }
  22554. },
  22555. side: {
  22556. height: math.unit(5 + 4 / 12, "feet"),
  22557. weight: math.unit(120, "lb"),
  22558. name: "Side",
  22559. image: {
  22560. source: "./media/characters/rory/side.svg",
  22561. extra: 597 / 564,
  22562. bottom: 55 / 653
  22563. }
  22564. },
  22565. backAlt: {
  22566. height: math.unit(5 + 4 / 12, "feet"),
  22567. weight: math.unit(120, "lb"),
  22568. name: "Back (Alt)",
  22569. image: {
  22570. source: "./media/characters/rory/back-alt.svg",
  22571. extra: 620 / 585,
  22572. bottom: 8.86 / 630.43
  22573. }
  22574. },
  22575. dickAlt: {
  22576. height: math.unit(0.86, "feet"),
  22577. name: "Dick (Alt)",
  22578. image: {
  22579. source: "./media/characters/rory/dick-alt.svg"
  22580. }
  22581. },
  22582. },
  22583. [
  22584. {
  22585. name: "Normal",
  22586. height: math.unit(5 + 4 / 12, "feet"),
  22587. default: true
  22588. },
  22589. {
  22590. name: "Macro",
  22591. height: math.unit(100, "feet")
  22592. },
  22593. {
  22594. name: "Macro+",
  22595. height: math.unit(140, "feet")
  22596. },
  22597. {
  22598. name: "Macro++",
  22599. height: math.unit(300, "feet")
  22600. },
  22601. ]
  22602. ))
  22603. characterMakers.push(() => makeCharacter(
  22604. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22605. {
  22606. front: {
  22607. height: math.unit(5 + 9 / 12, "feet"),
  22608. weight: math.unit(190, "lb"),
  22609. name: "Front",
  22610. image: {
  22611. source: "./media/characters/sprisk/front.svg",
  22612. extra: 1225 / 1180,
  22613. bottom: 42.7 / 1266.4
  22614. }
  22615. },
  22616. frontNsfw: {
  22617. height: math.unit(5 + 9 / 12, "feet"),
  22618. weight: math.unit(190, "lb"),
  22619. name: "Front (NSFW)",
  22620. image: {
  22621. source: "./media/characters/sprisk/front-nsfw.svg",
  22622. extra: 1225 / 1180,
  22623. bottom: 42.7 / 1266.4
  22624. }
  22625. },
  22626. back: {
  22627. height: math.unit(5 + 9 / 12, "feet"),
  22628. weight: math.unit(190, "lb"),
  22629. name: "Back",
  22630. image: {
  22631. source: "./media/characters/sprisk/back.svg",
  22632. extra: 1247 / 1200,
  22633. bottom: 5.6 / 1253.04
  22634. }
  22635. },
  22636. },
  22637. [
  22638. {
  22639. name: "Tiny",
  22640. height: math.unit(2, "inches")
  22641. },
  22642. {
  22643. name: "Normal",
  22644. height: math.unit(5 + 9 / 12, "feet"),
  22645. default: true
  22646. },
  22647. {
  22648. name: "Mini Macro",
  22649. height: math.unit(18, "feet")
  22650. },
  22651. {
  22652. name: "Macro",
  22653. height: math.unit(100, "feet")
  22654. },
  22655. {
  22656. name: "MACRO",
  22657. height: math.unit(50, "miles")
  22658. },
  22659. {
  22660. name: "M A C R O",
  22661. height: math.unit(300, "miles")
  22662. },
  22663. ]
  22664. ))
  22665. characterMakers.push(() => makeCharacter(
  22666. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22667. {
  22668. side: {
  22669. height: math.unit(15.6, "meters"),
  22670. weight: math.unit(700000, "kg"),
  22671. name: "Side",
  22672. image: {
  22673. source: "./media/characters/bunsen/side.svg",
  22674. extra: 1644 / 358
  22675. }
  22676. },
  22677. foot: {
  22678. height: math.unit(1.611 * 1644 / 358, "meter"),
  22679. name: "Foot",
  22680. image: {
  22681. source: "./media/characters/bunsen/foot.svg"
  22682. }
  22683. },
  22684. },
  22685. [
  22686. {
  22687. name: "Small",
  22688. height: math.unit(10, "feet")
  22689. },
  22690. {
  22691. name: "Normal",
  22692. height: math.unit(15.6, "meters"),
  22693. default: true
  22694. },
  22695. ]
  22696. ))
  22697. characterMakers.push(() => makeCharacter(
  22698. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22699. {
  22700. front: {
  22701. height: math.unit(4 + 11 / 12, "feet"),
  22702. weight: math.unit(140, "lb"),
  22703. name: "Front",
  22704. image: {
  22705. source: "./media/characters/sesh/front.svg",
  22706. extra: 3420 / 3231,
  22707. bottom: 72 / 3949.5
  22708. }
  22709. },
  22710. },
  22711. [
  22712. {
  22713. name: "Normal",
  22714. height: math.unit(4 + 11 / 12, "feet")
  22715. },
  22716. {
  22717. name: "Grown",
  22718. height: math.unit(15, "feet"),
  22719. default: true
  22720. },
  22721. {
  22722. name: "Macro",
  22723. height: math.unit(1500, "feet")
  22724. },
  22725. {
  22726. name: "Megamacro",
  22727. height: math.unit(30, "miles")
  22728. },
  22729. {
  22730. name: "Continental",
  22731. height: math.unit(3000, "miles")
  22732. },
  22733. {
  22734. name: "Gravity Mass",
  22735. height: math.unit(300000, "miles")
  22736. },
  22737. {
  22738. name: "Planet Buster",
  22739. height: math.unit(30000000, "miles")
  22740. },
  22741. {
  22742. name: "Big",
  22743. height: math.unit(3000000000, "miles")
  22744. },
  22745. ]
  22746. ))
  22747. characterMakers.push(() => makeCharacter(
  22748. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22749. {
  22750. front: {
  22751. height: math.unit(9, "feet"),
  22752. weight: math.unit(350, "lb"),
  22753. name: "Front",
  22754. image: {
  22755. source: "./media/characters/pepper/front.svg",
  22756. extra: 1448 / 1312,
  22757. bottom: 9.4 / 1457.88
  22758. }
  22759. },
  22760. back: {
  22761. height: math.unit(9, "feet"),
  22762. weight: math.unit(350, "lb"),
  22763. name: "Back",
  22764. image: {
  22765. source: "./media/characters/pepper/back.svg",
  22766. extra: 1423 / 1300,
  22767. bottom: 4.6 / 1429
  22768. }
  22769. },
  22770. maw: {
  22771. height: math.unit(0.932, "feet"),
  22772. name: "Maw",
  22773. image: {
  22774. source: "./media/characters/pepper/maw.svg"
  22775. }
  22776. },
  22777. },
  22778. [
  22779. {
  22780. name: "Normal",
  22781. height: math.unit(9, "feet"),
  22782. default: true
  22783. },
  22784. ]
  22785. ))
  22786. characterMakers.push(() => makeCharacter(
  22787. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22788. {
  22789. front: {
  22790. height: math.unit(6, "feet"),
  22791. weight: math.unit(150, "lb"),
  22792. name: "Front",
  22793. image: {
  22794. source: "./media/characters/maelstrom/front.svg",
  22795. extra: 2100 / 1883,
  22796. bottom: 94 / 2196.7
  22797. }
  22798. },
  22799. },
  22800. [
  22801. {
  22802. name: "Less Kaiju",
  22803. height: math.unit(200, "feet")
  22804. },
  22805. {
  22806. name: "Kaiju",
  22807. height: math.unit(400, "feet"),
  22808. default: true
  22809. },
  22810. {
  22811. name: "Kaiju-er",
  22812. height: math.unit(600, "feet")
  22813. },
  22814. ]
  22815. ))
  22816. characterMakers.push(() => makeCharacter(
  22817. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22818. {
  22819. front: {
  22820. height: math.unit(6 + 5 / 12, "feet"),
  22821. weight: math.unit(180, "lb"),
  22822. name: "Front",
  22823. image: {
  22824. source: "./media/characters/lexir/front.svg",
  22825. extra: 180 / 172,
  22826. bottom: 12 / 192
  22827. }
  22828. },
  22829. back: {
  22830. height: math.unit(6 + 5 / 12, "feet"),
  22831. weight: math.unit(180, "lb"),
  22832. name: "Back",
  22833. image: {
  22834. source: "./media/characters/lexir/back.svg",
  22835. extra: 183.84 / 175.5,
  22836. bottom: 3.1 / 187
  22837. }
  22838. },
  22839. },
  22840. [
  22841. {
  22842. name: "Very Smal",
  22843. height: math.unit(1, "nm")
  22844. },
  22845. {
  22846. name: "Normal",
  22847. height: math.unit(6 + 5 / 12, "feet"),
  22848. default: true
  22849. },
  22850. {
  22851. name: "Macro",
  22852. height: math.unit(1, "mile")
  22853. },
  22854. {
  22855. name: "Megamacro",
  22856. height: math.unit(50, "miles")
  22857. },
  22858. ]
  22859. ))
  22860. characterMakers.push(() => makeCharacter(
  22861. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22862. {
  22863. front: {
  22864. height: math.unit(1.5, "meters"),
  22865. weight: math.unit(100, "lb"),
  22866. name: "Front",
  22867. image: {
  22868. source: "./media/characters/maksio/front.svg",
  22869. extra: 1549 / 1531,
  22870. bottom: 123.7 / 1674.5429
  22871. }
  22872. },
  22873. back: {
  22874. height: math.unit(1.5, "meters"),
  22875. weight: math.unit(100, "lb"),
  22876. name: "Back",
  22877. image: {
  22878. source: "./media/characters/maksio/back.svg",
  22879. extra: 1541 / 1509,
  22880. bottom: 97 / 1639
  22881. }
  22882. },
  22883. hand: {
  22884. height: math.unit(0.621, "feet"),
  22885. name: "Hand",
  22886. image: {
  22887. source: "./media/characters/maksio/hand.svg"
  22888. }
  22889. },
  22890. foot: {
  22891. height: math.unit(1.611, "feet"),
  22892. name: "Foot",
  22893. image: {
  22894. source: "./media/characters/maksio/foot.svg"
  22895. }
  22896. },
  22897. },
  22898. [
  22899. {
  22900. name: "Shrunken",
  22901. height: math.unit(10, "cm")
  22902. },
  22903. {
  22904. name: "Normal",
  22905. height: math.unit(150, "cm"),
  22906. default: true
  22907. },
  22908. ]
  22909. ))
  22910. characterMakers.push(() => makeCharacter(
  22911. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22912. {
  22913. front: {
  22914. height: math.unit(100, "feet"),
  22915. name: "Front",
  22916. image: {
  22917. source: "./media/characters/erza-bear/front.svg",
  22918. extra: 2449 / 2390,
  22919. bottom: 46 / 2494
  22920. }
  22921. },
  22922. back: {
  22923. height: math.unit(100, "feet"),
  22924. name: "Back",
  22925. image: {
  22926. source: "./media/characters/erza-bear/back.svg",
  22927. extra: 2489 / 2430,
  22928. bottom: 85.4 / 2480
  22929. }
  22930. },
  22931. tail: {
  22932. height: math.unit(42, "feet"),
  22933. name: "Tail",
  22934. image: {
  22935. source: "./media/characters/erza-bear/tail.svg"
  22936. }
  22937. },
  22938. tongue: {
  22939. height: math.unit(8, "feet"),
  22940. name: "Tongue",
  22941. image: {
  22942. source: "./media/characters/erza-bear/tongue.svg"
  22943. }
  22944. },
  22945. dick: {
  22946. height: math.unit(10.5, "feet"),
  22947. name: "Dick",
  22948. image: {
  22949. source: "./media/characters/erza-bear/dick.svg"
  22950. }
  22951. },
  22952. dickVertical: {
  22953. height: math.unit(16.9, "feet"),
  22954. name: "Dick (Vertical)",
  22955. image: {
  22956. source: "./media/characters/erza-bear/dick-vertical.svg"
  22957. }
  22958. },
  22959. },
  22960. [
  22961. {
  22962. name: "Macro",
  22963. height: math.unit(100, "feet"),
  22964. default: true
  22965. },
  22966. ]
  22967. ))
  22968. characterMakers.push(() => makeCharacter(
  22969. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22970. {
  22971. front: {
  22972. height: math.unit(172, "cm"),
  22973. weight: math.unit(73, "kg"),
  22974. name: "Front",
  22975. image: {
  22976. source: "./media/characters/violet-flor/front.svg",
  22977. extra: 1530 / 1442,
  22978. bottom: 61.9 / 1588.8
  22979. }
  22980. },
  22981. back: {
  22982. height: math.unit(180, "cm"),
  22983. weight: math.unit(73, "kg"),
  22984. name: "Back",
  22985. image: {
  22986. source: "./media/characters/violet-flor/back.svg",
  22987. extra: 1692 / 1630,
  22988. bottom: 20 / 1712
  22989. }
  22990. },
  22991. },
  22992. [
  22993. {
  22994. name: "Normal",
  22995. height: math.unit(172, "cm"),
  22996. default: true
  22997. },
  22998. ]
  22999. ))
  23000. characterMakers.push(() => makeCharacter(
  23001. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23002. {
  23003. front: {
  23004. height: math.unit(6, "feet"),
  23005. weight: math.unit(220, "lb"),
  23006. name: "Front",
  23007. image: {
  23008. source: "./media/characters/lynn-rhea/front.svg",
  23009. extra: 310 / 273
  23010. }
  23011. },
  23012. back: {
  23013. height: math.unit(6, "feet"),
  23014. weight: math.unit(220, "lb"),
  23015. name: "Back",
  23016. image: {
  23017. source: "./media/characters/lynn-rhea/back.svg",
  23018. extra: 310 / 273
  23019. }
  23020. },
  23021. dicks: {
  23022. height: math.unit(0.9, "feet"),
  23023. name: "Dicks",
  23024. image: {
  23025. source: "./media/characters/lynn-rhea/dicks.svg"
  23026. }
  23027. },
  23028. slit: {
  23029. height: math.unit(0.4, "feet"),
  23030. name: "Slit",
  23031. image: {
  23032. source: "./media/characters/lynn-rhea/slit.svg"
  23033. }
  23034. },
  23035. },
  23036. [
  23037. {
  23038. name: "Micro",
  23039. height: math.unit(1, "inch")
  23040. },
  23041. {
  23042. name: "Macro",
  23043. height: math.unit(60, "feet"),
  23044. default: true
  23045. },
  23046. {
  23047. name: "Megamacro",
  23048. height: math.unit(2, "miles")
  23049. },
  23050. {
  23051. name: "Gigamacro",
  23052. height: math.unit(3, "earths")
  23053. },
  23054. {
  23055. name: "Galactic",
  23056. height: math.unit(0.8, "galaxies")
  23057. },
  23058. ]
  23059. ))
  23060. characterMakers.push(() => makeCharacter(
  23061. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23062. {
  23063. front: {
  23064. height: math.unit(1600, "feet"),
  23065. weight: math.unit(85758785169, "kg"),
  23066. name: "Front",
  23067. image: {
  23068. source: "./media/characters/valathos/front.svg",
  23069. extra: 1451 / 1339
  23070. }
  23071. },
  23072. },
  23073. [
  23074. {
  23075. name: "Macro",
  23076. height: math.unit(1600, "feet"),
  23077. default: true
  23078. },
  23079. ]
  23080. ))
  23081. characterMakers.push(() => makeCharacter(
  23082. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23083. {
  23084. front: {
  23085. height: math.unit(7 + 5 / 12, "feet"),
  23086. weight: math.unit(300, "lb"),
  23087. name: "Front",
  23088. image: {
  23089. source: "./media/characters/azula/front.svg",
  23090. extra: 3208 / 2880,
  23091. bottom: 80.2 / 3277
  23092. }
  23093. },
  23094. back: {
  23095. height: math.unit(7 + 5 / 12, "feet"),
  23096. weight: math.unit(300, "lb"),
  23097. name: "Back",
  23098. image: {
  23099. source: "./media/characters/azula/back.svg",
  23100. extra: 3169 / 2822,
  23101. bottom: 150.6 / 3321
  23102. }
  23103. },
  23104. },
  23105. [
  23106. {
  23107. name: "Normal",
  23108. height: math.unit(7 + 5 / 12, "feet"),
  23109. default: true
  23110. },
  23111. {
  23112. name: "Big",
  23113. height: math.unit(20, "feet")
  23114. },
  23115. ]
  23116. ))
  23117. characterMakers.push(() => makeCharacter(
  23118. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23119. {
  23120. front: {
  23121. height: math.unit(5 + 1 / 12, "feet"),
  23122. weight: math.unit(110, "lb"),
  23123. name: "Front",
  23124. image: {
  23125. source: "./media/characters/rupert/front.svg",
  23126. extra: 1549 / 1495,
  23127. bottom: 54.2 / 1604.4
  23128. }
  23129. },
  23130. },
  23131. [
  23132. {
  23133. name: "Normal",
  23134. height: math.unit(5 + 1 / 12, "feet"),
  23135. default: true
  23136. },
  23137. ]
  23138. ))
  23139. characterMakers.push(() => makeCharacter(
  23140. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23141. {
  23142. front: {
  23143. height: math.unit(8 + 4 / 12, "feet"),
  23144. weight: math.unit(350, "lb"),
  23145. name: "Front",
  23146. image: {
  23147. source: "./media/characters/sheera-castellar/front.svg",
  23148. extra: 1957 / 1894,
  23149. bottom: 26.97 / 1975.017
  23150. }
  23151. },
  23152. side: {
  23153. height: math.unit(8 + 4 / 12, "feet"),
  23154. weight: math.unit(350, "lb"),
  23155. name: "Side",
  23156. image: {
  23157. source: "./media/characters/sheera-castellar/side.svg",
  23158. extra: 1957 / 1894
  23159. }
  23160. },
  23161. back: {
  23162. height: math.unit(8 + 4 / 12, "feet"),
  23163. weight: math.unit(350, "lb"),
  23164. name: "Back",
  23165. image: {
  23166. source: "./media/characters/sheera-castellar/back.svg",
  23167. extra: 1957 / 1894
  23168. }
  23169. },
  23170. angled: {
  23171. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23172. weight: math.unit(350, "lb"),
  23173. name: "Angled",
  23174. image: {
  23175. source: "./media/characters/sheera-castellar/angled.svg",
  23176. extra: 1807 / 1707,
  23177. bottom: 68 / 1875
  23178. }
  23179. },
  23180. genitals: {
  23181. height: math.unit(2.2, "feet"),
  23182. name: "Genitals",
  23183. image: {
  23184. source: "./media/characters/sheera-castellar/genitals.svg"
  23185. }
  23186. },
  23187. taur: {
  23188. height: math.unit(10 + 6/12, "feet"),
  23189. name: "Taur",
  23190. image: {
  23191. source: "./media/characters/sheera-castellar/taur.svg",
  23192. extra: 2017/1909,
  23193. bottom: 185/2202
  23194. }
  23195. },
  23196. },
  23197. [
  23198. {
  23199. name: "Normal",
  23200. height: math.unit(8 + 4 / 12, "feet")
  23201. },
  23202. {
  23203. name: "Macro",
  23204. height: math.unit(150, "feet"),
  23205. default: true
  23206. },
  23207. {
  23208. name: "Macro+",
  23209. height: math.unit(800, "feet")
  23210. },
  23211. ]
  23212. ))
  23213. characterMakers.push(() => makeCharacter(
  23214. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23215. {
  23216. front: {
  23217. height: math.unit(6, "feet"),
  23218. weight: math.unit(150, "lb"),
  23219. name: "Front",
  23220. image: {
  23221. source: "./media/characters/jaipur/front.svg",
  23222. extra: 3860 / 3731,
  23223. bottom: 287 / 4140
  23224. }
  23225. },
  23226. back: {
  23227. height: math.unit(6, "feet"),
  23228. weight: math.unit(150, "lb"),
  23229. name: "Back",
  23230. image: {
  23231. source: "./media/characters/jaipur/back.svg",
  23232. extra: 4060 / 3930,
  23233. bottom: 151 / 4200
  23234. }
  23235. },
  23236. },
  23237. [
  23238. {
  23239. name: "Normal",
  23240. height: math.unit(1.85, "meters"),
  23241. default: true
  23242. },
  23243. {
  23244. name: "Macro",
  23245. height: math.unit(150, "meters")
  23246. },
  23247. {
  23248. name: "Macro+",
  23249. height: math.unit(0.5, "miles")
  23250. },
  23251. {
  23252. name: "Macro++",
  23253. height: math.unit(2.5, "miles")
  23254. },
  23255. {
  23256. name: "Macro+++",
  23257. height: math.unit(12, "miles")
  23258. },
  23259. {
  23260. name: "Macro++++",
  23261. height: math.unit(120, "miles")
  23262. },
  23263. {
  23264. name: "Macro+++++",
  23265. height: math.unit(1200, "miles")
  23266. },
  23267. ]
  23268. ))
  23269. characterMakers.push(() => makeCharacter(
  23270. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23271. {
  23272. front: {
  23273. height: math.unit(6, "feet"),
  23274. weight: math.unit(150, "lb"),
  23275. name: "Front",
  23276. image: {
  23277. source: "./media/characters/sheila-wolf/front.svg",
  23278. extra: 1931 / 1808,
  23279. bottom: 29.5 / 1960
  23280. }
  23281. },
  23282. dick: {
  23283. height: math.unit(1.464, "feet"),
  23284. name: "Dick",
  23285. image: {
  23286. source: "./media/characters/sheila-wolf/dick.svg"
  23287. }
  23288. },
  23289. muzzle: {
  23290. height: math.unit(0.513, "feet"),
  23291. name: "Muzzle",
  23292. image: {
  23293. source: "./media/characters/sheila-wolf/muzzle.svg"
  23294. }
  23295. },
  23296. },
  23297. [
  23298. {
  23299. name: "Macro",
  23300. height: math.unit(70, "feet"),
  23301. default: true
  23302. },
  23303. ]
  23304. ))
  23305. characterMakers.push(() => makeCharacter(
  23306. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23307. {
  23308. front: {
  23309. height: math.unit(32, "meters"),
  23310. weight: math.unit(300000, "kg"),
  23311. name: "Front",
  23312. image: {
  23313. source: "./media/characters/almor/front.svg",
  23314. extra: 1408 / 1322,
  23315. bottom: 94.6 / 1506.5
  23316. }
  23317. },
  23318. },
  23319. [
  23320. {
  23321. name: "Macro",
  23322. height: math.unit(32, "meters"),
  23323. default: true
  23324. },
  23325. ]
  23326. ))
  23327. characterMakers.push(() => makeCharacter(
  23328. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23329. {
  23330. front: {
  23331. height: math.unit(7, "feet"),
  23332. weight: math.unit(200, "lb"),
  23333. name: "Front",
  23334. image: {
  23335. source: "./media/characters/silver/front.svg",
  23336. extra: 472.1 / 450.5,
  23337. bottom: 26.5 / 499.424
  23338. }
  23339. },
  23340. },
  23341. [
  23342. {
  23343. name: "Normal",
  23344. height: math.unit(7, "feet"),
  23345. default: true
  23346. },
  23347. {
  23348. name: "Macro",
  23349. height: math.unit(800, "feet")
  23350. },
  23351. {
  23352. name: "Megamacro",
  23353. height: math.unit(250, "miles")
  23354. },
  23355. ]
  23356. ))
  23357. characterMakers.push(() => makeCharacter(
  23358. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23359. {
  23360. front: {
  23361. height: math.unit(6, "feet"),
  23362. weight: math.unit(150, "lb"),
  23363. name: "Front",
  23364. image: {
  23365. source: "./media/characters/pliskin/front.svg",
  23366. extra: 1469 / 1359,
  23367. bottom: 70 / 1540
  23368. }
  23369. },
  23370. },
  23371. [
  23372. {
  23373. name: "Micro",
  23374. height: math.unit(3, "inches")
  23375. },
  23376. {
  23377. name: "Normal",
  23378. height: math.unit(5 + 11 / 12, "feet"),
  23379. default: true
  23380. },
  23381. {
  23382. name: "Macro",
  23383. height: math.unit(120, "feet")
  23384. },
  23385. ]
  23386. ))
  23387. characterMakers.push(() => makeCharacter(
  23388. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23389. {
  23390. front: {
  23391. height: math.unit(6, "feet"),
  23392. weight: math.unit(150, "lb"),
  23393. name: "Front",
  23394. image: {
  23395. source: "./media/characters/sammy/front.svg",
  23396. extra: 1193 / 1089,
  23397. bottom: 30.5 / 1226
  23398. }
  23399. },
  23400. },
  23401. [
  23402. {
  23403. name: "Macro",
  23404. height: math.unit(1700, "feet"),
  23405. default: true
  23406. },
  23407. {
  23408. name: "Examacro",
  23409. height: math.unit(2.5e9, "lightyears")
  23410. },
  23411. ]
  23412. ))
  23413. characterMakers.push(() => makeCharacter(
  23414. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23415. {
  23416. front: {
  23417. height: math.unit(21, "meters"),
  23418. weight: math.unit(12, "tonnes"),
  23419. name: "Front",
  23420. image: {
  23421. source: "./media/characters/kuru/front.svg",
  23422. extra: 4301 / 3785,
  23423. bottom: 371.3 / 4691
  23424. }
  23425. },
  23426. },
  23427. [
  23428. {
  23429. name: "Macro",
  23430. height: math.unit(21, "meters"),
  23431. default: true
  23432. },
  23433. ]
  23434. ))
  23435. characterMakers.push(() => makeCharacter(
  23436. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23437. {
  23438. front: {
  23439. height: math.unit(23, "meters"),
  23440. weight: math.unit(12.2, "tonnes"),
  23441. name: "Front",
  23442. image: {
  23443. source: "./media/characters/rakka/front.svg",
  23444. extra: 4670 / 4169,
  23445. bottom: 301 / 4968.7
  23446. }
  23447. },
  23448. },
  23449. [
  23450. {
  23451. name: "Macro",
  23452. height: math.unit(23, "meters"),
  23453. default: true
  23454. },
  23455. ]
  23456. ))
  23457. characterMakers.push(() => makeCharacter(
  23458. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23459. {
  23460. front: {
  23461. height: math.unit(6, "feet"),
  23462. weight: math.unit(150, "lb"),
  23463. name: "Front",
  23464. image: {
  23465. source: "./media/characters/rhys-feline/front.svg",
  23466. extra: 2488 / 2308,
  23467. bottom: 35.67 / 2519.19
  23468. }
  23469. },
  23470. },
  23471. [
  23472. {
  23473. name: "Really Small",
  23474. height: math.unit(1, "nm")
  23475. },
  23476. {
  23477. name: "Micro",
  23478. height: math.unit(4, "inches")
  23479. },
  23480. {
  23481. name: "Normal",
  23482. height: math.unit(4 + 10 / 12, "feet"),
  23483. default: true
  23484. },
  23485. {
  23486. name: "Macro",
  23487. height: math.unit(100, "feet")
  23488. },
  23489. {
  23490. name: "Megamacto",
  23491. height: math.unit(50, "miles")
  23492. },
  23493. ]
  23494. ))
  23495. characterMakers.push(() => makeCharacter(
  23496. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23497. {
  23498. side: {
  23499. height: math.unit(30, "feet"),
  23500. weight: math.unit(35000, "kg"),
  23501. name: "Side",
  23502. image: {
  23503. source: "./media/characters/alydar/side.svg",
  23504. extra: 234 / 222,
  23505. bottom: 6.5 / 241
  23506. }
  23507. },
  23508. front: {
  23509. height: math.unit(30, "feet"),
  23510. weight: math.unit(35000, "kg"),
  23511. name: "Front",
  23512. image: {
  23513. source: "./media/characters/alydar/front.svg",
  23514. extra: 223.37 / 210.2,
  23515. bottom: 22.3 / 246.76
  23516. }
  23517. },
  23518. top: {
  23519. height: math.unit(64.54, "feet"),
  23520. weight: math.unit(35000, "kg"),
  23521. name: "Top",
  23522. image: {
  23523. source: "./media/characters/alydar/top.svg"
  23524. }
  23525. },
  23526. anthro: {
  23527. height: math.unit(30, "feet"),
  23528. weight: math.unit(9000, "kg"),
  23529. name: "Anthro",
  23530. image: {
  23531. source: "./media/characters/alydar/anthro.svg",
  23532. extra: 432 / 421,
  23533. bottom: 7.18 / 440
  23534. }
  23535. },
  23536. maw: {
  23537. height: math.unit(11.693, "feet"),
  23538. name: "Maw",
  23539. image: {
  23540. source: "./media/characters/alydar/maw.svg"
  23541. }
  23542. },
  23543. head: {
  23544. height: math.unit(11.693, "feet"),
  23545. name: "Head",
  23546. image: {
  23547. source: "./media/characters/alydar/head.svg"
  23548. }
  23549. },
  23550. headAlt: {
  23551. height: math.unit(12.861, "feet"),
  23552. name: "Head (Alt)",
  23553. image: {
  23554. source: "./media/characters/alydar/head-alt.svg"
  23555. }
  23556. },
  23557. wing: {
  23558. height: math.unit(20.712, "feet"),
  23559. name: "Wing",
  23560. image: {
  23561. source: "./media/characters/alydar/wing.svg"
  23562. }
  23563. },
  23564. wingFeather: {
  23565. height: math.unit(9.662, "feet"),
  23566. name: "Wing Feather",
  23567. image: {
  23568. source: "./media/characters/alydar/wing-feather.svg"
  23569. }
  23570. },
  23571. countourFeather: {
  23572. height: math.unit(4.154, "feet"),
  23573. name: "Contour Feather",
  23574. image: {
  23575. source: "./media/characters/alydar/contour-feather.svg"
  23576. }
  23577. },
  23578. },
  23579. [
  23580. {
  23581. name: "Diplomatic",
  23582. height: math.unit(13, "feet"),
  23583. default: true
  23584. },
  23585. {
  23586. name: "Small",
  23587. height: math.unit(30, "feet")
  23588. },
  23589. {
  23590. name: "Normal",
  23591. height: math.unit(95, "feet"),
  23592. default: true
  23593. },
  23594. {
  23595. name: "Large",
  23596. height: math.unit(285, "feet")
  23597. },
  23598. {
  23599. name: "Incomprehensible",
  23600. height: math.unit(450, "megameters")
  23601. },
  23602. ]
  23603. ))
  23604. characterMakers.push(() => makeCharacter(
  23605. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23606. {
  23607. side: {
  23608. height: math.unit(11, "feet"),
  23609. weight: math.unit(1750, "kg"),
  23610. name: "Side",
  23611. image: {
  23612. source: "./media/characters/selicia/side.svg",
  23613. extra: 440 / 396,
  23614. bottom: 24.8 / 465.979
  23615. }
  23616. },
  23617. maw: {
  23618. height: math.unit(4.665, "feet"),
  23619. name: "Maw",
  23620. image: {
  23621. source: "./media/characters/selicia/maw.svg"
  23622. }
  23623. },
  23624. },
  23625. [
  23626. {
  23627. name: "Normal",
  23628. height: math.unit(11, "feet"),
  23629. default: true
  23630. },
  23631. ]
  23632. ))
  23633. characterMakers.push(() => makeCharacter(
  23634. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23635. {
  23636. side: {
  23637. height: math.unit(2 + 6 / 12, "feet"),
  23638. weight: math.unit(30, "lb"),
  23639. name: "Side",
  23640. image: {
  23641. source: "./media/characters/layla/side.svg",
  23642. extra: 244 / 188,
  23643. bottom: 18.2 / 262.1
  23644. }
  23645. },
  23646. back: {
  23647. height: math.unit(2 + 6 / 12, "feet"),
  23648. weight: math.unit(30, "lb"),
  23649. name: "Back",
  23650. image: {
  23651. source: "./media/characters/layla/back.svg",
  23652. extra: 308 / 241.5,
  23653. bottom: 8.9 / 316.8
  23654. }
  23655. },
  23656. cumming: {
  23657. height: math.unit(2 + 6 / 12, "feet"),
  23658. weight: math.unit(30, "lb"),
  23659. name: "Cumming",
  23660. image: {
  23661. source: "./media/characters/layla/cumming.svg",
  23662. extra: 342 / 279,
  23663. bottom: 595 / 938
  23664. }
  23665. },
  23666. dickFlaccid: {
  23667. height: math.unit(2.595, "feet"),
  23668. name: "Flaccid Genitals",
  23669. image: {
  23670. source: "./media/characters/layla/dick-flaccid.svg"
  23671. }
  23672. },
  23673. dickErect: {
  23674. height: math.unit(2.359, "feet"),
  23675. name: "Erect Genitals",
  23676. image: {
  23677. source: "./media/characters/layla/dick-erect.svg"
  23678. }
  23679. },
  23680. dragon: {
  23681. height: math.unit(40, "feet"),
  23682. name: "Dragon",
  23683. image: {
  23684. source: "./media/characters/layla/dragon.svg",
  23685. extra: 610/535,
  23686. bottom: 367/977
  23687. }
  23688. },
  23689. taur: {
  23690. height: math.unit(30, "feet"),
  23691. name: "Taur",
  23692. image: {
  23693. source: "./media/characters/layla/taur.svg",
  23694. extra: 1268/1199,
  23695. bottom: 112/1380
  23696. }
  23697. },
  23698. },
  23699. [
  23700. {
  23701. name: "Micro",
  23702. height: math.unit(1, "inch")
  23703. },
  23704. {
  23705. name: "Small",
  23706. height: math.unit(1, "foot")
  23707. },
  23708. {
  23709. name: "Normal",
  23710. height: math.unit(2 + 6 / 12, "feet"),
  23711. default: true
  23712. },
  23713. {
  23714. name: "Macro",
  23715. height: math.unit(200, "feet")
  23716. },
  23717. {
  23718. name: "Megamacro",
  23719. height: math.unit(1000, "miles")
  23720. },
  23721. {
  23722. name: "Planetary",
  23723. height: math.unit(8000, "miles")
  23724. },
  23725. {
  23726. name: "True Layla",
  23727. height: math.unit(200000 * 7, "multiverses")
  23728. },
  23729. ]
  23730. ))
  23731. characterMakers.push(() => makeCharacter(
  23732. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23733. {
  23734. back: {
  23735. height: math.unit(10.5, "feet"),
  23736. weight: math.unit(800, "lb"),
  23737. name: "Back",
  23738. image: {
  23739. source: "./media/characters/knox/back.svg",
  23740. extra: 1486 / 1089,
  23741. bottom: 107 / 1601.4
  23742. }
  23743. },
  23744. side: {
  23745. height: math.unit(10.5, "feet"),
  23746. weight: math.unit(800, "lb"),
  23747. name: "Side",
  23748. image: {
  23749. source: "./media/characters/knox/side.svg",
  23750. extra: 244 / 218,
  23751. bottom: 14 / 260
  23752. }
  23753. },
  23754. },
  23755. [
  23756. {
  23757. name: "Compact",
  23758. height: math.unit(10.5, "feet"),
  23759. default: true
  23760. },
  23761. {
  23762. name: "Dynamax",
  23763. height: math.unit(210, "feet")
  23764. },
  23765. {
  23766. name: "Full Macro",
  23767. height: math.unit(850, "feet")
  23768. },
  23769. ]
  23770. ))
  23771. characterMakers.push(() => makeCharacter(
  23772. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23773. {
  23774. front: {
  23775. height: math.unit(28, "feet"),
  23776. weight: math.unit(10500, "lb"),
  23777. name: "Front",
  23778. image: {
  23779. source: "./media/characters/kayda/front.svg",
  23780. extra: 1536 / 1428,
  23781. bottom: 68.7 / 1603
  23782. }
  23783. },
  23784. back: {
  23785. height: math.unit(28, "feet"),
  23786. weight: math.unit(10500, "lb"),
  23787. name: "Back",
  23788. image: {
  23789. source: "./media/characters/kayda/back.svg",
  23790. extra: 1557 / 1464,
  23791. bottom: 39.5 / 1597.49
  23792. }
  23793. },
  23794. dick: {
  23795. height: math.unit(3.858, "feet"),
  23796. name: "Dick",
  23797. image: {
  23798. source: "./media/characters/kayda/dick.svg"
  23799. }
  23800. },
  23801. },
  23802. [
  23803. {
  23804. name: "Macro",
  23805. height: math.unit(28, "feet"),
  23806. default: true
  23807. },
  23808. ]
  23809. ))
  23810. characterMakers.push(() => makeCharacter(
  23811. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23812. {
  23813. front: {
  23814. height: math.unit(10 + 11 / 12, "feet"),
  23815. weight: math.unit(1400, "lb"),
  23816. name: "Front",
  23817. image: {
  23818. source: "./media/characters/brian/front.svg",
  23819. extra: 737 / 692,
  23820. bottom: 55.4 / 785
  23821. }
  23822. },
  23823. },
  23824. [
  23825. {
  23826. name: "Normal",
  23827. height: math.unit(10 + 11 / 12, "feet"),
  23828. default: true
  23829. },
  23830. ]
  23831. ))
  23832. characterMakers.push(() => makeCharacter(
  23833. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23834. {
  23835. front: {
  23836. height: math.unit(5 + 8 / 12, "feet"),
  23837. weight: math.unit(140, "lb"),
  23838. name: "Front",
  23839. image: {
  23840. source: "./media/characters/khemri/front.svg",
  23841. extra: 4780 / 4059,
  23842. bottom: 80.1 / 4859.25
  23843. }
  23844. },
  23845. },
  23846. [
  23847. {
  23848. name: "Micro",
  23849. height: math.unit(6, "inches")
  23850. },
  23851. {
  23852. name: "Normal",
  23853. height: math.unit(5 + 8 / 12, "feet"),
  23854. default: true
  23855. },
  23856. ]
  23857. ))
  23858. characterMakers.push(() => makeCharacter(
  23859. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23860. {
  23861. front: {
  23862. height: math.unit(13, "feet"),
  23863. weight: math.unit(1700, "lb"),
  23864. name: "Front",
  23865. image: {
  23866. source: "./media/characters/felix-braveheart/front.svg",
  23867. extra: 1222 / 1157,
  23868. bottom: 53.2 / 1280
  23869. }
  23870. },
  23871. back: {
  23872. height: math.unit(13, "feet"),
  23873. weight: math.unit(1700, "lb"),
  23874. name: "Back",
  23875. image: {
  23876. source: "./media/characters/felix-braveheart/back.svg",
  23877. extra: 1277 / 1203,
  23878. bottom: 50.2 / 1327
  23879. }
  23880. },
  23881. feral: {
  23882. height: math.unit(6, "feet"),
  23883. weight: math.unit(400, "lb"),
  23884. name: "Feral",
  23885. image: {
  23886. source: "./media/characters/felix-braveheart/feral.svg",
  23887. extra: 682 / 625,
  23888. bottom: 6.9 / 688
  23889. }
  23890. },
  23891. },
  23892. [
  23893. {
  23894. name: "Normal",
  23895. height: math.unit(13, "feet"),
  23896. default: true
  23897. },
  23898. ]
  23899. ))
  23900. characterMakers.push(() => makeCharacter(
  23901. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23902. {
  23903. side: {
  23904. height: math.unit(5 + 11 / 12, "feet"),
  23905. weight: math.unit(1400, "lb"),
  23906. name: "Side",
  23907. image: {
  23908. source: "./media/characters/shadow-blade/side.svg",
  23909. extra: 1726 / 1267,
  23910. bottom: 58.4 / 1785
  23911. }
  23912. },
  23913. },
  23914. [
  23915. {
  23916. name: "Normal",
  23917. height: math.unit(5 + 11 / 12, "feet"),
  23918. default: true
  23919. },
  23920. ]
  23921. ))
  23922. characterMakers.push(() => makeCharacter(
  23923. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23924. {
  23925. front: {
  23926. height: math.unit(1 + 6 / 12, "feet"),
  23927. weight: math.unit(25, "lb"),
  23928. name: "Front",
  23929. image: {
  23930. source: "./media/characters/karla-halldor/front.svg",
  23931. extra: 1459 / 1383,
  23932. bottom: 12 / 1472
  23933. }
  23934. },
  23935. },
  23936. [
  23937. {
  23938. name: "Normal",
  23939. height: math.unit(1 + 6 / 12, "feet"),
  23940. default: true
  23941. },
  23942. ]
  23943. ))
  23944. characterMakers.push(() => makeCharacter(
  23945. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23946. {
  23947. front: {
  23948. height: math.unit(6 + 2 / 12, "feet"),
  23949. weight: math.unit(160, "lb"),
  23950. name: "Front",
  23951. image: {
  23952. source: "./media/characters/ariam/front.svg",
  23953. extra: 714 / 617,
  23954. bottom: 23.4 / 737,
  23955. }
  23956. },
  23957. squatting: {
  23958. height: math.unit(4.1, "feet"),
  23959. weight: math.unit(160, "lb"),
  23960. name: "Squatting",
  23961. image: {
  23962. source: "./media/characters/ariam/squatting.svg",
  23963. extra: 2617 / 2112,
  23964. bottom: 61.2 / 2681,
  23965. }
  23966. },
  23967. },
  23968. [
  23969. {
  23970. name: "Normal",
  23971. height: math.unit(6 + 2 / 12, "feet"),
  23972. default: true
  23973. },
  23974. {
  23975. name: "Normal+",
  23976. height: math.unit(4, "meters")
  23977. },
  23978. {
  23979. name: "Macro",
  23980. height: math.unit(50, "meters")
  23981. },
  23982. {
  23983. name: "Macro+",
  23984. height: math.unit(100, "meters")
  23985. },
  23986. {
  23987. name: "Megamacro",
  23988. height: math.unit(20, "km")
  23989. },
  23990. ]
  23991. ))
  23992. characterMakers.push(() => makeCharacter(
  23993. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23994. {
  23995. front: {
  23996. height: math.unit(1.67, "meters"),
  23997. weight: math.unit(140, "lb"),
  23998. name: "Front",
  23999. image: {
  24000. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24001. extra: 438 / 410,
  24002. bottom: 0.75 / 439
  24003. }
  24004. },
  24005. },
  24006. [
  24007. {
  24008. name: "Shrunken",
  24009. height: math.unit(7.6, "cm")
  24010. },
  24011. {
  24012. name: "Human Scale",
  24013. height: math.unit(1.67, "meters")
  24014. },
  24015. {
  24016. name: "Wolxi Scale",
  24017. height: math.unit(36.7, "meters"),
  24018. default: true
  24019. },
  24020. ]
  24021. ))
  24022. characterMakers.push(() => makeCharacter(
  24023. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24024. {
  24025. front: {
  24026. height: math.unit(1.73, "meters"),
  24027. weight: math.unit(240, "lb"),
  24028. name: "Front",
  24029. image: {
  24030. source: "./media/characters/izue-two-mothers/front.svg",
  24031. extra: 469 / 437,
  24032. bottom: 1.24 / 470.6
  24033. }
  24034. },
  24035. },
  24036. [
  24037. {
  24038. name: "Shrunken",
  24039. height: math.unit(7.86, "cm")
  24040. },
  24041. {
  24042. name: "Human Scale",
  24043. height: math.unit(1.73, "meters")
  24044. },
  24045. {
  24046. name: "Wolxi Scale",
  24047. height: math.unit(38, "meters"),
  24048. default: true
  24049. },
  24050. ]
  24051. ))
  24052. characterMakers.push(() => makeCharacter(
  24053. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24054. {
  24055. front: {
  24056. height: math.unit(1.55, "meters"),
  24057. weight: math.unit(120, "lb"),
  24058. name: "Front",
  24059. image: {
  24060. source: "./media/characters/teeku-love-shack/front.svg",
  24061. extra: 387 / 362,
  24062. bottom: 1.51 / 388
  24063. }
  24064. },
  24065. },
  24066. [
  24067. {
  24068. name: "Shrunken",
  24069. height: math.unit(7, "cm")
  24070. },
  24071. {
  24072. name: "Human Scale",
  24073. height: math.unit(1.55, "meters")
  24074. },
  24075. {
  24076. name: "Wolxi Scale",
  24077. height: math.unit(34.1, "meters"),
  24078. default: true
  24079. },
  24080. ]
  24081. ))
  24082. characterMakers.push(() => makeCharacter(
  24083. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24084. {
  24085. front: {
  24086. height: math.unit(1.83, "meters"),
  24087. weight: math.unit(135, "lb"),
  24088. name: "Front",
  24089. image: {
  24090. source: "./media/characters/dejma-the-red/front.svg",
  24091. extra: 480 / 458,
  24092. bottom: 1.8 / 482
  24093. }
  24094. },
  24095. },
  24096. [
  24097. {
  24098. name: "Shrunken",
  24099. height: math.unit(8.3, "cm")
  24100. },
  24101. {
  24102. name: "Human Scale",
  24103. height: math.unit(1.83, "meters")
  24104. },
  24105. {
  24106. name: "Wolxi Scale",
  24107. height: math.unit(40, "meters"),
  24108. default: true
  24109. },
  24110. ]
  24111. ))
  24112. characterMakers.push(() => makeCharacter(
  24113. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24114. {
  24115. front: {
  24116. height: math.unit(1.78, "meters"),
  24117. weight: math.unit(65, "kg"),
  24118. name: "Front",
  24119. image: {
  24120. source: "./media/characters/aki/front.svg",
  24121. extra: 452 / 415
  24122. }
  24123. },
  24124. frontNsfw: {
  24125. height: math.unit(1.78, "meters"),
  24126. weight: math.unit(65, "kg"),
  24127. name: "Front (NSFW)",
  24128. image: {
  24129. source: "./media/characters/aki/front-nsfw.svg",
  24130. extra: 452 / 415
  24131. }
  24132. },
  24133. back: {
  24134. height: math.unit(1.78, "meters"),
  24135. weight: math.unit(65, "kg"),
  24136. name: "Back",
  24137. image: {
  24138. source: "./media/characters/aki/back.svg",
  24139. extra: 452 / 415
  24140. }
  24141. },
  24142. rump: {
  24143. height: math.unit(2.05, "feet"),
  24144. name: "Rump",
  24145. image: {
  24146. source: "./media/characters/aki/rump.svg"
  24147. }
  24148. },
  24149. dick: {
  24150. height: math.unit(0.95, "feet"),
  24151. name: "Dick",
  24152. image: {
  24153. source: "./media/characters/aki/dick.svg"
  24154. }
  24155. },
  24156. },
  24157. [
  24158. {
  24159. name: "Micro",
  24160. height: math.unit(15, "cm")
  24161. },
  24162. {
  24163. name: "Normal",
  24164. height: math.unit(178, "cm"),
  24165. default: true
  24166. },
  24167. {
  24168. name: "Macro",
  24169. height: math.unit(214, "m")
  24170. },
  24171. {
  24172. name: "Macro+",
  24173. height: math.unit(534, "m")
  24174. },
  24175. ]
  24176. ))
  24177. characterMakers.push(() => makeCharacter(
  24178. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24179. {
  24180. front: {
  24181. height: math.unit(5 + 5 / 12, "feet"),
  24182. weight: math.unit(120, "lb"),
  24183. name: "Front",
  24184. image: {
  24185. source: "./media/characters/ari/front.svg",
  24186. extra: 714.5 / 682,
  24187. bottom: 8 / 722.5
  24188. }
  24189. },
  24190. },
  24191. [
  24192. {
  24193. name: "Normal",
  24194. height: math.unit(5 + 5 / 12, "feet")
  24195. },
  24196. {
  24197. name: "Macro",
  24198. height: math.unit(100, "feet"),
  24199. default: true
  24200. },
  24201. {
  24202. name: "Megamacro",
  24203. height: math.unit(100, "miles")
  24204. },
  24205. {
  24206. name: "Gigamacro",
  24207. height: math.unit(80000, "miles")
  24208. },
  24209. ]
  24210. ))
  24211. characterMakers.push(() => makeCharacter(
  24212. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24213. {
  24214. side: {
  24215. height: math.unit(9, "feet"),
  24216. weight: math.unit(400, "kg"),
  24217. name: "Side",
  24218. image: {
  24219. source: "./media/characters/bolt/side.svg",
  24220. extra: 1126 / 896,
  24221. bottom: 60 / 1187.3,
  24222. }
  24223. },
  24224. },
  24225. [
  24226. {
  24227. name: "Micro",
  24228. height: math.unit(5, "inches")
  24229. },
  24230. {
  24231. name: "Normal",
  24232. height: math.unit(9, "feet"),
  24233. default: true
  24234. },
  24235. {
  24236. name: "Macro",
  24237. height: math.unit(700, "feet")
  24238. },
  24239. {
  24240. name: "Max Size",
  24241. height: math.unit(1.52e22, "yottameters")
  24242. },
  24243. ]
  24244. ))
  24245. characterMakers.push(() => makeCharacter(
  24246. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24247. {
  24248. front: {
  24249. height: math.unit(4.53, "meters"),
  24250. weight: math.unit(3, "tons"),
  24251. name: "Front",
  24252. image: {
  24253. source: "./media/characters/draekon-sylviar/front.svg",
  24254. extra: 1228 / 1068,
  24255. bottom: 41 / 1270
  24256. }
  24257. },
  24258. tail: {
  24259. height: math.unit(1.772, "meter"),
  24260. name: "Tail",
  24261. image: {
  24262. source: "./media/characters/draekon-sylviar/tail.svg"
  24263. }
  24264. },
  24265. head: {
  24266. height: math.unit(1.331, "meter"),
  24267. name: "Head",
  24268. image: {
  24269. source: "./media/characters/draekon-sylviar/head.svg"
  24270. }
  24271. },
  24272. hand: {
  24273. height: math.unit(0.564, "meter"),
  24274. name: "Hand",
  24275. image: {
  24276. source: "./media/characters/draekon-sylviar/hand.svg"
  24277. }
  24278. },
  24279. foot: {
  24280. height: math.unit(0.621, "meter"),
  24281. name: "Foot",
  24282. image: {
  24283. source: "./media/characters/draekon-sylviar/foot.svg",
  24284. bottom: 32 / 324
  24285. }
  24286. },
  24287. dick: {
  24288. height: math.unit(61, "cm"),
  24289. name: "Dick",
  24290. image: {
  24291. source: "./media/characters/draekon-sylviar/dick.svg"
  24292. }
  24293. },
  24294. dickseparated: {
  24295. height: math.unit(61, "cm"),
  24296. name: "Dick-separated",
  24297. image: {
  24298. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24299. }
  24300. },
  24301. },
  24302. [
  24303. {
  24304. name: "Small",
  24305. height: math.unit(4.53 / 2, "meters"),
  24306. default: true
  24307. },
  24308. {
  24309. name: "Normal",
  24310. height: math.unit(4.53, "meters"),
  24311. default: true
  24312. },
  24313. {
  24314. name: "Large",
  24315. height: math.unit(4.53 * 2, "meters"),
  24316. },
  24317. ]
  24318. ))
  24319. characterMakers.push(() => makeCharacter(
  24320. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24321. {
  24322. front: {
  24323. height: math.unit(6 + 2 / 12, "feet"),
  24324. weight: math.unit(180, "lb"),
  24325. name: "Front",
  24326. image: {
  24327. source: "./media/characters/brawler/front.svg",
  24328. extra: 3301 / 3027,
  24329. bottom: 138 / 3439
  24330. }
  24331. },
  24332. },
  24333. [
  24334. {
  24335. name: "Normal",
  24336. height: math.unit(6 + 2 / 12, "feet"),
  24337. default: true
  24338. },
  24339. ]
  24340. ))
  24341. characterMakers.push(() => makeCharacter(
  24342. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24343. {
  24344. front: {
  24345. height: math.unit(11, "feet"),
  24346. weight: math.unit(1000, "lb"),
  24347. name: "Front",
  24348. image: {
  24349. source: "./media/characters/alex/front.svg",
  24350. bottom: 44.5 / 620
  24351. }
  24352. },
  24353. },
  24354. [
  24355. {
  24356. name: "Micro",
  24357. height: math.unit(5, "inches")
  24358. },
  24359. {
  24360. name: "Normal",
  24361. height: math.unit(11, "feet"),
  24362. default: true
  24363. },
  24364. {
  24365. name: "Macro",
  24366. height: math.unit(9.5e9, "feet")
  24367. },
  24368. {
  24369. name: "Max Size",
  24370. height: math.unit(1.4e283, "yottameters")
  24371. },
  24372. ]
  24373. ))
  24374. characterMakers.push(() => makeCharacter(
  24375. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24376. {
  24377. female: {
  24378. height: math.unit(29.9, "m"),
  24379. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24380. name: "Female",
  24381. image: {
  24382. source: "./media/characters/zenari/female.svg",
  24383. extra: 3281.6 / 3217,
  24384. bottom: 72.2 / 3353
  24385. }
  24386. },
  24387. male: {
  24388. height: math.unit(27.7, "m"),
  24389. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24390. name: "Male",
  24391. image: {
  24392. source: "./media/characters/zenari/male.svg",
  24393. extra: 3008 / 2991,
  24394. bottom: 54.6 / 3069
  24395. }
  24396. },
  24397. },
  24398. [
  24399. {
  24400. name: "Macro",
  24401. height: math.unit(29.7, "meters"),
  24402. default: true
  24403. },
  24404. ]
  24405. ))
  24406. characterMakers.push(() => makeCharacter(
  24407. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24408. {
  24409. female: {
  24410. height: math.unit(23.8, "m"),
  24411. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24412. name: "Female",
  24413. image: {
  24414. source: "./media/characters/mactarian/female.svg",
  24415. extra: 2662 / 2569,
  24416. bottom: 73 / 2736
  24417. }
  24418. },
  24419. male: {
  24420. height: math.unit(23.8, "m"),
  24421. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24422. name: "Male",
  24423. image: {
  24424. source: "./media/characters/mactarian/male.svg",
  24425. extra: 2673 / 2600,
  24426. bottom: 76 / 2750
  24427. }
  24428. },
  24429. },
  24430. [
  24431. {
  24432. name: "Macro",
  24433. height: math.unit(23.8, "meters"),
  24434. default: true
  24435. },
  24436. ]
  24437. ))
  24438. characterMakers.push(() => makeCharacter(
  24439. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24440. {
  24441. female: {
  24442. height: math.unit(19.3, "m"),
  24443. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24444. name: "Female",
  24445. image: {
  24446. source: "./media/characters/umok/female.svg",
  24447. extra: 2186 / 2078,
  24448. bottom: 87 / 2277
  24449. }
  24450. },
  24451. male: {
  24452. height: math.unit(19.5, "m"),
  24453. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24454. name: "Male",
  24455. image: {
  24456. source: "./media/characters/umok/male.svg",
  24457. extra: 2233 / 2140,
  24458. bottom: 24.4 / 2258
  24459. }
  24460. },
  24461. },
  24462. [
  24463. {
  24464. name: "Macro",
  24465. height: math.unit(19.3, "meters"),
  24466. default: true
  24467. },
  24468. ]
  24469. ))
  24470. characterMakers.push(() => makeCharacter(
  24471. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24472. {
  24473. female: {
  24474. height: math.unit(26.15, "m"),
  24475. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24476. name: "Female",
  24477. image: {
  24478. source: "./media/characters/joraxian/female.svg",
  24479. extra: 2912 / 2824,
  24480. bottom: 36 / 2956
  24481. }
  24482. },
  24483. male: {
  24484. height: math.unit(25.4, "m"),
  24485. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24486. name: "Male",
  24487. image: {
  24488. source: "./media/characters/joraxian/male.svg",
  24489. extra: 2877 / 2721,
  24490. bottom: 82 / 2967
  24491. }
  24492. },
  24493. },
  24494. [
  24495. {
  24496. name: "Macro",
  24497. height: math.unit(26.15, "meters"),
  24498. default: true
  24499. },
  24500. ]
  24501. ))
  24502. characterMakers.push(() => makeCharacter(
  24503. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24504. {
  24505. female: {
  24506. height: math.unit(21.6, "m"),
  24507. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24508. name: "Female",
  24509. image: {
  24510. source: "./media/characters/sthara/female.svg",
  24511. extra: 2516 / 2347,
  24512. bottom: 21.5 / 2537
  24513. }
  24514. },
  24515. male: {
  24516. height: math.unit(24, "m"),
  24517. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24518. name: "Male",
  24519. image: {
  24520. source: "./media/characters/sthara/male.svg",
  24521. extra: 2732 / 2607,
  24522. bottom: 23 / 2732
  24523. }
  24524. },
  24525. },
  24526. [
  24527. {
  24528. name: "Macro",
  24529. height: math.unit(21.6, "meters"),
  24530. default: true
  24531. },
  24532. ]
  24533. ))
  24534. characterMakers.push(() => makeCharacter(
  24535. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24536. {
  24537. front: {
  24538. height: math.unit(6 + 4 / 12, "feet"),
  24539. weight: math.unit(175, "lb"),
  24540. name: "Front",
  24541. image: {
  24542. source: "./media/characters/luka-bryzant/front.svg",
  24543. extra: 311 / 289,
  24544. bottom: 4 / 315
  24545. }
  24546. },
  24547. back: {
  24548. height: math.unit(6 + 4 / 12, "feet"),
  24549. weight: math.unit(175, "lb"),
  24550. name: "Back",
  24551. image: {
  24552. source: "./media/characters/luka-bryzant/back.svg",
  24553. extra: 311 / 289,
  24554. bottom: 3.8 / 313.7
  24555. }
  24556. },
  24557. },
  24558. [
  24559. {
  24560. name: "Micro",
  24561. height: math.unit(10, "inches")
  24562. },
  24563. {
  24564. name: "Normal",
  24565. height: math.unit(6 + 4 / 12, "feet"),
  24566. default: true
  24567. },
  24568. {
  24569. name: "Large",
  24570. height: math.unit(12, "feet")
  24571. },
  24572. ]
  24573. ))
  24574. characterMakers.push(() => makeCharacter(
  24575. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24576. {
  24577. front: {
  24578. height: math.unit(5 + 7 / 12, "feet"),
  24579. weight: math.unit(185, "lb"),
  24580. name: "Front",
  24581. image: {
  24582. source: "./media/characters/aman-aquila/front.svg",
  24583. extra: 1013 / 976,
  24584. bottom: 45.6 / 1057
  24585. }
  24586. },
  24587. side: {
  24588. height: math.unit(5 + 7 / 12, "feet"),
  24589. weight: math.unit(185, "lb"),
  24590. name: "Side",
  24591. image: {
  24592. source: "./media/characters/aman-aquila/side.svg",
  24593. extra: 1054 / 1011,
  24594. bottom: 15 / 1070
  24595. }
  24596. },
  24597. back: {
  24598. height: math.unit(5 + 7 / 12, "feet"),
  24599. weight: math.unit(185, "lb"),
  24600. name: "Back",
  24601. image: {
  24602. source: "./media/characters/aman-aquila/back.svg",
  24603. extra: 1026 / 970,
  24604. bottom: 12 / 1039
  24605. }
  24606. },
  24607. head: {
  24608. height: math.unit(1.211, "feet"),
  24609. name: "Head",
  24610. image: {
  24611. source: "./media/characters/aman-aquila/head.svg",
  24612. }
  24613. },
  24614. },
  24615. [
  24616. {
  24617. name: "Minimicro",
  24618. height: math.unit(0.057, "inches")
  24619. },
  24620. {
  24621. name: "Micro",
  24622. height: math.unit(7, "inches")
  24623. },
  24624. {
  24625. name: "Mini",
  24626. height: math.unit(3 + 7 / 12, "feet")
  24627. },
  24628. {
  24629. name: "Normal",
  24630. height: math.unit(5 + 7 / 12, "feet"),
  24631. default: true
  24632. },
  24633. {
  24634. name: "Macro",
  24635. height: math.unit(157 + 7 / 12, "feet")
  24636. },
  24637. {
  24638. name: "Megamacro",
  24639. height: math.unit(1557 + 7 / 12, "feet")
  24640. },
  24641. {
  24642. name: "Gigamacro",
  24643. height: math.unit(15557 + 7 / 12, "feet")
  24644. },
  24645. ]
  24646. ))
  24647. characterMakers.push(() => makeCharacter(
  24648. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24649. {
  24650. front: {
  24651. height: math.unit(3 + 2 / 12, "inches"),
  24652. weight: math.unit(0.3, "ounces"),
  24653. name: "Front",
  24654. image: {
  24655. source: "./media/characters/hiphae/front.svg",
  24656. extra: 1931 / 1683,
  24657. bottom: 24 / 1955
  24658. }
  24659. },
  24660. },
  24661. [
  24662. {
  24663. name: "Normal",
  24664. height: math.unit(3 + 1 / 2, "inches"),
  24665. default: true
  24666. },
  24667. ]
  24668. ))
  24669. characterMakers.push(() => makeCharacter(
  24670. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24671. {
  24672. front: {
  24673. height: math.unit(5 + 10 / 12, "feet"),
  24674. weight: math.unit(165, "lb"),
  24675. name: "Front",
  24676. image: {
  24677. source: "./media/characters/nicky/front.svg",
  24678. extra: 3144 / 2886,
  24679. bottom: 45.6 / 3192
  24680. }
  24681. },
  24682. back: {
  24683. height: math.unit(5 + 10 / 12, "feet"),
  24684. weight: math.unit(165, "lb"),
  24685. name: "Back",
  24686. image: {
  24687. source: "./media/characters/nicky/back.svg",
  24688. extra: 3055 / 2804,
  24689. bottom: 28.4 / 3087
  24690. }
  24691. },
  24692. frontclothed: {
  24693. height: math.unit(5 + 10 / 12, "feet"),
  24694. weight: math.unit(165, "lb"),
  24695. name: "Front-clothed",
  24696. image: {
  24697. source: "./media/characters/nicky/front-clothed.svg",
  24698. extra: 3184.9 / 2926.9,
  24699. bottom: 86.5 / 3239.9
  24700. }
  24701. },
  24702. foot: {
  24703. height: math.unit(1.16, "feet"),
  24704. name: "Foot",
  24705. image: {
  24706. source: "./media/characters/nicky/foot.svg"
  24707. }
  24708. },
  24709. feet: {
  24710. height: math.unit(1.34, "feet"),
  24711. name: "Feet",
  24712. image: {
  24713. source: "./media/characters/nicky/feet.svg"
  24714. }
  24715. },
  24716. maw: {
  24717. height: math.unit(0.9, "feet"),
  24718. name: "Maw",
  24719. image: {
  24720. source: "./media/characters/nicky/maw.svg"
  24721. }
  24722. },
  24723. },
  24724. [
  24725. {
  24726. name: "Normal",
  24727. height: math.unit(5 + 10 / 12, "feet"),
  24728. default: true
  24729. },
  24730. {
  24731. name: "Macro",
  24732. height: math.unit(60, "feet")
  24733. },
  24734. {
  24735. name: "Megamacro",
  24736. height: math.unit(1, "mile")
  24737. },
  24738. ]
  24739. ))
  24740. characterMakers.push(() => makeCharacter(
  24741. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24742. {
  24743. side: {
  24744. height: math.unit(10, "feet"),
  24745. weight: math.unit(600, "lb"),
  24746. name: "Side",
  24747. image: {
  24748. source: "./media/characters/blair/side.svg",
  24749. bottom: 16.6 / 475,
  24750. extra: 458 / 431
  24751. }
  24752. },
  24753. },
  24754. [
  24755. {
  24756. name: "Micro",
  24757. height: math.unit(8, "inches")
  24758. },
  24759. {
  24760. name: "Normal",
  24761. height: math.unit(10, "feet"),
  24762. default: true
  24763. },
  24764. {
  24765. name: "Macro",
  24766. height: math.unit(180, "feet")
  24767. },
  24768. ]
  24769. ))
  24770. characterMakers.push(() => makeCharacter(
  24771. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24772. {
  24773. front: {
  24774. height: math.unit(5 + 4 / 12, "feet"),
  24775. weight: math.unit(125, "lb"),
  24776. name: "Front",
  24777. image: {
  24778. source: "./media/characters/fisher/front.svg",
  24779. extra: 444 / 390,
  24780. bottom: 2 / 444.8
  24781. }
  24782. },
  24783. },
  24784. [
  24785. {
  24786. name: "Micro",
  24787. height: math.unit(4, "inches")
  24788. },
  24789. {
  24790. name: "Normal",
  24791. height: math.unit(5 + 4 / 12, "feet"),
  24792. default: true
  24793. },
  24794. {
  24795. name: "Macro",
  24796. height: math.unit(100, "feet")
  24797. },
  24798. ]
  24799. ))
  24800. characterMakers.push(() => makeCharacter(
  24801. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24802. {
  24803. front: {
  24804. height: math.unit(6.71, "feet"),
  24805. weight: math.unit(200, "lb"),
  24806. capacity: math.unit(1000000, "people"),
  24807. name: "Front",
  24808. image: {
  24809. source: "./media/characters/gliss/front.svg",
  24810. extra: 2347 / 2231,
  24811. bottom: 113 / 2462
  24812. }
  24813. },
  24814. hammerspaceSize: {
  24815. height: math.unit(6.71 * 717, "feet"),
  24816. weight: math.unit(200, "lb"),
  24817. capacity: math.unit(1000000, "people"),
  24818. name: "Hammerspace Size",
  24819. image: {
  24820. source: "./media/characters/gliss/front.svg",
  24821. extra: 2347 / 2231,
  24822. bottom: 113 / 2462
  24823. }
  24824. },
  24825. },
  24826. [
  24827. {
  24828. name: "Normal",
  24829. height: math.unit(6.71, "feet"),
  24830. default: true
  24831. },
  24832. ]
  24833. ))
  24834. characterMakers.push(() => makeCharacter(
  24835. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24836. {
  24837. side: {
  24838. height: math.unit(1.44, "m"),
  24839. weight: math.unit(80, "kg"),
  24840. name: "Side",
  24841. image: {
  24842. source: "./media/characters/dune-anderson/side.svg",
  24843. bottom: 49 / 1426
  24844. }
  24845. },
  24846. },
  24847. [
  24848. {
  24849. name: "Wolf-sized",
  24850. height: math.unit(1.44, "meters")
  24851. },
  24852. {
  24853. name: "Normal",
  24854. height: math.unit(5.05, "meters"),
  24855. default: true
  24856. },
  24857. {
  24858. name: "Big",
  24859. height: math.unit(14.4, "meters")
  24860. },
  24861. {
  24862. name: "Huge",
  24863. height: math.unit(144, "meters")
  24864. },
  24865. ]
  24866. ))
  24867. characterMakers.push(() => makeCharacter(
  24868. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24869. {
  24870. front: {
  24871. height: math.unit(7, "feet"),
  24872. weight: math.unit(425, "lb"),
  24873. name: "Front",
  24874. image: {
  24875. source: "./media/characters/hind/front.svg",
  24876. extra: 2091 / 1860,
  24877. bottom: 129 / 2220
  24878. }
  24879. },
  24880. back: {
  24881. height: math.unit(7, "feet"),
  24882. weight: math.unit(425, "lb"),
  24883. name: "Back",
  24884. image: {
  24885. source: "./media/characters/hind/back.svg",
  24886. extra: 2091 / 1860,
  24887. bottom: 24.6 / 2309
  24888. }
  24889. },
  24890. tail: {
  24891. height: math.unit(2.8, "feet"),
  24892. name: "Tail",
  24893. image: {
  24894. source: "./media/characters/hind/tail.svg"
  24895. }
  24896. },
  24897. head: {
  24898. height: math.unit(2.55, "feet"),
  24899. name: "Head",
  24900. image: {
  24901. source: "./media/characters/hind/head.svg"
  24902. }
  24903. },
  24904. },
  24905. [
  24906. {
  24907. name: "XS",
  24908. height: math.unit(0.7, "feet")
  24909. },
  24910. {
  24911. name: "Normal",
  24912. height: math.unit(7, "feet"),
  24913. default: true
  24914. },
  24915. {
  24916. name: "XL",
  24917. height: math.unit(70, "feet")
  24918. },
  24919. ]
  24920. ))
  24921. characterMakers.push(() => makeCharacter(
  24922. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  24923. {
  24924. front: {
  24925. height: math.unit(2.1, "meters"),
  24926. weight: math.unit(150, "lb"),
  24927. name: "Front",
  24928. image: {
  24929. source: "./media/characters/tharquench-sizestealer/front.svg",
  24930. extra: 1605/1470,
  24931. bottom: 36/1641
  24932. }
  24933. },
  24934. frontAlt: {
  24935. height: math.unit(2.1, "meters"),
  24936. weight: math.unit(150, "lb"),
  24937. name: "Front (Alt)",
  24938. image: {
  24939. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  24940. extra: 2318 / 2063,
  24941. bottom: 93.4 / 2410
  24942. }
  24943. },
  24944. },
  24945. [
  24946. {
  24947. name: "Nano",
  24948. height: math.unit(1, "mm")
  24949. },
  24950. {
  24951. name: "Micro",
  24952. height: math.unit(1, "cm")
  24953. },
  24954. {
  24955. name: "Normal",
  24956. height: math.unit(2.1, "meters"),
  24957. default: true
  24958. },
  24959. ]
  24960. ))
  24961. characterMakers.push(() => makeCharacter(
  24962. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24963. {
  24964. front: {
  24965. height: math.unit(7 + 5 / 12, "feet"),
  24966. weight: math.unit(357, "lb"),
  24967. name: "Front",
  24968. image: {
  24969. source: "./media/characters/solex-draconov/front.svg",
  24970. extra: 1993 / 1865,
  24971. bottom: 117 / 2111
  24972. }
  24973. },
  24974. },
  24975. [
  24976. {
  24977. name: "Natural Height",
  24978. height: math.unit(7 + 5 / 12, "feet"),
  24979. default: true
  24980. },
  24981. {
  24982. name: "Macro",
  24983. height: math.unit(350, "feet")
  24984. },
  24985. {
  24986. name: "Macro+",
  24987. height: math.unit(1000, "feet")
  24988. },
  24989. {
  24990. name: "Megamacro",
  24991. height: math.unit(20, "km")
  24992. },
  24993. {
  24994. name: "Megamacro+",
  24995. height: math.unit(1000, "km")
  24996. },
  24997. {
  24998. name: "Gigamacro",
  24999. height: math.unit(2.5, "Gm")
  25000. },
  25001. {
  25002. name: "Teramacro",
  25003. height: math.unit(15, "Tm")
  25004. },
  25005. {
  25006. name: "Galactic",
  25007. height: math.unit(30, "Zm")
  25008. },
  25009. {
  25010. name: "Universal",
  25011. height: math.unit(21000, "Ym")
  25012. },
  25013. {
  25014. name: "Omniversal",
  25015. height: math.unit(9.861e50, "Ym")
  25016. },
  25017. {
  25018. name: "Existential",
  25019. height: math.unit(1e300, "meters")
  25020. },
  25021. ]
  25022. ))
  25023. characterMakers.push(() => makeCharacter(
  25024. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25025. {
  25026. side: {
  25027. height: math.unit(25, "feet"),
  25028. weight: math.unit(90000, "lb"),
  25029. name: "Side",
  25030. image: {
  25031. source: "./media/characters/mandarax/side.svg",
  25032. extra: 614 / 332,
  25033. bottom: 55 / 630
  25034. }
  25035. },
  25036. head: {
  25037. height: math.unit(11.4, "feet"),
  25038. name: "Head",
  25039. image: {
  25040. source: "./media/characters/mandarax/head.svg"
  25041. }
  25042. },
  25043. belly: {
  25044. height: math.unit(33, "feet"),
  25045. name: "Belly",
  25046. capacity: math.unit(500, "people"),
  25047. image: {
  25048. source: "./media/characters/mandarax/belly.svg"
  25049. }
  25050. },
  25051. dick: {
  25052. height: math.unit(8.46, "feet"),
  25053. name: "Dick",
  25054. image: {
  25055. source: "./media/characters/mandarax/dick.svg"
  25056. }
  25057. },
  25058. top: {
  25059. height: math.unit(28, "meters"),
  25060. name: "Top",
  25061. image: {
  25062. source: "./media/characters/mandarax/top.svg"
  25063. }
  25064. },
  25065. },
  25066. [
  25067. {
  25068. name: "Normal",
  25069. height: math.unit(25, "feet"),
  25070. default: true
  25071. },
  25072. ]
  25073. ))
  25074. characterMakers.push(() => makeCharacter(
  25075. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25076. {
  25077. front: {
  25078. height: math.unit(5, "feet"),
  25079. weight: math.unit(90, "lb"),
  25080. name: "Front",
  25081. image: {
  25082. source: "./media/characters/pixil/front.svg",
  25083. extra: 2000 / 1618,
  25084. bottom: 12.3 / 2011
  25085. }
  25086. },
  25087. },
  25088. [
  25089. {
  25090. name: "Normal",
  25091. height: math.unit(5, "feet"),
  25092. default: true
  25093. },
  25094. {
  25095. name: "Megamacro",
  25096. height: math.unit(10, "miles"),
  25097. },
  25098. ]
  25099. ))
  25100. characterMakers.push(() => makeCharacter(
  25101. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25102. {
  25103. front: {
  25104. height: math.unit(7 + 2 / 12, "feet"),
  25105. weight: math.unit(200, "lb"),
  25106. name: "Front",
  25107. image: {
  25108. source: "./media/characters/angel/front.svg",
  25109. extra: 1830 / 1737,
  25110. bottom: 22.6 / 1854,
  25111. }
  25112. },
  25113. },
  25114. [
  25115. {
  25116. name: "Normal",
  25117. height: math.unit(7 + 2 / 12, "feet"),
  25118. default: true
  25119. },
  25120. {
  25121. name: "Macro",
  25122. height: math.unit(1000, "feet")
  25123. },
  25124. {
  25125. name: "Megamacro",
  25126. height: math.unit(2, "miles")
  25127. },
  25128. {
  25129. name: "Gigamacro",
  25130. height: math.unit(20, "earths")
  25131. },
  25132. ]
  25133. ))
  25134. characterMakers.push(() => makeCharacter(
  25135. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25136. {
  25137. front: {
  25138. height: math.unit(5, "feet"),
  25139. weight: math.unit(180, "lb"),
  25140. name: "Front",
  25141. image: {
  25142. source: "./media/characters/mekana/front.svg",
  25143. extra: 1671 / 1605,
  25144. bottom: 3.5 / 1691
  25145. }
  25146. },
  25147. side: {
  25148. height: math.unit(5, "feet"),
  25149. weight: math.unit(180, "lb"),
  25150. name: "Side",
  25151. image: {
  25152. source: "./media/characters/mekana/side.svg",
  25153. extra: 1671 / 1605,
  25154. bottom: 3.5 / 1691
  25155. }
  25156. },
  25157. back: {
  25158. height: math.unit(5, "feet"),
  25159. weight: math.unit(180, "lb"),
  25160. name: "Back",
  25161. image: {
  25162. source: "./media/characters/mekana/back.svg",
  25163. extra: 1671 / 1605,
  25164. bottom: 3.5 / 1691
  25165. }
  25166. },
  25167. },
  25168. [
  25169. {
  25170. name: "Normal",
  25171. height: math.unit(5, "feet"),
  25172. default: true
  25173. },
  25174. ]
  25175. ))
  25176. characterMakers.push(() => makeCharacter(
  25177. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25178. {
  25179. front: {
  25180. height: math.unit(4 + 6 / 12, "feet"),
  25181. weight: math.unit(80, "lb"),
  25182. name: "Front",
  25183. image: {
  25184. source: "./media/characters/pixie/front.svg",
  25185. extra: 1924 / 1825,
  25186. bottom: 22.4 / 1946
  25187. }
  25188. },
  25189. },
  25190. [
  25191. {
  25192. name: "Normal",
  25193. height: math.unit(4 + 6 / 12, "feet"),
  25194. default: true
  25195. },
  25196. {
  25197. name: "Macro",
  25198. height: math.unit(40, "feet")
  25199. },
  25200. ]
  25201. ))
  25202. characterMakers.push(() => makeCharacter(
  25203. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25204. {
  25205. front: {
  25206. height: math.unit(2.1, "meters"),
  25207. weight: math.unit(200, "lb"),
  25208. name: "Front",
  25209. image: {
  25210. source: "./media/characters/the-lascivious/front.svg",
  25211. extra: 1 / 0.893,
  25212. bottom: 3.5 / 573.7
  25213. }
  25214. },
  25215. },
  25216. [
  25217. {
  25218. name: "Human Scale",
  25219. height: math.unit(2.1, "meters")
  25220. },
  25221. {
  25222. name: "Wolxi Scale",
  25223. height: math.unit(46.2, "m"),
  25224. default: true
  25225. },
  25226. {
  25227. name: "Boinker of Buildings",
  25228. height: math.unit(10, "km")
  25229. },
  25230. {
  25231. name: "Shagger of Skyscrapers",
  25232. height: math.unit(40, "km")
  25233. },
  25234. {
  25235. name: "Banger of Boroughs",
  25236. height: math.unit(4000, "km")
  25237. },
  25238. {
  25239. name: "Screwer of States",
  25240. height: math.unit(100000, "km")
  25241. },
  25242. {
  25243. name: "Pounder of Planets",
  25244. height: math.unit(2000000, "km")
  25245. },
  25246. ]
  25247. ))
  25248. characterMakers.push(() => makeCharacter(
  25249. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25250. {
  25251. front: {
  25252. height: math.unit(6, "feet"),
  25253. weight: math.unit(150, "lb"),
  25254. name: "Front",
  25255. image: {
  25256. source: "./media/characters/aj/front.svg",
  25257. extra: 2039 / 1562,
  25258. bottom: 40 / 2079
  25259. }
  25260. },
  25261. },
  25262. [
  25263. {
  25264. name: "Normal",
  25265. height: math.unit(11 + 6 / 12, "feet"),
  25266. default: true
  25267. },
  25268. {
  25269. name: "Megamacro",
  25270. height: math.unit(60, "megameters")
  25271. },
  25272. ]
  25273. ))
  25274. characterMakers.push(() => makeCharacter(
  25275. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25276. {
  25277. side: {
  25278. height: math.unit(31 + 8 / 12, "feet"),
  25279. weight: math.unit(75000, "kg"),
  25280. name: "Side",
  25281. image: {
  25282. source: "./media/characters/koros/side.svg",
  25283. extra: 1442 / 1297,
  25284. bottom: 122.7 / 1562
  25285. }
  25286. },
  25287. dicksKingsCrown: {
  25288. height: math.unit(6, "feet"),
  25289. name: "Dicks (King's Crown)",
  25290. image: {
  25291. source: "./media/characters/koros/dicks-kings-crown.svg"
  25292. }
  25293. },
  25294. dicksTailSet: {
  25295. height: math.unit(3, "feet"),
  25296. name: "Dicks (Tail Set)",
  25297. image: {
  25298. source: "./media/characters/koros/dicks-tail-set.svg"
  25299. }
  25300. },
  25301. dickCumming: {
  25302. height: math.unit(7.98, "feet"),
  25303. name: "Dick (Cumming)",
  25304. image: {
  25305. source: "./media/characters/koros/dick-cumming.svg"
  25306. }
  25307. },
  25308. dicksBack: {
  25309. height: math.unit(5.9, "feet"),
  25310. name: "Dicks (Back)",
  25311. image: {
  25312. source: "./media/characters/koros/dicks-back.svg"
  25313. }
  25314. },
  25315. dicksFront: {
  25316. height: math.unit(3.72, "feet"),
  25317. name: "Dicks (Front)",
  25318. image: {
  25319. source: "./media/characters/koros/dicks-front.svg"
  25320. }
  25321. },
  25322. dicksPeeking: {
  25323. height: math.unit(3.0, "feet"),
  25324. name: "Dicks (Peeking)",
  25325. image: {
  25326. source: "./media/characters/koros/dicks-peeking.svg"
  25327. }
  25328. },
  25329. eye: {
  25330. height: math.unit(1.7, "feet"),
  25331. name: "Eye",
  25332. image: {
  25333. source: "./media/characters/koros/eye.svg"
  25334. }
  25335. },
  25336. headFront: {
  25337. height: math.unit(11.69, "feet"),
  25338. name: "Head (Front)",
  25339. image: {
  25340. source: "./media/characters/koros/head-front.svg"
  25341. }
  25342. },
  25343. headSide: {
  25344. height: math.unit(14, "feet"),
  25345. name: "Head (Side)",
  25346. image: {
  25347. source: "./media/characters/koros/head-side.svg"
  25348. }
  25349. },
  25350. leg: {
  25351. height: math.unit(17, "feet"),
  25352. name: "Leg",
  25353. image: {
  25354. source: "./media/characters/koros/leg.svg"
  25355. }
  25356. },
  25357. mawSide: {
  25358. height: math.unit(12.8, "feet"),
  25359. name: "Maw (Side)",
  25360. image: {
  25361. source: "./media/characters/koros/maw-side.svg"
  25362. }
  25363. },
  25364. mawSpitting: {
  25365. height: math.unit(17, "feet"),
  25366. name: "Maw (Spitting)",
  25367. image: {
  25368. source: "./media/characters/koros/maw-spitting.svg"
  25369. }
  25370. },
  25371. slit: {
  25372. height: math.unit(2.8, "feet"),
  25373. name: "Slit",
  25374. image: {
  25375. source: "./media/characters/koros/slit.svg"
  25376. }
  25377. },
  25378. stomach: {
  25379. height: math.unit(6.8, "feet"),
  25380. capacity: math.unit(20, "people"),
  25381. name: "Stomach",
  25382. image: {
  25383. source: "./media/characters/koros/stomach.svg"
  25384. }
  25385. },
  25386. wingspanBottom: {
  25387. height: math.unit(114, "feet"),
  25388. name: "Wingspan (Bottom)",
  25389. image: {
  25390. source: "./media/characters/koros/wingspan-bottom.svg"
  25391. }
  25392. },
  25393. wingspanTop: {
  25394. height: math.unit(104, "feet"),
  25395. name: "Wingspan (Top)",
  25396. image: {
  25397. source: "./media/characters/koros/wingspan-top.svg"
  25398. }
  25399. },
  25400. },
  25401. [
  25402. {
  25403. name: "Normal",
  25404. height: math.unit(31 + 8 / 12, "feet"),
  25405. default: true
  25406. },
  25407. ]
  25408. ))
  25409. characterMakers.push(() => makeCharacter(
  25410. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25411. {
  25412. front: {
  25413. height: math.unit(18 + 5 / 12, "feet"),
  25414. weight: math.unit(3750, "kg"),
  25415. name: "Front",
  25416. image: {
  25417. source: "./media/characters/vexx/front.svg",
  25418. extra: 426 / 396,
  25419. bottom: 31.5 / 458
  25420. }
  25421. },
  25422. maw: {
  25423. height: math.unit(6, "feet"),
  25424. name: "Maw",
  25425. image: {
  25426. source: "./media/characters/vexx/maw.svg"
  25427. }
  25428. },
  25429. },
  25430. [
  25431. {
  25432. name: "Normal",
  25433. height: math.unit(18 + 5 / 12, "feet"),
  25434. default: true
  25435. },
  25436. ]
  25437. ))
  25438. characterMakers.push(() => makeCharacter(
  25439. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25440. {
  25441. front: {
  25442. height: math.unit(17 + 6 / 12, "feet"),
  25443. weight: math.unit(150, "lb"),
  25444. name: "Front",
  25445. image: {
  25446. source: "./media/characters/baadra/front.svg",
  25447. extra: 3137 / 2890,
  25448. bottom: 168.4 / 3305
  25449. }
  25450. },
  25451. back: {
  25452. height: math.unit(17 + 6 / 12, "feet"),
  25453. weight: math.unit(150, "lb"),
  25454. name: "Back",
  25455. image: {
  25456. source: "./media/characters/baadra/back.svg",
  25457. extra: 3142 / 2890,
  25458. bottom: 220 / 3371
  25459. }
  25460. },
  25461. head: {
  25462. height: math.unit(5.45, "feet"),
  25463. name: "Head",
  25464. image: {
  25465. source: "./media/characters/baadra/head.svg"
  25466. }
  25467. },
  25468. headAngry: {
  25469. height: math.unit(4.95, "feet"),
  25470. name: "Head (Angry)",
  25471. image: {
  25472. source: "./media/characters/baadra/head-angry.svg"
  25473. }
  25474. },
  25475. headOpen: {
  25476. height: math.unit(6, "feet"),
  25477. name: "Head (Open)",
  25478. image: {
  25479. source: "./media/characters/baadra/head-open.svg"
  25480. }
  25481. },
  25482. },
  25483. [
  25484. {
  25485. name: "Normal",
  25486. height: math.unit(17 + 6 / 12, "feet"),
  25487. default: true
  25488. },
  25489. ]
  25490. ))
  25491. characterMakers.push(() => makeCharacter(
  25492. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25493. {
  25494. front: {
  25495. height: math.unit(7 + 3 / 12, "feet"),
  25496. weight: math.unit(180, "lb"),
  25497. name: "Front",
  25498. image: {
  25499. source: "./media/characters/juri/front.svg",
  25500. extra: 1401 / 1237,
  25501. bottom: 18.5 / 1418
  25502. }
  25503. },
  25504. side: {
  25505. height: math.unit(7 + 3 / 12, "feet"),
  25506. weight: math.unit(180, "lb"),
  25507. name: "Side",
  25508. image: {
  25509. source: "./media/characters/juri/side.svg",
  25510. extra: 1424 / 1242,
  25511. bottom: 18.5 / 1447
  25512. }
  25513. },
  25514. sitting: {
  25515. height: math.unit(6, "feet"),
  25516. weight: math.unit(180, "lb"),
  25517. name: "Sitting",
  25518. image: {
  25519. source: "./media/characters/juri/sitting.svg",
  25520. extra: 1270 / 1143,
  25521. bottom: 100 / 1343
  25522. }
  25523. },
  25524. back: {
  25525. height: math.unit(7 + 3 / 12, "feet"),
  25526. weight: math.unit(180, "lb"),
  25527. name: "Back",
  25528. image: {
  25529. source: "./media/characters/juri/back.svg",
  25530. extra: 1377 / 1240,
  25531. bottom: 23.7 / 1405
  25532. }
  25533. },
  25534. maw: {
  25535. height: math.unit(2.8, "feet"),
  25536. name: "Maw",
  25537. image: {
  25538. source: "./media/characters/juri/maw.svg"
  25539. }
  25540. },
  25541. stomach: {
  25542. height: math.unit(0.89, "feet"),
  25543. capacity: math.unit(4, "liters"),
  25544. name: "Stomach",
  25545. image: {
  25546. source: "./media/characters/juri/stomach.svg"
  25547. }
  25548. },
  25549. },
  25550. [
  25551. {
  25552. name: "Normal",
  25553. height: math.unit(7 + 3 / 12, "feet"),
  25554. default: true
  25555. },
  25556. ]
  25557. ))
  25558. characterMakers.push(() => makeCharacter(
  25559. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25560. {
  25561. fox: {
  25562. height: math.unit(5 + 6 / 12, "feet"),
  25563. weight: math.unit(140, "lb"),
  25564. name: "Fox",
  25565. image: {
  25566. source: "./media/characters/maxene-sita/fox.svg",
  25567. extra: 146 / 138,
  25568. bottom: 2.1 / 148.19
  25569. }
  25570. },
  25571. foxLaying: {
  25572. height: math.unit(1.70, "feet"),
  25573. weight: math.unit(140, "lb"),
  25574. name: "Fox (Laying)",
  25575. image: {
  25576. source: "./media/characters/maxene-sita/fox-laying.svg",
  25577. extra: 910 / 572,
  25578. bottom: 71 / 981
  25579. }
  25580. },
  25581. kitsune: {
  25582. height: math.unit(10, "feet"),
  25583. weight: math.unit(800, "lb"),
  25584. name: "Kitsune",
  25585. image: {
  25586. source: "./media/characters/maxene-sita/kitsune.svg",
  25587. extra: 185 / 176,
  25588. bottom: 4.7 / 189.9
  25589. }
  25590. },
  25591. hellhound: {
  25592. height: math.unit(10, "feet"),
  25593. weight: math.unit(700, "lb"),
  25594. name: "Hellhound",
  25595. image: {
  25596. source: "./media/characters/maxene-sita/hellhound.svg",
  25597. extra: 1600 / 1545,
  25598. bottom: 81 / 1681
  25599. }
  25600. },
  25601. },
  25602. [
  25603. {
  25604. name: "Normal",
  25605. height: math.unit(5 + 6 / 12, "feet"),
  25606. default: true
  25607. },
  25608. ]
  25609. ))
  25610. characterMakers.push(() => makeCharacter(
  25611. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25612. {
  25613. front: {
  25614. height: math.unit(3 + 4 / 12, "feet"),
  25615. weight: math.unit(70, "lb"),
  25616. name: "Front",
  25617. image: {
  25618. source: "./media/characters/maia/front.svg",
  25619. extra: 227 / 219.5,
  25620. bottom: 40 / 267
  25621. }
  25622. },
  25623. back: {
  25624. height: math.unit(3 + 4 / 12, "feet"),
  25625. weight: math.unit(70, "lb"),
  25626. name: "Back",
  25627. image: {
  25628. source: "./media/characters/maia/back.svg",
  25629. extra: 237 / 225
  25630. }
  25631. },
  25632. },
  25633. [
  25634. {
  25635. name: "Normal",
  25636. height: math.unit(3 + 4 / 12, "feet"),
  25637. default: true
  25638. },
  25639. ]
  25640. ))
  25641. characterMakers.push(() => makeCharacter(
  25642. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25643. {
  25644. front: {
  25645. height: math.unit(5 + 10 / 12, "feet"),
  25646. weight: math.unit(197, "lb"),
  25647. name: "Front",
  25648. image: {
  25649. source: "./media/characters/jabaro/front.svg",
  25650. extra: 225 / 216,
  25651. bottom: 5.06 / 230
  25652. }
  25653. },
  25654. back: {
  25655. height: math.unit(5 + 10 / 12, "feet"),
  25656. weight: math.unit(197, "lb"),
  25657. name: "Back",
  25658. image: {
  25659. source: "./media/characters/jabaro/back.svg",
  25660. extra: 225 / 219,
  25661. bottom: 1.9 / 227
  25662. }
  25663. },
  25664. },
  25665. [
  25666. {
  25667. name: "Normal",
  25668. height: math.unit(5 + 10 / 12, "feet"),
  25669. default: true
  25670. },
  25671. ]
  25672. ))
  25673. characterMakers.push(() => makeCharacter(
  25674. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25675. {
  25676. front: {
  25677. height: math.unit(5 + 8 / 12, "feet"),
  25678. weight: math.unit(139, "lb"),
  25679. name: "Front",
  25680. image: {
  25681. source: "./media/characters/risa/front.svg",
  25682. extra: 270 / 260,
  25683. bottom: 11.2 / 282
  25684. }
  25685. },
  25686. back: {
  25687. height: math.unit(5 + 8 / 12, "feet"),
  25688. weight: math.unit(139, "lb"),
  25689. name: "Back",
  25690. image: {
  25691. source: "./media/characters/risa/back.svg",
  25692. extra: 264 / 255,
  25693. bottom: 4 / 268
  25694. }
  25695. },
  25696. },
  25697. [
  25698. {
  25699. name: "Normal",
  25700. height: math.unit(5 + 8 / 12, "feet"),
  25701. default: true
  25702. },
  25703. ]
  25704. ))
  25705. characterMakers.push(() => makeCharacter(
  25706. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25707. {
  25708. front: {
  25709. height: math.unit(2 + 11 / 12, "feet"),
  25710. weight: math.unit(30, "lb"),
  25711. name: "Front",
  25712. image: {
  25713. source: "./media/characters/weatley/front.svg",
  25714. bottom: 10.7 / 414,
  25715. extra: 403.5 / 362
  25716. }
  25717. },
  25718. back: {
  25719. height: math.unit(2 + 11 / 12, "feet"),
  25720. weight: math.unit(30, "lb"),
  25721. name: "Back",
  25722. image: {
  25723. source: "./media/characters/weatley/back.svg",
  25724. bottom: 10.7 / 414,
  25725. extra: 403.5 / 362
  25726. }
  25727. },
  25728. },
  25729. [
  25730. {
  25731. name: "Normal",
  25732. height: math.unit(2 + 11 / 12, "feet"),
  25733. default: true
  25734. },
  25735. ]
  25736. ))
  25737. characterMakers.push(() => makeCharacter(
  25738. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25739. {
  25740. front: {
  25741. height: math.unit(5 + 2 / 12, "feet"),
  25742. weight: math.unit(50, "kg"),
  25743. name: "Front",
  25744. image: {
  25745. source: "./media/characters/mercury-crescent/front.svg",
  25746. extra: 1088 / 1033,
  25747. bottom: 18.9 / 1109
  25748. }
  25749. },
  25750. },
  25751. [
  25752. {
  25753. name: "Normal",
  25754. height: math.unit(5 + 2 / 12, "feet"),
  25755. default: true
  25756. },
  25757. ]
  25758. ))
  25759. characterMakers.push(() => makeCharacter(
  25760. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25761. {
  25762. front: {
  25763. height: math.unit(2, "feet"),
  25764. weight: math.unit(15, "kg"),
  25765. name: "Front",
  25766. image: {
  25767. source: "./media/characters/diamond-jones/front.svg",
  25768. extra: 727/723,
  25769. bottom: 46/773
  25770. }
  25771. },
  25772. },
  25773. [
  25774. {
  25775. name: "Normal",
  25776. height: math.unit(2, "feet"),
  25777. default: true
  25778. },
  25779. ]
  25780. ))
  25781. characterMakers.push(() => makeCharacter(
  25782. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25783. {
  25784. front: {
  25785. height: math.unit(3, "feet"),
  25786. weight: math.unit(30, "kg"),
  25787. name: "Front",
  25788. image: {
  25789. source: "./media/characters/sweet-bit/front.svg",
  25790. extra: 675 / 567,
  25791. bottom: 27.7 / 703
  25792. }
  25793. },
  25794. },
  25795. [
  25796. {
  25797. name: "Normal",
  25798. height: math.unit(3, "feet"),
  25799. default: true
  25800. },
  25801. ]
  25802. ))
  25803. characterMakers.push(() => makeCharacter(
  25804. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25805. {
  25806. side: {
  25807. height: math.unit(9.178, "feet"),
  25808. weight: math.unit(500, "lb"),
  25809. name: "Side",
  25810. image: {
  25811. source: "./media/characters/umbrazen/side.svg",
  25812. extra: 1730 / 1473,
  25813. bottom: 34.6 / 1765
  25814. }
  25815. },
  25816. },
  25817. [
  25818. {
  25819. name: "Normal",
  25820. height: math.unit(9.178, "feet"),
  25821. default: true
  25822. },
  25823. ]
  25824. ))
  25825. characterMakers.push(() => makeCharacter(
  25826. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25827. {
  25828. front: {
  25829. height: math.unit(10, "feet"),
  25830. weight: math.unit(750, "lb"),
  25831. name: "Front",
  25832. image: {
  25833. source: "./media/characters/arlist/front.svg",
  25834. extra: 961 / 778,
  25835. bottom: 6.2 / 986
  25836. }
  25837. },
  25838. },
  25839. [
  25840. {
  25841. name: "Normal",
  25842. height: math.unit(10, "feet"),
  25843. default: true
  25844. },
  25845. ]
  25846. ))
  25847. characterMakers.push(() => makeCharacter(
  25848. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25849. {
  25850. front: {
  25851. height: math.unit(5 + 1 / 12, "feet"),
  25852. weight: math.unit(110, "lb"),
  25853. name: "Front",
  25854. image: {
  25855. source: "./media/characters/aradel/front.svg",
  25856. extra: 324 / 303,
  25857. bottom: 3.6 / 329.4
  25858. }
  25859. },
  25860. },
  25861. [
  25862. {
  25863. name: "Normal",
  25864. height: math.unit(5 + 1 / 12, "feet"),
  25865. default: true
  25866. },
  25867. ]
  25868. ))
  25869. characterMakers.push(() => makeCharacter(
  25870. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25871. {
  25872. front: {
  25873. height: math.unit(3 + 8 / 12, "feet"),
  25874. weight: math.unit(50, "lb"),
  25875. name: "Front",
  25876. image: {
  25877. source: "./media/characters/serryn/front.svg",
  25878. extra: 1792 / 1656,
  25879. bottom: 43.5 / 1840
  25880. }
  25881. },
  25882. },
  25883. [
  25884. {
  25885. name: "Normal",
  25886. height: math.unit(3 + 8 / 12, "feet"),
  25887. default: true
  25888. },
  25889. ]
  25890. ))
  25891. characterMakers.push(() => makeCharacter(
  25892. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25893. {
  25894. front: {
  25895. height: math.unit(7 + 10 / 12, "feet"),
  25896. weight: math.unit(255, "lb"),
  25897. name: "Front",
  25898. image: {
  25899. source: "./media/characters/xavier-thyme/front.svg",
  25900. extra: 3733 / 3642,
  25901. bottom: 131 / 3869
  25902. }
  25903. },
  25904. frontRaven: {
  25905. height: math.unit(7 + 10 / 12, "feet"),
  25906. weight: math.unit(255, "lb"),
  25907. name: "Front (Raven)",
  25908. image: {
  25909. source: "./media/characters/xavier-thyme/front-raven.svg",
  25910. extra: 4385 / 3642,
  25911. bottom: 131 / 4517
  25912. }
  25913. },
  25914. },
  25915. [
  25916. {
  25917. name: "Normal",
  25918. height: math.unit(7 + 10 / 12, "feet"),
  25919. default: true
  25920. },
  25921. ]
  25922. ))
  25923. characterMakers.push(() => makeCharacter(
  25924. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25925. {
  25926. front: {
  25927. height: math.unit(1.6, "m"),
  25928. weight: math.unit(50, "kg"),
  25929. name: "Front",
  25930. image: {
  25931. source: "./media/characters/kiki/front.svg",
  25932. extra: 4682 / 3610,
  25933. bottom: 115 / 4777
  25934. }
  25935. },
  25936. },
  25937. [
  25938. {
  25939. name: "Normal",
  25940. height: math.unit(1.6, "meters"),
  25941. default: true
  25942. },
  25943. ]
  25944. ))
  25945. characterMakers.push(() => makeCharacter(
  25946. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25947. {
  25948. front: {
  25949. height: math.unit(50, "m"),
  25950. weight: math.unit(500, "tonnes"),
  25951. name: "Front",
  25952. image: {
  25953. source: "./media/characters/ryoko/front.svg",
  25954. extra: 4632 / 3926,
  25955. bottom: 193 / 4823
  25956. }
  25957. },
  25958. },
  25959. [
  25960. {
  25961. name: "Normal",
  25962. height: math.unit(50, "meters"),
  25963. default: true
  25964. },
  25965. ]
  25966. ))
  25967. characterMakers.push(() => makeCharacter(
  25968. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25969. {
  25970. front: {
  25971. height: math.unit(30, "m"),
  25972. weight: math.unit(22, "tonnes"),
  25973. name: "Front",
  25974. image: {
  25975. source: "./media/characters/elio/front.svg",
  25976. extra: 4582 / 3720,
  25977. bottom: 236 / 4828
  25978. }
  25979. },
  25980. },
  25981. [
  25982. {
  25983. name: "Normal",
  25984. height: math.unit(30, "meters"),
  25985. default: true
  25986. },
  25987. ]
  25988. ))
  25989. characterMakers.push(() => makeCharacter(
  25990. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25991. {
  25992. front: {
  25993. height: math.unit(6 + 3 / 12, "feet"),
  25994. weight: math.unit(120, "lb"),
  25995. name: "Front",
  25996. image: {
  25997. source: "./media/characters/azura/front.svg",
  25998. extra: 1149 / 1135,
  25999. bottom: 45 / 1194
  26000. }
  26001. },
  26002. frontClothed: {
  26003. height: math.unit(6 + 3 / 12, "feet"),
  26004. weight: math.unit(120, "lb"),
  26005. name: "Front (Clothed)",
  26006. image: {
  26007. source: "./media/characters/azura/front-clothed.svg",
  26008. extra: 1149 / 1135,
  26009. bottom: 45 / 1194
  26010. }
  26011. },
  26012. },
  26013. [
  26014. {
  26015. name: "Normal",
  26016. height: math.unit(6 + 3 / 12, "feet"),
  26017. default: true
  26018. },
  26019. {
  26020. name: "Macro",
  26021. height: math.unit(20 + 6 / 12, "feet")
  26022. },
  26023. {
  26024. name: "Megamacro",
  26025. height: math.unit(12, "miles")
  26026. },
  26027. {
  26028. name: "Gigamacro",
  26029. height: math.unit(10000, "miles")
  26030. },
  26031. {
  26032. name: "Teramacro",
  26033. height: math.unit(900000, "miles")
  26034. },
  26035. ]
  26036. ))
  26037. characterMakers.push(() => makeCharacter(
  26038. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26039. {
  26040. front: {
  26041. height: math.unit(12, "feet"),
  26042. weight: math.unit(1, "ton"),
  26043. capacity: math.unit(660000, "gallons"),
  26044. name: "Front",
  26045. image: {
  26046. source: "./media/characters/zeus/front.svg",
  26047. extra: 5005 / 4717,
  26048. bottom: 363 / 5388
  26049. }
  26050. },
  26051. },
  26052. [
  26053. {
  26054. name: "Normal",
  26055. height: math.unit(12, "feet")
  26056. },
  26057. {
  26058. name: "Preferred Size",
  26059. height: math.unit(0.5, "miles"),
  26060. default: true
  26061. },
  26062. {
  26063. name: "Giga Horse",
  26064. height: math.unit(300, "miles")
  26065. },
  26066. {
  26067. name: "Riding Planets",
  26068. height: math.unit(30, "megameters")
  26069. },
  26070. {
  26071. name: "Cosmic Giant",
  26072. height: math.unit(3, "zettameters")
  26073. },
  26074. {
  26075. name: "Breeding God",
  26076. height: math.unit(9.92e22, "yottameters")
  26077. },
  26078. ]
  26079. ))
  26080. characterMakers.push(() => makeCharacter(
  26081. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26082. {
  26083. side: {
  26084. height: math.unit(9, "feet"),
  26085. weight: math.unit(1500, "kg"),
  26086. name: "Side",
  26087. image: {
  26088. source: "./media/characters/fang/side.svg",
  26089. extra: 924 / 866,
  26090. bottom: 47.5 / 972.3
  26091. }
  26092. },
  26093. },
  26094. [
  26095. {
  26096. name: "Normal",
  26097. height: math.unit(9, "feet"),
  26098. default: true
  26099. },
  26100. {
  26101. name: "Macro",
  26102. height: math.unit(75 + 6 / 12, "feet")
  26103. },
  26104. {
  26105. name: "Teramacro",
  26106. height: math.unit(50000, "miles")
  26107. },
  26108. ]
  26109. ))
  26110. characterMakers.push(() => makeCharacter(
  26111. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26112. {
  26113. front: {
  26114. height: math.unit(10, "feet"),
  26115. weight: math.unit(2, "tons"),
  26116. name: "Front",
  26117. image: {
  26118. source: "./media/characters/rekhit/front.svg",
  26119. extra: 2796 / 2590,
  26120. bottom: 225 / 3022
  26121. }
  26122. },
  26123. },
  26124. [
  26125. {
  26126. name: "Normal",
  26127. height: math.unit(10, "feet"),
  26128. default: true
  26129. },
  26130. {
  26131. name: "Macro",
  26132. height: math.unit(500, "feet")
  26133. },
  26134. ]
  26135. ))
  26136. characterMakers.push(() => makeCharacter(
  26137. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26138. {
  26139. front: {
  26140. height: math.unit(7 + 6.451 / 12, "feet"),
  26141. weight: math.unit(310, "lb"),
  26142. name: "Front",
  26143. image: {
  26144. source: "./media/characters/dahlia-verrick/front.svg",
  26145. extra: 1488 / 1365,
  26146. bottom: 6.2 / 1495
  26147. }
  26148. },
  26149. back: {
  26150. height: math.unit(7 + 6.451 / 12, "feet"),
  26151. weight: math.unit(310, "lb"),
  26152. name: "Back",
  26153. image: {
  26154. source: "./media/characters/dahlia-verrick/back.svg",
  26155. extra: 1472 / 1351,
  26156. bottom: 5.28 / 1477
  26157. }
  26158. },
  26159. frontBusiness: {
  26160. height: math.unit(7 + 6.451 / 12, "feet"),
  26161. weight: math.unit(200, "lb"),
  26162. name: "Front (Business)",
  26163. image: {
  26164. source: "./media/characters/dahlia-verrick/front-business.svg",
  26165. extra: 1478 / 1381,
  26166. bottom: 5.5 / 1484
  26167. }
  26168. },
  26169. frontCasual: {
  26170. height: math.unit(7 + 6.451 / 12, "feet"),
  26171. weight: math.unit(200, "lb"),
  26172. name: "Front (Casual)",
  26173. image: {
  26174. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26175. extra: 1478 / 1381,
  26176. bottom: 5.5 / 1484
  26177. }
  26178. },
  26179. },
  26180. [
  26181. {
  26182. name: "Travel-Sized",
  26183. height: math.unit(7.45, "inches")
  26184. },
  26185. {
  26186. name: "Normal",
  26187. height: math.unit(7 + 6.451 / 12, "feet"),
  26188. default: true
  26189. },
  26190. {
  26191. name: "Hitting the Town",
  26192. height: math.unit(37 + 8 / 12, "feet")
  26193. },
  26194. {
  26195. name: "Stomp in the Suburbs",
  26196. height: math.unit(964 + 9.728 / 12, "feet")
  26197. },
  26198. {
  26199. name: "Sit on the City",
  26200. height: math.unit(61747 + 10.592 / 12, "feet")
  26201. },
  26202. {
  26203. name: "Glomp the Globe",
  26204. height: math.unit(252919327 + 4.832 / 12, "feet")
  26205. },
  26206. ]
  26207. ))
  26208. characterMakers.push(() => makeCharacter(
  26209. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26210. {
  26211. front: {
  26212. height: math.unit(6 + 4 / 12, "feet"),
  26213. weight: math.unit(320, "lb"),
  26214. name: "Front",
  26215. image: {
  26216. source: "./media/characters/balina-mahigan/front.svg",
  26217. extra: 447 / 428,
  26218. bottom: 18 / 466
  26219. }
  26220. },
  26221. back: {
  26222. height: math.unit(6 + 4 / 12, "feet"),
  26223. weight: math.unit(320, "lb"),
  26224. name: "Back",
  26225. image: {
  26226. source: "./media/characters/balina-mahigan/back.svg",
  26227. extra: 445 / 428,
  26228. bottom: 4.07 / 448
  26229. }
  26230. },
  26231. arm: {
  26232. height: math.unit(1.88, "feet"),
  26233. name: "Arm",
  26234. image: {
  26235. source: "./media/characters/balina-mahigan/arm.svg"
  26236. }
  26237. },
  26238. backPort: {
  26239. height: math.unit(0.685, "feet"),
  26240. name: "Back Port",
  26241. image: {
  26242. source: "./media/characters/balina-mahigan/back-port.svg"
  26243. }
  26244. },
  26245. hoofpaw: {
  26246. height: math.unit(1.41, "feet"),
  26247. name: "Hoofpaw",
  26248. image: {
  26249. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26250. }
  26251. },
  26252. leftHandBack: {
  26253. height: math.unit(0.938, "feet"),
  26254. name: "Left Hand (Back)",
  26255. image: {
  26256. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26257. }
  26258. },
  26259. leftHandFront: {
  26260. height: math.unit(0.938, "feet"),
  26261. name: "Left Hand (Front)",
  26262. image: {
  26263. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26264. }
  26265. },
  26266. rightHandBack: {
  26267. height: math.unit(0.95, "feet"),
  26268. name: "Right Hand (Back)",
  26269. image: {
  26270. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26271. }
  26272. },
  26273. rightHandFront: {
  26274. height: math.unit(0.95, "feet"),
  26275. name: "Right Hand (Front)",
  26276. image: {
  26277. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26278. }
  26279. },
  26280. },
  26281. [
  26282. {
  26283. name: "Normal",
  26284. height: math.unit(6 + 4 / 12, "feet"),
  26285. default: true
  26286. },
  26287. ]
  26288. ))
  26289. characterMakers.push(() => makeCharacter(
  26290. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26291. {
  26292. front: {
  26293. height: math.unit(6, "feet"),
  26294. weight: math.unit(320, "lb"),
  26295. name: "Front",
  26296. image: {
  26297. source: "./media/characters/balina-mejeri/front.svg",
  26298. extra: 517 / 488,
  26299. bottom: 44.2 / 561
  26300. }
  26301. },
  26302. },
  26303. [
  26304. {
  26305. name: "Normal",
  26306. height: math.unit(6 + 4 / 12, "feet")
  26307. },
  26308. {
  26309. name: "Business",
  26310. height: math.unit(155, "feet"),
  26311. default: true
  26312. },
  26313. ]
  26314. ))
  26315. characterMakers.push(() => makeCharacter(
  26316. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26317. {
  26318. kneeling: {
  26319. height: math.unit(6 + 4 / 12, "feet"),
  26320. weight: math.unit(300 * 20, "lb"),
  26321. name: "Kneeling",
  26322. image: {
  26323. source: "./media/characters/balbarian/kneeling.svg",
  26324. extra: 922 / 862,
  26325. bottom: 42.4 / 965
  26326. }
  26327. },
  26328. },
  26329. [
  26330. {
  26331. name: "Normal",
  26332. height: math.unit(6 + 4 / 12, "feet")
  26333. },
  26334. {
  26335. name: "Treasured",
  26336. height: math.unit(18 + 9 / 12, "feet"),
  26337. default: true
  26338. },
  26339. {
  26340. name: "Macro",
  26341. height: math.unit(900, "feet")
  26342. },
  26343. ]
  26344. ))
  26345. characterMakers.push(() => makeCharacter(
  26346. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26347. {
  26348. front: {
  26349. height: math.unit(6 + 4 / 12, "feet"),
  26350. weight: math.unit(325, "lb"),
  26351. name: "Front",
  26352. image: {
  26353. source: "./media/characters/balina-amarini/front.svg",
  26354. extra: 415 / 403,
  26355. bottom: 19 / 433.4
  26356. }
  26357. },
  26358. back: {
  26359. height: math.unit(6 + 4 / 12, "feet"),
  26360. weight: math.unit(325, "lb"),
  26361. name: "Back",
  26362. image: {
  26363. source: "./media/characters/balina-amarini/back.svg",
  26364. extra: 415 / 403,
  26365. bottom: 13.5 / 432
  26366. }
  26367. },
  26368. overdrive: {
  26369. height: math.unit(6 + 4 / 12, "feet"),
  26370. weight: math.unit(400, "lb"),
  26371. name: "Overdrive",
  26372. image: {
  26373. source: "./media/characters/balina-amarini/overdrive.svg",
  26374. extra: 269 / 259,
  26375. bottom: 12 / 282
  26376. }
  26377. },
  26378. },
  26379. [
  26380. {
  26381. name: "Boom",
  26382. height: math.unit(9 + 10 / 12, "feet"),
  26383. default: true
  26384. },
  26385. {
  26386. name: "Macro",
  26387. height: math.unit(280, "feet")
  26388. },
  26389. ]
  26390. ))
  26391. characterMakers.push(() => makeCharacter(
  26392. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26393. {
  26394. goddess: {
  26395. height: math.unit(600, "feet"),
  26396. weight: math.unit(2000000, "tons"),
  26397. name: "Goddess",
  26398. image: {
  26399. source: "./media/characters/lady-kubwa/goddess.svg",
  26400. extra: 1240.5 / 1223,
  26401. bottom: 22 / 1263
  26402. }
  26403. },
  26404. goddesser: {
  26405. height: math.unit(900, "feet"),
  26406. weight: math.unit(20000000, "lb"),
  26407. name: "Goddess-er",
  26408. image: {
  26409. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26410. extra: 899 / 888,
  26411. bottom: 12.6 / 912
  26412. }
  26413. },
  26414. },
  26415. [
  26416. {
  26417. name: "Macro",
  26418. height: math.unit(600, "feet"),
  26419. default: true
  26420. },
  26421. {
  26422. name: "Megamacro",
  26423. height: math.unit(250, "miles")
  26424. },
  26425. ]
  26426. ))
  26427. characterMakers.push(() => makeCharacter(
  26428. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26429. {
  26430. front: {
  26431. height: math.unit(7 + 7 / 12, "feet"),
  26432. weight: math.unit(250, "lb"),
  26433. name: "Front",
  26434. image: {
  26435. source: "./media/characters/tala-grovehorn/front.svg",
  26436. extra: 2636 / 2525,
  26437. bottom: 147 / 2781
  26438. }
  26439. },
  26440. back: {
  26441. height: math.unit(7 + 7 / 12, "feet"),
  26442. weight: math.unit(250, "lb"),
  26443. name: "Back",
  26444. image: {
  26445. source: "./media/characters/tala-grovehorn/back.svg",
  26446. extra: 2635 / 2539,
  26447. bottom: 100 / 2732.8
  26448. }
  26449. },
  26450. mouth: {
  26451. height: math.unit(1.15, "feet"),
  26452. name: "Mouth",
  26453. image: {
  26454. source: "./media/characters/tala-grovehorn/mouth.svg"
  26455. }
  26456. },
  26457. dick: {
  26458. height: math.unit(2.36, "feet"),
  26459. name: "Dick",
  26460. image: {
  26461. source: "./media/characters/tala-grovehorn/dick.svg"
  26462. }
  26463. },
  26464. slit: {
  26465. height: math.unit(0.61, "feet"),
  26466. name: "Slit",
  26467. image: {
  26468. source: "./media/characters/tala-grovehorn/slit.svg"
  26469. }
  26470. },
  26471. },
  26472. [
  26473. ]
  26474. ))
  26475. characterMakers.push(() => makeCharacter(
  26476. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26477. {
  26478. front: {
  26479. height: math.unit(7 + 7 / 12, "feet"),
  26480. weight: math.unit(225, "lb"),
  26481. name: "Front",
  26482. image: {
  26483. source: "./media/characters/epona/front.svg",
  26484. extra: 2445 / 2290,
  26485. bottom: 251 / 2696
  26486. }
  26487. },
  26488. back: {
  26489. height: math.unit(7 + 7 / 12, "feet"),
  26490. weight: math.unit(225, "lb"),
  26491. name: "Back",
  26492. image: {
  26493. source: "./media/characters/epona/back.svg",
  26494. extra: 2546 / 2408,
  26495. bottom: 44 / 2589
  26496. }
  26497. },
  26498. genitals: {
  26499. height: math.unit(1.5, "feet"),
  26500. name: "Genitals",
  26501. image: {
  26502. source: "./media/characters/epona/genitals.svg"
  26503. }
  26504. },
  26505. },
  26506. [
  26507. {
  26508. name: "Normal",
  26509. height: math.unit(7 + 7 / 12, "feet"),
  26510. default: true
  26511. },
  26512. ]
  26513. ))
  26514. characterMakers.push(() => makeCharacter(
  26515. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26516. {
  26517. front: {
  26518. height: math.unit(7, "feet"),
  26519. weight: math.unit(518, "lb"),
  26520. name: "Front",
  26521. image: {
  26522. source: "./media/characters/avia-bloodbourn/front.svg",
  26523. extra: 1466 / 1350,
  26524. bottom: 65 / 1527
  26525. }
  26526. },
  26527. },
  26528. [
  26529. ]
  26530. ))
  26531. characterMakers.push(() => makeCharacter(
  26532. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26533. {
  26534. front: {
  26535. height: math.unit(9.35, "feet"),
  26536. weight: math.unit(600, "lb"),
  26537. name: "Front",
  26538. image: {
  26539. source: "./media/characters/amera/front.svg",
  26540. extra: 891 / 818,
  26541. bottom: 30 / 922.7
  26542. }
  26543. },
  26544. back: {
  26545. height: math.unit(9.35, "feet"),
  26546. weight: math.unit(600, "lb"),
  26547. name: "Back",
  26548. image: {
  26549. source: "./media/characters/amera/back.svg",
  26550. extra: 876 / 824,
  26551. bottom: 6.8 / 884
  26552. }
  26553. },
  26554. dick: {
  26555. height: math.unit(2.14, "feet"),
  26556. name: "Dick",
  26557. image: {
  26558. source: "./media/characters/amera/dick.svg"
  26559. }
  26560. },
  26561. },
  26562. [
  26563. {
  26564. name: "Normal",
  26565. height: math.unit(9.35, "feet"),
  26566. default: true
  26567. },
  26568. ]
  26569. ))
  26570. characterMakers.push(() => makeCharacter(
  26571. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26572. {
  26573. kneeling: {
  26574. height: math.unit(3 + 4 / 12, "feet"),
  26575. weight: math.unit(90, "lb"),
  26576. name: "Kneeling",
  26577. image: {
  26578. source: "./media/characters/rosewen/kneeling.svg",
  26579. extra: 1835 / 1571,
  26580. bottom: 27.7 / 1862
  26581. }
  26582. },
  26583. },
  26584. [
  26585. {
  26586. name: "Normal",
  26587. height: math.unit(3 + 4 / 12, "feet"),
  26588. default: true
  26589. },
  26590. ]
  26591. ))
  26592. characterMakers.push(() => makeCharacter(
  26593. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26594. {
  26595. front: {
  26596. height: math.unit(5 + 10 / 12, "feet"),
  26597. weight: math.unit(200, "lb"),
  26598. name: "Front",
  26599. image: {
  26600. source: "./media/characters/sabah/front.svg",
  26601. extra: 849 / 763,
  26602. bottom: 33.9 / 881
  26603. }
  26604. },
  26605. },
  26606. [
  26607. {
  26608. name: "Normal",
  26609. height: math.unit(5 + 10 / 12, "feet"),
  26610. default: true
  26611. },
  26612. ]
  26613. ))
  26614. characterMakers.push(() => makeCharacter(
  26615. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26616. {
  26617. front: {
  26618. height: math.unit(3 + 5 / 12, "feet"),
  26619. weight: math.unit(40, "kg"),
  26620. name: "Front",
  26621. image: {
  26622. source: "./media/characters/purple-flame/front.svg",
  26623. extra: 1577 / 1412,
  26624. bottom: 97 / 1694
  26625. }
  26626. },
  26627. frontDressed: {
  26628. height: math.unit(3 + 5 / 12, "feet"),
  26629. weight: math.unit(40, "kg"),
  26630. name: "Front (Dressed)",
  26631. image: {
  26632. source: "./media/characters/purple-flame/front-dressed.svg",
  26633. extra: 1577 / 1412,
  26634. bottom: 97 / 1694
  26635. }
  26636. },
  26637. headphones: {
  26638. height: math.unit(0.85, "feet"),
  26639. name: "Headphones",
  26640. image: {
  26641. source: "./media/characters/purple-flame/headphones.svg"
  26642. }
  26643. },
  26644. },
  26645. [
  26646. {
  26647. name: "Really Small",
  26648. height: math.unit(5, "cm")
  26649. },
  26650. {
  26651. name: "Micro",
  26652. height: math.unit(1 + 5 / 12, "feet")
  26653. },
  26654. {
  26655. name: "Normal",
  26656. height: math.unit(3 + 5 / 12, "feet"),
  26657. default: true
  26658. },
  26659. {
  26660. name: "Minimacro",
  26661. height: math.unit(125, "feet")
  26662. },
  26663. {
  26664. name: "Macro",
  26665. height: math.unit(0.5, "miles")
  26666. },
  26667. {
  26668. name: "Megamacro",
  26669. height: math.unit(50, "miles")
  26670. },
  26671. {
  26672. name: "Gigantic",
  26673. height: math.unit(750, "miles")
  26674. },
  26675. {
  26676. name: "Planetary",
  26677. height: math.unit(15000, "miles")
  26678. },
  26679. ]
  26680. ))
  26681. characterMakers.push(() => makeCharacter(
  26682. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26683. {
  26684. front: {
  26685. height: math.unit(14, "feet"),
  26686. weight: math.unit(959, "lb"),
  26687. name: "Front",
  26688. image: {
  26689. source: "./media/characters/arsenal/front.svg",
  26690. extra: 2357 / 2157,
  26691. bottom: 93 / 2458
  26692. }
  26693. },
  26694. },
  26695. [
  26696. {
  26697. name: "Normal",
  26698. height: math.unit(14, "feet"),
  26699. default: true
  26700. },
  26701. ]
  26702. ))
  26703. characterMakers.push(() => makeCharacter(
  26704. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26705. {
  26706. front: {
  26707. height: math.unit(6, "feet"),
  26708. weight: math.unit(150, "lb"),
  26709. name: "Front",
  26710. image: {
  26711. source: "./media/characters/adira/front.svg",
  26712. extra: 1078 / 1029,
  26713. bottom: 87 / 1166
  26714. }
  26715. },
  26716. },
  26717. [
  26718. {
  26719. name: "Micro",
  26720. height: math.unit(4, "inches"),
  26721. default: true
  26722. },
  26723. {
  26724. name: "Macro",
  26725. height: math.unit(50, "feet")
  26726. },
  26727. ]
  26728. ))
  26729. characterMakers.push(() => makeCharacter(
  26730. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26731. {
  26732. front: {
  26733. height: math.unit(16, "feet"),
  26734. weight: math.unit(1000, "lb"),
  26735. name: "Front",
  26736. image: {
  26737. source: "./media/characters/grim/front.svg",
  26738. extra: 622 / 614,
  26739. bottom: 18.1 / 642
  26740. }
  26741. },
  26742. back: {
  26743. height: math.unit(16, "feet"),
  26744. weight: math.unit(1000, "lb"),
  26745. name: "Back",
  26746. image: {
  26747. source: "./media/characters/grim/back.svg",
  26748. extra: 610.6 / 602,
  26749. bottom: 40.8 / 652
  26750. }
  26751. },
  26752. hunched: {
  26753. height: math.unit(9.75, "feet"),
  26754. weight: math.unit(1000, "lb"),
  26755. name: "Hunched",
  26756. image: {
  26757. source: "./media/characters/grim/hunched.svg",
  26758. extra: 304 / 297,
  26759. bottom: 35.4 / 394
  26760. }
  26761. },
  26762. },
  26763. [
  26764. {
  26765. name: "Normal",
  26766. height: math.unit(16, "feet"),
  26767. default: true
  26768. },
  26769. ]
  26770. ))
  26771. characterMakers.push(() => makeCharacter(
  26772. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26773. {
  26774. front: {
  26775. height: math.unit(2.3, "meters"),
  26776. weight: math.unit(300, "lb"),
  26777. name: "Front",
  26778. image: {
  26779. source: "./media/characters/sinja/front-sfw.svg",
  26780. extra: 1393 / 1294,
  26781. bottom: 70 / 1463
  26782. }
  26783. },
  26784. frontNsfw: {
  26785. height: math.unit(2.3, "meters"),
  26786. weight: math.unit(300, "lb"),
  26787. name: "Front (NSFW)",
  26788. image: {
  26789. source: "./media/characters/sinja/front-nsfw.svg",
  26790. extra: 1393 / 1294,
  26791. bottom: 70 / 1463
  26792. }
  26793. },
  26794. back: {
  26795. height: math.unit(2.3, "meters"),
  26796. weight: math.unit(300, "lb"),
  26797. name: "Back",
  26798. image: {
  26799. source: "./media/characters/sinja/back.svg",
  26800. extra: 1393 / 1294,
  26801. bottom: 70 / 1463
  26802. }
  26803. },
  26804. head: {
  26805. height: math.unit(1.771, "feet"),
  26806. name: "Head",
  26807. image: {
  26808. source: "./media/characters/sinja/head.svg"
  26809. }
  26810. },
  26811. slit: {
  26812. height: math.unit(0.8, "feet"),
  26813. name: "Slit",
  26814. image: {
  26815. source: "./media/characters/sinja/slit.svg"
  26816. }
  26817. },
  26818. },
  26819. [
  26820. {
  26821. name: "Normal",
  26822. height: math.unit(2.3, "meters")
  26823. },
  26824. {
  26825. name: "Macro",
  26826. height: math.unit(91, "meters"),
  26827. default: true
  26828. },
  26829. {
  26830. name: "Megamacro",
  26831. height: math.unit(91440, "meters")
  26832. },
  26833. {
  26834. name: "Gigamacro",
  26835. height: math.unit(60960000, "meters")
  26836. },
  26837. {
  26838. name: "Teramacro",
  26839. height: math.unit(9144000000, "meters")
  26840. },
  26841. ]
  26842. ))
  26843. characterMakers.push(() => makeCharacter(
  26844. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26845. {
  26846. front: {
  26847. height: math.unit(1.7, "meters"),
  26848. weight: math.unit(130, "lb"),
  26849. name: "Front",
  26850. image: {
  26851. source: "./media/characters/kyu/front.svg",
  26852. extra: 415 / 395,
  26853. bottom: 5 / 420
  26854. }
  26855. },
  26856. head: {
  26857. height: math.unit(1.75, "feet"),
  26858. name: "Head",
  26859. image: {
  26860. source: "./media/characters/kyu/head.svg"
  26861. }
  26862. },
  26863. foot: {
  26864. height: math.unit(0.81, "feet"),
  26865. name: "Foot",
  26866. image: {
  26867. source: "./media/characters/kyu/foot.svg"
  26868. }
  26869. },
  26870. },
  26871. [
  26872. {
  26873. name: "Normal",
  26874. height: math.unit(1.7, "meters")
  26875. },
  26876. {
  26877. name: "Macro",
  26878. height: math.unit(131, "feet"),
  26879. default: true
  26880. },
  26881. {
  26882. name: "Megamacro",
  26883. height: math.unit(91440, "meters")
  26884. },
  26885. {
  26886. name: "Gigamacro",
  26887. height: math.unit(60960000, "meters")
  26888. },
  26889. {
  26890. name: "Teramacro",
  26891. height: math.unit(9144000000, "meters")
  26892. },
  26893. ]
  26894. ))
  26895. characterMakers.push(() => makeCharacter(
  26896. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26897. {
  26898. front: {
  26899. height: math.unit(7 + 1 / 12, "feet"),
  26900. weight: math.unit(250, "lb"),
  26901. name: "Front",
  26902. image: {
  26903. source: "./media/characters/joey/front.svg",
  26904. extra: 1791 / 1537,
  26905. bottom: 28 / 1816
  26906. }
  26907. },
  26908. },
  26909. [
  26910. {
  26911. name: "Micro",
  26912. height: math.unit(3, "inches")
  26913. },
  26914. {
  26915. name: "Normal",
  26916. height: math.unit(7 + 1 / 12, "feet"),
  26917. default: true
  26918. },
  26919. ]
  26920. ))
  26921. characterMakers.push(() => makeCharacter(
  26922. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26923. {
  26924. front: {
  26925. height: math.unit(165, "cm"),
  26926. weight: math.unit(140, "lb"),
  26927. name: "Front",
  26928. image: {
  26929. source: "./media/characters/sam-evans/front.svg",
  26930. extra: 3417 / 3230,
  26931. bottom: 41.3 / 3417
  26932. }
  26933. },
  26934. frontSixTails: {
  26935. height: math.unit(165, "cm"),
  26936. weight: math.unit(140, "lb"),
  26937. name: "Front-six-tails",
  26938. image: {
  26939. source: "./media/characters/sam-evans/front-six-tails.svg",
  26940. extra: 3417 / 3230,
  26941. bottom: 41.3 / 3417
  26942. }
  26943. },
  26944. back: {
  26945. height: math.unit(165, "cm"),
  26946. weight: math.unit(140, "lb"),
  26947. name: "Back",
  26948. image: {
  26949. source: "./media/characters/sam-evans/back.svg",
  26950. extra: 3227 / 3032,
  26951. bottom: 6.8 / 3234
  26952. }
  26953. },
  26954. face: {
  26955. height: math.unit(0.68, "feet"),
  26956. name: "Face",
  26957. image: {
  26958. source: "./media/characters/sam-evans/face.svg"
  26959. }
  26960. },
  26961. },
  26962. [
  26963. {
  26964. name: "Normal",
  26965. height: math.unit(165, "cm"),
  26966. default: true
  26967. },
  26968. {
  26969. name: "Macro",
  26970. height: math.unit(100, "meters")
  26971. },
  26972. {
  26973. name: "Macro+",
  26974. height: math.unit(800, "meters")
  26975. },
  26976. {
  26977. name: "Macro++",
  26978. height: math.unit(3, "km")
  26979. },
  26980. {
  26981. name: "Macro+++",
  26982. height: math.unit(30, "km")
  26983. },
  26984. ]
  26985. ))
  26986. characterMakers.push(() => makeCharacter(
  26987. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26988. {
  26989. front: {
  26990. height: math.unit(10, "feet"),
  26991. weight: math.unit(750, "lb"),
  26992. name: "Front",
  26993. image: {
  26994. source: "./media/characters/juliet-a/front.svg",
  26995. extra: 1766 / 1720,
  26996. bottom: 43 / 1809
  26997. }
  26998. },
  26999. back: {
  27000. height: math.unit(10, "feet"),
  27001. weight: math.unit(750, "lb"),
  27002. name: "Back",
  27003. image: {
  27004. source: "./media/characters/juliet-a/back.svg",
  27005. extra: 1781 / 1734,
  27006. bottom: 35 / 1810,
  27007. }
  27008. },
  27009. },
  27010. [
  27011. {
  27012. name: "Normal",
  27013. height: math.unit(10, "feet"),
  27014. default: true
  27015. },
  27016. {
  27017. name: "Dragon Form",
  27018. height: math.unit(250, "feet")
  27019. },
  27020. {
  27021. name: "Macro",
  27022. height: math.unit(1000, "feet")
  27023. },
  27024. {
  27025. name: "Megamacro",
  27026. height: math.unit(10000, "feet")
  27027. }
  27028. ]
  27029. ))
  27030. characterMakers.push(() => makeCharacter(
  27031. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27032. {
  27033. regular: {
  27034. height: math.unit(7 + 3 / 12, "feet"),
  27035. weight: math.unit(260, "lb"),
  27036. name: "Regular",
  27037. image: {
  27038. source: "./media/characters/wild/regular.svg",
  27039. extra: 97.45 / 92,
  27040. bottom: 6.8 / 104.3
  27041. }
  27042. },
  27043. biggums: {
  27044. height: math.unit(8 + 6 / 12, "feet"),
  27045. weight: math.unit(425, "lb"),
  27046. name: "Biggums",
  27047. image: {
  27048. source: "./media/characters/wild/biggums.svg",
  27049. extra: 97.45 / 92,
  27050. bottom: 7.5 / 132.34
  27051. }
  27052. },
  27053. mawRegular: {
  27054. height: math.unit(1.24, "feet"),
  27055. name: "Maw (Regular)",
  27056. image: {
  27057. source: "./media/characters/wild/maw.svg"
  27058. }
  27059. },
  27060. mawBiggums: {
  27061. height: math.unit(1.47, "feet"),
  27062. name: "Maw (Biggums)",
  27063. image: {
  27064. source: "./media/characters/wild/maw.svg"
  27065. }
  27066. },
  27067. },
  27068. [
  27069. {
  27070. name: "Normal",
  27071. height: math.unit(7 + 3 / 12, "feet"),
  27072. default: true
  27073. },
  27074. ]
  27075. ))
  27076. characterMakers.push(() => makeCharacter(
  27077. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27078. {
  27079. front: {
  27080. height: math.unit(2.5, "meters"),
  27081. weight: math.unit(200, "kg"),
  27082. name: "Front",
  27083. image: {
  27084. source: "./media/characters/vidar/front.svg",
  27085. extra: 2994 / 2795,
  27086. bottom: 56 / 3061
  27087. }
  27088. },
  27089. back: {
  27090. height: math.unit(2.5, "meters"),
  27091. weight: math.unit(200, "kg"),
  27092. name: "Back",
  27093. image: {
  27094. source: "./media/characters/vidar/back.svg",
  27095. extra: 3131 / 2928,
  27096. bottom: 13.5 / 3141.5
  27097. }
  27098. },
  27099. feral: {
  27100. height: math.unit(2.5, "meters"),
  27101. weight: math.unit(2000, "kg"),
  27102. name: "Feral",
  27103. image: {
  27104. source: "./media/characters/vidar/feral.svg",
  27105. extra: 2790 / 1765,
  27106. bottom: 6 / 2796
  27107. }
  27108. },
  27109. },
  27110. [
  27111. {
  27112. name: "Normal",
  27113. height: math.unit(2.5, "meters"),
  27114. default: true
  27115. },
  27116. {
  27117. name: "Macro",
  27118. height: math.unit(100, "meters")
  27119. },
  27120. ]
  27121. ))
  27122. characterMakers.push(() => makeCharacter(
  27123. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27124. {
  27125. front: {
  27126. height: math.unit(5 + 9 / 12, "feet"),
  27127. weight: math.unit(120, "lb"),
  27128. name: "Front",
  27129. image: {
  27130. source: "./media/characters/ash/front.svg",
  27131. extra: 2189 / 1961,
  27132. bottom: 5.2 / 2194
  27133. }
  27134. },
  27135. },
  27136. [
  27137. {
  27138. name: "Normal",
  27139. height: math.unit(5 + 9 / 12, "feet"),
  27140. default: true
  27141. },
  27142. ]
  27143. ))
  27144. characterMakers.push(() => makeCharacter(
  27145. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27146. {
  27147. front: {
  27148. height: math.unit(9, "feet"),
  27149. weight: math.unit(10000, "lb"),
  27150. name: "Front",
  27151. image: {
  27152. source: "./media/characters/gygabite/front.svg",
  27153. bottom: 31.7 / 537.8,
  27154. extra: 505 / 370
  27155. }
  27156. },
  27157. },
  27158. [
  27159. {
  27160. name: "Normal",
  27161. height: math.unit(9, "feet"),
  27162. default: true
  27163. },
  27164. ]
  27165. ))
  27166. characterMakers.push(() => makeCharacter(
  27167. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27168. {
  27169. front: {
  27170. height: math.unit(12, "feet"),
  27171. weight: math.unit(35000, "lb"),
  27172. name: "Front",
  27173. image: {
  27174. source: "./media/characters/p0tat0/front.svg",
  27175. extra: 1065 / 921,
  27176. bottom: 55.7 / 1121.25
  27177. }
  27178. },
  27179. },
  27180. [
  27181. {
  27182. name: "Normal",
  27183. height: math.unit(12, "feet"),
  27184. default: true
  27185. },
  27186. ]
  27187. ))
  27188. characterMakers.push(() => makeCharacter(
  27189. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27190. {
  27191. side: {
  27192. height: math.unit(6.5, "feet"),
  27193. weight: math.unit(800, "lb"),
  27194. name: "Side",
  27195. image: {
  27196. source: "./media/characters/dusk/side.svg",
  27197. extra: 615 / 373,
  27198. bottom: 53 / 664
  27199. }
  27200. },
  27201. sitting: {
  27202. height: math.unit(7, "feet"),
  27203. weight: math.unit(800, "lb"),
  27204. name: "Sitting",
  27205. image: {
  27206. source: "./media/characters/dusk/sitting.svg",
  27207. extra: 753 / 425,
  27208. bottom: 33 / 774
  27209. }
  27210. },
  27211. head: {
  27212. height: math.unit(6.1, "feet"),
  27213. name: "Head",
  27214. image: {
  27215. source: "./media/characters/dusk/head.svg"
  27216. }
  27217. },
  27218. },
  27219. [
  27220. {
  27221. name: "Normal",
  27222. height: math.unit(7, "feet"),
  27223. default: true
  27224. },
  27225. ]
  27226. ))
  27227. characterMakers.push(() => makeCharacter(
  27228. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27229. {
  27230. front: {
  27231. height: math.unit(15, "feet"),
  27232. weight: math.unit(7000, "lb"),
  27233. name: "Front",
  27234. image: {
  27235. source: "./media/characters/jay-direwolf/front.svg",
  27236. extra: 1810 / 1732,
  27237. bottom: 66 / 1892
  27238. }
  27239. },
  27240. },
  27241. [
  27242. {
  27243. name: "Normal",
  27244. height: math.unit(15, "feet"),
  27245. default: true
  27246. },
  27247. ]
  27248. ))
  27249. characterMakers.push(() => makeCharacter(
  27250. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27251. {
  27252. front: {
  27253. height: math.unit(4 + 9 / 12, "feet"),
  27254. weight: math.unit(130, "lb"),
  27255. name: "Front",
  27256. image: {
  27257. source: "./media/characters/anchovie/front.svg",
  27258. extra: 382 / 350,
  27259. bottom: 25 / 409
  27260. }
  27261. },
  27262. back: {
  27263. height: math.unit(4 + 9 / 12, "feet"),
  27264. weight: math.unit(130, "lb"),
  27265. name: "Back",
  27266. image: {
  27267. source: "./media/characters/anchovie/back.svg",
  27268. extra: 385 / 352,
  27269. bottom: 16.6 / 402
  27270. }
  27271. },
  27272. frontDressed: {
  27273. height: math.unit(4 + 9 / 12, "feet"),
  27274. weight: math.unit(130, "lb"),
  27275. name: "Front (Dressed)",
  27276. image: {
  27277. source: "./media/characters/anchovie/front-dressed.svg",
  27278. extra: 382 / 350,
  27279. bottom: 25 / 409
  27280. }
  27281. },
  27282. backDressed: {
  27283. height: math.unit(4 + 9 / 12, "feet"),
  27284. weight: math.unit(130, "lb"),
  27285. name: "Back (Dressed)",
  27286. image: {
  27287. source: "./media/characters/anchovie/back-dressed.svg",
  27288. extra: 385 / 352,
  27289. bottom: 16.6 / 402
  27290. }
  27291. },
  27292. },
  27293. [
  27294. {
  27295. name: "Micro",
  27296. height: math.unit(6.4, "inches")
  27297. },
  27298. {
  27299. name: "Normal",
  27300. height: math.unit(4 + 9 / 12, "feet"),
  27301. default: true
  27302. },
  27303. ]
  27304. ))
  27305. characterMakers.push(() => makeCharacter(
  27306. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27307. {
  27308. front: {
  27309. height: math.unit(2, "meters"),
  27310. weight: math.unit(180, "lb"),
  27311. name: "Front",
  27312. image: {
  27313. source: "./media/characters/acidrenamon/front.svg",
  27314. extra: 987 / 890,
  27315. bottom: 22.8 / 1009
  27316. }
  27317. },
  27318. back: {
  27319. height: math.unit(2, "meters"),
  27320. weight: math.unit(180, "lb"),
  27321. name: "Back",
  27322. image: {
  27323. source: "./media/characters/acidrenamon/back.svg",
  27324. extra: 983 / 891,
  27325. bottom: 8.4 / 992
  27326. }
  27327. },
  27328. head: {
  27329. height: math.unit(1.92, "feet"),
  27330. name: "Head",
  27331. image: {
  27332. source: "./media/characters/acidrenamon/head.svg"
  27333. }
  27334. },
  27335. rump: {
  27336. height: math.unit(1.72, "feet"),
  27337. name: "Rump",
  27338. image: {
  27339. source: "./media/characters/acidrenamon/rump.svg"
  27340. }
  27341. },
  27342. tail: {
  27343. height: math.unit(4.2, "feet"),
  27344. name: "Tail",
  27345. image: {
  27346. source: "./media/characters/acidrenamon/tail.svg"
  27347. }
  27348. },
  27349. },
  27350. [
  27351. {
  27352. name: "Normal",
  27353. height: math.unit(2, "meters"),
  27354. default: true
  27355. },
  27356. {
  27357. name: "Minimacro",
  27358. height: math.unit(7, "meters")
  27359. },
  27360. {
  27361. name: "Macro",
  27362. height: math.unit(200, "meters")
  27363. },
  27364. {
  27365. name: "Gigamacro",
  27366. height: math.unit(0.2, "earths")
  27367. },
  27368. ]
  27369. ))
  27370. characterMakers.push(() => makeCharacter(
  27371. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27372. {
  27373. front: {
  27374. height: math.unit(6, "feet"),
  27375. weight: math.unit(150, "lb"),
  27376. name: "Front",
  27377. image: {
  27378. source: "./media/characters/kenzie-lee/front.svg",
  27379. extra: 1525 / 1465,
  27380. bottom: 45 / 1570
  27381. }
  27382. },
  27383. side: {
  27384. height: math.unit(6, "feet"),
  27385. weight: math.unit(150, "lb"),
  27386. name: "Side",
  27387. image: {
  27388. source: "./media/characters/kenzie-lee/side.svg",
  27389. extra: 5505 / 5383,
  27390. bottom: 60 / 5573
  27391. }
  27392. },
  27393. paw: {
  27394. height: math.unit(0.57, "feet"),
  27395. name: "Paw",
  27396. image: {
  27397. source: "./media/characters/kenzie-lee/paw.svg"
  27398. }
  27399. },
  27400. },
  27401. [
  27402. {
  27403. name: "Normal",
  27404. height: math.unit(152, "feet"),
  27405. default: true
  27406. },
  27407. {
  27408. name: "Megamacro",
  27409. height: math.unit(7, "miles")
  27410. },
  27411. {
  27412. name: "Gigamacro",
  27413. height: math.unit(8000, "miles")
  27414. },
  27415. ]
  27416. ))
  27417. characterMakers.push(() => makeCharacter(
  27418. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27419. {
  27420. side: {
  27421. height: math.unit(6, "feet"),
  27422. weight: math.unit(150, "lb"),
  27423. name: "Side",
  27424. image: {
  27425. source: "./media/characters/withers/side.svg",
  27426. extra: 1830 / 1728,
  27427. bottom: 96 / 1927
  27428. }
  27429. },
  27430. front: {
  27431. height: math.unit(6, "feet"),
  27432. weight: math.unit(150, "lb"),
  27433. name: "Front",
  27434. image: {
  27435. source: "./media/characters/withers/front.svg",
  27436. extra: 1514 / 1438,
  27437. bottom: 118 / 1632
  27438. }
  27439. },
  27440. },
  27441. [
  27442. {
  27443. name: "Macro",
  27444. height: math.unit(168, "feet"),
  27445. default: true
  27446. },
  27447. {
  27448. name: "Megamacro",
  27449. height: math.unit(15, "miles")
  27450. }
  27451. ]
  27452. ))
  27453. characterMakers.push(() => makeCharacter(
  27454. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27455. {
  27456. front: {
  27457. height: math.unit(6 + 7 / 12, "feet"),
  27458. weight: math.unit(250, "lb"),
  27459. name: "Front",
  27460. image: {
  27461. source: "./media/characters/nemoskii/front.svg",
  27462. extra: 2270 / 1734,
  27463. bottom: 86 / 2354
  27464. }
  27465. },
  27466. back: {
  27467. height: math.unit(6 + 7 / 12, "feet"),
  27468. weight: math.unit(250, "lb"),
  27469. name: "Back",
  27470. image: {
  27471. source: "./media/characters/nemoskii/back.svg",
  27472. extra: 1845 / 1788,
  27473. bottom: 10.5 / 1852
  27474. }
  27475. },
  27476. head: {
  27477. height: math.unit(1.31, "feet"),
  27478. name: "Head",
  27479. image: {
  27480. source: "./media/characters/nemoskii/head.svg"
  27481. }
  27482. },
  27483. },
  27484. [
  27485. {
  27486. name: "Micro",
  27487. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27488. },
  27489. {
  27490. name: "Normal",
  27491. height: math.unit(6 + 7 / 12, "feet"),
  27492. default: true
  27493. },
  27494. {
  27495. name: "Macro",
  27496. height: math.unit((6 + 7 / 12) * 150, "feet")
  27497. },
  27498. {
  27499. name: "Macro+",
  27500. height: math.unit((6 + 7 / 12) * 500, "feet")
  27501. },
  27502. {
  27503. name: "Megamacro",
  27504. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27505. },
  27506. ]
  27507. ))
  27508. characterMakers.push(() => makeCharacter(
  27509. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27510. {
  27511. front: {
  27512. height: math.unit(1, "mile"),
  27513. weight: math.unit(265261.9, "lb"),
  27514. name: "Front",
  27515. image: {
  27516. source: "./media/characters/shui/front.svg",
  27517. extra: 1633 / 1564,
  27518. bottom: 91.5 / 1726
  27519. }
  27520. },
  27521. },
  27522. [
  27523. {
  27524. name: "Macro",
  27525. height: math.unit(1, "mile"),
  27526. default: true
  27527. },
  27528. ]
  27529. ))
  27530. characterMakers.push(() => makeCharacter(
  27531. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27532. {
  27533. front: {
  27534. height: math.unit(12 + 6 / 12, "feet"),
  27535. weight: math.unit(1342, "lb"),
  27536. name: "Front",
  27537. image: {
  27538. source: "./media/characters/arokh-takakura/front.svg",
  27539. extra: 1089 / 1043,
  27540. bottom: 77.4 / 1176.7
  27541. }
  27542. },
  27543. back: {
  27544. height: math.unit(12 + 6 / 12, "feet"),
  27545. weight: math.unit(1342, "lb"),
  27546. name: "Back",
  27547. image: {
  27548. source: "./media/characters/arokh-takakura/back.svg",
  27549. extra: 1046 / 1019,
  27550. bottom: 102 / 1150
  27551. }
  27552. },
  27553. },
  27554. [
  27555. {
  27556. name: "Big",
  27557. height: math.unit(12 + 6 / 12, "feet"),
  27558. default: true
  27559. },
  27560. ]
  27561. ))
  27562. characterMakers.push(() => makeCharacter(
  27563. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27564. {
  27565. front: {
  27566. height: math.unit(5 + 6 / 12, "feet"),
  27567. weight: math.unit(150, "lb"),
  27568. name: "Front",
  27569. image: {
  27570. source: "./media/characters/theo/front.svg",
  27571. extra: 1184 / 1131,
  27572. bottom: 7.4 / 1191
  27573. }
  27574. },
  27575. },
  27576. [
  27577. {
  27578. name: "Micro",
  27579. height: math.unit(5, "inches")
  27580. },
  27581. {
  27582. name: "Normal",
  27583. height: math.unit(5 + 6 / 12, "feet"),
  27584. default: true
  27585. },
  27586. ]
  27587. ))
  27588. characterMakers.push(() => makeCharacter(
  27589. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27590. {
  27591. front: {
  27592. height: math.unit(5 + 9 / 12, "feet"),
  27593. weight: math.unit(130, "lb"),
  27594. name: "Front",
  27595. image: {
  27596. source: "./media/characters/cecelia-swift/front.svg",
  27597. extra: 502 / 484,
  27598. bottom: 23 / 523
  27599. }
  27600. },
  27601. back: {
  27602. height: math.unit(5 + 9 / 12, "feet"),
  27603. weight: math.unit(130, "lb"),
  27604. name: "Back",
  27605. image: {
  27606. source: "./media/characters/cecelia-swift/back.svg",
  27607. extra: 499 / 485,
  27608. bottom: 12 / 511
  27609. }
  27610. },
  27611. head: {
  27612. height: math.unit(0.90, "feet"),
  27613. name: "Head",
  27614. image: {
  27615. source: "./media/characters/cecelia-swift/head.svg"
  27616. }
  27617. },
  27618. rump: {
  27619. height: math.unit(1.75, "feet"),
  27620. name: "Rump",
  27621. image: {
  27622. source: "./media/characters/cecelia-swift/rump.svg"
  27623. }
  27624. },
  27625. },
  27626. [
  27627. {
  27628. name: "Normal",
  27629. height: math.unit(5 + 9 / 12, "feet"),
  27630. default: true
  27631. },
  27632. {
  27633. name: "Big",
  27634. height: math.unit(50, "feet")
  27635. },
  27636. {
  27637. name: "Macro",
  27638. height: math.unit(100, "feet")
  27639. },
  27640. {
  27641. name: "Macro+",
  27642. height: math.unit(500, "feet")
  27643. },
  27644. {
  27645. name: "Macro++",
  27646. height: math.unit(1000, "feet")
  27647. },
  27648. ]
  27649. ))
  27650. characterMakers.push(() => makeCharacter(
  27651. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27652. {
  27653. front: {
  27654. height: math.unit(6, "feet"),
  27655. weight: math.unit(150, "lb"),
  27656. name: "Front",
  27657. image: {
  27658. source: "./media/characters/kaunan/front.svg",
  27659. extra: 2890 / 2523,
  27660. bottom: 49 / 2939
  27661. }
  27662. },
  27663. },
  27664. [
  27665. {
  27666. name: "Macro",
  27667. height: math.unit(150, "feet"),
  27668. default: true
  27669. },
  27670. ]
  27671. ))
  27672. characterMakers.push(() => makeCharacter(
  27673. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27674. {
  27675. front: {
  27676. height: math.unit(175, "cm"),
  27677. weight: math.unit(60, "kg"),
  27678. name: "Front",
  27679. image: {
  27680. source: "./media/characters/fei/front.svg",
  27681. extra: 1873/1723,
  27682. bottom: 53/1926
  27683. }
  27684. },
  27685. },
  27686. [
  27687. {
  27688. name: "Mortal",
  27689. height: math.unit(175, "cm")
  27690. },
  27691. {
  27692. name: "Normal",
  27693. height: math.unit(3500, "m"),
  27694. default: true
  27695. },
  27696. {
  27697. name: "Stroll",
  27698. height: math.unit(17.5, "km")
  27699. },
  27700. {
  27701. name: "Showoff",
  27702. height: math.unit(175, "km")
  27703. },
  27704. ]
  27705. ))
  27706. characterMakers.push(() => makeCharacter(
  27707. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27708. {
  27709. front: {
  27710. height: math.unit(7, "feet"),
  27711. weight: math.unit(1000, "kg"),
  27712. name: "Front",
  27713. image: {
  27714. source: "./media/characters/edrax/front.svg",
  27715. extra: 2838 / 2550,
  27716. bottom: 130 / 2968
  27717. }
  27718. },
  27719. },
  27720. [
  27721. {
  27722. name: "Small",
  27723. height: math.unit(7, "feet")
  27724. },
  27725. {
  27726. name: "Normal",
  27727. height: math.unit(1500, "meters")
  27728. },
  27729. {
  27730. name: "Mega",
  27731. height: math.unit(12000000, "km"),
  27732. default: true
  27733. },
  27734. {
  27735. name: "Megamacro",
  27736. height: math.unit(10600000, "lightyears")
  27737. },
  27738. {
  27739. name: "Hypermacro",
  27740. height: math.unit(256, "yottameters")
  27741. },
  27742. ]
  27743. ))
  27744. characterMakers.push(() => makeCharacter(
  27745. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27746. {
  27747. front: {
  27748. height: math.unit(10, "feet"),
  27749. weight: math.unit(750, "lb"),
  27750. name: "Front",
  27751. image: {
  27752. source: "./media/characters/clove/front.svg",
  27753. extra: 2031 / 1860,
  27754. bottom: 47.8 / 2080
  27755. }
  27756. },
  27757. back: {
  27758. height: math.unit(10, "feet"),
  27759. weight: math.unit(750, "lb"),
  27760. name: "Back",
  27761. image: {
  27762. source: "./media/characters/clove/back.svg",
  27763. extra: 2025 / 1859,
  27764. bottom: 46 / 2071
  27765. }
  27766. },
  27767. },
  27768. [
  27769. {
  27770. name: "Normal",
  27771. height: math.unit(10, "feet"),
  27772. default: true
  27773. },
  27774. ]
  27775. ))
  27776. characterMakers.push(() => makeCharacter(
  27777. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27778. {
  27779. front: {
  27780. height: math.unit(4, "feet"),
  27781. weight: math.unit(50, "lb"),
  27782. name: "Front",
  27783. image: {
  27784. source: "./media/characters/alex-rabbit/front.svg",
  27785. extra: 507 / 458,
  27786. bottom: 18.5 / 527
  27787. }
  27788. },
  27789. back: {
  27790. height: math.unit(4, "feet"),
  27791. weight: math.unit(50, "lb"),
  27792. name: "Back",
  27793. image: {
  27794. source: "./media/characters/alex-rabbit/back.svg",
  27795. extra: 502 / 460,
  27796. bottom: 18.9 / 521
  27797. }
  27798. },
  27799. },
  27800. [
  27801. {
  27802. name: "Normal",
  27803. height: math.unit(4, "feet"),
  27804. default: true
  27805. },
  27806. ]
  27807. ))
  27808. characterMakers.push(() => makeCharacter(
  27809. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27810. {
  27811. front: {
  27812. height: math.unit(1 + 3 / 12, "feet"),
  27813. weight: math.unit(80, "lb"),
  27814. name: "Front",
  27815. image: {
  27816. source: "./media/characters/zander-rose/front.svg",
  27817. extra: 916 / 797,
  27818. bottom: 17 / 933
  27819. }
  27820. },
  27821. back: {
  27822. height: math.unit(1 + 3 / 12, "feet"),
  27823. weight: math.unit(80, "lb"),
  27824. name: "Back",
  27825. image: {
  27826. source: "./media/characters/zander-rose/back.svg",
  27827. extra: 903 / 779,
  27828. bottom: 31 / 934
  27829. }
  27830. },
  27831. },
  27832. [
  27833. {
  27834. name: "Normal",
  27835. height: math.unit(1 + 3 / 12, "feet"),
  27836. default: true
  27837. },
  27838. ]
  27839. ))
  27840. characterMakers.push(() => makeCharacter(
  27841. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27842. {
  27843. anthro: {
  27844. height: math.unit(6, "feet"),
  27845. weight: math.unit(150, "lb"),
  27846. name: "Anthro",
  27847. image: {
  27848. source: "./media/characters/razz/anthro.svg",
  27849. extra: 1437 / 1343,
  27850. bottom: 48 / 1485
  27851. }
  27852. },
  27853. feral: {
  27854. height: math.unit(6, "feet"),
  27855. weight: math.unit(150, "lb"),
  27856. name: "Feral",
  27857. image: {
  27858. source: "./media/characters/razz/feral.svg",
  27859. extra: 2569 / 1385,
  27860. bottom: 95 / 2664
  27861. }
  27862. },
  27863. },
  27864. [
  27865. {
  27866. name: "Normal",
  27867. height: math.unit(6, "feet"),
  27868. default: true
  27869. },
  27870. ]
  27871. ))
  27872. characterMakers.push(() => makeCharacter(
  27873. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27874. {
  27875. front: {
  27876. height: math.unit(9 + 4 / 12, "feet"),
  27877. weight: math.unit(500, "lb"),
  27878. name: "Front",
  27879. image: {
  27880. source: "./media/characters/morrigan/front.svg",
  27881. extra: 2707 / 2579,
  27882. bottom: 156 / 2863
  27883. }
  27884. },
  27885. },
  27886. [
  27887. {
  27888. name: "Normal",
  27889. height: math.unit(9 + 4 / 12, "feet"),
  27890. default: true
  27891. },
  27892. ]
  27893. ))
  27894. characterMakers.push(() => makeCharacter(
  27895. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27896. {
  27897. front: {
  27898. height: math.unit(5, "stories"),
  27899. weight: math.unit(4000, "lb"),
  27900. name: "Front",
  27901. image: {
  27902. source: "./media/characters/jenene/front.svg",
  27903. extra: 1780 / 1710,
  27904. bottom: 57 / 1837
  27905. }
  27906. },
  27907. },
  27908. [
  27909. {
  27910. name: "Normal",
  27911. height: math.unit(5, "stories"),
  27912. default: true
  27913. },
  27914. ]
  27915. ))
  27916. characterMakers.push(() => makeCharacter(
  27917. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27918. {
  27919. taurSfw: {
  27920. height: math.unit(10, "meters"),
  27921. weight: math.unit(17500, "kg"),
  27922. name: "Taur",
  27923. image: {
  27924. source: "./media/characters/faey/taur-sfw.svg",
  27925. extra: 1200 / 968,
  27926. bottom: 41 / 1241
  27927. }
  27928. },
  27929. chestmaw: {
  27930. height: math.unit(2.01, "meters"),
  27931. name: "Chestmaw",
  27932. image: {
  27933. source: "./media/characters/faey/chestmaw.svg"
  27934. }
  27935. },
  27936. foot: {
  27937. height: math.unit(2.43, "meters"),
  27938. name: "Foot",
  27939. image: {
  27940. source: "./media/characters/faey/foot.svg"
  27941. }
  27942. },
  27943. jaws: {
  27944. height: math.unit(1.66, "meters"),
  27945. name: "Jaws",
  27946. image: {
  27947. source: "./media/characters/faey/jaws.svg"
  27948. }
  27949. },
  27950. tongues: {
  27951. height: math.unit(2.01, "meters"),
  27952. name: "Tongues",
  27953. image: {
  27954. source: "./media/characters/faey/tongues.svg"
  27955. }
  27956. },
  27957. },
  27958. [
  27959. {
  27960. name: "Small",
  27961. height: math.unit(10, "meters"),
  27962. default: true
  27963. },
  27964. {
  27965. name: "Big",
  27966. height: math.unit(500000, "km")
  27967. },
  27968. ]
  27969. ))
  27970. characterMakers.push(() => makeCharacter(
  27971. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27972. {
  27973. front: {
  27974. height: math.unit(7, "feet"),
  27975. weight: math.unit(275, "lb"),
  27976. name: "Front",
  27977. image: {
  27978. source: "./media/characters/roku/front.svg",
  27979. extra: 903 / 878,
  27980. bottom: 37 / 940
  27981. }
  27982. },
  27983. },
  27984. [
  27985. {
  27986. name: "Normal",
  27987. height: math.unit(7, "feet"),
  27988. default: true
  27989. },
  27990. {
  27991. name: "Macro",
  27992. height: math.unit(500, "feet")
  27993. },
  27994. {
  27995. name: "Megamacro",
  27996. height: math.unit(200, "miles")
  27997. },
  27998. ]
  27999. ))
  28000. characterMakers.push(() => makeCharacter(
  28001. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28002. {
  28003. front: {
  28004. height: math.unit(6 + 2 / 12, "feet"),
  28005. weight: math.unit(150, "lb"),
  28006. name: "Front",
  28007. image: {
  28008. source: "./media/characters/lira/front.svg",
  28009. extra: 1727 / 1605,
  28010. bottom: 26 / 1753
  28011. }
  28012. },
  28013. back: {
  28014. height: math.unit(6 + 2 / 12, "feet"),
  28015. weight: math.unit(150, "lb"),
  28016. name: "Back",
  28017. image: {
  28018. source: "./media/characters/lira/back.svg",
  28019. extra: 1713/1621,
  28020. bottom: 20/1733
  28021. }
  28022. },
  28023. hand: {
  28024. height: math.unit(0.75, "feet"),
  28025. name: "Hand",
  28026. image: {
  28027. source: "./media/characters/lira/hand.svg"
  28028. }
  28029. },
  28030. maw: {
  28031. height: math.unit(0.65, "feet"),
  28032. name: "Maw",
  28033. image: {
  28034. source: "./media/characters/lira/maw.svg"
  28035. }
  28036. },
  28037. pawDigi: {
  28038. height: math.unit(1.6, "feet"),
  28039. name: "Paw Digi",
  28040. image: {
  28041. source: "./media/characters/lira/paw-digi.svg"
  28042. }
  28043. },
  28044. pawPlanti: {
  28045. height: math.unit(1.4, "feet"),
  28046. name: "Paw Planti",
  28047. image: {
  28048. source: "./media/characters/lira/paw-planti.svg"
  28049. }
  28050. },
  28051. },
  28052. [
  28053. {
  28054. name: "Normal",
  28055. height: math.unit(6 + 2 / 12, "feet"),
  28056. default: true
  28057. },
  28058. {
  28059. name: "Macro",
  28060. height: math.unit(100, "feet")
  28061. },
  28062. {
  28063. name: "Macro²",
  28064. height: math.unit(1600, "feet")
  28065. },
  28066. {
  28067. name: "Planetary",
  28068. height: math.unit(20, "earths")
  28069. },
  28070. ]
  28071. ))
  28072. characterMakers.push(() => makeCharacter(
  28073. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28074. {
  28075. front: {
  28076. height: math.unit(6, "feet"),
  28077. weight: math.unit(150, "lb"),
  28078. name: "Front",
  28079. image: {
  28080. source: "./media/characters/hadjet/front.svg",
  28081. extra: 1480 / 1346,
  28082. bottom: 26 / 1506
  28083. }
  28084. },
  28085. frontNsfw: {
  28086. height: math.unit(6, "feet"),
  28087. weight: math.unit(150, "lb"),
  28088. name: "Front (NSFW)",
  28089. image: {
  28090. source: "./media/characters/hadjet/front-nsfw.svg",
  28091. extra: 1440 / 1358,
  28092. bottom: 52 / 1492
  28093. }
  28094. },
  28095. },
  28096. [
  28097. {
  28098. name: "Macro",
  28099. height: math.unit(10, "stories"),
  28100. default: true
  28101. },
  28102. {
  28103. name: "Megamacro",
  28104. height: math.unit(1.5, "miles")
  28105. },
  28106. {
  28107. name: "Megamacro+",
  28108. height: math.unit(5, "miles")
  28109. },
  28110. ]
  28111. ))
  28112. characterMakers.push(() => makeCharacter(
  28113. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28114. {
  28115. side: {
  28116. height: math.unit(106, "feet"),
  28117. weight: math.unit(500, "tonnes"),
  28118. name: "Side",
  28119. image: {
  28120. source: "./media/characters/kodran/side.svg",
  28121. extra: 553 / 480,
  28122. bottom: 33 / 586
  28123. }
  28124. },
  28125. front: {
  28126. height: math.unit(132, "feet"),
  28127. weight: math.unit(500, "tonnes"),
  28128. name: "Front",
  28129. image: {
  28130. source: "./media/characters/kodran/front.svg",
  28131. extra: 667 / 643,
  28132. bottom: 42 / 709
  28133. }
  28134. },
  28135. flying: {
  28136. height: math.unit(350, "feet"),
  28137. weight: math.unit(500, "tonnes"),
  28138. name: "Flying",
  28139. image: {
  28140. source: "./media/characters/kodran/flying.svg"
  28141. }
  28142. },
  28143. foot: {
  28144. height: math.unit(33, "feet"),
  28145. name: "Foot",
  28146. image: {
  28147. source: "./media/characters/kodran/foot.svg"
  28148. }
  28149. },
  28150. footFront: {
  28151. height: math.unit(19, "feet"),
  28152. name: "Foot (Front)",
  28153. image: {
  28154. source: "./media/characters/kodran/foot-front.svg",
  28155. extra: 261 / 261,
  28156. bottom: 91 / 352
  28157. }
  28158. },
  28159. headFront: {
  28160. height: math.unit(53, "feet"),
  28161. name: "Head (Front)",
  28162. image: {
  28163. source: "./media/characters/kodran/head-front.svg"
  28164. }
  28165. },
  28166. headSide: {
  28167. height: math.unit(65, "feet"),
  28168. name: "Head (Side)",
  28169. image: {
  28170. source: "./media/characters/kodran/head-side.svg"
  28171. }
  28172. },
  28173. throat: {
  28174. height: math.unit(79, "feet"),
  28175. name: "Throat",
  28176. image: {
  28177. source: "./media/characters/kodran/throat.svg"
  28178. }
  28179. },
  28180. },
  28181. [
  28182. {
  28183. name: "Large",
  28184. height: math.unit(106, "feet"),
  28185. default: true
  28186. },
  28187. ]
  28188. ))
  28189. characterMakers.push(() => makeCharacter(
  28190. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28191. {
  28192. side: {
  28193. height: math.unit(11, "feet"),
  28194. weight: math.unit(150, "lb"),
  28195. name: "Side",
  28196. image: {
  28197. source: "./media/characters/pyxaron/side.svg",
  28198. extra: 305 / 195,
  28199. bottom: 17 / 322
  28200. }
  28201. },
  28202. },
  28203. [
  28204. {
  28205. name: "Normal",
  28206. height: math.unit(11, "feet"),
  28207. default: true
  28208. },
  28209. ]
  28210. ))
  28211. characterMakers.push(() => makeCharacter(
  28212. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28213. {
  28214. front: {
  28215. height: math.unit(6, "feet"),
  28216. weight: math.unit(150, "lb"),
  28217. name: "Front",
  28218. image: {
  28219. source: "./media/characters/meep/front.svg",
  28220. extra: 88 / 80,
  28221. bottom: 6 / 94
  28222. }
  28223. },
  28224. },
  28225. [
  28226. {
  28227. name: "Fun Sized",
  28228. height: math.unit(2, "inches"),
  28229. default: true
  28230. },
  28231. {
  28232. name: "Friend Sized",
  28233. height: math.unit(8, "inches")
  28234. },
  28235. ]
  28236. ))
  28237. characterMakers.push(() => makeCharacter(
  28238. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28239. {
  28240. front: {
  28241. height: math.unit(15, "feet"),
  28242. weight: math.unit(2500, "lb"),
  28243. name: "Front",
  28244. image: {
  28245. source: "./media/characters/holly-rabbit/front.svg",
  28246. extra: 1433 / 1233,
  28247. bottom: 125 / 1558
  28248. }
  28249. },
  28250. dick: {
  28251. height: math.unit(4.6, "feet"),
  28252. name: "Dick",
  28253. image: {
  28254. source: "./media/characters/holly-rabbit/dick.svg"
  28255. }
  28256. },
  28257. },
  28258. [
  28259. {
  28260. name: "Normal",
  28261. height: math.unit(15, "feet"),
  28262. default: true
  28263. },
  28264. {
  28265. name: "Macro",
  28266. height: math.unit(250, "feet")
  28267. },
  28268. {
  28269. name: "Macro+",
  28270. height: math.unit(2500, "feet")
  28271. },
  28272. ]
  28273. ))
  28274. characterMakers.push(() => makeCharacter(
  28275. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28276. {
  28277. front: {
  28278. height: math.unit(3.02, "meters"),
  28279. weight: math.unit(500, "kg"),
  28280. name: "Front",
  28281. image: {
  28282. source: "./media/characters/drena/front.svg",
  28283. extra: 282 / 243,
  28284. bottom: 8 / 290
  28285. }
  28286. },
  28287. side: {
  28288. height: math.unit(3.02, "meters"),
  28289. weight: math.unit(500, "kg"),
  28290. name: "Side",
  28291. image: {
  28292. source: "./media/characters/drena/side.svg",
  28293. extra: 280 / 245,
  28294. bottom: 10 / 290
  28295. }
  28296. },
  28297. back: {
  28298. height: math.unit(3.02, "meters"),
  28299. weight: math.unit(500, "kg"),
  28300. name: "Back",
  28301. image: {
  28302. source: "./media/characters/drena/back.svg",
  28303. extra: 278 / 243,
  28304. bottom: 2 / 280
  28305. }
  28306. },
  28307. foot: {
  28308. height: math.unit(0.75, "meters"),
  28309. name: "Foot",
  28310. image: {
  28311. source: "./media/characters/drena/foot.svg"
  28312. }
  28313. },
  28314. maw: {
  28315. height: math.unit(0.82, "meters"),
  28316. name: "Maw",
  28317. image: {
  28318. source: "./media/characters/drena/maw.svg"
  28319. }
  28320. },
  28321. rump: {
  28322. height: math.unit(0.93, "meters"),
  28323. name: "Rump",
  28324. image: {
  28325. source: "./media/characters/drena/rump.svg"
  28326. }
  28327. },
  28328. },
  28329. [
  28330. {
  28331. name: "Normal",
  28332. height: math.unit(3.02, "meters"),
  28333. default: true
  28334. },
  28335. ]
  28336. ))
  28337. characterMakers.push(() => makeCharacter(
  28338. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28339. {
  28340. front: {
  28341. height: math.unit(6 + 4 / 12, "feet"),
  28342. weight: math.unit(250, "lb"),
  28343. name: "Front",
  28344. image: {
  28345. source: "./media/characters/remmyzilla/front.svg",
  28346. extra: 4033 / 3588,
  28347. bottom: 123 / 4156
  28348. }
  28349. },
  28350. back: {
  28351. height: math.unit(6 + 4 / 12, "feet"),
  28352. weight: math.unit(250, "lb"),
  28353. name: "Back",
  28354. image: {
  28355. source: "./media/characters/remmyzilla/back.svg",
  28356. extra: 2687 / 2555,
  28357. bottom: 48 / 2735
  28358. }
  28359. },
  28360. paw: {
  28361. height: math.unit(1.73, "feet"),
  28362. name: "Paw",
  28363. image: {
  28364. source: "./media/characters/remmyzilla/paw.svg"
  28365. }
  28366. },
  28367. maw: {
  28368. height: math.unit(1.73, "feet"),
  28369. name: "Maw",
  28370. image: {
  28371. source: "./media/characters/remmyzilla/maw.svg"
  28372. }
  28373. },
  28374. },
  28375. [
  28376. {
  28377. name: "Normal",
  28378. height: math.unit(6 + 4 / 12, "feet")
  28379. },
  28380. {
  28381. name: "Minimacro",
  28382. height: math.unit(12 + 8 / 12, "feet")
  28383. },
  28384. {
  28385. name: "Normal",
  28386. height: math.unit(640, "feet"),
  28387. default: true
  28388. },
  28389. {
  28390. name: "Megamacro",
  28391. height: math.unit(6400, "feet")
  28392. },
  28393. {
  28394. name: "Gigamacro",
  28395. height: math.unit(64000, "miles")
  28396. },
  28397. ]
  28398. ))
  28399. characterMakers.push(() => makeCharacter(
  28400. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28401. {
  28402. front: {
  28403. height: math.unit(2.5, "meters"),
  28404. weight: math.unit(300, "lb"),
  28405. name: "Front",
  28406. image: {
  28407. source: "./media/characters/lawrence/front.svg",
  28408. extra: 357 / 335,
  28409. bottom: 30 / 387
  28410. }
  28411. },
  28412. back: {
  28413. height: math.unit(2.5, "meters"),
  28414. weight: math.unit(300, "lb"),
  28415. name: "Back",
  28416. image: {
  28417. source: "./media/characters/lawrence/back.svg",
  28418. extra: 357 / 338,
  28419. bottom: 16 / 373
  28420. }
  28421. },
  28422. head: {
  28423. height: math.unit(0.9, "meter"),
  28424. name: "Head",
  28425. image: {
  28426. source: "./media/characters/lawrence/head.svg"
  28427. }
  28428. },
  28429. maw: {
  28430. height: math.unit(0.7, "meter"),
  28431. name: "Maw",
  28432. image: {
  28433. source: "./media/characters/lawrence/maw.svg"
  28434. }
  28435. },
  28436. footBottom: {
  28437. height: math.unit(0.5, "meter"),
  28438. name: "Foot (Bottom)",
  28439. image: {
  28440. source: "./media/characters/lawrence/foot-bottom.svg"
  28441. }
  28442. },
  28443. footTop: {
  28444. height: math.unit(0.5, "meter"),
  28445. name: "Foot (Top)",
  28446. image: {
  28447. source: "./media/characters/lawrence/foot-top.svg"
  28448. }
  28449. },
  28450. },
  28451. [
  28452. {
  28453. name: "Normal",
  28454. height: math.unit(2.5, "meters"),
  28455. default: true
  28456. },
  28457. {
  28458. name: "Macro",
  28459. height: math.unit(95, "meters")
  28460. },
  28461. {
  28462. name: "Megamacro",
  28463. height: math.unit(150, "km")
  28464. },
  28465. ]
  28466. ))
  28467. characterMakers.push(() => makeCharacter(
  28468. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28469. {
  28470. front: {
  28471. height: math.unit(4.2, "meters"),
  28472. name: "Front",
  28473. image: {
  28474. source: "./media/characters/sydney/front.svg",
  28475. extra: 1323 / 1277,
  28476. bottom: 111 / 1434
  28477. }
  28478. },
  28479. },
  28480. [
  28481. {
  28482. name: "Normal",
  28483. height: math.unit(4.2, "meters"),
  28484. default: true
  28485. },
  28486. ]
  28487. ))
  28488. characterMakers.push(() => makeCharacter(
  28489. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28490. {
  28491. back: {
  28492. height: math.unit(201, "feet"),
  28493. name: "Back",
  28494. image: {
  28495. source: "./media/characters/jessica/back.svg",
  28496. extra: 273 / 259,
  28497. bottom: 7 / 280
  28498. }
  28499. },
  28500. },
  28501. [
  28502. {
  28503. name: "Normal",
  28504. height: math.unit(201, "feet"),
  28505. default: true
  28506. },
  28507. {
  28508. name: "Megamacro",
  28509. height: math.unit(8, "miles")
  28510. },
  28511. ]
  28512. ))
  28513. characterMakers.push(() => makeCharacter(
  28514. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28515. {
  28516. side: {
  28517. height: math.unit(320, "cm"),
  28518. name: "Side",
  28519. image: {
  28520. source: "./media/characters/victoria/side.svg",
  28521. extra: 778 / 346,
  28522. bottom: 56 / 834
  28523. }
  28524. },
  28525. maw: {
  28526. height: math.unit(5.9, "feet"),
  28527. name: "Maw",
  28528. image: {
  28529. source: "./media/characters/victoria/maw.svg"
  28530. }
  28531. },
  28532. },
  28533. [
  28534. {
  28535. name: "Normal",
  28536. height: math.unit(320, "cm"),
  28537. default: true
  28538. },
  28539. ]
  28540. ))
  28541. characterMakers.push(() => makeCharacter(
  28542. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28543. {
  28544. front: {
  28545. height: math.unit(5 + 6 / 12, "feet"),
  28546. name: "Front",
  28547. image: {
  28548. source: "./media/characters/cat/front.svg",
  28549. extra: 1449/1295,
  28550. bottom: 34/1483
  28551. }
  28552. },
  28553. back: {
  28554. height: math.unit(5 + 6 / 12, "feet"),
  28555. name: "Back",
  28556. image: {
  28557. source: "./media/characters/cat/back.svg",
  28558. extra: 1466/1301,
  28559. bottom: 19/1485
  28560. }
  28561. },
  28562. taur: {
  28563. height: math.unit(7, "feet"),
  28564. name: "Taur",
  28565. image: {
  28566. source: "./media/characters/cat/taur.svg",
  28567. extra: 1389/1233,
  28568. bottom: 83/1472
  28569. }
  28570. },
  28571. lucarioFront: {
  28572. height: math.unit(4, "feet"),
  28573. name: "Lucario (Front)",
  28574. image: {
  28575. source: "./media/characters/cat/lucario-front.svg",
  28576. extra: 1149/1019,
  28577. bottom: 84/1233
  28578. }
  28579. },
  28580. lucarioBack: {
  28581. height: math.unit(4, "feet"),
  28582. name: "Lucario (Back)",
  28583. image: {
  28584. source: "./media/characters/cat/lucario-back.svg",
  28585. extra: 1190/1059,
  28586. bottom: 33/1223
  28587. }
  28588. },
  28589. megaLucario: {
  28590. height: math.unit(4, "feet"),
  28591. name: "Mega Lucario",
  28592. image: {
  28593. source: "./media/characters/cat/mega-lucario.svg",
  28594. extra: 1515 / 1319,
  28595. bottom: 63 / 1578
  28596. }
  28597. },
  28598. nickit: {
  28599. height: math.unit(2, "feet"),
  28600. name: "Nickit",
  28601. image: {
  28602. source: "./media/characters/cat/nickit.svg",
  28603. extra: 1980 / 1585,
  28604. bottom: 102 / 2082
  28605. }
  28606. },
  28607. lopunnyFront: {
  28608. height: math.unit(5, "feet"),
  28609. name: "Lopunny (Front)",
  28610. image: {
  28611. source: "./media/characters/cat/lopunny-front.svg",
  28612. extra: 1782 / 1469,
  28613. bottom: 38 / 1820
  28614. }
  28615. },
  28616. lopunnyBack: {
  28617. height: math.unit(5, "feet"),
  28618. name: "Lopunny (Back)",
  28619. image: {
  28620. source: "./media/characters/cat/lopunny-back.svg",
  28621. extra: 1660 / 1490,
  28622. bottom: 25 / 1685
  28623. }
  28624. },
  28625. },
  28626. [
  28627. {
  28628. name: "Really small",
  28629. height: math.unit(1, "nm")
  28630. },
  28631. {
  28632. name: "Micro",
  28633. height: math.unit(5, "inches")
  28634. },
  28635. {
  28636. name: "Normal",
  28637. height: math.unit(5 + 6 / 12, "feet"),
  28638. default: true
  28639. },
  28640. {
  28641. name: "Macro",
  28642. height: math.unit(50, "feet")
  28643. },
  28644. {
  28645. name: "Macro+",
  28646. height: math.unit(150, "feet")
  28647. },
  28648. {
  28649. name: "Megamacro",
  28650. height: math.unit(100, "miles")
  28651. },
  28652. ]
  28653. ))
  28654. characterMakers.push(() => makeCharacter(
  28655. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28656. {
  28657. front: {
  28658. height: math.unit(63.4, "meters"),
  28659. weight: math.unit(3.28349e+6, "kilograms"),
  28660. name: "Front",
  28661. image: {
  28662. source: "./media/characters/kirina-violet/front.svg",
  28663. extra: 2812 / 2725,
  28664. bottom: 0 / 2812
  28665. }
  28666. },
  28667. back: {
  28668. height: math.unit(63.4, "meters"),
  28669. weight: math.unit(3.28349e+6, "kilograms"),
  28670. name: "Back",
  28671. image: {
  28672. source: "./media/characters/kirina-violet/back.svg",
  28673. extra: 2812 / 2725,
  28674. bottom: 0 / 2812
  28675. }
  28676. },
  28677. mouth: {
  28678. height: math.unit(4.35, "meters"),
  28679. name: "Mouth",
  28680. image: {
  28681. source: "./media/characters/kirina-violet/mouth.svg"
  28682. }
  28683. },
  28684. paw: {
  28685. height: math.unit(5.6, "meters"),
  28686. name: "Paw",
  28687. image: {
  28688. source: "./media/characters/kirina-violet/paw.svg"
  28689. }
  28690. },
  28691. tail: {
  28692. height: math.unit(18, "meters"),
  28693. name: "Tail",
  28694. image: {
  28695. source: "./media/characters/kirina-violet/tail.svg"
  28696. }
  28697. },
  28698. },
  28699. [
  28700. {
  28701. name: "Macro",
  28702. height: math.unit(63.4, "meters"),
  28703. default: true
  28704. },
  28705. ]
  28706. ))
  28707. characterMakers.push(() => makeCharacter(
  28708. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28709. {
  28710. front: {
  28711. height: math.unit(75, "feet"),
  28712. name: "Front",
  28713. image: {
  28714. source: "./media/characters/cat-gigachu/front.svg",
  28715. extra: 1239/1027,
  28716. bottom: 32/1271
  28717. }
  28718. },
  28719. back: {
  28720. height: math.unit(75, "feet"),
  28721. name: "Back",
  28722. image: {
  28723. source: "./media/characters/cat-gigachu/back.svg",
  28724. extra: 1229/1030,
  28725. bottom: 9/1238
  28726. }
  28727. },
  28728. },
  28729. [
  28730. {
  28731. name: "Dynamax",
  28732. height: math.unit(75, "feet"),
  28733. default: true
  28734. },
  28735. ]
  28736. ))
  28737. characterMakers.push(() => makeCharacter(
  28738. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28739. {
  28740. front: {
  28741. height: math.unit(6, "feet"),
  28742. weight: math.unit(150, "lb"),
  28743. name: "Front",
  28744. image: {
  28745. source: "./media/characters/sfaiyan/front.svg",
  28746. extra: 999 / 978,
  28747. bottom: 5 / 1004
  28748. }
  28749. },
  28750. },
  28751. [
  28752. {
  28753. name: "Normal",
  28754. height: math.unit(1.82, "meters")
  28755. },
  28756. {
  28757. name: "Giant",
  28758. height: math.unit(2.27, "km"),
  28759. default: true
  28760. },
  28761. ]
  28762. ))
  28763. characterMakers.push(() => makeCharacter(
  28764. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28765. {
  28766. front: {
  28767. height: math.unit(179, "cm"),
  28768. weight: math.unit(100, "kg"),
  28769. name: "Front",
  28770. image: {
  28771. source: "./media/characters/raunehkeli/front.svg",
  28772. extra: 1934 / 1926,
  28773. bottom: 0 / 1934
  28774. }
  28775. },
  28776. },
  28777. [
  28778. {
  28779. name: "Normal",
  28780. height: math.unit(179, "cm")
  28781. },
  28782. {
  28783. name: "Maximum",
  28784. height: math.unit(575, "meters"),
  28785. default: true
  28786. },
  28787. ]
  28788. ))
  28789. characterMakers.push(() => makeCharacter(
  28790. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28791. {
  28792. front: {
  28793. height: math.unit(6, "feet"),
  28794. weight: math.unit(150, "lb"),
  28795. name: "Front",
  28796. image: {
  28797. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28798. extra: 2625 / 2518,
  28799. bottom: 60 / 2685
  28800. }
  28801. },
  28802. },
  28803. [
  28804. {
  28805. name: "Normal",
  28806. height: math.unit(6 + 2 / 12, "feet")
  28807. },
  28808. {
  28809. name: "Macro",
  28810. height: math.unit(1180, "feet"),
  28811. default: true
  28812. },
  28813. ]
  28814. ))
  28815. characterMakers.push(() => makeCharacter(
  28816. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28817. {
  28818. front: {
  28819. height: math.unit(5 + 6 / 12, "feet"),
  28820. weight: math.unit(108, "lb"),
  28821. name: "Front",
  28822. image: {
  28823. source: "./media/characters/lilith-zott/front.svg",
  28824. extra: 2510 / 2238,
  28825. bottom: 100 / 2610
  28826. }
  28827. },
  28828. frontDressed: {
  28829. height: math.unit(5 + 6 / 12, "feet"),
  28830. weight: math.unit(108, "lb"),
  28831. name: "Front (Dressed)",
  28832. image: {
  28833. source: "./media/characters/lilith-zott/front-dressed.svg",
  28834. extra: 2510 / 2238,
  28835. bottom: 100 / 2610
  28836. }
  28837. },
  28838. },
  28839. [
  28840. {
  28841. name: "Normal",
  28842. height: math.unit(5 + 6 / 12, "feet")
  28843. },
  28844. {
  28845. name: "Macro",
  28846. height: math.unit(1030, "feet"),
  28847. default: true
  28848. },
  28849. ]
  28850. ))
  28851. characterMakers.push(() => makeCharacter(
  28852. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28853. {
  28854. front: {
  28855. height: math.unit(6, "feet"),
  28856. weight: math.unit(150, "lb"),
  28857. name: "Front",
  28858. image: {
  28859. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28860. extra: 2567 / 2435,
  28861. bottom: 39 / 2606
  28862. }
  28863. },
  28864. frontSuper: {
  28865. height: math.unit(6, "feet"),
  28866. name: "Front (Super)",
  28867. image: {
  28868. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28869. extra: 2567 / 2435,
  28870. bottom: 39 / 2606
  28871. }
  28872. },
  28873. },
  28874. [
  28875. {
  28876. name: "Normal",
  28877. height: math.unit(5 + 10 / 12, "feet")
  28878. },
  28879. {
  28880. name: "Macro",
  28881. height: math.unit(1100, "feet"),
  28882. default: true
  28883. },
  28884. ]
  28885. ))
  28886. characterMakers.push(() => makeCharacter(
  28887. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28888. {
  28889. front: {
  28890. height: math.unit(100, "miles"),
  28891. name: "Front",
  28892. image: {
  28893. source: "./media/characters/sona/front.svg",
  28894. extra: 2433 / 2201,
  28895. bottom: 53 / 2486
  28896. }
  28897. },
  28898. foot: {
  28899. height: math.unit(16.1, "miles"),
  28900. name: "Foot",
  28901. image: {
  28902. source: "./media/characters/sona/foot.svg"
  28903. }
  28904. },
  28905. },
  28906. [
  28907. {
  28908. name: "Macro",
  28909. height: math.unit(100, "miles"),
  28910. default: true
  28911. },
  28912. ]
  28913. ))
  28914. characterMakers.push(() => makeCharacter(
  28915. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28916. {
  28917. front: {
  28918. height: math.unit(6, "feet"),
  28919. weight: math.unit(150, "lb"),
  28920. name: "Front",
  28921. image: {
  28922. source: "./media/characters/bailey/front.svg",
  28923. extra: 1778 / 1724,
  28924. bottom: 30 / 1808
  28925. }
  28926. },
  28927. },
  28928. [
  28929. {
  28930. name: "Micro",
  28931. height: math.unit(4, "inches")
  28932. },
  28933. {
  28934. name: "Normal",
  28935. height: math.unit(5 + 5 / 12, "feet"),
  28936. default: true
  28937. },
  28938. {
  28939. name: "Macro",
  28940. height: math.unit(250, "feet")
  28941. },
  28942. {
  28943. name: "Megamacro",
  28944. height: math.unit(100, "miles")
  28945. },
  28946. ]
  28947. ))
  28948. characterMakers.push(() => makeCharacter(
  28949. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28950. {
  28951. front: {
  28952. height: math.unit(5 + 2 / 12, "feet"),
  28953. weight: math.unit(120, "lb"),
  28954. name: "Front",
  28955. image: {
  28956. source: "./media/characters/snaps/front.svg",
  28957. extra: 2370 / 2177,
  28958. bottom: 48 / 2418
  28959. }
  28960. },
  28961. back: {
  28962. height: math.unit(5 + 2 / 12, "feet"),
  28963. weight: math.unit(120, "lb"),
  28964. name: "Back",
  28965. image: {
  28966. source: "./media/characters/snaps/back.svg",
  28967. extra: 2408 / 2258,
  28968. bottom: 15 / 2423
  28969. }
  28970. },
  28971. },
  28972. [
  28973. {
  28974. name: "Micro",
  28975. height: math.unit(9, "inches")
  28976. },
  28977. {
  28978. name: "Normal",
  28979. height: math.unit(5 + 2 / 12, "feet"),
  28980. default: true
  28981. },
  28982. {
  28983. name: "Mini Macro",
  28984. height: math.unit(10, "feet")
  28985. },
  28986. ]
  28987. ))
  28988. characterMakers.push(() => makeCharacter(
  28989. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28990. {
  28991. front: {
  28992. height: math.unit(1.8, "meters"),
  28993. weight: math.unit(85, "kg"),
  28994. name: "Front",
  28995. image: {
  28996. source: "./media/characters/azteck/front.svg",
  28997. extra: 2815 / 2625,
  28998. bottom: 89 / 2904
  28999. }
  29000. },
  29001. back: {
  29002. height: math.unit(1.8, "meters"),
  29003. weight: math.unit(85, "kg"),
  29004. name: "Back",
  29005. image: {
  29006. source: "./media/characters/azteck/back.svg",
  29007. extra: 2856 / 2648,
  29008. bottom: 85 / 2941
  29009. }
  29010. },
  29011. frontDressed: {
  29012. height: math.unit(1.8, "meters"),
  29013. weight: math.unit(85, "kg"),
  29014. name: "Front (Dressed)",
  29015. image: {
  29016. source: "./media/characters/azteck/front-dressed.svg",
  29017. extra: 2147 / 2003,
  29018. bottom: 68 / 2215
  29019. }
  29020. },
  29021. head: {
  29022. height: math.unit(0.47, "meters"),
  29023. weight: math.unit(85, "kg"),
  29024. name: "Head",
  29025. image: {
  29026. source: "./media/characters/azteck/head.svg"
  29027. }
  29028. },
  29029. },
  29030. [
  29031. {
  29032. name: "Bite sized",
  29033. height: math.unit(16, "cm")
  29034. },
  29035. {
  29036. name: "Normal",
  29037. height: math.unit(1.8, "meters"),
  29038. default: true
  29039. },
  29040. ]
  29041. ))
  29042. characterMakers.push(() => makeCharacter(
  29043. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29044. {
  29045. front: {
  29046. height: math.unit(6, "feet"),
  29047. weight: math.unit(150, "lb"),
  29048. name: "Front",
  29049. image: {
  29050. source: "./media/characters/pidge/front.svg",
  29051. extra: 620 / 588,
  29052. bottom: 9 / 629
  29053. }
  29054. },
  29055. back: {
  29056. height: math.unit(6, "feet"),
  29057. weight: math.unit(150, "lb"),
  29058. name: "Back",
  29059. image: {
  29060. source: "./media/characters/pidge/back.svg",
  29061. extra: 620 / 588,
  29062. bottom: 9 / 629
  29063. }
  29064. },
  29065. },
  29066. [
  29067. {
  29068. name: "Macro",
  29069. height: math.unit(1, "mile"),
  29070. default: true
  29071. },
  29072. ]
  29073. ))
  29074. characterMakers.push(() => makeCharacter(
  29075. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29076. {
  29077. front: {
  29078. height: math.unit(6, "feet"),
  29079. weight: math.unit(150, "lb"),
  29080. name: "Front",
  29081. image: {
  29082. source: "./media/characters/en/front.svg",
  29083. extra: 1697 / 1563,
  29084. bottom: 103 / 1800
  29085. }
  29086. },
  29087. back: {
  29088. height: math.unit(6, "feet"),
  29089. weight: math.unit(150, "lb"),
  29090. name: "Back",
  29091. image: {
  29092. source: "./media/characters/en/back.svg",
  29093. extra: 1700 / 1570,
  29094. bottom: 51 / 1751
  29095. }
  29096. },
  29097. frontDressed: {
  29098. height: math.unit(6, "feet"),
  29099. weight: math.unit(150, "lb"),
  29100. name: "Front (Dressed)",
  29101. image: {
  29102. source: "./media/characters/en/front-dressed.svg",
  29103. extra: 1697 / 1563,
  29104. bottom: 103 / 1800
  29105. }
  29106. },
  29107. backDressed: {
  29108. height: math.unit(6, "feet"),
  29109. weight: math.unit(150, "lb"),
  29110. name: "Back (Dressed)",
  29111. image: {
  29112. source: "./media/characters/en/back-dressed.svg",
  29113. extra: 1700 / 1570,
  29114. bottom: 51 / 1751
  29115. }
  29116. },
  29117. },
  29118. [
  29119. {
  29120. name: "Macro",
  29121. height: math.unit(210, "feet"),
  29122. default: true
  29123. },
  29124. ]
  29125. ))
  29126. characterMakers.push(() => makeCharacter(
  29127. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29128. {
  29129. front: {
  29130. height: math.unit(6, "feet"),
  29131. weight: math.unit(150, "lb"),
  29132. name: "Front",
  29133. image: {
  29134. source: "./media/characters/haze-orris/front.svg",
  29135. extra: 3975 / 3525,
  29136. bottom: 137 / 4112
  29137. }
  29138. },
  29139. },
  29140. [
  29141. {
  29142. name: "Micro",
  29143. height: math.unit(150, "mm"),
  29144. default: true
  29145. },
  29146. ]
  29147. ))
  29148. characterMakers.push(() => makeCharacter(
  29149. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29150. {
  29151. front: {
  29152. height: math.unit(6, "feet"),
  29153. weight: math.unit(150, "lb"),
  29154. name: "Front",
  29155. image: {
  29156. source: "./media/characters/casselene-yaro/front.svg",
  29157. extra: 4721 / 4541,
  29158. bottom: 82 / 4803
  29159. }
  29160. },
  29161. back: {
  29162. height: math.unit(6, "feet"),
  29163. weight: math.unit(150, "lb"),
  29164. name: "Back",
  29165. image: {
  29166. source: "./media/characters/casselene-yaro/back.svg",
  29167. extra: 4569 / 4377,
  29168. bottom: 69 / 4638
  29169. }
  29170. },
  29171. frontDressed: {
  29172. height: math.unit(6, "feet"),
  29173. weight: math.unit(150, "lb"),
  29174. name: "Front-dressed",
  29175. image: {
  29176. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29177. extra: 4721 / 4541,
  29178. bottom: 82 / 4803
  29179. }
  29180. },
  29181. },
  29182. [
  29183. {
  29184. name: "Macro",
  29185. height: math.unit(190, "feet"),
  29186. default: true
  29187. },
  29188. ]
  29189. ))
  29190. characterMakers.push(() => makeCharacter(
  29191. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29192. {
  29193. front: {
  29194. height: math.unit(6, "feet"),
  29195. weight: math.unit(150, "lb"),
  29196. name: "Front",
  29197. image: {
  29198. source: "./media/characters/myra-rue-delore/front.svg",
  29199. extra: 1340 / 1308,
  29200. bottom: 67 / 1407
  29201. }
  29202. },
  29203. back: {
  29204. height: math.unit(6, "feet"),
  29205. weight: math.unit(150, "lb"),
  29206. name: "Back",
  29207. image: {
  29208. source: "./media/characters/myra-rue-delore/back.svg",
  29209. extra: 1341 / 1310,
  29210. bottom: 40 / 1381
  29211. }
  29212. },
  29213. frontDressed: {
  29214. height: math.unit(6, "feet"),
  29215. weight: math.unit(150, "lb"),
  29216. name: "Front (Dressed)",
  29217. image: {
  29218. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29219. extra: 1340 / 1308,
  29220. bottom: 67 / 1407
  29221. }
  29222. },
  29223. },
  29224. [
  29225. {
  29226. name: "Macro",
  29227. height: math.unit(150, "feet"),
  29228. default: true
  29229. },
  29230. ]
  29231. ))
  29232. characterMakers.push(() => makeCharacter(
  29233. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29234. {
  29235. front: {
  29236. height: math.unit(10, "feet"),
  29237. weight: math.unit(15015, "lb"),
  29238. name: "Front",
  29239. image: {
  29240. source: "./media/characters/fem!plat/front.svg",
  29241. extra: 2799 / 2604,
  29242. bottom: 149 / 2948
  29243. }
  29244. },
  29245. },
  29246. [
  29247. {
  29248. name: "Normal",
  29249. height: math.unit(10, "feet"),
  29250. default: true
  29251. },
  29252. {
  29253. name: "Macro",
  29254. height: math.unit(100, "feet")
  29255. },
  29256. {
  29257. name: "Megamacro",
  29258. height: math.unit(1000, "feet")
  29259. },
  29260. ]
  29261. ))
  29262. characterMakers.push(() => makeCharacter(
  29263. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29264. {
  29265. front: {
  29266. height: math.unit(15 + 5 / 12, "feet"),
  29267. weight: math.unit(4600, "lb"),
  29268. name: "Front",
  29269. image: {
  29270. source: "./media/characters/neapolitan-ananassa/front.svg",
  29271. extra: 2903 / 2736,
  29272. bottom: 0 / 2903
  29273. }
  29274. },
  29275. side: {
  29276. height: math.unit(15 + 5 / 12, "feet"),
  29277. weight: math.unit(4600, "lb"),
  29278. name: "Side",
  29279. image: {
  29280. source: "./media/characters/neapolitan-ananassa/side.svg",
  29281. extra: 2925 / 2719,
  29282. bottom: 0 / 2925
  29283. }
  29284. },
  29285. back: {
  29286. height: math.unit(15 + 5 / 12, "feet"),
  29287. weight: math.unit(4600, "lb"),
  29288. name: "Back",
  29289. image: {
  29290. source: "./media/characters/neapolitan-ananassa/back.svg",
  29291. extra: 2903 / 2736,
  29292. bottom: 0 / 2903
  29293. }
  29294. },
  29295. },
  29296. [
  29297. {
  29298. name: "Normal",
  29299. height: math.unit(15 + 5 / 12, "feet"),
  29300. default: true
  29301. },
  29302. {
  29303. name: "Post-Millenium",
  29304. height: math.unit(35 + 5 / 12, "feet")
  29305. },
  29306. {
  29307. name: "Post-Era",
  29308. height: math.unit(450 + 5 / 12, "feet")
  29309. },
  29310. ]
  29311. ))
  29312. characterMakers.push(() => makeCharacter(
  29313. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29314. {
  29315. front: {
  29316. height: math.unit(300, "meters"),
  29317. weight: math.unit(125000, "tonnes"),
  29318. name: "Front",
  29319. image: {
  29320. source: "./media/characters/pazuzu/front.svg",
  29321. extra: 877 / 794,
  29322. bottom: 47 / 924
  29323. }
  29324. },
  29325. },
  29326. [
  29327. {
  29328. name: "Macro",
  29329. height: math.unit(300, "meters"),
  29330. default: true
  29331. },
  29332. ]
  29333. ))
  29334. characterMakers.push(() => makeCharacter(
  29335. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29336. {
  29337. side: {
  29338. height: math.unit(10 + 7 / 12, "feet"),
  29339. weight: math.unit(2.5, "tons"),
  29340. name: "Side",
  29341. image: {
  29342. source: "./media/characters/aasha/side.svg",
  29343. extra: 1345 / 1245,
  29344. bottom: 111 / 1456
  29345. }
  29346. },
  29347. back: {
  29348. height: math.unit(10 + 7 / 12, "feet"),
  29349. weight: math.unit(2.5, "tons"),
  29350. name: "Back",
  29351. image: {
  29352. source: "./media/characters/aasha/back.svg",
  29353. extra: 1133 / 1057,
  29354. bottom: 257 / 1390
  29355. }
  29356. },
  29357. },
  29358. [
  29359. {
  29360. name: "Normal",
  29361. height: math.unit(10 + 7 / 12, "feet"),
  29362. default: true
  29363. },
  29364. ]
  29365. ))
  29366. characterMakers.push(() => makeCharacter(
  29367. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29368. {
  29369. front: {
  29370. height: math.unit(6 + 3 / 12, "feet"),
  29371. name: "Front",
  29372. image: {
  29373. source: "./media/characters/nevan/front.svg",
  29374. extra: 704 / 704,
  29375. bottom: 28 / 732
  29376. }
  29377. },
  29378. back: {
  29379. height: math.unit(6 + 3 / 12, "feet"),
  29380. name: "Back",
  29381. image: {
  29382. source: "./media/characters/nevan/back.svg",
  29383. extra: 714 / 714,
  29384. bottom: 21 / 735
  29385. }
  29386. },
  29387. frontFlaccid: {
  29388. height: math.unit(6 + 3 / 12, "feet"),
  29389. name: "Front (Flaccid)",
  29390. image: {
  29391. source: "./media/characters/nevan/front-flaccid.svg",
  29392. extra: 704 / 704,
  29393. bottom: 28 / 732
  29394. }
  29395. },
  29396. frontErect: {
  29397. height: math.unit(6 + 3 / 12, "feet"),
  29398. name: "Front (Erect)",
  29399. image: {
  29400. source: "./media/characters/nevan/front-erect.svg",
  29401. extra: 704 / 704,
  29402. bottom: 28 / 732
  29403. }
  29404. },
  29405. backFlaccid: {
  29406. height: math.unit(6 + 3 / 12, "feet"),
  29407. name: "Back (Flaccid)",
  29408. image: {
  29409. source: "./media/characters/nevan/back-flaccid.svg",
  29410. extra: 714 / 714,
  29411. bottom: 21 / 735
  29412. }
  29413. },
  29414. },
  29415. [
  29416. {
  29417. name: "Normal",
  29418. height: math.unit(6 + 3 / 12, "feet"),
  29419. default: true
  29420. },
  29421. ]
  29422. ))
  29423. characterMakers.push(() => makeCharacter(
  29424. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29425. {
  29426. front: {
  29427. height: math.unit(4, "feet"),
  29428. name: "Front",
  29429. image: {
  29430. source: "./media/characters/arhan/front.svg",
  29431. extra: 3368 / 3133,
  29432. bottom: 0 / 3368
  29433. }
  29434. },
  29435. side: {
  29436. height: math.unit(4, "feet"),
  29437. name: "Side",
  29438. image: {
  29439. source: "./media/characters/arhan/side.svg",
  29440. extra: 3347 / 3105,
  29441. bottom: 0 / 3347
  29442. }
  29443. },
  29444. tongue: {
  29445. height: math.unit(1.42, "feet"),
  29446. name: "Tongue",
  29447. image: {
  29448. source: "./media/characters/arhan/tongue.svg"
  29449. }
  29450. },
  29451. head: {
  29452. height: math.unit(0.85, "feet"),
  29453. name: "Head",
  29454. image: {
  29455. source: "./media/characters/arhan/head.svg"
  29456. }
  29457. },
  29458. },
  29459. [
  29460. {
  29461. name: "Normal",
  29462. height: math.unit(4, "feet"),
  29463. default: true
  29464. },
  29465. ]
  29466. ))
  29467. characterMakers.push(() => makeCharacter(
  29468. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29469. {
  29470. front: {
  29471. height: math.unit(5 + 7.5 / 12, "feet"),
  29472. weight: math.unit(120, "lb"),
  29473. name: "Front",
  29474. image: {
  29475. source: "./media/characters/digi-duncan/front.svg",
  29476. extra: 330 / 326,
  29477. bottom: 16 / 346
  29478. }
  29479. },
  29480. side: {
  29481. height: math.unit(5 + 7.5 / 12, "feet"),
  29482. weight: math.unit(120, "lb"),
  29483. name: "Side",
  29484. image: {
  29485. source: "./media/characters/digi-duncan/side.svg",
  29486. extra: 341 / 337,
  29487. bottom: 1 / 342
  29488. }
  29489. },
  29490. back: {
  29491. height: math.unit(5 + 7.5 / 12, "feet"),
  29492. weight: math.unit(120, "lb"),
  29493. name: "Back",
  29494. image: {
  29495. source: "./media/characters/digi-duncan/back.svg",
  29496. extra: 330 / 326,
  29497. bottom: 12 / 342
  29498. }
  29499. },
  29500. },
  29501. [
  29502. {
  29503. name: "Speck",
  29504. height: math.unit(0.25, "mm")
  29505. },
  29506. {
  29507. name: "Micro",
  29508. height: math.unit(5, "mm")
  29509. },
  29510. {
  29511. name: "Tiny",
  29512. height: math.unit(0.5, "inches"),
  29513. default: true
  29514. },
  29515. {
  29516. name: "Human",
  29517. height: math.unit(5 + 7.5 / 12, "feet")
  29518. },
  29519. {
  29520. name: "Minigiant",
  29521. height: math.unit(8 + 5.25, "feet")
  29522. },
  29523. {
  29524. name: "Giant",
  29525. height: math.unit(2000, "feet")
  29526. },
  29527. {
  29528. name: "Mega",
  29529. height: math.unit(371.1, "miles")
  29530. },
  29531. ]
  29532. ))
  29533. characterMakers.push(() => makeCharacter(
  29534. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29535. {
  29536. front: {
  29537. height: math.unit(2, "meters"),
  29538. weight: math.unit(350, "kg"),
  29539. name: "Front",
  29540. image: {
  29541. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29542. extra: 898 / 838,
  29543. bottom: 9 / 907
  29544. }
  29545. },
  29546. },
  29547. [
  29548. {
  29549. name: "Micro",
  29550. height: math.unit(8, "meters")
  29551. },
  29552. {
  29553. name: "Normal",
  29554. height: math.unit(50, "meters"),
  29555. default: true
  29556. },
  29557. {
  29558. name: "Macro",
  29559. height: math.unit(500, "meters")
  29560. },
  29561. ]
  29562. ))
  29563. characterMakers.push(() => makeCharacter(
  29564. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29565. {
  29566. front: {
  29567. height: math.unit(6 + 6 / 12, "feet"),
  29568. name: "Front",
  29569. image: {
  29570. source: "./media/characters/khardesh/front.svg",
  29571. extra: 888 / 797,
  29572. bottom: 25 / 913
  29573. }
  29574. },
  29575. },
  29576. [
  29577. {
  29578. name: "Normal",
  29579. height: math.unit(6 + 6 / 12, "feet"),
  29580. default: true
  29581. },
  29582. {
  29583. name: "Normal+",
  29584. height: math.unit(4, "meters")
  29585. },
  29586. {
  29587. name: "Macro",
  29588. height: math.unit(50, "meters")
  29589. },
  29590. {
  29591. name: "Macro+",
  29592. height: math.unit(100, "meters")
  29593. },
  29594. {
  29595. name: "Megamacro",
  29596. height: math.unit(20, "km")
  29597. },
  29598. ]
  29599. ))
  29600. characterMakers.push(() => makeCharacter(
  29601. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29602. {
  29603. front: {
  29604. height: math.unit(6, "feet"),
  29605. weight: math.unit(150, "lb"),
  29606. name: "Front",
  29607. image: {
  29608. source: "./media/characters/kosho/front.svg",
  29609. extra: 1847 / 1847,
  29610. bottom: 86 / 1933
  29611. }
  29612. },
  29613. },
  29614. [
  29615. {
  29616. name: "Second-stage micro",
  29617. height: math.unit(0.5, "inches")
  29618. },
  29619. {
  29620. name: "First-stage micro",
  29621. height: math.unit(6, "inches")
  29622. },
  29623. {
  29624. name: "Normal",
  29625. height: math.unit(6, "feet"),
  29626. default: true
  29627. },
  29628. {
  29629. name: "First-stage macro",
  29630. height: math.unit(72, "feet")
  29631. },
  29632. {
  29633. name: "Second-stage macro",
  29634. height: math.unit(864, "feet")
  29635. },
  29636. ]
  29637. ))
  29638. characterMakers.push(() => makeCharacter(
  29639. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29640. {
  29641. normal: {
  29642. height: math.unit(4 + 6 / 12, "feet"),
  29643. name: "Normal",
  29644. image: {
  29645. source: "./media/characters/hydra/normal.svg",
  29646. extra: 2833 / 2634,
  29647. bottom: 68 / 2901
  29648. }
  29649. },
  29650. smol: {
  29651. height: math.unit(0.705, "inches"),
  29652. name: "Smol",
  29653. image: {
  29654. source: "./media/characters/hydra/smol.svg",
  29655. extra: 2715 / 2540,
  29656. bottom: 0 / 2715
  29657. }
  29658. },
  29659. },
  29660. [
  29661. {
  29662. name: "Normal",
  29663. height: math.unit(4 + 6 / 12, "feet"),
  29664. default: true
  29665. }
  29666. ]
  29667. ))
  29668. characterMakers.push(() => makeCharacter(
  29669. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29670. {
  29671. front: {
  29672. height: math.unit(0.6, "cm"),
  29673. name: "Front",
  29674. image: {
  29675. source: "./media/characters/daz/front.svg",
  29676. extra: 1682 / 1164,
  29677. bottom: 42 / 1724
  29678. }
  29679. },
  29680. },
  29681. [
  29682. {
  29683. name: "Normal",
  29684. height: math.unit(0.6, "cm"),
  29685. default: true
  29686. },
  29687. ]
  29688. ))
  29689. characterMakers.push(() => makeCharacter(
  29690. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29691. {
  29692. front: {
  29693. height: math.unit(6, "feet"),
  29694. weight: math.unit(235, "lb"),
  29695. name: "Front",
  29696. image: {
  29697. source: "./media/characters/theo-pangolin/front.svg",
  29698. extra: 1996 / 1969,
  29699. bottom: 115 / 2111
  29700. }
  29701. },
  29702. back: {
  29703. height: math.unit(6, "feet"),
  29704. weight: math.unit(235, "lb"),
  29705. name: "Back",
  29706. image: {
  29707. source: "./media/characters/theo-pangolin/back.svg",
  29708. extra: 1979 / 1979,
  29709. bottom: 40 / 2019
  29710. }
  29711. },
  29712. feral: {
  29713. height: math.unit(2, "feet"),
  29714. weight: math.unit(30, "lb"),
  29715. name: "Feral",
  29716. image: {
  29717. source: "./media/characters/theo-pangolin/feral.svg",
  29718. extra: 803 / 791,
  29719. bottom: 181 / 984
  29720. }
  29721. },
  29722. footFive: {
  29723. height: math.unit(1.43, "feet"),
  29724. name: "Foot (Five Toes)",
  29725. image: {
  29726. source: "./media/characters/theo-pangolin/foot-five.svg"
  29727. }
  29728. },
  29729. footFour: {
  29730. height: math.unit(1.43, "feet"),
  29731. name: "Foot (Four Toes)",
  29732. image: {
  29733. source: "./media/characters/theo-pangolin/foot-four.svg"
  29734. }
  29735. },
  29736. handFour: {
  29737. height: math.unit(0.81, "feet"),
  29738. name: "Hand (Four Fingers)",
  29739. image: {
  29740. source: "./media/characters/theo-pangolin/hand-four.svg"
  29741. }
  29742. },
  29743. handThree: {
  29744. height: math.unit(0.81, "feet"),
  29745. name: "Hand (Three Fingers)",
  29746. image: {
  29747. source: "./media/characters/theo-pangolin/hand-three.svg"
  29748. }
  29749. },
  29750. headFront: {
  29751. height: math.unit(1.37, "feet"),
  29752. name: "Head (Front)",
  29753. image: {
  29754. source: "./media/characters/theo-pangolin/head-front.svg"
  29755. }
  29756. },
  29757. headSide: {
  29758. height: math.unit(1.43, "feet"),
  29759. name: "Head (Side)",
  29760. image: {
  29761. source: "./media/characters/theo-pangolin/head-side.svg"
  29762. }
  29763. },
  29764. tongue: {
  29765. height: math.unit(2.29, "feet"),
  29766. name: "Tongue",
  29767. image: {
  29768. source: "./media/characters/theo-pangolin/tongue.svg"
  29769. }
  29770. },
  29771. },
  29772. [
  29773. {
  29774. name: "Normal",
  29775. height: math.unit(6, "feet")
  29776. },
  29777. {
  29778. name: "Macro",
  29779. height: math.unit(400, "feet"),
  29780. default: true
  29781. },
  29782. ]
  29783. ))
  29784. characterMakers.push(() => makeCharacter(
  29785. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29786. {
  29787. front: {
  29788. height: math.unit(6, "inches"),
  29789. weight: math.unit(0.036, "kg"),
  29790. name: "Front",
  29791. image: {
  29792. source: "./media/characters/renée/front.svg",
  29793. extra: 900 / 886,
  29794. bottom: 8 / 908
  29795. }
  29796. },
  29797. },
  29798. [
  29799. {
  29800. name: "Nano",
  29801. height: math.unit(1, "nm")
  29802. },
  29803. {
  29804. name: "Micro",
  29805. height: math.unit(1, "mm")
  29806. },
  29807. {
  29808. name: "Normal",
  29809. height: math.unit(6, "inches")
  29810. },
  29811. {
  29812. name: "Macro",
  29813. height: math.unit(2000, "feet"),
  29814. default: true
  29815. },
  29816. {
  29817. name: "Megamacro",
  29818. height: math.unit(2, "km")
  29819. },
  29820. {
  29821. name: "Gigamacro",
  29822. height: math.unit(2000, "km")
  29823. },
  29824. {
  29825. name: "Teramacro",
  29826. height: math.unit(250000, "km")
  29827. },
  29828. ]
  29829. ))
  29830. characterMakers.push(() => makeCharacter(
  29831. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29832. {
  29833. front: {
  29834. height: math.unit(4, "meters"),
  29835. weight: math.unit(150, "kg"),
  29836. name: "Front",
  29837. image: {
  29838. source: "./media/characters/caledvwlch/front.svg",
  29839. extra: 1760 / 1551,
  29840. bottom: 28 / 1788
  29841. }
  29842. },
  29843. side: {
  29844. height: math.unit(4, "meters"),
  29845. weight: math.unit(150, "kg"),
  29846. name: "Side",
  29847. image: {
  29848. source: "./media/characters/caledvwlch/side.svg",
  29849. extra: 1605 / 1536,
  29850. bottom: 31 / 1636
  29851. }
  29852. },
  29853. back: {
  29854. height: math.unit(4, "meters"),
  29855. weight: math.unit(150, "kg"),
  29856. name: "Back",
  29857. image: {
  29858. source: "./media/characters/caledvwlch/back.svg",
  29859. extra: 1635 / 1565,
  29860. bottom: 27 / 1662
  29861. }
  29862. },
  29863. },
  29864. [
  29865. {
  29866. name: "\"Incognito\"",
  29867. height: math.unit(4, "meters")
  29868. },
  29869. {
  29870. name: "Small rampage",
  29871. height: math.unit(600, "meters")
  29872. },
  29873. {
  29874. name: "Mega",
  29875. height: math.unit(30, "km")
  29876. },
  29877. {
  29878. name: "Home-size",
  29879. height: math.unit(50, "km"),
  29880. default: true
  29881. },
  29882. {
  29883. name: "Giga",
  29884. height: math.unit(300, "km")
  29885. },
  29886. {
  29887. name: "Lounging",
  29888. height: math.unit(11000, "km")
  29889. },
  29890. {
  29891. name: "Planet snacking",
  29892. height: math.unit(2000000, "km")
  29893. },
  29894. ]
  29895. ))
  29896. characterMakers.push(() => makeCharacter(
  29897. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29898. {
  29899. front: {
  29900. height: math.unit(6, "feet"),
  29901. weight: math.unit(215, "lb"),
  29902. name: "Front",
  29903. image: {
  29904. source: "./media/characters/sapphire-svell/front.svg",
  29905. extra: 495 / 455,
  29906. bottom: 20 / 515
  29907. }
  29908. },
  29909. back: {
  29910. height: math.unit(6, "feet"),
  29911. weight: math.unit(216, "lb"),
  29912. name: "Back",
  29913. image: {
  29914. source: "./media/characters/sapphire-svell/back.svg",
  29915. extra: 497 / 477,
  29916. bottom: 7 / 504
  29917. }
  29918. },
  29919. maw: {
  29920. height: math.unit(1.57, "feet"),
  29921. name: "Maw",
  29922. image: {
  29923. source: "./media/characters/sapphire-svell/maw.svg"
  29924. }
  29925. },
  29926. foot: {
  29927. height: math.unit(1.07, "feet"),
  29928. name: "Foot",
  29929. image: {
  29930. source: "./media/characters/sapphire-svell/foot.svg"
  29931. }
  29932. },
  29933. toering: {
  29934. height: math.unit(1.7, "inch"),
  29935. name: "Toering",
  29936. image: {
  29937. source: "./media/characters/sapphire-svell/toering.svg"
  29938. }
  29939. },
  29940. },
  29941. [
  29942. {
  29943. name: "Normal",
  29944. height: math.unit(300, "feet"),
  29945. default: true
  29946. },
  29947. {
  29948. name: "Augmented",
  29949. height: math.unit(1250, "feet")
  29950. },
  29951. {
  29952. name: "Unleashed",
  29953. height: math.unit(3000, "feet")
  29954. },
  29955. ]
  29956. ))
  29957. characterMakers.push(() => makeCharacter(
  29958. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29959. {
  29960. side: {
  29961. height: math.unit(2 + 3 / 12, "feet"),
  29962. weight: math.unit(110, "lb"),
  29963. name: "Side",
  29964. image: {
  29965. source: "./media/characters/glitch-flux/side.svg",
  29966. extra: 997 / 805,
  29967. bottom: 20 / 1017
  29968. }
  29969. },
  29970. },
  29971. [
  29972. {
  29973. name: "Normal",
  29974. height: math.unit(2 + 3 / 12, "feet"),
  29975. default: true
  29976. },
  29977. ]
  29978. ))
  29979. characterMakers.push(() => makeCharacter(
  29980. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29981. {
  29982. front: {
  29983. height: math.unit(4, "meters"),
  29984. name: "Front",
  29985. image: {
  29986. source: "./media/characters/mid/front.svg",
  29987. extra: 507 / 476,
  29988. bottom: 17 / 524
  29989. }
  29990. },
  29991. back: {
  29992. height: math.unit(4, "meters"),
  29993. name: "Back",
  29994. image: {
  29995. source: "./media/characters/mid/back.svg",
  29996. extra: 519 / 487,
  29997. bottom: 7 / 526
  29998. }
  29999. },
  30000. stuck: {
  30001. height: math.unit(2.2, "meters"),
  30002. name: "Stuck",
  30003. image: {
  30004. source: "./media/characters/mid/stuck.svg",
  30005. extra: 1951 / 1869,
  30006. bottom: 88 / 2039
  30007. }
  30008. }
  30009. },
  30010. [
  30011. {
  30012. name: "Normal",
  30013. height: math.unit(4, "meters"),
  30014. default: true
  30015. },
  30016. {
  30017. name: "Big",
  30018. height: math.unit(10, "meters")
  30019. },
  30020. {
  30021. name: "Macro",
  30022. height: math.unit(800, "meters")
  30023. },
  30024. {
  30025. name: "Megamacro",
  30026. height: math.unit(100, "km")
  30027. },
  30028. {
  30029. name: "Overgrown",
  30030. height: math.unit(1, "parsec")
  30031. },
  30032. ]
  30033. ))
  30034. characterMakers.push(() => makeCharacter(
  30035. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30036. {
  30037. front: {
  30038. height: math.unit(2.5, "meters"),
  30039. weight: math.unit(225, "kg"),
  30040. name: "Front",
  30041. image: {
  30042. source: "./media/characters/iris/front.svg",
  30043. extra: 3348 / 3251,
  30044. bottom: 205 / 3553
  30045. }
  30046. },
  30047. maw: {
  30048. height: math.unit(0.56, "meter"),
  30049. name: "Maw",
  30050. image: {
  30051. source: "./media/characters/iris/maw.svg"
  30052. }
  30053. },
  30054. },
  30055. [
  30056. {
  30057. name: "Mewter cat",
  30058. height: math.unit(1.2, "meters")
  30059. },
  30060. {
  30061. name: "Minimacro",
  30062. height: math.unit(2.5, "meters"),
  30063. default: true
  30064. },
  30065. {
  30066. name: "Macro",
  30067. height: math.unit(180, "meters")
  30068. },
  30069. {
  30070. name: "Megamacro",
  30071. height: math.unit(2746, "meters")
  30072. },
  30073. ]
  30074. ))
  30075. characterMakers.push(() => makeCharacter(
  30076. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30077. {
  30078. front: {
  30079. height: math.unit(6, "feet"),
  30080. weight: math.unit(135, "lb"),
  30081. name: "Front",
  30082. image: {
  30083. source: "./media/characters/axel/front.svg",
  30084. extra: 908 / 908,
  30085. bottom: 58 / 966
  30086. }
  30087. },
  30088. side: {
  30089. height: math.unit(6, "feet"),
  30090. weight: math.unit(135, "lb"),
  30091. name: "Side",
  30092. image: {
  30093. source: "./media/characters/axel/side.svg",
  30094. extra: 958 / 958,
  30095. bottom: 11 / 969
  30096. }
  30097. },
  30098. back: {
  30099. height: math.unit(6, "feet"),
  30100. weight: math.unit(135, "lb"),
  30101. name: "Back",
  30102. image: {
  30103. source: "./media/characters/axel/back.svg",
  30104. extra: 887 / 887,
  30105. bottom: 34 / 921
  30106. }
  30107. },
  30108. head: {
  30109. height: math.unit(1.07, "feet"),
  30110. name: "Head",
  30111. image: {
  30112. source: "./media/characters/axel/head.svg"
  30113. }
  30114. },
  30115. beak: {
  30116. height: math.unit(1.4, "feet"),
  30117. name: "Beak",
  30118. image: {
  30119. source: "./media/characters/axel/beak.svg"
  30120. }
  30121. },
  30122. beakSide: {
  30123. height: math.unit(1.4, "feet"),
  30124. name: "Beak Side",
  30125. image: {
  30126. source: "./media/characters/axel/beak-side.svg"
  30127. }
  30128. },
  30129. sheath: {
  30130. height: math.unit(0.5, "feet"),
  30131. name: "Sheath",
  30132. image: {
  30133. source: "./media/characters/axel/sheath.svg"
  30134. }
  30135. },
  30136. dick: {
  30137. height: math.unit(0.98, "feet"),
  30138. name: "Dick",
  30139. image: {
  30140. source: "./media/characters/axel/dick.svg"
  30141. }
  30142. },
  30143. },
  30144. [
  30145. {
  30146. name: "Macro",
  30147. height: math.unit(68, "meters"),
  30148. default: true
  30149. },
  30150. ]
  30151. ))
  30152. characterMakers.push(() => makeCharacter(
  30153. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30154. {
  30155. front: {
  30156. height: math.unit(3.5, "meters"),
  30157. weight: math.unit(1200, "kg"),
  30158. name: "Front",
  30159. image: {
  30160. source: "./media/characters/joanna/front.svg",
  30161. extra: 1596 / 1488,
  30162. bottom: 29 / 1625
  30163. }
  30164. },
  30165. back: {
  30166. height: math.unit(3.5, "meters"),
  30167. weight: math.unit(1200, "kg"),
  30168. name: "Back",
  30169. image: {
  30170. source: "./media/characters/joanna/back.svg",
  30171. extra: 1594 / 1495,
  30172. bottom: 26 / 1620
  30173. }
  30174. },
  30175. frontShorts: {
  30176. height: math.unit(3.5, "meters"),
  30177. weight: math.unit(1200, "kg"),
  30178. name: "Front (Shorts)",
  30179. image: {
  30180. source: "./media/characters/joanna/front-shorts.svg",
  30181. extra: 1596 / 1488,
  30182. bottom: 29 / 1625
  30183. }
  30184. },
  30185. frontBiker: {
  30186. height: math.unit(3.5, "meters"),
  30187. weight: math.unit(1200, "kg"),
  30188. name: "Front (Biker)",
  30189. image: {
  30190. source: "./media/characters/joanna/front-biker.svg",
  30191. extra: 1596 / 1488,
  30192. bottom: 29 / 1625
  30193. }
  30194. },
  30195. backBiker: {
  30196. height: math.unit(3.5, "meters"),
  30197. weight: math.unit(1200, "kg"),
  30198. name: "Back (Biker)",
  30199. image: {
  30200. source: "./media/characters/joanna/back-biker.svg",
  30201. extra: 1594 / 1495,
  30202. bottom: 88 / 1682
  30203. }
  30204. },
  30205. bikeLeft: {
  30206. height: math.unit(2.4, "meters"),
  30207. weight: math.unit(1600, "kg"),
  30208. name: "Bike (Left)",
  30209. image: {
  30210. source: "./media/characters/joanna/bike-left.svg",
  30211. extra: 720 / 720,
  30212. bottom: 8 / 728
  30213. }
  30214. },
  30215. bikeRight: {
  30216. height: math.unit(2.4, "meters"),
  30217. weight: math.unit(1600, "kg"),
  30218. name: "Bike (Right)",
  30219. image: {
  30220. source: "./media/characters/joanna/bike-right.svg",
  30221. extra: 720 / 720,
  30222. bottom: 8 / 728
  30223. }
  30224. },
  30225. },
  30226. [
  30227. {
  30228. name: "Incognito",
  30229. height: math.unit(3.5, "meters")
  30230. },
  30231. {
  30232. name: "Casual Big",
  30233. height: math.unit(200, "meters")
  30234. },
  30235. {
  30236. name: "Macro",
  30237. height: math.unit(600, "meters")
  30238. },
  30239. {
  30240. name: "Original",
  30241. height: math.unit(20, "km"),
  30242. default: true
  30243. },
  30244. {
  30245. name: "Giga",
  30246. height: math.unit(400, "km")
  30247. },
  30248. {
  30249. name: "Lounging",
  30250. height: math.unit(1500, "km")
  30251. },
  30252. {
  30253. name: "Planetary",
  30254. height: math.unit(200000, "km")
  30255. },
  30256. ]
  30257. ))
  30258. characterMakers.push(() => makeCharacter(
  30259. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30260. {
  30261. front: {
  30262. height: math.unit(6, "feet"),
  30263. weight: math.unit(150, "lb"),
  30264. name: "Front",
  30265. image: {
  30266. source: "./media/characters/hugo-sigil/front.svg",
  30267. extra: 522 / 500,
  30268. bottom: 2 / 524
  30269. }
  30270. },
  30271. back: {
  30272. height: math.unit(6, "feet"),
  30273. weight: math.unit(150, "lb"),
  30274. name: "Back",
  30275. image: {
  30276. source: "./media/characters/hugo-sigil/back.svg",
  30277. extra: 519 / 495,
  30278. bottom: 5 / 524
  30279. }
  30280. },
  30281. maw: {
  30282. height: math.unit(1.4, "feet"),
  30283. weight: math.unit(150, "lb"),
  30284. name: "Maw",
  30285. image: {
  30286. source: "./media/characters/hugo-sigil/maw.svg"
  30287. }
  30288. },
  30289. feet: {
  30290. height: math.unit(1.56, "feet"),
  30291. weight: math.unit(150, "lb"),
  30292. name: "Feet",
  30293. image: {
  30294. source: "./media/characters/hugo-sigil/feet.svg",
  30295. extra: 177 / 177,
  30296. bottom: 12 / 189
  30297. }
  30298. },
  30299. },
  30300. [
  30301. {
  30302. name: "Normal",
  30303. height: math.unit(6, "feet")
  30304. },
  30305. {
  30306. name: "Macro",
  30307. height: math.unit(200, "feet"),
  30308. default: true
  30309. },
  30310. ]
  30311. ))
  30312. characterMakers.push(() => makeCharacter(
  30313. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30314. {
  30315. front: {
  30316. height: math.unit(6, "feet"),
  30317. weight: math.unit(150, "lb"),
  30318. name: "Front",
  30319. image: {
  30320. source: "./media/characters/peri/front.svg",
  30321. extra: 2354 / 2233,
  30322. bottom: 49 / 2403
  30323. }
  30324. },
  30325. },
  30326. [
  30327. {
  30328. name: "Really Small",
  30329. height: math.unit(1, "nm")
  30330. },
  30331. {
  30332. name: "Micro",
  30333. height: math.unit(4, "inches")
  30334. },
  30335. {
  30336. name: "Normal",
  30337. height: math.unit(7, "inches"),
  30338. default: true
  30339. },
  30340. {
  30341. name: "Macro",
  30342. height: math.unit(400, "feet")
  30343. },
  30344. {
  30345. name: "Megamacro",
  30346. height: math.unit(100, "miles")
  30347. },
  30348. ]
  30349. ))
  30350. characterMakers.push(() => makeCharacter(
  30351. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30352. {
  30353. frontSlim: {
  30354. height: math.unit(7, "feet"),
  30355. name: "Front (Slim)",
  30356. image: {
  30357. source: "./media/characters/issilora/front-slim.svg",
  30358. extra: 529 / 449,
  30359. bottom: 53 / 582
  30360. }
  30361. },
  30362. sideSlim: {
  30363. height: math.unit(7, "feet"),
  30364. name: "Side (Slim)",
  30365. image: {
  30366. source: "./media/characters/issilora/side-slim.svg",
  30367. extra: 570 / 480,
  30368. bottom: 30 / 600
  30369. }
  30370. },
  30371. backSlim: {
  30372. height: math.unit(7, "feet"),
  30373. name: "Back (Slim)",
  30374. image: {
  30375. source: "./media/characters/issilora/back-slim.svg",
  30376. extra: 537 / 455,
  30377. bottom: 46 / 583
  30378. }
  30379. },
  30380. frontBuff: {
  30381. height: math.unit(7, "feet"),
  30382. name: "Front (Buff)",
  30383. image: {
  30384. source: "./media/characters/issilora/front-buff.svg",
  30385. extra: 2310 / 2035,
  30386. bottom: 335 / 2645
  30387. }
  30388. },
  30389. head: {
  30390. height: math.unit(1.94, "feet"),
  30391. name: "Head",
  30392. image: {
  30393. source: "./media/characters/issilora/head.svg"
  30394. }
  30395. },
  30396. },
  30397. [
  30398. {
  30399. name: "Minimum",
  30400. height: math.unit(7, "feet")
  30401. },
  30402. {
  30403. name: "Comfortable",
  30404. height: math.unit(17, "feet")
  30405. },
  30406. {
  30407. name: "Fun Size",
  30408. height: math.unit(47, "feet")
  30409. },
  30410. {
  30411. name: "Natural Macro",
  30412. height: math.unit(137, "feet"),
  30413. default: true
  30414. },
  30415. {
  30416. name: "Maximum Kaiju",
  30417. height: math.unit(397, "feet")
  30418. },
  30419. ]
  30420. ))
  30421. characterMakers.push(() => makeCharacter(
  30422. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30423. {
  30424. front: {
  30425. height: math.unit(50 + 9/12, "feet"),
  30426. weight: math.unit(32.8, "tons"),
  30427. name: "Front",
  30428. image: {
  30429. source: "./media/characters/irb'iiritaahn/front.svg",
  30430. extra: 1878/1826,
  30431. bottom: 326/2204
  30432. }
  30433. },
  30434. back: {
  30435. height: math.unit(50 + 9/12, "feet"),
  30436. weight: math.unit(32.8, "tons"),
  30437. name: "Back",
  30438. image: {
  30439. source: "./media/characters/irb'iiritaahn/back.svg",
  30440. extra: 2052/2018,
  30441. bottom: 152/2204
  30442. }
  30443. },
  30444. head: {
  30445. height: math.unit(12.86, "feet"),
  30446. name: "Head",
  30447. image: {
  30448. source: "./media/characters/irb'iiritaahn/head.svg"
  30449. }
  30450. },
  30451. maw: {
  30452. height: math.unit(9.66, "feet"),
  30453. name: "Maw",
  30454. image: {
  30455. source: "./media/characters/irb'iiritaahn/maw.svg"
  30456. }
  30457. },
  30458. frontDick: {
  30459. height: math.unit(8.78461, "feet"),
  30460. name: "Front Dick",
  30461. image: {
  30462. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30463. }
  30464. },
  30465. rearDick: {
  30466. height: math.unit(8.78461, "feet"),
  30467. name: "Rear Dick",
  30468. image: {
  30469. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30470. }
  30471. },
  30472. rearDickUnfolded: {
  30473. height: math.unit(8.78, "feet"),
  30474. name: "Rear Dick (Unfolded)",
  30475. image: {
  30476. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30477. }
  30478. },
  30479. wings: {
  30480. height: math.unit(43, "feet"),
  30481. name: "Wings",
  30482. image: {
  30483. source: "./media/characters/irb'iiritaahn/wings.svg"
  30484. }
  30485. },
  30486. },
  30487. [
  30488. {
  30489. name: "Macro",
  30490. height: math.unit(50 + 9/12, "feet"),
  30491. default: true
  30492. },
  30493. ]
  30494. ))
  30495. characterMakers.push(() => makeCharacter(
  30496. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30497. {
  30498. front: {
  30499. height: math.unit(205, "cm"),
  30500. weight: math.unit(102, "kg"),
  30501. name: "Front",
  30502. image: {
  30503. source: "./media/characters/irbisgreif/front.svg",
  30504. extra: 785/706,
  30505. bottom: 13/798
  30506. }
  30507. },
  30508. back: {
  30509. height: math.unit(205, "cm"),
  30510. weight: math.unit(102, "kg"),
  30511. name: "Back",
  30512. image: {
  30513. source: "./media/characters/irbisgreif/back.svg",
  30514. extra: 713/701,
  30515. bottom: 26/739
  30516. }
  30517. },
  30518. frontDressed: {
  30519. height: math.unit(216, "cm"),
  30520. weight: math.unit(102, "kg"),
  30521. name: "Front-dressed",
  30522. image: {
  30523. source: "./media/characters/irbisgreif/front-dressed.svg",
  30524. extra: 902/776,
  30525. bottom: 14/916
  30526. }
  30527. },
  30528. sideDressed: {
  30529. height: math.unit(195, "cm"),
  30530. weight: math.unit(102, "kg"),
  30531. name: "Side-dressed",
  30532. image: {
  30533. source: "./media/characters/irbisgreif/side-dressed.svg",
  30534. extra: 788/688,
  30535. bottom: 21/809
  30536. }
  30537. },
  30538. backDressed: {
  30539. height: math.unit(216, "cm"),
  30540. weight: math.unit(102, "kg"),
  30541. name: "Back-dressed",
  30542. image: {
  30543. source: "./media/characters/irbisgreif/back-dressed.svg",
  30544. extra: 901/783,
  30545. bottom: 10/911
  30546. }
  30547. },
  30548. dick: {
  30549. height: math.unit(0.49, "feet"),
  30550. name: "Dick",
  30551. image: {
  30552. source: "./media/characters/irbisgreif/dick.svg"
  30553. }
  30554. },
  30555. wingTop: {
  30556. height: math.unit(1.93 , "feet"),
  30557. name: "Wing-top",
  30558. image: {
  30559. source: "./media/characters/irbisgreif/wing-top.svg"
  30560. }
  30561. },
  30562. wingBottom: {
  30563. height: math.unit(1.93 , "feet"),
  30564. name: "Wing-bottom",
  30565. image: {
  30566. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30567. }
  30568. },
  30569. },
  30570. [
  30571. {
  30572. name: "Normal",
  30573. height: math.unit(216, "cm"),
  30574. default: true
  30575. },
  30576. ]
  30577. ))
  30578. characterMakers.push(() => makeCharacter(
  30579. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30580. {
  30581. front: {
  30582. height: math.unit(6, "feet"),
  30583. weight: math.unit(150, "lb"),
  30584. name: "Front",
  30585. image: {
  30586. source: "./media/characters/pride/front.svg",
  30587. extra: 1299/1230,
  30588. bottom: 18/1317
  30589. }
  30590. },
  30591. },
  30592. [
  30593. {
  30594. name: "Normal",
  30595. height: math.unit(7, "feet")
  30596. },
  30597. {
  30598. name: "Mini-macro",
  30599. height: math.unit(11, "feet")
  30600. },
  30601. {
  30602. name: "Macro",
  30603. height: math.unit(15, "meters"),
  30604. default: true
  30605. },
  30606. {
  30607. name: "Macro+",
  30608. height: math.unit(40, "meters")
  30609. },
  30610. ]
  30611. ))
  30612. characterMakers.push(() => makeCharacter(
  30613. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30614. {
  30615. front: {
  30616. height: math.unit(4 + 2 / 12, "feet"),
  30617. weight: math.unit(95, "lb"),
  30618. name: "Front",
  30619. image: {
  30620. source: "./media/characters/vaelophis-nyx/front.svg",
  30621. extra: 2532/2330,
  30622. bottom: 0/2532
  30623. }
  30624. },
  30625. back: {
  30626. height: math.unit(4 + 2 / 12, "feet"),
  30627. weight: math.unit(95, "lb"),
  30628. name: "Back",
  30629. image: {
  30630. source: "./media/characters/vaelophis-nyx/back.svg",
  30631. extra: 2484/2361,
  30632. bottom: 0/2484
  30633. }
  30634. },
  30635. feralSide: {
  30636. height: math.unit(2 + 1/12, "feet"),
  30637. weight: math.unit(20, "lb"),
  30638. name: "Feral (Side)",
  30639. image: {
  30640. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30641. extra: 1721/1581,
  30642. bottom: 70/1791
  30643. }
  30644. },
  30645. feralLazing: {
  30646. height: math.unit(1.08, "feet"),
  30647. weight: math.unit(20, "lb"),
  30648. name: "Feral (Lazing)",
  30649. image: {
  30650. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30651. extra: 822/822,
  30652. bottom: 248/1070
  30653. }
  30654. },
  30655. ear: {
  30656. height: math.unit(0.416, "feet"),
  30657. name: "Ear",
  30658. image: {
  30659. source: "./media/characters/vaelophis-nyx/ear.svg"
  30660. }
  30661. },
  30662. eye: {
  30663. height: math.unit(0.0748, "feet"),
  30664. name: "Eye",
  30665. image: {
  30666. source: "./media/characters/vaelophis-nyx/eye.svg"
  30667. }
  30668. },
  30669. mouth: {
  30670. height: math.unit(0.378, "feet"),
  30671. name: "Mouth",
  30672. image: {
  30673. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30674. }
  30675. },
  30676. spade: {
  30677. height: math.unit(0.55, "feet"),
  30678. name: "Spade",
  30679. image: {
  30680. source: "./media/characters/vaelophis-nyx/spade.svg"
  30681. }
  30682. },
  30683. },
  30684. [
  30685. {
  30686. name: "Normal",
  30687. height: math.unit(4 + 2/12, "feet"),
  30688. default: true
  30689. },
  30690. ]
  30691. ))
  30692. characterMakers.push(() => makeCharacter(
  30693. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30694. {
  30695. front: {
  30696. height: math.unit(7, "feet"),
  30697. weight: math.unit(231, "lb"),
  30698. name: "Front",
  30699. image: {
  30700. source: "./media/characters/flux/front.svg",
  30701. extra: 919/871,
  30702. bottom: 0/919
  30703. }
  30704. },
  30705. back: {
  30706. height: math.unit(7, "feet"),
  30707. weight: math.unit(231, "lb"),
  30708. name: "Back",
  30709. image: {
  30710. source: "./media/characters/flux/back.svg",
  30711. extra: 1040/992,
  30712. bottom: 0/1040
  30713. }
  30714. },
  30715. frontDressed: {
  30716. height: math.unit(7, "feet"),
  30717. weight: math.unit(231, "lb"),
  30718. name: "Front (Dressed)",
  30719. image: {
  30720. source: "./media/characters/flux/front-dressed.svg",
  30721. extra: 919/871,
  30722. bottom: 0/919
  30723. }
  30724. },
  30725. feralSide: {
  30726. height: math.unit(5, "feet"),
  30727. weight: math.unit(150, "lb"),
  30728. name: "Feral (Side)",
  30729. image: {
  30730. source: "./media/characters/flux/feral-side.svg",
  30731. extra: 598/528,
  30732. bottom: 28/626
  30733. }
  30734. },
  30735. head: {
  30736. height: math.unit(1.585, "feet"),
  30737. name: "Head",
  30738. image: {
  30739. source: "./media/characters/flux/head.svg"
  30740. }
  30741. },
  30742. headSide: {
  30743. height: math.unit(1.74, "feet"),
  30744. name: "Head (Side)",
  30745. image: {
  30746. source: "./media/characters/flux/head-side.svg"
  30747. }
  30748. },
  30749. headSideFire: {
  30750. height: math.unit(1.76, "feet"),
  30751. name: "Head (Side, Fire)",
  30752. image: {
  30753. source: "./media/characters/flux/head-side-fire.svg"
  30754. }
  30755. },
  30756. },
  30757. [
  30758. {
  30759. name: "Normal",
  30760. height: math.unit(7, "feet"),
  30761. default: true
  30762. },
  30763. ]
  30764. ))
  30765. characterMakers.push(() => makeCharacter(
  30766. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30767. {
  30768. front: {
  30769. height: math.unit(9, "feet"),
  30770. weight: math.unit(1012, "lb"),
  30771. name: "Front",
  30772. image: {
  30773. source: "./media/characters/ulfra-lupae/front.svg",
  30774. extra: 1083/1011,
  30775. bottom: 67/1150
  30776. }
  30777. },
  30778. },
  30779. [
  30780. {
  30781. name: "Micro",
  30782. height: math.unit(6, "inches")
  30783. },
  30784. {
  30785. name: "Socializing",
  30786. height: math.unit(6 + 5/12, "feet")
  30787. },
  30788. {
  30789. name: "Normal",
  30790. height: math.unit(9, "feet"),
  30791. default: true
  30792. },
  30793. {
  30794. name: "Macro",
  30795. height: math.unit(150, "feet")
  30796. },
  30797. ]
  30798. ))
  30799. characterMakers.push(() => makeCharacter(
  30800. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30801. {
  30802. front: {
  30803. height: math.unit(5 + 2/12, "feet"),
  30804. weight: math.unit(120, "lb"),
  30805. name: "Front",
  30806. image: {
  30807. source: "./media/characters/timber/front.svg",
  30808. extra: 2814/2705,
  30809. bottom: 181/2995
  30810. }
  30811. },
  30812. },
  30813. [
  30814. {
  30815. name: "Normal",
  30816. height: math.unit(5 + 2/12, "feet"),
  30817. default: true
  30818. },
  30819. ]
  30820. ))
  30821. characterMakers.push(() => makeCharacter(
  30822. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30823. {
  30824. front: {
  30825. height: math.unit(5 + 7/12, "feet"),
  30826. weight: math.unit(220, "lb"),
  30827. name: "Front",
  30828. image: {
  30829. source: "./media/characters/nicki/front.svg",
  30830. extra: 453/419,
  30831. bottom: 7/460
  30832. }
  30833. },
  30834. frontAlt: {
  30835. height: math.unit(5 + 7/12, "feet"),
  30836. weight: math.unit(220, "lb"),
  30837. name: "Front-alt",
  30838. image: {
  30839. source: "./media/characters/nicki/front-alt.svg",
  30840. extra: 435/411,
  30841. bottom: 12/447
  30842. }
  30843. },
  30844. back: {
  30845. height: math.unit(5 + 7/12, "feet"),
  30846. weight: math.unit(220, "lb"),
  30847. name: "Back",
  30848. image: {
  30849. source: "./media/characters/nicki/back.svg",
  30850. extra: 440/413,
  30851. bottom: 19/459
  30852. }
  30853. },
  30854. taur: {
  30855. height: math.unit(7 + 6/12, "feet"),
  30856. weight: math.unit(700, "lb"),
  30857. name: "Taur",
  30858. image: {
  30859. source: "./media/characters/nicki/taur.svg",
  30860. extra: 975/773,
  30861. bottom: 0/975
  30862. }
  30863. },
  30864. frontNsfw: {
  30865. height: math.unit(5 + 7/12, "feet"),
  30866. weight: math.unit(220, "lb"),
  30867. name: "Front (NSFW)",
  30868. image: {
  30869. source: "./media/characters/nicki/front-nsfw.svg",
  30870. extra: 453/419,
  30871. bottom: 7/460
  30872. }
  30873. },
  30874. frontNsfwAlt: {
  30875. height: math.unit(5 + 7/12, "feet"),
  30876. weight: math.unit(220, "lb"),
  30877. name: "Front (Alt, NSFW)",
  30878. image: {
  30879. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30880. extra: 435/411,
  30881. bottom: 12/447
  30882. }
  30883. },
  30884. backNsfw: {
  30885. height: math.unit(5 + 7/12, "feet"),
  30886. weight: math.unit(220, "lb"),
  30887. name: "Back (NSFW)",
  30888. image: {
  30889. source: "./media/characters/nicki/back-nsfw.svg",
  30890. extra: 440/413,
  30891. bottom: 19/459
  30892. }
  30893. },
  30894. head: {
  30895. height: math.unit(2.1, "feet"),
  30896. name: "Head",
  30897. image: {
  30898. source: "./media/characters/nicki/head.svg"
  30899. }
  30900. },
  30901. paw: {
  30902. height: math.unit(1.88, "feet"),
  30903. name: "Paw",
  30904. image: {
  30905. source: "./media/characters/nicki/paw.svg"
  30906. }
  30907. },
  30908. },
  30909. [
  30910. {
  30911. name: "Normal",
  30912. height: math.unit(5 + 7/12, "feet"),
  30913. default: true
  30914. },
  30915. ]
  30916. ))
  30917. characterMakers.push(() => makeCharacter(
  30918. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30919. {
  30920. front: {
  30921. height: math.unit(7 + 10/12, "feet"),
  30922. weight: math.unit(3.5, "tons"),
  30923. name: "Front",
  30924. image: {
  30925. source: "./media/characters/lee/front.svg",
  30926. extra: 1773/1615,
  30927. bottom: 86/1859
  30928. }
  30929. },
  30930. hand: {
  30931. height: math.unit(1.78, "feet"),
  30932. name: "Hand",
  30933. image: {
  30934. source: "./media/characters/lee/hand.svg"
  30935. }
  30936. },
  30937. maw: {
  30938. height: math.unit(1.18, "feet"),
  30939. name: "Maw",
  30940. image: {
  30941. source: "./media/characters/lee/maw.svg"
  30942. }
  30943. },
  30944. },
  30945. [
  30946. {
  30947. name: "Normal",
  30948. height: math.unit(7 + 10/12, "feet"),
  30949. default: true
  30950. },
  30951. ]
  30952. ))
  30953. characterMakers.push(() => makeCharacter(
  30954. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30955. {
  30956. front: {
  30957. height: math.unit(9, "feet"),
  30958. name: "Front",
  30959. image: {
  30960. source: "./media/characters/guti/front.svg",
  30961. extra: 4551/4355,
  30962. bottom: 123/4674
  30963. }
  30964. },
  30965. tongue: {
  30966. height: math.unit(1, "feet"),
  30967. name: "Tongue",
  30968. image: {
  30969. source: "./media/characters/guti/tongue.svg"
  30970. }
  30971. },
  30972. paw: {
  30973. height: math.unit(1.18, "feet"),
  30974. name: "Paw",
  30975. image: {
  30976. source: "./media/characters/guti/paw.svg"
  30977. }
  30978. },
  30979. },
  30980. [
  30981. {
  30982. name: "Normal",
  30983. height: math.unit(9, "feet"),
  30984. default: true
  30985. },
  30986. ]
  30987. ))
  30988. characterMakers.push(() => makeCharacter(
  30989. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30990. {
  30991. side: {
  30992. height: math.unit(5, "meters"),
  30993. name: "Side",
  30994. image: {
  30995. source: "./media/characters/vesper/side.svg",
  30996. extra: 1605/1518,
  30997. bottom: 0/1605
  30998. }
  30999. },
  31000. },
  31001. [
  31002. {
  31003. name: "Small",
  31004. height: math.unit(5, "meters")
  31005. },
  31006. {
  31007. name: "Sage",
  31008. height: math.unit(100, "meters"),
  31009. default: true
  31010. },
  31011. {
  31012. name: "Fun Size",
  31013. height: math.unit(600, "meters")
  31014. },
  31015. {
  31016. name: "Goddess",
  31017. height: math.unit(20000, "km")
  31018. },
  31019. {
  31020. name: "Maximum",
  31021. height: math.unit(5, "galaxies")
  31022. },
  31023. ]
  31024. ))
  31025. characterMakers.push(() => makeCharacter(
  31026. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31027. {
  31028. front: {
  31029. height: math.unit(6 + 3/12, "feet"),
  31030. weight: math.unit(190, "lb"),
  31031. name: "Front",
  31032. image: {
  31033. source: "./media/characters/gawain/front.svg",
  31034. extra: 2222/2139,
  31035. bottom: 90/2312
  31036. }
  31037. },
  31038. back: {
  31039. height: math.unit(6 + 3/12, "feet"),
  31040. weight: math.unit(190, "lb"),
  31041. name: "Back",
  31042. image: {
  31043. source: "./media/characters/gawain/back.svg",
  31044. extra: 2199/2111,
  31045. bottom: 73/2272
  31046. }
  31047. },
  31048. },
  31049. [
  31050. {
  31051. name: "Normal",
  31052. height: math.unit(6 + 3/12, "feet"),
  31053. default: true
  31054. },
  31055. ]
  31056. ))
  31057. characterMakers.push(() => makeCharacter(
  31058. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31059. {
  31060. side: {
  31061. height: math.unit(3.5, "meters"),
  31062. weight: math.unit(16000, "lb"),
  31063. name: "Side",
  31064. image: {
  31065. source: "./media/characters/dascalti/side.svg",
  31066. extra: 392/273,
  31067. bottom: 47/439
  31068. }
  31069. },
  31070. breath: {
  31071. height: math.unit(7.4, "feet"),
  31072. name: "Breath",
  31073. image: {
  31074. source: "./media/characters/dascalti/breath.svg"
  31075. }
  31076. },
  31077. fed: {
  31078. height: math.unit(3.6, "meters"),
  31079. weight: math.unit(16000, "lb"),
  31080. name: "Fed",
  31081. image: {
  31082. source: "./media/characters/dascalti/fed.svg",
  31083. extra: 1419/820,
  31084. bottom: 95/1514
  31085. }
  31086. },
  31087. },
  31088. [
  31089. {
  31090. name: "Normal",
  31091. height: math.unit(3.5, "meters"),
  31092. default: true
  31093. },
  31094. ]
  31095. ))
  31096. characterMakers.push(() => makeCharacter(
  31097. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31098. {
  31099. front: {
  31100. height: math.unit(3 + 5/12, "feet"),
  31101. name: "Front",
  31102. image: {
  31103. source: "./media/characters/mauve/front.svg",
  31104. extra: 1126/1033,
  31105. bottom: 65/1191
  31106. }
  31107. },
  31108. side: {
  31109. height: math.unit(3 + 5/12, "feet"),
  31110. name: "Side",
  31111. image: {
  31112. source: "./media/characters/mauve/side.svg",
  31113. extra: 1089/1001,
  31114. bottom: 29/1118
  31115. }
  31116. },
  31117. back: {
  31118. height: math.unit(3 + 5/12, "feet"),
  31119. name: "Back",
  31120. image: {
  31121. source: "./media/characters/mauve/back.svg",
  31122. extra: 1173/1053,
  31123. bottom: 109/1282
  31124. }
  31125. },
  31126. },
  31127. [
  31128. {
  31129. name: "Normal",
  31130. height: math.unit(3 + 5/12, "feet"),
  31131. default: true
  31132. },
  31133. ]
  31134. ))
  31135. characterMakers.push(() => makeCharacter(
  31136. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31137. {
  31138. front: {
  31139. height: math.unit(6 + 3/12, "feet"),
  31140. weight: math.unit(430, "lb"),
  31141. name: "Front",
  31142. image: {
  31143. source: "./media/characters/carlos/front.svg",
  31144. extra: 1964/1913,
  31145. bottom: 70/2034
  31146. }
  31147. },
  31148. },
  31149. [
  31150. {
  31151. name: "Normal",
  31152. height: math.unit(6 + 3/12, "feet"),
  31153. default: true
  31154. },
  31155. ]
  31156. ))
  31157. characterMakers.push(() => makeCharacter(
  31158. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31159. {
  31160. back: {
  31161. height: math.unit(5 + 10/12, "feet"),
  31162. weight: math.unit(200, "lb"),
  31163. name: "Back",
  31164. image: {
  31165. source: "./media/characters/jax/back.svg",
  31166. extra: 764/739,
  31167. bottom: 25/789
  31168. }
  31169. },
  31170. },
  31171. [
  31172. {
  31173. name: "Normal",
  31174. height: math.unit(5 + 10/12, "feet"),
  31175. default: true
  31176. },
  31177. ]
  31178. ))
  31179. characterMakers.push(() => makeCharacter(
  31180. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31181. {
  31182. front: {
  31183. height: math.unit(8, "feet"),
  31184. weight: math.unit(250, "lb"),
  31185. name: "Front",
  31186. image: {
  31187. source: "./media/characters/eikthynir/front.svg",
  31188. extra: 1332/1166,
  31189. bottom: 82/1414
  31190. }
  31191. },
  31192. back: {
  31193. height: math.unit(8, "feet"),
  31194. weight: math.unit(250, "lb"),
  31195. name: "Back",
  31196. image: {
  31197. source: "./media/characters/eikthynir/back.svg",
  31198. extra: 1342/1190,
  31199. bottom: 19/1361
  31200. }
  31201. },
  31202. dick: {
  31203. height: math.unit(2.35, "feet"),
  31204. name: "Dick",
  31205. image: {
  31206. source: "./media/characters/eikthynir/dick.svg"
  31207. }
  31208. },
  31209. },
  31210. [
  31211. {
  31212. name: "Normal",
  31213. height: math.unit(8, "feet"),
  31214. default: true
  31215. },
  31216. ]
  31217. ))
  31218. characterMakers.push(() => makeCharacter(
  31219. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31220. {
  31221. front: {
  31222. height: math.unit(99, "meters"),
  31223. weight: math.unit(13000, "tons"),
  31224. name: "Front",
  31225. image: {
  31226. source: "./media/characters/zlmos/front.svg",
  31227. extra: 2202/1992,
  31228. bottom: 315/2517
  31229. }
  31230. },
  31231. },
  31232. [
  31233. {
  31234. name: "Macro",
  31235. height: math.unit(99, "meters"),
  31236. default: true
  31237. },
  31238. ]
  31239. ))
  31240. characterMakers.push(() => makeCharacter(
  31241. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31242. {
  31243. front: {
  31244. height: math.unit(6 + 5/12, "feet"),
  31245. name: "Front",
  31246. image: {
  31247. source: "./media/characters/purri/front.svg",
  31248. extra: 1698/1610,
  31249. bottom: 32/1730
  31250. }
  31251. },
  31252. frontAlt: {
  31253. height: math.unit(6 + 5/12, "feet"),
  31254. name: "Front (Alt)",
  31255. image: {
  31256. source: "./media/characters/purri/front-alt.svg",
  31257. extra: 450/420,
  31258. bottom: 26/476
  31259. }
  31260. },
  31261. boots: {
  31262. height: math.unit(5.5, "feet"),
  31263. name: "Boots",
  31264. image: {
  31265. source: "./media/characters/purri/boots.svg",
  31266. extra: 905/853,
  31267. bottom: 18/923
  31268. }
  31269. },
  31270. lying: {
  31271. height: math.unit(2, "feet"),
  31272. name: "Lying",
  31273. image: {
  31274. source: "./media/characters/purri/lying.svg",
  31275. extra: 940/843,
  31276. bottom: 146/1086
  31277. }
  31278. },
  31279. devious: {
  31280. height: math.unit(1.77, "feet"),
  31281. name: "Devious",
  31282. image: {
  31283. source: "./media/characters/purri/devious.svg",
  31284. extra: 1440/1155,
  31285. bottom: 147/1587
  31286. }
  31287. },
  31288. bean: {
  31289. height: math.unit(1.94, "feet"),
  31290. name: "Bean",
  31291. image: {
  31292. source: "./media/characters/purri/bean.svg"
  31293. }
  31294. },
  31295. },
  31296. [
  31297. {
  31298. name: "Micro",
  31299. height: math.unit(1, "mm")
  31300. },
  31301. {
  31302. name: "Normal",
  31303. height: math.unit(6 + 5/12, "feet"),
  31304. default: true
  31305. },
  31306. {
  31307. name: "Macro :3c",
  31308. height: math.unit(2, "miles")
  31309. },
  31310. ]
  31311. ))
  31312. characterMakers.push(() => makeCharacter(
  31313. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31314. {
  31315. front: {
  31316. height: math.unit(6 + 2/12, "feet"),
  31317. weight: math.unit(250, "lb"),
  31318. name: "Front",
  31319. image: {
  31320. source: "./media/characters/moonlight/front.svg",
  31321. extra: 1044/908,
  31322. bottom: 56/1100
  31323. }
  31324. },
  31325. feral: {
  31326. height: math.unit(3 + 1/12, "feet"),
  31327. weight: math.unit(50, "kg"),
  31328. name: "Feral",
  31329. image: {
  31330. source: "./media/characters/moonlight/feral.svg",
  31331. extra: 3705/2791,
  31332. bottom: 145/3850
  31333. }
  31334. },
  31335. paw: {
  31336. height: math.unit(1, "feet"),
  31337. name: "Paw",
  31338. image: {
  31339. source: "./media/characters/moonlight/paw.svg"
  31340. }
  31341. },
  31342. paws: {
  31343. height: math.unit(0.98, "feet"),
  31344. name: "Paws",
  31345. image: {
  31346. source: "./media/characters/moonlight/paws.svg",
  31347. extra: 939/939,
  31348. bottom: 50/989
  31349. }
  31350. },
  31351. mouth: {
  31352. height: math.unit(0.48, "feet"),
  31353. name: "Mouth",
  31354. image: {
  31355. source: "./media/characters/moonlight/mouth.svg"
  31356. }
  31357. },
  31358. dick: {
  31359. height: math.unit(1.46, "feet"),
  31360. name: "Dick",
  31361. image: {
  31362. source: "./media/characters/moonlight/dick.svg"
  31363. }
  31364. },
  31365. },
  31366. [
  31367. {
  31368. name: "Normal",
  31369. height: math.unit(6 + 2/12, "feet"),
  31370. default: true
  31371. },
  31372. {
  31373. name: "Macro",
  31374. height: math.unit(300, "feet")
  31375. },
  31376. {
  31377. name: "Macro+",
  31378. height: math.unit(1, "mile")
  31379. },
  31380. {
  31381. name: "Mt. Moon",
  31382. height: math.unit(5, "miles")
  31383. },
  31384. {
  31385. name: "Megamacro",
  31386. height: math.unit(15, "miles")
  31387. },
  31388. ]
  31389. ))
  31390. characterMakers.push(() => makeCharacter(
  31391. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31392. {
  31393. back: {
  31394. height: math.unit(6, "feet"),
  31395. weight: math.unit(150, "lb"),
  31396. name: "Back",
  31397. image: {
  31398. source: "./media/characters/sylen/back.svg",
  31399. extra: 1335/1273,
  31400. bottom: 107/1442
  31401. }
  31402. },
  31403. },
  31404. [
  31405. {
  31406. name: "Normal",
  31407. height: math.unit(5 + 5/12, "feet")
  31408. },
  31409. {
  31410. name: "Megamacro",
  31411. height: math.unit(3, "miles"),
  31412. default: true
  31413. },
  31414. ]
  31415. ))
  31416. characterMakers.push(() => makeCharacter(
  31417. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31418. {
  31419. front: {
  31420. height: math.unit(6, "feet"),
  31421. weight: math.unit(190, "lb"),
  31422. name: "Front",
  31423. image: {
  31424. source: "./media/characters/huttser/front.svg",
  31425. extra: 1152/1058,
  31426. bottom: 23/1175
  31427. }
  31428. },
  31429. side: {
  31430. height: math.unit(6, "feet"),
  31431. weight: math.unit(190, "lb"),
  31432. name: "Side",
  31433. image: {
  31434. source: "./media/characters/huttser/side.svg",
  31435. extra: 1174/1065,
  31436. bottom: 18/1192
  31437. }
  31438. },
  31439. back: {
  31440. height: math.unit(6, "feet"),
  31441. weight: math.unit(190, "lb"),
  31442. name: "Back",
  31443. image: {
  31444. source: "./media/characters/huttser/back.svg",
  31445. extra: 1158/1056,
  31446. bottom: 12/1170
  31447. }
  31448. },
  31449. },
  31450. [
  31451. ]
  31452. ))
  31453. characterMakers.push(() => makeCharacter(
  31454. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31455. {
  31456. side: {
  31457. height: math.unit(12 + 9/12, "feet"),
  31458. weight: math.unit(15000, "lb"),
  31459. name: "Side",
  31460. image: {
  31461. source: "./media/characters/faan/side.svg",
  31462. extra: 2747/2697,
  31463. bottom: 0/2747
  31464. }
  31465. },
  31466. front: {
  31467. height: math.unit(12 + 9/12, "feet"),
  31468. weight: math.unit(15000, "lb"),
  31469. name: "Front",
  31470. image: {
  31471. source: "./media/characters/faan/front.svg",
  31472. extra: 607/571,
  31473. bottom: 24/631
  31474. }
  31475. },
  31476. head: {
  31477. height: math.unit(2.85, "feet"),
  31478. name: "Head",
  31479. image: {
  31480. source: "./media/characters/faan/head.svg"
  31481. }
  31482. },
  31483. headAlt: {
  31484. height: math.unit(3.13, "feet"),
  31485. name: "Head-alt",
  31486. image: {
  31487. source: "./media/characters/faan/head-alt.svg"
  31488. }
  31489. },
  31490. },
  31491. [
  31492. {
  31493. name: "Normal",
  31494. height: math.unit(12 + 9/12, "feet"),
  31495. default: true
  31496. },
  31497. ]
  31498. ))
  31499. characterMakers.push(() => makeCharacter(
  31500. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31501. {
  31502. front: {
  31503. height: math.unit(6, "feet"),
  31504. weight: math.unit(300, "lb"),
  31505. name: "Front",
  31506. image: {
  31507. source: "./media/characters/tanio/front.svg",
  31508. extra: 711/673,
  31509. bottom: 25/736
  31510. }
  31511. },
  31512. },
  31513. [
  31514. {
  31515. name: "Normal",
  31516. height: math.unit(6, "feet"),
  31517. default: true
  31518. },
  31519. ]
  31520. ))
  31521. characterMakers.push(() => makeCharacter(
  31522. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31523. {
  31524. front: {
  31525. height: math.unit(3, "inches"),
  31526. name: "Front",
  31527. image: {
  31528. source: "./media/characters/noboru/front.svg",
  31529. extra: 1039/932,
  31530. bottom: 18/1057
  31531. }
  31532. },
  31533. },
  31534. [
  31535. {
  31536. name: "Micro",
  31537. height: math.unit(3, "inches"),
  31538. default: true
  31539. },
  31540. ]
  31541. ))
  31542. characterMakers.push(() => makeCharacter(
  31543. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31544. {
  31545. front: {
  31546. height: math.unit(1.85, "meters"),
  31547. weight: math.unit(80, "kg"),
  31548. name: "Front",
  31549. image: {
  31550. source: "./media/characters/daniel-barrett/front.svg",
  31551. extra: 355/337,
  31552. bottom: 9/364
  31553. }
  31554. },
  31555. },
  31556. [
  31557. {
  31558. name: "Pico",
  31559. height: math.unit(0.0433, "mm")
  31560. },
  31561. {
  31562. name: "Nano",
  31563. height: math.unit(1.5, "mm")
  31564. },
  31565. {
  31566. name: "Micro",
  31567. height: math.unit(5.3, "cm"),
  31568. default: true
  31569. },
  31570. {
  31571. name: "Normal",
  31572. height: math.unit(1.85, "meters")
  31573. },
  31574. {
  31575. name: "Macro",
  31576. height: math.unit(64.7, "meters")
  31577. },
  31578. {
  31579. name: "Megamacro",
  31580. height: math.unit(2.26, "km")
  31581. },
  31582. {
  31583. name: "Gigamacro",
  31584. height: math.unit(79, "km")
  31585. },
  31586. {
  31587. name: "Teramacro",
  31588. height: math.unit(2765, "km")
  31589. },
  31590. {
  31591. name: "Petamacro",
  31592. height: math.unit(96678, "km")
  31593. },
  31594. ]
  31595. ))
  31596. characterMakers.push(() => makeCharacter(
  31597. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31598. {
  31599. front: {
  31600. height: math.unit(30, "meters"),
  31601. weight: math.unit(400, "tons"),
  31602. name: "Front",
  31603. image: {
  31604. source: "./media/characters/zeel/front.svg",
  31605. extra: 2599/2599,
  31606. bottom: 226/2825
  31607. }
  31608. },
  31609. },
  31610. [
  31611. {
  31612. name: "Macro",
  31613. height: math.unit(30, "meters"),
  31614. default: true
  31615. },
  31616. ]
  31617. ))
  31618. characterMakers.push(() => makeCharacter(
  31619. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31620. {
  31621. front: {
  31622. height: math.unit(6 + 7/12, "feet"),
  31623. weight: math.unit(210, "lb"),
  31624. name: "Front",
  31625. image: {
  31626. source: "./media/characters/tarn/front.svg",
  31627. extra: 3517/3220,
  31628. bottom: 91/3608
  31629. }
  31630. },
  31631. back: {
  31632. height: math.unit(6 + 7/12, "feet"),
  31633. weight: math.unit(210, "lb"),
  31634. name: "Back",
  31635. image: {
  31636. source: "./media/characters/tarn/back.svg",
  31637. extra: 3566/3241,
  31638. bottom: 34/3600
  31639. }
  31640. },
  31641. dick: {
  31642. height: math.unit(1.65, "feet"),
  31643. name: "Dick",
  31644. image: {
  31645. source: "./media/characters/tarn/dick.svg"
  31646. }
  31647. },
  31648. paw: {
  31649. height: math.unit(1.80, "feet"),
  31650. name: "Paw",
  31651. image: {
  31652. source: "./media/characters/tarn/paw.svg"
  31653. }
  31654. },
  31655. tongue: {
  31656. height: math.unit(0.97, "feet"),
  31657. name: "Tongue",
  31658. image: {
  31659. source: "./media/characters/tarn/tongue.svg"
  31660. }
  31661. },
  31662. },
  31663. [
  31664. {
  31665. name: "Micro",
  31666. height: math.unit(4, "inches")
  31667. },
  31668. {
  31669. name: "Normal",
  31670. height: math.unit(6 + 7/12, "feet"),
  31671. default: true
  31672. },
  31673. {
  31674. name: "Macro",
  31675. height: math.unit(300, "feet")
  31676. },
  31677. ]
  31678. ))
  31679. characterMakers.push(() => makeCharacter(
  31680. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31681. {
  31682. front: {
  31683. height: math.unit(5 + 7/12, "feet"),
  31684. weight: math.unit(80, "kg"),
  31685. name: "Front",
  31686. image: {
  31687. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31688. extra: 3023/2865,
  31689. bottom: 33/3056
  31690. }
  31691. },
  31692. back: {
  31693. height: math.unit(5 + 7/12, "feet"),
  31694. weight: math.unit(80, "kg"),
  31695. name: "Back",
  31696. image: {
  31697. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31698. extra: 3020/2886,
  31699. bottom: 30/3050
  31700. }
  31701. },
  31702. dick: {
  31703. height: math.unit(0.98, "feet"),
  31704. name: "Dick",
  31705. image: {
  31706. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31707. }
  31708. },
  31709. anatomy: {
  31710. height: math.unit(2.86, "feet"),
  31711. name: "Anatomy",
  31712. image: {
  31713. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31714. }
  31715. },
  31716. },
  31717. [
  31718. {
  31719. name: "Really Small",
  31720. height: math.unit(2, "inches")
  31721. },
  31722. {
  31723. name: "Micro",
  31724. height: math.unit(5.583, "inches")
  31725. },
  31726. {
  31727. name: "Normal",
  31728. height: math.unit(5 + 7/12, "feet"),
  31729. default: true
  31730. },
  31731. {
  31732. name: "Macro",
  31733. height: math.unit(67, "feet")
  31734. },
  31735. {
  31736. name: "Megamacro",
  31737. height: math.unit(134, "feet")
  31738. },
  31739. ]
  31740. ))
  31741. characterMakers.push(() => makeCharacter(
  31742. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31743. {
  31744. front: {
  31745. height: math.unit(9, "feet"),
  31746. weight: math.unit(120, "lb"),
  31747. name: "Front",
  31748. image: {
  31749. source: "./media/characters/sally/front.svg",
  31750. extra: 1506/1349,
  31751. bottom: 66/1572
  31752. }
  31753. },
  31754. },
  31755. [
  31756. {
  31757. name: "Normal",
  31758. height: math.unit(9, "feet"),
  31759. default: true
  31760. },
  31761. ]
  31762. ))
  31763. characterMakers.push(() => makeCharacter(
  31764. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31765. {
  31766. front: {
  31767. height: math.unit(8, "feet"),
  31768. weight: math.unit(900, "lb"),
  31769. name: "Front",
  31770. image: {
  31771. source: "./media/characters/owen/front.svg",
  31772. extra: 1761/1657,
  31773. bottom: 74/1835
  31774. }
  31775. },
  31776. side: {
  31777. height: math.unit(8, "feet"),
  31778. weight: math.unit(900, "lb"),
  31779. name: "Side",
  31780. image: {
  31781. source: "./media/characters/owen/side.svg",
  31782. extra: 1797/1734,
  31783. bottom: 30/1827
  31784. }
  31785. },
  31786. back: {
  31787. height: math.unit(8, "feet"),
  31788. weight: math.unit(900, "lb"),
  31789. name: "Back",
  31790. image: {
  31791. source: "./media/characters/owen/back.svg",
  31792. extra: 1796/1706,
  31793. bottom: 59/1855
  31794. }
  31795. },
  31796. maw: {
  31797. height: math.unit(1.76, "feet"),
  31798. name: "Maw",
  31799. image: {
  31800. source: "./media/characters/owen/maw.svg"
  31801. }
  31802. },
  31803. },
  31804. [
  31805. {
  31806. name: "Normal",
  31807. height: math.unit(8, "feet"),
  31808. default: true
  31809. },
  31810. ]
  31811. ))
  31812. characterMakers.push(() => makeCharacter(
  31813. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31814. {
  31815. front: {
  31816. height: math.unit(4, "feet"),
  31817. weight: math.unit(400, "lb"),
  31818. name: "Front",
  31819. image: {
  31820. source: "./media/characters/ryth/front.svg",
  31821. extra: 1920/1748,
  31822. bottom: 42/1962
  31823. }
  31824. },
  31825. back: {
  31826. height: math.unit(4, "feet"),
  31827. weight: math.unit(400, "lb"),
  31828. name: "Back",
  31829. image: {
  31830. source: "./media/characters/ryth/back.svg",
  31831. extra: 1897/1690,
  31832. bottom: 89/1986
  31833. }
  31834. },
  31835. mouth: {
  31836. height: math.unit(1.39, "feet"),
  31837. name: "Mouth",
  31838. image: {
  31839. source: "./media/characters/ryth/mouth.svg"
  31840. }
  31841. },
  31842. tailmaw: {
  31843. height: math.unit(1.23, "feet"),
  31844. name: "Tailmaw",
  31845. image: {
  31846. source: "./media/characters/ryth/tailmaw.svg"
  31847. }
  31848. },
  31849. goia: {
  31850. height: math.unit(12, "feet"),
  31851. weight: math.unit(10800, "lb"),
  31852. name: "Goia",
  31853. image: {
  31854. source: "./media/characters/ryth/goia.svg",
  31855. extra: 3450/3198,
  31856. bottom: 61/3511
  31857. }
  31858. },
  31859. },
  31860. [
  31861. {
  31862. name: "Normal",
  31863. height: math.unit(4, "feet"),
  31864. default: true
  31865. },
  31866. ]
  31867. ))
  31868. characterMakers.push(() => makeCharacter(
  31869. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31870. {
  31871. front: {
  31872. height: math.unit(7, "feet"),
  31873. weight: math.unit(180, "lb"),
  31874. name: "Front",
  31875. image: {
  31876. source: "./media/characters/necrolance/front.svg",
  31877. extra: 1062/947,
  31878. bottom: 41/1103
  31879. }
  31880. },
  31881. back: {
  31882. height: math.unit(7, "feet"),
  31883. weight: math.unit(180, "lb"),
  31884. name: "Back",
  31885. image: {
  31886. source: "./media/characters/necrolance/back.svg",
  31887. extra: 1045/984,
  31888. bottom: 14/1059
  31889. }
  31890. },
  31891. wing: {
  31892. height: math.unit(2.67, "feet"),
  31893. name: "Wing",
  31894. image: {
  31895. source: "./media/characters/necrolance/wing.svg"
  31896. }
  31897. },
  31898. },
  31899. [
  31900. {
  31901. name: "Normal",
  31902. height: math.unit(7, "feet"),
  31903. default: true
  31904. },
  31905. ]
  31906. ))
  31907. characterMakers.push(() => makeCharacter(
  31908. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31909. {
  31910. front: {
  31911. height: math.unit(76, "meters"),
  31912. weight: math.unit(30000, "tons"),
  31913. name: "Front",
  31914. image: {
  31915. source: "./media/characters/tyler/front.svg",
  31916. extra: 1640/1640,
  31917. bottom: 114/1754
  31918. }
  31919. },
  31920. },
  31921. [
  31922. {
  31923. name: "Macro",
  31924. height: math.unit(76, "meters"),
  31925. default: true
  31926. },
  31927. ]
  31928. ))
  31929. characterMakers.push(() => makeCharacter(
  31930. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31931. {
  31932. front: {
  31933. height: math.unit(4 + 11/12, "feet"),
  31934. weight: math.unit(132, "lb"),
  31935. name: "Front",
  31936. image: {
  31937. source: "./media/characters/icey/front.svg",
  31938. extra: 2750/2550,
  31939. bottom: 33/2783
  31940. }
  31941. },
  31942. back: {
  31943. height: math.unit(4 + 11/12, "feet"),
  31944. weight: math.unit(132, "lb"),
  31945. name: "Back",
  31946. image: {
  31947. source: "./media/characters/icey/back.svg",
  31948. extra: 2624/2481,
  31949. bottom: 35/2659
  31950. }
  31951. },
  31952. },
  31953. [
  31954. {
  31955. name: "Normal",
  31956. height: math.unit(4 + 11/12, "feet"),
  31957. default: true
  31958. },
  31959. ]
  31960. ))
  31961. characterMakers.push(() => makeCharacter(
  31962. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31963. {
  31964. front: {
  31965. height: math.unit(100, "feet"),
  31966. weight: math.unit(0, "lb"),
  31967. name: "Front",
  31968. image: {
  31969. source: "./media/characters/smile/front.svg",
  31970. extra: 2983/2912,
  31971. bottom: 162/3145
  31972. }
  31973. },
  31974. back: {
  31975. height: math.unit(100, "feet"),
  31976. weight: math.unit(0, "lb"),
  31977. name: "Back",
  31978. image: {
  31979. source: "./media/characters/smile/back.svg",
  31980. extra: 3143/3031,
  31981. bottom: 91/3234
  31982. }
  31983. },
  31984. head: {
  31985. height: math.unit(26.3, "feet"),
  31986. weight: math.unit(0, "lb"),
  31987. name: "Head",
  31988. image: {
  31989. source: "./media/characters/smile/head.svg"
  31990. }
  31991. },
  31992. collar: {
  31993. height: math.unit(5.3, "feet"),
  31994. weight: math.unit(0, "lb"),
  31995. name: "Collar",
  31996. image: {
  31997. source: "./media/characters/smile/collar.svg"
  31998. }
  31999. },
  32000. },
  32001. [
  32002. {
  32003. name: "Macro",
  32004. height: math.unit(100, "feet"),
  32005. default: true
  32006. },
  32007. ]
  32008. ))
  32009. characterMakers.push(() => makeCharacter(
  32010. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32011. {
  32012. dragon: {
  32013. height: math.unit(26, "feet"),
  32014. weight: math.unit(36, "tons"),
  32015. name: "Dragon",
  32016. image: {
  32017. source: "./media/characters/arimphae/dragon.svg",
  32018. extra: 1574/983,
  32019. bottom: 357/1931
  32020. }
  32021. },
  32022. drake: {
  32023. height: math.unit(9, "feet"),
  32024. weight: math.unit(1.5, "tons"),
  32025. name: "Drake",
  32026. image: {
  32027. source: "./media/characters/arimphae/drake.svg",
  32028. extra: 1120/925,
  32029. bottom: 435/1555
  32030. }
  32031. },
  32032. },
  32033. [
  32034. {
  32035. name: "Small",
  32036. height: math.unit(26*5/9, "feet")
  32037. },
  32038. {
  32039. name: "Normal",
  32040. height: math.unit(26, "feet"),
  32041. default: true
  32042. },
  32043. ]
  32044. ))
  32045. characterMakers.push(() => makeCharacter(
  32046. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32047. {
  32048. front: {
  32049. height: math.unit(8 + 9/12, "feet"),
  32050. name: "Front",
  32051. image: {
  32052. source: "./media/characters/xander/front.svg",
  32053. extra: 848/673,
  32054. bottom: 62/910
  32055. }
  32056. },
  32057. },
  32058. [
  32059. {
  32060. name: "Normal",
  32061. height: math.unit(8 + 9/12, "feet"),
  32062. default: true
  32063. },
  32064. {
  32065. name: "Gaze Grabber",
  32066. height: math.unit(13 + 8/12, "feet")
  32067. },
  32068. {
  32069. name: "Jaw Dropper",
  32070. height: math.unit(27, "feet")
  32071. },
  32072. {
  32073. name: "Show Stopper",
  32074. height: math.unit(136, "feet")
  32075. },
  32076. {
  32077. name: "Superstar",
  32078. height: math.unit(1.9e6, "miles")
  32079. },
  32080. ]
  32081. ))
  32082. characterMakers.push(() => makeCharacter(
  32083. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32084. {
  32085. side: {
  32086. height: math.unit(2100, "feet"),
  32087. name: "Side",
  32088. image: {
  32089. source: "./media/characters/osiris/side.svg",
  32090. extra: 1105/939,
  32091. bottom: 167/1272
  32092. }
  32093. },
  32094. },
  32095. [
  32096. {
  32097. name: "Macro",
  32098. height: math.unit(2100, "feet"),
  32099. default: true
  32100. },
  32101. ]
  32102. ))
  32103. characterMakers.push(() => makeCharacter(
  32104. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32105. {
  32106. front: {
  32107. height: math.unit(6 + 8/12, "feet"),
  32108. weight: math.unit(225, "lb"),
  32109. name: "Front",
  32110. image: {
  32111. source: "./media/characters/rhys-londe/front.svg",
  32112. extra: 2258/2141,
  32113. bottom: 188/2446
  32114. }
  32115. },
  32116. back: {
  32117. height: math.unit(6 + 8/12, "feet"),
  32118. weight: math.unit(225, "lb"),
  32119. name: "Back",
  32120. image: {
  32121. source: "./media/characters/rhys-londe/back.svg",
  32122. extra: 2237/2137,
  32123. bottom: 63/2300
  32124. }
  32125. },
  32126. frontNsfw: {
  32127. height: math.unit(6 + 8/12, "feet"),
  32128. weight: math.unit(225, "lb"),
  32129. name: "Front (NSFW)",
  32130. image: {
  32131. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32132. extra: 2258/2141,
  32133. bottom: 188/2446
  32134. }
  32135. },
  32136. backNsfw: {
  32137. height: math.unit(6 + 8/12, "feet"),
  32138. weight: math.unit(225, "lb"),
  32139. name: "Back (NSFW)",
  32140. image: {
  32141. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32142. extra: 2237/2137,
  32143. bottom: 63/2300
  32144. }
  32145. },
  32146. dick: {
  32147. height: math.unit(30, "inches"),
  32148. name: "Dick",
  32149. image: {
  32150. source: "./media/characters/rhys-londe/dick.svg"
  32151. }
  32152. },
  32153. maw: {
  32154. height: math.unit(1.6, "feet"),
  32155. name: "Maw",
  32156. image: {
  32157. source: "./media/characters/rhys-londe/maw.svg"
  32158. }
  32159. },
  32160. },
  32161. [
  32162. {
  32163. name: "Normal",
  32164. height: math.unit(6 + 8/12, "feet"),
  32165. default: true
  32166. },
  32167. ]
  32168. ))
  32169. characterMakers.push(() => makeCharacter(
  32170. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32171. {
  32172. front: {
  32173. height: math.unit(3 + 10/12, "feet"),
  32174. weight: math.unit(90, "lb"),
  32175. name: "Front",
  32176. image: {
  32177. source: "./media/characters/taivas-ensim/front.svg",
  32178. extra: 1327/1216,
  32179. bottom: 96/1423
  32180. }
  32181. },
  32182. back: {
  32183. height: math.unit(3 + 10/12, "feet"),
  32184. weight: math.unit(90, "lb"),
  32185. name: "Back",
  32186. image: {
  32187. source: "./media/characters/taivas-ensim/back.svg",
  32188. extra: 1355/1247,
  32189. bottom: 11/1366
  32190. }
  32191. },
  32192. frontNsfw: {
  32193. height: math.unit(3 + 10/12, "feet"),
  32194. weight: math.unit(90, "lb"),
  32195. name: "Front (NSFW)",
  32196. image: {
  32197. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32198. extra: 1327/1216,
  32199. bottom: 96/1423
  32200. }
  32201. },
  32202. backNsfw: {
  32203. height: math.unit(3 + 10/12, "feet"),
  32204. weight: math.unit(90, "lb"),
  32205. name: "Back (NSFW)",
  32206. image: {
  32207. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32208. extra: 1355/1247,
  32209. bottom: 11/1366
  32210. }
  32211. },
  32212. },
  32213. [
  32214. {
  32215. name: "Normal",
  32216. height: math.unit(3 + 10/12, "feet"),
  32217. default: true
  32218. },
  32219. ]
  32220. ))
  32221. characterMakers.push(() => makeCharacter(
  32222. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32223. {
  32224. front: {
  32225. height: math.unit(9 + 6/12, "feet"),
  32226. weight: math.unit(940, "lb"),
  32227. name: "Front",
  32228. image: {
  32229. source: "./media/characters/byliss/front.svg",
  32230. extra: 1327/1290,
  32231. bottom: 82/1409
  32232. }
  32233. },
  32234. back: {
  32235. height: math.unit(9 + 6/12, "feet"),
  32236. weight: math.unit(940, "lb"),
  32237. name: "Back",
  32238. image: {
  32239. source: "./media/characters/byliss/back.svg",
  32240. extra: 1376/1349,
  32241. bottom: 9/1385
  32242. }
  32243. },
  32244. frontNsfw: {
  32245. height: math.unit(9 + 6/12, "feet"),
  32246. weight: math.unit(940, "lb"),
  32247. name: "Front (NSFW)",
  32248. image: {
  32249. source: "./media/characters/byliss/front-nsfw.svg",
  32250. extra: 1327/1290,
  32251. bottom: 82/1409
  32252. }
  32253. },
  32254. backNsfw: {
  32255. height: math.unit(9 + 6/12, "feet"),
  32256. weight: math.unit(940, "lb"),
  32257. name: "Back (NSFW)",
  32258. image: {
  32259. source: "./media/characters/byliss/back-nsfw.svg",
  32260. extra: 1376/1349,
  32261. bottom: 9/1385
  32262. }
  32263. },
  32264. },
  32265. [
  32266. {
  32267. name: "Normal",
  32268. height: math.unit(9 + 6/12, "feet"),
  32269. default: true
  32270. },
  32271. ]
  32272. ))
  32273. characterMakers.push(() => makeCharacter(
  32274. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32275. {
  32276. front: {
  32277. height: math.unit(5 + 2/12, "feet"),
  32278. weight: math.unit(200, "lb"),
  32279. name: "Front",
  32280. image: {
  32281. source: "./media/characters/noraly/front.svg",
  32282. extra: 4985/4773,
  32283. bottom: 150/5135
  32284. }
  32285. },
  32286. full: {
  32287. height: math.unit(5 + 2/12, "feet"),
  32288. weight: math.unit(164, "lb"),
  32289. name: "Full",
  32290. image: {
  32291. source: "./media/characters/noraly/full.svg",
  32292. extra: 1114/1059,
  32293. bottom: 35/1149
  32294. }
  32295. },
  32296. fuller: {
  32297. height: math.unit(5 + 2/12, "feet"),
  32298. weight: math.unit(230, "lb"),
  32299. name: "Fuller",
  32300. image: {
  32301. source: "./media/characters/noraly/fuller.svg",
  32302. extra: 1114/1059,
  32303. bottom: 35/1149
  32304. }
  32305. },
  32306. fullest: {
  32307. height: math.unit(5 + 2/12, "feet"),
  32308. weight: math.unit(300, "lb"),
  32309. name: "Fullest",
  32310. image: {
  32311. source: "./media/characters/noraly/fullest.svg",
  32312. extra: 1114/1059,
  32313. bottom: 35/1149
  32314. }
  32315. },
  32316. },
  32317. [
  32318. {
  32319. name: "Normal",
  32320. height: math.unit(5 + 2/12, "feet"),
  32321. default: true
  32322. },
  32323. ]
  32324. ))
  32325. characterMakers.push(() => makeCharacter(
  32326. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32327. {
  32328. front: {
  32329. height: math.unit(5 + 2/12, "feet"),
  32330. weight: math.unit(210, "lb"),
  32331. name: "Front",
  32332. image: {
  32333. source: "./media/characters/pera/front.svg",
  32334. extra: 1560/1531,
  32335. bottom: 165/1725
  32336. }
  32337. },
  32338. back: {
  32339. height: math.unit(5 + 2/12, "feet"),
  32340. weight: math.unit(210, "lb"),
  32341. name: "Back",
  32342. image: {
  32343. source: "./media/characters/pera/back.svg",
  32344. extra: 1523/1493,
  32345. bottom: 152/1675
  32346. }
  32347. },
  32348. dick: {
  32349. height: math.unit(2.4, "feet"),
  32350. name: "Dick",
  32351. image: {
  32352. source: "./media/characters/pera/dick.svg"
  32353. }
  32354. },
  32355. },
  32356. [
  32357. {
  32358. name: "Normal",
  32359. height: math.unit(5 + 2/12, "feet"),
  32360. default: true
  32361. },
  32362. ]
  32363. ))
  32364. characterMakers.push(() => makeCharacter(
  32365. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32366. {
  32367. front: {
  32368. height: math.unit(12, "feet"),
  32369. weight: math.unit(3200, "lb"),
  32370. name: "Front",
  32371. image: {
  32372. source: "./media/characters/julian/front.svg",
  32373. extra: 2962/2701,
  32374. bottom: 184/3146
  32375. }
  32376. },
  32377. maw: {
  32378. height: math.unit(5.35, "feet"),
  32379. name: "Maw",
  32380. image: {
  32381. source: "./media/characters/julian/maw.svg"
  32382. }
  32383. },
  32384. paw: {
  32385. height: math.unit(3.07, "feet"),
  32386. name: "Paw",
  32387. image: {
  32388. source: "./media/characters/julian/paw.svg"
  32389. }
  32390. },
  32391. },
  32392. [
  32393. {
  32394. name: "Default",
  32395. height: math.unit(12, "feet"),
  32396. default: true
  32397. },
  32398. {
  32399. name: "Big",
  32400. height: math.unit(50, "feet")
  32401. },
  32402. {
  32403. name: "Really Big",
  32404. height: math.unit(1, "mile")
  32405. },
  32406. {
  32407. name: "Extremely Big",
  32408. height: math.unit(100, "miles")
  32409. },
  32410. {
  32411. name: "Planet Hugger",
  32412. height: math.unit(200, "megameters")
  32413. },
  32414. {
  32415. name: "Unreasonably Big",
  32416. height: math.unit(1e300, "meters")
  32417. },
  32418. ]
  32419. ))
  32420. characterMakers.push(() => makeCharacter(
  32421. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32422. {
  32423. solgooleo: {
  32424. height: math.unit(4, "meters"),
  32425. weight: math.unit(6000*1.5, "kg"),
  32426. volume: math.unit(6000, "liters"),
  32427. name: "Solgooleo",
  32428. image: {
  32429. source: "./media/characters/pi/solgooleo.svg",
  32430. extra: 388/331,
  32431. bottom: 29/417
  32432. }
  32433. },
  32434. },
  32435. [
  32436. {
  32437. name: "Normal",
  32438. height: math.unit(4, "meters"),
  32439. default: true
  32440. },
  32441. ]
  32442. ))
  32443. characterMakers.push(() => makeCharacter(
  32444. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32445. {
  32446. front: {
  32447. height: math.unit(8 + 2/12, "feet"),
  32448. weight: math.unit(4, "tons"),
  32449. name: "Front",
  32450. image: {
  32451. source: "./media/characters/shaun/front.svg",
  32452. extra: 1550/1505,
  32453. bottom: 353/1903
  32454. }
  32455. },
  32456. },
  32457. [
  32458. {
  32459. name: "Lorg",
  32460. height: math.unit(8 + 2/12, "feet"),
  32461. default: true
  32462. },
  32463. ]
  32464. ))
  32465. characterMakers.push(() => makeCharacter(
  32466. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32467. {
  32468. front: {
  32469. height: math.unit(7, "feet"),
  32470. name: "Front",
  32471. image: {
  32472. source: "./media/characters/sini/front.svg",
  32473. extra: 726/678,
  32474. bottom: 35/761
  32475. }
  32476. },
  32477. back: {
  32478. height: math.unit(7, "feet"),
  32479. name: "Back",
  32480. image: {
  32481. source: "./media/characters/sini/back.svg",
  32482. extra: 743/701,
  32483. bottom: 12/755
  32484. }
  32485. },
  32486. mawAnthro: {
  32487. height: math.unit(2.14, "feet"),
  32488. name: "Maw (Anthro)",
  32489. image: {
  32490. source: "./media/characters/sini/maw-anthro.svg"
  32491. }
  32492. },
  32493. dick: {
  32494. height: math.unit(1.45, "feet"),
  32495. name: "Dick (Anthro)",
  32496. image: {
  32497. source: "./media/characters/sini/dick-anthro.svg"
  32498. }
  32499. },
  32500. feral: {
  32501. height: math.unit(16, "feet"),
  32502. name: "Feral",
  32503. image: {
  32504. source: "./media/characters/sini/feral.svg",
  32505. extra: 814/605,
  32506. bottom: 11/825
  32507. }
  32508. },
  32509. mawFeral: {
  32510. height: math.unit(5.66, "feet"),
  32511. name: "Maw-feral",
  32512. image: {
  32513. source: "./media/characters/sini/maw-feral.svg"
  32514. }
  32515. },
  32516. footFeral: {
  32517. height: math.unit(5.17, "feet"),
  32518. name: "Foot-feral",
  32519. image: {
  32520. source: "./media/characters/sini/foot-feral.svg"
  32521. }
  32522. },
  32523. },
  32524. [
  32525. {
  32526. name: "Normal",
  32527. height: math.unit(7, "feet"),
  32528. default: true
  32529. },
  32530. ]
  32531. ))
  32532. characterMakers.push(() => makeCharacter(
  32533. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32534. {
  32535. side: {
  32536. height: math.unit(13, "meters"),
  32537. weight: math.unit(9072, "kg"),
  32538. name: "Side",
  32539. image: {
  32540. source: "./media/characters/raylldo/side.svg",
  32541. extra: 403/344,
  32542. bottom: 42/445
  32543. }
  32544. },
  32545. leaping: {
  32546. height: math.unit(12.3, "meters"),
  32547. weight: math.unit(9072, "kg"),
  32548. name: "Leaping",
  32549. image: {
  32550. source: "./media/characters/raylldo/leaping.svg",
  32551. extra: 470/249,
  32552. bottom: 13/483
  32553. }
  32554. },
  32555. flying: {
  32556. height: math.unit(18, "meters"),
  32557. weight: math.unit(9072, "kg"),
  32558. name: "Flying",
  32559. image: {
  32560. source: "./media/characters/raylldo/flying.svg"
  32561. }
  32562. },
  32563. head: {
  32564. height: math.unit(5.85, "meters"),
  32565. name: "Head",
  32566. image: {
  32567. source: "./media/characters/raylldo/head.svg"
  32568. }
  32569. },
  32570. maw: {
  32571. height: math.unit(5.32, "meters"),
  32572. name: "Maw",
  32573. image: {
  32574. source: "./media/characters/raylldo/maw.svg"
  32575. }
  32576. },
  32577. eye: {
  32578. height: math.unit(0.54, "meters"),
  32579. name: "Eye",
  32580. image: {
  32581. source: "./media/characters/raylldo/eye.svg"
  32582. }
  32583. },
  32584. },
  32585. [
  32586. {
  32587. name: "Normal",
  32588. height: math.unit(13, "meters"),
  32589. default: true
  32590. },
  32591. ]
  32592. ))
  32593. characterMakers.push(() => makeCharacter(
  32594. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32595. {
  32596. anthroFront: {
  32597. height: math.unit(9, "feet"),
  32598. weight: math.unit(600, "lb"),
  32599. name: "Anthro (Front)",
  32600. image: {
  32601. source: "./media/characters/glint/anthro-front.svg",
  32602. extra: 1097/1018,
  32603. bottom: 28/1125
  32604. }
  32605. },
  32606. anthroBack: {
  32607. height: math.unit(9, "feet"),
  32608. weight: math.unit(600, "lb"),
  32609. name: "Anthro (Back)",
  32610. image: {
  32611. source: "./media/characters/glint/anthro-back.svg",
  32612. extra: 1154/997,
  32613. bottom: 36/1190
  32614. }
  32615. },
  32616. feral: {
  32617. height: math.unit(11, "feet"),
  32618. weight: math.unit(50000, "lb"),
  32619. name: "Feral",
  32620. image: {
  32621. source: "./media/characters/glint/feral.svg",
  32622. extra: 3035/1585,
  32623. bottom: 1169/4204
  32624. }
  32625. },
  32626. dickAnthro: {
  32627. height: math.unit(0.7, "meters"),
  32628. name: "Dick (Anthro)",
  32629. image: {
  32630. source: "./media/characters/glint/dick-anthro.svg"
  32631. }
  32632. },
  32633. dickFeral: {
  32634. height: math.unit(2.65, "meters"),
  32635. name: "Dick (Feral)",
  32636. image: {
  32637. source: "./media/characters/glint/dick-feral.svg"
  32638. }
  32639. },
  32640. slitHidden: {
  32641. height: math.unit(5.85, "meters"),
  32642. name: "Slit (Hidden)",
  32643. image: {
  32644. source: "./media/characters/glint/slit-hidden.svg"
  32645. }
  32646. },
  32647. slitErect: {
  32648. height: math.unit(5.85, "meters"),
  32649. name: "Slit (Erect)",
  32650. image: {
  32651. source: "./media/characters/glint/slit-erect.svg"
  32652. }
  32653. },
  32654. mawAnthro: {
  32655. height: math.unit(0.63, "meters"),
  32656. name: "Maw (Anthro)",
  32657. image: {
  32658. source: "./media/characters/glint/maw.svg"
  32659. }
  32660. },
  32661. mawFeral: {
  32662. height: math.unit(2.89, "meters"),
  32663. name: "Maw (Feral)",
  32664. image: {
  32665. source: "./media/characters/glint/maw.svg"
  32666. }
  32667. },
  32668. },
  32669. [
  32670. {
  32671. name: "Normal",
  32672. height: math.unit(9, "feet"),
  32673. default: true
  32674. },
  32675. ]
  32676. ))
  32677. characterMakers.push(() => makeCharacter(
  32678. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32679. {
  32680. side: {
  32681. height: math.unit(15, "feet"),
  32682. weight: math.unit(5000, "kg"),
  32683. name: "Side",
  32684. image: {
  32685. source: "./media/characters/kairne/side.svg",
  32686. extra: 979/811,
  32687. bottom: 13/992
  32688. }
  32689. },
  32690. front: {
  32691. height: math.unit(15, "feet"),
  32692. weight: math.unit(5000, "kg"),
  32693. name: "Front",
  32694. image: {
  32695. source: "./media/characters/kairne/front.svg",
  32696. extra: 908/814,
  32697. bottom: 26/934
  32698. }
  32699. },
  32700. sideNsfw: {
  32701. height: math.unit(15, "feet"),
  32702. weight: math.unit(5000, "kg"),
  32703. name: "Side (NSFW)",
  32704. image: {
  32705. source: "./media/characters/kairne/side-nsfw.svg",
  32706. extra: 979/811,
  32707. bottom: 13/992
  32708. }
  32709. },
  32710. frontNsfw: {
  32711. height: math.unit(15, "feet"),
  32712. weight: math.unit(5000, "kg"),
  32713. name: "Front (NSFW)",
  32714. image: {
  32715. source: "./media/characters/kairne/front-nsfw.svg",
  32716. extra: 908/814,
  32717. bottom: 26/934
  32718. }
  32719. },
  32720. dickCaged: {
  32721. height: math.unit(0.65, "meters"),
  32722. name: "Dick-caged",
  32723. image: {
  32724. source: "./media/characters/kairne/dick-caged.svg"
  32725. }
  32726. },
  32727. dick: {
  32728. height: math.unit(0.79, "meters"),
  32729. name: "Dick",
  32730. image: {
  32731. source: "./media/characters/kairne/dick.svg"
  32732. }
  32733. },
  32734. genitals: {
  32735. height: math.unit(1.29, "meters"),
  32736. name: "Genitals",
  32737. image: {
  32738. source: "./media/characters/kairne/genitals.svg"
  32739. }
  32740. },
  32741. maw: {
  32742. height: math.unit(1.73, "meters"),
  32743. name: "Maw",
  32744. image: {
  32745. source: "./media/characters/kairne/maw.svg"
  32746. }
  32747. },
  32748. },
  32749. [
  32750. {
  32751. name: "Normal",
  32752. height: math.unit(15, "feet"),
  32753. default: true
  32754. },
  32755. ]
  32756. ))
  32757. characterMakers.push(() => makeCharacter(
  32758. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32759. {
  32760. front: {
  32761. height: math.unit(5 + 8/12, "feet"),
  32762. weight: math.unit(139, "lb"),
  32763. name: "Front",
  32764. image: {
  32765. source: "./media/characters/biscuit-jackal/front.svg",
  32766. extra: 2106/1961,
  32767. bottom: 58/2164
  32768. }
  32769. },
  32770. back: {
  32771. height: math.unit(5 + 8/12, "feet"),
  32772. weight: math.unit(139, "lb"),
  32773. name: "Back",
  32774. image: {
  32775. source: "./media/characters/biscuit-jackal/back.svg",
  32776. extra: 2132/1976,
  32777. bottom: 57/2189
  32778. }
  32779. },
  32780. werejackal: {
  32781. height: math.unit(6 + 3/12, "feet"),
  32782. weight: math.unit(188, "lb"),
  32783. name: "Werejackal",
  32784. image: {
  32785. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32786. extra: 2373/2178,
  32787. bottom: 53/2426
  32788. }
  32789. },
  32790. },
  32791. [
  32792. {
  32793. name: "Normal",
  32794. height: math.unit(5 + 8/12, "feet"),
  32795. default: true
  32796. },
  32797. ]
  32798. ))
  32799. characterMakers.push(() => makeCharacter(
  32800. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32801. {
  32802. front: {
  32803. height: math.unit(140, "cm"),
  32804. weight: math.unit(45, "kg"),
  32805. name: "Front",
  32806. image: {
  32807. source: "./media/characters/tayra-white/front.svg",
  32808. extra: 2229/2192,
  32809. bottom: 75/2304
  32810. }
  32811. },
  32812. },
  32813. [
  32814. {
  32815. name: "Normal",
  32816. height: math.unit(140, "cm"),
  32817. default: true
  32818. },
  32819. ]
  32820. ))
  32821. characterMakers.push(() => makeCharacter(
  32822. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32823. {
  32824. front: {
  32825. height: math.unit(4 + 5/12, "feet"),
  32826. name: "Front",
  32827. image: {
  32828. source: "./media/characters/scoop/front.svg",
  32829. extra: 1257/1136,
  32830. bottom: 69/1326
  32831. }
  32832. },
  32833. back: {
  32834. height: math.unit(4 + 5/12, "feet"),
  32835. name: "Back",
  32836. image: {
  32837. source: "./media/characters/scoop/back.svg",
  32838. extra: 1321/1152,
  32839. bottom: 32/1353
  32840. }
  32841. },
  32842. maw: {
  32843. height: math.unit(0.68, "feet"),
  32844. name: "Maw",
  32845. image: {
  32846. source: "./media/characters/scoop/maw.svg"
  32847. }
  32848. },
  32849. },
  32850. [
  32851. {
  32852. name: "Really Small",
  32853. height: math.unit(1, "mm")
  32854. },
  32855. {
  32856. name: "Micro",
  32857. height: math.unit(1, "inch")
  32858. },
  32859. {
  32860. name: "Normal",
  32861. height: math.unit(4 + 5/12, "feet"),
  32862. default: true
  32863. },
  32864. {
  32865. name: "Macro",
  32866. height: math.unit(200, "feet")
  32867. },
  32868. {
  32869. name: "Megamacro",
  32870. height: math.unit(3240, "feet")
  32871. },
  32872. {
  32873. name: "Teramacro",
  32874. height: math.unit(2500, "miles")
  32875. },
  32876. ]
  32877. ))
  32878. characterMakers.push(() => makeCharacter(
  32879. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32880. {
  32881. front: {
  32882. height: math.unit(15 + 7/12, "feet"),
  32883. name: "Front",
  32884. image: {
  32885. source: "./media/characters/saphinara/front.svg",
  32886. extra: 604/546,
  32887. bottom: 19/623
  32888. }
  32889. },
  32890. side: {
  32891. height: math.unit(15 + 7/12, "feet"),
  32892. name: "Side",
  32893. image: {
  32894. source: "./media/characters/saphinara/side.svg",
  32895. extra: 605/547,
  32896. bottom: 6/611
  32897. }
  32898. },
  32899. back: {
  32900. height: math.unit(15 + 7/12, "feet"),
  32901. name: "Back",
  32902. image: {
  32903. source: "./media/characters/saphinara/back.svg",
  32904. extra: 591/531,
  32905. bottom: 13/604
  32906. }
  32907. },
  32908. frontTail: {
  32909. height: math.unit(15 + 7/12, "feet"),
  32910. name: "Front (Full Tail)",
  32911. image: {
  32912. source: "./media/characters/saphinara/front-tail.svg",
  32913. extra: 748/547,
  32914. bottom: 66/814
  32915. }
  32916. },
  32917. },
  32918. [
  32919. {
  32920. name: "Normal",
  32921. height: math.unit(15 + 7/12, "feet"),
  32922. default: true
  32923. },
  32924. {
  32925. name: "Angry",
  32926. height: math.unit(30 + 6/12, "feet")
  32927. },
  32928. {
  32929. name: "Enraged",
  32930. height: math.unit(102 + 1/12, "feet")
  32931. },
  32932. ]
  32933. ))
  32934. characterMakers.push(() => makeCharacter(
  32935. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32936. {
  32937. front: {
  32938. height: math.unit(6 + 8/12, "feet"),
  32939. weight: math.unit(300, "lb"),
  32940. name: "Front",
  32941. image: {
  32942. source: "./media/characters/jrain/front.svg",
  32943. extra: 3039/2865,
  32944. bottom: 399/3438
  32945. }
  32946. },
  32947. back: {
  32948. height: math.unit(6 + 8/12, "feet"),
  32949. weight: math.unit(300, "lb"),
  32950. name: "Back",
  32951. image: {
  32952. source: "./media/characters/jrain/back.svg",
  32953. extra: 3089/2938,
  32954. bottom: 172/3261
  32955. }
  32956. },
  32957. head: {
  32958. height: math.unit(2.14, "feet"),
  32959. name: "Head",
  32960. image: {
  32961. source: "./media/characters/jrain/head.svg"
  32962. }
  32963. },
  32964. maw: {
  32965. height: math.unit(1.77, "feet"),
  32966. name: "Maw",
  32967. image: {
  32968. source: "./media/characters/jrain/maw.svg"
  32969. }
  32970. },
  32971. leftHand: {
  32972. height: math.unit(1.1, "feet"),
  32973. name: "Left Hand",
  32974. image: {
  32975. source: "./media/characters/jrain/left-hand.svg"
  32976. }
  32977. },
  32978. rightHand: {
  32979. height: math.unit(1.1, "feet"),
  32980. name: "Right Hand",
  32981. image: {
  32982. source: "./media/characters/jrain/right-hand.svg"
  32983. }
  32984. },
  32985. eye: {
  32986. height: math.unit(0.35, "feet"),
  32987. name: "Eye",
  32988. image: {
  32989. source: "./media/characters/jrain/eye.svg"
  32990. }
  32991. },
  32992. },
  32993. [
  32994. {
  32995. name: "Normal",
  32996. height: math.unit(6 + 8/12, "feet"),
  32997. default: true
  32998. },
  32999. {
  33000. name: "Casually Large",
  33001. height: math.unit(25, "feet")
  33002. },
  33003. {
  33004. name: "Giant",
  33005. height: math.unit(100, "feet")
  33006. },
  33007. {
  33008. name: "Kaiju",
  33009. height: math.unit(300, "feet")
  33010. },
  33011. ]
  33012. ))
  33013. characterMakers.push(() => makeCharacter(
  33014. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33015. {
  33016. dragon: {
  33017. height: math.unit(5, "meters"),
  33018. name: "Dragon",
  33019. image: {
  33020. source: "./media/characters/sabrina/dragon.svg",
  33021. extra: 3670 / 2365,
  33022. bottom: 333 / 4003
  33023. }
  33024. },
  33025. gryphon: {
  33026. height: math.unit(3, "meters"),
  33027. name: "Gryphon",
  33028. image: {
  33029. source: "./media/characters/sabrina/gryphon.svg",
  33030. extra: 1576 / 945,
  33031. bottom: 71 / 1647
  33032. }
  33033. },
  33034. snake: {
  33035. height: math.unit(12, "meters"),
  33036. name: "Snake",
  33037. image: {
  33038. source: "./media/characters/sabrina/snake.svg",
  33039. extra: 1758 / 1320,
  33040. bottom: 186 / 1944
  33041. }
  33042. },
  33043. collar: {
  33044. height: math.unit(1.86, "meters"),
  33045. name: "Collar",
  33046. image: {
  33047. source: "./media/characters/sabrina/collar.svg"
  33048. }
  33049. },
  33050. eye: {
  33051. height: math.unit(0.53, "meters"),
  33052. name: "Eye",
  33053. image: {
  33054. source: "./media/characters/sabrina/eye.svg"
  33055. }
  33056. },
  33057. foot: {
  33058. height: math.unit(1.86, "meters"),
  33059. name: "Foot",
  33060. image: {
  33061. source: "./media/characters/sabrina/foot.svg"
  33062. }
  33063. },
  33064. hand: {
  33065. height: math.unit(1.32, "meters"),
  33066. name: "Hand",
  33067. image: {
  33068. source: "./media/characters/sabrina/hand.svg"
  33069. }
  33070. },
  33071. head: {
  33072. height: math.unit(2.44, "meters"),
  33073. name: "Head",
  33074. image: {
  33075. source: "./media/characters/sabrina/head.svg"
  33076. }
  33077. },
  33078. headAngry: {
  33079. height: math.unit(2.44, "meters"),
  33080. name: "Head (Angry))",
  33081. image: {
  33082. source: "./media/characters/sabrina/head-angry.svg"
  33083. }
  33084. },
  33085. maw: {
  33086. height: math.unit(1.65, "meters"),
  33087. name: "Maw",
  33088. image: {
  33089. source: "./media/characters/sabrina/maw.svg"
  33090. }
  33091. },
  33092. spikes: {
  33093. height: math.unit(1.69, "meters"),
  33094. name: "Spikes",
  33095. image: {
  33096. source: "./media/characters/sabrina/spikes.svg"
  33097. }
  33098. },
  33099. stomach: {
  33100. height: math.unit(1.15, "meters"),
  33101. name: "Stomach",
  33102. image: {
  33103. source: "./media/characters/sabrina/stomach.svg"
  33104. }
  33105. },
  33106. tongue: {
  33107. height: math.unit(1.27, "meters"),
  33108. name: "Tongue",
  33109. image: {
  33110. source: "./media/characters/sabrina/tongue.svg"
  33111. }
  33112. },
  33113. wingDorsal: {
  33114. height: math.unit(4.85, "meters"),
  33115. name: "Wing (Dorsal)",
  33116. image: {
  33117. source: "./media/characters/sabrina/wing-dorsal.svg"
  33118. }
  33119. },
  33120. wingVentral: {
  33121. height: math.unit(4.85, "meters"),
  33122. name: "Wing (Ventral)",
  33123. image: {
  33124. source: "./media/characters/sabrina/wing-ventral.svg"
  33125. }
  33126. },
  33127. },
  33128. [
  33129. {
  33130. name: "Normal",
  33131. height: math.unit(5, "meters"),
  33132. default: true
  33133. },
  33134. ]
  33135. ))
  33136. characterMakers.push(() => makeCharacter(
  33137. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33138. {
  33139. frontMaid: {
  33140. height: math.unit(5 + 5/12, "feet"),
  33141. weight: math.unit(130, "lb"),
  33142. name: "Front (Maid)",
  33143. image: {
  33144. source: "./media/characters/midnight-tales/front-maid.svg",
  33145. extra: 489/454,
  33146. bottom: 61/550
  33147. }
  33148. },
  33149. frontFormal: {
  33150. height: math.unit(5 + 5/12, "feet"),
  33151. weight: math.unit(130, "lb"),
  33152. name: "Front (Formal)",
  33153. image: {
  33154. source: "./media/characters/midnight-tales/front-formal.svg",
  33155. extra: 489/454,
  33156. bottom: 61/550
  33157. }
  33158. },
  33159. back: {
  33160. height: math.unit(5 + 5/12, "feet"),
  33161. weight: math.unit(130, "lb"),
  33162. name: "Back",
  33163. image: {
  33164. source: "./media/characters/midnight-tales/back.svg",
  33165. extra: 498/456,
  33166. bottom: 33/531
  33167. }
  33168. },
  33169. frontBeast: {
  33170. height: math.unit(40, "feet"),
  33171. weight: math.unit(64000, "lb"),
  33172. name: "Front (Beast)",
  33173. image: {
  33174. source: "./media/characters/midnight-tales/front-beast.svg",
  33175. extra: 927/860,
  33176. bottom: 53/980
  33177. }
  33178. },
  33179. backBeast: {
  33180. height: math.unit(40, "feet"),
  33181. weight: math.unit(64000, "lb"),
  33182. name: "Back (Beast)",
  33183. image: {
  33184. source: "./media/characters/midnight-tales/back-beast.svg",
  33185. extra: 929/855,
  33186. bottom: 16/945
  33187. }
  33188. },
  33189. footBeast: {
  33190. height: math.unit(6.7, "feet"),
  33191. name: "Foot (Beast)",
  33192. image: {
  33193. source: "./media/characters/midnight-tales/foot-beast.svg"
  33194. }
  33195. },
  33196. headBeast: {
  33197. height: math.unit(8, "feet"),
  33198. name: "Head (Beast)",
  33199. image: {
  33200. source: "./media/characters/midnight-tales/head-beast.svg"
  33201. }
  33202. },
  33203. },
  33204. [
  33205. {
  33206. name: "Normal",
  33207. height: math.unit(5 + 5 / 12, "feet"),
  33208. default: true
  33209. },
  33210. {
  33211. name: "Macro",
  33212. height: math.unit(25, "feet")
  33213. },
  33214. ]
  33215. ))
  33216. characterMakers.push(() => makeCharacter(
  33217. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33218. {
  33219. front: {
  33220. height: math.unit(5 + 10/12, "feet"),
  33221. name: "Front",
  33222. image: {
  33223. source: "./media/characters/argon/front.svg",
  33224. extra: 2009/1935,
  33225. bottom: 118/2127
  33226. }
  33227. },
  33228. back: {
  33229. height: math.unit(5 + 10/12, "feet"),
  33230. name: "Back",
  33231. image: {
  33232. source: "./media/characters/argon/back.svg",
  33233. extra: 2047/1992,
  33234. bottom: 20/2067
  33235. }
  33236. },
  33237. frontDressed: {
  33238. height: math.unit(5 + 10/12, "feet"),
  33239. name: "Front (Dressed)",
  33240. image: {
  33241. source: "./media/characters/argon/front-dressed.svg",
  33242. extra: 2009/1935,
  33243. bottom: 118/2127
  33244. }
  33245. },
  33246. },
  33247. [
  33248. {
  33249. name: "Normal",
  33250. height: math.unit(5 + 10/12, "feet"),
  33251. default: true
  33252. },
  33253. ]
  33254. ))
  33255. characterMakers.push(() => makeCharacter(
  33256. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33257. {
  33258. front: {
  33259. height: math.unit(8 + 6/12, "feet"),
  33260. weight: math.unit(1150, "lb"),
  33261. name: "Front",
  33262. image: {
  33263. source: "./media/characters/kichi/front.svg",
  33264. extra: 1267/1164,
  33265. bottom: 61/1328
  33266. }
  33267. },
  33268. back: {
  33269. height: math.unit(8 + 6/12, "feet"),
  33270. weight: math.unit(1150, "lb"),
  33271. name: "Back",
  33272. image: {
  33273. source: "./media/characters/kichi/back.svg",
  33274. extra: 1273/1166,
  33275. bottom: 33/1306
  33276. }
  33277. },
  33278. },
  33279. [
  33280. {
  33281. name: "Normal",
  33282. height: math.unit(8 + 6/12, "feet"),
  33283. default: true
  33284. },
  33285. ]
  33286. ))
  33287. characterMakers.push(() => makeCharacter(
  33288. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33289. {
  33290. front: {
  33291. height: math.unit(6, "feet"),
  33292. weight: math.unit(210, "lb"),
  33293. name: "Front",
  33294. image: {
  33295. source: "./media/characters/manetel-greyscale/front.svg",
  33296. extra: 350/312,
  33297. bottom: 8/358
  33298. }
  33299. },
  33300. },
  33301. [
  33302. {
  33303. name: "Micro",
  33304. height: math.unit(2, "inches")
  33305. },
  33306. {
  33307. name: "Normal",
  33308. height: math.unit(6, "feet"),
  33309. default: true
  33310. },
  33311. {
  33312. name: "Minimacro",
  33313. height: math.unit(17, "feet")
  33314. },
  33315. {
  33316. name: "Macro",
  33317. height: math.unit(117, "feet")
  33318. },
  33319. ]
  33320. ))
  33321. characterMakers.push(() => makeCharacter(
  33322. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33323. {
  33324. side: {
  33325. height: math.unit(5 + 1/12, "feet"),
  33326. weight: math.unit(418, "lb"),
  33327. name: "Side",
  33328. image: {
  33329. source: "./media/characters/softpurr/side.svg",
  33330. extra: 1993/1945,
  33331. bottom: 134/2127
  33332. }
  33333. },
  33334. front: {
  33335. height: math.unit(5 + 1/12, "feet"),
  33336. weight: math.unit(418, "lb"),
  33337. name: "Front",
  33338. image: {
  33339. source: "./media/characters/softpurr/front.svg",
  33340. extra: 1950/1856,
  33341. bottom: 174/2124
  33342. }
  33343. },
  33344. paw: {
  33345. height: math.unit(1, "feet"),
  33346. name: "Paw",
  33347. image: {
  33348. source: "./media/characters/softpurr/paw.svg"
  33349. }
  33350. },
  33351. },
  33352. [
  33353. {
  33354. name: "Normal",
  33355. height: math.unit(5 + 1/12, "feet"),
  33356. default: true
  33357. },
  33358. ]
  33359. ))
  33360. characterMakers.push(() => makeCharacter(
  33361. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33362. {
  33363. front: {
  33364. height: math.unit(260, "meters"),
  33365. name: "Front",
  33366. image: {
  33367. source: "./media/characters/anahita/front.svg",
  33368. extra: 665/635,
  33369. bottom: 89/754
  33370. }
  33371. },
  33372. },
  33373. [
  33374. {
  33375. name: "Macro",
  33376. height: math.unit(260, "meters"),
  33377. default: true
  33378. },
  33379. ]
  33380. ))
  33381. characterMakers.push(() => makeCharacter(
  33382. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33383. {
  33384. front: {
  33385. height: math.unit(4 + 10/12, "feet"),
  33386. weight: math.unit(160, "lb"),
  33387. name: "Front",
  33388. image: {
  33389. source: "./media/characters/chip-mouse/front.svg",
  33390. extra: 3528/3408,
  33391. bottom: 0/3528
  33392. }
  33393. },
  33394. frontNsfw: {
  33395. height: math.unit(4 + 10/12, "feet"),
  33396. weight: math.unit(160, "lb"),
  33397. name: "Front (NSFW)",
  33398. image: {
  33399. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33400. extra: 3528/3408,
  33401. bottom: 0/3528
  33402. }
  33403. },
  33404. },
  33405. [
  33406. {
  33407. name: "Normal",
  33408. height: math.unit(4 + 10/12, "feet"),
  33409. default: true
  33410. },
  33411. ]
  33412. ))
  33413. characterMakers.push(() => makeCharacter(
  33414. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33415. {
  33416. side: {
  33417. height: math.unit(10, "feet"),
  33418. weight: math.unit(14000, "lb"),
  33419. name: "Side",
  33420. image: {
  33421. source: "./media/characters/kremm/side.svg",
  33422. extra: 1390/1053,
  33423. bottom: 90/1480
  33424. }
  33425. },
  33426. gut: {
  33427. height: math.unit(5.8, "feet"),
  33428. name: "Gut",
  33429. image: {
  33430. source: "./media/characters/kremm/gut.svg"
  33431. }
  33432. },
  33433. ass: {
  33434. height: math.unit(6.1, "feet"),
  33435. name: "Ass",
  33436. image: {
  33437. source: "./media/characters/kremm/ass.svg"
  33438. }
  33439. },
  33440. jaws: {
  33441. height: math.unit(2.2, "feet"),
  33442. name: "Jaws",
  33443. image: {
  33444. source: "./media/characters/kremm/jaws.svg"
  33445. }
  33446. },
  33447. dick: {
  33448. height: math.unit(4.26, "feet"),
  33449. name: "Dick",
  33450. image: {
  33451. source: "./media/characters/kremm/dick.svg"
  33452. }
  33453. },
  33454. },
  33455. [
  33456. {
  33457. name: "Normal",
  33458. height: math.unit(10, "feet"),
  33459. default: true
  33460. },
  33461. ]
  33462. ))
  33463. characterMakers.push(() => makeCharacter(
  33464. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33465. {
  33466. front: {
  33467. height: math.unit(30, "stories"),
  33468. name: "Front",
  33469. image: {
  33470. source: "./media/characters/kai/front.svg",
  33471. extra: 1892/1718,
  33472. bottom: 162/2054
  33473. }
  33474. },
  33475. },
  33476. [
  33477. {
  33478. name: "Macro",
  33479. height: math.unit(30, "stories"),
  33480. default: true
  33481. },
  33482. ]
  33483. ))
  33484. characterMakers.push(() => makeCharacter(
  33485. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33486. {
  33487. front: {
  33488. height: math.unit(6 + 4/12, "feet"),
  33489. weight: math.unit(145, "lb"),
  33490. name: "Front",
  33491. image: {
  33492. source: "./media/characters/sykes/front.svg",
  33493. extra: 1321 / 1187,
  33494. bottom: 66 / 1387
  33495. }
  33496. },
  33497. back: {
  33498. height: math.unit(6 + 4/12, "feet"),
  33499. weight: math.unit(145, "lb"),
  33500. name: "Back",
  33501. image: {
  33502. source: "./media/characters/sykes/back.svg",
  33503. extra: 1326/1181,
  33504. bottom: 31/1357
  33505. }
  33506. },
  33507. handBack: {
  33508. height: math.unit(0.9, "feet"),
  33509. name: "Hand (Back)",
  33510. image: {
  33511. source: "./media/characters/sykes/hand-back.svg"
  33512. }
  33513. },
  33514. handFront: {
  33515. height: math.unit(0.839, "feet"),
  33516. name: "Hand (Front)",
  33517. image: {
  33518. source: "./media/characters/sykes/hand-front.svg"
  33519. }
  33520. },
  33521. leftFoot: {
  33522. height: math.unit(1.2, "feet"),
  33523. name: "Foot (Left)",
  33524. image: {
  33525. source: "./media/characters/sykes/foot-left.svg"
  33526. }
  33527. },
  33528. rightFoot: {
  33529. height: math.unit(1.2, "feet"),
  33530. name: "Foot (Right)",
  33531. image: {
  33532. source: "./media/characters/sykes/foot-right.svg"
  33533. }
  33534. },
  33535. maw: {
  33536. height: math.unit(1.93, "feet"),
  33537. name: "Maw",
  33538. image: {
  33539. source: "./media/characters/sykes/maw.svg"
  33540. }
  33541. },
  33542. teeth: {
  33543. height: math.unit(0.51, "feet"),
  33544. name: "Teeth",
  33545. image: {
  33546. source: "./media/characters/sykes/teeth.svg"
  33547. }
  33548. },
  33549. tongue: {
  33550. height: math.unit(2.13, "feet"),
  33551. name: "Tongue",
  33552. image: {
  33553. source: "./media/characters/sykes/tongue.svg"
  33554. }
  33555. },
  33556. uvula: {
  33557. height: math.unit(0.16, "feet"),
  33558. name: "Uvula",
  33559. image: {
  33560. source: "./media/characters/sykes/uvula.svg"
  33561. }
  33562. },
  33563. collar: {
  33564. height: math.unit(0.287, "feet"),
  33565. name: "Collar",
  33566. image: {
  33567. source: "./media/characters/sykes/collar.svg"
  33568. }
  33569. },
  33570. },
  33571. [
  33572. {
  33573. name: "Shrunken",
  33574. height: math.unit(5, "inches")
  33575. },
  33576. {
  33577. name: "Normal",
  33578. height: math.unit(6 + 4 / 12, "feet"),
  33579. default: true
  33580. },
  33581. {
  33582. name: "Big",
  33583. height: math.unit(15, "feet")
  33584. },
  33585. ]
  33586. ))
  33587. characterMakers.push(() => makeCharacter(
  33588. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33589. {
  33590. front: {
  33591. height: math.unit(5 + 8/12, "feet"),
  33592. weight: math.unit(190, "lb"),
  33593. name: "Front",
  33594. image: {
  33595. source: "./media/characters/oven-otter/front.svg",
  33596. extra: 1809/1740,
  33597. bottom: 181/1990
  33598. }
  33599. },
  33600. back: {
  33601. height: math.unit(5 + 8/12, "feet"),
  33602. weight: math.unit(190, "lb"),
  33603. name: "Back",
  33604. image: {
  33605. source: "./media/characters/oven-otter/back.svg",
  33606. extra: 1709/1635,
  33607. bottom: 118/1827
  33608. }
  33609. },
  33610. hand: {
  33611. height: math.unit(1.07, "feet"),
  33612. name: "Hand",
  33613. image: {
  33614. source: "./media/characters/oven-otter/hand.svg"
  33615. }
  33616. },
  33617. beans: {
  33618. height: math.unit(1.74, "feet"),
  33619. name: "Beans",
  33620. image: {
  33621. source: "./media/characters/oven-otter/beans.svg"
  33622. }
  33623. },
  33624. },
  33625. [
  33626. {
  33627. name: "Micro",
  33628. height: math.unit(0.5, "inches")
  33629. },
  33630. {
  33631. name: "Normal",
  33632. height: math.unit(5 + 8/12, "feet"),
  33633. default: true
  33634. },
  33635. {
  33636. name: "Macro",
  33637. height: math.unit(250, "feet")
  33638. },
  33639. {
  33640. name: "Really High",
  33641. height: math.unit(420, "feet")
  33642. },
  33643. ]
  33644. ))
  33645. characterMakers.push(() => makeCharacter(
  33646. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33647. {
  33648. front: {
  33649. height: math.unit(5, "meters"),
  33650. weight: math.unit(292000000000000, "kg"),
  33651. name: "Front",
  33652. image: {
  33653. source: "./media/characters/devourer/front.svg",
  33654. extra: 1800/1733,
  33655. bottom: 211/2011
  33656. }
  33657. },
  33658. maw: {
  33659. height: math.unit(1.1, "meter"),
  33660. name: "Maw",
  33661. image: {
  33662. source: "./media/characters/devourer/maw.svg"
  33663. }
  33664. },
  33665. },
  33666. [
  33667. {
  33668. name: "Small",
  33669. height: math.unit(3, "meters")
  33670. },
  33671. {
  33672. name: "Large",
  33673. height: math.unit(5, "meters"),
  33674. default: true
  33675. },
  33676. ]
  33677. ))
  33678. characterMakers.push(() => makeCharacter(
  33679. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33680. {
  33681. front: {
  33682. height: math.unit(6, "feet"),
  33683. weight: math.unit(400, "lb"),
  33684. name: "Front",
  33685. image: {
  33686. source: "./media/characters/ellarby/front.svg",
  33687. extra: 1909/1763,
  33688. bottom: 80/1989
  33689. }
  33690. },
  33691. back: {
  33692. height: math.unit(6, "feet"),
  33693. weight: math.unit(400, "lb"),
  33694. name: "Back",
  33695. image: {
  33696. source: "./media/characters/ellarby/back.svg",
  33697. extra: 1914/1784,
  33698. bottom: 172/2086
  33699. }
  33700. },
  33701. },
  33702. [
  33703. {
  33704. name: "Mischief",
  33705. height: math.unit(18, "inches")
  33706. },
  33707. {
  33708. name: "Trouble",
  33709. height: math.unit(12, "feet")
  33710. },
  33711. {
  33712. name: "Havoc",
  33713. height: math.unit(200, "feet"),
  33714. default: true
  33715. },
  33716. {
  33717. name: "Pandemonium",
  33718. height: math.unit(1, "mile")
  33719. },
  33720. {
  33721. name: "Catastrophe",
  33722. height: math.unit(100, "miles")
  33723. },
  33724. ]
  33725. ))
  33726. characterMakers.push(() => makeCharacter(
  33727. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33728. {
  33729. front: {
  33730. height: math.unit(4.7, "meters"),
  33731. weight: math.unit(6500, "kg"),
  33732. name: "Front",
  33733. image: {
  33734. source: "./media/characters/vex/front.svg",
  33735. extra: 1288/1140,
  33736. bottom: 100/1388
  33737. }
  33738. },
  33739. },
  33740. [
  33741. {
  33742. name: "Normal",
  33743. height: math.unit(4.7, "meters"),
  33744. default: true
  33745. },
  33746. ]
  33747. ))
  33748. characterMakers.push(() => makeCharacter(
  33749. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33750. {
  33751. normal: {
  33752. height: math.unit(6, "feet"),
  33753. weight: math.unit(350, "lb"),
  33754. name: "Normal",
  33755. image: {
  33756. source: "./media/characters/teshy/normal.svg",
  33757. extra: 1795/1735,
  33758. bottom: 16/1811
  33759. }
  33760. },
  33761. monsterFront: {
  33762. height: math.unit(12, "feet"),
  33763. weight: math.unit(4700, "lb"),
  33764. name: "Monster (Front)",
  33765. image: {
  33766. source: "./media/characters/teshy/monster-front.svg",
  33767. extra: 2042/2034,
  33768. bottom: 128/2170
  33769. }
  33770. },
  33771. monsterSide: {
  33772. height: math.unit(12, "feet"),
  33773. weight: math.unit(4700, "lb"),
  33774. name: "Monster (Side)",
  33775. image: {
  33776. source: "./media/characters/teshy/monster-side.svg",
  33777. extra: 2067/2056,
  33778. bottom: 70/2137
  33779. }
  33780. },
  33781. monsterBack: {
  33782. height: math.unit(12, "feet"),
  33783. weight: math.unit(4700, "lb"),
  33784. name: "Monster (Back)",
  33785. image: {
  33786. source: "./media/characters/teshy/monster-back.svg",
  33787. extra: 1921/1914,
  33788. bottom: 171/2092
  33789. }
  33790. },
  33791. },
  33792. [
  33793. {
  33794. name: "Normal",
  33795. height: math.unit(6, "feet"),
  33796. default: true
  33797. },
  33798. ]
  33799. ))
  33800. characterMakers.push(() => makeCharacter(
  33801. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33802. {
  33803. front: {
  33804. height: math.unit(6, "feet"),
  33805. name: "Front",
  33806. image: {
  33807. source: "./media/characters/ramey/front.svg",
  33808. extra: 790/787,
  33809. bottom: 27/817
  33810. }
  33811. },
  33812. },
  33813. [
  33814. {
  33815. name: "Normal",
  33816. height: math.unit(6, "feet"),
  33817. default: true
  33818. },
  33819. ]
  33820. ))
  33821. characterMakers.push(() => makeCharacter(
  33822. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33823. {
  33824. front: {
  33825. height: math.unit(5 + 5/12, "feet"),
  33826. weight: math.unit(120, "lb"),
  33827. name: "Front",
  33828. image: {
  33829. source: "./media/characters/phirae/front.svg",
  33830. extra: 2491/2436,
  33831. bottom: 38/2529
  33832. }
  33833. },
  33834. },
  33835. [
  33836. {
  33837. name: "Normal",
  33838. height: math.unit(5 + 5/12, "feet"),
  33839. default: true
  33840. },
  33841. ]
  33842. ))
  33843. characterMakers.push(() => makeCharacter(
  33844. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33845. {
  33846. front: {
  33847. height: math.unit(6, "feet"),
  33848. weight: math.unit(150, "lb"),
  33849. name: "Front",
  33850. image: {
  33851. source: "./media/characters/stagglas/front.svg",
  33852. extra: 962/882,
  33853. bottom: 53/1015
  33854. }
  33855. },
  33856. },
  33857. [
  33858. {
  33859. name: "Normal",
  33860. height: math.unit(5 + 3/12, "feet"),
  33861. default: true
  33862. },
  33863. ]
  33864. ))
  33865. characterMakers.push(() => makeCharacter(
  33866. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33867. {
  33868. front: {
  33869. height: math.unit(5 + 4/12, "feet"),
  33870. weight: math.unit(145, "lb"),
  33871. name: "Front",
  33872. image: {
  33873. source: "./media/characters/starra/front.svg",
  33874. extra: 1790/1691,
  33875. bottom: 91/1881
  33876. }
  33877. },
  33878. },
  33879. [
  33880. {
  33881. name: "Normal",
  33882. height: math.unit(5 + 4/12, "feet"),
  33883. default: true
  33884. },
  33885. ]
  33886. ))
  33887. characterMakers.push(() => makeCharacter(
  33888. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33889. {
  33890. front: {
  33891. height: math.unit(2.2, "meters"),
  33892. name: "Front",
  33893. image: {
  33894. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33895. extra: 1194/1005,
  33896. bottom: 25/1219
  33897. }
  33898. },
  33899. },
  33900. [
  33901. {
  33902. name: "Normal",
  33903. height: math.unit(2.2, "meters"),
  33904. default: true
  33905. },
  33906. ]
  33907. ))
  33908. characterMakers.push(() => makeCharacter(
  33909. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33910. {
  33911. side: {
  33912. height: math.unit(8 + 2/12, "feet"),
  33913. weight: math.unit(1240, "lb"),
  33914. name: "Side",
  33915. image: {
  33916. source: "./media/characters/mika-valentine/side.svg",
  33917. extra: 2670/2501,
  33918. bottom: 250/2920
  33919. }
  33920. },
  33921. },
  33922. [
  33923. {
  33924. name: "Normal",
  33925. height: math.unit(8 + 2/12, "feet"),
  33926. default: true
  33927. },
  33928. ]
  33929. ))
  33930. characterMakers.push(() => makeCharacter(
  33931. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33932. {
  33933. front: {
  33934. height: math.unit(7 + 2/12, "feet"),
  33935. name: "Front",
  33936. image: {
  33937. source: "./media/characters/xoltol/front.svg",
  33938. extra: 2212/2124,
  33939. bottom: 84/2296
  33940. }
  33941. },
  33942. side: {
  33943. height: math.unit(7 + 2/12, "feet"),
  33944. name: "Side",
  33945. image: {
  33946. source: "./media/characters/xoltol/side.svg",
  33947. extra: 2273/2197,
  33948. bottom: 26/2299
  33949. }
  33950. },
  33951. hand: {
  33952. height: math.unit(2.5, "feet"),
  33953. name: "Hand",
  33954. image: {
  33955. source: "./media/characters/xoltol/hand.svg"
  33956. }
  33957. },
  33958. },
  33959. [
  33960. {
  33961. name: "Small-ish",
  33962. height: math.unit(5 + 11/12, "feet")
  33963. },
  33964. {
  33965. name: "Normal",
  33966. height: math.unit(7 + 2/12, "feet")
  33967. },
  33968. {
  33969. name: "\"Macro\"",
  33970. height: math.unit(14 + 9/12, "feet"),
  33971. default: true
  33972. },
  33973. {
  33974. name: "Alternate Height",
  33975. height: math.unit(20, "feet")
  33976. },
  33977. {
  33978. name: "Actually Macro",
  33979. height: math.unit(100, "feet")
  33980. },
  33981. ]
  33982. ))
  33983. characterMakers.push(() => makeCharacter(
  33984. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33985. {
  33986. front: {
  33987. height: math.unit(5 + 2/12, "feet"),
  33988. name: "Front",
  33989. image: {
  33990. source: "./media/characters/kotetsu-redwood/front.svg",
  33991. extra: 1053/942,
  33992. bottom: 60/1113
  33993. }
  33994. },
  33995. },
  33996. [
  33997. {
  33998. name: "Normal",
  33999. height: math.unit(5 + 2/12, "feet"),
  34000. default: true
  34001. },
  34002. ]
  34003. ))
  34004. characterMakers.push(() => makeCharacter(
  34005. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34006. {
  34007. front: {
  34008. height: math.unit(2.4, "meters"),
  34009. weight: math.unit(125, "kg"),
  34010. name: "Front",
  34011. image: {
  34012. source: "./media/characters/lilith/front.svg",
  34013. extra: 1590/1513,
  34014. bottom: 203/1793
  34015. }
  34016. },
  34017. },
  34018. [
  34019. {
  34020. name: "Humanoid",
  34021. height: math.unit(2.4, "meters")
  34022. },
  34023. {
  34024. name: "Normal",
  34025. height: math.unit(6, "meters"),
  34026. default: true
  34027. },
  34028. {
  34029. name: "Largest",
  34030. height: math.unit(55, "meters")
  34031. },
  34032. ]
  34033. ))
  34034. characterMakers.push(() => makeCharacter(
  34035. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34036. {
  34037. front: {
  34038. height: math.unit(8 + 4/12, "feet"),
  34039. weight: math.unit(535, "lb"),
  34040. name: "Front",
  34041. image: {
  34042. source: "./media/characters/beh'kah-bolger/front.svg",
  34043. extra: 1660/1603,
  34044. bottom: 37/1697
  34045. }
  34046. },
  34047. },
  34048. [
  34049. {
  34050. name: "Normal",
  34051. height: math.unit(8 + 4/12, "feet"),
  34052. default: true
  34053. },
  34054. {
  34055. name: "Kaiju",
  34056. height: math.unit(250, "feet")
  34057. },
  34058. {
  34059. name: "Still Growing",
  34060. height: math.unit(10, "miles")
  34061. },
  34062. {
  34063. name: "Continental",
  34064. height: math.unit(5000, "miles")
  34065. },
  34066. {
  34067. name: "Final Form",
  34068. height: math.unit(2500000, "miles")
  34069. },
  34070. ]
  34071. ))
  34072. characterMakers.push(() => makeCharacter(
  34073. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34074. {
  34075. front: {
  34076. height: math.unit(7 + 2/12, "feet"),
  34077. weight: math.unit(230, "kg"),
  34078. name: "Front",
  34079. image: {
  34080. source: "./media/characters/tatyana-milewska/front.svg",
  34081. extra: 1199/1150,
  34082. bottom: 86/1285
  34083. }
  34084. },
  34085. },
  34086. [
  34087. {
  34088. name: "Normal",
  34089. height: math.unit(7 + 2/12, "feet"),
  34090. default: true
  34091. },
  34092. {
  34093. name: "Big",
  34094. height: math.unit(12, "feet")
  34095. },
  34096. {
  34097. name: "Minimacro",
  34098. height: math.unit(20, "feet")
  34099. },
  34100. {
  34101. name: "Macro",
  34102. height: math.unit(120, "feet")
  34103. },
  34104. ]
  34105. ))
  34106. characterMakers.push(() => makeCharacter(
  34107. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34108. {
  34109. front: {
  34110. height: math.unit(7 + 8/12, "feet"),
  34111. weight: math.unit(152, "kg"),
  34112. name: "Front",
  34113. image: {
  34114. source: "./media/characters/helen-arri/front.svg",
  34115. extra: 440/423,
  34116. bottom: 14/454
  34117. }
  34118. },
  34119. back: {
  34120. height: math.unit(7 + 8/12, "feet"),
  34121. weight: math.unit(152, "kg"),
  34122. name: "Back",
  34123. image: {
  34124. source: "./media/characters/helen-arri/back.svg",
  34125. extra: 443/426,
  34126. bottom: 8/451
  34127. }
  34128. },
  34129. },
  34130. [
  34131. {
  34132. name: "Normal",
  34133. height: math.unit(7 + 8/12, "feet"),
  34134. default: true
  34135. },
  34136. {
  34137. name: "Big",
  34138. height: math.unit(14, "feet")
  34139. },
  34140. {
  34141. name: "Minimacro",
  34142. height: math.unit(24, "feet")
  34143. },
  34144. {
  34145. name: "Macro",
  34146. height: math.unit(140, "feet")
  34147. },
  34148. ]
  34149. ))
  34150. characterMakers.push(() => makeCharacter(
  34151. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34152. {
  34153. front: {
  34154. height: math.unit(6, "meters"),
  34155. name: "Front",
  34156. image: {
  34157. source: "./media/characters/ehanu-rehu/front.svg",
  34158. extra: 1800/1800,
  34159. bottom: 59/1859
  34160. }
  34161. },
  34162. },
  34163. [
  34164. {
  34165. name: "Normal",
  34166. height: math.unit(6, "meters"),
  34167. default: true
  34168. },
  34169. ]
  34170. ))
  34171. characterMakers.push(() => makeCharacter(
  34172. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34173. {
  34174. front: {
  34175. height: math.unit(7 + 3/12, "feet"),
  34176. name: "Front",
  34177. image: {
  34178. source: "./media/characters/renholder/front.svg",
  34179. extra: 3096/2960,
  34180. bottom: 250/3346
  34181. }
  34182. },
  34183. },
  34184. [
  34185. {
  34186. name: "Normal Bat",
  34187. height: math.unit(7 + 3/12, "feet"),
  34188. default: true
  34189. },
  34190. {
  34191. name: "Slightly Tall Bat",
  34192. height: math.unit(100, "feet")
  34193. },
  34194. {
  34195. name: "Big Bat",
  34196. height: math.unit(1000, "feet")
  34197. },
  34198. {
  34199. name: "City-Sized Bat",
  34200. height: math.unit(200000, "feet")
  34201. },
  34202. {
  34203. name: "Bigger Bat",
  34204. height: math.unit(10000, "miles")
  34205. },
  34206. {
  34207. name: "Solar Sized Bat",
  34208. height: math.unit(100, "AU")
  34209. },
  34210. {
  34211. name: "Galactic Bat",
  34212. height: math.unit(200000, "lightyears")
  34213. },
  34214. {
  34215. name: "Universally Known Bat",
  34216. height: math.unit(1, "universe")
  34217. },
  34218. ]
  34219. ))
  34220. characterMakers.push(() => makeCharacter(
  34221. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34222. {
  34223. front: {
  34224. height: math.unit(6 + 11/12, "feet"),
  34225. weight: math.unit(250, "lb"),
  34226. name: "Front",
  34227. image: {
  34228. source: "./media/characters/cookiecat/front.svg",
  34229. extra: 893/827,
  34230. bottom: 14/907
  34231. }
  34232. },
  34233. },
  34234. [
  34235. {
  34236. name: "Micro",
  34237. height: math.unit(3, "inches")
  34238. },
  34239. {
  34240. name: "Normal",
  34241. height: math.unit(6 + 11/12, "feet"),
  34242. default: true
  34243. },
  34244. {
  34245. name: "Macro",
  34246. height: math.unit(100, "feet")
  34247. },
  34248. {
  34249. name: "Macro+",
  34250. height: math.unit(404, "feet")
  34251. },
  34252. {
  34253. name: "Megamacro",
  34254. height: math.unit(165, "miles")
  34255. },
  34256. {
  34257. name: "Planetary",
  34258. height: math.unit(4600, "miles")
  34259. },
  34260. ]
  34261. ))
  34262. characterMakers.push(() => makeCharacter(
  34263. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34264. {
  34265. front: {
  34266. height: math.unit(10 + 3/12, "feet"),
  34267. weight: math.unit(1500, "lb"),
  34268. name: "Front",
  34269. image: {
  34270. source: "./media/characters/tux-kusanagi/front.svg",
  34271. extra: 944/840,
  34272. bottom: 39/983
  34273. }
  34274. },
  34275. back: {
  34276. height: math.unit(10 + 3/12, "feet"),
  34277. weight: math.unit(1500, "lb"),
  34278. name: "Back",
  34279. image: {
  34280. source: "./media/characters/tux-kusanagi/back.svg",
  34281. extra: 941/842,
  34282. bottom: 28/969
  34283. }
  34284. },
  34285. rump: {
  34286. height: math.unit(5.25, "feet"),
  34287. name: "Rump",
  34288. image: {
  34289. source: "./media/characters/tux-kusanagi/rump.svg"
  34290. }
  34291. },
  34292. beak: {
  34293. height: math.unit(1.54, "feet"),
  34294. name: "Beak",
  34295. image: {
  34296. source: "./media/characters/tux-kusanagi/beak.svg"
  34297. }
  34298. },
  34299. },
  34300. [
  34301. {
  34302. name: "Normal",
  34303. height: math.unit(10 + 3/12, "feet"),
  34304. default: true
  34305. },
  34306. ]
  34307. ))
  34308. characterMakers.push(() => makeCharacter(
  34309. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34310. {
  34311. front: {
  34312. height: math.unit(58, "feet"),
  34313. weight: math.unit(200, "tons"),
  34314. name: "Front",
  34315. image: {
  34316. source: "./media/characters/uzarmazari/front.svg",
  34317. extra: 1575/1455,
  34318. bottom: 152/1727
  34319. }
  34320. },
  34321. back: {
  34322. height: math.unit(58, "feet"),
  34323. weight: math.unit(200, "tons"),
  34324. name: "Back",
  34325. image: {
  34326. source: "./media/characters/uzarmazari/back.svg",
  34327. extra: 1585/1510,
  34328. bottom: 157/1742
  34329. }
  34330. },
  34331. head: {
  34332. height: math.unit(26, "feet"),
  34333. name: "Head",
  34334. image: {
  34335. source: "./media/characters/uzarmazari/head.svg"
  34336. }
  34337. },
  34338. },
  34339. [
  34340. {
  34341. name: "Normal",
  34342. height: math.unit(58, "feet"),
  34343. default: true
  34344. },
  34345. ]
  34346. ))
  34347. characterMakers.push(() => makeCharacter(
  34348. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34349. {
  34350. side: {
  34351. height: math.unit(15, "feet"),
  34352. name: "Side",
  34353. image: {
  34354. source: "./media/characters/akitu/side.svg",
  34355. extra: 1421/1321,
  34356. bottom: 157/1578
  34357. }
  34358. },
  34359. front: {
  34360. height: math.unit(15, "feet"),
  34361. name: "Front",
  34362. image: {
  34363. source: "./media/characters/akitu/front.svg",
  34364. extra: 1435/1326,
  34365. bottom: 232/1667
  34366. }
  34367. },
  34368. },
  34369. [
  34370. {
  34371. name: "Normal",
  34372. height: math.unit(15, "feet"),
  34373. default: true
  34374. },
  34375. ]
  34376. ))
  34377. characterMakers.push(() => makeCharacter(
  34378. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34379. {
  34380. front: {
  34381. height: math.unit(10 + 8/12, "feet"),
  34382. name: "Front",
  34383. image: {
  34384. source: "./media/characters/azalie-croixland/front.svg",
  34385. extra: 1972/1856,
  34386. bottom: 31/2003
  34387. }
  34388. },
  34389. },
  34390. [
  34391. {
  34392. name: "Original Height",
  34393. height: math.unit(5 + 4/12, "feet")
  34394. },
  34395. {
  34396. name: "Normal Height",
  34397. height: math.unit(10 + 8/12, "feet"),
  34398. default: true
  34399. },
  34400. ]
  34401. ))
  34402. characterMakers.push(() => makeCharacter(
  34403. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34404. {
  34405. side: {
  34406. height: math.unit(7 + 1/12, "feet"),
  34407. weight: math.unit(245, "lb"),
  34408. name: "Side",
  34409. image: {
  34410. source: "./media/characters/kavus-kazian/side.svg",
  34411. extra: 349/342,
  34412. bottom: 15/364
  34413. }
  34414. },
  34415. },
  34416. [
  34417. {
  34418. name: "Normal",
  34419. height: math.unit(7 + 1/12, "feet"),
  34420. default: true
  34421. },
  34422. ]
  34423. ))
  34424. characterMakers.push(() => makeCharacter(
  34425. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34426. {
  34427. normal: {
  34428. height: math.unit(5 + 11/12, "feet"),
  34429. name: "Normal",
  34430. image: {
  34431. source: "./media/characters/moonlight-rose/normal.svg",
  34432. extra: 1979/1835,
  34433. bottom: 14/1993
  34434. }
  34435. },
  34436. demon: {
  34437. height: math.unit(5, "km"),
  34438. name: "Demon",
  34439. image: {
  34440. source: "./media/characters/moonlight-rose/demon.svg",
  34441. extra: 986/916,
  34442. bottom: 28/1014
  34443. }
  34444. },
  34445. },
  34446. [
  34447. {
  34448. name: "\"Natural\" height",
  34449. height: math.unit(5 + 11/12, "feet")
  34450. },
  34451. {
  34452. name: "Comfortable Size",
  34453. height: math.unit(40, "meters")
  34454. },
  34455. {
  34456. name: "Common Size",
  34457. height: math.unit(50, "km"),
  34458. default: true
  34459. },
  34460. {
  34461. name: "Demonic",
  34462. height: math.unit(1.24415e+21, "meters")
  34463. },
  34464. ]
  34465. ))
  34466. characterMakers.push(() => makeCharacter(
  34467. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34468. {
  34469. front: {
  34470. height: math.unit(16, "feet"),
  34471. weight: math.unit(610, "kg"),
  34472. name: "Front",
  34473. image: {
  34474. source: "./media/characters/huckle/front.svg",
  34475. extra: 1731/1625,
  34476. bottom: 33/1764
  34477. }
  34478. },
  34479. back: {
  34480. height: math.unit(16, "feet"),
  34481. weight: math.unit(610, "kg"),
  34482. name: "Back",
  34483. image: {
  34484. source: "./media/characters/huckle/back.svg",
  34485. extra: 1738/1651,
  34486. bottom: 37/1775
  34487. }
  34488. },
  34489. laughing: {
  34490. height: math.unit(3.75, "feet"),
  34491. name: "Laughing",
  34492. image: {
  34493. source: "./media/characters/huckle/laughing.svg"
  34494. }
  34495. },
  34496. angry: {
  34497. height: math.unit(4.15, "feet"),
  34498. name: "Angry",
  34499. image: {
  34500. source: "./media/characters/huckle/angry.svg"
  34501. }
  34502. },
  34503. },
  34504. [
  34505. {
  34506. name: "Normal",
  34507. height: math.unit(16, "feet"),
  34508. default: true
  34509. },
  34510. {
  34511. name: "Mini Macro",
  34512. height: math.unit(463, "feet")
  34513. },
  34514. {
  34515. name: "Macro",
  34516. height: math.unit(1680, "meters")
  34517. },
  34518. {
  34519. name: "Mega Macro",
  34520. height: math.unit(175, "km")
  34521. },
  34522. {
  34523. name: "Terra Macro",
  34524. height: math.unit(32, "gigameters")
  34525. },
  34526. {
  34527. name: "Multiverse+",
  34528. height: math.unit(2.56e23, "yottameters")
  34529. },
  34530. ]
  34531. ))
  34532. characterMakers.push(() => makeCharacter(
  34533. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34534. {
  34535. front: {
  34536. height: math.unit(6 + 9/12, "feet"),
  34537. weight: math.unit(280, "lb"),
  34538. name: "Front",
  34539. image: {
  34540. source: "./media/characters/candy/front.svg",
  34541. extra: 234/217,
  34542. bottom: 11/245
  34543. }
  34544. },
  34545. },
  34546. [
  34547. {
  34548. name: "Really Small",
  34549. height: math.unit(0.1, "nm")
  34550. },
  34551. {
  34552. name: "Micro",
  34553. height: math.unit(2, "inches")
  34554. },
  34555. {
  34556. name: "Normal",
  34557. height: math.unit(6 + 9/12, "feet"),
  34558. default: true
  34559. },
  34560. {
  34561. name: "Small Macro",
  34562. height: math.unit(69, "feet")
  34563. },
  34564. {
  34565. name: "Macro",
  34566. height: math.unit(160, "feet")
  34567. },
  34568. {
  34569. name: "Megamacro",
  34570. height: math.unit(22000, "miles")
  34571. },
  34572. {
  34573. name: "Gigamacro",
  34574. height: math.unit(50000, "miles")
  34575. },
  34576. ]
  34577. ))
  34578. characterMakers.push(() => makeCharacter(
  34579. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  34580. {
  34581. front: {
  34582. height: math.unit(4, "feet"),
  34583. weight: math.unit(90, "lb"),
  34584. name: "Front",
  34585. image: {
  34586. source: "./media/characters/joey-mcdonald/front.svg",
  34587. extra: 1059/852,
  34588. bottom: 33/1092
  34589. }
  34590. },
  34591. back: {
  34592. height: math.unit(4, "feet"),
  34593. weight: math.unit(90, "lb"),
  34594. name: "Back",
  34595. image: {
  34596. source: "./media/characters/joey-mcdonald/back.svg",
  34597. extra: 1077/879,
  34598. bottom: 5/1082
  34599. }
  34600. },
  34601. frontKobold: {
  34602. height: math.unit(4, "feet"),
  34603. weight: math.unit(100, "lb"),
  34604. name: "Front-kobold",
  34605. image: {
  34606. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  34607. extra: 1480/1367,
  34608. bottom: 0/1480
  34609. }
  34610. },
  34611. backKobold: {
  34612. height: math.unit(4, "feet"),
  34613. weight: math.unit(100, "lb"),
  34614. name: "Back-kobold",
  34615. image: {
  34616. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  34617. extra: 1449/1361,
  34618. bottom: 0/1449
  34619. }
  34620. },
  34621. },
  34622. [
  34623. {
  34624. name: "Normal",
  34625. height: math.unit(4, "feet"),
  34626. default: true
  34627. },
  34628. ]
  34629. ))
  34630. characterMakers.push(() => makeCharacter(
  34631. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34632. {
  34633. front: {
  34634. height: math.unit(12 + 6/12, "feet"),
  34635. name: "Front",
  34636. image: {
  34637. source: "./media/characters/kass-lockheed/front.svg",
  34638. extra: 354/343,
  34639. bottom: 9/363
  34640. }
  34641. },
  34642. back: {
  34643. height: math.unit(12 + 6/12, "feet"),
  34644. name: "Back",
  34645. image: {
  34646. source: "./media/characters/kass-lockheed/back.svg",
  34647. extra: 364/352,
  34648. bottom: 3/367
  34649. }
  34650. },
  34651. dick: {
  34652. height: math.unit(3.12, "feet"),
  34653. name: "Dick",
  34654. image: {
  34655. source: "./media/characters/kass-lockheed/dick.svg"
  34656. }
  34657. },
  34658. head: {
  34659. height: math.unit(2.6, "feet"),
  34660. name: "Head",
  34661. image: {
  34662. source: "./media/characters/kass-lockheed/head.svg"
  34663. }
  34664. },
  34665. bleh: {
  34666. height: math.unit(2.85, "feet"),
  34667. name: "Bleh",
  34668. image: {
  34669. source: "./media/characters/kass-lockheed/bleh.svg"
  34670. }
  34671. },
  34672. smug: {
  34673. height: math.unit(2.85, "feet"),
  34674. name: "Smug",
  34675. image: {
  34676. source: "./media/characters/kass-lockheed/smug.svg"
  34677. }
  34678. },
  34679. },
  34680. [
  34681. {
  34682. name: "Normal",
  34683. height: math.unit(12 + 6/12, "feet"),
  34684. default: true
  34685. },
  34686. ]
  34687. ))
  34688. characterMakers.push(() => makeCharacter(
  34689. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34690. {
  34691. front: {
  34692. height: math.unit(6 + 2/12, "feet"),
  34693. name: "Front",
  34694. image: {
  34695. source: "./media/characters/taylor/front.svg",
  34696. extra: 639/495,
  34697. bottom: 12/651
  34698. }
  34699. },
  34700. },
  34701. [
  34702. {
  34703. name: "Normal",
  34704. height: math.unit(6 + 2/12, "feet"),
  34705. default: true
  34706. },
  34707. {
  34708. name: "Big",
  34709. height: math.unit(15, "feet")
  34710. },
  34711. {
  34712. name: "Lorg",
  34713. height: math.unit(80, "feet")
  34714. },
  34715. {
  34716. name: "Too Lorg",
  34717. height: math.unit(120, "feet")
  34718. },
  34719. ]
  34720. ))
  34721. characterMakers.push(() => makeCharacter(
  34722. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34723. {
  34724. front: {
  34725. height: math.unit(15, "feet"),
  34726. name: "Front",
  34727. image: {
  34728. source: "./media/characters/kaizer/front.svg",
  34729. extra: 1612/1436,
  34730. bottom: 43/1655
  34731. }
  34732. },
  34733. },
  34734. [
  34735. {
  34736. name: "Normal",
  34737. height: math.unit(15, "feet"),
  34738. default: true
  34739. },
  34740. ]
  34741. ))
  34742. characterMakers.push(() => makeCharacter(
  34743. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34744. {
  34745. front: {
  34746. height: math.unit(2, "feet"),
  34747. weight: math.unit(30, "lb"),
  34748. name: "Front",
  34749. image: {
  34750. source: "./media/characters/sandy/front.svg",
  34751. extra: 1439/1307,
  34752. bottom: 194/1633
  34753. }
  34754. },
  34755. },
  34756. [
  34757. {
  34758. name: "Normal",
  34759. height: math.unit(2, "feet"),
  34760. default: true
  34761. },
  34762. ]
  34763. ))
  34764. characterMakers.push(() => makeCharacter(
  34765. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34766. {
  34767. front: {
  34768. height: math.unit(3, "feet"),
  34769. name: "Front",
  34770. image: {
  34771. source: "./media/characters/mellvi/front.svg",
  34772. extra: 1831/1630,
  34773. bottom: 58/1889
  34774. }
  34775. },
  34776. },
  34777. [
  34778. {
  34779. name: "Normal",
  34780. height: math.unit(3, "feet"),
  34781. default: true
  34782. },
  34783. ]
  34784. ))
  34785. characterMakers.push(() => makeCharacter(
  34786. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34787. {
  34788. front: {
  34789. height: math.unit(5 + 11/12, "feet"),
  34790. weight: math.unit(200, "lb"),
  34791. name: "Front",
  34792. image: {
  34793. source: "./media/characters/shirou/front.svg",
  34794. extra: 2491/2383,
  34795. bottom: 189/2680
  34796. }
  34797. },
  34798. back: {
  34799. height: math.unit(5 + 11/12, "feet"),
  34800. weight: math.unit(200, "lb"),
  34801. name: "Back",
  34802. image: {
  34803. source: "./media/characters/shirou/back.svg",
  34804. extra: 2554/2450,
  34805. bottom: 76/2630
  34806. }
  34807. },
  34808. },
  34809. [
  34810. {
  34811. name: "Normal",
  34812. height: math.unit(5 + 11/12, "feet"),
  34813. default: true
  34814. },
  34815. ]
  34816. ))
  34817. characterMakers.push(() => makeCharacter(
  34818. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34819. {
  34820. front: {
  34821. height: math.unit(6 + 3/12, "feet"),
  34822. weight: math.unit(177, "lb"),
  34823. name: "Front",
  34824. image: {
  34825. source: "./media/characters/noryu/front.svg",
  34826. extra: 973/885,
  34827. bottom: 10/983
  34828. }
  34829. },
  34830. },
  34831. [
  34832. {
  34833. name: "Normal",
  34834. height: math.unit(6 + 3/12, "feet"),
  34835. default: true
  34836. },
  34837. ]
  34838. ))
  34839. characterMakers.push(() => makeCharacter(
  34840. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34841. {
  34842. front: {
  34843. height: math.unit(5 + 6/12, "feet"),
  34844. weight: math.unit(170, "lb"),
  34845. name: "Front",
  34846. image: {
  34847. source: "./media/characters/mevolas-rubenido/front.svg",
  34848. extra: 2109/1901,
  34849. bottom: 96/2205
  34850. }
  34851. },
  34852. },
  34853. [
  34854. {
  34855. name: "Normal",
  34856. height: math.unit(5 + 6/12, "feet"),
  34857. default: true
  34858. },
  34859. ]
  34860. ))
  34861. characterMakers.push(() => makeCharacter(
  34862. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34863. {
  34864. front: {
  34865. height: math.unit(100, "feet"),
  34866. name: "Front",
  34867. image: {
  34868. source: "./media/characters/dee/front.svg",
  34869. extra: 2153/2036,
  34870. bottom: 59/2212
  34871. }
  34872. },
  34873. back: {
  34874. height: math.unit(100, "feet"),
  34875. name: "Back",
  34876. image: {
  34877. source: "./media/characters/dee/back.svg",
  34878. extra: 2183/2058,
  34879. bottom: 75/2258
  34880. }
  34881. },
  34882. foot: {
  34883. height: math.unit(19.43, "feet"),
  34884. name: "Foot",
  34885. image: {
  34886. source: "./media/characters/dee/foot.svg"
  34887. }
  34888. },
  34889. hoof: {
  34890. height: math.unit(20.6, "feet"),
  34891. name: "Hoof",
  34892. image: {
  34893. source: "./media/characters/dee/hoof.svg"
  34894. }
  34895. },
  34896. },
  34897. [
  34898. {
  34899. name: "Macro",
  34900. height: math.unit(100, "feet"),
  34901. default: true
  34902. },
  34903. ]
  34904. ))
  34905. characterMakers.push(() => makeCharacter(
  34906. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34907. {
  34908. front: {
  34909. height: math.unit(5 + 6/12, "feet"),
  34910. name: "Front",
  34911. image: {
  34912. source: "./media/characters/teh/front.svg",
  34913. extra: 1002/847,
  34914. bottom: 62/1064
  34915. }
  34916. },
  34917. },
  34918. [
  34919. {
  34920. name: "Normal",
  34921. height: math.unit(5 + 6/12, "feet"),
  34922. default: true
  34923. },
  34924. ]
  34925. ))
  34926. characterMakers.push(() => makeCharacter(
  34927. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34928. {
  34929. side: {
  34930. height: math.unit(6 + 1/12, "feet"),
  34931. weight: math.unit(204, "lb"),
  34932. name: "Side",
  34933. image: {
  34934. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34935. extra: 974/775,
  34936. bottom: 169/1143
  34937. }
  34938. },
  34939. sitting: {
  34940. height: math.unit(6 + 2/12, "feet"),
  34941. weight: math.unit(204, "lb"),
  34942. name: "Sitting",
  34943. image: {
  34944. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34945. extra: 1175/964,
  34946. bottom: 378/1553
  34947. }
  34948. },
  34949. },
  34950. [
  34951. {
  34952. name: "Normal",
  34953. height: math.unit(6 + 1/12, "feet"),
  34954. default: true
  34955. },
  34956. ]
  34957. ))
  34958. characterMakers.push(() => makeCharacter(
  34959. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34960. {
  34961. front: {
  34962. height: math.unit(6, "inches"),
  34963. name: "Front",
  34964. image: {
  34965. source: "./media/characters/tululi/front.svg",
  34966. extra: 1997/1876,
  34967. bottom: 20/2017
  34968. }
  34969. },
  34970. },
  34971. [
  34972. {
  34973. name: "Normal",
  34974. height: math.unit(6, "inches"),
  34975. default: true
  34976. },
  34977. ]
  34978. ))
  34979. characterMakers.push(() => makeCharacter(
  34980. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34981. {
  34982. front: {
  34983. height: math.unit(4 + 1/12, "feet"),
  34984. name: "Front",
  34985. image: {
  34986. source: "./media/characters/star/front.svg",
  34987. extra: 1493/1189,
  34988. bottom: 48/1541
  34989. }
  34990. },
  34991. },
  34992. [
  34993. {
  34994. name: "Normal",
  34995. height: math.unit(4 + 1/12, "feet"),
  34996. default: true
  34997. },
  34998. ]
  34999. ))
  35000. characterMakers.push(() => makeCharacter(
  35001. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35002. {
  35003. front: {
  35004. height: math.unit(6 + 3/12, "feet"),
  35005. name: "Front",
  35006. image: {
  35007. source: "./media/characters/comet/front.svg",
  35008. extra: 1681/1462,
  35009. bottom: 26/1707
  35010. }
  35011. },
  35012. },
  35013. [
  35014. {
  35015. name: "Normal",
  35016. height: math.unit(6 + 3/12, "feet"),
  35017. default: true
  35018. },
  35019. ]
  35020. ))
  35021. characterMakers.push(() => makeCharacter(
  35022. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35023. {
  35024. front: {
  35025. height: math.unit(950, "feet"),
  35026. name: "Front",
  35027. image: {
  35028. source: "./media/characters/vortex/front.svg",
  35029. extra: 1497/1434,
  35030. bottom: 56/1553
  35031. }
  35032. },
  35033. maw: {
  35034. height: math.unit(285, "feet"),
  35035. name: "Maw",
  35036. image: {
  35037. source: "./media/characters/vortex/maw.svg"
  35038. }
  35039. },
  35040. },
  35041. [
  35042. {
  35043. name: "Macro",
  35044. height: math.unit(950, "feet"),
  35045. default: true
  35046. },
  35047. ]
  35048. ))
  35049. characterMakers.push(() => makeCharacter(
  35050. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35051. {
  35052. front: {
  35053. height: math.unit(600, "feet"),
  35054. weight: math.unit(0.02, "grams"),
  35055. name: "Front",
  35056. image: {
  35057. source: "./media/characters/doodle/front.svg",
  35058. extra: 1578/1413,
  35059. bottom: 37/1615
  35060. }
  35061. },
  35062. },
  35063. [
  35064. {
  35065. name: "Macro",
  35066. height: math.unit(600, "feet"),
  35067. default: true
  35068. },
  35069. ]
  35070. ))
  35071. characterMakers.push(() => makeCharacter(
  35072. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35073. {
  35074. front: {
  35075. height: math.unit(6 + 6/12, "feet"),
  35076. name: "Front",
  35077. image: {
  35078. source: "./media/characters/jai/front.svg",
  35079. extra: 1645/1534,
  35080. bottom: 115/1760
  35081. }
  35082. },
  35083. },
  35084. [
  35085. {
  35086. name: "Normal",
  35087. height: math.unit(6 + 6/12, "feet"),
  35088. default: true
  35089. },
  35090. ]
  35091. ))
  35092. characterMakers.push(() => makeCharacter(
  35093. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35094. {
  35095. front: {
  35096. height: math.unit(6 + 8/12, "feet"),
  35097. name: "Front",
  35098. image: {
  35099. source: "./media/characters/pixel/front.svg",
  35100. extra: 1900/1735,
  35101. bottom: 63/1963
  35102. }
  35103. },
  35104. },
  35105. [
  35106. {
  35107. name: "Normal",
  35108. height: math.unit(6 + 8/12, "feet"),
  35109. default: true
  35110. },
  35111. ]
  35112. ))
  35113. characterMakers.push(() => makeCharacter(
  35114. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35115. {
  35116. front: {
  35117. height: math.unit(4 + 11/12, "feet"),
  35118. weight: math.unit(111, "lb"),
  35119. name: "Front",
  35120. image: {
  35121. source: "./media/characters/rhett/front.svg",
  35122. extra: 1682/1586,
  35123. bottom: 92/1774
  35124. }
  35125. },
  35126. },
  35127. [
  35128. {
  35129. name: "Mini",
  35130. height: math.unit(1 + 1/12, "feet")
  35131. },
  35132. {
  35133. name: "Normal",
  35134. height: math.unit(4 + 11/12, "feet"),
  35135. default: true
  35136. },
  35137. ]
  35138. ))
  35139. characterMakers.push(() => makeCharacter(
  35140. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35141. {
  35142. front: {
  35143. height: math.unit(3 + 3/12, "feet"),
  35144. name: "Front",
  35145. image: {
  35146. source: "./media/characters/penny/front.svg",
  35147. extra: 1406/1311,
  35148. bottom: 26/1432
  35149. }
  35150. },
  35151. },
  35152. [
  35153. {
  35154. name: "Normal",
  35155. height: math.unit(3 + 3/12, "feet"),
  35156. default: true
  35157. },
  35158. ]
  35159. ))
  35160. characterMakers.push(() => makeCharacter(
  35161. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35162. {
  35163. front: {
  35164. height: math.unit(4 + 11/12, "feet"),
  35165. name: "Front",
  35166. image: {
  35167. source: "./media/characters/monty/front.svg",
  35168. extra: 1479/1209,
  35169. bottom: 0/1479
  35170. }
  35171. },
  35172. },
  35173. [
  35174. {
  35175. name: "Normal",
  35176. height: math.unit(4 + 11/12, "feet"),
  35177. default: true
  35178. },
  35179. ]
  35180. ))
  35181. characterMakers.push(() => makeCharacter(
  35182. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35183. {
  35184. front: {
  35185. height: math.unit(8 + 4/12, "feet"),
  35186. name: "Front",
  35187. image: {
  35188. source: "./media/characters/sterling/front.svg",
  35189. extra: 1420/1236,
  35190. bottom: 27/1447
  35191. }
  35192. },
  35193. },
  35194. [
  35195. {
  35196. name: "Normal",
  35197. height: math.unit(8 + 4/12, "feet"),
  35198. default: true
  35199. },
  35200. ]
  35201. ))
  35202. characterMakers.push(() => makeCharacter(
  35203. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35204. {
  35205. front: {
  35206. height: math.unit(15, "feet"),
  35207. name: "Front",
  35208. image: {
  35209. source: "./media/characters/marble/front.svg",
  35210. extra: 973/937,
  35211. bottom: 32/1005
  35212. }
  35213. },
  35214. },
  35215. [
  35216. {
  35217. name: "Normal",
  35218. height: math.unit(15, "feet"),
  35219. default: true
  35220. },
  35221. ]
  35222. ))
  35223. characterMakers.push(() => makeCharacter(
  35224. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35225. {
  35226. front: {
  35227. height: math.unit(3, "inches"),
  35228. name: "Front",
  35229. image: {
  35230. source: "./media/characters/powder/front.svg",
  35231. extra: 1504/1334,
  35232. bottom: 518/2022
  35233. }
  35234. },
  35235. },
  35236. [
  35237. {
  35238. name: "Normal",
  35239. height: math.unit(3, "inches"),
  35240. default: true
  35241. },
  35242. ]
  35243. ))
  35244. characterMakers.push(() => makeCharacter(
  35245. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35246. {
  35247. front: {
  35248. height: math.unit(4 + 5/12, "feet"),
  35249. name: "Front",
  35250. image: {
  35251. source: "./media/characters/joey-raccoon/front.svg",
  35252. extra: 1273/1197,
  35253. bottom: 0/1273
  35254. }
  35255. },
  35256. },
  35257. [
  35258. {
  35259. name: "Normal",
  35260. height: math.unit(4 + 5/12, "feet"),
  35261. default: true
  35262. },
  35263. ]
  35264. ))
  35265. characterMakers.push(() => makeCharacter(
  35266. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35267. {
  35268. front: {
  35269. height: math.unit(8 + 4/12, "feet"),
  35270. name: "Front",
  35271. image: {
  35272. source: "./media/characters/vick/front.svg",
  35273. extra: 2187/2118,
  35274. bottom: 47/2234
  35275. }
  35276. },
  35277. },
  35278. [
  35279. {
  35280. name: "Normal",
  35281. height: math.unit(8 + 4/12, "feet"),
  35282. default: true
  35283. },
  35284. ]
  35285. ))
  35286. characterMakers.push(() => makeCharacter(
  35287. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35288. {
  35289. front: {
  35290. height: math.unit(5 + 5/12, "feet"),
  35291. name: "Front",
  35292. image: {
  35293. source: "./media/characters/mitsy/front.svg",
  35294. extra: 1842/1695,
  35295. bottom: 0/1842
  35296. }
  35297. },
  35298. },
  35299. [
  35300. {
  35301. name: "Normal",
  35302. height: math.unit(5 + 5/12, "feet"),
  35303. default: true
  35304. },
  35305. ]
  35306. ))
  35307. characterMakers.push(() => makeCharacter(
  35308. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35309. {
  35310. front: {
  35311. height: math.unit(6 + 3/12, "feet"),
  35312. name: "Front",
  35313. image: {
  35314. source: "./media/characters/silvy/front.svg",
  35315. extra: 1995/1836,
  35316. bottom: 225/2220
  35317. }
  35318. },
  35319. },
  35320. [
  35321. {
  35322. name: "Normal",
  35323. height: math.unit(6 + 3/12, "feet"),
  35324. default: true
  35325. },
  35326. ]
  35327. ))
  35328. characterMakers.push(() => makeCharacter(
  35329. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35330. {
  35331. front: {
  35332. height: math.unit(3 + 8/12, "feet"),
  35333. name: "Front",
  35334. image: {
  35335. source: "./media/characters/rodney/front.svg",
  35336. extra: 1956/1747,
  35337. bottom: 31/1987
  35338. }
  35339. },
  35340. frontDressed: {
  35341. height: math.unit(2.9, "feet"),
  35342. name: "Front (Dressed)",
  35343. image: {
  35344. source: "./media/characters/rodney/front-dressed.svg",
  35345. extra: 1382/1241,
  35346. bottom: 385/1767
  35347. }
  35348. },
  35349. },
  35350. [
  35351. {
  35352. name: "Normal",
  35353. height: math.unit(3 + 8/12, "feet"),
  35354. default: true
  35355. },
  35356. ]
  35357. ))
  35358. characterMakers.push(() => makeCharacter(
  35359. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35360. {
  35361. front: {
  35362. height: math.unit(5 + 9/12, "feet"),
  35363. weight: math.unit(194, "lbs"),
  35364. name: "Front",
  35365. image: {
  35366. source: "./media/characters/zakail-sudekai/front.svg",
  35367. extra: 2696/2533,
  35368. bottom: 248/2944
  35369. }
  35370. },
  35371. maw: {
  35372. height: math.unit(1.35, "feet"),
  35373. name: "Maw",
  35374. image: {
  35375. source: "./media/characters/zakail-sudekai/maw.svg"
  35376. }
  35377. },
  35378. },
  35379. [
  35380. {
  35381. name: "Normal",
  35382. height: math.unit(5 + 9/12, "feet"),
  35383. default: true
  35384. },
  35385. ]
  35386. ))
  35387. characterMakers.push(() => makeCharacter(
  35388. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35389. {
  35390. front: {
  35391. height: math.unit(8 + 4/12, "feet"),
  35392. weight: math.unit(1200, "lb"),
  35393. name: "Front",
  35394. image: {
  35395. source: "./media/characters/eleanor/front.svg",
  35396. extra: 1226/1192,
  35397. bottom: 52/1278
  35398. }
  35399. },
  35400. back: {
  35401. height: math.unit(8 + 4/12, "feet"),
  35402. weight: math.unit(1200, "lb"),
  35403. name: "Back",
  35404. image: {
  35405. source: "./media/characters/eleanor/back.svg",
  35406. extra: 1242/1184,
  35407. bottom: 60/1302
  35408. }
  35409. },
  35410. head: {
  35411. height: math.unit(2.62, "feet"),
  35412. name: "Head",
  35413. image: {
  35414. source: "./media/characters/eleanor/head.svg"
  35415. }
  35416. },
  35417. },
  35418. [
  35419. {
  35420. name: "Normal",
  35421. height: math.unit(8 + 4/12, "feet"),
  35422. default: true
  35423. },
  35424. ]
  35425. ))
  35426. characterMakers.push(() => makeCharacter(
  35427. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35428. {
  35429. front: {
  35430. height: math.unit(8 + 4/12, "feet"),
  35431. weight: math.unit(750, "lb"),
  35432. name: "Front",
  35433. image: {
  35434. source: "./media/characters/tanya/front.svg",
  35435. extra: 1749/1615,
  35436. bottom: 33/1782
  35437. }
  35438. },
  35439. },
  35440. [
  35441. {
  35442. name: "Normal",
  35443. height: math.unit(8 + 4/12, "feet"),
  35444. default: true
  35445. },
  35446. ]
  35447. ))
  35448. characterMakers.push(() => makeCharacter(
  35449. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35450. {
  35451. front: {
  35452. height: math.unit(5, "feet"),
  35453. weight: math.unit(225, "lb"),
  35454. name: "Front",
  35455. image: {
  35456. source: "./media/characters/cindy/front.svg",
  35457. extra: 1320/1250,
  35458. bottom: 42/1362
  35459. }
  35460. },
  35461. frontDressed: {
  35462. height: math.unit(5, "feet"),
  35463. weight: math.unit(225, "lb"),
  35464. name: "Front (Dressed)",
  35465. image: {
  35466. source: "./media/characters/cindy/front-dressed.svg",
  35467. extra: 1320/1250,
  35468. bottom: 42/1362
  35469. }
  35470. },
  35471. back: {
  35472. height: math.unit(5, "feet"),
  35473. weight: math.unit(225, "lb"),
  35474. name: "Back",
  35475. image: {
  35476. source: "./media/characters/cindy/back.svg",
  35477. extra: 1384/1346,
  35478. bottom: 14/1398
  35479. }
  35480. },
  35481. },
  35482. [
  35483. {
  35484. name: "Normal",
  35485. height: math.unit(5, "feet"),
  35486. default: true
  35487. },
  35488. ]
  35489. ))
  35490. characterMakers.push(() => makeCharacter(
  35491. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35492. {
  35493. front: {
  35494. height: math.unit(6 + 9/12, "feet"),
  35495. weight: math.unit(440, "lb"),
  35496. name: "Front",
  35497. image: {
  35498. source: "./media/characters/wilbur-owen/front.svg",
  35499. extra: 1575/1448,
  35500. bottom: 72/1647
  35501. }
  35502. },
  35503. back: {
  35504. height: math.unit(6 + 9/12, "feet"),
  35505. weight: math.unit(440, "lb"),
  35506. name: "Back",
  35507. image: {
  35508. source: "./media/characters/wilbur-owen/back.svg",
  35509. extra: 1578/1445,
  35510. bottom: 36/1614
  35511. }
  35512. },
  35513. },
  35514. [
  35515. {
  35516. name: "Normal",
  35517. height: math.unit(6 + 9/12, "feet"),
  35518. default: true
  35519. },
  35520. ]
  35521. ))
  35522. characterMakers.push(() => makeCharacter(
  35523. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35524. {
  35525. front: {
  35526. height: math.unit(6 + 5/12, "feet"),
  35527. weight: math.unit(650, "lb"),
  35528. name: "Front",
  35529. image: {
  35530. source: "./media/characters/keegan/front.svg",
  35531. extra: 2387/2198,
  35532. bottom: 33/2420
  35533. }
  35534. },
  35535. side: {
  35536. height: math.unit(6 + 5/12, "feet"),
  35537. weight: math.unit(650, "lb"),
  35538. name: "Side",
  35539. image: {
  35540. source: "./media/characters/keegan/side.svg",
  35541. extra: 2390/2202,
  35542. bottom: 47/2437
  35543. }
  35544. },
  35545. back: {
  35546. height: math.unit(6 + 5/12, "feet"),
  35547. weight: math.unit(650, "lb"),
  35548. name: "Back",
  35549. image: {
  35550. source: "./media/characters/keegan/back.svg",
  35551. extra: 2418/2268,
  35552. bottom: 15/2433
  35553. }
  35554. },
  35555. frontSfw: {
  35556. height: math.unit(6 + 5/12, "feet"),
  35557. weight: math.unit(650, "lb"),
  35558. name: "Front (SFW)",
  35559. image: {
  35560. source: "./media/characters/keegan/front-sfw.svg",
  35561. extra: 2387/2198,
  35562. bottom: 33/2420
  35563. }
  35564. },
  35565. beans: {
  35566. height: math.unit(1.85, "feet"),
  35567. name: "Beans",
  35568. image: {
  35569. source: "./media/characters/keegan/beans.svg"
  35570. }
  35571. },
  35572. },
  35573. [
  35574. {
  35575. name: "Normal",
  35576. height: math.unit(6 + 5/12, "feet"),
  35577. default: true
  35578. },
  35579. ]
  35580. ))
  35581. characterMakers.push(() => makeCharacter(
  35582. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35583. {
  35584. front: {
  35585. height: math.unit(9, "feet"),
  35586. name: "Front",
  35587. image: {
  35588. source: "./media/characters/colton/front.svg",
  35589. extra: 1589/1326,
  35590. bottom: 139/1728
  35591. }
  35592. },
  35593. },
  35594. [
  35595. {
  35596. name: "Normal",
  35597. height: math.unit(9, "feet"),
  35598. default: true
  35599. },
  35600. ]
  35601. ))
  35602. characterMakers.push(() => makeCharacter(
  35603. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35604. {
  35605. front: {
  35606. height: math.unit(2 + 9/12, "feet"),
  35607. name: "Front",
  35608. image: {
  35609. source: "./media/characters/bora/front.svg",
  35610. extra: 1265/1250,
  35611. bottom: 24/1289
  35612. }
  35613. },
  35614. },
  35615. [
  35616. {
  35617. name: "Normal",
  35618. height: math.unit(2 + 9/12, "feet"),
  35619. default: true
  35620. },
  35621. ]
  35622. ))
  35623. characterMakers.push(() => makeCharacter(
  35624. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35625. {
  35626. front: {
  35627. height: math.unit(8, "feet"),
  35628. name: "Front",
  35629. image: {
  35630. source: "./media/characters/myu-myu/front.svg",
  35631. extra: 1949/1857,
  35632. bottom: 90/2039
  35633. }
  35634. },
  35635. },
  35636. [
  35637. {
  35638. name: "Normal",
  35639. height: math.unit(8, "feet"),
  35640. default: true
  35641. },
  35642. {
  35643. name: "Big",
  35644. height: math.unit(15, "feet")
  35645. },
  35646. {
  35647. name: "BIG",
  35648. height: math.unit(25, "feet")
  35649. },
  35650. ]
  35651. ))
  35652. characterMakers.push(() => makeCharacter(
  35653. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35654. {
  35655. side: {
  35656. height: math.unit(7 + 5/12, "feet"),
  35657. weight: math.unit(2800, "lb"),
  35658. name: "Side",
  35659. image: {
  35660. source: "./media/characters/haloren/side.svg",
  35661. extra: 1793/409,
  35662. bottom: 59/1852
  35663. }
  35664. },
  35665. frontPaw: {
  35666. height: math.unit(2.36, "feet"),
  35667. name: "Front paw",
  35668. image: {
  35669. source: "./media/characters/haloren/front-paw.svg"
  35670. }
  35671. },
  35672. hindPaw: {
  35673. height: math.unit(3.18, "feet"),
  35674. name: "Hind paw",
  35675. image: {
  35676. source: "./media/characters/haloren/hind-paw.svg"
  35677. }
  35678. },
  35679. maw: {
  35680. height: math.unit(5.05, "feet"),
  35681. name: "Maw",
  35682. image: {
  35683. source: "./media/characters/haloren/maw.svg"
  35684. }
  35685. },
  35686. dick: {
  35687. height: math.unit(2.90, "feet"),
  35688. name: "Dick",
  35689. image: {
  35690. source: "./media/characters/haloren/dick.svg"
  35691. }
  35692. },
  35693. },
  35694. [
  35695. {
  35696. name: "Normal",
  35697. height: math.unit(7 + 5/12, "feet"),
  35698. default: true
  35699. },
  35700. {
  35701. name: "Enhanced",
  35702. height: math.unit(14 + 3/12, "feet")
  35703. },
  35704. ]
  35705. ))
  35706. characterMakers.push(() => makeCharacter(
  35707. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35708. {
  35709. front: {
  35710. height: math.unit(171, "cm"),
  35711. name: "Front",
  35712. image: {
  35713. source: "./media/characters/kimmy/front.svg",
  35714. extra: 1491/1435,
  35715. bottom: 53/1544
  35716. }
  35717. },
  35718. },
  35719. [
  35720. {
  35721. name: "Small",
  35722. height: math.unit(9, "cm")
  35723. },
  35724. {
  35725. name: "Normal",
  35726. height: math.unit(171, "cm"),
  35727. default: true
  35728. },
  35729. ]
  35730. ))
  35731. characterMakers.push(() => makeCharacter(
  35732. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35733. {
  35734. front: {
  35735. height: math.unit(8, "feet"),
  35736. weight: math.unit(300, "lb"),
  35737. name: "Front",
  35738. image: {
  35739. source: "./media/characters/galeboomer/front.svg",
  35740. extra: 4651/4415,
  35741. bottom: 162/4813
  35742. }
  35743. },
  35744. back: {
  35745. height: math.unit(8, "feet"),
  35746. weight: math.unit(300, "lb"),
  35747. name: "Back",
  35748. image: {
  35749. source: "./media/characters/galeboomer/back.svg",
  35750. extra: 4544/4314,
  35751. bottom: 16/4560
  35752. }
  35753. },
  35754. frontAlt: {
  35755. height: math.unit(8, "feet"),
  35756. weight: math.unit(300, "lb"),
  35757. name: "Front (Alt)",
  35758. image: {
  35759. source: "./media/characters/galeboomer/front-alt.svg",
  35760. extra: 4458/4228,
  35761. bottom: 68/4526
  35762. }
  35763. },
  35764. maw: {
  35765. height: math.unit(1.2, "feet"),
  35766. name: "Maw",
  35767. image: {
  35768. source: "./media/characters/galeboomer/maw.svg"
  35769. }
  35770. },
  35771. },
  35772. [
  35773. {
  35774. name: "Normal",
  35775. height: math.unit(8, "feet"),
  35776. default: true
  35777. },
  35778. ]
  35779. ))
  35780. characterMakers.push(() => makeCharacter(
  35781. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35782. {
  35783. front: {
  35784. height: math.unit(5 + 9/12, "feet"),
  35785. weight: math.unit(120, "lb"),
  35786. name: "Front",
  35787. image: {
  35788. source: "./media/characters/chyr/front.svg",
  35789. extra: 1323/1254,
  35790. bottom: 63/1386
  35791. }
  35792. },
  35793. back: {
  35794. height: math.unit(5 + 9/12, "feet"),
  35795. weight: math.unit(120, "lb"),
  35796. name: "Back",
  35797. image: {
  35798. source: "./media/characters/chyr/back.svg",
  35799. extra: 1323/1252,
  35800. bottom: 48/1371
  35801. }
  35802. },
  35803. },
  35804. [
  35805. {
  35806. name: "Normal",
  35807. height: math.unit(5 + 9/12, "feet"),
  35808. default: true
  35809. },
  35810. ]
  35811. ))
  35812. characterMakers.push(() => makeCharacter(
  35813. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35814. {
  35815. front: {
  35816. height: math.unit(7, "feet"),
  35817. weight: math.unit(310, "lb"),
  35818. name: "Front",
  35819. image: {
  35820. source: "./media/characters/solarus/front.svg",
  35821. extra: 2415/2021,
  35822. bottom: 103/2518
  35823. }
  35824. },
  35825. back: {
  35826. height: math.unit(7, "feet"),
  35827. weight: math.unit(310, "lb"),
  35828. name: "Back",
  35829. image: {
  35830. source: "./media/characters/solarus/back.svg",
  35831. extra: 2463/2089,
  35832. bottom: 79/2542
  35833. }
  35834. },
  35835. },
  35836. [
  35837. {
  35838. name: "Normal",
  35839. height: math.unit(7, "feet"),
  35840. default: true
  35841. },
  35842. ]
  35843. ))
  35844. characterMakers.push(() => makeCharacter(
  35845. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35846. {
  35847. front: {
  35848. height: math.unit(16, "feet"),
  35849. name: "Front",
  35850. image: {
  35851. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35852. extra: 1844/1780,
  35853. bottom: 58/1902
  35854. }
  35855. },
  35856. winterCoat: {
  35857. height: math.unit(16, "feet"),
  35858. name: "Winter Coat",
  35859. image: {
  35860. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  35861. extra: 1807/1775,
  35862. bottom: 69/1876
  35863. }
  35864. },
  35865. },
  35866. [
  35867. {
  35868. name: "Normal",
  35869. height: math.unit(16, "feet"),
  35870. default: true
  35871. },
  35872. {
  35873. name: "Chicago Size",
  35874. height: math.unit(560, "feet")
  35875. },
  35876. ]
  35877. ))
  35878. characterMakers.push(() => makeCharacter(
  35879. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35880. {
  35881. front: {
  35882. height: math.unit(11 + 6/12, "feet"),
  35883. weight: math.unit(1366, "lb"),
  35884. name: "Front",
  35885. image: {
  35886. source: "./media/characters/lexor/front.svg",
  35887. extra: 1560/1481,
  35888. bottom: 211/1771
  35889. }
  35890. },
  35891. back: {
  35892. height: math.unit(11 + 6/12, "feet"),
  35893. weight: math.unit(1366, "lb"),
  35894. name: "Back",
  35895. image: {
  35896. source: "./media/characters/lexor/back.svg",
  35897. extra: 1614/1533,
  35898. bottom: 76/1690
  35899. }
  35900. },
  35901. maw: {
  35902. height: math.unit(3, "feet"),
  35903. name: "Maw",
  35904. image: {
  35905. source: "./media/characters/lexor/maw.svg"
  35906. }
  35907. },
  35908. dick: {
  35909. height: math.unit(2.59, "feet"),
  35910. name: "Dick",
  35911. image: {
  35912. source: "./media/characters/lexor/dick.svg"
  35913. }
  35914. },
  35915. },
  35916. [
  35917. {
  35918. name: "Normal",
  35919. height: math.unit(11 + 6/12, "feet"),
  35920. default: true
  35921. },
  35922. ]
  35923. ))
  35924. characterMakers.push(() => makeCharacter(
  35925. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35926. {
  35927. front: {
  35928. height: math.unit(5 + 8/12, "feet"),
  35929. name: "Front",
  35930. image: {
  35931. source: "./media/characters/magnum/front.svg",
  35932. extra: 942/855,
  35933. bottom: 26/968
  35934. }
  35935. },
  35936. },
  35937. [
  35938. {
  35939. name: "Normal",
  35940. height: math.unit(5 + 8/12, "feet"),
  35941. default: true
  35942. },
  35943. ]
  35944. ))
  35945. characterMakers.push(() => makeCharacter(
  35946. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35947. {
  35948. front: {
  35949. height: math.unit(18 + 4/12, "feet"),
  35950. weight: math.unit(1500, "kg"),
  35951. name: "Front",
  35952. image: {
  35953. source: "./media/characters/solas-sharpsman/front.svg",
  35954. extra: 1698/1589,
  35955. bottom: 0/1698
  35956. }
  35957. },
  35958. },
  35959. [
  35960. {
  35961. name: "Normal",
  35962. height: math.unit(18 + 4/12, "feet"),
  35963. default: true
  35964. },
  35965. ]
  35966. ))
  35967. characterMakers.push(() => makeCharacter(
  35968. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35969. {
  35970. front: {
  35971. height: math.unit(5 + 5/12, "feet"),
  35972. weight: math.unit(180, "lb"),
  35973. name: "Front",
  35974. image: {
  35975. source: "./media/characters/october/front.svg",
  35976. extra: 1800/1650,
  35977. bottom: 0/1800
  35978. }
  35979. },
  35980. frontNsfw: {
  35981. height: math.unit(5 + 5/12, "feet"),
  35982. weight: math.unit(180, "lb"),
  35983. name: "Front (NSFW)",
  35984. image: {
  35985. source: "./media/characters/october/front-nsfw.svg",
  35986. extra: 1392/1307,
  35987. bottom: 42/1434
  35988. }
  35989. },
  35990. },
  35991. [
  35992. {
  35993. name: "Normal",
  35994. height: math.unit(5 + 5/12, "feet"),
  35995. default: true
  35996. },
  35997. ]
  35998. ))
  35999. characterMakers.push(() => makeCharacter(
  36000. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36001. {
  36002. front: {
  36003. height: math.unit(8 + 6/12, "feet"),
  36004. name: "Front",
  36005. image: {
  36006. source: "./media/characters/essynkardi/front.svg",
  36007. extra: 1914/1846,
  36008. bottom: 22/1936
  36009. }
  36010. },
  36011. },
  36012. [
  36013. {
  36014. name: "Normal",
  36015. height: math.unit(8 + 6/12, "feet"),
  36016. default: true
  36017. },
  36018. ]
  36019. ))
  36020. characterMakers.push(() => makeCharacter(
  36021. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36022. {
  36023. front: {
  36024. height: math.unit(6 + 6/12, "feet"),
  36025. weight: math.unit(7, "lb"),
  36026. name: "Front",
  36027. image: {
  36028. source: "./media/characters/icky/front.svg",
  36029. extra: 813/782,
  36030. bottom: 66/879
  36031. }
  36032. },
  36033. back: {
  36034. height: math.unit(6 + 6/12, "feet"),
  36035. weight: math.unit(7, "lb"),
  36036. name: "Back",
  36037. image: {
  36038. source: "./media/characters/icky/back.svg",
  36039. extra: 754/735,
  36040. bottom: 56/810
  36041. }
  36042. },
  36043. },
  36044. [
  36045. {
  36046. name: "Normal",
  36047. height: math.unit(6 + 6/12, "feet"),
  36048. default: true
  36049. },
  36050. ]
  36051. ))
  36052. characterMakers.push(() => makeCharacter(
  36053. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36054. {
  36055. front: {
  36056. height: math.unit(15, "feet"),
  36057. name: "Front",
  36058. image: {
  36059. source: "./media/characters/rojas/front.svg",
  36060. extra: 1462/1408,
  36061. bottom: 95/1557
  36062. }
  36063. },
  36064. back: {
  36065. height: math.unit(15, "feet"),
  36066. name: "Back",
  36067. image: {
  36068. source: "./media/characters/rojas/back.svg",
  36069. extra: 1023/954,
  36070. bottom: 28/1051
  36071. }
  36072. },
  36073. },
  36074. [
  36075. {
  36076. name: "Normal",
  36077. height: math.unit(15, "feet"),
  36078. default: true
  36079. },
  36080. ]
  36081. ))
  36082. characterMakers.push(() => makeCharacter(
  36083. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36084. {
  36085. frontHuman: {
  36086. height: math.unit(5 + 7/12, "feet"),
  36087. name: "Front (Human)",
  36088. image: {
  36089. source: "./media/characters/alek-dryagan/front-human.svg",
  36090. extra: 1687/1667,
  36091. bottom: 69/1756
  36092. }
  36093. },
  36094. backHuman: {
  36095. height: math.unit(5 + 7/12, "feet"),
  36096. name: "Back (Human)",
  36097. image: {
  36098. source: "./media/characters/alek-dryagan/back-human.svg",
  36099. extra: 1670/1649,
  36100. bottom: 65/1735
  36101. }
  36102. },
  36103. frontDemi: {
  36104. height: math.unit(65, "feet"),
  36105. name: "Front (Demi)",
  36106. image: {
  36107. source: "./media/characters/alek-dryagan/front-demi.svg",
  36108. extra: 1669/1642,
  36109. bottom: 49/1718
  36110. }
  36111. },
  36112. backDemi: {
  36113. height: math.unit(65, "feet"),
  36114. name: "Back (Demi)",
  36115. image: {
  36116. source: "./media/characters/alek-dryagan/back-demi.svg",
  36117. extra: 1658/1637,
  36118. bottom: 40/1698
  36119. }
  36120. },
  36121. mawHuman: {
  36122. height: math.unit(0.3, "feet"),
  36123. name: "Maw (Human)",
  36124. image: {
  36125. source: "./media/characters/alek-dryagan/maw-human.svg"
  36126. }
  36127. },
  36128. mawDemi: {
  36129. height: math.unit(3.8, "feet"),
  36130. name: "Maw (Demi)",
  36131. image: {
  36132. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36133. }
  36134. },
  36135. },
  36136. [
  36137. {
  36138. name: "Normal",
  36139. height: math.unit(5 + 7/12, "feet"),
  36140. default: true
  36141. },
  36142. ]
  36143. ))
  36144. characterMakers.push(() => makeCharacter(
  36145. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36146. {
  36147. frontHuman: {
  36148. height: math.unit(5 + 2/12, "feet"),
  36149. name: "Front (Human)",
  36150. image: {
  36151. source: "./media/characters/gen/front-human.svg",
  36152. extra: 1627/1538,
  36153. bottom: 71/1698
  36154. }
  36155. },
  36156. backHuman: {
  36157. height: math.unit(5 + 2/12, "feet"),
  36158. name: "Back (Human)",
  36159. image: {
  36160. source: "./media/characters/gen/back-human.svg",
  36161. extra: 1638/1548,
  36162. bottom: 69/1707
  36163. }
  36164. },
  36165. frontDemi: {
  36166. height: math.unit(5 + 2/12, "feet"),
  36167. name: "Front (Demi)",
  36168. image: {
  36169. source: "./media/characters/gen/front-demi.svg",
  36170. extra: 1627/1538,
  36171. bottom: 71/1698
  36172. }
  36173. },
  36174. backDemi: {
  36175. height: math.unit(5 + 2/12, "feet"),
  36176. name: "Back (Demi)",
  36177. image: {
  36178. source: "./media/characters/gen/back-demi.svg",
  36179. extra: 1638/1548,
  36180. bottom: 69/1707
  36181. }
  36182. },
  36183. },
  36184. [
  36185. {
  36186. name: "Normal",
  36187. height: math.unit(5 + 2/12, "feet"),
  36188. default: true
  36189. },
  36190. ]
  36191. ))
  36192. characterMakers.push(() => makeCharacter(
  36193. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36194. {
  36195. frontImp: {
  36196. height: math.unit(1 + 11/12, "feet"),
  36197. name: "Front (Imp)",
  36198. image: {
  36199. source: "./media/characters/max-kobold/front-imp.svg",
  36200. extra: 1238/1134,
  36201. bottom: 81/1319
  36202. }
  36203. },
  36204. backImp: {
  36205. height: math.unit(1 + 11/12, "feet"),
  36206. name: "Back (Imp)",
  36207. image: {
  36208. source: "./media/characters/max-kobold/back-imp.svg",
  36209. extra: 1334/1175,
  36210. bottom: 34/1368
  36211. }
  36212. },
  36213. frontDemi: {
  36214. height: math.unit(5 + 9/12, "feet"),
  36215. name: "Front (Demi)",
  36216. image: {
  36217. source: "./media/characters/max-kobold/front-demi.svg",
  36218. extra: 1715/1685,
  36219. bottom: 54/1769
  36220. }
  36221. },
  36222. backDemi: {
  36223. height: math.unit(5 + 9/12, "feet"),
  36224. name: "Back (Demi)",
  36225. image: {
  36226. source: "./media/characters/max-kobold/back-demi.svg",
  36227. extra: 1752/1729,
  36228. bottom: 41/1793
  36229. }
  36230. },
  36231. handImp: {
  36232. height: math.unit(0.45, "feet"),
  36233. name: "Hand (Imp)",
  36234. image: {
  36235. source: "./media/characters/max-kobold/hand.svg"
  36236. }
  36237. },
  36238. pawImp: {
  36239. height: math.unit(0.46, "feet"),
  36240. name: "Paw (Imp)",
  36241. image: {
  36242. source: "./media/characters/max-kobold/paw.svg"
  36243. }
  36244. },
  36245. handDemi: {
  36246. height: math.unit(0.80, "feet"),
  36247. name: "Hand (Demi)",
  36248. image: {
  36249. source: "./media/characters/max-kobold/hand.svg"
  36250. }
  36251. },
  36252. pawDemi: {
  36253. height: math.unit(1.1, "feet"),
  36254. name: "Paw (Demi)",
  36255. image: {
  36256. source: "./media/characters/max-kobold/paw.svg"
  36257. }
  36258. },
  36259. headImp: {
  36260. height: math.unit(1.33, "feet"),
  36261. name: "Head (Imp)",
  36262. image: {
  36263. source: "./media/characters/max-kobold/head-imp.svg"
  36264. }
  36265. },
  36266. mawImp: {
  36267. height: math.unit(0.75, "feet"),
  36268. name: "Maw (Imp)",
  36269. image: {
  36270. source: "./media/characters/max-kobold/maw-imp.svg"
  36271. }
  36272. },
  36273. mawDemi: {
  36274. height: math.unit(0.42, "feet"),
  36275. name: "Maw (Demi)",
  36276. image: {
  36277. source: "./media/characters/max-kobold/maw-demi.svg"
  36278. }
  36279. },
  36280. },
  36281. [
  36282. {
  36283. name: "Normal",
  36284. height: math.unit(1 + 11/12, "feet"),
  36285. default: true
  36286. },
  36287. ]
  36288. ))
  36289. characterMakers.push(() => makeCharacter(
  36290. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36291. {
  36292. front: {
  36293. height: math.unit(7 + 5/12, "feet"),
  36294. name: "Front",
  36295. image: {
  36296. source: "./media/characters/carbon/front.svg",
  36297. extra: 1754/1689,
  36298. bottom: 65/1819
  36299. }
  36300. },
  36301. back: {
  36302. height: math.unit(7 + 5/12, "feet"),
  36303. name: "Back",
  36304. image: {
  36305. source: "./media/characters/carbon/back.svg",
  36306. extra: 1762/1695,
  36307. bottom: 24/1786
  36308. }
  36309. },
  36310. frontGigantamax: {
  36311. height: math.unit(150, "feet"),
  36312. name: "Front (Gigantamax)",
  36313. image: {
  36314. source: "./media/characters/carbon/front-gigantamax.svg",
  36315. extra: 1826/1669,
  36316. bottom: 59/1885
  36317. }
  36318. },
  36319. backGigantamax: {
  36320. height: math.unit(150, "feet"),
  36321. name: "Back (Gigantamax)",
  36322. image: {
  36323. source: "./media/characters/carbon/back-gigantamax.svg",
  36324. extra: 1796/1653,
  36325. bottom: 53/1849
  36326. }
  36327. },
  36328. maw: {
  36329. height: math.unit(0.48, "feet"),
  36330. name: "Maw",
  36331. image: {
  36332. source: "./media/characters/carbon/maw.svg"
  36333. }
  36334. },
  36335. mawGigantamax: {
  36336. height: math.unit(7.5, "feet"),
  36337. name: "Maw (Gigantamax)",
  36338. image: {
  36339. source: "./media/characters/carbon/maw-gigantamax.svg"
  36340. }
  36341. },
  36342. },
  36343. [
  36344. {
  36345. name: "Normal",
  36346. height: math.unit(7 + 5/12, "feet"),
  36347. default: true
  36348. },
  36349. ]
  36350. ))
  36351. characterMakers.push(() => makeCharacter(
  36352. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36353. {
  36354. front: {
  36355. height: math.unit(6, "feet"),
  36356. name: "Front",
  36357. image: {
  36358. source: "./media/characters/maverick/front.svg",
  36359. extra: 1672/1661,
  36360. bottom: 85/1757
  36361. }
  36362. },
  36363. back: {
  36364. height: math.unit(6, "feet"),
  36365. name: "Back",
  36366. image: {
  36367. source: "./media/characters/maverick/back.svg",
  36368. extra: 1642/1631,
  36369. bottom: 38/1680
  36370. }
  36371. },
  36372. },
  36373. [
  36374. {
  36375. name: "Normal",
  36376. height: math.unit(6, "feet"),
  36377. default: true
  36378. },
  36379. ]
  36380. ))
  36381. characterMakers.push(() => makeCharacter(
  36382. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36383. {
  36384. front: {
  36385. height: math.unit(15, "feet"),
  36386. weight: math.unit(615, "lb"),
  36387. name: "Front",
  36388. image: {
  36389. source: "./media/characters/grockle/front.svg",
  36390. extra: 1535/1427,
  36391. bottom: 56/1591
  36392. }
  36393. },
  36394. },
  36395. [
  36396. {
  36397. name: "Normal",
  36398. height: math.unit(15, "feet"),
  36399. default: true
  36400. },
  36401. {
  36402. name: "Large",
  36403. height: math.unit(150, "feet")
  36404. },
  36405. {
  36406. name: "Macro",
  36407. height: math.unit(1876, "feet")
  36408. },
  36409. {
  36410. name: "Mega Macro",
  36411. height: math.unit(121940, "feet")
  36412. },
  36413. {
  36414. name: "Giga Macro",
  36415. height: math.unit(750, "km")
  36416. },
  36417. {
  36418. name: "Tera Macro",
  36419. height: math.unit(750000, "km")
  36420. },
  36421. {
  36422. name: "Galactic",
  36423. height: math.unit(1.4e5, "km")
  36424. },
  36425. {
  36426. name: "Godlike",
  36427. height: math.unit(9.8e280, "galaxies")
  36428. },
  36429. ]
  36430. ))
  36431. characterMakers.push(() => makeCharacter(
  36432. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36433. {
  36434. front: {
  36435. height: math.unit(11, "meters"),
  36436. weight: math.unit(20, "tonnes"),
  36437. name: "Front",
  36438. image: {
  36439. source: "./media/characters/alistair/front.svg",
  36440. extra: 1265/1009,
  36441. bottom: 93/1358
  36442. }
  36443. },
  36444. },
  36445. [
  36446. {
  36447. name: "Normal",
  36448. height: math.unit(11, "meters"),
  36449. default: true
  36450. },
  36451. ]
  36452. ))
  36453. characterMakers.push(() => makeCharacter(
  36454. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36455. {
  36456. front: {
  36457. height: math.unit(5 + 8/12, "feet"),
  36458. name: "Front",
  36459. image: {
  36460. source: "./media/characters/haruka/front.svg",
  36461. extra: 2012/1952,
  36462. bottom: 0/2012
  36463. }
  36464. },
  36465. },
  36466. [
  36467. {
  36468. name: "Normal",
  36469. height: math.unit(5 + 8/12, "feet"),
  36470. default: true
  36471. },
  36472. ]
  36473. ))
  36474. characterMakers.push(() => makeCharacter(
  36475. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36476. {
  36477. back: {
  36478. height: math.unit(9, "feet"),
  36479. name: "Back",
  36480. image: {
  36481. source: "./media/characters/vivian-sylveon/back.svg",
  36482. extra: 1853/1714,
  36483. bottom: 0/1853
  36484. }
  36485. },
  36486. },
  36487. [
  36488. {
  36489. name: "Normal",
  36490. height: math.unit(9, "feet"),
  36491. default: true
  36492. },
  36493. {
  36494. name: "Macro",
  36495. height: math.unit(500, "feet")
  36496. },
  36497. {
  36498. name: "Megamacro",
  36499. height: math.unit(600, "miles")
  36500. },
  36501. {
  36502. name: "Gigamacro",
  36503. height: math.unit(30000, "miles")
  36504. },
  36505. ]
  36506. ))
  36507. characterMakers.push(() => makeCharacter(
  36508. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36509. {
  36510. anthro: {
  36511. height: math.unit(5 + 10/12, "feet"),
  36512. weight: math.unit(100, "lb"),
  36513. name: "Anthro",
  36514. image: {
  36515. source: "./media/characters/daiki/anthro.svg",
  36516. extra: 1115/1027,
  36517. bottom: 69/1184
  36518. }
  36519. },
  36520. feral: {
  36521. height: math.unit(200, "feet"),
  36522. name: "Feral",
  36523. image: {
  36524. source: "./media/characters/daiki/feral.svg",
  36525. extra: 1256/313,
  36526. bottom: 39/1295
  36527. }
  36528. },
  36529. feralHead: {
  36530. height: math.unit(171, "feet"),
  36531. name: "Feral Head",
  36532. image: {
  36533. source: "./media/characters/daiki/feral-head.svg"
  36534. }
  36535. },
  36536. manaDragon: {
  36537. height: math.unit(170, "meters"),
  36538. name: "Mana-dragon",
  36539. image: {
  36540. source: "./media/characters/daiki/mana-dragon.svg",
  36541. extra: 763/420,
  36542. bottom: 97/860
  36543. }
  36544. },
  36545. },
  36546. [
  36547. {
  36548. name: "Normal",
  36549. height: math.unit(5 + 10/12, "feet"),
  36550. default: true
  36551. },
  36552. ]
  36553. ))
  36554. characterMakers.push(() => makeCharacter(
  36555. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36556. {
  36557. fullyEquippedFront: {
  36558. height: math.unit(3 + 1/12, "feet"),
  36559. weight: math.unit(24, "lb"),
  36560. name: "Fully Equipped (Front)",
  36561. image: {
  36562. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36563. extra: 687/605,
  36564. bottom: 18/705
  36565. }
  36566. },
  36567. fullyEquippedBack: {
  36568. height: math.unit(3 + 1/12, "feet"),
  36569. weight: math.unit(24, "lb"),
  36570. name: "Fully Equipped (Back)",
  36571. image: {
  36572. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36573. extra: 689/590,
  36574. bottom: 18/707
  36575. }
  36576. },
  36577. dailyWear: {
  36578. height: math.unit(3 + 1/12, "feet"),
  36579. weight: math.unit(24, "lb"),
  36580. name: "Daily Wear",
  36581. image: {
  36582. source: "./media/characters/tea-spot/daily-wear.svg",
  36583. extra: 701/620,
  36584. bottom: 21/722
  36585. }
  36586. },
  36587. maidWork: {
  36588. height: math.unit(3 + 1/12, "feet"),
  36589. weight: math.unit(24, "lb"),
  36590. name: "Maid Work",
  36591. image: {
  36592. source: "./media/characters/tea-spot/maid-work.svg",
  36593. extra: 693/609,
  36594. bottom: 15/708
  36595. }
  36596. },
  36597. },
  36598. [
  36599. {
  36600. name: "Normal",
  36601. height: math.unit(3 + 1/12, "feet"),
  36602. default: true
  36603. },
  36604. ]
  36605. ))
  36606. characterMakers.push(() => makeCharacter(
  36607. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36608. {
  36609. front: {
  36610. height: math.unit(175, "cm"),
  36611. weight: math.unit(75, "kg"),
  36612. name: "Front",
  36613. image: {
  36614. source: "./media/characters/chee/front.svg",
  36615. extra: 1796/1740,
  36616. bottom: 40/1836
  36617. }
  36618. },
  36619. },
  36620. [
  36621. {
  36622. name: "Micro-Micro",
  36623. height: math.unit(1, "nm")
  36624. },
  36625. {
  36626. name: "Micro-erst",
  36627. height: math.unit(1, "micrometer")
  36628. },
  36629. {
  36630. name: "Micro-er",
  36631. height: math.unit(1, "cm")
  36632. },
  36633. {
  36634. name: "Normal",
  36635. height: math.unit(175, "cm"),
  36636. default: true
  36637. },
  36638. {
  36639. name: "Macro",
  36640. height: math.unit(100, "m")
  36641. },
  36642. {
  36643. name: "Macro-er",
  36644. height: math.unit(1, "km")
  36645. },
  36646. {
  36647. name: "Macro-erst",
  36648. height: math.unit(10, "km")
  36649. },
  36650. {
  36651. name: "Macro-Macro",
  36652. height: math.unit(100, "km")
  36653. },
  36654. ]
  36655. ))
  36656. characterMakers.push(() => makeCharacter(
  36657. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36658. {
  36659. front: {
  36660. height: math.unit(11 + 9/12, "feet"),
  36661. weight: math.unit(935, "lb"),
  36662. name: "Front",
  36663. image: {
  36664. source: "./media/characters/kingsley/front.svg",
  36665. extra: 1803/1674,
  36666. bottom: 127/1930
  36667. }
  36668. },
  36669. frontNude: {
  36670. height: math.unit(11 + 9/12, "feet"),
  36671. weight: math.unit(935, "lb"),
  36672. name: "Front (Nude)",
  36673. image: {
  36674. source: "./media/characters/kingsley/front-nude.svg",
  36675. extra: 1803/1674,
  36676. bottom: 127/1930
  36677. }
  36678. },
  36679. },
  36680. [
  36681. {
  36682. name: "Normal",
  36683. height: math.unit(11 + 9/12, "feet"),
  36684. default: true
  36685. },
  36686. ]
  36687. ))
  36688. characterMakers.push(() => makeCharacter(
  36689. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36690. {
  36691. side: {
  36692. height: math.unit(9, "feet"),
  36693. name: "Side",
  36694. image: {
  36695. source: "./media/characters/rymel/side.svg",
  36696. extra: 792/469,
  36697. bottom: 121/913
  36698. }
  36699. },
  36700. maw: {
  36701. height: math.unit(2.4, "meters"),
  36702. name: "Maw",
  36703. image: {
  36704. source: "./media/characters/rymel/maw.svg"
  36705. }
  36706. },
  36707. },
  36708. [
  36709. {
  36710. name: "House Drake",
  36711. height: math.unit(2, "feet")
  36712. },
  36713. {
  36714. name: "Reduced",
  36715. height: math.unit(4.5, "feet")
  36716. },
  36717. {
  36718. name: "Normal",
  36719. height: math.unit(9, "feet"),
  36720. default: true
  36721. },
  36722. ]
  36723. ))
  36724. characterMakers.push(() => makeCharacter(
  36725. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36726. {
  36727. front: {
  36728. height: math.unit(1.74, "meters"),
  36729. weight: math.unit(55, "kg"),
  36730. name: "Front",
  36731. image: {
  36732. source: "./media/characters/rubus/front.svg",
  36733. extra: 1894/1742,
  36734. bottom: 44/1938
  36735. }
  36736. },
  36737. },
  36738. [
  36739. {
  36740. name: "Normal",
  36741. height: math.unit(1.74, "meters"),
  36742. default: true
  36743. },
  36744. ]
  36745. ))
  36746. characterMakers.push(() => makeCharacter(
  36747. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36748. {
  36749. front: {
  36750. height: math.unit(5 + 2/12, "feet"),
  36751. weight: math.unit(112, "lb"),
  36752. name: "Front",
  36753. image: {
  36754. source: "./media/characters/cassie-kingston/front.svg",
  36755. extra: 1438/1390,
  36756. bottom: 47/1485
  36757. }
  36758. },
  36759. },
  36760. [
  36761. {
  36762. name: "Normal",
  36763. height: math.unit(5 + 2/12, "feet"),
  36764. default: true
  36765. },
  36766. {
  36767. name: "Macro",
  36768. height: math.unit(128, "feet")
  36769. },
  36770. {
  36771. name: "Megamacro",
  36772. height: math.unit(2.56, "miles")
  36773. },
  36774. ]
  36775. ))
  36776. characterMakers.push(() => makeCharacter(
  36777. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36778. {
  36779. front: {
  36780. height: math.unit(7, "feet"),
  36781. name: "Front",
  36782. image: {
  36783. source: "./media/characters/fox/front.svg",
  36784. extra: 1798/1703,
  36785. bottom: 55/1853
  36786. }
  36787. },
  36788. back: {
  36789. height: math.unit(7, "feet"),
  36790. name: "Back",
  36791. image: {
  36792. source: "./media/characters/fox/back.svg",
  36793. extra: 1748/1649,
  36794. bottom: 32/1780
  36795. }
  36796. },
  36797. head: {
  36798. height: math.unit(1.95, "feet"),
  36799. name: "Head",
  36800. image: {
  36801. source: "./media/characters/fox/head.svg"
  36802. }
  36803. },
  36804. dick: {
  36805. height: math.unit(1.33, "feet"),
  36806. name: "Dick",
  36807. image: {
  36808. source: "./media/characters/fox/dick.svg"
  36809. }
  36810. },
  36811. foot: {
  36812. height: math.unit(1, "feet"),
  36813. name: "Foot",
  36814. image: {
  36815. source: "./media/characters/fox/foot.svg"
  36816. }
  36817. },
  36818. paw: {
  36819. height: math.unit(0.92, "feet"),
  36820. name: "Paw",
  36821. image: {
  36822. source: "./media/characters/fox/paw.svg"
  36823. }
  36824. },
  36825. },
  36826. [
  36827. {
  36828. name: "Small",
  36829. height: math.unit(3, "inches")
  36830. },
  36831. {
  36832. name: "\"Realistic\"",
  36833. height: math.unit(7, "feet")
  36834. },
  36835. {
  36836. name: "Normal",
  36837. height: math.unit(150, "feet"),
  36838. default: true
  36839. },
  36840. {
  36841. name: "BIG",
  36842. height: math.unit(1200, "feet")
  36843. },
  36844. {
  36845. name: "👀",
  36846. height: math.unit(5, "miles")
  36847. },
  36848. {
  36849. name: "👀👀👀",
  36850. height: math.unit(64, "miles")
  36851. },
  36852. ]
  36853. ))
  36854. characterMakers.push(() => makeCharacter(
  36855. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36856. {
  36857. front: {
  36858. height: math.unit(625, "feet"),
  36859. name: "Front",
  36860. image: {
  36861. source: "./media/characters/asonja-rossa/front.svg",
  36862. extra: 1833/1686,
  36863. bottom: 24/1857
  36864. }
  36865. },
  36866. back: {
  36867. height: math.unit(625, "feet"),
  36868. name: "Back",
  36869. image: {
  36870. source: "./media/characters/asonja-rossa/back.svg",
  36871. extra: 1852/1753,
  36872. bottom: 26/1878
  36873. }
  36874. },
  36875. },
  36876. [
  36877. {
  36878. name: "Macro",
  36879. height: math.unit(625, "feet"),
  36880. default: true
  36881. },
  36882. ]
  36883. ))
  36884. characterMakers.push(() => makeCharacter(
  36885. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36886. {
  36887. side: {
  36888. height: math.unit(8, "feet"),
  36889. name: "Side",
  36890. image: {
  36891. source: "./media/characters/rezukii/side.svg",
  36892. extra: 979/542,
  36893. bottom: 87/1066
  36894. }
  36895. },
  36896. sitting: {
  36897. height: math.unit(14.6, "feet"),
  36898. name: "Sitting",
  36899. image: {
  36900. source: "./media/characters/rezukii/sitting.svg",
  36901. extra: 1023/813,
  36902. bottom: 45/1068
  36903. }
  36904. },
  36905. },
  36906. [
  36907. {
  36908. name: "Tiny",
  36909. height: math.unit(2, "feet")
  36910. },
  36911. {
  36912. name: "Smol",
  36913. height: math.unit(4, "feet")
  36914. },
  36915. {
  36916. name: "Normal",
  36917. height: math.unit(8, "feet"),
  36918. default: true
  36919. },
  36920. {
  36921. name: "Big",
  36922. height: math.unit(12, "feet")
  36923. },
  36924. {
  36925. name: "Macro",
  36926. height: math.unit(30, "feet")
  36927. },
  36928. ]
  36929. ))
  36930. characterMakers.push(() => makeCharacter(
  36931. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36932. {
  36933. front: {
  36934. height: math.unit(14, "feet"),
  36935. weight: math.unit(9.5, "tonnes"),
  36936. name: "Front",
  36937. image: {
  36938. source: "./media/characters/dawnheart/front.svg",
  36939. extra: 2792/2675,
  36940. bottom: 64/2856
  36941. }
  36942. },
  36943. },
  36944. [
  36945. {
  36946. name: "Normal",
  36947. height: math.unit(14, "feet"),
  36948. default: true
  36949. },
  36950. ]
  36951. ))
  36952. characterMakers.push(() => makeCharacter(
  36953. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36954. {
  36955. front: {
  36956. height: math.unit(1.7, "m"),
  36957. name: "Front",
  36958. image: {
  36959. source: "./media/characters/gladi/front.svg",
  36960. extra: 1460/1362,
  36961. bottom: 19/1479
  36962. }
  36963. },
  36964. back: {
  36965. height: math.unit(1.7, "m"),
  36966. name: "Back",
  36967. image: {
  36968. source: "./media/characters/gladi/back.svg",
  36969. extra: 1459/1357,
  36970. bottom: 12/1471
  36971. }
  36972. },
  36973. feral: {
  36974. height: math.unit(2.05, "m"),
  36975. name: "Feral",
  36976. image: {
  36977. source: "./media/characters/gladi/feral.svg",
  36978. extra: 821/557,
  36979. bottom: 91/912
  36980. }
  36981. },
  36982. },
  36983. [
  36984. {
  36985. name: "Shortest",
  36986. height: math.unit(70, "cm")
  36987. },
  36988. {
  36989. name: "Normal",
  36990. height: math.unit(1.7, "m")
  36991. },
  36992. {
  36993. name: "Macro",
  36994. height: math.unit(10, "m"),
  36995. default: true
  36996. },
  36997. {
  36998. name: "Tallest",
  36999. height: math.unit(200, "m")
  37000. },
  37001. ]
  37002. ))
  37003. characterMakers.push(() => makeCharacter(
  37004. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37005. {
  37006. front: {
  37007. height: math.unit(5 + 7/12, "feet"),
  37008. weight: math.unit(2, "tons"),
  37009. name: "Front",
  37010. image: {
  37011. source: "./media/characters/erdno/front.svg",
  37012. extra: 1234/1129,
  37013. bottom: 35/1269
  37014. }
  37015. },
  37016. angled: {
  37017. height: math.unit(5 + 7/12, "feet"),
  37018. weight: math.unit(2, "tons"),
  37019. name: "Angled",
  37020. image: {
  37021. source: "./media/characters/erdno/angled.svg",
  37022. extra: 1185/1139,
  37023. bottom: 36/1221
  37024. }
  37025. },
  37026. side: {
  37027. height: math.unit(5 + 7/12, "feet"),
  37028. weight: math.unit(2, "tons"),
  37029. name: "Side",
  37030. image: {
  37031. source: "./media/characters/erdno/side.svg",
  37032. extra: 1191/1144,
  37033. bottom: 40/1231
  37034. }
  37035. },
  37036. back: {
  37037. height: math.unit(5 + 7/12, "feet"),
  37038. weight: math.unit(2, "tons"),
  37039. name: "Back",
  37040. image: {
  37041. source: "./media/characters/erdno/back.svg",
  37042. extra: 1202/1146,
  37043. bottom: 17/1219
  37044. }
  37045. },
  37046. frontNsfw: {
  37047. height: math.unit(5 + 7/12, "feet"),
  37048. weight: math.unit(2, "tons"),
  37049. name: "Front (NSFW)",
  37050. image: {
  37051. source: "./media/characters/erdno/front-nsfw.svg",
  37052. extra: 1234/1129,
  37053. bottom: 35/1269
  37054. }
  37055. },
  37056. angledNsfw: {
  37057. height: math.unit(5 + 7/12, "feet"),
  37058. weight: math.unit(2, "tons"),
  37059. name: "Angled (NSFW)",
  37060. image: {
  37061. source: "./media/characters/erdno/angled-nsfw.svg",
  37062. extra: 1185/1139,
  37063. bottom: 36/1221
  37064. }
  37065. },
  37066. sideNsfw: {
  37067. height: math.unit(5 + 7/12, "feet"),
  37068. weight: math.unit(2, "tons"),
  37069. name: "Side (NSFW)",
  37070. image: {
  37071. source: "./media/characters/erdno/side-nsfw.svg",
  37072. extra: 1191/1144,
  37073. bottom: 40/1231
  37074. }
  37075. },
  37076. backNsfw: {
  37077. height: math.unit(5 + 7/12, "feet"),
  37078. weight: math.unit(2, "tons"),
  37079. name: "Back (NSFW)",
  37080. image: {
  37081. source: "./media/characters/erdno/back-nsfw.svg",
  37082. extra: 1202/1146,
  37083. bottom: 17/1219
  37084. }
  37085. },
  37086. frontHyper: {
  37087. height: math.unit(5 + 7/12, "feet"),
  37088. weight: math.unit(2, "tons"),
  37089. name: "Front (Hyper)",
  37090. image: {
  37091. source: "./media/characters/erdno/front-hyper.svg",
  37092. extra: 1298/1136,
  37093. bottom: 35/1333
  37094. }
  37095. },
  37096. },
  37097. [
  37098. {
  37099. name: "Normal",
  37100. height: math.unit(5 + 7/12, "feet"),
  37101. default: true
  37102. },
  37103. {
  37104. name: "Big",
  37105. height: math.unit(5.7, "meters")
  37106. },
  37107. {
  37108. name: "Macro",
  37109. height: math.unit(5.7, "kilometers")
  37110. },
  37111. {
  37112. name: "Megamacro",
  37113. height: math.unit(5.7, "earths")
  37114. },
  37115. ]
  37116. ))
  37117. characterMakers.push(() => makeCharacter(
  37118. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37119. {
  37120. front: {
  37121. height: math.unit(5 + 10/12, "feet"),
  37122. weight: math.unit(150, "lb"),
  37123. name: "Front",
  37124. image: {
  37125. source: "./media/characters/jamie/front.svg",
  37126. extra: 1908/1768,
  37127. bottom: 19/1927
  37128. }
  37129. },
  37130. },
  37131. [
  37132. {
  37133. name: "Minimum",
  37134. height: math.unit(2, "cm")
  37135. },
  37136. {
  37137. name: "Micro",
  37138. height: math.unit(3, "inches")
  37139. },
  37140. {
  37141. name: "Normal",
  37142. height: math.unit(5 + 10/12, "feet"),
  37143. default: true
  37144. },
  37145. {
  37146. name: "Macro",
  37147. height: math.unit(150, "feet")
  37148. },
  37149. {
  37150. name: "Megamacro",
  37151. height: math.unit(10000, "m")
  37152. },
  37153. ]
  37154. ))
  37155. characterMakers.push(() => makeCharacter(
  37156. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37157. {
  37158. front: {
  37159. height: math.unit(2, "meters"),
  37160. weight: math.unit(100, "kg"),
  37161. name: "Front",
  37162. image: {
  37163. source: "./media/characters/shiron/front.svg",
  37164. extra: 2103/1985,
  37165. bottom: 98/2201
  37166. }
  37167. },
  37168. back: {
  37169. height: math.unit(2, "meters"),
  37170. weight: math.unit(100, "kg"),
  37171. name: "Back",
  37172. image: {
  37173. source: "./media/characters/shiron/back.svg",
  37174. extra: 2110/2015,
  37175. bottom: 89/2199
  37176. }
  37177. },
  37178. hand: {
  37179. height: math.unit(0.96, "feet"),
  37180. name: "Hand",
  37181. image: {
  37182. source: "./media/characters/shiron/hand.svg"
  37183. }
  37184. },
  37185. foot: {
  37186. height: math.unit(1.464, "feet"),
  37187. name: "Foot",
  37188. image: {
  37189. source: "./media/characters/shiron/foot.svg"
  37190. }
  37191. },
  37192. },
  37193. [
  37194. {
  37195. name: "Normal",
  37196. height: math.unit(2, "meters")
  37197. },
  37198. {
  37199. name: "Macro",
  37200. height: math.unit(500, "meters"),
  37201. default: true
  37202. },
  37203. {
  37204. name: "Megamacro",
  37205. height: math.unit(20, "km")
  37206. },
  37207. ]
  37208. ))
  37209. characterMakers.push(() => makeCharacter(
  37210. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37211. {
  37212. front: {
  37213. height: math.unit(6, "feet"),
  37214. name: "Front",
  37215. image: {
  37216. source: "./media/characters/sam/front.svg",
  37217. extra: 849/826,
  37218. bottom: 19/868
  37219. }
  37220. },
  37221. },
  37222. [
  37223. {
  37224. name: "Normal",
  37225. height: math.unit(6, "feet"),
  37226. default: true
  37227. },
  37228. ]
  37229. ))
  37230. characterMakers.push(() => makeCharacter(
  37231. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37232. {
  37233. front: {
  37234. height: math.unit(8 + 4/12, "feet"),
  37235. weight: math.unit(122, "kg"),
  37236. name: "Front",
  37237. image: {
  37238. source: "./media/characters/namori-kurogawa/front.svg",
  37239. extra: 1894/1576,
  37240. bottom: 34/1928
  37241. }
  37242. },
  37243. },
  37244. [
  37245. {
  37246. name: "Normal",
  37247. height: math.unit(8 + 4/12, "feet"),
  37248. default: true
  37249. },
  37250. ]
  37251. ))
  37252. characterMakers.push(() => makeCharacter(
  37253. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37254. {
  37255. front: {
  37256. height: math.unit(9, "feet"),
  37257. weight: math.unit(621, "lb"),
  37258. name: "Front",
  37259. image: {
  37260. source: "./media/characters/unmru/front.svg",
  37261. extra: 1853/1747,
  37262. bottom: 73/1926
  37263. }
  37264. },
  37265. side: {
  37266. height: math.unit(9, "feet"),
  37267. weight: math.unit(621, "lb"),
  37268. name: "Side",
  37269. image: {
  37270. source: "./media/characters/unmru/side.svg",
  37271. extra: 1781/1671,
  37272. bottom: 127/1908
  37273. }
  37274. },
  37275. back: {
  37276. height: math.unit(9, "feet"),
  37277. weight: math.unit(621, "lb"),
  37278. name: "Back",
  37279. image: {
  37280. source: "./media/characters/unmru/back.svg",
  37281. extra: 1894/1765,
  37282. bottom: 75/1969
  37283. }
  37284. },
  37285. dick: {
  37286. height: math.unit(3, "feet"),
  37287. weight: math.unit(35, "lb"),
  37288. name: "Dick",
  37289. image: {
  37290. source: "./media/characters/unmru/dick.svg"
  37291. }
  37292. },
  37293. },
  37294. [
  37295. {
  37296. name: "Normal",
  37297. height: math.unit(9, "feet")
  37298. },
  37299. {
  37300. name: "Natural",
  37301. height: math.unit(27, "feet"),
  37302. default: true
  37303. },
  37304. {
  37305. name: "Giant",
  37306. height: math.unit(90, "feet")
  37307. },
  37308. {
  37309. name: "Kaiju",
  37310. height: math.unit(270, "feet")
  37311. },
  37312. {
  37313. name: "Macro",
  37314. height: math.unit(900, "feet")
  37315. },
  37316. {
  37317. name: "Macro+",
  37318. height: math.unit(2700, "feet")
  37319. },
  37320. {
  37321. name: "Megamacro",
  37322. height: math.unit(9000, "feet")
  37323. },
  37324. {
  37325. name: "City-Crushing",
  37326. height: math.unit(27000, "feet")
  37327. },
  37328. {
  37329. name: "Mountain-Mashing",
  37330. height: math.unit(90000, "feet")
  37331. },
  37332. {
  37333. name: "Earth-Eclipsing",
  37334. height: math.unit(2.7e8, "feet")
  37335. },
  37336. {
  37337. name: "Sol-Swallowing",
  37338. height: math.unit(9e10, "feet")
  37339. },
  37340. {
  37341. name: "Majoris-Munching",
  37342. height: math.unit(2.7e13, "feet")
  37343. },
  37344. ]
  37345. ))
  37346. characterMakers.push(() => makeCharacter(
  37347. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37348. {
  37349. front: {
  37350. height: math.unit(1, "inch"),
  37351. name: "Front",
  37352. image: {
  37353. source: "./media/characters/squeaks-mouse/front.svg",
  37354. extra: 352/308,
  37355. bottom: 25/377
  37356. }
  37357. },
  37358. },
  37359. [
  37360. {
  37361. name: "Micro",
  37362. height: math.unit(1, "inch"),
  37363. default: true
  37364. },
  37365. ]
  37366. ))
  37367. characterMakers.push(() => makeCharacter(
  37368. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37369. {
  37370. side: {
  37371. height: math.unit(35, "feet"),
  37372. name: "Side",
  37373. image: {
  37374. source: "./media/characters/sayko/side.svg",
  37375. extra: 1697/1021,
  37376. bottom: 82/1779
  37377. }
  37378. },
  37379. head: {
  37380. height: math.unit(16, "feet"),
  37381. name: "Head",
  37382. image: {
  37383. source: "./media/characters/sayko/head.svg"
  37384. }
  37385. },
  37386. forepaw: {
  37387. height: math.unit(7.85, "feet"),
  37388. name: "Forepaw",
  37389. image: {
  37390. source: "./media/characters/sayko/forepaw.svg"
  37391. }
  37392. },
  37393. hindpaw: {
  37394. height: math.unit(8.8, "feet"),
  37395. name: "Hindpaw",
  37396. image: {
  37397. source: "./media/characters/sayko/hindpaw.svg"
  37398. }
  37399. },
  37400. },
  37401. [
  37402. {
  37403. name: "Normal",
  37404. height: math.unit(35, "feet"),
  37405. default: true
  37406. },
  37407. {
  37408. name: "Colossus",
  37409. height: math.unit(100, "meters")
  37410. },
  37411. {
  37412. name: "\"Small\" Deity",
  37413. height: math.unit(1, "km")
  37414. },
  37415. {
  37416. name: "\"Large\" Deity",
  37417. height: math.unit(15, "km")
  37418. },
  37419. ]
  37420. ))
  37421. characterMakers.push(() => makeCharacter(
  37422. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37423. {
  37424. front: {
  37425. height: math.unit(6, "feet"),
  37426. weight: math.unit(250, "lb"),
  37427. name: "Front",
  37428. image: {
  37429. source: "./media/characters/mukiro/front.svg",
  37430. extra: 1368/1310,
  37431. bottom: 34/1402
  37432. }
  37433. },
  37434. },
  37435. [
  37436. {
  37437. name: "Normal",
  37438. height: math.unit(6, "feet"),
  37439. default: true
  37440. },
  37441. ]
  37442. ))
  37443. characterMakers.push(() => makeCharacter(
  37444. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37445. {
  37446. front: {
  37447. height: math.unit(12 + 4/12, "feet"),
  37448. name: "Front",
  37449. image: {
  37450. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37451. extra: 1346/1311,
  37452. bottom: 65/1411
  37453. }
  37454. },
  37455. },
  37456. [
  37457. {
  37458. name: "Base",
  37459. height: math.unit(12 + 4/12, "feet"),
  37460. default: true
  37461. },
  37462. {
  37463. name: "Macro",
  37464. height: math.unit(150, "feet")
  37465. },
  37466. {
  37467. name: "Mega",
  37468. height: math.unit(2, "miles")
  37469. },
  37470. {
  37471. name: "Demi God",
  37472. height: math.unit(4, "AU")
  37473. },
  37474. {
  37475. name: "God Size",
  37476. height: math.unit(1, "universe")
  37477. },
  37478. ]
  37479. ))
  37480. characterMakers.push(() => makeCharacter(
  37481. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37482. {
  37483. front: {
  37484. height: math.unit(3 + 3/12, "feet"),
  37485. weight: math.unit(88, "lb"),
  37486. name: "Front",
  37487. image: {
  37488. source: "./media/characters/trey/front.svg",
  37489. extra: 1815/1509,
  37490. bottom: 60/1875
  37491. }
  37492. },
  37493. },
  37494. [
  37495. {
  37496. name: "Normal",
  37497. height: math.unit(3 + 3/12, "feet"),
  37498. default: true
  37499. },
  37500. ]
  37501. ))
  37502. characterMakers.push(() => makeCharacter(
  37503. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37504. {
  37505. front: {
  37506. height: math.unit(4, "meters"),
  37507. name: "Front",
  37508. image: {
  37509. source: "./media/characters/adelonda/front.svg",
  37510. extra: 1077/982,
  37511. bottom: 39/1116
  37512. }
  37513. },
  37514. back: {
  37515. height: math.unit(4, "meters"),
  37516. name: "Back",
  37517. image: {
  37518. source: "./media/characters/adelonda/back.svg",
  37519. extra: 1105/1003,
  37520. bottom: 25/1130
  37521. }
  37522. },
  37523. },
  37524. [
  37525. {
  37526. name: "Normal",
  37527. height: math.unit(4, "meters"),
  37528. default: true
  37529. },
  37530. ]
  37531. ))
  37532. characterMakers.push(() => makeCharacter(
  37533. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37534. {
  37535. front: {
  37536. height: math.unit(8 + 4/12, "feet"),
  37537. weight: math.unit(670, "lb"),
  37538. name: "Front",
  37539. image: {
  37540. source: "./media/characters/acadiel/front.svg",
  37541. extra: 1901/1595,
  37542. bottom: 142/2043
  37543. }
  37544. },
  37545. },
  37546. [
  37547. {
  37548. name: "Normal",
  37549. height: math.unit(8 + 4/12, "feet"),
  37550. default: true
  37551. },
  37552. {
  37553. name: "Macro",
  37554. height: math.unit(200, "feet")
  37555. },
  37556. ]
  37557. ))
  37558. characterMakers.push(() => makeCharacter(
  37559. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37560. {
  37561. front: {
  37562. height: math.unit(6 + 2/12, "feet"),
  37563. weight: math.unit(185, "lb"),
  37564. name: "Front",
  37565. image: {
  37566. source: "./media/characters/kayne-ein/front.svg",
  37567. extra: 1780/1560,
  37568. bottom: 81/1861
  37569. }
  37570. },
  37571. },
  37572. [
  37573. {
  37574. name: "Normal",
  37575. height: math.unit(6 + 2/12, "feet"),
  37576. default: true
  37577. },
  37578. {
  37579. name: "Transformation Stage",
  37580. height: math.unit(15, "feet")
  37581. },
  37582. {
  37583. name: "Macro",
  37584. height: math.unit(150, "feet")
  37585. },
  37586. {
  37587. name: "Earth's Shadow",
  37588. height: math.unit(6200, "miles")
  37589. },
  37590. {
  37591. name: "Universal Demon",
  37592. height: math.unit(28e9, "parsecs")
  37593. },
  37594. {
  37595. name: "Multiverse God",
  37596. height: math.unit(3, "multiverses")
  37597. },
  37598. ]
  37599. ))
  37600. characterMakers.push(() => makeCharacter(
  37601. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37602. {
  37603. front: {
  37604. height: math.unit(5 + 5/12, "feet"),
  37605. name: "Front",
  37606. image: {
  37607. source: "./media/characters/fawn/front.svg",
  37608. extra: 1873/1731,
  37609. bottom: 95/1968
  37610. }
  37611. },
  37612. back: {
  37613. height: math.unit(5 + 5/12, "feet"),
  37614. name: "Back",
  37615. image: {
  37616. source: "./media/characters/fawn/back.svg",
  37617. extra: 1813/1700,
  37618. bottom: 14/1827
  37619. }
  37620. },
  37621. hoof: {
  37622. height: math.unit(1.45, "feet"),
  37623. name: "Hoof",
  37624. image: {
  37625. source: "./media/characters/fawn/hoof.svg"
  37626. }
  37627. },
  37628. },
  37629. [
  37630. {
  37631. name: "Normal",
  37632. height: math.unit(5 + 5/12, "feet"),
  37633. default: true
  37634. },
  37635. ]
  37636. ))
  37637. characterMakers.push(() => makeCharacter(
  37638. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37639. {
  37640. front: {
  37641. height: math.unit(2 + 5/12, "feet"),
  37642. name: "Front",
  37643. image: {
  37644. source: "./media/characters/orion/front.svg",
  37645. extra: 1366/1304,
  37646. bottom: 43/1409
  37647. }
  37648. },
  37649. paw: {
  37650. height: math.unit(0.52, "feet"),
  37651. name: "Paw",
  37652. image: {
  37653. source: "./media/characters/orion/paw.svg"
  37654. }
  37655. },
  37656. },
  37657. [
  37658. {
  37659. name: "Normal",
  37660. height: math.unit(2 + 5/12, "feet"),
  37661. default: true
  37662. },
  37663. ]
  37664. ))
  37665. characterMakers.push(() => makeCharacter(
  37666. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37667. {
  37668. front: {
  37669. height: math.unit(5 + 10/12, "feet"),
  37670. name: "Front",
  37671. image: {
  37672. source: "./media/characters/vera/front.svg",
  37673. extra: 1680/1575,
  37674. bottom: 49/1729
  37675. }
  37676. },
  37677. back: {
  37678. height: math.unit(5 + 10/12, "feet"),
  37679. name: "Back",
  37680. image: {
  37681. source: "./media/characters/vera/back.svg",
  37682. extra: 1700/1588,
  37683. bottom: 18/1718
  37684. }
  37685. },
  37686. arcanine: {
  37687. height: math.unit(6 + 8/12, "feet"),
  37688. name: "Arcanine",
  37689. image: {
  37690. source: "./media/characters/vera/arcanine.svg",
  37691. extra: 1590/1511,
  37692. bottom: 71/1661
  37693. }
  37694. },
  37695. maw: {
  37696. height: math.unit(0.82, "feet"),
  37697. name: "Maw",
  37698. image: {
  37699. source: "./media/characters/vera/maw.svg"
  37700. }
  37701. },
  37702. mawArcanine: {
  37703. height: math.unit(0.97, "feet"),
  37704. name: "Maw (Arcanine)",
  37705. image: {
  37706. source: "./media/characters/vera/maw-arcanine.svg"
  37707. }
  37708. },
  37709. paw: {
  37710. height: math.unit(0.75, "feet"),
  37711. name: "Paw",
  37712. image: {
  37713. source: "./media/characters/vera/paw.svg"
  37714. }
  37715. },
  37716. pawprint: {
  37717. height: math.unit(0.52, "feet"),
  37718. name: "Pawprint",
  37719. image: {
  37720. source: "./media/characters/vera/pawprint.svg"
  37721. }
  37722. },
  37723. },
  37724. [
  37725. {
  37726. name: "Normal",
  37727. height: math.unit(5 + 10/12, "feet"),
  37728. default: true
  37729. },
  37730. {
  37731. name: "Macro",
  37732. height: math.unit(75, "feet")
  37733. },
  37734. ]
  37735. ))
  37736. characterMakers.push(() => makeCharacter(
  37737. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37738. {
  37739. front: {
  37740. height: math.unit(4, "feet"),
  37741. weight: math.unit(40, "lb"),
  37742. name: "Front",
  37743. image: {
  37744. source: "./media/characters/orvan-rabbit/front.svg",
  37745. extra: 1896/1642,
  37746. bottom: 29/1925
  37747. }
  37748. },
  37749. },
  37750. [
  37751. {
  37752. name: "Normal",
  37753. height: math.unit(4, "feet"),
  37754. default: true
  37755. },
  37756. ]
  37757. ))
  37758. characterMakers.push(() => makeCharacter(
  37759. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37760. {
  37761. front: {
  37762. height: math.unit(6, "feet"),
  37763. weight: math.unit(168, "lb"),
  37764. name: "Front",
  37765. image: {
  37766. source: "./media/characters/lisa/front.svg",
  37767. extra: 2065/1867,
  37768. bottom: 46/2111
  37769. }
  37770. },
  37771. back: {
  37772. height: math.unit(6, "feet"),
  37773. weight: math.unit(168, "lb"),
  37774. name: "Back",
  37775. image: {
  37776. source: "./media/characters/lisa/back.svg",
  37777. extra: 1982/1838,
  37778. bottom: 29/2011
  37779. }
  37780. },
  37781. maw: {
  37782. height: math.unit(0.81, "feet"),
  37783. name: "Maw",
  37784. image: {
  37785. source: "./media/characters/lisa/maw.svg"
  37786. }
  37787. },
  37788. paw: {
  37789. height: math.unit(0.9, "feet"),
  37790. name: "Paw",
  37791. image: {
  37792. source: "./media/characters/lisa/paw.svg"
  37793. }
  37794. },
  37795. caribousune: {
  37796. height: math.unit(7 + 2/12, "feet"),
  37797. weight: math.unit(268, "lb"),
  37798. name: "Caribousune",
  37799. image: {
  37800. source: "./media/characters/lisa/caribousune.svg",
  37801. extra: 1843/1633,
  37802. bottom: 29/1872
  37803. }
  37804. },
  37805. frontCaribousune: {
  37806. height: math.unit(7 + 2/12, "feet"),
  37807. weight: math.unit(268, "lb"),
  37808. name: "Front (Caribousune)",
  37809. image: {
  37810. source: "./media/characters/lisa/front-caribousune.svg",
  37811. extra: 1818/1638,
  37812. bottom: 52/1870
  37813. }
  37814. },
  37815. sideCaribousune: {
  37816. height: math.unit(7 + 2/12, "feet"),
  37817. weight: math.unit(268, "lb"),
  37818. name: "Side (Caribousune)",
  37819. image: {
  37820. source: "./media/characters/lisa/side-caribousune.svg",
  37821. extra: 1851/1635,
  37822. bottom: 16/1867
  37823. }
  37824. },
  37825. backCaribousune: {
  37826. height: math.unit(7 + 2/12, "feet"),
  37827. weight: math.unit(268, "lb"),
  37828. name: "Back (Caribousune)",
  37829. image: {
  37830. source: "./media/characters/lisa/back-caribousune.svg",
  37831. extra: 1801/1604,
  37832. bottom: 44/1845
  37833. }
  37834. },
  37835. caribou: {
  37836. height: math.unit(7 + 2/12, "feet"),
  37837. weight: math.unit(268, "lb"),
  37838. name: "Caribou",
  37839. image: {
  37840. source: "./media/characters/lisa/caribou.svg",
  37841. extra: 1843/1633,
  37842. bottom: 29/1872
  37843. }
  37844. },
  37845. frontCaribou: {
  37846. height: math.unit(7 + 2/12, "feet"),
  37847. weight: math.unit(268, "lb"),
  37848. name: "Front (Caribou)",
  37849. image: {
  37850. source: "./media/characters/lisa/front-caribou.svg",
  37851. extra: 1818/1638,
  37852. bottom: 52/1870
  37853. }
  37854. },
  37855. sideCaribou: {
  37856. height: math.unit(7 + 2/12, "feet"),
  37857. weight: math.unit(268, "lb"),
  37858. name: "Side (Caribou)",
  37859. image: {
  37860. source: "./media/characters/lisa/side-caribou.svg",
  37861. extra: 1851/1635,
  37862. bottom: 16/1867
  37863. }
  37864. },
  37865. backCaribou: {
  37866. height: math.unit(7 + 2/12, "feet"),
  37867. weight: math.unit(268, "lb"),
  37868. name: "Back (Caribou)",
  37869. image: {
  37870. source: "./media/characters/lisa/back-caribou.svg",
  37871. extra: 1801/1604,
  37872. bottom: 44/1845
  37873. }
  37874. },
  37875. mawCaribou: {
  37876. height: math.unit(1.45, "feet"),
  37877. name: "Maw (Caribou)",
  37878. image: {
  37879. source: "./media/characters/lisa/maw-caribou.svg"
  37880. }
  37881. },
  37882. mawCaribousune: {
  37883. height: math.unit(1.45, "feet"),
  37884. name: "Maw (Caribousune)",
  37885. image: {
  37886. source: "./media/characters/lisa/maw-caribousune.svg"
  37887. }
  37888. },
  37889. pawCaribousune: {
  37890. height: math.unit(1.61, "feet"),
  37891. name: "Paw (Caribou)",
  37892. image: {
  37893. source: "./media/characters/lisa/paw-caribousune.svg"
  37894. }
  37895. },
  37896. },
  37897. [
  37898. {
  37899. name: "Normal",
  37900. height: math.unit(6, "feet")
  37901. },
  37902. {
  37903. name: "God Size",
  37904. height: math.unit(72, "feet"),
  37905. default: true
  37906. },
  37907. {
  37908. name: "Towering",
  37909. height: math.unit(288, "feet")
  37910. },
  37911. {
  37912. name: "City Size",
  37913. height: math.unit(48384, "feet")
  37914. },
  37915. {
  37916. name: "Continental",
  37917. height: math.unit(4200, "miles")
  37918. },
  37919. {
  37920. name: "Planet Eater",
  37921. height: math.unit(42, "earths")
  37922. },
  37923. {
  37924. name: "Star Swallower",
  37925. height: math.unit(42, "solarradii")
  37926. },
  37927. {
  37928. name: "System Swallower",
  37929. height: math.unit(84000, "AU")
  37930. },
  37931. {
  37932. name: "Galaxy Gobbler",
  37933. height: math.unit(42, "galaxies")
  37934. },
  37935. {
  37936. name: "Universe Devourer",
  37937. height: math.unit(42, "universes")
  37938. },
  37939. {
  37940. name: "Multiverse Muncher",
  37941. height: math.unit(42, "multiverses")
  37942. },
  37943. ]
  37944. ))
  37945. characterMakers.push(() => makeCharacter(
  37946. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37947. {
  37948. front: {
  37949. height: math.unit(36, "feet"),
  37950. name: "Front",
  37951. image: {
  37952. source: "./media/characters/shadow-rat/front.svg",
  37953. extra: 1845/1758,
  37954. bottom: 83/1928
  37955. }
  37956. },
  37957. },
  37958. [
  37959. {
  37960. name: "Macro",
  37961. height: math.unit(36, "feet"),
  37962. default: true
  37963. },
  37964. ]
  37965. ))
  37966. characterMakers.push(() => makeCharacter(
  37967. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37968. {
  37969. side: {
  37970. height: math.unit(8, "feet"),
  37971. weight: math.unit(2630, "lb"),
  37972. name: "Side",
  37973. image: {
  37974. source: "./media/characters/torallia/side.svg",
  37975. extra: 2164/2021,
  37976. bottom: 371/2535
  37977. }
  37978. },
  37979. },
  37980. [
  37981. {
  37982. name: "Mortal Interaction",
  37983. height: math.unit(8, "feet")
  37984. },
  37985. {
  37986. name: "Natural",
  37987. height: math.unit(24, "feet"),
  37988. default: true
  37989. },
  37990. {
  37991. name: "Giant",
  37992. height: math.unit(80, "feet")
  37993. },
  37994. {
  37995. name: "Kaiju",
  37996. height: math.unit(240, "feet")
  37997. },
  37998. {
  37999. name: "Macro",
  38000. height: math.unit(800, "feet")
  38001. },
  38002. {
  38003. name: "Macro+",
  38004. height: math.unit(2400, "feet")
  38005. },
  38006. {
  38007. name: "Macro++",
  38008. height: math.unit(8000, "feet")
  38009. },
  38010. {
  38011. name: "City-Crushing",
  38012. height: math.unit(24000, "feet")
  38013. },
  38014. {
  38015. name: "Mountain-Mashing",
  38016. height: math.unit(80000, "feet")
  38017. },
  38018. {
  38019. name: "District Demolisher",
  38020. height: math.unit(240000, "feet")
  38021. },
  38022. {
  38023. name: "Tri-County Terror",
  38024. height: math.unit(800000, "feet")
  38025. },
  38026. {
  38027. name: "State Smasher",
  38028. height: math.unit(2.4e6, "feet")
  38029. },
  38030. {
  38031. name: "Nation Nemesis",
  38032. height: math.unit(8e6, "feet")
  38033. },
  38034. {
  38035. name: "Continent Cracker",
  38036. height: math.unit(2.4e7, "feet")
  38037. },
  38038. {
  38039. name: "Planet-Pillaging",
  38040. height: math.unit(8e7, "feet")
  38041. },
  38042. {
  38043. name: "Earth-Eclipsing",
  38044. height: math.unit(2.4e8, "feet")
  38045. },
  38046. {
  38047. name: "Jovian-Jostling",
  38048. height: math.unit(8e8, "feet")
  38049. },
  38050. {
  38051. name: "Gas Giant Gulper",
  38052. height: math.unit(2.4e9, "feet")
  38053. },
  38054. {
  38055. name: "Astral Annihilator",
  38056. height: math.unit(8e9, "feet")
  38057. },
  38058. {
  38059. name: "Celestial Conqueror",
  38060. height: math.unit(2.4e10, "feet")
  38061. },
  38062. {
  38063. name: "Sol-Swallowing",
  38064. height: math.unit(8e10, "feet")
  38065. },
  38066. {
  38067. name: "Hunter of the Heavens",
  38068. height: math.unit(2.4e13, "feet")
  38069. },
  38070. ]
  38071. ))
  38072. characterMakers.push(() => makeCharacter(
  38073. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38074. {
  38075. front: {
  38076. height: math.unit(6 + 8/12, "feet"),
  38077. name: "Front",
  38078. image: {
  38079. source: "./media/characters/rebecca-pawlson/front.svg",
  38080. extra: 1737/1596,
  38081. bottom: 107/1844
  38082. }
  38083. },
  38084. back: {
  38085. height: math.unit(6 + 8/12, "feet"),
  38086. name: "Back",
  38087. image: {
  38088. source: "./media/characters/rebecca-pawlson/back.svg",
  38089. extra: 1702/1523,
  38090. bottom: 86/1788
  38091. }
  38092. },
  38093. },
  38094. [
  38095. {
  38096. name: "Normal",
  38097. height: math.unit(6 + 8/12, "feet")
  38098. },
  38099. {
  38100. name: "Mini Macro",
  38101. height: math.unit(10, "feet"),
  38102. default: true
  38103. },
  38104. {
  38105. name: "Macro",
  38106. height: math.unit(100, "feet")
  38107. },
  38108. {
  38109. name: "Mega Macro",
  38110. height: math.unit(2500, "feet")
  38111. },
  38112. {
  38113. name: "Giga Macro",
  38114. height: math.unit(50, "miles")
  38115. },
  38116. ]
  38117. ))
  38118. characterMakers.push(() => makeCharacter(
  38119. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38120. {
  38121. front: {
  38122. height: math.unit(7 + 6/12, "feet"),
  38123. weight: math.unit(600, "lb"),
  38124. name: "Front",
  38125. image: {
  38126. source: "./media/characters/moxie-nova/front.svg",
  38127. extra: 1734/1652,
  38128. bottom: 41/1775
  38129. }
  38130. },
  38131. },
  38132. [
  38133. {
  38134. name: "Normal",
  38135. height: math.unit(7 + 6/12, "feet"),
  38136. default: true
  38137. },
  38138. ]
  38139. ))
  38140. characterMakers.push(() => makeCharacter(
  38141. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38142. {
  38143. goat: {
  38144. height: math.unit(4, "feet"),
  38145. weight: math.unit(180, "lb"),
  38146. name: "Goat",
  38147. image: {
  38148. source: "./media/characters/tiffany/goat.svg",
  38149. extra: 1845/1595,
  38150. bottom: 106/1951
  38151. }
  38152. },
  38153. front: {
  38154. height: math.unit(5, "feet"),
  38155. weight: math.unit(150, "lb"),
  38156. name: "Foxcoon",
  38157. image: {
  38158. source: "./media/characters/tiffany/foxcoon.svg",
  38159. extra: 1941/1845,
  38160. bottom: 58/1999
  38161. }
  38162. },
  38163. },
  38164. [
  38165. {
  38166. name: "Normal",
  38167. height: math.unit(5, "feet"),
  38168. default: true
  38169. },
  38170. ]
  38171. ))
  38172. characterMakers.push(() => makeCharacter(
  38173. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38174. {
  38175. front: {
  38176. height: math.unit(8, "feet"),
  38177. weight: math.unit(300, "lb"),
  38178. name: "Front",
  38179. image: {
  38180. source: "./media/characters/raxinath/front.svg",
  38181. extra: 1407/1309,
  38182. bottom: 39/1446
  38183. }
  38184. },
  38185. back: {
  38186. height: math.unit(8, "feet"),
  38187. weight: math.unit(300, "lb"),
  38188. name: "Back",
  38189. image: {
  38190. source: "./media/characters/raxinath/back.svg",
  38191. extra: 1405/1315,
  38192. bottom: 9/1414
  38193. }
  38194. },
  38195. },
  38196. [
  38197. {
  38198. name: "Speck",
  38199. height: math.unit(0.5, "nm")
  38200. },
  38201. {
  38202. name: "Micro",
  38203. height: math.unit(3, "inches")
  38204. },
  38205. {
  38206. name: "Kobold",
  38207. height: math.unit(3, "feet")
  38208. },
  38209. {
  38210. name: "Normal",
  38211. height: math.unit(8, "feet"),
  38212. default: true
  38213. },
  38214. {
  38215. name: "Giant",
  38216. height: math.unit(50, "feet")
  38217. },
  38218. {
  38219. name: "Macro",
  38220. height: math.unit(1000, "feet")
  38221. },
  38222. {
  38223. name: "Megamacro",
  38224. height: math.unit(1, "mile")
  38225. },
  38226. ]
  38227. ))
  38228. characterMakers.push(() => makeCharacter(
  38229. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38230. {
  38231. front: {
  38232. height: math.unit(10, "feet"),
  38233. weight: math.unit(1442, "lb"),
  38234. name: "Front",
  38235. image: {
  38236. source: "./media/characters/mal-dragon/front.svg",
  38237. extra: 1515/1444,
  38238. bottom: 113/1628
  38239. }
  38240. },
  38241. back: {
  38242. height: math.unit(10, "feet"),
  38243. weight: math.unit(1442, "lb"),
  38244. name: "Back",
  38245. image: {
  38246. source: "./media/characters/mal-dragon/back.svg",
  38247. extra: 1527/1434,
  38248. bottom: 25/1552
  38249. }
  38250. },
  38251. },
  38252. [
  38253. {
  38254. name: "Mortal Interaction",
  38255. height: math.unit(10, "feet"),
  38256. default: true
  38257. },
  38258. {
  38259. name: "Large",
  38260. height: math.unit(30, "feet")
  38261. },
  38262. {
  38263. name: "Kaiju",
  38264. height: math.unit(300, "feet")
  38265. },
  38266. {
  38267. name: "Megamacro",
  38268. height: math.unit(10000, "feet")
  38269. },
  38270. {
  38271. name: "Continent Cracker",
  38272. height: math.unit(30000000, "feet")
  38273. },
  38274. {
  38275. name: "Sol-Swallowing",
  38276. height: math.unit(1e11, "feet")
  38277. },
  38278. {
  38279. name: "Light Universal",
  38280. height: math.unit(5, "universes")
  38281. },
  38282. {
  38283. name: "Universe Atoms",
  38284. height: math.unit(1.829e9, "universes")
  38285. },
  38286. {
  38287. name: "Light Multiversal",
  38288. height: math.unit(5, "multiverses")
  38289. },
  38290. {
  38291. name: "Multiverse Atoms",
  38292. height: math.unit(1.829e9, "multiverses")
  38293. },
  38294. {
  38295. name: "Fabric of Time",
  38296. height: math.unit(1e262, "multiverses")
  38297. },
  38298. ]
  38299. ))
  38300. characterMakers.push(() => makeCharacter(
  38301. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38302. {
  38303. front: {
  38304. height: math.unit(9, "feet"),
  38305. weight: math.unit(1050, "lb"),
  38306. name: "Front",
  38307. image: {
  38308. source: "./media/characters/tabitha/front.svg",
  38309. extra: 2083/1994,
  38310. bottom: 68/2151
  38311. }
  38312. },
  38313. },
  38314. [
  38315. {
  38316. name: "Baseline",
  38317. height: math.unit(9, "feet"),
  38318. default: true
  38319. },
  38320. {
  38321. name: "Giant",
  38322. height: math.unit(90, "feet")
  38323. },
  38324. {
  38325. name: "Macro",
  38326. height: math.unit(900, "feet")
  38327. },
  38328. {
  38329. name: "Megamacro",
  38330. height: math.unit(9000, "feet")
  38331. },
  38332. {
  38333. name: "City-Crushing",
  38334. height: math.unit(27000, "feet")
  38335. },
  38336. {
  38337. name: "Mountain-Mashing",
  38338. height: math.unit(90000, "feet")
  38339. },
  38340. {
  38341. name: "Nation Nemesis",
  38342. height: math.unit(9e6, "feet")
  38343. },
  38344. {
  38345. name: "Continent Cracker",
  38346. height: math.unit(27e6, "feet")
  38347. },
  38348. {
  38349. name: "Earth-Eclipsing",
  38350. height: math.unit(2.7e8, "feet")
  38351. },
  38352. {
  38353. name: "Gas Giant Gulper",
  38354. height: math.unit(2.7e9, "feet")
  38355. },
  38356. {
  38357. name: "Sol-Swallowing",
  38358. height: math.unit(9e10, "feet")
  38359. },
  38360. {
  38361. name: "Galaxy Gulper",
  38362. height: math.unit(9, "galaxies")
  38363. },
  38364. {
  38365. name: "Cosmos Churner",
  38366. height: math.unit(9, "universes")
  38367. },
  38368. ]
  38369. ))
  38370. characterMakers.push(() => makeCharacter(
  38371. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38372. {
  38373. front: {
  38374. height: math.unit(160, "cm"),
  38375. weight: math.unit(55, "kg"),
  38376. name: "Front",
  38377. image: {
  38378. source: "./media/characters/tow/front.svg",
  38379. extra: 1751/1722,
  38380. bottom: 74/1825
  38381. }
  38382. },
  38383. },
  38384. [
  38385. {
  38386. name: "Norm",
  38387. height: math.unit(160, "cm")
  38388. },
  38389. {
  38390. name: "Casual",
  38391. height: math.unit(3200, "m"),
  38392. default: true
  38393. },
  38394. {
  38395. name: "Show-Off",
  38396. height: math.unit(160, "km")
  38397. },
  38398. ]
  38399. ))
  38400. characterMakers.push(() => makeCharacter(
  38401. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38402. {
  38403. front: {
  38404. height: math.unit(7 + 11/12, "feet"),
  38405. weight: math.unit(342.8, "lb"),
  38406. name: "Front",
  38407. image: {
  38408. source: "./media/characters/vivian-orca-dragon/front.svg",
  38409. extra: 1890/1865,
  38410. bottom: 28/1918
  38411. }
  38412. },
  38413. },
  38414. [
  38415. {
  38416. name: "Micro",
  38417. height: math.unit(5, "inches")
  38418. },
  38419. {
  38420. name: "Normal",
  38421. height: math.unit(7 + 11/12, "feet"),
  38422. default: true
  38423. },
  38424. {
  38425. name: "Macro",
  38426. height: math.unit(395 + 7/12, "feet")
  38427. },
  38428. ]
  38429. ))
  38430. characterMakers.push(() => makeCharacter(
  38431. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38432. {
  38433. side: {
  38434. height: math.unit(10, "feet"),
  38435. weight: math.unit(1442, "lb"),
  38436. name: "Side",
  38437. image: {
  38438. source: "./media/characters/lotherakon/side.svg",
  38439. extra: 1604/1497,
  38440. bottom: 89/1693
  38441. }
  38442. },
  38443. },
  38444. [
  38445. {
  38446. name: "Mortal Interaction",
  38447. height: math.unit(10, "feet")
  38448. },
  38449. {
  38450. name: "Large",
  38451. height: math.unit(30, "feet"),
  38452. default: true
  38453. },
  38454. {
  38455. name: "Giant",
  38456. height: math.unit(100, "feet")
  38457. },
  38458. {
  38459. name: "Kaiju",
  38460. height: math.unit(300, "feet")
  38461. },
  38462. {
  38463. name: "Macro",
  38464. height: math.unit(1000, "feet")
  38465. },
  38466. {
  38467. name: "Macro+",
  38468. height: math.unit(3000, "feet")
  38469. },
  38470. {
  38471. name: "Megamacro",
  38472. height: math.unit(10000, "feet")
  38473. },
  38474. {
  38475. name: "City-Crushing",
  38476. height: math.unit(30000, "feet")
  38477. },
  38478. {
  38479. name: "Continent Cracker",
  38480. height: math.unit(30e6, "feet")
  38481. },
  38482. {
  38483. name: "Earth Eclipsing",
  38484. height: math.unit(3e8, "feet")
  38485. },
  38486. {
  38487. name: "Gas Giant Gulper",
  38488. height: math.unit(3e9, "feet")
  38489. },
  38490. {
  38491. name: "Sol-Swallowing",
  38492. height: math.unit(1e11, "feet")
  38493. },
  38494. {
  38495. name: "System Swallower",
  38496. height: math.unit(3e14, "feet")
  38497. },
  38498. {
  38499. name: "Galaxy Gulper",
  38500. height: math.unit(10, "galaxies")
  38501. },
  38502. {
  38503. name: "Light Universal",
  38504. height: math.unit(5, "universes")
  38505. },
  38506. {
  38507. name: "Universe Palm",
  38508. height: math.unit(20, "universes")
  38509. },
  38510. {
  38511. name: "Light Multiversal",
  38512. height: math.unit(5, "multiverses")
  38513. },
  38514. {
  38515. name: "Multiverse Palm",
  38516. height: math.unit(20, "multiverses")
  38517. },
  38518. {
  38519. name: "Inferno Incarnate",
  38520. height: math.unit(1e7, "multiverses")
  38521. },
  38522. ]
  38523. ))
  38524. characterMakers.push(() => makeCharacter(
  38525. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38526. {
  38527. front: {
  38528. height: math.unit(8, "feet"),
  38529. weight: math.unit(1200, "lb"),
  38530. name: "Front",
  38531. image: {
  38532. source: "./media/characters/malithee/front.svg",
  38533. extra: 1675/1640,
  38534. bottom: 162/1837
  38535. }
  38536. },
  38537. },
  38538. [
  38539. {
  38540. name: "Mortal Interaction",
  38541. height: math.unit(8, "feet"),
  38542. default: true
  38543. },
  38544. {
  38545. name: "Large",
  38546. height: math.unit(24, "feet")
  38547. },
  38548. {
  38549. name: "Kaiju",
  38550. height: math.unit(240, "feet")
  38551. },
  38552. {
  38553. name: "Megamacro",
  38554. height: math.unit(8000, "feet")
  38555. },
  38556. {
  38557. name: "Continent Cracker",
  38558. height: math.unit(24e6, "feet")
  38559. },
  38560. {
  38561. name: "Earth-Eclipsing",
  38562. height: math.unit(2.4e8, "feet")
  38563. },
  38564. {
  38565. name: "Sol-Swallowing",
  38566. height: math.unit(8e10, "feet")
  38567. },
  38568. {
  38569. name: "Galaxy Gulper",
  38570. height: math.unit(8, "galaxies")
  38571. },
  38572. {
  38573. name: "Light Universal",
  38574. height: math.unit(4, "universes")
  38575. },
  38576. {
  38577. name: "Universe Atoms",
  38578. height: math.unit(1.829e9, "universes")
  38579. },
  38580. {
  38581. name: "Light Multiversal",
  38582. height: math.unit(4, "multiverses")
  38583. },
  38584. {
  38585. name: "Multiverse Atoms",
  38586. height: math.unit(1.829e9, "multiverses")
  38587. },
  38588. {
  38589. name: "Nigh-Omnipresence",
  38590. height: math.unit(8e261, "multiverses")
  38591. },
  38592. ]
  38593. ))
  38594. characterMakers.push(() => makeCharacter(
  38595. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38596. {
  38597. front: {
  38598. height: math.unit(10, "feet"),
  38599. weight: math.unit(1500, "lb"),
  38600. name: "Front",
  38601. image: {
  38602. source: "./media/characters/miles-thestia/front.svg",
  38603. extra: 1812/1727,
  38604. bottom: 86/1898
  38605. }
  38606. },
  38607. back: {
  38608. height: math.unit(10, "feet"),
  38609. weight: math.unit(1500, "lb"),
  38610. name: "Back",
  38611. image: {
  38612. source: "./media/characters/miles-thestia/back.svg",
  38613. extra: 1799/1690,
  38614. bottom: 47/1846
  38615. }
  38616. },
  38617. frontNsfw: {
  38618. height: math.unit(10, "feet"),
  38619. weight: math.unit(1500, "lb"),
  38620. name: "Front (NSFW)",
  38621. image: {
  38622. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38623. extra: 1812/1727,
  38624. bottom: 86/1898
  38625. }
  38626. },
  38627. },
  38628. [
  38629. {
  38630. name: "Mini-Macro",
  38631. height: math.unit(10, "feet"),
  38632. default: true
  38633. },
  38634. ]
  38635. ))
  38636. characterMakers.push(() => makeCharacter(
  38637. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38638. {
  38639. front: {
  38640. height: math.unit(25, "feet"),
  38641. name: "Front",
  38642. image: {
  38643. source: "./media/characters/titan-s-wulf/front.svg",
  38644. extra: 1560/1484,
  38645. bottom: 76/1636
  38646. }
  38647. },
  38648. },
  38649. [
  38650. {
  38651. name: "Smallest",
  38652. height: math.unit(25, "feet"),
  38653. default: true
  38654. },
  38655. {
  38656. name: "Normal",
  38657. height: math.unit(200, "feet")
  38658. },
  38659. {
  38660. name: "Macro",
  38661. height: math.unit(200000, "feet")
  38662. },
  38663. {
  38664. name: "Multiversal Original",
  38665. height: math.unit(10000, "multiverses")
  38666. },
  38667. ]
  38668. ))
  38669. characterMakers.push(() => makeCharacter(
  38670. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38671. {
  38672. front: {
  38673. height: math.unit(8, "feet"),
  38674. weight: math.unit(553, "lb"),
  38675. name: "Front",
  38676. image: {
  38677. source: "./media/characters/tawendeh/front.svg",
  38678. extra: 2365/2268,
  38679. bottom: 83/2448
  38680. }
  38681. },
  38682. frontClothed: {
  38683. height: math.unit(8, "feet"),
  38684. weight: math.unit(553, "lb"),
  38685. name: "Front (Clothed)",
  38686. image: {
  38687. source: "./media/characters/tawendeh/front-clothed.svg",
  38688. extra: 2365/2268,
  38689. bottom: 83/2448
  38690. }
  38691. },
  38692. back: {
  38693. height: math.unit(8, "feet"),
  38694. weight: math.unit(553, "lb"),
  38695. name: "Back",
  38696. image: {
  38697. source: "./media/characters/tawendeh/back.svg",
  38698. extra: 2397/2294,
  38699. bottom: 42/2439
  38700. }
  38701. },
  38702. },
  38703. [
  38704. {
  38705. name: "Mortal Interaction",
  38706. height: math.unit(8, "feet"),
  38707. default: true
  38708. },
  38709. {
  38710. name: "Giant",
  38711. height: math.unit(80, "feet")
  38712. },
  38713. {
  38714. name: "Macro",
  38715. height: math.unit(800, "feet")
  38716. },
  38717. {
  38718. name: "Megamacro",
  38719. height: math.unit(8000, "feet")
  38720. },
  38721. {
  38722. name: "City-Crushing",
  38723. height: math.unit(24000, "feet")
  38724. },
  38725. {
  38726. name: "Mountain-Mashing",
  38727. height: math.unit(80000, "feet")
  38728. },
  38729. {
  38730. name: "Nation Nemesis",
  38731. height: math.unit(8e6, "feet")
  38732. },
  38733. {
  38734. name: "Continent Cracker",
  38735. height: math.unit(24e6, "feet")
  38736. },
  38737. {
  38738. name: "Earth-Eclipsing",
  38739. height: math.unit(2.4e8, "feet")
  38740. },
  38741. {
  38742. name: "Gas Giant Gulper",
  38743. height: math.unit(2.4e9, "feet")
  38744. },
  38745. {
  38746. name: "Sol-Swallowing",
  38747. height: math.unit(8e10, "feet")
  38748. },
  38749. {
  38750. name: "Galaxy Gulper",
  38751. height: math.unit(8, "galaxies")
  38752. },
  38753. {
  38754. name: "Cosmos Churner",
  38755. height: math.unit(8, "universes")
  38756. },
  38757. {
  38758. name: "Omnipotent Otter",
  38759. height: math.unit(80, "universes")
  38760. },
  38761. ]
  38762. ))
  38763. characterMakers.push(() => makeCharacter(
  38764. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38765. {
  38766. front: {
  38767. height: math.unit(2.6, "meters"),
  38768. weight: math.unit(900, "kg"),
  38769. name: "Front",
  38770. image: {
  38771. source: "./media/characters/neesha/front.svg",
  38772. extra: 1803/1653,
  38773. bottom: 128/1931
  38774. }
  38775. },
  38776. },
  38777. [
  38778. {
  38779. name: "Normal",
  38780. height: math.unit(2.6, "meters"),
  38781. default: true
  38782. },
  38783. {
  38784. name: "Macro",
  38785. height: math.unit(50, "meters")
  38786. },
  38787. ]
  38788. ))
  38789. characterMakers.push(() => makeCharacter(
  38790. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38791. {
  38792. front: {
  38793. height: math.unit(5, "feet"),
  38794. weight: math.unit(185, "lb"),
  38795. name: "Front",
  38796. image: {
  38797. source: "./media/characters/kyera/front.svg",
  38798. extra: 1875/1790,
  38799. bottom: 96/1971
  38800. }
  38801. },
  38802. },
  38803. [
  38804. {
  38805. name: "Normal",
  38806. height: math.unit(5, "feet"),
  38807. default: true
  38808. },
  38809. ]
  38810. ))
  38811. characterMakers.push(() => makeCharacter(
  38812. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38813. {
  38814. front: {
  38815. height: math.unit(7 + 6/12, "feet"),
  38816. weight: math.unit(540, "lb"),
  38817. name: "Front",
  38818. image: {
  38819. source: "./media/characters/yuko/front.svg",
  38820. extra: 1282/1222,
  38821. bottom: 101/1383
  38822. }
  38823. },
  38824. frontClothed: {
  38825. height: math.unit(7 + 6/12, "feet"),
  38826. weight: math.unit(540, "lb"),
  38827. name: "Front (Clothed)",
  38828. image: {
  38829. source: "./media/characters/yuko/front-clothed.svg",
  38830. extra: 1282/1222,
  38831. bottom: 101/1383
  38832. }
  38833. },
  38834. },
  38835. [
  38836. {
  38837. name: "Normal",
  38838. height: math.unit(7 + 6/12, "feet"),
  38839. default: true
  38840. },
  38841. {
  38842. name: "Macro",
  38843. height: math.unit(26 + 9/12, "feet")
  38844. },
  38845. {
  38846. name: "Megamacro",
  38847. height: math.unit(300, "feet")
  38848. },
  38849. {
  38850. name: "Gigamacro",
  38851. height: math.unit(5000, "feet")
  38852. },
  38853. {
  38854. name: "Planetary",
  38855. height: math.unit(10000, "miles")
  38856. },
  38857. ]
  38858. ))
  38859. characterMakers.push(() => makeCharacter(
  38860. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38861. {
  38862. front: {
  38863. height: math.unit(8 + 2/12, "feet"),
  38864. weight: math.unit(600, "lb"),
  38865. name: "Front",
  38866. image: {
  38867. source: "./media/characters/deam-nitrel/front.svg",
  38868. extra: 1308/1234,
  38869. bottom: 125/1433
  38870. }
  38871. },
  38872. },
  38873. [
  38874. {
  38875. name: "Normal",
  38876. height: math.unit(8 + 2/12, "feet"),
  38877. default: true
  38878. },
  38879. ]
  38880. ))
  38881. characterMakers.push(() => makeCharacter(
  38882. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38883. {
  38884. front: {
  38885. height: math.unit(6.1, "feet"),
  38886. weight: math.unit(180, "lb"),
  38887. name: "Front",
  38888. image: {
  38889. source: "./media/characters/skyress/front.svg",
  38890. extra: 1045/915,
  38891. bottom: 28/1073
  38892. }
  38893. },
  38894. maw: {
  38895. height: math.unit(1, "feet"),
  38896. name: "Maw",
  38897. image: {
  38898. source: "./media/characters/skyress/maw.svg"
  38899. }
  38900. },
  38901. },
  38902. [
  38903. {
  38904. name: "Normal",
  38905. height: math.unit(6.1, "feet"),
  38906. default: true
  38907. },
  38908. {
  38909. name: "Macro",
  38910. height: math.unit(200, "feet")
  38911. },
  38912. ]
  38913. ))
  38914. characterMakers.push(() => makeCharacter(
  38915. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38916. {
  38917. front: {
  38918. height: math.unit(4 + 2/12, "feet"),
  38919. weight: math.unit(40, "kg"),
  38920. name: "Front",
  38921. image: {
  38922. source: "./media/characters/amethyst-jones/front.svg",
  38923. extra: 1220/1150,
  38924. bottom: 101/1321
  38925. }
  38926. },
  38927. },
  38928. [
  38929. {
  38930. name: "Normal",
  38931. height: math.unit(4 + 2/12, "feet"),
  38932. default: true
  38933. },
  38934. ]
  38935. ))
  38936. characterMakers.push(() => makeCharacter(
  38937. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38938. {
  38939. front: {
  38940. height: math.unit(1.7, "m"),
  38941. weight: math.unit(135, "lb"),
  38942. name: "Front",
  38943. image: {
  38944. source: "./media/characters/jade/front.svg",
  38945. extra: 1818/1767,
  38946. bottom: 32/1850
  38947. }
  38948. },
  38949. back: {
  38950. height: math.unit(1.7, "m"),
  38951. weight: math.unit(135, "lb"),
  38952. name: "Back",
  38953. image: {
  38954. source: "./media/characters/jade/back.svg",
  38955. extra: 1869/1809,
  38956. bottom: 35/1904
  38957. }
  38958. },
  38959. hand: {
  38960. height: math.unit(0.24, "m"),
  38961. name: "Hand",
  38962. image: {
  38963. source: "./media/characters/jade/hand.svg"
  38964. }
  38965. },
  38966. foot: {
  38967. height: math.unit(0.263, "m"),
  38968. name: "Foot",
  38969. image: {
  38970. source: "./media/characters/jade/foot.svg"
  38971. }
  38972. },
  38973. dick: {
  38974. height: math.unit(0.47, "m"),
  38975. name: "Dick",
  38976. image: {
  38977. source: "./media/characters/jade/dick.svg"
  38978. }
  38979. },
  38980. },
  38981. [
  38982. {
  38983. name: "Micro",
  38984. height: math.unit(22, "cm")
  38985. },
  38986. {
  38987. name: "Normal",
  38988. height: math.unit(1.7, "m"),
  38989. default: true
  38990. },
  38991. {
  38992. name: "Macro",
  38993. height: math.unit(152, "m")
  38994. },
  38995. ]
  38996. ))
  38997. characterMakers.push(() => makeCharacter(
  38998. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38999. {
  39000. front: {
  39001. height: math.unit(100, "miles"),
  39002. weight: math.unit(20000, "tons"),
  39003. name: "Front",
  39004. image: {
  39005. source: "./media/characters/cookie/front.svg",
  39006. extra: 1125/1070,
  39007. bottom: 30/1155
  39008. }
  39009. },
  39010. },
  39011. [
  39012. {
  39013. name: "Big",
  39014. height: math.unit(50, "feet")
  39015. },
  39016. {
  39017. name: "Macro",
  39018. height: math.unit(100, "miles"),
  39019. default: true
  39020. },
  39021. {
  39022. name: "Megamacro",
  39023. height: math.unit(90000, "miles")
  39024. },
  39025. ]
  39026. ))
  39027. characterMakers.push(() => makeCharacter(
  39028. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39029. {
  39030. front: {
  39031. height: math.unit(6, "feet"),
  39032. weight: math.unit(145, "lb"),
  39033. name: "Front",
  39034. image: {
  39035. source: "./media/characters/farzian/front.svg",
  39036. extra: 1902/1693,
  39037. bottom: 108/2010
  39038. }
  39039. },
  39040. },
  39041. [
  39042. {
  39043. name: "Macro",
  39044. height: math.unit(500, "feet"),
  39045. default: true
  39046. },
  39047. ]
  39048. ))
  39049. characterMakers.push(() => makeCharacter(
  39050. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39051. {
  39052. front: {
  39053. height: math.unit(3 + 6/12, "feet"),
  39054. weight: math.unit(50, "lb"),
  39055. name: "Front",
  39056. image: {
  39057. source: "./media/characters/kimberly-tilson/front.svg",
  39058. extra: 1400/1322,
  39059. bottom: 36/1436
  39060. }
  39061. },
  39062. back: {
  39063. height: math.unit(3 + 6/12, "feet"),
  39064. weight: math.unit(50, "lb"),
  39065. name: "Back",
  39066. image: {
  39067. source: "./media/characters/kimberly-tilson/back.svg",
  39068. extra: 1370/1307,
  39069. bottom: 20/1390
  39070. }
  39071. },
  39072. },
  39073. [
  39074. {
  39075. name: "Normal",
  39076. height: math.unit(3 + 6/12, "feet"),
  39077. default: true
  39078. },
  39079. ]
  39080. ))
  39081. characterMakers.push(() => makeCharacter(
  39082. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39083. {
  39084. front: {
  39085. height: math.unit(1148, "feet"),
  39086. weight: math.unit(34057, "lb"),
  39087. name: "Front",
  39088. image: {
  39089. source: "./media/characters/harthos/front.svg",
  39090. extra: 1391/1339,
  39091. bottom: 13/1404
  39092. }
  39093. },
  39094. },
  39095. [
  39096. {
  39097. name: "Macro",
  39098. height: math.unit(1148, "feet"),
  39099. default: true
  39100. },
  39101. ]
  39102. ))
  39103. characterMakers.push(() => makeCharacter(
  39104. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39105. {
  39106. front: {
  39107. height: math.unit(15, "feet"),
  39108. name: "Front",
  39109. image: {
  39110. source: "./media/characters/hypatia/front.svg",
  39111. extra: 1653/1591,
  39112. bottom: 79/1732
  39113. }
  39114. },
  39115. },
  39116. [
  39117. {
  39118. name: "Normal",
  39119. height: math.unit(15, "feet")
  39120. },
  39121. {
  39122. name: "Small",
  39123. height: math.unit(300, "feet")
  39124. },
  39125. {
  39126. name: "Macro",
  39127. height: math.unit(2500, "feet"),
  39128. default: true
  39129. },
  39130. {
  39131. name: "Mega Macro",
  39132. height: math.unit(1500, "miles")
  39133. },
  39134. {
  39135. name: "Giga Macro",
  39136. height: math.unit(1.5e6, "miles")
  39137. },
  39138. ]
  39139. ))
  39140. characterMakers.push(() => makeCharacter(
  39141. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39142. {
  39143. front: {
  39144. height: math.unit(6, "feet"),
  39145. weight: math.unit(200, "lb"),
  39146. name: "Front",
  39147. image: {
  39148. source: "./media/characters/wulver/front.svg",
  39149. extra: 1724/1632,
  39150. bottom: 130/1854
  39151. }
  39152. },
  39153. frontNsfw: {
  39154. height: math.unit(6, "feet"),
  39155. weight: math.unit(200, "lb"),
  39156. name: "Front (NSFW)",
  39157. image: {
  39158. source: "./media/characters/wulver/front-nsfw.svg",
  39159. extra: 1724/1632,
  39160. bottom: 130/1854
  39161. }
  39162. },
  39163. },
  39164. [
  39165. {
  39166. name: "Human-Sized",
  39167. height: math.unit(6, "feet")
  39168. },
  39169. {
  39170. name: "Normal",
  39171. height: math.unit(4, "meters"),
  39172. default: true
  39173. },
  39174. {
  39175. name: "Large",
  39176. height: math.unit(6, "m")
  39177. },
  39178. ]
  39179. ))
  39180. characterMakers.push(() => makeCharacter(
  39181. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39182. {
  39183. front: {
  39184. height: math.unit(7, "feet"),
  39185. name: "Front",
  39186. image: {
  39187. source: "./media/characters/maru/front.svg",
  39188. extra: 1595/1570,
  39189. bottom: 0/1595
  39190. }
  39191. },
  39192. },
  39193. [
  39194. {
  39195. name: "Normal",
  39196. height: math.unit(7, "feet"),
  39197. default: true
  39198. },
  39199. {
  39200. name: "Macro",
  39201. height: math.unit(700, "feet")
  39202. },
  39203. {
  39204. name: "Mega Macro",
  39205. height: math.unit(25, "miles")
  39206. },
  39207. ]
  39208. ))
  39209. characterMakers.push(() => makeCharacter(
  39210. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39211. {
  39212. front: {
  39213. height: math.unit(6, "feet"),
  39214. weight: math.unit(170, "lb"),
  39215. name: "Front",
  39216. image: {
  39217. source: "./media/characters/xenon/front.svg",
  39218. extra: 1376/1305,
  39219. bottom: 56/1432
  39220. }
  39221. },
  39222. back: {
  39223. height: math.unit(6, "feet"),
  39224. weight: math.unit(170, "lb"),
  39225. name: "Back",
  39226. image: {
  39227. source: "./media/characters/xenon/back.svg",
  39228. extra: 1328/1259,
  39229. bottom: 95/1423
  39230. }
  39231. },
  39232. maw: {
  39233. height: math.unit(0.52, "feet"),
  39234. name: "Maw",
  39235. image: {
  39236. source: "./media/characters/xenon/maw.svg"
  39237. }
  39238. },
  39239. hand: {
  39240. height: math.unit(0.82, "feet"),
  39241. name: "Hand",
  39242. image: {
  39243. source: "./media/characters/xenon/hand.svg"
  39244. }
  39245. },
  39246. foot: {
  39247. height: math.unit(1.13, "feet"),
  39248. name: "Foot",
  39249. image: {
  39250. source: "./media/characters/xenon/foot.svg"
  39251. }
  39252. },
  39253. },
  39254. [
  39255. {
  39256. name: "Micro",
  39257. height: math.unit(0.8, "inches")
  39258. },
  39259. {
  39260. name: "Normal",
  39261. height: math.unit(6, "feet")
  39262. },
  39263. {
  39264. name: "Macro",
  39265. height: math.unit(50, "feet"),
  39266. default: true
  39267. },
  39268. {
  39269. name: "Macro+",
  39270. height: math.unit(250, "feet")
  39271. },
  39272. {
  39273. name: "Megamacro",
  39274. height: math.unit(1500, "feet")
  39275. },
  39276. ]
  39277. ))
  39278. characterMakers.push(() => makeCharacter(
  39279. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39280. {
  39281. front: {
  39282. height: math.unit(7 + 5/12, "feet"),
  39283. name: "Front",
  39284. image: {
  39285. source: "./media/characters/zane/front.svg",
  39286. extra: 1260/1203,
  39287. bottom: 94/1354
  39288. }
  39289. },
  39290. back: {
  39291. height: math.unit(5.05, "feet"),
  39292. name: "Back",
  39293. image: {
  39294. source: "./media/characters/zane/back.svg",
  39295. extra: 893/829,
  39296. bottom: 30/923
  39297. }
  39298. },
  39299. werewolf: {
  39300. height: math.unit(11, "feet"),
  39301. name: "Werewolf",
  39302. image: {
  39303. source: "./media/characters/zane/werewolf.svg",
  39304. extra: 1383/1323,
  39305. bottom: 89/1472
  39306. }
  39307. },
  39308. foot: {
  39309. height: math.unit(1.46, "feet"),
  39310. name: "Foot",
  39311. image: {
  39312. source: "./media/characters/zane/foot.svg"
  39313. }
  39314. },
  39315. footFront: {
  39316. height: math.unit(0.784, "feet"),
  39317. name: "Foot (Front)",
  39318. image: {
  39319. source: "./media/characters/zane/foot-front.svg"
  39320. }
  39321. },
  39322. dick: {
  39323. height: math.unit(1.95, "feet"),
  39324. name: "Dick",
  39325. image: {
  39326. source: "./media/characters/zane/dick.svg"
  39327. }
  39328. },
  39329. dickWerewolf: {
  39330. height: math.unit(3.77, "feet"),
  39331. name: "Dick (Werewolf)",
  39332. image: {
  39333. source: "./media/characters/zane/dick.svg"
  39334. }
  39335. },
  39336. },
  39337. [
  39338. {
  39339. name: "Normal",
  39340. height: math.unit(7 + 5/12, "feet"),
  39341. default: true
  39342. },
  39343. ]
  39344. ))
  39345. characterMakers.push(() => makeCharacter(
  39346. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39347. {
  39348. front: {
  39349. height: math.unit(6 + 2/12, "feet"),
  39350. weight: math.unit(284, "lb"),
  39351. name: "Front",
  39352. image: {
  39353. source: "./media/characters/benni-desparque/front.svg",
  39354. extra: 1353/1126,
  39355. bottom: 69/1422
  39356. }
  39357. },
  39358. },
  39359. [
  39360. {
  39361. name: "Civilian",
  39362. height: math.unit(6 + 2/12, "feet")
  39363. },
  39364. {
  39365. name: "Normal",
  39366. height: math.unit(98, "feet"),
  39367. default: true
  39368. },
  39369. {
  39370. name: "Kaiju Fighter",
  39371. height: math.unit(268, "feet")
  39372. },
  39373. ]
  39374. ))
  39375. characterMakers.push(() => makeCharacter(
  39376. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39377. {
  39378. front: {
  39379. height: math.unit(5, "feet"),
  39380. weight: math.unit(105, "lb"),
  39381. name: "Front",
  39382. image: {
  39383. source: "./media/characters/maxine/front.svg",
  39384. extra: 1386/1250,
  39385. bottom: 71/1457
  39386. }
  39387. },
  39388. },
  39389. [
  39390. {
  39391. name: "Normal",
  39392. height: math.unit(5, "feet"),
  39393. default: true
  39394. },
  39395. ]
  39396. ))
  39397. characterMakers.push(() => makeCharacter(
  39398. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39399. {
  39400. front: {
  39401. height: math.unit(11 + 7/12, "feet"),
  39402. weight: math.unit(9576, "lb"),
  39403. name: "Front",
  39404. image: {
  39405. source: "./media/characters/scaly/front.svg",
  39406. extra: 888/867,
  39407. bottom: 36/924
  39408. }
  39409. },
  39410. },
  39411. [
  39412. {
  39413. name: "Normal",
  39414. height: math.unit(11 + 7/12, "feet"),
  39415. default: true
  39416. },
  39417. ]
  39418. ))
  39419. characterMakers.push(() => makeCharacter(
  39420. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39421. {
  39422. front: {
  39423. height: math.unit(9, "inches"),
  39424. name: "Front",
  39425. image: {
  39426. source: "./media/characters/saelria/front.svg",
  39427. extra: 662/621,
  39428. bottom: 12/674
  39429. }
  39430. },
  39431. },
  39432. [
  39433. {
  39434. name: "Tiny",
  39435. height: math.unit(9, "inches"),
  39436. default: true
  39437. },
  39438. ]
  39439. ))
  39440. characterMakers.push(() => makeCharacter(
  39441. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39442. {
  39443. front: {
  39444. height: math.unit(80, "meters"),
  39445. weight: math.unit(7000, "tonnes"),
  39446. name: "Front",
  39447. image: {
  39448. source: "./media/characters/tef/front.svg",
  39449. extra: 2036/1991,
  39450. bottom: 54/2090
  39451. }
  39452. },
  39453. back: {
  39454. height: math.unit(80, "meters"),
  39455. weight: math.unit(7000, "tonnes"),
  39456. name: "Back",
  39457. image: {
  39458. source: "./media/characters/tef/back.svg",
  39459. extra: 2036/1991,
  39460. bottom: 54/2090
  39461. }
  39462. },
  39463. },
  39464. [
  39465. {
  39466. name: "Macro",
  39467. height: math.unit(80, "meters"),
  39468. default: true
  39469. },
  39470. ]
  39471. ))
  39472. characterMakers.push(() => makeCharacter(
  39473. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39474. {
  39475. front: {
  39476. height: math.unit(13, "feet"),
  39477. weight: math.unit(6, "tons"),
  39478. name: "Front",
  39479. image: {
  39480. source: "./media/characters/rover/front.svg",
  39481. extra: 1233/1156,
  39482. bottom: 50/1283
  39483. }
  39484. },
  39485. back: {
  39486. height: math.unit(13, "feet"),
  39487. weight: math.unit(6, "tons"),
  39488. name: "Back",
  39489. image: {
  39490. source: "./media/characters/rover/back.svg",
  39491. extra: 1327/1258,
  39492. bottom: 39/1366
  39493. }
  39494. },
  39495. },
  39496. [
  39497. {
  39498. name: "Normal",
  39499. height: math.unit(13, "feet"),
  39500. default: true
  39501. },
  39502. {
  39503. name: "Macro",
  39504. height: math.unit(1300, "feet")
  39505. },
  39506. {
  39507. name: "Megamacro",
  39508. height: math.unit(1300, "miles")
  39509. },
  39510. {
  39511. name: "Gigamacro",
  39512. height: math.unit(1300000, "miles")
  39513. },
  39514. ]
  39515. ))
  39516. characterMakers.push(() => makeCharacter(
  39517. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39518. {
  39519. front: {
  39520. height: math.unit(6, "feet"),
  39521. weight: math.unit(150, "lb"),
  39522. name: "Front",
  39523. image: {
  39524. source: "./media/characters/ariz/front.svg",
  39525. extra: 1401/1346,
  39526. bottom: 5/1406
  39527. }
  39528. },
  39529. },
  39530. [
  39531. {
  39532. name: "Normal",
  39533. height: math.unit(10, "feet"),
  39534. default: true
  39535. },
  39536. ]
  39537. ))
  39538. characterMakers.push(() => makeCharacter(
  39539. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39540. {
  39541. front: {
  39542. height: math.unit(6, "feet"),
  39543. weight: math.unit(140, "lb"),
  39544. name: "Front",
  39545. image: {
  39546. source: "./media/characters/sigrun/front.svg",
  39547. extra: 1418/1359,
  39548. bottom: 27/1445
  39549. }
  39550. },
  39551. },
  39552. [
  39553. {
  39554. name: "Macro",
  39555. height: math.unit(35, "feet"),
  39556. default: true
  39557. },
  39558. ]
  39559. ))
  39560. characterMakers.push(() => makeCharacter(
  39561. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39562. {
  39563. front: {
  39564. height: math.unit(6, "feet"),
  39565. weight: math.unit(150, "lb"),
  39566. name: "Front",
  39567. image: {
  39568. source: "./media/characters/numin/front.svg",
  39569. extra: 1433/1388,
  39570. bottom: 12/1445
  39571. }
  39572. },
  39573. },
  39574. [
  39575. {
  39576. name: "Macro",
  39577. height: math.unit(21.5, "km"),
  39578. default: true
  39579. },
  39580. ]
  39581. ))
  39582. characterMakers.push(() => makeCharacter(
  39583. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39584. {
  39585. front: {
  39586. height: math.unit(6, "feet"),
  39587. weight: math.unit(463, "lb"),
  39588. name: "Front",
  39589. image: {
  39590. source: "./media/characters/melwa/front.svg",
  39591. extra: 1307/1248,
  39592. bottom: 93/1400
  39593. }
  39594. },
  39595. },
  39596. [
  39597. {
  39598. name: "Macro",
  39599. height: math.unit(50, "meters"),
  39600. default: true
  39601. },
  39602. ]
  39603. ))
  39604. characterMakers.push(() => makeCharacter(
  39605. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39606. {
  39607. front: {
  39608. height: math.unit(325, "feet"),
  39609. name: "Front",
  39610. image: {
  39611. source: "./media/characters/zorkaiju/front.svg",
  39612. extra: 1955/1814,
  39613. bottom: 40/1995
  39614. }
  39615. },
  39616. frontExtended: {
  39617. height: math.unit(325, "feet"),
  39618. name: "Front (Extended)",
  39619. image: {
  39620. source: "./media/characters/zorkaiju/front-extended.svg",
  39621. extra: 1955/1814,
  39622. bottom: 40/1995
  39623. }
  39624. },
  39625. side: {
  39626. height: math.unit(325, "feet"),
  39627. name: "Side",
  39628. image: {
  39629. source: "./media/characters/zorkaiju/side.svg",
  39630. extra: 1495/1396,
  39631. bottom: 17/1512
  39632. }
  39633. },
  39634. sideExtended: {
  39635. height: math.unit(325, "feet"),
  39636. name: "Side (Extended)",
  39637. image: {
  39638. source: "./media/characters/zorkaiju/side-extended.svg",
  39639. extra: 1495/1396,
  39640. bottom: 17/1512
  39641. }
  39642. },
  39643. back: {
  39644. height: math.unit(325, "feet"),
  39645. name: "Back",
  39646. image: {
  39647. source: "./media/characters/zorkaiju/back.svg",
  39648. extra: 1959/1821,
  39649. bottom: 31/1990
  39650. }
  39651. },
  39652. backExtended: {
  39653. height: math.unit(325, "feet"),
  39654. name: "Back (Extended)",
  39655. image: {
  39656. source: "./media/characters/zorkaiju/back-extended.svg",
  39657. extra: 1959/1821,
  39658. bottom: 31/1990
  39659. }
  39660. },
  39661. hand: {
  39662. height: math.unit(58.4, "feet"),
  39663. name: "Hand",
  39664. image: {
  39665. source: "./media/characters/zorkaiju/hand.svg"
  39666. }
  39667. },
  39668. handExtended: {
  39669. height: math.unit(61.4, "feet"),
  39670. name: "Hand (Extended)",
  39671. image: {
  39672. source: "./media/characters/zorkaiju/hand-extended.svg"
  39673. }
  39674. },
  39675. foot: {
  39676. height: math.unit(95, "feet"),
  39677. name: "Foot",
  39678. image: {
  39679. source: "./media/characters/zorkaiju/foot.svg"
  39680. }
  39681. },
  39682. leftArm: {
  39683. height: math.unit(59, "feet"),
  39684. name: "Left Arm",
  39685. image: {
  39686. source: "./media/characters/zorkaiju/left-arm.svg"
  39687. }
  39688. },
  39689. rightArm: {
  39690. height: math.unit(59, "feet"),
  39691. name: "Right Arm",
  39692. image: {
  39693. source: "./media/characters/zorkaiju/right-arm.svg"
  39694. }
  39695. },
  39696. tail: {
  39697. height: math.unit(104, "feet"),
  39698. name: "Tail",
  39699. image: {
  39700. source: "./media/characters/zorkaiju/tail.svg"
  39701. }
  39702. },
  39703. tailExtended: {
  39704. height: math.unit(104, "feet"),
  39705. name: "Tail (Extended)",
  39706. image: {
  39707. source: "./media/characters/zorkaiju/tail-extended.svg"
  39708. }
  39709. },
  39710. tailBottom: {
  39711. height: math.unit(104, "feet"),
  39712. name: "Tail Bottom",
  39713. image: {
  39714. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39715. }
  39716. },
  39717. crystal: {
  39718. height: math.unit(27.54, "feet"),
  39719. name: "Crystal",
  39720. image: {
  39721. source: "./media/characters/zorkaiju/crystal.svg"
  39722. }
  39723. },
  39724. },
  39725. [
  39726. {
  39727. name: "Kaiju",
  39728. height: math.unit(325, "feet"),
  39729. default: true
  39730. },
  39731. ]
  39732. ))
  39733. characterMakers.push(() => makeCharacter(
  39734. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39735. {
  39736. front: {
  39737. height: math.unit(6 + 1/12, "feet"),
  39738. weight: math.unit(115, "lb"),
  39739. name: "Front",
  39740. image: {
  39741. source: "./media/characters/bailey-belfry/front.svg",
  39742. extra: 1240/1121,
  39743. bottom: 101/1341
  39744. }
  39745. },
  39746. },
  39747. [
  39748. {
  39749. name: "Normal",
  39750. height: math.unit(6 + 1/12, "feet"),
  39751. default: true
  39752. },
  39753. ]
  39754. ))
  39755. characterMakers.push(() => makeCharacter(
  39756. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39757. {
  39758. side: {
  39759. height: math.unit(4, "meters"),
  39760. weight: math.unit(250, "kg"),
  39761. name: "Side",
  39762. image: {
  39763. source: "./media/characters/blacky/side.svg",
  39764. extra: 1027/919,
  39765. bottom: 43/1070
  39766. }
  39767. },
  39768. maw: {
  39769. height: math.unit(1, "meters"),
  39770. name: "Maw",
  39771. image: {
  39772. source: "./media/characters/blacky/maw.svg"
  39773. }
  39774. },
  39775. paw: {
  39776. height: math.unit(1, "meters"),
  39777. name: "Paw",
  39778. image: {
  39779. source: "./media/characters/blacky/paw.svg"
  39780. }
  39781. },
  39782. },
  39783. [
  39784. {
  39785. name: "Normal",
  39786. height: math.unit(4, "meters"),
  39787. default: true
  39788. },
  39789. ]
  39790. ))
  39791. characterMakers.push(() => makeCharacter(
  39792. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39793. {
  39794. front: {
  39795. height: math.unit(170, "cm"),
  39796. weight: math.unit(66, "kg"),
  39797. name: "Front",
  39798. image: {
  39799. source: "./media/characters/thux-ei/front.svg",
  39800. extra: 1109/1011,
  39801. bottom: 8/1117
  39802. }
  39803. },
  39804. },
  39805. [
  39806. {
  39807. name: "Normal",
  39808. height: math.unit(170, "cm"),
  39809. default: true
  39810. },
  39811. ]
  39812. ))
  39813. characterMakers.push(() => makeCharacter(
  39814. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39815. {
  39816. front: {
  39817. height: math.unit(5, "feet"),
  39818. weight: math.unit(120, "lb"),
  39819. name: "Front",
  39820. image: {
  39821. source: "./media/characters/roxanne-voltaire/front.svg",
  39822. extra: 1901/1779,
  39823. bottom: 53/1954
  39824. }
  39825. },
  39826. },
  39827. [
  39828. {
  39829. name: "Normal",
  39830. height: math.unit(5, "feet"),
  39831. default: true
  39832. },
  39833. {
  39834. name: "Giant",
  39835. height: math.unit(50, "feet")
  39836. },
  39837. {
  39838. name: "Titan",
  39839. height: math.unit(500, "feet")
  39840. },
  39841. {
  39842. name: "Macro",
  39843. height: math.unit(5000, "feet")
  39844. },
  39845. {
  39846. name: "Megamacro",
  39847. height: math.unit(50000, "feet")
  39848. },
  39849. {
  39850. name: "Gigamacro",
  39851. height: math.unit(500000, "feet")
  39852. },
  39853. {
  39854. name: "Teramacro",
  39855. height: math.unit(5e6, "feet")
  39856. },
  39857. ]
  39858. ))
  39859. characterMakers.push(() => makeCharacter(
  39860. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39861. {
  39862. front: {
  39863. height: math.unit(6 + 2/12, "feet"),
  39864. name: "Front",
  39865. image: {
  39866. source: "./media/characters/squeaks/front.svg",
  39867. extra: 1823/1768,
  39868. bottom: 138/1961
  39869. }
  39870. },
  39871. },
  39872. [
  39873. {
  39874. name: "Micro",
  39875. height: math.unit(0.5, "inches")
  39876. },
  39877. {
  39878. name: "Normal",
  39879. height: math.unit(6 + 2/12, "feet"),
  39880. default: true
  39881. },
  39882. {
  39883. name: "Macro",
  39884. height: math.unit(600, "feet")
  39885. },
  39886. ]
  39887. ))
  39888. characterMakers.push(() => makeCharacter(
  39889. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39890. {
  39891. front: {
  39892. height: math.unit(1.72, "meters"),
  39893. name: "Front",
  39894. image: {
  39895. source: "./media/characters/archinger/front.svg",
  39896. extra: 1861/1675,
  39897. bottom: 125/1986
  39898. }
  39899. },
  39900. back: {
  39901. height: math.unit(1.72, "meters"),
  39902. name: "Back",
  39903. image: {
  39904. source: "./media/characters/archinger/back.svg",
  39905. extra: 1844/1701,
  39906. bottom: 104/1948
  39907. }
  39908. },
  39909. cock: {
  39910. height: math.unit(0.59, "feet"),
  39911. name: "Cock",
  39912. image: {
  39913. source: "./media/characters/archinger/cock.svg"
  39914. }
  39915. },
  39916. },
  39917. [
  39918. {
  39919. name: "Normal",
  39920. height: math.unit(1.72, "meters"),
  39921. default: true
  39922. },
  39923. {
  39924. name: "Macro",
  39925. height: math.unit(84, "meters")
  39926. },
  39927. {
  39928. name: "Macro+",
  39929. height: math.unit(112, "meters")
  39930. },
  39931. {
  39932. name: "Macro++",
  39933. height: math.unit(960, "meters")
  39934. },
  39935. {
  39936. name: "Macro+++",
  39937. height: math.unit(4, "km")
  39938. },
  39939. {
  39940. name: "Macro++++",
  39941. height: math.unit(48, "km")
  39942. },
  39943. {
  39944. name: "Macro+++++",
  39945. height: math.unit(4500, "km")
  39946. },
  39947. ]
  39948. ))
  39949. characterMakers.push(() => makeCharacter(
  39950. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  39951. {
  39952. front: {
  39953. height: math.unit(5 + 5/12, "feet"),
  39954. name: "Front",
  39955. image: {
  39956. source: "./media/characters/alsnapz/front.svg",
  39957. extra: 1157/1065,
  39958. bottom: 42/1199
  39959. }
  39960. },
  39961. },
  39962. [
  39963. {
  39964. name: "Normal",
  39965. height: math.unit(5 + 5/12, "feet"),
  39966. default: true
  39967. },
  39968. ]
  39969. ))
  39970. characterMakers.push(() => makeCharacter(
  39971. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  39972. {
  39973. side: {
  39974. height: math.unit(3.2, "earths"),
  39975. name: "Side",
  39976. image: {
  39977. source: "./media/characters/mag/side.svg",
  39978. extra: 1331/1008,
  39979. bottom: 52/1383
  39980. }
  39981. },
  39982. wing: {
  39983. height: math.unit(1.94, "earths"),
  39984. name: "Wing",
  39985. image: {
  39986. source: "./media/characters/mag/wing.svg"
  39987. }
  39988. },
  39989. dick: {
  39990. height: math.unit(1.8, "earths"),
  39991. name: "Dick",
  39992. image: {
  39993. source: "./media/characters/mag/dick.svg"
  39994. }
  39995. },
  39996. ass: {
  39997. height: math.unit(1.33, "earths"),
  39998. name: "Ass",
  39999. image: {
  40000. source: "./media/characters/mag/ass.svg"
  40001. }
  40002. },
  40003. head: {
  40004. height: math.unit(1.1, "earths"),
  40005. name: "Head",
  40006. image: {
  40007. source: "./media/characters/mag/head.svg"
  40008. }
  40009. },
  40010. maw: {
  40011. height: math.unit(1.62, "earths"),
  40012. name: "Maw",
  40013. image: {
  40014. source: "./media/characters/mag/maw.svg"
  40015. }
  40016. },
  40017. },
  40018. [
  40019. {
  40020. name: "Small",
  40021. height: math.unit(162, "feet")
  40022. },
  40023. {
  40024. name: "Normal",
  40025. height: math.unit(3.2, "earths"),
  40026. default: true
  40027. },
  40028. ]
  40029. ))
  40030. characterMakers.push(() => makeCharacter(
  40031. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40032. {
  40033. front: {
  40034. height: math.unit(512, "feet"),
  40035. weight: math.unit(63509, "tonnes"),
  40036. name: "Front",
  40037. image: {
  40038. source: "./media/characters/vorrel-harroc/front.svg",
  40039. extra: 1075/1063,
  40040. bottom: 62/1137
  40041. }
  40042. },
  40043. },
  40044. [
  40045. {
  40046. name: "Normal",
  40047. height: math.unit(10, "feet")
  40048. },
  40049. {
  40050. name: "Macro",
  40051. height: math.unit(512, "feet"),
  40052. default: true
  40053. },
  40054. {
  40055. name: "Megamacro",
  40056. height: math.unit(256, "miles")
  40057. },
  40058. {
  40059. name: "Gigamacro",
  40060. height: math.unit(4096, "miles")
  40061. },
  40062. ]
  40063. ))
  40064. characterMakers.push(() => makeCharacter(
  40065. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40066. {
  40067. side: {
  40068. height: math.unit(50, "feet"),
  40069. name: "Side",
  40070. image: {
  40071. source: "./media/characters/froimar/side.svg",
  40072. extra: 855/638,
  40073. bottom: 99/954
  40074. }
  40075. },
  40076. },
  40077. [
  40078. {
  40079. name: "Macro",
  40080. height: math.unit(50, "feet"),
  40081. default: true
  40082. },
  40083. ]
  40084. ))
  40085. characterMakers.push(() => makeCharacter(
  40086. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40087. {
  40088. front: {
  40089. height: math.unit(210, "miles"),
  40090. name: "Front",
  40091. image: {
  40092. source: "./media/characters/timothy/front.svg",
  40093. extra: 1007/943,
  40094. bottom: 62/1069
  40095. }
  40096. },
  40097. frontSkirt: {
  40098. height: math.unit(210, "miles"),
  40099. name: "Front (Skirt)",
  40100. image: {
  40101. source: "./media/characters/timothy/front-skirt.svg",
  40102. extra: 1007/943,
  40103. bottom: 62/1069
  40104. }
  40105. },
  40106. frontCoat: {
  40107. height: math.unit(210, "miles"),
  40108. name: "Front (Coat)",
  40109. image: {
  40110. source: "./media/characters/timothy/front-coat.svg",
  40111. extra: 1007/943,
  40112. bottom: 62/1069
  40113. }
  40114. },
  40115. },
  40116. [
  40117. {
  40118. name: "Macro",
  40119. height: math.unit(210, "miles"),
  40120. default: true
  40121. },
  40122. {
  40123. name: "Megamacro",
  40124. height: math.unit(210000, "miles")
  40125. },
  40126. ]
  40127. ))
  40128. characterMakers.push(() => makeCharacter(
  40129. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40130. {
  40131. front: {
  40132. height: math.unit(188, "feet"),
  40133. name: "Front",
  40134. image: {
  40135. source: "./media/characters/pyotr/front.svg",
  40136. extra: 1912/1826,
  40137. bottom: 18/1930
  40138. }
  40139. },
  40140. },
  40141. [
  40142. {
  40143. name: "Macro",
  40144. height: math.unit(188, "feet"),
  40145. default: true
  40146. },
  40147. {
  40148. name: "Megamacro",
  40149. height: math.unit(8, "miles")
  40150. },
  40151. ]
  40152. ))
  40153. characterMakers.push(() => makeCharacter(
  40154. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40155. {
  40156. side: {
  40157. height: math.unit(10, "feet"),
  40158. weight: math.unit(4500, "lb"),
  40159. name: "Side",
  40160. image: {
  40161. source: "./media/characters/ackart/side.svg",
  40162. extra: 1776/1668,
  40163. bottom: 116/1892
  40164. }
  40165. },
  40166. },
  40167. [
  40168. {
  40169. name: "Normal",
  40170. height: math.unit(10, "feet"),
  40171. default: true
  40172. },
  40173. ]
  40174. ))
  40175. characterMakers.push(() => makeCharacter(
  40176. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40177. {
  40178. side: {
  40179. height: math.unit(21, "feet"),
  40180. name: "Side",
  40181. image: {
  40182. source: "./media/characters/nolow/side.svg",
  40183. extra: 1484/1434,
  40184. bottom: 85/1569
  40185. }
  40186. },
  40187. sideErect: {
  40188. height: math.unit(21, "feet"),
  40189. name: "Side-erect",
  40190. image: {
  40191. source: "./media/characters/nolow/side-erect.svg",
  40192. extra: 1484/1434,
  40193. bottom: 85/1569
  40194. }
  40195. },
  40196. },
  40197. [
  40198. {
  40199. name: "Regular",
  40200. height: math.unit(12, "feet")
  40201. },
  40202. {
  40203. name: "Big Chee",
  40204. height: math.unit(21, "feet"),
  40205. default: true
  40206. },
  40207. ]
  40208. ))
  40209. characterMakers.push(() => makeCharacter(
  40210. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40211. {
  40212. front: {
  40213. height: math.unit(7, "feet"),
  40214. weight: math.unit(250, "lb"),
  40215. name: "Front",
  40216. image: {
  40217. source: "./media/characters/nines/front.svg",
  40218. extra: 1741/1607,
  40219. bottom: 41/1782
  40220. }
  40221. },
  40222. side: {
  40223. height: math.unit(7, "feet"),
  40224. weight: math.unit(250, "lb"),
  40225. name: "Side",
  40226. image: {
  40227. source: "./media/characters/nines/side.svg",
  40228. extra: 1854/1735,
  40229. bottom: 93/1947
  40230. }
  40231. },
  40232. back: {
  40233. height: math.unit(7, "feet"),
  40234. weight: math.unit(250, "lb"),
  40235. name: "Back",
  40236. image: {
  40237. source: "./media/characters/nines/back.svg",
  40238. extra: 1748/1615,
  40239. bottom: 20/1768
  40240. }
  40241. },
  40242. },
  40243. [
  40244. {
  40245. name: "Megamacro",
  40246. height: math.unit(99, "km"),
  40247. default: true
  40248. },
  40249. ]
  40250. ))
  40251. characterMakers.push(() => makeCharacter(
  40252. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40253. {
  40254. front: {
  40255. height: math.unit(5 + 10/12, "feet"),
  40256. weight: math.unit(210, "lb"),
  40257. name: "Front",
  40258. image: {
  40259. source: "./media/characters/zenith/front.svg",
  40260. extra: 1531/1452,
  40261. bottom: 198/1729
  40262. }
  40263. },
  40264. back: {
  40265. height: math.unit(5 + 10/12, "feet"),
  40266. weight: math.unit(210, "lb"),
  40267. name: "Back",
  40268. image: {
  40269. source: "./media/characters/zenith/back.svg",
  40270. extra: 1571/1487,
  40271. bottom: 75/1646
  40272. }
  40273. },
  40274. },
  40275. [
  40276. {
  40277. name: "Normal",
  40278. height: math.unit(5 + 10/12, "feet"),
  40279. default: true
  40280. }
  40281. ]
  40282. ))
  40283. characterMakers.push(() => makeCharacter(
  40284. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40285. {
  40286. front: {
  40287. height: math.unit(4, "feet"),
  40288. weight: math.unit(60, "lb"),
  40289. name: "Front",
  40290. image: {
  40291. source: "./media/characters/jasper/front.svg",
  40292. extra: 1450/1379,
  40293. bottom: 19/1469
  40294. }
  40295. },
  40296. },
  40297. [
  40298. {
  40299. name: "Normal",
  40300. height: math.unit(4, "feet"),
  40301. default: true
  40302. },
  40303. ]
  40304. ))
  40305. characterMakers.push(() => makeCharacter(
  40306. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40307. {
  40308. front: {
  40309. height: math.unit(6 + 5/12, "feet"),
  40310. weight: math.unit(290, "lb"),
  40311. name: "Front",
  40312. image: {
  40313. source: "./media/characters/tiberius-thyben/front.svg",
  40314. extra: 757/739,
  40315. bottom: 39/796
  40316. }
  40317. },
  40318. },
  40319. [
  40320. {
  40321. name: "Micro",
  40322. height: math.unit(1.5, "inches")
  40323. },
  40324. {
  40325. name: "Normal",
  40326. height: math.unit(6 + 5/12, "feet"),
  40327. default: true
  40328. },
  40329. {
  40330. name: "Macro",
  40331. height: math.unit(300, "feet")
  40332. },
  40333. ]
  40334. ))
  40335. characterMakers.push(() => makeCharacter(
  40336. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40337. {
  40338. front: {
  40339. height: math.unit(5 + 6/12, "feet"),
  40340. weight: math.unit(60, "kg"),
  40341. name: "Front",
  40342. image: {
  40343. source: "./media/characters/sabre/front.svg",
  40344. extra: 738/671,
  40345. bottom: 27/765
  40346. }
  40347. },
  40348. },
  40349. [
  40350. {
  40351. name: "Teeny",
  40352. height: math.unit(2, "inches")
  40353. },
  40354. {
  40355. name: "Smol",
  40356. height: math.unit(8, "inches")
  40357. },
  40358. {
  40359. name: "Normal",
  40360. height: math.unit(5 + 6/12, "feet"),
  40361. default: true
  40362. },
  40363. {
  40364. name: "Mini-Macro",
  40365. height: math.unit(15, "feet")
  40366. },
  40367. {
  40368. name: "Macro",
  40369. height: math.unit(50, "feet")
  40370. },
  40371. ]
  40372. ))
  40373. characterMakers.push(() => makeCharacter(
  40374. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40375. {
  40376. front: {
  40377. height: math.unit(6 + 4/12, "feet"),
  40378. weight: math.unit(170, "lb"),
  40379. name: "Front",
  40380. image: {
  40381. source: "./media/characters/charlie/front.svg",
  40382. extra: 1348/1228,
  40383. bottom: 15/1363
  40384. }
  40385. },
  40386. },
  40387. [
  40388. {
  40389. name: "Macro",
  40390. height: math.unit(1700, "meters"),
  40391. default: true
  40392. },
  40393. {
  40394. name: "MegaMacro",
  40395. height: math.unit(20400, "meters")
  40396. },
  40397. ]
  40398. ))
  40399. characterMakers.push(() => makeCharacter(
  40400. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40401. {
  40402. front: {
  40403. height: math.unit(6 + 3/12, "feet"),
  40404. weight: math.unit(185, "lb"),
  40405. name: "Front",
  40406. image: {
  40407. source: "./media/characters/susan-grant/front.svg",
  40408. extra: 1351/1327,
  40409. bottom: 26/1377
  40410. }
  40411. },
  40412. },
  40413. [
  40414. {
  40415. name: "Normal",
  40416. height: math.unit(6 + 3/12, "feet"),
  40417. default: true
  40418. },
  40419. {
  40420. name: "Macro",
  40421. height: math.unit(225, "feet")
  40422. },
  40423. {
  40424. name: "Macro+",
  40425. height: math.unit(900, "feet")
  40426. },
  40427. {
  40428. name: "MegaMacro",
  40429. height: math.unit(14400, "feet")
  40430. },
  40431. ]
  40432. ))
  40433. characterMakers.push(() => makeCharacter(
  40434. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40435. {
  40436. front: {
  40437. height: math.unit(5 + 4/12, "feet"),
  40438. weight: math.unit(110, "lb"),
  40439. name: "Front",
  40440. image: {
  40441. source: "./media/characters/axel-isanov/front.svg",
  40442. extra: 1096/1065,
  40443. bottom: 13/1109
  40444. }
  40445. },
  40446. },
  40447. [
  40448. {
  40449. name: "Normal",
  40450. height: math.unit(5 + 4/12, "feet"),
  40451. default: true
  40452. },
  40453. ]
  40454. ))
  40455. characterMakers.push(() => makeCharacter(
  40456. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40457. {
  40458. front: {
  40459. height: math.unit(9, "feet"),
  40460. weight: math.unit(467, "lb"),
  40461. name: "Front",
  40462. image: {
  40463. source: "./media/characters/necahual/front.svg",
  40464. extra: 920/873,
  40465. bottom: 26/946
  40466. }
  40467. },
  40468. back: {
  40469. height: math.unit(9, "feet"),
  40470. weight: math.unit(467, "lb"),
  40471. name: "Back",
  40472. image: {
  40473. source: "./media/characters/necahual/back.svg",
  40474. extra: 930/884,
  40475. bottom: 16/946
  40476. }
  40477. },
  40478. frontUnderwear: {
  40479. height: math.unit(9, "feet"),
  40480. weight: math.unit(467, "lb"),
  40481. name: "Front (Underwear)",
  40482. image: {
  40483. source: "./media/characters/necahual/front-underwear.svg",
  40484. extra: 920/873,
  40485. bottom: 26/946
  40486. }
  40487. },
  40488. frontDressed: {
  40489. height: math.unit(9, "feet"),
  40490. weight: math.unit(467, "lb"),
  40491. name: "Front (Dressed)",
  40492. image: {
  40493. source: "./media/characters/necahual/front-dressed.svg",
  40494. extra: 920/873,
  40495. bottom: 26/946
  40496. }
  40497. },
  40498. },
  40499. [
  40500. {
  40501. name: "Comprsesed",
  40502. height: math.unit(9, "feet")
  40503. },
  40504. {
  40505. name: "Natural",
  40506. height: math.unit(15, "feet"),
  40507. default: true
  40508. },
  40509. {
  40510. name: "Boosted",
  40511. height: math.unit(50, "feet")
  40512. },
  40513. {
  40514. name: "Boosted+",
  40515. height: math.unit(150, "feet")
  40516. },
  40517. {
  40518. name: "Max",
  40519. height: math.unit(500, "feet")
  40520. },
  40521. ]
  40522. ))
  40523. characterMakers.push(() => makeCharacter(
  40524. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40525. {
  40526. front: {
  40527. height: math.unit(22 + 1/12, "feet"),
  40528. weight: math.unit(3200, "lb"),
  40529. name: "Front",
  40530. image: {
  40531. source: "./media/characters/theo-acacia/front.svg",
  40532. extra: 1796/1741,
  40533. bottom: 83/1879
  40534. }
  40535. },
  40536. frontUnderwear: {
  40537. height: math.unit(22 + 1/12, "feet"),
  40538. weight: math.unit(3200, "lb"),
  40539. name: "Front (Underwear)",
  40540. image: {
  40541. source: "./media/characters/theo-acacia/front-underwear.svg",
  40542. extra: 1796/1741,
  40543. bottom: 83/1879
  40544. }
  40545. },
  40546. frontNude: {
  40547. height: math.unit(22 + 1/12, "feet"),
  40548. weight: math.unit(3200, "lb"),
  40549. name: "Front (Nude)",
  40550. image: {
  40551. source: "./media/characters/theo-acacia/front-nude.svg",
  40552. extra: 1796/1741,
  40553. bottom: 83/1879
  40554. }
  40555. },
  40556. },
  40557. [
  40558. {
  40559. name: "Normal",
  40560. height: math.unit(22 + 1/12, "feet"),
  40561. default: true
  40562. },
  40563. ]
  40564. ))
  40565. characterMakers.push(() => makeCharacter(
  40566. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40567. {
  40568. front: {
  40569. height: math.unit(20, "feet"),
  40570. name: "Front",
  40571. image: {
  40572. source: "./media/characters/astra/front.svg",
  40573. extra: 1850/1714,
  40574. bottom: 106/1956
  40575. }
  40576. },
  40577. frontUndressed: {
  40578. height: math.unit(20, "feet"),
  40579. name: "Front (Undressed)",
  40580. image: {
  40581. source: "./media/characters/astra/front-undressed.svg",
  40582. extra: 1926/1749,
  40583. bottom: 0/1926
  40584. }
  40585. },
  40586. hand: {
  40587. height: math.unit(1.53, "feet"),
  40588. name: "Hand",
  40589. image: {
  40590. source: "./media/characters/astra/hand.svg"
  40591. }
  40592. },
  40593. paw: {
  40594. height: math.unit(1.53, "feet"),
  40595. name: "Paw",
  40596. image: {
  40597. source: "./media/characters/astra/paw.svg"
  40598. }
  40599. },
  40600. },
  40601. [
  40602. {
  40603. name: "Smallest",
  40604. height: math.unit(20, "feet")
  40605. },
  40606. {
  40607. name: "Normal",
  40608. height: math.unit(1e9, "miles"),
  40609. default: true
  40610. },
  40611. {
  40612. name: "Larger",
  40613. height: math.unit(5, "multiverses")
  40614. },
  40615. {
  40616. name: "Largest",
  40617. height: math.unit(1e9, "multiverses")
  40618. },
  40619. ]
  40620. ))
  40621. characterMakers.push(() => makeCharacter(
  40622. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40623. {
  40624. front: {
  40625. height: math.unit(8, "feet"),
  40626. name: "Front",
  40627. image: {
  40628. source: "./media/characters/breanna/front.svg",
  40629. extra: 1912/1632,
  40630. bottom: 33/1945
  40631. }
  40632. },
  40633. },
  40634. [
  40635. {
  40636. name: "Smallest",
  40637. height: math.unit(8, "feet")
  40638. },
  40639. {
  40640. name: "Normal",
  40641. height: math.unit(1, "mile"),
  40642. default: true
  40643. },
  40644. {
  40645. name: "Maximum",
  40646. height: math.unit(1500000000000, "lightyears")
  40647. },
  40648. ]
  40649. ))
  40650. characterMakers.push(() => makeCharacter(
  40651. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40652. {
  40653. front: {
  40654. height: math.unit(5 + 11/12, "feet"),
  40655. weight: math.unit(155, "lb"),
  40656. name: "Front",
  40657. image: {
  40658. source: "./media/characters/cai/front.svg",
  40659. extra: 1823/1702,
  40660. bottom: 32/1855
  40661. }
  40662. },
  40663. back: {
  40664. height: math.unit(5 + 11/12, "feet"),
  40665. weight: math.unit(155, "lb"),
  40666. name: "Back",
  40667. image: {
  40668. source: "./media/characters/cai/back.svg",
  40669. extra: 1809/1708,
  40670. bottom: 31/1840
  40671. }
  40672. },
  40673. },
  40674. [
  40675. {
  40676. name: "Normal",
  40677. height: math.unit(5 + 11/12, "feet"),
  40678. default: true
  40679. },
  40680. {
  40681. name: "Big",
  40682. height: math.unit(15, "feet")
  40683. },
  40684. {
  40685. name: "Macro",
  40686. height: math.unit(200, "feet")
  40687. },
  40688. ]
  40689. ))
  40690. characterMakers.push(() => makeCharacter(
  40691. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40692. {
  40693. front: {
  40694. height: math.unit(5 + 6/12, "feet"),
  40695. weight: math.unit(160, "lb"),
  40696. name: "Front",
  40697. image: {
  40698. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40699. extra: 1227/1174,
  40700. bottom: 37/1264
  40701. }
  40702. },
  40703. },
  40704. [
  40705. {
  40706. name: "Macro",
  40707. height: math.unit(444, "meters"),
  40708. default: true
  40709. },
  40710. ]
  40711. ))
  40712. characterMakers.push(() => makeCharacter(
  40713. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40714. {
  40715. front: {
  40716. height: math.unit(18 + 7/12, "feet"),
  40717. name: "Front",
  40718. image: {
  40719. source: "./media/characters/rex/front.svg",
  40720. extra: 1941/1807,
  40721. bottom: 66/2007
  40722. }
  40723. },
  40724. back: {
  40725. height: math.unit(18 + 7/12, "feet"),
  40726. name: "Back",
  40727. image: {
  40728. source: "./media/characters/rex/back.svg",
  40729. extra: 1937/1822,
  40730. bottom: 42/1979
  40731. }
  40732. },
  40733. boot: {
  40734. height: math.unit(3.45, "feet"),
  40735. name: "Boot",
  40736. image: {
  40737. source: "./media/characters/rex/boot.svg"
  40738. }
  40739. },
  40740. paw: {
  40741. height: math.unit(4.17, "feet"),
  40742. name: "Paw",
  40743. image: {
  40744. source: "./media/characters/rex/paw.svg"
  40745. }
  40746. },
  40747. head: {
  40748. height: math.unit(6.728, "feet"),
  40749. name: "Head",
  40750. image: {
  40751. source: "./media/characters/rex/head.svg"
  40752. }
  40753. },
  40754. },
  40755. [
  40756. {
  40757. name: "Nano",
  40758. height: math.unit(18 + 7/12, "feet")
  40759. },
  40760. {
  40761. name: "Micro",
  40762. height: math.unit(1.5, "megameters")
  40763. },
  40764. {
  40765. name: "Normal",
  40766. height: math.unit(440, "megameters"),
  40767. default: true
  40768. },
  40769. {
  40770. name: "Macro",
  40771. height: math.unit(2.5, "gigameters")
  40772. },
  40773. {
  40774. name: "Gigamacro",
  40775. height: math.unit(2, "galaxies")
  40776. },
  40777. ]
  40778. ))
  40779. characterMakers.push(() => makeCharacter(
  40780. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40781. {
  40782. side: {
  40783. height: math.unit(32, "feet"),
  40784. weight: math.unit(250000, "lb"),
  40785. name: "Side",
  40786. image: {
  40787. source: "./media/characters/silverwing/side.svg",
  40788. extra: 1100/1019,
  40789. bottom: 204/1304
  40790. }
  40791. },
  40792. },
  40793. [
  40794. {
  40795. name: "Normal",
  40796. height: math.unit(32, "feet"),
  40797. default: true
  40798. },
  40799. ]
  40800. ))
  40801. characterMakers.push(() => makeCharacter(
  40802. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40803. {
  40804. front: {
  40805. height: math.unit(6 + 6/12, "feet"),
  40806. weight: math.unit(350, "lb"),
  40807. name: "Front",
  40808. image: {
  40809. source: "./media/characters/tristan-hawthorne/front.svg",
  40810. extra: 1159/1124,
  40811. bottom: 37/1196
  40812. }
  40813. },
  40814. },
  40815. [
  40816. {
  40817. name: "Normal",
  40818. height: math.unit(6 + 6/12, "feet"),
  40819. default: true
  40820. },
  40821. ]
  40822. ))
  40823. characterMakers.push(() => makeCharacter(
  40824. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40825. {
  40826. front: {
  40827. height: math.unit(5 + 11/12, "feet"),
  40828. weight: math.unit(190, "lb"),
  40829. name: "Front",
  40830. image: {
  40831. source: "./media/characters/mizu/front.svg",
  40832. extra: 1988/1788,
  40833. bottom: 14/2002
  40834. }
  40835. },
  40836. },
  40837. [
  40838. {
  40839. name: "Normal",
  40840. height: math.unit(5 + 11/12, "feet"),
  40841. default: true
  40842. },
  40843. ]
  40844. ))
  40845. characterMakers.push(() => makeCharacter(
  40846. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40847. {
  40848. front: {
  40849. height: math.unit(6, "feet"),
  40850. name: "Front",
  40851. image: {
  40852. source: "./media/characters/moonlight-rose-terra/front.svg",
  40853. extra: 1434/1252,
  40854. bottom: 48/1482
  40855. }
  40856. },
  40857. },
  40858. [
  40859. {
  40860. name: "TRAPPIST-1D",
  40861. height: math.unit(4992*2, "km")
  40862. },
  40863. {
  40864. name: "Earth",
  40865. height: math.unit(6367*2, "km"),
  40866. default: true
  40867. },
  40868. {
  40869. name: "Kepler-22b",
  40870. height: math.unit(15282*2, "km")
  40871. },
  40872. ]
  40873. ))
  40874. characterMakers.push(() => makeCharacter(
  40875. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  40876. {
  40877. front: {
  40878. height: math.unit(6, "feet"),
  40879. name: "Front",
  40880. image: {
  40881. source: "./media/characters/moonlight-rose-neptune/front.svg",
  40882. extra: 1851/1712,
  40883. bottom: 0/1851
  40884. }
  40885. },
  40886. },
  40887. [
  40888. {
  40889. name: "Enceladus",
  40890. height: math.unit(513*2, "km")
  40891. },
  40892. {
  40893. name: "Europe",
  40894. height: math.unit(1560*2, "km")
  40895. },
  40896. {
  40897. name: "Neptune",
  40898. height: math.unit(24622*2, "km"),
  40899. default: true
  40900. },
  40901. {
  40902. name: "CoRoT-9b",
  40903. height: math.unit(75067*2, "km")
  40904. },
  40905. ]
  40906. ))
  40907. characterMakers.push(() => makeCharacter(
  40908. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  40909. {
  40910. front: {
  40911. height: math.unit(6, "feet"),
  40912. name: "Front",
  40913. image: {
  40914. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  40915. extra: 1367/1286,
  40916. bottom: 55/1422
  40917. }
  40918. },
  40919. },
  40920. [
  40921. {
  40922. name: "Saturn",
  40923. height: math.unit(58232*2, "km")
  40924. },
  40925. {
  40926. name: "Jupiter",
  40927. height: math.unit(69911*2, "km"),
  40928. default: true
  40929. },
  40930. {
  40931. name: "HD 100546 b",
  40932. height: math.unit(482938, "km")
  40933. },
  40934. ]
  40935. ))
  40936. characterMakers.push(() => makeCharacter(
  40937. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  40938. {
  40939. front: {
  40940. height: math.unit(1.7, "feet"),
  40941. weight: math.unit(50, "lb"),
  40942. name: "Front",
  40943. image: {
  40944. source: "./media/characters/dechroma/front.svg",
  40945. extra: 1095/859,
  40946. bottom: 64/1159
  40947. }
  40948. },
  40949. },
  40950. [
  40951. {
  40952. name: "Normal",
  40953. height: math.unit(1.7, "feet"),
  40954. default: true
  40955. },
  40956. ]
  40957. ))
  40958. characterMakers.push(() => makeCharacter(
  40959. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  40960. {
  40961. side: {
  40962. height: math.unit(30, "feet"),
  40963. name: "Side",
  40964. image: {
  40965. source: "./media/characters/veluren-thanazel/side.svg",
  40966. extra: 1611/633,
  40967. bottom: 118/1729
  40968. }
  40969. },
  40970. front: {
  40971. height: math.unit(30, "feet"),
  40972. name: "Front",
  40973. image: {
  40974. source: "./media/characters/veluren-thanazel/front.svg",
  40975. extra: 1486/636,
  40976. bottom: 238/1724
  40977. }
  40978. },
  40979. head: {
  40980. height: math.unit(21.4, "feet"),
  40981. name: "Head",
  40982. image: {
  40983. source: "./media/characters/veluren-thanazel/head.svg"
  40984. }
  40985. },
  40986. genitals: {
  40987. height: math.unit(19.4, "feet"),
  40988. name: "Genitals",
  40989. image: {
  40990. source: "./media/characters/veluren-thanazel/genitals.svg"
  40991. }
  40992. },
  40993. },
  40994. [
  40995. {
  40996. name: "Social",
  40997. height: math.unit(6, "feet")
  40998. },
  40999. {
  41000. name: "Play",
  41001. height: math.unit(12, "feet")
  41002. },
  41003. {
  41004. name: "True",
  41005. height: math.unit(30, "feet"),
  41006. default: true
  41007. },
  41008. ]
  41009. ))
  41010. characterMakers.push(() => makeCharacter(
  41011. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41012. {
  41013. front: {
  41014. height: math.unit(7 + 6/12, "feet"),
  41015. weight: math.unit(500, "kg"),
  41016. name: "Front",
  41017. image: {
  41018. source: "./media/characters/arcturas/front.svg",
  41019. extra: 1700/1500,
  41020. bottom: 145/1845
  41021. }
  41022. },
  41023. },
  41024. [
  41025. {
  41026. name: "Normal",
  41027. height: math.unit(7 + 6/12, "feet"),
  41028. default: true
  41029. },
  41030. ]
  41031. ))
  41032. characterMakers.push(() => makeCharacter(
  41033. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41034. {
  41035. side: {
  41036. height: math.unit(6, "feet"),
  41037. weight: math.unit(2, "tons"),
  41038. name: "Side",
  41039. image: {
  41040. source: "./media/characters/vitaen/side.svg",
  41041. extra: 1157/617,
  41042. bottom: 122/1279
  41043. }
  41044. },
  41045. },
  41046. [
  41047. {
  41048. name: "Normal",
  41049. height: math.unit(6, "feet"),
  41050. default: true
  41051. },
  41052. ]
  41053. ))
  41054. characterMakers.push(() => makeCharacter(
  41055. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41056. {
  41057. front: {
  41058. height: math.unit(19, "feet"),
  41059. name: "Front",
  41060. image: {
  41061. source: "./media/characters/fia-dreamweaver/front.svg",
  41062. extra: 1630/1504,
  41063. bottom: 25/1655
  41064. }
  41065. },
  41066. },
  41067. [
  41068. {
  41069. name: "Normal",
  41070. height: math.unit(19, "feet"),
  41071. default: true
  41072. },
  41073. ]
  41074. ))
  41075. characterMakers.push(() => makeCharacter(
  41076. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41077. {
  41078. front: {
  41079. height: math.unit(5 + 4/12, "feet"),
  41080. name: "Front",
  41081. image: {
  41082. source: "./media/characters/artan/front.svg",
  41083. extra: 1618/1535,
  41084. bottom: 46/1664
  41085. }
  41086. },
  41087. back: {
  41088. height: math.unit(5 + 4/12, "feet"),
  41089. name: "Back",
  41090. image: {
  41091. source: "./media/characters/artan/back.svg",
  41092. extra: 1618/1543,
  41093. bottom: 31/1649
  41094. }
  41095. },
  41096. },
  41097. [
  41098. {
  41099. name: "Normal",
  41100. height: math.unit(5 + 4/12, "feet"),
  41101. default: true
  41102. },
  41103. ]
  41104. ))
  41105. characterMakers.push(() => makeCharacter(
  41106. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41107. {
  41108. side: {
  41109. height: math.unit(182, "cm"),
  41110. weight: math.unit(1000, "lb"),
  41111. name: "Side",
  41112. image: {
  41113. source: "./media/characters/silver-dragon/side.svg",
  41114. extra: 710/287,
  41115. bottom: 88/798
  41116. }
  41117. },
  41118. },
  41119. [
  41120. {
  41121. name: "Normal",
  41122. height: math.unit(182, "cm"),
  41123. default: true
  41124. },
  41125. ]
  41126. ))
  41127. characterMakers.push(() => makeCharacter(
  41128. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41129. {
  41130. side: {
  41131. height: math.unit(6 + 6/12, "feet"),
  41132. weight: math.unit(1.5, "tons"),
  41133. name: "Side",
  41134. image: {
  41135. source: "./media/characters/zephyr/side.svg",
  41136. extra: 1433/586,
  41137. bottom: 109/1542
  41138. }
  41139. },
  41140. },
  41141. [
  41142. {
  41143. name: "Normal",
  41144. height: math.unit(6 + 6/12, "feet"),
  41145. default: true
  41146. },
  41147. ]
  41148. ))
  41149. characterMakers.push(() => makeCharacter(
  41150. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41151. {
  41152. side: {
  41153. height: math.unit(1, "feet"),
  41154. name: "Side",
  41155. image: {
  41156. source: "./media/characters/vixye/side.svg",
  41157. extra: 632/541,
  41158. bottom: 0/632
  41159. }
  41160. },
  41161. },
  41162. [
  41163. {
  41164. name: "Normal",
  41165. height: math.unit(1, "feet"),
  41166. default: true
  41167. },
  41168. {
  41169. name: "True",
  41170. height: math.unit(1e15, "multiverses")
  41171. },
  41172. ]
  41173. ))
  41174. characterMakers.push(() => makeCharacter(
  41175. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41176. {
  41177. front: {
  41178. height: math.unit(8 + 2/12, "feet"),
  41179. weight: math.unit(650, "lb"),
  41180. name: "Front",
  41181. image: {
  41182. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41183. extra: 1174/1137,
  41184. bottom: 82/1256
  41185. }
  41186. },
  41187. back: {
  41188. height: math.unit(8 + 2/12, "feet"),
  41189. weight: math.unit(650, "lb"),
  41190. name: "Back",
  41191. image: {
  41192. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41193. extra: 1204/1157,
  41194. bottom: 46/1250
  41195. }
  41196. },
  41197. },
  41198. [
  41199. {
  41200. name: "Wildform",
  41201. height: math.unit(8 + 2/12, "feet"),
  41202. default: true
  41203. },
  41204. ]
  41205. ))
  41206. characterMakers.push(() => makeCharacter(
  41207. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41208. {
  41209. front: {
  41210. height: math.unit(18, "feet"),
  41211. name: "Front",
  41212. image: {
  41213. source: "./media/characters/cyphin/front.svg",
  41214. extra: 970/886,
  41215. bottom: 42/1012
  41216. }
  41217. },
  41218. back: {
  41219. height: math.unit(18, "feet"),
  41220. name: "Back",
  41221. image: {
  41222. source: "./media/characters/cyphin/back.svg",
  41223. extra: 1009/894,
  41224. bottom: 24/1033
  41225. }
  41226. },
  41227. head: {
  41228. height: math.unit(5.05, "feet"),
  41229. name: "Head",
  41230. image: {
  41231. source: "./media/characters/cyphin/head.svg"
  41232. }
  41233. },
  41234. tailbud: {
  41235. height: math.unit(5, "feet"),
  41236. name: "Tailbud",
  41237. image: {
  41238. source: "./media/characters/cyphin/tailbud.svg"
  41239. }
  41240. },
  41241. },
  41242. [
  41243. ]
  41244. ))
  41245. characterMakers.push(() => makeCharacter(
  41246. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41247. {
  41248. side: {
  41249. height: math.unit(10, "feet"),
  41250. weight: math.unit(6, "tons"),
  41251. name: "Side",
  41252. image: {
  41253. source: "./media/characters/raijin/side.svg",
  41254. extra: 1529/613,
  41255. bottom: 337/1866
  41256. }
  41257. },
  41258. },
  41259. [
  41260. {
  41261. name: "Normal",
  41262. height: math.unit(10, "feet"),
  41263. default: true
  41264. },
  41265. ]
  41266. ))
  41267. characterMakers.push(() => makeCharacter(
  41268. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41269. {
  41270. side: {
  41271. height: math.unit(9, "feet"),
  41272. name: "Side",
  41273. image: {
  41274. source: "./media/characters/nilghais/side.svg",
  41275. extra: 1047/744,
  41276. bottom: 91/1138
  41277. }
  41278. },
  41279. head: {
  41280. height: math.unit(3.14, "feet"),
  41281. name: "Head",
  41282. image: {
  41283. source: "./media/characters/nilghais/head.svg"
  41284. }
  41285. },
  41286. mouth: {
  41287. height: math.unit(4.6, "feet"),
  41288. name: "Mouth",
  41289. image: {
  41290. source: "./media/characters/nilghais/mouth.svg"
  41291. }
  41292. },
  41293. wings: {
  41294. height: math.unit(24, "feet"),
  41295. name: "Wings",
  41296. image: {
  41297. source: "./media/characters/nilghais/wings.svg"
  41298. }
  41299. },
  41300. ass: {
  41301. height: math.unit(6.12, "feet"),
  41302. name: "Ass",
  41303. image: {
  41304. source: "./media/characters/nilghais/ass.svg"
  41305. }
  41306. },
  41307. },
  41308. [
  41309. {
  41310. name: "Normal",
  41311. height: math.unit(9, "feet"),
  41312. default: true
  41313. },
  41314. ]
  41315. ))
  41316. characterMakers.push(() => makeCharacter(
  41317. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41318. {
  41319. regular: {
  41320. height: math.unit(16 + 2/12, "feet"),
  41321. weight: math.unit(2300, "lb"),
  41322. name: "Regular",
  41323. image: {
  41324. source: "./media/characters/zolgar/regular.svg",
  41325. extra: 1246/1004,
  41326. bottom: 124/1370
  41327. }
  41328. },
  41329. boxers: {
  41330. height: math.unit(16 + 2/12, "feet"),
  41331. weight: math.unit(2300, "lb"),
  41332. name: "Boxers",
  41333. image: {
  41334. source: "./media/characters/zolgar/boxers.svg",
  41335. extra: 1246/1004,
  41336. bottom: 124/1370
  41337. }
  41338. },
  41339. armored: {
  41340. height: math.unit(16 + 2/12, "feet"),
  41341. weight: math.unit(2300, "lb"),
  41342. name: "Armored",
  41343. image: {
  41344. source: "./media/characters/zolgar/armored.svg",
  41345. extra: 1246/1004,
  41346. bottom: 124/1370
  41347. }
  41348. },
  41349. goth: {
  41350. height: math.unit(16 + 2/12, "feet"),
  41351. weight: math.unit(2300, "lb"),
  41352. name: "Goth",
  41353. image: {
  41354. source: "./media/characters/zolgar/goth.svg",
  41355. extra: 1246/1004,
  41356. bottom: 124/1370
  41357. }
  41358. },
  41359. },
  41360. [
  41361. {
  41362. name: "Shrunken Down",
  41363. height: math.unit(9 + 2/12, "feet")
  41364. },
  41365. {
  41366. name: "Normal",
  41367. height: math.unit(16 + 2/12, "feet"),
  41368. default: true
  41369. },
  41370. ]
  41371. ))
  41372. characterMakers.push(() => makeCharacter(
  41373. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41374. {
  41375. front: {
  41376. height: math.unit(6, "feet"),
  41377. weight: math.unit(168, "lb"),
  41378. name: "Front",
  41379. image: {
  41380. source: "./media/characters/luca/front.svg",
  41381. extra: 841/667,
  41382. bottom: 102/943
  41383. }
  41384. },
  41385. },
  41386. [
  41387. {
  41388. name: "Normal",
  41389. height: math.unit(6, "feet"),
  41390. default: true
  41391. },
  41392. ]
  41393. ))
  41394. characterMakers.push(() => makeCharacter(
  41395. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41396. {
  41397. side: {
  41398. height: math.unit(7 + 3/12, "feet"),
  41399. weight: math.unit(312, "lb"),
  41400. name: "Side",
  41401. image: {
  41402. source: "./media/characters/zezo/side.svg",
  41403. extra: 1192/1067,
  41404. bottom: 63/1255
  41405. }
  41406. },
  41407. },
  41408. [
  41409. {
  41410. name: "Normal",
  41411. height: math.unit(7 + 3/12, "feet"),
  41412. default: true
  41413. },
  41414. ]
  41415. ))
  41416. characterMakers.push(() => makeCharacter(
  41417. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41418. {
  41419. front: {
  41420. height: math.unit(5 + 5/12, "feet"),
  41421. weight: math.unit(170, "lb"),
  41422. name: "Front",
  41423. image: {
  41424. source: "./media/characters/mayso/front.svg",
  41425. extra: 1215/1108,
  41426. bottom: 16/1231
  41427. }
  41428. },
  41429. },
  41430. [
  41431. {
  41432. name: "Normal",
  41433. height: math.unit(5 + 5/12, "feet"),
  41434. default: true
  41435. },
  41436. ]
  41437. ))
  41438. characterMakers.push(() => makeCharacter(
  41439. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41440. {
  41441. front: {
  41442. height: math.unit(4 + 3/12, "feet"),
  41443. weight: math.unit(80, "lb"),
  41444. name: "Front",
  41445. image: {
  41446. source: "./media/characters/hess/front.svg",
  41447. extra: 1200/1123,
  41448. bottom: 16/1216
  41449. }
  41450. },
  41451. },
  41452. [
  41453. {
  41454. name: "Normal",
  41455. height: math.unit(4 + 3/12, "feet"),
  41456. default: true
  41457. },
  41458. ]
  41459. ))
  41460. characterMakers.push(() => makeCharacter(
  41461. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41462. {
  41463. front: {
  41464. height: math.unit(1.9, "meters"),
  41465. name: "Front",
  41466. image: {
  41467. source: "./media/characters/ashgar/front.svg",
  41468. extra: 1177/1146,
  41469. bottom: 99/1276
  41470. }
  41471. },
  41472. back: {
  41473. height: math.unit(1.9, "meters"),
  41474. name: "Back",
  41475. image: {
  41476. source: "./media/characters/ashgar/back.svg",
  41477. extra: 1201/1183,
  41478. bottom: 53/1254
  41479. }
  41480. },
  41481. feral: {
  41482. height: math.unit(1.4, "meters"),
  41483. name: "Feral",
  41484. image: {
  41485. source: "./media/characters/ashgar/feral.svg",
  41486. extra: 370/345,
  41487. bottom: 45/415
  41488. }
  41489. },
  41490. },
  41491. [
  41492. {
  41493. name: "Normal",
  41494. height: math.unit(1.9, "meters"),
  41495. default: true
  41496. },
  41497. ]
  41498. ))
  41499. characterMakers.push(() => makeCharacter(
  41500. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41501. {
  41502. regular: {
  41503. height: math.unit(6, "feet"),
  41504. weight: math.unit(220, "lb"),
  41505. name: "Regular",
  41506. image: {
  41507. source: "./media/characters/phillip/regular.svg",
  41508. extra: 1373/1277,
  41509. bottom: 75/1448
  41510. }
  41511. },
  41512. dressed: {
  41513. height: math.unit(6, "feet"),
  41514. weight: math.unit(220, "lb"),
  41515. name: "Dressed",
  41516. image: {
  41517. source: "./media/characters/phillip/dressed.svg",
  41518. extra: 1373/1277,
  41519. bottom: 75/1448
  41520. }
  41521. },
  41522. paw: {
  41523. height: math.unit(1.44, "feet"),
  41524. name: "Paw",
  41525. image: {
  41526. source: "./media/characters/phillip/paw.svg"
  41527. }
  41528. },
  41529. },
  41530. [
  41531. {
  41532. name: "Normal",
  41533. height: math.unit(6, "feet"),
  41534. default: true
  41535. },
  41536. ]
  41537. ))
  41538. characterMakers.push(() => makeCharacter(
  41539. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41540. {
  41541. side: {
  41542. height: math.unit(42, "feet"),
  41543. name: "Side",
  41544. image: {
  41545. source: "./media/characters/uvula/side.svg",
  41546. extra: 683/586,
  41547. bottom: 60/743
  41548. }
  41549. },
  41550. front: {
  41551. height: math.unit(42, "feet"),
  41552. name: "Front",
  41553. image: {
  41554. source: "./media/characters/uvula/front.svg",
  41555. extra: 705/613,
  41556. bottom: 54/759
  41557. }
  41558. },
  41559. maw: {
  41560. height: math.unit(23.5, "feet"),
  41561. name: "Maw",
  41562. image: {
  41563. source: "./media/characters/uvula/maw.svg"
  41564. }
  41565. },
  41566. },
  41567. [
  41568. {
  41569. name: "Original Size",
  41570. height: math.unit(14, "inches")
  41571. },
  41572. {
  41573. name: "Human Size",
  41574. height: math.unit(6, "feet")
  41575. },
  41576. {
  41577. name: "Big",
  41578. height: math.unit(42, "feet"),
  41579. default: true
  41580. },
  41581. {
  41582. name: "Bigger",
  41583. height: math.unit(100, "feet")
  41584. },
  41585. ]
  41586. ))
  41587. characterMakers.push(() => makeCharacter(
  41588. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  41589. {
  41590. front: {
  41591. height: math.unit(5 + 11/12, "feet"),
  41592. name: "Front",
  41593. image: {
  41594. source: "./media/characters/lannah/front.svg",
  41595. extra: 1208/1113,
  41596. bottom: 97/1305
  41597. }
  41598. },
  41599. },
  41600. [
  41601. {
  41602. name: "Normal",
  41603. height: math.unit(5 + 11/12, "feet"),
  41604. default: true
  41605. },
  41606. ]
  41607. ))
  41608. characterMakers.push(() => makeCharacter(
  41609. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  41610. {
  41611. front: {
  41612. height: math.unit(6 + 3/12, "feet"),
  41613. weight: math.unit(3.5, "tons"),
  41614. name: "Front",
  41615. image: {
  41616. source: "./media/characters/emberflame/front.svg",
  41617. extra: 1198/672,
  41618. bottom: 82/1280
  41619. }
  41620. },
  41621. side: {
  41622. height: math.unit(6 + 3/12, "feet"),
  41623. weight: math.unit(3.5, "tons"),
  41624. name: "Side",
  41625. image: {
  41626. source: "./media/characters/emberflame/side.svg",
  41627. extra: 938/527,
  41628. bottom: 56/994
  41629. }
  41630. },
  41631. },
  41632. [
  41633. {
  41634. name: "Normal",
  41635. height: math.unit(6 + 3/12, "feet"),
  41636. default: true
  41637. },
  41638. ]
  41639. ))
  41640. characterMakers.push(() => makeCharacter(
  41641. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  41642. {
  41643. side: {
  41644. height: math.unit(17.5, "feet"),
  41645. weight: math.unit(35, "tons"),
  41646. name: "Side",
  41647. image: {
  41648. source: "./media/characters/sophie-ambrose/side.svg",
  41649. extra: 1573/1242,
  41650. bottom: 71/1644
  41651. }
  41652. },
  41653. maw: {
  41654. height: math.unit(7.4, "feet"),
  41655. name: "Maw",
  41656. image: {
  41657. source: "./media/characters/sophie-ambrose/maw.svg"
  41658. }
  41659. },
  41660. },
  41661. [
  41662. {
  41663. name: "Normal",
  41664. height: math.unit(17.5, "feet"),
  41665. default: true
  41666. },
  41667. ]
  41668. ))
  41669. characterMakers.push(() => makeCharacter(
  41670. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  41671. {
  41672. front: {
  41673. height: math.unit(280, "feet"),
  41674. weight: math.unit(550, "tons"),
  41675. name: "Front",
  41676. image: {
  41677. source: "./media/characters/king-mugi/front.svg",
  41678. extra: 1102/947,
  41679. bottom: 104/1206
  41680. }
  41681. },
  41682. },
  41683. [
  41684. {
  41685. name: "King Mugi",
  41686. height: math.unit(280, "feet"),
  41687. default: true
  41688. },
  41689. ]
  41690. ))
  41691. characterMakers.push(() => makeCharacter(
  41692. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  41693. {
  41694. front: {
  41695. height: math.unit(64, "meters"),
  41696. name: "Front",
  41697. image: {
  41698. source: "./media/characters/nova-fox/front.svg",
  41699. extra: 1310/1246,
  41700. bottom: 65/1375
  41701. }
  41702. },
  41703. },
  41704. [
  41705. {
  41706. name: "Macro",
  41707. height: math.unit(64, "meters"),
  41708. default: true
  41709. },
  41710. ]
  41711. ))
  41712. characterMakers.push(() => makeCharacter(
  41713. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  41714. {
  41715. front: {
  41716. height: math.unit(6 + 3/12, "feet"),
  41717. weight: math.unit(170, "lb"),
  41718. name: "Front",
  41719. image: {
  41720. source: "./media/characters/sam-bat/front.svg",
  41721. extra: 1601/1411,
  41722. bottom: 125/1726
  41723. }
  41724. },
  41725. back: {
  41726. height: math.unit(6 + 3/12, "feet"),
  41727. weight: math.unit(170, "lb"),
  41728. name: "Back",
  41729. image: {
  41730. source: "./media/characters/sam-bat/back.svg",
  41731. extra: 1577/1405,
  41732. bottom: 58/1635
  41733. }
  41734. },
  41735. },
  41736. [
  41737. {
  41738. name: "Normal",
  41739. height: math.unit(6 + 3/12, "feet"),
  41740. default: true
  41741. },
  41742. ]
  41743. ))
  41744. characterMakers.push(() => makeCharacter(
  41745. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  41746. {
  41747. front: {
  41748. height: math.unit(59, "feet"),
  41749. weight: math.unit(40000, "lb"),
  41750. name: "Front",
  41751. image: {
  41752. source: "./media/characters/inari/front.svg",
  41753. extra: 1884/1350,
  41754. bottom: 95/1979
  41755. }
  41756. },
  41757. },
  41758. [
  41759. {
  41760. name: "Gigantamax",
  41761. height: math.unit(59, "feet"),
  41762. default: true
  41763. },
  41764. ]
  41765. ))
  41766. characterMakers.push(() => makeCharacter(
  41767. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  41768. {
  41769. front: {
  41770. height: math.unit(5 + 8/12, "feet"),
  41771. name: "Front",
  41772. image: {
  41773. source: "./media/characters/elizabeth/front.svg",
  41774. extra: 1395/1298,
  41775. bottom: 54/1449
  41776. }
  41777. },
  41778. mouth: {
  41779. height: math.unit(1.97, "feet"),
  41780. name: "Mouth",
  41781. image: {
  41782. source: "./media/characters/elizabeth/mouth.svg"
  41783. }
  41784. },
  41785. foot: {
  41786. height: math.unit(1.17, "feet"),
  41787. name: "Foot",
  41788. image: {
  41789. source: "./media/characters/elizabeth/foot.svg"
  41790. }
  41791. },
  41792. },
  41793. [
  41794. {
  41795. name: "Normal",
  41796. height: math.unit(5 + 8/12, "feet"),
  41797. default: true
  41798. },
  41799. {
  41800. name: "Minimacro",
  41801. height: math.unit(18, "feet")
  41802. },
  41803. {
  41804. name: "Macro",
  41805. height: math.unit(180, "feet")
  41806. },
  41807. ]
  41808. ))
  41809. characterMakers.push(() => makeCharacter(
  41810. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  41811. {
  41812. front: {
  41813. height: math.unit(5 + 2/12, "feet"),
  41814. name: "Front",
  41815. image: {
  41816. source: "./media/characters/october-gossamer/front.svg",
  41817. extra: 505/454,
  41818. bottom: 7/512
  41819. }
  41820. },
  41821. back: {
  41822. height: math.unit(5 + 2/12, "feet"),
  41823. name: "Back",
  41824. image: {
  41825. source: "./media/characters/october-gossamer/back.svg",
  41826. extra: 501/454,
  41827. bottom: 11/512
  41828. }
  41829. },
  41830. },
  41831. [
  41832. {
  41833. name: "Normal",
  41834. height: math.unit(5 + 2/12, "feet"),
  41835. default: true
  41836. },
  41837. ]
  41838. ))
  41839. characterMakers.push(() => makeCharacter(
  41840. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  41841. {
  41842. front: {
  41843. height: math.unit(5, "feet"),
  41844. name: "Front",
  41845. image: {
  41846. source: "./media/characters/epiglottis/front.svg",
  41847. extra: 923/849,
  41848. bottom: 17/940
  41849. }
  41850. },
  41851. },
  41852. [
  41853. {
  41854. name: "Original Size",
  41855. height: math.unit(10, "inches")
  41856. },
  41857. {
  41858. name: "Human Size",
  41859. height: math.unit(5, "feet"),
  41860. default: true
  41861. },
  41862. {
  41863. name: "Big",
  41864. height: math.unit(25, "feet")
  41865. },
  41866. {
  41867. name: "Bigger",
  41868. height: math.unit(50, "feet")
  41869. },
  41870. {
  41871. name: "oh lawd",
  41872. height: math.unit(75, "feet")
  41873. },
  41874. ]
  41875. ))
  41876. characterMakers.push(() => makeCharacter(
  41877. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  41878. {
  41879. front: {
  41880. height: math.unit(2 + 4/12, "feet"),
  41881. weight: math.unit(60, "lb"),
  41882. name: "Front",
  41883. image: {
  41884. source: "./media/characters/lerm/front.svg",
  41885. extra: 796/790,
  41886. bottom: 79/875
  41887. }
  41888. },
  41889. },
  41890. [
  41891. {
  41892. name: "Normal",
  41893. height: math.unit(2 + 4/12, "feet"),
  41894. default: true
  41895. },
  41896. ]
  41897. ))
  41898. characterMakers.push(() => makeCharacter(
  41899. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  41900. {
  41901. front: {
  41902. height: math.unit(5.5, "feet"),
  41903. weight: math.unit(130, "lb"),
  41904. name: "Front",
  41905. image: {
  41906. source: "./media/characters/xena-nebadon/front.svg",
  41907. extra: 1828/1730,
  41908. bottom: 79/1907
  41909. }
  41910. },
  41911. },
  41912. [
  41913. {
  41914. name: "Tiny Puppy",
  41915. height: math.unit(3, "inches")
  41916. },
  41917. {
  41918. name: "Normal",
  41919. height: math.unit(5.5, "feet"),
  41920. default: true
  41921. },
  41922. {
  41923. name: "Lotta Lady",
  41924. height: math.unit(12, "feet")
  41925. },
  41926. {
  41927. name: "Pretty Big",
  41928. height: math.unit(100, "feet")
  41929. },
  41930. {
  41931. name: "Big",
  41932. height: math.unit(500, "feet")
  41933. },
  41934. {
  41935. name: "Skyscraper Toys",
  41936. height: math.unit(2500, "feet")
  41937. },
  41938. {
  41939. name: "Plane Catcher",
  41940. height: math.unit(8, "miles")
  41941. },
  41942. {
  41943. name: "Planet Toys",
  41944. height: math.unit(15, "earths")
  41945. },
  41946. {
  41947. name: "Stardust",
  41948. height: math.unit(0.25, "galaxies")
  41949. },
  41950. {
  41951. name: "Snacks",
  41952. height: math.unit(70, "universes")
  41953. },
  41954. ]
  41955. ))
  41956. characterMakers.push(() => makeCharacter(
  41957. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  41958. {
  41959. front: {
  41960. height: math.unit(1.6, "meters"),
  41961. weight: math.unit(60, "kg"),
  41962. name: "Front",
  41963. image: {
  41964. source: "./media/characters/bounty/front.svg",
  41965. extra: 1426/1308,
  41966. bottom: 15/1441
  41967. }
  41968. },
  41969. },
  41970. [
  41971. {
  41972. name: "Normal",
  41973. height: math.unit(1.6, "meters"),
  41974. default: true
  41975. },
  41976. {
  41977. name: "Macro",
  41978. height: math.unit(300, "meters")
  41979. },
  41980. ]
  41981. ))
  41982. characterMakers.push(() => makeCharacter(
  41983. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  41984. {
  41985. front: {
  41986. height: math.unit(2 + 8/12, "feet"),
  41987. weight: math.unit(15, "lb"),
  41988. name: "Front",
  41989. image: {
  41990. source: "./media/characters/mochi/front.svg",
  41991. extra: 1022/852,
  41992. bottom: 435/1457
  41993. }
  41994. },
  41995. back: {
  41996. height: math.unit(2 + 8/12, "feet"),
  41997. weight: math.unit(15, "lb"),
  41998. name: "Back",
  41999. image: {
  42000. source: "./media/characters/mochi/back.svg",
  42001. extra: 1335/1119,
  42002. bottom: 39/1374
  42003. }
  42004. },
  42005. bird: {
  42006. height: math.unit(2 + 8/12, "feet"),
  42007. weight: math.unit(15, "lb"),
  42008. name: "Bird",
  42009. image: {
  42010. source: "./media/characters/mochi/bird.svg",
  42011. extra: 1251/1113,
  42012. bottom: 178/1429
  42013. }
  42014. },
  42015. kaiju: {
  42016. height: math.unit(154, "feet"),
  42017. weight: math.unit(1e7, "lb"),
  42018. name: "Kaiju",
  42019. image: {
  42020. source: "./media/characters/mochi/kaiju.svg",
  42021. extra: 460/324,
  42022. bottom: 40/500
  42023. }
  42024. },
  42025. head: {
  42026. height: math.unit(1.21, "feet"),
  42027. name: "Head",
  42028. image: {
  42029. source: "./media/characters/mochi/head.svg"
  42030. }
  42031. },
  42032. alternateTail: {
  42033. height: math.unit(2 + 8/12, "feet"),
  42034. weight: math.unit(45, "lb"),
  42035. name: "Alternate Tail",
  42036. image: {
  42037. source: "./media/characters/mochi/alternate-tail.svg",
  42038. extra: 139/76,
  42039. bottom: 45/184
  42040. }
  42041. },
  42042. },
  42043. [
  42044. {
  42045. name: "Micro",
  42046. height: math.unit(2, "inches")
  42047. },
  42048. {
  42049. name: "Normal",
  42050. height: math.unit(2 + 8/12, "feet"),
  42051. default: true
  42052. },
  42053. {
  42054. name: "Macro",
  42055. height: math.unit(106, "feet")
  42056. },
  42057. ]
  42058. ))
  42059. characterMakers.push(() => makeCharacter(
  42060. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42061. {
  42062. front: {
  42063. height: math.unit(5.67, "feet"),
  42064. weight: math.unit(135, "lb"),
  42065. name: "Front",
  42066. image: {
  42067. source: "./media/characters/sarel/front.svg",
  42068. extra: 865/788,
  42069. bottom: 97/962
  42070. }
  42071. },
  42072. back: {
  42073. height: math.unit(5.67, "feet"),
  42074. weight: math.unit(135, "lb"),
  42075. name: "Back",
  42076. image: {
  42077. source: "./media/characters/sarel/back.svg",
  42078. extra: 857/777,
  42079. bottom: 32/889
  42080. }
  42081. },
  42082. chozoan: {
  42083. height: math.unit(5.67, "feet"),
  42084. weight: math.unit(135, "lb"),
  42085. name: "Chozoan",
  42086. image: {
  42087. source: "./media/characters/sarel/chozoan.svg",
  42088. extra: 865/788,
  42089. bottom: 97/962
  42090. }
  42091. },
  42092. current: {
  42093. height: math.unit(5.67, "feet"),
  42094. weight: math.unit(135, "lb"),
  42095. name: "Current",
  42096. image: {
  42097. source: "./media/characters/sarel/current.svg",
  42098. extra: 865/788,
  42099. bottom: 97/962
  42100. }
  42101. },
  42102. head: {
  42103. height: math.unit(1.77, "feet"),
  42104. name: "Head",
  42105. image: {
  42106. source: "./media/characters/sarel/head.svg"
  42107. }
  42108. },
  42109. claws: {
  42110. height: math.unit(1.8, "feet"),
  42111. name: "Claws",
  42112. image: {
  42113. source: "./media/characters/sarel/claws.svg"
  42114. }
  42115. },
  42116. clawsAlt: {
  42117. height: math.unit(1.8, "feet"),
  42118. name: "Claws-alt",
  42119. image: {
  42120. source: "./media/characters/sarel/claws-alt.svg"
  42121. }
  42122. },
  42123. },
  42124. [
  42125. {
  42126. name: "Normal",
  42127. height: math.unit(5.67, "feet"),
  42128. default: true
  42129. },
  42130. ]
  42131. ))
  42132. characterMakers.push(() => makeCharacter(
  42133. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42134. {
  42135. front: {
  42136. height: math.unit(5500, "feet"),
  42137. name: "Front",
  42138. image: {
  42139. source: "./media/characters/alyonia/front.svg",
  42140. extra: 1200/1135,
  42141. bottom: 29/1229
  42142. }
  42143. },
  42144. back: {
  42145. height: math.unit(5500, "feet"),
  42146. name: "Back",
  42147. image: {
  42148. source: "./media/characters/alyonia/back.svg",
  42149. extra: 1205/1138,
  42150. bottom: 10/1215
  42151. }
  42152. },
  42153. },
  42154. [
  42155. {
  42156. name: "Small",
  42157. height: math.unit(10, "feet")
  42158. },
  42159. {
  42160. name: "Macro",
  42161. height: math.unit(500, "feet")
  42162. },
  42163. {
  42164. name: "Mega Macro",
  42165. height: math.unit(5500, "feet"),
  42166. default: true
  42167. },
  42168. {
  42169. name: "Mega Macro+",
  42170. height: math.unit(500000, "feet")
  42171. },
  42172. {
  42173. name: "Giga Macro",
  42174. height: math.unit(3000, "miles")
  42175. },
  42176. {
  42177. name: "Tera Macro",
  42178. height: math.unit(2.8e6, "miles")
  42179. },
  42180. {
  42181. name: "Galactic",
  42182. height: math.unit(120000, "lightyears")
  42183. },
  42184. ]
  42185. ))
  42186. characterMakers.push(() => makeCharacter(
  42187. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42188. {
  42189. werewolf: {
  42190. height: math.unit(8, "feet"),
  42191. weight: math.unit(425, "lb"),
  42192. name: "Werewolf",
  42193. image: {
  42194. source: "./media/characters/autumn/werewolf.svg",
  42195. extra: 2154/2031,
  42196. bottom: 160/2314
  42197. }
  42198. },
  42199. human: {
  42200. height: math.unit(5 + 8/12, "feet"),
  42201. weight: math.unit(150, "lb"),
  42202. name: "Human",
  42203. image: {
  42204. source: "./media/characters/autumn/human.svg",
  42205. extra: 1200/1149,
  42206. bottom: 30/1230
  42207. }
  42208. },
  42209. },
  42210. [
  42211. {
  42212. name: "Normal",
  42213. height: math.unit(8, "feet"),
  42214. default: true
  42215. },
  42216. ]
  42217. ))
  42218. characterMakers.push(() => makeCharacter(
  42219. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42220. {
  42221. front: {
  42222. height: math.unit(8 + 5/12, "feet"),
  42223. weight: math.unit(825, "lb"),
  42224. name: "Front",
  42225. image: {
  42226. source: "./media/characters/cobalt-charizard/front.svg",
  42227. extra: 1268/1155,
  42228. bottom: 122/1390
  42229. }
  42230. },
  42231. side: {
  42232. height: math.unit(8 + 5/12, "feet"),
  42233. weight: math.unit(825, "lb"),
  42234. name: "Side",
  42235. image: {
  42236. source: "./media/characters/cobalt-charizard/side.svg",
  42237. extra: 1348/1257,
  42238. bottom: 58/1406
  42239. }
  42240. },
  42241. gMax: {
  42242. height: math.unit(134 + 11/12, "feet"),
  42243. name: "G-Max",
  42244. image: {
  42245. source: "./media/characters/cobalt-charizard/g-max.svg",
  42246. extra: 1835/1541,
  42247. bottom: 151/1986
  42248. }
  42249. },
  42250. },
  42251. [
  42252. {
  42253. name: "Normal",
  42254. height: math.unit(8 + 5/12, "feet"),
  42255. default: true
  42256. },
  42257. ]
  42258. ))
  42259. characterMakers.push(() => makeCharacter(
  42260. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42261. {
  42262. front: {
  42263. height: math.unit(6 + 3/12, "feet"),
  42264. weight: math.unit(210, "lb"),
  42265. name: "Front",
  42266. image: {
  42267. source: "./media/characters/stella/front.svg",
  42268. extra: 3549/3335,
  42269. bottom: 51/3600
  42270. }
  42271. },
  42272. },
  42273. [
  42274. {
  42275. name: "Normal",
  42276. height: math.unit(6 + 3/12, "feet"),
  42277. default: true
  42278. },
  42279. ]
  42280. ))
  42281. characterMakers.push(() => makeCharacter(
  42282. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42283. {
  42284. front: {
  42285. height: math.unit(5, "feet"),
  42286. weight: math.unit(90, "lb"),
  42287. name: "Front",
  42288. image: {
  42289. source: "./media/characters/riley-bishop/front.svg",
  42290. extra: 1450/1428,
  42291. bottom: 152/1602
  42292. }
  42293. },
  42294. },
  42295. [
  42296. {
  42297. name: "Normal",
  42298. height: math.unit(5, "feet"),
  42299. default: true
  42300. },
  42301. ]
  42302. ))
  42303. characterMakers.push(() => makeCharacter(
  42304. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42305. {
  42306. side: {
  42307. height: math.unit(8 + 2/12, "feet"),
  42308. weight: math.unit(500, "kg"),
  42309. name: "Side",
  42310. image: {
  42311. source: "./media/characters/theo-arcanine/side.svg",
  42312. extra: 1342/1074,
  42313. bottom: 111/1453
  42314. }
  42315. },
  42316. },
  42317. [
  42318. {
  42319. name: "Normal",
  42320. height: math.unit(8 + 2/12, "feet"),
  42321. default: true
  42322. },
  42323. ]
  42324. ))
  42325. characterMakers.push(() => makeCharacter(
  42326. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42327. {
  42328. front: {
  42329. height: math.unit(4, "feet"),
  42330. name: "Front",
  42331. image: {
  42332. source: "./media/characters/kali/front.svg",
  42333. extra: 1921/1357,
  42334. bottom: 70/1991
  42335. }
  42336. },
  42337. },
  42338. [
  42339. {
  42340. name: "Normal",
  42341. height: math.unit(4, "feet"),
  42342. default: true
  42343. },
  42344. {
  42345. name: "Macro",
  42346. height: math.unit(32, "meters")
  42347. },
  42348. {
  42349. name: "Macro+",
  42350. height: math.unit(150, "meters")
  42351. },
  42352. {
  42353. name: "Megamacro",
  42354. height: math.unit(7500, "meters")
  42355. },
  42356. {
  42357. name: "Megamacro+",
  42358. height: math.unit(80, "kilometers")
  42359. },
  42360. ]
  42361. ))
  42362. characterMakers.push(() => makeCharacter(
  42363. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42364. {
  42365. side: {
  42366. height: math.unit(5 + 11/12, "feet"),
  42367. weight: math.unit(236, "lb"),
  42368. name: "Side",
  42369. image: {
  42370. source: "./media/characters/gapp/side.svg",
  42371. extra: 775/340,
  42372. bottom: 58/833
  42373. }
  42374. },
  42375. mouth: {
  42376. height: math.unit(2.98, "feet"),
  42377. name: "Mouth",
  42378. image: {
  42379. source: "./media/characters/gapp/mouth.svg"
  42380. }
  42381. },
  42382. },
  42383. [
  42384. {
  42385. name: "Normal",
  42386. height: math.unit(5 + 1/12, "feet"),
  42387. default: true
  42388. },
  42389. ]
  42390. ))
  42391. characterMakers.push(() => makeCharacter(
  42392. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42393. {
  42394. front: {
  42395. height: math.unit(6, "feet"),
  42396. name: "Front",
  42397. image: {
  42398. source: "./media/characters/persephone/front.svg",
  42399. extra: 1895/1717,
  42400. bottom: 96/1991
  42401. }
  42402. },
  42403. back: {
  42404. height: math.unit(6, "feet"),
  42405. name: "Back",
  42406. image: {
  42407. source: "./media/characters/persephone/back.svg",
  42408. extra: 1868/1679,
  42409. bottom: 26/1894
  42410. }
  42411. },
  42412. casual: {
  42413. height: math.unit(6, "feet"),
  42414. name: "Casual",
  42415. image: {
  42416. source: "./media/characters/persephone/casual.svg",
  42417. extra: 1713/1541,
  42418. bottom: 76/1789
  42419. }
  42420. },
  42421. },
  42422. [
  42423. {
  42424. name: "Human Size",
  42425. height: math.unit(6, "feet"),
  42426. default: true
  42427. },
  42428. {
  42429. name: "Galaxy Brain",
  42430. height: math.unit(1, "zettameter")
  42431. },
  42432. ]
  42433. ))
  42434. characterMakers.push(() => makeCharacter(
  42435. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42436. {
  42437. front: {
  42438. height: math.unit(1.85, "meters"),
  42439. name: "Front",
  42440. image: {
  42441. source: "./media/characters/riley-foxthing/front.svg",
  42442. extra: 1495/1354,
  42443. bottom: 122/1617
  42444. }
  42445. },
  42446. frontAlt: {
  42447. height: math.unit(1.85, "meters"),
  42448. name: "Front (Alt)",
  42449. image: {
  42450. source: "./media/characters/riley-foxthing/front-alt.svg",
  42451. extra: 1572/1389,
  42452. bottom: 116/1688
  42453. }
  42454. },
  42455. },
  42456. [
  42457. {
  42458. name: "Normal Sized",
  42459. height: math.unit(1.85, "meters"),
  42460. default: true
  42461. },
  42462. {
  42463. name: "Quite Sizable",
  42464. height: math.unit(5, "meters")
  42465. },
  42466. {
  42467. name: "Rather Large",
  42468. height: math.unit(20, "meters")
  42469. },
  42470. {
  42471. name: "Macro",
  42472. height: math.unit(450, "meters")
  42473. },
  42474. {
  42475. name: "Giga",
  42476. height: math.unit(5, "km")
  42477. },
  42478. ]
  42479. ))
  42480. characterMakers.push(() => makeCharacter(
  42481. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42482. {
  42483. front: {
  42484. height: math.unit(6, "feet"),
  42485. weight: math.unit(200, "lb"),
  42486. name: "Front",
  42487. image: {
  42488. source: "./media/characters/blizzard/front.svg",
  42489. extra: 1136/990,
  42490. bottom: 136/1272
  42491. }
  42492. },
  42493. back: {
  42494. height: math.unit(6, "feet"),
  42495. weight: math.unit(200, "lb"),
  42496. name: "Back",
  42497. image: {
  42498. source: "./media/characters/blizzard/back.svg",
  42499. extra: 1175/1034,
  42500. bottom: 97/1272
  42501. }
  42502. },
  42503. sitting: {
  42504. height: math.unit(3.725, "feet"),
  42505. weight: math.unit(200, "lb"),
  42506. name: "Sitting",
  42507. image: {
  42508. source: "./media/characters/blizzard/sitting.svg",
  42509. extra: 581/485,
  42510. bottom: 90/671
  42511. }
  42512. },
  42513. frontWizard: {
  42514. height: math.unit(7.9, "feet"),
  42515. weight: math.unit(200, "lb"),
  42516. name: "Front (Wizard)",
  42517. image: {
  42518. source: "./media/characters/blizzard/front-wizard.svg"
  42519. }
  42520. },
  42521. backWizard: {
  42522. height: math.unit(7.9, "feet"),
  42523. weight: math.unit(200, "lb"),
  42524. name: "Back (Wizard)",
  42525. image: {
  42526. source: "./media/characters/blizzard/back-wizard.svg"
  42527. }
  42528. },
  42529. frontNsfw: {
  42530. height: math.unit(6, "feet"),
  42531. weight: math.unit(200, "lb"),
  42532. name: "Front (NSFW)",
  42533. image: {
  42534. source: "./media/characters/blizzard/front-nsfw.svg",
  42535. extra: 1136/990,
  42536. bottom: 136/1272
  42537. }
  42538. },
  42539. backNsfw: {
  42540. height: math.unit(6, "feet"),
  42541. weight: math.unit(200, "lb"),
  42542. name: "Back (NSFW)",
  42543. image: {
  42544. source: "./media/characters/blizzard/back-nsfw.svg",
  42545. extra: 1175/1034,
  42546. bottom: 97/1272
  42547. }
  42548. },
  42549. sittingNsfw: {
  42550. height: math.unit(3.725, "feet"),
  42551. weight: math.unit(200, "lb"),
  42552. name: "Sitting (NSFW)",
  42553. image: {
  42554. source: "./media/characters/blizzard/sitting-nsfw.svg",
  42555. extra: 581/485,
  42556. bottom: 90/671
  42557. }
  42558. },
  42559. wizardFrontNsfw: {
  42560. height: math.unit(7.9, "feet"),
  42561. weight: math.unit(200, "lb"),
  42562. name: "Wizard (Front, NSFW)",
  42563. image: {
  42564. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  42565. }
  42566. },
  42567. },
  42568. [
  42569. {
  42570. name: "Normal",
  42571. height: math.unit(6, "feet"),
  42572. default: true
  42573. },
  42574. ]
  42575. ))
  42576. characterMakers.push(() => makeCharacter(
  42577. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  42578. {
  42579. front: {
  42580. height: math.unit(5 + 2/12, "feet"),
  42581. name: "Front",
  42582. image: {
  42583. source: "./media/characters/lumi/front.svg",
  42584. extra: 1328/1268,
  42585. bottom: 103/1431
  42586. }
  42587. },
  42588. back: {
  42589. height: math.unit(5 + 2/12, "feet"),
  42590. name: "Back",
  42591. image: {
  42592. source: "./media/characters/lumi/back.svg",
  42593. extra: 1381/1327,
  42594. bottom: 43/1424
  42595. }
  42596. },
  42597. },
  42598. [
  42599. {
  42600. name: "Normal",
  42601. height: math.unit(5 + 2/12, "feet"),
  42602. default: true
  42603. },
  42604. ]
  42605. ))
  42606. characterMakers.push(() => makeCharacter(
  42607. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  42608. {
  42609. front: {
  42610. height: math.unit(5 + 9/12, "feet"),
  42611. name: "Front",
  42612. image: {
  42613. source: "./media/characters/aliya-cotton/front.svg",
  42614. extra: 577/564,
  42615. bottom: 29/606
  42616. }
  42617. },
  42618. },
  42619. [
  42620. {
  42621. name: "Normal",
  42622. height: math.unit(5 + 9/12, "feet"),
  42623. default: true
  42624. },
  42625. ]
  42626. ))
  42627. characterMakers.push(() => makeCharacter(
  42628. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  42629. {
  42630. front: {
  42631. height: math.unit(2.7, "meters"),
  42632. weight: math.unit(25000, "lb"),
  42633. name: "Front",
  42634. image: {
  42635. source: "./media/characters/noah-luxray/front.svg",
  42636. extra: 1644/825,
  42637. bottom: 339/1983
  42638. }
  42639. },
  42640. side: {
  42641. height: math.unit(2.97, "meters"),
  42642. weight: math.unit(25000, "lb"),
  42643. name: "Side",
  42644. image: {
  42645. source: "./media/characters/noah-luxray/side.svg",
  42646. extra: 1319/650,
  42647. bottom: 163/1482
  42648. }
  42649. },
  42650. dick: {
  42651. height: math.unit(7.4, "feet"),
  42652. weight: math.unit(2500, "lb"),
  42653. name: "Dick",
  42654. image: {
  42655. source: "./media/characters/noah-luxray/dick.svg"
  42656. }
  42657. },
  42658. dickAlt: {
  42659. height: math.unit(10.83, "feet"),
  42660. weight: math.unit(2500, "lb"),
  42661. name: "Dick-alt",
  42662. image: {
  42663. source: "./media/characters/noah-luxray/dick-alt.svg"
  42664. }
  42665. },
  42666. },
  42667. [
  42668. {
  42669. name: "BIG",
  42670. height: math.unit(2.7, "meters"),
  42671. default: true
  42672. },
  42673. ]
  42674. ))
  42675. characterMakers.push(() => makeCharacter(
  42676. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  42677. {
  42678. standing: {
  42679. height: math.unit(183, "cm"),
  42680. weight: math.unit(68, "kg"),
  42681. name: "Standing",
  42682. image: {
  42683. source: "./media/characters/arion/standing.svg",
  42684. extra: 1869/1807,
  42685. bottom: 93/1962
  42686. }
  42687. },
  42688. reclining: {
  42689. height: math.unit(70.5, "cm"),
  42690. weight: math.unit(68, "lb"),
  42691. name: "Reclining",
  42692. image: {
  42693. source: "./media/characters/arion/reclining.svg",
  42694. extra: 937/870,
  42695. bottom: 63/1000
  42696. }
  42697. },
  42698. },
  42699. [
  42700. {
  42701. name: "Colossus Size, Low",
  42702. height: math.unit(33, "meters"),
  42703. default: true
  42704. },
  42705. {
  42706. name: "Colossus Size, Mid",
  42707. height: math.unit(52, "meters")
  42708. },
  42709. {
  42710. name: "Colossus Size, High",
  42711. height: math.unit(60, "meters")
  42712. },
  42713. {
  42714. name: "Titan Size, Low",
  42715. height: math.unit(91, "meters"),
  42716. },
  42717. {
  42718. name: "Titan Size, Mid",
  42719. height: math.unit(122, "meters")
  42720. },
  42721. {
  42722. name: "Titan Size, High",
  42723. height: math.unit(162, "meters")
  42724. },
  42725. ]
  42726. ))
  42727. characterMakers.push(() => makeCharacter(
  42728. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  42729. {
  42730. front: {
  42731. height: math.unit(53, "meters"),
  42732. name: "Front",
  42733. image: {
  42734. source: "./media/characters/stellar-marbey/front.svg",
  42735. extra: 1913/1805,
  42736. bottom: 92/2005
  42737. }
  42738. },
  42739. back: {
  42740. height: math.unit(53, "meters"),
  42741. name: "Back",
  42742. image: {
  42743. source: "./media/characters/stellar-marbey/back.svg",
  42744. extra: 1960/1851,
  42745. bottom: 28/1988
  42746. }
  42747. },
  42748. mouth: {
  42749. height: math.unit(3.5, "meters"),
  42750. name: "Mouth",
  42751. image: {
  42752. source: "./media/characters/stellar-marbey/mouth.svg"
  42753. }
  42754. },
  42755. },
  42756. [
  42757. {
  42758. name: "Macro",
  42759. height: math.unit(53, "meters"),
  42760. default: true
  42761. },
  42762. ]
  42763. ))
  42764. characterMakers.push(() => makeCharacter(
  42765. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  42766. {
  42767. front: {
  42768. height: math.unit(8 + 1/12, "feet"),
  42769. weight: math.unit(233, "lb"),
  42770. name: "Front",
  42771. image: {
  42772. source: "./media/characters/matsu/front.svg",
  42773. extra: 832/772,
  42774. bottom: 40/872
  42775. }
  42776. },
  42777. back: {
  42778. height: math.unit(8 + 1/12, "feet"),
  42779. weight: math.unit(233, "lb"),
  42780. name: "Back",
  42781. image: {
  42782. source: "./media/characters/matsu/back.svg",
  42783. extra: 839/780,
  42784. bottom: 47/886
  42785. }
  42786. },
  42787. },
  42788. [
  42789. {
  42790. name: "Normal",
  42791. height: math.unit(8 + 1/12, "feet"),
  42792. default: true
  42793. },
  42794. ]
  42795. ))
  42796. characterMakers.push(() => makeCharacter(
  42797. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  42798. {
  42799. front: {
  42800. height: math.unit(4, "feet"),
  42801. weight: math.unit(148, "lb"),
  42802. name: "Front",
  42803. image: {
  42804. source: "./media/characters/thiz/front.svg",
  42805. extra: 1913/1748,
  42806. bottom: 62/1975
  42807. }
  42808. },
  42809. },
  42810. [
  42811. {
  42812. name: "Normal",
  42813. height: math.unit(4, "feet"),
  42814. default: true
  42815. },
  42816. ]
  42817. ))
  42818. characterMakers.push(() => makeCharacter(
  42819. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  42820. {
  42821. front: {
  42822. height: math.unit(7 + 6/12, "feet"),
  42823. weight: math.unit(267, "lb"),
  42824. name: "Front",
  42825. image: {
  42826. source: "./media/characters/marcel/front.svg",
  42827. extra: 1221/1096,
  42828. bottom: 76/1297
  42829. }
  42830. },
  42831. },
  42832. [
  42833. {
  42834. name: "Normal",
  42835. height: math.unit(7 + 6/12, "feet"),
  42836. default: true
  42837. },
  42838. ]
  42839. ))
  42840. characterMakers.push(() => makeCharacter(
  42841. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  42842. {
  42843. side: {
  42844. height: math.unit(42, "meters"),
  42845. name: "Side",
  42846. image: {
  42847. source: "./media/characters/flake/side.svg",
  42848. extra: 1525/1306,
  42849. bottom: 209/1734
  42850. }
  42851. },
  42852. },
  42853. [
  42854. {
  42855. name: "Normal",
  42856. height: math.unit(42, "meters"),
  42857. default: true
  42858. },
  42859. ]
  42860. ))
  42861. characterMakers.push(() => makeCharacter(
  42862. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  42863. {
  42864. dressed: {
  42865. height: math.unit(6 + 4/12, "feet"),
  42866. weight: math.unit(520, "lb"),
  42867. name: "Dressed",
  42868. image: {
  42869. source: "./media/characters/someonne/dressed.svg",
  42870. extra: 1020/1010,
  42871. bottom: 178/1198
  42872. }
  42873. },
  42874. undressed: {
  42875. height: math.unit(6 + 4/12, "feet"),
  42876. weight: math.unit(520, "lb"),
  42877. name: "Undressed",
  42878. image: {
  42879. source: "./media/characters/someonne/undressed.svg",
  42880. extra: 1019/1014,
  42881. bottom: 169/1188
  42882. }
  42883. },
  42884. },
  42885. [
  42886. {
  42887. name: "Normal",
  42888. height: math.unit(6 + 4/12, "feet"),
  42889. default: true
  42890. },
  42891. ]
  42892. ))
  42893. //characters
  42894. function makeCharacters() {
  42895. const results = [];
  42896. characterMakers.forEach(character => {
  42897. results.push(character());
  42898. });
  42899. return results;
  42900. }