less copy protection, more size visualization
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

46812 строки
1.2 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. });
  54. return createEntityMaker(info, views, defaultSizes, forms);
  55. }
  56. const speciesData = {
  57. animal: {
  58. name: "Animal"
  59. },
  60. dog: {
  61. name: "Dog",
  62. parents: [
  63. "canine"
  64. ]
  65. },
  66. canine: {
  67. name: "Canine",
  68. parents: [
  69. "mammal"
  70. ]
  71. },
  72. crux: {
  73. name: "Crux",
  74. parents: [
  75. "mammal"
  76. ]
  77. },
  78. mammal: {
  79. name: "Mammal",
  80. parents: [
  81. "animal"
  82. ]
  83. },
  84. "rough-collie": {
  85. name: "Rough Collie",
  86. parents: [
  87. "dog"
  88. ]
  89. },
  90. dragon: {
  91. name: "Dragon",
  92. parents: [
  93. "reptile"
  94. ]
  95. },
  96. reptile: {
  97. name: "Reptile",
  98. parents: [
  99. "animal"
  100. ]
  101. },
  102. woodpecker: {
  103. name: "Woodpecker",
  104. parents: [
  105. "avian"
  106. ]
  107. },
  108. avian: {
  109. name: "Avian",
  110. parents: [
  111. "animal"
  112. ]
  113. },
  114. kitsune: {
  115. name: "Kitsune",
  116. parents: [
  117. "fox"
  118. ]
  119. },
  120. fox: {
  121. name: "Fox",
  122. parents: [
  123. "mammal"
  124. ]
  125. },
  126. pokemon: {
  127. name: "Pokemon"
  128. },
  129. tiger: {
  130. name: "Tiger",
  131. parents: [
  132. "cat"
  133. ]
  134. },
  135. cat: {
  136. name: "Cat",
  137. parents: [
  138. "feliform"
  139. ]
  140. },
  141. "blue-jay": {
  142. name: "Blue Jay",
  143. parents: [
  144. "avian"
  145. ]
  146. },
  147. wolf: {
  148. name: "Wolf",
  149. parents: [
  150. "mammal"
  151. ]
  152. },
  153. coyote: {
  154. name: "Coyote",
  155. parents: [
  156. "mammal"
  157. ]
  158. },
  159. raccoon: {
  160. name: "Raccoon",
  161. parents: [
  162. "mammal"
  163. ]
  164. },
  165. weasel: {
  166. name: "Weasel",
  167. parents: [
  168. "mustelid"
  169. ]
  170. },
  171. "red-panda": {
  172. name: "Red Panda",
  173. parents: [
  174. "mammal"
  175. ]
  176. },
  177. dolphin: {
  178. name: "Dolphin",
  179. parents: [
  180. "mammal"
  181. ]
  182. },
  183. "african-wild-dog": {
  184. name: "African Wild Dog",
  185. parents: [
  186. "canine"
  187. ]
  188. },
  189. "hyena": {
  190. name: "Hyena",
  191. parents: [
  192. "feliform"
  193. ]
  194. },
  195. "carbuncle": {
  196. name: "Carbuncle",
  197. parents: [
  198. "animal"
  199. ]
  200. },
  201. bat: {
  202. name: "Bat",
  203. parents: [
  204. "mammal"
  205. ]
  206. },
  207. "leaf-nosed-bat": {
  208. name: "Leaf-Nosed Bat",
  209. parents: [
  210. "bat"
  211. ]
  212. },
  213. "fish": {
  214. name: "Fish",
  215. parents: [
  216. "animal"
  217. ]
  218. },
  219. "ram": {
  220. name: "Ram",
  221. parents: [
  222. "mammal"
  223. ]
  224. },
  225. "demon": {
  226. name: "Demon",
  227. parents: [
  228. "supernatural"
  229. ]
  230. },
  231. "cougar": {
  232. name: "Cougar",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "goat": {
  238. name: "Goat",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "lion": {
  244. name: "Lion",
  245. parents: [
  246. "cat"
  247. ]
  248. },
  249. "harpy-eager": {
  250. name: "Harpy Eagle",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "deer": {
  256. name: "Deer",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "phoenix": {
  262. name: "Phoenix",
  263. parents: [
  264. "avian"
  265. ]
  266. },
  267. "aeromorph": {
  268. name: "Aeromorph",
  269. parents: [
  270. "machine"
  271. ]
  272. },
  273. "machine": {
  274. name: "Machine",
  275. },
  276. "android": {
  277. name: "Android",
  278. parents: [
  279. "machine"
  280. ]
  281. },
  282. "jackal": {
  283. name: "Jackal",
  284. parents: [
  285. "canine"
  286. ]
  287. },
  288. "corvid": {
  289. name: "Corvid",
  290. parents: [
  291. "avian"
  292. ]
  293. },
  294. "pharaoh-hound": {
  295. name: "Pharaoh Hound",
  296. parents: [
  297. "dog"
  298. ]
  299. },
  300. "skunk": {
  301. name: "Skunk",
  302. parents: [
  303. "mammal"
  304. ]
  305. },
  306. "shark": {
  307. name: "Shark",
  308. parents: [
  309. "fish"
  310. ]
  311. },
  312. "black-panther": {
  313. name: "Black Panther",
  314. parents: [
  315. "cat"
  316. ]
  317. },
  318. "umbra": {
  319. name: "Umbra",
  320. parents: [
  321. "animal"
  322. ]
  323. },
  324. "raven": {
  325. name: "Raven",
  326. parents: [
  327. "corvid"
  328. ]
  329. },
  330. "snow-leopard": {
  331. name: "Snow Leopard",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "barbary-lion": {
  337. name: "Barbary Lion",
  338. parents: [
  339. "lion"
  340. ]
  341. },
  342. "dra'gal": {
  343. name: "Dra'Gal",
  344. parents: [
  345. "mammal"
  346. ]
  347. },
  348. "german-shepherd": {
  349. name: "German Shepherd",
  350. parents: [
  351. "dog"
  352. ]
  353. },
  354. "bayleef": {
  355. name: "Bayleef",
  356. parents: [
  357. "pokemon"
  358. ]
  359. },
  360. "mouse": {
  361. name: "Mouse",
  362. parents: [
  363. "rodent"
  364. ]
  365. },
  366. "rat": {
  367. name: "Rat",
  368. parents: [
  369. "mammal"
  370. ]
  371. },
  372. "hoshiko-beast": {
  373. name: "Hoshiko Beast",
  374. parents: ["animal"]
  375. },
  376. "snow-jugani": {
  377. name: "Snow Jugani",
  378. parents: ["cat"]
  379. },
  380. "patamon": {
  381. name: "Patamon",
  382. parents: ["digimon"]
  383. },
  384. "digimon": {
  385. name: "Digimon",
  386. },
  387. "jugani": {
  388. name: "Jugani",
  389. parents: ["cat"]
  390. },
  391. "luxray": {
  392. name: "Luxray",
  393. parents: ["pokemon"]
  394. },
  395. "mech": {
  396. name: "Mech",
  397. parents: ["machine"]
  398. },
  399. "zoid": {
  400. name: "Zoid",
  401. parents: ["mech"]
  402. },
  403. "monster": {
  404. name: "Monster",
  405. parents: ["animal"]
  406. },
  407. "foo-dog": {
  408. name: "Foo Dog",
  409. parents: ["mammal"]
  410. },
  411. "elephant": {
  412. name: "Elephant",
  413. parents: ["mammal"]
  414. },
  415. "eagle": {
  416. name: "Eagle",
  417. parents: ["avian"]
  418. },
  419. "cow": {
  420. name: "Cow",
  421. parents: ["mammal"]
  422. },
  423. "crocodile": {
  424. name: "Crocodile",
  425. parents: ["reptile"]
  426. },
  427. "borzoi": {
  428. name: "Borzoi",
  429. parents: ["dog"]
  430. },
  431. "snake": {
  432. name: "Snake",
  433. parents: ["reptile"]
  434. },
  435. "horned-bush-viper": {
  436. name: "Horned Bush Viper",
  437. parents: ["snake"]
  438. },
  439. "cobra": {
  440. name: "Cobra",
  441. parents: ["snake"]
  442. },
  443. "harpy-eagle": {
  444. name: "Harpy Eagle",
  445. parents: ["eagle"]
  446. },
  447. "raptor": {
  448. name: "Raptor",
  449. parents: ["dinosaur"]
  450. },
  451. "dinosaur": {
  452. name: "Dinosaur",
  453. parents: ["reptile"]
  454. },
  455. "veilhound": {
  456. name: "Veilhound",
  457. parents: ["hellhound"]
  458. },
  459. "hellhound": {
  460. name: "Hellhound",
  461. parents: ["canine", "demon"]
  462. },
  463. "insect": {
  464. name: "Insect",
  465. parents: ["animal"]
  466. },
  467. "beetle": {
  468. name: "Beetle",
  469. parents: ["insect"]
  470. },
  471. "moth": {
  472. name: "Moth",
  473. parents: ["insect"]
  474. },
  475. "eastern-dragon": {
  476. name: "Eastern Dragon",
  477. parents: ["dragon"]
  478. },
  479. "jaguar": {
  480. name: "Jaguar",
  481. parents: ["cat"]
  482. },
  483. "horse": {
  484. name: "Horse",
  485. parents: ["mammal"]
  486. },
  487. "sergal": {
  488. name: "Sergal",
  489. parents: ["mammal"]
  490. },
  491. "gryphon": {
  492. name: "Gryphon",
  493. parents: ["lion", "eagle"]
  494. },
  495. "robot": {
  496. name: "Robot",
  497. parents: ["machine"]
  498. },
  499. "medihound": {
  500. name: "Medihound",
  501. parents: ["robot", "dog"]
  502. },
  503. "sylveon": {
  504. name: "Sylveon",
  505. parents: ["pokemon"]
  506. },
  507. "catgirl": {
  508. name: "Catgirl",
  509. parents: ["mammal"]
  510. },
  511. "cowgirl": {
  512. name: "Cowgirl",
  513. parents: ["mammal"]
  514. },
  515. "pony": {
  516. name: "Pony",
  517. parents: ["horse"]
  518. },
  519. "rabbit": {
  520. name: "Rabbit",
  521. parents: ["mammal"]
  522. },
  523. "fennec-fox": {
  524. name: "Fennec Fox",
  525. parents: ["fox"]
  526. },
  527. "azodian": {
  528. name: "Azodian",
  529. parents: ["mouse"]
  530. },
  531. "shiba-inu": {
  532. name: "Shiba Inu",
  533. parents: ["dog"]
  534. },
  535. "changeling": {
  536. name: "Changeling",
  537. parents: ["insect"]
  538. },
  539. "cheetah": {
  540. name: "Cheetah",
  541. parents: ["cat"]
  542. },
  543. "golden-jackal": {
  544. name: "Golden Jackal",
  545. parents: ["jackal"]
  546. },
  547. "manectric": {
  548. name: "Manectric",
  549. parents: ["pokemon"]
  550. },
  551. "rat": {
  552. name: "Rat",
  553. parents: ["rodent"]
  554. },
  555. "rodent": {
  556. name: "Rodent",
  557. parents: ["mammal"]
  558. },
  559. "octocoon": {
  560. name: "Octocoon",
  561. parents: ["raccoon", "octopus"]
  562. },
  563. "octopus": {
  564. name: "Octopus",
  565. parents: ["fish"]
  566. },
  567. "werewolf": {
  568. name: "Werewolf",
  569. parents: ["wolf", "werebeast"]
  570. },
  571. "werebeast": {
  572. name: "Werebeast",
  573. parents: ["monster"]
  574. },
  575. "meerkat": {
  576. name: "Meerkat",
  577. parents: ["mammal"]
  578. },
  579. "human": {
  580. name: "Human",
  581. parents: ["mammal"]
  582. },
  583. "geth": {
  584. name: "Geth",
  585. parents: ["android"]
  586. },
  587. "husky": {
  588. name: "Husky",
  589. parents: ["dog"]
  590. },
  591. "long-eared-bat": {
  592. name: "Long Eared Bat",
  593. parents: ["bat"]
  594. },
  595. "lizard": {
  596. name: "Lizard",
  597. parents: ["reptile"]
  598. },
  599. "salamander": {
  600. name: "Salamander",
  601. parents: ["lizard"]
  602. },
  603. "chameleon": {
  604. name: "Chameleon",
  605. parents: ["lizard"]
  606. },
  607. "gecko": {
  608. name: "Gecko",
  609. parents: ["lizard"]
  610. },
  611. "kobold": {
  612. name: "Kobold",
  613. parents: ["reptile"]
  614. },
  615. "charizard": {
  616. name: "Charizard",
  617. parents: ["pokemon"]
  618. },
  619. "lugia": {
  620. name: "Lugia",
  621. parents: ["pokemon"]
  622. },
  623. "cerberus": {
  624. name: "Cerberus",
  625. parents: ["dog"]
  626. },
  627. "tyrantrum": {
  628. name: "Tyrantrum",
  629. parents: ["pokemon"]
  630. },
  631. "lemur": {
  632. name: "Lemur",
  633. parents: ["mammal"]
  634. },
  635. "kelpie": {
  636. name: "Kelpie",
  637. parents: ["horse", "monster"]
  638. },
  639. "labrador": {
  640. name: "Labrador",
  641. parents: ["dog"]
  642. },
  643. "sylveon": {
  644. name: "Sylveon",
  645. parents: ["eeveelution"]
  646. },
  647. "eeveelution": {
  648. name: "Eeveelution",
  649. parents: ["pokemon"]
  650. },
  651. "polar-bear": {
  652. name: "Polar Bear",
  653. parents: ["bear"]
  654. },
  655. "bear": {
  656. name: "Bear",
  657. parents: ["mammal"]
  658. },
  659. "absol": {
  660. name: "Absol",
  661. parents: ["pokemon"]
  662. },
  663. "wolver": {
  664. name: "Wolver",
  665. parents: ["mammal"]
  666. },
  667. "rottweiler": {
  668. name: "Rottweiler",
  669. parents: ["dog"]
  670. },
  671. "zebra": {
  672. name: "Zebra",
  673. parents: ["horse"]
  674. },
  675. "yoshi": {
  676. name: "Yoshi",
  677. parents: ["lizard"]
  678. },
  679. "lynx": {
  680. name: "Lynx",
  681. parents: ["cat"]
  682. },
  683. "unknown": {
  684. name: "Unknown",
  685. parents: []
  686. },
  687. "thylacine": {
  688. name: "Thylacine",
  689. parents: ["mammal"]
  690. },
  691. "gabumon": {
  692. name: "Gabumon",
  693. parents: ["digimon"]
  694. },
  695. "border-collie": {
  696. name: "Border Collie",
  697. parents: ["dog"]
  698. },
  699. "imp": {
  700. name: "Imp",
  701. parents: ["demon"]
  702. },
  703. "kangaroo": {
  704. name: "Kangaroo",
  705. parents: ["marsupial"]
  706. },
  707. "renamon": {
  708. name: "Renamon",
  709. parents: ["digimon"]
  710. },
  711. "candy-orca-dragon": {
  712. name: "Candy Orca Dragon",
  713. parents: ["fish", "dragon", "candy"]
  714. },
  715. "sabertooth-tiger": {
  716. name: "Sabertooth Tiger",
  717. parents: ["cat"]
  718. },
  719. "espurr": {
  720. name: "Espurr",
  721. parents: ["pokemon"]
  722. },
  723. "otter": {
  724. name: "Otter",
  725. parents: ["mustelid"]
  726. },
  727. "elemental": {
  728. name: "Elemental",
  729. parents: ["mammal"]
  730. },
  731. "mew": {
  732. name: "Mew",
  733. parents: ["pokemon"]
  734. },
  735. "goodra": {
  736. name: "Goodra",
  737. parents: ["pokemon"]
  738. },
  739. "fairy": {
  740. name: "Fairy",
  741. parents: ["magical"]
  742. },
  743. "typhlosion": {
  744. name: "Typhlosion",
  745. parents: ["pokemon"]
  746. },
  747. "magical": {
  748. name: "Magical",
  749. parents: []
  750. },
  751. "xenomorph": {
  752. name: "Xenomorph",
  753. parents: ["monster", "alien"]
  754. },
  755. "charr": {
  756. name: "Charr",
  757. parents: ["cat"]
  758. },
  759. "siberian-husky": {
  760. name: "Siberian Husky",
  761. parents: ["husky"]
  762. },
  763. "alligator": {
  764. name: "Alligator",
  765. parents: ["reptile"]
  766. },
  767. "bernese-mountain-dog": {
  768. name: "Bernese Mountain Dog",
  769. parents: ["dog"]
  770. },
  771. "reshiram": {
  772. name: "Reshiram",
  773. parents: ["pokemon"]
  774. },
  775. "grizzly-bear": {
  776. name: "Grizzly Bear",
  777. parents: ["bear"]
  778. },
  779. "water-monitor": {
  780. name: "Water Monitor",
  781. parents: ["lizard"]
  782. },
  783. "banchofossa": {
  784. name: "Banchofossa",
  785. parents: ["mammal"]
  786. },
  787. "kirin": {
  788. name: "Kirin",
  789. parents: ["monster"]
  790. },
  791. "quilava": {
  792. name: "Quilava",
  793. parents: ["pokemon"]
  794. },
  795. "seviper": {
  796. name: "Seviper",
  797. parents: ["pokemon"]
  798. },
  799. "flying-fox": {
  800. name: "Flying Fox",
  801. parents: ["bat"]
  802. },
  803. "keynain": {
  804. name: "Keynain",
  805. parents: ["avian"]
  806. },
  807. "lucario": {
  808. name: "Lucario",
  809. parents: ["pokemon"]
  810. },
  811. "siamese-cat": {
  812. name: "Siamese Cat",
  813. parents: ["cat"]
  814. },
  815. "spider": {
  816. name: "Spider",
  817. parents: ["insect"]
  818. },
  819. "samurott": {
  820. name: "Samurott",
  821. parents: ["pokemon"]
  822. },
  823. "megalodon": {
  824. name: "Megalodon",
  825. parents: ["shark"]
  826. },
  827. "unicorn": {
  828. name: "Unicorn",
  829. parents: ["horse"]
  830. },
  831. "greninja": {
  832. name: "Greninja",
  833. parents: ["pokemon"]
  834. },
  835. "water-dragon": {
  836. name: "Water Dragon",
  837. parents: ["dragon"]
  838. },
  839. "cross-fox": {
  840. name: "Cross Fox",
  841. parents: ["fox"]
  842. },
  843. "synth": {
  844. name: "Synth",
  845. parents: ["machine"]
  846. },
  847. "construct": {
  848. name: "Construct",
  849. parents: []
  850. },
  851. "mexican-wolf": {
  852. name: "Mexican Wolf",
  853. parents: ["wolf"]
  854. },
  855. "leopard": {
  856. name: "Leopard",
  857. parents: ["cat"]
  858. },
  859. "pig": {
  860. name: "Pig",
  861. parents: ["mammal"]
  862. },
  863. "ampharos": {
  864. name: "Ampharos",
  865. parents: ["pokemon"]
  866. },
  867. "orca": {
  868. name: "Orca",
  869. parents: ["fish"]
  870. },
  871. "lycanroc": {
  872. name: "Lycanroc",
  873. parents: ["pokemon"]
  874. },
  875. "surkanu": {
  876. name: "Surkanu",
  877. parents: ["monster"]
  878. },
  879. "seal": {
  880. name: "Seal",
  881. parents: ["mammal"]
  882. },
  883. "keldeo": {
  884. name: "Keldeo",
  885. parents: ["pokemon"]
  886. },
  887. "great-dane": {
  888. name: "Great Dane",
  889. parents: ["dog"]
  890. },
  891. "black-backed-jackal": {
  892. name: "Black Backed Jackal",
  893. parents: ["jackal"]
  894. },
  895. "sheep": {
  896. name: "Sheep",
  897. parents: ["mammal"]
  898. },
  899. "leopard-seal": {
  900. name: "Leopard Seal",
  901. parents: ["seal"]
  902. },
  903. "zoroark": {
  904. name: "Zoroark",
  905. parents: ["pokemon"]
  906. },
  907. "maned-wolf": {
  908. name: "Maned Wolf",
  909. parents: ["canine"]
  910. },
  911. "dracha": {
  912. name: "Dracha",
  913. parents: ["dragon"]
  914. },
  915. "wolxi": {
  916. name: "Wolxi",
  917. parents: ["mammal", "alien"]
  918. },
  919. "dratini": {
  920. name: "Dratini",
  921. parents: ["pokemon", "dragon"]
  922. },
  923. "skaven": {
  924. name: "Skaven",
  925. parents: ["rat"]
  926. },
  927. "mongoose": {
  928. name: "Mongoose",
  929. parents: ["mammal"]
  930. },
  931. "lopunny": {
  932. name: "Lopunny",
  933. parents: ["pokemon", "rabbit"]
  934. },
  935. "feraligatr": {
  936. name: "Feraligatr",
  937. parents: ["pokemon", "alligator"]
  938. },
  939. "houndoom": {
  940. name: "Houndoom",
  941. parents: ["pokemon", "dog"]
  942. },
  943. "protogen": {
  944. name: "Protogen",
  945. parents: ["machine"]
  946. },
  947. "saint-bernard": {
  948. name: "Saint Bernard",
  949. parents: ["dog"]
  950. },
  951. "crow": {
  952. name: "Crow",
  953. parents: ["corvid"]
  954. },
  955. "delphox": {
  956. name: "Delphox",
  957. parents: ["pokemon", "fox"]
  958. },
  959. "moose": {
  960. name: "Moose",
  961. parents: ["mammal"]
  962. },
  963. "joraxian": {
  964. name: "Joraxian",
  965. parents: ["monster", "canine", "demon"]
  966. },
  967. "nimbat": {
  968. name: "Nimbat",
  969. parents: ["mammal"]
  970. },
  971. "aardwolf": {
  972. name: "Aardwolf",
  973. parents: ["canine"]
  974. },
  975. "fluudrani": {
  976. name: "Fluudrani",
  977. parents: ["animal"]
  978. },
  979. "arcanine": {
  980. name: "Arcanine",
  981. parents: ["pokemon", "dog"]
  982. },
  983. "inteleon": {
  984. name: "Inteleon",
  985. parents: ["pokemon", "fish"]
  986. },
  987. "ninetales": {
  988. name: "Ninetales",
  989. parents: ["pokemon", "kitsune"]
  990. },
  991. "tigrex": {
  992. name: "Tigrex",
  993. parents: ["tiger"]
  994. },
  995. "zorua": {
  996. name: "Zorua",
  997. parents: ["pokemon", "fox"]
  998. },
  999. "vulpix": {
  1000. name: "Vulpix",
  1001. parents: ["pokemon", "fox"]
  1002. },
  1003. "barghest": {
  1004. name: "Barghest",
  1005. parents: ["monster"]
  1006. },
  1007. "gray-wolf": {
  1008. name: "Gray Wolf",
  1009. parents: ["wolf"]
  1010. },
  1011. "ruppells-fox": {
  1012. name: "Rüppell's Fox",
  1013. parents: ["fox"]
  1014. },
  1015. "bull-terrier": {
  1016. name: "Bull Terrier",
  1017. parents: ["dog"]
  1018. },
  1019. "european-honey-buzzard": {
  1020. name: "European Honey Buzzard",
  1021. parents: ["avian"]
  1022. },
  1023. "t-rex": {
  1024. name: "Tyrannosaurus Rex",
  1025. parents: ["dinosaur"]
  1026. },
  1027. "mactarian": {
  1028. name: "Mactarian",
  1029. parents: ["shark", "monster"]
  1030. },
  1031. "mewtwo-y": {
  1032. name: "Mewtwo Y",
  1033. parents: ["mewtwo"]
  1034. },
  1035. "mewtwo": {
  1036. name: "Mewtwo",
  1037. parents: ["pokemon"]
  1038. },
  1039. "mew": {
  1040. name: "Mew",
  1041. parents: ["pokemon"]
  1042. },
  1043. "eevee": {
  1044. name: "Eevee",
  1045. parents: ["eeveelution"]
  1046. },
  1047. "mienshao": {
  1048. name: "Mienshao",
  1049. parents: ["pokemon"]
  1050. },
  1051. "sugar-glider": {
  1052. name: "Sugar Glider",
  1053. parents: ["opossum"]
  1054. },
  1055. "spectral-bat": {
  1056. name: "Spectral Bat",
  1057. parents: ["bat"]
  1058. },
  1059. "scolipede": {
  1060. name: "Scolipede",
  1061. parents: ["pokemon", "insect"]
  1062. },
  1063. "jackalope": {
  1064. name: "Jackalope",
  1065. parents: ["rabbit", "antelope"]
  1066. },
  1067. "caracal": {
  1068. name: "Caracal",
  1069. parents: ["cat"]
  1070. },
  1071. "stoat": {
  1072. name: "Stoat",
  1073. parents: ["mammal"]
  1074. },
  1075. "african-golden-cat": {
  1076. name: "African Golden Cat",
  1077. parents: ["cat"]
  1078. },
  1079. "gigantosaurus": {
  1080. name: "Gigantosaurus",
  1081. parents: ["dinosaur"]
  1082. },
  1083. "zorgoia": {
  1084. name: "Zorgoia",
  1085. parents: ["mammal"]
  1086. },
  1087. "monitor-lizard": {
  1088. name: "Monitor Lizard",
  1089. parents: ["lizard"]
  1090. },
  1091. "ziralkia": {
  1092. name: "Ziralkia",
  1093. parents: ["mammal"]
  1094. },
  1095. "kiiasi": {
  1096. name: "Kiiasi",
  1097. parents: ["animal"]
  1098. },
  1099. "synx": {
  1100. name: "Synx",
  1101. parents: ["monster"]
  1102. },
  1103. "panther": {
  1104. name: "Panther",
  1105. parents: ["cat"]
  1106. },
  1107. "azumarill": {
  1108. name: "Azumarill",
  1109. parents: ["pokemon"]
  1110. },
  1111. "river-snaptail": {
  1112. name: "River Snaptail",
  1113. parents: ["otter", "crocodile"]
  1114. },
  1115. "great-blue-heron": {
  1116. name: "Great Blue Heron",
  1117. parents: ["avian"]
  1118. },
  1119. "smeargle": {
  1120. name: "Smeargle",
  1121. parents: ["pokemon"]
  1122. },
  1123. "vendeilen": {
  1124. name: "Vendeilen",
  1125. parents: ["monster"]
  1126. },
  1127. "ventura": {
  1128. name: "Ventura",
  1129. parents: ["canine"]
  1130. },
  1131. "clouded-leopard": {
  1132. name: "Clouded Leopard",
  1133. parents: ["leopard"]
  1134. },
  1135. "argonian": {
  1136. name: "Argonian",
  1137. parents: ["lizard"]
  1138. },
  1139. "salazzle": {
  1140. name: "Salazzle",
  1141. parents: ["pokemon", "lizard"]
  1142. },
  1143. "je-stoff-drachen": {
  1144. name: "Je-Stoff Drachen",
  1145. parents: ["dragon"]
  1146. },
  1147. "finnish-spitz-dog": {
  1148. name: "Finnish Spitz Dog",
  1149. parents: ["dog"]
  1150. },
  1151. "gray-fox": {
  1152. name: "Gray Fox",
  1153. parents: ["fox"]
  1154. },
  1155. "opossum": {
  1156. name: "Opossum",
  1157. parents: ["mammal"]
  1158. },
  1159. "antelope": {
  1160. name: "Antelope",
  1161. parents: ["mammal"]
  1162. },
  1163. "weavile": {
  1164. name: "Weavile",
  1165. parents: ["pokemon"]
  1166. },
  1167. "pikachu": {
  1168. name: "Pikachu",
  1169. parents: ["pokemon", "mouse"]
  1170. },
  1171. "grovyle": {
  1172. name: "Grovyle",
  1173. parents: ["pokemon", "plant"]
  1174. },
  1175. "sthara": {
  1176. name: "Sthara",
  1177. parents: ["snow-leopard", "reptile"]
  1178. },
  1179. "star-warrior": {
  1180. name: "Star Warrior",
  1181. parents: ["magical"]
  1182. },
  1183. "dragonoid": {
  1184. name: "Dragonoid",
  1185. parents: ["dragon"]
  1186. },
  1187. "suicune": {
  1188. name: "Suicune",
  1189. parents: ["pokemon"]
  1190. },
  1191. "vole": {
  1192. name: "Vole",
  1193. parents: ["mammal"]
  1194. },
  1195. "blaziken": {
  1196. name: "Blaziken",
  1197. parents: ["pokemon", "avian"]
  1198. },
  1199. "buizel": {
  1200. name: "Buizel",
  1201. parents: ["pokemon", "fish"]
  1202. },
  1203. "floatzel": {
  1204. name: "Floatzel",
  1205. parents: ["pokemon", "fish"]
  1206. },
  1207. "umok": {
  1208. name: "Umok",
  1209. parents: ["avian"]
  1210. },
  1211. "sea-monster": {
  1212. name: "Sea Monster",
  1213. parents: ["monster", "fish"]
  1214. },
  1215. "egyptian-vulture": {
  1216. name: "Egyptian Vulture",
  1217. parents: ["avian"]
  1218. },
  1219. "doberman": {
  1220. name: "Doberman",
  1221. parents: ["dog"]
  1222. },
  1223. "zangoose": {
  1224. name: "Zangoose",
  1225. parents: ["pokemon", "mongoose"]
  1226. },
  1227. "mongoose": {
  1228. name: "Mongoose",
  1229. parents: ["mammal"]
  1230. },
  1231. "wickerbeast": {
  1232. name: "Wickerbeast",
  1233. parents: ["monster"]
  1234. },
  1235. "zenari": {
  1236. name: "Zenari",
  1237. parents: ["lizard"]
  1238. },
  1239. "plant": {
  1240. name: "Plant",
  1241. parents: []
  1242. },
  1243. "raskatox": {
  1244. name: "Raskatox",
  1245. parents: ["raccoon", "skunk", "cat", "fox"]
  1246. },
  1247. "mikromare": {
  1248. name: "mikromare",
  1249. parents: ["alien"]
  1250. },
  1251. "alien": {
  1252. name: "Alien",
  1253. parents: ["animal"]
  1254. },
  1255. "deity": {
  1256. name: "Deity",
  1257. parents: []
  1258. },
  1259. "skarlan": {
  1260. name: "Skarlan",
  1261. parents: ["slug", "dragon"]
  1262. },
  1263. "slug": {
  1264. name: "Slug",
  1265. parents: ["mollusk"]
  1266. },
  1267. "mollusk": {
  1268. name: "Mollusk",
  1269. parents: ["animal"]
  1270. },
  1271. "chimera": {
  1272. name: "Chimera",
  1273. parents: ["monster"]
  1274. },
  1275. "gestalt": {
  1276. name: "Gestalt",
  1277. parents: ["construct"]
  1278. },
  1279. "mimic": {
  1280. name: "Mimic",
  1281. parents: ["monster"]
  1282. },
  1283. "calico-rat": {
  1284. name: "Calico Rat",
  1285. parents: ["rat"]
  1286. },
  1287. "panda": {
  1288. name: "Panda",
  1289. parents: ["mammal"]
  1290. },
  1291. "oni": {
  1292. name: "Oni",
  1293. parents: ["monster"]
  1294. },
  1295. "pegasus": {
  1296. name: "Pegasus",
  1297. parents: ["horse"]
  1298. },
  1299. "vulpera": {
  1300. name: "Vulpera",
  1301. parents: ["fennec-fox"]
  1302. },
  1303. "ceratosaurus": {
  1304. name: "Ceratosaurus",
  1305. parents: ["dinosaur"]
  1306. },
  1307. "nykur": {
  1308. name: "Nykur",
  1309. parents: ["horse", "monster"]
  1310. },
  1311. "giraffe": {
  1312. name: "Giraffe",
  1313. parents: ["mammal"]
  1314. },
  1315. "tauren": {
  1316. name: "Tauren",
  1317. parents: ["cow"]
  1318. },
  1319. "draconi": {
  1320. name: "Draconi",
  1321. parents: ["alien", "cat", "cyborg"]
  1322. },
  1323. "dire-wolf": {
  1324. name: "Dire Wolf",
  1325. parents: ["wolf"]
  1326. },
  1327. "ferromorph": {
  1328. name: "Ferromorph",
  1329. parents: ["construct"]
  1330. },
  1331. "meowth": {
  1332. name: "Meowth",
  1333. parents: ["cat", "pokemon"]
  1334. },
  1335. "pavodragon": {
  1336. name: "Pavodragon",
  1337. parents: ["dragon"]
  1338. },
  1339. "aaltranae": {
  1340. name: "Aaltranae",
  1341. parents: ["dragon"]
  1342. },
  1343. "cyborg": {
  1344. name: "Cyborg",
  1345. parents: ["machine"]
  1346. },
  1347. "draptor": {
  1348. name: "Draptor",
  1349. parents: ["dragon"]
  1350. },
  1351. "candy": {
  1352. name: "Candy",
  1353. parents: []
  1354. },
  1355. "drenath": {
  1356. name: "Drenath",
  1357. parents: ["dragon", "snake", "rabbit"]
  1358. },
  1359. "coyju": {
  1360. name: "Coyju",
  1361. parents: ["coyote", "kaiju"]
  1362. },
  1363. "kaiju": {
  1364. name: "Kaiju",
  1365. parents: ["monster"]
  1366. },
  1367. "nickit": {
  1368. name: "Nickit",
  1369. parents: ["pokemon", "cat"]
  1370. },
  1371. "lopunny": {
  1372. name: "Lopunny",
  1373. parents: ["pokemon", "rabbit"]
  1374. },
  1375. "korean-jindo-dog": {
  1376. name: "Korean Jindo Dog",
  1377. parents: ["dog"]
  1378. },
  1379. "naga": {
  1380. name: "Naga",
  1381. parents: ["snake", "monster"]
  1382. },
  1383. "undead": {
  1384. name: "Undead",
  1385. parents: ["monster"]
  1386. },
  1387. "whale": {
  1388. name: "Whale",
  1389. parents: ["fish"]
  1390. },
  1391. "gelato-bee": {
  1392. name: "Gelato Bee",
  1393. parents: ["bee"]
  1394. },
  1395. "bee": {
  1396. name: "Bee",
  1397. parents: ["insect"]
  1398. },
  1399. "gardevoir": {
  1400. name: "Gardevoir",
  1401. parents: ["pokemon"]
  1402. },
  1403. "ant": {
  1404. name: "Ant",
  1405. parents: ["insect"]
  1406. },
  1407. "frog": {
  1408. name: "Frog",
  1409. parents: ["amphibian"]
  1410. },
  1411. "amphibian": {
  1412. name: "Amphibian",
  1413. parents: ["animal"]
  1414. },
  1415. "pangolin": {
  1416. name: "Pangolin",
  1417. parents: ["mammal"]
  1418. },
  1419. "uragi'viidorn": {
  1420. name: "Uragi'viidorn",
  1421. parents: ["avian", "bear"]
  1422. },
  1423. "gryphdelphais": {
  1424. name: "Gryphdelphais",
  1425. parents: ["dolphin", "gryphon"]
  1426. },
  1427. "plush": {
  1428. name: "Plush",
  1429. parents: ["construct"]
  1430. },
  1431. "draiger": {
  1432. name: "Draiger",
  1433. parents: ["dragon","tiger"]
  1434. },
  1435. "foxsky": {
  1436. name: "Foxsky",
  1437. parents: ["fox", "husky"]
  1438. },
  1439. "umbreon": {
  1440. name: "Umbreon",
  1441. parents: ["eeveelution"]
  1442. },
  1443. "slime-dragon": {
  1444. name: "Slime Dragon",
  1445. parents: ["dragon", "goo"]
  1446. },
  1447. "enderman": {
  1448. name: "Enderman",
  1449. parents: ["monster"]
  1450. },
  1451. "gremlin": {
  1452. name: "Gremlin",
  1453. parents: ["monster"]
  1454. },
  1455. "dragonsune": {
  1456. name: "Dragonsune",
  1457. parents: ["dragon", "kitsune"]
  1458. },
  1459. "ghost": {
  1460. name: "Ghost",
  1461. parents: ["supernatural"]
  1462. },
  1463. "false-vampire-bat": {
  1464. name: "False Vampire Bat",
  1465. parents: ["bat"]
  1466. },
  1467. "succubus": {
  1468. name: "Succubus",
  1469. parents: ["demon"]
  1470. },
  1471. "mia": {
  1472. name: "Mia",
  1473. parents: ["canine"]
  1474. },
  1475. "rainbow": {
  1476. name: "Rainbow",
  1477. parents: ["monster"]
  1478. },
  1479. "solgaleo": {
  1480. name: "Solgaleo",
  1481. parents: ["pokemon"]
  1482. },
  1483. "lucent-nargacuga": {
  1484. name: "Lucent Nargacuga",
  1485. parents: ["monster-hunter"]
  1486. },
  1487. "monster-hunter": {
  1488. name: "Monster Hunter",
  1489. parents: ["monster"]
  1490. },
  1491. "leviathan": {
  1492. "name": "Leviathan",
  1493. "url": "sea-monster"
  1494. },
  1495. "bull": {
  1496. name: "Bull",
  1497. parents: ["mammal"]
  1498. },
  1499. "tanuki": {
  1500. name: "Tanuki",
  1501. parents: ["monster"]
  1502. },
  1503. "chakat": {
  1504. name: "Chakat",
  1505. parents: ["cat"]
  1506. },
  1507. "hydra": {
  1508. name: "Hydra",
  1509. parents: ["monster"]
  1510. },
  1511. "zigzagoon": {
  1512. name: "Zigzagoon",
  1513. parents: ["raccoon", "pokemon"]
  1514. },
  1515. "vulture": {
  1516. name: "Vulture",
  1517. parents: ["avian"]
  1518. },
  1519. "eastern-dragon": {
  1520. name: "Eastern Dragon",
  1521. parents: ["dragon"]
  1522. },
  1523. "gryffon": {
  1524. name: "Gryffon",
  1525. parents: ["phoenix", "red-panda"]
  1526. },
  1527. "amtsvane": {
  1528. name: "Amtsvane",
  1529. parents: ["reptile"]
  1530. },
  1531. "kigavi": {
  1532. name: "Kigavi",
  1533. parents: ["avian"]
  1534. },
  1535. "turian": {
  1536. name: "Turian",
  1537. parents: ["avian"]
  1538. },
  1539. "zeraora": {
  1540. name: "Zeraora",
  1541. parents: ["pokemon"]
  1542. },
  1543. "sandshrew": {
  1544. name: "Sandshrew",
  1545. parents: ["pokemon", "pangolin"]
  1546. },
  1547. "valais-blacknose-sheep": {
  1548. name: "Valais Blacknose Sheep",
  1549. parents: ["sheep"]
  1550. },
  1551. "novaleit": {
  1552. name: "Novaleit",
  1553. parents: ["mammal"]
  1554. },
  1555. "dunnoh": {
  1556. name: "Dunnoh",
  1557. parents: ["mammal"]
  1558. },
  1559. "lunaral-dragon": {
  1560. name: "Lunaral Dragon",
  1561. parents: ["dragon"]
  1562. },
  1563. "arctic-wolf": {
  1564. name: "Arctic Wolf",
  1565. parents: ["wolf"]
  1566. },
  1567. "donkey": {
  1568. name: "Donkey",
  1569. parents: ["horse"]
  1570. },
  1571. "chinchilla": {
  1572. name: "Chinchilla",
  1573. parents: ["rodent"]
  1574. },
  1575. "felkin": {
  1576. name: "Felkin",
  1577. parents: ["dragon"]
  1578. },
  1579. "tykeriel": {
  1580. name: "Tykeriel",
  1581. parents: ["avian"]
  1582. },
  1583. "folf": {
  1584. name: "Folf",
  1585. parents: ["fox", "wolf"]
  1586. },
  1587. "pooltoy": {
  1588. name: "Pooltoy",
  1589. parents: ["construct"]
  1590. },
  1591. "demi": {
  1592. name: "Demi",
  1593. parents: ["human"]
  1594. },
  1595. "stegosaurus": {
  1596. name: "Stegosaurus",
  1597. parents: ["dinosaur"]
  1598. },
  1599. "computer-virus": {
  1600. name: "Computer Virus",
  1601. parents: ["program"]
  1602. },
  1603. "program": {
  1604. name: "Program",
  1605. parents: ["construct"]
  1606. },
  1607. "space-springhare": {
  1608. name: "Space Springhare",
  1609. parents: ["rabbit"]
  1610. },
  1611. "river-drake": {
  1612. name: "River Drake",
  1613. parents: ["dragon"]
  1614. },
  1615. "djinn": {
  1616. "name": "Djinn",
  1617. "url": "supernatural"
  1618. },
  1619. "supernatural": {
  1620. name: "Supernatural",
  1621. parents: ["monster"]
  1622. },
  1623. "grasshopper-mouse": {
  1624. name: "Grasshopper Mouse",
  1625. parents: ["mouse"]
  1626. },
  1627. "somali-cat": {
  1628. name: "Somali Cat",
  1629. parents: ["cat"]
  1630. },
  1631. "minccino": {
  1632. name: "Minccino",
  1633. parents: ["pokemon", "chinchilla"]
  1634. },
  1635. "pine-marten": {
  1636. name: "Pine Marten",
  1637. parents: ["marten"]
  1638. },
  1639. "marten": {
  1640. name: "Marten",
  1641. parents: ["mustelid"]
  1642. },
  1643. "mustelid": {
  1644. name: "Mustelid",
  1645. parents: ["mammal"]
  1646. },
  1647. "caribou": {
  1648. name: "Caribou",
  1649. parents: ["deer"]
  1650. },
  1651. "gnoll": {
  1652. name: "Gnoll",
  1653. parents: ["hyena", "monster"]
  1654. },
  1655. "peacekeeper": {
  1656. name: "Peacekeeper",
  1657. parents: ["human"]
  1658. },
  1659. "river-otter": {
  1660. name: "River Otter",
  1661. parents: ["otter"]
  1662. },
  1663. "dhole": {
  1664. name: "Dhole",
  1665. parents: ["canine"]
  1666. },
  1667. "springbok": {
  1668. name: "Springbok",
  1669. parents: ["antelope"]
  1670. },
  1671. "marsupial": {
  1672. name: "Marsupial",
  1673. parents: ["mammal"]
  1674. },
  1675. "townsend-big-eared-bat": {
  1676. name: "Townsend Big-eared Bat",
  1677. parents: ["bat"]
  1678. },
  1679. "squirrel": {
  1680. name: "Squirrel",
  1681. parents: ["rodent"]
  1682. },
  1683. "magpie": {
  1684. name: "Magpie",
  1685. parents: ["corvid"]
  1686. },
  1687. "civet": {
  1688. name: "Civet",
  1689. parents: ["feliform"]
  1690. },
  1691. "feliform": {
  1692. name: "Feliform",
  1693. parents: ["mammal"]
  1694. },
  1695. "tiefling": {
  1696. name: "Tiefling",
  1697. parents: ["devil"]
  1698. },
  1699. "devil": {
  1700. name: "Devil",
  1701. parents: ["supernatural"]
  1702. },
  1703. "sika-deer": {
  1704. name: "Sika Deer",
  1705. parents: ["deer"]
  1706. },
  1707. "vaporeon": {
  1708. name: "Vaporeon",
  1709. parents: ["eeveelution"]
  1710. },
  1711. "leafeon": {
  1712. name: "Leafeon",
  1713. parents: ["eeveelution"]
  1714. },
  1715. "jolteon": {
  1716. name: "Jolteon",
  1717. parents: ["eeveelution"]
  1718. },
  1719. "spireborn": {
  1720. name: "Spireborn",
  1721. parents: ["zorgoia"]
  1722. },
  1723. "vampire": {
  1724. name: "Vampire",
  1725. parents: ["monster"]
  1726. },
  1727. "extraplanar": {
  1728. name: "Extraplanar",
  1729. parents: []
  1730. },
  1731. "goo": {
  1732. name: "Goo",
  1733. parents: []
  1734. },
  1735. "skink": {
  1736. name: "Skink",
  1737. parents: ["lizard"]
  1738. },
  1739. "bat-eared-fox": {
  1740. name: "Bat-eared Fox",
  1741. parents: ["fox"]
  1742. },
  1743. "belted-kingfisher": {
  1744. name: "Belted Kingfisher",
  1745. parents: ["avian"]
  1746. },
  1747. "omnifalcon": {
  1748. name: "Omnifalcon",
  1749. parents: ["gryphon", "falcon", "harpy-eagle"]
  1750. },
  1751. "falcon": {
  1752. name: "Falcon",
  1753. parents: ["avian"]
  1754. },
  1755. "avali": {
  1756. name: "Avali",
  1757. parents: ["avian", "alien"]
  1758. },
  1759. "arctic-fox": {
  1760. name: "Arctic Fox",
  1761. parents: ["fox"]
  1762. },
  1763. "snow-tiger": {
  1764. name: "Snow Tiger",
  1765. parents: ["tiger"]
  1766. },
  1767. "marble-fox": {
  1768. name: "Marble Fox",
  1769. parents: ["fox"]
  1770. },
  1771. "king-wickerbeast": {
  1772. name: "King Wickerbeast",
  1773. parents: ["wickerbeast"]
  1774. },
  1775. "wickerbeast": {
  1776. name: "Wickerbeast",
  1777. parents: ["mammal"]
  1778. },
  1779. "european-polecat": {
  1780. name: "European Polecat",
  1781. parents: ["mustelid"]
  1782. },
  1783. "teshari": {
  1784. name: "Teshari",
  1785. parents: ["avian", "raptor"]
  1786. },
  1787. "alicorn": {
  1788. name: "Alicorn",
  1789. parents: ["horse"]
  1790. },
  1791. "atlas-moth": {
  1792. name: "Atlas Moth",
  1793. parents: ["moth"]
  1794. },
  1795. "owlbear": {
  1796. name: "Owlbear",
  1797. parents: ["owl", "bear", "monster"]
  1798. },
  1799. "owl": {
  1800. name: "Owl",
  1801. parents: ["avian"]
  1802. },
  1803. "silvertongue": {
  1804. name: "Silvertongue",
  1805. parents: ["reptile"]
  1806. },
  1807. "ahuizotl": {
  1808. name: "Ahuizotl",
  1809. parents: ["monster"]
  1810. },
  1811. "ender-dragon": {
  1812. name: "Ender Dragon",
  1813. parents: ["dragon"]
  1814. },
  1815. "bruhathkayosaurus": {
  1816. name: "Bruhathkayosaurus",
  1817. parents: ["sauropod"]
  1818. },
  1819. "sauropod": {
  1820. name: "Sauropod",
  1821. parents: ["dinosaur"]
  1822. },
  1823. "black-sable-antelope": {
  1824. name: "Black Sable Antelope",
  1825. parents: ["antelope"]
  1826. },
  1827. "slime": {
  1828. name: "Slime",
  1829. parents: ["goo"]
  1830. },
  1831. }
  1832. //species
  1833. function getSpeciesInfo(speciesList) {
  1834. let result = new Set();
  1835. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1836. result.add(entry)
  1837. });
  1838. return Array.from(result);
  1839. };
  1840. function getSpeciesInfoHelper(species) {
  1841. if (!speciesData[species]) {
  1842. console.warn(species + " doesn't exist");
  1843. return [];
  1844. }
  1845. if (speciesData[species].parents) {
  1846. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1847. } else {
  1848. return [species];
  1849. }
  1850. }
  1851. characterMakers.push(() => makeCharacter(
  1852. {
  1853. name: "Fen",
  1854. species: ["crux"],
  1855. description: {
  1856. title: "Bio",
  1857. text: "Very furry. Sheds on everything."
  1858. },
  1859. tags: [
  1860. "anthro",
  1861. "goo"
  1862. ]
  1863. },
  1864. {
  1865. front: {
  1866. height: math.unit(12, "feet"),
  1867. weight: math.unit(1600, "lb"),
  1868. name: "Front",
  1869. image: {
  1870. source: "./media/characters/fen/front.svg",
  1871. extra: 1804/1562,
  1872. bottom: 205/2009
  1873. }
  1874. },
  1875. diving: {
  1876. height: math.unit(4.9, "meters"),
  1877. weight: math.unit(1600, "lb"),
  1878. name: "Diving",
  1879. image: {
  1880. source: "./media/characters/fen/diving.svg"
  1881. }
  1882. },
  1883. goo: {
  1884. height: math.unit(12, "feet"),
  1885. weight: math.unit(1600, "lb"),
  1886. capacity: math.unit(6, "people"),
  1887. name: "Goo",
  1888. image: {
  1889. source: "./media/characters/fen/goo.svg",
  1890. extra: 1307/1071,
  1891. bottom: 134/1441
  1892. }
  1893. },
  1894. maw: {
  1895. height: math.unit(5.03, "feet"),
  1896. name: "Maw",
  1897. image: {
  1898. source: "./media/characters/fen/maw.svg"
  1899. }
  1900. },
  1901. gooCeiling: {
  1902. height: math.unit(6.6, "feet"),
  1903. weight: math.unit(1600, "lb"),
  1904. capacity: math.unit(6, "people"),
  1905. name: "Goo (Ceiling)",
  1906. image: {
  1907. source: "./media/characters/fen/goo-ceiling.svg"
  1908. }
  1909. },
  1910. back: {
  1911. height: math.unit(12, "feet"),
  1912. weight: math.unit(1600, "lb"),
  1913. name: "Back",
  1914. image: {
  1915. source: "./media/characters/fen/back.svg",
  1916. },
  1917. info: {
  1918. description: {
  1919. mode: "append",
  1920. text: "\n\nHe is not currently looking at you."
  1921. }
  1922. }
  1923. },
  1924. full: {
  1925. height: math.unit(1.6, "meter"),
  1926. weight: math.unit(2200, "lb"),
  1927. name: "Full",
  1928. image: {
  1929. source: "./media/characters/fen/full.svg",
  1930. extra: 1133/859,
  1931. bottom: 145/1278
  1932. },
  1933. info: {
  1934. description: {
  1935. mode: "append",
  1936. text: "\n\nMunch."
  1937. }
  1938. }
  1939. },
  1940. gooLounging: {
  1941. height: math.unit(4.53, "feet"),
  1942. weight: math.unit(1600, "lb"),
  1943. capacity: math.unit(6, "people"),
  1944. name: "Goo (Lounging)",
  1945. image: {
  1946. source: "./media/characters/fen/goo.svg",
  1947. bottom: 116 / 613
  1948. }
  1949. },
  1950. lounging: {
  1951. height: math.unit(10.52, "feet"),
  1952. weight: math.unit(1600, "lb"),
  1953. name: "Lounging",
  1954. image: {
  1955. source: "./media/characters/fen/lounging.svg"
  1956. }
  1957. },
  1958. },
  1959. [
  1960. {
  1961. name: "Small",
  1962. height: math.unit(2.2428, "meter")
  1963. },
  1964. {
  1965. name: "Normal",
  1966. height: math.unit(12, "feet"),
  1967. default: true,
  1968. },
  1969. {
  1970. name: "Big",
  1971. height: math.unit(20, "feet")
  1972. },
  1973. {
  1974. name: "Minimacro",
  1975. height: math.unit(40, "feet"),
  1976. info: {
  1977. description: {
  1978. mode: "append",
  1979. text: "\n\nTOO DAMN BIG"
  1980. }
  1981. }
  1982. },
  1983. {
  1984. name: "Macro",
  1985. height: math.unit(100, "feet"),
  1986. info: {
  1987. description: {
  1988. mode: "append",
  1989. text: "\n\nTOO DAMN BIG"
  1990. }
  1991. }
  1992. },
  1993. {
  1994. name: "Megamacro",
  1995. height: math.unit(2, "miles")
  1996. },
  1997. {
  1998. name: "Gigamacro",
  1999. height: math.unit(10, "earths")
  2000. },
  2001. ]
  2002. ))
  2003. characterMakers.push(() => makeCharacter(
  2004. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2005. {
  2006. front: {
  2007. height: math.unit(183, "cm"),
  2008. weight: math.unit(80, "kg"),
  2009. name: "Front",
  2010. image: {
  2011. source: "./media/characters/sofia-fluttertail/front.svg",
  2012. bottom: 0.01,
  2013. extra: 2154 / 2081
  2014. }
  2015. },
  2016. frontAlt: {
  2017. height: math.unit(183, "cm"),
  2018. weight: math.unit(80, "kg"),
  2019. name: "Front (alt)",
  2020. image: {
  2021. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2022. }
  2023. },
  2024. back: {
  2025. height: math.unit(183, "cm"),
  2026. weight: math.unit(80, "kg"),
  2027. name: "Back",
  2028. image: {
  2029. source: "./media/characters/sofia-fluttertail/back.svg"
  2030. }
  2031. },
  2032. kneeling: {
  2033. height: math.unit(125, "cm"),
  2034. weight: math.unit(80, "kg"),
  2035. name: "Kneeling",
  2036. image: {
  2037. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2038. extra: 1033 / 977,
  2039. bottom: 23.7 / 1057
  2040. }
  2041. },
  2042. maw: {
  2043. height: math.unit(183 / 5, "cm"),
  2044. name: "Maw",
  2045. image: {
  2046. source: "./media/characters/sofia-fluttertail/maw.svg"
  2047. }
  2048. },
  2049. mawcloseup: {
  2050. height: math.unit(183 / 5 * 0.41, "cm"),
  2051. name: "Maw (Closeup)",
  2052. image: {
  2053. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2054. }
  2055. },
  2056. paws: {
  2057. height: math.unit(1.17, "feet"),
  2058. name: "Paws",
  2059. image: {
  2060. source: "./media/characters/sofia-fluttertail/paws.svg",
  2061. extra: 851 / 851,
  2062. bottom: 17 / 868
  2063. }
  2064. },
  2065. },
  2066. [
  2067. {
  2068. name: "Normal",
  2069. height: math.unit(1.83, "meter")
  2070. },
  2071. {
  2072. name: "Size Thief",
  2073. height: math.unit(18, "feet")
  2074. },
  2075. {
  2076. name: "50 Foot Collie",
  2077. height: math.unit(50, "feet")
  2078. },
  2079. {
  2080. name: "Macro",
  2081. height: math.unit(96, "feet"),
  2082. default: true
  2083. },
  2084. {
  2085. name: "Megamerger",
  2086. height: math.unit(650, "feet")
  2087. },
  2088. ]
  2089. ))
  2090. characterMakers.push(() => makeCharacter(
  2091. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2092. {
  2093. front: {
  2094. height: math.unit(7, "feet"),
  2095. weight: math.unit(100, "kg"),
  2096. name: "Front",
  2097. image: {
  2098. source: "./media/characters/march/front.svg",
  2099. extra: 1992/1851,
  2100. bottom: 39/2031
  2101. }
  2102. },
  2103. foot: {
  2104. height: math.unit(0.9, "feet"),
  2105. name: "Foot",
  2106. image: {
  2107. source: "./media/characters/march/foot.svg"
  2108. }
  2109. },
  2110. },
  2111. [
  2112. {
  2113. name: "Normal",
  2114. height: math.unit(7.9, "feet")
  2115. },
  2116. {
  2117. name: "Macro",
  2118. height: math.unit(220, "meters")
  2119. },
  2120. {
  2121. name: "Megamacro",
  2122. height: math.unit(2.98, "km"),
  2123. default: true
  2124. },
  2125. {
  2126. name: "Gigamacro",
  2127. height: math.unit(15963, "km")
  2128. },
  2129. {
  2130. name: "Teramacro",
  2131. height: math.unit(2980000000, "km")
  2132. },
  2133. {
  2134. name: "Examacro",
  2135. height: math.unit(250, "parsecs")
  2136. },
  2137. ]
  2138. ))
  2139. characterMakers.push(() => makeCharacter(
  2140. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2141. {
  2142. front: {
  2143. height: math.unit(6, "feet"),
  2144. weight: math.unit(60, "kg"),
  2145. name: "Front",
  2146. image: {
  2147. source: "./media/characters/noir/front.svg",
  2148. extra: 1,
  2149. bottom: 0.032
  2150. }
  2151. },
  2152. },
  2153. [
  2154. {
  2155. name: "Normal",
  2156. height: math.unit(6.6, "feet")
  2157. },
  2158. {
  2159. name: "Macro",
  2160. height: math.unit(500, "feet")
  2161. },
  2162. {
  2163. name: "Megamacro",
  2164. height: math.unit(2.5, "km"),
  2165. default: true
  2166. },
  2167. {
  2168. name: "Gigamacro",
  2169. height: math.unit(22500, "km")
  2170. },
  2171. {
  2172. name: "Teramacro",
  2173. height: math.unit(2500000000, "km")
  2174. },
  2175. {
  2176. name: "Examacro",
  2177. height: math.unit(200, "parsecs")
  2178. },
  2179. ]
  2180. ))
  2181. characterMakers.push(() => makeCharacter(
  2182. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2183. {
  2184. front: {
  2185. height: math.unit(7, "feet"),
  2186. weight: math.unit(100, "kg"),
  2187. name: "Front",
  2188. image: {
  2189. source: "./media/characters/okuri/front.svg",
  2190. extra: 1,
  2191. bottom: 0.037
  2192. }
  2193. },
  2194. back: {
  2195. height: math.unit(7, "feet"),
  2196. weight: math.unit(100, "kg"),
  2197. name: "Back",
  2198. image: {
  2199. source: "./media/characters/okuri/back.svg",
  2200. extra: 1,
  2201. bottom: 0.007
  2202. }
  2203. },
  2204. },
  2205. [
  2206. {
  2207. name: "Megamacro",
  2208. height: math.unit(100, "miles"),
  2209. default: true
  2210. },
  2211. ]
  2212. ))
  2213. characterMakers.push(() => makeCharacter(
  2214. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2215. {
  2216. front: {
  2217. height: math.unit(7, "feet"),
  2218. weight: math.unit(100, "kg"),
  2219. name: "Front",
  2220. image: {
  2221. source: "./media/characters/manny/front.svg",
  2222. extra: 1,
  2223. bottom: 0.06
  2224. }
  2225. },
  2226. back: {
  2227. height: math.unit(7, "feet"),
  2228. weight: math.unit(100, "kg"),
  2229. name: "Back",
  2230. image: {
  2231. source: "./media/characters/manny/back.svg",
  2232. extra: 1,
  2233. bottom: 0.014
  2234. }
  2235. },
  2236. },
  2237. [
  2238. {
  2239. name: "Normal",
  2240. height: math.unit(7, "feet"),
  2241. },
  2242. {
  2243. name: "Macro",
  2244. height: math.unit(78, "feet"),
  2245. default: true
  2246. },
  2247. {
  2248. name: "Macro+",
  2249. height: math.unit(300, "meters")
  2250. },
  2251. {
  2252. name: "Macro++",
  2253. height: math.unit(2400, "meters")
  2254. },
  2255. {
  2256. name: "Megamacro",
  2257. height: math.unit(5167, "meters")
  2258. },
  2259. {
  2260. name: "Gigamacro",
  2261. height: math.unit(41769, "miles")
  2262. },
  2263. ]
  2264. ))
  2265. characterMakers.push(() => makeCharacter(
  2266. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2267. {
  2268. front: {
  2269. height: math.unit(7, "feet"),
  2270. weight: math.unit(100, "kg"),
  2271. name: "Front",
  2272. image: {
  2273. source: "./media/characters/adake/front-1.svg"
  2274. }
  2275. },
  2276. frontAlt: {
  2277. height: math.unit(7, "feet"),
  2278. weight: math.unit(100, "kg"),
  2279. name: "Front (Alt)",
  2280. image: {
  2281. source: "./media/characters/adake/front-2.svg",
  2282. extra: 1,
  2283. bottom: 0.01
  2284. }
  2285. },
  2286. back: {
  2287. height: math.unit(7, "feet"),
  2288. weight: math.unit(100, "kg"),
  2289. name: "Back",
  2290. image: {
  2291. source: "./media/characters/adake/back.svg",
  2292. }
  2293. },
  2294. kneel: {
  2295. height: math.unit(5.385, "feet"),
  2296. weight: math.unit(100, "kg"),
  2297. name: "Kneeling",
  2298. image: {
  2299. source: "./media/characters/adake/kneel.svg",
  2300. bottom: 0.052
  2301. }
  2302. },
  2303. },
  2304. [
  2305. {
  2306. name: "Normal",
  2307. height: math.unit(7, "feet"),
  2308. },
  2309. {
  2310. name: "Macro",
  2311. height: math.unit(78, "feet"),
  2312. default: true
  2313. },
  2314. {
  2315. name: "Macro+",
  2316. height: math.unit(300, "meters")
  2317. },
  2318. {
  2319. name: "Macro++",
  2320. height: math.unit(2400, "meters")
  2321. },
  2322. {
  2323. name: "Megamacro",
  2324. height: math.unit(5167, "meters")
  2325. },
  2326. {
  2327. name: "Gigamacro",
  2328. height: math.unit(41769, "miles")
  2329. },
  2330. ]
  2331. ))
  2332. characterMakers.push(() => makeCharacter(
  2333. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2334. {
  2335. front: {
  2336. height: math.unit(1.65, "meters"),
  2337. weight: math.unit(50, "kg"),
  2338. name: "Front",
  2339. image: {
  2340. source: "./media/characters/elijah/front.svg",
  2341. extra: 858 / 830,
  2342. bottom: 95.5 / 953.8559
  2343. }
  2344. },
  2345. back: {
  2346. height: math.unit(1.65, "meters"),
  2347. weight: math.unit(50, "kg"),
  2348. name: "Back",
  2349. image: {
  2350. source: "./media/characters/elijah/back.svg",
  2351. extra: 895 / 850,
  2352. bottom: 5.3 / 897.956
  2353. }
  2354. },
  2355. frontNsfw: {
  2356. height: math.unit(1.65, "meters"),
  2357. weight: math.unit(50, "kg"),
  2358. name: "Front (NSFW)",
  2359. image: {
  2360. source: "./media/characters/elijah/front-nsfw.svg",
  2361. extra: 858 / 830,
  2362. bottom: 95.5 / 953.8559
  2363. }
  2364. },
  2365. backNsfw: {
  2366. height: math.unit(1.65, "meters"),
  2367. weight: math.unit(50, "kg"),
  2368. name: "Back (NSFW)",
  2369. image: {
  2370. source: "./media/characters/elijah/back-nsfw.svg",
  2371. extra: 895 / 850,
  2372. bottom: 5.3 / 897.956
  2373. }
  2374. },
  2375. dick: {
  2376. height: math.unit(1, "feet"),
  2377. name: "Dick",
  2378. image: {
  2379. source: "./media/characters/elijah/dick.svg"
  2380. }
  2381. },
  2382. beakOpen: {
  2383. height: math.unit(1.25, "feet"),
  2384. name: "Beak (Open)",
  2385. image: {
  2386. source: "./media/characters/elijah/beak-open.svg"
  2387. }
  2388. },
  2389. beakShut: {
  2390. height: math.unit(1.25, "feet"),
  2391. name: "Beak (Shut)",
  2392. image: {
  2393. source: "./media/characters/elijah/beak-shut.svg"
  2394. }
  2395. },
  2396. footFlexing: {
  2397. height: math.unit(1.61, "feet"),
  2398. name: "Foot (Flexing)",
  2399. image: {
  2400. source: "./media/characters/elijah/foot-flexing.svg"
  2401. }
  2402. },
  2403. footStepping: {
  2404. height: math.unit(1.44, "feet"),
  2405. name: "Foot (Stepping)",
  2406. image: {
  2407. source: "./media/characters/elijah/foot-stepping.svg"
  2408. }
  2409. },
  2410. plantigradeLeg: {
  2411. height: math.unit(2.34, "feet"),
  2412. name: "Plantigrade Leg",
  2413. image: {
  2414. source: "./media/characters/elijah/plantigrade-leg.svg"
  2415. }
  2416. },
  2417. plantigradeFootLeft: {
  2418. height: math.unit(0.9, "feet"),
  2419. name: "Plantigrade Foot (Left)",
  2420. image: {
  2421. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2422. }
  2423. },
  2424. plantigradeFootRight: {
  2425. height: math.unit(0.9, "feet"),
  2426. name: "Plantigrade Foot (Right)",
  2427. image: {
  2428. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2429. }
  2430. },
  2431. },
  2432. [
  2433. {
  2434. name: "Normal",
  2435. height: math.unit(1.65, "meters")
  2436. },
  2437. {
  2438. name: "Macro",
  2439. height: math.unit(55, "meters"),
  2440. default: true
  2441. },
  2442. {
  2443. name: "Macro+",
  2444. height: math.unit(105, "meters")
  2445. },
  2446. ]
  2447. ))
  2448. characterMakers.push(() => makeCharacter(
  2449. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2450. {
  2451. front: {
  2452. height: math.unit(7 + 2/12, "feet"),
  2453. weight: math.unit(320, "kg"),
  2454. name: "Front",
  2455. image: {
  2456. source: "./media/characters/rai/front.svg",
  2457. extra: 1802/1696,
  2458. bottom: 68/1870
  2459. }
  2460. },
  2461. frontDressed: {
  2462. height: math.unit(7 + 2/12, "feet"),
  2463. weight: math.unit(320, "kg"),
  2464. name: "Front (Dressed)",
  2465. image: {
  2466. source: "./media/characters/rai/front-dressed.svg",
  2467. extra: 1802/1696,
  2468. bottom: 68/1870
  2469. }
  2470. },
  2471. side: {
  2472. height: math.unit(7 + 2/12, "feet"),
  2473. weight: math.unit(320, "kg"),
  2474. name: "Side",
  2475. image: {
  2476. source: "./media/characters/rai/side.svg",
  2477. extra: 1789/1710,
  2478. bottom: 115/1904
  2479. }
  2480. },
  2481. back: {
  2482. height: math.unit(7 + 2/12, "feet"),
  2483. weight: math.unit(320, "kg"),
  2484. name: "Back",
  2485. image: {
  2486. source: "./media/characters/rai/back.svg",
  2487. extra: 1770/1707,
  2488. bottom: 28/1798
  2489. }
  2490. },
  2491. feral: {
  2492. height: math.unit(9.5, "feet"),
  2493. weight: math.unit(640, "kg"),
  2494. name: "Feral",
  2495. image: {
  2496. source: "./media/characters/rai/feral.svg",
  2497. extra: 945/553,
  2498. bottom: 176/1121
  2499. }
  2500. },
  2501. dragon: {
  2502. height: math.unit(23, "feet"),
  2503. weight: math.unit(50000, "lb"),
  2504. name: "Dragon",
  2505. image: {
  2506. source: "./media/characters/rai/dragon.svg",
  2507. extra: 2498 / 2030,
  2508. bottom: 85.2 / 2584
  2509. }
  2510. },
  2511. maw: {
  2512. height: math.unit(1.69, "feet"),
  2513. name: "Maw",
  2514. image: {
  2515. source: "./media/characters/rai/maw.svg"
  2516. }
  2517. },
  2518. },
  2519. [
  2520. {
  2521. name: "Normal",
  2522. height: math.unit(7 + 2/12, "feet")
  2523. },
  2524. {
  2525. name: "Big",
  2526. height: math.unit(11, "feet")
  2527. },
  2528. {
  2529. name: "Macro",
  2530. height: math.unit(302, "feet"),
  2531. default: true
  2532. },
  2533. ]
  2534. ))
  2535. characterMakers.push(() => makeCharacter(
  2536. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2537. {
  2538. frontDressed: {
  2539. height: math.unit(216, "feet"),
  2540. weight: math.unit(7000000, "lb"),
  2541. name: "Front (Dressed)",
  2542. image: {
  2543. source: "./media/characters/jazzy/front-dressed.svg",
  2544. extra: 2738 / 2651,
  2545. bottom: 41.8 / 2786
  2546. }
  2547. },
  2548. backDressed: {
  2549. height: math.unit(216, "feet"),
  2550. weight: math.unit(7000000, "lb"),
  2551. name: "Back (Dressed)",
  2552. image: {
  2553. source: "./media/characters/jazzy/back-dressed.svg",
  2554. extra: 2775 / 2673,
  2555. bottom: 36.8 / 2817
  2556. }
  2557. },
  2558. front: {
  2559. height: math.unit(216, "feet"),
  2560. weight: math.unit(7000000, "lb"),
  2561. name: "Front",
  2562. image: {
  2563. source: "./media/characters/jazzy/front.svg",
  2564. extra: 2738 / 2651,
  2565. bottom: 41.8 / 2786
  2566. }
  2567. },
  2568. back: {
  2569. height: math.unit(216, "feet"),
  2570. weight: math.unit(7000000, "lb"),
  2571. name: "Back",
  2572. image: {
  2573. source: "./media/characters/jazzy/back.svg",
  2574. extra: 2775 / 2673,
  2575. bottom: 36.8 / 2817
  2576. }
  2577. },
  2578. maw: {
  2579. height: math.unit(20, "feet"),
  2580. name: "Maw",
  2581. image: {
  2582. source: "./media/characters/jazzy/maw.svg"
  2583. }
  2584. },
  2585. paws: {
  2586. height: math.unit(27.5, "feet"),
  2587. name: "Paws",
  2588. image: {
  2589. source: "./media/characters/jazzy/paws.svg"
  2590. }
  2591. },
  2592. eye: {
  2593. height: math.unit(4.4, "feet"),
  2594. name: "Eye",
  2595. image: {
  2596. source: "./media/characters/jazzy/eye.svg"
  2597. }
  2598. },
  2599. droneOffense: {
  2600. height: math.unit(9.5, "inches"),
  2601. name: "Drone (Offense)",
  2602. image: {
  2603. source: "./media/characters/jazzy/drone-offense.svg"
  2604. }
  2605. },
  2606. droneRecon: {
  2607. height: math.unit(9.5, "inches"),
  2608. name: "Drone (Recon)",
  2609. image: {
  2610. source: "./media/characters/jazzy/drone-recon.svg"
  2611. }
  2612. },
  2613. droneDefense: {
  2614. height: math.unit(9.5, "inches"),
  2615. name: "Drone (Defense)",
  2616. image: {
  2617. source: "./media/characters/jazzy/drone-defense.svg"
  2618. }
  2619. },
  2620. },
  2621. [
  2622. {
  2623. name: "Macro",
  2624. height: math.unit(216, "feet"),
  2625. default: true
  2626. },
  2627. ]
  2628. ))
  2629. characterMakers.push(() => makeCharacter(
  2630. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2631. {
  2632. front: {
  2633. height: math.unit(9 + 6/12, "feet"),
  2634. weight: math.unit(700, "lb"),
  2635. name: "Front",
  2636. image: {
  2637. source: "./media/characters/flamm/front.svg",
  2638. extra: 1751/1632,
  2639. bottom: 46/1797
  2640. }
  2641. },
  2642. buff: {
  2643. height: math.unit(9 + 6/12, "feet"),
  2644. weight: math.unit(950, "lb"),
  2645. name: "Buff",
  2646. image: {
  2647. source: "./media/characters/flamm/buff.svg",
  2648. extra: 3018/2874,
  2649. bottom: 221/3239
  2650. }
  2651. },
  2652. },
  2653. [
  2654. {
  2655. name: "Normal",
  2656. height: math.unit(9.5, "feet")
  2657. },
  2658. {
  2659. name: "Macro",
  2660. height: math.unit(200, "feet"),
  2661. default: true
  2662. },
  2663. ]
  2664. ))
  2665. characterMakers.push(() => makeCharacter(
  2666. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2667. {
  2668. front: {
  2669. height: math.unit(5 + 3/12, "feet"),
  2670. weight: math.unit(60, "kg"),
  2671. name: "Front",
  2672. image: {
  2673. source: "./media/characters/zephiro/front.svg",
  2674. extra: 2309 / 2162,
  2675. bottom: 0.069
  2676. }
  2677. },
  2678. side: {
  2679. height: math.unit(5 + 3/12, "feet"),
  2680. weight: math.unit(60, "kg"),
  2681. name: "Side",
  2682. image: {
  2683. source: "./media/characters/zephiro/side.svg",
  2684. extra: 2403 / 2279,
  2685. bottom: 0.015
  2686. }
  2687. },
  2688. back: {
  2689. height: math.unit(5 + 3/12, "feet"),
  2690. weight: math.unit(60, "kg"),
  2691. name: "Back",
  2692. image: {
  2693. source: "./media/characters/zephiro/back.svg",
  2694. extra: 2373 / 2244,
  2695. bottom: 0.013
  2696. }
  2697. },
  2698. hand: {
  2699. height: math.unit(0.68, "feet"),
  2700. name: "Hand",
  2701. image: {
  2702. source: "./media/characters/zephiro/hand.svg"
  2703. }
  2704. },
  2705. paw: {
  2706. height: math.unit(1, "feet"),
  2707. name: "Paw",
  2708. image: {
  2709. source: "./media/characters/zephiro/paw.svg"
  2710. }
  2711. },
  2712. beans: {
  2713. height: math.unit(0.93, "feet"),
  2714. name: "Beans",
  2715. image: {
  2716. source: "./media/characters/zephiro/beans.svg"
  2717. }
  2718. },
  2719. },
  2720. [
  2721. {
  2722. name: "Micro",
  2723. height: math.unit(3, "inches")
  2724. },
  2725. {
  2726. name: "Normal",
  2727. height: math.unit(5 + 3 / 12, "feet"),
  2728. default: true
  2729. },
  2730. {
  2731. name: "Macro",
  2732. height: math.unit(118, "feet")
  2733. },
  2734. ]
  2735. ))
  2736. characterMakers.push(() => makeCharacter(
  2737. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2738. {
  2739. front: {
  2740. height: math.unit(5, "feet"),
  2741. weight: math.unit(90, "kg"),
  2742. name: "Front",
  2743. image: {
  2744. source: "./media/characters/fory/front.svg",
  2745. extra: 2862 / 2674,
  2746. bottom: 180 / 3043.8
  2747. }
  2748. },
  2749. back: {
  2750. height: math.unit(5, "feet"),
  2751. weight: math.unit(90, "kg"),
  2752. name: "Back",
  2753. image: {
  2754. source: "./media/characters/fory/back.svg",
  2755. extra: 2962 / 2791,
  2756. bottom: 106 / 3071.8
  2757. }
  2758. },
  2759. foot: {
  2760. height: math.unit(2.14, "feet"),
  2761. name: "Foot",
  2762. image: {
  2763. source: "./media/characters/fory/foot.svg"
  2764. }
  2765. },
  2766. },
  2767. [
  2768. {
  2769. name: "Normal",
  2770. height: math.unit(5, "feet")
  2771. },
  2772. {
  2773. name: "Macro",
  2774. height: math.unit(50, "feet"),
  2775. default: true
  2776. },
  2777. {
  2778. name: "Megamacro",
  2779. height: math.unit(10, "miles")
  2780. },
  2781. {
  2782. name: "Gigamacro",
  2783. height: math.unit(5, "earths")
  2784. },
  2785. ]
  2786. ))
  2787. characterMakers.push(() => makeCharacter(
  2788. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2789. {
  2790. front: {
  2791. height: math.unit(7, "feet"),
  2792. weight: math.unit(90, "kg"),
  2793. name: "Front",
  2794. image: {
  2795. source: "./media/characters/kurrikage/front.svg",
  2796. extra: 1845/1733,
  2797. bottom: 119/1964
  2798. }
  2799. },
  2800. back: {
  2801. height: math.unit(7, "feet"),
  2802. weight: math.unit(90, "kg"),
  2803. name: "Back",
  2804. image: {
  2805. source: "./media/characters/kurrikage/back.svg",
  2806. extra: 1790/1677,
  2807. bottom: 61/1851
  2808. }
  2809. },
  2810. dressed: {
  2811. height: math.unit(7, "feet"),
  2812. weight: math.unit(90, "kg"),
  2813. name: "Dressed",
  2814. image: {
  2815. source: "./media/characters/kurrikage/dressed.svg",
  2816. extra: 1845/1733,
  2817. bottom: 119/1964
  2818. }
  2819. },
  2820. foot: {
  2821. height: math.unit(1.5, "feet"),
  2822. name: "Foot",
  2823. image: {
  2824. source: "./media/characters/kurrikage/foot.svg"
  2825. }
  2826. },
  2827. staff: {
  2828. height: math.unit(6.7, "feet"),
  2829. name: "Staff",
  2830. image: {
  2831. source: "./media/characters/kurrikage/staff.svg"
  2832. }
  2833. },
  2834. peek: {
  2835. height: math.unit(1.05, "feet"),
  2836. name: "Peeking",
  2837. image: {
  2838. source: "./media/characters/kurrikage/peek.svg",
  2839. bottom: 0.08
  2840. }
  2841. },
  2842. },
  2843. [
  2844. {
  2845. name: "Normal",
  2846. height: math.unit(12, "feet"),
  2847. default: true
  2848. },
  2849. {
  2850. name: "Big",
  2851. height: math.unit(20, "feet")
  2852. },
  2853. {
  2854. name: "Macro",
  2855. height: math.unit(500, "feet")
  2856. },
  2857. {
  2858. name: "Megamacro",
  2859. height: math.unit(20, "miles")
  2860. },
  2861. ]
  2862. ))
  2863. characterMakers.push(() => makeCharacter(
  2864. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2865. {
  2866. front: {
  2867. height: math.unit(6, "feet"),
  2868. weight: math.unit(75, "kg"),
  2869. name: "Front",
  2870. image: {
  2871. source: "./media/characters/shingo/front.svg",
  2872. extra: 1900/1825,
  2873. bottom: 82/1982
  2874. }
  2875. },
  2876. side: {
  2877. height: math.unit(6, "feet"),
  2878. weight: math.unit(75, "kg"),
  2879. name: "Side",
  2880. image: {
  2881. source: "./media/characters/shingo/side.svg",
  2882. extra: 1930/1865,
  2883. bottom: 16/1946
  2884. }
  2885. },
  2886. back: {
  2887. height: math.unit(6, "feet"),
  2888. weight: math.unit(75, "kg"),
  2889. name: "Back",
  2890. image: {
  2891. source: "./media/characters/shingo/back.svg",
  2892. extra: 1922/1852,
  2893. bottom: 16/1938
  2894. }
  2895. },
  2896. frontDressed: {
  2897. height: math.unit(6, "feet"),
  2898. weight: math.unit(150, "lb"),
  2899. name: "Front-dressed",
  2900. image: {
  2901. source: "./media/characters/shingo/front-dressed.svg",
  2902. extra: 1900/1825,
  2903. bottom: 82/1982
  2904. }
  2905. },
  2906. paw: {
  2907. height: math.unit(1.29, "feet"),
  2908. name: "Paw",
  2909. image: {
  2910. source: "./media/characters/shingo/paw.svg"
  2911. }
  2912. },
  2913. hand: {
  2914. height: math.unit(1.07, "feet"),
  2915. name: "Hand",
  2916. image: {
  2917. source: "./media/characters/shingo/hand.svg"
  2918. }
  2919. },
  2920. frontAlt: {
  2921. height: math.unit(6, "feet"),
  2922. weight: math.unit(75, "kg"),
  2923. name: "Front (Alt)",
  2924. image: {
  2925. source: "./media/characters/shingo/front-alt.svg",
  2926. extra: 3511 / 3338,
  2927. bottom: 0.005
  2928. }
  2929. },
  2930. frontAlt2: {
  2931. height: math.unit(6, "feet"),
  2932. weight: math.unit(75, "kg"),
  2933. name: "Front (Alt 2)",
  2934. image: {
  2935. source: "./media/characters/shingo/front-alt-2.svg",
  2936. extra: 706/681,
  2937. bottom: 11/717
  2938. }
  2939. },
  2940. pawAlt: {
  2941. height: math.unit(1, "feet"),
  2942. name: "Paw (Alt)",
  2943. image: {
  2944. source: "./media/characters/shingo/paw-alt.svg"
  2945. }
  2946. },
  2947. },
  2948. [
  2949. {
  2950. name: "Micro",
  2951. height: math.unit(4, "inches")
  2952. },
  2953. {
  2954. name: "Normal",
  2955. height: math.unit(6, "feet"),
  2956. default: true
  2957. },
  2958. {
  2959. name: "Macro",
  2960. height: math.unit(108, "feet")
  2961. },
  2962. {
  2963. name: "Macro+",
  2964. height: math.unit(1500, "feet")
  2965. },
  2966. ]
  2967. ))
  2968. characterMakers.push(() => makeCharacter(
  2969. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2970. {
  2971. side: {
  2972. height: math.unit(6, "feet"),
  2973. weight: math.unit(75, "kg"),
  2974. name: "Side",
  2975. image: {
  2976. source: "./media/characters/aigey/side.svg"
  2977. }
  2978. },
  2979. },
  2980. [
  2981. {
  2982. name: "Macro",
  2983. height: math.unit(200, "feet"),
  2984. default: true
  2985. },
  2986. {
  2987. name: "Megamacro",
  2988. height: math.unit(100, "miles")
  2989. },
  2990. ]
  2991. )
  2992. )
  2993. characterMakers.push(() => makeCharacter(
  2994. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2995. {
  2996. front: {
  2997. height: math.unit(5 + 5 / 12, "feet"),
  2998. weight: math.unit(75, "kg"),
  2999. name: "Front",
  3000. image: {
  3001. source: "./media/characters/natasha/front.svg",
  3002. extra: 859 / 824,
  3003. bottom: 23 / 879.6
  3004. }
  3005. },
  3006. frontNsfw: {
  3007. height: math.unit(5 + 5 / 12, "feet"),
  3008. weight: math.unit(75, "kg"),
  3009. name: "Front (NSFW)",
  3010. image: {
  3011. source: "./media/characters/natasha/front-nsfw.svg",
  3012. extra: 859 / 824,
  3013. bottom: 23 / 879.6
  3014. }
  3015. },
  3016. frontErect: {
  3017. height: math.unit(5 + 5 / 12, "feet"),
  3018. weight: math.unit(75, "kg"),
  3019. name: "Front (Erect)",
  3020. image: {
  3021. source: "./media/characters/natasha/front-erect.svg",
  3022. extra: 859 / 824,
  3023. bottom: 23 / 879.6
  3024. }
  3025. },
  3026. back: {
  3027. height: math.unit(5 + 5 / 12, "feet"),
  3028. weight: math.unit(75, "kg"),
  3029. name: "Back",
  3030. image: {
  3031. source: "./media/characters/natasha/back.svg",
  3032. extra: 887.9 / 852.6,
  3033. bottom: 9.7 / 896.4
  3034. }
  3035. },
  3036. backAlt: {
  3037. height: math.unit(5 + 5 / 12, "feet"),
  3038. weight: math.unit(75, "kg"),
  3039. name: "Back (Alt)",
  3040. image: {
  3041. source: "./media/characters/natasha/back-alt.svg",
  3042. extra: 1236.7 / 1192,
  3043. bottom: 22.3 / 1258.2
  3044. }
  3045. },
  3046. dick: {
  3047. height: math.unit(1.772, "feet"),
  3048. name: "Dick",
  3049. image: {
  3050. source: "./media/characters/natasha/dick.svg"
  3051. }
  3052. },
  3053. paw: {
  3054. height: math.unit(0.250, "meters"),
  3055. name: "Paw",
  3056. image: {
  3057. source: "./media/characters/natasha/paw.svg"
  3058. }
  3059. },
  3060. },
  3061. [
  3062. {
  3063. name: "Normal",
  3064. height: math.unit(5 + 5 / 12, "feet")
  3065. },
  3066. {
  3067. name: "Large",
  3068. height: math.unit(12, "feet")
  3069. },
  3070. {
  3071. name: "Macro",
  3072. height: math.unit(100, "feet"),
  3073. default: true
  3074. },
  3075. {
  3076. name: "Macro+",
  3077. height: math.unit(260, "feet")
  3078. },
  3079. {
  3080. name: "Macro++",
  3081. height: math.unit(1, "mile")
  3082. },
  3083. ]
  3084. ))
  3085. characterMakers.push(() => makeCharacter(
  3086. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3087. {
  3088. front: {
  3089. height: math.unit(6, "feet"),
  3090. weight: math.unit(75, "kg"),
  3091. name: "Front",
  3092. image: {
  3093. source: "./media/characters/malik/front.svg"
  3094. }
  3095. },
  3096. side: {
  3097. height: math.unit(6, "feet"),
  3098. weight: math.unit(75, "kg"),
  3099. name: "Side",
  3100. image: {
  3101. source: "./media/characters/malik/side.svg",
  3102. extra: 1.1539
  3103. }
  3104. },
  3105. back: {
  3106. height: math.unit(6, "feet"),
  3107. weight: math.unit(75, "kg"),
  3108. name: "Back",
  3109. image: {
  3110. source: "./media/characters/malik/back.svg"
  3111. }
  3112. },
  3113. },
  3114. [
  3115. {
  3116. name: "Macro",
  3117. height: math.unit(156, "feet"),
  3118. default: true
  3119. },
  3120. {
  3121. name: "Macro+",
  3122. height: math.unit(1188, "feet")
  3123. },
  3124. ]
  3125. ))
  3126. characterMakers.push(() => makeCharacter(
  3127. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3128. {
  3129. front: {
  3130. height: math.unit(6, "feet"),
  3131. weight: math.unit(75, "kg"),
  3132. name: "Front",
  3133. image: {
  3134. source: "./media/characters/sefer/front.svg",
  3135. extra: 848 / 659,
  3136. bottom: 28.3 / 876.442
  3137. }
  3138. },
  3139. back: {
  3140. height: math.unit(6, "feet"),
  3141. weight: math.unit(75, "kg"),
  3142. name: "Back",
  3143. image: {
  3144. source: "./media/characters/sefer/back.svg",
  3145. extra: 864 / 695,
  3146. bottom: 10 / 871
  3147. }
  3148. },
  3149. frontDressed: {
  3150. height: math.unit(6, "feet"),
  3151. weight: math.unit(75, "kg"),
  3152. name: "Front (Dressed)",
  3153. image: {
  3154. source: "./media/characters/sefer/front-dressed.svg",
  3155. extra: 839 / 653,
  3156. bottom: 37.6 / 878
  3157. }
  3158. },
  3159. },
  3160. [
  3161. {
  3162. name: "Normal",
  3163. height: math.unit(6, "feet"),
  3164. default: true
  3165. },
  3166. ]
  3167. ))
  3168. characterMakers.push(() => makeCharacter(
  3169. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3170. {
  3171. body: {
  3172. height: math.unit(2.2428, "meter"),
  3173. weight: math.unit(124.738, "kg"),
  3174. name: "Body",
  3175. image: {
  3176. extra: 1225 / 1050,
  3177. source: "./media/characters/north/front.svg"
  3178. }
  3179. }
  3180. },
  3181. [
  3182. {
  3183. name: "Micro",
  3184. height: math.unit(4, "inches")
  3185. },
  3186. {
  3187. name: "Macro",
  3188. height: math.unit(63, "meters")
  3189. },
  3190. {
  3191. name: "Megamacro",
  3192. height: math.unit(101, "miles"),
  3193. default: true
  3194. }
  3195. ]
  3196. ))
  3197. characterMakers.push(() => makeCharacter(
  3198. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3199. {
  3200. angled: {
  3201. height: math.unit(4, "meter"),
  3202. weight: math.unit(150, "kg"),
  3203. name: "Angled",
  3204. image: {
  3205. source: "./media/characters/talan/angled-sfw.svg",
  3206. bottom: 29 / 3734
  3207. }
  3208. },
  3209. angledNsfw: {
  3210. height: math.unit(4, "meter"),
  3211. weight: math.unit(150, "kg"),
  3212. name: "Angled (NSFW)",
  3213. image: {
  3214. source: "./media/characters/talan/angled-nsfw.svg",
  3215. bottom: 29 / 3734
  3216. }
  3217. },
  3218. frontNsfw: {
  3219. height: math.unit(4, "meter"),
  3220. weight: math.unit(150, "kg"),
  3221. name: "Front (NSFW)",
  3222. image: {
  3223. source: "./media/characters/talan/front-nsfw.svg",
  3224. bottom: 29 / 3734
  3225. }
  3226. },
  3227. sideNsfw: {
  3228. height: math.unit(4, "meter"),
  3229. weight: math.unit(150, "kg"),
  3230. name: "Side (NSFW)",
  3231. image: {
  3232. source: "./media/characters/talan/side-nsfw.svg",
  3233. bottom: 29 / 3734
  3234. }
  3235. },
  3236. back: {
  3237. height: math.unit(4, "meter"),
  3238. weight: math.unit(150, "kg"),
  3239. name: "Back",
  3240. image: {
  3241. source: "./media/characters/talan/back.svg"
  3242. }
  3243. },
  3244. dickBottom: {
  3245. height: math.unit(0.621, "meter"),
  3246. name: "Dick (Bottom)",
  3247. image: {
  3248. source: "./media/characters/talan/dick-bottom.svg"
  3249. }
  3250. },
  3251. dickTop: {
  3252. height: math.unit(0.621, "meter"),
  3253. name: "Dick (Top)",
  3254. image: {
  3255. source: "./media/characters/talan/dick-top.svg"
  3256. }
  3257. },
  3258. dickSide: {
  3259. height: math.unit(0.305, "meter"),
  3260. name: "Dick (Side)",
  3261. image: {
  3262. source: "./media/characters/talan/dick-side.svg"
  3263. }
  3264. },
  3265. dickFront: {
  3266. height: math.unit(0.305, "meter"),
  3267. name: "Dick (Front)",
  3268. image: {
  3269. source: "./media/characters/talan/dick-front.svg"
  3270. }
  3271. },
  3272. },
  3273. [
  3274. {
  3275. name: "Normal",
  3276. height: math.unit(4, "meters")
  3277. },
  3278. {
  3279. name: "Macro",
  3280. height: math.unit(100, "meters")
  3281. },
  3282. {
  3283. name: "Megamacro",
  3284. height: math.unit(2, "miles"),
  3285. default: true
  3286. },
  3287. {
  3288. name: "Gigamacro",
  3289. height: math.unit(5000, "miles")
  3290. },
  3291. {
  3292. name: "Teramacro",
  3293. height: math.unit(100, "parsecs")
  3294. }
  3295. ]
  3296. ))
  3297. characterMakers.push(() => makeCharacter(
  3298. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3299. {
  3300. front: {
  3301. height: math.unit(2, "meter"),
  3302. weight: math.unit(90, "kg"),
  3303. name: "Front",
  3304. image: {
  3305. source: "./media/characters/gael'rathus/front.svg"
  3306. }
  3307. },
  3308. frontAlt: {
  3309. height: math.unit(2, "meter"),
  3310. weight: math.unit(90, "kg"),
  3311. name: "Front (alt)",
  3312. image: {
  3313. source: "./media/characters/gael'rathus/front-alt.svg"
  3314. }
  3315. },
  3316. frontAlt2: {
  3317. height: math.unit(2, "meter"),
  3318. weight: math.unit(90, "kg"),
  3319. name: "Front (alt 2)",
  3320. image: {
  3321. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3322. }
  3323. }
  3324. },
  3325. [
  3326. {
  3327. name: "Normal",
  3328. height: math.unit(9, "feet"),
  3329. default: true
  3330. },
  3331. {
  3332. name: "Large",
  3333. height: math.unit(25, "feet")
  3334. },
  3335. {
  3336. name: "Macro",
  3337. height: math.unit(0.25, "miles")
  3338. },
  3339. {
  3340. name: "Megamacro",
  3341. height: math.unit(10, "miles")
  3342. }
  3343. ]
  3344. ))
  3345. characterMakers.push(() => makeCharacter(
  3346. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3347. {
  3348. side: {
  3349. height: math.unit(2, "meter"),
  3350. weight: math.unit(140, "kg"),
  3351. name: "Side",
  3352. image: {
  3353. source: "./media/characters/sosha/side.svg",
  3354. bottom: 0.042
  3355. }
  3356. },
  3357. },
  3358. [
  3359. {
  3360. name: "Normal",
  3361. height: math.unit(12, "feet"),
  3362. default: true
  3363. }
  3364. ]
  3365. ))
  3366. characterMakers.push(() => makeCharacter(
  3367. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3368. {
  3369. side: {
  3370. height: math.unit(5 + 5 / 12, "feet"),
  3371. weight: math.unit(170, "kg"),
  3372. name: "Side",
  3373. image: {
  3374. source: "./media/characters/runnola/side.svg",
  3375. extra: 741 / 448,
  3376. bottom: 0.05
  3377. }
  3378. },
  3379. },
  3380. [
  3381. {
  3382. name: "Small",
  3383. height: math.unit(3, "feet")
  3384. },
  3385. {
  3386. name: "Normal",
  3387. height: math.unit(5 + 5 / 12, "feet"),
  3388. default: true
  3389. },
  3390. {
  3391. name: "Big",
  3392. height: math.unit(10, "feet")
  3393. },
  3394. ]
  3395. ))
  3396. characterMakers.push(() => makeCharacter(
  3397. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3398. {
  3399. front: {
  3400. height: math.unit(2, "meter"),
  3401. weight: math.unit(50, "kg"),
  3402. name: "Front",
  3403. image: {
  3404. source: "./media/characters/kurribird/front.svg",
  3405. bottom: 0.015
  3406. }
  3407. },
  3408. frontAlt: {
  3409. height: math.unit(1.5, "meter"),
  3410. weight: math.unit(50, "kg"),
  3411. name: "Front (Alt)",
  3412. image: {
  3413. source: "./media/characters/kurribird/front-alt.svg",
  3414. extra: 1.45
  3415. }
  3416. },
  3417. },
  3418. [
  3419. {
  3420. name: "Normal",
  3421. height: math.unit(7, "feet")
  3422. },
  3423. {
  3424. name: "Big",
  3425. height: math.unit(12, "feet"),
  3426. default: true
  3427. },
  3428. {
  3429. name: "Macro",
  3430. height: math.unit(1500, "feet")
  3431. },
  3432. {
  3433. name: "Megamacro",
  3434. height: math.unit(2, "miles")
  3435. }
  3436. ]
  3437. ))
  3438. characterMakers.push(() => makeCharacter(
  3439. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3440. {
  3441. front: {
  3442. height: math.unit(2, "meter"),
  3443. weight: math.unit(80, "kg"),
  3444. name: "Front",
  3445. image: {
  3446. source: "./media/characters/elbial/front.svg",
  3447. extra: 1643 / 1556,
  3448. bottom: 60.2 / 1696
  3449. }
  3450. },
  3451. side: {
  3452. height: math.unit(2, "meter"),
  3453. weight: math.unit(80, "kg"),
  3454. name: "Side",
  3455. image: {
  3456. source: "./media/characters/elbial/side.svg",
  3457. extra: 1601/1528,
  3458. bottom: 97/1698
  3459. }
  3460. },
  3461. back: {
  3462. height: math.unit(2, "meter"),
  3463. weight: math.unit(80, "kg"),
  3464. name: "Back",
  3465. image: {
  3466. source: "./media/characters/elbial/back.svg",
  3467. extra: 1653/1569,
  3468. bottom: 20/1673
  3469. }
  3470. },
  3471. frontDressed: {
  3472. height: math.unit(2, "meter"),
  3473. weight: math.unit(80, "kg"),
  3474. name: "Front (Dressed)",
  3475. image: {
  3476. source: "./media/characters/elbial/front-dressed.svg",
  3477. extra: 1638/1569,
  3478. bottom: 70/1708
  3479. }
  3480. },
  3481. genitals: {
  3482. height: math.unit(2 / 3.367, "meter"),
  3483. name: "Genitals",
  3484. image: {
  3485. source: "./media/characters/elbial/genitals.svg"
  3486. }
  3487. },
  3488. },
  3489. [
  3490. {
  3491. name: "Large",
  3492. height: math.unit(100, "feet")
  3493. },
  3494. {
  3495. name: "Macro",
  3496. height: math.unit(500, "feet"),
  3497. default: true
  3498. },
  3499. {
  3500. name: "Megamacro",
  3501. height: math.unit(10, "miles")
  3502. },
  3503. {
  3504. name: "Gigamacro",
  3505. height: math.unit(25000, "miles")
  3506. },
  3507. {
  3508. name: "Full-Size",
  3509. height: math.unit(8000000, "gigaparsecs")
  3510. }
  3511. ]
  3512. ))
  3513. characterMakers.push(() => makeCharacter(
  3514. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3515. {
  3516. front: {
  3517. height: math.unit(2, "meter"),
  3518. weight: math.unit(60, "kg"),
  3519. name: "Front",
  3520. image: {
  3521. source: "./media/characters/noah/front.svg"
  3522. }
  3523. },
  3524. talons: {
  3525. height: math.unit(0.315, "meter"),
  3526. name: "Talons",
  3527. image: {
  3528. source: "./media/characters/noah/talons.svg"
  3529. }
  3530. }
  3531. },
  3532. [
  3533. {
  3534. name: "Large",
  3535. height: math.unit(50, "feet")
  3536. },
  3537. {
  3538. name: "Macro",
  3539. height: math.unit(750, "feet"),
  3540. default: true
  3541. },
  3542. {
  3543. name: "Megamacro",
  3544. height: math.unit(50, "miles")
  3545. },
  3546. {
  3547. name: "Gigamacro",
  3548. height: math.unit(100000, "miles")
  3549. },
  3550. {
  3551. name: "Full-Size",
  3552. height: math.unit(3000000000, "miles")
  3553. }
  3554. ]
  3555. ))
  3556. characterMakers.push(() => makeCharacter(
  3557. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3558. {
  3559. front: {
  3560. height: math.unit(2, "meter"),
  3561. weight: math.unit(80, "kg"),
  3562. name: "Front",
  3563. image: {
  3564. source: "./media/characters/natalya/front.svg"
  3565. }
  3566. },
  3567. back: {
  3568. height: math.unit(2, "meter"),
  3569. weight: math.unit(80, "kg"),
  3570. name: "Back",
  3571. image: {
  3572. source: "./media/characters/natalya/back.svg"
  3573. }
  3574. }
  3575. },
  3576. [
  3577. {
  3578. name: "Normal",
  3579. height: math.unit(150, "feet"),
  3580. default: true
  3581. },
  3582. {
  3583. name: "Megamacro",
  3584. height: math.unit(5, "miles")
  3585. },
  3586. {
  3587. name: "Full-Size",
  3588. height: math.unit(600, "kiloparsecs")
  3589. }
  3590. ]
  3591. ))
  3592. characterMakers.push(() => makeCharacter(
  3593. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3594. {
  3595. front: {
  3596. height: math.unit(2, "meter"),
  3597. weight: math.unit(50, "kg"),
  3598. name: "Front",
  3599. image: {
  3600. source: "./media/characters/erestrebah/front.svg",
  3601. extra: 1262/1162,
  3602. bottom: 96/1358
  3603. }
  3604. },
  3605. back: {
  3606. height: math.unit(2, "meter"),
  3607. weight: math.unit(50, "kg"),
  3608. name: "Back",
  3609. image: {
  3610. source: "./media/characters/erestrebah/back.svg",
  3611. extra: 1257/1139,
  3612. bottom: 13/1270
  3613. }
  3614. },
  3615. wing: {
  3616. height: math.unit(2, "meter"),
  3617. weight: math.unit(50, "kg"),
  3618. name: "Wing",
  3619. image: {
  3620. source: "./media/characters/erestrebah/wing.svg",
  3621. extra: 1262/1162,
  3622. bottom: 96/1358
  3623. }
  3624. },
  3625. mouth: {
  3626. height: math.unit(0.39, "feet"),
  3627. name: "Mouth",
  3628. image: {
  3629. source: "./media/characters/erestrebah/mouth.svg"
  3630. }
  3631. }
  3632. },
  3633. [
  3634. {
  3635. name: "Normal",
  3636. height: math.unit(10, "feet")
  3637. },
  3638. {
  3639. name: "Large",
  3640. height: math.unit(50, "feet"),
  3641. default: true
  3642. },
  3643. {
  3644. name: "Macro",
  3645. height: math.unit(300, "feet")
  3646. },
  3647. {
  3648. name: "Macro+",
  3649. height: math.unit(750, "feet")
  3650. },
  3651. {
  3652. name: "Megamacro",
  3653. height: math.unit(3, "miles")
  3654. }
  3655. ]
  3656. ))
  3657. characterMakers.push(() => makeCharacter(
  3658. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3659. {
  3660. front: {
  3661. height: math.unit(2, "meter"),
  3662. weight: math.unit(80, "kg"),
  3663. name: "Front",
  3664. image: {
  3665. source: "./media/characters/jennifer/front.svg",
  3666. bottom: 0.11,
  3667. extra: 1.16
  3668. }
  3669. },
  3670. frontAlt: {
  3671. height: math.unit(2, "meter"),
  3672. weight: math.unit(80, "kg"),
  3673. name: "Front (Alt)",
  3674. image: {
  3675. source: "./media/characters/jennifer/front-alt.svg"
  3676. }
  3677. }
  3678. },
  3679. [
  3680. {
  3681. name: "Canon Height",
  3682. height: math.unit(120, "feet"),
  3683. default: true
  3684. },
  3685. {
  3686. name: "Macro+",
  3687. height: math.unit(300, "feet")
  3688. },
  3689. {
  3690. name: "Megamacro",
  3691. height: math.unit(20000, "feet")
  3692. }
  3693. ]
  3694. ))
  3695. characterMakers.push(() => makeCharacter(
  3696. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3697. {
  3698. front: {
  3699. height: math.unit(2, "meter"),
  3700. weight: math.unit(50, "kg"),
  3701. name: "Front",
  3702. image: {
  3703. source: "./media/characters/kalista/front.svg",
  3704. extra: 1314/1145,
  3705. bottom: 101/1415
  3706. }
  3707. },
  3708. back: {
  3709. height: math.unit(2, "meter"),
  3710. weight: math.unit(50, "kg"),
  3711. name: "Back",
  3712. image: {
  3713. source: "./media/characters/kalista/back.svg",
  3714. extra: 1366 / 1156,
  3715. bottom: 33.9 / 1362.78
  3716. }
  3717. }
  3718. },
  3719. [
  3720. {
  3721. name: "Uncomfortably Small",
  3722. height: math.unit(10, "feet")
  3723. },
  3724. {
  3725. name: "Small",
  3726. height: math.unit(30, "feet")
  3727. },
  3728. {
  3729. name: "Macro",
  3730. height: math.unit(100, "feet"),
  3731. default: true
  3732. },
  3733. {
  3734. name: "Macro+",
  3735. height: math.unit(2000, "feet")
  3736. },
  3737. {
  3738. name: "True Form",
  3739. height: math.unit(8924, "miles")
  3740. }
  3741. ]
  3742. ))
  3743. characterMakers.push(() => makeCharacter(
  3744. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3745. {
  3746. front: {
  3747. height: math.unit(2, "meter"),
  3748. weight: math.unit(120, "kg"),
  3749. name: "Front",
  3750. image: {
  3751. source: "./media/characters/ggv/front.svg"
  3752. }
  3753. },
  3754. side: {
  3755. height: math.unit(2, "meter"),
  3756. weight: math.unit(120, "kg"),
  3757. name: "Side",
  3758. image: {
  3759. source: "./media/characters/ggv/side.svg"
  3760. }
  3761. }
  3762. },
  3763. [
  3764. {
  3765. name: "Extremely Puny",
  3766. height: math.unit(9 + 5 / 12, "feet")
  3767. },
  3768. {
  3769. name: "Horribly Small",
  3770. height: math.unit(47.7, "miles"),
  3771. default: true
  3772. },
  3773. {
  3774. name: "Reasonably Sized",
  3775. height: math.unit(25000, "parsecs")
  3776. },
  3777. {
  3778. name: "Slightly Uncompressed",
  3779. height: math.unit(7.77e31, "parsecs")
  3780. },
  3781. {
  3782. name: "Omniversal",
  3783. height: math.unit(1e300, "meters")
  3784. },
  3785. ]
  3786. ))
  3787. characterMakers.push(() => makeCharacter(
  3788. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3789. {
  3790. front: {
  3791. height: math.unit(2, "meter"),
  3792. weight: math.unit(75, "lb"),
  3793. name: "Front",
  3794. image: {
  3795. source: "./media/characters/napalm/front.svg"
  3796. }
  3797. },
  3798. back: {
  3799. height: math.unit(2, "meter"),
  3800. weight: math.unit(75, "lb"),
  3801. name: "Back",
  3802. image: {
  3803. source: "./media/characters/napalm/back.svg"
  3804. }
  3805. }
  3806. },
  3807. [
  3808. {
  3809. name: "Standard",
  3810. height: math.unit(55, "feet"),
  3811. default: true
  3812. }
  3813. ]
  3814. ))
  3815. characterMakers.push(() => makeCharacter(
  3816. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3817. {
  3818. front: {
  3819. height: math.unit(7 + 5 / 6, "feet"),
  3820. weight: math.unit(325, "lb"),
  3821. name: "Front",
  3822. image: {
  3823. source: "./media/characters/asana/front.svg",
  3824. extra: 1133 / 1060,
  3825. bottom: 15.2 / 1148.6
  3826. }
  3827. },
  3828. back: {
  3829. height: math.unit(7 + 5 / 6, "feet"),
  3830. weight: math.unit(325, "lb"),
  3831. name: "Back",
  3832. image: {
  3833. source: "./media/characters/asana/back.svg",
  3834. extra: 1114 / 1043,
  3835. bottom: 5 / 1120
  3836. }
  3837. },
  3838. dressedDark: {
  3839. height: math.unit(7 + 5 / 6, "feet"),
  3840. weight: math.unit(325, "lb"),
  3841. name: "Dressed (Dark)",
  3842. image: {
  3843. source: "./media/characters/asana/dressed-dark.svg",
  3844. extra: 1133 / 1060,
  3845. bottom: 15.2 / 1148.6
  3846. }
  3847. },
  3848. dressedLight: {
  3849. height: math.unit(7 + 5 / 6, "feet"),
  3850. weight: math.unit(325, "lb"),
  3851. name: "Dressed (Light)",
  3852. image: {
  3853. source: "./media/characters/asana/dressed-light.svg",
  3854. extra: 1133 / 1060,
  3855. bottom: 15.2 / 1148.6
  3856. }
  3857. },
  3858. },
  3859. [
  3860. {
  3861. name: "Standard",
  3862. height: math.unit(7 + 5 / 6, "feet"),
  3863. default: true
  3864. },
  3865. {
  3866. name: "Large",
  3867. height: math.unit(10, "meters")
  3868. },
  3869. {
  3870. name: "Macro",
  3871. height: math.unit(2500, "meters")
  3872. },
  3873. {
  3874. name: "Megamacro",
  3875. height: math.unit(5e6, "meters")
  3876. },
  3877. {
  3878. name: "Examacro",
  3879. height: math.unit(5e12, "lightyears")
  3880. },
  3881. {
  3882. name: "Max Size",
  3883. height: math.unit(1e31, "lightyears")
  3884. }
  3885. ]
  3886. ))
  3887. characterMakers.push(() => makeCharacter(
  3888. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3889. {
  3890. front: {
  3891. height: math.unit(2, "meter"),
  3892. weight: math.unit(60, "kg"),
  3893. name: "Front",
  3894. image: {
  3895. source: "./media/characters/ebony/front.svg",
  3896. bottom: 0.03,
  3897. extra: 1045 / 810 + 0.03
  3898. }
  3899. },
  3900. side: {
  3901. height: math.unit(2, "meter"),
  3902. weight: math.unit(60, "kg"),
  3903. name: "Side",
  3904. image: {
  3905. source: "./media/characters/ebony/side.svg",
  3906. bottom: 0.03,
  3907. extra: 1045 / 810 + 0.03
  3908. }
  3909. },
  3910. back: {
  3911. height: math.unit(2, "meter"),
  3912. weight: math.unit(60, "kg"),
  3913. name: "Back",
  3914. image: {
  3915. source: "./media/characters/ebony/back.svg",
  3916. bottom: 0.01,
  3917. extra: 1045 / 810 + 0.01
  3918. }
  3919. },
  3920. },
  3921. [
  3922. // TODO check why I did this lol
  3923. {
  3924. name: "Standard",
  3925. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3926. default: true
  3927. },
  3928. {
  3929. name: "Macro",
  3930. height: math.unit(200, "feet")
  3931. },
  3932. {
  3933. name: "Gigamacro",
  3934. height: math.unit(13000, "km")
  3935. }
  3936. ]
  3937. ))
  3938. characterMakers.push(() => makeCharacter(
  3939. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3940. {
  3941. front: {
  3942. height: math.unit(6, "feet"),
  3943. weight: math.unit(175, "lb"),
  3944. name: "Front",
  3945. image: {
  3946. source: "./media/characters/mountain/front.svg",
  3947. extra: 972 / 955,
  3948. bottom: 64 / 1036.6
  3949. }
  3950. },
  3951. back: {
  3952. height: math.unit(6, "feet"),
  3953. weight: math.unit(175, "lb"),
  3954. name: "Back",
  3955. image: {
  3956. source: "./media/characters/mountain/back.svg",
  3957. extra: 970 / 950,
  3958. bottom: 28.25 / 999
  3959. }
  3960. },
  3961. },
  3962. [
  3963. {
  3964. name: "Large",
  3965. height: math.unit(20, "meters")
  3966. },
  3967. {
  3968. name: "Macro",
  3969. height: math.unit(300, "meters")
  3970. },
  3971. {
  3972. name: "Gigamacro",
  3973. height: math.unit(10000, "km"),
  3974. default: true
  3975. },
  3976. {
  3977. name: "Examacro",
  3978. height: math.unit(10e9, "lightyears")
  3979. }
  3980. ]
  3981. ))
  3982. characterMakers.push(() => makeCharacter(
  3983. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3984. {
  3985. front: {
  3986. height: math.unit(8, "feet"),
  3987. weight: math.unit(500, "lb"),
  3988. name: "Front",
  3989. image: {
  3990. source: "./media/characters/rick/front.svg"
  3991. }
  3992. }
  3993. },
  3994. [
  3995. {
  3996. name: "Normal",
  3997. height: math.unit(8, "feet"),
  3998. default: true
  3999. },
  4000. {
  4001. name: "Macro",
  4002. height: math.unit(5, "km")
  4003. }
  4004. ]
  4005. ))
  4006. characterMakers.push(() => makeCharacter(
  4007. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4008. {
  4009. front: {
  4010. height: math.unit(8, "feet"),
  4011. weight: math.unit(120, "lb"),
  4012. name: "Front",
  4013. image: {
  4014. source: "./media/characters/ona/front.svg"
  4015. }
  4016. },
  4017. frontAlt: {
  4018. height: math.unit(8, "feet"),
  4019. weight: math.unit(120, "lb"),
  4020. name: "Front (Alt)",
  4021. image: {
  4022. source: "./media/characters/ona/front-alt.svg"
  4023. }
  4024. },
  4025. back: {
  4026. height: math.unit(8, "feet"),
  4027. weight: math.unit(120, "lb"),
  4028. name: "Back",
  4029. image: {
  4030. source: "./media/characters/ona/back.svg"
  4031. }
  4032. },
  4033. foot: {
  4034. height: math.unit(1.1, "feet"),
  4035. name: "Foot",
  4036. image: {
  4037. source: "./media/characters/ona/foot.svg"
  4038. }
  4039. }
  4040. },
  4041. [
  4042. {
  4043. name: "Megamacro",
  4044. height: math.unit(70, "km"),
  4045. default: true
  4046. },
  4047. {
  4048. name: "Gigamacro",
  4049. height: math.unit(681818, "miles")
  4050. },
  4051. {
  4052. name: "Examacro",
  4053. height: math.unit(3800000, "lightyears")
  4054. },
  4055. ]
  4056. ))
  4057. characterMakers.push(() => makeCharacter(
  4058. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4059. {
  4060. front: {
  4061. height: math.unit(12, "feet"),
  4062. weight: math.unit(3000, "lb"),
  4063. name: "Front",
  4064. image: {
  4065. source: "./media/characters/mech/front.svg",
  4066. extra: 2900 / 2770,
  4067. bottom: 110 / 3010
  4068. }
  4069. },
  4070. back: {
  4071. height: math.unit(12, "feet"),
  4072. weight: math.unit(3000, "lb"),
  4073. name: "Back",
  4074. image: {
  4075. source: "./media/characters/mech/back.svg",
  4076. extra: 3011 / 2890,
  4077. bottom: 94 / 3105
  4078. }
  4079. },
  4080. maw: {
  4081. height: math.unit(3.07, "feet"),
  4082. name: "Maw",
  4083. image: {
  4084. source: "./media/characters/mech/maw.svg"
  4085. }
  4086. },
  4087. head: {
  4088. height: math.unit(2.82, "feet"),
  4089. name: "Head",
  4090. image: {
  4091. source: "./media/characters/mech/head.svg"
  4092. }
  4093. },
  4094. dick: {
  4095. height: math.unit(1.43, "feet"),
  4096. name: "Dick",
  4097. image: {
  4098. source: "./media/characters/mech/dick.svg"
  4099. }
  4100. },
  4101. },
  4102. [
  4103. {
  4104. name: "Normal",
  4105. height: math.unit(12, "feet")
  4106. },
  4107. {
  4108. name: "Macro",
  4109. height: math.unit(300, "feet"),
  4110. default: true
  4111. },
  4112. {
  4113. name: "Macro+",
  4114. height: math.unit(1500, "feet")
  4115. },
  4116. ]
  4117. ))
  4118. characterMakers.push(() => makeCharacter(
  4119. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4120. {
  4121. front: {
  4122. height: math.unit(1.3, "meter"),
  4123. weight: math.unit(30, "kg"),
  4124. name: "Front",
  4125. image: {
  4126. source: "./media/characters/gregory/front.svg",
  4127. }
  4128. }
  4129. },
  4130. [
  4131. {
  4132. name: "Normal",
  4133. height: math.unit(1.3, "meter"),
  4134. default: true
  4135. },
  4136. {
  4137. name: "Macro",
  4138. height: math.unit(20, "meter")
  4139. }
  4140. ]
  4141. ))
  4142. characterMakers.push(() => makeCharacter(
  4143. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4144. {
  4145. front: {
  4146. height: math.unit(2.8, "meter"),
  4147. weight: math.unit(200, "kg"),
  4148. name: "Front",
  4149. image: {
  4150. source: "./media/characters/elory/front.svg",
  4151. }
  4152. }
  4153. },
  4154. [
  4155. {
  4156. name: "Normal",
  4157. height: math.unit(2.8, "meter"),
  4158. default: true
  4159. },
  4160. {
  4161. name: "Macro",
  4162. height: math.unit(38, "meter")
  4163. }
  4164. ]
  4165. ))
  4166. characterMakers.push(() => makeCharacter(
  4167. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4168. {
  4169. front: {
  4170. height: math.unit(470, "feet"),
  4171. weight: math.unit(924, "tons"),
  4172. name: "Front",
  4173. image: {
  4174. source: "./media/characters/angelpatamon/front.svg",
  4175. }
  4176. }
  4177. },
  4178. [
  4179. {
  4180. name: "Normal",
  4181. height: math.unit(470, "feet"),
  4182. default: true
  4183. },
  4184. {
  4185. name: "Deity Size I",
  4186. height: math.unit(28651.2, "km")
  4187. },
  4188. {
  4189. name: "Deity Size II",
  4190. height: math.unit(171907.2, "km")
  4191. }
  4192. ]
  4193. ))
  4194. characterMakers.push(() => makeCharacter(
  4195. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4196. {
  4197. side: {
  4198. height: math.unit(7.2, "meter"),
  4199. weight: math.unit(8.2, "tons"),
  4200. name: "Side",
  4201. image: {
  4202. source: "./media/characters/cryae/side.svg",
  4203. extra: 3500 / 1500
  4204. }
  4205. }
  4206. },
  4207. [
  4208. {
  4209. name: "Normal",
  4210. height: math.unit(7.2, "meter"),
  4211. default: true
  4212. }
  4213. ]
  4214. ))
  4215. characterMakers.push(() => makeCharacter(
  4216. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4217. {
  4218. front: {
  4219. height: math.unit(6, "feet"),
  4220. weight: math.unit(175, "lb"),
  4221. name: "Front",
  4222. image: {
  4223. source: "./media/characters/xera/front.svg",
  4224. extra: 2377 / 1972,
  4225. bottom: 75.5 / 2452
  4226. }
  4227. },
  4228. side: {
  4229. height: math.unit(6, "feet"),
  4230. weight: math.unit(175, "lb"),
  4231. name: "Side",
  4232. image: {
  4233. source: "./media/characters/xera/side.svg",
  4234. extra: 2345 / 2019,
  4235. bottom: 39.7 / 2384
  4236. }
  4237. },
  4238. back: {
  4239. height: math.unit(6, "feet"),
  4240. weight: math.unit(175, "lb"),
  4241. name: "Back",
  4242. image: {
  4243. source: "./media/characters/xera/back.svg",
  4244. extra: 2095 / 1984,
  4245. bottom: 67 / 2166
  4246. }
  4247. },
  4248. },
  4249. [
  4250. {
  4251. name: "Small",
  4252. height: math.unit(10, "feet")
  4253. },
  4254. {
  4255. name: "Macro",
  4256. height: math.unit(500, "meters"),
  4257. default: true
  4258. },
  4259. {
  4260. name: "Macro+",
  4261. height: math.unit(10, "km")
  4262. },
  4263. {
  4264. name: "Gigamacro",
  4265. height: math.unit(25000, "km")
  4266. },
  4267. {
  4268. name: "Teramacro",
  4269. height: math.unit(3e6, "km")
  4270. }
  4271. ]
  4272. ))
  4273. characterMakers.push(() => makeCharacter(
  4274. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4275. {
  4276. front: {
  4277. height: math.unit(6, "feet"),
  4278. weight: math.unit(175, "lb"),
  4279. name: "Front",
  4280. image: {
  4281. source: "./media/characters/nebula/front.svg",
  4282. extra: 2566 / 2362,
  4283. bottom: 81 / 2644
  4284. }
  4285. }
  4286. },
  4287. [
  4288. {
  4289. name: "Small",
  4290. height: math.unit(4.5, "meters")
  4291. },
  4292. {
  4293. name: "Macro",
  4294. height: math.unit(1500, "meters"),
  4295. default: true
  4296. },
  4297. {
  4298. name: "Megamacro",
  4299. height: math.unit(150, "km")
  4300. },
  4301. {
  4302. name: "Gigamacro",
  4303. height: math.unit(27000, "km")
  4304. }
  4305. ]
  4306. ))
  4307. characterMakers.push(() => makeCharacter(
  4308. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4309. {
  4310. front: {
  4311. height: math.unit(6, "feet"),
  4312. weight: math.unit(225, "lb"),
  4313. name: "Front",
  4314. image: {
  4315. source: "./media/characters/abysgar/front.svg"
  4316. }
  4317. }
  4318. },
  4319. [
  4320. {
  4321. name: "Small",
  4322. height: math.unit(4.5, "meters")
  4323. },
  4324. {
  4325. name: "Macro",
  4326. height: math.unit(1250, "meters"),
  4327. default: true
  4328. },
  4329. {
  4330. name: "Megamacro",
  4331. height: math.unit(125, "km")
  4332. },
  4333. {
  4334. name: "Gigamacro",
  4335. height: math.unit(26000, "km")
  4336. }
  4337. ]
  4338. ))
  4339. characterMakers.push(() => makeCharacter(
  4340. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4341. {
  4342. front: {
  4343. height: math.unit(6, "feet"),
  4344. weight: math.unit(180, "lb"),
  4345. name: "Front",
  4346. image: {
  4347. source: "./media/characters/yakuz/front.svg"
  4348. }
  4349. }
  4350. },
  4351. [
  4352. {
  4353. name: "Small",
  4354. height: math.unit(5, "meters")
  4355. },
  4356. {
  4357. name: "Macro",
  4358. height: math.unit(1500, "meters"),
  4359. default: true
  4360. },
  4361. {
  4362. name: "Megamacro",
  4363. height: math.unit(200, "km")
  4364. },
  4365. {
  4366. name: "Gigamacro",
  4367. height: math.unit(100000, "km")
  4368. }
  4369. ]
  4370. ))
  4371. characterMakers.push(() => makeCharacter(
  4372. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4373. {
  4374. front: {
  4375. height: math.unit(6, "feet"),
  4376. weight: math.unit(175, "lb"),
  4377. name: "Front",
  4378. image: {
  4379. source: "./media/characters/mirova/front.svg",
  4380. extra: 3334 / 3071,
  4381. bottom: 42 / 3375.6
  4382. }
  4383. }
  4384. },
  4385. [
  4386. {
  4387. name: "Small",
  4388. height: math.unit(5, "meters")
  4389. },
  4390. {
  4391. name: "Macro",
  4392. height: math.unit(900, "meters"),
  4393. default: true
  4394. },
  4395. {
  4396. name: "Megamacro",
  4397. height: math.unit(135, "km")
  4398. },
  4399. {
  4400. name: "Gigamacro",
  4401. height: math.unit(20000, "km")
  4402. }
  4403. ]
  4404. ))
  4405. characterMakers.push(() => makeCharacter(
  4406. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4407. {
  4408. side: {
  4409. height: math.unit(28.35, "feet"),
  4410. weight: math.unit(99.75, "tons"),
  4411. name: "Side",
  4412. image: {
  4413. source: "./media/characters/asana-mech/side.svg",
  4414. extra: 923 / 699,
  4415. bottom: 50 / 975
  4416. }
  4417. },
  4418. chaingun: {
  4419. height: math.unit(7, "feet"),
  4420. weight: math.unit(2400, "lb"),
  4421. name: "Chaingun",
  4422. image: {
  4423. source: "./media/characters/asana-mech/chaingun.svg"
  4424. }
  4425. },
  4426. laser: {
  4427. height: math.unit(7.12, "feet"),
  4428. weight: math.unit(2000, "lb"),
  4429. name: "Laser",
  4430. image: {
  4431. source: "./media/characters/asana-mech/laser.svg"
  4432. }
  4433. },
  4434. },
  4435. [
  4436. {
  4437. name: "Normal",
  4438. height: math.unit(28.35, "feet"),
  4439. default: true
  4440. },
  4441. {
  4442. name: "Macro",
  4443. height: math.unit(2500, "feet")
  4444. },
  4445. {
  4446. name: "Megamacro",
  4447. height: math.unit(25, "miles")
  4448. },
  4449. {
  4450. name: "Examacro",
  4451. height: math.unit(6e8, "lightyears")
  4452. },
  4453. ]
  4454. ))
  4455. characterMakers.push(() => makeCharacter(
  4456. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4457. {
  4458. front: {
  4459. height: math.unit(5, "meters"),
  4460. weight: math.unit(1000, "kg"),
  4461. name: "Front",
  4462. image: {
  4463. source: "./media/characters/asche/front.svg",
  4464. extra: 1258 / 1190,
  4465. bottom: 47 / 1305
  4466. }
  4467. },
  4468. frontUnderwear: {
  4469. height: math.unit(5, "meters"),
  4470. weight: math.unit(1000, "kg"),
  4471. name: "Front (Underwear)",
  4472. image: {
  4473. source: "./media/characters/asche/front-underwear.svg",
  4474. extra: 1258 / 1190,
  4475. bottom: 47 / 1305
  4476. }
  4477. },
  4478. frontDressed: {
  4479. height: math.unit(5, "meters"),
  4480. weight: math.unit(1000, "kg"),
  4481. name: "Front (Dressed)",
  4482. image: {
  4483. source: "./media/characters/asche/front-dressed.svg",
  4484. extra: 1258 / 1190,
  4485. bottom: 47 / 1305
  4486. }
  4487. },
  4488. frontArmor: {
  4489. height: math.unit(5, "meters"),
  4490. weight: math.unit(1000, "kg"),
  4491. name: "Front (Armored)",
  4492. image: {
  4493. source: "./media/characters/asche/front-armored.svg",
  4494. extra: 1374 / 1308,
  4495. bottom: 23 / 1397
  4496. }
  4497. },
  4498. mp724: {
  4499. height: math.unit(0.96, "meters"),
  4500. weight: math.unit(38, "kg"),
  4501. name: "H&K MP724",
  4502. image: {
  4503. source: "./media/characters/asche/h&k-mp724.svg"
  4504. }
  4505. },
  4506. side: {
  4507. height: math.unit(5, "meters"),
  4508. weight: math.unit(1000, "kg"),
  4509. name: "Side",
  4510. image: {
  4511. source: "./media/characters/asche/side.svg",
  4512. extra: 1717 / 1609,
  4513. bottom: 0.005
  4514. }
  4515. },
  4516. back: {
  4517. height: math.unit(5, "meters"),
  4518. weight: math.unit(1000, "kg"),
  4519. name: "Back",
  4520. image: {
  4521. source: "./media/characters/asche/back.svg",
  4522. extra: 1570 / 1501
  4523. }
  4524. },
  4525. },
  4526. [
  4527. {
  4528. name: "DEFCON 5",
  4529. height: math.unit(5, "meters")
  4530. },
  4531. {
  4532. name: "DEFCON 4",
  4533. height: math.unit(500, "meters"),
  4534. default: true
  4535. },
  4536. {
  4537. name: "DEFCON 3",
  4538. height: math.unit(5, "km")
  4539. },
  4540. {
  4541. name: "DEFCON 2",
  4542. height: math.unit(500, "km")
  4543. },
  4544. {
  4545. name: "DEFCON 1",
  4546. height: math.unit(500000, "km")
  4547. },
  4548. {
  4549. name: "DEFCON 0",
  4550. height: math.unit(3, "gigaparsecs")
  4551. },
  4552. ]
  4553. ))
  4554. characterMakers.push(() => makeCharacter(
  4555. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4556. {
  4557. front: {
  4558. height: math.unit(2, "meters"),
  4559. weight: math.unit(76, "kg"),
  4560. name: "Front",
  4561. image: {
  4562. source: "./media/characters/gale/front.svg"
  4563. }
  4564. },
  4565. frontAlt1: {
  4566. height: math.unit(2, "meters"),
  4567. weight: math.unit(76, "kg"),
  4568. name: "Front (Alt 1)",
  4569. image: {
  4570. source: "./media/characters/gale/front-alt-1.svg"
  4571. }
  4572. },
  4573. frontAlt2: {
  4574. height: math.unit(2, "meters"),
  4575. weight: math.unit(76, "kg"),
  4576. name: "Front (Alt 2)",
  4577. image: {
  4578. source: "./media/characters/gale/front-alt-2.svg"
  4579. }
  4580. },
  4581. },
  4582. [
  4583. {
  4584. name: "Normal",
  4585. height: math.unit(7, "feet")
  4586. },
  4587. {
  4588. name: "Macro",
  4589. height: math.unit(150, "feet"),
  4590. default: true
  4591. },
  4592. {
  4593. name: "Macro+",
  4594. height: math.unit(300, "feet")
  4595. },
  4596. ]
  4597. ))
  4598. characterMakers.push(() => makeCharacter(
  4599. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4600. {
  4601. front: {
  4602. height: math.unit(5 + 10/12, "feet"),
  4603. weight: math.unit(67, "kg"),
  4604. name: "Front",
  4605. image: {
  4606. source: "./media/characters/draylen/front.svg",
  4607. extra: 832/777,
  4608. bottom: 85/917
  4609. }
  4610. }
  4611. },
  4612. [
  4613. {
  4614. name: "Normal",
  4615. height: math.unit(5 + 10/12, "feet")
  4616. },
  4617. {
  4618. name: "Macro",
  4619. height: math.unit(150, "feet"),
  4620. default: true
  4621. }
  4622. ]
  4623. ))
  4624. characterMakers.push(() => makeCharacter(
  4625. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4626. {
  4627. front: {
  4628. height: math.unit(7 + 9 / 12, "feet"),
  4629. weight: math.unit(379, "lbs"),
  4630. name: "Front",
  4631. image: {
  4632. source: "./media/characters/chez/front.svg"
  4633. }
  4634. },
  4635. side: {
  4636. height: math.unit(7 + 9 / 12, "feet"),
  4637. weight: math.unit(379, "lbs"),
  4638. name: "Side",
  4639. image: {
  4640. source: "./media/characters/chez/side.svg"
  4641. }
  4642. }
  4643. },
  4644. [
  4645. {
  4646. name: "Normal",
  4647. height: math.unit(7 + 9 / 12, "feet"),
  4648. default: true
  4649. },
  4650. {
  4651. name: "God King",
  4652. height: math.unit(9750000, "meters")
  4653. }
  4654. ]
  4655. ))
  4656. characterMakers.push(() => makeCharacter(
  4657. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4658. {
  4659. front: {
  4660. height: math.unit(6, "feet"),
  4661. weight: math.unit(275, "lbs"),
  4662. name: "Front",
  4663. image: {
  4664. source: "./media/characters/kaylum/front.svg",
  4665. bottom: 0.01,
  4666. extra: 1166 / 1031
  4667. }
  4668. },
  4669. frontWingless: {
  4670. height: math.unit(6, "feet"),
  4671. weight: math.unit(275, "lbs"),
  4672. name: "Front (Wingless)",
  4673. image: {
  4674. source: "./media/characters/kaylum/front-wingless.svg",
  4675. bottom: 0.01,
  4676. extra: 1117 / 1031
  4677. }
  4678. }
  4679. },
  4680. [
  4681. {
  4682. name: "Normal",
  4683. height: math.unit(3.05, "meters")
  4684. },
  4685. {
  4686. name: "Master",
  4687. height: math.unit(5.5, "meters")
  4688. },
  4689. {
  4690. name: "Rampage",
  4691. height: math.unit(19, "meters")
  4692. },
  4693. {
  4694. name: "Macro Lite",
  4695. height: math.unit(37, "meters")
  4696. },
  4697. {
  4698. name: "Hyper Predator",
  4699. height: math.unit(61, "meters")
  4700. },
  4701. {
  4702. name: "Macro",
  4703. height: math.unit(138, "meters"),
  4704. default: true
  4705. }
  4706. ]
  4707. ))
  4708. characterMakers.push(() => makeCharacter(
  4709. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4710. {
  4711. front: {
  4712. height: math.unit(6, "feet"),
  4713. weight: math.unit(150, "lbs"),
  4714. name: "Front",
  4715. image: {
  4716. source: "./media/characters/geta/front.svg"
  4717. }
  4718. }
  4719. },
  4720. [
  4721. {
  4722. name: "Micro",
  4723. height: math.unit(3, "inches"),
  4724. default: true
  4725. },
  4726. {
  4727. name: "Normal",
  4728. height: math.unit(5 + 5 / 12, "feet")
  4729. }
  4730. ]
  4731. ))
  4732. characterMakers.push(() => makeCharacter(
  4733. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4734. {
  4735. front: {
  4736. height: math.unit(6, "feet"),
  4737. weight: math.unit(300, "lbs"),
  4738. name: "Front",
  4739. image: {
  4740. source: "./media/characters/tyrnn/front.svg"
  4741. }
  4742. }
  4743. },
  4744. [
  4745. {
  4746. name: "Main Height",
  4747. height: math.unit(355, "feet"),
  4748. default: true
  4749. },
  4750. {
  4751. name: "Fave. Height",
  4752. height: math.unit(2400, "feet")
  4753. }
  4754. ]
  4755. ))
  4756. characterMakers.push(() => makeCharacter(
  4757. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4758. {
  4759. front: {
  4760. height: math.unit(6, "feet"),
  4761. weight: math.unit(300, "lbs"),
  4762. name: "Front",
  4763. image: {
  4764. source: "./media/characters/appledectomy/front.svg"
  4765. }
  4766. }
  4767. },
  4768. [
  4769. {
  4770. name: "Macro",
  4771. height: math.unit(2500, "feet")
  4772. },
  4773. {
  4774. name: "Megamacro",
  4775. height: math.unit(50, "miles"),
  4776. default: true
  4777. },
  4778. {
  4779. name: "Gigamacro",
  4780. height: math.unit(5000, "miles")
  4781. },
  4782. {
  4783. name: "Teramacro",
  4784. height: math.unit(250000, "miles")
  4785. },
  4786. ]
  4787. ))
  4788. characterMakers.push(() => makeCharacter(
  4789. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4790. {
  4791. front: {
  4792. height: math.unit(6, "feet"),
  4793. weight: math.unit(200, "lbs"),
  4794. name: "Front",
  4795. image: {
  4796. source: "./media/characters/vulpes/front.svg",
  4797. extra: 573 / 543,
  4798. bottom: 0.033
  4799. }
  4800. },
  4801. side: {
  4802. height: math.unit(6, "feet"),
  4803. weight: math.unit(200, "lbs"),
  4804. name: "Side",
  4805. image: {
  4806. source: "./media/characters/vulpes/side.svg",
  4807. extra: 577 / 549,
  4808. bottom: 11 / 588
  4809. }
  4810. },
  4811. back: {
  4812. height: math.unit(6, "feet"),
  4813. weight: math.unit(200, "lbs"),
  4814. name: "Back",
  4815. image: {
  4816. source: "./media/characters/vulpes/back.svg",
  4817. extra: 573 / 549,
  4818. bottom: 20 / 593
  4819. }
  4820. },
  4821. feet: {
  4822. height: math.unit(1.276, "feet"),
  4823. name: "Feet",
  4824. image: {
  4825. source: "./media/characters/vulpes/feet.svg"
  4826. }
  4827. },
  4828. maw: {
  4829. height: math.unit(1.18, "feet"),
  4830. name: "Maw",
  4831. image: {
  4832. source: "./media/characters/vulpes/maw.svg"
  4833. }
  4834. },
  4835. },
  4836. [
  4837. {
  4838. name: "Micro",
  4839. height: math.unit(2, "inches")
  4840. },
  4841. {
  4842. name: "Normal",
  4843. height: math.unit(6.3, "feet")
  4844. },
  4845. {
  4846. name: "Macro",
  4847. height: math.unit(850, "feet")
  4848. },
  4849. {
  4850. name: "Megamacro",
  4851. height: math.unit(7500, "feet"),
  4852. default: true
  4853. },
  4854. {
  4855. name: "Gigamacro",
  4856. height: math.unit(570000, "miles")
  4857. }
  4858. ]
  4859. ))
  4860. characterMakers.push(() => makeCharacter(
  4861. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4862. {
  4863. front: {
  4864. height: math.unit(6, "feet"),
  4865. weight: math.unit(210, "lbs"),
  4866. name: "Front",
  4867. image: {
  4868. source: "./media/characters/rain-fallen/front.svg"
  4869. }
  4870. },
  4871. side: {
  4872. height: math.unit(6, "feet"),
  4873. weight: math.unit(210, "lbs"),
  4874. name: "Side",
  4875. image: {
  4876. source: "./media/characters/rain-fallen/side.svg"
  4877. }
  4878. },
  4879. back: {
  4880. height: math.unit(6, "feet"),
  4881. weight: math.unit(210, "lbs"),
  4882. name: "Back",
  4883. image: {
  4884. source: "./media/characters/rain-fallen/back.svg"
  4885. }
  4886. },
  4887. feral: {
  4888. height: math.unit(9, "feet"),
  4889. weight: math.unit(700, "lbs"),
  4890. name: "Feral",
  4891. image: {
  4892. source: "./media/characters/rain-fallen/feral.svg"
  4893. }
  4894. },
  4895. },
  4896. [
  4897. {
  4898. name: "Meddling with Mortals",
  4899. height: math.unit(8 + 8/12, "feet")
  4900. },
  4901. {
  4902. name: "Normal",
  4903. height: math.unit(5, "meter")
  4904. },
  4905. {
  4906. name: "Macro",
  4907. height: math.unit(150, "meter"),
  4908. default: true
  4909. },
  4910. {
  4911. name: "Megamacro",
  4912. height: math.unit(278e6, "meter")
  4913. },
  4914. {
  4915. name: "Gigamacro",
  4916. height: math.unit(2e9, "meter")
  4917. },
  4918. {
  4919. name: "Teramacro",
  4920. height: math.unit(8e12, "meter")
  4921. },
  4922. {
  4923. name: "Devourer",
  4924. height: math.unit(14, "zettameters")
  4925. },
  4926. {
  4927. name: "Scarlet King",
  4928. height: math.unit(18, "yottameters")
  4929. },
  4930. {
  4931. name: "Void",
  4932. height: math.unit(1e88, "yottameters")
  4933. }
  4934. ]
  4935. ))
  4936. characterMakers.push(() => makeCharacter(
  4937. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4938. {
  4939. standing: {
  4940. height: math.unit(6, "feet"),
  4941. weight: math.unit(180, "lbs"),
  4942. name: "Standing",
  4943. image: {
  4944. source: "./media/characters/zaakira/standing.svg",
  4945. extra: 1599/1504,
  4946. bottom: 39/1638
  4947. }
  4948. },
  4949. laying: {
  4950. height: math.unit(3, "feet"),
  4951. weight: math.unit(180, "lbs"),
  4952. name: "Laying",
  4953. image: {
  4954. source: "./media/characters/zaakira/laying.svg"
  4955. }
  4956. },
  4957. },
  4958. [
  4959. {
  4960. name: "Normal",
  4961. height: math.unit(12, "feet")
  4962. },
  4963. {
  4964. name: "Macro",
  4965. height: math.unit(279, "feet"),
  4966. default: true
  4967. }
  4968. ]
  4969. ))
  4970. characterMakers.push(() => makeCharacter(
  4971. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4972. {
  4973. femSfw: {
  4974. height: math.unit(8, "feet"),
  4975. weight: math.unit(350, "lb"),
  4976. name: "Fem",
  4977. image: {
  4978. source: "./media/characters/sigvald/fem-sfw.svg",
  4979. extra: 182 / 164,
  4980. bottom: 8.7 / 190.5
  4981. }
  4982. },
  4983. femNsfw: {
  4984. height: math.unit(8, "feet"),
  4985. weight: math.unit(350, "lb"),
  4986. name: "Fem (NSFW)",
  4987. image: {
  4988. source: "./media/characters/sigvald/fem-nsfw.svg",
  4989. extra: 182 / 164,
  4990. bottom: 8.7 / 190.5
  4991. }
  4992. },
  4993. maleNsfw: {
  4994. height: math.unit(8, "feet"),
  4995. weight: math.unit(350, "lb"),
  4996. name: "Male (NSFW)",
  4997. image: {
  4998. source: "./media/characters/sigvald/male-nsfw.svg",
  4999. extra: 182 / 164,
  5000. bottom: 8.7 / 190.5
  5001. }
  5002. },
  5003. hermNsfw: {
  5004. height: math.unit(8, "feet"),
  5005. weight: math.unit(350, "lb"),
  5006. name: "Herm (NSFW)",
  5007. image: {
  5008. source: "./media/characters/sigvald/herm-nsfw.svg",
  5009. extra: 182 / 164,
  5010. bottom: 8.7 / 190.5
  5011. }
  5012. },
  5013. dick: {
  5014. height: math.unit(2.36, "feet"),
  5015. name: "Dick",
  5016. image: {
  5017. source: "./media/characters/sigvald/dick.svg"
  5018. }
  5019. },
  5020. eye: {
  5021. height: math.unit(0.31, "feet"),
  5022. name: "Eye",
  5023. image: {
  5024. source: "./media/characters/sigvald/eye.svg"
  5025. }
  5026. },
  5027. mouth: {
  5028. height: math.unit(0.92, "feet"),
  5029. name: "Mouth",
  5030. image: {
  5031. source: "./media/characters/sigvald/mouth.svg"
  5032. }
  5033. },
  5034. paws: {
  5035. height: math.unit(2.2, "feet"),
  5036. name: "Paws",
  5037. image: {
  5038. source: "./media/characters/sigvald/paws.svg"
  5039. }
  5040. }
  5041. },
  5042. [
  5043. {
  5044. name: "Normal",
  5045. height: math.unit(8, "feet")
  5046. },
  5047. {
  5048. name: "Large",
  5049. height: math.unit(12, "feet")
  5050. },
  5051. {
  5052. name: "Larger",
  5053. height: math.unit(20, "feet")
  5054. },
  5055. {
  5056. name: "Macro",
  5057. height: math.unit(150, "feet")
  5058. },
  5059. {
  5060. name: "Macro+",
  5061. height: math.unit(200, "feet"),
  5062. default: true
  5063. },
  5064. ]
  5065. ))
  5066. characterMakers.push(() => makeCharacter(
  5067. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5068. {
  5069. side: {
  5070. height: math.unit(12, "feet"),
  5071. weight: math.unit(2000, "kg"),
  5072. name: "Side",
  5073. image: {
  5074. source: "./media/characters/scott/side.svg",
  5075. extra: 754 / 724,
  5076. bottom: 0.069
  5077. }
  5078. },
  5079. upright: {
  5080. height: math.unit(12, "feet"),
  5081. weight: math.unit(2000, "kg"),
  5082. name: "Upright",
  5083. image: {
  5084. source: "./media/characters/scott/upright.svg",
  5085. extra: 3881 / 3722,
  5086. bottom: 0.05
  5087. }
  5088. },
  5089. },
  5090. [
  5091. {
  5092. name: "Normal",
  5093. height: math.unit(12, "feet"),
  5094. default: true
  5095. },
  5096. ]
  5097. ))
  5098. characterMakers.push(() => makeCharacter(
  5099. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5100. {
  5101. side: {
  5102. height: math.unit(8, "meters"),
  5103. weight: math.unit(84755, "lbs"),
  5104. name: "Side",
  5105. image: {
  5106. source: "./media/characters/tobias/side.svg",
  5107. extra: 1474 / 1096,
  5108. bottom: 38.9 / 1513.1235
  5109. }
  5110. },
  5111. },
  5112. [
  5113. {
  5114. name: "Normal",
  5115. height: math.unit(8, "meters"),
  5116. default: true
  5117. },
  5118. ]
  5119. ))
  5120. characterMakers.push(() => makeCharacter(
  5121. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5122. {
  5123. front: {
  5124. height: math.unit(5.5, "feet"),
  5125. weight: math.unit(400, "lbs"),
  5126. name: "Front",
  5127. image: {
  5128. source: "./media/characters/kieran/front.svg",
  5129. extra: 2694 / 2364,
  5130. bottom: 217 / 2908
  5131. }
  5132. },
  5133. side: {
  5134. height: math.unit(5.5, "feet"),
  5135. weight: math.unit(400, "lbs"),
  5136. name: "Side",
  5137. image: {
  5138. source: "./media/characters/kieran/side.svg",
  5139. extra: 875 / 777,
  5140. bottom: 84.6 / 959
  5141. }
  5142. },
  5143. },
  5144. [
  5145. {
  5146. name: "Normal",
  5147. height: math.unit(5.5, "feet"),
  5148. default: true
  5149. },
  5150. ]
  5151. ))
  5152. characterMakers.push(() => makeCharacter(
  5153. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5154. {
  5155. side: {
  5156. height: math.unit(2, "meters"),
  5157. weight: math.unit(70, "kg"),
  5158. name: "Side",
  5159. image: {
  5160. source: "./media/characters/sanya/side.svg",
  5161. bottom: 0.02,
  5162. extra: 1.02
  5163. }
  5164. },
  5165. },
  5166. [
  5167. {
  5168. name: "Small",
  5169. height: math.unit(2, "meters")
  5170. },
  5171. {
  5172. name: "Normal",
  5173. height: math.unit(3, "meters")
  5174. },
  5175. {
  5176. name: "Macro",
  5177. height: math.unit(16, "meters"),
  5178. default: true
  5179. },
  5180. ]
  5181. ))
  5182. characterMakers.push(() => makeCharacter(
  5183. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5184. {
  5185. front: {
  5186. height: math.unit(2, "meters"),
  5187. weight: math.unit(120, "kg"),
  5188. name: "Front",
  5189. image: {
  5190. source: "./media/characters/miranda/front.svg",
  5191. extra: 195 / 185,
  5192. bottom: 10.9 / 206.5
  5193. }
  5194. },
  5195. back: {
  5196. height: math.unit(2, "meters"),
  5197. weight: math.unit(120, "kg"),
  5198. name: "Back",
  5199. image: {
  5200. source: "./media/characters/miranda/back.svg",
  5201. extra: 201 / 193,
  5202. bottom: 2.3 / 203.7
  5203. }
  5204. },
  5205. },
  5206. [
  5207. {
  5208. name: "Normal",
  5209. height: math.unit(10, "feet"),
  5210. default: true
  5211. }
  5212. ]
  5213. ))
  5214. characterMakers.push(() => makeCharacter(
  5215. { name: "James", species: ["deer"], tags: ["anthro"] },
  5216. {
  5217. side: {
  5218. height: math.unit(2, "meters"),
  5219. weight: math.unit(100, "kg"),
  5220. name: "Front",
  5221. image: {
  5222. source: "./media/characters/james/front.svg",
  5223. extra: 10 / 8.5
  5224. }
  5225. },
  5226. },
  5227. [
  5228. {
  5229. name: "Normal",
  5230. height: math.unit(8.5, "feet"),
  5231. default: true
  5232. }
  5233. ]
  5234. ))
  5235. characterMakers.push(() => makeCharacter(
  5236. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5237. {
  5238. side: {
  5239. height: math.unit(9.5, "feet"),
  5240. weight: math.unit(2500, "lbs"),
  5241. name: "Side",
  5242. image: {
  5243. source: "./media/characters/heather/side.svg"
  5244. }
  5245. },
  5246. },
  5247. [
  5248. {
  5249. name: "Normal",
  5250. height: math.unit(9.5, "feet"),
  5251. default: true
  5252. }
  5253. ]
  5254. ))
  5255. characterMakers.push(() => makeCharacter(
  5256. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5257. {
  5258. side: {
  5259. height: math.unit(6.5, "feet"),
  5260. weight: math.unit(400, "lbs"),
  5261. name: "Side",
  5262. image: {
  5263. source: "./media/characters/lukas/side.svg",
  5264. extra: 7.25 / 6.5
  5265. }
  5266. },
  5267. },
  5268. [
  5269. {
  5270. name: "Normal",
  5271. height: math.unit(6.5, "feet"),
  5272. default: true
  5273. }
  5274. ]
  5275. ))
  5276. characterMakers.push(() => makeCharacter(
  5277. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5278. {
  5279. side: {
  5280. height: math.unit(5, "feet"),
  5281. weight: math.unit(3000, "lbs"),
  5282. name: "Side",
  5283. image: {
  5284. source: "./media/characters/louise/side.svg"
  5285. }
  5286. },
  5287. },
  5288. [
  5289. {
  5290. name: "Normal",
  5291. height: math.unit(5, "feet"),
  5292. default: true
  5293. }
  5294. ]
  5295. ))
  5296. characterMakers.push(() => makeCharacter(
  5297. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5298. {
  5299. side: {
  5300. height: math.unit(6, "feet"),
  5301. weight: math.unit(150, "lbs"),
  5302. name: "Side",
  5303. image: {
  5304. source: "./media/characters/ramona/side.svg",
  5305. extra: 871/854,
  5306. bottom: 41/912
  5307. }
  5308. },
  5309. },
  5310. [
  5311. {
  5312. name: "Normal",
  5313. height: math.unit(5.3, "meters"),
  5314. default: true
  5315. },
  5316. {
  5317. name: "Macro",
  5318. height: math.unit(20, "stories")
  5319. },
  5320. {
  5321. name: "Macro+",
  5322. height: math.unit(50, "stories")
  5323. },
  5324. ]
  5325. ))
  5326. characterMakers.push(() => makeCharacter(
  5327. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5328. {
  5329. standing: {
  5330. height: math.unit(5.75, "feet"),
  5331. weight: math.unit(160, "lbs"),
  5332. name: "Standing",
  5333. image: {
  5334. source: "./media/characters/deerpuff/standing.svg",
  5335. extra: 682 / 624
  5336. }
  5337. },
  5338. sitting: {
  5339. height: math.unit(5.75 / 1.79, "feet"),
  5340. weight: math.unit(160, "lbs"),
  5341. name: "Sitting",
  5342. image: {
  5343. source: "./media/characters/deerpuff/sitting.svg",
  5344. bottom: 44 / 400,
  5345. extra: 1
  5346. }
  5347. },
  5348. taurLaying: {
  5349. height: math.unit(6, "feet"),
  5350. weight: math.unit(400, "lbs"),
  5351. name: "Taur (Laying)",
  5352. image: {
  5353. source: "./media/characters/deerpuff/taur-laying.svg"
  5354. }
  5355. },
  5356. },
  5357. [
  5358. {
  5359. name: "Puffball",
  5360. height: math.unit(6, "inches")
  5361. },
  5362. {
  5363. name: "Normalpuff",
  5364. height: math.unit(5.75, "feet")
  5365. },
  5366. {
  5367. name: "Macropuff",
  5368. height: math.unit(1500, "feet"),
  5369. default: true
  5370. },
  5371. {
  5372. name: "Megapuff",
  5373. height: math.unit(500, "miles")
  5374. },
  5375. {
  5376. name: "Gigapuff",
  5377. height: math.unit(250000, "miles")
  5378. },
  5379. {
  5380. name: "Omegapuff",
  5381. height: math.unit(1000, "lightyears")
  5382. },
  5383. ]
  5384. ))
  5385. characterMakers.push(() => makeCharacter(
  5386. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5387. {
  5388. stomping: {
  5389. height: math.unit(6, "feet"),
  5390. weight: math.unit(170, "lbs"),
  5391. name: "Stomping",
  5392. image: {
  5393. source: "./media/characters/vivian/stomping.svg"
  5394. }
  5395. },
  5396. sitting: {
  5397. height: math.unit(6 / 1.75, "feet"),
  5398. weight: math.unit(170, "lbs"),
  5399. name: "Sitting",
  5400. image: {
  5401. source: "./media/characters/vivian/sitting.svg",
  5402. bottom: 1 / 6.4,
  5403. extra: 1,
  5404. }
  5405. },
  5406. },
  5407. [
  5408. {
  5409. name: "Normal",
  5410. height: math.unit(7, "feet"),
  5411. default: true
  5412. },
  5413. {
  5414. name: "Macro",
  5415. height: math.unit(10, "stories")
  5416. },
  5417. {
  5418. name: "Macro+",
  5419. height: math.unit(30, "stories")
  5420. },
  5421. {
  5422. name: "Megamacro",
  5423. height: math.unit(10, "miles")
  5424. },
  5425. {
  5426. name: "Megamacro+",
  5427. height: math.unit(2750000, "meters")
  5428. },
  5429. ]
  5430. ))
  5431. characterMakers.push(() => makeCharacter(
  5432. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5433. {
  5434. front: {
  5435. height: math.unit(6, "feet"),
  5436. weight: math.unit(160, "lbs"),
  5437. name: "Front",
  5438. image: {
  5439. source: "./media/characters/prince/front.svg",
  5440. extra: 3400 / 3000
  5441. }
  5442. },
  5443. jumping: {
  5444. height: math.unit(6, "feet"),
  5445. weight: math.unit(160, "lbs"),
  5446. name: "Jumping",
  5447. image: {
  5448. source: "./media/characters/prince/jump.svg",
  5449. extra: 2555 / 2134
  5450. }
  5451. },
  5452. },
  5453. [
  5454. {
  5455. name: "Normal",
  5456. height: math.unit(7.75, "feet"),
  5457. default: true
  5458. },
  5459. {
  5460. name: "Not cute",
  5461. height: math.unit(17, "feet")
  5462. },
  5463. {
  5464. name: "I said NOT",
  5465. height: math.unit(91, "feet")
  5466. },
  5467. {
  5468. name: "Please stop",
  5469. height: math.unit(560, "feet")
  5470. },
  5471. {
  5472. name: "What have you done",
  5473. height: math.unit(2200, "feet")
  5474. },
  5475. {
  5476. name: "Deer God",
  5477. height: math.unit(3.6, "miles")
  5478. },
  5479. ]
  5480. ))
  5481. characterMakers.push(() => makeCharacter(
  5482. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5483. {
  5484. standing: {
  5485. height: math.unit(6, "feet"),
  5486. weight: math.unit(300, "lbs"),
  5487. name: "Standing",
  5488. image: {
  5489. source: "./media/characters/psymon/standing.svg",
  5490. extra: 1888 / 1810,
  5491. bottom: 0.05
  5492. }
  5493. },
  5494. slithering: {
  5495. height: math.unit(6, "feet"),
  5496. weight: math.unit(300, "lbs"),
  5497. name: "Slithering",
  5498. image: {
  5499. source: "./media/characters/psymon/slithering.svg",
  5500. extra: 1330 / 1224
  5501. }
  5502. },
  5503. slitheringAlt: {
  5504. height: math.unit(6, "feet"),
  5505. weight: math.unit(300, "lbs"),
  5506. name: "Slithering (Alt)",
  5507. image: {
  5508. source: "./media/characters/psymon/slithering-alt.svg",
  5509. extra: 1330 / 1224
  5510. }
  5511. },
  5512. },
  5513. [
  5514. {
  5515. name: "Normal",
  5516. height: math.unit(11.25, "feet"),
  5517. default: true
  5518. },
  5519. {
  5520. name: "Large",
  5521. height: math.unit(27, "feet")
  5522. },
  5523. {
  5524. name: "Giant",
  5525. height: math.unit(87, "feet")
  5526. },
  5527. {
  5528. name: "Macro",
  5529. height: math.unit(365, "feet")
  5530. },
  5531. {
  5532. name: "Megamacro",
  5533. height: math.unit(3, "miles")
  5534. },
  5535. {
  5536. name: "World Serpent",
  5537. height: math.unit(8000, "miles")
  5538. },
  5539. ]
  5540. ))
  5541. characterMakers.push(() => makeCharacter(
  5542. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5543. {
  5544. front: {
  5545. height: math.unit(6, "feet"),
  5546. weight: math.unit(180, "lbs"),
  5547. name: "Front",
  5548. image: {
  5549. source: "./media/characters/daimos/front.svg",
  5550. extra: 4160 / 3897,
  5551. bottom: 0.021
  5552. }
  5553. }
  5554. },
  5555. [
  5556. {
  5557. name: "Normal",
  5558. height: math.unit(8, "feet"),
  5559. default: true
  5560. },
  5561. {
  5562. name: "Big Dog",
  5563. height: math.unit(22, "feet")
  5564. },
  5565. {
  5566. name: "Macro",
  5567. height: math.unit(127, "feet")
  5568. },
  5569. {
  5570. name: "Megamacro",
  5571. height: math.unit(3600, "feet")
  5572. },
  5573. ]
  5574. ))
  5575. characterMakers.push(() => makeCharacter(
  5576. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5577. {
  5578. side: {
  5579. height: math.unit(6, "feet"),
  5580. weight: math.unit(180, "lbs"),
  5581. name: "Side",
  5582. image: {
  5583. source: "./media/characters/blake/side.svg",
  5584. extra: 1212 / 1120,
  5585. bottom: 0.05
  5586. }
  5587. },
  5588. crouched: {
  5589. height: math.unit(6 * 0.57, "feet"),
  5590. weight: math.unit(180, "lbs"),
  5591. name: "Crouched",
  5592. image: {
  5593. source: "./media/characters/blake/crouched.svg",
  5594. extra: 840 / 587,
  5595. bottom: 0.04
  5596. }
  5597. },
  5598. bent: {
  5599. height: math.unit(6 * 0.75, "feet"),
  5600. weight: math.unit(180, "lbs"),
  5601. name: "Bent",
  5602. image: {
  5603. source: "./media/characters/blake/bent.svg",
  5604. extra: 592 / 544,
  5605. bottom: 0.035
  5606. }
  5607. },
  5608. },
  5609. [
  5610. {
  5611. name: "Normal",
  5612. height: math.unit(8 + 1 / 6, "feet"),
  5613. default: true
  5614. },
  5615. {
  5616. name: "Big Backside",
  5617. height: math.unit(37, "feet")
  5618. },
  5619. {
  5620. name: "Subway Shredder",
  5621. height: math.unit(72, "feet")
  5622. },
  5623. {
  5624. name: "City Carver",
  5625. height: math.unit(1675, "feet")
  5626. },
  5627. {
  5628. name: "Tectonic Tweaker",
  5629. height: math.unit(2300, "miles")
  5630. },
  5631. ]
  5632. ))
  5633. characterMakers.push(() => makeCharacter(
  5634. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5635. {
  5636. front: {
  5637. height: math.unit(6, "feet"),
  5638. weight: math.unit(180, "lbs"),
  5639. name: "Front",
  5640. image: {
  5641. source: "./media/characters/guisetto/front.svg",
  5642. extra: 856 / 817,
  5643. bottom: 0.06
  5644. }
  5645. },
  5646. airborne: {
  5647. height: math.unit(6, "feet"),
  5648. weight: math.unit(180, "lbs"),
  5649. name: "Airborne",
  5650. image: {
  5651. source: "./media/characters/guisetto/airborne.svg",
  5652. extra: 584 / 525
  5653. }
  5654. },
  5655. },
  5656. [
  5657. {
  5658. name: "Normal",
  5659. height: math.unit(10 + 11 / 12, "feet"),
  5660. default: true
  5661. },
  5662. {
  5663. name: "Large",
  5664. height: math.unit(35, "feet")
  5665. },
  5666. {
  5667. name: "Macro",
  5668. height: math.unit(475, "feet")
  5669. },
  5670. ]
  5671. ))
  5672. characterMakers.push(() => makeCharacter(
  5673. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5674. {
  5675. front: {
  5676. height: math.unit(6, "feet"),
  5677. weight: math.unit(180, "lbs"),
  5678. name: "Front",
  5679. image: {
  5680. source: "./media/characters/luxor/front.svg",
  5681. extra: 2940 / 2152
  5682. }
  5683. },
  5684. back: {
  5685. height: math.unit(6, "feet"),
  5686. weight: math.unit(180, "lbs"),
  5687. name: "Back",
  5688. image: {
  5689. source: "./media/characters/luxor/back.svg",
  5690. extra: 1083 / 960
  5691. }
  5692. },
  5693. },
  5694. [
  5695. {
  5696. name: "Normal",
  5697. height: math.unit(5 + 5 / 6, "feet"),
  5698. default: true
  5699. },
  5700. {
  5701. name: "Lamp",
  5702. height: math.unit(50, "feet")
  5703. },
  5704. {
  5705. name: "Lämp",
  5706. height: math.unit(300, "feet")
  5707. },
  5708. {
  5709. name: "The sun is a lamp",
  5710. height: math.unit(250000, "miles")
  5711. },
  5712. ]
  5713. ))
  5714. characterMakers.push(() => makeCharacter(
  5715. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5716. {
  5717. front: {
  5718. height: math.unit(6, "feet"),
  5719. weight: math.unit(50, "lbs"),
  5720. name: "Front",
  5721. image: {
  5722. source: "./media/characters/huoyan/front.svg"
  5723. }
  5724. },
  5725. side: {
  5726. height: math.unit(6, "feet"),
  5727. weight: math.unit(180, "lbs"),
  5728. name: "Side",
  5729. image: {
  5730. source: "./media/characters/huoyan/side.svg"
  5731. }
  5732. },
  5733. },
  5734. [
  5735. {
  5736. name: "Chef",
  5737. height: math.unit(9, "feet")
  5738. },
  5739. {
  5740. name: "Normal",
  5741. height: math.unit(65, "feet"),
  5742. default: true
  5743. },
  5744. {
  5745. name: "Macro",
  5746. height: math.unit(780, "feet")
  5747. },
  5748. {
  5749. name: "Flaming Mountain",
  5750. height: math.unit(4.8, "miles")
  5751. },
  5752. {
  5753. name: "Celestial",
  5754. height: math.unit(765000, "miles")
  5755. },
  5756. ]
  5757. ))
  5758. characterMakers.push(() => makeCharacter(
  5759. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5760. {
  5761. front: {
  5762. height: math.unit(5 + 3 / 4, "feet"),
  5763. weight: math.unit(120, "lbs"),
  5764. name: "Front",
  5765. image: {
  5766. source: "./media/characters/tails/front.svg"
  5767. }
  5768. }
  5769. },
  5770. [
  5771. {
  5772. name: "Normal",
  5773. height: math.unit(5 + 3 / 4, "feet"),
  5774. default: true
  5775. }
  5776. ]
  5777. ))
  5778. characterMakers.push(() => makeCharacter(
  5779. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5780. {
  5781. front: {
  5782. height: math.unit(4, "feet"),
  5783. weight: math.unit(50, "lbs"),
  5784. name: "Front",
  5785. image: {
  5786. source: "./media/characters/rainy/front.svg"
  5787. }
  5788. }
  5789. },
  5790. [
  5791. {
  5792. name: "Macro",
  5793. height: math.unit(800, "feet"),
  5794. default: true
  5795. }
  5796. ]
  5797. ))
  5798. characterMakers.push(() => makeCharacter(
  5799. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5800. {
  5801. front: {
  5802. height: math.unit(6, "feet"),
  5803. weight: math.unit(150, "lbs"),
  5804. name: "Front",
  5805. image: {
  5806. source: "./media/characters/rainier/front.svg"
  5807. }
  5808. }
  5809. },
  5810. [
  5811. {
  5812. name: "Micro",
  5813. height: math.unit(2, "mm"),
  5814. default: true
  5815. }
  5816. ]
  5817. ))
  5818. characterMakers.push(() => makeCharacter(
  5819. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5820. {
  5821. front: {
  5822. height: math.unit(8 + 4/12, "feet"),
  5823. name: "Front",
  5824. image: {
  5825. source: "./media/characters/andy-renard/front.svg",
  5826. extra: 1839/1726,
  5827. bottom: 134/1973
  5828. }
  5829. },
  5830. back: {
  5831. height: math.unit(8 + 4/12, "feet"),
  5832. name: "Back",
  5833. image: {
  5834. source: "./media/characters/andy-renard/back.svg",
  5835. extra: 1838/1710,
  5836. bottom: 105/1943
  5837. }
  5838. },
  5839. },
  5840. [
  5841. {
  5842. name: "Tall",
  5843. height: math.unit(8 + 4/12, "feet")
  5844. },
  5845. {
  5846. name: "Mini Macro",
  5847. height: math.unit(15, "feet"),
  5848. default: true
  5849. },
  5850. {
  5851. name: "Macro",
  5852. height: math.unit(100, "feet")
  5853. },
  5854. {
  5855. name: "Mega Macro",
  5856. height: math.unit(1000, "feet")
  5857. },
  5858. {
  5859. name: "Giga Macro",
  5860. height: math.unit(10, "miles")
  5861. },
  5862. {
  5863. name: "God Macro",
  5864. height: math.unit(1, "multiverse")
  5865. },
  5866. ]
  5867. ))
  5868. characterMakers.push(() => makeCharacter(
  5869. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5870. {
  5871. front: {
  5872. height: math.unit(6, "feet"),
  5873. weight: math.unit(210, "lbs"),
  5874. name: "Front",
  5875. image: {
  5876. source: "./media/characters/cimmaron/front-sfw.svg",
  5877. extra: 701 / 676,
  5878. bottom: 0.046
  5879. }
  5880. },
  5881. back: {
  5882. height: math.unit(6, "feet"),
  5883. weight: math.unit(210, "lbs"),
  5884. name: "Back",
  5885. image: {
  5886. source: "./media/characters/cimmaron/back-sfw.svg",
  5887. extra: 701 / 676,
  5888. bottom: 0.046
  5889. }
  5890. },
  5891. frontNsfw: {
  5892. height: math.unit(6, "feet"),
  5893. weight: math.unit(210, "lbs"),
  5894. name: "Front (NSFW)",
  5895. image: {
  5896. source: "./media/characters/cimmaron/front-nsfw.svg",
  5897. extra: 701 / 676,
  5898. bottom: 0.046
  5899. }
  5900. },
  5901. backNsfw: {
  5902. height: math.unit(6, "feet"),
  5903. weight: math.unit(210, "lbs"),
  5904. name: "Back (NSFW)",
  5905. image: {
  5906. source: "./media/characters/cimmaron/back-nsfw.svg",
  5907. extra: 701 / 676,
  5908. bottom: 0.046
  5909. }
  5910. },
  5911. dick: {
  5912. height: math.unit(1.714, "feet"),
  5913. name: "Dick",
  5914. image: {
  5915. source: "./media/characters/cimmaron/dick.svg"
  5916. }
  5917. },
  5918. },
  5919. [
  5920. {
  5921. name: "Normal",
  5922. height: math.unit(6, "feet"),
  5923. default: true
  5924. },
  5925. {
  5926. name: "Macro Mayor",
  5927. height: math.unit(350, "meters")
  5928. },
  5929. ]
  5930. ))
  5931. characterMakers.push(() => makeCharacter(
  5932. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5933. {
  5934. front: {
  5935. height: math.unit(6, "feet"),
  5936. weight: math.unit(200, "lbs"),
  5937. name: "Front",
  5938. image: {
  5939. source: "./media/characters/akari/front.svg",
  5940. extra: 962 / 901,
  5941. bottom: 0.04
  5942. }
  5943. }
  5944. },
  5945. [
  5946. {
  5947. name: "Micro",
  5948. height: math.unit(5, "inches"),
  5949. default: true
  5950. },
  5951. {
  5952. name: "Normal",
  5953. height: math.unit(7, "feet")
  5954. },
  5955. ]
  5956. ))
  5957. characterMakers.push(() => makeCharacter(
  5958. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5959. {
  5960. front: {
  5961. height: math.unit(6, "feet"),
  5962. weight: math.unit(140, "lbs"),
  5963. name: "Front",
  5964. image: {
  5965. source: "./media/characters/cynosura/front.svg",
  5966. extra: 896 / 847
  5967. }
  5968. },
  5969. back: {
  5970. height: math.unit(6, "feet"),
  5971. weight: math.unit(140, "lbs"),
  5972. name: "Back",
  5973. image: {
  5974. source: "./media/characters/cynosura/back.svg",
  5975. extra: 1365 / 1250
  5976. }
  5977. },
  5978. },
  5979. [
  5980. {
  5981. name: "Micro",
  5982. height: math.unit(4, "inches")
  5983. },
  5984. {
  5985. name: "Normal",
  5986. height: math.unit(5.75, "feet"),
  5987. default: true
  5988. },
  5989. {
  5990. name: "Tall",
  5991. height: math.unit(10, "feet")
  5992. },
  5993. {
  5994. name: "Big",
  5995. height: math.unit(20, "feet")
  5996. },
  5997. {
  5998. name: "Macro",
  5999. height: math.unit(50, "feet")
  6000. },
  6001. ]
  6002. ))
  6003. characterMakers.push(() => makeCharacter(
  6004. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6005. {
  6006. front: {
  6007. height: math.unit(13 + 2/12, "feet"),
  6008. weight: math.unit(800, "kg"),
  6009. name: "Front",
  6010. image: {
  6011. source: "./media/characters/gin/front.svg",
  6012. extra: 1312/1191,
  6013. bottom: 45/1357
  6014. }
  6015. },
  6016. mouth: {
  6017. height: math.unit(2.39 * 1.8, "feet"),
  6018. name: "Mouth",
  6019. image: {
  6020. source: "./media/characters/gin/mouth.svg"
  6021. }
  6022. },
  6023. hand: {
  6024. height: math.unit(1.57 * 2.19, "feet"),
  6025. name: "Hand",
  6026. image: {
  6027. source: "./media/characters/gin/hand.svg"
  6028. }
  6029. },
  6030. foot: {
  6031. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6032. name: "Foot",
  6033. image: {
  6034. source: "./media/characters/gin/foot.svg"
  6035. }
  6036. },
  6037. sole: {
  6038. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6039. name: "Sole",
  6040. image: {
  6041. source: "./media/characters/gin/sole.svg"
  6042. }
  6043. },
  6044. },
  6045. [
  6046. {
  6047. name: "Very Small",
  6048. height: math.unit(13 + 2 / 12, "feet")
  6049. },
  6050. {
  6051. name: "Micro",
  6052. height: math.unit(600, "miles")
  6053. },
  6054. {
  6055. name: "Regular",
  6056. height: math.unit(20, "earths"),
  6057. default: true
  6058. },
  6059. {
  6060. name: "Macro",
  6061. height: math.unit(2.2, "solarradii")
  6062. },
  6063. {
  6064. name: "Teramacro",
  6065. height: math.unit(1.2, "galaxies")
  6066. },
  6067. {
  6068. name: "Omegamacro",
  6069. height: math.unit(200, "universes")
  6070. },
  6071. ]
  6072. ))
  6073. characterMakers.push(() => makeCharacter(
  6074. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6075. {
  6076. front: {
  6077. height: math.unit(6 + 1 / 6, "feet"),
  6078. weight: math.unit(178, "lbs"),
  6079. name: "Front",
  6080. image: {
  6081. source: "./media/characters/guy/front.svg"
  6082. }
  6083. }
  6084. },
  6085. [
  6086. {
  6087. name: "Normal",
  6088. height: math.unit(6 + 1 / 6, "feet"),
  6089. default: true
  6090. },
  6091. {
  6092. name: "Large",
  6093. height: math.unit(25 + 7 / 12, "feet")
  6094. },
  6095. {
  6096. name: "Macro",
  6097. height: math.unit(60 + 9 / 12, "feet")
  6098. },
  6099. {
  6100. name: "Macro+",
  6101. height: math.unit(246, "feet")
  6102. },
  6103. {
  6104. name: "Macro++",
  6105. height: math.unit(878, "feet")
  6106. }
  6107. ]
  6108. ))
  6109. characterMakers.push(() => makeCharacter(
  6110. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6111. {
  6112. front: {
  6113. height: math.unit(9, "feet"),
  6114. weight: math.unit(800, "lbs"),
  6115. name: "Front",
  6116. image: {
  6117. source: "./media/characters/tiberius/front.svg",
  6118. extra: 2295 / 2071
  6119. }
  6120. },
  6121. back: {
  6122. height: math.unit(9, "feet"),
  6123. weight: math.unit(800, "lbs"),
  6124. name: "Back",
  6125. image: {
  6126. source: "./media/characters/tiberius/back.svg",
  6127. extra: 2373 / 2160
  6128. }
  6129. },
  6130. },
  6131. [
  6132. {
  6133. name: "Normal",
  6134. height: math.unit(9, "feet"),
  6135. default: true
  6136. }
  6137. ]
  6138. ))
  6139. characterMakers.push(() => makeCharacter(
  6140. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6141. {
  6142. front: {
  6143. height: math.unit(6, "feet"),
  6144. weight: math.unit(600, "lbs"),
  6145. name: "Front",
  6146. image: {
  6147. source: "./media/characters/surgo/front.svg",
  6148. extra: 3591 / 2227
  6149. }
  6150. },
  6151. back: {
  6152. height: math.unit(6, "feet"),
  6153. weight: math.unit(600, "lbs"),
  6154. name: "Back",
  6155. image: {
  6156. source: "./media/characters/surgo/back.svg",
  6157. extra: 3557 / 2228
  6158. }
  6159. },
  6160. laying: {
  6161. height: math.unit(6 * 0.85, "feet"),
  6162. weight: math.unit(600, "lbs"),
  6163. name: "Laying",
  6164. image: {
  6165. source: "./media/characters/surgo/laying.svg"
  6166. }
  6167. },
  6168. },
  6169. [
  6170. {
  6171. name: "Normal",
  6172. height: math.unit(6, "feet"),
  6173. default: true
  6174. }
  6175. ]
  6176. ))
  6177. characterMakers.push(() => makeCharacter(
  6178. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6179. {
  6180. side: {
  6181. height: math.unit(6, "feet"),
  6182. weight: math.unit(150, "lbs"),
  6183. name: "Side",
  6184. image: {
  6185. source: "./media/characters/cibus/side.svg",
  6186. extra: 800 / 400
  6187. }
  6188. },
  6189. },
  6190. [
  6191. {
  6192. name: "Normal",
  6193. height: math.unit(6, "feet"),
  6194. default: true
  6195. }
  6196. ]
  6197. ))
  6198. characterMakers.push(() => makeCharacter(
  6199. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6200. {
  6201. front: {
  6202. height: math.unit(6, "feet"),
  6203. weight: math.unit(240, "lbs"),
  6204. name: "Front",
  6205. image: {
  6206. source: "./media/characters/nibbles/front.svg"
  6207. }
  6208. },
  6209. side: {
  6210. height: math.unit(6, "feet"),
  6211. weight: math.unit(240, "lbs"),
  6212. name: "Side",
  6213. image: {
  6214. source: "./media/characters/nibbles/side.svg"
  6215. }
  6216. },
  6217. },
  6218. [
  6219. {
  6220. name: "Normal",
  6221. height: math.unit(9, "feet"),
  6222. default: true
  6223. }
  6224. ]
  6225. ))
  6226. characterMakers.push(() => makeCharacter(
  6227. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6228. {
  6229. side: {
  6230. height: math.unit(5 + 1 / 6, "feet"),
  6231. weight: math.unit(130, "lbs"),
  6232. name: "Side",
  6233. image: {
  6234. source: "./media/characters/rikky/side.svg",
  6235. extra: 851 / 801
  6236. }
  6237. },
  6238. },
  6239. [
  6240. {
  6241. name: "Normal",
  6242. height: math.unit(5 + 1 / 6, "feet")
  6243. },
  6244. {
  6245. name: "Macro",
  6246. height: math.unit(152, "feet"),
  6247. default: true
  6248. },
  6249. {
  6250. name: "Megamacro",
  6251. height: math.unit(7, "miles")
  6252. }
  6253. ]
  6254. ))
  6255. characterMakers.push(() => makeCharacter(
  6256. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6257. {
  6258. side: {
  6259. height: math.unit(370, "cm"),
  6260. weight: math.unit(350, "lbs"),
  6261. name: "Side",
  6262. image: {
  6263. source: "./media/characters/malfressa/side.svg"
  6264. }
  6265. },
  6266. walking: {
  6267. height: math.unit(370, "cm"),
  6268. weight: math.unit(350, "lbs"),
  6269. name: "Walking",
  6270. image: {
  6271. source: "./media/characters/malfressa/walking.svg"
  6272. }
  6273. },
  6274. feral: {
  6275. height: math.unit(2500, "cm"),
  6276. weight: math.unit(100000, "lbs"),
  6277. name: "Feral",
  6278. image: {
  6279. source: "./media/characters/malfressa/feral.svg",
  6280. extra: 2108 / 837,
  6281. bottom: 0.02
  6282. }
  6283. },
  6284. },
  6285. [
  6286. {
  6287. name: "Normal",
  6288. height: math.unit(370, "cm")
  6289. },
  6290. {
  6291. name: "Macro",
  6292. height: math.unit(300, "meters"),
  6293. default: true
  6294. }
  6295. ]
  6296. ))
  6297. characterMakers.push(() => makeCharacter(
  6298. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6299. {
  6300. front: {
  6301. height: math.unit(6, "feet"),
  6302. weight: math.unit(60, "kg"),
  6303. name: "Front",
  6304. image: {
  6305. source: "./media/characters/jaro/front.svg"
  6306. }
  6307. },
  6308. back: {
  6309. height: math.unit(6, "feet"),
  6310. weight: math.unit(60, "kg"),
  6311. name: "Back",
  6312. image: {
  6313. source: "./media/characters/jaro/back.svg"
  6314. }
  6315. },
  6316. },
  6317. [
  6318. {
  6319. name: "Micro",
  6320. height: math.unit(7, "inches")
  6321. },
  6322. {
  6323. name: "Normal",
  6324. height: math.unit(5.5, "feet"),
  6325. default: true
  6326. },
  6327. {
  6328. name: "Minimacro",
  6329. height: math.unit(20, "feet")
  6330. },
  6331. {
  6332. name: "Macro",
  6333. height: math.unit(200, "meters")
  6334. }
  6335. ]
  6336. ))
  6337. characterMakers.push(() => makeCharacter(
  6338. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6339. {
  6340. front: {
  6341. height: math.unit(6, "feet"),
  6342. weight: math.unit(195, "lb"),
  6343. name: "Front",
  6344. image: {
  6345. source: "./media/characters/rogue/front.svg"
  6346. }
  6347. },
  6348. },
  6349. [
  6350. {
  6351. name: "Macro",
  6352. height: math.unit(90, "feet"),
  6353. default: true
  6354. },
  6355. ]
  6356. ))
  6357. characterMakers.push(() => makeCharacter(
  6358. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6359. {
  6360. front: {
  6361. height: math.unit(5 + 8 / 12, "feet"),
  6362. weight: math.unit(140, "lb"),
  6363. name: "Front",
  6364. image: {
  6365. source: "./media/characters/piper/front.svg",
  6366. extra: 3948/3655,
  6367. bottom: 0/3948
  6368. }
  6369. },
  6370. },
  6371. [
  6372. {
  6373. name: "Micro",
  6374. height: math.unit(2, "inches")
  6375. },
  6376. {
  6377. name: "Normal",
  6378. height: math.unit(5 + 8 / 12, "feet")
  6379. },
  6380. {
  6381. name: "Macro",
  6382. height: math.unit(250, "feet"),
  6383. default: true
  6384. },
  6385. {
  6386. name: "Megamacro",
  6387. height: math.unit(7, "miles")
  6388. },
  6389. ]
  6390. ))
  6391. characterMakers.push(() => makeCharacter(
  6392. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6393. {
  6394. front: {
  6395. height: math.unit(6, "feet"),
  6396. weight: math.unit(220, "lb"),
  6397. name: "Front",
  6398. image: {
  6399. source: "./media/characters/gemini/front.svg"
  6400. }
  6401. },
  6402. back: {
  6403. height: math.unit(6, "feet"),
  6404. weight: math.unit(220, "lb"),
  6405. name: "Back",
  6406. image: {
  6407. source: "./media/characters/gemini/back.svg"
  6408. }
  6409. },
  6410. kneeling: {
  6411. height: math.unit(6 / 1.5, "feet"),
  6412. weight: math.unit(220, "lb"),
  6413. name: "Kneeling",
  6414. image: {
  6415. source: "./media/characters/gemini/kneeling.svg",
  6416. bottom: 0.02
  6417. }
  6418. },
  6419. },
  6420. [
  6421. {
  6422. name: "Macro",
  6423. height: math.unit(300, "meters"),
  6424. default: true
  6425. },
  6426. {
  6427. name: "Megamacro",
  6428. height: math.unit(6900, "meters")
  6429. },
  6430. ]
  6431. ))
  6432. characterMakers.push(() => makeCharacter(
  6433. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6434. {
  6435. anthro: {
  6436. height: math.unit(2.35, "meters"),
  6437. weight: math.unit(73, "kg"),
  6438. name: "Anthro",
  6439. image: {
  6440. source: "./media/characters/alicia/anthro.svg",
  6441. extra: 2571 / 2385,
  6442. bottom: 75 / 2648
  6443. }
  6444. },
  6445. paw: {
  6446. height: math.unit(1.32, "feet"),
  6447. name: "Paw",
  6448. image: {
  6449. source: "./media/characters/alicia/paw.svg"
  6450. }
  6451. },
  6452. feral: {
  6453. height: math.unit(1.69, "meters"),
  6454. weight: math.unit(73, "kg"),
  6455. name: "Feral",
  6456. image: {
  6457. source: "./media/characters/alicia/feral.svg",
  6458. extra: 2123 / 1715,
  6459. bottom: 222 / 2349
  6460. }
  6461. },
  6462. },
  6463. [
  6464. {
  6465. name: "Normal",
  6466. height: math.unit(2.35, "meters")
  6467. },
  6468. {
  6469. name: "Macro",
  6470. height: math.unit(60, "meters"),
  6471. default: true
  6472. },
  6473. {
  6474. name: "Megamacro",
  6475. height: math.unit(10000, "kilometers")
  6476. },
  6477. ]
  6478. ))
  6479. characterMakers.push(() => makeCharacter(
  6480. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6481. {
  6482. front: {
  6483. height: math.unit(7, "feet"),
  6484. weight: math.unit(250, "lbs"),
  6485. name: "Front",
  6486. image: {
  6487. source: "./media/characters/archy/front.svg"
  6488. }
  6489. }
  6490. },
  6491. [
  6492. {
  6493. name: "Micro",
  6494. height: math.unit(1, "inch")
  6495. },
  6496. {
  6497. name: "Shorty",
  6498. height: math.unit(5, "feet")
  6499. },
  6500. {
  6501. name: "Normal",
  6502. height: math.unit(7, "feet")
  6503. },
  6504. {
  6505. name: "Macro",
  6506. height: math.unit(600, "meters"),
  6507. default: true
  6508. },
  6509. {
  6510. name: "Megamacro",
  6511. height: math.unit(1, "mile")
  6512. },
  6513. ]
  6514. ))
  6515. characterMakers.push(() => makeCharacter(
  6516. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6517. {
  6518. front: {
  6519. height: math.unit(1.65, "meters"),
  6520. weight: math.unit(74, "kg"),
  6521. name: "Front",
  6522. image: {
  6523. source: "./media/characters/berri/front.svg",
  6524. extra: 857 / 837,
  6525. bottom: 18 / 877
  6526. }
  6527. },
  6528. bum: {
  6529. height: math.unit(1.46, "feet"),
  6530. name: "Bum",
  6531. image: {
  6532. source: "./media/characters/berri/bum.svg"
  6533. }
  6534. },
  6535. mouth: {
  6536. height: math.unit(0.44, "feet"),
  6537. name: "Mouth",
  6538. image: {
  6539. source: "./media/characters/berri/mouth.svg"
  6540. }
  6541. },
  6542. paw: {
  6543. height: math.unit(0.826, "feet"),
  6544. name: "Paw",
  6545. image: {
  6546. source: "./media/characters/berri/paw.svg"
  6547. }
  6548. },
  6549. },
  6550. [
  6551. {
  6552. name: "Normal",
  6553. height: math.unit(1.65, "meters")
  6554. },
  6555. {
  6556. name: "Macro",
  6557. height: math.unit(60, "m"),
  6558. default: true
  6559. },
  6560. {
  6561. name: "Megamacro",
  6562. height: math.unit(9.213, "km")
  6563. },
  6564. {
  6565. name: "Planet Eater",
  6566. height: math.unit(489, "megameters")
  6567. },
  6568. {
  6569. name: "Teramacro",
  6570. height: math.unit(2471635000000, "meters")
  6571. },
  6572. {
  6573. name: "Examacro",
  6574. height: math.unit(8.0624e+26, "meters")
  6575. }
  6576. ]
  6577. ))
  6578. characterMakers.push(() => makeCharacter(
  6579. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6580. {
  6581. front: {
  6582. height: math.unit(1.72, "meters"),
  6583. weight: math.unit(68, "kg"),
  6584. name: "Front",
  6585. image: {
  6586. source: "./media/characters/lexi/front.svg"
  6587. }
  6588. }
  6589. },
  6590. [
  6591. {
  6592. name: "Very Smol",
  6593. height: math.unit(10, "mm")
  6594. },
  6595. {
  6596. name: "Micro",
  6597. height: math.unit(6.8, "cm"),
  6598. default: true
  6599. },
  6600. {
  6601. name: "Normal",
  6602. height: math.unit(1.72, "m")
  6603. }
  6604. ]
  6605. ))
  6606. characterMakers.push(() => makeCharacter(
  6607. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6608. {
  6609. front: {
  6610. height: math.unit(1.69, "meters"),
  6611. weight: math.unit(68, "kg"),
  6612. name: "Front",
  6613. image: {
  6614. source: "./media/characters/martin/front.svg",
  6615. extra: 596 / 581
  6616. }
  6617. }
  6618. },
  6619. [
  6620. {
  6621. name: "Micro",
  6622. height: math.unit(6.85, "cm"),
  6623. default: true
  6624. },
  6625. {
  6626. name: "Normal",
  6627. height: math.unit(1.69, "m")
  6628. }
  6629. ]
  6630. ))
  6631. characterMakers.push(() => makeCharacter(
  6632. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6633. {
  6634. front: {
  6635. height: math.unit(1.69, "meters"),
  6636. weight: math.unit(68, "kg"),
  6637. name: "Front",
  6638. image: {
  6639. source: "./media/characters/juno/front.svg"
  6640. }
  6641. }
  6642. },
  6643. [
  6644. {
  6645. name: "Micro",
  6646. height: math.unit(7, "cm")
  6647. },
  6648. {
  6649. name: "Normal",
  6650. height: math.unit(1.89, "m")
  6651. },
  6652. {
  6653. name: "Macro",
  6654. height: math.unit(353, "meters"),
  6655. default: true
  6656. }
  6657. ]
  6658. ))
  6659. characterMakers.push(() => makeCharacter(
  6660. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6661. {
  6662. front: {
  6663. height: math.unit(1.93, "meters"),
  6664. weight: math.unit(83, "kg"),
  6665. name: "Front",
  6666. image: {
  6667. source: "./media/characters/samantha/front.svg"
  6668. }
  6669. },
  6670. frontClothed: {
  6671. height: math.unit(1.93, "meters"),
  6672. weight: math.unit(83, "kg"),
  6673. name: "Front (Clothed)",
  6674. image: {
  6675. source: "./media/characters/samantha/front-clothed.svg"
  6676. }
  6677. },
  6678. back: {
  6679. height: math.unit(1.93, "meters"),
  6680. weight: math.unit(83, "kg"),
  6681. name: "Back",
  6682. image: {
  6683. source: "./media/characters/samantha/back.svg"
  6684. }
  6685. },
  6686. },
  6687. [
  6688. {
  6689. name: "Normal",
  6690. height: math.unit(1.93, "m")
  6691. },
  6692. {
  6693. name: "Macro",
  6694. height: math.unit(74, "meters"),
  6695. default: true
  6696. },
  6697. {
  6698. name: "Macro+",
  6699. height: math.unit(223, "meters"),
  6700. },
  6701. {
  6702. name: "Megamacro",
  6703. height: math.unit(8381, "meters"),
  6704. },
  6705. {
  6706. name: "Megamacro+",
  6707. height: math.unit(12000, "kilometers")
  6708. },
  6709. ]
  6710. ))
  6711. characterMakers.push(() => makeCharacter(
  6712. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6713. {
  6714. front: {
  6715. height: math.unit(1.92, "meters"),
  6716. weight: math.unit(80, "kg"),
  6717. name: "Front",
  6718. image: {
  6719. source: "./media/characters/dr-clay/front.svg"
  6720. }
  6721. },
  6722. frontClothed: {
  6723. height: math.unit(1.92, "meters"),
  6724. weight: math.unit(80, "kg"),
  6725. name: "Front (Clothed)",
  6726. image: {
  6727. source: "./media/characters/dr-clay/front-clothed.svg"
  6728. }
  6729. }
  6730. },
  6731. [
  6732. {
  6733. name: "Normal",
  6734. height: math.unit(1.92, "m")
  6735. },
  6736. {
  6737. name: "Macro",
  6738. height: math.unit(214, "meters"),
  6739. default: true
  6740. },
  6741. {
  6742. name: "Macro+",
  6743. height: math.unit(12.237, "meters"),
  6744. },
  6745. {
  6746. name: "Megamacro",
  6747. height: math.unit(557, "megameters"),
  6748. },
  6749. {
  6750. name: "Unimaginable",
  6751. height: math.unit(120e9, "lightyears")
  6752. },
  6753. ]
  6754. ))
  6755. characterMakers.push(() => makeCharacter(
  6756. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6757. {
  6758. front: {
  6759. height: math.unit(2, "meters"),
  6760. weight: math.unit(80, "kg"),
  6761. name: "Front",
  6762. image: {
  6763. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6764. }
  6765. }
  6766. },
  6767. [
  6768. {
  6769. name: "Teramacro",
  6770. height: math.unit(500000, "lightyears"),
  6771. default: true
  6772. },
  6773. ]
  6774. ))
  6775. characterMakers.push(() => makeCharacter(
  6776. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6777. {
  6778. crux: {
  6779. height: math.unit(2, "meters"),
  6780. weight: math.unit(150, "kg"),
  6781. name: "Crux",
  6782. image: {
  6783. source: "./media/characters/vemus/crux.svg",
  6784. extra: 1074/936,
  6785. bottom: 23/1097
  6786. }
  6787. },
  6788. skunkTanuki: {
  6789. height: math.unit(2, "meters"),
  6790. weight: math.unit(150, "kg"),
  6791. name: "Skunk-Tanuki",
  6792. image: {
  6793. source: "./media/characters/vemus/skunk-tanuki.svg",
  6794. extra: 926/893,
  6795. bottom: 20/946
  6796. }
  6797. },
  6798. },
  6799. [
  6800. {
  6801. name: "Normal",
  6802. height: math.unit(3.75, "meters"),
  6803. default: true
  6804. },
  6805. {
  6806. name: "Big",
  6807. height: math.unit(8, "meters")
  6808. },
  6809. {
  6810. name: "Macro",
  6811. height: math.unit(100, "meters")
  6812. },
  6813. {
  6814. name: "Macro+",
  6815. height: math.unit(1500, "meters")
  6816. },
  6817. {
  6818. name: "Stellar",
  6819. height: math.unit(14e8, "meters")
  6820. },
  6821. ]
  6822. ))
  6823. characterMakers.push(() => makeCharacter(
  6824. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6825. {
  6826. front: {
  6827. height: math.unit(2, "meters"),
  6828. weight: math.unit(70, "kg"),
  6829. name: "Front",
  6830. image: {
  6831. source: "./media/characters/beherit/front.svg",
  6832. extra: 1408 / 1242
  6833. }
  6834. }
  6835. },
  6836. [
  6837. {
  6838. name: "Normal",
  6839. height: math.unit(6, "feet")
  6840. },
  6841. {
  6842. name: "Lorg",
  6843. height: math.unit(25, "feet"),
  6844. default: true
  6845. },
  6846. {
  6847. name: "Lorger",
  6848. height: math.unit(75, "feet")
  6849. },
  6850. {
  6851. name: "Macro",
  6852. height: math.unit(200, "meters")
  6853. },
  6854. ]
  6855. ))
  6856. characterMakers.push(() => makeCharacter(
  6857. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6858. {
  6859. front: {
  6860. height: math.unit(2, "meters"),
  6861. weight: math.unit(150, "kg"),
  6862. name: "Front",
  6863. image: {
  6864. source: "./media/characters/everett/front.svg",
  6865. extra: 2038 / 1737,
  6866. bottom: 0.03
  6867. }
  6868. },
  6869. paw: {
  6870. height: math.unit(2 / 3.6, "meters"),
  6871. name: "Paw",
  6872. image: {
  6873. source: "./media/characters/everett/paw.svg"
  6874. }
  6875. },
  6876. },
  6877. [
  6878. {
  6879. name: "Normal",
  6880. height: math.unit(15, "feet"),
  6881. default: true
  6882. },
  6883. {
  6884. name: "Lorg",
  6885. height: math.unit(70, "feet"),
  6886. default: true
  6887. },
  6888. {
  6889. name: "Lorger",
  6890. height: math.unit(250, "feet")
  6891. },
  6892. {
  6893. name: "Macro",
  6894. height: math.unit(500, "meters")
  6895. },
  6896. ]
  6897. ))
  6898. characterMakers.push(() => makeCharacter(
  6899. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6900. {
  6901. front: {
  6902. height: math.unit(2, "meters"),
  6903. weight: math.unit(86, "kg"),
  6904. name: "Front",
  6905. image: {
  6906. source: "./media/characters/rose/front.svg",
  6907. extra: 1785/1636,
  6908. bottom: 30/1815
  6909. }
  6910. },
  6911. frontSporty: {
  6912. height: math.unit(2, "meters"),
  6913. weight: math.unit(86, "kg"),
  6914. name: "Front (Sporty)",
  6915. image: {
  6916. source: "./media/characters/rose/front-sporty.svg",
  6917. extra: 350/335,
  6918. bottom: 10/360
  6919. }
  6920. },
  6921. frontAlt: {
  6922. height: math.unit(1.6, "meters"),
  6923. weight: math.unit(86, "kg"),
  6924. name: "Front (Alt)",
  6925. image: {
  6926. source: "./media/characters/rose/front-alt.svg",
  6927. extra: 299/283,
  6928. bottom: 3/302
  6929. }
  6930. },
  6931. plush: {
  6932. height: math.unit(2, "meters"),
  6933. weight: math.unit(86/3, "kg"),
  6934. name: "Plush",
  6935. image: {
  6936. source: "./media/characters/rose/plush.svg",
  6937. extra: 361/337,
  6938. bottom: 11/372
  6939. }
  6940. },
  6941. },
  6942. [
  6943. {
  6944. name: "True Micro",
  6945. height: math.unit(9, "cm")
  6946. },
  6947. {
  6948. name: "Micro",
  6949. height: math.unit(16, "cm")
  6950. },
  6951. {
  6952. name: "Normal",
  6953. height: math.unit(1.85, "meters"),
  6954. default: true
  6955. },
  6956. {
  6957. name: "Mini-Macro",
  6958. height: math.unit(5, "meters")
  6959. },
  6960. {
  6961. name: "Macro",
  6962. height: math.unit(15, "meters")
  6963. },
  6964. {
  6965. name: "True Macro",
  6966. height: math.unit(40, "meters")
  6967. },
  6968. {
  6969. name: "City Scale",
  6970. height: math.unit(1, "km")
  6971. },
  6972. ]
  6973. ))
  6974. characterMakers.push(() => makeCharacter(
  6975. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6976. {
  6977. front: {
  6978. height: math.unit(2, "meters"),
  6979. weight: math.unit(350, "lbs"),
  6980. name: "Front",
  6981. image: {
  6982. source: "./media/characters/regal/front.svg"
  6983. }
  6984. },
  6985. back: {
  6986. height: math.unit(2, "meters"),
  6987. weight: math.unit(350, "lbs"),
  6988. name: "Back",
  6989. image: {
  6990. source: "./media/characters/regal/back.svg"
  6991. }
  6992. },
  6993. },
  6994. [
  6995. {
  6996. name: "Macro",
  6997. height: math.unit(350, "feet"),
  6998. default: true
  6999. }
  7000. ]
  7001. ))
  7002. characterMakers.push(() => makeCharacter(
  7003. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7004. {
  7005. front: {
  7006. height: math.unit(4 + 11 / 12, "feet"),
  7007. weight: math.unit(100, "lbs"),
  7008. name: "Front",
  7009. image: {
  7010. source: "./media/characters/opal/front.svg"
  7011. }
  7012. },
  7013. frontAlt: {
  7014. height: math.unit(4 + 11 / 12, "feet"),
  7015. weight: math.unit(100, "lbs"),
  7016. name: "Front (Alt)",
  7017. image: {
  7018. source: "./media/characters/opal/front-alt.svg"
  7019. }
  7020. },
  7021. },
  7022. [
  7023. {
  7024. name: "Small",
  7025. height: math.unit(4 + 11 / 12, "feet")
  7026. },
  7027. {
  7028. name: "Normal",
  7029. height: math.unit(20, "feet"),
  7030. default: true
  7031. },
  7032. {
  7033. name: "Macro",
  7034. height: math.unit(120, "feet")
  7035. },
  7036. {
  7037. name: "Megamacro",
  7038. height: math.unit(80, "miles")
  7039. },
  7040. {
  7041. name: "True Size",
  7042. height: math.unit(100000, "lightyears")
  7043. },
  7044. ]
  7045. ))
  7046. characterMakers.push(() => makeCharacter(
  7047. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7048. {
  7049. front: {
  7050. height: math.unit(6, "feet"),
  7051. weight: math.unit(200, "lbs"),
  7052. name: "Front",
  7053. image: {
  7054. source: "./media/characters/vector-wuff/front.svg"
  7055. }
  7056. }
  7057. },
  7058. [
  7059. {
  7060. name: "Normal",
  7061. height: math.unit(2.8, "meters")
  7062. },
  7063. {
  7064. name: "Macro",
  7065. height: math.unit(450, "meters"),
  7066. default: true
  7067. },
  7068. {
  7069. name: "Megamacro",
  7070. height: math.unit(15, "kilometers")
  7071. }
  7072. ]
  7073. ))
  7074. characterMakers.push(() => makeCharacter(
  7075. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7076. {
  7077. front: {
  7078. height: math.unit(6, "feet"),
  7079. weight: math.unit(256, "lbs"),
  7080. name: "Front",
  7081. image: {
  7082. source: "./media/characters/dannik/front.svg"
  7083. }
  7084. }
  7085. },
  7086. [
  7087. {
  7088. name: "Macro",
  7089. height: math.unit(69.57, "meters"),
  7090. default: true
  7091. },
  7092. ]
  7093. ))
  7094. characterMakers.push(() => makeCharacter(
  7095. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7096. {
  7097. front: {
  7098. height: math.unit(6, "feet"),
  7099. weight: math.unit(120, "lbs"),
  7100. name: "Front",
  7101. image: {
  7102. source: "./media/characters/azura-saharah/front.svg"
  7103. }
  7104. },
  7105. back: {
  7106. height: math.unit(6, "feet"),
  7107. weight: math.unit(120, "lbs"),
  7108. name: "Back",
  7109. image: {
  7110. source: "./media/characters/azura-saharah/back.svg"
  7111. }
  7112. },
  7113. },
  7114. [
  7115. {
  7116. name: "Macro",
  7117. height: math.unit(100, "feet"),
  7118. default: true
  7119. },
  7120. ]
  7121. ))
  7122. characterMakers.push(() => makeCharacter(
  7123. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7124. {
  7125. side: {
  7126. height: math.unit(5 + 4 / 12, "feet"),
  7127. weight: math.unit(163, "lbs"),
  7128. name: "Side",
  7129. image: {
  7130. source: "./media/characters/kennedy/side.svg"
  7131. }
  7132. }
  7133. },
  7134. [
  7135. {
  7136. name: "Standard Doggo",
  7137. height: math.unit(5 + 4 / 12, "feet")
  7138. },
  7139. {
  7140. name: "Big Doggo",
  7141. height: math.unit(25 + 3 / 12, "feet"),
  7142. default: true
  7143. },
  7144. ]
  7145. ))
  7146. characterMakers.push(() => makeCharacter(
  7147. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7148. {
  7149. front: {
  7150. height: math.unit(5 + 5/12, "feet"),
  7151. weight: math.unit(100, "lbs"),
  7152. name: "Front",
  7153. image: {
  7154. source: "./media/characters/odios-de-lunar/front.svg",
  7155. extra: 1468/1323,
  7156. bottom: 22/1490
  7157. }
  7158. }
  7159. },
  7160. [
  7161. {
  7162. name: "Micro",
  7163. height: math.unit(3, "inches")
  7164. },
  7165. {
  7166. name: "Normal",
  7167. height: math.unit(5.5, "feet"),
  7168. default: true
  7169. },
  7170. {
  7171. name: "Macro",
  7172. height: math.unit(100, "feet")
  7173. },
  7174. ]
  7175. ))
  7176. characterMakers.push(() => makeCharacter(
  7177. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7178. {
  7179. back: {
  7180. height: math.unit(6, "feet"),
  7181. weight: math.unit(220, "lbs"),
  7182. name: "Back",
  7183. image: {
  7184. source: "./media/characters/mandake/back.svg"
  7185. }
  7186. }
  7187. },
  7188. [
  7189. {
  7190. name: "Normal",
  7191. height: math.unit(7, "feet"),
  7192. default: true
  7193. },
  7194. {
  7195. name: "Macro",
  7196. height: math.unit(78, "feet")
  7197. },
  7198. {
  7199. name: "Macro+",
  7200. height: math.unit(300, "meters")
  7201. },
  7202. {
  7203. name: "Macro++",
  7204. height: math.unit(2400, "feet")
  7205. },
  7206. {
  7207. name: "Megamacro",
  7208. height: math.unit(5167, "meters")
  7209. },
  7210. {
  7211. name: "Gigamacro",
  7212. height: math.unit(41769, "miles")
  7213. },
  7214. ]
  7215. ))
  7216. characterMakers.push(() => makeCharacter(
  7217. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7218. {
  7219. front: {
  7220. height: math.unit(6, "feet"),
  7221. weight: math.unit(120, "lbs"),
  7222. name: "Front",
  7223. image: {
  7224. source: "./media/characters/yozey/front.svg"
  7225. }
  7226. },
  7227. frontAlt: {
  7228. height: math.unit(6, "feet"),
  7229. weight: math.unit(120, "lbs"),
  7230. name: "Front (Alt)",
  7231. image: {
  7232. source: "./media/characters/yozey/front-alt.svg"
  7233. }
  7234. },
  7235. side: {
  7236. height: math.unit(6, "feet"),
  7237. weight: math.unit(120, "lbs"),
  7238. name: "Side",
  7239. image: {
  7240. source: "./media/characters/yozey/side.svg"
  7241. }
  7242. },
  7243. },
  7244. [
  7245. {
  7246. name: "Micro",
  7247. height: math.unit(3, "inches"),
  7248. default: true
  7249. },
  7250. {
  7251. name: "Normal",
  7252. height: math.unit(6, "feet")
  7253. }
  7254. ]
  7255. ))
  7256. characterMakers.push(() => makeCharacter(
  7257. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7258. {
  7259. front: {
  7260. height: math.unit(6, "feet"),
  7261. weight: math.unit(103, "lbs"),
  7262. name: "Front",
  7263. image: {
  7264. source: "./media/characters/valeska-voss/front.svg"
  7265. }
  7266. }
  7267. },
  7268. [
  7269. {
  7270. name: "Mini-Sized Sub",
  7271. height: math.unit(3.1, "inches")
  7272. },
  7273. {
  7274. name: "Mid-Sized Sub",
  7275. height: math.unit(6.2, "inches")
  7276. },
  7277. {
  7278. name: "Full-Sized Sub",
  7279. height: math.unit(9.3, "inches")
  7280. },
  7281. {
  7282. name: "Normal",
  7283. height: math.unit(5 + 2 / 12, "foot"),
  7284. default: true
  7285. },
  7286. ]
  7287. ))
  7288. characterMakers.push(() => makeCharacter(
  7289. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7290. {
  7291. front: {
  7292. height: math.unit(6, "feet"),
  7293. weight: math.unit(160, "lbs"),
  7294. name: "Front",
  7295. image: {
  7296. source: "./media/characters/gene-zeta/front.svg",
  7297. extra: 3006 / 2826,
  7298. bottom: 182 / 3188
  7299. }
  7300. }
  7301. },
  7302. [
  7303. {
  7304. name: "Micro",
  7305. height: math.unit(6, "inches")
  7306. },
  7307. {
  7308. name: "Normal",
  7309. height: math.unit(5 + 11 / 12, "foot"),
  7310. default: true
  7311. },
  7312. {
  7313. name: "Macro",
  7314. height: math.unit(140, "feet")
  7315. },
  7316. {
  7317. name: "Supercharged",
  7318. height: math.unit(2500, "feet")
  7319. },
  7320. ]
  7321. ))
  7322. characterMakers.push(() => makeCharacter(
  7323. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7324. {
  7325. front: {
  7326. height: math.unit(6, "feet"),
  7327. weight: math.unit(350, "lbs"),
  7328. name: "Front",
  7329. image: {
  7330. source: "./media/characters/razinox/front.svg",
  7331. extra: 1686 / 1548,
  7332. bottom: 28.2 / 1868
  7333. }
  7334. },
  7335. back: {
  7336. height: math.unit(6, "feet"),
  7337. weight: math.unit(350, "lbs"),
  7338. name: "Back",
  7339. image: {
  7340. source: "./media/characters/razinox/back.svg",
  7341. extra: 1660 / 1590,
  7342. bottom: 15 / 1665
  7343. }
  7344. },
  7345. },
  7346. [
  7347. {
  7348. name: "Normal",
  7349. height: math.unit(10 + 8 / 12, "foot")
  7350. },
  7351. {
  7352. name: "Minimacro",
  7353. height: math.unit(15, "foot")
  7354. },
  7355. {
  7356. name: "Macro",
  7357. height: math.unit(60, "foot"),
  7358. default: true
  7359. },
  7360. {
  7361. name: "Megamacro",
  7362. height: math.unit(5, "miles")
  7363. },
  7364. {
  7365. name: "Gigamacro",
  7366. height: math.unit(6000, "miles")
  7367. },
  7368. ]
  7369. ))
  7370. characterMakers.push(() => makeCharacter(
  7371. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7372. {
  7373. front: {
  7374. height: math.unit(6, "feet"),
  7375. weight: math.unit(150, "lbs"),
  7376. name: "Front",
  7377. image: {
  7378. source: "./media/characters/cobalt/front.svg"
  7379. }
  7380. }
  7381. },
  7382. [
  7383. {
  7384. name: "Normal",
  7385. height: math.unit(8 + 1 / 12, "foot")
  7386. },
  7387. {
  7388. name: "Macro",
  7389. height: math.unit(111, "foot"),
  7390. default: true
  7391. },
  7392. {
  7393. name: "Supracosmic",
  7394. height: math.unit(1e42, "feet")
  7395. },
  7396. ]
  7397. ))
  7398. characterMakers.push(() => makeCharacter(
  7399. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7400. {
  7401. front: {
  7402. height: math.unit(6, "feet"),
  7403. weight: math.unit(140, "lbs"),
  7404. name: "Front",
  7405. image: {
  7406. source: "./media/characters/amanda/front.svg"
  7407. }
  7408. }
  7409. },
  7410. [
  7411. {
  7412. name: "Micro",
  7413. height: math.unit(5, "inches"),
  7414. default: true
  7415. },
  7416. ]
  7417. ))
  7418. characterMakers.push(() => makeCharacter(
  7419. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7420. {
  7421. front: {
  7422. height: math.unit(2.75, "meters"),
  7423. weight: math.unit(1200, "lb"),
  7424. name: "Front",
  7425. image: {
  7426. source: "./media/characters/teal/front.svg",
  7427. extra: 2463 / 2320,
  7428. bottom: 166 / 2629
  7429. }
  7430. },
  7431. back: {
  7432. height: math.unit(2.75, "meters"),
  7433. weight: math.unit(1200, "lb"),
  7434. name: "Back",
  7435. image: {
  7436. source: "./media/characters/teal/back.svg",
  7437. extra: 2580 / 2489,
  7438. bottom: 151 / 2731
  7439. }
  7440. },
  7441. sitting: {
  7442. height: math.unit(1.9, "meters"),
  7443. weight: math.unit(1200, "lb"),
  7444. name: "Sitting",
  7445. image: {
  7446. source: "./media/characters/teal/sitting.svg",
  7447. extra: 623 / 590,
  7448. bottom: 121 / 744
  7449. }
  7450. },
  7451. standing: {
  7452. height: math.unit(2.75, "meters"),
  7453. weight: math.unit(1200, "lb"),
  7454. name: "Standing",
  7455. image: {
  7456. source: "./media/characters/teal/standing.svg",
  7457. extra: 923 / 893,
  7458. bottom: 60 / 983
  7459. }
  7460. },
  7461. stretching: {
  7462. height: math.unit(3.65, "meters"),
  7463. weight: math.unit(1200, "lb"),
  7464. name: "Stretching",
  7465. image: {
  7466. source: "./media/characters/teal/stretching.svg",
  7467. extra: 1276 / 1244,
  7468. bottom: 0 / 1276
  7469. }
  7470. },
  7471. legged: {
  7472. height: math.unit(1.3, "meters"),
  7473. weight: math.unit(100, "lb"),
  7474. name: "Legged",
  7475. image: {
  7476. source: "./media/characters/teal/legged.svg",
  7477. extra: 462 / 437,
  7478. bottom: 24 / 486
  7479. }
  7480. },
  7481. naga: {
  7482. height: math.unit(5.4, "meters"),
  7483. weight: math.unit(4000, "lb"),
  7484. name: "Naga",
  7485. image: {
  7486. source: "./media/characters/teal/naga.svg",
  7487. extra: 1902 / 1858,
  7488. bottom: 0 / 1902
  7489. }
  7490. },
  7491. hand: {
  7492. height: math.unit(0.52, "meters"),
  7493. name: "Hand",
  7494. image: {
  7495. source: "./media/characters/teal/hand.svg"
  7496. }
  7497. },
  7498. maw: {
  7499. height: math.unit(0.43, "meters"),
  7500. name: "Maw",
  7501. image: {
  7502. source: "./media/characters/teal/maw.svg"
  7503. }
  7504. },
  7505. slit: {
  7506. height: math.unit(0.25, "meters"),
  7507. name: "Slit",
  7508. image: {
  7509. source: "./media/characters/teal/slit.svg"
  7510. }
  7511. },
  7512. },
  7513. [
  7514. {
  7515. name: "Normal",
  7516. height: math.unit(2.75, "meters"),
  7517. default: true
  7518. },
  7519. {
  7520. name: "Macro",
  7521. height: math.unit(300, "feet")
  7522. },
  7523. {
  7524. name: "Macro+",
  7525. height: math.unit(2000, "feet")
  7526. },
  7527. ]
  7528. ))
  7529. characterMakers.push(() => makeCharacter(
  7530. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7531. {
  7532. frontCat: {
  7533. height: math.unit(6, "feet"),
  7534. weight: math.unit(180, "lbs"),
  7535. name: "Front (Cat)",
  7536. image: {
  7537. source: "./media/characters/ravin-amulet/front-cat.svg"
  7538. }
  7539. },
  7540. frontCatAlt: {
  7541. height: math.unit(6, "feet"),
  7542. weight: math.unit(180, "lbs"),
  7543. name: "Front (Alt, Cat)",
  7544. image: {
  7545. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7546. }
  7547. },
  7548. frontWerewolf: {
  7549. height: math.unit(6 * 1.2, "feet"),
  7550. weight: math.unit(225, "lbs"),
  7551. name: "Front (Werewolf)",
  7552. image: {
  7553. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7554. }
  7555. },
  7556. backWerewolf: {
  7557. height: math.unit(6 * 1.2, "feet"),
  7558. weight: math.unit(225, "lbs"),
  7559. name: "Back (Werewolf)",
  7560. image: {
  7561. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7562. }
  7563. },
  7564. },
  7565. [
  7566. {
  7567. name: "Nano",
  7568. height: math.unit(1, "micrometer")
  7569. },
  7570. {
  7571. name: "Micro",
  7572. height: math.unit(1, "inch")
  7573. },
  7574. {
  7575. name: "Normal",
  7576. height: math.unit(6, "feet"),
  7577. default: true
  7578. },
  7579. {
  7580. name: "Macro",
  7581. height: math.unit(60, "feet")
  7582. }
  7583. ]
  7584. ))
  7585. characterMakers.push(() => makeCharacter(
  7586. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7587. {
  7588. front: {
  7589. height: math.unit(6, "feet"),
  7590. weight: math.unit(165, "lbs"),
  7591. name: "Front",
  7592. image: {
  7593. source: "./media/characters/fluoresce/front.svg"
  7594. }
  7595. }
  7596. },
  7597. [
  7598. {
  7599. name: "Micro",
  7600. height: math.unit(6, "cm")
  7601. },
  7602. {
  7603. name: "Normal",
  7604. height: math.unit(5 + 7 / 12, "feet"),
  7605. default: true
  7606. },
  7607. {
  7608. name: "Macro",
  7609. height: math.unit(56, "feet")
  7610. },
  7611. {
  7612. name: "Megamacro",
  7613. height: math.unit(1.9, "miles")
  7614. },
  7615. ]
  7616. ))
  7617. characterMakers.push(() => makeCharacter(
  7618. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7619. {
  7620. front: {
  7621. height: math.unit(9 + 6 / 12, "feet"),
  7622. weight: math.unit(523, "lbs"),
  7623. name: "Side",
  7624. image: {
  7625. source: "./media/characters/aurora/side.svg"
  7626. }
  7627. }
  7628. },
  7629. [
  7630. {
  7631. name: "Normal",
  7632. height: math.unit(9 + 6 / 12, "feet")
  7633. },
  7634. {
  7635. name: "Macro",
  7636. height: math.unit(96, "feet"),
  7637. default: true
  7638. },
  7639. {
  7640. name: "Macro+",
  7641. height: math.unit(243, "feet")
  7642. },
  7643. ]
  7644. ))
  7645. characterMakers.push(() => makeCharacter(
  7646. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7647. {
  7648. front: {
  7649. height: math.unit(194, "cm"),
  7650. weight: math.unit(90, "kg"),
  7651. name: "Front",
  7652. image: {
  7653. source: "./media/characters/ranek/front.svg"
  7654. }
  7655. },
  7656. side: {
  7657. height: math.unit(194, "cm"),
  7658. weight: math.unit(90, "kg"),
  7659. name: "Side",
  7660. image: {
  7661. source: "./media/characters/ranek/side.svg"
  7662. }
  7663. },
  7664. back: {
  7665. height: math.unit(194, "cm"),
  7666. weight: math.unit(90, "kg"),
  7667. name: "Back",
  7668. image: {
  7669. source: "./media/characters/ranek/back.svg"
  7670. }
  7671. },
  7672. feral: {
  7673. height: math.unit(30, "cm"),
  7674. weight: math.unit(1.6, "lbs"),
  7675. name: "Feral",
  7676. image: {
  7677. source: "./media/characters/ranek/feral.svg"
  7678. }
  7679. },
  7680. },
  7681. [
  7682. {
  7683. name: "Normal",
  7684. height: math.unit(194, "cm"),
  7685. default: true
  7686. },
  7687. {
  7688. name: "Macro",
  7689. height: math.unit(100, "meters")
  7690. },
  7691. ]
  7692. ))
  7693. characterMakers.push(() => makeCharacter(
  7694. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7695. {
  7696. front: {
  7697. height: math.unit(5 + 6 / 12, "feet"),
  7698. weight: math.unit(153, "lbs"),
  7699. name: "Front",
  7700. image: {
  7701. source: "./media/characters/andrew-cooper/front.svg"
  7702. }
  7703. },
  7704. },
  7705. [
  7706. {
  7707. name: "Nano",
  7708. height: math.unit(1, "mm")
  7709. },
  7710. {
  7711. name: "Micro",
  7712. height: math.unit(2, "inches")
  7713. },
  7714. {
  7715. name: "Normal",
  7716. height: math.unit(5 + 6 / 12, "feet"),
  7717. default: true
  7718. }
  7719. ]
  7720. ))
  7721. characterMakers.push(() => makeCharacter(
  7722. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7723. {
  7724. front: {
  7725. height: math.unit(6, "feet"),
  7726. weight: math.unit(180, "lbs"),
  7727. name: "Front",
  7728. image: {
  7729. source: "./media/characters/akane-sato/front.svg",
  7730. extra: 1219 / 1140
  7731. }
  7732. },
  7733. back: {
  7734. height: math.unit(6, "feet"),
  7735. weight: math.unit(180, "lbs"),
  7736. name: "Back",
  7737. image: {
  7738. source: "./media/characters/akane-sato/back.svg",
  7739. extra: 1219 / 1170
  7740. }
  7741. },
  7742. },
  7743. [
  7744. {
  7745. name: "Normal",
  7746. height: math.unit(2.5, "meters")
  7747. },
  7748. {
  7749. name: "Macro",
  7750. height: math.unit(250, "meters"),
  7751. default: true
  7752. },
  7753. {
  7754. name: "Megamacro",
  7755. height: math.unit(25, "km")
  7756. },
  7757. ]
  7758. ))
  7759. characterMakers.push(() => makeCharacter(
  7760. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7761. {
  7762. front: {
  7763. height: math.unit(6, "feet"),
  7764. weight: math.unit(65, "kg"),
  7765. name: "Front",
  7766. image: {
  7767. source: "./media/characters/rook/front.svg",
  7768. extra: 960 / 950
  7769. }
  7770. }
  7771. },
  7772. [
  7773. {
  7774. name: "Normal",
  7775. height: math.unit(8.8, "feet")
  7776. },
  7777. {
  7778. name: "Macro",
  7779. height: math.unit(88, "feet"),
  7780. default: true
  7781. },
  7782. {
  7783. name: "Megamacro",
  7784. height: math.unit(8, "miles")
  7785. },
  7786. ]
  7787. ))
  7788. characterMakers.push(() => makeCharacter(
  7789. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7790. {
  7791. front: {
  7792. height: math.unit(12 + 2 / 12, "feet"),
  7793. weight: math.unit(808, "lbs"),
  7794. name: "Front",
  7795. image: {
  7796. source: "./media/characters/prodigy/front.svg"
  7797. }
  7798. }
  7799. },
  7800. [
  7801. {
  7802. name: "Normal",
  7803. height: math.unit(12 + 2 / 12, "feet"),
  7804. default: true
  7805. },
  7806. {
  7807. name: "Macro",
  7808. height: math.unit(143, "feet")
  7809. },
  7810. {
  7811. name: "Macro+",
  7812. height: math.unit(400, "feet")
  7813. },
  7814. ]
  7815. ))
  7816. characterMakers.push(() => makeCharacter(
  7817. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7818. {
  7819. front: {
  7820. height: math.unit(6, "feet"),
  7821. weight: math.unit(225, "lbs"),
  7822. name: "Front",
  7823. image: {
  7824. source: "./media/characters/daniel/front.svg"
  7825. }
  7826. },
  7827. leaning: {
  7828. height: math.unit(6, "feet"),
  7829. weight: math.unit(225, "lbs"),
  7830. name: "Leaning",
  7831. image: {
  7832. source: "./media/characters/daniel/leaning.svg"
  7833. }
  7834. },
  7835. },
  7836. [
  7837. {
  7838. name: "Macro",
  7839. height: math.unit(1000, "feet"),
  7840. default: true
  7841. },
  7842. ]
  7843. ))
  7844. characterMakers.push(() => makeCharacter(
  7845. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7846. {
  7847. front: {
  7848. height: math.unit(6, "feet"),
  7849. weight: math.unit(88, "lbs"),
  7850. name: "Front",
  7851. image: {
  7852. source: "./media/characters/chiros/front.svg",
  7853. extra: 306 / 226
  7854. }
  7855. },
  7856. side: {
  7857. height: math.unit(6, "feet"),
  7858. weight: math.unit(88, "lbs"),
  7859. name: "Side",
  7860. image: {
  7861. source: "./media/characters/chiros/side.svg",
  7862. extra: 306 / 226
  7863. }
  7864. },
  7865. },
  7866. [
  7867. {
  7868. name: "Normal",
  7869. height: math.unit(6, "cm"),
  7870. default: true
  7871. },
  7872. ]
  7873. ))
  7874. characterMakers.push(() => makeCharacter(
  7875. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7876. {
  7877. front: {
  7878. height: math.unit(6, "feet"),
  7879. weight: math.unit(100, "lbs"),
  7880. name: "Front",
  7881. image: {
  7882. source: "./media/characters/selka/front.svg",
  7883. extra: 947 / 887
  7884. }
  7885. }
  7886. },
  7887. [
  7888. {
  7889. name: "Normal",
  7890. height: math.unit(5, "cm"),
  7891. default: true
  7892. },
  7893. ]
  7894. ))
  7895. characterMakers.push(() => makeCharacter(
  7896. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7897. {
  7898. front: {
  7899. height: math.unit(8 + 3 / 12, "feet"),
  7900. weight: math.unit(424, "lbs"),
  7901. name: "Front",
  7902. image: {
  7903. source: "./media/characters/verin/front.svg",
  7904. extra: 1845 / 1550
  7905. }
  7906. },
  7907. frontArmored: {
  7908. height: math.unit(8 + 3 / 12, "feet"),
  7909. weight: math.unit(424, "lbs"),
  7910. name: "Front (Armored)",
  7911. image: {
  7912. source: "./media/characters/verin/front-armor.svg",
  7913. extra: 1845 / 1550,
  7914. bottom: 0.01
  7915. }
  7916. },
  7917. back: {
  7918. height: math.unit(8 + 3 / 12, "feet"),
  7919. weight: math.unit(424, "lbs"),
  7920. name: "Back",
  7921. image: {
  7922. source: "./media/characters/verin/back.svg",
  7923. bottom: 0.1,
  7924. extra: 1
  7925. }
  7926. },
  7927. foot: {
  7928. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7929. name: "Foot",
  7930. image: {
  7931. source: "./media/characters/verin/foot.svg"
  7932. }
  7933. },
  7934. },
  7935. [
  7936. {
  7937. name: "Normal",
  7938. height: math.unit(8 + 3 / 12, "feet")
  7939. },
  7940. {
  7941. name: "Minimacro",
  7942. height: math.unit(21, "feet"),
  7943. default: true
  7944. },
  7945. {
  7946. name: "Macro",
  7947. height: math.unit(626, "feet")
  7948. },
  7949. ]
  7950. ))
  7951. characterMakers.push(() => makeCharacter(
  7952. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7953. {
  7954. front: {
  7955. height: math.unit(2.718, "meters"),
  7956. weight: math.unit(150, "lbs"),
  7957. name: "Front",
  7958. image: {
  7959. source: "./media/characters/sovrim-terraquian/front.svg"
  7960. }
  7961. },
  7962. back: {
  7963. height: math.unit(2.718, "meters"),
  7964. weight: math.unit(150, "lbs"),
  7965. name: "Back",
  7966. image: {
  7967. source: "./media/characters/sovrim-terraquian/back.svg"
  7968. }
  7969. }
  7970. },
  7971. [
  7972. {
  7973. name: "Micro",
  7974. height: math.unit(2, "inches")
  7975. },
  7976. {
  7977. name: "Small",
  7978. height: math.unit(1, "meter")
  7979. },
  7980. {
  7981. name: "Normal",
  7982. height: math.unit(Math.E, "meters"),
  7983. default: true
  7984. },
  7985. {
  7986. name: "Macro",
  7987. height: math.unit(20, "meters")
  7988. },
  7989. {
  7990. name: "Macro+",
  7991. height: math.unit(400, "meters")
  7992. },
  7993. ]
  7994. ))
  7995. characterMakers.push(() => makeCharacter(
  7996. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7997. {
  7998. front: {
  7999. height: math.unit(7, "feet"),
  8000. weight: math.unit(489, "lbs"),
  8001. name: "Front",
  8002. image: {
  8003. source: "./media/characters/reece-silvermane/front.svg",
  8004. bottom: 0.02,
  8005. extra: 1
  8006. }
  8007. },
  8008. },
  8009. [
  8010. {
  8011. name: "Macro",
  8012. height: math.unit(1.5, "miles"),
  8013. default: true
  8014. },
  8015. ]
  8016. ))
  8017. characterMakers.push(() => makeCharacter(
  8018. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8019. {
  8020. front: {
  8021. height: math.unit(6, "feet"),
  8022. weight: math.unit(78, "kg"),
  8023. name: "Front",
  8024. image: {
  8025. source: "./media/characters/kane/front.svg",
  8026. extra: 978 / 899
  8027. }
  8028. },
  8029. },
  8030. [
  8031. {
  8032. name: "Normal",
  8033. height: math.unit(2.1, "m"),
  8034. },
  8035. {
  8036. name: "Macro",
  8037. height: math.unit(1, "km"),
  8038. default: true
  8039. },
  8040. ]
  8041. ))
  8042. characterMakers.push(() => makeCharacter(
  8043. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8044. {
  8045. front: {
  8046. height: math.unit(6, "feet"),
  8047. weight: math.unit(200, "kg"),
  8048. name: "Front",
  8049. image: {
  8050. source: "./media/characters/tegon/front.svg",
  8051. bottom: 0.01,
  8052. extra: 1
  8053. }
  8054. },
  8055. },
  8056. [
  8057. {
  8058. name: "Micro",
  8059. height: math.unit(1, "inch")
  8060. },
  8061. {
  8062. name: "Normal",
  8063. height: math.unit(6 + 3 / 12, "feet"),
  8064. default: true
  8065. },
  8066. {
  8067. name: "Macro",
  8068. height: math.unit(300, "feet")
  8069. },
  8070. {
  8071. name: "Megamacro",
  8072. height: math.unit(69, "miles")
  8073. },
  8074. ]
  8075. ))
  8076. characterMakers.push(() => makeCharacter(
  8077. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8078. {
  8079. side: {
  8080. height: math.unit(6, "feet"),
  8081. weight: math.unit(2304, "lbs"),
  8082. name: "Side",
  8083. image: {
  8084. source: "./media/characters/arcturax/side.svg",
  8085. extra: 790 / 376,
  8086. bottom: 0.01
  8087. }
  8088. },
  8089. },
  8090. [
  8091. {
  8092. name: "Micro",
  8093. height: math.unit(2, "inch")
  8094. },
  8095. {
  8096. name: "Normal",
  8097. height: math.unit(6, "feet")
  8098. },
  8099. {
  8100. name: "Macro",
  8101. height: math.unit(39, "feet"),
  8102. default: true
  8103. },
  8104. {
  8105. name: "Megamacro",
  8106. height: math.unit(7, "miles")
  8107. },
  8108. ]
  8109. ))
  8110. characterMakers.push(() => makeCharacter(
  8111. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8112. {
  8113. front: {
  8114. height: math.unit(6, "feet"),
  8115. weight: math.unit(50, "lbs"),
  8116. name: "Front",
  8117. image: {
  8118. source: "./media/characters/sentri/front.svg",
  8119. extra: 1750 / 1570,
  8120. bottom: 0.025
  8121. }
  8122. },
  8123. frontAlt: {
  8124. height: math.unit(6, "feet"),
  8125. weight: math.unit(50, "lbs"),
  8126. name: "Front (Alt)",
  8127. image: {
  8128. source: "./media/characters/sentri/front-alt.svg",
  8129. extra: 1750 / 1570,
  8130. bottom: 0.025
  8131. }
  8132. },
  8133. },
  8134. [
  8135. {
  8136. name: "Normal",
  8137. height: math.unit(15, "feet"),
  8138. default: true
  8139. },
  8140. {
  8141. name: "Macro",
  8142. height: math.unit(2500, "feet")
  8143. }
  8144. ]
  8145. ))
  8146. characterMakers.push(() => makeCharacter(
  8147. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8148. {
  8149. front: {
  8150. height: math.unit(5 + 8 / 12, "feet"),
  8151. weight: math.unit(130, "lbs"),
  8152. name: "Front",
  8153. image: {
  8154. source: "./media/characters/corvin/front.svg",
  8155. extra: 1803 / 1629
  8156. }
  8157. },
  8158. frontShirt: {
  8159. height: math.unit(5 + 8 / 12, "feet"),
  8160. weight: math.unit(130, "lbs"),
  8161. name: "Front (Shirt)",
  8162. image: {
  8163. source: "./media/characters/corvin/front-shirt.svg",
  8164. extra: 1803 / 1629
  8165. }
  8166. },
  8167. frontPoncho: {
  8168. height: math.unit(5 + 8 / 12, "feet"),
  8169. weight: math.unit(130, "lbs"),
  8170. name: "Front (Poncho)",
  8171. image: {
  8172. source: "./media/characters/corvin/front-poncho.svg",
  8173. extra: 1803 / 1629
  8174. }
  8175. },
  8176. side: {
  8177. height: math.unit(5 + 8 / 12, "feet"),
  8178. weight: math.unit(130, "lbs"),
  8179. name: "Side",
  8180. image: {
  8181. source: "./media/characters/corvin/side.svg",
  8182. extra: 1012 / 945
  8183. }
  8184. },
  8185. back: {
  8186. height: math.unit(5 + 8 / 12, "feet"),
  8187. weight: math.unit(130, "lbs"),
  8188. name: "Back",
  8189. image: {
  8190. source: "./media/characters/corvin/back.svg",
  8191. extra: 1803 / 1629
  8192. }
  8193. },
  8194. },
  8195. [
  8196. {
  8197. name: "Micro",
  8198. height: math.unit(3, "inches")
  8199. },
  8200. {
  8201. name: "Normal",
  8202. height: math.unit(5 + 8 / 12, "feet")
  8203. },
  8204. {
  8205. name: "Macro",
  8206. height: math.unit(300, "feet"),
  8207. default: true
  8208. },
  8209. {
  8210. name: "Megamacro",
  8211. height: math.unit(500, "miles")
  8212. }
  8213. ]
  8214. ))
  8215. characterMakers.push(() => makeCharacter(
  8216. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8217. {
  8218. front: {
  8219. height: math.unit(6, "feet"),
  8220. weight: math.unit(135, "lbs"),
  8221. name: "Front",
  8222. image: {
  8223. source: "./media/characters/q/front.svg",
  8224. extra: 854 / 752,
  8225. bottom: 0.005
  8226. }
  8227. },
  8228. back: {
  8229. height: math.unit(6, "feet"),
  8230. weight: math.unit(130, "lbs"),
  8231. name: "Back",
  8232. image: {
  8233. source: "./media/characters/q/back.svg",
  8234. extra: 854 / 752
  8235. }
  8236. },
  8237. },
  8238. [
  8239. {
  8240. name: "Macro",
  8241. height: math.unit(90, "feet"),
  8242. default: true
  8243. },
  8244. {
  8245. name: "Extra Macro",
  8246. height: math.unit(300, "feet"),
  8247. },
  8248. {
  8249. name: "BIG WALF",
  8250. height: math.unit(750, "feet"),
  8251. },
  8252. ]
  8253. ))
  8254. characterMakers.push(() => makeCharacter(
  8255. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8256. {
  8257. front: {
  8258. height: math.unit(6, "feet"),
  8259. weight: math.unit(150, "lbs"),
  8260. name: "Front",
  8261. image: {
  8262. source: "./media/characters/carley/front.svg",
  8263. extra: 3927 / 3540,
  8264. bottom: 29.2 / 735
  8265. }
  8266. }
  8267. },
  8268. [
  8269. {
  8270. name: "Normal",
  8271. height: math.unit(6 + 3 / 12, "feet")
  8272. },
  8273. {
  8274. name: "Macro",
  8275. height: math.unit(185, "feet"),
  8276. default: true
  8277. },
  8278. {
  8279. name: "Megamacro",
  8280. height: math.unit(8, "miles"),
  8281. },
  8282. ]
  8283. ))
  8284. characterMakers.push(() => makeCharacter(
  8285. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8286. {
  8287. front: {
  8288. height: math.unit(3, "feet"),
  8289. weight: math.unit(28, "lbs"),
  8290. name: "Front",
  8291. image: {
  8292. source: "./media/characters/citrine/front.svg"
  8293. }
  8294. }
  8295. },
  8296. [
  8297. {
  8298. name: "Normal",
  8299. height: math.unit(3, "feet"),
  8300. default: true
  8301. }
  8302. ]
  8303. ))
  8304. characterMakers.push(() => makeCharacter(
  8305. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8306. {
  8307. front: {
  8308. height: math.unit(14, "feet"),
  8309. weight: math.unit(1450, "kg"),
  8310. capacity: math.unit(15, "people"),
  8311. name: "Front",
  8312. image: {
  8313. source: "./media/characters/aura-starwind/front.svg",
  8314. extra: 1440/1327,
  8315. bottom: 11/1451
  8316. }
  8317. },
  8318. side: {
  8319. height: math.unit(14, "feet"),
  8320. weight: math.unit(1450, "kg"),
  8321. capacity: math.unit(15, "people"),
  8322. name: "Side",
  8323. image: {
  8324. source: "./media/characters/aura-starwind/side.svg",
  8325. extra: 1654 / 1497
  8326. }
  8327. },
  8328. taur: {
  8329. height: math.unit(18, "feet"),
  8330. weight: math.unit(5500, "kg"),
  8331. capacity: math.unit(50, "people"),
  8332. name: "Taur",
  8333. image: {
  8334. source: "./media/characters/aura-starwind/taur.svg",
  8335. extra: 1760 / 1650
  8336. }
  8337. },
  8338. feral: {
  8339. height: math.unit(46, "feet"),
  8340. weight: math.unit(25000, "kg"),
  8341. capacity: math.unit(120, "people"),
  8342. name: "Feral",
  8343. image: {
  8344. source: "./media/characters/aura-starwind/feral.svg"
  8345. }
  8346. },
  8347. },
  8348. [
  8349. {
  8350. name: "Normal",
  8351. height: math.unit(14, "feet"),
  8352. default: true
  8353. },
  8354. {
  8355. name: "Macro",
  8356. height: math.unit(50, "meters")
  8357. },
  8358. {
  8359. name: "Megamacro",
  8360. height: math.unit(5000, "meters")
  8361. },
  8362. {
  8363. name: "Gigamacro",
  8364. height: math.unit(100000, "kilometers")
  8365. },
  8366. ]
  8367. ))
  8368. characterMakers.push(() => makeCharacter(
  8369. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8370. {
  8371. front: {
  8372. height: math.unit(2 + 7 / 12, "feet"),
  8373. weight: math.unit(32, "lbs"),
  8374. name: "Front",
  8375. image: {
  8376. source: "./media/characters/rivet/front.svg",
  8377. extra: 1716 / 1658,
  8378. bottom: 0.03
  8379. }
  8380. },
  8381. foot: {
  8382. height: math.unit(0.551, "feet"),
  8383. name: "Rivet's Foot",
  8384. image: {
  8385. source: "./media/characters/rivet/foot.svg"
  8386. },
  8387. rename: true
  8388. }
  8389. },
  8390. [
  8391. {
  8392. name: "Micro",
  8393. height: math.unit(1.5, "inches"),
  8394. },
  8395. {
  8396. name: "Normal",
  8397. height: math.unit(2 + 7 / 12, "feet"),
  8398. default: true
  8399. },
  8400. {
  8401. name: "Macro",
  8402. height: math.unit(85, "feet")
  8403. },
  8404. {
  8405. name: "Megamacro",
  8406. height: math.unit(2.2, "km")
  8407. }
  8408. ]
  8409. ))
  8410. characterMakers.push(() => makeCharacter(
  8411. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8412. {
  8413. front: {
  8414. height: math.unit(5 + 9 / 12, "feet"),
  8415. weight: math.unit(150, "lbs"),
  8416. name: "Front",
  8417. image: {
  8418. source: "./media/characters/coffee/front.svg",
  8419. extra: 3666 / 3032,
  8420. bottom: 0.04
  8421. }
  8422. },
  8423. foot: {
  8424. height: math.unit(1.29, "feet"),
  8425. name: "Foot",
  8426. image: {
  8427. source: "./media/characters/coffee/foot.svg"
  8428. }
  8429. },
  8430. },
  8431. [
  8432. {
  8433. name: "Micro",
  8434. height: math.unit(2, "inches"),
  8435. },
  8436. {
  8437. name: "Normal",
  8438. height: math.unit(5 + 9 / 12, "feet"),
  8439. default: true
  8440. },
  8441. {
  8442. name: "Macro",
  8443. height: math.unit(800, "feet")
  8444. },
  8445. {
  8446. name: "Megamacro",
  8447. height: math.unit(25, "miles")
  8448. }
  8449. ]
  8450. ))
  8451. characterMakers.push(() => makeCharacter(
  8452. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8453. {
  8454. front: {
  8455. height: math.unit(6, "feet"),
  8456. weight: math.unit(200, "lbs"),
  8457. name: "Front",
  8458. image: {
  8459. source: "./media/characters/chari-gal/front.svg",
  8460. extra: 1568 / 1385,
  8461. bottom: 0.047
  8462. }
  8463. },
  8464. gigantamax: {
  8465. height: math.unit(6 * 16, "feet"),
  8466. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8467. name: "Gigantamax",
  8468. image: {
  8469. source: "./media/characters/chari-gal/gigantamax.svg",
  8470. extra: 1124 / 888,
  8471. bottom: 0.03
  8472. }
  8473. },
  8474. },
  8475. [
  8476. {
  8477. name: "Normal",
  8478. height: math.unit(5 + 7 / 12, "feet")
  8479. },
  8480. {
  8481. name: "Macro",
  8482. height: math.unit(200, "feet"),
  8483. default: true
  8484. }
  8485. ]
  8486. ))
  8487. characterMakers.push(() => makeCharacter(
  8488. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8489. {
  8490. front: {
  8491. height: math.unit(6, "feet"),
  8492. weight: math.unit(150, "lbs"),
  8493. name: "Front",
  8494. image: {
  8495. source: "./media/characters/nova/front.svg",
  8496. extra: 5000 / 4722,
  8497. bottom: 0.02
  8498. }
  8499. }
  8500. },
  8501. [
  8502. {
  8503. name: "Micro-",
  8504. height: math.unit(0.8, "inches")
  8505. },
  8506. {
  8507. name: "Micro",
  8508. height: math.unit(2, "inches"),
  8509. default: true
  8510. },
  8511. ]
  8512. ))
  8513. characterMakers.push(() => makeCharacter(
  8514. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8515. {
  8516. front: {
  8517. height: math.unit(3 + 1 / 12, "feet"),
  8518. weight: math.unit(21.7, "lbs"),
  8519. name: "Front",
  8520. image: {
  8521. source: "./media/characters/argent/front.svg",
  8522. extra: 1471 / 1331,
  8523. bottom: 100.8 / 1575.5
  8524. }
  8525. }
  8526. },
  8527. [
  8528. {
  8529. name: "Micro",
  8530. height: math.unit(2, "inches")
  8531. },
  8532. {
  8533. name: "Normal",
  8534. height: math.unit(3 + 1 / 12, "feet"),
  8535. default: true
  8536. },
  8537. {
  8538. name: "Macro",
  8539. height: math.unit(120, "feet")
  8540. },
  8541. ]
  8542. ))
  8543. characterMakers.push(() => makeCharacter(
  8544. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8545. {
  8546. lamp: {
  8547. height: math.unit(7 * 1559 / 989, "feet"),
  8548. name: "Magic Lamp",
  8549. image: {
  8550. source: "./media/characters/mira-al-cul/lamp.svg",
  8551. extra: 1617 / 1559
  8552. }
  8553. },
  8554. front: {
  8555. height: math.unit(7, "feet"),
  8556. name: "Front",
  8557. image: {
  8558. source: "./media/characters/mira-al-cul/front.svg",
  8559. extra: 1044 / 990
  8560. }
  8561. },
  8562. },
  8563. [
  8564. {
  8565. name: "Heavily Restricted",
  8566. height: math.unit(7 * 1559 / 989, "feet")
  8567. },
  8568. {
  8569. name: "Freshly Freed",
  8570. height: math.unit(50 * 1559 / 989, "feet")
  8571. },
  8572. {
  8573. name: "World Encompassing",
  8574. height: math.unit(10000 * 1559 / 989, "miles")
  8575. },
  8576. {
  8577. name: "Galactic",
  8578. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8579. },
  8580. {
  8581. name: "Palmed Universe",
  8582. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8583. default: true
  8584. },
  8585. {
  8586. name: "Multiversal Matriarch",
  8587. height: math.unit(8.87e10, "yottameters")
  8588. },
  8589. {
  8590. name: "Void Mother",
  8591. height: math.unit(3.14e110, "yottaparsecs")
  8592. },
  8593. {
  8594. name: "Toying with Transcendence",
  8595. height: math.unit(1e307, "meters")
  8596. },
  8597. ]
  8598. ))
  8599. characterMakers.push(() => makeCharacter(
  8600. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8601. {
  8602. front: {
  8603. height: math.unit(17 + 1 / 12, "feet"),
  8604. weight: math.unit(476.2 * 5, "lbs"),
  8605. name: "Front",
  8606. image: {
  8607. source: "./media/characters/kuro-shi-uchū/front.svg",
  8608. extra: 2329 / 1835,
  8609. bottom: 0.02
  8610. }
  8611. },
  8612. },
  8613. [
  8614. {
  8615. name: "Micro",
  8616. height: math.unit(2, "inches")
  8617. },
  8618. {
  8619. name: "Normal",
  8620. height: math.unit(12, "meters")
  8621. },
  8622. {
  8623. name: "Planetary",
  8624. height: math.unit(0.00929, "AU"),
  8625. default: true
  8626. },
  8627. {
  8628. name: "Universal",
  8629. height: math.unit(20, "gigaparsecs")
  8630. },
  8631. ]
  8632. ))
  8633. characterMakers.push(() => makeCharacter(
  8634. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8635. {
  8636. front: {
  8637. height: math.unit(5 + 2 / 12, "feet"),
  8638. weight: math.unit(120, "lbs"),
  8639. name: "Front",
  8640. image: {
  8641. source: "./media/characters/katherine/front.svg",
  8642. extra: 2075 / 1969
  8643. }
  8644. },
  8645. dress: {
  8646. height: math.unit(5 + 2 / 12, "feet"),
  8647. weight: math.unit(120, "lbs"),
  8648. name: "Dress",
  8649. image: {
  8650. source: "./media/characters/katherine/dress.svg",
  8651. extra: 2258 / 2064
  8652. }
  8653. },
  8654. },
  8655. [
  8656. {
  8657. name: "Micro",
  8658. height: math.unit(1, "inches"),
  8659. default: true
  8660. },
  8661. {
  8662. name: "Normal",
  8663. height: math.unit(5 + 2 / 12, "feet")
  8664. },
  8665. {
  8666. name: "Macro",
  8667. height: math.unit(100, "meters")
  8668. },
  8669. {
  8670. name: "Megamacro",
  8671. height: math.unit(80, "miles")
  8672. },
  8673. ]
  8674. ))
  8675. characterMakers.push(() => makeCharacter(
  8676. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8677. {
  8678. front: {
  8679. height: math.unit(7 + 8 / 12, "feet"),
  8680. weight: math.unit(250, "lbs"),
  8681. name: "Front",
  8682. image: {
  8683. source: "./media/characters/yevis/front.svg",
  8684. extra: 1938 / 1755
  8685. }
  8686. }
  8687. },
  8688. [
  8689. {
  8690. name: "Mortal",
  8691. height: math.unit(7 + 8 / 12, "feet")
  8692. },
  8693. {
  8694. name: "Battle",
  8695. height: math.unit(25 + 11 / 12, "feet")
  8696. },
  8697. {
  8698. name: "Wrath",
  8699. height: math.unit(1654 + 11 / 12, "feet")
  8700. },
  8701. {
  8702. name: "Planet Destroyer",
  8703. height: math.unit(12000, "miles")
  8704. },
  8705. {
  8706. name: "Galaxy Conqueror",
  8707. height: math.unit(1.45, "zettameters"),
  8708. default: true
  8709. },
  8710. {
  8711. name: "Universal War",
  8712. height: math.unit(184, "gigaparsecs")
  8713. },
  8714. {
  8715. name: "Eternity War",
  8716. height: math.unit(1.98e55, "yottaparsecs")
  8717. },
  8718. ]
  8719. ))
  8720. characterMakers.push(() => makeCharacter(
  8721. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8722. {
  8723. front: {
  8724. height: math.unit(5 + 8 / 12, "feet"),
  8725. weight: math.unit(63, "kg"),
  8726. name: "Front",
  8727. image: {
  8728. source: "./media/characters/xavier/front.svg",
  8729. extra: 944 / 883
  8730. }
  8731. },
  8732. frontStretch: {
  8733. height: math.unit(5 + 8 / 12, "feet"),
  8734. weight: math.unit(63, "kg"),
  8735. name: "Stretching",
  8736. image: {
  8737. source: "./media/characters/xavier/front-stretch.svg",
  8738. extra: 962 / 820
  8739. }
  8740. },
  8741. },
  8742. [
  8743. {
  8744. name: "Normal",
  8745. height: math.unit(5 + 8 / 12, "feet")
  8746. },
  8747. {
  8748. name: "Macro",
  8749. height: math.unit(100, "meters"),
  8750. default: true
  8751. },
  8752. {
  8753. name: "McLargeHuge",
  8754. height: math.unit(10, "miles")
  8755. },
  8756. ]
  8757. ))
  8758. characterMakers.push(() => makeCharacter(
  8759. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8760. {
  8761. front: {
  8762. height: math.unit(5 + 5 / 12, "feet"),
  8763. weight: math.unit(150, "lb"),
  8764. name: "Front",
  8765. image: {
  8766. source: "./media/characters/joshii/front.svg",
  8767. extra: 765 / 653,
  8768. bottom: 51 / 816
  8769. }
  8770. },
  8771. foot: {
  8772. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8773. name: "Foot",
  8774. image: {
  8775. source: "./media/characters/joshii/foot.svg"
  8776. }
  8777. },
  8778. },
  8779. [
  8780. {
  8781. name: "Micro",
  8782. height: math.unit(2, "inches"),
  8783. default: true
  8784. },
  8785. {
  8786. name: "Normal",
  8787. height: math.unit(5 + 5 / 12, "feet")
  8788. },
  8789. {
  8790. name: "Macro",
  8791. height: math.unit(785, "feet")
  8792. },
  8793. {
  8794. name: "Megamacro",
  8795. height: math.unit(24.5, "miles")
  8796. },
  8797. ]
  8798. ))
  8799. characterMakers.push(() => makeCharacter(
  8800. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8801. {
  8802. front: {
  8803. height: math.unit(6, "feet"),
  8804. weight: math.unit(150, "lb"),
  8805. name: "Front",
  8806. image: {
  8807. source: "./media/characters/goddess-elizabeth/front.svg",
  8808. extra: 1800 / 1525,
  8809. bottom: 0.005
  8810. }
  8811. },
  8812. foot: {
  8813. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8814. name: "Foot",
  8815. image: {
  8816. source: "./media/characters/goddess-elizabeth/foot.svg"
  8817. }
  8818. },
  8819. mouth: {
  8820. height: math.unit(6, "feet"),
  8821. name: "Mouth",
  8822. image: {
  8823. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8824. }
  8825. },
  8826. },
  8827. [
  8828. {
  8829. name: "Micro",
  8830. height: math.unit(12, "feet")
  8831. },
  8832. {
  8833. name: "Normal",
  8834. height: math.unit(80, "miles"),
  8835. default: true
  8836. },
  8837. {
  8838. name: "Macro",
  8839. height: math.unit(15000, "parsecs")
  8840. },
  8841. ]
  8842. ))
  8843. characterMakers.push(() => makeCharacter(
  8844. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8845. {
  8846. front: {
  8847. height: math.unit(5 + 9 / 12, "feet"),
  8848. weight: math.unit(144, "lb"),
  8849. name: "Front",
  8850. image: {
  8851. source: "./media/characters/kara/front.svg"
  8852. }
  8853. },
  8854. feet: {
  8855. height: math.unit(6 / 6.765, "feet"),
  8856. name: "Kara's Feet",
  8857. rename: true,
  8858. image: {
  8859. source: "./media/characters/kara/feet.svg"
  8860. }
  8861. },
  8862. },
  8863. [
  8864. {
  8865. name: "Normal",
  8866. height: math.unit(5 + 9 / 12, "feet")
  8867. },
  8868. {
  8869. name: "Macro",
  8870. height: math.unit(174, "feet"),
  8871. default: true
  8872. },
  8873. ]
  8874. ))
  8875. characterMakers.push(() => makeCharacter(
  8876. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8877. {
  8878. front: {
  8879. height: math.unit(18, "feet"),
  8880. weight: math.unit(4050, "lb"),
  8881. name: "Front",
  8882. image: {
  8883. source: "./media/characters/tyrone/front.svg",
  8884. extra: 2405 / 2270,
  8885. bottom: 182 / 2587
  8886. }
  8887. },
  8888. },
  8889. [
  8890. {
  8891. name: "Normal",
  8892. height: math.unit(18, "feet"),
  8893. default: true
  8894. },
  8895. {
  8896. name: "Macro",
  8897. height: math.unit(300, "feet")
  8898. },
  8899. {
  8900. name: "Megamacro",
  8901. height: math.unit(15, "km")
  8902. },
  8903. {
  8904. name: "Gigamacro",
  8905. height: math.unit(500, "km")
  8906. },
  8907. {
  8908. name: "Teramacro",
  8909. height: math.unit(0.5, "gigameters")
  8910. },
  8911. {
  8912. name: "Omnimacro",
  8913. height: math.unit(1e252, "yottauniverse")
  8914. },
  8915. ]
  8916. ))
  8917. characterMakers.push(() => makeCharacter(
  8918. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8919. {
  8920. front: {
  8921. height: math.unit(7 + 8 / 12, "feet"),
  8922. weight: math.unit(120, "lb"),
  8923. name: "Front",
  8924. image: {
  8925. source: "./media/characters/danny/front.svg",
  8926. extra: 1490 / 1350
  8927. }
  8928. },
  8929. back: {
  8930. height: math.unit(7 + 8 / 12, "feet"),
  8931. weight: math.unit(120, "lb"),
  8932. name: "Back",
  8933. image: {
  8934. source: "./media/characters/danny/back.svg",
  8935. extra: 1490 / 1350
  8936. }
  8937. },
  8938. },
  8939. [
  8940. {
  8941. name: "Normal",
  8942. height: math.unit(7 + 8 / 12, "feet"),
  8943. default: true
  8944. },
  8945. ]
  8946. ))
  8947. characterMakers.push(() => makeCharacter(
  8948. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8949. {
  8950. front: {
  8951. height: math.unit(3.5, "inches"),
  8952. weight: math.unit(19, "grams"),
  8953. name: "Front",
  8954. image: {
  8955. source: "./media/characters/mallow/front.svg",
  8956. extra: 471 / 431
  8957. }
  8958. },
  8959. back: {
  8960. height: math.unit(3.5, "inches"),
  8961. weight: math.unit(19, "grams"),
  8962. name: "Back",
  8963. image: {
  8964. source: "./media/characters/mallow/back.svg",
  8965. extra: 471 / 431
  8966. }
  8967. },
  8968. },
  8969. [
  8970. {
  8971. name: "Normal",
  8972. height: math.unit(3.5, "inches"),
  8973. default: true
  8974. },
  8975. ]
  8976. ))
  8977. characterMakers.push(() => makeCharacter(
  8978. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8979. {
  8980. front: {
  8981. height: math.unit(9, "feet"),
  8982. weight: math.unit(230, "kg"),
  8983. name: "Front",
  8984. image: {
  8985. source: "./media/characters/starry-aqua/front.svg"
  8986. }
  8987. },
  8988. back: {
  8989. height: math.unit(9, "feet"),
  8990. weight: math.unit(230, "kg"),
  8991. name: "Back",
  8992. image: {
  8993. source: "./media/characters/starry-aqua/back.svg"
  8994. }
  8995. },
  8996. hand: {
  8997. height: math.unit(9 * 0.1168, "feet"),
  8998. name: "Hand",
  8999. image: {
  9000. source: "./media/characters/starry-aqua/hand.svg"
  9001. }
  9002. },
  9003. foot: {
  9004. height: math.unit(9 * 0.18, "feet"),
  9005. name: "Foot",
  9006. image: {
  9007. source: "./media/characters/starry-aqua/foot.svg"
  9008. }
  9009. }
  9010. },
  9011. [
  9012. {
  9013. name: "Micro",
  9014. height: math.unit(3, "inches")
  9015. },
  9016. {
  9017. name: "Normal",
  9018. height: math.unit(9, "feet")
  9019. },
  9020. {
  9021. name: "Macro",
  9022. height: math.unit(300, "feet"),
  9023. default: true
  9024. },
  9025. {
  9026. name: "Megamacro",
  9027. height: math.unit(3200, "feet")
  9028. }
  9029. ]
  9030. ))
  9031. characterMakers.push(() => makeCharacter(
  9032. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9033. {
  9034. front: {
  9035. height: math.unit(15, "feet"),
  9036. weight: math.unit(5026, "lb"),
  9037. name: "Front",
  9038. image: {
  9039. source: "./media/characters/luka-towers/front.svg",
  9040. extra: 1269/1133,
  9041. bottom: 51/1320
  9042. }
  9043. },
  9044. },
  9045. [
  9046. {
  9047. name: "Normal",
  9048. height: math.unit(15, "feet"),
  9049. default: true
  9050. },
  9051. {
  9052. name: "Minimacro",
  9053. height: math.unit(25, "feet")
  9054. },
  9055. {
  9056. name: "Macro",
  9057. height: math.unit(320, "feet")
  9058. },
  9059. {
  9060. name: "Megamacro",
  9061. height: math.unit(35000, "feet")
  9062. },
  9063. {
  9064. name: "Gigamacro",
  9065. height: math.unit(4000, "miles")
  9066. },
  9067. {
  9068. name: "Teramacro",
  9069. height: math.unit(15000, "miles")
  9070. },
  9071. ]
  9072. ))
  9073. characterMakers.push(() => makeCharacter(
  9074. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9075. {
  9076. front: {
  9077. height: math.unit(6, "feet"),
  9078. weight: math.unit(150, "lb"),
  9079. name: "Front",
  9080. image: {
  9081. source: "./media/characters/natalie-nightring/front.svg",
  9082. extra: 1,
  9083. bottom: 0.06
  9084. }
  9085. },
  9086. },
  9087. [
  9088. {
  9089. name: "Uh Oh",
  9090. height: math.unit(0.1, "mm")
  9091. },
  9092. {
  9093. name: "Small",
  9094. height: math.unit(3, "inches")
  9095. },
  9096. {
  9097. name: "Human Scale",
  9098. height: math.unit(6, "feet")
  9099. },
  9100. {
  9101. name: "Librarian",
  9102. height: math.unit(50, "feet"),
  9103. default: true
  9104. },
  9105. {
  9106. name: "Immense",
  9107. height: math.unit(200, "miles")
  9108. },
  9109. ]
  9110. ))
  9111. characterMakers.push(() => makeCharacter(
  9112. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9113. {
  9114. front: {
  9115. height: math.unit(6, "feet"),
  9116. weight: math.unit(180, "lbs"),
  9117. name: "Front",
  9118. image: {
  9119. source: "./media/characters/danni-rosie/front.svg",
  9120. extra: 1260 / 1128,
  9121. bottom: 0.022
  9122. }
  9123. },
  9124. },
  9125. [
  9126. {
  9127. name: "Micro",
  9128. height: math.unit(2, "inches"),
  9129. default: true
  9130. },
  9131. ]
  9132. ))
  9133. characterMakers.push(() => makeCharacter(
  9134. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9135. {
  9136. front: {
  9137. height: math.unit(5 + 9 / 12, "feet"),
  9138. weight: math.unit(220, "lb"),
  9139. name: "Front",
  9140. image: {
  9141. source: "./media/characters/samantha-kruse/front.svg",
  9142. extra: (985 / 935),
  9143. bottom: 0.03
  9144. }
  9145. },
  9146. frontUndressed: {
  9147. height: math.unit(5 + 9 / 12, "feet"),
  9148. weight: math.unit(220, "lb"),
  9149. name: "Front (Undressed)",
  9150. image: {
  9151. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9152. extra: (973 / 923),
  9153. bottom: 0.025
  9154. }
  9155. },
  9156. fat: {
  9157. height: math.unit(5 + 9 / 12, "feet"),
  9158. weight: math.unit(900, "lb"),
  9159. name: "Front (Fat)",
  9160. image: {
  9161. source: "./media/characters/samantha-kruse/fat.svg",
  9162. extra: 2688 / 2561
  9163. }
  9164. },
  9165. },
  9166. [
  9167. {
  9168. name: "Normal",
  9169. height: math.unit(5 + 9 / 12, "feet"),
  9170. default: true
  9171. }
  9172. ]
  9173. ))
  9174. characterMakers.push(() => makeCharacter(
  9175. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9176. {
  9177. back: {
  9178. height: math.unit(5 + 4 / 12, "feet"),
  9179. weight: math.unit(4963, "lb"),
  9180. name: "Back",
  9181. image: {
  9182. source: "./media/characters/amelia-rosie/back.svg",
  9183. extra: 1113 / 963,
  9184. bottom: 0.01
  9185. }
  9186. },
  9187. },
  9188. [
  9189. {
  9190. name: "Level 0",
  9191. height: math.unit(5 + 4 / 12, "feet")
  9192. },
  9193. {
  9194. name: "Level 1",
  9195. height: math.unit(164597, "feet"),
  9196. default: true
  9197. },
  9198. {
  9199. name: "Level 2",
  9200. height: math.unit(956243, "miles")
  9201. },
  9202. {
  9203. name: "Level 3",
  9204. height: math.unit(29421709423, "miles")
  9205. },
  9206. {
  9207. name: "Level 4",
  9208. height: math.unit(154, "lightyears")
  9209. },
  9210. {
  9211. name: "Level 5",
  9212. height: math.unit(4738272, "lightyears")
  9213. },
  9214. {
  9215. name: "Level 6",
  9216. height: math.unit(145787152896, "lightyears")
  9217. },
  9218. ]
  9219. ))
  9220. characterMakers.push(() => makeCharacter(
  9221. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9222. {
  9223. front: {
  9224. height: math.unit(5 + 11 / 12, "feet"),
  9225. weight: math.unit(65, "kg"),
  9226. name: "Front",
  9227. image: {
  9228. source: "./media/characters/rook-kitara/front.svg",
  9229. extra: 1347 / 1274,
  9230. bottom: 0.005
  9231. }
  9232. },
  9233. },
  9234. [
  9235. {
  9236. name: "Totally Unfair",
  9237. height: math.unit(1.8, "mm")
  9238. },
  9239. {
  9240. name: "Lap Rookie",
  9241. height: math.unit(1.4, "feet")
  9242. },
  9243. {
  9244. name: "Normal",
  9245. height: math.unit(5 + 11 / 12, "feet"),
  9246. default: true
  9247. },
  9248. {
  9249. name: "How Did This Happen",
  9250. height: math.unit(80, "miles")
  9251. }
  9252. ]
  9253. ))
  9254. characterMakers.push(() => makeCharacter(
  9255. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9256. {
  9257. front: {
  9258. height: math.unit(7, "feet"),
  9259. weight: math.unit(300, "lb"),
  9260. name: "Front",
  9261. image: {
  9262. source: "./media/characters/pisces/front.svg",
  9263. extra: 2255 / 2115,
  9264. bottom: 0.03
  9265. }
  9266. },
  9267. back: {
  9268. height: math.unit(7, "feet"),
  9269. weight: math.unit(300, "lb"),
  9270. name: "Back",
  9271. image: {
  9272. source: "./media/characters/pisces/back.svg",
  9273. extra: 2146 / 2055,
  9274. bottom: 0.04
  9275. }
  9276. },
  9277. },
  9278. [
  9279. {
  9280. name: "Normal",
  9281. height: math.unit(7, "feet"),
  9282. default: true
  9283. },
  9284. {
  9285. name: "Swimming Pool",
  9286. height: math.unit(12.2, "meters")
  9287. },
  9288. {
  9289. name: "Olympic Swimming Pool",
  9290. height: math.unit(56.3, "meters")
  9291. },
  9292. {
  9293. name: "Lake Superior",
  9294. height: math.unit(93900, "meters")
  9295. },
  9296. {
  9297. name: "Mediterranean Sea",
  9298. height: math.unit(644457, "meters")
  9299. },
  9300. {
  9301. name: "World's Oceans",
  9302. height: math.unit(4567491, "meters")
  9303. },
  9304. ]
  9305. ))
  9306. characterMakers.push(() => makeCharacter(
  9307. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9308. {
  9309. front: {
  9310. height: math.unit(2.3, "meters"),
  9311. weight: math.unit(120, "kg"),
  9312. name: "Front",
  9313. image: {
  9314. source: "./media/characters/zelas/front.svg"
  9315. }
  9316. },
  9317. side: {
  9318. height: math.unit(2.3, "meters"),
  9319. weight: math.unit(120, "kg"),
  9320. name: "Side",
  9321. image: {
  9322. source: "./media/characters/zelas/side.svg"
  9323. }
  9324. },
  9325. back: {
  9326. height: math.unit(2.3, "meters"),
  9327. weight: math.unit(120, "kg"),
  9328. name: "Back",
  9329. image: {
  9330. source: "./media/characters/zelas/back.svg"
  9331. }
  9332. },
  9333. foot: {
  9334. height: math.unit(1.116, "feet"),
  9335. name: "Foot",
  9336. image: {
  9337. source: "./media/characters/zelas/foot.svg"
  9338. }
  9339. },
  9340. },
  9341. [
  9342. {
  9343. name: "Normal",
  9344. height: math.unit(2.3, "meters")
  9345. },
  9346. {
  9347. name: "Macro",
  9348. height: math.unit(30, "meters"),
  9349. default: true
  9350. },
  9351. ]
  9352. ))
  9353. characterMakers.push(() => makeCharacter(
  9354. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9355. {
  9356. front: {
  9357. height: math.unit(1, "inch"),
  9358. weight: math.unit(0.21, "grams"),
  9359. name: "Front",
  9360. image: {
  9361. source: "./media/characters/talbot/front.svg",
  9362. extra: 594 / 544
  9363. }
  9364. },
  9365. },
  9366. [
  9367. {
  9368. name: "Micro",
  9369. height: math.unit(1, "inch"),
  9370. default: true
  9371. },
  9372. ]
  9373. ))
  9374. characterMakers.push(() => makeCharacter(
  9375. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9376. {
  9377. front: {
  9378. height: math.unit(3 + 3 / 12, "feet"),
  9379. weight: math.unit(51.8, "lb"),
  9380. name: "Front",
  9381. image: {
  9382. source: "./media/characters/fliss/front.svg",
  9383. extra: 840 / 640
  9384. }
  9385. },
  9386. },
  9387. [
  9388. {
  9389. name: "Teeny Tiny",
  9390. height: math.unit(1, "mm")
  9391. },
  9392. {
  9393. name: "Small",
  9394. height: math.unit(1, "inch"),
  9395. default: true
  9396. },
  9397. {
  9398. name: "Standard Sylveon",
  9399. height: math.unit(3 + 3 / 12, "feet")
  9400. },
  9401. {
  9402. name: "Large Nuisance",
  9403. height: math.unit(33, "feet")
  9404. },
  9405. {
  9406. name: "City Filler",
  9407. height: math.unit(3000, "feet")
  9408. },
  9409. {
  9410. name: "New Horizon",
  9411. height: math.unit(6000, "miles")
  9412. },
  9413. ]
  9414. ))
  9415. characterMakers.push(() => makeCharacter(
  9416. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9417. {
  9418. front: {
  9419. height: math.unit(5, "cm"),
  9420. weight: math.unit(1.94, "g"),
  9421. name: "Front",
  9422. image: {
  9423. source: "./media/characters/fleta/front.svg",
  9424. extra: 835 / 803
  9425. }
  9426. },
  9427. back: {
  9428. height: math.unit(5, "cm"),
  9429. weight: math.unit(1.94, "g"),
  9430. name: "Back",
  9431. image: {
  9432. source: "./media/characters/fleta/back.svg",
  9433. extra: 835 / 803
  9434. }
  9435. },
  9436. },
  9437. [
  9438. {
  9439. name: "Micro",
  9440. height: math.unit(5, "cm"),
  9441. default: true
  9442. },
  9443. ]
  9444. ))
  9445. characterMakers.push(() => makeCharacter(
  9446. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9447. {
  9448. front: {
  9449. height: math.unit(6, "feet"),
  9450. weight: math.unit(225, "lb"),
  9451. name: "Front",
  9452. image: {
  9453. source: "./media/characters/dominic/front.svg",
  9454. extra: 1770 / 1620,
  9455. bottom: 0.025
  9456. }
  9457. },
  9458. back: {
  9459. height: math.unit(6, "feet"),
  9460. weight: math.unit(225, "lb"),
  9461. name: "Back",
  9462. image: {
  9463. source: "./media/characters/dominic/back.svg",
  9464. extra: 1745 / 1620,
  9465. bottom: 0.065
  9466. }
  9467. },
  9468. },
  9469. [
  9470. {
  9471. name: "Nano",
  9472. height: math.unit(0.1, "mm")
  9473. },
  9474. {
  9475. name: "Micro-",
  9476. height: math.unit(1, "mm")
  9477. },
  9478. {
  9479. name: "Micro",
  9480. height: math.unit(4, "inches")
  9481. },
  9482. {
  9483. name: "Normal",
  9484. height: math.unit(6 + 4 / 12, "feet"),
  9485. default: true
  9486. },
  9487. {
  9488. name: "Macro",
  9489. height: math.unit(115, "feet")
  9490. },
  9491. {
  9492. name: "Macro+",
  9493. height: math.unit(955, "feet")
  9494. },
  9495. {
  9496. name: "Megamacro",
  9497. height: math.unit(8990, "feet")
  9498. },
  9499. {
  9500. name: "Gigmacro",
  9501. height: math.unit(9310, "miles")
  9502. },
  9503. {
  9504. name: "Teramacro",
  9505. height: math.unit(1567005010, "miles")
  9506. },
  9507. {
  9508. name: "Examacro",
  9509. height: math.unit(1425, "parsecs")
  9510. },
  9511. ]
  9512. ))
  9513. characterMakers.push(() => makeCharacter(
  9514. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9515. {
  9516. front: {
  9517. height: math.unit(400, "feet"),
  9518. weight: math.unit(44444444, "lb"),
  9519. name: "Front",
  9520. image: {
  9521. source: "./media/characters/major-colonel/front.svg"
  9522. }
  9523. },
  9524. back: {
  9525. height: math.unit(400, "feet"),
  9526. weight: math.unit(44444444, "lb"),
  9527. name: "Back",
  9528. image: {
  9529. source: "./media/characters/major-colonel/back.svg"
  9530. }
  9531. },
  9532. },
  9533. [
  9534. {
  9535. name: "Macro",
  9536. height: math.unit(400, "feet"),
  9537. default: true
  9538. },
  9539. ]
  9540. ))
  9541. characterMakers.push(() => makeCharacter(
  9542. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9543. {
  9544. catFront: {
  9545. height: math.unit(6, "feet"),
  9546. weight: math.unit(120, "lb"),
  9547. name: "Front (Cat Side)",
  9548. image: {
  9549. source: "./media/characters/axel-lycan/cat-front.svg",
  9550. extra: 430 / 402,
  9551. bottom: 43 / 472.35
  9552. }
  9553. },
  9554. catBack: {
  9555. height: math.unit(6, "feet"),
  9556. weight: math.unit(120, "lb"),
  9557. name: "Back (Cat Side)",
  9558. image: {
  9559. source: "./media/characters/axel-lycan/cat-back.svg",
  9560. extra: 447 / 419,
  9561. bottom: 23.3 / 469
  9562. }
  9563. },
  9564. wolfFront: {
  9565. height: math.unit(6, "feet"),
  9566. weight: math.unit(120, "lb"),
  9567. name: "Front (Wolf Side)",
  9568. image: {
  9569. source: "./media/characters/axel-lycan/wolf-front.svg",
  9570. extra: 485 / 456,
  9571. bottom: 19 / 504
  9572. }
  9573. },
  9574. wolfBack: {
  9575. height: math.unit(6, "feet"),
  9576. weight: math.unit(120, "lb"),
  9577. name: "Back (Wolf Side)",
  9578. image: {
  9579. source: "./media/characters/axel-lycan/wolf-back.svg",
  9580. extra: 475 / 438,
  9581. bottom: 39.2 / 514
  9582. }
  9583. },
  9584. },
  9585. [
  9586. {
  9587. name: "Macro",
  9588. height: math.unit(1, "km"),
  9589. default: true
  9590. },
  9591. ]
  9592. ))
  9593. characterMakers.push(() => makeCharacter(
  9594. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9595. {
  9596. front: {
  9597. height: math.unit(5 + 9 / 12, "feet"),
  9598. weight: math.unit(175, "lb"),
  9599. name: "Front",
  9600. image: {
  9601. source: "./media/characters/vanrel-hyena/front.svg",
  9602. extra: 1086 / 1010,
  9603. bottom: 0.04
  9604. }
  9605. },
  9606. },
  9607. [
  9608. {
  9609. name: "Normal",
  9610. height: math.unit(5 + 9 / 12, "feet"),
  9611. default: true
  9612. },
  9613. ]
  9614. ))
  9615. characterMakers.push(() => makeCharacter(
  9616. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9617. {
  9618. front: {
  9619. height: math.unit(6, "feet"),
  9620. weight: math.unit(103, "lb"),
  9621. name: "Front",
  9622. image: {
  9623. source: "./media/characters/abbott-absol/front.svg",
  9624. extra: 2010 / 1842
  9625. }
  9626. },
  9627. },
  9628. [
  9629. {
  9630. name: "Megamicro",
  9631. height: math.unit(0.1, "mm")
  9632. },
  9633. {
  9634. name: "Micro",
  9635. height: math.unit(1, "inch")
  9636. },
  9637. {
  9638. name: "Normal",
  9639. height: math.unit(6, "feet"),
  9640. default: true
  9641. },
  9642. ]
  9643. ))
  9644. characterMakers.push(() => makeCharacter(
  9645. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9646. {
  9647. front: {
  9648. height: math.unit(6, "feet"),
  9649. weight: math.unit(264, "lb"),
  9650. name: "Front",
  9651. image: {
  9652. source: "./media/characters/hector/front.svg",
  9653. extra: 2280 / 2130,
  9654. bottom: 0.07
  9655. }
  9656. },
  9657. },
  9658. [
  9659. {
  9660. name: "Normal",
  9661. height: math.unit(12.25, "foot"),
  9662. default: true
  9663. },
  9664. {
  9665. name: "Macro",
  9666. height: math.unit(160, "feet")
  9667. },
  9668. ]
  9669. ))
  9670. characterMakers.push(() => makeCharacter(
  9671. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9672. {
  9673. front: {
  9674. height: math.unit(6, "feet"),
  9675. weight: math.unit(150, "lb"),
  9676. name: "Front",
  9677. image: {
  9678. source: "./media/characters/sal/front.svg",
  9679. extra: 1846 / 1699,
  9680. bottom: 0.04
  9681. }
  9682. },
  9683. },
  9684. [
  9685. {
  9686. name: "Megamacro",
  9687. height: math.unit(10, "miles"),
  9688. default: true
  9689. },
  9690. ]
  9691. ))
  9692. characterMakers.push(() => makeCharacter(
  9693. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9694. {
  9695. front: {
  9696. height: math.unit(3, "meters"),
  9697. weight: math.unit(450, "kg"),
  9698. name: "front",
  9699. image: {
  9700. source: "./media/characters/ranger/front.svg",
  9701. extra: 2401 / 2243,
  9702. bottom: 0.05
  9703. }
  9704. },
  9705. },
  9706. [
  9707. {
  9708. name: "Normal",
  9709. height: math.unit(3, "meters"),
  9710. default: true
  9711. },
  9712. ]
  9713. ))
  9714. characterMakers.push(() => makeCharacter(
  9715. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9716. {
  9717. front: {
  9718. height: math.unit(14, "feet"),
  9719. weight: math.unit(800, "kg"),
  9720. name: "Front",
  9721. image: {
  9722. source: "./media/characters/theresa/front.svg",
  9723. extra: 3575 / 3346,
  9724. bottom: 0.03
  9725. }
  9726. },
  9727. },
  9728. [
  9729. {
  9730. name: "Normal",
  9731. height: math.unit(14, "feet"),
  9732. default: true
  9733. },
  9734. ]
  9735. ))
  9736. characterMakers.push(() => makeCharacter(
  9737. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9738. {
  9739. front: {
  9740. height: math.unit(6, "feet"),
  9741. weight: math.unit(3, "kg"),
  9742. name: "Front",
  9743. image: {
  9744. source: "./media/characters/ine/front.svg",
  9745. extra: 678 / 539,
  9746. bottom: 0.023
  9747. }
  9748. },
  9749. },
  9750. [
  9751. {
  9752. name: "Normal",
  9753. height: math.unit(2.265, "feet"),
  9754. default: true
  9755. },
  9756. ]
  9757. ))
  9758. characterMakers.push(() => makeCharacter(
  9759. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9760. {
  9761. front: {
  9762. height: math.unit(5, "feet"),
  9763. weight: math.unit(30, "kg"),
  9764. name: "Front",
  9765. image: {
  9766. source: "./media/characters/vial/front.svg",
  9767. extra: 1365 / 1277,
  9768. bottom: 0.04
  9769. }
  9770. },
  9771. },
  9772. [
  9773. {
  9774. name: "Normal",
  9775. height: math.unit(5, "feet"),
  9776. default: true
  9777. },
  9778. ]
  9779. ))
  9780. characterMakers.push(() => makeCharacter(
  9781. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9782. {
  9783. side: {
  9784. height: math.unit(3.4, "meters"),
  9785. weight: math.unit(1000, "lb"),
  9786. name: "Side",
  9787. image: {
  9788. source: "./media/characters/rovoska/side.svg",
  9789. extra: 4403 / 1515
  9790. }
  9791. },
  9792. },
  9793. [
  9794. {
  9795. name: "Normal",
  9796. height: math.unit(3.4, "meters"),
  9797. default: true
  9798. },
  9799. ]
  9800. ))
  9801. characterMakers.push(() => makeCharacter(
  9802. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9803. {
  9804. front: {
  9805. height: math.unit(8, "feet"),
  9806. weight: math.unit(315, "lb"),
  9807. name: "Front",
  9808. image: {
  9809. source: "./media/characters/gunner-rotthbauer/front.svg"
  9810. }
  9811. },
  9812. back: {
  9813. height: math.unit(8, "feet"),
  9814. weight: math.unit(315, "lb"),
  9815. name: "Back",
  9816. image: {
  9817. source: "./media/characters/gunner-rotthbauer/back.svg"
  9818. }
  9819. },
  9820. },
  9821. [
  9822. {
  9823. name: "Micro",
  9824. height: math.unit(3.5, "inches")
  9825. },
  9826. {
  9827. name: "Normal",
  9828. height: math.unit(8, "feet"),
  9829. default: true
  9830. },
  9831. {
  9832. name: "Macro",
  9833. height: math.unit(250, "feet")
  9834. },
  9835. {
  9836. name: "Megamacro",
  9837. height: math.unit(1, "AU")
  9838. },
  9839. ]
  9840. ))
  9841. characterMakers.push(() => makeCharacter(
  9842. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9843. {
  9844. front: {
  9845. height: math.unit(5 + 5 / 12, "feet"),
  9846. weight: math.unit(140, "lb"),
  9847. name: "Front",
  9848. image: {
  9849. source: "./media/characters/allatia/front.svg",
  9850. extra: 1227 / 1180,
  9851. bottom: 0.027
  9852. }
  9853. },
  9854. },
  9855. [
  9856. {
  9857. name: "Normal",
  9858. height: math.unit(5 + 5 / 12, "feet")
  9859. },
  9860. {
  9861. name: "Macro",
  9862. height: math.unit(250, "feet"),
  9863. default: true
  9864. },
  9865. {
  9866. name: "Megamacro",
  9867. height: math.unit(8, "miles")
  9868. }
  9869. ]
  9870. ))
  9871. characterMakers.push(() => makeCharacter(
  9872. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9873. {
  9874. front: {
  9875. height: math.unit(6, "feet"),
  9876. weight: math.unit(120, "lb"),
  9877. name: "Front",
  9878. image: {
  9879. source: "./media/characters/tene/front.svg",
  9880. extra: 1728 / 1578,
  9881. bottom: 0.022
  9882. }
  9883. },
  9884. stomping: {
  9885. height: math.unit(2.025, "meters"),
  9886. weight: math.unit(120, "lb"),
  9887. name: "Stomping",
  9888. image: {
  9889. source: "./media/characters/tene/stomping.svg",
  9890. extra: 938 / 873,
  9891. bottom: 0.01
  9892. }
  9893. },
  9894. sitting: {
  9895. height: math.unit(1, "meter"),
  9896. weight: math.unit(120, "lb"),
  9897. name: "Sitting",
  9898. image: {
  9899. source: "./media/characters/tene/sitting.svg",
  9900. extra: 437 / 415,
  9901. bottom: 0.1
  9902. }
  9903. },
  9904. feral: {
  9905. height: math.unit(3.9, "feet"),
  9906. weight: math.unit(250, "lb"),
  9907. name: "Feral",
  9908. image: {
  9909. source: "./media/characters/tene/feral.svg",
  9910. extra: 717 / 458,
  9911. bottom: 0.179
  9912. }
  9913. },
  9914. },
  9915. [
  9916. {
  9917. name: "Normal",
  9918. height: math.unit(6, "feet")
  9919. },
  9920. {
  9921. name: "Macro",
  9922. height: math.unit(300, "feet"),
  9923. default: true
  9924. },
  9925. {
  9926. name: "Megamacro",
  9927. height: math.unit(5, "miles")
  9928. },
  9929. ]
  9930. ))
  9931. characterMakers.push(() => makeCharacter(
  9932. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9933. {
  9934. side: {
  9935. height: math.unit(6, "feet"),
  9936. name: "Side",
  9937. image: {
  9938. source: "./media/characters/evander/side.svg",
  9939. extra: 877 / 477
  9940. }
  9941. },
  9942. },
  9943. [
  9944. {
  9945. name: "Normal",
  9946. height: math.unit(0.83, "meters"),
  9947. default: true
  9948. },
  9949. ]
  9950. ))
  9951. characterMakers.push(() => makeCharacter(
  9952. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9953. {
  9954. front: {
  9955. height: math.unit(12, "feet"),
  9956. weight: math.unit(1000, "lb"),
  9957. name: "Front",
  9958. image: {
  9959. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9960. extra: 1762 / 1611
  9961. }
  9962. },
  9963. back: {
  9964. height: math.unit(12, "feet"),
  9965. weight: math.unit(1000, "lb"),
  9966. name: "Back",
  9967. image: {
  9968. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9969. extra: 1762 / 1611
  9970. }
  9971. },
  9972. },
  9973. [
  9974. {
  9975. name: "Normal",
  9976. height: math.unit(12, "feet"),
  9977. default: true
  9978. },
  9979. {
  9980. name: "Kaiju",
  9981. height: math.unit(150, "feet")
  9982. },
  9983. ]
  9984. ))
  9985. characterMakers.push(() => makeCharacter(
  9986. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9987. {
  9988. front: {
  9989. height: math.unit(6, "feet"),
  9990. weight: math.unit(150, "lb"),
  9991. name: "Front",
  9992. image: {
  9993. source: "./media/characters/zero-alurus/front.svg"
  9994. }
  9995. },
  9996. back: {
  9997. height: math.unit(6, "feet"),
  9998. weight: math.unit(150, "lb"),
  9999. name: "Back",
  10000. image: {
  10001. source: "./media/characters/zero-alurus/back.svg"
  10002. }
  10003. },
  10004. },
  10005. [
  10006. {
  10007. name: "Normal",
  10008. height: math.unit(5 + 10 / 12, "feet")
  10009. },
  10010. {
  10011. name: "Macro",
  10012. height: math.unit(60, "feet"),
  10013. default: true
  10014. },
  10015. {
  10016. name: "Macro+",
  10017. height: math.unit(450, "feet")
  10018. },
  10019. ]
  10020. ))
  10021. characterMakers.push(() => makeCharacter(
  10022. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10023. {
  10024. front: {
  10025. height: math.unit(6, "feet"),
  10026. weight: math.unit(200, "lb"),
  10027. name: "Front",
  10028. image: {
  10029. source: "./media/characters/mega-shi/front.svg",
  10030. extra: 1279 / 1250,
  10031. bottom: 0.02
  10032. }
  10033. },
  10034. back: {
  10035. height: math.unit(6, "feet"),
  10036. weight: math.unit(200, "lb"),
  10037. name: "Back",
  10038. image: {
  10039. source: "./media/characters/mega-shi/back.svg",
  10040. extra: 1279 / 1250,
  10041. bottom: 0.02
  10042. }
  10043. },
  10044. },
  10045. [
  10046. {
  10047. name: "Micro",
  10048. height: math.unit(16 + 6 / 12, "feet")
  10049. },
  10050. {
  10051. name: "Third Dimension",
  10052. height: math.unit(40, "meters")
  10053. },
  10054. {
  10055. name: "Normal",
  10056. height: math.unit(660, "feet"),
  10057. default: true
  10058. },
  10059. {
  10060. name: "Megamacro",
  10061. height: math.unit(10, "miles")
  10062. },
  10063. {
  10064. name: "Planetary Launch",
  10065. height: math.unit(500, "miles")
  10066. },
  10067. {
  10068. name: "Interstellar",
  10069. height: math.unit(1e9, "miles")
  10070. },
  10071. {
  10072. name: "Leaving the Universe",
  10073. height: math.unit(1, "gigaparsec")
  10074. },
  10075. {
  10076. name: "Travelling Universes",
  10077. height: math.unit(30e15, "parsecs")
  10078. },
  10079. ]
  10080. ))
  10081. characterMakers.push(() => makeCharacter(
  10082. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10083. {
  10084. front: {
  10085. height: math.unit(6, "feet"),
  10086. weight: math.unit(150, "lb"),
  10087. name: "Front",
  10088. image: {
  10089. source: "./media/characters/odyssey/front.svg",
  10090. extra: 1782 / 1582,
  10091. bottom: 0.01
  10092. }
  10093. },
  10094. side: {
  10095. height: math.unit(5.7, "feet"),
  10096. weight: math.unit(140, "lb"),
  10097. name: "Side",
  10098. image: {
  10099. source: "./media/characters/odyssey/side.svg",
  10100. extra: 6462 / 5700
  10101. }
  10102. },
  10103. },
  10104. [
  10105. {
  10106. name: "Normal",
  10107. height: math.unit(5 + 4 / 12, "feet")
  10108. },
  10109. {
  10110. name: "Macro",
  10111. height: math.unit(1, "km")
  10112. },
  10113. {
  10114. name: "Megamacro",
  10115. height: math.unit(3000, "km")
  10116. },
  10117. {
  10118. name: "Gigamacro",
  10119. height: math.unit(1, "AU"),
  10120. default: true
  10121. },
  10122. {
  10123. name: "Omniversal",
  10124. height: math.unit(100e14, "lightyears")
  10125. },
  10126. ]
  10127. ))
  10128. characterMakers.push(() => makeCharacter(
  10129. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10130. {
  10131. front: {
  10132. height: math.unit(6, "feet"),
  10133. weight: math.unit(300, "lb"),
  10134. name: "Front",
  10135. image: {
  10136. source: "./media/characters/mekuto/front.svg",
  10137. extra: 921 / 832,
  10138. bottom: 0.03
  10139. }
  10140. },
  10141. hand: {
  10142. height: math.unit(6 / 10.24, "feet"),
  10143. name: "Hand",
  10144. image: {
  10145. source: "./media/characters/mekuto/hand.svg"
  10146. }
  10147. },
  10148. foot: {
  10149. height: math.unit(6 / 5.05, "feet"),
  10150. name: "Foot",
  10151. image: {
  10152. source: "./media/characters/mekuto/foot.svg"
  10153. }
  10154. },
  10155. },
  10156. [
  10157. {
  10158. name: "Minimicro",
  10159. height: math.unit(0.2, "inches")
  10160. },
  10161. {
  10162. name: "Micro",
  10163. height: math.unit(1.5, "inches")
  10164. },
  10165. {
  10166. name: "Normal",
  10167. height: math.unit(5 + 11 / 12, "feet"),
  10168. default: true
  10169. },
  10170. {
  10171. name: "Minimacro",
  10172. height: math.unit(17 + 9 / 12, "feet")
  10173. },
  10174. {
  10175. name: "Macro",
  10176. height: math.unit(177.5, "feet")
  10177. },
  10178. {
  10179. name: "Megamacro",
  10180. height: math.unit(152, "miles")
  10181. },
  10182. ]
  10183. ))
  10184. characterMakers.push(() => makeCharacter(
  10185. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10186. {
  10187. front: {
  10188. height: math.unit(6.5, "inches"),
  10189. weight: math.unit(13, "oz"),
  10190. name: "Front",
  10191. image: {
  10192. source: "./media/characters/dafydd-tomos/front.svg",
  10193. extra: 2990 / 2603,
  10194. bottom: 0.03
  10195. }
  10196. },
  10197. },
  10198. [
  10199. {
  10200. name: "Micro",
  10201. height: math.unit(6.5, "inches"),
  10202. default: true
  10203. },
  10204. ]
  10205. ))
  10206. characterMakers.push(() => makeCharacter(
  10207. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10208. {
  10209. front: {
  10210. height: math.unit(6, "feet"),
  10211. weight: math.unit(150, "lb"),
  10212. name: "Front",
  10213. image: {
  10214. source: "./media/characters/splinter/front.svg",
  10215. extra: 2990 / 2882,
  10216. bottom: 0.04
  10217. }
  10218. },
  10219. back: {
  10220. height: math.unit(6, "feet"),
  10221. weight: math.unit(150, "lb"),
  10222. name: "Back",
  10223. image: {
  10224. source: "./media/characters/splinter/back.svg",
  10225. extra: 2990 / 2882,
  10226. bottom: 0.04
  10227. }
  10228. },
  10229. },
  10230. [
  10231. {
  10232. name: "Normal",
  10233. height: math.unit(6, "feet")
  10234. },
  10235. {
  10236. name: "Macro",
  10237. height: math.unit(230, "meters"),
  10238. default: true
  10239. },
  10240. ]
  10241. ))
  10242. characterMakers.push(() => makeCharacter(
  10243. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10244. {
  10245. front: {
  10246. height: math.unit(4 + 10 / 12, "feet"),
  10247. weight: math.unit(480, "lb"),
  10248. name: "Front",
  10249. image: {
  10250. source: "./media/characters/snow-gabumon/front.svg",
  10251. extra: 1140 / 963,
  10252. bottom: 0.058
  10253. }
  10254. },
  10255. back: {
  10256. height: math.unit(4 + 10 / 12, "feet"),
  10257. weight: math.unit(480, "lb"),
  10258. name: "Back",
  10259. image: {
  10260. source: "./media/characters/snow-gabumon/back.svg",
  10261. extra: 1115 / 962,
  10262. bottom: 0.041
  10263. }
  10264. },
  10265. frontUndresed: {
  10266. height: math.unit(4 + 10 / 12, "feet"),
  10267. weight: math.unit(480, "lb"),
  10268. name: "Front (Undressed)",
  10269. image: {
  10270. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10271. extra: 1061 / 960,
  10272. bottom: 0.045
  10273. }
  10274. },
  10275. },
  10276. [
  10277. {
  10278. name: "Micro",
  10279. height: math.unit(1, "inch")
  10280. },
  10281. {
  10282. name: "Normal",
  10283. height: math.unit(4 + 10 / 12, "feet"),
  10284. default: true
  10285. },
  10286. {
  10287. name: "Macro",
  10288. height: math.unit(200, "feet")
  10289. },
  10290. {
  10291. name: "Megamacro",
  10292. height: math.unit(120, "miles")
  10293. },
  10294. {
  10295. name: "Gigamacro",
  10296. height: math.unit(9800, "miles")
  10297. },
  10298. ]
  10299. ))
  10300. characterMakers.push(() => makeCharacter(
  10301. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10302. {
  10303. front: {
  10304. height: math.unit(1.7, "meters"),
  10305. weight: math.unit(140, "lb"),
  10306. name: "Front",
  10307. image: {
  10308. source: "./media/characters/moody/front.svg",
  10309. extra: 3226 / 3007,
  10310. bottom: 0.087
  10311. }
  10312. },
  10313. },
  10314. [
  10315. {
  10316. name: "Micro",
  10317. height: math.unit(1, "mm")
  10318. },
  10319. {
  10320. name: "Normal",
  10321. height: math.unit(1.7, "meters"),
  10322. default: true
  10323. },
  10324. {
  10325. name: "Macro",
  10326. height: math.unit(80, "meters")
  10327. },
  10328. {
  10329. name: "Macro+",
  10330. height: math.unit(500, "meters")
  10331. },
  10332. ]
  10333. ))
  10334. characterMakers.push(() => makeCharacter(
  10335. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10336. {
  10337. front: {
  10338. height: math.unit(6, "feet"),
  10339. weight: math.unit(150, "lb"),
  10340. name: "Front",
  10341. image: {
  10342. source: "./media/characters/zyas/front.svg",
  10343. extra: 1180 / 1120,
  10344. bottom: 0.045
  10345. }
  10346. },
  10347. },
  10348. [
  10349. {
  10350. name: "Normal",
  10351. height: math.unit(10, "feet"),
  10352. default: true
  10353. },
  10354. {
  10355. name: "Macro",
  10356. height: math.unit(500, "feet")
  10357. },
  10358. {
  10359. name: "Megamacro",
  10360. height: math.unit(5, "miles")
  10361. },
  10362. {
  10363. name: "Teramacro",
  10364. height: math.unit(150000, "miles")
  10365. },
  10366. ]
  10367. ))
  10368. characterMakers.push(() => makeCharacter(
  10369. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10370. {
  10371. front: {
  10372. height: math.unit(6, "feet"),
  10373. weight: math.unit(150, "lb"),
  10374. name: "Front",
  10375. image: {
  10376. source: "./media/characters/cuon/front.svg",
  10377. extra: 1390 / 1320,
  10378. bottom: 0.008
  10379. }
  10380. },
  10381. },
  10382. [
  10383. {
  10384. name: "Micro",
  10385. height: math.unit(3, "inches")
  10386. },
  10387. {
  10388. name: "Normal",
  10389. height: math.unit(18 + 9 / 12, "feet"),
  10390. default: true
  10391. },
  10392. {
  10393. name: "Macro",
  10394. height: math.unit(360, "feet")
  10395. },
  10396. {
  10397. name: "Megamacro",
  10398. height: math.unit(360, "miles")
  10399. },
  10400. ]
  10401. ))
  10402. characterMakers.push(() => makeCharacter(
  10403. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10404. {
  10405. front: {
  10406. height: math.unit(2.4, "meters"),
  10407. weight: math.unit(70, "kg"),
  10408. name: "Front",
  10409. image: {
  10410. source: "./media/characters/nyanuxk/front.svg",
  10411. extra: 1172 / 1084,
  10412. bottom: 0.065
  10413. }
  10414. },
  10415. side: {
  10416. height: math.unit(2.4, "meters"),
  10417. weight: math.unit(70, "kg"),
  10418. name: "Side",
  10419. image: {
  10420. source: "./media/characters/nyanuxk/side.svg",
  10421. extra: 1190 / 1132,
  10422. bottom: 0.007
  10423. }
  10424. },
  10425. back: {
  10426. height: math.unit(2.4, "meters"),
  10427. weight: math.unit(70, "kg"),
  10428. name: "Back",
  10429. image: {
  10430. source: "./media/characters/nyanuxk/back.svg",
  10431. extra: 1200 / 1141,
  10432. bottom: 0.015
  10433. }
  10434. },
  10435. foot: {
  10436. height: math.unit(0.52, "meters"),
  10437. name: "Foot",
  10438. image: {
  10439. source: "./media/characters/nyanuxk/foot.svg"
  10440. }
  10441. },
  10442. },
  10443. [
  10444. {
  10445. name: "Micro",
  10446. height: math.unit(2, "cm")
  10447. },
  10448. {
  10449. name: "Normal",
  10450. height: math.unit(2.4, "meters"),
  10451. default: true
  10452. },
  10453. {
  10454. name: "Smaller Macro",
  10455. height: math.unit(120, "meters")
  10456. },
  10457. {
  10458. name: "Bigger Macro",
  10459. height: math.unit(1.2, "km")
  10460. },
  10461. {
  10462. name: "Megamacro",
  10463. height: math.unit(15, "kilometers")
  10464. },
  10465. {
  10466. name: "Gigamacro",
  10467. height: math.unit(2000, "km")
  10468. },
  10469. {
  10470. name: "Teramacro",
  10471. height: math.unit(500000, "km")
  10472. },
  10473. ]
  10474. ))
  10475. characterMakers.push(() => makeCharacter(
  10476. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10477. {
  10478. side: {
  10479. height: math.unit(6, "feet"),
  10480. name: "Side",
  10481. image: {
  10482. source: "./media/characters/ailbhe/side.svg",
  10483. extra: 757 / 464,
  10484. bottom: 0.041
  10485. }
  10486. },
  10487. },
  10488. [
  10489. {
  10490. name: "Normal",
  10491. height: math.unit(1.07, "meters"),
  10492. default: true
  10493. },
  10494. ]
  10495. ))
  10496. characterMakers.push(() => makeCharacter(
  10497. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10498. {
  10499. front: {
  10500. height: math.unit(6, "feet"),
  10501. weight: math.unit(120, "kg"),
  10502. name: "Front",
  10503. image: {
  10504. source: "./media/characters/zevulfius/front.svg",
  10505. extra: 965 / 903
  10506. }
  10507. },
  10508. side: {
  10509. height: math.unit(6, "feet"),
  10510. weight: math.unit(120, "kg"),
  10511. name: "Side",
  10512. image: {
  10513. source: "./media/characters/zevulfius/side.svg",
  10514. extra: 939 / 900
  10515. }
  10516. },
  10517. back: {
  10518. height: math.unit(6, "feet"),
  10519. weight: math.unit(120, "kg"),
  10520. name: "Back",
  10521. image: {
  10522. source: "./media/characters/zevulfius/back.svg",
  10523. extra: 918 / 854,
  10524. bottom: 0.005
  10525. }
  10526. },
  10527. foot: {
  10528. height: math.unit(6 / 3.72, "feet"),
  10529. name: "Foot",
  10530. image: {
  10531. source: "./media/characters/zevulfius/foot.svg"
  10532. }
  10533. },
  10534. },
  10535. [
  10536. {
  10537. name: "Macro",
  10538. height: math.unit(750, "meters")
  10539. },
  10540. {
  10541. name: "Megamacro",
  10542. height: math.unit(20, "km"),
  10543. default: true
  10544. },
  10545. {
  10546. name: "Gigamacro",
  10547. height: math.unit(2000, "km")
  10548. },
  10549. {
  10550. name: "Teramacro",
  10551. height: math.unit(250000, "km")
  10552. },
  10553. ]
  10554. ))
  10555. characterMakers.push(() => makeCharacter(
  10556. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10557. {
  10558. front: {
  10559. height: math.unit(100, "feet"),
  10560. weight: math.unit(350, "kg"),
  10561. name: "Front",
  10562. image: {
  10563. source: "./media/characters/rikes/front.svg",
  10564. extra: 1565 / 1483,
  10565. bottom: 0.017
  10566. }
  10567. },
  10568. },
  10569. [
  10570. {
  10571. name: "Macro",
  10572. height: math.unit(100, "feet"),
  10573. default: true
  10574. },
  10575. ]
  10576. ))
  10577. characterMakers.push(() => makeCharacter(
  10578. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10579. {
  10580. front: {
  10581. height: math.unit(8, "feet"),
  10582. weight: math.unit(356, "lb"),
  10583. name: "Front",
  10584. image: {
  10585. source: "./media/characters/adam-silver-mane/front.svg",
  10586. extra: 1036/937,
  10587. bottom: 63/1099
  10588. }
  10589. },
  10590. side: {
  10591. height: math.unit(8, "feet"),
  10592. weight: math.unit(356, "lb"),
  10593. name: "Side",
  10594. image: {
  10595. source: "./media/characters/adam-silver-mane/side.svg",
  10596. extra: 997/901,
  10597. bottom: 59/1056
  10598. }
  10599. },
  10600. frontNsfw: {
  10601. height: math.unit(8, "feet"),
  10602. weight: math.unit(356, "lb"),
  10603. name: "Front (NSFW)",
  10604. image: {
  10605. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10606. extra: 1036/937,
  10607. bottom: 63/1099
  10608. }
  10609. },
  10610. sideNsfw: {
  10611. height: math.unit(8, "feet"),
  10612. weight: math.unit(356, "lb"),
  10613. name: "Side (NSFW)",
  10614. image: {
  10615. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10616. extra: 997/901,
  10617. bottom: 59/1056
  10618. }
  10619. },
  10620. dick: {
  10621. height: math.unit(2.1, "feet"),
  10622. name: "Dick",
  10623. image: {
  10624. source: "./media/characters/adam-silver-mane/dick.svg"
  10625. }
  10626. },
  10627. taur: {
  10628. height: math.unit(16, "feet"),
  10629. weight: math.unit(1500, "kg"),
  10630. name: "Taur",
  10631. image: {
  10632. source: "./media/characters/adam-silver-mane/taur.svg",
  10633. extra: 1713 / 1571,
  10634. bottom: 0.01
  10635. }
  10636. },
  10637. },
  10638. [
  10639. {
  10640. name: "Normal",
  10641. height: math.unit(8, "feet")
  10642. },
  10643. {
  10644. name: "Minimacro",
  10645. height: math.unit(80, "feet")
  10646. },
  10647. {
  10648. name: "MDA",
  10649. height: math.unit(80, "meters")
  10650. },
  10651. {
  10652. name: "Macro",
  10653. height: math.unit(800, "feet"),
  10654. default: true
  10655. },
  10656. {
  10657. name: "Megamacro",
  10658. height: math.unit(8000, "feet")
  10659. },
  10660. {
  10661. name: "Gigamacro",
  10662. height: math.unit(800, "miles")
  10663. },
  10664. {
  10665. name: "Teramacro",
  10666. height: math.unit(80000, "miles")
  10667. },
  10668. {
  10669. name: "Celestial",
  10670. height: math.unit(8e6, "miles")
  10671. },
  10672. {
  10673. name: "Star Dragon",
  10674. height: math.unit(800000, "parsecs")
  10675. },
  10676. {
  10677. name: "Godly",
  10678. height: math.unit(800, "teraparsecs")
  10679. },
  10680. ]
  10681. ))
  10682. characterMakers.push(() => makeCharacter(
  10683. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10684. {
  10685. front: {
  10686. height: math.unit(6, "feet"),
  10687. weight: math.unit(150, "lb"),
  10688. name: "Front",
  10689. image: {
  10690. source: "./media/characters/ky'owin/front.svg",
  10691. extra: 3888 / 3068,
  10692. bottom: 0.015
  10693. }
  10694. },
  10695. },
  10696. [
  10697. {
  10698. name: "Normal",
  10699. height: math.unit(6 + 8 / 12, "feet")
  10700. },
  10701. {
  10702. name: "Large",
  10703. height: math.unit(68, "feet")
  10704. },
  10705. {
  10706. name: "Macro",
  10707. height: math.unit(132, "feet")
  10708. },
  10709. {
  10710. name: "Macro+",
  10711. height: math.unit(340, "feet")
  10712. },
  10713. {
  10714. name: "Macro++",
  10715. height: math.unit(680, "feet"),
  10716. default: true
  10717. },
  10718. {
  10719. name: "Megamacro",
  10720. height: math.unit(1, "mile")
  10721. },
  10722. {
  10723. name: "Megamacro+",
  10724. height: math.unit(10, "miles")
  10725. },
  10726. ]
  10727. ))
  10728. characterMakers.push(() => makeCharacter(
  10729. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10730. {
  10731. front: {
  10732. height: math.unit(4, "feet"),
  10733. weight: math.unit(50, "lb"),
  10734. name: "Front",
  10735. image: {
  10736. source: "./media/characters/mal/front.svg",
  10737. extra: 785 / 724,
  10738. bottom: 0.07
  10739. }
  10740. },
  10741. },
  10742. [
  10743. {
  10744. name: "Micro",
  10745. height: math.unit(4, "inches")
  10746. },
  10747. {
  10748. name: "Normal",
  10749. height: math.unit(4, "feet"),
  10750. default: true
  10751. },
  10752. {
  10753. name: "Macro",
  10754. height: math.unit(200, "feet")
  10755. },
  10756. ]
  10757. ))
  10758. characterMakers.push(() => makeCharacter(
  10759. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10760. {
  10761. front: {
  10762. height: math.unit(6, "feet"),
  10763. weight: math.unit(150, "lb"),
  10764. name: "Front",
  10765. image: {
  10766. source: "./media/characters/jordan-deware/front.svg",
  10767. extra: 1191 / 1012
  10768. }
  10769. },
  10770. },
  10771. [
  10772. {
  10773. name: "Nano",
  10774. height: math.unit(0.01, "mm")
  10775. },
  10776. {
  10777. name: "Minimicro",
  10778. height: math.unit(1, "mm")
  10779. },
  10780. {
  10781. name: "Micro",
  10782. height: math.unit(0.5, "inches")
  10783. },
  10784. {
  10785. name: "Normal",
  10786. height: math.unit(4, "feet"),
  10787. default: true
  10788. },
  10789. {
  10790. name: "Minimacro",
  10791. height: math.unit(40, "meters")
  10792. },
  10793. {
  10794. name: "Small Macro",
  10795. height: math.unit(400, "meters")
  10796. },
  10797. {
  10798. name: "Macro",
  10799. height: math.unit(4, "miles")
  10800. },
  10801. {
  10802. name: "Megamacro",
  10803. height: math.unit(40, "miles")
  10804. },
  10805. {
  10806. name: "Megamacro+",
  10807. height: math.unit(400, "miles")
  10808. },
  10809. {
  10810. name: "Gigamacro",
  10811. height: math.unit(400000, "miles")
  10812. },
  10813. ]
  10814. ))
  10815. characterMakers.push(() => makeCharacter(
  10816. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10817. {
  10818. side: {
  10819. height: math.unit(6, "feet"),
  10820. weight: math.unit(150, "lb"),
  10821. name: "Side",
  10822. image: {
  10823. source: "./media/characters/kimiko/side.svg",
  10824. extra: 600 / 358
  10825. }
  10826. },
  10827. },
  10828. [
  10829. {
  10830. name: "Normal",
  10831. height: math.unit(15, "feet"),
  10832. default: true
  10833. },
  10834. {
  10835. name: "Macro",
  10836. height: math.unit(220, "feet")
  10837. },
  10838. {
  10839. name: "Macro+",
  10840. height: math.unit(1450, "feet")
  10841. },
  10842. {
  10843. name: "Megamacro",
  10844. height: math.unit(11500, "feet")
  10845. },
  10846. {
  10847. name: "Gigamacro",
  10848. height: math.unit(9500, "miles")
  10849. },
  10850. {
  10851. name: "Teramacro",
  10852. height: math.unit(2208005005, "miles")
  10853. },
  10854. {
  10855. name: "Examacro",
  10856. height: math.unit(2750, "parsecs")
  10857. },
  10858. {
  10859. name: "Zettamacro",
  10860. height: math.unit(101500, "parsecs")
  10861. },
  10862. ]
  10863. ))
  10864. characterMakers.push(() => makeCharacter(
  10865. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10866. {
  10867. front: {
  10868. height: math.unit(6, "feet"),
  10869. weight: math.unit(70, "kg"),
  10870. name: "Front",
  10871. image: {
  10872. source: "./media/characters/andrew-sleepy/front.svg"
  10873. }
  10874. },
  10875. side: {
  10876. height: math.unit(6, "feet"),
  10877. weight: math.unit(70, "kg"),
  10878. name: "Side",
  10879. image: {
  10880. source: "./media/characters/andrew-sleepy/side.svg"
  10881. }
  10882. },
  10883. },
  10884. [
  10885. {
  10886. name: "Micro",
  10887. height: math.unit(1, "mm"),
  10888. default: true
  10889. },
  10890. ]
  10891. ))
  10892. characterMakers.push(() => makeCharacter(
  10893. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10894. {
  10895. front: {
  10896. height: math.unit(6, "feet"),
  10897. weight: math.unit(150, "lb"),
  10898. name: "Front",
  10899. image: {
  10900. source: "./media/characters/judio/front.svg",
  10901. extra: 1258 / 1110
  10902. }
  10903. },
  10904. },
  10905. [
  10906. {
  10907. name: "Normal",
  10908. height: math.unit(5 + 6 / 12, "feet")
  10909. },
  10910. {
  10911. name: "Macro",
  10912. height: math.unit(1000, "feet"),
  10913. default: true
  10914. },
  10915. {
  10916. name: "Megamacro",
  10917. height: math.unit(10, "miles")
  10918. },
  10919. ]
  10920. ))
  10921. characterMakers.push(() => makeCharacter(
  10922. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10923. {
  10924. front: {
  10925. height: math.unit(6, "feet"),
  10926. weight: math.unit(68, "kg"),
  10927. name: "Front",
  10928. image: {
  10929. source: "./media/characters/nomaxice/front.svg",
  10930. extra: 1498 / 1073,
  10931. bottom: 0.075
  10932. }
  10933. },
  10934. foot: {
  10935. height: math.unit(1.1, "feet"),
  10936. name: "Foot",
  10937. image: {
  10938. source: "./media/characters/nomaxice/foot.svg"
  10939. }
  10940. },
  10941. },
  10942. [
  10943. {
  10944. name: "Micro",
  10945. height: math.unit(8, "cm")
  10946. },
  10947. {
  10948. name: "Norm",
  10949. height: math.unit(1.82, "m")
  10950. },
  10951. {
  10952. name: "Norm+",
  10953. height: math.unit(8.8, "feet")
  10954. },
  10955. {
  10956. name: "Big",
  10957. height: math.unit(8, "meters"),
  10958. default: true
  10959. },
  10960. {
  10961. name: "Macro",
  10962. height: math.unit(18, "meters")
  10963. },
  10964. {
  10965. name: "Macro+",
  10966. height: math.unit(88, "meters")
  10967. },
  10968. ]
  10969. ))
  10970. characterMakers.push(() => makeCharacter(
  10971. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10972. {
  10973. front: {
  10974. height: math.unit(12, "feet"),
  10975. weight: math.unit(1.5, "tons"),
  10976. name: "Front",
  10977. image: {
  10978. source: "./media/characters/dydros/front.svg",
  10979. extra: 863 / 800,
  10980. bottom: 0.015
  10981. }
  10982. },
  10983. back: {
  10984. height: math.unit(12, "feet"),
  10985. weight: math.unit(1.5, "tons"),
  10986. name: "Back",
  10987. image: {
  10988. source: "./media/characters/dydros/back.svg",
  10989. extra: 900 / 843,
  10990. bottom: 0.005
  10991. }
  10992. },
  10993. },
  10994. [
  10995. {
  10996. name: "Normal",
  10997. height: math.unit(12, "feet"),
  10998. default: true
  10999. },
  11000. ]
  11001. ))
  11002. characterMakers.push(() => makeCharacter(
  11003. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11004. {
  11005. front: {
  11006. height: math.unit(6, "feet"),
  11007. weight: math.unit(100, "kg"),
  11008. name: "Front",
  11009. image: {
  11010. source: "./media/characters/riggi/front.svg",
  11011. extra: 5787 / 5303
  11012. }
  11013. },
  11014. hyper: {
  11015. height: math.unit(6 * 5 / 3, "feet"),
  11016. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11017. name: "Hyper",
  11018. image: {
  11019. source: "./media/characters/riggi/hyper.svg",
  11020. extra: 3595 / 3485
  11021. }
  11022. },
  11023. },
  11024. [
  11025. {
  11026. name: "Small Macro",
  11027. height: math.unit(50, "feet")
  11028. },
  11029. {
  11030. name: "Default",
  11031. height: math.unit(200, "feet"),
  11032. default: true
  11033. },
  11034. {
  11035. name: "Loom",
  11036. height: math.unit(10000, "feet")
  11037. },
  11038. {
  11039. name: "Cruising Altitude",
  11040. height: math.unit(30000, "feet")
  11041. },
  11042. {
  11043. name: "Megamacro",
  11044. height: math.unit(100, "miles")
  11045. },
  11046. {
  11047. name: "Continent Sized",
  11048. height: math.unit(2800, "miles")
  11049. },
  11050. {
  11051. name: "Earth Sized",
  11052. height: math.unit(8000, "miles")
  11053. },
  11054. ]
  11055. ))
  11056. characterMakers.push(() => makeCharacter(
  11057. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11058. {
  11059. front: {
  11060. height: math.unit(6, "feet"),
  11061. weight: math.unit(250, "lb"),
  11062. name: "Front",
  11063. image: {
  11064. source: "./media/characters/alexi/front.svg",
  11065. extra: 3483 / 3291,
  11066. bottom: 0.04
  11067. }
  11068. },
  11069. back: {
  11070. height: math.unit(6, "feet"),
  11071. weight: math.unit(250, "lb"),
  11072. name: "Back",
  11073. image: {
  11074. source: "./media/characters/alexi/back.svg",
  11075. extra: 3533 / 3356,
  11076. bottom: 0.021
  11077. }
  11078. },
  11079. frontTransforming: {
  11080. height: math.unit(8.58, "feet"),
  11081. weight: math.unit(1300, "lb"),
  11082. name: "Transforming",
  11083. image: {
  11084. source: "./media/characters/alexi/front-transforming.svg",
  11085. extra: 437 / 409,
  11086. bottom: 19 / 458.66
  11087. }
  11088. },
  11089. frontTransformed: {
  11090. height: math.unit(12.5, "feet"),
  11091. weight: math.unit(4000, "lb"),
  11092. name: "Transformed",
  11093. image: {
  11094. source: "./media/characters/alexi/front-transformed.svg",
  11095. extra: 639 / 614,
  11096. bottom: 30.55 / 671
  11097. }
  11098. },
  11099. },
  11100. [
  11101. {
  11102. name: "Normal",
  11103. height: math.unit(14, "feet"),
  11104. default: true
  11105. },
  11106. {
  11107. name: "Minimacro",
  11108. height: math.unit(30, "meters")
  11109. },
  11110. {
  11111. name: "Macro",
  11112. height: math.unit(500, "meters")
  11113. },
  11114. {
  11115. name: "Megamacro",
  11116. height: math.unit(9000, "km")
  11117. },
  11118. {
  11119. name: "Teramacro",
  11120. height: math.unit(384000, "km")
  11121. },
  11122. ]
  11123. ))
  11124. characterMakers.push(() => makeCharacter(
  11125. { name: "Kayroo", species: ["kangaroo"], 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/kayroo/front.svg",
  11133. extra: 1153 / 1038,
  11134. bottom: 0.06
  11135. }
  11136. },
  11137. foot: {
  11138. height: math.unit(6, "feet"),
  11139. weight: math.unit(150, "lb"),
  11140. name: "Foot",
  11141. image: {
  11142. source: "./media/characters/kayroo/foot.svg"
  11143. }
  11144. },
  11145. },
  11146. [
  11147. {
  11148. name: "Normal",
  11149. height: math.unit(8, "feet"),
  11150. default: true
  11151. },
  11152. {
  11153. name: "Minimacro",
  11154. height: math.unit(250, "feet")
  11155. },
  11156. {
  11157. name: "Macro",
  11158. height: math.unit(2800, "feet")
  11159. },
  11160. {
  11161. name: "Megamacro",
  11162. height: math.unit(5200, "feet")
  11163. },
  11164. {
  11165. name: "Gigamacro",
  11166. height: math.unit(27000, "feet")
  11167. },
  11168. {
  11169. name: "Omega",
  11170. height: math.unit(45000, "feet")
  11171. },
  11172. ]
  11173. ))
  11174. characterMakers.push(() => makeCharacter(
  11175. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11176. {
  11177. front: {
  11178. height: math.unit(18, "feet"),
  11179. weight: math.unit(5800, "lb"),
  11180. name: "Front",
  11181. image: {
  11182. source: "./media/characters/rhys/front.svg",
  11183. extra: 3386 / 3090,
  11184. bottom: 0.07
  11185. }
  11186. },
  11187. },
  11188. [
  11189. {
  11190. name: "Normal",
  11191. height: math.unit(18, "feet"),
  11192. default: true
  11193. },
  11194. {
  11195. name: "Working Size",
  11196. height: math.unit(200, "feet")
  11197. },
  11198. {
  11199. name: "Demolition Size",
  11200. height: math.unit(2000, "feet")
  11201. },
  11202. {
  11203. name: "Maximum Licensed Size",
  11204. height: math.unit(5, "miles")
  11205. },
  11206. {
  11207. name: "Maximum Observed Size",
  11208. height: math.unit(10, "yottameters")
  11209. },
  11210. ]
  11211. ))
  11212. characterMakers.push(() => makeCharacter(
  11213. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11214. {
  11215. front: {
  11216. height: math.unit(6, "feet"),
  11217. weight: math.unit(250, "lb"),
  11218. name: "Front",
  11219. image: {
  11220. source: "./media/characters/toto/front.svg",
  11221. extra: 527 / 479,
  11222. bottom: 0.05
  11223. }
  11224. },
  11225. },
  11226. [
  11227. {
  11228. name: "Micro",
  11229. height: math.unit(3, "feet")
  11230. },
  11231. {
  11232. name: "Normal",
  11233. height: math.unit(10, "feet")
  11234. },
  11235. {
  11236. name: "Macro",
  11237. height: math.unit(150, "feet"),
  11238. default: true
  11239. },
  11240. {
  11241. name: "Megamacro",
  11242. height: math.unit(1200, "feet")
  11243. },
  11244. ]
  11245. ))
  11246. characterMakers.push(() => makeCharacter(
  11247. { name: "King", species: ["lion"], tags: ["anthro"] },
  11248. {
  11249. back: {
  11250. height: math.unit(6, "feet"),
  11251. weight: math.unit(150, "lb"),
  11252. name: "Back",
  11253. image: {
  11254. source: "./media/characters/king/back.svg"
  11255. }
  11256. },
  11257. },
  11258. [
  11259. {
  11260. name: "Micro",
  11261. height: math.unit(2, "inches")
  11262. },
  11263. {
  11264. name: "Normal",
  11265. height: math.unit(8, "feet")
  11266. },
  11267. {
  11268. name: "Macro",
  11269. height: math.unit(200, "feet"),
  11270. default: true
  11271. },
  11272. {
  11273. name: "Megamacro",
  11274. height: math.unit(50, "miles")
  11275. },
  11276. ]
  11277. ))
  11278. characterMakers.push(() => makeCharacter(
  11279. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11280. {
  11281. front: {
  11282. height: math.unit(11, "feet"),
  11283. weight: math.unit(1400, "lb"),
  11284. name: "Front",
  11285. image: {
  11286. source: "./media/characters/cordite/front.svg",
  11287. extra: 1919/1827,
  11288. bottom: 40/1959
  11289. }
  11290. },
  11291. side: {
  11292. height: math.unit(11, "feet"),
  11293. weight: math.unit(1400, "lb"),
  11294. name: "Side",
  11295. image: {
  11296. source: "./media/characters/cordite/side.svg",
  11297. extra: 1908/1793,
  11298. bottom: 38/1946
  11299. }
  11300. },
  11301. back: {
  11302. height: math.unit(11, "feet"),
  11303. weight: math.unit(1400, "lb"),
  11304. name: "Back",
  11305. image: {
  11306. source: "./media/characters/cordite/back.svg",
  11307. extra: 1938/1837,
  11308. bottom: 10/1948
  11309. }
  11310. },
  11311. feral: {
  11312. height: math.unit(2, "feet"),
  11313. weight: math.unit(90, "lb"),
  11314. name: "Feral",
  11315. image: {
  11316. source: "./media/characters/cordite/feral.svg",
  11317. extra: 1260 / 755,
  11318. bottom: 0.05
  11319. }
  11320. },
  11321. },
  11322. [
  11323. {
  11324. name: "Normal",
  11325. height: math.unit(11, "feet"),
  11326. default: true
  11327. },
  11328. ]
  11329. ))
  11330. characterMakers.push(() => makeCharacter(
  11331. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11332. {
  11333. front: {
  11334. height: math.unit(6, "feet"),
  11335. weight: math.unit(150, "lb"),
  11336. name: "Front",
  11337. image: {
  11338. source: "./media/characters/pianostrong/front.svg",
  11339. extra: 6577 / 6254,
  11340. bottom: 0.02
  11341. }
  11342. },
  11343. side: {
  11344. height: math.unit(6, "feet"),
  11345. weight: math.unit(150, "lb"),
  11346. name: "Side",
  11347. image: {
  11348. source: "./media/characters/pianostrong/side.svg",
  11349. extra: 6106 / 5730
  11350. }
  11351. },
  11352. back: {
  11353. height: math.unit(6, "feet"),
  11354. weight: math.unit(150, "lb"),
  11355. name: "Back",
  11356. image: {
  11357. source: "./media/characters/pianostrong/back.svg",
  11358. extra: 6085 / 5733,
  11359. bottom: 0.01
  11360. }
  11361. },
  11362. },
  11363. [
  11364. {
  11365. name: "Macro",
  11366. height: math.unit(100, "feet")
  11367. },
  11368. {
  11369. name: "Macro+",
  11370. height: math.unit(300, "feet"),
  11371. default: true
  11372. },
  11373. {
  11374. name: "Macro++",
  11375. height: math.unit(1000, "feet")
  11376. },
  11377. ]
  11378. ))
  11379. characterMakers.push(() => makeCharacter(
  11380. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11381. {
  11382. front: {
  11383. height: math.unit(6, "feet"),
  11384. weight: math.unit(150, "lb"),
  11385. name: "Front",
  11386. image: {
  11387. source: "./media/characters/kona/front.svg",
  11388. extra: 2960 / 2629,
  11389. bottom: 0.005
  11390. }
  11391. },
  11392. },
  11393. [
  11394. {
  11395. name: "Normal",
  11396. height: math.unit(11 + 8 / 12, "feet")
  11397. },
  11398. {
  11399. name: "Macro",
  11400. height: math.unit(850, "feet"),
  11401. default: true
  11402. },
  11403. {
  11404. name: "Macro+",
  11405. height: math.unit(1.5, "km"),
  11406. default: true
  11407. },
  11408. {
  11409. name: "Megamacro",
  11410. height: math.unit(80, "miles")
  11411. },
  11412. {
  11413. name: "Gigamacro",
  11414. height: math.unit(3500, "miles")
  11415. },
  11416. ]
  11417. ))
  11418. characterMakers.push(() => makeCharacter(
  11419. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11420. {
  11421. side: {
  11422. height: math.unit(1.9, "meters"),
  11423. weight: math.unit(326, "kg"),
  11424. name: "Side",
  11425. image: {
  11426. source: "./media/characters/levi/side.svg",
  11427. extra: 1704 / 1334,
  11428. bottom: 0.02
  11429. }
  11430. },
  11431. },
  11432. [
  11433. {
  11434. name: "Normal",
  11435. height: math.unit(1.9, "meters"),
  11436. default: true
  11437. },
  11438. {
  11439. name: "Macro",
  11440. height: math.unit(20, "meters")
  11441. },
  11442. {
  11443. name: "Macro+",
  11444. height: math.unit(200, "meters")
  11445. },
  11446. {
  11447. name: "Megamacro",
  11448. height: math.unit(2, "km")
  11449. },
  11450. {
  11451. name: "Megamacro+",
  11452. height: math.unit(20, "km")
  11453. },
  11454. {
  11455. name: "Gigamacro",
  11456. height: math.unit(2500, "km")
  11457. },
  11458. {
  11459. name: "Gigamacro+",
  11460. height: math.unit(120000, "km")
  11461. },
  11462. {
  11463. name: "Teramacro",
  11464. height: math.unit(7.77e6, "km")
  11465. },
  11466. ]
  11467. ))
  11468. characterMakers.push(() => makeCharacter(
  11469. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11470. {
  11471. front: {
  11472. height: math.unit(6 + 4/12, "feet"),
  11473. weight: math.unit(190, "lb"),
  11474. name: "Front",
  11475. image: {
  11476. source: "./media/characters/bmc/front.svg",
  11477. extra: 1626/1472,
  11478. bottom: 79/1705
  11479. }
  11480. },
  11481. back: {
  11482. height: math.unit(6 + 4/12, "feet"),
  11483. weight: math.unit(190, "lb"),
  11484. name: "Back",
  11485. image: {
  11486. source: "./media/characters/bmc/back.svg",
  11487. extra: 1640/1479,
  11488. bottom: 45/1685
  11489. }
  11490. },
  11491. frontArmor: {
  11492. height: math.unit(6 + 4/12, "feet"),
  11493. weight: math.unit(190, "lb"),
  11494. name: "Front-armor",
  11495. image: {
  11496. source: "./media/characters/bmc/front-armor.svg",
  11497. extra: 1538/1468,
  11498. bottom: 79/1617
  11499. }
  11500. },
  11501. },
  11502. [
  11503. {
  11504. name: "Human-sized",
  11505. height: math.unit(6 + 4 / 12, "feet")
  11506. },
  11507. {
  11508. name: "Interactive Size",
  11509. height: math.unit(25, "feet")
  11510. },
  11511. {
  11512. name: "Small",
  11513. height: math.unit(250, "feet")
  11514. },
  11515. {
  11516. name: "Normal",
  11517. height: math.unit(1250, "feet"),
  11518. default: true
  11519. },
  11520. {
  11521. name: "Good Day",
  11522. height: math.unit(88, "miles")
  11523. },
  11524. {
  11525. name: "Largest Measured Size",
  11526. height: math.unit(105.960, "galaxies")
  11527. },
  11528. ]
  11529. ))
  11530. characterMakers.push(() => makeCharacter(
  11531. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11532. {
  11533. front: {
  11534. height: math.unit(20, "feet"),
  11535. weight: math.unit(2016, "kg"),
  11536. name: "Front",
  11537. image: {
  11538. source: "./media/characters/sven-the-kaiju/front.svg",
  11539. extra: 1277/1250,
  11540. bottom: 35/1312
  11541. }
  11542. },
  11543. mouth: {
  11544. height: math.unit(1.85, "feet"),
  11545. name: "Mouth",
  11546. image: {
  11547. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11548. }
  11549. },
  11550. },
  11551. [
  11552. {
  11553. name: "Fairy",
  11554. height: math.unit(6, "inches")
  11555. },
  11556. {
  11557. name: "Normal",
  11558. height: math.unit(20, "feet"),
  11559. default: true
  11560. },
  11561. {
  11562. name: "Rampage",
  11563. height: math.unit(200, "feet")
  11564. },
  11565. {
  11566. name: "Archfey Forest Guardian",
  11567. height: math.unit(1, "mile")
  11568. },
  11569. ]
  11570. ))
  11571. characterMakers.push(() => makeCharacter(
  11572. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11573. {
  11574. front: {
  11575. height: math.unit(4, "meters"),
  11576. weight: math.unit(2, "tons"),
  11577. name: "Front",
  11578. image: {
  11579. source: "./media/characters/marik/front.svg",
  11580. extra: 1057 / 1003,
  11581. bottom: 0.08
  11582. }
  11583. },
  11584. },
  11585. [
  11586. {
  11587. name: "Normal",
  11588. height: math.unit(4, "meters"),
  11589. default: true
  11590. },
  11591. {
  11592. name: "Macro",
  11593. height: math.unit(20, "meters")
  11594. },
  11595. {
  11596. name: "Megamacro",
  11597. height: math.unit(50, "km")
  11598. },
  11599. {
  11600. name: "Gigamacro",
  11601. height: math.unit(100, "km")
  11602. },
  11603. {
  11604. name: "Alpha Macro",
  11605. height: math.unit(7.88e7, "yottameters")
  11606. },
  11607. ]
  11608. ))
  11609. characterMakers.push(() => makeCharacter(
  11610. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11611. {
  11612. front: {
  11613. height: math.unit(6, "feet"),
  11614. weight: math.unit(110, "lb"),
  11615. name: "Front",
  11616. image: {
  11617. source: "./media/characters/mel/front.svg",
  11618. extra: 736 / 617,
  11619. bottom: 0.017
  11620. }
  11621. },
  11622. },
  11623. [
  11624. {
  11625. name: "Pico",
  11626. height: math.unit(3, "pm")
  11627. },
  11628. {
  11629. name: "Nano",
  11630. height: math.unit(3, "nm")
  11631. },
  11632. {
  11633. name: "Micro",
  11634. height: math.unit(0.3, "mm"),
  11635. default: true
  11636. },
  11637. {
  11638. name: "Micro+",
  11639. height: math.unit(3, "mm")
  11640. },
  11641. {
  11642. name: "Normal",
  11643. height: math.unit(5 + 10.5 / 12, "feet")
  11644. },
  11645. ]
  11646. ))
  11647. characterMakers.push(() => makeCharacter(
  11648. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11649. {
  11650. kaiju: {
  11651. height: math.unit(1.75, "meters"),
  11652. weight: math.unit(55, "kg"),
  11653. name: "Kaiju",
  11654. image: {
  11655. source: "./media/characters/lykonous/kaiju.svg",
  11656. extra: 1055 / 946,
  11657. bottom: 0.135
  11658. }
  11659. },
  11660. },
  11661. [
  11662. {
  11663. name: "Normal",
  11664. height: math.unit(2.5, "meters"),
  11665. default: true
  11666. },
  11667. {
  11668. name: "Kaiju Dragon",
  11669. height: math.unit(60, "meters")
  11670. },
  11671. {
  11672. name: "Mega Kaiju",
  11673. height: math.unit(120, "km")
  11674. },
  11675. {
  11676. name: "Giga Kaiju",
  11677. height: math.unit(200, "megameters")
  11678. },
  11679. {
  11680. name: "Terra Kaiju",
  11681. height: math.unit(400, "gigameters")
  11682. },
  11683. {
  11684. name: "Kaiju Dragon God",
  11685. height: math.unit(13000, "exaparsecs")
  11686. },
  11687. ]
  11688. ))
  11689. characterMakers.push(() => makeCharacter(
  11690. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11691. {
  11692. front: {
  11693. height: math.unit(6, "feet"),
  11694. weight: math.unit(150, "lb"),
  11695. name: "Front",
  11696. image: {
  11697. source: "./media/characters/blü/front.svg",
  11698. extra: 1883 / 1564,
  11699. bottom: 0.031
  11700. }
  11701. },
  11702. },
  11703. [
  11704. {
  11705. name: "Normal",
  11706. height: math.unit(13, "feet"),
  11707. default: true
  11708. },
  11709. {
  11710. name: "Big Boi",
  11711. height: math.unit(150, "meters")
  11712. },
  11713. {
  11714. name: "Mini Stomper",
  11715. height: math.unit(300, "meters")
  11716. },
  11717. {
  11718. name: "Macro",
  11719. height: math.unit(1000, "meters")
  11720. },
  11721. {
  11722. name: "Megamacro",
  11723. height: math.unit(11000, "meters")
  11724. },
  11725. {
  11726. name: "Gigamacro",
  11727. height: math.unit(11000, "km")
  11728. },
  11729. {
  11730. name: "Teramacro",
  11731. height: math.unit(420000, "km")
  11732. },
  11733. {
  11734. name: "Examacro",
  11735. height: math.unit(120, "parsecs")
  11736. },
  11737. {
  11738. name: "God Tho",
  11739. height: math.unit(98000000000, "parsecs")
  11740. },
  11741. ]
  11742. ))
  11743. characterMakers.push(() => makeCharacter(
  11744. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11745. {
  11746. taurFront: {
  11747. height: math.unit(6, "feet"),
  11748. weight: math.unit(200, "lb"),
  11749. name: "Taur (Front)",
  11750. image: {
  11751. source: "./media/characters/scales/taur-front.svg",
  11752. extra: 1,
  11753. bottom: 0.05
  11754. }
  11755. },
  11756. taurBack: {
  11757. height: math.unit(6, "feet"),
  11758. weight: math.unit(200, "lb"),
  11759. name: "Taur (Back)",
  11760. image: {
  11761. source: "./media/characters/scales/taur-back.svg",
  11762. extra: 1,
  11763. bottom: 0.08
  11764. }
  11765. },
  11766. anthro: {
  11767. height: math.unit(6 * 7 / 12, "feet"),
  11768. weight: math.unit(100, "lb"),
  11769. name: "Anthro",
  11770. image: {
  11771. source: "./media/characters/scales/anthro.svg",
  11772. extra: 1,
  11773. bottom: 0.06
  11774. }
  11775. },
  11776. },
  11777. [
  11778. {
  11779. name: "Normal",
  11780. height: math.unit(12, "feet"),
  11781. default: true
  11782. },
  11783. ]
  11784. ))
  11785. characterMakers.push(() => makeCharacter(
  11786. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11787. {
  11788. front: {
  11789. height: math.unit(6, "feet"),
  11790. weight: math.unit(150, "lb"),
  11791. name: "Front",
  11792. image: {
  11793. source: "./media/characters/koragos/front.svg",
  11794. extra: 841 / 794,
  11795. bottom: 0.035
  11796. }
  11797. },
  11798. back: {
  11799. height: math.unit(6, "feet"),
  11800. weight: math.unit(150, "lb"),
  11801. name: "Back",
  11802. image: {
  11803. source: "./media/characters/koragos/back.svg",
  11804. extra: 841 / 810,
  11805. bottom: 0.022
  11806. }
  11807. },
  11808. },
  11809. [
  11810. {
  11811. name: "Normal",
  11812. height: math.unit(6 + 11 / 12, "feet"),
  11813. default: true
  11814. },
  11815. {
  11816. name: "Macro",
  11817. height: math.unit(490, "feet")
  11818. },
  11819. {
  11820. name: "Megamacro",
  11821. height: math.unit(10, "miles")
  11822. },
  11823. {
  11824. name: "Gigamacro",
  11825. height: math.unit(50, "miles")
  11826. },
  11827. ]
  11828. ))
  11829. characterMakers.push(() => makeCharacter(
  11830. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11831. {
  11832. front: {
  11833. height: math.unit(6, "feet"),
  11834. weight: math.unit(250, "lb"),
  11835. name: "Front",
  11836. image: {
  11837. source: "./media/characters/xylrem/front.svg",
  11838. extra: 3323 / 3050,
  11839. bottom: 0.065
  11840. }
  11841. },
  11842. },
  11843. [
  11844. {
  11845. name: "Micro",
  11846. height: math.unit(4, "feet")
  11847. },
  11848. {
  11849. name: "Normal",
  11850. height: math.unit(16, "feet"),
  11851. default: true
  11852. },
  11853. {
  11854. name: "Macro",
  11855. height: math.unit(2720, "feet")
  11856. },
  11857. {
  11858. name: "Megamacro",
  11859. height: math.unit(25000, "miles")
  11860. },
  11861. ]
  11862. ))
  11863. characterMakers.push(() => makeCharacter(
  11864. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11865. {
  11866. front: {
  11867. height: math.unit(8, "feet"),
  11868. weight: math.unit(250, "kg"),
  11869. name: "Front",
  11870. image: {
  11871. source: "./media/characters/ikideru/front.svg",
  11872. extra: 930 / 870,
  11873. bottom: 0.087
  11874. }
  11875. },
  11876. back: {
  11877. height: math.unit(8, "feet"),
  11878. weight: math.unit(250, "kg"),
  11879. name: "Back",
  11880. image: {
  11881. source: "./media/characters/ikideru/back.svg",
  11882. extra: 919 / 852,
  11883. bottom: 0.055
  11884. }
  11885. },
  11886. },
  11887. [
  11888. {
  11889. name: "Rare",
  11890. height: math.unit(8, "feet"),
  11891. default: true
  11892. },
  11893. {
  11894. name: "Playful Loom",
  11895. height: math.unit(80, "feet")
  11896. },
  11897. {
  11898. name: "City Leaner",
  11899. height: math.unit(230, "feet")
  11900. },
  11901. {
  11902. name: "Megamacro",
  11903. height: math.unit(2500, "feet")
  11904. },
  11905. {
  11906. name: "Gigamacro",
  11907. height: math.unit(26400, "feet")
  11908. },
  11909. {
  11910. name: "Tectonic Shifter",
  11911. height: math.unit(1.7, "megameters")
  11912. },
  11913. {
  11914. name: "Planet Carer",
  11915. height: math.unit(21, "megameters")
  11916. },
  11917. {
  11918. name: "God",
  11919. height: math.unit(11157.22, "parsecs")
  11920. },
  11921. ]
  11922. ))
  11923. characterMakers.push(() => makeCharacter(
  11924. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11925. {
  11926. front: {
  11927. height: math.unit(6, "feet"),
  11928. weight: math.unit(120, "lb"),
  11929. name: "Front",
  11930. image: {
  11931. source: "./media/characters/neo/front.svg"
  11932. }
  11933. },
  11934. },
  11935. [
  11936. {
  11937. name: "Micro",
  11938. height: math.unit(2, "inches"),
  11939. default: true
  11940. },
  11941. {
  11942. name: "Human Size",
  11943. height: math.unit(5 + 8 / 12, "feet")
  11944. },
  11945. ]
  11946. ))
  11947. characterMakers.push(() => makeCharacter(
  11948. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11949. {
  11950. front: {
  11951. height: math.unit(13 + 10 / 12, "feet"),
  11952. weight: math.unit(5320, "lb"),
  11953. name: "Front",
  11954. image: {
  11955. source: "./media/characters/chauncey-chantz/front.svg",
  11956. extra: 1587 / 1435,
  11957. bottom: 0.02
  11958. }
  11959. },
  11960. },
  11961. [
  11962. {
  11963. name: "Normal",
  11964. height: math.unit(13 + 10 / 12, "feet"),
  11965. default: true
  11966. },
  11967. {
  11968. name: "Macro",
  11969. height: math.unit(45, "feet")
  11970. },
  11971. {
  11972. name: "Megamacro",
  11973. height: math.unit(250, "miles")
  11974. },
  11975. {
  11976. name: "Planetary",
  11977. height: math.unit(10000, "miles")
  11978. },
  11979. {
  11980. name: "Galactic",
  11981. height: math.unit(40000, "parsecs")
  11982. },
  11983. {
  11984. name: "Universal",
  11985. height: math.unit(1, "yottameter")
  11986. },
  11987. ]
  11988. ))
  11989. characterMakers.push(() => makeCharacter(
  11990. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11991. {
  11992. front: {
  11993. height: math.unit(6, "feet"),
  11994. weight: math.unit(150, "lb"),
  11995. name: "Front",
  11996. image: {
  11997. source: "./media/characters/epifox/front.svg",
  11998. extra: 1,
  11999. bottom: 0.075
  12000. }
  12001. },
  12002. },
  12003. [
  12004. {
  12005. name: "Micro",
  12006. height: math.unit(6, "inches")
  12007. },
  12008. {
  12009. name: "Normal",
  12010. height: math.unit(12, "feet"),
  12011. default: true
  12012. },
  12013. {
  12014. name: "Macro",
  12015. height: math.unit(3810, "feet")
  12016. },
  12017. {
  12018. name: "Megamacro",
  12019. height: math.unit(500, "miles")
  12020. },
  12021. ]
  12022. ))
  12023. characterMakers.push(() => makeCharacter(
  12024. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12025. {
  12026. front: {
  12027. height: math.unit(1.8796, "m"),
  12028. weight: math.unit(230, "lb"),
  12029. name: "Front",
  12030. image: {
  12031. source: "./media/characters/colin-t/front.svg",
  12032. extra: 1272 / 1193,
  12033. bottom: 0.07
  12034. }
  12035. },
  12036. },
  12037. [
  12038. {
  12039. name: "Micro",
  12040. height: math.unit(0.571, "meters")
  12041. },
  12042. {
  12043. name: "Normal",
  12044. height: math.unit(1.8796, "meters"),
  12045. default: true
  12046. },
  12047. {
  12048. name: "Tall",
  12049. height: math.unit(4, "meters")
  12050. },
  12051. {
  12052. name: "Macro",
  12053. height: math.unit(67.241, "meters")
  12054. },
  12055. {
  12056. name: "Megamacro",
  12057. height: math.unit(371.856, "meters")
  12058. },
  12059. {
  12060. name: "Planetary",
  12061. height: math.unit(12631.5689, "km")
  12062. },
  12063. ]
  12064. ))
  12065. characterMakers.push(() => makeCharacter(
  12066. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12067. {
  12068. front: {
  12069. height: math.unit(1.85, "meters"),
  12070. weight: math.unit(80, "kg"),
  12071. name: "Front",
  12072. image: {
  12073. source: "./media/characters/matvei/front.svg",
  12074. extra: 614 / 594,
  12075. bottom: 0.01
  12076. }
  12077. },
  12078. },
  12079. [
  12080. {
  12081. name: "Normal",
  12082. height: math.unit(1.85, "meters"),
  12083. default: true
  12084. },
  12085. ]
  12086. ))
  12087. characterMakers.push(() => makeCharacter(
  12088. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12089. {
  12090. front: {
  12091. height: math.unit(5 + 9 / 12, "feet"),
  12092. weight: math.unit(70, "lb"),
  12093. name: "Front",
  12094. image: {
  12095. source: "./media/characters/quincy/front.svg",
  12096. extra: 3041 / 2751
  12097. }
  12098. },
  12099. back: {
  12100. height: math.unit(5 + 9 / 12, "feet"),
  12101. weight: math.unit(70, "lb"),
  12102. name: "Back",
  12103. image: {
  12104. source: "./media/characters/quincy/back.svg",
  12105. extra: 3041 / 2751
  12106. }
  12107. },
  12108. flying: {
  12109. height: math.unit(5 + 4 / 12, "feet"),
  12110. weight: math.unit(70, "lb"),
  12111. name: "Flying",
  12112. image: {
  12113. source: "./media/characters/quincy/flying.svg",
  12114. extra: 1044 / 930
  12115. }
  12116. },
  12117. },
  12118. [
  12119. {
  12120. name: "Micro",
  12121. height: math.unit(3, "cm")
  12122. },
  12123. {
  12124. name: "Normal",
  12125. height: math.unit(5 + 9 / 12, "feet")
  12126. },
  12127. {
  12128. name: "Macro",
  12129. height: math.unit(200, "meters"),
  12130. default: true
  12131. },
  12132. {
  12133. name: "Megamacro",
  12134. height: math.unit(1000, "meters")
  12135. },
  12136. ]
  12137. ))
  12138. characterMakers.push(() => makeCharacter(
  12139. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12140. {
  12141. front: {
  12142. height: math.unit(3 + 11/12, "feet"),
  12143. weight: math.unit(50, "lb"),
  12144. name: "Front",
  12145. image: {
  12146. source: "./media/characters/vanrel/front.svg",
  12147. extra: 1104/949,
  12148. bottom: 52/1156
  12149. }
  12150. },
  12151. back: {
  12152. height: math.unit(3 + 11/12, "feet"),
  12153. weight: math.unit(50, "lb"),
  12154. name: "Back",
  12155. image: {
  12156. source: "./media/characters/vanrel/back.svg",
  12157. extra: 1119/976,
  12158. bottom: 37/1156
  12159. }
  12160. },
  12161. tome: {
  12162. height: math.unit(1.35, "feet"),
  12163. weight: math.unit(10, "lb"),
  12164. name: "Vanrel's Tome",
  12165. rename: true,
  12166. image: {
  12167. source: "./media/characters/vanrel/tome.svg"
  12168. }
  12169. },
  12170. beans: {
  12171. height: math.unit(0.89, "feet"),
  12172. name: "Beans",
  12173. image: {
  12174. source: "./media/characters/vanrel/beans.svg"
  12175. }
  12176. },
  12177. },
  12178. [
  12179. {
  12180. name: "Normal",
  12181. height: math.unit(3 + 11/12, "feet"),
  12182. default: true
  12183. },
  12184. ]
  12185. ))
  12186. characterMakers.push(() => makeCharacter(
  12187. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12188. {
  12189. front: {
  12190. height: math.unit(7 + 5 / 12, "feet"),
  12191. name: "Front",
  12192. image: {
  12193. source: "./media/characters/kuiper-vanrel/front.svg",
  12194. extra: 1219/1169,
  12195. bottom: 69/1288
  12196. }
  12197. },
  12198. back: {
  12199. height: math.unit(7 + 5 / 12, "feet"),
  12200. name: "Back",
  12201. image: {
  12202. source: "./media/characters/kuiper-vanrel/back.svg",
  12203. extra: 1236/1193,
  12204. bottom: 27/1263
  12205. }
  12206. },
  12207. foot: {
  12208. height: math.unit(0.55, "meters"),
  12209. name: "Foot",
  12210. image: {
  12211. source: "./media/characters/kuiper-vanrel/foot.svg",
  12212. }
  12213. },
  12214. battle: {
  12215. height: math.unit(6.824, "feet"),
  12216. name: "Battle",
  12217. image: {
  12218. source: "./media/characters/kuiper-vanrel/battle.svg",
  12219. extra: 1466 / 1327,
  12220. bottom: 29 / 1492.5
  12221. }
  12222. },
  12223. meerkui: {
  12224. height: math.unit(18, "inches"),
  12225. name: "Meerkui",
  12226. image: {
  12227. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12228. extra: 1354/1289,
  12229. bottom: 69/1423
  12230. }
  12231. },
  12232. },
  12233. [
  12234. {
  12235. name: "Normal",
  12236. height: math.unit(7 + 5 / 12, "feet"),
  12237. default: true
  12238. },
  12239. ]
  12240. ))
  12241. characterMakers.push(() => makeCharacter(
  12242. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12243. {
  12244. front: {
  12245. height: math.unit(8 + 5 / 12, "feet"),
  12246. name: "Front",
  12247. image: {
  12248. source: "./media/characters/keset-vanrel/front.svg",
  12249. extra: 1231/1148,
  12250. bottom: 82/1313
  12251. }
  12252. },
  12253. back: {
  12254. height: math.unit(8 + 5 / 12, "feet"),
  12255. name: "Back",
  12256. image: {
  12257. source: "./media/characters/keset-vanrel/back.svg",
  12258. extra: 1240/1174,
  12259. bottom: 33/1273
  12260. }
  12261. },
  12262. hand: {
  12263. height: math.unit(0.6, "meters"),
  12264. name: "Hand",
  12265. image: {
  12266. source: "./media/characters/keset-vanrel/hand.svg"
  12267. }
  12268. },
  12269. foot: {
  12270. height: math.unit(0.94978, "meters"),
  12271. name: "Foot",
  12272. image: {
  12273. source: "./media/characters/keset-vanrel/foot.svg"
  12274. }
  12275. },
  12276. battle: {
  12277. height: math.unit(7.408, "feet"),
  12278. name: "Battle",
  12279. image: {
  12280. source: "./media/characters/keset-vanrel/battle.svg",
  12281. extra: 1890 / 1386,
  12282. bottom: 73.28 / 1970
  12283. }
  12284. },
  12285. },
  12286. [
  12287. {
  12288. name: "Normal",
  12289. height: math.unit(8 + 5 / 12, "feet"),
  12290. default: true
  12291. },
  12292. ]
  12293. ))
  12294. characterMakers.push(() => makeCharacter(
  12295. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12296. {
  12297. front: {
  12298. height: math.unit(6, "feet"),
  12299. weight: math.unit(150, "lb"),
  12300. name: "Front",
  12301. image: {
  12302. source: "./media/characters/neos/front.svg",
  12303. extra: 1696 / 992,
  12304. bottom: 0.14
  12305. }
  12306. },
  12307. },
  12308. [
  12309. {
  12310. name: "Normal",
  12311. height: math.unit(54, "cm"),
  12312. default: true
  12313. },
  12314. {
  12315. name: "Macro",
  12316. height: math.unit(100, "m")
  12317. },
  12318. {
  12319. name: "Megamacro",
  12320. height: math.unit(10, "km")
  12321. },
  12322. {
  12323. name: "Megamacro+",
  12324. height: math.unit(100, "km")
  12325. },
  12326. {
  12327. name: "Gigamacro",
  12328. height: math.unit(100, "Mm")
  12329. },
  12330. {
  12331. name: "Teramacro",
  12332. height: math.unit(100, "Gm")
  12333. },
  12334. {
  12335. name: "Examacro",
  12336. height: math.unit(100, "Em")
  12337. },
  12338. {
  12339. name: "Godly",
  12340. height: math.unit(10000, "Ym")
  12341. },
  12342. {
  12343. name: "Beyond Godly",
  12344. height: math.unit(25, "multiverses")
  12345. },
  12346. ]
  12347. ))
  12348. characterMakers.push(() => makeCharacter(
  12349. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12350. {
  12351. feminine: {
  12352. height: math.unit(5, "feet"),
  12353. weight: math.unit(100, "lb"),
  12354. name: "Feminine",
  12355. image: {
  12356. source: "./media/characters/sammy-mouse/feminine.svg",
  12357. extra: 2526 / 2425,
  12358. bottom: 0.123
  12359. }
  12360. },
  12361. masculine: {
  12362. height: math.unit(5, "feet"),
  12363. weight: math.unit(100, "lb"),
  12364. name: "Masculine",
  12365. image: {
  12366. source: "./media/characters/sammy-mouse/masculine.svg",
  12367. extra: 2526 / 2425,
  12368. bottom: 0.123
  12369. }
  12370. },
  12371. },
  12372. [
  12373. {
  12374. name: "Micro",
  12375. height: math.unit(5, "inches")
  12376. },
  12377. {
  12378. name: "Normal",
  12379. height: math.unit(5, "feet"),
  12380. default: true
  12381. },
  12382. {
  12383. name: "Macro",
  12384. height: math.unit(60, "feet")
  12385. },
  12386. ]
  12387. ))
  12388. characterMakers.push(() => makeCharacter(
  12389. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12390. {
  12391. front: {
  12392. height: math.unit(4, "feet"),
  12393. weight: math.unit(50, "lb"),
  12394. name: "Front",
  12395. image: {
  12396. source: "./media/characters/kole/front.svg",
  12397. extra: 1423 / 1303,
  12398. bottom: 0.025
  12399. }
  12400. },
  12401. back: {
  12402. height: math.unit(4, "feet"),
  12403. weight: math.unit(50, "lb"),
  12404. name: "Back",
  12405. image: {
  12406. source: "./media/characters/kole/back.svg",
  12407. extra: 1426 / 1280,
  12408. bottom: 0.02
  12409. }
  12410. },
  12411. },
  12412. [
  12413. {
  12414. name: "Normal",
  12415. height: math.unit(4, "feet"),
  12416. default: true
  12417. },
  12418. ]
  12419. ))
  12420. characterMakers.push(() => makeCharacter(
  12421. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12422. {
  12423. front: {
  12424. height: math.unit(2.5, "feet"),
  12425. weight: math.unit(32, "lb"),
  12426. name: "Front",
  12427. image: {
  12428. source: "./media/characters/rufran/front.svg",
  12429. extra: 1313/885,
  12430. bottom: 94/1407
  12431. }
  12432. },
  12433. side: {
  12434. height: math.unit(2.5, "feet"),
  12435. weight: math.unit(32, "lb"),
  12436. name: "Side",
  12437. image: {
  12438. source: "./media/characters/rufran/side.svg",
  12439. extra: 1109/852,
  12440. bottom: 118/1227
  12441. }
  12442. },
  12443. back: {
  12444. height: math.unit(2.5, "feet"),
  12445. weight: math.unit(32, "lb"),
  12446. name: "Back",
  12447. image: {
  12448. source: "./media/characters/rufran/back.svg",
  12449. extra: 1280/878,
  12450. bottom: 131/1411
  12451. }
  12452. },
  12453. mouth: {
  12454. height: math.unit(1.13, "feet"),
  12455. name: "Mouth",
  12456. image: {
  12457. source: "./media/characters/rufran/mouth.svg"
  12458. }
  12459. },
  12460. foot: {
  12461. height: math.unit(1.33, "feet"),
  12462. name: "Foot",
  12463. image: {
  12464. source: "./media/characters/rufran/foot.svg"
  12465. }
  12466. },
  12467. koboldFront: {
  12468. height: math.unit(2 + 6 / 12, "feet"),
  12469. weight: math.unit(20, "lb"),
  12470. name: "Front (Kobold)",
  12471. image: {
  12472. source: "./media/characters/rufran/kobold-front.svg",
  12473. extra: 2041 / 1839,
  12474. bottom: 0.055
  12475. }
  12476. },
  12477. koboldBack: {
  12478. height: math.unit(2 + 6 / 12, "feet"),
  12479. weight: math.unit(20, "lb"),
  12480. name: "Back (Kobold)",
  12481. image: {
  12482. source: "./media/characters/rufran/kobold-back.svg",
  12483. extra: 2054 / 1839,
  12484. bottom: 0.01
  12485. }
  12486. },
  12487. koboldHand: {
  12488. height: math.unit(0.2166, "meters"),
  12489. name: "Hand (Kobold)",
  12490. image: {
  12491. source: "./media/characters/rufran/kobold-hand.svg"
  12492. }
  12493. },
  12494. koboldFoot: {
  12495. height: math.unit(0.185, "meters"),
  12496. name: "Foot (Kobold)",
  12497. image: {
  12498. source: "./media/characters/rufran/kobold-foot.svg"
  12499. }
  12500. },
  12501. },
  12502. [
  12503. {
  12504. name: "Micro",
  12505. height: math.unit(1, "inch")
  12506. },
  12507. {
  12508. name: "Normal",
  12509. height: math.unit(2 + 6 / 12, "feet"),
  12510. default: true
  12511. },
  12512. {
  12513. name: "Big",
  12514. height: math.unit(60, "feet")
  12515. },
  12516. {
  12517. name: "Macro",
  12518. height: math.unit(325, "feet")
  12519. },
  12520. ]
  12521. ))
  12522. characterMakers.push(() => makeCharacter(
  12523. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12524. {
  12525. front: {
  12526. height: math.unit(0.3, "meters"),
  12527. weight: math.unit(3.5, "kg"),
  12528. name: "Front",
  12529. image: {
  12530. source: "./media/characters/chip/front.svg",
  12531. extra: 748 / 674
  12532. }
  12533. },
  12534. },
  12535. [
  12536. {
  12537. name: "Micro",
  12538. height: math.unit(1, "inch"),
  12539. default: true
  12540. },
  12541. ]
  12542. ))
  12543. characterMakers.push(() => makeCharacter(
  12544. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12545. {
  12546. side: {
  12547. height: math.unit(2.3, "meters"),
  12548. weight: math.unit(3500, "lb"),
  12549. name: "Side",
  12550. image: {
  12551. source: "./media/characters/torvid/side.svg",
  12552. extra: 1972 / 722,
  12553. bottom: 0.035
  12554. }
  12555. },
  12556. },
  12557. [
  12558. {
  12559. name: "Normal",
  12560. height: math.unit(2.3, "meters"),
  12561. default: true
  12562. },
  12563. ]
  12564. ))
  12565. characterMakers.push(() => makeCharacter(
  12566. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12567. {
  12568. front: {
  12569. height: math.unit(2, "meters"),
  12570. weight: math.unit(150.5, "kg"),
  12571. name: "Front",
  12572. image: {
  12573. source: "./media/characters/susan/front.svg",
  12574. extra: 693 / 635,
  12575. bottom: 0.05
  12576. }
  12577. },
  12578. },
  12579. [
  12580. {
  12581. name: "Megamacro",
  12582. height: math.unit(505, "miles"),
  12583. default: true
  12584. },
  12585. ]
  12586. ))
  12587. characterMakers.push(() => makeCharacter(
  12588. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12589. {
  12590. front: {
  12591. height: math.unit(6, "feet"),
  12592. weight: math.unit(150, "lb"),
  12593. name: "Front",
  12594. image: {
  12595. source: "./media/characters/raindrops/front.svg",
  12596. extra: 2655 / 2461,
  12597. bottom: 49 / 2705
  12598. }
  12599. },
  12600. back: {
  12601. height: math.unit(6, "feet"),
  12602. weight: math.unit(150, "lb"),
  12603. name: "Back",
  12604. image: {
  12605. source: "./media/characters/raindrops/back.svg",
  12606. extra: 2574 / 2400,
  12607. bottom: 65 / 2634
  12608. }
  12609. },
  12610. },
  12611. [
  12612. {
  12613. name: "Micro",
  12614. height: math.unit(6, "inches")
  12615. },
  12616. {
  12617. name: "Normal",
  12618. height: math.unit(6 + 2 / 12, "feet")
  12619. },
  12620. {
  12621. name: "Macro",
  12622. height: math.unit(131, "feet"),
  12623. default: true
  12624. },
  12625. {
  12626. name: "Megamacro",
  12627. height: math.unit(15, "miles")
  12628. },
  12629. {
  12630. name: "Gigamacro",
  12631. height: math.unit(4000, "miles")
  12632. },
  12633. {
  12634. name: "Teramacro",
  12635. height: math.unit(315000, "miles")
  12636. },
  12637. ]
  12638. ))
  12639. characterMakers.push(() => makeCharacter(
  12640. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12641. {
  12642. front: {
  12643. height: math.unit(2.794, "meters"),
  12644. weight: math.unit(325, "kg"),
  12645. name: "Front",
  12646. image: {
  12647. source: "./media/characters/tezwa/front.svg",
  12648. extra: 2083 / 1906,
  12649. bottom: 0.031
  12650. }
  12651. },
  12652. foot: {
  12653. height: math.unit(0.687, "meters"),
  12654. name: "Foot",
  12655. image: {
  12656. source: "./media/characters/tezwa/foot.svg"
  12657. }
  12658. },
  12659. },
  12660. [
  12661. {
  12662. name: "Normal",
  12663. height: math.unit(9 + 2 / 12, "feet"),
  12664. default: true
  12665. },
  12666. ]
  12667. ))
  12668. characterMakers.push(() => makeCharacter(
  12669. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12670. {
  12671. front: {
  12672. height: math.unit(58, "feet"),
  12673. weight: math.unit(89000, "lb"),
  12674. name: "Front",
  12675. image: {
  12676. source: "./media/characters/typhus/front.svg",
  12677. extra: 816 / 800,
  12678. bottom: 0.065
  12679. }
  12680. },
  12681. },
  12682. [
  12683. {
  12684. name: "Macro",
  12685. height: math.unit(58, "feet"),
  12686. default: true
  12687. },
  12688. ]
  12689. ))
  12690. characterMakers.push(() => makeCharacter(
  12691. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12692. {
  12693. front: {
  12694. height: math.unit(12, "feet"),
  12695. weight: math.unit(6, "tonnes"),
  12696. name: "Front",
  12697. image: {
  12698. source: "./media/characters/lyra-von-wulf/front.svg",
  12699. extra: 1,
  12700. bottom: 0.10
  12701. }
  12702. },
  12703. frontMecha: {
  12704. height: math.unit(12, "feet"),
  12705. weight: math.unit(12, "tonnes"),
  12706. name: "Front (Mecha)",
  12707. image: {
  12708. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12709. extra: 1,
  12710. bottom: 0.042
  12711. }
  12712. },
  12713. maw: {
  12714. height: math.unit(2.2, "feet"),
  12715. name: "Maw",
  12716. image: {
  12717. source: "./media/characters/lyra-von-wulf/maw.svg"
  12718. }
  12719. },
  12720. },
  12721. [
  12722. {
  12723. name: "Normal",
  12724. height: math.unit(12, "feet"),
  12725. default: true
  12726. },
  12727. {
  12728. name: "Classic",
  12729. height: math.unit(50, "feet")
  12730. },
  12731. {
  12732. name: "Macro",
  12733. height: math.unit(500, "feet")
  12734. },
  12735. {
  12736. name: "Megamacro",
  12737. height: math.unit(1, "mile")
  12738. },
  12739. {
  12740. name: "Gigamacro",
  12741. height: math.unit(400, "miles")
  12742. },
  12743. {
  12744. name: "Teramacro",
  12745. height: math.unit(22000, "miles")
  12746. },
  12747. {
  12748. name: "Solarmacro",
  12749. height: math.unit(8600000, "miles")
  12750. },
  12751. {
  12752. name: "Galactic",
  12753. height: math.unit(1057000, "lightyears")
  12754. },
  12755. ]
  12756. ))
  12757. characterMakers.push(() => makeCharacter(
  12758. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12759. {
  12760. front: {
  12761. height: math.unit(6 + 10 / 12, "feet"),
  12762. weight: math.unit(150, "lb"),
  12763. name: "Front",
  12764. image: {
  12765. source: "./media/characters/dixon/front.svg",
  12766. extra: 3361 / 3209,
  12767. bottom: 0.01
  12768. }
  12769. },
  12770. },
  12771. [
  12772. {
  12773. name: "Normal",
  12774. height: math.unit(6 + 10 / 12, "feet"),
  12775. default: true
  12776. },
  12777. {
  12778. name: "Big",
  12779. height: math.unit(12, "meters")
  12780. },
  12781. {
  12782. name: "Macro",
  12783. height: math.unit(500, "meters")
  12784. },
  12785. {
  12786. name: "Megamacro",
  12787. height: math.unit(2, "km")
  12788. },
  12789. ]
  12790. ))
  12791. characterMakers.push(() => makeCharacter(
  12792. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12793. {
  12794. front: {
  12795. height: math.unit(185, "cm"),
  12796. weight: math.unit(68, "kg"),
  12797. name: "Front",
  12798. image: {
  12799. source: "./media/characters/kauko/front.svg",
  12800. extra: 1455 / 1421,
  12801. bottom: 0.03
  12802. }
  12803. },
  12804. back: {
  12805. height: math.unit(185, "cm"),
  12806. weight: math.unit(68, "kg"),
  12807. name: "Back",
  12808. image: {
  12809. source: "./media/characters/kauko/back.svg",
  12810. extra: 1455 / 1421,
  12811. bottom: 0.004
  12812. }
  12813. },
  12814. },
  12815. [
  12816. {
  12817. name: "Normal",
  12818. height: math.unit(185, "cm"),
  12819. default: true
  12820. },
  12821. ]
  12822. ))
  12823. characterMakers.push(() => makeCharacter(
  12824. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12825. {
  12826. front: {
  12827. height: math.unit(6, "feet"),
  12828. weight: math.unit(150, "kg"),
  12829. name: "Front",
  12830. image: {
  12831. source: "./media/characters/varg/front.svg",
  12832. extra: 1108 / 1018,
  12833. bottom: 0.0375
  12834. }
  12835. },
  12836. },
  12837. [
  12838. {
  12839. name: "Normal",
  12840. height: math.unit(5, "meters")
  12841. },
  12842. {
  12843. name: "Macro",
  12844. height: math.unit(200, "meters")
  12845. },
  12846. {
  12847. name: "Megamacro",
  12848. height: math.unit(20, "kilometers")
  12849. },
  12850. {
  12851. name: "True Size",
  12852. height: math.unit(211, "km"),
  12853. default: true
  12854. },
  12855. {
  12856. name: "Gigamacro",
  12857. height: math.unit(1000, "km")
  12858. },
  12859. {
  12860. name: "Gigamacro+",
  12861. height: math.unit(8000, "km")
  12862. },
  12863. {
  12864. name: "Teramacro",
  12865. height: math.unit(1000000, "km")
  12866. },
  12867. ]
  12868. ))
  12869. characterMakers.push(() => makeCharacter(
  12870. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12871. {
  12872. front: {
  12873. height: math.unit(7 + 7 / 12, "feet"),
  12874. weight: math.unit(267, "lb"),
  12875. name: "Front",
  12876. image: {
  12877. source: "./media/characters/dayza/front.svg",
  12878. extra: 1262 / 1200,
  12879. bottom: 0.035
  12880. }
  12881. },
  12882. side: {
  12883. height: math.unit(7 + 7 / 12, "feet"),
  12884. weight: math.unit(267, "lb"),
  12885. name: "Side",
  12886. image: {
  12887. source: "./media/characters/dayza/side.svg",
  12888. extra: 1295 / 1245,
  12889. bottom: 0.05
  12890. }
  12891. },
  12892. back: {
  12893. height: math.unit(7 + 7 / 12, "feet"),
  12894. weight: math.unit(267, "lb"),
  12895. name: "Back",
  12896. image: {
  12897. source: "./media/characters/dayza/back.svg",
  12898. extra: 1241 / 1170
  12899. }
  12900. },
  12901. },
  12902. [
  12903. {
  12904. name: "Normal",
  12905. height: math.unit(7 + 7 / 12, "feet"),
  12906. default: true
  12907. },
  12908. {
  12909. name: "Macro",
  12910. height: math.unit(155, "feet")
  12911. },
  12912. ]
  12913. ))
  12914. characterMakers.push(() => makeCharacter(
  12915. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12916. {
  12917. front: {
  12918. height: math.unit(6 + 5 / 12, "feet"),
  12919. weight: math.unit(160, "lb"),
  12920. name: "Front",
  12921. image: {
  12922. source: "./media/characters/xanthos/front.svg",
  12923. extra: 1,
  12924. bottom: 0.04
  12925. }
  12926. },
  12927. back: {
  12928. height: math.unit(6 + 5 / 12, "feet"),
  12929. weight: math.unit(160, "lb"),
  12930. name: "Back",
  12931. image: {
  12932. source: "./media/characters/xanthos/back.svg",
  12933. extra: 1,
  12934. bottom: 0.03
  12935. }
  12936. },
  12937. hand: {
  12938. height: math.unit(0.928, "feet"),
  12939. name: "Hand",
  12940. image: {
  12941. source: "./media/characters/xanthos/hand.svg"
  12942. }
  12943. },
  12944. foot: {
  12945. height: math.unit(1.286, "feet"),
  12946. name: "Foot",
  12947. image: {
  12948. source: "./media/characters/xanthos/foot.svg"
  12949. }
  12950. },
  12951. },
  12952. [
  12953. {
  12954. name: "Normal",
  12955. height: math.unit(6 + 5 / 12, "feet"),
  12956. default: true
  12957. },
  12958. {
  12959. name: "Normal+",
  12960. height: math.unit(6, "meters")
  12961. },
  12962. {
  12963. name: "Macro",
  12964. height: math.unit(40, "feet")
  12965. },
  12966. {
  12967. name: "Macro+",
  12968. height: math.unit(200, "meters")
  12969. },
  12970. {
  12971. name: "Megamacro",
  12972. height: math.unit(20, "km")
  12973. },
  12974. {
  12975. name: "Megamacro+",
  12976. height: math.unit(100, "km")
  12977. },
  12978. {
  12979. name: "Gigamacro",
  12980. height: math.unit(200, "megameters")
  12981. },
  12982. {
  12983. name: "Gigamacro+",
  12984. height: math.unit(1.5, "gigameters")
  12985. },
  12986. ]
  12987. ))
  12988. characterMakers.push(() => makeCharacter(
  12989. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12990. {
  12991. front: {
  12992. height: math.unit(6 + 3 / 12, "feet"),
  12993. weight: math.unit(215, "lb"),
  12994. name: "Front",
  12995. image: {
  12996. source: "./media/characters/grynn/front.svg",
  12997. extra: 4627 / 4209,
  12998. bottom: 0.047
  12999. }
  13000. },
  13001. },
  13002. [
  13003. {
  13004. name: "Micro",
  13005. height: math.unit(6, "inches")
  13006. },
  13007. {
  13008. name: "Normal",
  13009. height: math.unit(6 + 3 / 12, "feet"),
  13010. default: true
  13011. },
  13012. {
  13013. name: "Big",
  13014. height: math.unit(104, "feet")
  13015. },
  13016. {
  13017. name: "Macro",
  13018. height: math.unit(944, "feet")
  13019. },
  13020. {
  13021. name: "Macro+",
  13022. height: math.unit(9480, "feet")
  13023. },
  13024. {
  13025. name: "Megamacro",
  13026. height: math.unit(78752, "feet")
  13027. },
  13028. {
  13029. name: "Megamacro+",
  13030. height: math.unit(630128, "feet")
  13031. },
  13032. {
  13033. name: "Megamacro++",
  13034. height: math.unit(3150695, "feet")
  13035. },
  13036. ]
  13037. ))
  13038. characterMakers.push(() => makeCharacter(
  13039. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13040. {
  13041. front: {
  13042. height: math.unit(7 + 5 / 12, "feet"),
  13043. weight: math.unit(450, "lb"),
  13044. name: "Front",
  13045. image: {
  13046. source: "./media/characters/mocha-aura/front.svg",
  13047. extra: 1907 / 1817,
  13048. bottom: 0.04
  13049. }
  13050. },
  13051. back: {
  13052. height: math.unit(7 + 5 / 12, "feet"),
  13053. weight: math.unit(450, "lb"),
  13054. name: "Back",
  13055. image: {
  13056. source: "./media/characters/mocha-aura/back.svg",
  13057. extra: 1900 / 1825,
  13058. bottom: 0.045
  13059. }
  13060. },
  13061. },
  13062. [
  13063. {
  13064. name: "Nano",
  13065. height: math.unit(1, "nm")
  13066. },
  13067. {
  13068. name: "Megamicro",
  13069. height: math.unit(1, "mm")
  13070. },
  13071. {
  13072. name: "Micro",
  13073. height: math.unit(3, "inches")
  13074. },
  13075. {
  13076. name: "Normal",
  13077. height: math.unit(7 + 5 / 12, "feet"),
  13078. default: true
  13079. },
  13080. {
  13081. name: "Macro",
  13082. height: math.unit(30, "feet")
  13083. },
  13084. {
  13085. name: "Megamacro",
  13086. height: math.unit(3500, "feet")
  13087. },
  13088. {
  13089. name: "Teramacro",
  13090. height: math.unit(500000, "miles")
  13091. },
  13092. {
  13093. name: "Petamacro",
  13094. height: math.unit(50000000000000000, "parsecs")
  13095. },
  13096. ]
  13097. ))
  13098. characterMakers.push(() => makeCharacter(
  13099. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13100. {
  13101. front: {
  13102. height: math.unit(6, "feet"),
  13103. weight: math.unit(150, "lb"),
  13104. name: "Front",
  13105. image: {
  13106. source: "./media/characters/ilisha-devya/front.svg",
  13107. extra: 1053/1049,
  13108. bottom: 270/1323
  13109. }
  13110. },
  13111. back: {
  13112. height: math.unit(6, "feet"),
  13113. weight: math.unit(150, "lb"),
  13114. name: "Back",
  13115. image: {
  13116. source: "./media/characters/ilisha-devya/back.svg",
  13117. extra: 1131/1128,
  13118. bottom: 39/1170
  13119. }
  13120. },
  13121. },
  13122. [
  13123. {
  13124. name: "Macro",
  13125. height: math.unit(500, "feet"),
  13126. default: true
  13127. },
  13128. {
  13129. name: "Megamacro",
  13130. height: math.unit(10, "miles")
  13131. },
  13132. {
  13133. name: "Gigamacro",
  13134. height: math.unit(100000, "miles")
  13135. },
  13136. {
  13137. name: "Examacro",
  13138. height: math.unit(1e9, "lightyears")
  13139. },
  13140. {
  13141. name: "Omniversal",
  13142. height: math.unit(1e33, "lightyears")
  13143. },
  13144. {
  13145. name: "Beyond Infinite",
  13146. height: math.unit(1e100, "lightyears")
  13147. },
  13148. ]
  13149. ))
  13150. characterMakers.push(() => makeCharacter(
  13151. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13152. {
  13153. Side: {
  13154. height: math.unit(6, "feet"),
  13155. weight: math.unit(150, "lb"),
  13156. name: "Side",
  13157. image: {
  13158. source: "./media/characters/mira/side.svg",
  13159. extra: 900 / 799,
  13160. bottom: 0.02
  13161. }
  13162. },
  13163. },
  13164. [
  13165. {
  13166. name: "Human Size",
  13167. height: math.unit(6, "feet")
  13168. },
  13169. {
  13170. name: "Macro",
  13171. height: math.unit(100, "feet"),
  13172. default: true
  13173. },
  13174. {
  13175. name: "Megamacro",
  13176. height: math.unit(10, "miles")
  13177. },
  13178. {
  13179. name: "Gigamacro",
  13180. height: math.unit(25000, "miles")
  13181. },
  13182. {
  13183. name: "Teramacro",
  13184. height: math.unit(300, "AU")
  13185. },
  13186. {
  13187. name: "Full Size",
  13188. height: math.unit(4.5e10, "lightyears")
  13189. },
  13190. ]
  13191. ))
  13192. characterMakers.push(() => makeCharacter(
  13193. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13194. {
  13195. front: {
  13196. height: math.unit(6, "feet"),
  13197. weight: math.unit(150, "lb"),
  13198. name: "Front",
  13199. image: {
  13200. source: "./media/characters/holly/front.svg",
  13201. extra: 639 / 606
  13202. }
  13203. },
  13204. back: {
  13205. height: math.unit(6, "feet"),
  13206. weight: math.unit(150, "lb"),
  13207. name: "Back",
  13208. image: {
  13209. source: "./media/characters/holly/back.svg",
  13210. extra: 623 / 598
  13211. }
  13212. },
  13213. frontWorking: {
  13214. height: math.unit(6, "feet"),
  13215. weight: math.unit(150, "lb"),
  13216. name: "Front (Working)",
  13217. image: {
  13218. source: "./media/characters/holly/front-working.svg",
  13219. extra: 607 / 577,
  13220. bottom: 0.048
  13221. }
  13222. },
  13223. },
  13224. [
  13225. {
  13226. name: "Normal",
  13227. height: math.unit(12 + 3 / 12, "feet"),
  13228. default: true
  13229. },
  13230. ]
  13231. ))
  13232. characterMakers.push(() => makeCharacter(
  13233. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13234. {
  13235. front: {
  13236. height: math.unit(6, "feet"),
  13237. weight: math.unit(150, "lb"),
  13238. name: "Front",
  13239. image: {
  13240. source: "./media/characters/porter/front.svg",
  13241. extra: 1,
  13242. bottom: 0.01
  13243. }
  13244. },
  13245. frontRobes: {
  13246. height: math.unit(6, "feet"),
  13247. weight: math.unit(150, "lb"),
  13248. name: "Front (Robes)",
  13249. image: {
  13250. source: "./media/characters/porter/front-robes.svg",
  13251. extra: 1.01,
  13252. bottom: 0.01
  13253. }
  13254. },
  13255. },
  13256. [
  13257. {
  13258. name: "Normal",
  13259. height: math.unit(11 + 9 / 12, "feet"),
  13260. default: true
  13261. },
  13262. ]
  13263. ))
  13264. characterMakers.push(() => makeCharacter(
  13265. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13266. {
  13267. legendary: {
  13268. height: math.unit(6, "feet"),
  13269. weight: math.unit(150, "lb"),
  13270. name: "Legendary",
  13271. image: {
  13272. source: "./media/characters/lucy/legendary.svg",
  13273. extra: 1355 / 1100,
  13274. bottom: 0.045
  13275. }
  13276. },
  13277. },
  13278. [
  13279. {
  13280. name: "Legendary",
  13281. height: math.unit(86882 * 2, "miles"),
  13282. default: true
  13283. },
  13284. ]
  13285. ))
  13286. characterMakers.push(() => makeCharacter(
  13287. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13288. {
  13289. front: {
  13290. height: math.unit(6, "feet"),
  13291. weight: math.unit(150, "lb"),
  13292. name: "Front",
  13293. image: {
  13294. source: "./media/characters/drusilla/front.svg",
  13295. extra: 678 / 635,
  13296. bottom: 0.03
  13297. }
  13298. },
  13299. back: {
  13300. height: math.unit(6, "feet"),
  13301. weight: math.unit(150, "lb"),
  13302. name: "Back",
  13303. image: {
  13304. source: "./media/characters/drusilla/back.svg",
  13305. extra: 678 / 635,
  13306. bottom: 0.005
  13307. }
  13308. },
  13309. },
  13310. [
  13311. {
  13312. name: "Macro",
  13313. height: math.unit(100, "feet")
  13314. },
  13315. {
  13316. name: "Canon Height",
  13317. height: math.unit(2000, "feet"),
  13318. default: true
  13319. },
  13320. ]
  13321. ))
  13322. characterMakers.push(() => makeCharacter(
  13323. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13324. {
  13325. front: {
  13326. height: math.unit(6, "feet"),
  13327. weight: math.unit(180, "lb"),
  13328. name: "Front",
  13329. image: {
  13330. source: "./media/characters/renard-thatch/front.svg",
  13331. extra: 2411 / 2275,
  13332. bottom: 0.01
  13333. }
  13334. },
  13335. frontPosing: {
  13336. height: math.unit(6, "feet"),
  13337. weight: math.unit(180, "lb"),
  13338. name: "Front (Posing)",
  13339. image: {
  13340. source: "./media/characters/renard-thatch/front-posing.svg",
  13341. extra: 2381 / 2261,
  13342. bottom: 0.01
  13343. }
  13344. },
  13345. back: {
  13346. height: math.unit(6, "feet"),
  13347. weight: math.unit(180, "lb"),
  13348. name: "Back",
  13349. image: {
  13350. source: "./media/characters/renard-thatch/back.svg",
  13351. extra: 2428 / 2288
  13352. }
  13353. },
  13354. },
  13355. [
  13356. {
  13357. name: "Micro",
  13358. height: math.unit(3, "inches")
  13359. },
  13360. {
  13361. name: "Default",
  13362. height: math.unit(6, "feet"),
  13363. default: true
  13364. },
  13365. {
  13366. name: "Macro",
  13367. height: math.unit(75, "feet")
  13368. },
  13369. ]
  13370. ))
  13371. characterMakers.push(() => makeCharacter(
  13372. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13373. {
  13374. front: {
  13375. height: math.unit(1450, "feet"),
  13376. weight: math.unit(1.21e6, "tons"),
  13377. name: "Front",
  13378. image: {
  13379. source: "./media/characters/sekvra/front.svg",
  13380. extra: 1193/1190,
  13381. bottom: 78/1271
  13382. }
  13383. },
  13384. side: {
  13385. height: math.unit(1450, "feet"),
  13386. weight: math.unit(1.21e6, "tons"),
  13387. name: "Side",
  13388. image: {
  13389. source: "./media/characters/sekvra/side.svg",
  13390. extra: 1193/1190,
  13391. bottom: 52/1245
  13392. }
  13393. },
  13394. back: {
  13395. height: math.unit(1450, "feet"),
  13396. weight: math.unit(1.21e6, "tons"),
  13397. name: "Back",
  13398. image: {
  13399. source: "./media/characters/sekvra/back.svg",
  13400. extra: 1219/1216,
  13401. bottom: 21/1240
  13402. }
  13403. },
  13404. frontClothed: {
  13405. height: math.unit(1450, "feet"),
  13406. weight: math.unit(1.21e6, "tons"),
  13407. name: "Front (Clothed)",
  13408. image: {
  13409. source: "./media/characters/sekvra/front-clothed.svg",
  13410. extra: 1192/1189,
  13411. bottom: 79/1271
  13412. }
  13413. },
  13414. },
  13415. [
  13416. {
  13417. name: "Macro",
  13418. height: math.unit(1450, "feet"),
  13419. default: true
  13420. },
  13421. {
  13422. name: "Megamacro",
  13423. height: math.unit(15000, "feet")
  13424. },
  13425. ]
  13426. ))
  13427. characterMakers.push(() => makeCharacter(
  13428. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13429. {
  13430. front: {
  13431. height: math.unit(6, "feet"),
  13432. weight: math.unit(150, "lb"),
  13433. name: "Front",
  13434. image: {
  13435. source: "./media/characters/carmine/front.svg",
  13436. extra: 1,
  13437. bottom: 0.035
  13438. }
  13439. },
  13440. frontArmor: {
  13441. height: math.unit(6, "feet"),
  13442. weight: math.unit(150, "lb"),
  13443. name: "Front (Armor)",
  13444. image: {
  13445. source: "./media/characters/carmine/front-armor.svg",
  13446. extra: 1,
  13447. bottom: 0.035
  13448. }
  13449. },
  13450. },
  13451. [
  13452. {
  13453. name: "Large",
  13454. height: math.unit(1, "mile")
  13455. },
  13456. {
  13457. name: "Huge",
  13458. height: math.unit(40, "miles"),
  13459. default: true
  13460. },
  13461. {
  13462. name: "Colossal",
  13463. height: math.unit(2500, "miles")
  13464. },
  13465. ]
  13466. ))
  13467. characterMakers.push(() => makeCharacter(
  13468. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13469. {
  13470. front: {
  13471. height: math.unit(6, "feet"),
  13472. weight: math.unit(150, "lb"),
  13473. name: "Front",
  13474. image: {
  13475. source: "./media/characters/elyssia/front.svg",
  13476. extra: 2201 / 2035,
  13477. bottom: 0.05
  13478. }
  13479. },
  13480. frontClothed: {
  13481. height: math.unit(6, "feet"),
  13482. weight: math.unit(150, "lb"),
  13483. name: "Front (Clothed)",
  13484. image: {
  13485. source: "./media/characters/elyssia/front-clothed.svg",
  13486. extra: 2201 / 2035,
  13487. bottom: 0.05
  13488. }
  13489. },
  13490. back: {
  13491. height: math.unit(6, "feet"),
  13492. weight: math.unit(150, "lb"),
  13493. name: "Back",
  13494. image: {
  13495. source: "./media/characters/elyssia/back.svg",
  13496. extra: 2201 / 2035,
  13497. bottom: 0.013
  13498. }
  13499. },
  13500. },
  13501. [
  13502. {
  13503. name: "Smaller",
  13504. height: math.unit(150, "feet")
  13505. },
  13506. {
  13507. name: "Standard",
  13508. height: math.unit(1400, "feet"),
  13509. default: true
  13510. },
  13511. {
  13512. name: "Distracted",
  13513. height: math.unit(15000, "feet")
  13514. },
  13515. ]
  13516. ))
  13517. characterMakers.push(() => makeCharacter(
  13518. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13519. {
  13520. front: {
  13521. height: math.unit(7 + 4/12, "feet"),
  13522. weight: math.unit(690, "lb"),
  13523. name: "Front",
  13524. image: {
  13525. source: "./media/characters/geno-maxwell/front.svg",
  13526. extra: 984/856,
  13527. bottom: 87/1071
  13528. }
  13529. },
  13530. back: {
  13531. height: math.unit(7 + 4/12, "feet"),
  13532. weight: math.unit(690, "lb"),
  13533. name: "Back",
  13534. image: {
  13535. source: "./media/characters/geno-maxwell/back.svg",
  13536. extra: 981/854,
  13537. bottom: 57/1038
  13538. }
  13539. },
  13540. frontCostume: {
  13541. height: math.unit(7 + 4/12, "feet"),
  13542. weight: math.unit(690, "lb"),
  13543. name: "Front (Costume)",
  13544. image: {
  13545. source: "./media/characters/geno-maxwell/front-costume.svg",
  13546. extra: 984/856,
  13547. bottom: 87/1071
  13548. }
  13549. },
  13550. backcostume: {
  13551. height: math.unit(7 + 4/12, "feet"),
  13552. weight: math.unit(690, "lb"),
  13553. name: "Back (Costume)",
  13554. image: {
  13555. source: "./media/characters/geno-maxwell/back-costume.svg",
  13556. extra: 981/854,
  13557. bottom: 57/1038
  13558. }
  13559. },
  13560. },
  13561. [
  13562. {
  13563. name: "Micro",
  13564. height: math.unit(3, "inches")
  13565. },
  13566. {
  13567. name: "Normal",
  13568. height: math.unit(7 + 4 / 12, "feet"),
  13569. default: true
  13570. },
  13571. {
  13572. name: "Macro",
  13573. height: math.unit(220, "feet")
  13574. },
  13575. {
  13576. name: "Megamacro",
  13577. height: math.unit(11, "miles")
  13578. },
  13579. ]
  13580. ))
  13581. characterMakers.push(() => makeCharacter(
  13582. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13583. {
  13584. front: {
  13585. height: math.unit(7 + 4/12, "feet"),
  13586. weight: math.unit(750, "lb"),
  13587. name: "Front",
  13588. image: {
  13589. source: "./media/characters/regena-maxwell/front.svg",
  13590. extra: 984/856,
  13591. bottom: 87/1071
  13592. }
  13593. },
  13594. back: {
  13595. height: math.unit(7 + 4/12, "feet"),
  13596. weight: math.unit(750, "lb"),
  13597. name: "Back",
  13598. image: {
  13599. source: "./media/characters/regena-maxwell/back.svg",
  13600. extra: 981/854,
  13601. bottom: 57/1038
  13602. }
  13603. },
  13604. frontCostume: {
  13605. height: math.unit(7 + 4/12, "feet"),
  13606. weight: math.unit(750, "lb"),
  13607. name: "Front (Costume)",
  13608. image: {
  13609. source: "./media/characters/regena-maxwell/front-costume.svg",
  13610. extra: 984/856,
  13611. bottom: 87/1071
  13612. }
  13613. },
  13614. backcostume: {
  13615. height: math.unit(7 + 4/12, "feet"),
  13616. weight: math.unit(750, "lb"),
  13617. name: "Back (Costume)",
  13618. image: {
  13619. source: "./media/characters/regena-maxwell/back-costume.svg",
  13620. extra: 981/854,
  13621. bottom: 57/1038
  13622. }
  13623. },
  13624. },
  13625. [
  13626. {
  13627. name: "Normal",
  13628. height: math.unit(7 + 4 / 12, "feet"),
  13629. default: true
  13630. },
  13631. {
  13632. name: "Macro",
  13633. height: math.unit(220, "feet")
  13634. },
  13635. {
  13636. name: "Megamacro",
  13637. height: math.unit(11, "miles")
  13638. },
  13639. ]
  13640. ))
  13641. characterMakers.push(() => makeCharacter(
  13642. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13643. {
  13644. front: {
  13645. height: math.unit(6, "feet"),
  13646. weight: math.unit(150, "lb"),
  13647. name: "Front",
  13648. image: {
  13649. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13650. extra: 860 / 690,
  13651. bottom: 0.03
  13652. }
  13653. },
  13654. },
  13655. [
  13656. {
  13657. name: "Normal",
  13658. height: math.unit(1.7, "meters"),
  13659. default: true
  13660. },
  13661. ]
  13662. ))
  13663. characterMakers.push(() => makeCharacter(
  13664. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13665. {
  13666. front: {
  13667. height: math.unit(6, "feet"),
  13668. weight: math.unit(150, "lb"),
  13669. name: "Front",
  13670. image: {
  13671. source: "./media/characters/quilly/front.svg",
  13672. extra: 890 / 776
  13673. }
  13674. },
  13675. },
  13676. [
  13677. {
  13678. name: "Gigamacro",
  13679. height: math.unit(404090, "miles"),
  13680. default: true
  13681. },
  13682. ]
  13683. ))
  13684. characterMakers.push(() => makeCharacter(
  13685. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13686. {
  13687. front: {
  13688. height: math.unit(7 + 8 / 12, "feet"),
  13689. weight: math.unit(350, "lb"),
  13690. name: "Front",
  13691. image: {
  13692. source: "./media/characters/tempest/front.svg",
  13693. extra: 1175 / 1086,
  13694. bottom: 0.02
  13695. }
  13696. },
  13697. },
  13698. [
  13699. {
  13700. name: "Normal",
  13701. height: math.unit(7 + 8 / 12, "feet"),
  13702. default: true
  13703. },
  13704. ]
  13705. ))
  13706. characterMakers.push(() => makeCharacter(
  13707. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13708. {
  13709. side: {
  13710. height: math.unit(4 + 5 / 12, "feet"),
  13711. weight: math.unit(80, "lb"),
  13712. name: "Side",
  13713. image: {
  13714. source: "./media/characters/rodger/side.svg",
  13715. extra: 1235 / 1118
  13716. }
  13717. },
  13718. },
  13719. [
  13720. {
  13721. name: "Micro",
  13722. height: math.unit(1, "inch")
  13723. },
  13724. {
  13725. name: "Normal",
  13726. height: math.unit(4 + 5 / 12, "feet"),
  13727. default: true
  13728. },
  13729. {
  13730. name: "Macro",
  13731. height: math.unit(120, "feet")
  13732. },
  13733. ]
  13734. ))
  13735. characterMakers.push(() => makeCharacter(
  13736. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13737. {
  13738. front: {
  13739. height: math.unit(6, "feet"),
  13740. weight: math.unit(150, "lb"),
  13741. name: "Front",
  13742. image: {
  13743. source: "./media/characters/danyel/front.svg",
  13744. extra: 1185 / 1123,
  13745. bottom: 0.05
  13746. }
  13747. },
  13748. },
  13749. [
  13750. {
  13751. name: "Shrunken",
  13752. height: math.unit(0.5, "mm")
  13753. },
  13754. {
  13755. name: "Micro",
  13756. height: math.unit(1, "mm"),
  13757. default: true
  13758. },
  13759. {
  13760. name: "Upsized",
  13761. height: math.unit(5 + 5 / 12, "feet")
  13762. },
  13763. ]
  13764. ))
  13765. characterMakers.push(() => makeCharacter(
  13766. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13767. {
  13768. front: {
  13769. height: math.unit(5 + 6 / 12, "feet"),
  13770. weight: math.unit(200, "lb"),
  13771. name: "Front",
  13772. image: {
  13773. source: "./media/characters/vivian-bijoux/front.svg",
  13774. extra: 1217/1209,
  13775. bottom: 76/1293
  13776. }
  13777. },
  13778. back: {
  13779. height: math.unit(5 + 6 / 12, "feet"),
  13780. weight: math.unit(200, "lb"),
  13781. name: "Back",
  13782. image: {
  13783. source: "./media/characters/vivian-bijoux/back.svg",
  13784. extra: 1214/1208,
  13785. bottom: 51/1265
  13786. }
  13787. },
  13788. dressed: {
  13789. height: math.unit(5 + 6 / 12, "feet"),
  13790. weight: math.unit(200, "lb"),
  13791. name: "Dressed",
  13792. image: {
  13793. source: "./media/characters/vivian-bijoux/dressed.svg",
  13794. extra: 1217/1209,
  13795. bottom: 76/1293
  13796. }
  13797. },
  13798. },
  13799. [
  13800. {
  13801. name: "Normal",
  13802. height: math.unit(5 + 6 / 12, "feet"),
  13803. default: true
  13804. },
  13805. {
  13806. name: "Bad Dream",
  13807. height: math.unit(500, "feet")
  13808. },
  13809. {
  13810. name: "Nightmare",
  13811. height: math.unit(500, "miles")
  13812. },
  13813. ]
  13814. ))
  13815. characterMakers.push(() => makeCharacter(
  13816. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13817. {
  13818. front: {
  13819. height: math.unit(6 + 1 / 12, "feet"),
  13820. weight: math.unit(260, "lb"),
  13821. name: "Front",
  13822. image: {
  13823. source: "./media/characters/zeta/front.svg",
  13824. extra: 1968 / 1889,
  13825. bottom: 0.06
  13826. }
  13827. },
  13828. back: {
  13829. height: math.unit(6 + 1 / 12, "feet"),
  13830. weight: math.unit(260, "lb"),
  13831. name: "Back",
  13832. image: {
  13833. source: "./media/characters/zeta/back.svg",
  13834. extra: 1944 / 1858,
  13835. bottom: 0.03
  13836. }
  13837. },
  13838. hand: {
  13839. height: math.unit(1.112, "feet"),
  13840. name: "Hand",
  13841. image: {
  13842. source: "./media/characters/zeta/hand.svg"
  13843. }
  13844. },
  13845. foot: {
  13846. height: math.unit(1.48, "feet"),
  13847. name: "Foot",
  13848. image: {
  13849. source: "./media/characters/zeta/foot.svg"
  13850. }
  13851. },
  13852. },
  13853. [
  13854. {
  13855. name: "Micro",
  13856. height: math.unit(6, "inches")
  13857. },
  13858. {
  13859. name: "Normal",
  13860. height: math.unit(6 + 1 / 12, "feet"),
  13861. default: true
  13862. },
  13863. {
  13864. name: "Macro",
  13865. height: math.unit(20, "feet")
  13866. },
  13867. ]
  13868. ))
  13869. characterMakers.push(() => makeCharacter(
  13870. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13871. {
  13872. front: {
  13873. height: math.unit(6, "feet"),
  13874. weight: math.unit(150, "lb"),
  13875. name: "Front",
  13876. image: {
  13877. source: "./media/characters/jamie-larsen/front.svg",
  13878. extra: 962 / 933,
  13879. bottom: 0.02
  13880. }
  13881. },
  13882. back: {
  13883. height: math.unit(6, "feet"),
  13884. weight: math.unit(150, "lb"),
  13885. name: "Back",
  13886. image: {
  13887. source: "./media/characters/jamie-larsen/back.svg",
  13888. extra: 997 / 946
  13889. }
  13890. },
  13891. },
  13892. [
  13893. {
  13894. name: "Macro",
  13895. height: math.unit(28 + 7 / 12, "feet"),
  13896. default: true
  13897. },
  13898. {
  13899. name: "Macro+",
  13900. height: math.unit(180, "feet")
  13901. },
  13902. {
  13903. name: "Megamacro",
  13904. height: math.unit(10, "miles")
  13905. },
  13906. {
  13907. name: "Gigamacro",
  13908. height: math.unit(200000, "miles")
  13909. },
  13910. ]
  13911. ))
  13912. characterMakers.push(() => makeCharacter(
  13913. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13914. {
  13915. front: {
  13916. height: math.unit(6, "feet"),
  13917. weight: math.unit(120, "lb"),
  13918. name: "Front",
  13919. image: {
  13920. source: "./media/characters/vance/front.svg",
  13921. extra: 1980 / 1890,
  13922. bottom: 0.09
  13923. }
  13924. },
  13925. back: {
  13926. height: math.unit(6, "feet"),
  13927. weight: math.unit(120, "lb"),
  13928. name: "Back",
  13929. image: {
  13930. source: "./media/characters/vance/back.svg",
  13931. extra: 2081 / 1994,
  13932. bottom: 0.014
  13933. }
  13934. },
  13935. hand: {
  13936. height: math.unit(0.88, "feet"),
  13937. name: "Hand",
  13938. image: {
  13939. source: "./media/characters/vance/hand.svg"
  13940. }
  13941. },
  13942. foot: {
  13943. height: math.unit(0.64, "feet"),
  13944. name: "Foot",
  13945. image: {
  13946. source: "./media/characters/vance/foot.svg"
  13947. }
  13948. },
  13949. },
  13950. [
  13951. {
  13952. name: "Small",
  13953. height: math.unit(90, "feet"),
  13954. default: true
  13955. },
  13956. {
  13957. name: "Macro",
  13958. height: math.unit(100, "meters")
  13959. },
  13960. {
  13961. name: "Megamacro",
  13962. height: math.unit(15, "miles")
  13963. },
  13964. ]
  13965. ))
  13966. characterMakers.push(() => makeCharacter(
  13967. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13968. {
  13969. front: {
  13970. height: math.unit(6, "feet"),
  13971. weight: math.unit(180, "lb"),
  13972. name: "Front",
  13973. image: {
  13974. source: "./media/characters/xochitl/front.svg",
  13975. extra: 2297 / 2261,
  13976. bottom: 0.065
  13977. }
  13978. },
  13979. back: {
  13980. height: math.unit(6, "feet"),
  13981. weight: math.unit(180, "lb"),
  13982. name: "Back",
  13983. image: {
  13984. source: "./media/characters/xochitl/back.svg",
  13985. extra: 2386 / 2354,
  13986. bottom: 0.01
  13987. }
  13988. },
  13989. foot: {
  13990. height: math.unit(6 / 5 * 1.15, "feet"),
  13991. weight: math.unit(150, "lb"),
  13992. name: "Foot",
  13993. image: {
  13994. source: "./media/characters/xochitl/foot.svg"
  13995. }
  13996. },
  13997. },
  13998. [
  13999. {
  14000. name: "Macro",
  14001. height: math.unit(80, "feet")
  14002. },
  14003. {
  14004. name: "Macro+",
  14005. height: math.unit(400, "feet"),
  14006. default: true
  14007. },
  14008. {
  14009. name: "Gigamacro",
  14010. height: math.unit(80000, "miles")
  14011. },
  14012. {
  14013. name: "Gigamacro+",
  14014. height: math.unit(400000, "miles")
  14015. },
  14016. {
  14017. name: "Teramacro",
  14018. height: math.unit(300, "AU")
  14019. },
  14020. ]
  14021. ))
  14022. characterMakers.push(() => makeCharacter(
  14023. { name: "Vincent", species: ["egyptian-vulture"], 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/vincent/front.svg",
  14031. extra: 1130 / 1080,
  14032. bottom: 0.055
  14033. }
  14034. },
  14035. beak: {
  14036. height: math.unit(6 * 0.1, "feet"),
  14037. name: "Beak",
  14038. image: {
  14039. source: "./media/characters/vincent/beak.svg"
  14040. }
  14041. },
  14042. hand: {
  14043. height: math.unit(6 * 0.85, "feet"),
  14044. weight: math.unit(150, "lb"),
  14045. name: "Hand",
  14046. image: {
  14047. source: "./media/characters/vincent/hand.svg"
  14048. }
  14049. },
  14050. foot: {
  14051. height: math.unit(6 * 0.19, "feet"),
  14052. weight: math.unit(150, "lb"),
  14053. name: "Foot",
  14054. image: {
  14055. source: "./media/characters/vincent/foot.svg"
  14056. }
  14057. },
  14058. },
  14059. [
  14060. {
  14061. name: "Base",
  14062. height: math.unit(6 + 5 / 12, "feet"),
  14063. default: true
  14064. },
  14065. {
  14066. name: "Macro",
  14067. height: math.unit(300, "feet")
  14068. },
  14069. {
  14070. name: "Megamacro",
  14071. height: math.unit(2, "miles")
  14072. },
  14073. {
  14074. name: "Gigamacro",
  14075. height: math.unit(1000, "miles")
  14076. },
  14077. ]
  14078. ))
  14079. characterMakers.push(() => makeCharacter(
  14080. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14081. {
  14082. front: {
  14083. height: math.unit(2, "meters"),
  14084. weight: math.unit(500, "kg"),
  14085. name: "Front",
  14086. image: {
  14087. source: "./media/characters/coatl/front.svg",
  14088. extra: 3948 / 3500,
  14089. bottom: 0.082
  14090. }
  14091. },
  14092. },
  14093. [
  14094. {
  14095. name: "Normal",
  14096. height: math.unit(4, "meters")
  14097. },
  14098. {
  14099. name: "Macro",
  14100. height: math.unit(100, "meters"),
  14101. default: true
  14102. },
  14103. {
  14104. name: "Macro+",
  14105. height: math.unit(300, "meters")
  14106. },
  14107. {
  14108. name: "Megamacro",
  14109. height: math.unit(3, "gigameters")
  14110. },
  14111. {
  14112. name: "Megamacro+",
  14113. height: math.unit(300, "terameters")
  14114. },
  14115. {
  14116. name: "Megamacro++",
  14117. height: math.unit(3, "lightyears")
  14118. },
  14119. ]
  14120. ))
  14121. characterMakers.push(() => makeCharacter(
  14122. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14123. {
  14124. front: {
  14125. height: math.unit(6, "feet"),
  14126. weight: math.unit(50, "kg"),
  14127. name: "front",
  14128. image: {
  14129. source: "./media/characters/shiroryu/front.svg",
  14130. extra: 1990 / 1935
  14131. }
  14132. },
  14133. },
  14134. [
  14135. {
  14136. name: "Mortal Mingling",
  14137. height: math.unit(3, "meters")
  14138. },
  14139. {
  14140. name: "Kaiju-ish",
  14141. height: math.unit(250, "meters")
  14142. },
  14143. {
  14144. name: "Somewhat Godly",
  14145. height: math.unit(400, "km"),
  14146. default: true
  14147. },
  14148. {
  14149. name: "Planetary",
  14150. height: math.unit(300, "megameters")
  14151. },
  14152. {
  14153. name: "Galaxy-dwarfing",
  14154. height: math.unit(450, "kiloparsecs")
  14155. },
  14156. {
  14157. name: "Universe Eater",
  14158. height: math.unit(150, "gigaparsecs")
  14159. },
  14160. {
  14161. name: "Almost Immeasurable",
  14162. height: math.unit(1.3e266, "yottaparsecs")
  14163. },
  14164. ]
  14165. ))
  14166. characterMakers.push(() => makeCharacter(
  14167. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14168. {
  14169. front: {
  14170. height: math.unit(6, "feet"),
  14171. weight: math.unit(150, "lb"),
  14172. name: "Front",
  14173. image: {
  14174. source: "./media/characters/umeko/front.svg",
  14175. extra: 1,
  14176. bottom: 0.019
  14177. }
  14178. },
  14179. frontArmored: {
  14180. height: math.unit(6, "feet"),
  14181. weight: math.unit(150, "lb"),
  14182. name: "Front (Armored)",
  14183. image: {
  14184. source: "./media/characters/umeko/front-armored.svg",
  14185. extra: 1,
  14186. bottom: 0.021
  14187. }
  14188. },
  14189. },
  14190. [
  14191. {
  14192. name: "Macro",
  14193. height: math.unit(220, "feet"),
  14194. default: true
  14195. },
  14196. {
  14197. name: "Guardian Dragon",
  14198. height: math.unit(50, "miles")
  14199. },
  14200. {
  14201. name: "Cosmic",
  14202. height: math.unit(800000, "miles")
  14203. },
  14204. ]
  14205. ))
  14206. characterMakers.push(() => makeCharacter(
  14207. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14208. {
  14209. front: {
  14210. height: math.unit(6, "feet"),
  14211. weight: math.unit(150, "lb"),
  14212. name: "Front",
  14213. image: {
  14214. source: "./media/characters/cassidy/front.svg",
  14215. extra: 810/808,
  14216. bottom: 41/851
  14217. }
  14218. },
  14219. },
  14220. [
  14221. {
  14222. name: "Canon Height",
  14223. height: math.unit(120, "feet"),
  14224. default: true
  14225. },
  14226. {
  14227. name: "Macro+",
  14228. height: math.unit(400, "feet")
  14229. },
  14230. {
  14231. name: "Macro++",
  14232. height: math.unit(4000, "feet")
  14233. },
  14234. {
  14235. name: "Megamacro",
  14236. height: math.unit(3, "miles")
  14237. },
  14238. ]
  14239. ))
  14240. characterMakers.push(() => makeCharacter(
  14241. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14242. {
  14243. front: {
  14244. height: math.unit(6, "feet"),
  14245. weight: math.unit(150, "lb"),
  14246. name: "Front",
  14247. image: {
  14248. source: "./media/characters/isaac/front.svg",
  14249. extra: 896 / 815,
  14250. bottom: 0.11
  14251. }
  14252. },
  14253. },
  14254. [
  14255. {
  14256. name: "Human Size",
  14257. height: math.unit(8, "feet"),
  14258. default: true
  14259. },
  14260. {
  14261. name: "Macro",
  14262. height: math.unit(400, "feet")
  14263. },
  14264. {
  14265. name: "Megamacro",
  14266. height: math.unit(50, "miles")
  14267. },
  14268. {
  14269. name: "Canon Height",
  14270. height: math.unit(200, "AU")
  14271. },
  14272. ]
  14273. ))
  14274. characterMakers.push(() => makeCharacter(
  14275. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14276. {
  14277. front: {
  14278. height: math.unit(6, "feet"),
  14279. weight: math.unit(72, "kg"),
  14280. name: "Front",
  14281. image: {
  14282. source: "./media/characters/sleekit/front.svg",
  14283. extra: 4693 / 4487,
  14284. bottom: 0.012
  14285. }
  14286. },
  14287. },
  14288. [
  14289. {
  14290. name: "Minimum Height",
  14291. height: math.unit(10, "meters")
  14292. },
  14293. {
  14294. name: "Smaller",
  14295. height: math.unit(25, "meters")
  14296. },
  14297. {
  14298. name: "Larger",
  14299. height: math.unit(38, "meters"),
  14300. default: true
  14301. },
  14302. {
  14303. name: "Maximum height",
  14304. height: math.unit(100, "meters")
  14305. },
  14306. ]
  14307. ))
  14308. characterMakers.push(() => makeCharacter(
  14309. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14310. {
  14311. front: {
  14312. height: math.unit(6, "feet"),
  14313. weight: math.unit(150, "lb"),
  14314. name: "Front",
  14315. image: {
  14316. source: "./media/characters/nillia/front.svg",
  14317. extra: 2195 / 2037,
  14318. bottom: 0.005
  14319. }
  14320. },
  14321. back: {
  14322. height: math.unit(6, "feet"),
  14323. weight: math.unit(150, "lb"),
  14324. name: "Back",
  14325. image: {
  14326. source: "./media/characters/nillia/back.svg",
  14327. extra: 2195 / 2037,
  14328. bottom: 0.005
  14329. }
  14330. },
  14331. },
  14332. [
  14333. {
  14334. name: "Canon Height",
  14335. height: math.unit(489, "feet"),
  14336. default: true
  14337. }
  14338. ]
  14339. ))
  14340. characterMakers.push(() => makeCharacter(
  14341. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14342. {
  14343. front: {
  14344. height: math.unit(6, "feet"),
  14345. weight: math.unit(150, "lb"),
  14346. name: "Front",
  14347. image: {
  14348. source: "./media/characters/mesmyriza/front.svg",
  14349. extra: 2067 / 1784,
  14350. bottom: 0.035
  14351. }
  14352. },
  14353. foot: {
  14354. height: math.unit(6 / (250 / 35), "feet"),
  14355. name: "Foot",
  14356. image: {
  14357. source: "./media/characters/mesmyriza/foot.svg"
  14358. }
  14359. },
  14360. },
  14361. [
  14362. {
  14363. name: "Macro",
  14364. height: math.unit(457, "meters"),
  14365. default: true
  14366. },
  14367. {
  14368. name: "Megamacro",
  14369. height: math.unit(8, "megameters")
  14370. },
  14371. ]
  14372. ))
  14373. characterMakers.push(() => makeCharacter(
  14374. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14375. {
  14376. front: {
  14377. height: math.unit(6, "feet"),
  14378. weight: math.unit(250, "lb"),
  14379. name: "Front",
  14380. image: {
  14381. source: "./media/characters/saudade/front.svg",
  14382. extra: 1172 / 1139,
  14383. bottom: 0.035
  14384. }
  14385. },
  14386. },
  14387. [
  14388. {
  14389. name: "Micro",
  14390. height: math.unit(3, "inches")
  14391. },
  14392. {
  14393. name: "Normal",
  14394. height: math.unit(6, "feet"),
  14395. default: true
  14396. },
  14397. {
  14398. name: "Macro",
  14399. height: math.unit(50, "feet")
  14400. },
  14401. {
  14402. name: "Megamacro",
  14403. height: math.unit(2800, "feet")
  14404. },
  14405. ]
  14406. ))
  14407. characterMakers.push(() => makeCharacter(
  14408. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14409. {
  14410. front: {
  14411. height: math.unit(5 + 4 / 12, "feet"),
  14412. weight: math.unit(100, "lb"),
  14413. name: "Front",
  14414. image: {
  14415. source: "./media/characters/keireer/front.svg",
  14416. extra: 716 / 666,
  14417. bottom: 0.05
  14418. }
  14419. },
  14420. },
  14421. [
  14422. {
  14423. name: "Normal",
  14424. height: math.unit(5 + 4 / 12, "feet"),
  14425. default: true
  14426. },
  14427. ]
  14428. ))
  14429. characterMakers.push(() => makeCharacter(
  14430. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14431. {
  14432. front: {
  14433. height: math.unit(6, "feet"),
  14434. weight: math.unit(90, "kg"),
  14435. name: "Front",
  14436. image: {
  14437. source: "./media/characters/mirja/front.svg",
  14438. extra: 1789 / 1683,
  14439. bottom: 0.05
  14440. }
  14441. },
  14442. frontDressed: {
  14443. height: math.unit(6, "feet"),
  14444. weight: math.unit(90, "lb"),
  14445. name: "Front (Dressed)",
  14446. image: {
  14447. source: "./media/characters/mirja/front-dressed.svg",
  14448. extra: 1789 / 1683,
  14449. bottom: 0.05
  14450. }
  14451. },
  14452. back: {
  14453. height: math.unit(6, "feet"),
  14454. weight: math.unit(90, "lb"),
  14455. name: "Back",
  14456. image: {
  14457. source: "./media/characters/mirja/back.svg",
  14458. extra: 953 / 917,
  14459. bottom: 0.017
  14460. }
  14461. },
  14462. },
  14463. [
  14464. {
  14465. name: "\"Incognito\"",
  14466. height: math.unit(3, "meters")
  14467. },
  14468. {
  14469. name: "Strolling Size",
  14470. height: math.unit(15, "km")
  14471. },
  14472. {
  14473. name: "Larger Strolling Size",
  14474. height: math.unit(400, "km")
  14475. },
  14476. {
  14477. name: "Preferred Size",
  14478. height: math.unit(5000, "km")
  14479. },
  14480. {
  14481. name: "True Size",
  14482. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14483. default: true
  14484. },
  14485. ]
  14486. ))
  14487. characterMakers.push(() => makeCharacter(
  14488. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14489. {
  14490. front: {
  14491. height: math.unit(15, "feet"),
  14492. weight: math.unit(880, "kg"),
  14493. name: "Front",
  14494. image: {
  14495. source: "./media/characters/nightraver/front.svg",
  14496. extra: 2444 / 2160,
  14497. bottom: 0.027
  14498. }
  14499. },
  14500. back: {
  14501. height: math.unit(15, "feet"),
  14502. weight: math.unit(880, "kg"),
  14503. name: "Back",
  14504. image: {
  14505. source: "./media/characters/nightraver/back.svg",
  14506. extra: 2309 / 2180,
  14507. bottom: 0.005
  14508. }
  14509. },
  14510. sole: {
  14511. height: math.unit(2.878, "feet"),
  14512. name: "Sole",
  14513. image: {
  14514. source: "./media/characters/nightraver/sole.svg"
  14515. }
  14516. },
  14517. foot: {
  14518. height: math.unit(2.285, "feet"),
  14519. name: "Foot",
  14520. image: {
  14521. source: "./media/characters/nightraver/foot.svg"
  14522. }
  14523. },
  14524. maw: {
  14525. height: math.unit(2.67, "feet"),
  14526. name: "Maw",
  14527. image: {
  14528. source: "./media/characters/nightraver/maw.svg"
  14529. }
  14530. },
  14531. },
  14532. [
  14533. {
  14534. name: "Micro",
  14535. height: math.unit(1, "cm")
  14536. },
  14537. {
  14538. name: "Normal",
  14539. height: math.unit(15, "feet"),
  14540. default: true
  14541. },
  14542. {
  14543. name: "Macro",
  14544. height: math.unit(300, "feet")
  14545. },
  14546. {
  14547. name: "Megamacro",
  14548. height: math.unit(300, "miles")
  14549. },
  14550. {
  14551. name: "Gigamacro",
  14552. height: math.unit(10000, "miles")
  14553. },
  14554. ]
  14555. ))
  14556. characterMakers.push(() => makeCharacter(
  14557. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14558. {
  14559. side: {
  14560. height: math.unit(2, "inches"),
  14561. weight: math.unit(5, "grams"),
  14562. name: "Side",
  14563. image: {
  14564. source: "./media/characters/arc/side.svg"
  14565. }
  14566. },
  14567. },
  14568. [
  14569. {
  14570. name: "Micro",
  14571. height: math.unit(2, "inches"),
  14572. default: true
  14573. },
  14574. ]
  14575. ))
  14576. characterMakers.push(() => makeCharacter(
  14577. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14578. {
  14579. front: {
  14580. height: math.unit(1.1938, "meters"),
  14581. weight: math.unit(54, "kg"),
  14582. name: "Front",
  14583. image: {
  14584. source: "./media/characters/nebula-shahar/front.svg",
  14585. extra: 1642 / 1436,
  14586. bottom: 0.06
  14587. }
  14588. },
  14589. },
  14590. [
  14591. {
  14592. name: "Megamicro",
  14593. height: math.unit(0.3, "mm")
  14594. },
  14595. {
  14596. name: "Micro",
  14597. height: math.unit(3, "cm")
  14598. },
  14599. {
  14600. name: "Normal",
  14601. height: math.unit(138, "cm"),
  14602. default: true
  14603. },
  14604. {
  14605. name: "Macro",
  14606. height: math.unit(30, "m")
  14607. },
  14608. ]
  14609. ))
  14610. characterMakers.push(() => makeCharacter(
  14611. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14612. {
  14613. front: {
  14614. height: math.unit(5.24, "feet"),
  14615. weight: math.unit(150, "lb"),
  14616. name: "Front",
  14617. image: {
  14618. source: "./media/characters/shayla/front.svg",
  14619. extra: 1512 / 1414,
  14620. bottom: 0.01
  14621. }
  14622. },
  14623. back: {
  14624. height: math.unit(5.24, "feet"),
  14625. weight: math.unit(150, "lb"),
  14626. name: "Back",
  14627. image: {
  14628. source: "./media/characters/shayla/back.svg",
  14629. extra: 1512 / 1414
  14630. }
  14631. },
  14632. hand: {
  14633. height: math.unit(0.7781496062992126, "feet"),
  14634. name: "Hand",
  14635. image: {
  14636. source: "./media/characters/shayla/hand.svg"
  14637. }
  14638. },
  14639. foot: {
  14640. height: math.unit(1.4206036745406823, "feet"),
  14641. name: "Foot",
  14642. image: {
  14643. source: "./media/characters/shayla/foot.svg"
  14644. }
  14645. },
  14646. },
  14647. [
  14648. {
  14649. name: "Micro",
  14650. height: math.unit(0.32, "feet")
  14651. },
  14652. {
  14653. name: "Normal",
  14654. height: math.unit(5.24, "feet"),
  14655. default: true
  14656. },
  14657. {
  14658. name: "Macro",
  14659. height: math.unit(492.12, "feet")
  14660. },
  14661. {
  14662. name: "Megamacro",
  14663. height: math.unit(186.41, "miles")
  14664. },
  14665. ]
  14666. ))
  14667. characterMakers.push(() => makeCharacter(
  14668. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14669. {
  14670. front: {
  14671. height: math.unit(2.2, "m"),
  14672. weight: math.unit(120, "kg"),
  14673. name: "Front",
  14674. image: {
  14675. source: "./media/characters/pia-jr/front.svg",
  14676. extra: 1000 / 970,
  14677. bottom: 0.035
  14678. }
  14679. },
  14680. hand: {
  14681. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14682. name: "Hand",
  14683. image: {
  14684. source: "./media/characters/pia-jr/hand.svg"
  14685. }
  14686. },
  14687. paw: {
  14688. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14689. name: "Paw",
  14690. image: {
  14691. source: "./media/characters/pia-jr/paw.svg"
  14692. }
  14693. },
  14694. },
  14695. [
  14696. {
  14697. name: "Micro",
  14698. height: math.unit(1.2, "cm")
  14699. },
  14700. {
  14701. name: "Normal",
  14702. height: math.unit(2.2, "m"),
  14703. default: true
  14704. },
  14705. {
  14706. name: "Macro",
  14707. height: math.unit(180, "m")
  14708. },
  14709. {
  14710. name: "Megamacro",
  14711. height: math.unit(420, "km")
  14712. },
  14713. ]
  14714. ))
  14715. characterMakers.push(() => makeCharacter(
  14716. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14717. {
  14718. front: {
  14719. height: math.unit(2, "m"),
  14720. weight: math.unit(115, "kg"),
  14721. name: "Front",
  14722. image: {
  14723. source: "./media/characters/pia-sr/front.svg",
  14724. extra: 760 / 730,
  14725. bottom: 0.015
  14726. }
  14727. },
  14728. back: {
  14729. height: math.unit(2, "m"),
  14730. weight: math.unit(115, "kg"),
  14731. name: "Back",
  14732. image: {
  14733. source: "./media/characters/pia-sr/back.svg",
  14734. extra: 760 / 730,
  14735. bottom: 0.01
  14736. }
  14737. },
  14738. hand: {
  14739. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14740. name: "Hand",
  14741. image: {
  14742. source: "./media/characters/pia-sr/hand.svg"
  14743. }
  14744. },
  14745. foot: {
  14746. height: math.unit(1.83, "feet"),
  14747. name: "Foot",
  14748. image: {
  14749. source: "./media/characters/pia-sr/foot.svg"
  14750. }
  14751. },
  14752. },
  14753. [
  14754. {
  14755. name: "Micro",
  14756. height: math.unit(88, "mm")
  14757. },
  14758. {
  14759. name: "Normal",
  14760. height: math.unit(2, "m"),
  14761. default: true
  14762. },
  14763. {
  14764. name: "Macro",
  14765. height: math.unit(200, "m")
  14766. },
  14767. {
  14768. name: "Megamacro",
  14769. height: math.unit(420, "km")
  14770. },
  14771. ]
  14772. ))
  14773. characterMakers.push(() => makeCharacter(
  14774. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14775. {
  14776. front: {
  14777. height: math.unit(8 + 2 / 12, "feet"),
  14778. weight: math.unit(300, "lb"),
  14779. name: "Front",
  14780. image: {
  14781. source: "./media/characters/kibibyte/front.svg",
  14782. extra: 2221 / 2098,
  14783. bottom: 0.04
  14784. }
  14785. },
  14786. },
  14787. [
  14788. {
  14789. name: "Normal",
  14790. height: math.unit(8 + 2 / 12, "feet"),
  14791. default: true
  14792. },
  14793. {
  14794. name: "Socialable Macro",
  14795. height: math.unit(50, "feet")
  14796. },
  14797. {
  14798. name: "Macro",
  14799. height: math.unit(300, "feet")
  14800. },
  14801. {
  14802. name: "Megamacro",
  14803. height: math.unit(500, "miles")
  14804. },
  14805. ]
  14806. ))
  14807. characterMakers.push(() => makeCharacter(
  14808. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14809. {
  14810. front: {
  14811. height: math.unit(6, "feet"),
  14812. weight: math.unit(150, "lb"),
  14813. name: "Front",
  14814. image: {
  14815. source: "./media/characters/felix/front.svg",
  14816. extra: 762 / 722,
  14817. bottom: 0.02
  14818. }
  14819. },
  14820. frontClothed: {
  14821. height: math.unit(6, "feet"),
  14822. weight: math.unit(150, "lb"),
  14823. name: "Front (Clothed)",
  14824. image: {
  14825. source: "./media/characters/felix/front-clothed.svg",
  14826. extra: 762 / 722,
  14827. bottom: 0.02
  14828. }
  14829. },
  14830. },
  14831. [
  14832. {
  14833. name: "Normal",
  14834. height: math.unit(6 + 8 / 12, "feet"),
  14835. default: true
  14836. },
  14837. {
  14838. name: "Macro",
  14839. height: math.unit(2600, "feet")
  14840. },
  14841. {
  14842. name: "Megamacro",
  14843. height: math.unit(450, "miles")
  14844. },
  14845. ]
  14846. ))
  14847. characterMakers.push(() => makeCharacter(
  14848. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14849. {
  14850. front: {
  14851. height: math.unit(6 + 1 / 12, "feet"),
  14852. weight: math.unit(250, "lb"),
  14853. name: "Front",
  14854. image: {
  14855. source: "./media/characters/tobo/front.svg",
  14856. extra: 608 / 586,
  14857. bottom: 0.023
  14858. }
  14859. },
  14860. back: {
  14861. height: math.unit(6 + 1 / 12, "feet"),
  14862. weight: math.unit(250, "lb"),
  14863. name: "Back",
  14864. image: {
  14865. source: "./media/characters/tobo/back.svg",
  14866. extra: 608 / 586
  14867. }
  14868. },
  14869. },
  14870. [
  14871. {
  14872. name: "Nano",
  14873. height: math.unit(2, "nm")
  14874. },
  14875. {
  14876. name: "Megamicro",
  14877. height: math.unit(0.1, "mm")
  14878. },
  14879. {
  14880. name: "Micro",
  14881. height: math.unit(1, "inch"),
  14882. default: true
  14883. },
  14884. {
  14885. name: "Human-sized",
  14886. height: math.unit(6 + 1 / 12, "feet")
  14887. },
  14888. {
  14889. name: "Macro",
  14890. height: math.unit(250, "feet")
  14891. },
  14892. {
  14893. name: "Megamacro",
  14894. height: math.unit(75, "miles")
  14895. },
  14896. {
  14897. name: "Texas-sized",
  14898. height: math.unit(750, "miles")
  14899. },
  14900. {
  14901. name: "Teramacro",
  14902. height: math.unit(50000, "miles")
  14903. },
  14904. ]
  14905. ))
  14906. characterMakers.push(() => makeCharacter(
  14907. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14908. {
  14909. front: {
  14910. height: math.unit(6, "feet"),
  14911. weight: math.unit(269, "lb"),
  14912. name: "Front",
  14913. image: {
  14914. source: "./media/characters/danny-kapowsky/front.svg",
  14915. extra: 766 / 736,
  14916. bottom: 0.044
  14917. }
  14918. },
  14919. back: {
  14920. height: math.unit(6, "feet"),
  14921. weight: math.unit(269, "lb"),
  14922. name: "Back",
  14923. image: {
  14924. source: "./media/characters/danny-kapowsky/back.svg",
  14925. extra: 797 / 760,
  14926. bottom: 0.025
  14927. }
  14928. },
  14929. },
  14930. [
  14931. {
  14932. name: "Macro",
  14933. height: math.unit(150, "feet"),
  14934. default: true
  14935. },
  14936. {
  14937. name: "Macro+",
  14938. height: math.unit(200, "feet")
  14939. },
  14940. {
  14941. name: "Macro++",
  14942. height: math.unit(300, "feet")
  14943. },
  14944. {
  14945. name: "Macro+++",
  14946. height: math.unit(400, "feet")
  14947. },
  14948. ]
  14949. ))
  14950. characterMakers.push(() => makeCharacter(
  14951. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14952. {
  14953. side: {
  14954. height: math.unit(6, "feet"),
  14955. weight: math.unit(170, "lb"),
  14956. name: "Side",
  14957. image: {
  14958. source: "./media/characters/finn/side.svg",
  14959. extra: 1953 / 1807,
  14960. bottom: 0.057
  14961. }
  14962. },
  14963. },
  14964. [
  14965. {
  14966. name: "Megamacro",
  14967. height: math.unit(14445, "feet"),
  14968. default: true
  14969. },
  14970. ]
  14971. ))
  14972. characterMakers.push(() => makeCharacter(
  14973. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14974. {
  14975. front: {
  14976. height: math.unit(5 + 6 / 12, "feet"),
  14977. weight: math.unit(125, "lb"),
  14978. name: "Front",
  14979. image: {
  14980. source: "./media/characters/roy/front.svg",
  14981. extra: 1,
  14982. bottom: 0.11
  14983. }
  14984. },
  14985. },
  14986. [
  14987. {
  14988. name: "Micro",
  14989. height: math.unit(3, "inches"),
  14990. default: true
  14991. },
  14992. {
  14993. name: "Normal",
  14994. height: math.unit(5 + 6 / 12, "feet")
  14995. },
  14996. {
  14997. name: "Lesser Macro",
  14998. height: math.unit(60, "feet")
  14999. },
  15000. {
  15001. name: "Greater Macro",
  15002. height: math.unit(120, "feet")
  15003. },
  15004. ]
  15005. ))
  15006. characterMakers.push(() => makeCharacter(
  15007. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15008. {
  15009. front: {
  15010. height: math.unit(6, "feet"),
  15011. weight: math.unit(100, "lb"),
  15012. name: "Front",
  15013. image: {
  15014. source: "./media/characters/aevsivs/front.svg",
  15015. extra: 1,
  15016. bottom: 0.03
  15017. }
  15018. },
  15019. back: {
  15020. height: math.unit(6, "feet"),
  15021. weight: math.unit(100, "lb"),
  15022. name: "Back",
  15023. image: {
  15024. source: "./media/characters/aevsivs/back.svg"
  15025. }
  15026. },
  15027. },
  15028. [
  15029. {
  15030. name: "Micro",
  15031. height: math.unit(2, "inches"),
  15032. default: true
  15033. },
  15034. {
  15035. name: "Normal",
  15036. height: math.unit(5, "feet")
  15037. },
  15038. ]
  15039. ))
  15040. characterMakers.push(() => makeCharacter(
  15041. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15042. {
  15043. front: {
  15044. height: math.unit(5 + 7 / 12, "feet"),
  15045. weight: math.unit(159, "lb"),
  15046. name: "Front",
  15047. image: {
  15048. source: "./media/characters/hildegard/front.svg",
  15049. extra: 289 / 269,
  15050. bottom: 7.63 / 297.8
  15051. }
  15052. },
  15053. back: {
  15054. height: math.unit(5 + 7 / 12, "feet"),
  15055. weight: math.unit(159, "lb"),
  15056. name: "Back",
  15057. image: {
  15058. source: "./media/characters/hildegard/back.svg",
  15059. extra: 280 / 260,
  15060. bottom: 2.3 / 282
  15061. }
  15062. },
  15063. },
  15064. [
  15065. {
  15066. name: "Normal",
  15067. height: math.unit(5 + 7 / 12, "feet"),
  15068. default: true
  15069. },
  15070. ]
  15071. ))
  15072. characterMakers.push(() => makeCharacter(
  15073. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15074. {
  15075. bernard: {
  15076. height: math.unit(2 + 7 / 12, "feet"),
  15077. weight: math.unit(66, "lb"),
  15078. name: "Bernard",
  15079. rename: true,
  15080. image: {
  15081. source: "./media/characters/bernard-wilder/bernard.svg",
  15082. extra: 192 / 128,
  15083. bottom: 0.05
  15084. }
  15085. },
  15086. wilder: {
  15087. height: math.unit(5 + 8 / 12, "feet"),
  15088. weight: math.unit(143, "lb"),
  15089. name: "Wilder",
  15090. rename: true,
  15091. image: {
  15092. source: "./media/characters/bernard-wilder/wilder.svg",
  15093. extra: 361 / 312,
  15094. bottom: 0.02
  15095. }
  15096. },
  15097. },
  15098. [
  15099. {
  15100. name: "Normal",
  15101. height: math.unit(2 + 7 / 12, "feet"),
  15102. default: true
  15103. },
  15104. ]
  15105. ))
  15106. characterMakers.push(() => makeCharacter(
  15107. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15108. {
  15109. anthro: {
  15110. height: math.unit(6 + 1 / 12, "feet"),
  15111. weight: math.unit(155, "lb"),
  15112. name: "Anthro",
  15113. image: {
  15114. source: "./media/characters/hearth/anthro.svg",
  15115. extra: 1178/1136,
  15116. bottom: 28/1206
  15117. }
  15118. },
  15119. feral: {
  15120. height: math.unit(3.78, "feet"),
  15121. weight: math.unit(35, "kg"),
  15122. name: "Feral",
  15123. image: {
  15124. source: "./media/characters/hearth/feral.svg",
  15125. extra: 153 / 135,
  15126. bottom: 0.03
  15127. }
  15128. },
  15129. },
  15130. [
  15131. {
  15132. name: "Normal",
  15133. height: math.unit(6 + 1 / 12, "feet"),
  15134. default: true
  15135. },
  15136. ]
  15137. ))
  15138. characterMakers.push(() => makeCharacter(
  15139. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15140. {
  15141. front: {
  15142. height: math.unit(6, "feet"),
  15143. weight: math.unit(182, "lb"),
  15144. name: "Front",
  15145. image: {
  15146. source: "./media/characters/ingrid/front.svg",
  15147. extra: 294 / 268,
  15148. bottom: 0.027
  15149. }
  15150. },
  15151. },
  15152. [
  15153. {
  15154. name: "Normal",
  15155. height: math.unit(6, "feet"),
  15156. default: true
  15157. },
  15158. ]
  15159. ))
  15160. characterMakers.push(() => makeCharacter(
  15161. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15162. {
  15163. eevee: {
  15164. height: math.unit(2 + 10 / 12, "feet"),
  15165. weight: math.unit(86, "lb"),
  15166. name: "Malgam",
  15167. image: {
  15168. source: "./media/characters/malgam/eevee.svg",
  15169. extra: 952/784,
  15170. bottom: 38/990
  15171. }
  15172. },
  15173. sylveon: {
  15174. height: math.unit(4, "feet"),
  15175. weight: math.unit(101, "lb"),
  15176. name: "Future Malgam",
  15177. rename: true,
  15178. image: {
  15179. source: "./media/characters/malgam/sylveon.svg",
  15180. extra: 371 / 325,
  15181. bottom: 0.015
  15182. }
  15183. },
  15184. gigantamax: {
  15185. height: math.unit(50, "feet"),
  15186. name: "Gigantamax Malgam",
  15187. rename: true,
  15188. image: {
  15189. source: "./media/characters/malgam/gigantamax.svg"
  15190. }
  15191. },
  15192. },
  15193. [
  15194. {
  15195. name: "Normal",
  15196. height: math.unit(2 + 10 / 12, "feet"),
  15197. default: true
  15198. },
  15199. ]
  15200. ))
  15201. characterMakers.push(() => makeCharacter(
  15202. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15203. {
  15204. front: {
  15205. height: math.unit(5 + 11 / 12, "feet"),
  15206. weight: math.unit(188, "lb"),
  15207. name: "Front",
  15208. image: {
  15209. source: "./media/characters/fleur/front.svg",
  15210. extra: 309 / 283,
  15211. bottom: 0.007
  15212. }
  15213. },
  15214. },
  15215. [
  15216. {
  15217. name: "Normal",
  15218. height: math.unit(5 + 11 / 12, "feet"),
  15219. default: true
  15220. },
  15221. ]
  15222. ))
  15223. characterMakers.push(() => makeCharacter(
  15224. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15225. {
  15226. front: {
  15227. height: math.unit(5 + 4 / 12, "feet"),
  15228. weight: math.unit(122, "lb"),
  15229. name: "Front",
  15230. image: {
  15231. source: "./media/characters/jude/front.svg",
  15232. extra: 288 / 273,
  15233. bottom: 0.03
  15234. }
  15235. },
  15236. },
  15237. [
  15238. {
  15239. name: "Normal",
  15240. height: math.unit(5 + 4 / 12, "feet"),
  15241. default: true
  15242. },
  15243. ]
  15244. ))
  15245. characterMakers.push(() => makeCharacter(
  15246. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15247. {
  15248. front: {
  15249. height: math.unit(5 + 11 / 12, "feet"),
  15250. weight: math.unit(190, "lb"),
  15251. name: "Front",
  15252. image: {
  15253. source: "./media/characters/seara/front.svg",
  15254. extra: 1,
  15255. bottom: 0.05
  15256. }
  15257. },
  15258. },
  15259. [
  15260. {
  15261. name: "Normal",
  15262. height: math.unit(5 + 11 / 12, "feet"),
  15263. default: true
  15264. },
  15265. ]
  15266. ))
  15267. characterMakers.push(() => makeCharacter(
  15268. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15269. {
  15270. front: {
  15271. height: math.unit(16 + 5 / 12, "feet"),
  15272. weight: math.unit(524, "lb"),
  15273. name: "Front",
  15274. image: {
  15275. source: "./media/characters/caspian/front.svg",
  15276. extra: 1,
  15277. bottom: 0.04
  15278. }
  15279. },
  15280. },
  15281. [
  15282. {
  15283. name: "Normal",
  15284. height: math.unit(16 + 5 / 12, "feet"),
  15285. default: true
  15286. },
  15287. ]
  15288. ))
  15289. characterMakers.push(() => makeCharacter(
  15290. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15291. {
  15292. front: {
  15293. height: math.unit(5 + 7 / 12, "feet"),
  15294. weight: math.unit(170, "lb"),
  15295. name: "Front",
  15296. image: {
  15297. source: "./media/characters/mika/front.svg",
  15298. extra: 1,
  15299. bottom: 0.016
  15300. }
  15301. },
  15302. },
  15303. [
  15304. {
  15305. name: "Normal",
  15306. height: math.unit(5 + 7 / 12, "feet"),
  15307. default: true
  15308. },
  15309. ]
  15310. ))
  15311. characterMakers.push(() => makeCharacter(
  15312. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15313. {
  15314. front: {
  15315. height: math.unit(6 + 2 / 12, "feet"),
  15316. weight: math.unit(268, "lb"),
  15317. name: "Front",
  15318. image: {
  15319. source: "./media/characters/sol/front.svg",
  15320. extra: 247 / 231,
  15321. bottom: 0.05
  15322. }
  15323. },
  15324. },
  15325. [
  15326. {
  15327. name: "Normal",
  15328. height: math.unit(6 + 2 / 12, "feet"),
  15329. default: true
  15330. },
  15331. ]
  15332. ))
  15333. characterMakers.push(() => makeCharacter(
  15334. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15335. {
  15336. buizel: {
  15337. height: math.unit(2 + 5 / 12, "feet"),
  15338. weight: math.unit(87, "lb"),
  15339. name: "Buizel",
  15340. image: {
  15341. source: "./media/characters/umiko/buizel.svg",
  15342. extra: 172 / 157,
  15343. bottom: 0.01
  15344. }
  15345. },
  15346. floatzel: {
  15347. height: math.unit(5 + 9 / 12, "feet"),
  15348. weight: math.unit(250, "lb"),
  15349. name: "Floatzel",
  15350. image: {
  15351. source: "./media/characters/umiko/floatzel.svg",
  15352. extra: 262 / 248
  15353. }
  15354. },
  15355. },
  15356. [
  15357. {
  15358. name: "Normal",
  15359. height: math.unit(2 + 5 / 12, "feet"),
  15360. default: true
  15361. },
  15362. ]
  15363. ))
  15364. characterMakers.push(() => makeCharacter(
  15365. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15366. {
  15367. front: {
  15368. height: math.unit(6 + 2 / 12, "feet"),
  15369. weight: math.unit(146, "lb"),
  15370. name: "Front",
  15371. image: {
  15372. source: "./media/characters/iliac/front.svg",
  15373. extra: 389 / 365,
  15374. bottom: 0.035
  15375. }
  15376. },
  15377. },
  15378. [
  15379. {
  15380. name: "Normal",
  15381. height: math.unit(6 + 2 / 12, "feet"),
  15382. default: true
  15383. },
  15384. ]
  15385. ))
  15386. characterMakers.push(() => makeCharacter(
  15387. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15388. {
  15389. front: {
  15390. height: math.unit(6, "feet"),
  15391. weight: math.unit(170, "lb"),
  15392. name: "Front",
  15393. image: {
  15394. source: "./media/characters/topaz/front.svg",
  15395. extra: 317 / 303,
  15396. bottom: 0.055
  15397. }
  15398. },
  15399. },
  15400. [
  15401. {
  15402. name: "Normal",
  15403. height: math.unit(6, "feet"),
  15404. default: true
  15405. },
  15406. ]
  15407. ))
  15408. characterMakers.push(() => makeCharacter(
  15409. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15410. {
  15411. front: {
  15412. height: math.unit(5 + 11 / 12, "feet"),
  15413. weight: math.unit(144, "lb"),
  15414. name: "Front",
  15415. image: {
  15416. source: "./media/characters/gabriel/front.svg",
  15417. extra: 285 / 262,
  15418. bottom: 0.004
  15419. }
  15420. },
  15421. },
  15422. [
  15423. {
  15424. name: "Normal",
  15425. height: math.unit(5 + 11 / 12, "feet"),
  15426. default: true
  15427. },
  15428. ]
  15429. ))
  15430. characterMakers.push(() => makeCharacter(
  15431. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15432. {
  15433. side: {
  15434. height: math.unit(6 + 5 / 12, "feet"),
  15435. weight: math.unit(300, "lb"),
  15436. name: "Side",
  15437. image: {
  15438. source: "./media/characters/tempest-suicune/side.svg",
  15439. extra: 195 / 154,
  15440. bottom: 0.04
  15441. }
  15442. },
  15443. },
  15444. [
  15445. {
  15446. name: "Normal",
  15447. height: math.unit(6 + 5 / 12, "feet"),
  15448. default: true
  15449. },
  15450. ]
  15451. ))
  15452. characterMakers.push(() => makeCharacter(
  15453. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15454. {
  15455. front: {
  15456. height: math.unit(7 + 2 / 12, "feet"),
  15457. weight: math.unit(322, "lb"),
  15458. name: "Front",
  15459. image: {
  15460. source: "./media/characters/vulcan/front.svg",
  15461. extra: 154 / 147,
  15462. bottom: 0.04
  15463. }
  15464. },
  15465. },
  15466. [
  15467. {
  15468. name: "Normal",
  15469. height: math.unit(7 + 2 / 12, "feet"),
  15470. default: true
  15471. },
  15472. ]
  15473. ))
  15474. characterMakers.push(() => makeCharacter(
  15475. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15476. {
  15477. front: {
  15478. height: math.unit(5 + 10 / 12, "feet"),
  15479. weight: math.unit(264, "lb"),
  15480. name: "Front",
  15481. image: {
  15482. source: "./media/characters/gault/front.svg",
  15483. extra: 161 / 140,
  15484. bottom: 0.028
  15485. }
  15486. },
  15487. },
  15488. [
  15489. {
  15490. name: "Normal",
  15491. height: math.unit(5 + 10 / 12, "feet"),
  15492. default: true
  15493. },
  15494. ]
  15495. ))
  15496. characterMakers.push(() => makeCharacter(
  15497. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15498. {
  15499. front: {
  15500. height: math.unit(6, "feet"),
  15501. weight: math.unit(150, "lb"),
  15502. name: "Front",
  15503. image: {
  15504. source: "./media/characters/shard/front.svg",
  15505. extra: 273 / 238,
  15506. bottom: 0.02
  15507. }
  15508. },
  15509. },
  15510. [
  15511. {
  15512. name: "Normal",
  15513. height: math.unit(3 + 6 / 12, "feet"),
  15514. default: true
  15515. },
  15516. ]
  15517. ))
  15518. characterMakers.push(() => makeCharacter(
  15519. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15520. {
  15521. front: {
  15522. height: math.unit(5 + 11 / 12, "feet"),
  15523. weight: math.unit(146, "lb"),
  15524. name: "Front",
  15525. image: {
  15526. source: "./media/characters/ashe/front.svg",
  15527. extra: 400 / 373,
  15528. bottom: 0.01
  15529. }
  15530. },
  15531. },
  15532. [
  15533. {
  15534. name: "Normal",
  15535. height: math.unit(5 + 11 / 12, "feet"),
  15536. default: true
  15537. },
  15538. ]
  15539. ))
  15540. characterMakers.push(() => makeCharacter(
  15541. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15542. {
  15543. front: {
  15544. height: math.unit(5 + 5 / 12, "feet"),
  15545. weight: math.unit(135, "lb"),
  15546. name: "Front",
  15547. image: {
  15548. source: "./media/characters/beatrix/front.svg",
  15549. extra: 392 / 379,
  15550. bottom: 0.01
  15551. }
  15552. },
  15553. },
  15554. [
  15555. {
  15556. name: "Normal",
  15557. height: math.unit(6, "feet"),
  15558. default: true
  15559. },
  15560. ]
  15561. ))
  15562. characterMakers.push(() => makeCharacter(
  15563. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15564. {
  15565. front: {
  15566. height: math.unit(6 + 2/12, "feet"),
  15567. weight: math.unit(135, "lb"),
  15568. name: "Front",
  15569. image: {
  15570. source: "./media/characters/ignatius/front.svg",
  15571. extra: 1380/1259,
  15572. bottom: 27/1407
  15573. }
  15574. },
  15575. },
  15576. [
  15577. {
  15578. name: "Normal",
  15579. height: math.unit(6 + 2/12, "feet"),
  15580. default: true
  15581. },
  15582. ]
  15583. ))
  15584. characterMakers.push(() => makeCharacter(
  15585. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15586. {
  15587. front: {
  15588. height: math.unit(6 + 2 / 12, "feet"),
  15589. weight: math.unit(138, "lb"),
  15590. name: "Front",
  15591. image: {
  15592. source: "./media/characters/mei-li/front.svg",
  15593. extra: 237 / 229,
  15594. bottom: 0.03
  15595. }
  15596. },
  15597. },
  15598. [
  15599. {
  15600. name: "Normal",
  15601. height: math.unit(6 + 2 / 12, "feet"),
  15602. default: true
  15603. },
  15604. ]
  15605. ))
  15606. characterMakers.push(() => makeCharacter(
  15607. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15608. {
  15609. front: {
  15610. height: math.unit(2 + 4 / 12, "feet"),
  15611. weight: math.unit(62, "lb"),
  15612. name: "Front",
  15613. image: {
  15614. source: "./media/characters/puru/front.svg",
  15615. extra: 206 / 149,
  15616. bottom: 0.06
  15617. }
  15618. },
  15619. },
  15620. [
  15621. {
  15622. name: "Normal",
  15623. height: math.unit(2 + 4 / 12, "feet"),
  15624. default: true
  15625. },
  15626. ]
  15627. ))
  15628. characterMakers.push(() => makeCharacter(
  15629. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15630. {
  15631. anthro: {
  15632. height: math.unit(5 + 8/12, "feet"),
  15633. weight: math.unit(200, "lb"),
  15634. energyNeed: math.unit(2000, "kcal"),
  15635. name: "Anthro",
  15636. image: {
  15637. source: "./media/characters/kee/anthro.svg",
  15638. extra: 3251/3184,
  15639. bottom: 250/3501
  15640. }
  15641. },
  15642. taur: {
  15643. height: math.unit(11, "feet"),
  15644. weight: math.unit(500, "lb"),
  15645. energyNeed: math.unit(5000, "kcal"),
  15646. name: "Taur",
  15647. image: {
  15648. source: "./media/characters/kee/taur.svg",
  15649. extra: 1362/1320,
  15650. bottom: 83/1445
  15651. }
  15652. },
  15653. },
  15654. [
  15655. {
  15656. name: "Normal",
  15657. height: math.unit(5 + 8/12, "feet"),
  15658. default: true
  15659. },
  15660. {
  15661. name: "Macro",
  15662. height: math.unit(35, "feet")
  15663. },
  15664. ]
  15665. ))
  15666. characterMakers.push(() => makeCharacter(
  15667. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15668. {
  15669. anthro: {
  15670. height: math.unit(7, "feet"),
  15671. weight: math.unit(190, "lb"),
  15672. name: "Anthro",
  15673. image: {
  15674. source: "./media/characters/cobalt-dracha/anthro.svg",
  15675. extra: 231 / 225,
  15676. bottom: 0.04
  15677. }
  15678. },
  15679. feral: {
  15680. height: math.unit(9 + 7 / 12, "feet"),
  15681. weight: math.unit(294, "lb"),
  15682. name: "Feral",
  15683. image: {
  15684. source: "./media/characters/cobalt-dracha/feral.svg",
  15685. extra: 692 / 633,
  15686. bottom: 0.05
  15687. }
  15688. },
  15689. },
  15690. [
  15691. {
  15692. name: "Normal",
  15693. height: math.unit(7, "feet"),
  15694. default: true
  15695. },
  15696. ]
  15697. ))
  15698. characterMakers.push(() => makeCharacter(
  15699. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15700. {
  15701. fallen: {
  15702. height: math.unit(11 + 8 / 12, "feet"),
  15703. weight: math.unit(485, "lb"),
  15704. name: "Java (Fallen)",
  15705. rename: true,
  15706. image: {
  15707. source: "./media/characters/java/fallen.svg",
  15708. extra: 226 / 208,
  15709. bottom: 0.005
  15710. }
  15711. },
  15712. godkin: {
  15713. height: math.unit(10 + 6 / 12, "feet"),
  15714. weight: math.unit(328, "lb"),
  15715. name: "Java (Godkin)",
  15716. rename: true,
  15717. image: {
  15718. source: "./media/characters/java/godkin.svg",
  15719. extra: 1104/1068,
  15720. bottom: 36/1140
  15721. }
  15722. },
  15723. },
  15724. [
  15725. {
  15726. name: "Normal",
  15727. height: math.unit(11 + 8 / 12, "feet"),
  15728. default: true
  15729. },
  15730. ]
  15731. ))
  15732. characterMakers.push(() => makeCharacter(
  15733. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15734. {
  15735. front: {
  15736. height: math.unit(5 + 9 / 12, "feet"),
  15737. weight: math.unit(170, "lb"),
  15738. name: "Front",
  15739. image: {
  15740. source: "./media/characters/purna/front.svg",
  15741. extra: 239 / 229,
  15742. bottom: 0.01
  15743. }
  15744. },
  15745. },
  15746. [
  15747. {
  15748. name: "Normal",
  15749. height: math.unit(5 + 9 / 12, "feet"),
  15750. default: true
  15751. },
  15752. ]
  15753. ))
  15754. characterMakers.push(() => makeCharacter(
  15755. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15756. {
  15757. front: {
  15758. height: math.unit(5 + 9 / 12, "feet"),
  15759. weight: math.unit(142, "lb"),
  15760. name: "Front",
  15761. image: {
  15762. source: "./media/characters/kuva/front.svg",
  15763. extra: 281 / 271,
  15764. bottom: 0.006
  15765. }
  15766. },
  15767. },
  15768. [
  15769. {
  15770. name: "Normal",
  15771. height: math.unit(5 + 9 / 12, "feet"),
  15772. default: true
  15773. },
  15774. ]
  15775. ))
  15776. characterMakers.push(() => makeCharacter(
  15777. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15778. {
  15779. anthro: {
  15780. height: math.unit(9 + 2 / 12, "feet"),
  15781. weight: math.unit(270, "lb"),
  15782. name: "Anthro",
  15783. image: {
  15784. source: "./media/characters/embra/anthro.svg",
  15785. extra: 200 / 187,
  15786. bottom: 0.02
  15787. }
  15788. },
  15789. feral: {
  15790. height: math.unit(18 + 8 / 12, "feet"),
  15791. weight: math.unit(576, "lb"),
  15792. name: "Feral",
  15793. image: {
  15794. source: "./media/characters/embra/feral.svg",
  15795. extra: 152 / 137,
  15796. bottom: 0.037
  15797. }
  15798. },
  15799. },
  15800. [
  15801. {
  15802. name: "Normal",
  15803. height: math.unit(9 + 2 / 12, "feet"),
  15804. default: true
  15805. },
  15806. ]
  15807. ))
  15808. characterMakers.push(() => makeCharacter(
  15809. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15810. {
  15811. anthro: {
  15812. height: math.unit(10 + 9 / 12, "feet"),
  15813. weight: math.unit(224, "lb"),
  15814. name: "Anthro",
  15815. image: {
  15816. source: "./media/characters/grottos/anthro.svg",
  15817. extra: 350 / 332,
  15818. bottom: 0.045
  15819. }
  15820. },
  15821. feral: {
  15822. height: math.unit(20 + 7 / 12, "feet"),
  15823. weight: math.unit(629, "lb"),
  15824. name: "Feral",
  15825. image: {
  15826. source: "./media/characters/grottos/feral.svg",
  15827. extra: 207 / 190,
  15828. bottom: 0.05
  15829. }
  15830. },
  15831. },
  15832. [
  15833. {
  15834. name: "Normal",
  15835. height: math.unit(10 + 9 / 12, "feet"),
  15836. default: true
  15837. },
  15838. ]
  15839. ))
  15840. characterMakers.push(() => makeCharacter(
  15841. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15842. {
  15843. anthro: {
  15844. height: math.unit(9 + 6 / 12, "feet"),
  15845. weight: math.unit(298, "lb"),
  15846. name: "Anthro",
  15847. image: {
  15848. source: "./media/characters/frifna/anthro.svg",
  15849. extra: 282 / 269,
  15850. bottom: 0.015
  15851. }
  15852. },
  15853. feral: {
  15854. height: math.unit(16 + 2 / 12, "feet"),
  15855. weight: math.unit(624, "lb"),
  15856. name: "Feral",
  15857. image: {
  15858. source: "./media/characters/frifna/feral.svg"
  15859. }
  15860. },
  15861. },
  15862. [
  15863. {
  15864. name: "Normal",
  15865. height: math.unit(9 + 6 / 12, "feet"),
  15866. default: true
  15867. },
  15868. ]
  15869. ))
  15870. characterMakers.push(() => makeCharacter(
  15871. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15872. {
  15873. front: {
  15874. height: math.unit(6 + 2 / 12, "feet"),
  15875. weight: math.unit(168, "lb"),
  15876. name: "Front",
  15877. image: {
  15878. source: "./media/characters/elise/front.svg",
  15879. extra: 276 / 271
  15880. }
  15881. },
  15882. },
  15883. [
  15884. {
  15885. name: "Normal",
  15886. height: math.unit(6 + 2 / 12, "feet"),
  15887. default: true
  15888. },
  15889. ]
  15890. ))
  15891. characterMakers.push(() => makeCharacter(
  15892. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15893. {
  15894. front: {
  15895. height: math.unit(5 + 10 / 12, "feet"),
  15896. weight: math.unit(210, "lb"),
  15897. name: "Front",
  15898. image: {
  15899. source: "./media/characters/glade/front.svg",
  15900. extra: 258 / 247,
  15901. bottom: 0.008
  15902. }
  15903. },
  15904. },
  15905. [
  15906. {
  15907. name: "Normal",
  15908. height: math.unit(5 + 10 / 12, "feet"),
  15909. default: true
  15910. },
  15911. ]
  15912. ))
  15913. characterMakers.push(() => makeCharacter(
  15914. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15915. {
  15916. front: {
  15917. height: math.unit(5 + 10 / 12, "feet"),
  15918. weight: math.unit(129, "lb"),
  15919. name: "Front",
  15920. image: {
  15921. source: "./media/characters/rina/front.svg",
  15922. extra: 266 / 255,
  15923. bottom: 0.005
  15924. }
  15925. },
  15926. },
  15927. [
  15928. {
  15929. name: "Normal",
  15930. height: math.unit(5 + 10 / 12, "feet"),
  15931. default: true
  15932. },
  15933. ]
  15934. ))
  15935. characterMakers.push(() => makeCharacter(
  15936. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15937. {
  15938. front: {
  15939. height: math.unit(6 + 1 / 12, "feet"),
  15940. weight: math.unit(192, "lb"),
  15941. name: "Front",
  15942. image: {
  15943. source: "./media/characters/veronica/front.svg",
  15944. extra: 319 / 309,
  15945. bottom: 0.005
  15946. }
  15947. },
  15948. },
  15949. [
  15950. {
  15951. name: "Normal",
  15952. height: math.unit(6 + 1 / 12, "feet"),
  15953. default: true
  15954. },
  15955. ]
  15956. ))
  15957. characterMakers.push(() => makeCharacter(
  15958. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15959. {
  15960. front: {
  15961. height: math.unit(9 + 3 / 12, "feet"),
  15962. weight: math.unit(1100, "lb"),
  15963. name: "Front",
  15964. image: {
  15965. source: "./media/characters/braxton/front.svg",
  15966. extra: 1057 / 984,
  15967. bottom: 0.05
  15968. }
  15969. },
  15970. },
  15971. [
  15972. {
  15973. name: "Normal",
  15974. height: math.unit(9 + 3 / 12, "feet")
  15975. },
  15976. {
  15977. name: "Giant",
  15978. height: math.unit(300, "feet"),
  15979. default: true
  15980. },
  15981. {
  15982. name: "Macro",
  15983. height: math.unit(700, "feet")
  15984. },
  15985. {
  15986. name: "Megamacro",
  15987. height: math.unit(6000, "feet")
  15988. },
  15989. ]
  15990. ))
  15991. characterMakers.push(() => makeCharacter(
  15992. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15993. {
  15994. front: {
  15995. height: math.unit(6 + 7 / 12, "feet"),
  15996. weight: math.unit(150, "lb"),
  15997. name: "Front",
  15998. image: {
  15999. source: "./media/characters/blue-feyonics/front.svg",
  16000. extra: 1403 / 1306,
  16001. bottom: 0.047
  16002. }
  16003. },
  16004. },
  16005. [
  16006. {
  16007. name: "Normal",
  16008. height: math.unit(6 + 7 / 12, "feet"),
  16009. default: true
  16010. },
  16011. ]
  16012. ))
  16013. characterMakers.push(() => makeCharacter(
  16014. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16015. {
  16016. front: {
  16017. height: math.unit(1.8, "meters"),
  16018. weight: math.unit(60, "kg"),
  16019. name: "Front",
  16020. image: {
  16021. source: "./media/characters/maxwell/front.svg",
  16022. extra: 2060 / 1873
  16023. }
  16024. },
  16025. },
  16026. [
  16027. {
  16028. name: "Micro",
  16029. height: math.unit(1, "mm")
  16030. },
  16031. {
  16032. name: "Normal",
  16033. height: math.unit(1.8, "meter"),
  16034. default: true
  16035. },
  16036. {
  16037. name: "Macro",
  16038. height: math.unit(30, "meters")
  16039. },
  16040. {
  16041. name: "Megamacro",
  16042. height: math.unit(10, "km")
  16043. },
  16044. ]
  16045. ))
  16046. characterMakers.push(() => makeCharacter(
  16047. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16048. {
  16049. front: {
  16050. height: math.unit(6, "feet"),
  16051. weight: math.unit(150, "lb"),
  16052. name: "Front",
  16053. image: {
  16054. source: "./media/characters/jack/front.svg",
  16055. extra: 1754 / 1640,
  16056. bottom: 0.01
  16057. }
  16058. },
  16059. },
  16060. [
  16061. {
  16062. name: "Normal",
  16063. height: math.unit(80000, "feet"),
  16064. default: true
  16065. },
  16066. {
  16067. name: "Max size",
  16068. height: math.unit(10, "lightyears")
  16069. },
  16070. ]
  16071. ))
  16072. characterMakers.push(() => makeCharacter(
  16073. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16074. {
  16075. urban: {
  16076. height: math.unit(5, "feet"),
  16077. weight: math.unit(240, "lb"),
  16078. name: "Urban",
  16079. image: {
  16080. source: "./media/characters/cafat/urban.svg",
  16081. extra: 1223/1126,
  16082. bottom: 205/1428
  16083. }
  16084. },
  16085. summer: {
  16086. height: math.unit(5, "feet"),
  16087. weight: math.unit(240, "lb"),
  16088. name: "Summer",
  16089. image: {
  16090. source: "./media/characters/cafat/summer.svg",
  16091. extra: 1223/1126,
  16092. bottom: 205/1428
  16093. }
  16094. },
  16095. winter: {
  16096. height: math.unit(5, "feet"),
  16097. weight: math.unit(240, "lb"),
  16098. name: "Winter",
  16099. image: {
  16100. source: "./media/characters/cafat/winter.svg",
  16101. extra: 1223/1126,
  16102. bottom: 205/1428
  16103. }
  16104. },
  16105. lingerie: {
  16106. height: math.unit(5, "feet"),
  16107. weight: math.unit(240, "lb"),
  16108. name: "Lingerie",
  16109. image: {
  16110. source: "./media/characters/cafat/lingerie.svg",
  16111. extra: 1223/1126,
  16112. bottom: 205/1428
  16113. }
  16114. },
  16115. upright: {
  16116. height: math.unit(6.3, "feet"),
  16117. weight: math.unit(240, "lb"),
  16118. name: "Upright",
  16119. image: {
  16120. source: "./media/characters/cafat/upright.svg",
  16121. bottom: 0.01
  16122. }
  16123. },
  16124. uprightFull: {
  16125. height: math.unit(6.3, "feet"),
  16126. weight: math.unit(240, "lb"),
  16127. name: "Upright (Full)",
  16128. image: {
  16129. source: "./media/characters/cafat/upright-full.svg",
  16130. bottom: 0.01
  16131. }
  16132. },
  16133. },
  16134. [
  16135. {
  16136. name: "Small",
  16137. height: math.unit(5, "feet"),
  16138. default: true
  16139. },
  16140. {
  16141. name: "Large",
  16142. height: math.unit(13, "feet")
  16143. },
  16144. ]
  16145. ))
  16146. characterMakers.push(() => makeCharacter(
  16147. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16148. {
  16149. front: {
  16150. height: math.unit(6, "feet"),
  16151. weight: math.unit(150, "lb"),
  16152. name: "Front",
  16153. image: {
  16154. source: "./media/characters/verin-raharra/front.svg",
  16155. extra: 5019 / 4835,
  16156. bottom: 0.023
  16157. }
  16158. },
  16159. },
  16160. [
  16161. {
  16162. name: "Normal",
  16163. height: math.unit(7 + 5 / 12, "feet"),
  16164. default: true
  16165. },
  16166. {
  16167. name: "Upsized",
  16168. height: math.unit(20, "feet")
  16169. },
  16170. ]
  16171. ))
  16172. characterMakers.push(() => makeCharacter(
  16173. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16174. {
  16175. front: {
  16176. height: math.unit(7, "feet"),
  16177. weight: math.unit(230, "lb"),
  16178. name: "Front",
  16179. image: {
  16180. source: "./media/characters/nakata/front.svg",
  16181. extra: 1.005,
  16182. bottom: 0.01
  16183. }
  16184. },
  16185. },
  16186. [
  16187. {
  16188. name: "Normal",
  16189. height: math.unit(7, "feet"),
  16190. default: true
  16191. },
  16192. {
  16193. name: "Big",
  16194. height: math.unit(14, "feet")
  16195. },
  16196. {
  16197. name: "Macro",
  16198. height: math.unit(400, "feet")
  16199. },
  16200. ]
  16201. ))
  16202. characterMakers.push(() => makeCharacter(
  16203. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16204. {
  16205. front: {
  16206. height: math.unit(4.91, "feet"),
  16207. weight: math.unit(100, "lb"),
  16208. name: "Front",
  16209. image: {
  16210. source: "./media/characters/lily/front.svg",
  16211. extra: 1585 / 1415,
  16212. bottom: 0.02
  16213. }
  16214. },
  16215. },
  16216. [
  16217. {
  16218. name: "Normal",
  16219. height: math.unit(4.91, "feet"),
  16220. default: true
  16221. },
  16222. ]
  16223. ))
  16224. characterMakers.push(() => makeCharacter(
  16225. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16226. {
  16227. laying: {
  16228. height: math.unit(4 + 4 / 12, "feet"),
  16229. weight: math.unit(600, "lb"),
  16230. name: "Laying",
  16231. image: {
  16232. source: "./media/characters/sheila/laying.svg",
  16233. extra: 1333 / 1265,
  16234. bottom: 0.16
  16235. }
  16236. },
  16237. },
  16238. [
  16239. {
  16240. name: "Normal",
  16241. height: math.unit(4 + 4 / 12, "feet"),
  16242. default: true
  16243. },
  16244. ]
  16245. ))
  16246. characterMakers.push(() => makeCharacter(
  16247. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16248. {
  16249. front: {
  16250. height: math.unit(6, "feet"),
  16251. weight: math.unit(190, "lb"),
  16252. name: "Front",
  16253. image: {
  16254. source: "./media/characters/sax/front.svg",
  16255. extra: 1187 / 973,
  16256. bottom: 0.042
  16257. }
  16258. },
  16259. },
  16260. [
  16261. {
  16262. name: "Micro",
  16263. height: math.unit(4, "inches"),
  16264. default: true
  16265. },
  16266. ]
  16267. ))
  16268. characterMakers.push(() => makeCharacter(
  16269. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16270. {
  16271. front: {
  16272. height: math.unit(6, "feet"),
  16273. weight: math.unit(150, "lb"),
  16274. name: "Front",
  16275. image: {
  16276. source: "./media/characters/pandora/front.svg",
  16277. extra: 2720 / 2556,
  16278. bottom: 0.015
  16279. }
  16280. },
  16281. back: {
  16282. height: math.unit(6, "feet"),
  16283. weight: math.unit(150, "lb"),
  16284. name: "Back",
  16285. image: {
  16286. source: "./media/characters/pandora/back.svg",
  16287. extra: 2720 / 2556,
  16288. bottom: 0.01
  16289. }
  16290. },
  16291. beans: {
  16292. height: math.unit(6 / 8, "feet"),
  16293. name: "Beans",
  16294. image: {
  16295. source: "./media/characters/pandora/beans.svg"
  16296. }
  16297. },
  16298. collar: {
  16299. height: math.unit(0.31, "feet"),
  16300. name: "Collar",
  16301. image: {
  16302. source: "./media/characters/pandora/collar.svg"
  16303. }
  16304. },
  16305. skirt: {
  16306. height: math.unit(6, "feet"),
  16307. weight: math.unit(150, "lb"),
  16308. name: "Skirt",
  16309. image: {
  16310. source: "./media/characters/pandora/skirt.svg",
  16311. extra: 1622 / 1525,
  16312. bottom: 0.015
  16313. }
  16314. },
  16315. hoodie: {
  16316. height: math.unit(6, "feet"),
  16317. weight: math.unit(150, "lb"),
  16318. name: "Hoodie",
  16319. image: {
  16320. source: "./media/characters/pandora/hoodie.svg",
  16321. extra: 1622 / 1525,
  16322. bottom: 0.015
  16323. }
  16324. },
  16325. casual: {
  16326. height: math.unit(6, "feet"),
  16327. weight: math.unit(150, "lb"),
  16328. name: "Casual",
  16329. image: {
  16330. source: "./media/characters/pandora/casual.svg",
  16331. extra: 1622 / 1525,
  16332. bottom: 0.015
  16333. }
  16334. },
  16335. },
  16336. [
  16337. {
  16338. name: "Normal",
  16339. height: math.unit(6, "feet")
  16340. },
  16341. {
  16342. name: "Big Steppy",
  16343. height: math.unit(1, "km"),
  16344. default: true
  16345. },
  16346. {
  16347. name: "Galactic Steppy",
  16348. height: math.unit(2, "gigameters")
  16349. },
  16350. ]
  16351. ))
  16352. characterMakers.push(() => makeCharacter(
  16353. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16354. {
  16355. side: {
  16356. height: math.unit(10, "feet"),
  16357. weight: math.unit(800, "kg"),
  16358. name: "Side",
  16359. image: {
  16360. source: "./media/characters/venio-darcony/side.svg",
  16361. extra: 1373 / 1003,
  16362. bottom: 0.037
  16363. }
  16364. },
  16365. front: {
  16366. height: math.unit(19, "feet"),
  16367. weight: math.unit(800, "kg"),
  16368. name: "Front",
  16369. image: {
  16370. source: "./media/characters/venio-darcony/front.svg"
  16371. }
  16372. },
  16373. back: {
  16374. height: math.unit(19, "feet"),
  16375. weight: math.unit(800, "kg"),
  16376. name: "Back",
  16377. image: {
  16378. source: "./media/characters/venio-darcony/back.svg"
  16379. }
  16380. },
  16381. sideNsfw: {
  16382. height: math.unit(10, "feet"),
  16383. weight: math.unit(800, "kg"),
  16384. name: "Side (NSFW)",
  16385. image: {
  16386. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16387. extra: 1373 / 1003,
  16388. bottom: 0.037
  16389. }
  16390. },
  16391. frontNsfw: {
  16392. height: math.unit(19, "feet"),
  16393. weight: math.unit(800, "kg"),
  16394. name: "Front (NSFW)",
  16395. image: {
  16396. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16397. }
  16398. },
  16399. backNsfw: {
  16400. height: math.unit(19, "feet"),
  16401. weight: math.unit(800, "kg"),
  16402. name: "Back (NSFW)",
  16403. image: {
  16404. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16405. }
  16406. },
  16407. sideArmored: {
  16408. height: math.unit(10, "feet"),
  16409. weight: math.unit(800, "kg"),
  16410. name: "Side (Armored)",
  16411. image: {
  16412. source: "./media/characters/venio-darcony/side-armored.svg",
  16413. extra: 1373 / 1003,
  16414. bottom: 0.037
  16415. }
  16416. },
  16417. frontArmored: {
  16418. height: math.unit(19, "feet"),
  16419. weight: math.unit(900, "kg"),
  16420. name: "Front (Armored)",
  16421. image: {
  16422. source: "./media/characters/venio-darcony/front-armored.svg"
  16423. }
  16424. },
  16425. backArmored: {
  16426. height: math.unit(19, "feet"),
  16427. weight: math.unit(900, "kg"),
  16428. name: "Back (Armored)",
  16429. image: {
  16430. source: "./media/characters/venio-darcony/back-armored.svg"
  16431. }
  16432. },
  16433. sword: {
  16434. height: math.unit(10, "feet"),
  16435. weight: math.unit(50, "lb"),
  16436. name: "Sword",
  16437. image: {
  16438. source: "./media/characters/venio-darcony/sword.svg"
  16439. }
  16440. },
  16441. },
  16442. [
  16443. {
  16444. name: "Normal",
  16445. height: math.unit(10, "feet")
  16446. },
  16447. {
  16448. name: "Macro",
  16449. height: math.unit(130, "feet"),
  16450. default: true
  16451. },
  16452. {
  16453. name: "Macro+",
  16454. height: math.unit(240, "feet")
  16455. },
  16456. ]
  16457. ))
  16458. characterMakers.push(() => makeCharacter(
  16459. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16460. {
  16461. front: {
  16462. height: math.unit(6, "feet"),
  16463. weight: math.unit(150, "lb"),
  16464. name: "Front",
  16465. image: {
  16466. source: "./media/characters/veski/front.svg",
  16467. extra: 1299 / 1225,
  16468. bottom: 0.04
  16469. }
  16470. },
  16471. back: {
  16472. height: math.unit(6, "feet"),
  16473. weight: math.unit(150, "lb"),
  16474. name: "Back",
  16475. image: {
  16476. source: "./media/characters/veski/back.svg",
  16477. extra: 1299 / 1225,
  16478. bottom: 0.008
  16479. }
  16480. },
  16481. maw: {
  16482. height: math.unit(1.5 * 1.21, "feet"),
  16483. name: "Maw",
  16484. image: {
  16485. source: "./media/characters/veski/maw.svg"
  16486. }
  16487. },
  16488. },
  16489. [
  16490. {
  16491. name: "Macro",
  16492. height: math.unit(2, "km"),
  16493. default: true
  16494. },
  16495. ]
  16496. ))
  16497. characterMakers.push(() => makeCharacter(
  16498. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16499. {
  16500. front: {
  16501. height: math.unit(5 + 7 / 12, "feet"),
  16502. name: "Front",
  16503. image: {
  16504. source: "./media/characters/isabelle/front.svg",
  16505. extra: 2130 / 1976,
  16506. bottom: 0.05
  16507. }
  16508. },
  16509. },
  16510. [
  16511. {
  16512. name: "Supermicro",
  16513. height: math.unit(10, "micrometers")
  16514. },
  16515. {
  16516. name: "Micro",
  16517. height: math.unit(1, "inch")
  16518. },
  16519. {
  16520. name: "Tiny",
  16521. height: math.unit(5, "inches")
  16522. },
  16523. {
  16524. name: "Standard",
  16525. height: math.unit(5 + 7 / 12, "inches")
  16526. },
  16527. {
  16528. name: "Macro",
  16529. height: math.unit(80, "meters"),
  16530. default: true
  16531. },
  16532. {
  16533. name: "Megamacro",
  16534. height: math.unit(250, "meters")
  16535. },
  16536. {
  16537. name: "Gigamacro",
  16538. height: math.unit(5, "km")
  16539. },
  16540. {
  16541. name: "Cosmic",
  16542. height: math.unit(2.5e6, "miles")
  16543. },
  16544. ]
  16545. ))
  16546. characterMakers.push(() => makeCharacter(
  16547. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16548. {
  16549. front: {
  16550. height: math.unit(6, "feet"),
  16551. weight: math.unit(150, "lb"),
  16552. name: "Front",
  16553. image: {
  16554. source: "./media/characters/hanzo/front.svg",
  16555. extra: 374 / 344,
  16556. bottom: 0.02
  16557. }
  16558. },
  16559. },
  16560. [
  16561. {
  16562. name: "Normal",
  16563. height: math.unit(8, "feet"),
  16564. default: true
  16565. },
  16566. ]
  16567. ))
  16568. characterMakers.push(() => makeCharacter(
  16569. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16570. {
  16571. front: {
  16572. height: math.unit(7, "feet"),
  16573. weight: math.unit(130, "lb"),
  16574. name: "Front",
  16575. image: {
  16576. source: "./media/characters/anna/front.svg",
  16577. extra: 169 / 145,
  16578. bottom: 0.06
  16579. }
  16580. },
  16581. full: {
  16582. height: math.unit(4.96, "feet"),
  16583. weight: math.unit(220, "lb"),
  16584. name: "Full",
  16585. image: {
  16586. source: "./media/characters/anna/full.svg",
  16587. extra: 138 / 114,
  16588. bottom: 0.15
  16589. }
  16590. },
  16591. tongue: {
  16592. height: math.unit(2.53, "feet"),
  16593. name: "Tongue",
  16594. image: {
  16595. source: "./media/characters/anna/tongue.svg"
  16596. }
  16597. },
  16598. },
  16599. [
  16600. {
  16601. name: "Normal",
  16602. height: math.unit(7, "feet"),
  16603. default: true
  16604. },
  16605. ]
  16606. ))
  16607. characterMakers.push(() => makeCharacter(
  16608. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16609. {
  16610. front: {
  16611. height: math.unit(7, "feet"),
  16612. weight: math.unit(150, "lb"),
  16613. name: "Front",
  16614. image: {
  16615. source: "./media/characters/ian-corvid/front.svg",
  16616. extra: 150 / 142,
  16617. bottom: 0.02
  16618. }
  16619. },
  16620. back: {
  16621. height: math.unit(7, "feet"),
  16622. weight: math.unit(150, "lb"),
  16623. name: "Back",
  16624. image: {
  16625. source: "./media/characters/ian-corvid/back.svg",
  16626. extra: 150 / 143,
  16627. bottom: 0.01
  16628. }
  16629. },
  16630. stomping: {
  16631. height: math.unit(7, "feet"),
  16632. weight: math.unit(150, "lb"),
  16633. name: "Stomping",
  16634. image: {
  16635. source: "./media/characters/ian-corvid/stomping.svg",
  16636. extra: 76 / 72
  16637. }
  16638. },
  16639. sitting: {
  16640. height: math.unit(7 / 1.8, "feet"),
  16641. weight: math.unit(150, "lb"),
  16642. name: "Sitting",
  16643. image: {
  16644. source: "./media/characters/ian-corvid/sitting.svg",
  16645. extra: 1400 / 1269,
  16646. bottom: 0.15
  16647. }
  16648. },
  16649. },
  16650. [
  16651. {
  16652. name: "Tiny Microw",
  16653. height: math.unit(1, "inch")
  16654. },
  16655. {
  16656. name: "Microw",
  16657. height: math.unit(6, "inches")
  16658. },
  16659. {
  16660. name: "Crow",
  16661. height: math.unit(7 + 1 / 12, "feet"),
  16662. default: true
  16663. },
  16664. {
  16665. name: "Macrow",
  16666. height: math.unit(176, "feet")
  16667. },
  16668. ]
  16669. ))
  16670. characterMakers.push(() => makeCharacter(
  16671. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16672. {
  16673. front: {
  16674. height: math.unit(5 + 7 / 12, "feet"),
  16675. weight: math.unit(147, "lb"),
  16676. name: "Front",
  16677. image: {
  16678. source: "./media/characters/natalie-kellon/front.svg",
  16679. extra: 1214 / 1141,
  16680. bottom: 0.02
  16681. }
  16682. },
  16683. },
  16684. [
  16685. {
  16686. name: "Micro",
  16687. height: math.unit(1 / 16, "inch")
  16688. },
  16689. {
  16690. name: "Tiny",
  16691. height: math.unit(4, "inches")
  16692. },
  16693. {
  16694. name: "Normal",
  16695. height: math.unit(5 + 7 / 12, "feet"),
  16696. default: true
  16697. },
  16698. {
  16699. name: "Amazon",
  16700. height: math.unit(12, "feet")
  16701. },
  16702. {
  16703. name: "Giantess",
  16704. height: math.unit(160, "meters")
  16705. },
  16706. {
  16707. name: "Titaness",
  16708. height: math.unit(800, "meters")
  16709. },
  16710. ]
  16711. ))
  16712. characterMakers.push(() => makeCharacter(
  16713. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16714. {
  16715. front: {
  16716. height: math.unit(6, "feet"),
  16717. weight: math.unit(150, "lb"),
  16718. name: "Front",
  16719. image: {
  16720. source: "./media/characters/alluria/front.svg",
  16721. extra: 806 / 738,
  16722. bottom: 0.01
  16723. }
  16724. },
  16725. side: {
  16726. height: math.unit(6, "feet"),
  16727. weight: math.unit(150, "lb"),
  16728. name: "Side",
  16729. image: {
  16730. source: "./media/characters/alluria/side.svg",
  16731. extra: 800 / 750,
  16732. }
  16733. },
  16734. back: {
  16735. height: math.unit(6, "feet"),
  16736. weight: math.unit(150, "lb"),
  16737. name: "Back",
  16738. image: {
  16739. source: "./media/characters/alluria/back.svg",
  16740. extra: 806 / 738,
  16741. }
  16742. },
  16743. frontMaid: {
  16744. height: math.unit(6, "feet"),
  16745. weight: math.unit(150, "lb"),
  16746. name: "Front (Maid)",
  16747. image: {
  16748. source: "./media/characters/alluria/front-maid.svg",
  16749. extra: 806 / 738,
  16750. bottom: 0.01
  16751. }
  16752. },
  16753. sideMaid: {
  16754. height: math.unit(6, "feet"),
  16755. weight: math.unit(150, "lb"),
  16756. name: "Side (Maid)",
  16757. image: {
  16758. source: "./media/characters/alluria/side-maid.svg",
  16759. extra: 800 / 750,
  16760. bottom: 0.005
  16761. }
  16762. },
  16763. backMaid: {
  16764. height: math.unit(6, "feet"),
  16765. weight: math.unit(150, "lb"),
  16766. name: "Back (Maid)",
  16767. image: {
  16768. source: "./media/characters/alluria/back-maid.svg",
  16769. extra: 806 / 738,
  16770. }
  16771. },
  16772. },
  16773. [
  16774. {
  16775. name: "Micro",
  16776. height: math.unit(6, "inches"),
  16777. default: true
  16778. },
  16779. ]
  16780. ))
  16781. characterMakers.push(() => makeCharacter(
  16782. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16783. {
  16784. front: {
  16785. height: math.unit(6, "feet"),
  16786. weight: math.unit(150, "lb"),
  16787. name: "Front",
  16788. image: {
  16789. source: "./media/characters/kyle/front.svg",
  16790. extra: 1069 / 962,
  16791. bottom: 77.228 / 1727.45
  16792. }
  16793. },
  16794. },
  16795. [
  16796. {
  16797. name: "Macro",
  16798. height: math.unit(150, "feet"),
  16799. default: true
  16800. },
  16801. ]
  16802. ))
  16803. characterMakers.push(() => makeCharacter(
  16804. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16805. {
  16806. front: {
  16807. height: math.unit(6, "feet"),
  16808. weight: math.unit(300, "lb"),
  16809. name: "Front",
  16810. image: {
  16811. source: "./media/characters/duncan/front.svg",
  16812. extra: 1650 / 1482,
  16813. bottom: 0.05
  16814. }
  16815. },
  16816. },
  16817. [
  16818. {
  16819. name: "Macro",
  16820. height: math.unit(100, "feet"),
  16821. default: true
  16822. },
  16823. ]
  16824. ))
  16825. characterMakers.push(() => makeCharacter(
  16826. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16827. {
  16828. front: {
  16829. height: math.unit(5 + 4 / 12, "feet"),
  16830. weight: math.unit(220, "lb"),
  16831. name: "Front",
  16832. image: {
  16833. source: "./media/characters/memory/front.svg",
  16834. extra: 3641 / 3545,
  16835. bottom: 0.03
  16836. }
  16837. },
  16838. back: {
  16839. height: math.unit(5 + 4 / 12, "feet"),
  16840. weight: math.unit(220, "lb"),
  16841. name: "Back",
  16842. image: {
  16843. source: "./media/characters/memory/back.svg",
  16844. extra: 3641 / 3545,
  16845. bottom: 0.025
  16846. }
  16847. },
  16848. frontSkirt: {
  16849. height: math.unit(5 + 4 / 12, "feet"),
  16850. weight: math.unit(220, "lb"),
  16851. name: "Front (Skirt)",
  16852. image: {
  16853. source: "./media/characters/memory/front-skirt.svg",
  16854. extra: 3641 / 3545,
  16855. bottom: 0.03
  16856. }
  16857. },
  16858. frontDress: {
  16859. height: math.unit(5 + 4 / 12, "feet"),
  16860. weight: math.unit(220, "lb"),
  16861. name: "Front (Dress)",
  16862. image: {
  16863. source: "./media/characters/memory/front-dress.svg",
  16864. extra: 3641 / 3545,
  16865. bottom: 0.03
  16866. }
  16867. },
  16868. },
  16869. [
  16870. {
  16871. name: "Micro",
  16872. height: math.unit(6, "inches"),
  16873. default: true
  16874. },
  16875. {
  16876. name: "Normal",
  16877. height: math.unit(5 + 4 / 12, "feet")
  16878. },
  16879. ]
  16880. ))
  16881. characterMakers.push(() => makeCharacter(
  16882. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16883. {
  16884. front: {
  16885. height: math.unit(4 + 11 / 12, "feet"),
  16886. weight: math.unit(100, "lb"),
  16887. name: "Front",
  16888. image: {
  16889. source: "./media/characters/luno/front.svg",
  16890. extra: 1535 / 1487,
  16891. bottom: 0.03
  16892. }
  16893. },
  16894. },
  16895. [
  16896. {
  16897. name: "Micro",
  16898. height: math.unit(3, "inches")
  16899. },
  16900. {
  16901. name: "Normal",
  16902. height: math.unit(4 + 11 / 12, "feet"),
  16903. default: true
  16904. },
  16905. {
  16906. name: "Macro",
  16907. height: math.unit(300, "feet")
  16908. },
  16909. {
  16910. name: "Megamacro",
  16911. height: math.unit(700, "miles")
  16912. },
  16913. ]
  16914. ))
  16915. characterMakers.push(() => makeCharacter(
  16916. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16917. {
  16918. front: {
  16919. height: math.unit(6 + 2 / 12, "feet"),
  16920. weight: math.unit(170, "lb"),
  16921. name: "Front",
  16922. image: {
  16923. source: "./media/characters/jamesy/front.svg",
  16924. extra: 440 / 382,
  16925. bottom: 0.005
  16926. }
  16927. },
  16928. },
  16929. [
  16930. {
  16931. name: "Micro",
  16932. height: math.unit(3, "inches")
  16933. },
  16934. {
  16935. name: "Normal",
  16936. height: math.unit(6 + 2 / 12, "feet"),
  16937. default: true
  16938. },
  16939. {
  16940. name: "Macro",
  16941. height: math.unit(300, "feet")
  16942. },
  16943. {
  16944. name: "Megamacro",
  16945. height: math.unit(700, "miles")
  16946. },
  16947. ]
  16948. ))
  16949. characterMakers.push(() => makeCharacter(
  16950. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16951. {
  16952. front: {
  16953. height: math.unit(6, "feet"),
  16954. weight: math.unit(160, "lb"),
  16955. name: "Front",
  16956. image: {
  16957. source: "./media/characters/mark/front.svg",
  16958. extra: 3300 / 3100,
  16959. bottom: 136.42 / 3440.47
  16960. }
  16961. },
  16962. },
  16963. [
  16964. {
  16965. name: "Macro",
  16966. height: math.unit(120, "meters")
  16967. },
  16968. {
  16969. name: "Bigger Macro",
  16970. height: math.unit(350, "meters")
  16971. },
  16972. {
  16973. name: "Megamacro",
  16974. height: math.unit(8, "km"),
  16975. default: true
  16976. },
  16977. {
  16978. name: "Continental",
  16979. height: math.unit(4550, "km")
  16980. },
  16981. {
  16982. name: "Planetary",
  16983. height: math.unit(65000, "km")
  16984. },
  16985. ]
  16986. ))
  16987. characterMakers.push(() => makeCharacter(
  16988. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16989. {
  16990. front: {
  16991. height: math.unit(6, "feet"),
  16992. weight: math.unit(400, "lb"),
  16993. name: "Front",
  16994. image: {
  16995. source: "./media/characters/mac/front.svg",
  16996. extra: 1048 / 987.7,
  16997. bottom: 60 / 1107.6,
  16998. }
  16999. },
  17000. },
  17001. [
  17002. {
  17003. name: "Macro",
  17004. height: math.unit(500, "feet"),
  17005. default: true
  17006. },
  17007. ]
  17008. ))
  17009. characterMakers.push(() => makeCharacter(
  17010. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17011. {
  17012. front: {
  17013. height: math.unit(5 + 2 / 12, "feet"),
  17014. weight: math.unit(190, "lb"),
  17015. name: "Front",
  17016. image: {
  17017. source: "./media/characters/bari/front.svg",
  17018. extra: 3156 / 2880,
  17019. bottom: 0.03
  17020. }
  17021. },
  17022. back: {
  17023. height: math.unit(5 + 2 / 12, "feet"),
  17024. weight: math.unit(190, "lb"),
  17025. name: "Back",
  17026. image: {
  17027. source: "./media/characters/bari/back.svg",
  17028. extra: 3260 / 2834,
  17029. bottom: 0.025
  17030. }
  17031. },
  17032. frontPlush: {
  17033. height: math.unit(5 + 2 / 12, "feet"),
  17034. weight: math.unit(190, "lb"),
  17035. name: "Front (Plush)",
  17036. image: {
  17037. source: "./media/characters/bari/front-plush.svg",
  17038. extra: 1112 / 1061,
  17039. bottom: 0.002
  17040. }
  17041. },
  17042. },
  17043. [
  17044. {
  17045. name: "Micro",
  17046. height: math.unit(3, "inches")
  17047. },
  17048. {
  17049. name: "Normal",
  17050. height: math.unit(5 + 2 / 12, "feet"),
  17051. default: true
  17052. },
  17053. {
  17054. name: "Macro",
  17055. height: math.unit(20, "feet")
  17056. },
  17057. ]
  17058. ))
  17059. characterMakers.push(() => makeCharacter(
  17060. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17061. {
  17062. front: {
  17063. height: math.unit(6 + 1 / 12, "feet"),
  17064. weight: math.unit(275, "lb"),
  17065. name: "Front",
  17066. image: {
  17067. source: "./media/characters/hunter-misha-raven/front.svg"
  17068. }
  17069. },
  17070. },
  17071. [
  17072. {
  17073. name: "Mortal",
  17074. height: math.unit(6 + 1 / 12, "feet")
  17075. },
  17076. {
  17077. name: "Divine",
  17078. height: math.unit(1.12134e34, "parsecs"),
  17079. default: true
  17080. },
  17081. ]
  17082. ))
  17083. characterMakers.push(() => makeCharacter(
  17084. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17085. {
  17086. front: {
  17087. height: math.unit(6 + 3 / 12, "feet"),
  17088. weight: math.unit(220, "lb"),
  17089. name: "Front",
  17090. image: {
  17091. source: "./media/characters/max-calore/front.svg",
  17092. extra: 1700 / 1648,
  17093. bottom: 0.01
  17094. }
  17095. },
  17096. back: {
  17097. height: math.unit(6 + 3 / 12, "feet"),
  17098. weight: math.unit(220, "lb"),
  17099. name: "Back",
  17100. image: {
  17101. source: "./media/characters/max-calore/back.svg",
  17102. extra: 1700 / 1648,
  17103. bottom: 0.01
  17104. }
  17105. },
  17106. },
  17107. [
  17108. {
  17109. name: "Normal",
  17110. height: math.unit(6 + 3 / 12, "feet"),
  17111. default: true
  17112. },
  17113. ]
  17114. ))
  17115. characterMakers.push(() => makeCharacter(
  17116. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17117. {
  17118. side: {
  17119. height: math.unit(2 + 8 / 12, "feet"),
  17120. weight: math.unit(99, "lb"),
  17121. name: "Side",
  17122. image: {
  17123. source: "./media/characters/aspen/side.svg",
  17124. extra: 152 / 138,
  17125. bottom: 0.032
  17126. }
  17127. },
  17128. },
  17129. [
  17130. {
  17131. name: "Normal",
  17132. height: math.unit(2 + 8 / 12, "feet"),
  17133. default: true
  17134. },
  17135. ]
  17136. ))
  17137. characterMakers.push(() => makeCharacter(
  17138. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17139. {
  17140. side: {
  17141. height: math.unit(3 + 2 / 12, "feet"),
  17142. weight: math.unit(224, "lb"),
  17143. name: "Side",
  17144. image: {
  17145. source: "./media/characters/sheila-feral-wolf/side.svg",
  17146. extra: 179 / 166,
  17147. bottom: 0.03
  17148. }
  17149. },
  17150. },
  17151. [
  17152. {
  17153. name: "Normal",
  17154. height: math.unit(3 + 2 / 12, "feet"),
  17155. default: true
  17156. },
  17157. ]
  17158. ))
  17159. characterMakers.push(() => makeCharacter(
  17160. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17161. {
  17162. side: {
  17163. height: math.unit(1 + 9 / 12, "feet"),
  17164. weight: math.unit(38, "lb"),
  17165. name: "Side",
  17166. image: {
  17167. source: "./media/characters/michelle/side.svg",
  17168. extra: 147 / 136.7,
  17169. bottom: 0.03
  17170. }
  17171. },
  17172. },
  17173. [
  17174. {
  17175. name: "Normal",
  17176. height: math.unit(1 + 9 / 12, "feet"),
  17177. default: true
  17178. },
  17179. ]
  17180. ))
  17181. characterMakers.push(() => makeCharacter(
  17182. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17183. {
  17184. front: {
  17185. height: math.unit(1.54, "feet"),
  17186. weight: math.unit(50, "lb"),
  17187. name: "Front",
  17188. image: {
  17189. source: "./media/characters/nino/front.svg"
  17190. }
  17191. },
  17192. },
  17193. [
  17194. {
  17195. name: "Normal",
  17196. height: math.unit(1.54, "feet"),
  17197. default: true
  17198. },
  17199. ]
  17200. ))
  17201. characterMakers.push(() => makeCharacter(
  17202. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17203. {
  17204. front: {
  17205. height: math.unit(1, "feet"),
  17206. weight: math.unit(16, "lb"),
  17207. name: "Front",
  17208. image: {
  17209. source: "./media/characters/viola/front.svg"
  17210. }
  17211. },
  17212. },
  17213. [
  17214. {
  17215. name: "Normal",
  17216. height: math.unit(1, "feet"),
  17217. default: true
  17218. },
  17219. ]
  17220. ))
  17221. characterMakers.push(() => makeCharacter(
  17222. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17223. {
  17224. front: {
  17225. height: math.unit(6 + 5 / 12, "feet"),
  17226. weight: math.unit(580, "lb"),
  17227. name: "Front",
  17228. image: {
  17229. source: "./media/characters/atlas/front.svg",
  17230. extra: 298.5 / 290,
  17231. bottom: 0.015
  17232. }
  17233. },
  17234. },
  17235. [
  17236. {
  17237. name: "Normal",
  17238. height: math.unit(6 + 5 / 12, "feet"),
  17239. default: true
  17240. },
  17241. ]
  17242. ))
  17243. characterMakers.push(() => makeCharacter(
  17244. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17245. {
  17246. side: {
  17247. height: math.unit(1 + 10 / 12, "feet"),
  17248. weight: math.unit(25, "lb"),
  17249. name: "Side",
  17250. image: {
  17251. source: "./media/characters/davy/side.svg",
  17252. extra: 200 / 170,
  17253. bottom: 0.01
  17254. }
  17255. },
  17256. },
  17257. [
  17258. {
  17259. name: "Normal",
  17260. height: math.unit(1 + 10 / 12, "feet"),
  17261. default: true
  17262. },
  17263. ]
  17264. ))
  17265. characterMakers.push(() => makeCharacter(
  17266. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17267. {
  17268. side: {
  17269. height: math.unit(4 + 8 / 12, "feet"),
  17270. weight: math.unit(166, "lb"),
  17271. name: "Side",
  17272. image: {
  17273. source: "./media/characters/fiona/side.svg",
  17274. extra: 232 / 220,
  17275. bottom: 0.03
  17276. }
  17277. },
  17278. },
  17279. [
  17280. {
  17281. name: "Normal",
  17282. height: math.unit(4 + 8 / 12, "feet"),
  17283. default: true
  17284. },
  17285. ]
  17286. ))
  17287. characterMakers.push(() => makeCharacter(
  17288. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17289. {
  17290. front: {
  17291. height: math.unit(3, "feet"),
  17292. weight: math.unit(100, "lb"),
  17293. name: "Front",
  17294. image: {
  17295. source: "./media/characters/lyla/front.svg",
  17296. bottom: 0.1
  17297. }
  17298. },
  17299. },
  17300. [
  17301. {
  17302. name: "Normal",
  17303. height: math.unit(3, "feet"),
  17304. default: true
  17305. },
  17306. ]
  17307. ))
  17308. characterMakers.push(() => makeCharacter(
  17309. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17310. {
  17311. side: {
  17312. height: math.unit(1.8, "feet"),
  17313. weight: math.unit(44, "lb"),
  17314. name: "Side",
  17315. image: {
  17316. source: "./media/characters/perseus/side.svg",
  17317. bottom: 0.21
  17318. }
  17319. },
  17320. },
  17321. [
  17322. {
  17323. name: "Normal",
  17324. height: math.unit(1.8, "feet"),
  17325. default: true
  17326. },
  17327. ]
  17328. ))
  17329. characterMakers.push(() => makeCharacter(
  17330. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17331. {
  17332. side: {
  17333. height: math.unit(4 + 2 / 12, "feet"),
  17334. weight: math.unit(20, "lb"),
  17335. name: "Side",
  17336. image: {
  17337. source: "./media/characters/remus/side.svg"
  17338. }
  17339. },
  17340. },
  17341. [
  17342. {
  17343. name: "Normal",
  17344. height: math.unit(4 + 2 / 12, "feet"),
  17345. default: true
  17346. },
  17347. ]
  17348. ))
  17349. characterMakers.push(() => makeCharacter(
  17350. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17351. {
  17352. front: {
  17353. height: math.unit(4 + 11 / 12, "feet"),
  17354. weight: math.unit(114, "lb"),
  17355. name: "Front",
  17356. image: {
  17357. source: "./media/characters/raf/front.svg",
  17358. extra: 1504/1339,
  17359. bottom: 26/1530
  17360. }
  17361. },
  17362. side: {
  17363. height: math.unit(4 + 11 / 12, "feet"),
  17364. weight: math.unit(114, "lb"),
  17365. name: "Side",
  17366. image: {
  17367. source: "./media/characters/raf/side.svg",
  17368. extra: 1466/1316,
  17369. bottom: 29/1495
  17370. }
  17371. },
  17372. },
  17373. [
  17374. {
  17375. name: "Micro",
  17376. height: math.unit(2, "inches")
  17377. },
  17378. {
  17379. name: "Normal",
  17380. height: math.unit(4 + 11 / 12, "feet"),
  17381. default: true
  17382. },
  17383. {
  17384. name: "Macro",
  17385. height: math.unit(70, "feet")
  17386. },
  17387. ]
  17388. ))
  17389. characterMakers.push(() => makeCharacter(
  17390. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17391. {
  17392. front: {
  17393. height: math.unit(1.5, "meters"),
  17394. weight: math.unit(68, "kg"),
  17395. name: "Front",
  17396. image: {
  17397. source: "./media/characters/liam-einarr/front.svg",
  17398. extra: 2822 / 2666
  17399. }
  17400. },
  17401. back: {
  17402. height: math.unit(1.5, "meters"),
  17403. weight: math.unit(68, "kg"),
  17404. name: "Back",
  17405. image: {
  17406. source: "./media/characters/liam-einarr/back.svg",
  17407. extra: 2822 / 2666,
  17408. bottom: 0.015
  17409. }
  17410. },
  17411. },
  17412. [
  17413. {
  17414. name: "Normal",
  17415. height: math.unit(1.5, "meters"),
  17416. default: true
  17417. },
  17418. {
  17419. name: "Macro",
  17420. height: math.unit(150, "meters")
  17421. },
  17422. {
  17423. name: "Megamacro",
  17424. height: math.unit(35, "km")
  17425. },
  17426. ]
  17427. ))
  17428. characterMakers.push(() => makeCharacter(
  17429. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17430. {
  17431. front: {
  17432. height: math.unit(6, "feet"),
  17433. weight: math.unit(75, "kg"),
  17434. name: "Front",
  17435. image: {
  17436. source: "./media/characters/linda/front.svg",
  17437. extra: 930 / 874,
  17438. bottom: 0.004
  17439. }
  17440. },
  17441. },
  17442. [
  17443. {
  17444. name: "Normal",
  17445. height: math.unit(6, "feet"),
  17446. default: true
  17447. },
  17448. ]
  17449. ))
  17450. characterMakers.push(() => makeCharacter(
  17451. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17452. {
  17453. front: {
  17454. height: math.unit(6 + 8 / 12, "feet"),
  17455. weight: math.unit(220, "lb"),
  17456. name: "Front",
  17457. image: {
  17458. source: "./media/characters/caylex/front.svg",
  17459. extra: 821 / 772,
  17460. bottom: 0.07
  17461. }
  17462. },
  17463. back: {
  17464. height: math.unit(6 + 8 / 12, "feet"),
  17465. weight: math.unit(220, "lb"),
  17466. name: "Back",
  17467. image: {
  17468. source: "./media/characters/caylex/back.svg",
  17469. extra: 821 / 772,
  17470. bottom: 0.022
  17471. }
  17472. },
  17473. hand: {
  17474. height: math.unit(1.25, "feet"),
  17475. name: "Hand",
  17476. image: {
  17477. source: "./media/characters/caylex/hand.svg"
  17478. }
  17479. },
  17480. foot: {
  17481. height: math.unit(1.6, "feet"),
  17482. name: "Foot",
  17483. image: {
  17484. source: "./media/characters/caylex/foot.svg"
  17485. }
  17486. },
  17487. armored: {
  17488. height: math.unit(6 + 8 / 12, "feet"),
  17489. weight: math.unit(250, "lb"),
  17490. name: "Armored",
  17491. image: {
  17492. source: "./media/characters/caylex/armored.svg",
  17493. extra: 1420 / 1310,
  17494. bottom: 0.045
  17495. }
  17496. },
  17497. },
  17498. [
  17499. {
  17500. name: "Normal",
  17501. height: math.unit(6 + 8 / 12, "feet"),
  17502. default: true
  17503. },
  17504. {
  17505. name: "Normal+",
  17506. height: math.unit(12, "feet")
  17507. },
  17508. ]
  17509. ))
  17510. characterMakers.push(() => makeCharacter(
  17511. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17512. {
  17513. front: {
  17514. height: math.unit(7 + 6 / 12, "feet"),
  17515. weight: math.unit(288, "lb"),
  17516. name: "Front",
  17517. image: {
  17518. source: "./media/characters/alana/front.svg",
  17519. extra: 679 / 653,
  17520. bottom: 22.5 / 701
  17521. }
  17522. },
  17523. },
  17524. [
  17525. {
  17526. name: "Normal",
  17527. height: math.unit(7 + 6 / 12, "feet")
  17528. },
  17529. {
  17530. name: "Large",
  17531. height: math.unit(50, "feet")
  17532. },
  17533. {
  17534. name: "Macro",
  17535. height: math.unit(100, "feet"),
  17536. default: true
  17537. },
  17538. {
  17539. name: "Macro+",
  17540. height: math.unit(200, "feet")
  17541. },
  17542. ]
  17543. ))
  17544. characterMakers.push(() => makeCharacter(
  17545. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17546. {
  17547. front: {
  17548. height: math.unit(6 + 1 / 12, "feet"),
  17549. weight: math.unit(210, "lb"),
  17550. name: "Front",
  17551. image: {
  17552. source: "./media/characters/hasani/front.svg",
  17553. extra: 244 / 232,
  17554. bottom: 0.01
  17555. }
  17556. },
  17557. back: {
  17558. height: math.unit(6 + 1 / 12, "feet"),
  17559. weight: math.unit(210, "lb"),
  17560. name: "Back",
  17561. image: {
  17562. source: "./media/characters/hasani/back.svg",
  17563. extra: 244 / 232,
  17564. bottom: 0.01
  17565. }
  17566. },
  17567. },
  17568. [
  17569. {
  17570. name: "Normal",
  17571. height: math.unit(6 + 1 / 12, "feet")
  17572. },
  17573. {
  17574. name: "Macro",
  17575. height: math.unit(175, "feet"),
  17576. default: true
  17577. },
  17578. ]
  17579. ))
  17580. characterMakers.push(() => makeCharacter(
  17581. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17582. {
  17583. front: {
  17584. height: math.unit(1.82, "meters"),
  17585. weight: math.unit(140, "lb"),
  17586. name: "Front",
  17587. image: {
  17588. source: "./media/characters/nita/front.svg",
  17589. extra: 2473 / 2363,
  17590. bottom: 0.01
  17591. }
  17592. },
  17593. },
  17594. [
  17595. {
  17596. name: "Normal",
  17597. height: math.unit(1.82, "m")
  17598. },
  17599. {
  17600. name: "Macro",
  17601. height: math.unit(300, "m")
  17602. },
  17603. {
  17604. name: "Mistake Canon",
  17605. height: math.unit(0.5, "miles"),
  17606. default: true
  17607. },
  17608. {
  17609. name: "Big Mistake",
  17610. height: math.unit(13, "miles")
  17611. },
  17612. {
  17613. name: "Playing God",
  17614. height: math.unit(2450, "miles")
  17615. },
  17616. ]
  17617. ))
  17618. characterMakers.push(() => makeCharacter(
  17619. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17620. {
  17621. front: {
  17622. height: math.unit(4, "feet"),
  17623. weight: math.unit(120, "lb"),
  17624. name: "Front",
  17625. image: {
  17626. source: "./media/characters/shiriko/front.svg",
  17627. extra: 970/934,
  17628. bottom: 5/975
  17629. }
  17630. },
  17631. },
  17632. [
  17633. {
  17634. name: "Normal",
  17635. height: math.unit(4, "feet"),
  17636. default: true
  17637. },
  17638. ]
  17639. ))
  17640. characterMakers.push(() => makeCharacter(
  17641. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17642. {
  17643. front: {
  17644. height: math.unit(6, "feet"),
  17645. name: "front",
  17646. image: {
  17647. source: "./media/characters/deja/front.svg",
  17648. extra: 926 / 840,
  17649. bottom: 0.07
  17650. }
  17651. },
  17652. },
  17653. [
  17654. {
  17655. name: "Planck Length",
  17656. height: math.unit(1.6e-35, "meters")
  17657. },
  17658. {
  17659. name: "Normal",
  17660. height: math.unit(30.48, "meters"),
  17661. default: true
  17662. },
  17663. {
  17664. name: "Universal",
  17665. height: math.unit(8.8e26, "meters")
  17666. },
  17667. ]
  17668. ))
  17669. characterMakers.push(() => makeCharacter(
  17670. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17671. {
  17672. side: {
  17673. height: math.unit(8, "feet"),
  17674. weight: math.unit(6300, "lb"),
  17675. name: "Side",
  17676. image: {
  17677. source: "./media/characters/anima/side.svg",
  17678. bottom: 0.035
  17679. }
  17680. },
  17681. },
  17682. [
  17683. {
  17684. name: "Normal",
  17685. height: math.unit(8, "feet"),
  17686. default: true
  17687. },
  17688. ]
  17689. ))
  17690. characterMakers.push(() => makeCharacter(
  17691. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17692. {
  17693. front: {
  17694. height: math.unit(8, "feet"),
  17695. weight: math.unit(350, "lb"),
  17696. name: "Front",
  17697. image: {
  17698. source: "./media/characters/bianca/front.svg",
  17699. extra: 234 / 225,
  17700. bottom: 0.03
  17701. }
  17702. },
  17703. },
  17704. [
  17705. {
  17706. name: "Normal",
  17707. height: math.unit(8, "feet"),
  17708. default: true
  17709. },
  17710. ]
  17711. ))
  17712. characterMakers.push(() => makeCharacter(
  17713. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17714. {
  17715. front: {
  17716. height: math.unit(6, "feet"),
  17717. weight: math.unit(150, "lb"),
  17718. name: "Front",
  17719. image: {
  17720. source: "./media/characters/adinia/front.svg",
  17721. extra: 1845 / 1672,
  17722. bottom: 0.02
  17723. }
  17724. },
  17725. back: {
  17726. height: math.unit(6, "feet"),
  17727. weight: math.unit(150, "lb"),
  17728. name: "Back",
  17729. image: {
  17730. source: "./media/characters/adinia/back.svg",
  17731. extra: 1845 / 1672,
  17732. bottom: 0.002
  17733. }
  17734. },
  17735. },
  17736. [
  17737. {
  17738. name: "Normal",
  17739. height: math.unit(11 + 5 / 12, "feet"),
  17740. default: true
  17741. },
  17742. ]
  17743. ))
  17744. characterMakers.push(() => makeCharacter(
  17745. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17746. {
  17747. front: {
  17748. height: math.unit(3, "meters"),
  17749. weight: math.unit(200, "kg"),
  17750. name: "Front",
  17751. image: {
  17752. source: "./media/characters/lykasa/front.svg",
  17753. extra: 1076 / 976,
  17754. bottom: 0.06
  17755. }
  17756. },
  17757. },
  17758. [
  17759. {
  17760. name: "Normal",
  17761. height: math.unit(3, "meters")
  17762. },
  17763. {
  17764. name: "Kaiju",
  17765. height: math.unit(120, "meters"),
  17766. default: true
  17767. },
  17768. {
  17769. name: "Mega Kaiju",
  17770. height: math.unit(240, "km")
  17771. },
  17772. {
  17773. name: "Giga Kaiju",
  17774. height: math.unit(400, "megameters")
  17775. },
  17776. {
  17777. name: "Tera Kaiju",
  17778. height: math.unit(800, "gigameters")
  17779. },
  17780. {
  17781. name: "Kaiju Dragon Goddess",
  17782. height: math.unit(26, "zettaparsecs")
  17783. },
  17784. ]
  17785. ))
  17786. characterMakers.push(() => makeCharacter(
  17787. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17788. {
  17789. side: {
  17790. height: math.unit(283 / 124 * 6, "feet"),
  17791. weight: math.unit(35000, "lb"),
  17792. name: "Side",
  17793. image: {
  17794. source: "./media/characters/malfaren/side.svg",
  17795. extra: 2500 / 1010,
  17796. bottom: 0.01
  17797. }
  17798. },
  17799. front: {
  17800. height: math.unit(22.36, "feet"),
  17801. weight: math.unit(35000, "lb"),
  17802. name: "Front",
  17803. image: {
  17804. source: "./media/characters/malfaren/front.svg",
  17805. extra: 1631 / 1476,
  17806. bottom: 0.01
  17807. }
  17808. },
  17809. maw: {
  17810. height: math.unit(6.9, "feet"),
  17811. name: "Maw",
  17812. image: {
  17813. source: "./media/characters/malfaren/maw.svg"
  17814. }
  17815. },
  17816. },
  17817. [
  17818. {
  17819. name: "Big",
  17820. height: math.unit(283 / 162 * 6, "feet"),
  17821. },
  17822. {
  17823. name: "Bigger",
  17824. height: math.unit(283 / 124 * 6, "feet")
  17825. },
  17826. {
  17827. name: "Massive",
  17828. height: math.unit(283 / 92 * 6, "feet"),
  17829. default: true
  17830. },
  17831. {
  17832. name: "👀💦",
  17833. height: math.unit(283 / 73 * 6, "feet"),
  17834. },
  17835. ]
  17836. ))
  17837. characterMakers.push(() => makeCharacter(
  17838. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17839. {
  17840. front: {
  17841. height: math.unit(1.7, "m"),
  17842. weight: math.unit(70, "kg"),
  17843. name: "Front",
  17844. image: {
  17845. source: "./media/characters/kernel/front.svg",
  17846. extra: 222 / 210,
  17847. bottom: 0.007
  17848. }
  17849. },
  17850. },
  17851. [
  17852. {
  17853. name: "Nano",
  17854. height: math.unit(17, "micrometers")
  17855. },
  17856. {
  17857. name: "Micro",
  17858. height: math.unit(1.7, "mm")
  17859. },
  17860. {
  17861. name: "Small",
  17862. height: math.unit(1.7, "cm")
  17863. },
  17864. {
  17865. name: "Normal",
  17866. height: math.unit(1.7, "m"),
  17867. default: true
  17868. },
  17869. ]
  17870. ))
  17871. characterMakers.push(() => makeCharacter(
  17872. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17873. {
  17874. front: {
  17875. height: math.unit(1.75, "meters"),
  17876. weight: math.unit(65, "kg"),
  17877. name: "Front",
  17878. image: {
  17879. source: "./media/characters/jayne-folest/front.svg",
  17880. extra: 2115 / 2007,
  17881. bottom: 0.02
  17882. }
  17883. },
  17884. back: {
  17885. height: math.unit(1.75, "meters"),
  17886. weight: math.unit(65, "kg"),
  17887. name: "Back",
  17888. image: {
  17889. source: "./media/characters/jayne-folest/back.svg",
  17890. extra: 2115 / 2007,
  17891. bottom: 0.005
  17892. }
  17893. },
  17894. frontClothed: {
  17895. height: math.unit(1.75, "meters"),
  17896. weight: math.unit(65, "kg"),
  17897. name: "Front (Clothed)",
  17898. image: {
  17899. source: "./media/characters/jayne-folest/front-clothed.svg",
  17900. extra: 2115 / 2007,
  17901. bottom: 0.035
  17902. }
  17903. },
  17904. hand: {
  17905. height: math.unit(1 / 1.260, "feet"),
  17906. name: "Hand",
  17907. image: {
  17908. source: "./media/characters/jayne-folest/hand.svg"
  17909. }
  17910. },
  17911. foot: {
  17912. height: math.unit(1 / 0.918, "feet"),
  17913. name: "Foot",
  17914. image: {
  17915. source: "./media/characters/jayne-folest/foot.svg"
  17916. }
  17917. },
  17918. },
  17919. [
  17920. {
  17921. name: "Micro",
  17922. height: math.unit(4, "cm")
  17923. },
  17924. {
  17925. name: "Normal",
  17926. height: math.unit(1.75, "meters")
  17927. },
  17928. {
  17929. name: "Macro",
  17930. height: math.unit(47.5, "meters"),
  17931. default: true
  17932. },
  17933. ]
  17934. ))
  17935. characterMakers.push(() => makeCharacter(
  17936. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17937. {
  17938. front: {
  17939. height: math.unit(180, "cm"),
  17940. weight: math.unit(70, "kg"),
  17941. name: "Front",
  17942. image: {
  17943. source: "./media/characters/algier/front.svg",
  17944. extra: 596 / 572,
  17945. bottom: 0.04
  17946. }
  17947. },
  17948. back: {
  17949. height: math.unit(180, "cm"),
  17950. weight: math.unit(70, "kg"),
  17951. name: "Back",
  17952. image: {
  17953. source: "./media/characters/algier/back.svg",
  17954. extra: 596 / 572,
  17955. bottom: 0.025
  17956. }
  17957. },
  17958. frontdressed: {
  17959. height: math.unit(180, "cm"),
  17960. weight: math.unit(150, "kg"),
  17961. name: "Front-dressed",
  17962. image: {
  17963. source: "./media/characters/algier/front-dressed.svg",
  17964. extra: 596 / 572,
  17965. bottom: 0.038
  17966. }
  17967. },
  17968. },
  17969. [
  17970. {
  17971. name: "Micro",
  17972. height: math.unit(5, "cm")
  17973. },
  17974. {
  17975. name: "Normal",
  17976. height: math.unit(180, "cm"),
  17977. default: true
  17978. },
  17979. {
  17980. name: "Macro",
  17981. height: math.unit(64, "m")
  17982. },
  17983. ]
  17984. ))
  17985. characterMakers.push(() => makeCharacter(
  17986. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17987. {
  17988. upright: {
  17989. height: math.unit(7, "feet"),
  17990. weight: math.unit(300, "lb"),
  17991. name: "Upright",
  17992. image: {
  17993. source: "./media/characters/pretzel/upright.svg",
  17994. extra: 534 / 522,
  17995. bottom: 0.065
  17996. }
  17997. },
  17998. sprawling: {
  17999. height: math.unit(3.75, "feet"),
  18000. weight: math.unit(300, "lb"),
  18001. name: "Sprawling",
  18002. image: {
  18003. source: "./media/characters/pretzel/sprawling.svg",
  18004. extra: 314 / 281,
  18005. bottom: 0.1
  18006. }
  18007. },
  18008. tongue: {
  18009. height: math.unit(2, "feet"),
  18010. name: "Tongue",
  18011. image: {
  18012. source: "./media/characters/pretzel/tongue.svg"
  18013. }
  18014. },
  18015. },
  18016. [
  18017. {
  18018. name: "Normal",
  18019. height: math.unit(7, "feet"),
  18020. default: true
  18021. },
  18022. {
  18023. name: "Oversized",
  18024. height: math.unit(15, "feet")
  18025. },
  18026. {
  18027. name: "Huge",
  18028. height: math.unit(30, "feet")
  18029. },
  18030. {
  18031. name: "Macro",
  18032. height: math.unit(250, "feet")
  18033. },
  18034. ]
  18035. ))
  18036. characterMakers.push(() => makeCharacter(
  18037. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18038. {
  18039. sideFront: {
  18040. height: math.unit(5 + 2 / 12, "feet"),
  18041. weight: math.unit(120, "lb"),
  18042. name: "Front Side",
  18043. image: {
  18044. source: "./media/characters/roxi/side-front.svg",
  18045. extra: 2924 / 2717,
  18046. bottom: 0.08
  18047. }
  18048. },
  18049. sideBack: {
  18050. height: math.unit(5 + 2 / 12, "feet"),
  18051. weight: math.unit(120, "lb"),
  18052. name: "Back Side",
  18053. image: {
  18054. source: "./media/characters/roxi/side-back.svg",
  18055. extra: 2904 / 2693,
  18056. bottom: 0.06
  18057. }
  18058. },
  18059. front: {
  18060. height: math.unit(5 + 2 / 12, "feet"),
  18061. weight: math.unit(120, "lb"),
  18062. name: "Front",
  18063. image: {
  18064. source: "./media/characters/roxi/front.svg",
  18065. extra: 2028 / 1907,
  18066. bottom: 0.01
  18067. }
  18068. },
  18069. frontAlt: {
  18070. height: math.unit(5 + 2 / 12, "feet"),
  18071. weight: math.unit(120, "lb"),
  18072. name: "Front (Alt)",
  18073. image: {
  18074. source: "./media/characters/roxi/front-alt.svg",
  18075. extra: 1828 / 1798,
  18076. bottom: 0.01
  18077. }
  18078. },
  18079. sitting: {
  18080. height: math.unit(2.8, "feet"),
  18081. weight: math.unit(120, "lb"),
  18082. name: "Sitting",
  18083. image: {
  18084. source: "./media/characters/roxi/sitting.svg",
  18085. extra: 2660 / 2462,
  18086. bottom: 0.1
  18087. }
  18088. },
  18089. },
  18090. [
  18091. {
  18092. name: "Normal",
  18093. height: math.unit(5 + 2 / 12, "feet"),
  18094. default: true
  18095. },
  18096. ]
  18097. ))
  18098. characterMakers.push(() => makeCharacter(
  18099. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18100. {
  18101. side: {
  18102. height: math.unit(55, "feet"),
  18103. weight: math.unit(153, "tons"),
  18104. name: "Side",
  18105. image: {
  18106. source: "./media/characters/shadow/side.svg",
  18107. extra: 701 / 628,
  18108. bottom: 0.02
  18109. }
  18110. },
  18111. flying: {
  18112. height: math.unit(145, "feet"),
  18113. weight: math.unit(153, "tons"),
  18114. name: "Flying",
  18115. image: {
  18116. source: "./media/characters/shadow/flying.svg"
  18117. }
  18118. },
  18119. },
  18120. [
  18121. {
  18122. name: "Normal",
  18123. height: math.unit(55, "feet"),
  18124. default: true
  18125. },
  18126. ]
  18127. ))
  18128. characterMakers.push(() => makeCharacter(
  18129. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18130. {
  18131. front: {
  18132. height: math.unit(6, "feet"),
  18133. weight: math.unit(200, "lb"),
  18134. name: "Front",
  18135. image: {
  18136. source: "./media/characters/marcie/front.svg",
  18137. extra: 960 / 876,
  18138. bottom: 58 / 1017.87
  18139. }
  18140. },
  18141. },
  18142. [
  18143. {
  18144. name: "Macro",
  18145. height: math.unit(1, "mile"),
  18146. default: true
  18147. },
  18148. ]
  18149. ))
  18150. characterMakers.push(() => makeCharacter(
  18151. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18152. {
  18153. front: {
  18154. height: math.unit(7, "feet"),
  18155. weight: math.unit(200, "lb"),
  18156. name: "Front",
  18157. image: {
  18158. source: "./media/characters/kachina/front.svg",
  18159. extra: 1290.68 / 1119,
  18160. bottom: 36.5 / 1327.18
  18161. }
  18162. },
  18163. },
  18164. [
  18165. {
  18166. name: "Normal",
  18167. height: math.unit(7, "feet"),
  18168. default: true
  18169. },
  18170. ]
  18171. ))
  18172. characterMakers.push(() => makeCharacter(
  18173. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18174. {
  18175. looking: {
  18176. height: math.unit(2, "meters"),
  18177. weight: math.unit(300, "kg"),
  18178. name: "Looking",
  18179. image: {
  18180. source: "./media/characters/kash/looking.svg",
  18181. extra: 474 / 344,
  18182. bottom: 0.03
  18183. }
  18184. },
  18185. side: {
  18186. height: math.unit(2, "meters"),
  18187. weight: math.unit(300, "kg"),
  18188. name: "Side",
  18189. image: {
  18190. source: "./media/characters/kash/side.svg",
  18191. extra: 302 / 251,
  18192. bottom: 0.03
  18193. }
  18194. },
  18195. front: {
  18196. height: math.unit(2, "meters"),
  18197. weight: math.unit(300, "kg"),
  18198. name: "Front",
  18199. image: {
  18200. source: "./media/characters/kash/front.svg",
  18201. extra: 495 / 360,
  18202. bottom: 0.015
  18203. }
  18204. },
  18205. },
  18206. [
  18207. {
  18208. name: "Normal",
  18209. height: math.unit(2, "meters"),
  18210. default: true
  18211. },
  18212. {
  18213. name: "Big",
  18214. height: math.unit(3, "meters")
  18215. },
  18216. {
  18217. name: "Large",
  18218. height: math.unit(5, "meters")
  18219. },
  18220. ]
  18221. ))
  18222. characterMakers.push(() => makeCharacter(
  18223. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18224. {
  18225. feeding: {
  18226. height: math.unit(6.7, "feet"),
  18227. weight: math.unit(350, "lb"),
  18228. name: "Feeding",
  18229. image: {
  18230. source: "./media/characters/lalim/feeding.svg",
  18231. }
  18232. },
  18233. },
  18234. [
  18235. {
  18236. name: "Normal",
  18237. height: math.unit(6.7, "feet"),
  18238. default: true
  18239. },
  18240. ]
  18241. ))
  18242. characterMakers.push(() => makeCharacter(
  18243. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18244. {
  18245. front: {
  18246. height: math.unit(9.5, "feet"),
  18247. weight: math.unit(600, "lb"),
  18248. name: "Front",
  18249. image: {
  18250. source: "./media/characters/de'vout/front.svg",
  18251. extra: 1443 / 1328,
  18252. bottom: 0.025
  18253. }
  18254. },
  18255. back: {
  18256. height: math.unit(9.5, "feet"),
  18257. weight: math.unit(600, "lb"),
  18258. name: "Back",
  18259. image: {
  18260. source: "./media/characters/de'vout/back.svg",
  18261. extra: 1443 / 1328
  18262. }
  18263. },
  18264. frontDressed: {
  18265. height: math.unit(9.5, "feet"),
  18266. weight: math.unit(600, "lb"),
  18267. name: "Front (Dressed",
  18268. image: {
  18269. source: "./media/characters/de'vout/front-dressed.svg",
  18270. extra: 1443 / 1328,
  18271. bottom: 0.025
  18272. }
  18273. },
  18274. backDressed: {
  18275. height: math.unit(9.5, "feet"),
  18276. weight: math.unit(600, "lb"),
  18277. name: "Back (Dressed",
  18278. image: {
  18279. source: "./media/characters/de'vout/back-dressed.svg",
  18280. extra: 1443 / 1328
  18281. }
  18282. },
  18283. },
  18284. [
  18285. {
  18286. name: "Normal",
  18287. height: math.unit(9.5, "feet"),
  18288. default: true
  18289. },
  18290. ]
  18291. ))
  18292. characterMakers.push(() => makeCharacter(
  18293. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18294. {
  18295. front: {
  18296. height: math.unit(8, "feet"),
  18297. weight: math.unit(225, "lb"),
  18298. name: "Front",
  18299. image: {
  18300. source: "./media/characters/talana/front.svg",
  18301. extra: 1410 / 1300,
  18302. bottom: 0.015
  18303. }
  18304. },
  18305. frontDressed: {
  18306. height: math.unit(8, "feet"),
  18307. weight: math.unit(225, "lb"),
  18308. name: "Front (Dressed",
  18309. image: {
  18310. source: "./media/characters/talana/front-dressed.svg",
  18311. extra: 1410 / 1300,
  18312. bottom: 0.015
  18313. }
  18314. },
  18315. },
  18316. [
  18317. {
  18318. name: "Normal",
  18319. height: math.unit(8, "feet"),
  18320. default: true
  18321. },
  18322. ]
  18323. ))
  18324. characterMakers.push(() => makeCharacter(
  18325. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18326. {
  18327. side: {
  18328. height: math.unit(7.2, "feet"),
  18329. weight: math.unit(150, "lb"),
  18330. name: "Side",
  18331. image: {
  18332. source: "./media/characters/xeauvok/side.svg",
  18333. extra: 1975 / 1523,
  18334. bottom: 0.07
  18335. }
  18336. },
  18337. },
  18338. [
  18339. {
  18340. name: "Normal",
  18341. height: math.unit(7.2, "feet"),
  18342. default: true
  18343. },
  18344. ]
  18345. ))
  18346. characterMakers.push(() => makeCharacter(
  18347. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18348. {
  18349. side: {
  18350. height: math.unit(10, "feet"),
  18351. weight: math.unit(900, "kg"),
  18352. name: "Side",
  18353. image: {
  18354. source: "./media/characters/zara/side.svg",
  18355. extra: 504 / 498
  18356. }
  18357. },
  18358. },
  18359. [
  18360. {
  18361. name: "Normal",
  18362. height: math.unit(10, "feet"),
  18363. default: true
  18364. },
  18365. ]
  18366. ))
  18367. characterMakers.push(() => makeCharacter(
  18368. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18369. {
  18370. side: {
  18371. height: math.unit(6, "feet"),
  18372. weight: math.unit(150, "lb"),
  18373. name: "Side",
  18374. image: {
  18375. source: "./media/characters/richard-dragon/side.svg",
  18376. extra: 845 / 340,
  18377. bottom: 0.017
  18378. }
  18379. },
  18380. maw: {
  18381. height: math.unit(2.97, "feet"),
  18382. name: "Maw",
  18383. image: {
  18384. source: "./media/characters/richard-dragon/maw.svg"
  18385. }
  18386. },
  18387. },
  18388. [
  18389. ]
  18390. ))
  18391. characterMakers.push(() => makeCharacter(
  18392. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18393. {
  18394. front: {
  18395. height: math.unit(4, "feet"),
  18396. weight: math.unit(100, "lb"),
  18397. name: "Front",
  18398. image: {
  18399. source: "./media/characters/richard-smeargle/front.svg",
  18400. extra: 2952 / 2820,
  18401. bottom: 0.028
  18402. }
  18403. },
  18404. },
  18405. [
  18406. {
  18407. name: "Normal",
  18408. height: math.unit(4, "feet"),
  18409. default: true
  18410. },
  18411. {
  18412. name: "Dynamax",
  18413. height: math.unit(20, "meters")
  18414. },
  18415. ]
  18416. ))
  18417. characterMakers.push(() => makeCharacter(
  18418. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18419. {
  18420. front: {
  18421. height: math.unit(6, "feet"),
  18422. weight: math.unit(110, "lb"),
  18423. name: "Front",
  18424. image: {
  18425. source: "./media/characters/klay/front.svg",
  18426. extra: 962 / 883,
  18427. bottom: 0.04
  18428. }
  18429. },
  18430. back: {
  18431. height: math.unit(6, "feet"),
  18432. weight: math.unit(110, "lb"),
  18433. name: "Back",
  18434. image: {
  18435. source: "./media/characters/klay/back.svg",
  18436. extra: 962 / 883
  18437. }
  18438. },
  18439. beans: {
  18440. height: math.unit(1.15, "feet"),
  18441. name: "Beans",
  18442. image: {
  18443. source: "./media/characters/klay/beans.svg"
  18444. }
  18445. },
  18446. },
  18447. [
  18448. {
  18449. name: "Micro",
  18450. height: math.unit(6, "inches")
  18451. },
  18452. {
  18453. name: "Mini",
  18454. height: math.unit(3, "feet")
  18455. },
  18456. {
  18457. name: "Normal",
  18458. height: math.unit(6, "feet"),
  18459. default: true
  18460. },
  18461. {
  18462. name: "Big",
  18463. height: math.unit(25, "feet")
  18464. },
  18465. {
  18466. name: "Macro",
  18467. height: math.unit(100, "feet")
  18468. },
  18469. {
  18470. name: "Megamacro",
  18471. height: math.unit(400, "feet")
  18472. },
  18473. ]
  18474. ))
  18475. characterMakers.push(() => makeCharacter(
  18476. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18477. {
  18478. front: {
  18479. height: math.unit(6, "feet"),
  18480. weight: math.unit(160, "lb"),
  18481. name: "Front",
  18482. image: {
  18483. source: "./media/characters/marcus/front.svg",
  18484. extra: 734 / 676,
  18485. bottom: 0.03
  18486. }
  18487. },
  18488. },
  18489. [
  18490. {
  18491. name: "Little",
  18492. height: math.unit(6, "feet")
  18493. },
  18494. {
  18495. name: "Normal",
  18496. height: math.unit(110, "feet"),
  18497. default: true
  18498. },
  18499. {
  18500. name: "Macro",
  18501. height: math.unit(250, "feet")
  18502. },
  18503. {
  18504. name: "Megamacro",
  18505. height: math.unit(1000, "feet")
  18506. },
  18507. ]
  18508. ))
  18509. characterMakers.push(() => makeCharacter(
  18510. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18511. {
  18512. front: {
  18513. height: math.unit(7, "feet"),
  18514. weight: math.unit(275, "lb"),
  18515. name: "Front",
  18516. image: {
  18517. source: "./media/characters/claude-delroute/front.svg",
  18518. extra: 902/827,
  18519. bottom: 26/928
  18520. }
  18521. },
  18522. side: {
  18523. height: math.unit(7, "feet"),
  18524. weight: math.unit(275, "lb"),
  18525. name: "Side",
  18526. image: {
  18527. source: "./media/characters/claude-delroute/side.svg",
  18528. extra: 908/853,
  18529. bottom: 16/924
  18530. }
  18531. },
  18532. back: {
  18533. height: math.unit(7, "feet"),
  18534. weight: math.unit(275, "lb"),
  18535. name: "Back",
  18536. image: {
  18537. source: "./media/characters/claude-delroute/back.svg",
  18538. extra: 911/829,
  18539. bottom: 18/929
  18540. }
  18541. },
  18542. maw: {
  18543. height: math.unit(0.6407, "meters"),
  18544. name: "Maw",
  18545. image: {
  18546. source: "./media/characters/claude-delroute/maw.svg"
  18547. }
  18548. },
  18549. },
  18550. [
  18551. {
  18552. name: "Normal",
  18553. height: math.unit(7, "feet"),
  18554. default: true
  18555. },
  18556. {
  18557. name: "Lorge",
  18558. height: math.unit(20, "feet")
  18559. },
  18560. ]
  18561. ))
  18562. characterMakers.push(() => makeCharacter(
  18563. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18564. {
  18565. front: {
  18566. height: math.unit(8 + 4 / 12, "feet"),
  18567. weight: math.unit(600, "lb"),
  18568. name: "Front",
  18569. image: {
  18570. source: "./media/characters/dragonien/front.svg",
  18571. extra: 100 / 94,
  18572. bottom: 3.3 / 103.3445
  18573. }
  18574. },
  18575. back: {
  18576. height: math.unit(8 + 4 / 12, "feet"),
  18577. weight: math.unit(600, "lb"),
  18578. name: "Back",
  18579. image: {
  18580. source: "./media/characters/dragonien/back.svg",
  18581. extra: 776 / 746,
  18582. bottom: 6.4 / 782.0616
  18583. }
  18584. },
  18585. foot: {
  18586. height: math.unit(1.54, "feet"),
  18587. name: "Foot",
  18588. image: {
  18589. source: "./media/characters/dragonien/foot.svg",
  18590. }
  18591. },
  18592. },
  18593. [
  18594. {
  18595. name: "Normal",
  18596. height: math.unit(8 + 4 / 12, "feet"),
  18597. default: true
  18598. },
  18599. {
  18600. name: "Macro",
  18601. height: math.unit(200, "feet")
  18602. },
  18603. {
  18604. name: "Megamacro",
  18605. height: math.unit(1, "mile")
  18606. },
  18607. {
  18608. name: "Gigamacro",
  18609. height: math.unit(1000, "miles")
  18610. },
  18611. ]
  18612. ))
  18613. characterMakers.push(() => makeCharacter(
  18614. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18615. {
  18616. front: {
  18617. height: math.unit(5 + 2 / 12, "feet"),
  18618. weight: math.unit(110, "lb"),
  18619. name: "Front",
  18620. image: {
  18621. source: "./media/characters/desta/front.svg",
  18622. extra: 767 / 726,
  18623. bottom: 11.7 / 779
  18624. }
  18625. },
  18626. back: {
  18627. height: math.unit(5 + 2 / 12, "feet"),
  18628. weight: math.unit(110, "lb"),
  18629. name: "Back",
  18630. image: {
  18631. source: "./media/characters/desta/back.svg",
  18632. extra: 777 / 728,
  18633. bottom: 6 / 784
  18634. }
  18635. },
  18636. frontAlt: {
  18637. height: math.unit(5 + 2 / 12, "feet"),
  18638. weight: math.unit(110, "lb"),
  18639. name: "Front",
  18640. image: {
  18641. source: "./media/characters/desta/front-alt.svg",
  18642. extra: 1482 / 1417
  18643. }
  18644. },
  18645. side: {
  18646. height: math.unit(5 + 2 / 12, "feet"),
  18647. weight: math.unit(110, "lb"),
  18648. name: "Side",
  18649. image: {
  18650. source: "./media/characters/desta/side.svg",
  18651. extra: 2579 / 2491,
  18652. bottom: 0.053
  18653. }
  18654. },
  18655. },
  18656. [
  18657. {
  18658. name: "Micro",
  18659. height: math.unit(6, "inches")
  18660. },
  18661. {
  18662. name: "Normal",
  18663. height: math.unit(5 + 2 / 12, "feet"),
  18664. default: true
  18665. },
  18666. {
  18667. name: "Macro",
  18668. height: math.unit(62, "feet")
  18669. },
  18670. {
  18671. name: "Megamacro",
  18672. height: math.unit(1800, "feet")
  18673. },
  18674. ]
  18675. ))
  18676. characterMakers.push(() => makeCharacter(
  18677. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18678. {
  18679. front: {
  18680. height: math.unit(10, "feet"),
  18681. weight: math.unit(700, "lb"),
  18682. name: "Front",
  18683. image: {
  18684. source: "./media/characters/storm-alystar/front.svg",
  18685. extra: 2112 / 1898,
  18686. bottom: 0.034
  18687. }
  18688. },
  18689. },
  18690. [
  18691. {
  18692. name: "Micro",
  18693. height: math.unit(3.5, "inches")
  18694. },
  18695. {
  18696. name: "Normal",
  18697. height: math.unit(10, "feet"),
  18698. default: true
  18699. },
  18700. {
  18701. name: "Macro",
  18702. height: math.unit(400, "feet")
  18703. },
  18704. {
  18705. name: "Deific",
  18706. height: math.unit(60, "miles")
  18707. },
  18708. ]
  18709. ))
  18710. characterMakers.push(() => makeCharacter(
  18711. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18712. {
  18713. front: {
  18714. height: math.unit(2.35, "meters"),
  18715. weight: math.unit(119, "kg"),
  18716. name: "Front",
  18717. image: {
  18718. source: "./media/characters/ilia/front.svg",
  18719. extra: 1285 / 1255,
  18720. bottom: 0.06
  18721. }
  18722. },
  18723. },
  18724. [
  18725. {
  18726. name: "Normal",
  18727. height: math.unit(2.35, "meters")
  18728. },
  18729. {
  18730. name: "Macro",
  18731. height: math.unit(140, "meters"),
  18732. default: true
  18733. },
  18734. {
  18735. name: "Megamacro",
  18736. height: math.unit(100, "miles")
  18737. },
  18738. ]
  18739. ))
  18740. characterMakers.push(() => makeCharacter(
  18741. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18742. {
  18743. front: {
  18744. height: math.unit(6 + 5 / 12, "feet"),
  18745. weight: math.unit(190, "lb"),
  18746. name: "Front",
  18747. image: {
  18748. source: "./media/characters/kingdead/front.svg",
  18749. extra: 1228 / 1177
  18750. }
  18751. },
  18752. },
  18753. [
  18754. {
  18755. name: "Micro",
  18756. height: math.unit(7, "inches")
  18757. },
  18758. {
  18759. name: "Normal",
  18760. height: math.unit(6 + 5 / 12, "feet")
  18761. },
  18762. {
  18763. name: "Macro",
  18764. height: math.unit(150, "feet"),
  18765. default: true
  18766. },
  18767. {
  18768. name: "Megamacro",
  18769. height: math.unit(200, "miles")
  18770. },
  18771. ]
  18772. ))
  18773. characterMakers.push(() => makeCharacter(
  18774. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18775. {
  18776. front: {
  18777. height: math.unit(8, "feet"),
  18778. weight: math.unit(600, "lb"),
  18779. name: "Front",
  18780. image: {
  18781. source: "./media/characters/kyrehx/front.svg",
  18782. extra: 1195 / 1095,
  18783. bottom: 0.034
  18784. }
  18785. },
  18786. },
  18787. [
  18788. {
  18789. name: "Micro",
  18790. height: math.unit(2, "inches")
  18791. },
  18792. {
  18793. name: "Normal",
  18794. height: math.unit(8, "feet"),
  18795. default: true
  18796. },
  18797. {
  18798. name: "Macro",
  18799. height: math.unit(255, "feet")
  18800. },
  18801. ]
  18802. ))
  18803. characterMakers.push(() => makeCharacter(
  18804. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18805. {
  18806. front: {
  18807. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18808. weight: math.unit(184, "lb"),
  18809. name: "Front",
  18810. image: {
  18811. source: "./media/characters/xang/front.svg",
  18812. extra: 845 / 755
  18813. }
  18814. },
  18815. },
  18816. [
  18817. {
  18818. name: "Normal",
  18819. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18820. default: true
  18821. },
  18822. {
  18823. name: "Macro",
  18824. height: math.unit(0.935 * 146, "feet")
  18825. },
  18826. {
  18827. name: "Megamacro",
  18828. height: math.unit(0.935 * 3, "miles")
  18829. },
  18830. ]
  18831. ))
  18832. characterMakers.push(() => makeCharacter(
  18833. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18834. {
  18835. frontDressed: {
  18836. height: math.unit(5 + 7 / 12, "feet"),
  18837. weight: math.unit(140, "lb"),
  18838. name: "Front (Dressed)",
  18839. image: {
  18840. source: "./media/characters/doc-weardno/front-dressed.svg",
  18841. extra: 263 / 234
  18842. }
  18843. },
  18844. backDressed: {
  18845. height: math.unit(5 + 7 / 12, "feet"),
  18846. weight: math.unit(140, "lb"),
  18847. name: "Back (Dressed)",
  18848. image: {
  18849. source: "./media/characters/doc-weardno/back-dressed.svg",
  18850. extra: 266 / 238
  18851. }
  18852. },
  18853. front: {
  18854. height: math.unit(5 + 7 / 12, "feet"),
  18855. weight: math.unit(140, "lb"),
  18856. name: "Front",
  18857. image: {
  18858. source: "./media/characters/doc-weardno/front.svg",
  18859. extra: 254 / 233
  18860. }
  18861. },
  18862. },
  18863. [
  18864. {
  18865. name: "Micro",
  18866. height: math.unit(3, "inches")
  18867. },
  18868. {
  18869. name: "Normal",
  18870. height: math.unit(5 + 7 / 12, "feet"),
  18871. default: true
  18872. },
  18873. {
  18874. name: "Macro",
  18875. height: math.unit(25, "feet")
  18876. },
  18877. {
  18878. name: "Megamacro",
  18879. height: math.unit(2, "miles")
  18880. },
  18881. ]
  18882. ))
  18883. characterMakers.push(() => makeCharacter(
  18884. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18885. {
  18886. front: {
  18887. height: math.unit(6 + 2 / 12, "feet"),
  18888. weight: math.unit(153, "lb"),
  18889. name: "Front",
  18890. image: {
  18891. source: "./media/characters/seth-whilst/front.svg",
  18892. bottom: 0.07
  18893. }
  18894. },
  18895. },
  18896. [
  18897. {
  18898. name: "Micro",
  18899. height: math.unit(5, "inches")
  18900. },
  18901. {
  18902. name: "Normal",
  18903. height: math.unit(6 + 2 / 12, "feet"),
  18904. default: true
  18905. },
  18906. ]
  18907. ))
  18908. characterMakers.push(() => makeCharacter(
  18909. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18910. {
  18911. front: {
  18912. height: math.unit(3, "inches"),
  18913. weight: math.unit(8, "grams"),
  18914. name: "Front",
  18915. image: {
  18916. source: "./media/characters/pocket-jabari/front.svg",
  18917. extra: 1024 / 974,
  18918. bottom: 0.039
  18919. }
  18920. },
  18921. },
  18922. [
  18923. {
  18924. name: "Minimicro",
  18925. height: math.unit(8, "mm")
  18926. },
  18927. {
  18928. name: "Micro",
  18929. height: math.unit(3, "inches"),
  18930. default: true
  18931. },
  18932. {
  18933. name: "Normal",
  18934. height: math.unit(3, "feet")
  18935. },
  18936. ]
  18937. ))
  18938. characterMakers.push(() => makeCharacter(
  18939. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18940. {
  18941. front: {
  18942. height: math.unit(15, "feet"),
  18943. weight: math.unit(3280, "lb"),
  18944. name: "Front",
  18945. image: {
  18946. source: "./media/characters/sapphy/front.svg",
  18947. extra: 671 / 577,
  18948. bottom: 0.085
  18949. }
  18950. },
  18951. back: {
  18952. height: math.unit(15, "feet"),
  18953. weight: math.unit(3280, "lb"),
  18954. name: "Back",
  18955. image: {
  18956. source: "./media/characters/sapphy/back.svg",
  18957. extra: 631 / 607,
  18958. bottom: 0.045
  18959. }
  18960. },
  18961. },
  18962. [
  18963. {
  18964. name: "Normal",
  18965. height: math.unit(15, "feet")
  18966. },
  18967. {
  18968. name: "Casual Macro",
  18969. height: math.unit(120, "feet")
  18970. },
  18971. {
  18972. name: "Macro",
  18973. height: math.unit(2150, "feet"),
  18974. default: true
  18975. },
  18976. {
  18977. name: "Megamacro",
  18978. height: math.unit(8, "miles")
  18979. },
  18980. {
  18981. name: "Galaxy Mom",
  18982. height: math.unit(6, "megalightyears")
  18983. },
  18984. ]
  18985. ))
  18986. characterMakers.push(() => makeCharacter(
  18987. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18988. {
  18989. front: {
  18990. height: math.unit(6, "feet"),
  18991. weight: math.unit(170, "lb"),
  18992. name: "Front",
  18993. image: {
  18994. source: "./media/characters/kiro/front.svg",
  18995. extra: 1064 / 1012,
  18996. bottom: 0.052
  18997. }
  18998. },
  18999. },
  19000. [
  19001. {
  19002. name: "Micro",
  19003. height: math.unit(6, "inches")
  19004. },
  19005. {
  19006. name: "Normal",
  19007. height: math.unit(6, "feet"),
  19008. default: true
  19009. },
  19010. {
  19011. name: "Macro",
  19012. height: math.unit(72, "feet")
  19013. },
  19014. ]
  19015. ))
  19016. characterMakers.push(() => makeCharacter(
  19017. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19018. {
  19019. front: {
  19020. height: math.unit(5 + 9 / 12, "feet"),
  19021. weight: math.unit(175, "lb"),
  19022. name: "Front",
  19023. image: {
  19024. source: "./media/characters/irishfox/front.svg",
  19025. extra: 1912 / 1680,
  19026. bottom: 0.02
  19027. }
  19028. },
  19029. },
  19030. [
  19031. {
  19032. name: "Nano",
  19033. height: math.unit(1, "mm")
  19034. },
  19035. {
  19036. name: "Micro",
  19037. height: math.unit(2, "inches")
  19038. },
  19039. {
  19040. name: "Normal",
  19041. height: math.unit(5 + 9 / 12, "feet"),
  19042. default: true
  19043. },
  19044. {
  19045. name: "Macro",
  19046. height: math.unit(45, "feet")
  19047. },
  19048. ]
  19049. ))
  19050. characterMakers.push(() => makeCharacter(
  19051. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19052. {
  19053. front: {
  19054. height: math.unit(6 + 1 / 12, "feet"),
  19055. weight: math.unit(75, "lb"),
  19056. name: "Front",
  19057. image: {
  19058. source: "./media/characters/aronai-sieyes/front.svg",
  19059. extra: 1532/1450,
  19060. bottom: 42/1574
  19061. }
  19062. },
  19063. side: {
  19064. height: math.unit(6 + 1 / 12, "feet"),
  19065. weight: math.unit(75, "lb"),
  19066. name: "Side",
  19067. image: {
  19068. source: "./media/characters/aronai-sieyes/side.svg",
  19069. extra: 1422/1365,
  19070. bottom: 148/1570
  19071. }
  19072. },
  19073. back: {
  19074. height: math.unit(6 + 1 / 12, "feet"),
  19075. weight: math.unit(75, "lb"),
  19076. name: "Back",
  19077. image: {
  19078. source: "./media/characters/aronai-sieyes/back.svg",
  19079. extra: 1526/1464,
  19080. bottom: 51/1577
  19081. }
  19082. },
  19083. dressed: {
  19084. height: math.unit(6 + 1 / 12, "feet"),
  19085. weight: math.unit(75, "lb"),
  19086. name: "Dressed",
  19087. image: {
  19088. source: "./media/characters/aronai-sieyes/dressed.svg",
  19089. extra: 1559/1483,
  19090. bottom: 39/1598
  19091. }
  19092. },
  19093. slit: {
  19094. height: math.unit(1.3, "feet"),
  19095. name: "Slit",
  19096. image: {
  19097. source: "./media/characters/aronai-sieyes/slit.svg"
  19098. }
  19099. },
  19100. slitSpread: {
  19101. height: math.unit(0.9, "feet"),
  19102. name: "Slit (Spread)",
  19103. image: {
  19104. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19105. }
  19106. },
  19107. rump: {
  19108. height: math.unit(1.3, "feet"),
  19109. name: "Rump",
  19110. image: {
  19111. source: "./media/characters/aronai-sieyes/rump.svg"
  19112. }
  19113. },
  19114. maw: {
  19115. height: math.unit(1.25, "feet"),
  19116. name: "Maw",
  19117. image: {
  19118. source: "./media/characters/aronai-sieyes/maw.svg"
  19119. }
  19120. },
  19121. feral: {
  19122. height: math.unit(18, "feet"),
  19123. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19124. name: "Feral",
  19125. image: {
  19126. source: "./media/characters/aronai-sieyes/feral.svg",
  19127. extra: 1530 / 1240,
  19128. bottom: 0.035
  19129. }
  19130. },
  19131. },
  19132. [
  19133. {
  19134. name: "Micro",
  19135. height: math.unit(2, "inches")
  19136. },
  19137. {
  19138. name: "Normal",
  19139. height: math.unit(6 + 1 / 12, "feet"),
  19140. default: true
  19141. }
  19142. ]
  19143. ))
  19144. characterMakers.push(() => makeCharacter(
  19145. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19146. {
  19147. front: {
  19148. height: math.unit(12, "feet"),
  19149. weight: math.unit(410, "kg"),
  19150. name: "Front",
  19151. image: {
  19152. source: "./media/characters/xuna/front.svg",
  19153. extra: 2184 / 1980
  19154. }
  19155. },
  19156. side: {
  19157. height: math.unit(12, "feet"),
  19158. weight: math.unit(410, "kg"),
  19159. name: "Side",
  19160. image: {
  19161. source: "./media/characters/xuna/side.svg",
  19162. extra: 2184 / 1980
  19163. }
  19164. },
  19165. back: {
  19166. height: math.unit(12, "feet"),
  19167. weight: math.unit(410, "kg"),
  19168. name: "Back",
  19169. image: {
  19170. source: "./media/characters/xuna/back.svg",
  19171. extra: 2184 / 1980
  19172. }
  19173. },
  19174. },
  19175. [
  19176. {
  19177. name: "Nano glow",
  19178. height: math.unit(10, "nm")
  19179. },
  19180. {
  19181. name: "Micro floof",
  19182. height: math.unit(0.3, "m")
  19183. },
  19184. {
  19185. name: "Huggable softy boi",
  19186. height: math.unit(3.6576, "m"),
  19187. default: true
  19188. },
  19189. {
  19190. name: "Admirable floof",
  19191. height: math.unit(80, "meters")
  19192. },
  19193. {
  19194. name: "Gentle macro",
  19195. height: math.unit(300, "meters")
  19196. },
  19197. {
  19198. name: "Very careful floof",
  19199. height: math.unit(3200, "meters")
  19200. },
  19201. {
  19202. name: "The mega floof",
  19203. height: math.unit(36000, "meters")
  19204. },
  19205. {
  19206. name: "Giga-fur-Wicker",
  19207. height: math.unit(4800000, "meters")
  19208. },
  19209. {
  19210. name: "Licky world",
  19211. height: math.unit(20000000, "meters")
  19212. },
  19213. {
  19214. name: "Floofy cyan sun",
  19215. height: math.unit(1500000000, "meters")
  19216. },
  19217. {
  19218. name: "Milky Wicker",
  19219. height: math.unit(1000000000000000000000, "meters")
  19220. },
  19221. {
  19222. name: "The observing Wicker",
  19223. height: math.unit(999999999999999999999999999, "meters")
  19224. },
  19225. ]
  19226. ))
  19227. characterMakers.push(() => makeCharacter(
  19228. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19229. {
  19230. front: {
  19231. height: math.unit(5 + 9 / 12, "feet"),
  19232. weight: math.unit(150, "lb"),
  19233. name: "Front",
  19234. image: {
  19235. source: "./media/characters/arokha-sieyes/front.svg",
  19236. extra: 1425 / 1284,
  19237. bottom: 0.05
  19238. }
  19239. },
  19240. },
  19241. [
  19242. {
  19243. name: "Normal",
  19244. height: math.unit(5 + 9 / 12, "feet")
  19245. },
  19246. {
  19247. name: "Macro",
  19248. height: math.unit(30, "meters"),
  19249. default: true
  19250. },
  19251. ]
  19252. ))
  19253. characterMakers.push(() => makeCharacter(
  19254. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19255. {
  19256. front: {
  19257. height: math.unit(6, "feet"),
  19258. weight: math.unit(180, "lb"),
  19259. name: "Front",
  19260. image: {
  19261. source: "./media/characters/arokh-sieyes/front.svg",
  19262. extra: 1830 / 1769,
  19263. bottom: 0.01
  19264. }
  19265. },
  19266. },
  19267. [
  19268. {
  19269. name: "Normal",
  19270. height: math.unit(6, "feet")
  19271. },
  19272. {
  19273. name: "Macro",
  19274. height: math.unit(30, "meters"),
  19275. default: true
  19276. },
  19277. ]
  19278. ))
  19279. characterMakers.push(() => makeCharacter(
  19280. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19281. {
  19282. side: {
  19283. height: math.unit(13 + 1 / 12, "feet"),
  19284. weight: math.unit(8.5, "tonnes"),
  19285. name: "Side",
  19286. image: {
  19287. source: "./media/characters/goldeneye/side.svg",
  19288. extra: 1182 / 778,
  19289. bottom: 0.067
  19290. }
  19291. },
  19292. paw: {
  19293. height: math.unit(3.4, "feet"),
  19294. name: "Paw",
  19295. image: {
  19296. source: "./media/characters/goldeneye/paw.svg"
  19297. }
  19298. },
  19299. },
  19300. [
  19301. {
  19302. name: "Normal",
  19303. height: math.unit(13 + 1 / 12, "feet"),
  19304. default: true
  19305. },
  19306. ]
  19307. ))
  19308. characterMakers.push(() => makeCharacter(
  19309. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19310. {
  19311. front: {
  19312. height: math.unit(6 + 1 / 12, "feet"),
  19313. weight: math.unit(210, "lb"),
  19314. name: "Front",
  19315. image: {
  19316. source: "./media/characters/leonardo-lycheborne/front.svg",
  19317. extra: 776/723,
  19318. bottom: 34/810
  19319. }
  19320. },
  19321. side: {
  19322. height: math.unit(6 + 1 / 12, "feet"),
  19323. weight: math.unit(210, "lb"),
  19324. name: "Side",
  19325. image: {
  19326. source: "./media/characters/leonardo-lycheborne/side.svg",
  19327. extra: 780/728,
  19328. bottom: 12/792
  19329. }
  19330. },
  19331. back: {
  19332. height: math.unit(6 + 1 / 12, "feet"),
  19333. weight: math.unit(210, "lb"),
  19334. name: "Back",
  19335. image: {
  19336. source: "./media/characters/leonardo-lycheborne/back.svg",
  19337. extra: 775/721,
  19338. bottom: 17/792
  19339. }
  19340. },
  19341. hand: {
  19342. height: math.unit(1.08, "feet"),
  19343. name: "Hand",
  19344. image: {
  19345. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19346. }
  19347. },
  19348. foot: {
  19349. height: math.unit(1.32, "feet"),
  19350. name: "Foot",
  19351. image: {
  19352. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19353. }
  19354. },
  19355. maw: {
  19356. height: math.unit(1, "feet"),
  19357. name: "Maw",
  19358. image: {
  19359. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19360. }
  19361. },
  19362. were: {
  19363. height: math.unit(20, "feet"),
  19364. weight: math.unit(7800, "lb"),
  19365. name: "Were",
  19366. image: {
  19367. source: "./media/characters/leonardo-lycheborne/were.svg",
  19368. extra: 1224/1165,
  19369. bottom: 72/1296
  19370. }
  19371. },
  19372. feral: {
  19373. height: math.unit(7.5, "feet"),
  19374. weight: math.unit(600, "lb"),
  19375. name: "Feral",
  19376. image: {
  19377. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19378. extra: 797/702,
  19379. bottom: 139/936
  19380. }
  19381. },
  19382. taur: {
  19383. height: math.unit(11, "feet"),
  19384. weight: math.unit(3300, "lb"),
  19385. name: "Taur",
  19386. image: {
  19387. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19388. extra: 1271/1197,
  19389. bottom: 47/1318
  19390. }
  19391. },
  19392. barghest: {
  19393. height: math.unit(11, "feet"),
  19394. weight: math.unit(1300, "lb"),
  19395. name: "Barghest",
  19396. image: {
  19397. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19398. extra: 1291/1204,
  19399. bottom: 37/1328
  19400. }
  19401. },
  19402. dick: {
  19403. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19404. name: "Dick",
  19405. image: {
  19406. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19407. }
  19408. },
  19409. dickWere: {
  19410. height: math.unit((20) / 3.8, "feet"),
  19411. name: "Dick (Were)",
  19412. image: {
  19413. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19414. }
  19415. },
  19416. },
  19417. [
  19418. {
  19419. name: "Normal",
  19420. height: math.unit(6 + 1 / 12, "feet"),
  19421. default: true
  19422. },
  19423. ]
  19424. ))
  19425. characterMakers.push(() => makeCharacter(
  19426. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19427. {
  19428. front: {
  19429. height: math.unit(10, "feet"),
  19430. weight: math.unit(350, "lb"),
  19431. name: "Front",
  19432. image: {
  19433. source: "./media/characters/jet/front.svg",
  19434. extra: 2050 / 1980,
  19435. bottom: 0.013
  19436. }
  19437. },
  19438. back: {
  19439. height: math.unit(10, "feet"),
  19440. weight: math.unit(350, "lb"),
  19441. name: "Back",
  19442. image: {
  19443. source: "./media/characters/jet/back.svg",
  19444. extra: 2050 / 1980,
  19445. bottom: 0.013
  19446. }
  19447. },
  19448. },
  19449. [
  19450. {
  19451. name: "Micro",
  19452. height: math.unit(6, "inches")
  19453. },
  19454. {
  19455. name: "Normal",
  19456. height: math.unit(10, "feet"),
  19457. default: true
  19458. },
  19459. {
  19460. name: "Macro",
  19461. height: math.unit(100, "feet")
  19462. },
  19463. ]
  19464. ))
  19465. characterMakers.push(() => makeCharacter(
  19466. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19467. {
  19468. front: {
  19469. height: math.unit(15, "feet"),
  19470. weight: math.unit(2800, "lb"),
  19471. name: "Front",
  19472. image: {
  19473. source: "./media/characters/tanarath/front.svg",
  19474. extra: 2392 / 2220,
  19475. bottom: 0.03
  19476. }
  19477. },
  19478. back: {
  19479. height: math.unit(15, "feet"),
  19480. weight: math.unit(2800, "lb"),
  19481. name: "Back",
  19482. image: {
  19483. source: "./media/characters/tanarath/back.svg",
  19484. extra: 2392 / 2220,
  19485. bottom: 0.03
  19486. }
  19487. },
  19488. },
  19489. [
  19490. {
  19491. name: "Normal",
  19492. height: math.unit(15, "feet"),
  19493. default: true
  19494. },
  19495. ]
  19496. ))
  19497. characterMakers.push(() => makeCharacter(
  19498. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19499. {
  19500. front: {
  19501. height: math.unit(7 + 1 / 12, "feet"),
  19502. weight: math.unit(175, "lb"),
  19503. name: "Front",
  19504. image: {
  19505. source: "./media/characters/patty-cattybatty/front.svg",
  19506. extra: 908 / 874,
  19507. bottom: 0.025
  19508. }
  19509. },
  19510. },
  19511. [
  19512. {
  19513. name: "Micro",
  19514. height: math.unit(1, "inch")
  19515. },
  19516. {
  19517. name: "Normal",
  19518. height: math.unit(7 + 1 / 12, "feet")
  19519. },
  19520. {
  19521. name: "Mini Macro",
  19522. height: math.unit(155, "feet")
  19523. },
  19524. {
  19525. name: "Macro",
  19526. height: math.unit(1077, "feet")
  19527. },
  19528. {
  19529. name: "Mega Macro",
  19530. height: math.unit(47650, "feet"),
  19531. default: true
  19532. },
  19533. {
  19534. name: "Giga Macro",
  19535. height: math.unit(440, "miles")
  19536. },
  19537. {
  19538. name: "Tera Macro",
  19539. height: math.unit(8700, "miles")
  19540. },
  19541. {
  19542. name: "Planetary Macro",
  19543. height: math.unit(32700, "miles")
  19544. },
  19545. {
  19546. name: "Solar Macro",
  19547. height: math.unit(550000, "miles")
  19548. },
  19549. {
  19550. name: "Celestial Macro",
  19551. height: math.unit(2.5, "AU")
  19552. },
  19553. ]
  19554. ))
  19555. characterMakers.push(() => makeCharacter(
  19556. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19557. {
  19558. front: {
  19559. height: math.unit(4 + 5 / 12, "feet"),
  19560. weight: math.unit(90, "lb"),
  19561. name: "Front",
  19562. image: {
  19563. source: "./media/characters/cappu/front.svg",
  19564. extra: 1247 / 1152,
  19565. bottom: 0.012
  19566. }
  19567. },
  19568. },
  19569. [
  19570. {
  19571. name: "Normal",
  19572. height: math.unit(4 + 5 / 12, "feet"),
  19573. default: true
  19574. },
  19575. ]
  19576. ))
  19577. characterMakers.push(() => makeCharacter(
  19578. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19579. {
  19580. frontDressed: {
  19581. height: math.unit(70, "cm"),
  19582. weight: math.unit(6, "kg"),
  19583. name: "Front (Dressed)",
  19584. image: {
  19585. source: "./media/characters/sebi/front-dressed.svg",
  19586. extra: 713.5 / 686.5,
  19587. bottom: 0.003
  19588. }
  19589. },
  19590. front: {
  19591. height: math.unit(70, "cm"),
  19592. weight: math.unit(5, "kg"),
  19593. name: "Front",
  19594. image: {
  19595. source: "./media/characters/sebi/front.svg",
  19596. extra: 713.5 / 686.5,
  19597. bottom: 0.003
  19598. }
  19599. }
  19600. },
  19601. [
  19602. {
  19603. name: "Normal",
  19604. height: math.unit(70, "cm"),
  19605. default: true
  19606. },
  19607. {
  19608. name: "Macro",
  19609. height: math.unit(8, "meters")
  19610. },
  19611. ]
  19612. ))
  19613. characterMakers.push(() => makeCharacter(
  19614. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19615. {
  19616. front: {
  19617. height: math.unit(6, "feet"),
  19618. weight: math.unit(150, "lb"),
  19619. name: "Front",
  19620. image: {
  19621. source: "./media/characters/typhek/front.svg",
  19622. extra: 1948 / 1929,
  19623. bottom: 0.025
  19624. }
  19625. },
  19626. side: {
  19627. height: math.unit(6, "feet"),
  19628. weight: math.unit(150, "lb"),
  19629. name: "Side",
  19630. image: {
  19631. source: "./media/characters/typhek/side.svg",
  19632. extra: 2034 / 2010,
  19633. bottom: 0.003
  19634. }
  19635. },
  19636. back: {
  19637. height: math.unit(6, "feet"),
  19638. weight: math.unit(150, "lb"),
  19639. name: "Back",
  19640. image: {
  19641. source: "./media/characters/typhek/back.svg",
  19642. extra: 2005 / 1978,
  19643. bottom: 0.004
  19644. }
  19645. },
  19646. palm: {
  19647. height: math.unit(1.2, "feet"),
  19648. name: "Palm",
  19649. image: {
  19650. source: "./media/characters/typhek/palm.svg"
  19651. }
  19652. },
  19653. fist: {
  19654. height: math.unit(1.1, "feet"),
  19655. name: "Fist",
  19656. image: {
  19657. source: "./media/characters/typhek/fist.svg"
  19658. }
  19659. },
  19660. foot: {
  19661. height: math.unit(1.57, "feet"),
  19662. name: "Foot",
  19663. image: {
  19664. source: "./media/characters/typhek/foot.svg"
  19665. }
  19666. },
  19667. sole: {
  19668. height: math.unit(2.05, "feet"),
  19669. name: "Sole",
  19670. image: {
  19671. source: "./media/characters/typhek/sole.svg"
  19672. }
  19673. },
  19674. },
  19675. [
  19676. {
  19677. name: "Macro",
  19678. height: math.unit(40, "stories"),
  19679. default: true
  19680. },
  19681. {
  19682. name: "Megamacro",
  19683. height: math.unit(1, "mile")
  19684. },
  19685. {
  19686. name: "Gigamacro",
  19687. height: math.unit(4000, "solarradii")
  19688. },
  19689. {
  19690. name: "Universal",
  19691. height: math.unit(1.1, "universes")
  19692. }
  19693. ]
  19694. ))
  19695. characterMakers.push(() => makeCharacter(
  19696. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19697. {
  19698. side: {
  19699. height: math.unit(5 + 7 / 12, "feet"),
  19700. weight: math.unit(150, "lb"),
  19701. name: "Side",
  19702. image: {
  19703. source: "./media/characters/kassy/side.svg",
  19704. extra: 1280 / 1225,
  19705. bottom: 0.002
  19706. }
  19707. },
  19708. front: {
  19709. height: math.unit(5 + 7 / 12, "feet"),
  19710. weight: math.unit(150, "lb"),
  19711. name: "Front",
  19712. image: {
  19713. source: "./media/characters/kassy/front.svg",
  19714. extra: 1280 / 1225,
  19715. bottom: 0.025
  19716. }
  19717. },
  19718. back: {
  19719. height: math.unit(5 + 7 / 12, "feet"),
  19720. weight: math.unit(150, "lb"),
  19721. name: "Back",
  19722. image: {
  19723. source: "./media/characters/kassy/back.svg",
  19724. extra: 1280 / 1225,
  19725. bottom: 0.002
  19726. }
  19727. },
  19728. foot: {
  19729. height: math.unit(1.266, "feet"),
  19730. name: "Foot",
  19731. image: {
  19732. source: "./media/characters/kassy/foot.svg"
  19733. }
  19734. },
  19735. },
  19736. [
  19737. {
  19738. name: "Normal",
  19739. height: math.unit(5 + 7 / 12, "feet")
  19740. },
  19741. {
  19742. name: "Macro",
  19743. height: math.unit(137, "feet"),
  19744. default: true
  19745. },
  19746. {
  19747. name: "Megamacro",
  19748. height: math.unit(1, "mile")
  19749. },
  19750. ]
  19751. ))
  19752. characterMakers.push(() => makeCharacter(
  19753. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19754. {
  19755. front: {
  19756. height: math.unit(6 + 1 / 12, "feet"),
  19757. weight: math.unit(200, "lb"),
  19758. name: "Front",
  19759. image: {
  19760. source: "./media/characters/neil/front.svg",
  19761. extra: 1326 / 1250,
  19762. bottom: 0.023
  19763. }
  19764. },
  19765. },
  19766. [
  19767. {
  19768. name: "Normal",
  19769. height: math.unit(6 + 1 / 12, "feet"),
  19770. default: true
  19771. },
  19772. {
  19773. name: "Macro",
  19774. height: math.unit(200, "feet")
  19775. },
  19776. ]
  19777. ))
  19778. characterMakers.push(() => makeCharacter(
  19779. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19780. {
  19781. front: {
  19782. height: math.unit(5 + 9 / 12, "feet"),
  19783. weight: math.unit(190, "lb"),
  19784. name: "Front",
  19785. image: {
  19786. source: "./media/characters/atticus/front.svg",
  19787. extra: 2934 / 2785,
  19788. bottom: 0.025
  19789. }
  19790. },
  19791. },
  19792. [
  19793. {
  19794. name: "Normal",
  19795. height: math.unit(5 + 9 / 12, "feet"),
  19796. default: true
  19797. },
  19798. {
  19799. name: "Macro",
  19800. height: math.unit(180, "feet")
  19801. },
  19802. ]
  19803. ))
  19804. characterMakers.push(() => makeCharacter(
  19805. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19806. {
  19807. side: {
  19808. height: math.unit(9, "feet"),
  19809. weight: math.unit(650, "lb"),
  19810. name: "Side",
  19811. image: {
  19812. source: "./media/characters/milo/side.svg",
  19813. extra: 2644 / 2310,
  19814. bottom: 0.032
  19815. }
  19816. },
  19817. },
  19818. [
  19819. {
  19820. name: "Normal",
  19821. height: math.unit(9, "feet"),
  19822. default: true
  19823. },
  19824. {
  19825. name: "Macro",
  19826. height: math.unit(300, "feet")
  19827. },
  19828. ]
  19829. ))
  19830. characterMakers.push(() => makeCharacter(
  19831. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19832. {
  19833. side: {
  19834. height: math.unit(8, "meters"),
  19835. weight: math.unit(90000, "kg"),
  19836. name: "Side",
  19837. image: {
  19838. source: "./media/characters/ijzer/side.svg",
  19839. extra: 2756 / 1600,
  19840. bottom: 0.01
  19841. }
  19842. },
  19843. },
  19844. [
  19845. {
  19846. name: "Small",
  19847. height: math.unit(3, "meters")
  19848. },
  19849. {
  19850. name: "Normal",
  19851. height: math.unit(8, "meters"),
  19852. default: true
  19853. },
  19854. {
  19855. name: "Normal+",
  19856. height: math.unit(10, "meters")
  19857. },
  19858. {
  19859. name: "Bigger",
  19860. height: math.unit(24, "meters")
  19861. },
  19862. {
  19863. name: "Huge",
  19864. height: math.unit(80, "meters")
  19865. },
  19866. ]
  19867. ))
  19868. characterMakers.push(() => makeCharacter(
  19869. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19870. {
  19871. front: {
  19872. height: math.unit(6 + 2 / 12, "feet"),
  19873. weight: math.unit(153, "lb"),
  19874. name: "Front",
  19875. image: {
  19876. source: "./media/characters/luca-cervicum/front.svg",
  19877. extra: 370 / 327,
  19878. bottom: 0.015
  19879. }
  19880. },
  19881. back: {
  19882. height: math.unit(6 + 2 / 12, "feet"),
  19883. weight: math.unit(153, "lb"),
  19884. name: "Back",
  19885. image: {
  19886. source: "./media/characters/luca-cervicum/back.svg",
  19887. extra: 367 / 333,
  19888. bottom: 0.005
  19889. }
  19890. },
  19891. frontGear: {
  19892. height: math.unit(6 + 2 / 12, "feet"),
  19893. weight: math.unit(173, "lb"),
  19894. name: "Front (Gear)",
  19895. image: {
  19896. source: "./media/characters/luca-cervicum/front-gear.svg",
  19897. extra: 377 / 333,
  19898. bottom: 0.006
  19899. }
  19900. },
  19901. },
  19902. [
  19903. {
  19904. name: "Normal",
  19905. height: math.unit(6 + 2 / 12, "feet"),
  19906. default: true
  19907. },
  19908. ]
  19909. ))
  19910. characterMakers.push(() => makeCharacter(
  19911. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19912. {
  19913. front: {
  19914. height: math.unit(6 + 1 / 12, "feet"),
  19915. weight: math.unit(304, "lb"),
  19916. name: "Front",
  19917. image: {
  19918. source: "./media/characters/oliver/front.svg",
  19919. extra: 157 / 143,
  19920. bottom: 0.08
  19921. }
  19922. },
  19923. },
  19924. [
  19925. {
  19926. name: "Normal",
  19927. height: math.unit(6 + 1 / 12, "feet"),
  19928. default: true
  19929. },
  19930. ]
  19931. ))
  19932. characterMakers.push(() => makeCharacter(
  19933. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19934. {
  19935. front: {
  19936. height: math.unit(5 + 7 / 12, "feet"),
  19937. weight: math.unit(140, "lb"),
  19938. name: "Front",
  19939. image: {
  19940. source: "./media/characters/shane/front.svg",
  19941. extra: 304 / 289,
  19942. bottom: 0.005
  19943. }
  19944. },
  19945. },
  19946. [
  19947. {
  19948. name: "Normal",
  19949. height: math.unit(5 + 7 / 12, "feet"),
  19950. default: true
  19951. },
  19952. ]
  19953. ))
  19954. characterMakers.push(() => makeCharacter(
  19955. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19956. {
  19957. front: {
  19958. height: math.unit(5 + 9 / 12, "feet"),
  19959. weight: math.unit(178, "lb"),
  19960. name: "Front",
  19961. image: {
  19962. source: "./media/characters/shin/front.svg",
  19963. extra: 159 / 151,
  19964. bottom: 0.015
  19965. }
  19966. },
  19967. },
  19968. [
  19969. {
  19970. name: "Normal",
  19971. height: math.unit(5 + 9 / 12, "feet"),
  19972. default: true
  19973. },
  19974. ]
  19975. ))
  19976. characterMakers.push(() => makeCharacter(
  19977. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19978. {
  19979. front: {
  19980. height: math.unit(5 + 10 / 12, "feet"),
  19981. weight: math.unit(168, "lb"),
  19982. name: "Front",
  19983. image: {
  19984. source: "./media/characters/xerxes/front.svg",
  19985. extra: 282 / 260,
  19986. bottom: 0.045
  19987. }
  19988. },
  19989. },
  19990. [
  19991. {
  19992. name: "Normal",
  19993. height: math.unit(5 + 10 / 12, "feet"),
  19994. default: true
  19995. },
  19996. ]
  19997. ))
  19998. characterMakers.push(() => makeCharacter(
  19999. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20000. {
  20001. front: {
  20002. height: math.unit(6 + 7 / 12, "feet"),
  20003. weight: math.unit(208, "lb"),
  20004. name: "Front",
  20005. image: {
  20006. source: "./media/characters/chaska/front.svg",
  20007. extra: 332 / 319,
  20008. bottom: 0.015
  20009. }
  20010. },
  20011. },
  20012. [
  20013. {
  20014. name: "Normal",
  20015. height: math.unit(6 + 7 / 12, "feet"),
  20016. default: true
  20017. },
  20018. ]
  20019. ))
  20020. characterMakers.push(() => makeCharacter(
  20021. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20022. {
  20023. front: {
  20024. height: math.unit(5 + 8 / 12, "feet"),
  20025. weight: math.unit(208, "lb"),
  20026. name: "Front",
  20027. image: {
  20028. source: "./media/characters/enuk/front.svg",
  20029. extra: 437 / 406,
  20030. bottom: 0.02
  20031. }
  20032. },
  20033. },
  20034. [
  20035. {
  20036. name: "Normal",
  20037. height: math.unit(5 + 8 / 12, "feet"),
  20038. default: true
  20039. },
  20040. ]
  20041. ))
  20042. characterMakers.push(() => makeCharacter(
  20043. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20044. {
  20045. front: {
  20046. height: math.unit(5 + 10 / 12, "feet"),
  20047. weight: math.unit(252, "lb"),
  20048. name: "Front",
  20049. image: {
  20050. source: "./media/characters/bruun/front.svg",
  20051. extra: 197 / 187,
  20052. bottom: 0.012
  20053. }
  20054. },
  20055. },
  20056. [
  20057. {
  20058. name: "Normal",
  20059. height: math.unit(5 + 10 / 12, "feet"),
  20060. default: true
  20061. },
  20062. ]
  20063. ))
  20064. characterMakers.push(() => makeCharacter(
  20065. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20066. {
  20067. front: {
  20068. height: math.unit(6 + 10 / 12, "feet"),
  20069. weight: math.unit(255, "lb"),
  20070. name: "Front",
  20071. image: {
  20072. source: "./media/characters/alexeev/front.svg",
  20073. extra: 213 / 200,
  20074. bottom: 0.05
  20075. }
  20076. },
  20077. },
  20078. [
  20079. {
  20080. name: "Normal",
  20081. height: math.unit(6 + 10 / 12, "feet"),
  20082. default: true
  20083. },
  20084. ]
  20085. ))
  20086. characterMakers.push(() => makeCharacter(
  20087. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20088. {
  20089. front: {
  20090. height: math.unit(2 + 8 / 12, "feet"),
  20091. weight: math.unit(22, "lb"),
  20092. name: "Front",
  20093. image: {
  20094. source: "./media/characters/evelyn/front.svg",
  20095. extra: 208 / 180
  20096. }
  20097. },
  20098. },
  20099. [
  20100. {
  20101. name: "Normal",
  20102. height: math.unit(2 + 8 / 12, "feet"),
  20103. default: true
  20104. },
  20105. ]
  20106. ))
  20107. characterMakers.push(() => makeCharacter(
  20108. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20109. {
  20110. front: {
  20111. height: math.unit(5 + 9 / 12, "feet"),
  20112. weight: math.unit(139, "lb"),
  20113. name: "Front",
  20114. image: {
  20115. source: "./media/characters/inca/front.svg",
  20116. extra: 294 / 291,
  20117. bottom: 0.03
  20118. }
  20119. },
  20120. },
  20121. [
  20122. {
  20123. name: "Normal",
  20124. height: math.unit(5 + 9 / 12, "feet"),
  20125. default: true
  20126. },
  20127. ]
  20128. ))
  20129. characterMakers.push(() => makeCharacter(
  20130. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20131. {
  20132. front: {
  20133. height: math.unit(6 + 3 / 12, "feet"),
  20134. weight: math.unit(185, "lb"),
  20135. name: "Front",
  20136. image: {
  20137. source: "./media/characters/mera/front.svg",
  20138. extra: 291 / 277,
  20139. bottom: 0.03
  20140. }
  20141. },
  20142. },
  20143. [
  20144. {
  20145. name: "Normal",
  20146. height: math.unit(6 + 3 / 12, "feet"),
  20147. default: true
  20148. },
  20149. ]
  20150. ))
  20151. characterMakers.push(() => makeCharacter(
  20152. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20153. {
  20154. front: {
  20155. height: math.unit(6 + 7 / 12, "feet"),
  20156. weight: math.unit(160, "lb"),
  20157. name: "Front",
  20158. image: {
  20159. source: "./media/characters/ceres/front.svg",
  20160. extra: 1023 / 950,
  20161. bottom: 0.027
  20162. }
  20163. },
  20164. back: {
  20165. height: math.unit(6 + 7 / 12, "feet"),
  20166. weight: math.unit(160, "lb"),
  20167. name: "Back",
  20168. image: {
  20169. source: "./media/characters/ceres/back.svg",
  20170. extra: 1023 / 950
  20171. }
  20172. },
  20173. },
  20174. [
  20175. {
  20176. name: "Normal",
  20177. height: math.unit(6 + 7 / 12, "feet"),
  20178. default: true
  20179. },
  20180. ]
  20181. ))
  20182. characterMakers.push(() => makeCharacter(
  20183. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20184. {
  20185. front: {
  20186. height: math.unit(5 + 10 / 12, "feet"),
  20187. weight: math.unit(150, "lb"),
  20188. name: "Front",
  20189. image: {
  20190. source: "./media/characters/kris/front.svg",
  20191. extra: 885 / 803,
  20192. bottom: 0.03
  20193. }
  20194. },
  20195. },
  20196. [
  20197. {
  20198. name: "Normal",
  20199. height: math.unit(5 + 10 / 12, "feet"),
  20200. default: true
  20201. },
  20202. ]
  20203. ))
  20204. characterMakers.push(() => makeCharacter(
  20205. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20206. {
  20207. front: {
  20208. height: math.unit(7, "feet"),
  20209. weight: math.unit(120, "kg"),
  20210. name: "Front",
  20211. image: {
  20212. source: "./media/characters/taluthus/front.svg",
  20213. extra: 903 / 833,
  20214. bottom: 0.015
  20215. }
  20216. },
  20217. },
  20218. [
  20219. {
  20220. name: "Normal",
  20221. height: math.unit(7, "feet"),
  20222. default: true
  20223. },
  20224. {
  20225. name: "Macro",
  20226. height: math.unit(300, "feet")
  20227. },
  20228. ]
  20229. ))
  20230. characterMakers.push(() => makeCharacter(
  20231. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20232. {
  20233. front: {
  20234. height: math.unit(5 + 9 / 12, "feet"),
  20235. weight: math.unit(145, "lb"),
  20236. name: "Front",
  20237. image: {
  20238. source: "./media/characters/dawn/front.svg",
  20239. extra: 2094 / 2016,
  20240. bottom: 0.025
  20241. }
  20242. },
  20243. back: {
  20244. height: math.unit(5 + 9 / 12, "feet"),
  20245. weight: math.unit(160, "lb"),
  20246. name: "Back",
  20247. image: {
  20248. source: "./media/characters/dawn/back.svg",
  20249. extra: 2112 / 2080,
  20250. bottom: 0.005
  20251. }
  20252. },
  20253. },
  20254. [
  20255. {
  20256. name: "Normal",
  20257. height: math.unit(6 + 7 / 12, "feet"),
  20258. default: true
  20259. },
  20260. ]
  20261. ))
  20262. characterMakers.push(() => makeCharacter(
  20263. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20264. {
  20265. anthro: {
  20266. height: math.unit(8 + 3 / 12, "feet"),
  20267. weight: math.unit(450, "lb"),
  20268. name: "Anthro",
  20269. image: {
  20270. source: "./media/characters/arador/anthro.svg",
  20271. extra: 1835 / 1718,
  20272. bottom: 0.025
  20273. }
  20274. },
  20275. feral: {
  20276. height: math.unit(4, "feet"),
  20277. weight: math.unit(200, "lb"),
  20278. name: "Feral",
  20279. image: {
  20280. source: "./media/characters/arador/feral.svg",
  20281. extra: 1683 / 1514,
  20282. bottom: 0.07
  20283. }
  20284. },
  20285. },
  20286. [
  20287. {
  20288. name: "Normal",
  20289. height: math.unit(8 + 3 / 12, "feet")
  20290. },
  20291. {
  20292. name: "Macro",
  20293. height: math.unit(82.5, "feet"),
  20294. default: true
  20295. },
  20296. ]
  20297. ))
  20298. characterMakers.push(() => makeCharacter(
  20299. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20300. {
  20301. front: {
  20302. height: math.unit(5 + 10 / 12, "feet"),
  20303. weight: math.unit(125, "lb"),
  20304. name: "Front",
  20305. image: {
  20306. source: "./media/characters/dharsi/front.svg",
  20307. extra: 716 / 630,
  20308. bottom: 0.035
  20309. }
  20310. },
  20311. },
  20312. [
  20313. {
  20314. name: "Nano",
  20315. height: math.unit(100, "nm")
  20316. },
  20317. {
  20318. name: "Micro",
  20319. height: math.unit(2, "inches")
  20320. },
  20321. {
  20322. name: "Normal",
  20323. height: math.unit(5 + 10 / 12, "feet"),
  20324. default: true
  20325. },
  20326. {
  20327. name: "Macro",
  20328. height: math.unit(1000, "feet")
  20329. },
  20330. {
  20331. name: "Megamacro",
  20332. height: math.unit(10, "miles")
  20333. },
  20334. {
  20335. name: "Gigamacro",
  20336. height: math.unit(3000, "miles")
  20337. },
  20338. {
  20339. name: "Teramacro",
  20340. height: math.unit(500000, "miles")
  20341. },
  20342. {
  20343. name: "Teramacro+",
  20344. height: math.unit(30, "galaxies")
  20345. },
  20346. ]
  20347. ))
  20348. characterMakers.push(() => makeCharacter(
  20349. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20350. {
  20351. front: {
  20352. height: math.unit(6, "feet"),
  20353. weight: math.unit(150, "lb"),
  20354. name: "Front",
  20355. image: {
  20356. source: "./media/characters/deathy/front.svg",
  20357. extra: 1552 / 1463,
  20358. bottom: 0.025
  20359. }
  20360. },
  20361. side: {
  20362. height: math.unit(6, "feet"),
  20363. weight: math.unit(150, "lb"),
  20364. name: "Side",
  20365. image: {
  20366. source: "./media/characters/deathy/side.svg",
  20367. extra: 1604 / 1455,
  20368. bottom: 0.025
  20369. }
  20370. },
  20371. back: {
  20372. height: math.unit(6, "feet"),
  20373. weight: math.unit(150, "lb"),
  20374. name: "Back",
  20375. image: {
  20376. source: "./media/characters/deathy/back.svg",
  20377. extra: 1580 / 1463,
  20378. bottom: 0.005
  20379. }
  20380. },
  20381. },
  20382. [
  20383. {
  20384. name: "Micro",
  20385. height: math.unit(5, "millimeters")
  20386. },
  20387. {
  20388. name: "Normal",
  20389. height: math.unit(6 + 5 / 12, "feet"),
  20390. default: true
  20391. },
  20392. ]
  20393. ))
  20394. characterMakers.push(() => makeCharacter(
  20395. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20396. {
  20397. front: {
  20398. height: math.unit(16, "feet"),
  20399. weight: math.unit(4000, "lb"),
  20400. name: "Front",
  20401. image: {
  20402. source: "./media/characters/juniper/front.svg",
  20403. bottom: 0.04
  20404. }
  20405. },
  20406. },
  20407. [
  20408. {
  20409. name: "Normal",
  20410. height: math.unit(16, "feet"),
  20411. default: true
  20412. },
  20413. ]
  20414. ))
  20415. characterMakers.push(() => makeCharacter(
  20416. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20417. {
  20418. front: {
  20419. height: math.unit(6, "feet"),
  20420. weight: math.unit(150, "lb"),
  20421. name: "Front",
  20422. image: {
  20423. source: "./media/characters/hipster/front.svg",
  20424. extra: 1312 / 1209,
  20425. bottom: 0.025
  20426. }
  20427. },
  20428. back: {
  20429. height: math.unit(6, "feet"),
  20430. weight: math.unit(150, "lb"),
  20431. name: "Back",
  20432. image: {
  20433. source: "./media/characters/hipster/back.svg",
  20434. extra: 1281 / 1196,
  20435. bottom: 0.01
  20436. }
  20437. },
  20438. },
  20439. [
  20440. {
  20441. name: "Micro",
  20442. height: math.unit(1, "mm")
  20443. },
  20444. {
  20445. name: "Normal",
  20446. height: math.unit(4, "inches"),
  20447. default: true
  20448. },
  20449. {
  20450. name: "Macro",
  20451. height: math.unit(500, "feet")
  20452. },
  20453. {
  20454. name: "Megamacro",
  20455. height: math.unit(1000, "miles")
  20456. },
  20457. ]
  20458. ))
  20459. characterMakers.push(() => makeCharacter(
  20460. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20461. {
  20462. front: {
  20463. height: math.unit(6, "feet"),
  20464. weight: math.unit(150, "lb"),
  20465. name: "Front",
  20466. image: {
  20467. source: "./media/characters/tendirmuldr/front.svg",
  20468. extra: 1878 / 1772,
  20469. bottom: 0.015
  20470. }
  20471. },
  20472. },
  20473. [
  20474. {
  20475. name: "Megamacro",
  20476. height: math.unit(1500, "miles"),
  20477. default: true
  20478. },
  20479. ]
  20480. ))
  20481. characterMakers.push(() => makeCharacter(
  20482. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20483. {
  20484. front: {
  20485. height: math.unit(14, "feet"),
  20486. weight: math.unit(12000, "lb"),
  20487. name: "Front",
  20488. image: {
  20489. source: "./media/characters/mort/front.svg",
  20490. extra: 365 / 318,
  20491. bottom: 0.01
  20492. }
  20493. },
  20494. side: {
  20495. height: math.unit(14, "feet"),
  20496. weight: math.unit(12000, "lb"),
  20497. name: "Side",
  20498. image: {
  20499. source: "./media/characters/mort/side.svg",
  20500. extra: 365 / 318,
  20501. bottom: 0.052
  20502. },
  20503. default: true
  20504. },
  20505. back: {
  20506. height: math.unit(14, "feet"),
  20507. weight: math.unit(12000, "lb"),
  20508. name: "Back",
  20509. image: {
  20510. source: "./media/characters/mort/back.svg",
  20511. extra: 371 / 332,
  20512. bottom: 0.18
  20513. }
  20514. },
  20515. },
  20516. [
  20517. {
  20518. name: "Normal",
  20519. height: math.unit(14, "feet"),
  20520. default: true
  20521. },
  20522. ]
  20523. ))
  20524. characterMakers.push(() => makeCharacter(
  20525. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20526. {
  20527. front: {
  20528. height: math.unit(8, "feet"),
  20529. weight: math.unit(1, "ton"),
  20530. name: "Front",
  20531. image: {
  20532. source: "./media/characters/lycoa/front.svg",
  20533. extra: 1875 / 1789,
  20534. bottom: 0.022
  20535. }
  20536. },
  20537. back: {
  20538. height: math.unit(8, "feet"),
  20539. weight: math.unit(1, "ton"),
  20540. name: "Back",
  20541. image: {
  20542. source: "./media/characters/lycoa/back.svg",
  20543. extra: 1835 / 1781,
  20544. bottom: 0.03
  20545. }
  20546. },
  20547. head: {
  20548. height: math.unit(2.1, "feet"),
  20549. name: "Head",
  20550. image: {
  20551. source: "./media/characters/lycoa/head.svg"
  20552. }
  20553. },
  20554. tailmaw: {
  20555. height: math.unit(1.9, "feet"),
  20556. name: "Tailmaw",
  20557. image: {
  20558. source: "./media/characters/lycoa/tailmaw.svg"
  20559. }
  20560. },
  20561. tentacles: {
  20562. height: math.unit(2.1, "feet"),
  20563. name: "Tentacles",
  20564. image: {
  20565. source: "./media/characters/lycoa/tentacles.svg"
  20566. }
  20567. },
  20568. dick: {
  20569. height: math.unit(1.73, "feet"),
  20570. name: "Dick",
  20571. image: {
  20572. source: "./media/characters/lycoa/dick.svg"
  20573. }
  20574. },
  20575. },
  20576. [
  20577. {
  20578. name: "Normal",
  20579. height: math.unit(8, "feet"),
  20580. default: true
  20581. },
  20582. {
  20583. name: "Macro",
  20584. height: math.unit(30, "feet")
  20585. },
  20586. ]
  20587. ))
  20588. characterMakers.push(() => makeCharacter(
  20589. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20590. {
  20591. front: {
  20592. height: math.unit(4 + 2 / 12, "feet"),
  20593. weight: math.unit(70, "lb"),
  20594. name: "Front",
  20595. image: {
  20596. source: "./media/characters/naldara/front.svg",
  20597. extra: 841 / 720,
  20598. bottom: 0.04
  20599. }
  20600. },
  20601. naga: {
  20602. height: math.unit(23, "feet"),
  20603. weight: math.unit(15000, "kg"),
  20604. name: "Naga",
  20605. image: {
  20606. source: "./media/characters/naldara/naga.svg",
  20607. extra: 3290 / 2959,
  20608. bottom: 124 / 3432
  20609. }
  20610. },
  20611. },
  20612. [
  20613. {
  20614. name: "Normal",
  20615. height: math.unit(4 + 2 / 12, "feet"),
  20616. default: true
  20617. },
  20618. ]
  20619. ))
  20620. characterMakers.push(() => makeCharacter(
  20621. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20622. {
  20623. front: {
  20624. height: math.unit(13 + 7 / 12, "feet"),
  20625. weight: math.unit(1500, "lb"),
  20626. name: "Front",
  20627. image: {
  20628. source: "./media/characters/briar/front.svg",
  20629. extra: 626 / 596,
  20630. bottom: 0.08
  20631. }
  20632. },
  20633. },
  20634. [
  20635. {
  20636. name: "Normal",
  20637. height: math.unit(13 + 7 / 12, "feet"),
  20638. default: true
  20639. },
  20640. ]
  20641. ))
  20642. characterMakers.push(() => makeCharacter(
  20643. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20644. {
  20645. side: {
  20646. height: math.unit(10, "feet"),
  20647. weight: math.unit(500, "lb"),
  20648. name: "Side",
  20649. image: {
  20650. source: "./media/characters/vanguard/side.svg",
  20651. extra: 502 / 425,
  20652. bottom: 0.087
  20653. }
  20654. },
  20655. },
  20656. [
  20657. {
  20658. name: "Normal",
  20659. height: math.unit(10, "feet"),
  20660. default: true
  20661. },
  20662. ]
  20663. ))
  20664. characterMakers.push(() => makeCharacter(
  20665. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20666. {
  20667. front: {
  20668. height: math.unit(7.5, "feet"),
  20669. weight: math.unit(2, "lb"),
  20670. name: "Front",
  20671. image: {
  20672. source: "./media/characters/artemis/front.svg",
  20673. extra: 1192 / 1075,
  20674. bottom: 0.07
  20675. }
  20676. },
  20677. frontNsfw: {
  20678. height: math.unit(7.5, "feet"),
  20679. weight: math.unit(2, "lb"),
  20680. name: "Front (NSFW)",
  20681. image: {
  20682. source: "./media/characters/artemis/front-nsfw.svg",
  20683. extra: 1192 / 1075,
  20684. bottom: 0.07
  20685. }
  20686. },
  20687. frontNsfwer: {
  20688. height: math.unit(7.5, "feet"),
  20689. weight: math.unit(2, "lb"),
  20690. name: "Front (NSFW-er)",
  20691. image: {
  20692. source: "./media/characters/artemis/front-nsfwer.svg",
  20693. extra: 1192 / 1075,
  20694. bottom: 0.07
  20695. }
  20696. },
  20697. side: {
  20698. height: math.unit(7.5, "feet"),
  20699. weight: math.unit(2, "lb"),
  20700. name: "Side",
  20701. image: {
  20702. source: "./media/characters/artemis/side.svg",
  20703. extra: 1192 / 1075,
  20704. bottom: 0.07
  20705. }
  20706. },
  20707. sideNsfw: {
  20708. height: math.unit(7.5, "feet"),
  20709. weight: math.unit(2, "lb"),
  20710. name: "Side (NSFW)",
  20711. image: {
  20712. source: "./media/characters/artemis/side-nsfw.svg",
  20713. extra: 1192 / 1075,
  20714. bottom: 0.07
  20715. }
  20716. },
  20717. sideNsfwer: {
  20718. height: math.unit(7.5, "feet"),
  20719. weight: math.unit(2, "lb"),
  20720. name: "Side (NSFW-er)",
  20721. image: {
  20722. source: "./media/characters/artemis/side-nsfwer.svg",
  20723. extra: 1192 / 1075,
  20724. bottom: 0.07
  20725. }
  20726. },
  20727. maw: {
  20728. height: math.unit(1.1, "feet"),
  20729. name: "Maw",
  20730. image: {
  20731. source: "./media/characters/artemis/maw.svg"
  20732. }
  20733. },
  20734. stomach: {
  20735. height: math.unit(0.95, "feet"),
  20736. name: "Stomach",
  20737. image: {
  20738. source: "./media/characters/artemis/stomach.svg"
  20739. }
  20740. },
  20741. dickCanine: {
  20742. height: math.unit(1, "feet"),
  20743. name: "Dick (Canine)",
  20744. image: {
  20745. source: "./media/characters/artemis/dick-canine.svg"
  20746. }
  20747. },
  20748. dickEquine: {
  20749. height: math.unit(0.85, "feet"),
  20750. name: "Dick (Equine)",
  20751. image: {
  20752. source: "./media/characters/artemis/dick-equine.svg"
  20753. }
  20754. },
  20755. dickExotic: {
  20756. height: math.unit(0.85, "feet"),
  20757. name: "Dick (Exotic)",
  20758. image: {
  20759. source: "./media/characters/artemis/dick-exotic.svg"
  20760. }
  20761. },
  20762. },
  20763. [
  20764. {
  20765. name: "Normal",
  20766. height: math.unit(7.5, "feet"),
  20767. default: true
  20768. },
  20769. {
  20770. name: "Enlarged",
  20771. height: math.unit(12, "feet")
  20772. },
  20773. ]
  20774. ))
  20775. characterMakers.push(() => makeCharacter(
  20776. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20777. {
  20778. front: {
  20779. height: math.unit(5 + 3 / 12, "feet"),
  20780. weight: math.unit(160, "lb"),
  20781. name: "Front",
  20782. image: {
  20783. source: "./media/characters/kira/front.svg",
  20784. extra: 906 / 786,
  20785. bottom: 0.01
  20786. }
  20787. },
  20788. back: {
  20789. height: math.unit(5 + 3 / 12, "feet"),
  20790. weight: math.unit(160, "lb"),
  20791. name: "Back",
  20792. image: {
  20793. source: "./media/characters/kira/back.svg",
  20794. extra: 882 / 757,
  20795. bottom: 0.005
  20796. }
  20797. },
  20798. frontDressed: {
  20799. height: math.unit(5 + 3 / 12, "feet"),
  20800. weight: math.unit(160, "lb"),
  20801. name: "Front (Dressed)",
  20802. image: {
  20803. source: "./media/characters/kira/front-dressed.svg",
  20804. extra: 906 / 786,
  20805. bottom: 0.01
  20806. }
  20807. },
  20808. beans: {
  20809. height: math.unit(0.92, "feet"),
  20810. name: "Beans",
  20811. image: {
  20812. source: "./media/characters/kira/beans.svg"
  20813. }
  20814. },
  20815. },
  20816. [
  20817. {
  20818. name: "Normal",
  20819. height: math.unit(5 + 3 / 12, "feet"),
  20820. default: true
  20821. },
  20822. ]
  20823. ))
  20824. characterMakers.push(() => makeCharacter(
  20825. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20826. {
  20827. front: {
  20828. height: math.unit(5 + 4 / 12, "feet"),
  20829. weight: math.unit(145, "lb"),
  20830. name: "Front",
  20831. image: {
  20832. source: "./media/characters/scramble/front.svg",
  20833. extra: 763 / 727,
  20834. bottom: 0.05
  20835. }
  20836. },
  20837. back: {
  20838. height: math.unit(5 + 4 / 12, "feet"),
  20839. weight: math.unit(145, "lb"),
  20840. name: "Back",
  20841. image: {
  20842. source: "./media/characters/scramble/back.svg",
  20843. extra: 826 / 737,
  20844. bottom: 0.002
  20845. }
  20846. },
  20847. },
  20848. [
  20849. {
  20850. name: "Normal",
  20851. height: math.unit(5 + 4 / 12, "feet"),
  20852. default: true
  20853. },
  20854. ]
  20855. ))
  20856. characterMakers.push(() => makeCharacter(
  20857. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20858. {
  20859. side: {
  20860. height: math.unit(6 + 2 / 12, "feet"),
  20861. weight: math.unit(190, "lb"),
  20862. name: "Side",
  20863. image: {
  20864. source: "./media/characters/biscuit/side.svg",
  20865. extra: 858 / 791,
  20866. bottom: 0.044
  20867. }
  20868. },
  20869. },
  20870. [
  20871. {
  20872. name: "Normal",
  20873. height: math.unit(6 + 2 / 12, "feet"),
  20874. default: true
  20875. },
  20876. ]
  20877. ))
  20878. characterMakers.push(() => makeCharacter(
  20879. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20880. {
  20881. front: {
  20882. height: math.unit(5 + 2 / 12, "feet"),
  20883. weight: math.unit(120, "lb"),
  20884. name: "Front",
  20885. image: {
  20886. source: "./media/characters/poffin/front.svg",
  20887. extra: 786 / 680,
  20888. bottom: 0.005
  20889. }
  20890. },
  20891. },
  20892. [
  20893. {
  20894. name: "Normal",
  20895. height: math.unit(5 + 2 / 12, "feet"),
  20896. default: true
  20897. },
  20898. ]
  20899. ))
  20900. characterMakers.push(() => makeCharacter(
  20901. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20902. {
  20903. front: {
  20904. height: math.unit(6 + 3 / 12, "feet"),
  20905. weight: math.unit(519, "lb"),
  20906. name: "Front",
  20907. image: {
  20908. source: "./media/characters/dhari/front.svg",
  20909. extra: 1048 / 946,
  20910. bottom: 0.015
  20911. }
  20912. },
  20913. back: {
  20914. height: math.unit(6 + 3 / 12, "feet"),
  20915. weight: math.unit(519, "lb"),
  20916. name: "Back",
  20917. image: {
  20918. source: "./media/characters/dhari/back.svg",
  20919. extra: 1048 / 931,
  20920. bottom: 0.005
  20921. }
  20922. },
  20923. frontDressed: {
  20924. height: math.unit(6 + 3 / 12, "feet"),
  20925. weight: math.unit(519, "lb"),
  20926. name: "Front (Dressed)",
  20927. image: {
  20928. source: "./media/characters/dhari/front-dressed.svg",
  20929. extra: 1713 / 1546,
  20930. bottom: 0.02
  20931. }
  20932. },
  20933. backDressed: {
  20934. height: math.unit(6 + 3 / 12, "feet"),
  20935. weight: math.unit(519, "lb"),
  20936. name: "Back (Dressed)",
  20937. image: {
  20938. source: "./media/characters/dhari/back-dressed.svg",
  20939. extra: 1699 / 1537,
  20940. bottom: 0.01
  20941. }
  20942. },
  20943. maw: {
  20944. height: math.unit(0.95, "feet"),
  20945. name: "Maw",
  20946. image: {
  20947. source: "./media/characters/dhari/maw.svg"
  20948. }
  20949. },
  20950. wereFront: {
  20951. height: math.unit(12 + 8 / 12, "feet"),
  20952. weight: math.unit(4000, "lb"),
  20953. name: "Front (Were)",
  20954. image: {
  20955. source: "./media/characters/dhari/were-front.svg",
  20956. extra: 1065 / 969,
  20957. bottom: 0.015
  20958. }
  20959. },
  20960. wereBack: {
  20961. height: math.unit(12 + 8 / 12, "feet"),
  20962. weight: math.unit(4000, "lb"),
  20963. name: "Back (Were)",
  20964. image: {
  20965. source: "./media/characters/dhari/were-back.svg",
  20966. extra: 1065 / 969,
  20967. bottom: 0.012
  20968. }
  20969. },
  20970. wereMaw: {
  20971. height: math.unit(0.625, "meters"),
  20972. name: "Maw (Were)",
  20973. image: {
  20974. source: "./media/characters/dhari/were-maw.svg"
  20975. }
  20976. },
  20977. },
  20978. [
  20979. {
  20980. name: "Normal",
  20981. height: math.unit(6 + 3 / 12, "feet"),
  20982. default: true
  20983. },
  20984. ]
  20985. ))
  20986. characterMakers.push(() => makeCharacter(
  20987. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20988. {
  20989. anthro: {
  20990. height: math.unit(5 + 7 / 12, "feet"),
  20991. weight: math.unit(175, "lb"),
  20992. name: "Anthro",
  20993. image: {
  20994. source: "./media/characters/rena-dyne/anthro.svg",
  20995. extra: 1849 / 1785,
  20996. bottom: 0.005
  20997. }
  20998. },
  20999. taur: {
  21000. height: math.unit(15 + 6 / 12, "feet"),
  21001. weight: math.unit(8000, "lb"),
  21002. name: "Taur",
  21003. image: {
  21004. source: "./media/characters/rena-dyne/taur.svg",
  21005. extra: 2315 / 2234,
  21006. bottom: 0.033
  21007. }
  21008. },
  21009. },
  21010. [
  21011. {
  21012. name: "Normal",
  21013. height: math.unit(5 + 7 / 12, "feet"),
  21014. default: true
  21015. },
  21016. ]
  21017. ))
  21018. characterMakers.push(() => makeCharacter(
  21019. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21020. {
  21021. front: {
  21022. height: math.unit(8, "feet"),
  21023. weight: math.unit(600, "lb"),
  21024. name: "Front",
  21025. image: {
  21026. source: "./media/characters/weremeep/front.svg",
  21027. extra: 967 / 862,
  21028. bottom: 0.01
  21029. }
  21030. },
  21031. },
  21032. [
  21033. {
  21034. name: "Normal",
  21035. height: math.unit(8, "feet"),
  21036. default: true
  21037. },
  21038. {
  21039. name: "Lorg",
  21040. height: math.unit(12, "feet")
  21041. },
  21042. {
  21043. name: "Oh Lawd She Comin'",
  21044. height: math.unit(20, "feet")
  21045. },
  21046. ]
  21047. ))
  21048. characterMakers.push(() => makeCharacter(
  21049. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21050. {
  21051. front: {
  21052. height: math.unit(4, "feet"),
  21053. weight: math.unit(90, "lb"),
  21054. name: "Front",
  21055. image: {
  21056. source: "./media/characters/reza/front.svg",
  21057. extra: 1183 / 1111,
  21058. bottom: 0.017
  21059. }
  21060. },
  21061. back: {
  21062. height: math.unit(4, "feet"),
  21063. weight: math.unit(90, "lb"),
  21064. name: "Back",
  21065. image: {
  21066. source: "./media/characters/reza/back.svg",
  21067. extra: 1183 / 1111,
  21068. bottom: 0.01
  21069. }
  21070. },
  21071. drake: {
  21072. height: math.unit(30, "feet"),
  21073. weight: math.unit(246960, "lb"),
  21074. name: "Drake",
  21075. image: {
  21076. source: "./media/characters/reza/drake.svg",
  21077. extra: 2350 / 2024,
  21078. bottom: 60.7 / 2403
  21079. }
  21080. },
  21081. },
  21082. [
  21083. {
  21084. name: "Normal",
  21085. height: math.unit(4, "feet"),
  21086. default: true
  21087. },
  21088. ]
  21089. ))
  21090. characterMakers.push(() => makeCharacter(
  21091. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21092. {
  21093. side: {
  21094. height: math.unit(15, "feet"),
  21095. weight: math.unit(14, "tons"),
  21096. name: "Side",
  21097. image: {
  21098. source: "./media/characters/athea/side.svg",
  21099. extra: 960 / 540,
  21100. bottom: 0.003
  21101. }
  21102. },
  21103. sitting: {
  21104. height: math.unit(6 * 2.85, "feet"),
  21105. weight: math.unit(14, "tons"),
  21106. name: "Sitting",
  21107. image: {
  21108. source: "./media/characters/athea/sitting.svg",
  21109. extra: 621 / 581,
  21110. bottom: 0.075
  21111. }
  21112. },
  21113. maw: {
  21114. height: math.unit(7.59498031496063, "feet"),
  21115. name: "Maw",
  21116. image: {
  21117. source: "./media/characters/athea/maw.svg"
  21118. }
  21119. },
  21120. },
  21121. [
  21122. {
  21123. name: "Lap Cat",
  21124. height: math.unit(2.5, "feet")
  21125. },
  21126. {
  21127. name: "Minimacro",
  21128. height: math.unit(15, "feet"),
  21129. default: true
  21130. },
  21131. {
  21132. name: "Macro",
  21133. height: math.unit(120, "feet")
  21134. },
  21135. {
  21136. name: "Macro+",
  21137. height: math.unit(640, "feet")
  21138. },
  21139. {
  21140. name: "Colossus",
  21141. height: math.unit(2.2, "miles")
  21142. },
  21143. ]
  21144. ))
  21145. characterMakers.push(() => makeCharacter(
  21146. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21147. {
  21148. front: {
  21149. height: math.unit(8 + 8 / 12, "feet"),
  21150. weight: math.unit(130, "kg"),
  21151. name: "Front",
  21152. image: {
  21153. source: "./media/characters/seroko/front.svg",
  21154. extra: 1385 / 1280,
  21155. bottom: 0.025
  21156. }
  21157. },
  21158. back: {
  21159. height: math.unit(8 + 8 / 12, "feet"),
  21160. weight: math.unit(130, "kg"),
  21161. name: "Back",
  21162. image: {
  21163. source: "./media/characters/seroko/back.svg",
  21164. extra: 1369 / 1238,
  21165. bottom: 0.018
  21166. }
  21167. },
  21168. frontDressed: {
  21169. height: math.unit(8 + 8 / 12, "feet"),
  21170. weight: math.unit(130, "kg"),
  21171. name: "Front (Dressed)",
  21172. image: {
  21173. source: "./media/characters/seroko/front-dressed.svg",
  21174. extra: 1366 / 1275,
  21175. bottom: 0.03
  21176. }
  21177. },
  21178. },
  21179. [
  21180. {
  21181. name: "Normal",
  21182. height: math.unit(8 + 8 / 12, "feet"),
  21183. default: true
  21184. },
  21185. ]
  21186. ))
  21187. characterMakers.push(() => makeCharacter(
  21188. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21189. {
  21190. front: {
  21191. height: math.unit(5.5, "feet"),
  21192. weight: math.unit(160, "lb"),
  21193. name: "Front",
  21194. image: {
  21195. source: "./media/characters/quatzi/front.svg",
  21196. extra: 2346 / 2242,
  21197. bottom: 0.015
  21198. }
  21199. },
  21200. },
  21201. [
  21202. {
  21203. name: "Normal",
  21204. height: math.unit(5.5, "feet"),
  21205. default: true
  21206. },
  21207. {
  21208. name: "Big",
  21209. height: math.unit(7.7, "feet")
  21210. },
  21211. ]
  21212. ))
  21213. characterMakers.push(() => makeCharacter(
  21214. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21215. {
  21216. front: {
  21217. height: math.unit(5 + 11 / 12, "feet"),
  21218. weight: math.unit(180, "lb"),
  21219. name: "Front",
  21220. image: {
  21221. source: "./media/characters/sen/front.svg",
  21222. extra: 1321 / 1254,
  21223. bottom: 0.015
  21224. }
  21225. },
  21226. side: {
  21227. height: math.unit(5 + 11 / 12, "feet"),
  21228. weight: math.unit(180, "lb"),
  21229. name: "Side",
  21230. image: {
  21231. source: "./media/characters/sen/side.svg",
  21232. extra: 1321 / 1254,
  21233. bottom: 0.007
  21234. }
  21235. },
  21236. back: {
  21237. height: math.unit(5 + 11 / 12, "feet"),
  21238. weight: math.unit(180, "lb"),
  21239. name: "Back",
  21240. image: {
  21241. source: "./media/characters/sen/back.svg",
  21242. extra: 1321 / 1254
  21243. }
  21244. },
  21245. },
  21246. [
  21247. {
  21248. name: "Normal",
  21249. height: math.unit(5 + 11 / 12, "feet"),
  21250. default: true
  21251. },
  21252. ]
  21253. ))
  21254. characterMakers.push(() => makeCharacter(
  21255. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21256. {
  21257. front: {
  21258. height: math.unit(166.6, "cm"),
  21259. weight: math.unit(66.6, "kg"),
  21260. name: "Front",
  21261. image: {
  21262. source: "./media/characters/fruity/front.svg",
  21263. extra: 1510 / 1386,
  21264. bottom: 0.04
  21265. }
  21266. },
  21267. back: {
  21268. height: math.unit(166.6, "cm"),
  21269. weight: math.unit(66.6, "lb"),
  21270. name: "Back",
  21271. image: {
  21272. source: "./media/characters/fruity/back.svg",
  21273. extra: 1563 / 1435,
  21274. bottom: 0.005
  21275. }
  21276. },
  21277. },
  21278. [
  21279. {
  21280. name: "Normal",
  21281. height: math.unit(166.6, "cm"),
  21282. default: true
  21283. },
  21284. {
  21285. name: "Demonic",
  21286. height: math.unit(166.6, "feet")
  21287. },
  21288. ]
  21289. ))
  21290. characterMakers.push(() => makeCharacter(
  21291. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21292. {
  21293. side: {
  21294. height: math.unit(10, "feet"),
  21295. weight: math.unit(500, "lb"),
  21296. name: "Side",
  21297. image: {
  21298. source: "./media/characters/zost/side.svg",
  21299. extra: 966 / 880,
  21300. bottom: 0.075
  21301. }
  21302. },
  21303. mawFront: {
  21304. height: math.unit(1.08, "meters"),
  21305. name: "Maw (Front)",
  21306. image: {
  21307. source: "./media/characters/zost/maw-front.svg"
  21308. }
  21309. },
  21310. mawSide: {
  21311. height: math.unit(2.66, "feet"),
  21312. name: "Maw (Side)",
  21313. image: {
  21314. source: "./media/characters/zost/maw-side.svg"
  21315. }
  21316. },
  21317. },
  21318. [
  21319. {
  21320. name: "Normal",
  21321. height: math.unit(10, "feet"),
  21322. default: true
  21323. },
  21324. ]
  21325. ))
  21326. characterMakers.push(() => makeCharacter(
  21327. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21328. {
  21329. front: {
  21330. height: math.unit(5 + 4 / 12, "feet"),
  21331. weight: math.unit(120, "lb"),
  21332. name: "Front",
  21333. image: {
  21334. source: "./media/characters/luci/front.svg",
  21335. extra: 1985 / 1884,
  21336. bottom: 0.04
  21337. }
  21338. },
  21339. back: {
  21340. height: math.unit(5 + 4 / 12, "feet"),
  21341. weight: math.unit(120, "lb"),
  21342. name: "Back",
  21343. image: {
  21344. source: "./media/characters/luci/back.svg",
  21345. extra: 1892 / 1791,
  21346. bottom: 0.002
  21347. }
  21348. },
  21349. },
  21350. [
  21351. {
  21352. name: "Normal",
  21353. height: math.unit(5 + 4 / 12, "feet"),
  21354. default: true
  21355. },
  21356. ]
  21357. ))
  21358. characterMakers.push(() => makeCharacter(
  21359. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21360. {
  21361. front: {
  21362. height: math.unit(1500, "feet"),
  21363. weight: math.unit(3.8e6, "tons"),
  21364. name: "Front",
  21365. image: {
  21366. source: "./media/characters/2th/front.svg",
  21367. extra: 3489 / 3350,
  21368. bottom: 0.1
  21369. }
  21370. },
  21371. foot: {
  21372. height: math.unit(461, "feet"),
  21373. name: "Foot",
  21374. image: {
  21375. source: "./media/characters/2th/foot.svg"
  21376. }
  21377. },
  21378. },
  21379. [
  21380. {
  21381. name: "\"Micro\"",
  21382. height: math.unit(15 + 7 / 12, "feet")
  21383. },
  21384. {
  21385. name: "Normal",
  21386. height: math.unit(1500, "feet"),
  21387. default: true
  21388. },
  21389. {
  21390. name: "Macro",
  21391. height: math.unit(5000, "feet")
  21392. },
  21393. {
  21394. name: "Megamacro",
  21395. height: math.unit(15, "miles")
  21396. },
  21397. {
  21398. name: "Gigamacro",
  21399. height: math.unit(4000, "miles")
  21400. },
  21401. {
  21402. name: "Galactic",
  21403. height: math.unit(50, "AU")
  21404. },
  21405. ]
  21406. ))
  21407. characterMakers.push(() => makeCharacter(
  21408. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21409. {
  21410. front: {
  21411. height: math.unit(5 + 6 / 12, "feet"),
  21412. weight: math.unit(220, "lb"),
  21413. name: "Front",
  21414. image: {
  21415. source: "./media/characters/amethyst/front.svg",
  21416. extra: 2078 / 2040,
  21417. bottom: 0.045
  21418. }
  21419. },
  21420. back: {
  21421. height: math.unit(5 + 6 / 12, "feet"),
  21422. weight: math.unit(220, "lb"),
  21423. name: "Back",
  21424. image: {
  21425. source: "./media/characters/amethyst/back.svg",
  21426. extra: 2021 / 1989,
  21427. bottom: 0.02
  21428. }
  21429. },
  21430. },
  21431. [
  21432. {
  21433. name: "Normal",
  21434. height: math.unit(5 + 6 / 12, "feet"),
  21435. default: true
  21436. },
  21437. ]
  21438. ))
  21439. characterMakers.push(() => makeCharacter(
  21440. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21441. {
  21442. front: {
  21443. height: math.unit(4 + 11 / 12, "feet"),
  21444. weight: math.unit(120, "lb"),
  21445. name: "Front",
  21446. image: {
  21447. source: "./media/characters/yumi-akiyama/front.svg",
  21448. extra: 1327 / 1235,
  21449. bottom: 0.02
  21450. }
  21451. },
  21452. back: {
  21453. height: math.unit(4 + 11 / 12, "feet"),
  21454. weight: math.unit(120, "lb"),
  21455. name: "Back",
  21456. image: {
  21457. source: "./media/characters/yumi-akiyama/back.svg",
  21458. extra: 1287 / 1245,
  21459. bottom: 0.002
  21460. }
  21461. },
  21462. },
  21463. [
  21464. {
  21465. name: "Galactic",
  21466. height: math.unit(50, "galaxies"),
  21467. default: true
  21468. },
  21469. {
  21470. name: "Universal",
  21471. height: math.unit(100, "universes")
  21472. },
  21473. ]
  21474. ))
  21475. characterMakers.push(() => makeCharacter(
  21476. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21477. {
  21478. front: {
  21479. height: math.unit(8, "feet"),
  21480. weight: math.unit(500, "lb"),
  21481. name: "Front",
  21482. image: {
  21483. source: "./media/characters/rifter-yrmori/front.svg",
  21484. extra: 1180 / 1125,
  21485. bottom: 0.02
  21486. }
  21487. },
  21488. back: {
  21489. height: math.unit(8, "feet"),
  21490. weight: math.unit(500, "lb"),
  21491. name: "Back",
  21492. image: {
  21493. source: "./media/characters/rifter-yrmori/back.svg",
  21494. extra: 1190 / 1145,
  21495. bottom: 0.001
  21496. }
  21497. },
  21498. wings: {
  21499. height: math.unit(7.75, "feet"),
  21500. weight: math.unit(500, "lb"),
  21501. name: "Wings",
  21502. image: {
  21503. source: "./media/characters/rifter-yrmori/wings.svg",
  21504. extra: 1357 / 1285
  21505. }
  21506. },
  21507. maw: {
  21508. height: math.unit(0.8, "feet"),
  21509. name: "Maw",
  21510. image: {
  21511. source: "./media/characters/rifter-yrmori/maw.svg"
  21512. }
  21513. },
  21514. mawfront: {
  21515. height: math.unit(1.45, "feet"),
  21516. name: "Maw (Front)",
  21517. image: {
  21518. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21519. }
  21520. },
  21521. },
  21522. [
  21523. {
  21524. name: "Normal",
  21525. height: math.unit(8, "feet"),
  21526. default: true
  21527. },
  21528. {
  21529. name: "Macro",
  21530. height: math.unit(42, "meters")
  21531. },
  21532. ]
  21533. ))
  21534. characterMakers.push(() => makeCharacter(
  21535. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21536. {
  21537. were: {
  21538. height: math.unit(25 + 6 / 12, "feet"),
  21539. weight: math.unit(10000, "lb"),
  21540. name: "Were",
  21541. image: {
  21542. source: "./media/characters/tahajin/were.svg",
  21543. extra: 801 / 770,
  21544. bottom: 0.042
  21545. }
  21546. },
  21547. aquatic: {
  21548. height: math.unit(6 + 4 / 12, "feet"),
  21549. weight: math.unit(160, "lb"),
  21550. name: "Aquatic",
  21551. image: {
  21552. source: "./media/characters/tahajin/aquatic.svg",
  21553. extra: 572 / 542,
  21554. bottom: 0.04
  21555. }
  21556. },
  21557. chow: {
  21558. height: math.unit(8 + 11 / 12, "feet"),
  21559. weight: math.unit(450, "lb"),
  21560. name: "Chow",
  21561. image: {
  21562. source: "./media/characters/tahajin/chow.svg",
  21563. extra: 660 / 640,
  21564. bottom: 0.015
  21565. }
  21566. },
  21567. demiNaga: {
  21568. height: math.unit(6 + 8 / 12, "feet"),
  21569. weight: math.unit(300, "lb"),
  21570. name: "Demi Naga",
  21571. image: {
  21572. source: "./media/characters/tahajin/demi-naga.svg",
  21573. extra: 643 / 615,
  21574. bottom: 0.1
  21575. }
  21576. },
  21577. data: {
  21578. height: math.unit(5, "inches"),
  21579. weight: math.unit(0.1, "lb"),
  21580. name: "Data",
  21581. image: {
  21582. source: "./media/characters/tahajin/data.svg"
  21583. }
  21584. },
  21585. fluu: {
  21586. height: math.unit(5 + 7 / 12, "feet"),
  21587. weight: math.unit(140, "lb"),
  21588. name: "Fluu",
  21589. image: {
  21590. source: "./media/characters/tahajin/fluu.svg",
  21591. extra: 628 / 592,
  21592. bottom: 0.02
  21593. }
  21594. },
  21595. starWarrior: {
  21596. height: math.unit(4 + 5 / 12, "feet"),
  21597. weight: math.unit(50, "lb"),
  21598. name: "Star Warrior",
  21599. image: {
  21600. source: "./media/characters/tahajin/star-warrior.svg"
  21601. }
  21602. },
  21603. },
  21604. [
  21605. {
  21606. name: "Normal",
  21607. height: math.unit(25 + 6 / 12, "feet"),
  21608. default: true
  21609. },
  21610. ]
  21611. ))
  21612. characterMakers.push(() => makeCharacter(
  21613. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21614. {
  21615. front: {
  21616. height: math.unit(8, "feet"),
  21617. weight: math.unit(350, "lb"),
  21618. name: "Front",
  21619. image: {
  21620. source: "./media/characters/gabira/front.svg",
  21621. extra: 608 / 580,
  21622. bottom: 0.03
  21623. }
  21624. },
  21625. back: {
  21626. height: math.unit(8, "feet"),
  21627. weight: math.unit(350, "lb"),
  21628. name: "Back",
  21629. image: {
  21630. source: "./media/characters/gabira/back.svg",
  21631. extra: 608 / 580,
  21632. bottom: 0.03
  21633. }
  21634. },
  21635. },
  21636. [
  21637. {
  21638. name: "Normal",
  21639. height: math.unit(8, "feet"),
  21640. default: true
  21641. },
  21642. ]
  21643. ))
  21644. characterMakers.push(() => makeCharacter(
  21645. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21646. {
  21647. front: {
  21648. height: math.unit(5 + 3 / 12, "feet"),
  21649. weight: math.unit(137, "lb"),
  21650. name: "Front",
  21651. image: {
  21652. source: "./media/characters/sasha-katraine/front.svg",
  21653. bottom: 0.045
  21654. }
  21655. },
  21656. },
  21657. [
  21658. {
  21659. name: "Micro",
  21660. height: math.unit(5, "inches")
  21661. },
  21662. {
  21663. name: "Normal",
  21664. height: math.unit(5 + 3 / 12, "feet"),
  21665. default: true
  21666. },
  21667. ]
  21668. ))
  21669. characterMakers.push(() => makeCharacter(
  21670. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21671. {
  21672. side: {
  21673. height: math.unit(4, "inches"),
  21674. weight: math.unit(200, "grams"),
  21675. name: "Side",
  21676. image: {
  21677. source: "./media/characters/der/side.svg",
  21678. extra: 719 / 400,
  21679. bottom: 30.6 / 749.9187
  21680. }
  21681. },
  21682. },
  21683. [
  21684. {
  21685. name: "Micro",
  21686. height: math.unit(4, "inches"),
  21687. default: true
  21688. },
  21689. ]
  21690. ))
  21691. characterMakers.push(() => makeCharacter(
  21692. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21693. {
  21694. side: {
  21695. height: math.unit(30, "meters"),
  21696. weight: math.unit(700, "tonnes"),
  21697. name: "Side",
  21698. image: {
  21699. source: "./media/characters/fixerdragon/side.svg",
  21700. extra: (1293.0514 - 116.03) / 1106.86,
  21701. bottom: 116.03 / 1293.0514
  21702. }
  21703. },
  21704. },
  21705. [
  21706. {
  21707. name: "Planck",
  21708. height: math.unit(1.6e-35, "meters")
  21709. },
  21710. {
  21711. name: "Micro",
  21712. height: math.unit(0.4, "meters")
  21713. },
  21714. {
  21715. name: "Normal",
  21716. height: math.unit(30, "meters"),
  21717. default: true
  21718. },
  21719. {
  21720. name: "Megamacro",
  21721. height: math.unit(1.2, "megameters")
  21722. },
  21723. {
  21724. name: "Teramacro",
  21725. height: math.unit(130, "terameters")
  21726. },
  21727. {
  21728. name: "Yottamacro",
  21729. height: math.unit(6200, "yottameters")
  21730. },
  21731. ]
  21732. ));
  21733. characterMakers.push(() => makeCharacter(
  21734. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21735. {
  21736. front: {
  21737. height: math.unit(8, "feet"),
  21738. weight: math.unit(250, "lb"),
  21739. name: "Front",
  21740. image: {
  21741. source: "./media/characters/kite/front.svg",
  21742. extra: 2796 / 2659,
  21743. bottom: 0.002
  21744. }
  21745. },
  21746. },
  21747. [
  21748. {
  21749. name: "Normal",
  21750. height: math.unit(8, "feet"),
  21751. default: true
  21752. },
  21753. {
  21754. name: "Macro",
  21755. height: math.unit(360, "feet")
  21756. },
  21757. {
  21758. name: "Megamacro",
  21759. height: math.unit(1500, "feet")
  21760. },
  21761. ]
  21762. ))
  21763. characterMakers.push(() => makeCharacter(
  21764. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21765. {
  21766. front: {
  21767. height: math.unit(5 + 11/12, "feet"),
  21768. weight: math.unit(170, "lb"),
  21769. name: "Front",
  21770. image: {
  21771. source: "./media/characters/poojawa-vynar/front.svg",
  21772. extra: 1735/1585,
  21773. bottom: 96/1831
  21774. }
  21775. },
  21776. back: {
  21777. height: math.unit(5 + 11/12, "feet"),
  21778. weight: math.unit(170, "lb"),
  21779. name: "Back",
  21780. image: {
  21781. source: "./media/characters/poojawa-vynar/back.svg",
  21782. extra: 1749/1607,
  21783. bottom: 28/1777
  21784. }
  21785. },
  21786. male: {
  21787. height: math.unit(5 + 11/12, "feet"),
  21788. weight: math.unit(170, "lb"),
  21789. name: "Male",
  21790. image: {
  21791. source: "./media/characters/poojawa-vynar/male.svg",
  21792. extra: 1855/1713,
  21793. bottom: 63/1918
  21794. }
  21795. },
  21796. taur: {
  21797. height: math.unit(5 + 11/12, "feet"),
  21798. weight: math.unit(170, "lb"),
  21799. name: "Taur",
  21800. image: {
  21801. source: "./media/characters/poojawa-vynar/taur.svg",
  21802. extra: 1151/1059,
  21803. bottom: 356/1507
  21804. }
  21805. },
  21806. frontDressed: {
  21807. height: math.unit(5 + 11/12, "feet"),
  21808. weight: math.unit(170, "lb"),
  21809. name: "Front (Dressed)",
  21810. image: {
  21811. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21812. extra: 1735/1585,
  21813. bottom: 96/1831
  21814. }
  21815. },
  21816. backDressed: {
  21817. height: math.unit(5 + 11/12, "feet"),
  21818. weight: math.unit(170, "lb"),
  21819. name: "Back (Dressed)",
  21820. image: {
  21821. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21822. extra: 1749/1607,
  21823. bottom: 28/1777
  21824. }
  21825. },
  21826. maleDressed: {
  21827. height: math.unit(5 + 11/12, "feet"),
  21828. weight: math.unit(170, "lb"),
  21829. name: "Male (Dressed)",
  21830. image: {
  21831. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21832. extra: 1855/1713,
  21833. bottom: 63/1918
  21834. }
  21835. },
  21836. taurDressed: {
  21837. height: math.unit(5 + 11/12, "feet"),
  21838. weight: math.unit(170, "lb"),
  21839. name: "Taur (Dressed)",
  21840. image: {
  21841. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21842. extra: 1151/1059,
  21843. bottom: 356/1507
  21844. }
  21845. },
  21846. maw: {
  21847. height: math.unit(1.46, "feet"),
  21848. name: "Maw",
  21849. image: {
  21850. source: "./media/characters/poojawa-vynar/maw.svg"
  21851. }
  21852. },
  21853. head: {
  21854. height: math.unit(2.34, "feet"),
  21855. name: "Head",
  21856. image: {
  21857. source: "./media/characters/poojawa-vynar/head.svg"
  21858. }
  21859. },
  21860. paw: {
  21861. height: math.unit(1.61, "feet"),
  21862. name: "Paw",
  21863. image: {
  21864. source: "./media/characters/poojawa-vynar/paw.svg"
  21865. }
  21866. },
  21867. pawToering: {
  21868. height: math.unit(1.72, "feet"),
  21869. name: "Paw (Toering)",
  21870. image: {
  21871. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21872. }
  21873. },
  21874. toering: {
  21875. height: math.unit(2.9, "inches"),
  21876. name: "Toering",
  21877. image: {
  21878. source: "./media/characters/poojawa-vynar/toering.svg"
  21879. }
  21880. },
  21881. shaft: {
  21882. height: math.unit(0.625, "feet"),
  21883. name: "Shaft",
  21884. image: {
  21885. source: "./media/characters/poojawa-vynar/shaft.svg"
  21886. }
  21887. },
  21888. spade: {
  21889. height: math.unit(0.42, "feet"),
  21890. name: "Spade",
  21891. image: {
  21892. source: "./media/characters/poojawa-vynar/spade.svg"
  21893. }
  21894. },
  21895. },
  21896. [
  21897. {
  21898. name: "Shortstack",
  21899. height: math.unit(4, "feet")
  21900. },
  21901. {
  21902. name: "Normal",
  21903. height: math.unit(5 + 11 / 12, "feet"),
  21904. default: true
  21905. },
  21906. {
  21907. name: "Tauric",
  21908. height: math.unit(4, "meters")
  21909. },
  21910. ]
  21911. ))
  21912. characterMakers.push(() => makeCharacter(
  21913. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21914. {
  21915. front: {
  21916. height: math.unit(293, "meters"),
  21917. weight: math.unit(70400, "tons"),
  21918. name: "Front",
  21919. image: {
  21920. source: "./media/characters/violette/front.svg",
  21921. extra: 1227 / 1180,
  21922. bottom: 0.005
  21923. }
  21924. },
  21925. back: {
  21926. height: math.unit(293, "meters"),
  21927. weight: math.unit(70400, "tons"),
  21928. name: "Back",
  21929. image: {
  21930. source: "./media/characters/violette/back.svg",
  21931. extra: 1227 / 1180,
  21932. bottom: 0.005
  21933. }
  21934. },
  21935. },
  21936. [
  21937. {
  21938. name: "Macro",
  21939. height: math.unit(293, "meters"),
  21940. default: true
  21941. },
  21942. ]
  21943. ))
  21944. characterMakers.push(() => makeCharacter(
  21945. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21946. {
  21947. front: {
  21948. height: math.unit(1050, "feet"),
  21949. weight: math.unit(200000, "tons"),
  21950. name: "Front",
  21951. image: {
  21952. source: "./media/characters/alessandra/front.svg",
  21953. extra: 960 / 912,
  21954. bottom: 0.06
  21955. }
  21956. },
  21957. },
  21958. [
  21959. {
  21960. name: "Macro",
  21961. height: math.unit(1050, "feet")
  21962. },
  21963. {
  21964. name: "Macro+",
  21965. height: math.unit(900, "meters"),
  21966. default: true
  21967. },
  21968. ]
  21969. ))
  21970. characterMakers.push(() => makeCharacter(
  21971. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21972. {
  21973. front: {
  21974. height: math.unit(5, "feet"),
  21975. weight: math.unit(187, "lb"),
  21976. name: "Front",
  21977. image: {
  21978. source: "./media/characters/person/front.svg",
  21979. extra: 3087 / 2945,
  21980. bottom: 91 / 3181
  21981. }
  21982. },
  21983. },
  21984. [
  21985. {
  21986. name: "Micro",
  21987. height: math.unit(3, "inches")
  21988. },
  21989. {
  21990. name: "Normal",
  21991. height: math.unit(5, "feet"),
  21992. default: true
  21993. },
  21994. {
  21995. name: "Macro",
  21996. height: math.unit(90, "feet")
  21997. },
  21998. {
  21999. name: "Max Size",
  22000. height: math.unit(280, "feet")
  22001. },
  22002. ]
  22003. ))
  22004. characterMakers.push(() => makeCharacter(
  22005. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22006. {
  22007. front: {
  22008. height: math.unit(4.5, "meters"),
  22009. weight: math.unit(3200, "lb"),
  22010. name: "Front",
  22011. image: {
  22012. source: "./media/characters/ty/front.svg",
  22013. extra: 1038 / 960,
  22014. bottom: 31.156 / 1068
  22015. }
  22016. },
  22017. back: {
  22018. height: math.unit(4.5, "meters"),
  22019. weight: math.unit(3200, "lb"),
  22020. name: "Back",
  22021. image: {
  22022. source: "./media/characters/ty/back.svg",
  22023. extra: 1044 / 966,
  22024. bottom: 7.48 / 1049
  22025. }
  22026. },
  22027. },
  22028. [
  22029. {
  22030. name: "Normal",
  22031. height: math.unit(4.5, "meters"),
  22032. default: true
  22033. },
  22034. ]
  22035. ))
  22036. characterMakers.push(() => makeCharacter(
  22037. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22038. {
  22039. front: {
  22040. height: math.unit(5 + 4 / 12, "feet"),
  22041. weight: math.unit(115, "lb"),
  22042. name: "Front",
  22043. image: {
  22044. source: "./media/characters/rocky/front.svg",
  22045. extra: 1012 / 975,
  22046. bottom: 54 / 1066
  22047. }
  22048. },
  22049. },
  22050. [
  22051. {
  22052. name: "Normal",
  22053. height: math.unit(5 + 4 / 12, "feet"),
  22054. default: true
  22055. },
  22056. ]
  22057. ))
  22058. characterMakers.push(() => makeCharacter(
  22059. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22060. {
  22061. upright: {
  22062. height: math.unit(6, "meters"),
  22063. weight: math.unit(4000, "kg"),
  22064. name: "Upright",
  22065. image: {
  22066. source: "./media/characters/ruin/upright.svg",
  22067. extra: 668 / 661,
  22068. bottom: 42 / 799.8396
  22069. }
  22070. },
  22071. },
  22072. [
  22073. {
  22074. name: "Normal",
  22075. height: math.unit(6, "meters"),
  22076. default: true
  22077. },
  22078. ]
  22079. ))
  22080. characterMakers.push(() => makeCharacter(
  22081. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22082. {
  22083. front: {
  22084. height: math.unit(5, "feet"),
  22085. weight: math.unit(106, "lb"),
  22086. name: "Front",
  22087. image: {
  22088. source: "./media/characters/robin/front.svg",
  22089. extra: 862 / 799,
  22090. bottom: 42.4 / 914.8856
  22091. }
  22092. },
  22093. },
  22094. [
  22095. {
  22096. name: "Normal",
  22097. height: math.unit(5, "feet"),
  22098. default: true
  22099. },
  22100. ]
  22101. ))
  22102. characterMakers.push(() => makeCharacter(
  22103. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22104. {
  22105. side: {
  22106. height: math.unit(3, "feet"),
  22107. weight: math.unit(225, "lb"),
  22108. name: "Side",
  22109. image: {
  22110. source: "./media/characters/saian/side.svg",
  22111. extra: 566 / 356,
  22112. bottom: 79.7 / 643
  22113. }
  22114. },
  22115. maw: {
  22116. height: math.unit(2.85, "feet"),
  22117. name: "Maw",
  22118. image: {
  22119. source: "./media/characters/saian/maw.svg"
  22120. }
  22121. },
  22122. },
  22123. [
  22124. {
  22125. name: "Normal",
  22126. height: math.unit(3, "feet"),
  22127. default: true
  22128. },
  22129. ]
  22130. ))
  22131. characterMakers.push(() => makeCharacter(
  22132. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22133. {
  22134. side: {
  22135. height: math.unit(8, "feet"),
  22136. weight: math.unit(300, "lb"),
  22137. name: "Side",
  22138. image: {
  22139. source: "./media/characters/equus-silvermane/side.svg",
  22140. extra: 2176 / 2050,
  22141. bottom: 65.7 / 2245
  22142. }
  22143. },
  22144. front: {
  22145. height: math.unit(8, "feet"),
  22146. weight: math.unit(300, "lb"),
  22147. name: "Front",
  22148. image: {
  22149. source: "./media/characters/equus-silvermane/front.svg",
  22150. extra: 4633 / 4400,
  22151. bottom: 71.3 / 4706.915
  22152. }
  22153. },
  22154. sideStepping: {
  22155. height: math.unit(8, "feet"),
  22156. weight: math.unit(300, "lb"),
  22157. name: "Side (Stepping)",
  22158. image: {
  22159. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22160. extra: 1968 / 1860,
  22161. bottom: 16.4 / 1989
  22162. }
  22163. },
  22164. },
  22165. [
  22166. {
  22167. name: "Normal",
  22168. height: math.unit(8, "feet")
  22169. },
  22170. {
  22171. name: "Minimacro",
  22172. height: math.unit(75, "feet"),
  22173. default: true
  22174. },
  22175. {
  22176. name: "Macro",
  22177. height: math.unit(150, "feet")
  22178. },
  22179. {
  22180. name: "Macro+",
  22181. height: math.unit(1000, "feet")
  22182. },
  22183. {
  22184. name: "Megamacro",
  22185. height: math.unit(1, "mile")
  22186. },
  22187. ]
  22188. ))
  22189. characterMakers.push(() => makeCharacter(
  22190. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22191. {
  22192. side: {
  22193. height: math.unit(20, "feet"),
  22194. weight: math.unit(30000, "kg"),
  22195. name: "Side",
  22196. image: {
  22197. source: "./media/characters/windar/side.svg",
  22198. extra: 1491 / 1248,
  22199. bottom: 82.56 / 1568
  22200. }
  22201. },
  22202. },
  22203. [
  22204. {
  22205. name: "Normal",
  22206. height: math.unit(20, "feet"),
  22207. default: true
  22208. },
  22209. ]
  22210. ))
  22211. characterMakers.push(() => makeCharacter(
  22212. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22213. {
  22214. side: {
  22215. height: math.unit(15.66, "feet"),
  22216. weight: math.unit(150, "lb"),
  22217. name: "Side",
  22218. image: {
  22219. source: "./media/characters/melody/side.svg",
  22220. extra: 1097 / 944,
  22221. bottom: 11.8 / 1109
  22222. }
  22223. },
  22224. sideOutfit: {
  22225. height: math.unit(15.66, "feet"),
  22226. weight: math.unit(150, "lb"),
  22227. name: "Side (Outfit)",
  22228. image: {
  22229. source: "./media/characters/melody/side-outfit.svg",
  22230. extra: 1097 / 944,
  22231. bottom: 11.8 / 1109
  22232. }
  22233. },
  22234. },
  22235. [
  22236. {
  22237. name: "Normal",
  22238. height: math.unit(15.66, "feet"),
  22239. default: true
  22240. },
  22241. ]
  22242. ))
  22243. characterMakers.push(() => makeCharacter(
  22244. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22245. {
  22246. front: {
  22247. height: math.unit(8, "feet"),
  22248. weight: math.unit(325, "lb"),
  22249. name: "Front",
  22250. image: {
  22251. source: "./media/characters/windera/front.svg",
  22252. extra: 3180 / 2845,
  22253. bottom: 178 / 3365
  22254. }
  22255. },
  22256. },
  22257. [
  22258. {
  22259. name: "Normal",
  22260. height: math.unit(8, "feet"),
  22261. default: true
  22262. },
  22263. ]
  22264. ))
  22265. characterMakers.push(() => makeCharacter(
  22266. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22267. {
  22268. front: {
  22269. height: math.unit(28.75, "feet"),
  22270. weight: math.unit(2000, "kg"),
  22271. name: "Front",
  22272. image: {
  22273. source: "./media/characters/sonear/front.svg",
  22274. extra: 1041.1 / 964.9,
  22275. bottom: 53.7 / 1096.6
  22276. }
  22277. },
  22278. },
  22279. [
  22280. {
  22281. name: "Normal",
  22282. height: math.unit(28.75, "feet"),
  22283. default: true
  22284. },
  22285. ]
  22286. ))
  22287. characterMakers.push(() => makeCharacter(
  22288. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22289. {
  22290. side: {
  22291. height: math.unit(25.5, "feet"),
  22292. weight: math.unit(23000, "kg"),
  22293. name: "Side",
  22294. image: {
  22295. source: "./media/characters/kanara/side.svg"
  22296. }
  22297. },
  22298. },
  22299. [
  22300. {
  22301. name: "Normal",
  22302. height: math.unit(25.5, "feet"),
  22303. default: true
  22304. },
  22305. ]
  22306. ))
  22307. characterMakers.push(() => makeCharacter(
  22308. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22309. {
  22310. side: {
  22311. height: math.unit(10, "feet"),
  22312. weight: math.unit(1000, "kg"),
  22313. name: "Side",
  22314. image: {
  22315. source: "./media/characters/ereus/side.svg",
  22316. extra: 1157 / 959,
  22317. bottom: 153 / 1312.5
  22318. }
  22319. },
  22320. },
  22321. [
  22322. {
  22323. name: "Normal",
  22324. height: math.unit(10, "feet"),
  22325. default: true
  22326. },
  22327. ]
  22328. ))
  22329. characterMakers.push(() => makeCharacter(
  22330. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22331. {
  22332. side: {
  22333. height: math.unit(4.5, "feet"),
  22334. weight: math.unit(500, "lb"),
  22335. name: "Side",
  22336. image: {
  22337. source: "./media/characters/e-ter/side.svg",
  22338. extra: 1550 / 1248,
  22339. bottom: 146 / 1694
  22340. }
  22341. },
  22342. },
  22343. [
  22344. {
  22345. name: "Normal",
  22346. height: math.unit(4.5, "feet"),
  22347. default: true
  22348. },
  22349. ]
  22350. ))
  22351. characterMakers.push(() => makeCharacter(
  22352. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22353. {
  22354. side: {
  22355. height: math.unit(9.7, "feet"),
  22356. weight: math.unit(4000, "kg"),
  22357. name: "Side",
  22358. image: {
  22359. source: "./media/characters/yamie/side.svg"
  22360. }
  22361. },
  22362. },
  22363. [
  22364. {
  22365. name: "Normal",
  22366. height: math.unit(9.7, "feet"),
  22367. default: true
  22368. },
  22369. ]
  22370. ))
  22371. characterMakers.push(() => makeCharacter(
  22372. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22373. {
  22374. front: {
  22375. height: math.unit(50, "feet"),
  22376. weight: math.unit(50000, "kg"),
  22377. name: "Front",
  22378. image: {
  22379. source: "./media/characters/anders/front.svg",
  22380. extra: 570 / 539,
  22381. bottom: 14.7 / 586.7
  22382. }
  22383. },
  22384. },
  22385. [
  22386. {
  22387. name: "Large",
  22388. height: math.unit(50, "feet")
  22389. },
  22390. {
  22391. name: "Macro",
  22392. height: math.unit(2000, "feet"),
  22393. default: true
  22394. },
  22395. {
  22396. name: "Megamacro",
  22397. height: math.unit(12, "miles")
  22398. },
  22399. ]
  22400. ))
  22401. characterMakers.push(() => makeCharacter(
  22402. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22403. {
  22404. front: {
  22405. height: math.unit(7 + 2 / 12, "feet"),
  22406. weight: math.unit(300, "lb"),
  22407. name: "Front",
  22408. image: {
  22409. source: "./media/characters/reban/front.svg",
  22410. extra: 516 / 487,
  22411. bottom: 42.82 / 558.356
  22412. }
  22413. },
  22414. dick: {
  22415. height: math.unit(7 / 5, "feet"),
  22416. name: "Dick",
  22417. image: {
  22418. source: "./media/characters/reban/dick.svg"
  22419. }
  22420. },
  22421. },
  22422. [
  22423. {
  22424. name: "Natural Height",
  22425. height: math.unit(7 + 2 / 12, "feet")
  22426. },
  22427. {
  22428. name: "Macro",
  22429. height: math.unit(500, "feet"),
  22430. default: true
  22431. },
  22432. {
  22433. name: "Canon Height",
  22434. height: math.unit(50, "AU")
  22435. },
  22436. ]
  22437. ))
  22438. characterMakers.push(() => makeCharacter(
  22439. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22440. {
  22441. front: {
  22442. height: math.unit(6, "feet"),
  22443. weight: math.unit(150, "lb"),
  22444. name: "Front",
  22445. image: {
  22446. source: "./media/characters/terrance-keayes/front.svg",
  22447. extra: 1.005,
  22448. bottom: 151 / 1615
  22449. }
  22450. },
  22451. side: {
  22452. height: math.unit(6, "feet"),
  22453. weight: math.unit(150, "lb"),
  22454. name: "Side",
  22455. image: {
  22456. source: "./media/characters/terrance-keayes/side.svg",
  22457. extra: 1.005,
  22458. bottom: 129.4 / 1544
  22459. }
  22460. },
  22461. back: {
  22462. height: math.unit(6, "feet"),
  22463. weight: math.unit(150, "lb"),
  22464. name: "Back",
  22465. image: {
  22466. source: "./media/characters/terrance-keayes/back.svg",
  22467. extra: 1.005,
  22468. bottom: 58.4 / 1557.3
  22469. }
  22470. },
  22471. dick: {
  22472. height: math.unit(6 * 0.208, "feet"),
  22473. name: "Dick",
  22474. image: {
  22475. source: "./media/characters/terrance-keayes/dick.svg"
  22476. }
  22477. },
  22478. },
  22479. [
  22480. {
  22481. name: "Canon Height",
  22482. height: math.unit(35, "miles"),
  22483. default: true
  22484. },
  22485. ]
  22486. ))
  22487. characterMakers.push(() => makeCharacter(
  22488. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22489. {
  22490. front: {
  22491. height: math.unit(6, "feet"),
  22492. weight: math.unit(150, "lb"),
  22493. name: "Front",
  22494. image: {
  22495. source: "./media/characters/ofelia/front.svg",
  22496. extra: 1130/1117,
  22497. bottom: 91/1221
  22498. }
  22499. },
  22500. back: {
  22501. height: math.unit(6, "feet"),
  22502. weight: math.unit(150, "lb"),
  22503. name: "Back",
  22504. image: {
  22505. source: "./media/characters/ofelia/back.svg",
  22506. extra: 1172/1159,
  22507. bottom: 28/1200
  22508. }
  22509. },
  22510. maw: {
  22511. height: math.unit(1, "feet"),
  22512. name: "Maw",
  22513. image: {
  22514. source: "./media/characters/ofelia/maw.svg"
  22515. }
  22516. },
  22517. foot: {
  22518. height: math.unit(1.949, "feet"),
  22519. name: "Foot",
  22520. image: {
  22521. source: "./media/characters/ofelia/foot.svg"
  22522. }
  22523. },
  22524. },
  22525. [
  22526. {
  22527. name: "Canon Height",
  22528. height: math.unit(2000, "miles"),
  22529. default: true
  22530. },
  22531. ]
  22532. ))
  22533. characterMakers.push(() => makeCharacter(
  22534. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22535. {
  22536. front: {
  22537. height: math.unit(6, "feet"),
  22538. weight: math.unit(150, "lb"),
  22539. name: "Front",
  22540. image: {
  22541. source: "./media/characters/samuel/front.svg",
  22542. extra: 265 / 258,
  22543. bottom: 2 / 266.1566
  22544. }
  22545. },
  22546. },
  22547. [
  22548. {
  22549. name: "Macro",
  22550. height: math.unit(100, "feet"),
  22551. default: true
  22552. },
  22553. {
  22554. name: "Full Size",
  22555. height: math.unit(1000, "miles")
  22556. },
  22557. ]
  22558. ))
  22559. characterMakers.push(() => makeCharacter(
  22560. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22561. {
  22562. front: {
  22563. height: math.unit(6, "feet"),
  22564. weight: math.unit(300, "lb"),
  22565. name: "Front",
  22566. image: {
  22567. source: "./media/characters/beishir-kiel/front.svg",
  22568. extra: 569 / 547,
  22569. bottom: 41.9 / 609
  22570. }
  22571. },
  22572. maw: {
  22573. height: math.unit(6 * 0.202, "feet"),
  22574. name: "Maw",
  22575. image: {
  22576. source: "./media/characters/beishir-kiel/maw.svg"
  22577. }
  22578. },
  22579. },
  22580. [
  22581. {
  22582. name: "Macro",
  22583. height: math.unit(300, "feet"),
  22584. default: true
  22585. },
  22586. ]
  22587. ))
  22588. characterMakers.push(() => makeCharacter(
  22589. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22590. {
  22591. front: {
  22592. height: math.unit(5 + 7/12, "feet"),
  22593. weight: math.unit(120, "lb"),
  22594. name: "Front",
  22595. image: {
  22596. source: "./media/characters/logan-grey/front.svg",
  22597. extra: 1836/1738,
  22598. bottom: 108/1944
  22599. }
  22600. },
  22601. back: {
  22602. height: math.unit(5 + 7/12, "feet"),
  22603. weight: math.unit(120, "lb"),
  22604. name: "Back",
  22605. image: {
  22606. source: "./media/characters/logan-grey/back.svg",
  22607. extra: 1880/1794,
  22608. bottom: 24/1904
  22609. }
  22610. },
  22611. frontSfw: {
  22612. height: math.unit(5 + 7/12, "feet"),
  22613. weight: math.unit(120, "lb"),
  22614. name: "Front (SFW)",
  22615. image: {
  22616. source: "./media/characters/logan-grey/front-sfw.svg",
  22617. extra: 1836/1738,
  22618. bottom: 108/1944
  22619. }
  22620. },
  22621. backSfw: {
  22622. height: math.unit(5 + 7/12, "feet"),
  22623. weight: math.unit(120, "lb"),
  22624. name: "Back (SFW)",
  22625. image: {
  22626. source: "./media/characters/logan-grey/back-sfw.svg",
  22627. extra: 1880/1794,
  22628. bottom: 24/1904
  22629. }
  22630. },
  22631. hands: {
  22632. height: math.unit(0.84, "feet"),
  22633. name: "Hands",
  22634. image: {
  22635. source: "./media/characters/logan-grey/hands.svg"
  22636. }
  22637. },
  22638. paws: {
  22639. height: math.unit(0.72, "feet"),
  22640. name: "Paws",
  22641. image: {
  22642. source: "./media/characters/logan-grey/paws.svg"
  22643. }
  22644. },
  22645. cock: {
  22646. height: math.unit(1.45, "feet"),
  22647. name: "Cock",
  22648. image: {
  22649. source: "./media/characters/logan-grey/cock.svg"
  22650. }
  22651. },
  22652. cockAlt: {
  22653. height: math.unit(1.437, "feet"),
  22654. name: "Cock (alt)",
  22655. image: {
  22656. source: "./media/characters/logan-grey/cock-alt.svg"
  22657. }
  22658. },
  22659. },
  22660. [
  22661. {
  22662. name: "Normal",
  22663. height: math.unit(5 + 8 / 12, "feet")
  22664. },
  22665. {
  22666. name: "The 500 Foot Femboy",
  22667. height: math.unit(500, "feet"),
  22668. default: true
  22669. },
  22670. {
  22671. name: "Megmacro",
  22672. height: math.unit(20, "miles")
  22673. },
  22674. ]
  22675. ))
  22676. characterMakers.push(() => makeCharacter(
  22677. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22678. {
  22679. front: {
  22680. height: math.unit(8 + 2 / 12, "feet"),
  22681. weight: math.unit(275, "lb"),
  22682. name: "Front",
  22683. image: {
  22684. source: "./media/characters/draganta/front.svg",
  22685. extra: 1177 / 1135,
  22686. bottom: 33.46 / 1212.1
  22687. }
  22688. },
  22689. },
  22690. [
  22691. {
  22692. name: "Normal",
  22693. height: math.unit(8 + 6 / 12, "feet"),
  22694. default: true
  22695. },
  22696. {
  22697. name: "Macro",
  22698. height: math.unit(150, "feet")
  22699. },
  22700. {
  22701. name: "Megamacro",
  22702. height: math.unit(1000, "miles")
  22703. },
  22704. ]
  22705. ))
  22706. characterMakers.push(() => makeCharacter(
  22707. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22708. {
  22709. front: {
  22710. height: math.unit(1.72, "m"),
  22711. weight: math.unit(80, "lb"),
  22712. name: "Front",
  22713. image: {
  22714. source: "./media/characters/voski/front.svg",
  22715. extra: 2076.22 / 2022.4,
  22716. bottom: 102.7 / 2177.3866
  22717. }
  22718. },
  22719. frontNsfw: {
  22720. height: math.unit(1.72, "m"),
  22721. weight: math.unit(80, "lb"),
  22722. name: "Front (NSFW)",
  22723. image: {
  22724. source: "./media/characters/voski/front-nsfw.svg",
  22725. extra: 2076.22 / 2022.4,
  22726. bottom: 102.7 / 2177.3866
  22727. }
  22728. },
  22729. back: {
  22730. height: math.unit(1.72, "m"),
  22731. weight: math.unit(80, "lb"),
  22732. name: "Back",
  22733. image: {
  22734. source: "./media/characters/voski/back.svg",
  22735. extra: 2104 / 2051,
  22736. bottom: 10.45 / 2113.63
  22737. }
  22738. },
  22739. },
  22740. [
  22741. {
  22742. name: "Normal",
  22743. height: math.unit(1.72, "m")
  22744. },
  22745. {
  22746. name: "Macro",
  22747. height: math.unit(55, "m"),
  22748. default: true
  22749. },
  22750. {
  22751. name: "Macro+",
  22752. height: math.unit(300, "m")
  22753. },
  22754. {
  22755. name: "Macro++",
  22756. height: math.unit(700, "m")
  22757. },
  22758. {
  22759. name: "Macro+++",
  22760. height: math.unit(4500, "m")
  22761. },
  22762. {
  22763. name: "Macro++++",
  22764. height: math.unit(45, "km")
  22765. },
  22766. {
  22767. name: "Macro+++++",
  22768. height: math.unit(1220, "km")
  22769. },
  22770. ]
  22771. ))
  22772. characterMakers.push(() => makeCharacter(
  22773. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22774. {
  22775. front: {
  22776. height: math.unit(2.3, "m"),
  22777. weight: math.unit(304, "kg"),
  22778. name: "Front",
  22779. image: {
  22780. source: "./media/characters/icowom-lee/front.svg",
  22781. extra: 985 / 955,
  22782. bottom: 25.4 / 1012
  22783. }
  22784. },
  22785. fronttentacles: {
  22786. height: math.unit(2.3, "m"),
  22787. weight: math.unit(304, "kg"),
  22788. name: "Front-tentacles",
  22789. image: {
  22790. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22791. extra: 985 / 955,
  22792. bottom: 25.4 / 1012
  22793. }
  22794. },
  22795. back: {
  22796. height: math.unit(2.3, "m"),
  22797. weight: math.unit(304, "kg"),
  22798. name: "Back",
  22799. image: {
  22800. source: "./media/characters/icowom-lee/back.svg",
  22801. extra: 975 / 954,
  22802. bottom: 9.5 / 985
  22803. }
  22804. },
  22805. backtentacles: {
  22806. height: math.unit(2.3, "m"),
  22807. weight: math.unit(304, "kg"),
  22808. name: "Back-tentacles",
  22809. image: {
  22810. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22811. extra: 975 / 954,
  22812. bottom: 9.5 / 985
  22813. }
  22814. },
  22815. frontDressed: {
  22816. height: math.unit(2.3, "m"),
  22817. weight: math.unit(304, "kg"),
  22818. name: "Front (Dressed)",
  22819. image: {
  22820. source: "./media/characters/icowom-lee/front-dressed.svg",
  22821. extra: 3076 / 2933,
  22822. bottom: 51.4 / 3125.1889
  22823. }
  22824. },
  22825. rump: {
  22826. height: math.unit(0.776, "meters"),
  22827. name: "Rump",
  22828. image: {
  22829. source: "./media/characters/icowom-lee/rump.svg"
  22830. }
  22831. },
  22832. genitals: {
  22833. height: math.unit(0.78, "meters"),
  22834. name: "Genitals",
  22835. image: {
  22836. source: "./media/characters/icowom-lee/genitals.svg"
  22837. }
  22838. },
  22839. },
  22840. [
  22841. {
  22842. name: "Normal",
  22843. height: math.unit(2.3, "meters"),
  22844. default: true
  22845. },
  22846. {
  22847. name: "Macro",
  22848. height: math.unit(94, "meters"),
  22849. default: true
  22850. },
  22851. ]
  22852. ))
  22853. characterMakers.push(() => makeCharacter(
  22854. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22855. {
  22856. front: {
  22857. height: math.unit(22, "meters"),
  22858. weight: math.unit(21000, "kg"),
  22859. name: "Front",
  22860. image: {
  22861. source: "./media/characters/shock-diamond/front.svg",
  22862. extra: 2204 / 2053,
  22863. bottom: 65 / 2239.47
  22864. }
  22865. },
  22866. frontNude: {
  22867. height: math.unit(22, "meters"),
  22868. weight: math.unit(21000, "kg"),
  22869. name: "Front (Nude)",
  22870. image: {
  22871. source: "./media/characters/shock-diamond/front-nude.svg",
  22872. extra: 2514 / 2285,
  22873. bottom: 13 / 2527.56
  22874. }
  22875. },
  22876. },
  22877. [
  22878. {
  22879. name: "Normal",
  22880. height: math.unit(3, "meters")
  22881. },
  22882. {
  22883. name: "Macro",
  22884. height: math.unit(22, "meters"),
  22885. default: true
  22886. },
  22887. ]
  22888. ))
  22889. characterMakers.push(() => makeCharacter(
  22890. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22891. {
  22892. front: {
  22893. height: math.unit(5 + 4 / 12, "feet"),
  22894. weight: math.unit(120, "lb"),
  22895. name: "Front",
  22896. image: {
  22897. source: "./media/characters/rory/front.svg",
  22898. extra: 1318/1241,
  22899. bottom: 42/1360
  22900. }
  22901. },
  22902. back: {
  22903. height: math.unit(5 + 4 / 12, "feet"),
  22904. weight: math.unit(120, "lb"),
  22905. name: "Back",
  22906. image: {
  22907. source: "./media/characters/rory/back.svg",
  22908. extra: 1318/1241,
  22909. bottom: 42/1360
  22910. }
  22911. },
  22912. butt: {
  22913. height: math.unit(1.74, "feet"),
  22914. name: "Butt",
  22915. image: {
  22916. source: "./media/characters/rory/butt.svg"
  22917. }
  22918. },
  22919. dick: {
  22920. height: math.unit(1.02, "feet"),
  22921. name: "Dick",
  22922. image: {
  22923. source: "./media/characters/rory/dick.svg"
  22924. }
  22925. },
  22926. paws: {
  22927. height: math.unit(1, "feet"),
  22928. name: "Paws",
  22929. image: {
  22930. source: "./media/characters/rory/paws.svg"
  22931. }
  22932. },
  22933. frontAlt: {
  22934. height: math.unit(5 + 4 / 12, "feet"),
  22935. weight: math.unit(120, "lb"),
  22936. name: "Front (Alt)",
  22937. image: {
  22938. source: "./media/characters/rory/front-alt.svg",
  22939. extra: 589 / 556,
  22940. bottom: 45.7 / 635.76
  22941. }
  22942. },
  22943. frontAltNude: {
  22944. height: math.unit(5 + 4 / 12, "feet"),
  22945. weight: math.unit(120, "lb"),
  22946. name: "Front (Alt, Nude)",
  22947. image: {
  22948. source: "./media/characters/rory/front-alt-nude.svg",
  22949. extra: 589 / 556,
  22950. bottom: 45.7 / 635.76
  22951. }
  22952. },
  22953. side: {
  22954. height: math.unit(5 + 4 / 12, "feet"),
  22955. weight: math.unit(120, "lb"),
  22956. name: "Side",
  22957. image: {
  22958. source: "./media/characters/rory/side.svg",
  22959. extra: 597 / 564,
  22960. bottom: 55 / 653
  22961. }
  22962. },
  22963. backAlt: {
  22964. height: math.unit(5 + 4 / 12, "feet"),
  22965. weight: math.unit(120, "lb"),
  22966. name: "Back (Alt)",
  22967. image: {
  22968. source: "./media/characters/rory/back-alt.svg",
  22969. extra: 620 / 585,
  22970. bottom: 8.86 / 630.43
  22971. }
  22972. },
  22973. dickAlt: {
  22974. height: math.unit(0.86, "feet"),
  22975. name: "Dick (Alt)",
  22976. image: {
  22977. source: "./media/characters/rory/dick-alt.svg"
  22978. }
  22979. },
  22980. },
  22981. [
  22982. {
  22983. name: "Normal",
  22984. height: math.unit(5 + 4 / 12, "feet"),
  22985. default: true
  22986. },
  22987. {
  22988. name: "Macro",
  22989. height: math.unit(100, "feet")
  22990. },
  22991. {
  22992. name: "Macro+",
  22993. height: math.unit(140, "feet")
  22994. },
  22995. {
  22996. name: "Macro++",
  22997. height: math.unit(300, "feet")
  22998. },
  22999. ]
  23000. ))
  23001. characterMakers.push(() => makeCharacter(
  23002. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23003. {
  23004. front: {
  23005. height: math.unit(5 + 9 / 12, "feet"),
  23006. weight: math.unit(190, "lb"),
  23007. name: "Front",
  23008. image: {
  23009. source: "./media/characters/sprisk/front.svg",
  23010. extra: 1225 / 1180,
  23011. bottom: 42.7 / 1266.4
  23012. }
  23013. },
  23014. frontNsfw: {
  23015. height: math.unit(5 + 9 / 12, "feet"),
  23016. weight: math.unit(190, "lb"),
  23017. name: "Front (NSFW)",
  23018. image: {
  23019. source: "./media/characters/sprisk/front-nsfw.svg",
  23020. extra: 1225 / 1180,
  23021. bottom: 42.7 / 1266.4
  23022. }
  23023. },
  23024. back: {
  23025. height: math.unit(5 + 9 / 12, "feet"),
  23026. weight: math.unit(190, "lb"),
  23027. name: "Back",
  23028. image: {
  23029. source: "./media/characters/sprisk/back.svg",
  23030. extra: 1247 / 1200,
  23031. bottom: 5.6 / 1253.04
  23032. }
  23033. },
  23034. },
  23035. [
  23036. {
  23037. name: "Tiny",
  23038. height: math.unit(2, "inches")
  23039. },
  23040. {
  23041. name: "Normal",
  23042. height: math.unit(5 + 9 / 12, "feet"),
  23043. default: true
  23044. },
  23045. {
  23046. name: "Mini Macro",
  23047. height: math.unit(18, "feet")
  23048. },
  23049. {
  23050. name: "Macro",
  23051. height: math.unit(100, "feet")
  23052. },
  23053. {
  23054. name: "MACRO",
  23055. height: math.unit(50, "miles")
  23056. },
  23057. {
  23058. name: "M A C R O",
  23059. height: math.unit(300, "miles")
  23060. },
  23061. ]
  23062. ))
  23063. characterMakers.push(() => makeCharacter(
  23064. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23065. {
  23066. side: {
  23067. height: math.unit(15.6, "meters"),
  23068. weight: math.unit(700000, "kg"),
  23069. name: "Side",
  23070. image: {
  23071. source: "./media/characters/bunsen/side.svg",
  23072. extra: 1644 / 358
  23073. }
  23074. },
  23075. foot: {
  23076. height: math.unit(1.611 * 1644 / 358, "meter"),
  23077. name: "Foot",
  23078. image: {
  23079. source: "./media/characters/bunsen/foot.svg"
  23080. }
  23081. },
  23082. },
  23083. [
  23084. {
  23085. name: "Small",
  23086. height: math.unit(10, "feet")
  23087. },
  23088. {
  23089. name: "Normal",
  23090. height: math.unit(15.6, "meters"),
  23091. default: true
  23092. },
  23093. ]
  23094. ))
  23095. characterMakers.push(() => makeCharacter(
  23096. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23097. {
  23098. front: {
  23099. height: math.unit(4 + 11 / 12, "feet"),
  23100. weight: math.unit(140, "lb"),
  23101. name: "Front",
  23102. image: {
  23103. source: "./media/characters/sesh/front.svg",
  23104. extra: 3420 / 3231,
  23105. bottom: 72 / 3949.5
  23106. }
  23107. },
  23108. },
  23109. [
  23110. {
  23111. name: "Normal",
  23112. height: math.unit(4 + 11 / 12, "feet")
  23113. },
  23114. {
  23115. name: "Grown",
  23116. height: math.unit(15, "feet"),
  23117. default: true
  23118. },
  23119. {
  23120. name: "Macro",
  23121. height: math.unit(1500, "feet")
  23122. },
  23123. {
  23124. name: "Megamacro",
  23125. height: math.unit(30, "miles")
  23126. },
  23127. {
  23128. name: "Continental",
  23129. height: math.unit(3000, "miles")
  23130. },
  23131. {
  23132. name: "Gravity Mass",
  23133. height: math.unit(300000, "miles")
  23134. },
  23135. {
  23136. name: "Planet Buster",
  23137. height: math.unit(30000000, "miles")
  23138. },
  23139. {
  23140. name: "Big",
  23141. height: math.unit(3000000000, "miles")
  23142. },
  23143. ]
  23144. ))
  23145. characterMakers.push(() => makeCharacter(
  23146. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23147. {
  23148. front: {
  23149. height: math.unit(9, "feet"),
  23150. weight: math.unit(350, "lb"),
  23151. name: "Front",
  23152. image: {
  23153. source: "./media/characters/pepper/front.svg",
  23154. extra: 1448 / 1312,
  23155. bottom: 9.4 / 1457.88
  23156. }
  23157. },
  23158. back: {
  23159. height: math.unit(9, "feet"),
  23160. weight: math.unit(350, "lb"),
  23161. name: "Back",
  23162. image: {
  23163. source: "./media/characters/pepper/back.svg",
  23164. extra: 1423 / 1300,
  23165. bottom: 4.6 / 1429
  23166. }
  23167. },
  23168. maw: {
  23169. height: math.unit(0.932, "feet"),
  23170. name: "Maw",
  23171. image: {
  23172. source: "./media/characters/pepper/maw.svg"
  23173. }
  23174. },
  23175. },
  23176. [
  23177. {
  23178. name: "Normal",
  23179. height: math.unit(9, "feet"),
  23180. default: true
  23181. },
  23182. ]
  23183. ))
  23184. characterMakers.push(() => makeCharacter(
  23185. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23186. {
  23187. front: {
  23188. height: math.unit(6, "feet"),
  23189. weight: math.unit(150, "lb"),
  23190. name: "Front",
  23191. image: {
  23192. source: "./media/characters/maelstrom/front.svg",
  23193. extra: 2100 / 1883,
  23194. bottom: 94 / 2196.7
  23195. }
  23196. },
  23197. },
  23198. [
  23199. {
  23200. name: "Less Kaiju",
  23201. height: math.unit(200, "feet")
  23202. },
  23203. {
  23204. name: "Kaiju",
  23205. height: math.unit(400, "feet"),
  23206. default: true
  23207. },
  23208. {
  23209. name: "Kaiju-er",
  23210. height: math.unit(600, "feet")
  23211. },
  23212. ]
  23213. ))
  23214. characterMakers.push(() => makeCharacter(
  23215. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23216. {
  23217. front: {
  23218. height: math.unit(6 + 5 / 12, "feet"),
  23219. weight: math.unit(180, "lb"),
  23220. name: "Front",
  23221. image: {
  23222. source: "./media/characters/lexir/front.svg",
  23223. extra: 180 / 172,
  23224. bottom: 12 / 192
  23225. }
  23226. },
  23227. back: {
  23228. height: math.unit(6 + 5 / 12, "feet"),
  23229. weight: math.unit(180, "lb"),
  23230. name: "Back",
  23231. image: {
  23232. source: "./media/characters/lexir/back.svg",
  23233. extra: 183.84 / 175.5,
  23234. bottom: 3.1 / 187
  23235. }
  23236. },
  23237. },
  23238. [
  23239. {
  23240. name: "Very Smal",
  23241. height: math.unit(1, "nm")
  23242. },
  23243. {
  23244. name: "Normal",
  23245. height: math.unit(6 + 5 / 12, "feet"),
  23246. default: true
  23247. },
  23248. {
  23249. name: "Macro",
  23250. height: math.unit(1, "mile")
  23251. },
  23252. {
  23253. name: "Megamacro",
  23254. height: math.unit(50, "miles")
  23255. },
  23256. ]
  23257. ))
  23258. characterMakers.push(() => makeCharacter(
  23259. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23260. {
  23261. front: {
  23262. height: math.unit(1.5, "meters"),
  23263. weight: math.unit(100, "lb"),
  23264. name: "Front",
  23265. image: {
  23266. source: "./media/characters/maksio/front.svg",
  23267. extra: 1549 / 1531,
  23268. bottom: 123.7 / 1674.5429
  23269. }
  23270. },
  23271. back: {
  23272. height: math.unit(1.5, "meters"),
  23273. weight: math.unit(100, "lb"),
  23274. name: "Back",
  23275. image: {
  23276. source: "./media/characters/maksio/back.svg",
  23277. extra: 1541 / 1509,
  23278. bottom: 97 / 1639
  23279. }
  23280. },
  23281. hand: {
  23282. height: math.unit(0.621, "feet"),
  23283. name: "Hand",
  23284. image: {
  23285. source: "./media/characters/maksio/hand.svg"
  23286. }
  23287. },
  23288. foot: {
  23289. height: math.unit(1.611, "feet"),
  23290. name: "Foot",
  23291. image: {
  23292. source: "./media/characters/maksio/foot.svg"
  23293. }
  23294. },
  23295. },
  23296. [
  23297. {
  23298. name: "Shrunken",
  23299. height: math.unit(10, "cm")
  23300. },
  23301. {
  23302. name: "Normal",
  23303. height: math.unit(150, "cm"),
  23304. default: true
  23305. },
  23306. ]
  23307. ))
  23308. characterMakers.push(() => makeCharacter(
  23309. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23310. {
  23311. front: {
  23312. height: math.unit(100, "feet"),
  23313. name: "Front",
  23314. image: {
  23315. source: "./media/characters/erza-bear/front.svg",
  23316. extra: 2449 / 2390,
  23317. bottom: 46 / 2494
  23318. }
  23319. },
  23320. back: {
  23321. height: math.unit(100, "feet"),
  23322. name: "Back",
  23323. image: {
  23324. source: "./media/characters/erza-bear/back.svg",
  23325. extra: 2489 / 2430,
  23326. bottom: 85.4 / 2480
  23327. }
  23328. },
  23329. tail: {
  23330. height: math.unit(42, "feet"),
  23331. name: "Tail",
  23332. image: {
  23333. source: "./media/characters/erza-bear/tail.svg"
  23334. }
  23335. },
  23336. tongue: {
  23337. height: math.unit(8, "feet"),
  23338. name: "Tongue",
  23339. image: {
  23340. source: "./media/characters/erza-bear/tongue.svg"
  23341. }
  23342. },
  23343. dick: {
  23344. height: math.unit(10.5, "feet"),
  23345. name: "Dick",
  23346. image: {
  23347. source: "./media/characters/erza-bear/dick.svg"
  23348. }
  23349. },
  23350. dickVertical: {
  23351. height: math.unit(16.9, "feet"),
  23352. name: "Dick (Vertical)",
  23353. image: {
  23354. source: "./media/characters/erza-bear/dick-vertical.svg"
  23355. }
  23356. },
  23357. },
  23358. [
  23359. {
  23360. name: "Macro",
  23361. height: math.unit(100, "feet"),
  23362. default: true
  23363. },
  23364. ]
  23365. ))
  23366. characterMakers.push(() => makeCharacter(
  23367. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23368. {
  23369. front: {
  23370. height: math.unit(172, "cm"),
  23371. weight: math.unit(73, "kg"),
  23372. name: "Front",
  23373. image: {
  23374. source: "./media/characters/violet-flor/front.svg",
  23375. extra: 1530 / 1442,
  23376. bottom: 61.9 / 1588.8
  23377. }
  23378. },
  23379. back: {
  23380. height: math.unit(180, "cm"),
  23381. weight: math.unit(73, "kg"),
  23382. name: "Back",
  23383. image: {
  23384. source: "./media/characters/violet-flor/back.svg",
  23385. extra: 1692 / 1630,
  23386. bottom: 20 / 1712
  23387. }
  23388. },
  23389. },
  23390. [
  23391. {
  23392. name: "Normal",
  23393. height: math.unit(172, "cm"),
  23394. default: true
  23395. },
  23396. ]
  23397. ))
  23398. characterMakers.push(() => makeCharacter(
  23399. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23400. {
  23401. front: {
  23402. height: math.unit(6, "feet"),
  23403. weight: math.unit(220, "lb"),
  23404. name: "Front",
  23405. image: {
  23406. source: "./media/characters/lynn-rhea/front.svg",
  23407. extra: 310 / 273
  23408. }
  23409. },
  23410. back: {
  23411. height: math.unit(6, "feet"),
  23412. weight: math.unit(220, "lb"),
  23413. name: "Back",
  23414. image: {
  23415. source: "./media/characters/lynn-rhea/back.svg",
  23416. extra: 310 / 273
  23417. }
  23418. },
  23419. dicks: {
  23420. height: math.unit(0.9, "feet"),
  23421. name: "Dicks",
  23422. image: {
  23423. source: "./media/characters/lynn-rhea/dicks.svg"
  23424. }
  23425. },
  23426. slit: {
  23427. height: math.unit(0.4, "feet"),
  23428. name: "Slit",
  23429. image: {
  23430. source: "./media/characters/lynn-rhea/slit.svg"
  23431. }
  23432. },
  23433. },
  23434. [
  23435. {
  23436. name: "Micro",
  23437. height: math.unit(1, "inch")
  23438. },
  23439. {
  23440. name: "Macro",
  23441. height: math.unit(60, "feet"),
  23442. default: true
  23443. },
  23444. {
  23445. name: "Megamacro",
  23446. height: math.unit(2, "miles")
  23447. },
  23448. {
  23449. name: "Gigamacro",
  23450. height: math.unit(3, "earths")
  23451. },
  23452. {
  23453. name: "Galactic",
  23454. height: math.unit(0.8, "galaxies")
  23455. },
  23456. ]
  23457. ))
  23458. characterMakers.push(() => makeCharacter(
  23459. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23460. {
  23461. front: {
  23462. height: math.unit(1600, "feet"),
  23463. weight: math.unit(85758785169, "kg"),
  23464. name: "Front",
  23465. image: {
  23466. source: "./media/characters/valathos/front.svg",
  23467. extra: 1451 / 1339
  23468. }
  23469. },
  23470. },
  23471. [
  23472. {
  23473. name: "Macro",
  23474. height: math.unit(1600, "feet"),
  23475. default: true
  23476. },
  23477. ]
  23478. ))
  23479. characterMakers.push(() => makeCharacter(
  23480. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23481. {
  23482. front: {
  23483. height: math.unit(7 + 5 / 12, "feet"),
  23484. weight: math.unit(300, "lb"),
  23485. name: "Front",
  23486. image: {
  23487. source: "./media/characters/azula/front.svg",
  23488. extra: 3208 / 2880,
  23489. bottom: 80.2 / 3277
  23490. }
  23491. },
  23492. back: {
  23493. height: math.unit(7 + 5 / 12, "feet"),
  23494. weight: math.unit(300, "lb"),
  23495. name: "Back",
  23496. image: {
  23497. source: "./media/characters/azula/back.svg",
  23498. extra: 3169 / 2822,
  23499. bottom: 150.6 / 3321
  23500. }
  23501. },
  23502. },
  23503. [
  23504. {
  23505. name: "Normal",
  23506. height: math.unit(7 + 5 / 12, "feet"),
  23507. default: true
  23508. },
  23509. {
  23510. name: "Big",
  23511. height: math.unit(20, "feet")
  23512. },
  23513. ]
  23514. ))
  23515. characterMakers.push(() => makeCharacter(
  23516. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23517. {
  23518. front: {
  23519. height: math.unit(5 + 1 / 12, "feet"),
  23520. weight: math.unit(110, "lb"),
  23521. name: "Front",
  23522. image: {
  23523. source: "./media/characters/rupert/front.svg",
  23524. extra: 1549 / 1495,
  23525. bottom: 54.2 / 1604.4
  23526. }
  23527. },
  23528. },
  23529. [
  23530. {
  23531. name: "Normal",
  23532. height: math.unit(5 + 1 / 12, "feet"),
  23533. default: true
  23534. },
  23535. ]
  23536. ))
  23537. characterMakers.push(() => makeCharacter(
  23538. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23539. {
  23540. front: {
  23541. height: math.unit(8 + 4 / 12, "feet"),
  23542. weight: math.unit(350, "lb"),
  23543. name: "Front",
  23544. image: {
  23545. source: "./media/characters/sheera-castellar/front.svg",
  23546. extra: 1957 / 1894,
  23547. bottom: 26.97 / 1975.017
  23548. }
  23549. },
  23550. side: {
  23551. height: math.unit(8 + 4 / 12, "feet"),
  23552. weight: math.unit(350, "lb"),
  23553. name: "Side",
  23554. image: {
  23555. source: "./media/characters/sheera-castellar/side.svg",
  23556. extra: 1957 / 1894
  23557. }
  23558. },
  23559. back: {
  23560. height: math.unit(8 + 4 / 12, "feet"),
  23561. weight: math.unit(350, "lb"),
  23562. name: "Back",
  23563. image: {
  23564. source: "./media/characters/sheera-castellar/back.svg",
  23565. extra: 1957 / 1894
  23566. }
  23567. },
  23568. angled: {
  23569. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23570. weight: math.unit(350, "lb"),
  23571. name: "Angled",
  23572. image: {
  23573. source: "./media/characters/sheera-castellar/angled.svg",
  23574. extra: 1807 / 1707,
  23575. bottom: 68 / 1875
  23576. }
  23577. },
  23578. genitals: {
  23579. height: math.unit(2.2, "feet"),
  23580. name: "Genitals",
  23581. image: {
  23582. source: "./media/characters/sheera-castellar/genitals.svg"
  23583. }
  23584. },
  23585. taur: {
  23586. height: math.unit(10 + 6/12, "feet"),
  23587. name: "Taur",
  23588. image: {
  23589. source: "./media/characters/sheera-castellar/taur.svg",
  23590. extra: 2017/1909,
  23591. bottom: 185/2202
  23592. }
  23593. },
  23594. },
  23595. [
  23596. {
  23597. name: "Normal",
  23598. height: math.unit(8 + 4 / 12, "feet")
  23599. },
  23600. {
  23601. name: "Macro",
  23602. height: math.unit(150, "feet"),
  23603. default: true
  23604. },
  23605. {
  23606. name: "Macro+",
  23607. height: math.unit(800, "feet")
  23608. },
  23609. ]
  23610. ))
  23611. characterMakers.push(() => makeCharacter(
  23612. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23613. {
  23614. front: {
  23615. height: math.unit(6, "feet"),
  23616. weight: math.unit(150, "lb"),
  23617. name: "Front",
  23618. image: {
  23619. source: "./media/characters/jaipur/front.svg",
  23620. extra: 3860 / 3731,
  23621. bottom: 287 / 4140
  23622. }
  23623. },
  23624. back: {
  23625. height: math.unit(6, "feet"),
  23626. weight: math.unit(150, "lb"),
  23627. name: "Back",
  23628. image: {
  23629. source: "./media/characters/jaipur/back.svg",
  23630. extra: 4060 / 3930,
  23631. bottom: 151 / 4200
  23632. }
  23633. },
  23634. },
  23635. [
  23636. {
  23637. name: "Normal",
  23638. height: math.unit(1.85, "meters"),
  23639. default: true
  23640. },
  23641. {
  23642. name: "Macro",
  23643. height: math.unit(150, "meters")
  23644. },
  23645. {
  23646. name: "Macro+",
  23647. height: math.unit(0.5, "miles")
  23648. },
  23649. {
  23650. name: "Macro++",
  23651. height: math.unit(2.5, "miles")
  23652. },
  23653. {
  23654. name: "Macro+++",
  23655. height: math.unit(12, "miles")
  23656. },
  23657. {
  23658. name: "Macro++++",
  23659. height: math.unit(120, "miles")
  23660. },
  23661. {
  23662. name: "Macro+++++",
  23663. height: math.unit(1200, "miles")
  23664. },
  23665. ]
  23666. ))
  23667. characterMakers.push(() => makeCharacter(
  23668. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23669. {
  23670. front: {
  23671. height: math.unit(6, "feet"),
  23672. weight: math.unit(150, "lb"),
  23673. name: "Front",
  23674. image: {
  23675. source: "./media/characters/sheila-wolf/front.svg",
  23676. extra: 1931 / 1808,
  23677. bottom: 29.5 / 1960
  23678. }
  23679. },
  23680. dick: {
  23681. height: math.unit(1.464, "feet"),
  23682. name: "Dick",
  23683. image: {
  23684. source: "./media/characters/sheila-wolf/dick.svg"
  23685. }
  23686. },
  23687. muzzle: {
  23688. height: math.unit(0.513, "feet"),
  23689. name: "Muzzle",
  23690. image: {
  23691. source: "./media/characters/sheila-wolf/muzzle.svg"
  23692. }
  23693. },
  23694. },
  23695. [
  23696. {
  23697. name: "Macro",
  23698. height: math.unit(70, "feet"),
  23699. default: true
  23700. },
  23701. ]
  23702. ))
  23703. characterMakers.push(() => makeCharacter(
  23704. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23705. {
  23706. front: {
  23707. height: math.unit(32, "meters"),
  23708. weight: math.unit(300000, "kg"),
  23709. name: "Front",
  23710. image: {
  23711. source: "./media/characters/almor/front.svg",
  23712. extra: 1408 / 1322,
  23713. bottom: 94.6 / 1506.5
  23714. }
  23715. },
  23716. },
  23717. [
  23718. {
  23719. name: "Macro",
  23720. height: math.unit(32, "meters"),
  23721. default: true
  23722. },
  23723. ]
  23724. ))
  23725. characterMakers.push(() => makeCharacter(
  23726. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23727. {
  23728. front: {
  23729. height: math.unit(7, "feet"),
  23730. weight: math.unit(200, "lb"),
  23731. name: "Front",
  23732. image: {
  23733. source: "./media/characters/silver/front.svg",
  23734. extra: 472.1 / 450.5,
  23735. bottom: 26.5 / 499.424
  23736. }
  23737. },
  23738. },
  23739. [
  23740. {
  23741. name: "Normal",
  23742. height: math.unit(7, "feet"),
  23743. default: true
  23744. },
  23745. {
  23746. name: "Macro",
  23747. height: math.unit(800, "feet")
  23748. },
  23749. {
  23750. name: "Megamacro",
  23751. height: math.unit(250, "miles")
  23752. },
  23753. ]
  23754. ))
  23755. characterMakers.push(() => makeCharacter(
  23756. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23757. {
  23758. front: {
  23759. height: math.unit(6, "feet"),
  23760. weight: math.unit(150, "lb"),
  23761. name: "Front",
  23762. image: {
  23763. source: "./media/characters/pliskin/front.svg",
  23764. extra: 1469 / 1359,
  23765. bottom: 70 / 1540
  23766. }
  23767. },
  23768. },
  23769. [
  23770. {
  23771. name: "Micro",
  23772. height: math.unit(3, "inches")
  23773. },
  23774. {
  23775. name: "Normal",
  23776. height: math.unit(5 + 11 / 12, "feet"),
  23777. default: true
  23778. },
  23779. {
  23780. name: "Macro",
  23781. height: math.unit(120, "feet")
  23782. },
  23783. ]
  23784. ))
  23785. characterMakers.push(() => makeCharacter(
  23786. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23787. {
  23788. front: {
  23789. height: math.unit(6, "feet"),
  23790. weight: math.unit(150, "lb"),
  23791. name: "Front",
  23792. image: {
  23793. source: "./media/characters/sammy/front.svg",
  23794. extra: 1193 / 1089,
  23795. bottom: 30.5 / 1226
  23796. }
  23797. },
  23798. },
  23799. [
  23800. {
  23801. name: "Macro",
  23802. height: math.unit(1700, "feet"),
  23803. default: true
  23804. },
  23805. {
  23806. name: "Examacro",
  23807. height: math.unit(2.5e9, "lightyears")
  23808. },
  23809. ]
  23810. ))
  23811. characterMakers.push(() => makeCharacter(
  23812. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23813. {
  23814. front: {
  23815. height: math.unit(21, "meters"),
  23816. weight: math.unit(12, "tonnes"),
  23817. name: "Front",
  23818. image: {
  23819. source: "./media/characters/kuru/front.svg",
  23820. extra: 4301 / 3785,
  23821. bottom: 371.3 / 4691
  23822. }
  23823. },
  23824. },
  23825. [
  23826. {
  23827. name: "Macro",
  23828. height: math.unit(21, "meters"),
  23829. default: true
  23830. },
  23831. ]
  23832. ))
  23833. characterMakers.push(() => makeCharacter(
  23834. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23835. {
  23836. front: {
  23837. height: math.unit(23, "meters"),
  23838. weight: math.unit(12.2, "tonnes"),
  23839. name: "Front",
  23840. image: {
  23841. source: "./media/characters/rakka/front.svg",
  23842. extra: 4670 / 4169,
  23843. bottom: 301 / 4968.7
  23844. }
  23845. },
  23846. },
  23847. [
  23848. {
  23849. name: "Macro",
  23850. height: math.unit(23, "meters"),
  23851. default: true
  23852. },
  23853. ]
  23854. ))
  23855. characterMakers.push(() => makeCharacter(
  23856. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23857. {
  23858. front: {
  23859. height: math.unit(6, "feet"),
  23860. weight: math.unit(150, "lb"),
  23861. name: "Front",
  23862. image: {
  23863. source: "./media/characters/rhys-feline/front.svg",
  23864. extra: 2488 / 2308,
  23865. bottom: 35.67 / 2519.19
  23866. }
  23867. },
  23868. },
  23869. [
  23870. {
  23871. name: "Really Small",
  23872. height: math.unit(1, "nm")
  23873. },
  23874. {
  23875. name: "Micro",
  23876. height: math.unit(4, "inches")
  23877. },
  23878. {
  23879. name: "Normal",
  23880. height: math.unit(4 + 10 / 12, "feet"),
  23881. default: true
  23882. },
  23883. {
  23884. name: "Macro",
  23885. height: math.unit(100, "feet")
  23886. },
  23887. {
  23888. name: "Megamacto",
  23889. height: math.unit(50, "miles")
  23890. },
  23891. ]
  23892. ))
  23893. characterMakers.push(() => makeCharacter(
  23894. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23895. {
  23896. side: {
  23897. height: math.unit(30, "feet"),
  23898. weight: math.unit(35000, "kg"),
  23899. name: "Side",
  23900. image: {
  23901. source: "./media/characters/alydar/side.svg",
  23902. extra: 234 / 222,
  23903. bottom: 6.5 / 241
  23904. }
  23905. },
  23906. front: {
  23907. height: math.unit(30, "feet"),
  23908. weight: math.unit(35000, "kg"),
  23909. name: "Front",
  23910. image: {
  23911. source: "./media/characters/alydar/front.svg",
  23912. extra: 223.37 / 210.2,
  23913. bottom: 22.3 / 246.76
  23914. }
  23915. },
  23916. top: {
  23917. height: math.unit(64.54, "feet"),
  23918. weight: math.unit(35000, "kg"),
  23919. name: "Top",
  23920. image: {
  23921. source: "./media/characters/alydar/top.svg"
  23922. }
  23923. },
  23924. anthro: {
  23925. height: math.unit(30, "feet"),
  23926. weight: math.unit(9000, "kg"),
  23927. name: "Anthro",
  23928. image: {
  23929. source: "./media/characters/alydar/anthro.svg",
  23930. extra: 432 / 421,
  23931. bottom: 7.18 / 440
  23932. }
  23933. },
  23934. maw: {
  23935. height: math.unit(11.693, "feet"),
  23936. name: "Maw",
  23937. image: {
  23938. source: "./media/characters/alydar/maw.svg"
  23939. }
  23940. },
  23941. head: {
  23942. height: math.unit(11.693, "feet"),
  23943. name: "Head",
  23944. image: {
  23945. source: "./media/characters/alydar/head.svg"
  23946. }
  23947. },
  23948. headAlt: {
  23949. height: math.unit(12.861, "feet"),
  23950. name: "Head (Alt)",
  23951. image: {
  23952. source: "./media/characters/alydar/head-alt.svg"
  23953. }
  23954. },
  23955. wing: {
  23956. height: math.unit(20.712, "feet"),
  23957. name: "Wing",
  23958. image: {
  23959. source: "./media/characters/alydar/wing.svg"
  23960. }
  23961. },
  23962. wingFeather: {
  23963. height: math.unit(9.662, "feet"),
  23964. name: "Wing Feather",
  23965. image: {
  23966. source: "./media/characters/alydar/wing-feather.svg"
  23967. }
  23968. },
  23969. countourFeather: {
  23970. height: math.unit(4.154, "feet"),
  23971. name: "Contour Feather",
  23972. image: {
  23973. source: "./media/characters/alydar/contour-feather.svg"
  23974. }
  23975. },
  23976. },
  23977. [
  23978. {
  23979. name: "Diplomatic",
  23980. height: math.unit(13, "feet"),
  23981. default: true
  23982. },
  23983. {
  23984. name: "Small",
  23985. height: math.unit(30, "feet")
  23986. },
  23987. {
  23988. name: "Normal",
  23989. height: math.unit(95, "feet"),
  23990. default: true
  23991. },
  23992. {
  23993. name: "Large",
  23994. height: math.unit(285, "feet")
  23995. },
  23996. {
  23997. name: "Incomprehensible",
  23998. height: math.unit(450, "megameters")
  23999. },
  24000. ]
  24001. ))
  24002. characterMakers.push(() => makeCharacter(
  24003. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24004. {
  24005. side: {
  24006. height: math.unit(11, "feet"),
  24007. weight: math.unit(1750, "kg"),
  24008. name: "Side",
  24009. image: {
  24010. source: "./media/characters/selicia/side.svg",
  24011. extra: 440 / 396,
  24012. bottom: 24.8 / 465.979
  24013. }
  24014. },
  24015. maw: {
  24016. height: math.unit(4.665, "feet"),
  24017. name: "Maw",
  24018. image: {
  24019. source: "./media/characters/selicia/maw.svg"
  24020. }
  24021. },
  24022. },
  24023. [
  24024. {
  24025. name: "Normal",
  24026. height: math.unit(11, "feet"),
  24027. default: true
  24028. },
  24029. ]
  24030. ))
  24031. characterMakers.push(() => makeCharacter(
  24032. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24033. {
  24034. side: {
  24035. height: math.unit(2 + 6 / 12, "feet"),
  24036. weight: math.unit(30, "lb"),
  24037. name: "Side",
  24038. image: {
  24039. source: "./media/characters/layla/side.svg",
  24040. extra: 244 / 188,
  24041. bottom: 18.2 / 262.1
  24042. }
  24043. },
  24044. back: {
  24045. height: math.unit(2 + 6 / 12, "feet"),
  24046. weight: math.unit(30, "lb"),
  24047. name: "Back",
  24048. image: {
  24049. source: "./media/characters/layla/back.svg",
  24050. extra: 308 / 241.5,
  24051. bottom: 8.9 / 316.8
  24052. }
  24053. },
  24054. cumming: {
  24055. height: math.unit(2 + 6 / 12, "feet"),
  24056. weight: math.unit(30, "lb"),
  24057. name: "Cumming",
  24058. image: {
  24059. source: "./media/characters/layla/cumming.svg",
  24060. extra: 342 / 279,
  24061. bottom: 595 / 938
  24062. }
  24063. },
  24064. dickFlaccid: {
  24065. height: math.unit(2.595, "feet"),
  24066. name: "Flaccid Genitals",
  24067. image: {
  24068. source: "./media/characters/layla/dick-flaccid.svg"
  24069. }
  24070. },
  24071. dickErect: {
  24072. height: math.unit(2.359, "feet"),
  24073. name: "Erect Genitals",
  24074. image: {
  24075. source: "./media/characters/layla/dick-erect.svg"
  24076. }
  24077. },
  24078. dragon: {
  24079. height: math.unit(40, "feet"),
  24080. name: "Dragon",
  24081. image: {
  24082. source: "./media/characters/layla/dragon.svg",
  24083. extra: 610/535,
  24084. bottom: 367/977
  24085. }
  24086. },
  24087. taur: {
  24088. height: math.unit(30, "feet"),
  24089. name: "Taur",
  24090. image: {
  24091. source: "./media/characters/layla/taur.svg",
  24092. extra: 1268/1199,
  24093. bottom: 112/1380
  24094. }
  24095. },
  24096. },
  24097. [
  24098. {
  24099. name: "Micro",
  24100. height: math.unit(1, "inch")
  24101. },
  24102. {
  24103. name: "Small",
  24104. height: math.unit(1, "foot")
  24105. },
  24106. {
  24107. name: "Normal",
  24108. height: math.unit(2 + 6 / 12, "feet"),
  24109. default: true
  24110. },
  24111. {
  24112. name: "Macro",
  24113. height: math.unit(200, "feet")
  24114. },
  24115. {
  24116. name: "Megamacro",
  24117. height: math.unit(1000, "miles")
  24118. },
  24119. {
  24120. name: "Planetary",
  24121. height: math.unit(8000, "miles")
  24122. },
  24123. {
  24124. name: "True Layla",
  24125. height: math.unit(200000 * 7, "multiverses")
  24126. },
  24127. ]
  24128. ))
  24129. characterMakers.push(() => makeCharacter(
  24130. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24131. {
  24132. back: {
  24133. height: math.unit(10.5, "feet"),
  24134. weight: math.unit(800, "lb"),
  24135. name: "Back",
  24136. image: {
  24137. source: "./media/characters/knox/back.svg",
  24138. extra: 1486 / 1089,
  24139. bottom: 107 / 1601.4
  24140. }
  24141. },
  24142. side: {
  24143. height: math.unit(10.5, "feet"),
  24144. weight: math.unit(800, "lb"),
  24145. name: "Side",
  24146. image: {
  24147. source: "./media/characters/knox/side.svg",
  24148. extra: 244 / 218,
  24149. bottom: 14 / 260
  24150. }
  24151. },
  24152. },
  24153. [
  24154. {
  24155. name: "Compact",
  24156. height: math.unit(10.5, "feet"),
  24157. default: true
  24158. },
  24159. {
  24160. name: "Dynamax",
  24161. height: math.unit(210, "feet")
  24162. },
  24163. {
  24164. name: "Full Macro",
  24165. height: math.unit(850, "feet")
  24166. },
  24167. ]
  24168. ))
  24169. characterMakers.push(() => makeCharacter(
  24170. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24171. {
  24172. front: {
  24173. height: math.unit(28, "feet"),
  24174. weight: math.unit(10500, "lb"),
  24175. name: "Front",
  24176. image: {
  24177. source: "./media/characters/kayda/front.svg",
  24178. extra: 1536 / 1428,
  24179. bottom: 68.7 / 1603
  24180. }
  24181. },
  24182. back: {
  24183. height: math.unit(28, "feet"),
  24184. weight: math.unit(10500, "lb"),
  24185. name: "Back",
  24186. image: {
  24187. source: "./media/characters/kayda/back.svg",
  24188. extra: 1557 / 1464,
  24189. bottom: 39.5 / 1597.49
  24190. }
  24191. },
  24192. dick: {
  24193. height: math.unit(3.858, "feet"),
  24194. name: "Dick",
  24195. image: {
  24196. source: "./media/characters/kayda/dick.svg"
  24197. }
  24198. },
  24199. },
  24200. [
  24201. {
  24202. name: "Macro",
  24203. height: math.unit(28, "feet"),
  24204. default: true
  24205. },
  24206. ]
  24207. ))
  24208. characterMakers.push(() => makeCharacter(
  24209. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24210. {
  24211. front: {
  24212. height: math.unit(10 + 11 / 12, "feet"),
  24213. weight: math.unit(1400, "lb"),
  24214. name: "Front",
  24215. image: {
  24216. source: "./media/characters/brian/front.svg",
  24217. extra: 737 / 692,
  24218. bottom: 55.4 / 785
  24219. }
  24220. },
  24221. },
  24222. [
  24223. {
  24224. name: "Normal",
  24225. height: math.unit(10 + 11 / 12, "feet"),
  24226. default: true
  24227. },
  24228. ]
  24229. ))
  24230. characterMakers.push(() => makeCharacter(
  24231. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24232. {
  24233. front: {
  24234. height: math.unit(5 + 8 / 12, "feet"),
  24235. weight: math.unit(140, "lb"),
  24236. name: "Front",
  24237. image: {
  24238. source: "./media/characters/khemri/front.svg",
  24239. extra: 4780 / 4059,
  24240. bottom: 80.1 / 4859.25
  24241. }
  24242. },
  24243. },
  24244. [
  24245. {
  24246. name: "Micro",
  24247. height: math.unit(6, "inches")
  24248. },
  24249. {
  24250. name: "Normal",
  24251. height: math.unit(5 + 8 / 12, "feet"),
  24252. default: true
  24253. },
  24254. ]
  24255. ))
  24256. characterMakers.push(() => makeCharacter(
  24257. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24258. {
  24259. front: {
  24260. height: math.unit(13, "feet"),
  24261. weight: math.unit(1700, "lb"),
  24262. name: "Front",
  24263. image: {
  24264. source: "./media/characters/felix-braveheart/front.svg",
  24265. extra: 1222 / 1157,
  24266. bottom: 53.2 / 1280
  24267. }
  24268. },
  24269. back: {
  24270. height: math.unit(13, "feet"),
  24271. weight: math.unit(1700, "lb"),
  24272. name: "Back",
  24273. image: {
  24274. source: "./media/characters/felix-braveheart/back.svg",
  24275. extra: 1277 / 1203,
  24276. bottom: 50.2 / 1327
  24277. }
  24278. },
  24279. feral: {
  24280. height: math.unit(6, "feet"),
  24281. weight: math.unit(400, "lb"),
  24282. name: "Feral",
  24283. image: {
  24284. source: "./media/characters/felix-braveheart/feral.svg",
  24285. extra: 682 / 625,
  24286. bottom: 6.9 / 688
  24287. }
  24288. },
  24289. },
  24290. [
  24291. {
  24292. name: "Normal",
  24293. height: math.unit(13, "feet"),
  24294. default: true
  24295. },
  24296. ]
  24297. ))
  24298. characterMakers.push(() => makeCharacter(
  24299. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24300. {
  24301. side: {
  24302. height: math.unit(5 + 11 / 12, "feet"),
  24303. weight: math.unit(1400, "lb"),
  24304. name: "Side",
  24305. image: {
  24306. source: "./media/characters/shadow-blade/side.svg",
  24307. extra: 1726 / 1267,
  24308. bottom: 58.4 / 1785
  24309. }
  24310. },
  24311. },
  24312. [
  24313. {
  24314. name: "Normal",
  24315. height: math.unit(5 + 11 / 12, "feet"),
  24316. default: true
  24317. },
  24318. ]
  24319. ))
  24320. characterMakers.push(() => makeCharacter(
  24321. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24322. {
  24323. front: {
  24324. height: math.unit(1 + 6 / 12, "feet"),
  24325. weight: math.unit(25, "lb"),
  24326. name: "Front",
  24327. image: {
  24328. source: "./media/characters/karla-halldor/front.svg",
  24329. extra: 1459 / 1383,
  24330. bottom: 12 / 1472
  24331. }
  24332. },
  24333. },
  24334. [
  24335. {
  24336. name: "Normal",
  24337. height: math.unit(1 + 6 / 12, "feet"),
  24338. default: true
  24339. },
  24340. ]
  24341. ))
  24342. characterMakers.push(() => makeCharacter(
  24343. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24344. {
  24345. front: {
  24346. height: math.unit(6 + 2 / 12, "feet"),
  24347. weight: math.unit(160, "lb"),
  24348. name: "Front",
  24349. image: {
  24350. source: "./media/characters/ariam/front.svg",
  24351. extra: 1073/976,
  24352. bottom: 52/1125
  24353. }
  24354. },
  24355. back: {
  24356. height: math.unit(6 + 2/12, "feet"),
  24357. weight: math.unit(160, "lb"),
  24358. name: "Back",
  24359. image: {
  24360. source: "./media/characters/ariam/back.svg",
  24361. extra: 1103/1023,
  24362. bottom: 9/1112
  24363. }
  24364. },
  24365. dressed: {
  24366. height: math.unit(6 + 2/12, "feet"),
  24367. weight: math.unit(160, "lb"),
  24368. name: "Dressed",
  24369. image: {
  24370. source: "./media/characters/ariam/dressed.svg",
  24371. extra: 1099/1009,
  24372. bottom: 25/1124
  24373. }
  24374. },
  24375. squatting: {
  24376. height: math.unit(4.1, "feet"),
  24377. weight: math.unit(160, "lb"),
  24378. name: "Squatting",
  24379. image: {
  24380. source: "./media/characters/ariam/squatting.svg",
  24381. extra: 2617 / 2112,
  24382. bottom: 61.2 / 2681,
  24383. }
  24384. },
  24385. },
  24386. [
  24387. {
  24388. name: "Normal",
  24389. height: math.unit(6 + 2 / 12, "feet"),
  24390. default: true
  24391. },
  24392. {
  24393. name: "Normal+",
  24394. height: math.unit(4, "meters")
  24395. },
  24396. {
  24397. name: "Macro",
  24398. height: math.unit(50, "meters")
  24399. },
  24400. {
  24401. name: "Macro+",
  24402. height: math.unit(100, "meters")
  24403. },
  24404. {
  24405. name: "Megamacro",
  24406. height: math.unit(20, "km")
  24407. },
  24408. {
  24409. name: "Caretaker",
  24410. height: math.unit(444, "megameters")
  24411. },
  24412. ]
  24413. ))
  24414. characterMakers.push(() => makeCharacter(
  24415. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24416. {
  24417. front: {
  24418. height: math.unit(1.67, "meters"),
  24419. weight: math.unit(140, "lb"),
  24420. name: "Front",
  24421. image: {
  24422. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24423. extra: 438 / 410,
  24424. bottom: 0.75 / 439
  24425. }
  24426. },
  24427. },
  24428. [
  24429. {
  24430. name: "Shrunken",
  24431. height: math.unit(7.6, "cm")
  24432. },
  24433. {
  24434. name: "Human Scale",
  24435. height: math.unit(1.67, "meters")
  24436. },
  24437. {
  24438. name: "Wolxi Scale",
  24439. height: math.unit(36.7, "meters"),
  24440. default: true
  24441. },
  24442. ]
  24443. ))
  24444. characterMakers.push(() => makeCharacter(
  24445. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24446. {
  24447. front: {
  24448. height: math.unit(1.73, "meters"),
  24449. weight: math.unit(240, "lb"),
  24450. name: "Front",
  24451. image: {
  24452. source: "./media/characters/izue-two-mothers/front.svg",
  24453. extra: 469 / 437,
  24454. bottom: 1.24 / 470.6
  24455. }
  24456. },
  24457. },
  24458. [
  24459. {
  24460. name: "Shrunken",
  24461. height: math.unit(7.86, "cm")
  24462. },
  24463. {
  24464. name: "Human Scale",
  24465. height: math.unit(1.73, "meters")
  24466. },
  24467. {
  24468. name: "Wolxi Scale",
  24469. height: math.unit(38, "meters"),
  24470. default: true
  24471. },
  24472. ]
  24473. ))
  24474. characterMakers.push(() => makeCharacter(
  24475. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24476. {
  24477. front: {
  24478. height: math.unit(1.55, "meters"),
  24479. weight: math.unit(120, "lb"),
  24480. name: "Front",
  24481. image: {
  24482. source: "./media/characters/teeku-love-shack/front.svg",
  24483. extra: 387 / 362,
  24484. bottom: 1.51 / 388
  24485. }
  24486. },
  24487. },
  24488. [
  24489. {
  24490. name: "Shrunken",
  24491. height: math.unit(7, "cm")
  24492. },
  24493. {
  24494. name: "Human Scale",
  24495. height: math.unit(1.55, "meters")
  24496. },
  24497. {
  24498. name: "Wolxi Scale",
  24499. height: math.unit(34.1, "meters"),
  24500. default: true
  24501. },
  24502. ]
  24503. ))
  24504. characterMakers.push(() => makeCharacter(
  24505. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24506. {
  24507. front: {
  24508. height: math.unit(1.83, "meters"),
  24509. weight: math.unit(135, "lb"),
  24510. name: "Front",
  24511. image: {
  24512. source: "./media/characters/dejma-the-red/front.svg",
  24513. extra: 480 / 458,
  24514. bottom: 1.8 / 482
  24515. }
  24516. },
  24517. },
  24518. [
  24519. {
  24520. name: "Shrunken",
  24521. height: math.unit(8.3, "cm")
  24522. },
  24523. {
  24524. name: "Human Scale",
  24525. height: math.unit(1.83, "meters")
  24526. },
  24527. {
  24528. name: "Wolxi Scale",
  24529. height: math.unit(40, "meters"),
  24530. default: true
  24531. },
  24532. ]
  24533. ))
  24534. characterMakers.push(() => makeCharacter(
  24535. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24536. {
  24537. front: {
  24538. height: math.unit(1.78, "meters"),
  24539. weight: math.unit(65, "kg"),
  24540. name: "Front",
  24541. image: {
  24542. source: "./media/characters/aki/front.svg",
  24543. extra: 452 / 415
  24544. }
  24545. },
  24546. frontNsfw: {
  24547. height: math.unit(1.78, "meters"),
  24548. weight: math.unit(65, "kg"),
  24549. name: "Front (NSFW)",
  24550. image: {
  24551. source: "./media/characters/aki/front-nsfw.svg",
  24552. extra: 452 / 415
  24553. }
  24554. },
  24555. back: {
  24556. height: math.unit(1.78, "meters"),
  24557. weight: math.unit(65, "kg"),
  24558. name: "Back",
  24559. image: {
  24560. source: "./media/characters/aki/back.svg",
  24561. extra: 452 / 415
  24562. }
  24563. },
  24564. rump: {
  24565. height: math.unit(2.05, "feet"),
  24566. name: "Rump",
  24567. image: {
  24568. source: "./media/characters/aki/rump.svg"
  24569. }
  24570. },
  24571. dick: {
  24572. height: math.unit(0.95, "feet"),
  24573. name: "Dick",
  24574. image: {
  24575. source: "./media/characters/aki/dick.svg"
  24576. }
  24577. },
  24578. },
  24579. [
  24580. {
  24581. name: "Micro",
  24582. height: math.unit(15, "cm")
  24583. },
  24584. {
  24585. name: "Normal",
  24586. height: math.unit(178, "cm"),
  24587. default: true
  24588. },
  24589. {
  24590. name: "Macro",
  24591. height: math.unit(214, "m")
  24592. },
  24593. {
  24594. name: "Macro+",
  24595. height: math.unit(534, "m")
  24596. },
  24597. ]
  24598. ))
  24599. characterMakers.push(() => makeCharacter(
  24600. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24601. {
  24602. front: {
  24603. height: math.unit(5 + 5 / 12, "feet"),
  24604. weight: math.unit(120, "lb"),
  24605. name: "Front",
  24606. image: {
  24607. source: "./media/characters/ari/front.svg",
  24608. extra: 714.5 / 682,
  24609. bottom: 8 / 722.5
  24610. }
  24611. },
  24612. },
  24613. [
  24614. {
  24615. name: "Normal",
  24616. height: math.unit(5 + 5 / 12, "feet")
  24617. },
  24618. {
  24619. name: "Macro",
  24620. height: math.unit(100, "feet"),
  24621. default: true
  24622. },
  24623. {
  24624. name: "Megamacro",
  24625. height: math.unit(100, "miles")
  24626. },
  24627. {
  24628. name: "Gigamacro",
  24629. height: math.unit(80000, "miles")
  24630. },
  24631. ]
  24632. ))
  24633. characterMakers.push(() => makeCharacter(
  24634. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24635. {
  24636. side: {
  24637. height: math.unit(9, "feet"),
  24638. weight: math.unit(400, "kg"),
  24639. name: "Side",
  24640. image: {
  24641. source: "./media/characters/bolt/side.svg",
  24642. extra: 1126 / 896,
  24643. bottom: 60 / 1187.3,
  24644. }
  24645. },
  24646. },
  24647. [
  24648. {
  24649. name: "Micro",
  24650. height: math.unit(5, "inches")
  24651. },
  24652. {
  24653. name: "Normal",
  24654. height: math.unit(9, "feet"),
  24655. default: true
  24656. },
  24657. {
  24658. name: "Macro",
  24659. height: math.unit(700, "feet")
  24660. },
  24661. {
  24662. name: "Max Size",
  24663. height: math.unit(1.52e22, "yottameters")
  24664. },
  24665. ]
  24666. ))
  24667. characterMakers.push(() => makeCharacter(
  24668. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24669. {
  24670. front: {
  24671. height: math.unit(4.53, "meters"),
  24672. weight: math.unit(3, "tons"),
  24673. name: "Front",
  24674. image: {
  24675. source: "./media/characters/draekon-sylviar/front.svg",
  24676. extra: 1228 / 1068,
  24677. bottom: 41 / 1270
  24678. }
  24679. },
  24680. tail: {
  24681. height: math.unit(1.772, "meter"),
  24682. name: "Tail",
  24683. image: {
  24684. source: "./media/characters/draekon-sylviar/tail.svg"
  24685. }
  24686. },
  24687. head: {
  24688. height: math.unit(1.331, "meter"),
  24689. name: "Head",
  24690. image: {
  24691. source: "./media/characters/draekon-sylviar/head.svg"
  24692. }
  24693. },
  24694. hand: {
  24695. height: math.unit(0.564, "meter"),
  24696. name: "Hand",
  24697. image: {
  24698. source: "./media/characters/draekon-sylviar/hand.svg"
  24699. }
  24700. },
  24701. foot: {
  24702. height: math.unit(0.621, "meter"),
  24703. name: "Foot",
  24704. image: {
  24705. source: "./media/characters/draekon-sylviar/foot.svg",
  24706. bottom: 32 / 324
  24707. }
  24708. },
  24709. dick: {
  24710. height: math.unit(61, "cm"),
  24711. name: "Dick",
  24712. image: {
  24713. source: "./media/characters/draekon-sylviar/dick.svg"
  24714. }
  24715. },
  24716. dickseparated: {
  24717. height: math.unit(61, "cm"),
  24718. name: "Dick-separated",
  24719. image: {
  24720. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24721. }
  24722. },
  24723. },
  24724. [
  24725. {
  24726. name: "Small",
  24727. height: math.unit(4.53 / 2, "meters"),
  24728. default: true
  24729. },
  24730. {
  24731. name: "Normal",
  24732. height: math.unit(4.53, "meters"),
  24733. default: true
  24734. },
  24735. {
  24736. name: "Large",
  24737. height: math.unit(4.53 * 2, "meters"),
  24738. },
  24739. ]
  24740. ))
  24741. characterMakers.push(() => makeCharacter(
  24742. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24743. {
  24744. front: {
  24745. height: math.unit(6 + 2 / 12, "feet"),
  24746. weight: math.unit(180, "lb"),
  24747. name: "Front",
  24748. image: {
  24749. source: "./media/characters/brawler/front.svg",
  24750. extra: 3301 / 3027,
  24751. bottom: 138 / 3439
  24752. }
  24753. },
  24754. },
  24755. [
  24756. {
  24757. name: "Normal",
  24758. height: math.unit(6 + 2 / 12, "feet"),
  24759. default: true
  24760. },
  24761. ]
  24762. ))
  24763. characterMakers.push(() => makeCharacter(
  24764. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24765. {
  24766. front: {
  24767. height: math.unit(11, "feet"),
  24768. weight: math.unit(1000, "lb"),
  24769. name: "Front",
  24770. image: {
  24771. source: "./media/characters/alex/front.svg",
  24772. bottom: 44.5 / 620
  24773. }
  24774. },
  24775. },
  24776. [
  24777. {
  24778. name: "Micro",
  24779. height: math.unit(5, "inches")
  24780. },
  24781. {
  24782. name: "Normal",
  24783. height: math.unit(11, "feet"),
  24784. default: true
  24785. },
  24786. {
  24787. name: "Macro",
  24788. height: math.unit(9.5e9, "feet")
  24789. },
  24790. {
  24791. name: "Max Size",
  24792. height: math.unit(1.4e283, "yottameters")
  24793. },
  24794. ]
  24795. ))
  24796. characterMakers.push(() => makeCharacter(
  24797. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24798. {
  24799. female: {
  24800. height: math.unit(29.9, "m"),
  24801. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24802. name: "Female",
  24803. image: {
  24804. source: "./media/characters/zenari/female.svg",
  24805. extra: 3281.6 / 3217,
  24806. bottom: 72.2 / 3353
  24807. }
  24808. },
  24809. male: {
  24810. height: math.unit(27.7, "m"),
  24811. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24812. name: "Male",
  24813. image: {
  24814. source: "./media/characters/zenari/male.svg",
  24815. extra: 3008 / 2991,
  24816. bottom: 54.6 / 3069
  24817. }
  24818. },
  24819. },
  24820. [
  24821. {
  24822. name: "Macro",
  24823. height: math.unit(29.7, "meters"),
  24824. default: true
  24825. },
  24826. ]
  24827. ))
  24828. characterMakers.push(() => makeCharacter(
  24829. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24830. {
  24831. female: {
  24832. height: math.unit(23.8, "m"),
  24833. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24834. name: "Female",
  24835. image: {
  24836. source: "./media/characters/mactarian/female.svg",
  24837. extra: 2662 / 2569,
  24838. bottom: 73 / 2736
  24839. }
  24840. },
  24841. male: {
  24842. height: math.unit(23.8, "m"),
  24843. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24844. name: "Male",
  24845. image: {
  24846. source: "./media/characters/mactarian/male.svg",
  24847. extra: 2673 / 2600,
  24848. bottom: 76 / 2750
  24849. }
  24850. },
  24851. },
  24852. [
  24853. {
  24854. name: "Macro",
  24855. height: math.unit(23.8, "meters"),
  24856. default: true
  24857. },
  24858. ]
  24859. ))
  24860. characterMakers.push(() => makeCharacter(
  24861. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24862. {
  24863. female: {
  24864. height: math.unit(19.3, "m"),
  24865. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24866. name: "Female",
  24867. image: {
  24868. source: "./media/characters/umok/female.svg",
  24869. extra: 2186 / 2078,
  24870. bottom: 87 / 2277
  24871. }
  24872. },
  24873. male: {
  24874. height: math.unit(19.5, "m"),
  24875. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24876. name: "Male",
  24877. image: {
  24878. source: "./media/characters/umok/male.svg",
  24879. extra: 2233 / 2140,
  24880. bottom: 24.4 / 2258
  24881. }
  24882. },
  24883. },
  24884. [
  24885. {
  24886. name: "Macro",
  24887. height: math.unit(19.3, "meters"),
  24888. default: true
  24889. },
  24890. ]
  24891. ))
  24892. characterMakers.push(() => makeCharacter(
  24893. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24894. {
  24895. female: {
  24896. height: math.unit(26.15, "m"),
  24897. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24898. name: "Female",
  24899. image: {
  24900. source: "./media/characters/joraxian/female.svg",
  24901. extra: 2912 / 2824,
  24902. bottom: 36 / 2956
  24903. }
  24904. },
  24905. male: {
  24906. height: math.unit(25.4, "m"),
  24907. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24908. name: "Male",
  24909. image: {
  24910. source: "./media/characters/joraxian/male.svg",
  24911. extra: 2877 / 2721,
  24912. bottom: 82 / 2967
  24913. }
  24914. },
  24915. },
  24916. [
  24917. {
  24918. name: "Macro",
  24919. height: math.unit(26.15, "meters"),
  24920. default: true
  24921. },
  24922. ]
  24923. ))
  24924. characterMakers.push(() => makeCharacter(
  24925. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24926. {
  24927. female: {
  24928. height: math.unit(21.6, "m"),
  24929. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24930. name: "Female",
  24931. image: {
  24932. source: "./media/characters/sthara/female.svg",
  24933. extra: 2516 / 2347,
  24934. bottom: 21.5 / 2537
  24935. }
  24936. },
  24937. male: {
  24938. height: math.unit(24, "m"),
  24939. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24940. name: "Male",
  24941. image: {
  24942. source: "./media/characters/sthara/male.svg",
  24943. extra: 2732 / 2607,
  24944. bottom: 23 / 2732
  24945. }
  24946. },
  24947. },
  24948. [
  24949. {
  24950. name: "Macro",
  24951. height: math.unit(21.6, "meters"),
  24952. default: true
  24953. },
  24954. ]
  24955. ))
  24956. characterMakers.push(() => makeCharacter(
  24957. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24958. {
  24959. front: {
  24960. height: math.unit(6 + 4 / 12, "feet"),
  24961. weight: math.unit(175, "lb"),
  24962. name: "Front",
  24963. image: {
  24964. source: "./media/characters/luka-bryzant/front.svg",
  24965. extra: 311 / 289,
  24966. bottom: 4 / 315
  24967. }
  24968. },
  24969. back: {
  24970. height: math.unit(6 + 4 / 12, "feet"),
  24971. weight: math.unit(175, "lb"),
  24972. name: "Back",
  24973. image: {
  24974. source: "./media/characters/luka-bryzant/back.svg",
  24975. extra: 311 / 289,
  24976. bottom: 3.8 / 313.7
  24977. }
  24978. },
  24979. },
  24980. [
  24981. {
  24982. name: "Micro",
  24983. height: math.unit(10, "inches")
  24984. },
  24985. {
  24986. name: "Normal",
  24987. height: math.unit(6 + 4 / 12, "feet"),
  24988. default: true
  24989. },
  24990. {
  24991. name: "Large",
  24992. height: math.unit(12, "feet")
  24993. },
  24994. ]
  24995. ))
  24996. characterMakers.push(() => makeCharacter(
  24997. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24998. {
  24999. front: {
  25000. height: math.unit(5 + 7 / 12, "feet"),
  25001. weight: math.unit(185, "lb"),
  25002. name: "Front",
  25003. image: {
  25004. source: "./media/characters/aman-aquila/front.svg",
  25005. extra: 1013 / 976,
  25006. bottom: 45.6 / 1057
  25007. }
  25008. },
  25009. side: {
  25010. height: math.unit(5 + 7 / 12, "feet"),
  25011. weight: math.unit(185, "lb"),
  25012. name: "Side",
  25013. image: {
  25014. source: "./media/characters/aman-aquila/side.svg",
  25015. extra: 1054 / 1011,
  25016. bottom: 15 / 1070
  25017. }
  25018. },
  25019. back: {
  25020. height: math.unit(5 + 7 / 12, "feet"),
  25021. weight: math.unit(185, "lb"),
  25022. name: "Back",
  25023. image: {
  25024. source: "./media/characters/aman-aquila/back.svg",
  25025. extra: 1026 / 970,
  25026. bottom: 12 / 1039
  25027. }
  25028. },
  25029. head: {
  25030. height: math.unit(1.211, "feet"),
  25031. name: "Head",
  25032. image: {
  25033. source: "./media/characters/aman-aquila/head.svg",
  25034. }
  25035. },
  25036. },
  25037. [
  25038. {
  25039. name: "Minimicro",
  25040. height: math.unit(0.057, "inches")
  25041. },
  25042. {
  25043. name: "Micro",
  25044. height: math.unit(7, "inches")
  25045. },
  25046. {
  25047. name: "Mini",
  25048. height: math.unit(3 + 7 / 12, "feet")
  25049. },
  25050. {
  25051. name: "Normal",
  25052. height: math.unit(5 + 7 / 12, "feet"),
  25053. default: true
  25054. },
  25055. {
  25056. name: "Macro",
  25057. height: math.unit(157 + 7 / 12, "feet")
  25058. },
  25059. {
  25060. name: "Megamacro",
  25061. height: math.unit(1557 + 7 / 12, "feet")
  25062. },
  25063. {
  25064. name: "Gigamacro",
  25065. height: math.unit(15557 + 7 / 12, "feet")
  25066. },
  25067. ]
  25068. ))
  25069. characterMakers.push(() => makeCharacter(
  25070. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25071. {
  25072. front: {
  25073. height: math.unit(3 + 2 / 12, "inches"),
  25074. weight: math.unit(0.3, "ounces"),
  25075. name: "Front",
  25076. image: {
  25077. source: "./media/characters/hiphae/front.svg",
  25078. extra: 1931 / 1683,
  25079. bottom: 24 / 1955
  25080. }
  25081. },
  25082. },
  25083. [
  25084. {
  25085. name: "Normal",
  25086. height: math.unit(3 + 1 / 2, "inches"),
  25087. default: true
  25088. },
  25089. ]
  25090. ))
  25091. characterMakers.push(() => makeCharacter(
  25092. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25093. {
  25094. front: {
  25095. height: math.unit(5 + 10 / 12, "feet"),
  25096. weight: math.unit(165, "lb"),
  25097. name: "Front",
  25098. image: {
  25099. source: "./media/characters/nicky/front.svg",
  25100. extra: 3144 / 2886,
  25101. bottom: 45.6 / 3192
  25102. }
  25103. },
  25104. back: {
  25105. height: math.unit(5 + 10 / 12, "feet"),
  25106. weight: math.unit(165, "lb"),
  25107. name: "Back",
  25108. image: {
  25109. source: "./media/characters/nicky/back.svg",
  25110. extra: 3055 / 2804,
  25111. bottom: 28.4 / 3087
  25112. }
  25113. },
  25114. frontclothed: {
  25115. height: math.unit(5 + 10 / 12, "feet"),
  25116. weight: math.unit(165, "lb"),
  25117. name: "Front-clothed",
  25118. image: {
  25119. source: "./media/characters/nicky/front-clothed.svg",
  25120. extra: 3184.9 / 2926.9,
  25121. bottom: 86.5 / 3239.9
  25122. }
  25123. },
  25124. foot: {
  25125. height: math.unit(1.16, "feet"),
  25126. name: "Foot",
  25127. image: {
  25128. source: "./media/characters/nicky/foot.svg"
  25129. }
  25130. },
  25131. feet: {
  25132. height: math.unit(1.34, "feet"),
  25133. name: "Feet",
  25134. image: {
  25135. source: "./media/characters/nicky/feet.svg"
  25136. }
  25137. },
  25138. maw: {
  25139. height: math.unit(0.9, "feet"),
  25140. name: "Maw",
  25141. image: {
  25142. source: "./media/characters/nicky/maw.svg"
  25143. }
  25144. },
  25145. },
  25146. [
  25147. {
  25148. name: "Normal",
  25149. height: math.unit(5 + 10 / 12, "feet"),
  25150. default: true
  25151. },
  25152. {
  25153. name: "Macro",
  25154. height: math.unit(60, "feet")
  25155. },
  25156. {
  25157. name: "Megamacro",
  25158. height: math.unit(1, "mile")
  25159. },
  25160. ]
  25161. ))
  25162. characterMakers.push(() => makeCharacter(
  25163. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25164. {
  25165. side: {
  25166. height: math.unit(10, "feet"),
  25167. weight: math.unit(600, "lb"),
  25168. name: "Side",
  25169. image: {
  25170. source: "./media/characters/blair/side.svg",
  25171. bottom: 16.6 / 475,
  25172. extra: 458 / 431
  25173. }
  25174. },
  25175. },
  25176. [
  25177. {
  25178. name: "Micro",
  25179. height: math.unit(8, "inches")
  25180. },
  25181. {
  25182. name: "Normal",
  25183. height: math.unit(10, "feet"),
  25184. default: true
  25185. },
  25186. {
  25187. name: "Macro",
  25188. height: math.unit(180, "feet")
  25189. },
  25190. ]
  25191. ))
  25192. characterMakers.push(() => makeCharacter(
  25193. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25194. {
  25195. front: {
  25196. height: math.unit(5 + 4 / 12, "feet"),
  25197. weight: math.unit(125, "lb"),
  25198. name: "Front",
  25199. image: {
  25200. source: "./media/characters/fisher/front.svg",
  25201. extra: 444 / 390,
  25202. bottom: 2 / 444.8
  25203. }
  25204. },
  25205. },
  25206. [
  25207. {
  25208. name: "Micro",
  25209. height: math.unit(4, "inches")
  25210. },
  25211. {
  25212. name: "Normal",
  25213. height: math.unit(5 + 4 / 12, "feet"),
  25214. default: true
  25215. },
  25216. {
  25217. name: "Macro",
  25218. height: math.unit(100, "feet")
  25219. },
  25220. ]
  25221. ))
  25222. characterMakers.push(() => makeCharacter(
  25223. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25224. {
  25225. front: {
  25226. height: math.unit(6.71, "feet"),
  25227. weight: math.unit(200, "lb"),
  25228. capacity: math.unit(1000000, "people"),
  25229. name: "Front",
  25230. image: {
  25231. source: "./media/characters/gliss/front.svg",
  25232. extra: 2347 / 2231,
  25233. bottom: 113 / 2462
  25234. }
  25235. },
  25236. hammerspaceSize: {
  25237. height: math.unit(6.71 * 717, "feet"),
  25238. weight: math.unit(200, "lb"),
  25239. capacity: math.unit(1000000, "people"),
  25240. name: "Hammerspace Size",
  25241. image: {
  25242. source: "./media/characters/gliss/front.svg",
  25243. extra: 2347 / 2231,
  25244. bottom: 113 / 2462
  25245. }
  25246. },
  25247. },
  25248. [
  25249. {
  25250. name: "Normal",
  25251. height: math.unit(6.71, "feet"),
  25252. default: true
  25253. },
  25254. ]
  25255. ))
  25256. characterMakers.push(() => makeCharacter(
  25257. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25258. {
  25259. side: {
  25260. height: math.unit(1.44, "m"),
  25261. weight: math.unit(80, "kg"),
  25262. name: "Side",
  25263. image: {
  25264. source: "./media/characters/dune-anderson/side.svg",
  25265. bottom: 49 / 1426
  25266. }
  25267. },
  25268. },
  25269. [
  25270. {
  25271. name: "Wolf-sized",
  25272. height: math.unit(1.44, "meters")
  25273. },
  25274. {
  25275. name: "Normal",
  25276. height: math.unit(5.05, "meters"),
  25277. default: true
  25278. },
  25279. {
  25280. name: "Big",
  25281. height: math.unit(14.4, "meters")
  25282. },
  25283. {
  25284. name: "Huge",
  25285. height: math.unit(144, "meters")
  25286. },
  25287. ]
  25288. ))
  25289. characterMakers.push(() => makeCharacter(
  25290. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25291. {
  25292. front: {
  25293. height: math.unit(7, "feet"),
  25294. weight: math.unit(425, "lb"),
  25295. name: "Front",
  25296. image: {
  25297. source: "./media/characters/hind/front.svg",
  25298. extra: 2091 / 1860,
  25299. bottom: 129 / 2220
  25300. }
  25301. },
  25302. back: {
  25303. height: math.unit(7, "feet"),
  25304. weight: math.unit(425, "lb"),
  25305. name: "Back",
  25306. image: {
  25307. source: "./media/characters/hind/back.svg",
  25308. extra: 2091 / 1860,
  25309. bottom: 24.6 / 2309
  25310. }
  25311. },
  25312. tail: {
  25313. height: math.unit(2.8, "feet"),
  25314. name: "Tail",
  25315. image: {
  25316. source: "./media/characters/hind/tail.svg"
  25317. }
  25318. },
  25319. head: {
  25320. height: math.unit(2.55, "feet"),
  25321. name: "Head",
  25322. image: {
  25323. source: "./media/characters/hind/head.svg"
  25324. }
  25325. },
  25326. },
  25327. [
  25328. {
  25329. name: "XS",
  25330. height: math.unit(0.7, "feet")
  25331. },
  25332. {
  25333. name: "Normal",
  25334. height: math.unit(7, "feet"),
  25335. default: true
  25336. },
  25337. {
  25338. name: "XL",
  25339. height: math.unit(70, "feet")
  25340. },
  25341. ]
  25342. ))
  25343. characterMakers.push(() => makeCharacter(
  25344. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25345. {
  25346. front: {
  25347. height: math.unit(2.1, "meters"),
  25348. weight: math.unit(150, "lb"),
  25349. name: "Front",
  25350. image: {
  25351. source: "./media/characters/tharquench-sizestealer/front.svg",
  25352. extra: 1605/1470,
  25353. bottom: 36/1641
  25354. }
  25355. },
  25356. frontAlt: {
  25357. height: math.unit(2.1, "meters"),
  25358. weight: math.unit(150, "lb"),
  25359. name: "Front (Alt)",
  25360. image: {
  25361. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25362. extra: 2318 / 2063,
  25363. bottom: 93.4 / 2410
  25364. }
  25365. },
  25366. },
  25367. [
  25368. {
  25369. name: "Nano",
  25370. height: math.unit(1, "mm")
  25371. },
  25372. {
  25373. name: "Micro",
  25374. height: math.unit(1, "cm")
  25375. },
  25376. {
  25377. name: "Normal",
  25378. height: math.unit(2.1, "meters"),
  25379. default: true
  25380. },
  25381. ]
  25382. ))
  25383. characterMakers.push(() => makeCharacter(
  25384. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25385. {
  25386. front: {
  25387. height: math.unit(7 + 5 / 12, "feet"),
  25388. weight: math.unit(357, "lb"),
  25389. name: "Front",
  25390. image: {
  25391. source: "./media/characters/solex-draconov/front.svg",
  25392. extra: 1993 / 1865,
  25393. bottom: 117 / 2111
  25394. }
  25395. },
  25396. },
  25397. [
  25398. {
  25399. name: "Natural Height",
  25400. height: math.unit(7 + 5 / 12, "feet"),
  25401. default: true
  25402. },
  25403. {
  25404. name: "Macro",
  25405. height: math.unit(350, "feet")
  25406. },
  25407. {
  25408. name: "Macro+",
  25409. height: math.unit(1000, "feet")
  25410. },
  25411. {
  25412. name: "Megamacro",
  25413. height: math.unit(20, "km")
  25414. },
  25415. {
  25416. name: "Megamacro+",
  25417. height: math.unit(1000, "km")
  25418. },
  25419. {
  25420. name: "Gigamacro",
  25421. height: math.unit(2.5, "Gm")
  25422. },
  25423. {
  25424. name: "Teramacro",
  25425. height: math.unit(15, "Tm")
  25426. },
  25427. {
  25428. name: "Galactic",
  25429. height: math.unit(30, "Zm")
  25430. },
  25431. {
  25432. name: "Universal",
  25433. height: math.unit(21000, "Ym")
  25434. },
  25435. {
  25436. name: "Omniversal",
  25437. height: math.unit(9.861e50, "Ym")
  25438. },
  25439. {
  25440. name: "Existential",
  25441. height: math.unit(1e300, "meters")
  25442. },
  25443. ]
  25444. ))
  25445. characterMakers.push(() => makeCharacter(
  25446. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25447. {
  25448. side: {
  25449. height: math.unit(25, "feet"),
  25450. weight: math.unit(90000, "lb"),
  25451. name: "Side",
  25452. image: {
  25453. source: "./media/characters/mandarax/side.svg",
  25454. extra: 614 / 332,
  25455. bottom: 55 / 630
  25456. }
  25457. },
  25458. head: {
  25459. height: math.unit(11.4, "feet"),
  25460. name: "Head",
  25461. image: {
  25462. source: "./media/characters/mandarax/head.svg"
  25463. }
  25464. },
  25465. belly: {
  25466. height: math.unit(33, "feet"),
  25467. name: "Belly",
  25468. capacity: math.unit(500, "people"),
  25469. image: {
  25470. source: "./media/characters/mandarax/belly.svg"
  25471. }
  25472. },
  25473. dick: {
  25474. height: math.unit(8.46, "feet"),
  25475. name: "Dick",
  25476. image: {
  25477. source: "./media/characters/mandarax/dick.svg"
  25478. }
  25479. },
  25480. top: {
  25481. height: math.unit(28, "meters"),
  25482. name: "Top",
  25483. image: {
  25484. source: "./media/characters/mandarax/top.svg"
  25485. }
  25486. },
  25487. },
  25488. [
  25489. {
  25490. name: "Normal",
  25491. height: math.unit(25, "feet"),
  25492. default: true
  25493. },
  25494. ]
  25495. ))
  25496. characterMakers.push(() => makeCharacter(
  25497. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25498. {
  25499. front: {
  25500. height: math.unit(5, "feet"),
  25501. weight: math.unit(90, "lb"),
  25502. name: "Front",
  25503. image: {
  25504. source: "./media/characters/pixil/front.svg",
  25505. extra: 2000 / 1618,
  25506. bottom: 12.3 / 2011
  25507. }
  25508. },
  25509. },
  25510. [
  25511. {
  25512. name: "Normal",
  25513. height: math.unit(5, "feet"),
  25514. default: true
  25515. },
  25516. {
  25517. name: "Megamacro",
  25518. height: math.unit(10, "miles"),
  25519. },
  25520. ]
  25521. ))
  25522. characterMakers.push(() => makeCharacter(
  25523. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25524. {
  25525. front: {
  25526. height: math.unit(7 + 2 / 12, "feet"),
  25527. weight: math.unit(200, "lb"),
  25528. name: "Front",
  25529. image: {
  25530. source: "./media/characters/angel/front.svg",
  25531. extra: 1830 / 1737,
  25532. bottom: 22.6 / 1854,
  25533. }
  25534. },
  25535. },
  25536. [
  25537. {
  25538. name: "Normal",
  25539. height: math.unit(7 + 2 / 12, "feet"),
  25540. default: true
  25541. },
  25542. {
  25543. name: "Macro",
  25544. height: math.unit(1000, "feet")
  25545. },
  25546. {
  25547. name: "Megamacro",
  25548. height: math.unit(2, "miles")
  25549. },
  25550. {
  25551. name: "Gigamacro",
  25552. height: math.unit(20, "earths")
  25553. },
  25554. ]
  25555. ))
  25556. characterMakers.push(() => makeCharacter(
  25557. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25558. {
  25559. front: {
  25560. height: math.unit(5, "feet"),
  25561. weight: math.unit(180, "lb"),
  25562. name: "Front",
  25563. image: {
  25564. source: "./media/characters/mekana/front.svg",
  25565. extra: 1671 / 1605,
  25566. bottom: 3.5 / 1691
  25567. }
  25568. },
  25569. side: {
  25570. height: math.unit(5, "feet"),
  25571. weight: math.unit(180, "lb"),
  25572. name: "Side",
  25573. image: {
  25574. source: "./media/characters/mekana/side.svg",
  25575. extra: 1671 / 1605,
  25576. bottom: 3.5 / 1691
  25577. }
  25578. },
  25579. back: {
  25580. height: math.unit(5, "feet"),
  25581. weight: math.unit(180, "lb"),
  25582. name: "Back",
  25583. image: {
  25584. source: "./media/characters/mekana/back.svg",
  25585. extra: 1671 / 1605,
  25586. bottom: 3.5 / 1691
  25587. }
  25588. },
  25589. },
  25590. [
  25591. {
  25592. name: "Normal",
  25593. height: math.unit(5, "feet"),
  25594. default: true
  25595. },
  25596. ]
  25597. ))
  25598. characterMakers.push(() => makeCharacter(
  25599. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25600. {
  25601. front: {
  25602. height: math.unit(4 + 6 / 12, "feet"),
  25603. weight: math.unit(80, "lb"),
  25604. name: "Front",
  25605. image: {
  25606. source: "./media/characters/pixie/front.svg",
  25607. extra: 1924 / 1825,
  25608. bottom: 22.4 / 1946
  25609. }
  25610. },
  25611. },
  25612. [
  25613. {
  25614. name: "Normal",
  25615. height: math.unit(4 + 6 / 12, "feet"),
  25616. default: true
  25617. },
  25618. {
  25619. name: "Macro",
  25620. height: math.unit(40, "feet")
  25621. },
  25622. ]
  25623. ))
  25624. characterMakers.push(() => makeCharacter(
  25625. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25626. {
  25627. front: {
  25628. height: math.unit(2.1, "meters"),
  25629. weight: math.unit(200, "lb"),
  25630. name: "Front",
  25631. image: {
  25632. source: "./media/characters/the-lascivious/front.svg",
  25633. extra: 1 / 0.893,
  25634. bottom: 3.5 / 573.7
  25635. }
  25636. },
  25637. },
  25638. [
  25639. {
  25640. name: "Human Scale",
  25641. height: math.unit(2.1, "meters")
  25642. },
  25643. {
  25644. name: "Wolxi Scale",
  25645. height: math.unit(46.2, "m"),
  25646. default: true
  25647. },
  25648. {
  25649. name: "Boinker of Buildings",
  25650. height: math.unit(10, "km")
  25651. },
  25652. {
  25653. name: "Shagger of Skyscrapers",
  25654. height: math.unit(40, "km")
  25655. },
  25656. {
  25657. name: "Banger of Boroughs",
  25658. height: math.unit(4000, "km")
  25659. },
  25660. {
  25661. name: "Screwer of States",
  25662. height: math.unit(100000, "km")
  25663. },
  25664. {
  25665. name: "Pounder of Planets",
  25666. height: math.unit(2000000, "km")
  25667. },
  25668. ]
  25669. ))
  25670. characterMakers.push(() => makeCharacter(
  25671. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25672. {
  25673. front: {
  25674. height: math.unit(6, "feet"),
  25675. weight: math.unit(150, "lb"),
  25676. name: "Front",
  25677. image: {
  25678. source: "./media/characters/aj/front.svg",
  25679. extra: 2039 / 1562,
  25680. bottom: 40 / 2079
  25681. }
  25682. },
  25683. },
  25684. [
  25685. {
  25686. name: "Normal",
  25687. height: math.unit(11 + 6 / 12, "feet"),
  25688. default: true
  25689. },
  25690. {
  25691. name: "Megamacro",
  25692. height: math.unit(60, "megameters")
  25693. },
  25694. ]
  25695. ))
  25696. characterMakers.push(() => makeCharacter(
  25697. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25698. {
  25699. side: {
  25700. height: math.unit(31 + 8 / 12, "feet"),
  25701. weight: math.unit(75000, "kg"),
  25702. name: "Side",
  25703. image: {
  25704. source: "./media/characters/koros/side.svg",
  25705. extra: 1442 / 1297,
  25706. bottom: 122.7 / 1562
  25707. }
  25708. },
  25709. dicksKingsCrown: {
  25710. height: math.unit(6, "feet"),
  25711. name: "Dicks (King's Crown)",
  25712. image: {
  25713. source: "./media/characters/koros/dicks-kings-crown.svg"
  25714. }
  25715. },
  25716. dicksTailSet: {
  25717. height: math.unit(3, "feet"),
  25718. name: "Dicks (Tail Set)",
  25719. image: {
  25720. source: "./media/characters/koros/dicks-tail-set.svg"
  25721. }
  25722. },
  25723. dickCumming: {
  25724. height: math.unit(7.98, "feet"),
  25725. name: "Dick (Cumming)",
  25726. image: {
  25727. source: "./media/characters/koros/dick-cumming.svg"
  25728. }
  25729. },
  25730. dicksBack: {
  25731. height: math.unit(5.9, "feet"),
  25732. name: "Dicks (Back)",
  25733. image: {
  25734. source: "./media/characters/koros/dicks-back.svg"
  25735. }
  25736. },
  25737. dicksFront: {
  25738. height: math.unit(3.72, "feet"),
  25739. name: "Dicks (Front)",
  25740. image: {
  25741. source: "./media/characters/koros/dicks-front.svg"
  25742. }
  25743. },
  25744. dicksPeeking: {
  25745. height: math.unit(3.0, "feet"),
  25746. name: "Dicks (Peeking)",
  25747. image: {
  25748. source: "./media/characters/koros/dicks-peeking.svg"
  25749. }
  25750. },
  25751. eye: {
  25752. height: math.unit(1.7, "feet"),
  25753. name: "Eye",
  25754. image: {
  25755. source: "./media/characters/koros/eye.svg"
  25756. }
  25757. },
  25758. headFront: {
  25759. height: math.unit(11.69, "feet"),
  25760. name: "Head (Front)",
  25761. image: {
  25762. source: "./media/characters/koros/head-front.svg"
  25763. }
  25764. },
  25765. headSide: {
  25766. height: math.unit(14, "feet"),
  25767. name: "Head (Side)",
  25768. image: {
  25769. source: "./media/characters/koros/head-side.svg"
  25770. }
  25771. },
  25772. leg: {
  25773. height: math.unit(17, "feet"),
  25774. name: "Leg",
  25775. image: {
  25776. source: "./media/characters/koros/leg.svg"
  25777. }
  25778. },
  25779. mawSide: {
  25780. height: math.unit(12.8, "feet"),
  25781. name: "Maw (Side)",
  25782. image: {
  25783. source: "./media/characters/koros/maw-side.svg"
  25784. }
  25785. },
  25786. mawSpitting: {
  25787. height: math.unit(17, "feet"),
  25788. name: "Maw (Spitting)",
  25789. image: {
  25790. source: "./media/characters/koros/maw-spitting.svg"
  25791. }
  25792. },
  25793. slit: {
  25794. height: math.unit(2.8, "feet"),
  25795. name: "Slit",
  25796. image: {
  25797. source: "./media/characters/koros/slit.svg"
  25798. }
  25799. },
  25800. stomach: {
  25801. height: math.unit(6.8, "feet"),
  25802. capacity: math.unit(20, "people"),
  25803. name: "Stomach",
  25804. image: {
  25805. source: "./media/characters/koros/stomach.svg"
  25806. }
  25807. },
  25808. wingspanBottom: {
  25809. height: math.unit(114, "feet"),
  25810. name: "Wingspan (Bottom)",
  25811. image: {
  25812. source: "./media/characters/koros/wingspan-bottom.svg"
  25813. }
  25814. },
  25815. wingspanTop: {
  25816. height: math.unit(104, "feet"),
  25817. name: "Wingspan (Top)",
  25818. image: {
  25819. source: "./media/characters/koros/wingspan-top.svg"
  25820. }
  25821. },
  25822. },
  25823. [
  25824. {
  25825. name: "Normal",
  25826. height: math.unit(31 + 8 / 12, "feet"),
  25827. default: true
  25828. },
  25829. ]
  25830. ))
  25831. characterMakers.push(() => makeCharacter(
  25832. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25833. {
  25834. front: {
  25835. height: math.unit(18 + 5 / 12, "feet"),
  25836. weight: math.unit(3750, "kg"),
  25837. name: "Front",
  25838. image: {
  25839. source: "./media/characters/vexx/front.svg",
  25840. extra: 426 / 396,
  25841. bottom: 31.5 / 458
  25842. }
  25843. },
  25844. maw: {
  25845. height: math.unit(6, "feet"),
  25846. name: "Maw",
  25847. image: {
  25848. source: "./media/characters/vexx/maw.svg"
  25849. }
  25850. },
  25851. },
  25852. [
  25853. {
  25854. name: "Normal",
  25855. height: math.unit(18 + 5 / 12, "feet"),
  25856. default: true
  25857. },
  25858. ]
  25859. ))
  25860. characterMakers.push(() => makeCharacter(
  25861. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25862. {
  25863. front: {
  25864. height: math.unit(17 + 6 / 12, "feet"),
  25865. weight: math.unit(150, "lb"),
  25866. name: "Front",
  25867. image: {
  25868. source: "./media/characters/baadra/front.svg",
  25869. extra: 3137 / 2890,
  25870. bottom: 168.4 / 3305
  25871. }
  25872. },
  25873. back: {
  25874. height: math.unit(17 + 6 / 12, "feet"),
  25875. weight: math.unit(150, "lb"),
  25876. name: "Back",
  25877. image: {
  25878. source: "./media/characters/baadra/back.svg",
  25879. extra: 3142 / 2890,
  25880. bottom: 220 / 3371
  25881. }
  25882. },
  25883. head: {
  25884. height: math.unit(5.45, "feet"),
  25885. name: "Head",
  25886. image: {
  25887. source: "./media/characters/baadra/head.svg"
  25888. }
  25889. },
  25890. headAngry: {
  25891. height: math.unit(4.95, "feet"),
  25892. name: "Head (Angry)",
  25893. image: {
  25894. source: "./media/characters/baadra/head-angry.svg"
  25895. }
  25896. },
  25897. headOpen: {
  25898. height: math.unit(6, "feet"),
  25899. name: "Head (Open)",
  25900. image: {
  25901. source: "./media/characters/baadra/head-open.svg"
  25902. }
  25903. },
  25904. },
  25905. [
  25906. {
  25907. name: "Normal",
  25908. height: math.unit(17 + 6 / 12, "feet"),
  25909. default: true
  25910. },
  25911. ]
  25912. ))
  25913. characterMakers.push(() => makeCharacter(
  25914. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25915. {
  25916. front: {
  25917. height: math.unit(7 + 3 / 12, "feet"),
  25918. weight: math.unit(180, "lb"),
  25919. name: "Front",
  25920. image: {
  25921. source: "./media/characters/juri/front.svg",
  25922. extra: 1401 / 1237,
  25923. bottom: 18.5 / 1418
  25924. }
  25925. },
  25926. side: {
  25927. height: math.unit(7 + 3 / 12, "feet"),
  25928. weight: math.unit(180, "lb"),
  25929. name: "Side",
  25930. image: {
  25931. source: "./media/characters/juri/side.svg",
  25932. extra: 1424 / 1242,
  25933. bottom: 18.5 / 1447
  25934. }
  25935. },
  25936. sitting: {
  25937. height: math.unit(6, "feet"),
  25938. weight: math.unit(180, "lb"),
  25939. name: "Sitting",
  25940. image: {
  25941. source: "./media/characters/juri/sitting.svg",
  25942. extra: 1270 / 1143,
  25943. bottom: 100 / 1343
  25944. }
  25945. },
  25946. back: {
  25947. height: math.unit(7 + 3 / 12, "feet"),
  25948. weight: math.unit(180, "lb"),
  25949. name: "Back",
  25950. image: {
  25951. source: "./media/characters/juri/back.svg",
  25952. extra: 1377 / 1240,
  25953. bottom: 23.7 / 1405
  25954. }
  25955. },
  25956. maw: {
  25957. height: math.unit(2.8, "feet"),
  25958. name: "Maw",
  25959. image: {
  25960. source: "./media/characters/juri/maw.svg"
  25961. }
  25962. },
  25963. stomach: {
  25964. height: math.unit(0.89, "feet"),
  25965. capacity: math.unit(4, "liters"),
  25966. name: "Stomach",
  25967. image: {
  25968. source: "./media/characters/juri/stomach.svg"
  25969. }
  25970. },
  25971. },
  25972. [
  25973. {
  25974. name: "Normal",
  25975. height: math.unit(7 + 3 / 12, "feet"),
  25976. default: true
  25977. },
  25978. ]
  25979. ))
  25980. characterMakers.push(() => makeCharacter(
  25981. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25982. {
  25983. fox: {
  25984. height: math.unit(5 + 6 / 12, "feet"),
  25985. weight: math.unit(140, "lb"),
  25986. name: "Fox",
  25987. image: {
  25988. source: "./media/characters/maxene-sita/fox.svg",
  25989. extra: 146 / 138,
  25990. bottom: 2.1 / 148.19
  25991. }
  25992. },
  25993. foxLaying: {
  25994. height: math.unit(1.70, "feet"),
  25995. weight: math.unit(140, "lb"),
  25996. name: "Fox (Laying)",
  25997. image: {
  25998. source: "./media/characters/maxene-sita/fox-laying.svg",
  25999. extra: 910 / 572,
  26000. bottom: 71 / 981
  26001. }
  26002. },
  26003. kitsune: {
  26004. height: math.unit(10, "feet"),
  26005. weight: math.unit(800, "lb"),
  26006. name: "Kitsune",
  26007. image: {
  26008. source: "./media/characters/maxene-sita/kitsune.svg",
  26009. extra: 185 / 176,
  26010. bottom: 4.7 / 189.9
  26011. }
  26012. },
  26013. hellhound: {
  26014. height: math.unit(10, "feet"),
  26015. weight: math.unit(700, "lb"),
  26016. name: "Hellhound",
  26017. image: {
  26018. source: "./media/characters/maxene-sita/hellhound.svg",
  26019. extra: 1600 / 1545,
  26020. bottom: 81 / 1681
  26021. }
  26022. },
  26023. },
  26024. [
  26025. {
  26026. name: "Normal",
  26027. height: math.unit(5 + 6 / 12, "feet"),
  26028. default: true
  26029. },
  26030. ]
  26031. ))
  26032. characterMakers.push(() => makeCharacter(
  26033. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26034. {
  26035. front: {
  26036. height: math.unit(3 + 4 / 12, "feet"),
  26037. weight: math.unit(70, "lb"),
  26038. name: "Front",
  26039. image: {
  26040. source: "./media/characters/maia/front.svg",
  26041. extra: 227 / 219.5,
  26042. bottom: 40 / 267
  26043. }
  26044. },
  26045. back: {
  26046. height: math.unit(3 + 4 / 12, "feet"),
  26047. weight: math.unit(70, "lb"),
  26048. name: "Back",
  26049. image: {
  26050. source: "./media/characters/maia/back.svg",
  26051. extra: 237 / 225
  26052. }
  26053. },
  26054. },
  26055. [
  26056. {
  26057. name: "Normal",
  26058. height: math.unit(3 + 4 / 12, "feet"),
  26059. default: true
  26060. },
  26061. ]
  26062. ))
  26063. characterMakers.push(() => makeCharacter(
  26064. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26065. {
  26066. front: {
  26067. height: math.unit(5 + 10 / 12, "feet"),
  26068. weight: math.unit(197, "lb"),
  26069. name: "Front",
  26070. image: {
  26071. source: "./media/characters/jabaro/front.svg",
  26072. extra: 225 / 216,
  26073. bottom: 5.06 / 230
  26074. }
  26075. },
  26076. back: {
  26077. height: math.unit(5 + 10 / 12, "feet"),
  26078. weight: math.unit(197, "lb"),
  26079. name: "Back",
  26080. image: {
  26081. source: "./media/characters/jabaro/back.svg",
  26082. extra: 225 / 219,
  26083. bottom: 1.9 / 227
  26084. }
  26085. },
  26086. },
  26087. [
  26088. {
  26089. name: "Normal",
  26090. height: math.unit(5 + 10 / 12, "feet"),
  26091. default: true
  26092. },
  26093. ]
  26094. ))
  26095. characterMakers.push(() => makeCharacter(
  26096. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26097. {
  26098. front: {
  26099. height: math.unit(5 + 8 / 12, "feet"),
  26100. weight: math.unit(139, "lb"),
  26101. name: "Front",
  26102. image: {
  26103. source: "./media/characters/risa/front.svg",
  26104. extra: 270 / 260,
  26105. bottom: 11.2 / 282
  26106. }
  26107. },
  26108. back: {
  26109. height: math.unit(5 + 8 / 12, "feet"),
  26110. weight: math.unit(139, "lb"),
  26111. name: "Back",
  26112. image: {
  26113. source: "./media/characters/risa/back.svg",
  26114. extra: 264 / 255,
  26115. bottom: 4 / 268
  26116. }
  26117. },
  26118. },
  26119. [
  26120. {
  26121. name: "Normal",
  26122. height: math.unit(5 + 8 / 12, "feet"),
  26123. default: true
  26124. },
  26125. ]
  26126. ))
  26127. characterMakers.push(() => makeCharacter(
  26128. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26129. {
  26130. front: {
  26131. height: math.unit(2 + 11 / 12, "feet"),
  26132. weight: math.unit(30, "lb"),
  26133. name: "Front",
  26134. image: {
  26135. source: "./media/characters/weatley/front.svg",
  26136. bottom: 10.7 / 414,
  26137. extra: 403.5 / 362
  26138. }
  26139. },
  26140. back: {
  26141. height: math.unit(2 + 11 / 12, "feet"),
  26142. weight: math.unit(30, "lb"),
  26143. name: "Back",
  26144. image: {
  26145. source: "./media/characters/weatley/back.svg",
  26146. bottom: 10.7 / 414,
  26147. extra: 403.5 / 362
  26148. }
  26149. },
  26150. },
  26151. [
  26152. {
  26153. name: "Normal",
  26154. height: math.unit(2 + 11 / 12, "feet"),
  26155. default: true
  26156. },
  26157. ]
  26158. ))
  26159. characterMakers.push(() => makeCharacter(
  26160. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26161. {
  26162. front: {
  26163. height: math.unit(5 + 2 / 12, "feet"),
  26164. weight: math.unit(50, "kg"),
  26165. name: "Front",
  26166. image: {
  26167. source: "./media/characters/mercury-crescent/front.svg",
  26168. extra: 1088 / 1033,
  26169. bottom: 18.9 / 1109
  26170. }
  26171. },
  26172. },
  26173. [
  26174. {
  26175. name: "Normal",
  26176. height: math.unit(5 + 2 / 12, "feet"),
  26177. default: true
  26178. },
  26179. ]
  26180. ))
  26181. characterMakers.push(() => makeCharacter(
  26182. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26183. {
  26184. front: {
  26185. height: math.unit(2, "feet"),
  26186. weight: math.unit(15, "kg"),
  26187. name: "Front",
  26188. image: {
  26189. source: "./media/characters/diamond-jones/front.svg",
  26190. extra: 727/723,
  26191. bottom: 46/773
  26192. }
  26193. },
  26194. },
  26195. [
  26196. {
  26197. name: "Normal",
  26198. height: math.unit(2, "feet"),
  26199. default: true
  26200. },
  26201. ]
  26202. ))
  26203. characterMakers.push(() => makeCharacter(
  26204. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26205. {
  26206. front: {
  26207. height: math.unit(3, "feet"),
  26208. weight: math.unit(30, "kg"),
  26209. name: "Front",
  26210. image: {
  26211. source: "./media/characters/sweet-bit/front.svg",
  26212. extra: 675 / 567,
  26213. bottom: 27.7 / 703
  26214. }
  26215. },
  26216. },
  26217. [
  26218. {
  26219. name: "Normal",
  26220. height: math.unit(3, "feet"),
  26221. default: true
  26222. },
  26223. ]
  26224. ))
  26225. characterMakers.push(() => makeCharacter(
  26226. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26227. {
  26228. side: {
  26229. height: math.unit(9.178, "feet"),
  26230. weight: math.unit(500, "lb"),
  26231. name: "Side",
  26232. image: {
  26233. source: "./media/characters/umbrazen/side.svg",
  26234. extra: 1730 / 1473,
  26235. bottom: 34.6 / 1765
  26236. }
  26237. },
  26238. },
  26239. [
  26240. {
  26241. name: "Normal",
  26242. height: math.unit(9.178, "feet"),
  26243. default: true
  26244. },
  26245. ]
  26246. ))
  26247. characterMakers.push(() => makeCharacter(
  26248. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26249. {
  26250. front: {
  26251. height: math.unit(10, "feet"),
  26252. weight: math.unit(750, "lb"),
  26253. name: "Front",
  26254. image: {
  26255. source: "./media/characters/arlist/front.svg",
  26256. extra: 961 / 778,
  26257. bottom: 6.2 / 986
  26258. }
  26259. },
  26260. },
  26261. [
  26262. {
  26263. name: "Normal",
  26264. height: math.unit(10, "feet"),
  26265. default: true
  26266. },
  26267. ]
  26268. ))
  26269. characterMakers.push(() => makeCharacter(
  26270. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26271. {
  26272. front: {
  26273. height: math.unit(5 + 1 / 12, "feet"),
  26274. weight: math.unit(110, "lb"),
  26275. name: "Front",
  26276. image: {
  26277. source: "./media/characters/aradel/front.svg",
  26278. extra: 324 / 303,
  26279. bottom: 3.6 / 329.4
  26280. }
  26281. },
  26282. },
  26283. [
  26284. {
  26285. name: "Normal",
  26286. height: math.unit(5 + 1 / 12, "feet"),
  26287. default: true
  26288. },
  26289. ]
  26290. ))
  26291. characterMakers.push(() => makeCharacter(
  26292. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26293. {
  26294. front: {
  26295. height: math.unit(3 + 8 / 12, "feet"),
  26296. weight: math.unit(50, "lb"),
  26297. name: "Front",
  26298. image: {
  26299. source: "./media/characters/serryn/front.svg",
  26300. extra: 1792 / 1656,
  26301. bottom: 43.5 / 1840
  26302. }
  26303. },
  26304. },
  26305. [
  26306. {
  26307. name: "Normal",
  26308. height: math.unit(3 + 8 / 12, "feet"),
  26309. default: true
  26310. },
  26311. ]
  26312. ))
  26313. characterMakers.push(() => makeCharacter(
  26314. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26315. {
  26316. front: {
  26317. height: math.unit(7 + 10 / 12, "feet"),
  26318. weight: math.unit(255, "lb"),
  26319. name: "Front",
  26320. image: {
  26321. source: "./media/characters/xavier-thyme/front.svg",
  26322. extra: 3733 / 3642,
  26323. bottom: 131 / 3869
  26324. }
  26325. },
  26326. frontRaven: {
  26327. height: math.unit(7 + 10 / 12, "feet"),
  26328. weight: math.unit(255, "lb"),
  26329. name: "Front (Raven)",
  26330. image: {
  26331. source: "./media/characters/xavier-thyme/front-raven.svg",
  26332. extra: 4385 / 3642,
  26333. bottom: 131 / 4517
  26334. }
  26335. },
  26336. },
  26337. [
  26338. {
  26339. name: "Normal",
  26340. height: math.unit(7 + 10 / 12, "feet"),
  26341. default: true
  26342. },
  26343. ]
  26344. ))
  26345. characterMakers.push(() => makeCharacter(
  26346. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26347. {
  26348. front: {
  26349. height: math.unit(1.6, "m"),
  26350. weight: math.unit(50, "kg"),
  26351. name: "Front",
  26352. image: {
  26353. source: "./media/characters/kiki/front.svg",
  26354. extra: 4682 / 3610,
  26355. bottom: 115 / 4777
  26356. }
  26357. },
  26358. },
  26359. [
  26360. {
  26361. name: "Normal",
  26362. height: math.unit(1.6, "meters"),
  26363. default: true
  26364. },
  26365. ]
  26366. ))
  26367. characterMakers.push(() => makeCharacter(
  26368. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26369. {
  26370. front: {
  26371. height: math.unit(50, "m"),
  26372. weight: math.unit(500, "tonnes"),
  26373. name: "Front",
  26374. image: {
  26375. source: "./media/characters/ryoko/front.svg",
  26376. extra: 4632 / 3926,
  26377. bottom: 193 / 4823
  26378. }
  26379. },
  26380. },
  26381. [
  26382. {
  26383. name: "Normal",
  26384. height: math.unit(50, "meters"),
  26385. default: true
  26386. },
  26387. ]
  26388. ))
  26389. characterMakers.push(() => makeCharacter(
  26390. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26391. {
  26392. front: {
  26393. height: math.unit(30, "m"),
  26394. weight: math.unit(22, "tonnes"),
  26395. name: "Front",
  26396. image: {
  26397. source: "./media/characters/elio/front.svg",
  26398. extra: 4582 / 3720,
  26399. bottom: 236 / 4828
  26400. }
  26401. },
  26402. },
  26403. [
  26404. {
  26405. name: "Normal",
  26406. height: math.unit(30, "meters"),
  26407. default: true
  26408. },
  26409. ]
  26410. ))
  26411. characterMakers.push(() => makeCharacter(
  26412. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26413. {
  26414. front: {
  26415. height: math.unit(6 + 3 / 12, "feet"),
  26416. weight: math.unit(120, "lb"),
  26417. name: "Front",
  26418. image: {
  26419. source: "./media/characters/azura/front.svg",
  26420. extra: 1149 / 1135,
  26421. bottom: 45 / 1194
  26422. }
  26423. },
  26424. frontClothed: {
  26425. height: math.unit(6 + 3 / 12, "feet"),
  26426. weight: math.unit(120, "lb"),
  26427. name: "Front (Clothed)",
  26428. image: {
  26429. source: "./media/characters/azura/front-clothed.svg",
  26430. extra: 1149 / 1135,
  26431. bottom: 45 / 1194
  26432. }
  26433. },
  26434. },
  26435. [
  26436. {
  26437. name: "Normal",
  26438. height: math.unit(6 + 3 / 12, "feet"),
  26439. default: true
  26440. },
  26441. {
  26442. name: "Macro",
  26443. height: math.unit(20 + 6 / 12, "feet")
  26444. },
  26445. {
  26446. name: "Megamacro",
  26447. height: math.unit(12, "miles")
  26448. },
  26449. {
  26450. name: "Gigamacro",
  26451. height: math.unit(10000, "miles")
  26452. },
  26453. {
  26454. name: "Teramacro",
  26455. height: math.unit(900000, "miles")
  26456. },
  26457. ]
  26458. ))
  26459. characterMakers.push(() => makeCharacter(
  26460. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26461. {
  26462. front: {
  26463. height: math.unit(12, "feet"),
  26464. weight: math.unit(1, "ton"),
  26465. capacity: math.unit(660000, "gallons"),
  26466. name: "Front",
  26467. image: {
  26468. source: "./media/characters/zeus/front.svg",
  26469. extra: 5005 / 4717,
  26470. bottom: 363 / 5388
  26471. }
  26472. },
  26473. },
  26474. [
  26475. {
  26476. name: "Normal",
  26477. height: math.unit(12, "feet")
  26478. },
  26479. {
  26480. name: "Preferred Size",
  26481. height: math.unit(0.5, "miles"),
  26482. default: true
  26483. },
  26484. {
  26485. name: "Giga Horse",
  26486. height: math.unit(300, "miles")
  26487. },
  26488. {
  26489. name: "Riding Planets",
  26490. height: math.unit(30, "megameters")
  26491. },
  26492. {
  26493. name: "Cosmic Giant",
  26494. height: math.unit(3, "zettameters")
  26495. },
  26496. {
  26497. name: "Breeding God",
  26498. height: math.unit(9.92e22, "yottameters")
  26499. },
  26500. ]
  26501. ))
  26502. characterMakers.push(() => makeCharacter(
  26503. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26504. {
  26505. side: {
  26506. height: math.unit(9, "feet"),
  26507. weight: math.unit(1500, "kg"),
  26508. name: "Side",
  26509. image: {
  26510. source: "./media/characters/fang/side.svg",
  26511. extra: 924 / 866,
  26512. bottom: 47.5 / 972.3
  26513. }
  26514. },
  26515. },
  26516. [
  26517. {
  26518. name: "Normal",
  26519. height: math.unit(9, "feet"),
  26520. default: true
  26521. },
  26522. {
  26523. name: "Macro",
  26524. height: math.unit(75 + 6 / 12, "feet")
  26525. },
  26526. {
  26527. name: "Teramacro",
  26528. height: math.unit(50000, "miles")
  26529. },
  26530. ]
  26531. ))
  26532. characterMakers.push(() => makeCharacter(
  26533. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26534. {
  26535. front: {
  26536. height: math.unit(10, "feet"),
  26537. weight: math.unit(2, "tons"),
  26538. name: "Front",
  26539. image: {
  26540. source: "./media/characters/rekhit/front.svg",
  26541. extra: 2796 / 2590,
  26542. bottom: 225 / 3022
  26543. }
  26544. },
  26545. },
  26546. [
  26547. {
  26548. name: "Normal",
  26549. height: math.unit(10, "feet"),
  26550. default: true
  26551. },
  26552. {
  26553. name: "Macro",
  26554. height: math.unit(500, "feet")
  26555. },
  26556. ]
  26557. ))
  26558. characterMakers.push(() => makeCharacter(
  26559. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26560. {
  26561. front: {
  26562. height: math.unit(7 + 6.451 / 12, "feet"),
  26563. weight: math.unit(310, "lb"),
  26564. name: "Front",
  26565. image: {
  26566. source: "./media/characters/dahlia-verrick/front.svg",
  26567. extra: 1488 / 1365,
  26568. bottom: 6.2 / 1495
  26569. }
  26570. },
  26571. back: {
  26572. height: math.unit(7 + 6.451 / 12, "feet"),
  26573. weight: math.unit(310, "lb"),
  26574. name: "Back",
  26575. image: {
  26576. source: "./media/characters/dahlia-verrick/back.svg",
  26577. extra: 1472 / 1351,
  26578. bottom: 5.28 / 1477
  26579. }
  26580. },
  26581. frontBusiness: {
  26582. height: math.unit(7 + 6.451 / 12, "feet"),
  26583. weight: math.unit(200, "lb"),
  26584. name: "Front (Business)",
  26585. image: {
  26586. source: "./media/characters/dahlia-verrick/front-business.svg",
  26587. extra: 1478 / 1381,
  26588. bottom: 5.5 / 1484
  26589. }
  26590. },
  26591. frontCasual: {
  26592. height: math.unit(7 + 6.451 / 12, "feet"),
  26593. weight: math.unit(200, "lb"),
  26594. name: "Front (Casual)",
  26595. image: {
  26596. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26597. extra: 1478 / 1381,
  26598. bottom: 5.5 / 1484
  26599. }
  26600. },
  26601. },
  26602. [
  26603. {
  26604. name: "Travel-Sized",
  26605. height: math.unit(7.45, "inches")
  26606. },
  26607. {
  26608. name: "Normal",
  26609. height: math.unit(7 + 6.451 / 12, "feet"),
  26610. default: true
  26611. },
  26612. {
  26613. name: "Hitting the Town",
  26614. height: math.unit(37 + 8 / 12, "feet")
  26615. },
  26616. {
  26617. name: "Stomp in the Suburbs",
  26618. height: math.unit(964 + 9.728 / 12, "feet")
  26619. },
  26620. {
  26621. name: "Sit on the City",
  26622. height: math.unit(61747 + 10.592 / 12, "feet")
  26623. },
  26624. {
  26625. name: "Glomp the Globe",
  26626. height: math.unit(252919327 + 4.832 / 12, "feet")
  26627. },
  26628. ]
  26629. ))
  26630. characterMakers.push(() => makeCharacter(
  26631. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26632. {
  26633. front: {
  26634. height: math.unit(6 + 4 / 12, "feet"),
  26635. weight: math.unit(320, "lb"),
  26636. name: "Front",
  26637. image: {
  26638. source: "./media/characters/balina-mahigan/front.svg",
  26639. extra: 447 / 428,
  26640. bottom: 18 / 466
  26641. }
  26642. },
  26643. back: {
  26644. height: math.unit(6 + 4 / 12, "feet"),
  26645. weight: math.unit(320, "lb"),
  26646. name: "Back",
  26647. image: {
  26648. source: "./media/characters/balina-mahigan/back.svg",
  26649. extra: 445 / 428,
  26650. bottom: 4.07 / 448
  26651. }
  26652. },
  26653. arm: {
  26654. height: math.unit(1.88, "feet"),
  26655. name: "Arm",
  26656. image: {
  26657. source: "./media/characters/balina-mahigan/arm.svg"
  26658. }
  26659. },
  26660. backPort: {
  26661. height: math.unit(0.685, "feet"),
  26662. name: "Back Port",
  26663. image: {
  26664. source: "./media/characters/balina-mahigan/back-port.svg"
  26665. }
  26666. },
  26667. hoofpaw: {
  26668. height: math.unit(1.41, "feet"),
  26669. name: "Hoofpaw",
  26670. image: {
  26671. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26672. }
  26673. },
  26674. leftHandBack: {
  26675. height: math.unit(0.938, "feet"),
  26676. name: "Left Hand (Back)",
  26677. image: {
  26678. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26679. }
  26680. },
  26681. leftHandFront: {
  26682. height: math.unit(0.938, "feet"),
  26683. name: "Left Hand (Front)",
  26684. image: {
  26685. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26686. }
  26687. },
  26688. rightHandBack: {
  26689. height: math.unit(0.95, "feet"),
  26690. name: "Right Hand (Back)",
  26691. image: {
  26692. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26693. }
  26694. },
  26695. rightHandFront: {
  26696. height: math.unit(0.95, "feet"),
  26697. name: "Right Hand (Front)",
  26698. image: {
  26699. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26700. }
  26701. },
  26702. },
  26703. [
  26704. {
  26705. name: "Normal",
  26706. height: math.unit(6 + 4 / 12, "feet"),
  26707. default: true
  26708. },
  26709. ]
  26710. ))
  26711. characterMakers.push(() => makeCharacter(
  26712. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26713. {
  26714. front: {
  26715. height: math.unit(6, "feet"),
  26716. weight: math.unit(320, "lb"),
  26717. name: "Front",
  26718. image: {
  26719. source: "./media/characters/balina-mejeri/front.svg",
  26720. extra: 517 / 488,
  26721. bottom: 44.2 / 561
  26722. }
  26723. },
  26724. },
  26725. [
  26726. {
  26727. name: "Normal",
  26728. height: math.unit(6 + 4 / 12, "feet")
  26729. },
  26730. {
  26731. name: "Business",
  26732. height: math.unit(155, "feet"),
  26733. default: true
  26734. },
  26735. ]
  26736. ))
  26737. characterMakers.push(() => makeCharacter(
  26738. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26739. {
  26740. kneeling: {
  26741. height: math.unit(6 + 4 / 12, "feet"),
  26742. weight: math.unit(300 * 20, "lb"),
  26743. name: "Kneeling",
  26744. image: {
  26745. source: "./media/characters/balbarian/kneeling.svg",
  26746. extra: 922 / 862,
  26747. bottom: 42.4 / 965
  26748. }
  26749. },
  26750. },
  26751. [
  26752. {
  26753. name: "Normal",
  26754. height: math.unit(6 + 4 / 12, "feet")
  26755. },
  26756. {
  26757. name: "Treasured",
  26758. height: math.unit(18 + 9 / 12, "feet"),
  26759. default: true
  26760. },
  26761. {
  26762. name: "Macro",
  26763. height: math.unit(900, "feet")
  26764. },
  26765. ]
  26766. ))
  26767. characterMakers.push(() => makeCharacter(
  26768. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26769. {
  26770. front: {
  26771. height: math.unit(6 + 4 / 12, "feet"),
  26772. weight: math.unit(325, "lb"),
  26773. name: "Front",
  26774. image: {
  26775. source: "./media/characters/balina-amarini/front.svg",
  26776. extra: 415 / 403,
  26777. bottom: 19 / 433.4
  26778. }
  26779. },
  26780. back: {
  26781. height: math.unit(6 + 4 / 12, "feet"),
  26782. weight: math.unit(325, "lb"),
  26783. name: "Back",
  26784. image: {
  26785. source: "./media/characters/balina-amarini/back.svg",
  26786. extra: 415 / 403,
  26787. bottom: 13.5 / 432
  26788. }
  26789. },
  26790. overdrive: {
  26791. height: math.unit(6 + 4 / 12, "feet"),
  26792. weight: math.unit(400, "lb"),
  26793. name: "Overdrive",
  26794. image: {
  26795. source: "./media/characters/balina-amarini/overdrive.svg",
  26796. extra: 269 / 259,
  26797. bottom: 12 / 282
  26798. }
  26799. },
  26800. },
  26801. [
  26802. {
  26803. name: "Boom",
  26804. height: math.unit(9 + 10 / 12, "feet"),
  26805. default: true
  26806. },
  26807. {
  26808. name: "Macro",
  26809. height: math.unit(280, "feet")
  26810. },
  26811. ]
  26812. ))
  26813. characterMakers.push(() => makeCharacter(
  26814. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26815. {
  26816. goddess: {
  26817. height: math.unit(600, "feet"),
  26818. weight: math.unit(2000000, "tons"),
  26819. name: "Goddess",
  26820. image: {
  26821. source: "./media/characters/lady-kubwa/goddess.svg",
  26822. extra: 1240.5 / 1223,
  26823. bottom: 22 / 1263
  26824. }
  26825. },
  26826. goddesser: {
  26827. height: math.unit(900, "feet"),
  26828. weight: math.unit(20000000, "lb"),
  26829. name: "Goddess-er",
  26830. image: {
  26831. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26832. extra: 899 / 888,
  26833. bottom: 12.6 / 912
  26834. }
  26835. },
  26836. },
  26837. [
  26838. {
  26839. name: "Macro",
  26840. height: math.unit(600, "feet"),
  26841. default: true
  26842. },
  26843. {
  26844. name: "Megamacro",
  26845. height: math.unit(250, "miles")
  26846. },
  26847. ]
  26848. ))
  26849. characterMakers.push(() => makeCharacter(
  26850. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26851. {
  26852. front: {
  26853. height: math.unit(7 + 7 / 12, "feet"),
  26854. weight: math.unit(250, "lb"),
  26855. name: "Front",
  26856. image: {
  26857. source: "./media/characters/tala-grovehorn/front.svg",
  26858. extra: 2636 / 2525,
  26859. bottom: 147 / 2781
  26860. }
  26861. },
  26862. back: {
  26863. height: math.unit(7 + 7 / 12, "feet"),
  26864. weight: math.unit(250, "lb"),
  26865. name: "Back",
  26866. image: {
  26867. source: "./media/characters/tala-grovehorn/back.svg",
  26868. extra: 2635 / 2539,
  26869. bottom: 100 / 2732.8
  26870. }
  26871. },
  26872. mouth: {
  26873. height: math.unit(1.15, "feet"),
  26874. name: "Mouth",
  26875. image: {
  26876. source: "./media/characters/tala-grovehorn/mouth.svg"
  26877. }
  26878. },
  26879. dick: {
  26880. height: math.unit(2.36, "feet"),
  26881. name: "Dick",
  26882. image: {
  26883. source: "./media/characters/tala-grovehorn/dick.svg"
  26884. }
  26885. },
  26886. slit: {
  26887. height: math.unit(0.61, "feet"),
  26888. name: "Slit",
  26889. image: {
  26890. source: "./media/characters/tala-grovehorn/slit.svg"
  26891. }
  26892. },
  26893. },
  26894. [
  26895. ]
  26896. ))
  26897. characterMakers.push(() => makeCharacter(
  26898. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26899. {
  26900. front: {
  26901. height: math.unit(7 + 7 / 12, "feet"),
  26902. weight: math.unit(225, "lb"),
  26903. name: "Front",
  26904. image: {
  26905. source: "./media/characters/epona/front.svg",
  26906. extra: 2445 / 2290,
  26907. bottom: 251 / 2696
  26908. }
  26909. },
  26910. back: {
  26911. height: math.unit(7 + 7 / 12, "feet"),
  26912. weight: math.unit(225, "lb"),
  26913. name: "Back",
  26914. image: {
  26915. source: "./media/characters/epona/back.svg",
  26916. extra: 2546 / 2408,
  26917. bottom: 44 / 2589
  26918. }
  26919. },
  26920. genitals: {
  26921. height: math.unit(1.5, "feet"),
  26922. name: "Genitals",
  26923. image: {
  26924. source: "./media/characters/epona/genitals.svg"
  26925. }
  26926. },
  26927. },
  26928. [
  26929. {
  26930. name: "Normal",
  26931. height: math.unit(7 + 7 / 12, "feet"),
  26932. default: true
  26933. },
  26934. ]
  26935. ))
  26936. characterMakers.push(() => makeCharacter(
  26937. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26938. {
  26939. front: {
  26940. height: math.unit(7, "feet"),
  26941. weight: math.unit(518, "lb"),
  26942. name: "Front",
  26943. image: {
  26944. source: "./media/characters/avia-bloodbourn/front.svg",
  26945. extra: 1466 / 1350,
  26946. bottom: 65 / 1527
  26947. }
  26948. },
  26949. },
  26950. [
  26951. ]
  26952. ))
  26953. characterMakers.push(() => makeCharacter(
  26954. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26955. {
  26956. front: {
  26957. height: math.unit(9.35, "feet"),
  26958. weight: math.unit(600, "lb"),
  26959. name: "Front",
  26960. image: {
  26961. source: "./media/characters/amera/front.svg",
  26962. extra: 891 / 818,
  26963. bottom: 30 / 922.7
  26964. }
  26965. },
  26966. back: {
  26967. height: math.unit(9.35, "feet"),
  26968. weight: math.unit(600, "lb"),
  26969. name: "Back",
  26970. image: {
  26971. source: "./media/characters/amera/back.svg",
  26972. extra: 876 / 824,
  26973. bottom: 6.8 / 884
  26974. }
  26975. },
  26976. dick: {
  26977. height: math.unit(2.14, "feet"),
  26978. name: "Dick",
  26979. image: {
  26980. source: "./media/characters/amera/dick.svg"
  26981. }
  26982. },
  26983. },
  26984. [
  26985. {
  26986. name: "Normal",
  26987. height: math.unit(9.35, "feet"),
  26988. default: true
  26989. },
  26990. ]
  26991. ))
  26992. characterMakers.push(() => makeCharacter(
  26993. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26994. {
  26995. kneeling: {
  26996. height: math.unit(3 + 4 / 12, "feet"),
  26997. weight: math.unit(90, "lb"),
  26998. name: "Kneeling",
  26999. image: {
  27000. source: "./media/characters/rosewen/kneeling.svg",
  27001. extra: 1835 / 1571,
  27002. bottom: 27.7 / 1862
  27003. }
  27004. },
  27005. },
  27006. [
  27007. {
  27008. name: "Normal",
  27009. height: math.unit(3 + 4 / 12, "feet"),
  27010. default: true
  27011. },
  27012. ]
  27013. ))
  27014. characterMakers.push(() => makeCharacter(
  27015. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27016. {
  27017. front: {
  27018. height: math.unit(5 + 10 / 12, "feet"),
  27019. weight: math.unit(200, "lb"),
  27020. name: "Front",
  27021. image: {
  27022. source: "./media/characters/sabah/front.svg",
  27023. extra: 849 / 763,
  27024. bottom: 33.9 / 881
  27025. }
  27026. },
  27027. },
  27028. [
  27029. {
  27030. name: "Normal",
  27031. height: math.unit(5 + 10 / 12, "feet"),
  27032. default: true
  27033. },
  27034. ]
  27035. ))
  27036. characterMakers.push(() => makeCharacter(
  27037. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27038. {
  27039. front: {
  27040. height: math.unit(3 + 5 / 12, "feet"),
  27041. weight: math.unit(40, "kg"),
  27042. name: "Front",
  27043. image: {
  27044. source: "./media/characters/purple-flame/front.svg",
  27045. extra: 1577 / 1412,
  27046. bottom: 97 / 1694
  27047. }
  27048. },
  27049. frontDressed: {
  27050. height: math.unit(3 + 5 / 12, "feet"),
  27051. weight: math.unit(40, "kg"),
  27052. name: "Front (Dressed)",
  27053. image: {
  27054. source: "./media/characters/purple-flame/front-dressed.svg",
  27055. extra: 1577 / 1412,
  27056. bottom: 97 / 1694
  27057. }
  27058. },
  27059. headphones: {
  27060. height: math.unit(0.85, "feet"),
  27061. name: "Headphones",
  27062. image: {
  27063. source: "./media/characters/purple-flame/headphones.svg"
  27064. }
  27065. },
  27066. },
  27067. [
  27068. {
  27069. name: "Really Small",
  27070. height: math.unit(5, "cm")
  27071. },
  27072. {
  27073. name: "Micro",
  27074. height: math.unit(1 + 5 / 12, "feet")
  27075. },
  27076. {
  27077. name: "Normal",
  27078. height: math.unit(3 + 5 / 12, "feet"),
  27079. default: true
  27080. },
  27081. {
  27082. name: "Minimacro",
  27083. height: math.unit(125, "feet")
  27084. },
  27085. {
  27086. name: "Macro",
  27087. height: math.unit(0.5, "miles")
  27088. },
  27089. {
  27090. name: "Megamacro",
  27091. height: math.unit(50, "miles")
  27092. },
  27093. {
  27094. name: "Gigantic",
  27095. height: math.unit(750, "miles")
  27096. },
  27097. {
  27098. name: "Planetary",
  27099. height: math.unit(15000, "miles")
  27100. },
  27101. ]
  27102. ))
  27103. characterMakers.push(() => makeCharacter(
  27104. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27105. {
  27106. front: {
  27107. height: math.unit(14, "feet"),
  27108. weight: math.unit(959, "lb"),
  27109. name: "Front",
  27110. image: {
  27111. source: "./media/characters/arsenal/front.svg",
  27112. extra: 2357 / 2157,
  27113. bottom: 93 / 2458
  27114. }
  27115. },
  27116. },
  27117. [
  27118. {
  27119. name: "Normal",
  27120. height: math.unit(14, "feet"),
  27121. default: true
  27122. },
  27123. ]
  27124. ))
  27125. characterMakers.push(() => makeCharacter(
  27126. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27127. {
  27128. front: {
  27129. height: math.unit(6, "feet"),
  27130. weight: math.unit(150, "lb"),
  27131. name: "Front",
  27132. image: {
  27133. source: "./media/characters/adira/front.svg",
  27134. extra: 1078 / 1029,
  27135. bottom: 87 / 1166
  27136. }
  27137. },
  27138. },
  27139. [
  27140. {
  27141. name: "Micro",
  27142. height: math.unit(4, "inches"),
  27143. default: true
  27144. },
  27145. {
  27146. name: "Macro",
  27147. height: math.unit(50, "feet")
  27148. },
  27149. ]
  27150. ))
  27151. characterMakers.push(() => makeCharacter(
  27152. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27153. {
  27154. front: {
  27155. height: math.unit(16, "feet"),
  27156. weight: math.unit(1000, "lb"),
  27157. name: "Front",
  27158. image: {
  27159. source: "./media/characters/grim/front.svg",
  27160. extra: 622 / 614,
  27161. bottom: 18.1 / 642
  27162. }
  27163. },
  27164. back: {
  27165. height: math.unit(16, "feet"),
  27166. weight: math.unit(1000, "lb"),
  27167. name: "Back",
  27168. image: {
  27169. source: "./media/characters/grim/back.svg",
  27170. extra: 610.6 / 602,
  27171. bottom: 40.8 / 652
  27172. }
  27173. },
  27174. hunched: {
  27175. height: math.unit(9.75, "feet"),
  27176. weight: math.unit(1000, "lb"),
  27177. name: "Hunched",
  27178. image: {
  27179. source: "./media/characters/grim/hunched.svg",
  27180. extra: 304 / 297,
  27181. bottom: 35.4 / 394
  27182. }
  27183. },
  27184. },
  27185. [
  27186. {
  27187. name: "Normal",
  27188. height: math.unit(16, "feet"),
  27189. default: true
  27190. },
  27191. ]
  27192. ))
  27193. characterMakers.push(() => makeCharacter(
  27194. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27195. {
  27196. front: {
  27197. height: math.unit(2.3, "meters"),
  27198. weight: math.unit(300, "lb"),
  27199. name: "Front",
  27200. image: {
  27201. source: "./media/characters/sinja/front-sfw.svg",
  27202. extra: 1393 / 1294,
  27203. bottom: 70 / 1463
  27204. }
  27205. },
  27206. frontNsfw: {
  27207. height: math.unit(2.3, "meters"),
  27208. weight: math.unit(300, "lb"),
  27209. name: "Front (NSFW)",
  27210. image: {
  27211. source: "./media/characters/sinja/front-nsfw.svg",
  27212. extra: 1393 / 1294,
  27213. bottom: 70 / 1463
  27214. }
  27215. },
  27216. back: {
  27217. height: math.unit(2.3, "meters"),
  27218. weight: math.unit(300, "lb"),
  27219. name: "Back",
  27220. image: {
  27221. source: "./media/characters/sinja/back.svg",
  27222. extra: 1393 / 1294,
  27223. bottom: 70 / 1463
  27224. }
  27225. },
  27226. head: {
  27227. height: math.unit(1.771, "feet"),
  27228. name: "Head",
  27229. image: {
  27230. source: "./media/characters/sinja/head.svg"
  27231. }
  27232. },
  27233. slit: {
  27234. height: math.unit(0.8, "feet"),
  27235. name: "Slit",
  27236. image: {
  27237. source: "./media/characters/sinja/slit.svg"
  27238. }
  27239. },
  27240. },
  27241. [
  27242. {
  27243. name: "Normal",
  27244. height: math.unit(2.3, "meters")
  27245. },
  27246. {
  27247. name: "Macro",
  27248. height: math.unit(91, "meters"),
  27249. default: true
  27250. },
  27251. {
  27252. name: "Megamacro",
  27253. height: math.unit(91440, "meters")
  27254. },
  27255. {
  27256. name: "Gigamacro",
  27257. height: math.unit(60960000, "meters")
  27258. },
  27259. {
  27260. name: "Teramacro",
  27261. height: math.unit(9144000000, "meters")
  27262. },
  27263. ]
  27264. ))
  27265. characterMakers.push(() => makeCharacter(
  27266. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27267. {
  27268. front: {
  27269. height: math.unit(1.7, "meters"),
  27270. weight: math.unit(130, "lb"),
  27271. name: "Front",
  27272. image: {
  27273. source: "./media/characters/kyu/front.svg",
  27274. extra: 415 / 395,
  27275. bottom: 5 / 420
  27276. }
  27277. },
  27278. head: {
  27279. height: math.unit(1.75, "feet"),
  27280. name: "Head",
  27281. image: {
  27282. source: "./media/characters/kyu/head.svg"
  27283. }
  27284. },
  27285. foot: {
  27286. height: math.unit(0.81, "feet"),
  27287. name: "Foot",
  27288. image: {
  27289. source: "./media/characters/kyu/foot.svg"
  27290. }
  27291. },
  27292. },
  27293. [
  27294. {
  27295. name: "Normal",
  27296. height: math.unit(1.7, "meters")
  27297. },
  27298. {
  27299. name: "Macro",
  27300. height: math.unit(131, "feet"),
  27301. default: true
  27302. },
  27303. {
  27304. name: "Megamacro",
  27305. height: math.unit(91440, "meters")
  27306. },
  27307. {
  27308. name: "Gigamacro",
  27309. height: math.unit(60960000, "meters")
  27310. },
  27311. {
  27312. name: "Teramacro",
  27313. height: math.unit(9144000000, "meters")
  27314. },
  27315. ]
  27316. ))
  27317. characterMakers.push(() => makeCharacter(
  27318. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27319. {
  27320. front: {
  27321. height: math.unit(7 + 1 / 12, "feet"),
  27322. weight: math.unit(250, "lb"),
  27323. name: "Front",
  27324. image: {
  27325. source: "./media/characters/joey/front.svg",
  27326. extra: 1791 / 1537,
  27327. bottom: 28 / 1816
  27328. }
  27329. },
  27330. },
  27331. [
  27332. {
  27333. name: "Micro",
  27334. height: math.unit(3, "inches")
  27335. },
  27336. {
  27337. name: "Normal",
  27338. height: math.unit(7 + 1 / 12, "feet"),
  27339. default: true
  27340. },
  27341. ]
  27342. ))
  27343. characterMakers.push(() => makeCharacter(
  27344. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27345. {
  27346. front: {
  27347. height: math.unit(165, "cm"),
  27348. weight: math.unit(140, "lb"),
  27349. name: "Front",
  27350. image: {
  27351. source: "./media/characters/sam-evans/front.svg",
  27352. extra: 3417 / 3230,
  27353. bottom: 41.3 / 3417
  27354. }
  27355. },
  27356. frontSixTails: {
  27357. height: math.unit(165, "cm"),
  27358. weight: math.unit(140, "lb"),
  27359. name: "Front-six-tails",
  27360. image: {
  27361. source: "./media/characters/sam-evans/front-six-tails.svg",
  27362. extra: 3417 / 3230,
  27363. bottom: 41.3 / 3417
  27364. }
  27365. },
  27366. back: {
  27367. height: math.unit(165, "cm"),
  27368. weight: math.unit(140, "lb"),
  27369. name: "Back",
  27370. image: {
  27371. source: "./media/characters/sam-evans/back.svg",
  27372. extra: 3227 / 3032,
  27373. bottom: 6.8 / 3234
  27374. }
  27375. },
  27376. face: {
  27377. height: math.unit(0.68, "feet"),
  27378. name: "Face",
  27379. image: {
  27380. source: "./media/characters/sam-evans/face.svg"
  27381. }
  27382. },
  27383. },
  27384. [
  27385. {
  27386. name: "Normal",
  27387. height: math.unit(165, "cm"),
  27388. default: true
  27389. },
  27390. {
  27391. name: "Macro",
  27392. height: math.unit(100, "meters")
  27393. },
  27394. {
  27395. name: "Macro+",
  27396. height: math.unit(800, "meters")
  27397. },
  27398. {
  27399. name: "Macro++",
  27400. height: math.unit(3, "km")
  27401. },
  27402. {
  27403. name: "Macro+++",
  27404. height: math.unit(30, "km")
  27405. },
  27406. ]
  27407. ))
  27408. characterMakers.push(() => makeCharacter(
  27409. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27410. {
  27411. front: {
  27412. height: math.unit(10, "feet"),
  27413. weight: math.unit(750, "lb"),
  27414. name: "Front",
  27415. image: {
  27416. source: "./media/characters/juliet-a/front.svg",
  27417. extra: 1766 / 1720,
  27418. bottom: 43 / 1809
  27419. }
  27420. },
  27421. back: {
  27422. height: math.unit(10, "feet"),
  27423. weight: math.unit(750, "lb"),
  27424. name: "Back",
  27425. image: {
  27426. source: "./media/characters/juliet-a/back.svg",
  27427. extra: 1781 / 1734,
  27428. bottom: 35 / 1810,
  27429. }
  27430. },
  27431. },
  27432. [
  27433. {
  27434. name: "Normal",
  27435. height: math.unit(10, "feet"),
  27436. default: true
  27437. },
  27438. {
  27439. name: "Dragon Form",
  27440. height: math.unit(250, "feet")
  27441. },
  27442. {
  27443. name: "Macro",
  27444. height: math.unit(1000, "feet")
  27445. },
  27446. {
  27447. name: "Megamacro",
  27448. height: math.unit(10000, "feet")
  27449. }
  27450. ]
  27451. ))
  27452. characterMakers.push(() => makeCharacter(
  27453. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27454. {
  27455. regular: {
  27456. height: math.unit(7 + 3 / 12, "feet"),
  27457. weight: math.unit(260, "lb"),
  27458. name: "Regular",
  27459. image: {
  27460. source: "./media/characters/wild/regular.svg",
  27461. extra: 97.45 / 92,
  27462. bottom: 6.8 / 104.3
  27463. }
  27464. },
  27465. biggums: {
  27466. height: math.unit(8 + 6 / 12, "feet"),
  27467. weight: math.unit(425, "lb"),
  27468. name: "Biggums",
  27469. image: {
  27470. source: "./media/characters/wild/biggums.svg",
  27471. extra: 97.45 / 92,
  27472. bottom: 7.5 / 132.34
  27473. }
  27474. },
  27475. mawRegular: {
  27476. height: math.unit(1.24, "feet"),
  27477. name: "Maw (Regular)",
  27478. image: {
  27479. source: "./media/characters/wild/maw.svg"
  27480. }
  27481. },
  27482. mawBiggums: {
  27483. height: math.unit(1.47, "feet"),
  27484. name: "Maw (Biggums)",
  27485. image: {
  27486. source: "./media/characters/wild/maw.svg"
  27487. }
  27488. },
  27489. },
  27490. [
  27491. {
  27492. name: "Normal",
  27493. height: math.unit(7 + 3 / 12, "feet"),
  27494. default: true
  27495. },
  27496. ]
  27497. ))
  27498. characterMakers.push(() => makeCharacter(
  27499. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27500. {
  27501. front: {
  27502. height: math.unit(2.5, "meters"),
  27503. weight: math.unit(200, "kg"),
  27504. name: "Front",
  27505. image: {
  27506. source: "./media/characters/vidar/front.svg",
  27507. extra: 2994 / 2795,
  27508. bottom: 56 / 3061
  27509. }
  27510. },
  27511. back: {
  27512. height: math.unit(2.5, "meters"),
  27513. weight: math.unit(200, "kg"),
  27514. name: "Back",
  27515. image: {
  27516. source: "./media/characters/vidar/back.svg",
  27517. extra: 3131 / 2928,
  27518. bottom: 13.5 / 3141.5
  27519. }
  27520. },
  27521. feral: {
  27522. height: math.unit(2.5, "meters"),
  27523. weight: math.unit(2000, "kg"),
  27524. name: "Feral",
  27525. image: {
  27526. source: "./media/characters/vidar/feral.svg",
  27527. extra: 2790 / 1765,
  27528. bottom: 6 / 2796
  27529. }
  27530. },
  27531. },
  27532. [
  27533. {
  27534. name: "Normal",
  27535. height: math.unit(2.5, "meters"),
  27536. default: true
  27537. },
  27538. {
  27539. name: "Macro",
  27540. height: math.unit(100, "meters")
  27541. },
  27542. ]
  27543. ))
  27544. characterMakers.push(() => makeCharacter(
  27545. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27546. {
  27547. front: {
  27548. height: math.unit(5 + 9 / 12, "feet"),
  27549. weight: math.unit(120, "lb"),
  27550. name: "Front",
  27551. image: {
  27552. source: "./media/characters/ash/front.svg",
  27553. extra: 2189 / 1961,
  27554. bottom: 5.2 / 2194
  27555. }
  27556. },
  27557. },
  27558. [
  27559. {
  27560. name: "Normal",
  27561. height: math.unit(5 + 9 / 12, "feet"),
  27562. default: true
  27563. },
  27564. ]
  27565. ))
  27566. characterMakers.push(() => makeCharacter(
  27567. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27568. {
  27569. front: {
  27570. height: math.unit(9, "feet"),
  27571. weight: math.unit(10000, "lb"),
  27572. name: "Front",
  27573. image: {
  27574. source: "./media/characters/gygabite/front.svg",
  27575. bottom: 31.7 / 537.8,
  27576. extra: 505 / 370
  27577. }
  27578. },
  27579. },
  27580. [
  27581. {
  27582. name: "Normal",
  27583. height: math.unit(9, "feet"),
  27584. default: true
  27585. },
  27586. ]
  27587. ))
  27588. characterMakers.push(() => makeCharacter(
  27589. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27590. {
  27591. front: {
  27592. height: math.unit(12, "feet"),
  27593. weight: math.unit(35000, "lb"),
  27594. name: "Front",
  27595. image: {
  27596. source: "./media/characters/p0tat0/front.svg",
  27597. extra: 1065 / 921,
  27598. bottom: 55.7 / 1121.25
  27599. }
  27600. },
  27601. },
  27602. [
  27603. {
  27604. name: "Normal",
  27605. height: math.unit(12, "feet"),
  27606. default: true
  27607. },
  27608. ]
  27609. ))
  27610. characterMakers.push(() => makeCharacter(
  27611. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27612. {
  27613. side: {
  27614. height: math.unit(6.5, "feet"),
  27615. weight: math.unit(800, "lb"),
  27616. name: "Side",
  27617. image: {
  27618. source: "./media/characters/dusk/side.svg",
  27619. extra: 615 / 373,
  27620. bottom: 53 / 664
  27621. }
  27622. },
  27623. sitting: {
  27624. height: math.unit(7, "feet"),
  27625. weight: math.unit(800, "lb"),
  27626. name: "Sitting",
  27627. image: {
  27628. source: "./media/characters/dusk/sitting.svg",
  27629. extra: 753 / 425,
  27630. bottom: 33 / 774
  27631. }
  27632. },
  27633. head: {
  27634. height: math.unit(6.1, "feet"),
  27635. name: "Head",
  27636. image: {
  27637. source: "./media/characters/dusk/head.svg"
  27638. }
  27639. },
  27640. },
  27641. [
  27642. {
  27643. name: "Normal",
  27644. height: math.unit(7, "feet"),
  27645. default: true
  27646. },
  27647. ]
  27648. ))
  27649. characterMakers.push(() => makeCharacter(
  27650. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27651. {
  27652. front: {
  27653. height: math.unit(15, "feet"),
  27654. weight: math.unit(7000, "lb"),
  27655. name: "Front",
  27656. image: {
  27657. source: "./media/characters/jay-direwolf/front.svg",
  27658. extra: 1810 / 1732,
  27659. bottom: 66 / 1892
  27660. }
  27661. },
  27662. },
  27663. [
  27664. {
  27665. name: "Normal",
  27666. height: math.unit(15, "feet"),
  27667. default: true
  27668. },
  27669. ]
  27670. ))
  27671. characterMakers.push(() => makeCharacter(
  27672. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27673. {
  27674. front: {
  27675. height: math.unit(4 + 9 / 12, "feet"),
  27676. weight: math.unit(130, "lb"),
  27677. name: "Front",
  27678. image: {
  27679. source: "./media/characters/anchovie/front.svg",
  27680. extra: 382 / 350,
  27681. bottom: 25 / 409
  27682. }
  27683. },
  27684. back: {
  27685. height: math.unit(4 + 9 / 12, "feet"),
  27686. weight: math.unit(130, "lb"),
  27687. name: "Back",
  27688. image: {
  27689. source: "./media/characters/anchovie/back.svg",
  27690. extra: 385 / 352,
  27691. bottom: 16.6 / 402
  27692. }
  27693. },
  27694. frontDressed: {
  27695. height: math.unit(4 + 9 / 12, "feet"),
  27696. weight: math.unit(130, "lb"),
  27697. name: "Front (Dressed)",
  27698. image: {
  27699. source: "./media/characters/anchovie/front-dressed.svg",
  27700. extra: 382 / 350,
  27701. bottom: 25 / 409
  27702. }
  27703. },
  27704. backDressed: {
  27705. height: math.unit(4 + 9 / 12, "feet"),
  27706. weight: math.unit(130, "lb"),
  27707. name: "Back (Dressed)",
  27708. image: {
  27709. source: "./media/characters/anchovie/back-dressed.svg",
  27710. extra: 385 / 352,
  27711. bottom: 16.6 / 402
  27712. }
  27713. },
  27714. },
  27715. [
  27716. {
  27717. name: "Micro",
  27718. height: math.unit(6.4, "inches")
  27719. },
  27720. {
  27721. name: "Normal",
  27722. height: math.unit(4 + 9 / 12, "feet"),
  27723. default: true
  27724. },
  27725. ]
  27726. ))
  27727. characterMakers.push(() => makeCharacter(
  27728. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27729. {
  27730. front: {
  27731. height: math.unit(2, "meters"),
  27732. weight: math.unit(180, "lb"),
  27733. name: "Front",
  27734. image: {
  27735. source: "./media/characters/acidrenamon/front.svg",
  27736. extra: 987 / 890,
  27737. bottom: 22.8 / 1009
  27738. }
  27739. },
  27740. back: {
  27741. height: math.unit(2, "meters"),
  27742. weight: math.unit(180, "lb"),
  27743. name: "Back",
  27744. image: {
  27745. source: "./media/characters/acidrenamon/back.svg",
  27746. extra: 983 / 891,
  27747. bottom: 8.4 / 992
  27748. }
  27749. },
  27750. head: {
  27751. height: math.unit(1.92, "feet"),
  27752. name: "Head",
  27753. image: {
  27754. source: "./media/characters/acidrenamon/head.svg"
  27755. }
  27756. },
  27757. rump: {
  27758. height: math.unit(1.72, "feet"),
  27759. name: "Rump",
  27760. image: {
  27761. source: "./media/characters/acidrenamon/rump.svg"
  27762. }
  27763. },
  27764. tail: {
  27765. height: math.unit(4.2, "feet"),
  27766. name: "Tail",
  27767. image: {
  27768. source: "./media/characters/acidrenamon/tail.svg"
  27769. }
  27770. },
  27771. },
  27772. [
  27773. {
  27774. name: "Normal",
  27775. height: math.unit(2, "meters"),
  27776. default: true
  27777. },
  27778. {
  27779. name: "Minimacro",
  27780. height: math.unit(7, "meters")
  27781. },
  27782. {
  27783. name: "Macro",
  27784. height: math.unit(200, "meters")
  27785. },
  27786. {
  27787. name: "Gigamacro",
  27788. height: math.unit(0.2, "earths")
  27789. },
  27790. ]
  27791. ))
  27792. characterMakers.push(() => makeCharacter(
  27793. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27794. {
  27795. front: {
  27796. height: math.unit(152, "feet"),
  27797. name: "Front",
  27798. image: {
  27799. source: "./media/characters/kenzie-lee/front.svg",
  27800. extra: 1869/1774,
  27801. bottom: 128/1997
  27802. }
  27803. },
  27804. side: {
  27805. height: math.unit(86, "feet"),
  27806. name: "Side",
  27807. image: {
  27808. source: "./media/characters/kenzie-lee/side.svg",
  27809. extra: 930/815,
  27810. bottom: 177/1107
  27811. }
  27812. },
  27813. paw: {
  27814. height: math.unit(15, "feet"),
  27815. name: "Paw",
  27816. image: {
  27817. source: "./media/characters/kenzie-lee/paw.svg"
  27818. }
  27819. },
  27820. },
  27821. [
  27822. {
  27823. name: "Micro",
  27824. height: math.unit(1.5, "inches")
  27825. },
  27826. {
  27827. name: "Normal",
  27828. height: math.unit(152, "feet"),
  27829. default: true
  27830. },
  27831. {
  27832. name: "Megamacro",
  27833. height: math.unit(7, "miles")
  27834. },
  27835. {
  27836. name: "Gigamacro",
  27837. height: math.unit(8000, "miles")
  27838. },
  27839. ]
  27840. ))
  27841. characterMakers.push(() => makeCharacter(
  27842. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27843. {
  27844. side: {
  27845. height: math.unit(6, "feet"),
  27846. weight: math.unit(150, "lb"),
  27847. name: "Side",
  27848. image: {
  27849. source: "./media/characters/withers/side.svg",
  27850. extra: 1830 / 1728,
  27851. bottom: 96 / 1927
  27852. }
  27853. },
  27854. front: {
  27855. height: math.unit(6, "feet"),
  27856. weight: math.unit(150, "lb"),
  27857. name: "Front",
  27858. image: {
  27859. source: "./media/characters/withers/front.svg",
  27860. extra: 1514 / 1438,
  27861. bottom: 118 / 1632
  27862. }
  27863. },
  27864. },
  27865. [
  27866. {
  27867. name: "Macro",
  27868. height: math.unit(168, "feet"),
  27869. default: true
  27870. },
  27871. {
  27872. name: "Megamacro",
  27873. height: math.unit(15, "miles")
  27874. }
  27875. ]
  27876. ))
  27877. characterMakers.push(() => makeCharacter(
  27878. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27879. {
  27880. front: {
  27881. height: math.unit(6 + 7 / 12, "feet"),
  27882. weight: math.unit(250, "lb"),
  27883. name: "Front",
  27884. image: {
  27885. source: "./media/characters/nemoskii/front.svg",
  27886. extra: 2270 / 1734,
  27887. bottom: 86 / 2354
  27888. }
  27889. },
  27890. back: {
  27891. height: math.unit(6 + 7 / 12, "feet"),
  27892. weight: math.unit(250, "lb"),
  27893. name: "Back",
  27894. image: {
  27895. source: "./media/characters/nemoskii/back.svg",
  27896. extra: 1845 / 1788,
  27897. bottom: 10.5 / 1852
  27898. }
  27899. },
  27900. head: {
  27901. height: math.unit(1.31, "feet"),
  27902. name: "Head",
  27903. image: {
  27904. source: "./media/characters/nemoskii/head.svg"
  27905. }
  27906. },
  27907. },
  27908. [
  27909. {
  27910. name: "Micro",
  27911. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27912. },
  27913. {
  27914. name: "Normal",
  27915. height: math.unit(6 + 7 / 12, "feet"),
  27916. default: true
  27917. },
  27918. {
  27919. name: "Macro",
  27920. height: math.unit((6 + 7 / 12) * 150, "feet")
  27921. },
  27922. {
  27923. name: "Macro+",
  27924. height: math.unit((6 + 7 / 12) * 500, "feet")
  27925. },
  27926. {
  27927. name: "Megamacro",
  27928. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27929. },
  27930. ]
  27931. ))
  27932. characterMakers.push(() => makeCharacter(
  27933. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27934. {
  27935. front: {
  27936. height: math.unit(1, "mile"),
  27937. weight: math.unit(265261.9, "lb"),
  27938. name: "Front",
  27939. image: {
  27940. source: "./media/characters/shui/front.svg",
  27941. extra: 1633 / 1564,
  27942. bottom: 91.5 / 1726
  27943. }
  27944. },
  27945. },
  27946. [
  27947. {
  27948. name: "Macro",
  27949. height: math.unit(1, "mile"),
  27950. default: true
  27951. },
  27952. ]
  27953. ))
  27954. characterMakers.push(() => makeCharacter(
  27955. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27956. {
  27957. front: {
  27958. height: math.unit(12 + 6 / 12, "feet"),
  27959. weight: math.unit(1342, "lb"),
  27960. name: "Front",
  27961. image: {
  27962. source: "./media/characters/arokh-takakura/front.svg",
  27963. extra: 1089 / 1043,
  27964. bottom: 77.4 / 1176.7
  27965. }
  27966. },
  27967. back: {
  27968. height: math.unit(12 + 6 / 12, "feet"),
  27969. weight: math.unit(1342, "lb"),
  27970. name: "Back",
  27971. image: {
  27972. source: "./media/characters/arokh-takakura/back.svg",
  27973. extra: 1046 / 1019,
  27974. bottom: 102 / 1150
  27975. }
  27976. },
  27977. },
  27978. [
  27979. {
  27980. name: "Big",
  27981. height: math.unit(12 + 6 / 12, "feet"),
  27982. default: true
  27983. },
  27984. ]
  27985. ))
  27986. characterMakers.push(() => makeCharacter(
  27987. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27988. {
  27989. front: {
  27990. height: math.unit(5 + 6 / 12, "feet"),
  27991. weight: math.unit(150, "lb"),
  27992. name: "Front",
  27993. image: {
  27994. source: "./media/characters/theo/front.svg",
  27995. extra: 1184 / 1131,
  27996. bottom: 7.4 / 1191
  27997. }
  27998. },
  27999. },
  28000. [
  28001. {
  28002. name: "Micro",
  28003. height: math.unit(5, "inches")
  28004. },
  28005. {
  28006. name: "Normal",
  28007. height: math.unit(5 + 6 / 12, "feet"),
  28008. default: true
  28009. },
  28010. ]
  28011. ))
  28012. characterMakers.push(() => makeCharacter(
  28013. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28014. {
  28015. front: {
  28016. height: math.unit(5 + 9 / 12, "feet"),
  28017. weight: math.unit(130, "lb"),
  28018. name: "Front",
  28019. image: {
  28020. source: "./media/characters/cecelia-swift/front.svg",
  28021. extra: 502 / 484,
  28022. bottom: 23 / 523
  28023. }
  28024. },
  28025. back: {
  28026. height: math.unit(5 + 9 / 12, "feet"),
  28027. weight: math.unit(130, "lb"),
  28028. name: "Back",
  28029. image: {
  28030. source: "./media/characters/cecelia-swift/back.svg",
  28031. extra: 499 / 485,
  28032. bottom: 12 / 511
  28033. }
  28034. },
  28035. head: {
  28036. height: math.unit(0.90, "feet"),
  28037. name: "Head",
  28038. image: {
  28039. source: "./media/characters/cecelia-swift/head.svg"
  28040. }
  28041. },
  28042. rump: {
  28043. height: math.unit(1.75, "feet"),
  28044. name: "Rump",
  28045. image: {
  28046. source: "./media/characters/cecelia-swift/rump.svg"
  28047. }
  28048. },
  28049. },
  28050. [
  28051. {
  28052. name: "Normal",
  28053. height: math.unit(5 + 9 / 12, "feet"),
  28054. default: true
  28055. },
  28056. {
  28057. name: "Big",
  28058. height: math.unit(50, "feet")
  28059. },
  28060. {
  28061. name: "Macro",
  28062. height: math.unit(100, "feet")
  28063. },
  28064. {
  28065. name: "Macro+",
  28066. height: math.unit(500, "feet")
  28067. },
  28068. {
  28069. name: "Macro++",
  28070. height: math.unit(1000, "feet")
  28071. },
  28072. ]
  28073. ))
  28074. characterMakers.push(() => makeCharacter(
  28075. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28076. {
  28077. front: {
  28078. height: math.unit(6, "feet"),
  28079. weight: math.unit(150, "lb"),
  28080. name: "Front",
  28081. image: {
  28082. source: "./media/characters/kaunan/front.svg",
  28083. extra: 2890 / 2523,
  28084. bottom: 49 / 2939
  28085. }
  28086. },
  28087. },
  28088. [
  28089. {
  28090. name: "Macro",
  28091. height: math.unit(150, "feet"),
  28092. default: true
  28093. },
  28094. ]
  28095. ))
  28096. characterMakers.push(() => makeCharacter(
  28097. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28098. {
  28099. front: {
  28100. height: math.unit(175, "cm"),
  28101. weight: math.unit(60, "kg"),
  28102. name: "Front",
  28103. image: {
  28104. source: "./media/characters/fei/front.svg",
  28105. extra: 1873/1723,
  28106. bottom: 53/1926
  28107. }
  28108. },
  28109. },
  28110. [
  28111. {
  28112. name: "Mortal",
  28113. height: math.unit(175, "cm")
  28114. },
  28115. {
  28116. name: "Normal",
  28117. height: math.unit(3500, "m"),
  28118. default: true
  28119. },
  28120. {
  28121. name: "Stroll",
  28122. height: math.unit(17.5, "km")
  28123. },
  28124. {
  28125. name: "Showoff",
  28126. height: math.unit(175, "km")
  28127. },
  28128. ]
  28129. ))
  28130. characterMakers.push(() => makeCharacter(
  28131. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28132. {
  28133. front: {
  28134. height: math.unit(7, "feet"),
  28135. weight: math.unit(1000, "kg"),
  28136. name: "Front",
  28137. image: {
  28138. source: "./media/characters/edrax/front.svg",
  28139. extra: 2838 / 2550,
  28140. bottom: 130 / 2968
  28141. }
  28142. },
  28143. },
  28144. [
  28145. {
  28146. name: "Small",
  28147. height: math.unit(7, "feet")
  28148. },
  28149. {
  28150. name: "Normal",
  28151. height: math.unit(1500, "meters")
  28152. },
  28153. {
  28154. name: "Mega",
  28155. height: math.unit(12000000, "km"),
  28156. default: true
  28157. },
  28158. {
  28159. name: "Megamacro",
  28160. height: math.unit(10600000, "lightyears")
  28161. },
  28162. {
  28163. name: "Hypermacro",
  28164. height: math.unit(256, "yottameters")
  28165. },
  28166. ]
  28167. ))
  28168. characterMakers.push(() => makeCharacter(
  28169. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28170. {
  28171. front: {
  28172. height: math.unit(10, "feet"),
  28173. weight: math.unit(750, "lb"),
  28174. name: "Front",
  28175. image: {
  28176. source: "./media/characters/clove/front.svg",
  28177. extra: 1918/1751,
  28178. bottom: 52/1970
  28179. }
  28180. },
  28181. back: {
  28182. height: math.unit(10, "feet"),
  28183. weight: math.unit(750, "lb"),
  28184. name: "Back",
  28185. image: {
  28186. source: "./media/characters/clove/back.svg",
  28187. extra: 1912/1747,
  28188. bottom: 50/1962
  28189. }
  28190. },
  28191. },
  28192. [
  28193. {
  28194. name: "Normal",
  28195. height: math.unit(10, "feet"),
  28196. default: true
  28197. },
  28198. ]
  28199. ))
  28200. characterMakers.push(() => makeCharacter(
  28201. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28202. {
  28203. front: {
  28204. height: math.unit(4, "feet"),
  28205. weight: math.unit(50, "lb"),
  28206. name: "Front",
  28207. image: {
  28208. source: "./media/characters/alex-rabbit/front.svg",
  28209. extra: 507 / 458,
  28210. bottom: 18.5 / 527
  28211. }
  28212. },
  28213. back: {
  28214. height: math.unit(4, "feet"),
  28215. weight: math.unit(50, "lb"),
  28216. name: "Back",
  28217. image: {
  28218. source: "./media/characters/alex-rabbit/back.svg",
  28219. extra: 502 / 460,
  28220. bottom: 18.9 / 521
  28221. }
  28222. },
  28223. },
  28224. [
  28225. {
  28226. name: "Normal",
  28227. height: math.unit(4, "feet"),
  28228. default: true
  28229. },
  28230. ]
  28231. ))
  28232. characterMakers.push(() => makeCharacter(
  28233. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28234. {
  28235. front: {
  28236. height: math.unit(1 + 3 / 12, "feet"),
  28237. weight: math.unit(80, "lb"),
  28238. name: "Front",
  28239. image: {
  28240. source: "./media/characters/zander-rose/front.svg",
  28241. extra: 916 / 797,
  28242. bottom: 17 / 933
  28243. }
  28244. },
  28245. back: {
  28246. height: math.unit(1 + 3 / 12, "feet"),
  28247. weight: math.unit(80, "lb"),
  28248. name: "Back",
  28249. image: {
  28250. source: "./media/characters/zander-rose/back.svg",
  28251. extra: 903 / 779,
  28252. bottom: 31 / 934
  28253. }
  28254. },
  28255. },
  28256. [
  28257. {
  28258. name: "Normal",
  28259. height: math.unit(1 + 3 / 12, "feet"),
  28260. default: true
  28261. },
  28262. ]
  28263. ))
  28264. characterMakers.push(() => makeCharacter(
  28265. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28266. {
  28267. anthro: {
  28268. height: math.unit(6, "feet"),
  28269. weight: math.unit(150, "lb"),
  28270. name: "Anthro",
  28271. image: {
  28272. source: "./media/characters/razz/anthro.svg",
  28273. extra: 1437 / 1343,
  28274. bottom: 48 / 1485
  28275. }
  28276. },
  28277. feral: {
  28278. height: math.unit(6, "feet"),
  28279. weight: math.unit(150, "lb"),
  28280. name: "Feral",
  28281. image: {
  28282. source: "./media/characters/razz/feral.svg",
  28283. extra: 2569 / 1385,
  28284. bottom: 95 / 2664
  28285. }
  28286. },
  28287. },
  28288. [
  28289. {
  28290. name: "Normal",
  28291. height: math.unit(6, "feet"),
  28292. default: true
  28293. },
  28294. ]
  28295. ))
  28296. characterMakers.push(() => makeCharacter(
  28297. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28298. {
  28299. front: {
  28300. height: math.unit(9 + 4 / 12, "feet"),
  28301. weight: math.unit(500, "lb"),
  28302. name: "Front",
  28303. image: {
  28304. source: "./media/characters/morrigan/front.svg",
  28305. extra: 2707 / 2579,
  28306. bottom: 156 / 2863
  28307. }
  28308. },
  28309. },
  28310. [
  28311. {
  28312. name: "Normal",
  28313. height: math.unit(9 + 4 / 12, "feet"),
  28314. default: true
  28315. },
  28316. ]
  28317. ))
  28318. characterMakers.push(() => makeCharacter(
  28319. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28320. {
  28321. front: {
  28322. height: math.unit(5, "stories"),
  28323. weight: math.unit(4000, "lb"),
  28324. name: "Front",
  28325. image: {
  28326. source: "./media/characters/jenene/front.svg",
  28327. extra: 1780 / 1710,
  28328. bottom: 57 / 1837
  28329. }
  28330. },
  28331. },
  28332. [
  28333. {
  28334. name: "Normal",
  28335. height: math.unit(5, "stories"),
  28336. default: true
  28337. },
  28338. ]
  28339. ))
  28340. characterMakers.push(() => makeCharacter(
  28341. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28342. {
  28343. taurSfw: {
  28344. height: math.unit(10, "meters"),
  28345. weight: math.unit(17500, "kg"),
  28346. name: "Taur",
  28347. image: {
  28348. source: "./media/characters/faey/taur-sfw.svg",
  28349. extra: 1200 / 968,
  28350. bottom: 41 / 1241
  28351. }
  28352. },
  28353. chestmaw: {
  28354. height: math.unit(2.01, "meters"),
  28355. name: "Chestmaw",
  28356. image: {
  28357. source: "./media/characters/faey/chestmaw.svg"
  28358. }
  28359. },
  28360. foot: {
  28361. height: math.unit(2.43, "meters"),
  28362. name: "Foot",
  28363. image: {
  28364. source: "./media/characters/faey/foot.svg"
  28365. }
  28366. },
  28367. jaws: {
  28368. height: math.unit(1.66, "meters"),
  28369. name: "Jaws",
  28370. image: {
  28371. source: "./media/characters/faey/jaws.svg"
  28372. }
  28373. },
  28374. tongues: {
  28375. height: math.unit(2.01, "meters"),
  28376. name: "Tongues",
  28377. image: {
  28378. source: "./media/characters/faey/tongues.svg"
  28379. }
  28380. },
  28381. },
  28382. [
  28383. {
  28384. name: "Small",
  28385. height: math.unit(10, "meters"),
  28386. default: true
  28387. },
  28388. {
  28389. name: "Big",
  28390. height: math.unit(500000, "km")
  28391. },
  28392. ]
  28393. ))
  28394. characterMakers.push(() => makeCharacter(
  28395. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28396. {
  28397. front: {
  28398. height: math.unit(7, "feet"),
  28399. weight: math.unit(275, "lb"),
  28400. name: "Front",
  28401. image: {
  28402. source: "./media/characters/roku/front.svg",
  28403. extra: 903 / 878,
  28404. bottom: 37 / 940
  28405. }
  28406. },
  28407. },
  28408. [
  28409. {
  28410. name: "Normal",
  28411. height: math.unit(7, "feet"),
  28412. default: true
  28413. },
  28414. {
  28415. name: "Macro",
  28416. height: math.unit(500, "feet")
  28417. },
  28418. {
  28419. name: "Megamacro",
  28420. height: math.unit(200, "miles")
  28421. },
  28422. ]
  28423. ))
  28424. characterMakers.push(() => makeCharacter(
  28425. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28426. {
  28427. front: {
  28428. height: math.unit(6 + 2 / 12, "feet"),
  28429. weight: math.unit(150, "lb"),
  28430. name: "Front",
  28431. image: {
  28432. source: "./media/characters/lira/front.svg",
  28433. extra: 1727 / 1605,
  28434. bottom: 26 / 1753
  28435. }
  28436. },
  28437. back: {
  28438. height: math.unit(6 + 2 / 12, "feet"),
  28439. weight: math.unit(150, "lb"),
  28440. name: "Back",
  28441. image: {
  28442. source: "./media/characters/lira/back.svg",
  28443. extra: 1713/1621,
  28444. bottom: 20/1733
  28445. }
  28446. },
  28447. hand: {
  28448. height: math.unit(0.75, "feet"),
  28449. name: "Hand",
  28450. image: {
  28451. source: "./media/characters/lira/hand.svg"
  28452. }
  28453. },
  28454. maw: {
  28455. height: math.unit(0.65, "feet"),
  28456. name: "Maw",
  28457. image: {
  28458. source: "./media/characters/lira/maw.svg"
  28459. }
  28460. },
  28461. pawDigi: {
  28462. height: math.unit(1.6, "feet"),
  28463. name: "Paw Digi",
  28464. image: {
  28465. source: "./media/characters/lira/paw-digi.svg"
  28466. }
  28467. },
  28468. pawPlanti: {
  28469. height: math.unit(1.4, "feet"),
  28470. name: "Paw Planti",
  28471. image: {
  28472. source: "./media/characters/lira/paw-planti.svg"
  28473. }
  28474. },
  28475. },
  28476. [
  28477. {
  28478. name: "Normal",
  28479. height: math.unit(6 + 2 / 12, "feet"),
  28480. default: true
  28481. },
  28482. {
  28483. name: "Macro",
  28484. height: math.unit(100, "feet")
  28485. },
  28486. {
  28487. name: "Macro²",
  28488. height: math.unit(1600, "feet")
  28489. },
  28490. {
  28491. name: "Planetary",
  28492. height: math.unit(20, "earths")
  28493. },
  28494. ]
  28495. ))
  28496. characterMakers.push(() => makeCharacter(
  28497. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28498. {
  28499. front: {
  28500. height: math.unit(6, "feet"),
  28501. weight: math.unit(150, "lb"),
  28502. name: "Front",
  28503. image: {
  28504. source: "./media/characters/hadjet/front.svg",
  28505. extra: 1480 / 1346,
  28506. bottom: 26 / 1506
  28507. }
  28508. },
  28509. frontNsfw: {
  28510. height: math.unit(6, "feet"),
  28511. weight: math.unit(150, "lb"),
  28512. name: "Front (NSFW)",
  28513. image: {
  28514. source: "./media/characters/hadjet/front-nsfw.svg",
  28515. extra: 1440 / 1358,
  28516. bottom: 52 / 1492
  28517. }
  28518. },
  28519. },
  28520. [
  28521. {
  28522. name: "Macro",
  28523. height: math.unit(10, "stories"),
  28524. default: true
  28525. },
  28526. {
  28527. name: "Megamacro",
  28528. height: math.unit(1.5, "miles")
  28529. },
  28530. {
  28531. name: "Megamacro+",
  28532. height: math.unit(5, "miles")
  28533. },
  28534. ]
  28535. ))
  28536. characterMakers.push(() => makeCharacter(
  28537. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28538. {
  28539. side: {
  28540. height: math.unit(106, "feet"),
  28541. weight: math.unit(500, "tonnes"),
  28542. name: "Side",
  28543. image: {
  28544. source: "./media/characters/kodran/side.svg",
  28545. extra: 553 / 480,
  28546. bottom: 33 / 586
  28547. }
  28548. },
  28549. front: {
  28550. height: math.unit(132, "feet"),
  28551. weight: math.unit(500, "tonnes"),
  28552. name: "Front",
  28553. image: {
  28554. source: "./media/characters/kodran/front.svg",
  28555. extra: 667 / 643,
  28556. bottom: 42 / 709
  28557. }
  28558. },
  28559. flying: {
  28560. height: math.unit(350, "feet"),
  28561. weight: math.unit(500, "tonnes"),
  28562. name: "Flying",
  28563. image: {
  28564. source: "./media/characters/kodran/flying.svg"
  28565. }
  28566. },
  28567. foot: {
  28568. height: math.unit(33, "feet"),
  28569. name: "Foot",
  28570. image: {
  28571. source: "./media/characters/kodran/foot.svg"
  28572. }
  28573. },
  28574. footFront: {
  28575. height: math.unit(19, "feet"),
  28576. name: "Foot (Front)",
  28577. image: {
  28578. source: "./media/characters/kodran/foot-front.svg",
  28579. extra: 261 / 261,
  28580. bottom: 91 / 352
  28581. }
  28582. },
  28583. headFront: {
  28584. height: math.unit(53, "feet"),
  28585. name: "Head (Front)",
  28586. image: {
  28587. source: "./media/characters/kodran/head-front.svg"
  28588. }
  28589. },
  28590. headSide: {
  28591. height: math.unit(65, "feet"),
  28592. name: "Head (Side)",
  28593. image: {
  28594. source: "./media/characters/kodran/head-side.svg"
  28595. }
  28596. },
  28597. throat: {
  28598. height: math.unit(79, "feet"),
  28599. name: "Throat",
  28600. image: {
  28601. source: "./media/characters/kodran/throat.svg"
  28602. }
  28603. },
  28604. },
  28605. [
  28606. {
  28607. name: "Large",
  28608. height: math.unit(106, "feet"),
  28609. default: true
  28610. },
  28611. ]
  28612. ))
  28613. characterMakers.push(() => makeCharacter(
  28614. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28615. {
  28616. side: {
  28617. height: math.unit(11, "feet"),
  28618. weight: math.unit(150, "lb"),
  28619. name: "Side",
  28620. image: {
  28621. source: "./media/characters/pyxaron/side.svg",
  28622. extra: 305 / 195,
  28623. bottom: 17 / 322
  28624. }
  28625. },
  28626. },
  28627. [
  28628. {
  28629. name: "Normal",
  28630. height: math.unit(11, "feet"),
  28631. default: true
  28632. },
  28633. ]
  28634. ))
  28635. characterMakers.push(() => makeCharacter(
  28636. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28637. {
  28638. front: {
  28639. height: math.unit(6, "feet"),
  28640. weight: math.unit(150, "lb"),
  28641. name: "Front",
  28642. image: {
  28643. source: "./media/characters/meep/front.svg",
  28644. extra: 88 / 80,
  28645. bottom: 6 / 94
  28646. }
  28647. },
  28648. },
  28649. [
  28650. {
  28651. name: "Fun Sized",
  28652. height: math.unit(2, "inches"),
  28653. default: true
  28654. },
  28655. {
  28656. name: "Friend Sized",
  28657. height: math.unit(8, "inches")
  28658. },
  28659. ]
  28660. ))
  28661. characterMakers.push(() => makeCharacter(
  28662. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28663. {
  28664. front: {
  28665. height: math.unit(15, "feet"),
  28666. weight: math.unit(2500, "lb"),
  28667. name: "Front",
  28668. image: {
  28669. source: "./media/characters/holly-rabbit/front.svg",
  28670. extra: 1433 / 1233,
  28671. bottom: 125 / 1558
  28672. }
  28673. },
  28674. dick: {
  28675. height: math.unit(4.6, "feet"),
  28676. name: "Dick",
  28677. image: {
  28678. source: "./media/characters/holly-rabbit/dick.svg"
  28679. }
  28680. },
  28681. },
  28682. [
  28683. {
  28684. name: "Normal",
  28685. height: math.unit(15, "feet"),
  28686. default: true
  28687. },
  28688. {
  28689. name: "Macro",
  28690. height: math.unit(250, "feet")
  28691. },
  28692. {
  28693. name: "Macro+",
  28694. height: math.unit(2500, "feet")
  28695. },
  28696. ]
  28697. ))
  28698. characterMakers.push(() => makeCharacter(
  28699. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28700. {
  28701. front: {
  28702. height: math.unit(3.02, "meters"),
  28703. weight: math.unit(500, "kg"),
  28704. name: "Front",
  28705. image: {
  28706. source: "./media/characters/drena/front.svg",
  28707. extra: 282 / 243,
  28708. bottom: 8 / 290
  28709. }
  28710. },
  28711. side: {
  28712. height: math.unit(3.02, "meters"),
  28713. weight: math.unit(500, "kg"),
  28714. name: "Side",
  28715. image: {
  28716. source: "./media/characters/drena/side.svg",
  28717. extra: 280 / 245,
  28718. bottom: 10 / 290
  28719. }
  28720. },
  28721. back: {
  28722. height: math.unit(3.02, "meters"),
  28723. weight: math.unit(500, "kg"),
  28724. name: "Back",
  28725. image: {
  28726. source: "./media/characters/drena/back.svg",
  28727. extra: 278 / 243,
  28728. bottom: 2 / 280
  28729. }
  28730. },
  28731. foot: {
  28732. height: math.unit(0.75, "meters"),
  28733. name: "Foot",
  28734. image: {
  28735. source: "./media/characters/drena/foot.svg"
  28736. }
  28737. },
  28738. maw: {
  28739. height: math.unit(0.82, "meters"),
  28740. name: "Maw",
  28741. image: {
  28742. source: "./media/characters/drena/maw.svg"
  28743. }
  28744. },
  28745. rump: {
  28746. height: math.unit(0.93, "meters"),
  28747. name: "Rump",
  28748. image: {
  28749. source: "./media/characters/drena/rump.svg"
  28750. }
  28751. },
  28752. },
  28753. [
  28754. {
  28755. name: "Normal",
  28756. height: math.unit(3.02, "meters"),
  28757. default: true
  28758. },
  28759. ]
  28760. ))
  28761. characterMakers.push(() => makeCharacter(
  28762. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28763. {
  28764. front: {
  28765. height: math.unit(6 + 4 / 12, "feet"),
  28766. weight: math.unit(250, "lb"),
  28767. name: "Front",
  28768. image: {
  28769. source: "./media/characters/remmyzilla/front.svg",
  28770. extra: 4033 / 3588,
  28771. bottom: 123 / 4156
  28772. }
  28773. },
  28774. back: {
  28775. height: math.unit(6 + 4 / 12, "feet"),
  28776. weight: math.unit(250, "lb"),
  28777. name: "Back",
  28778. image: {
  28779. source: "./media/characters/remmyzilla/back.svg",
  28780. extra: 2687 / 2555,
  28781. bottom: 48 / 2735
  28782. }
  28783. },
  28784. paw: {
  28785. height: math.unit(1.73, "feet"),
  28786. name: "Paw",
  28787. image: {
  28788. source: "./media/characters/remmyzilla/paw.svg"
  28789. }
  28790. },
  28791. maw: {
  28792. height: math.unit(1.73, "feet"),
  28793. name: "Maw",
  28794. image: {
  28795. source: "./media/characters/remmyzilla/maw.svg"
  28796. }
  28797. },
  28798. },
  28799. [
  28800. {
  28801. name: "Normal",
  28802. height: math.unit(6 + 4 / 12, "feet")
  28803. },
  28804. {
  28805. name: "Minimacro",
  28806. height: math.unit(12 + 8 / 12, "feet")
  28807. },
  28808. {
  28809. name: "Normal",
  28810. height: math.unit(640, "feet"),
  28811. default: true
  28812. },
  28813. {
  28814. name: "Megamacro",
  28815. height: math.unit(6400, "feet")
  28816. },
  28817. {
  28818. name: "Gigamacro",
  28819. height: math.unit(64000, "miles")
  28820. },
  28821. ]
  28822. ))
  28823. characterMakers.push(() => makeCharacter(
  28824. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28825. {
  28826. front: {
  28827. height: math.unit(2.5, "meters"),
  28828. weight: math.unit(300, "lb"),
  28829. name: "Front",
  28830. image: {
  28831. source: "./media/characters/lawrence/front.svg",
  28832. extra: 357 / 335,
  28833. bottom: 30 / 387
  28834. }
  28835. },
  28836. back: {
  28837. height: math.unit(2.5, "meters"),
  28838. weight: math.unit(300, "lb"),
  28839. name: "Back",
  28840. image: {
  28841. source: "./media/characters/lawrence/back.svg",
  28842. extra: 357 / 338,
  28843. bottom: 16 / 373
  28844. }
  28845. },
  28846. head: {
  28847. height: math.unit(0.9, "meter"),
  28848. name: "Head",
  28849. image: {
  28850. source: "./media/characters/lawrence/head.svg"
  28851. }
  28852. },
  28853. maw: {
  28854. height: math.unit(0.7, "meter"),
  28855. name: "Maw",
  28856. image: {
  28857. source: "./media/characters/lawrence/maw.svg"
  28858. }
  28859. },
  28860. footBottom: {
  28861. height: math.unit(0.5, "meter"),
  28862. name: "Foot (Bottom)",
  28863. image: {
  28864. source: "./media/characters/lawrence/foot-bottom.svg"
  28865. }
  28866. },
  28867. footTop: {
  28868. height: math.unit(0.5, "meter"),
  28869. name: "Foot (Top)",
  28870. image: {
  28871. source: "./media/characters/lawrence/foot-top.svg"
  28872. }
  28873. },
  28874. },
  28875. [
  28876. {
  28877. name: "Normal",
  28878. height: math.unit(2.5, "meters"),
  28879. default: true
  28880. },
  28881. {
  28882. name: "Macro",
  28883. height: math.unit(95, "meters")
  28884. },
  28885. {
  28886. name: "Megamacro",
  28887. height: math.unit(150, "km")
  28888. },
  28889. ]
  28890. ))
  28891. characterMakers.push(() => makeCharacter(
  28892. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28893. {
  28894. front: {
  28895. height: math.unit(4.2, "meters"),
  28896. name: "Front",
  28897. image: {
  28898. source: "./media/characters/sydney/front.svg",
  28899. extra: 1323 / 1277,
  28900. bottom: 111 / 1434
  28901. }
  28902. },
  28903. },
  28904. [
  28905. {
  28906. name: "Normal",
  28907. height: math.unit(4.2, "meters"),
  28908. default: true
  28909. },
  28910. ]
  28911. ))
  28912. characterMakers.push(() => makeCharacter(
  28913. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28914. {
  28915. back: {
  28916. height: math.unit(201, "feet"),
  28917. name: "Back",
  28918. image: {
  28919. source: "./media/characters/jessica/back.svg",
  28920. extra: 273 / 259,
  28921. bottom: 7 / 280
  28922. }
  28923. },
  28924. },
  28925. [
  28926. {
  28927. name: "Normal",
  28928. height: math.unit(201, "feet"),
  28929. default: true
  28930. },
  28931. {
  28932. name: "Megamacro",
  28933. height: math.unit(8, "miles")
  28934. },
  28935. ]
  28936. ))
  28937. characterMakers.push(() => makeCharacter(
  28938. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28939. {
  28940. side: {
  28941. height: math.unit(5.6, "m"),
  28942. weight: math.unit(8000, "kg"),
  28943. name: "Side",
  28944. image: {
  28945. source: "./media/characters/victoria/side.svg",
  28946. extra: 1542/1229,
  28947. bottom: 124/1666
  28948. }
  28949. },
  28950. maw: {
  28951. height: math.unit(7.14, "feet"),
  28952. name: "Maw",
  28953. image: {
  28954. source: "./media/characters/victoria/maw.svg"
  28955. }
  28956. },
  28957. },
  28958. [
  28959. {
  28960. name: "Normal",
  28961. height: math.unit(5.6, "m"),
  28962. default: true
  28963. },
  28964. ]
  28965. ))
  28966. characterMakers.push(() => makeCharacter(
  28967. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28968. {
  28969. front: {
  28970. height: math.unit(5 + 6 / 12, "feet"),
  28971. name: "Front",
  28972. image: {
  28973. source: "./media/characters/cat/front.svg",
  28974. extra: 1449/1295,
  28975. bottom: 34/1483
  28976. }
  28977. },
  28978. back: {
  28979. height: math.unit(5 + 6 / 12, "feet"),
  28980. name: "Back",
  28981. image: {
  28982. source: "./media/characters/cat/back.svg",
  28983. extra: 1466/1301,
  28984. bottom: 19/1485
  28985. }
  28986. },
  28987. taur: {
  28988. height: math.unit(7, "feet"),
  28989. name: "Taur",
  28990. image: {
  28991. source: "./media/characters/cat/taur.svg",
  28992. extra: 1389/1233,
  28993. bottom: 83/1472
  28994. }
  28995. },
  28996. lucarioFront: {
  28997. height: math.unit(4, "feet"),
  28998. name: "Lucario (Front)",
  28999. image: {
  29000. source: "./media/characters/cat/lucario-front.svg",
  29001. extra: 1149/1019,
  29002. bottom: 84/1233
  29003. }
  29004. },
  29005. lucarioBack: {
  29006. height: math.unit(4, "feet"),
  29007. name: "Lucario (Back)",
  29008. image: {
  29009. source: "./media/characters/cat/lucario-back.svg",
  29010. extra: 1190/1059,
  29011. bottom: 33/1223
  29012. }
  29013. },
  29014. megaLucario: {
  29015. height: math.unit(4, "feet"),
  29016. name: "Mega Lucario",
  29017. image: {
  29018. source: "./media/characters/cat/mega-lucario.svg",
  29019. extra: 1515 / 1319,
  29020. bottom: 63 / 1578
  29021. }
  29022. },
  29023. nickit: {
  29024. height: math.unit(2, "feet"),
  29025. name: "Nickit",
  29026. image: {
  29027. source: "./media/characters/cat/nickit.svg",
  29028. extra: 1980 / 1585,
  29029. bottom: 102 / 2082
  29030. }
  29031. },
  29032. lopunnyFront: {
  29033. height: math.unit(5, "feet"),
  29034. name: "Lopunny (Front)",
  29035. image: {
  29036. source: "./media/characters/cat/lopunny-front.svg",
  29037. extra: 1782 / 1469,
  29038. bottom: 38 / 1820
  29039. }
  29040. },
  29041. lopunnyBack: {
  29042. height: math.unit(5, "feet"),
  29043. name: "Lopunny (Back)",
  29044. image: {
  29045. source: "./media/characters/cat/lopunny-back.svg",
  29046. extra: 1660 / 1490,
  29047. bottom: 25 / 1685
  29048. }
  29049. },
  29050. },
  29051. [
  29052. {
  29053. name: "Really small",
  29054. height: math.unit(1, "nm")
  29055. },
  29056. {
  29057. name: "Micro",
  29058. height: math.unit(5, "inches")
  29059. },
  29060. {
  29061. name: "Normal",
  29062. height: math.unit(5 + 6 / 12, "feet"),
  29063. default: true
  29064. },
  29065. {
  29066. name: "Macro",
  29067. height: math.unit(50, "feet")
  29068. },
  29069. {
  29070. name: "Macro+",
  29071. height: math.unit(150, "feet")
  29072. },
  29073. {
  29074. name: "Megamacro",
  29075. height: math.unit(100, "miles")
  29076. },
  29077. ]
  29078. ))
  29079. characterMakers.push(() => makeCharacter(
  29080. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29081. {
  29082. front: {
  29083. height: math.unit(63.4, "meters"),
  29084. weight: math.unit(3.28349e+6, "kilograms"),
  29085. name: "Front",
  29086. image: {
  29087. source: "./media/characters/kirina-violet/front.svg",
  29088. extra: 2812 / 2725,
  29089. bottom: 0 / 2812
  29090. }
  29091. },
  29092. back: {
  29093. height: math.unit(63.4, "meters"),
  29094. weight: math.unit(3.28349e+6, "kilograms"),
  29095. name: "Back",
  29096. image: {
  29097. source: "./media/characters/kirina-violet/back.svg",
  29098. extra: 2812 / 2725,
  29099. bottom: 0 / 2812
  29100. }
  29101. },
  29102. mouth: {
  29103. height: math.unit(4.35, "meters"),
  29104. name: "Mouth",
  29105. image: {
  29106. source: "./media/characters/kirina-violet/mouth.svg"
  29107. }
  29108. },
  29109. paw: {
  29110. height: math.unit(5.6, "meters"),
  29111. name: "Paw",
  29112. image: {
  29113. source: "./media/characters/kirina-violet/paw.svg"
  29114. }
  29115. },
  29116. tail: {
  29117. height: math.unit(18, "meters"),
  29118. name: "Tail",
  29119. image: {
  29120. source: "./media/characters/kirina-violet/tail.svg"
  29121. }
  29122. },
  29123. },
  29124. [
  29125. {
  29126. name: "Macro",
  29127. height: math.unit(63.4, "meters"),
  29128. default: true
  29129. },
  29130. ]
  29131. ))
  29132. characterMakers.push(() => makeCharacter(
  29133. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29134. {
  29135. front: {
  29136. height: math.unit(75, "feet"),
  29137. name: "Front",
  29138. image: {
  29139. source: "./media/characters/cat-gigachu/front.svg",
  29140. extra: 1239/1027,
  29141. bottom: 32/1271
  29142. }
  29143. },
  29144. back: {
  29145. height: math.unit(75, "feet"),
  29146. name: "Back",
  29147. image: {
  29148. source: "./media/characters/cat-gigachu/back.svg",
  29149. extra: 1229/1030,
  29150. bottom: 9/1238
  29151. }
  29152. },
  29153. },
  29154. [
  29155. {
  29156. name: "Dynamax",
  29157. height: math.unit(75, "feet"),
  29158. default: true
  29159. },
  29160. ]
  29161. ))
  29162. characterMakers.push(() => makeCharacter(
  29163. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29164. {
  29165. front: {
  29166. height: math.unit(6, "feet"),
  29167. weight: math.unit(150, "lb"),
  29168. name: "Front",
  29169. image: {
  29170. source: "./media/characters/sfaiyan/front.svg",
  29171. extra: 999 / 978,
  29172. bottom: 5 / 1004
  29173. }
  29174. },
  29175. },
  29176. [
  29177. {
  29178. name: "Normal",
  29179. height: math.unit(1.82, "meters")
  29180. },
  29181. {
  29182. name: "Giant",
  29183. height: math.unit(2.27, "km"),
  29184. default: true
  29185. },
  29186. ]
  29187. ))
  29188. characterMakers.push(() => makeCharacter(
  29189. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29190. {
  29191. front: {
  29192. height: math.unit(179, "cm"),
  29193. weight: math.unit(100, "kg"),
  29194. name: "Front",
  29195. image: {
  29196. source: "./media/characters/raunehkeli/front.svg",
  29197. extra: 1934 / 1926,
  29198. bottom: 0 / 1934
  29199. }
  29200. },
  29201. },
  29202. [
  29203. {
  29204. name: "Normal",
  29205. height: math.unit(179, "cm")
  29206. },
  29207. {
  29208. name: "Maximum",
  29209. height: math.unit(575, "meters"),
  29210. default: true
  29211. },
  29212. ]
  29213. ))
  29214. characterMakers.push(() => makeCharacter(
  29215. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29216. {
  29217. front: {
  29218. height: math.unit(6, "feet"),
  29219. weight: math.unit(150, "lb"),
  29220. name: "Front",
  29221. image: {
  29222. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29223. extra: 2625 / 2518,
  29224. bottom: 60 / 2685
  29225. }
  29226. },
  29227. },
  29228. [
  29229. {
  29230. name: "Normal",
  29231. height: math.unit(6 + 2 / 12, "feet")
  29232. },
  29233. {
  29234. name: "Macro",
  29235. height: math.unit(1180, "feet"),
  29236. default: true
  29237. },
  29238. ]
  29239. ))
  29240. characterMakers.push(() => makeCharacter(
  29241. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29242. {
  29243. front: {
  29244. height: math.unit(5 + 6 / 12, "feet"),
  29245. weight: math.unit(108, "lb"),
  29246. name: "Front",
  29247. image: {
  29248. source: "./media/characters/lilith-zott/front.svg",
  29249. extra: 2510 / 2238,
  29250. bottom: 100 / 2610
  29251. }
  29252. },
  29253. frontDressed: {
  29254. height: math.unit(5 + 6 / 12, "feet"),
  29255. weight: math.unit(108, "lb"),
  29256. name: "Front (Dressed)",
  29257. image: {
  29258. source: "./media/characters/lilith-zott/front-dressed.svg",
  29259. extra: 2510 / 2238,
  29260. bottom: 100 / 2610
  29261. }
  29262. },
  29263. },
  29264. [
  29265. {
  29266. name: "Normal",
  29267. height: math.unit(5 + 6 / 12, "feet")
  29268. },
  29269. {
  29270. name: "Macro",
  29271. height: math.unit(1030, "feet"),
  29272. default: true
  29273. },
  29274. ]
  29275. ))
  29276. characterMakers.push(() => makeCharacter(
  29277. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29278. {
  29279. front: {
  29280. height: math.unit(6, "feet"),
  29281. weight: math.unit(150, "lb"),
  29282. name: "Front",
  29283. image: {
  29284. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29285. extra: 2567 / 2435,
  29286. bottom: 39 / 2606
  29287. }
  29288. },
  29289. frontSuper: {
  29290. height: math.unit(6, "feet"),
  29291. name: "Front (Super)",
  29292. image: {
  29293. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29294. extra: 2567 / 2435,
  29295. bottom: 39 / 2606
  29296. }
  29297. },
  29298. },
  29299. [
  29300. {
  29301. name: "Normal",
  29302. height: math.unit(5 + 10 / 12, "feet")
  29303. },
  29304. {
  29305. name: "Macro",
  29306. height: math.unit(1100, "feet"),
  29307. default: true
  29308. },
  29309. ]
  29310. ))
  29311. characterMakers.push(() => makeCharacter(
  29312. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29313. {
  29314. front: {
  29315. height: math.unit(100, "miles"),
  29316. name: "Front",
  29317. image: {
  29318. source: "./media/characters/sona/front.svg",
  29319. extra: 2433 / 2201,
  29320. bottom: 53 / 2486
  29321. }
  29322. },
  29323. foot: {
  29324. height: math.unit(16.1, "miles"),
  29325. name: "Foot",
  29326. image: {
  29327. source: "./media/characters/sona/foot.svg"
  29328. }
  29329. },
  29330. },
  29331. [
  29332. {
  29333. name: "Macro",
  29334. height: math.unit(100, "miles"),
  29335. default: true
  29336. },
  29337. ]
  29338. ))
  29339. characterMakers.push(() => makeCharacter(
  29340. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29341. {
  29342. front: {
  29343. height: math.unit(6, "feet"),
  29344. weight: math.unit(150, "lb"),
  29345. name: "Front",
  29346. image: {
  29347. source: "./media/characters/bailey/front.svg",
  29348. extra: 1778 / 1724,
  29349. bottom: 30 / 1808
  29350. }
  29351. },
  29352. },
  29353. [
  29354. {
  29355. name: "Micro",
  29356. height: math.unit(4, "inches")
  29357. },
  29358. {
  29359. name: "Normal",
  29360. height: math.unit(5 + 5 / 12, "feet"),
  29361. default: true
  29362. },
  29363. {
  29364. name: "Macro",
  29365. height: math.unit(250, "feet")
  29366. },
  29367. {
  29368. name: "Megamacro",
  29369. height: math.unit(100, "miles")
  29370. },
  29371. ]
  29372. ))
  29373. characterMakers.push(() => makeCharacter(
  29374. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29375. {
  29376. front: {
  29377. height: math.unit(5 + 2 / 12, "feet"),
  29378. weight: math.unit(120, "lb"),
  29379. name: "Front",
  29380. image: {
  29381. source: "./media/characters/snaps/front.svg",
  29382. extra: 2370 / 2177,
  29383. bottom: 48 / 2418
  29384. }
  29385. },
  29386. back: {
  29387. height: math.unit(5 + 2 / 12, "feet"),
  29388. weight: math.unit(120, "lb"),
  29389. name: "Back",
  29390. image: {
  29391. source: "./media/characters/snaps/back.svg",
  29392. extra: 2408 / 2258,
  29393. bottom: 15 / 2423
  29394. }
  29395. },
  29396. },
  29397. [
  29398. {
  29399. name: "Micro",
  29400. height: math.unit(9, "inches")
  29401. },
  29402. {
  29403. name: "Normal",
  29404. height: math.unit(5 + 2 / 12, "feet"),
  29405. default: true
  29406. },
  29407. {
  29408. name: "Mini Macro",
  29409. height: math.unit(10, "feet")
  29410. },
  29411. ]
  29412. ))
  29413. characterMakers.push(() => makeCharacter(
  29414. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29415. {
  29416. front: {
  29417. height: math.unit(1.8, "meters"),
  29418. weight: math.unit(85, "kg"),
  29419. name: "Front",
  29420. image: {
  29421. source: "./media/characters/azteck/front.svg",
  29422. extra: 2815 / 2625,
  29423. bottom: 89 / 2904
  29424. }
  29425. },
  29426. back: {
  29427. height: math.unit(1.8, "meters"),
  29428. weight: math.unit(85, "kg"),
  29429. name: "Back",
  29430. image: {
  29431. source: "./media/characters/azteck/back.svg",
  29432. extra: 2856 / 2648,
  29433. bottom: 85 / 2941
  29434. }
  29435. },
  29436. frontDressed: {
  29437. height: math.unit(1.8, "meters"),
  29438. weight: math.unit(85, "kg"),
  29439. name: "Front (Dressed)",
  29440. image: {
  29441. source: "./media/characters/azteck/front-dressed.svg",
  29442. extra: 2147 / 2003,
  29443. bottom: 68 / 2215
  29444. }
  29445. },
  29446. head: {
  29447. height: math.unit(0.47, "meters"),
  29448. weight: math.unit(85, "kg"),
  29449. name: "Head",
  29450. image: {
  29451. source: "./media/characters/azteck/head.svg"
  29452. }
  29453. },
  29454. },
  29455. [
  29456. {
  29457. name: "Bite sized",
  29458. height: math.unit(16, "cm")
  29459. },
  29460. {
  29461. name: "Normal",
  29462. height: math.unit(1.8, "meters"),
  29463. default: true
  29464. },
  29465. ]
  29466. ))
  29467. characterMakers.push(() => makeCharacter(
  29468. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29469. {
  29470. front: {
  29471. height: math.unit(6, "feet"),
  29472. weight: math.unit(150, "lb"),
  29473. name: "Front",
  29474. image: {
  29475. source: "./media/characters/pidge/front.svg",
  29476. extra: 620 / 588,
  29477. bottom: 9 / 629
  29478. }
  29479. },
  29480. back: {
  29481. height: math.unit(6, "feet"),
  29482. weight: math.unit(150, "lb"),
  29483. name: "Back",
  29484. image: {
  29485. source: "./media/characters/pidge/back.svg",
  29486. extra: 620 / 588,
  29487. bottom: 9 / 629
  29488. }
  29489. },
  29490. },
  29491. [
  29492. {
  29493. name: "Macro",
  29494. height: math.unit(1, "mile"),
  29495. default: true
  29496. },
  29497. ]
  29498. ))
  29499. characterMakers.push(() => makeCharacter(
  29500. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29501. {
  29502. front: {
  29503. height: math.unit(6, "feet"),
  29504. weight: math.unit(150, "lb"),
  29505. name: "Front",
  29506. image: {
  29507. source: "./media/characters/en/front.svg",
  29508. extra: 1697 / 1563,
  29509. bottom: 103 / 1800
  29510. }
  29511. },
  29512. back: {
  29513. height: math.unit(6, "feet"),
  29514. weight: math.unit(150, "lb"),
  29515. name: "Back",
  29516. image: {
  29517. source: "./media/characters/en/back.svg",
  29518. extra: 1700 / 1570,
  29519. bottom: 51 / 1751
  29520. }
  29521. },
  29522. frontDressed: {
  29523. height: math.unit(6, "feet"),
  29524. weight: math.unit(150, "lb"),
  29525. name: "Front (Dressed)",
  29526. image: {
  29527. source: "./media/characters/en/front-dressed.svg",
  29528. extra: 1697 / 1563,
  29529. bottom: 103 / 1800
  29530. }
  29531. },
  29532. backDressed: {
  29533. height: math.unit(6, "feet"),
  29534. weight: math.unit(150, "lb"),
  29535. name: "Back (Dressed)",
  29536. image: {
  29537. source: "./media/characters/en/back-dressed.svg",
  29538. extra: 1700 / 1570,
  29539. bottom: 51 / 1751
  29540. }
  29541. },
  29542. },
  29543. [
  29544. {
  29545. name: "Macro",
  29546. height: math.unit(210, "feet"),
  29547. default: true
  29548. },
  29549. ]
  29550. ))
  29551. characterMakers.push(() => makeCharacter(
  29552. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29553. {
  29554. front: {
  29555. height: math.unit(6, "feet"),
  29556. weight: math.unit(150, "lb"),
  29557. name: "Front",
  29558. image: {
  29559. source: "./media/characters/haze-orris/front.svg",
  29560. extra: 3975 / 3525,
  29561. bottom: 137 / 4112
  29562. }
  29563. },
  29564. },
  29565. [
  29566. {
  29567. name: "Micro",
  29568. height: math.unit(150, "mm"),
  29569. default: true
  29570. },
  29571. ]
  29572. ))
  29573. characterMakers.push(() => makeCharacter(
  29574. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29575. {
  29576. front: {
  29577. height: math.unit(6, "feet"),
  29578. weight: math.unit(150, "lb"),
  29579. name: "Front",
  29580. image: {
  29581. source: "./media/characters/casselene-yaro/front.svg",
  29582. extra: 4721 / 4541,
  29583. bottom: 82 / 4803
  29584. }
  29585. },
  29586. back: {
  29587. height: math.unit(6, "feet"),
  29588. weight: math.unit(150, "lb"),
  29589. name: "Back",
  29590. image: {
  29591. source: "./media/characters/casselene-yaro/back.svg",
  29592. extra: 4569 / 4377,
  29593. bottom: 69 / 4638
  29594. }
  29595. },
  29596. frontDressed: {
  29597. height: math.unit(6, "feet"),
  29598. weight: math.unit(150, "lb"),
  29599. name: "Front-dressed",
  29600. image: {
  29601. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29602. extra: 4721 / 4541,
  29603. bottom: 82 / 4803
  29604. }
  29605. },
  29606. },
  29607. [
  29608. {
  29609. name: "Macro",
  29610. height: math.unit(190, "feet"),
  29611. default: true
  29612. },
  29613. ]
  29614. ))
  29615. characterMakers.push(() => makeCharacter(
  29616. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29617. {
  29618. front: {
  29619. height: math.unit(6, "feet"),
  29620. weight: math.unit(150, "lb"),
  29621. name: "Front",
  29622. image: {
  29623. source: "./media/characters/myra-rue-delore/front.svg",
  29624. extra: 1340 / 1308,
  29625. bottom: 67 / 1407
  29626. }
  29627. },
  29628. back: {
  29629. height: math.unit(6, "feet"),
  29630. weight: math.unit(150, "lb"),
  29631. name: "Back",
  29632. image: {
  29633. source: "./media/characters/myra-rue-delore/back.svg",
  29634. extra: 1341 / 1310,
  29635. bottom: 40 / 1381
  29636. }
  29637. },
  29638. frontDressed: {
  29639. height: math.unit(6, "feet"),
  29640. weight: math.unit(150, "lb"),
  29641. name: "Front (Dressed)",
  29642. image: {
  29643. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29644. extra: 1340 / 1308,
  29645. bottom: 67 / 1407
  29646. }
  29647. },
  29648. },
  29649. [
  29650. {
  29651. name: "Macro",
  29652. height: math.unit(150, "feet"),
  29653. default: true
  29654. },
  29655. ]
  29656. ))
  29657. characterMakers.push(() => makeCharacter(
  29658. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29659. {
  29660. front: {
  29661. height: math.unit(10, "feet"),
  29662. weight: math.unit(15015, "lb"),
  29663. name: "Front",
  29664. image: {
  29665. source: "./media/characters/fem!plat/front.svg",
  29666. extra: 2799 / 2604,
  29667. bottom: 149 / 2948
  29668. }
  29669. },
  29670. },
  29671. [
  29672. {
  29673. name: "Normal",
  29674. height: math.unit(10, "feet"),
  29675. default: true
  29676. },
  29677. {
  29678. name: "Macro",
  29679. height: math.unit(100, "feet")
  29680. },
  29681. {
  29682. name: "Megamacro",
  29683. height: math.unit(1000, "feet")
  29684. },
  29685. ]
  29686. ))
  29687. characterMakers.push(() => makeCharacter(
  29688. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29689. {
  29690. front: {
  29691. height: math.unit(15 + 5 / 12, "feet"),
  29692. weight: math.unit(4600, "lb"),
  29693. name: "Front",
  29694. image: {
  29695. source: "./media/characters/neapolitan-ananassa/front.svg",
  29696. extra: 2903 / 2736,
  29697. bottom: 0 / 2903
  29698. }
  29699. },
  29700. side: {
  29701. height: math.unit(15 + 5 / 12, "feet"),
  29702. weight: math.unit(4600, "lb"),
  29703. name: "Side",
  29704. image: {
  29705. source: "./media/characters/neapolitan-ananassa/side.svg",
  29706. extra: 2925 / 2719,
  29707. bottom: 0 / 2925
  29708. }
  29709. },
  29710. back: {
  29711. height: math.unit(15 + 5 / 12, "feet"),
  29712. weight: math.unit(4600, "lb"),
  29713. name: "Back",
  29714. image: {
  29715. source: "./media/characters/neapolitan-ananassa/back.svg",
  29716. extra: 2903 / 2736,
  29717. bottom: 0 / 2903
  29718. }
  29719. },
  29720. },
  29721. [
  29722. {
  29723. name: "Normal",
  29724. height: math.unit(15 + 5 / 12, "feet"),
  29725. default: true
  29726. },
  29727. {
  29728. name: "Post-Millenium",
  29729. height: math.unit(35 + 5 / 12, "feet")
  29730. },
  29731. {
  29732. name: "Post-Era",
  29733. height: math.unit(450 + 5 / 12, "feet")
  29734. },
  29735. ]
  29736. ))
  29737. characterMakers.push(() => makeCharacter(
  29738. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29739. {
  29740. front: {
  29741. height: math.unit(300, "meters"),
  29742. weight: math.unit(125000, "tonnes"),
  29743. name: "Front",
  29744. image: {
  29745. source: "./media/characters/pazuzu/front.svg",
  29746. extra: 877 / 794,
  29747. bottom: 47 / 924
  29748. }
  29749. },
  29750. },
  29751. [
  29752. {
  29753. name: "Macro",
  29754. height: math.unit(300, "meters"),
  29755. default: true
  29756. },
  29757. ]
  29758. ))
  29759. characterMakers.push(() => makeCharacter(
  29760. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29761. {
  29762. side: {
  29763. height: math.unit(10 + 7 / 12, "feet"),
  29764. weight: math.unit(2.5, "tons"),
  29765. name: "Side",
  29766. image: {
  29767. source: "./media/characters/aasha/side.svg",
  29768. extra: 1345 / 1245,
  29769. bottom: 111 / 1456
  29770. }
  29771. },
  29772. back: {
  29773. height: math.unit(10 + 7 / 12, "feet"),
  29774. weight: math.unit(2.5, "tons"),
  29775. name: "Back",
  29776. image: {
  29777. source: "./media/characters/aasha/back.svg",
  29778. extra: 1133 / 1057,
  29779. bottom: 257 / 1390
  29780. }
  29781. },
  29782. },
  29783. [
  29784. {
  29785. name: "Normal",
  29786. height: math.unit(10 + 7 / 12, "feet"),
  29787. default: true
  29788. },
  29789. ]
  29790. ))
  29791. characterMakers.push(() => makeCharacter(
  29792. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29793. {
  29794. front: {
  29795. height: math.unit(6 + 3 / 12, "feet"),
  29796. name: "Front",
  29797. image: {
  29798. source: "./media/characters/nevan/front.svg",
  29799. extra: 704 / 704,
  29800. bottom: 28 / 732
  29801. }
  29802. },
  29803. back: {
  29804. height: math.unit(6 + 3 / 12, "feet"),
  29805. name: "Back",
  29806. image: {
  29807. source: "./media/characters/nevan/back.svg",
  29808. extra: 714 / 714,
  29809. bottom: 21 / 735
  29810. }
  29811. },
  29812. frontFlaccid: {
  29813. height: math.unit(6 + 3 / 12, "feet"),
  29814. name: "Front (Flaccid)",
  29815. image: {
  29816. source: "./media/characters/nevan/front-flaccid.svg",
  29817. extra: 704 / 704,
  29818. bottom: 28 / 732
  29819. }
  29820. },
  29821. frontErect: {
  29822. height: math.unit(6 + 3 / 12, "feet"),
  29823. name: "Front (Erect)",
  29824. image: {
  29825. source: "./media/characters/nevan/front-erect.svg",
  29826. extra: 704 / 704,
  29827. bottom: 28 / 732
  29828. }
  29829. },
  29830. backFlaccid: {
  29831. height: math.unit(6 + 3 / 12, "feet"),
  29832. name: "Back (Flaccid)",
  29833. image: {
  29834. source: "./media/characters/nevan/back-flaccid.svg",
  29835. extra: 714 / 714,
  29836. bottom: 21 / 735
  29837. }
  29838. },
  29839. },
  29840. [
  29841. {
  29842. name: "Normal",
  29843. height: math.unit(6 + 3 / 12, "feet"),
  29844. default: true
  29845. },
  29846. ]
  29847. ))
  29848. characterMakers.push(() => makeCharacter(
  29849. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29850. {
  29851. front: {
  29852. height: math.unit(4, "feet"),
  29853. name: "Front",
  29854. image: {
  29855. source: "./media/characters/arhan/front.svg",
  29856. extra: 3368 / 3133,
  29857. bottom: 0 / 3368
  29858. }
  29859. },
  29860. side: {
  29861. height: math.unit(4, "feet"),
  29862. name: "Side",
  29863. image: {
  29864. source: "./media/characters/arhan/side.svg",
  29865. extra: 3347 / 3105,
  29866. bottom: 0 / 3347
  29867. }
  29868. },
  29869. tongue: {
  29870. height: math.unit(1.42, "feet"),
  29871. name: "Tongue",
  29872. image: {
  29873. source: "./media/characters/arhan/tongue.svg"
  29874. }
  29875. },
  29876. head: {
  29877. height: math.unit(0.85, "feet"),
  29878. name: "Head",
  29879. image: {
  29880. source: "./media/characters/arhan/head.svg"
  29881. }
  29882. },
  29883. },
  29884. [
  29885. {
  29886. name: "Normal",
  29887. height: math.unit(4, "feet"),
  29888. default: true
  29889. },
  29890. ]
  29891. ))
  29892. characterMakers.push(() => makeCharacter(
  29893. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29894. {
  29895. front: {
  29896. height: math.unit(5 + 7.5 / 12, "feet"),
  29897. weight: math.unit(120, "lb"),
  29898. name: "Front",
  29899. image: {
  29900. source: "./media/characters/digi-duncan/front.svg",
  29901. extra: 330 / 326,
  29902. bottom: 16 / 346
  29903. }
  29904. },
  29905. side: {
  29906. height: math.unit(5 + 7.5 / 12, "feet"),
  29907. weight: math.unit(120, "lb"),
  29908. name: "Side",
  29909. image: {
  29910. source: "./media/characters/digi-duncan/side.svg",
  29911. extra: 341 / 337,
  29912. bottom: 1 / 342
  29913. }
  29914. },
  29915. back: {
  29916. height: math.unit(5 + 7.5 / 12, "feet"),
  29917. weight: math.unit(120, "lb"),
  29918. name: "Back",
  29919. image: {
  29920. source: "./media/characters/digi-duncan/back.svg",
  29921. extra: 330 / 326,
  29922. bottom: 12 / 342
  29923. }
  29924. },
  29925. },
  29926. [
  29927. {
  29928. name: "Speck",
  29929. height: math.unit(0.25, "mm")
  29930. },
  29931. {
  29932. name: "Micro",
  29933. height: math.unit(5, "mm")
  29934. },
  29935. {
  29936. name: "Tiny",
  29937. height: math.unit(0.5, "inches"),
  29938. default: true
  29939. },
  29940. {
  29941. name: "Human",
  29942. height: math.unit(5 + 7.5 / 12, "feet")
  29943. },
  29944. {
  29945. name: "Minigiant",
  29946. height: math.unit(8 + 5.25, "feet")
  29947. },
  29948. {
  29949. name: "Giant",
  29950. height: math.unit(2000, "feet")
  29951. },
  29952. {
  29953. name: "Mega",
  29954. height: math.unit(371.1, "miles")
  29955. },
  29956. ]
  29957. ))
  29958. characterMakers.push(() => makeCharacter(
  29959. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29960. {
  29961. front: {
  29962. height: math.unit(2, "meters"),
  29963. weight: math.unit(350, "kg"),
  29964. name: "Front",
  29965. image: {
  29966. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29967. extra: 898 / 838,
  29968. bottom: 9 / 907
  29969. }
  29970. },
  29971. },
  29972. [
  29973. {
  29974. name: "Micro",
  29975. height: math.unit(8, "meters")
  29976. },
  29977. {
  29978. name: "Normal",
  29979. height: math.unit(50, "meters"),
  29980. default: true
  29981. },
  29982. {
  29983. name: "Macro",
  29984. height: math.unit(500, "meters")
  29985. },
  29986. ]
  29987. ))
  29988. characterMakers.push(() => makeCharacter(
  29989. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29990. {
  29991. front: {
  29992. height: math.unit(6 + 6 / 12, "feet"),
  29993. name: "Front",
  29994. image: {
  29995. source: "./media/characters/khardesh/front.svg",
  29996. extra: 1788/1596,
  29997. bottom: 66/1854
  29998. }
  29999. },
  30000. back: {
  30001. height: math.unit(6 + 6 / 12, "feet"),
  30002. name: "Back",
  30003. image: {
  30004. source: "./media/characters/khardesh/back.svg",
  30005. extra: 1781/1584,
  30006. bottom: 68/1849
  30007. }
  30008. },
  30009. },
  30010. [
  30011. {
  30012. name: "Normal",
  30013. height: math.unit(6 + 6 / 12, "feet"),
  30014. default: true
  30015. },
  30016. {
  30017. name: "Normal+",
  30018. height: math.unit(4, "meters")
  30019. },
  30020. {
  30021. name: "Macro",
  30022. height: math.unit(50, "meters")
  30023. },
  30024. {
  30025. name: "Macro+",
  30026. height: math.unit(100, "meters")
  30027. },
  30028. {
  30029. name: "Megamacro",
  30030. height: math.unit(20, "km")
  30031. },
  30032. ]
  30033. ))
  30034. characterMakers.push(() => makeCharacter(
  30035. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30036. {
  30037. front: {
  30038. height: math.unit(6, "feet"),
  30039. weight: math.unit(150, "lb"),
  30040. name: "Front",
  30041. image: {
  30042. source: "./media/characters/kosho/front.svg",
  30043. extra: 1847 / 1847,
  30044. bottom: 86 / 1933
  30045. }
  30046. },
  30047. },
  30048. [
  30049. {
  30050. name: "Second-stage micro",
  30051. height: math.unit(0.5, "inches")
  30052. },
  30053. {
  30054. name: "First-stage micro",
  30055. height: math.unit(6, "inches")
  30056. },
  30057. {
  30058. name: "Normal",
  30059. height: math.unit(6, "feet"),
  30060. default: true
  30061. },
  30062. {
  30063. name: "First-stage macro",
  30064. height: math.unit(72, "feet")
  30065. },
  30066. {
  30067. name: "Second-stage macro",
  30068. height: math.unit(864, "feet")
  30069. },
  30070. ]
  30071. ))
  30072. characterMakers.push(() => makeCharacter(
  30073. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30074. {
  30075. normal: {
  30076. height: math.unit(4 + 6 / 12, "feet"),
  30077. name: "Normal",
  30078. image: {
  30079. source: "./media/characters/hydra/normal.svg",
  30080. extra: 2833 / 2634,
  30081. bottom: 68 / 2901
  30082. }
  30083. },
  30084. smol: {
  30085. height: math.unit(0.705, "inches"),
  30086. name: "Smol",
  30087. image: {
  30088. source: "./media/characters/hydra/smol.svg",
  30089. extra: 2715 / 2540,
  30090. bottom: 0 / 2715
  30091. }
  30092. },
  30093. },
  30094. [
  30095. {
  30096. name: "Normal",
  30097. height: math.unit(4 + 6 / 12, "feet"),
  30098. default: true
  30099. }
  30100. ]
  30101. ))
  30102. characterMakers.push(() => makeCharacter(
  30103. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30104. {
  30105. front: {
  30106. height: math.unit(0.6, "cm"),
  30107. name: "Front",
  30108. image: {
  30109. source: "./media/characters/daz/front.svg",
  30110. extra: 1682 / 1164,
  30111. bottom: 42 / 1724
  30112. }
  30113. },
  30114. },
  30115. [
  30116. {
  30117. name: "Normal",
  30118. height: math.unit(0.6, "cm"),
  30119. default: true
  30120. },
  30121. ]
  30122. ))
  30123. characterMakers.push(() => makeCharacter(
  30124. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30125. {
  30126. front: {
  30127. height: math.unit(6, "feet"),
  30128. weight: math.unit(235, "lb"),
  30129. name: "Front",
  30130. image: {
  30131. source: "./media/characters/theo-pangolin/front.svg",
  30132. extra: 1996 / 1969,
  30133. bottom: 115 / 2111
  30134. }
  30135. },
  30136. back: {
  30137. height: math.unit(6, "feet"),
  30138. weight: math.unit(235, "lb"),
  30139. name: "Back",
  30140. image: {
  30141. source: "./media/characters/theo-pangolin/back.svg",
  30142. extra: 1979 / 1979,
  30143. bottom: 40 / 2019
  30144. }
  30145. },
  30146. feral: {
  30147. height: math.unit(2, "feet"),
  30148. weight: math.unit(30, "lb"),
  30149. name: "Feral",
  30150. image: {
  30151. source: "./media/characters/theo-pangolin/feral.svg",
  30152. extra: 803 / 791,
  30153. bottom: 181 / 984
  30154. }
  30155. },
  30156. footFive: {
  30157. height: math.unit(1.43, "feet"),
  30158. name: "Foot (Five Toes)",
  30159. image: {
  30160. source: "./media/characters/theo-pangolin/foot-five.svg"
  30161. }
  30162. },
  30163. footFour: {
  30164. height: math.unit(1.43, "feet"),
  30165. name: "Foot (Four Toes)",
  30166. image: {
  30167. source: "./media/characters/theo-pangolin/foot-four.svg"
  30168. }
  30169. },
  30170. handFour: {
  30171. height: math.unit(0.81, "feet"),
  30172. name: "Hand (Four Fingers)",
  30173. image: {
  30174. source: "./media/characters/theo-pangolin/hand-four.svg"
  30175. }
  30176. },
  30177. handThree: {
  30178. height: math.unit(0.81, "feet"),
  30179. name: "Hand (Three Fingers)",
  30180. image: {
  30181. source: "./media/characters/theo-pangolin/hand-three.svg"
  30182. }
  30183. },
  30184. headFront: {
  30185. height: math.unit(1.37, "feet"),
  30186. name: "Head (Front)",
  30187. image: {
  30188. source: "./media/characters/theo-pangolin/head-front.svg"
  30189. }
  30190. },
  30191. headSide: {
  30192. height: math.unit(1.43, "feet"),
  30193. name: "Head (Side)",
  30194. image: {
  30195. source: "./media/characters/theo-pangolin/head-side.svg"
  30196. }
  30197. },
  30198. tongue: {
  30199. height: math.unit(2.29, "feet"),
  30200. name: "Tongue",
  30201. image: {
  30202. source: "./media/characters/theo-pangolin/tongue.svg"
  30203. }
  30204. },
  30205. },
  30206. [
  30207. {
  30208. name: "Normal",
  30209. height: math.unit(6, "feet")
  30210. },
  30211. {
  30212. name: "Macro",
  30213. height: math.unit(400, "feet"),
  30214. default: true
  30215. },
  30216. ]
  30217. ))
  30218. characterMakers.push(() => makeCharacter(
  30219. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30220. {
  30221. front: {
  30222. height: math.unit(6, "inches"),
  30223. weight: math.unit(0.036, "kg"),
  30224. name: "Front",
  30225. image: {
  30226. source: "./media/characters/renée/front.svg",
  30227. extra: 900 / 886,
  30228. bottom: 8 / 908
  30229. }
  30230. },
  30231. },
  30232. [
  30233. {
  30234. name: "Nano",
  30235. height: math.unit(1, "nm")
  30236. },
  30237. {
  30238. name: "Micro",
  30239. height: math.unit(1, "mm")
  30240. },
  30241. {
  30242. name: "Normal",
  30243. height: math.unit(6, "inches")
  30244. },
  30245. {
  30246. name: "Macro",
  30247. height: math.unit(2000, "feet"),
  30248. default: true
  30249. },
  30250. {
  30251. name: "Megamacro",
  30252. height: math.unit(2, "km")
  30253. },
  30254. {
  30255. name: "Gigamacro",
  30256. height: math.unit(2000, "km")
  30257. },
  30258. {
  30259. name: "Teramacro",
  30260. height: math.unit(250000, "km")
  30261. },
  30262. ]
  30263. ))
  30264. characterMakers.push(() => makeCharacter(
  30265. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30266. {
  30267. front: {
  30268. height: math.unit(4, "meters"),
  30269. weight: math.unit(150, "kg"),
  30270. name: "Front",
  30271. image: {
  30272. source: "./media/characters/caledvwlch/front.svg",
  30273. extra: 1760 / 1551,
  30274. bottom: 28 / 1788
  30275. }
  30276. },
  30277. side: {
  30278. height: math.unit(4, "meters"),
  30279. weight: math.unit(150, "kg"),
  30280. name: "Side",
  30281. image: {
  30282. source: "./media/characters/caledvwlch/side.svg",
  30283. extra: 1605 / 1536,
  30284. bottom: 31 / 1636
  30285. }
  30286. },
  30287. back: {
  30288. height: math.unit(4, "meters"),
  30289. weight: math.unit(150, "kg"),
  30290. name: "Back",
  30291. image: {
  30292. source: "./media/characters/caledvwlch/back.svg",
  30293. extra: 1635 / 1565,
  30294. bottom: 27 / 1662
  30295. }
  30296. },
  30297. },
  30298. [
  30299. {
  30300. name: "\"Incognito\"",
  30301. height: math.unit(4, "meters")
  30302. },
  30303. {
  30304. name: "Small rampage",
  30305. height: math.unit(600, "meters")
  30306. },
  30307. {
  30308. name: "Mega",
  30309. height: math.unit(30, "km")
  30310. },
  30311. {
  30312. name: "Home-size",
  30313. height: math.unit(50, "km"),
  30314. default: true
  30315. },
  30316. {
  30317. name: "Giga",
  30318. height: math.unit(300, "km")
  30319. },
  30320. {
  30321. name: "Lounging",
  30322. height: math.unit(11000, "km")
  30323. },
  30324. {
  30325. name: "Planet snacking",
  30326. height: math.unit(2000000, "km")
  30327. },
  30328. ]
  30329. ))
  30330. characterMakers.push(() => makeCharacter(
  30331. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30332. {
  30333. front: {
  30334. height: math.unit(6, "feet"),
  30335. weight: math.unit(215, "lb"),
  30336. name: "Front",
  30337. image: {
  30338. source: "./media/characters/sapphire-svell/front.svg",
  30339. extra: 495 / 455,
  30340. bottom: 20 / 515
  30341. }
  30342. },
  30343. back: {
  30344. height: math.unit(6, "feet"),
  30345. weight: math.unit(216, "lb"),
  30346. name: "Back",
  30347. image: {
  30348. source: "./media/characters/sapphire-svell/back.svg",
  30349. extra: 497 / 477,
  30350. bottom: 7 / 504
  30351. }
  30352. },
  30353. maw: {
  30354. height: math.unit(1.57, "feet"),
  30355. name: "Maw",
  30356. image: {
  30357. source: "./media/characters/sapphire-svell/maw.svg"
  30358. }
  30359. },
  30360. foot: {
  30361. height: math.unit(1.07, "feet"),
  30362. name: "Foot",
  30363. image: {
  30364. source: "./media/characters/sapphire-svell/foot.svg"
  30365. }
  30366. },
  30367. toering: {
  30368. height: math.unit(1.7, "inch"),
  30369. name: "Toering",
  30370. image: {
  30371. source: "./media/characters/sapphire-svell/toering.svg"
  30372. }
  30373. },
  30374. },
  30375. [
  30376. {
  30377. name: "Normal",
  30378. height: math.unit(300, "feet"),
  30379. default: true
  30380. },
  30381. {
  30382. name: "Augmented",
  30383. height: math.unit(1250, "feet")
  30384. },
  30385. {
  30386. name: "Unleashed",
  30387. height: math.unit(3000, "feet")
  30388. },
  30389. ]
  30390. ))
  30391. characterMakers.push(() => makeCharacter(
  30392. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30393. {
  30394. side: {
  30395. height: math.unit(2 + 3 / 12, "feet"),
  30396. weight: math.unit(110, "lb"),
  30397. name: "Side",
  30398. image: {
  30399. source: "./media/characters/glitch-flux/side.svg",
  30400. extra: 997 / 805,
  30401. bottom: 20 / 1017
  30402. }
  30403. },
  30404. },
  30405. [
  30406. {
  30407. name: "Normal",
  30408. height: math.unit(2 + 3 / 12, "feet"),
  30409. default: true
  30410. },
  30411. ]
  30412. ))
  30413. characterMakers.push(() => makeCharacter(
  30414. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30415. {
  30416. front: {
  30417. height: math.unit(4, "meters"),
  30418. name: "Front",
  30419. image: {
  30420. source: "./media/characters/mid/front.svg",
  30421. extra: 507 / 476,
  30422. bottom: 17 / 524
  30423. }
  30424. },
  30425. back: {
  30426. height: math.unit(4, "meters"),
  30427. name: "Back",
  30428. image: {
  30429. source: "./media/characters/mid/back.svg",
  30430. extra: 519 / 487,
  30431. bottom: 7 / 526
  30432. }
  30433. },
  30434. stuck: {
  30435. height: math.unit(2.2, "meters"),
  30436. name: "Stuck",
  30437. image: {
  30438. source: "./media/characters/mid/stuck.svg",
  30439. extra: 1951 / 1869,
  30440. bottom: 88 / 2039
  30441. }
  30442. }
  30443. },
  30444. [
  30445. {
  30446. name: "Normal",
  30447. height: math.unit(4, "meters"),
  30448. default: true
  30449. },
  30450. {
  30451. name: "Big",
  30452. height: math.unit(10, "meters")
  30453. },
  30454. {
  30455. name: "Macro",
  30456. height: math.unit(800, "meters")
  30457. },
  30458. {
  30459. name: "Megamacro",
  30460. height: math.unit(100, "km")
  30461. },
  30462. {
  30463. name: "Overgrown",
  30464. height: math.unit(1, "parsec")
  30465. },
  30466. ]
  30467. ))
  30468. characterMakers.push(() => makeCharacter(
  30469. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30470. {
  30471. front: {
  30472. height: math.unit(2.5, "meters"),
  30473. weight: math.unit(225, "kg"),
  30474. name: "Front",
  30475. image: {
  30476. source: "./media/characters/iris/front.svg",
  30477. extra: 3348 / 3251,
  30478. bottom: 205 / 3553
  30479. }
  30480. },
  30481. maw: {
  30482. height: math.unit(0.56, "meter"),
  30483. name: "Maw",
  30484. image: {
  30485. source: "./media/characters/iris/maw.svg"
  30486. }
  30487. },
  30488. },
  30489. [
  30490. {
  30491. name: "Mewter cat",
  30492. height: math.unit(1.2, "meters")
  30493. },
  30494. {
  30495. name: "Minimacro",
  30496. height: math.unit(2.5, "meters"),
  30497. default: true
  30498. },
  30499. {
  30500. name: "Macro",
  30501. height: math.unit(180, "meters")
  30502. },
  30503. {
  30504. name: "Megamacro",
  30505. height: math.unit(2746, "meters")
  30506. },
  30507. ]
  30508. ))
  30509. characterMakers.push(() => makeCharacter(
  30510. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30511. {
  30512. front: {
  30513. height: math.unit(6, "feet"),
  30514. weight: math.unit(135, "lb"),
  30515. name: "Front",
  30516. image: {
  30517. source: "./media/characters/axel/front.svg",
  30518. extra: 908 / 908,
  30519. bottom: 58 / 966
  30520. }
  30521. },
  30522. side: {
  30523. height: math.unit(6, "feet"),
  30524. weight: math.unit(135, "lb"),
  30525. name: "Side",
  30526. image: {
  30527. source: "./media/characters/axel/side.svg",
  30528. extra: 958 / 958,
  30529. bottom: 11 / 969
  30530. }
  30531. },
  30532. back: {
  30533. height: math.unit(6, "feet"),
  30534. weight: math.unit(135, "lb"),
  30535. name: "Back",
  30536. image: {
  30537. source: "./media/characters/axel/back.svg",
  30538. extra: 887 / 887,
  30539. bottom: 34 / 921
  30540. }
  30541. },
  30542. head: {
  30543. height: math.unit(1.07, "feet"),
  30544. name: "Head",
  30545. image: {
  30546. source: "./media/characters/axel/head.svg"
  30547. }
  30548. },
  30549. beak: {
  30550. height: math.unit(1.4, "feet"),
  30551. name: "Beak",
  30552. image: {
  30553. source: "./media/characters/axel/beak.svg"
  30554. }
  30555. },
  30556. beakSide: {
  30557. height: math.unit(1.4, "feet"),
  30558. name: "Beak Side",
  30559. image: {
  30560. source: "./media/characters/axel/beak-side.svg"
  30561. }
  30562. },
  30563. sheath: {
  30564. height: math.unit(0.5, "feet"),
  30565. name: "Sheath",
  30566. image: {
  30567. source: "./media/characters/axel/sheath.svg"
  30568. }
  30569. },
  30570. dick: {
  30571. height: math.unit(0.98, "feet"),
  30572. name: "Dick",
  30573. image: {
  30574. source: "./media/characters/axel/dick.svg"
  30575. }
  30576. },
  30577. },
  30578. [
  30579. {
  30580. name: "Macro",
  30581. height: math.unit(68, "meters"),
  30582. default: true
  30583. },
  30584. ]
  30585. ))
  30586. characterMakers.push(() => makeCharacter(
  30587. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30588. {
  30589. front: {
  30590. height: math.unit(3.5, "meters"),
  30591. weight: math.unit(1200, "kg"),
  30592. name: "Front",
  30593. image: {
  30594. source: "./media/characters/joanna/front.svg",
  30595. extra: 1596 / 1488,
  30596. bottom: 29 / 1625
  30597. }
  30598. },
  30599. back: {
  30600. height: math.unit(3.5, "meters"),
  30601. weight: math.unit(1200, "kg"),
  30602. name: "Back",
  30603. image: {
  30604. source: "./media/characters/joanna/back.svg",
  30605. extra: 1594 / 1495,
  30606. bottom: 26 / 1620
  30607. }
  30608. },
  30609. frontShorts: {
  30610. height: math.unit(3.5, "meters"),
  30611. weight: math.unit(1200, "kg"),
  30612. name: "Front (Shorts)",
  30613. image: {
  30614. source: "./media/characters/joanna/front-shorts.svg",
  30615. extra: 1596 / 1488,
  30616. bottom: 29 / 1625
  30617. }
  30618. },
  30619. frontBiker: {
  30620. height: math.unit(3.5, "meters"),
  30621. weight: math.unit(1200, "kg"),
  30622. name: "Front (Biker)",
  30623. image: {
  30624. source: "./media/characters/joanna/front-biker.svg",
  30625. extra: 1596 / 1488,
  30626. bottom: 29 / 1625
  30627. }
  30628. },
  30629. backBiker: {
  30630. height: math.unit(3.5, "meters"),
  30631. weight: math.unit(1200, "kg"),
  30632. name: "Back (Biker)",
  30633. image: {
  30634. source: "./media/characters/joanna/back-biker.svg",
  30635. extra: 1594 / 1495,
  30636. bottom: 88 / 1682
  30637. }
  30638. },
  30639. bikeLeft: {
  30640. height: math.unit(2.4, "meters"),
  30641. weight: math.unit(1600, "kg"),
  30642. name: "Bike (Left)",
  30643. image: {
  30644. source: "./media/characters/joanna/bike-left.svg",
  30645. extra: 720 / 720,
  30646. bottom: 8 / 728
  30647. }
  30648. },
  30649. bikeRight: {
  30650. height: math.unit(2.4, "meters"),
  30651. weight: math.unit(1600, "kg"),
  30652. name: "Bike (Right)",
  30653. image: {
  30654. source: "./media/characters/joanna/bike-right.svg",
  30655. extra: 720 / 720,
  30656. bottom: 8 / 728
  30657. }
  30658. },
  30659. },
  30660. [
  30661. {
  30662. name: "Incognito",
  30663. height: math.unit(3.5, "meters")
  30664. },
  30665. {
  30666. name: "Casual Big",
  30667. height: math.unit(200, "meters")
  30668. },
  30669. {
  30670. name: "Macro",
  30671. height: math.unit(600, "meters")
  30672. },
  30673. {
  30674. name: "Original",
  30675. height: math.unit(20, "km"),
  30676. default: true
  30677. },
  30678. {
  30679. name: "Giga",
  30680. height: math.unit(400, "km")
  30681. },
  30682. {
  30683. name: "Lounging",
  30684. height: math.unit(1500, "km")
  30685. },
  30686. {
  30687. name: "Planetary",
  30688. height: math.unit(200000, "km")
  30689. },
  30690. ]
  30691. ))
  30692. characterMakers.push(() => makeCharacter(
  30693. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30694. {
  30695. front: {
  30696. height: math.unit(6, "feet"),
  30697. weight: math.unit(150, "lb"),
  30698. name: "Front",
  30699. image: {
  30700. source: "./media/characters/hugo-sigil/front.svg",
  30701. extra: 522 / 500,
  30702. bottom: 2 / 524
  30703. }
  30704. },
  30705. back: {
  30706. height: math.unit(6, "feet"),
  30707. weight: math.unit(150, "lb"),
  30708. name: "Back",
  30709. image: {
  30710. source: "./media/characters/hugo-sigil/back.svg",
  30711. extra: 519 / 495,
  30712. bottom: 5 / 524
  30713. }
  30714. },
  30715. maw: {
  30716. height: math.unit(1.4, "feet"),
  30717. weight: math.unit(150, "lb"),
  30718. name: "Maw",
  30719. image: {
  30720. source: "./media/characters/hugo-sigil/maw.svg"
  30721. }
  30722. },
  30723. feet: {
  30724. height: math.unit(1.56, "feet"),
  30725. weight: math.unit(150, "lb"),
  30726. name: "Feet",
  30727. image: {
  30728. source: "./media/characters/hugo-sigil/feet.svg",
  30729. extra: 177 / 177,
  30730. bottom: 12 / 189
  30731. }
  30732. },
  30733. },
  30734. [
  30735. {
  30736. name: "Normal",
  30737. height: math.unit(6, "feet")
  30738. },
  30739. {
  30740. name: "Macro",
  30741. height: math.unit(200, "feet"),
  30742. default: true
  30743. },
  30744. ]
  30745. ))
  30746. characterMakers.push(() => makeCharacter(
  30747. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30748. {
  30749. front: {
  30750. height: math.unit(6, "feet"),
  30751. weight: math.unit(150, "lb"),
  30752. name: "Front",
  30753. image: {
  30754. source: "./media/characters/peri/front.svg",
  30755. extra: 2354 / 2233,
  30756. bottom: 49 / 2403
  30757. }
  30758. },
  30759. },
  30760. [
  30761. {
  30762. name: "Really Small",
  30763. height: math.unit(1, "nm")
  30764. },
  30765. {
  30766. name: "Micro",
  30767. height: math.unit(4, "inches")
  30768. },
  30769. {
  30770. name: "Normal",
  30771. height: math.unit(7, "inches"),
  30772. default: true
  30773. },
  30774. {
  30775. name: "Macro",
  30776. height: math.unit(400, "feet")
  30777. },
  30778. {
  30779. name: "Megamacro",
  30780. height: math.unit(100, "miles")
  30781. },
  30782. ]
  30783. ))
  30784. characterMakers.push(() => makeCharacter(
  30785. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30786. {
  30787. frontSlim: {
  30788. height: math.unit(7, "feet"),
  30789. name: "Front (Slim)",
  30790. image: {
  30791. source: "./media/characters/issilora/front-slim.svg",
  30792. extra: 529 / 449,
  30793. bottom: 53 / 582
  30794. }
  30795. },
  30796. sideSlim: {
  30797. height: math.unit(7, "feet"),
  30798. name: "Side (Slim)",
  30799. image: {
  30800. source: "./media/characters/issilora/side-slim.svg",
  30801. extra: 570 / 480,
  30802. bottom: 30 / 600
  30803. }
  30804. },
  30805. backSlim: {
  30806. height: math.unit(7, "feet"),
  30807. name: "Back (Slim)",
  30808. image: {
  30809. source: "./media/characters/issilora/back-slim.svg",
  30810. extra: 537 / 455,
  30811. bottom: 46 / 583
  30812. }
  30813. },
  30814. frontBuff: {
  30815. height: math.unit(7, "feet"),
  30816. name: "Front (Buff)",
  30817. image: {
  30818. source: "./media/characters/issilora/front-buff.svg",
  30819. extra: 2310 / 2035,
  30820. bottom: 335 / 2645
  30821. }
  30822. },
  30823. head: {
  30824. height: math.unit(1.94, "feet"),
  30825. name: "Head",
  30826. image: {
  30827. source: "./media/characters/issilora/head.svg"
  30828. }
  30829. },
  30830. },
  30831. [
  30832. {
  30833. name: "Minimum",
  30834. height: math.unit(7, "feet")
  30835. },
  30836. {
  30837. name: "Comfortable",
  30838. height: math.unit(17, "feet")
  30839. },
  30840. {
  30841. name: "Fun Size",
  30842. height: math.unit(47, "feet")
  30843. },
  30844. {
  30845. name: "Natural Macro",
  30846. height: math.unit(137, "feet"),
  30847. default: true
  30848. },
  30849. {
  30850. name: "Maximum Kaiju",
  30851. height: math.unit(397, "feet")
  30852. },
  30853. ]
  30854. ))
  30855. characterMakers.push(() => makeCharacter(
  30856. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30857. {
  30858. front: {
  30859. height: math.unit(50 + 9/12, "feet"),
  30860. weight: math.unit(32.8, "tons"),
  30861. name: "Front",
  30862. image: {
  30863. source: "./media/characters/irb'iiritaahn/front.svg",
  30864. extra: 1878/1826,
  30865. bottom: 326/2204
  30866. }
  30867. },
  30868. back: {
  30869. height: math.unit(50 + 9/12, "feet"),
  30870. weight: math.unit(32.8, "tons"),
  30871. name: "Back",
  30872. image: {
  30873. source: "./media/characters/irb'iiritaahn/back.svg",
  30874. extra: 2052/2018,
  30875. bottom: 152/2204
  30876. }
  30877. },
  30878. head: {
  30879. height: math.unit(12.86, "feet"),
  30880. name: "Head",
  30881. image: {
  30882. source: "./media/characters/irb'iiritaahn/head.svg"
  30883. }
  30884. },
  30885. maw: {
  30886. height: math.unit(9.66, "feet"),
  30887. name: "Maw",
  30888. image: {
  30889. source: "./media/characters/irb'iiritaahn/maw.svg"
  30890. }
  30891. },
  30892. frontDick: {
  30893. height: math.unit(8.78461, "feet"),
  30894. name: "Front Dick",
  30895. image: {
  30896. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30897. }
  30898. },
  30899. rearDick: {
  30900. height: math.unit(8.78461, "feet"),
  30901. name: "Rear Dick",
  30902. image: {
  30903. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30904. }
  30905. },
  30906. rearDickUnfolded: {
  30907. height: math.unit(8.78, "feet"),
  30908. name: "Rear Dick (Unfolded)",
  30909. image: {
  30910. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30911. }
  30912. },
  30913. wings: {
  30914. height: math.unit(43, "feet"),
  30915. name: "Wings",
  30916. image: {
  30917. source: "./media/characters/irb'iiritaahn/wings.svg"
  30918. }
  30919. },
  30920. },
  30921. [
  30922. {
  30923. name: "Macro",
  30924. height: math.unit(50 + 9/12, "feet"),
  30925. default: true
  30926. },
  30927. ]
  30928. ))
  30929. characterMakers.push(() => makeCharacter(
  30930. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30931. {
  30932. front: {
  30933. height: math.unit(205, "cm"),
  30934. weight: math.unit(102, "kg"),
  30935. name: "Front",
  30936. image: {
  30937. source: "./media/characters/irbisgreif/front.svg",
  30938. extra: 785/706,
  30939. bottom: 13/798
  30940. }
  30941. },
  30942. back: {
  30943. height: math.unit(205, "cm"),
  30944. weight: math.unit(102, "kg"),
  30945. name: "Back",
  30946. image: {
  30947. source: "./media/characters/irbisgreif/back.svg",
  30948. extra: 713/701,
  30949. bottom: 26/739
  30950. }
  30951. },
  30952. frontDressed: {
  30953. height: math.unit(216, "cm"),
  30954. weight: math.unit(102, "kg"),
  30955. name: "Front-dressed",
  30956. image: {
  30957. source: "./media/characters/irbisgreif/front-dressed.svg",
  30958. extra: 902/776,
  30959. bottom: 14/916
  30960. }
  30961. },
  30962. sideDressed: {
  30963. height: math.unit(195, "cm"),
  30964. weight: math.unit(102, "kg"),
  30965. name: "Side-dressed",
  30966. image: {
  30967. source: "./media/characters/irbisgreif/side-dressed.svg",
  30968. extra: 788/688,
  30969. bottom: 21/809
  30970. }
  30971. },
  30972. backDressed: {
  30973. height: math.unit(216, "cm"),
  30974. weight: math.unit(102, "kg"),
  30975. name: "Back-dressed",
  30976. image: {
  30977. source: "./media/characters/irbisgreif/back-dressed.svg",
  30978. extra: 901/783,
  30979. bottom: 10/911
  30980. }
  30981. },
  30982. dick: {
  30983. height: math.unit(0.49, "feet"),
  30984. name: "Dick",
  30985. image: {
  30986. source: "./media/characters/irbisgreif/dick.svg"
  30987. }
  30988. },
  30989. wingTop: {
  30990. height: math.unit(1.93 , "feet"),
  30991. name: "Wing-top",
  30992. image: {
  30993. source: "./media/characters/irbisgreif/wing-top.svg"
  30994. }
  30995. },
  30996. wingBottom: {
  30997. height: math.unit(1.93 , "feet"),
  30998. name: "Wing-bottom",
  30999. image: {
  31000. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31001. }
  31002. },
  31003. },
  31004. [
  31005. {
  31006. name: "Normal",
  31007. height: math.unit(216, "cm"),
  31008. default: true
  31009. },
  31010. ]
  31011. ))
  31012. characterMakers.push(() => makeCharacter(
  31013. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31014. {
  31015. front: {
  31016. height: math.unit(6, "feet"),
  31017. weight: math.unit(150, "lb"),
  31018. name: "Front",
  31019. image: {
  31020. source: "./media/characters/pride/front.svg",
  31021. extra: 1299/1230,
  31022. bottom: 18/1317
  31023. }
  31024. },
  31025. },
  31026. [
  31027. {
  31028. name: "Normal",
  31029. height: math.unit(7, "feet")
  31030. },
  31031. {
  31032. name: "Mini-macro",
  31033. height: math.unit(11, "feet")
  31034. },
  31035. {
  31036. name: "Macro",
  31037. height: math.unit(15, "meters"),
  31038. default: true
  31039. },
  31040. {
  31041. name: "Macro+",
  31042. height: math.unit(40, "meters")
  31043. },
  31044. ]
  31045. ))
  31046. characterMakers.push(() => makeCharacter(
  31047. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31048. {
  31049. front: {
  31050. height: math.unit(4 + 2 / 12, "feet"),
  31051. weight: math.unit(95, "lb"),
  31052. name: "Front",
  31053. image: {
  31054. source: "./media/characters/vaelophis-nyx/front.svg",
  31055. extra: 2532/2330,
  31056. bottom: 0/2532
  31057. }
  31058. },
  31059. back: {
  31060. height: math.unit(4 + 2 / 12, "feet"),
  31061. weight: math.unit(95, "lb"),
  31062. name: "Back",
  31063. image: {
  31064. source: "./media/characters/vaelophis-nyx/back.svg",
  31065. extra: 2484/2361,
  31066. bottom: 0/2484
  31067. }
  31068. },
  31069. feralSide: {
  31070. height: math.unit(2 + 1/12, "feet"),
  31071. weight: math.unit(20, "lb"),
  31072. name: "Feral (Side)",
  31073. image: {
  31074. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31075. extra: 1721/1581,
  31076. bottom: 70/1791
  31077. }
  31078. },
  31079. feralLazing: {
  31080. height: math.unit(1.08, "feet"),
  31081. weight: math.unit(20, "lb"),
  31082. name: "Feral (Lazing)",
  31083. image: {
  31084. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31085. extra: 822/822,
  31086. bottom: 248/1070
  31087. }
  31088. },
  31089. ear: {
  31090. height: math.unit(0.416, "feet"),
  31091. name: "Ear",
  31092. image: {
  31093. source: "./media/characters/vaelophis-nyx/ear.svg"
  31094. }
  31095. },
  31096. eye: {
  31097. height: math.unit(0.0748, "feet"),
  31098. name: "Eye",
  31099. image: {
  31100. source: "./media/characters/vaelophis-nyx/eye.svg"
  31101. }
  31102. },
  31103. mouth: {
  31104. height: math.unit(0.378, "feet"),
  31105. name: "Mouth",
  31106. image: {
  31107. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31108. }
  31109. },
  31110. spade: {
  31111. height: math.unit(0.55, "feet"),
  31112. name: "Spade",
  31113. image: {
  31114. source: "./media/characters/vaelophis-nyx/spade.svg"
  31115. }
  31116. },
  31117. },
  31118. [
  31119. {
  31120. name: "Normal",
  31121. height: math.unit(4 + 2/12, "feet"),
  31122. default: true
  31123. },
  31124. ]
  31125. ))
  31126. characterMakers.push(() => makeCharacter(
  31127. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31128. {
  31129. front: {
  31130. height: math.unit(7, "feet"),
  31131. weight: math.unit(231, "lb"),
  31132. name: "Front",
  31133. image: {
  31134. source: "./media/characters/flux/front.svg",
  31135. extra: 919/871,
  31136. bottom: 0/919
  31137. }
  31138. },
  31139. back: {
  31140. height: math.unit(7, "feet"),
  31141. weight: math.unit(231, "lb"),
  31142. name: "Back",
  31143. image: {
  31144. source: "./media/characters/flux/back.svg",
  31145. extra: 1040/992,
  31146. bottom: 0/1040
  31147. }
  31148. },
  31149. frontDressed: {
  31150. height: math.unit(7, "feet"),
  31151. weight: math.unit(231, "lb"),
  31152. name: "Front (Dressed)",
  31153. image: {
  31154. source: "./media/characters/flux/front-dressed.svg",
  31155. extra: 919/871,
  31156. bottom: 0/919
  31157. }
  31158. },
  31159. feralSide: {
  31160. height: math.unit(5, "feet"),
  31161. weight: math.unit(150, "lb"),
  31162. name: "Feral (Side)",
  31163. image: {
  31164. source: "./media/characters/flux/feral-side.svg",
  31165. extra: 598/528,
  31166. bottom: 28/626
  31167. }
  31168. },
  31169. head: {
  31170. height: math.unit(1.585, "feet"),
  31171. name: "Head",
  31172. image: {
  31173. source: "./media/characters/flux/head.svg"
  31174. }
  31175. },
  31176. headSide: {
  31177. height: math.unit(1.74, "feet"),
  31178. name: "Head (Side)",
  31179. image: {
  31180. source: "./media/characters/flux/head-side.svg"
  31181. }
  31182. },
  31183. headSideFire: {
  31184. height: math.unit(1.76, "feet"),
  31185. name: "Head (Side, Fire)",
  31186. image: {
  31187. source: "./media/characters/flux/head-side-fire.svg"
  31188. }
  31189. },
  31190. },
  31191. [
  31192. {
  31193. name: "Normal",
  31194. height: math.unit(7, "feet"),
  31195. default: true
  31196. },
  31197. ]
  31198. ))
  31199. characterMakers.push(() => makeCharacter(
  31200. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31201. {
  31202. front: {
  31203. height: math.unit(9, "feet"),
  31204. weight: math.unit(1012, "lb"),
  31205. name: "Front",
  31206. image: {
  31207. source: "./media/characters/ulfra-lupae/front.svg",
  31208. extra: 1083/1011,
  31209. bottom: 67/1150
  31210. }
  31211. },
  31212. },
  31213. [
  31214. {
  31215. name: "Micro",
  31216. height: math.unit(6, "inches")
  31217. },
  31218. {
  31219. name: "Socializing",
  31220. height: math.unit(6 + 5/12, "feet")
  31221. },
  31222. {
  31223. name: "Normal",
  31224. height: math.unit(9, "feet"),
  31225. default: true
  31226. },
  31227. {
  31228. name: "Macro",
  31229. height: math.unit(150, "feet")
  31230. },
  31231. ]
  31232. ))
  31233. characterMakers.push(() => makeCharacter(
  31234. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31235. {
  31236. front: {
  31237. height: math.unit(5 + 2/12, "feet"),
  31238. weight: math.unit(120, "lb"),
  31239. name: "Front",
  31240. image: {
  31241. source: "./media/characters/timber/front.svg",
  31242. extra: 2814/2705,
  31243. bottom: 181/2995
  31244. }
  31245. },
  31246. },
  31247. [
  31248. {
  31249. name: "Normal",
  31250. height: math.unit(5 + 2/12, "feet"),
  31251. default: true
  31252. },
  31253. ]
  31254. ))
  31255. characterMakers.push(() => makeCharacter(
  31256. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31257. {
  31258. front: {
  31259. height: math.unit(5 + 7/12, "feet"),
  31260. weight: math.unit(220, "lb"),
  31261. name: "Front",
  31262. image: {
  31263. source: "./media/characters/nicki/front.svg",
  31264. extra: 453/419,
  31265. bottom: 7/460
  31266. }
  31267. },
  31268. frontAlt: {
  31269. height: math.unit(5 + 7/12, "feet"),
  31270. weight: math.unit(220, "lb"),
  31271. name: "Front-alt",
  31272. image: {
  31273. source: "./media/characters/nicki/front-alt.svg",
  31274. extra: 435/411,
  31275. bottom: 12/447
  31276. }
  31277. },
  31278. back: {
  31279. height: math.unit(5 + 7/12, "feet"),
  31280. weight: math.unit(220, "lb"),
  31281. name: "Back",
  31282. image: {
  31283. source: "./media/characters/nicki/back.svg",
  31284. extra: 440/413,
  31285. bottom: 19/459
  31286. }
  31287. },
  31288. taur: {
  31289. height: math.unit(7 + 6/12, "feet"),
  31290. weight: math.unit(700, "lb"),
  31291. name: "Taur",
  31292. image: {
  31293. source: "./media/characters/nicki/taur.svg",
  31294. extra: 975/773,
  31295. bottom: 0/975
  31296. }
  31297. },
  31298. frontNsfw: {
  31299. height: math.unit(5 + 7/12, "feet"),
  31300. weight: math.unit(220, "lb"),
  31301. name: "Front (NSFW)",
  31302. image: {
  31303. source: "./media/characters/nicki/front-nsfw.svg",
  31304. extra: 453/419,
  31305. bottom: 7/460
  31306. }
  31307. },
  31308. frontNsfwAlt: {
  31309. height: math.unit(5 + 7/12, "feet"),
  31310. weight: math.unit(220, "lb"),
  31311. name: "Front (Alt, NSFW)",
  31312. image: {
  31313. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31314. extra: 435/411,
  31315. bottom: 12/447
  31316. }
  31317. },
  31318. backNsfw: {
  31319. height: math.unit(5 + 7/12, "feet"),
  31320. weight: math.unit(220, "lb"),
  31321. name: "Back (NSFW)",
  31322. image: {
  31323. source: "./media/characters/nicki/back-nsfw.svg",
  31324. extra: 440/413,
  31325. bottom: 19/459
  31326. }
  31327. },
  31328. head: {
  31329. height: math.unit(2.1, "feet"),
  31330. name: "Head",
  31331. image: {
  31332. source: "./media/characters/nicki/head.svg"
  31333. }
  31334. },
  31335. paw: {
  31336. height: math.unit(1.88, "feet"),
  31337. name: "Paw",
  31338. image: {
  31339. source: "./media/characters/nicki/paw.svg"
  31340. }
  31341. },
  31342. },
  31343. [
  31344. {
  31345. name: "Normal",
  31346. height: math.unit(5 + 7/12, "feet"),
  31347. default: true
  31348. },
  31349. ]
  31350. ))
  31351. characterMakers.push(() => makeCharacter(
  31352. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31353. {
  31354. front: {
  31355. height: math.unit(7 + 10/12, "feet"),
  31356. weight: math.unit(3.5, "tons"),
  31357. name: "Front",
  31358. image: {
  31359. source: "./media/characters/lee/front.svg",
  31360. extra: 1773/1615,
  31361. bottom: 86/1859
  31362. }
  31363. },
  31364. hand: {
  31365. height: math.unit(1.78, "feet"),
  31366. name: "Hand",
  31367. image: {
  31368. source: "./media/characters/lee/hand.svg"
  31369. }
  31370. },
  31371. maw: {
  31372. height: math.unit(1.18, "feet"),
  31373. name: "Maw",
  31374. image: {
  31375. source: "./media/characters/lee/maw.svg"
  31376. }
  31377. },
  31378. },
  31379. [
  31380. {
  31381. name: "Normal",
  31382. height: math.unit(7 + 10/12, "feet"),
  31383. default: true
  31384. },
  31385. ]
  31386. ))
  31387. characterMakers.push(() => makeCharacter(
  31388. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31389. {
  31390. front: {
  31391. height: math.unit(9, "feet"),
  31392. name: "Front",
  31393. image: {
  31394. source: "./media/characters/guti/front.svg",
  31395. extra: 4551/4355,
  31396. bottom: 123/4674
  31397. }
  31398. },
  31399. tongue: {
  31400. height: math.unit(1, "feet"),
  31401. name: "Tongue",
  31402. image: {
  31403. source: "./media/characters/guti/tongue.svg"
  31404. }
  31405. },
  31406. paw: {
  31407. height: math.unit(1.18, "feet"),
  31408. name: "Paw",
  31409. image: {
  31410. source: "./media/characters/guti/paw.svg"
  31411. }
  31412. },
  31413. },
  31414. [
  31415. {
  31416. name: "Normal",
  31417. height: math.unit(9, "feet"),
  31418. default: true
  31419. },
  31420. ]
  31421. ))
  31422. characterMakers.push(() => makeCharacter(
  31423. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31424. {
  31425. side: {
  31426. height: math.unit(5, "meters"),
  31427. name: "Side",
  31428. image: {
  31429. source: "./media/characters/vesper/side.svg",
  31430. extra: 1605/1518,
  31431. bottom: 0/1605
  31432. }
  31433. },
  31434. },
  31435. [
  31436. {
  31437. name: "Small",
  31438. height: math.unit(5, "meters")
  31439. },
  31440. {
  31441. name: "Sage",
  31442. height: math.unit(100, "meters"),
  31443. default: true
  31444. },
  31445. {
  31446. name: "Fun Size",
  31447. height: math.unit(600, "meters")
  31448. },
  31449. {
  31450. name: "Goddess",
  31451. height: math.unit(20000, "km")
  31452. },
  31453. {
  31454. name: "Maximum",
  31455. height: math.unit(5, "galaxies")
  31456. },
  31457. ]
  31458. ))
  31459. characterMakers.push(() => makeCharacter(
  31460. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31461. {
  31462. front: {
  31463. height: math.unit(6 + 3/12, "feet"),
  31464. weight: math.unit(190, "lb"),
  31465. name: "Front",
  31466. image: {
  31467. source: "./media/characters/gawain/front.svg",
  31468. extra: 2222/2139,
  31469. bottom: 90/2312
  31470. }
  31471. },
  31472. back: {
  31473. height: math.unit(6 + 3/12, "feet"),
  31474. weight: math.unit(190, "lb"),
  31475. name: "Back",
  31476. image: {
  31477. source: "./media/characters/gawain/back.svg",
  31478. extra: 2199/2111,
  31479. bottom: 73/2272
  31480. }
  31481. },
  31482. },
  31483. [
  31484. {
  31485. name: "Normal",
  31486. height: math.unit(6 + 3/12, "feet"),
  31487. default: true
  31488. },
  31489. ]
  31490. ))
  31491. characterMakers.push(() => makeCharacter(
  31492. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31493. {
  31494. side: {
  31495. height: math.unit(3.5, "meters"),
  31496. weight: math.unit(16000, "lb"),
  31497. name: "Side",
  31498. image: {
  31499. source: "./media/characters/dascalti/side.svg",
  31500. extra: 392/273,
  31501. bottom: 47/439
  31502. }
  31503. },
  31504. breath: {
  31505. height: math.unit(7.4, "feet"),
  31506. name: "Breath",
  31507. image: {
  31508. source: "./media/characters/dascalti/breath.svg"
  31509. }
  31510. },
  31511. fed: {
  31512. height: math.unit(3.6, "meters"),
  31513. weight: math.unit(16000, "lb"),
  31514. name: "Fed",
  31515. image: {
  31516. source: "./media/characters/dascalti/fed.svg",
  31517. extra: 1419/820,
  31518. bottom: 95/1514
  31519. }
  31520. },
  31521. },
  31522. [
  31523. {
  31524. name: "Normal",
  31525. height: math.unit(3.5, "meters"),
  31526. default: true
  31527. },
  31528. ]
  31529. ))
  31530. characterMakers.push(() => makeCharacter(
  31531. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31532. {
  31533. front: {
  31534. height: math.unit(3 + 5/12, "feet"),
  31535. name: "Front",
  31536. image: {
  31537. source: "./media/characters/mauve/front.svg",
  31538. extra: 1126/1033,
  31539. bottom: 65/1191
  31540. }
  31541. },
  31542. side: {
  31543. height: math.unit(3 + 5/12, "feet"),
  31544. name: "Side",
  31545. image: {
  31546. source: "./media/characters/mauve/side.svg",
  31547. extra: 1089/1001,
  31548. bottom: 29/1118
  31549. }
  31550. },
  31551. back: {
  31552. height: math.unit(3 + 5/12, "feet"),
  31553. name: "Back",
  31554. image: {
  31555. source: "./media/characters/mauve/back.svg",
  31556. extra: 1173/1053,
  31557. bottom: 109/1282
  31558. }
  31559. },
  31560. },
  31561. [
  31562. {
  31563. name: "Normal",
  31564. height: math.unit(3 + 5/12, "feet"),
  31565. default: true
  31566. },
  31567. ]
  31568. ))
  31569. characterMakers.push(() => makeCharacter(
  31570. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31571. {
  31572. front: {
  31573. height: math.unit(6 + 3/12, "feet"),
  31574. weight: math.unit(430, "lb"),
  31575. name: "Front",
  31576. image: {
  31577. source: "./media/characters/carlos/front.svg",
  31578. extra: 1964/1913,
  31579. bottom: 70/2034
  31580. }
  31581. },
  31582. },
  31583. [
  31584. {
  31585. name: "Normal",
  31586. height: math.unit(6 + 3/12, "feet"),
  31587. default: true
  31588. },
  31589. ]
  31590. ))
  31591. characterMakers.push(() => makeCharacter(
  31592. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31593. {
  31594. back: {
  31595. height: math.unit(5 + 10/12, "feet"),
  31596. weight: math.unit(200, "lb"),
  31597. name: "Back",
  31598. image: {
  31599. source: "./media/characters/jax/back.svg",
  31600. extra: 764/739,
  31601. bottom: 25/789
  31602. }
  31603. },
  31604. },
  31605. [
  31606. {
  31607. name: "Normal",
  31608. height: math.unit(5 + 10/12, "feet"),
  31609. default: true
  31610. },
  31611. ]
  31612. ))
  31613. characterMakers.push(() => makeCharacter(
  31614. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31615. {
  31616. front: {
  31617. height: math.unit(8, "feet"),
  31618. weight: math.unit(250, "lb"),
  31619. name: "Front",
  31620. image: {
  31621. source: "./media/characters/eikthynir/front.svg",
  31622. extra: 1332/1166,
  31623. bottom: 82/1414
  31624. }
  31625. },
  31626. back: {
  31627. height: math.unit(8, "feet"),
  31628. weight: math.unit(250, "lb"),
  31629. name: "Back",
  31630. image: {
  31631. source: "./media/characters/eikthynir/back.svg",
  31632. extra: 1342/1190,
  31633. bottom: 19/1361
  31634. }
  31635. },
  31636. dick: {
  31637. height: math.unit(2.35, "feet"),
  31638. name: "Dick",
  31639. image: {
  31640. source: "./media/characters/eikthynir/dick.svg"
  31641. }
  31642. },
  31643. },
  31644. [
  31645. {
  31646. name: "Normal",
  31647. height: math.unit(8, "feet"),
  31648. default: true
  31649. },
  31650. ]
  31651. ))
  31652. characterMakers.push(() => makeCharacter(
  31653. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31654. {
  31655. front: {
  31656. height: math.unit(99, "meters"),
  31657. weight: math.unit(13000, "tons"),
  31658. name: "Front",
  31659. image: {
  31660. source: "./media/characters/zlmos/front.svg",
  31661. extra: 2202/1992,
  31662. bottom: 315/2517
  31663. }
  31664. },
  31665. },
  31666. [
  31667. {
  31668. name: "Macro",
  31669. height: math.unit(99, "meters"),
  31670. default: true
  31671. },
  31672. ]
  31673. ))
  31674. characterMakers.push(() => makeCharacter(
  31675. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31676. {
  31677. front: {
  31678. height: math.unit(6 + 5/12, "feet"),
  31679. name: "Front",
  31680. image: {
  31681. source: "./media/characters/purri/front.svg",
  31682. extra: 1698/1610,
  31683. bottom: 32/1730
  31684. }
  31685. },
  31686. frontAlt: {
  31687. height: math.unit(6 + 5/12, "feet"),
  31688. name: "Front (Alt)",
  31689. image: {
  31690. source: "./media/characters/purri/front-alt.svg",
  31691. extra: 450/420,
  31692. bottom: 26/476
  31693. }
  31694. },
  31695. boots: {
  31696. height: math.unit(5.5, "feet"),
  31697. name: "Boots",
  31698. image: {
  31699. source: "./media/characters/purri/boots.svg",
  31700. extra: 905/853,
  31701. bottom: 18/923
  31702. }
  31703. },
  31704. lying: {
  31705. height: math.unit(2, "feet"),
  31706. name: "Lying",
  31707. image: {
  31708. source: "./media/characters/purri/lying.svg",
  31709. extra: 940/843,
  31710. bottom: 146/1086
  31711. }
  31712. },
  31713. devious: {
  31714. height: math.unit(1.77, "feet"),
  31715. name: "Devious",
  31716. image: {
  31717. source: "./media/characters/purri/devious.svg",
  31718. extra: 1440/1155,
  31719. bottom: 147/1587
  31720. }
  31721. },
  31722. bean: {
  31723. height: math.unit(1.94, "feet"),
  31724. name: "Bean",
  31725. image: {
  31726. source: "./media/characters/purri/bean.svg"
  31727. }
  31728. },
  31729. },
  31730. [
  31731. {
  31732. name: "Micro",
  31733. height: math.unit(1, "mm")
  31734. },
  31735. {
  31736. name: "Normal",
  31737. height: math.unit(6 + 5/12, "feet"),
  31738. default: true
  31739. },
  31740. {
  31741. name: "Macro :3c",
  31742. height: math.unit(2, "miles")
  31743. },
  31744. ]
  31745. ))
  31746. characterMakers.push(() => makeCharacter(
  31747. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31748. {
  31749. front: {
  31750. height: math.unit(6 + 2/12, "feet"),
  31751. weight: math.unit(250, "lb"),
  31752. name: "Front",
  31753. image: {
  31754. source: "./media/characters/moonlight/front.svg",
  31755. extra: 1044/908,
  31756. bottom: 56/1100
  31757. }
  31758. },
  31759. feral: {
  31760. height: math.unit(3 + 1/12, "feet"),
  31761. weight: math.unit(50, "kg"),
  31762. name: "Feral",
  31763. image: {
  31764. source: "./media/characters/moonlight/feral.svg",
  31765. extra: 3705/2791,
  31766. bottom: 145/3850
  31767. }
  31768. },
  31769. paw: {
  31770. height: math.unit(1, "feet"),
  31771. name: "Paw",
  31772. image: {
  31773. source: "./media/characters/moonlight/paw.svg"
  31774. }
  31775. },
  31776. paws: {
  31777. height: math.unit(0.98, "feet"),
  31778. name: "Paws",
  31779. image: {
  31780. source: "./media/characters/moonlight/paws.svg",
  31781. extra: 939/939,
  31782. bottom: 50/989
  31783. }
  31784. },
  31785. mouth: {
  31786. height: math.unit(0.48, "feet"),
  31787. name: "Mouth",
  31788. image: {
  31789. source: "./media/characters/moonlight/mouth.svg"
  31790. }
  31791. },
  31792. dick: {
  31793. height: math.unit(1.46, "feet"),
  31794. name: "Dick",
  31795. image: {
  31796. source: "./media/characters/moonlight/dick.svg"
  31797. }
  31798. },
  31799. },
  31800. [
  31801. {
  31802. name: "Normal",
  31803. height: math.unit(6 + 2/12, "feet"),
  31804. default: true
  31805. },
  31806. {
  31807. name: "Macro",
  31808. height: math.unit(300, "feet")
  31809. },
  31810. {
  31811. name: "Macro+",
  31812. height: math.unit(1, "mile")
  31813. },
  31814. {
  31815. name: "Mt. Moon",
  31816. height: math.unit(5, "miles")
  31817. },
  31818. {
  31819. name: "Megamacro",
  31820. height: math.unit(15, "miles")
  31821. },
  31822. ]
  31823. ))
  31824. characterMakers.push(() => makeCharacter(
  31825. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31826. {
  31827. back: {
  31828. height: math.unit(6, "feet"),
  31829. weight: math.unit(150, "lb"),
  31830. name: "Back",
  31831. image: {
  31832. source: "./media/characters/sylen/back.svg",
  31833. extra: 1335/1273,
  31834. bottom: 107/1442
  31835. }
  31836. },
  31837. },
  31838. [
  31839. {
  31840. name: "Normal",
  31841. height: math.unit(5 + 5/12, "feet")
  31842. },
  31843. {
  31844. name: "Megamacro",
  31845. height: math.unit(3, "miles"),
  31846. default: true
  31847. },
  31848. ]
  31849. ))
  31850. characterMakers.push(() => makeCharacter(
  31851. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31852. {
  31853. front: {
  31854. height: math.unit(6, "feet"),
  31855. weight: math.unit(190, "lb"),
  31856. name: "Front",
  31857. image: {
  31858. source: "./media/characters/huttser/front.svg",
  31859. extra: 1152/1058,
  31860. bottom: 23/1175
  31861. }
  31862. },
  31863. side: {
  31864. height: math.unit(6, "feet"),
  31865. weight: math.unit(190, "lb"),
  31866. name: "Side",
  31867. image: {
  31868. source: "./media/characters/huttser/side.svg",
  31869. extra: 1174/1065,
  31870. bottom: 18/1192
  31871. }
  31872. },
  31873. back: {
  31874. height: math.unit(6, "feet"),
  31875. weight: math.unit(190, "lb"),
  31876. name: "Back",
  31877. image: {
  31878. source: "./media/characters/huttser/back.svg",
  31879. extra: 1158/1056,
  31880. bottom: 12/1170
  31881. }
  31882. },
  31883. },
  31884. [
  31885. ]
  31886. ))
  31887. characterMakers.push(() => makeCharacter(
  31888. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31889. {
  31890. side: {
  31891. height: math.unit(12 + 9/12, "feet"),
  31892. weight: math.unit(15000, "lb"),
  31893. name: "Side",
  31894. image: {
  31895. source: "./media/characters/faan/side.svg",
  31896. extra: 2747/2697,
  31897. bottom: 0/2747
  31898. }
  31899. },
  31900. front: {
  31901. height: math.unit(12 + 9/12, "feet"),
  31902. weight: math.unit(15000, "lb"),
  31903. name: "Front",
  31904. image: {
  31905. source: "./media/characters/faan/front.svg",
  31906. extra: 607/571,
  31907. bottom: 24/631
  31908. }
  31909. },
  31910. head: {
  31911. height: math.unit(2.85, "feet"),
  31912. name: "Head",
  31913. image: {
  31914. source: "./media/characters/faan/head.svg"
  31915. }
  31916. },
  31917. headAlt: {
  31918. height: math.unit(3.13, "feet"),
  31919. name: "Head-alt",
  31920. image: {
  31921. source: "./media/characters/faan/head-alt.svg"
  31922. }
  31923. },
  31924. },
  31925. [
  31926. {
  31927. name: "Normal",
  31928. height: math.unit(12 + 9/12, "feet"),
  31929. default: true
  31930. },
  31931. ]
  31932. ))
  31933. characterMakers.push(() => makeCharacter(
  31934. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31935. {
  31936. front: {
  31937. height: math.unit(6, "feet"),
  31938. weight: math.unit(300, "lb"),
  31939. name: "Front",
  31940. image: {
  31941. source: "./media/characters/tanio/front.svg",
  31942. extra: 711/673,
  31943. bottom: 25/736
  31944. }
  31945. },
  31946. },
  31947. [
  31948. {
  31949. name: "Normal",
  31950. height: math.unit(6, "feet"),
  31951. default: true
  31952. },
  31953. ]
  31954. ))
  31955. characterMakers.push(() => makeCharacter(
  31956. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31957. {
  31958. front: {
  31959. height: math.unit(3, "inches"),
  31960. name: "Front",
  31961. image: {
  31962. source: "./media/characters/noboru/front.svg",
  31963. extra: 1039/932,
  31964. bottom: 18/1057
  31965. }
  31966. },
  31967. },
  31968. [
  31969. {
  31970. name: "Micro",
  31971. height: math.unit(3, "inches"),
  31972. default: true
  31973. },
  31974. ]
  31975. ))
  31976. characterMakers.push(() => makeCharacter(
  31977. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31978. {
  31979. front: {
  31980. height: math.unit(1.85, "meters"),
  31981. weight: math.unit(80, "kg"),
  31982. name: "Front",
  31983. image: {
  31984. source: "./media/characters/daniel-barrett/front.svg",
  31985. extra: 355/337,
  31986. bottom: 9/364
  31987. }
  31988. },
  31989. },
  31990. [
  31991. {
  31992. name: "Pico",
  31993. height: math.unit(0.0433, "mm")
  31994. },
  31995. {
  31996. name: "Nano",
  31997. height: math.unit(1.5, "mm")
  31998. },
  31999. {
  32000. name: "Micro",
  32001. height: math.unit(5.3, "cm"),
  32002. default: true
  32003. },
  32004. {
  32005. name: "Normal",
  32006. height: math.unit(1.85, "meters")
  32007. },
  32008. {
  32009. name: "Macro",
  32010. height: math.unit(64.7, "meters")
  32011. },
  32012. {
  32013. name: "Megamacro",
  32014. height: math.unit(2.26, "km")
  32015. },
  32016. {
  32017. name: "Gigamacro",
  32018. height: math.unit(79, "km")
  32019. },
  32020. {
  32021. name: "Teramacro",
  32022. height: math.unit(2765, "km")
  32023. },
  32024. {
  32025. name: "Petamacro",
  32026. height: math.unit(96678, "km")
  32027. },
  32028. ]
  32029. ))
  32030. characterMakers.push(() => makeCharacter(
  32031. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32032. {
  32033. front: {
  32034. height: math.unit(30, "meters"),
  32035. weight: math.unit(400, "tons"),
  32036. name: "Front",
  32037. image: {
  32038. source: "./media/characters/zeel/front.svg",
  32039. extra: 2599/2599,
  32040. bottom: 226/2825
  32041. }
  32042. },
  32043. },
  32044. [
  32045. {
  32046. name: "Macro",
  32047. height: math.unit(30, "meters"),
  32048. default: true
  32049. },
  32050. ]
  32051. ))
  32052. characterMakers.push(() => makeCharacter(
  32053. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32054. {
  32055. front: {
  32056. height: math.unit(6 + 7/12, "feet"),
  32057. weight: math.unit(210, "lb"),
  32058. name: "Front",
  32059. image: {
  32060. source: "./media/characters/tarn/front.svg",
  32061. extra: 3517/3220,
  32062. bottom: 91/3608
  32063. }
  32064. },
  32065. back: {
  32066. height: math.unit(6 + 7/12, "feet"),
  32067. weight: math.unit(210, "lb"),
  32068. name: "Back",
  32069. image: {
  32070. source: "./media/characters/tarn/back.svg",
  32071. extra: 3566/3241,
  32072. bottom: 34/3600
  32073. }
  32074. },
  32075. dick: {
  32076. height: math.unit(1.65, "feet"),
  32077. name: "Dick",
  32078. image: {
  32079. source: "./media/characters/tarn/dick.svg"
  32080. }
  32081. },
  32082. paw: {
  32083. height: math.unit(1.80, "feet"),
  32084. name: "Paw",
  32085. image: {
  32086. source: "./media/characters/tarn/paw.svg"
  32087. }
  32088. },
  32089. tongue: {
  32090. height: math.unit(0.97, "feet"),
  32091. name: "Tongue",
  32092. image: {
  32093. source: "./media/characters/tarn/tongue.svg"
  32094. }
  32095. },
  32096. },
  32097. [
  32098. {
  32099. name: "Micro",
  32100. height: math.unit(4, "inches")
  32101. },
  32102. {
  32103. name: "Normal",
  32104. height: math.unit(6 + 7/12, "feet"),
  32105. default: true
  32106. },
  32107. {
  32108. name: "Macro",
  32109. height: math.unit(300, "feet")
  32110. },
  32111. ]
  32112. ))
  32113. characterMakers.push(() => makeCharacter(
  32114. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32115. {
  32116. front: {
  32117. height: math.unit(5 + 7/12, "feet"),
  32118. weight: math.unit(80, "kg"),
  32119. name: "Front",
  32120. image: {
  32121. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32122. extra: 3023/2865,
  32123. bottom: 33/3056
  32124. }
  32125. },
  32126. back: {
  32127. height: math.unit(5 + 7/12, "feet"),
  32128. weight: math.unit(80, "kg"),
  32129. name: "Back",
  32130. image: {
  32131. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32132. extra: 3020/2886,
  32133. bottom: 30/3050
  32134. }
  32135. },
  32136. dick: {
  32137. height: math.unit(0.98, "feet"),
  32138. name: "Dick",
  32139. image: {
  32140. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32141. }
  32142. },
  32143. anatomy: {
  32144. height: math.unit(2.86, "feet"),
  32145. name: "Anatomy",
  32146. image: {
  32147. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32148. }
  32149. },
  32150. },
  32151. [
  32152. {
  32153. name: "Really Small",
  32154. height: math.unit(2, "inches")
  32155. },
  32156. {
  32157. name: "Micro",
  32158. height: math.unit(5.583, "inches")
  32159. },
  32160. {
  32161. name: "Normal",
  32162. height: math.unit(5 + 7/12, "feet"),
  32163. default: true
  32164. },
  32165. {
  32166. name: "Macro",
  32167. height: math.unit(67, "feet")
  32168. },
  32169. {
  32170. name: "Megamacro",
  32171. height: math.unit(134, "feet")
  32172. },
  32173. ]
  32174. ))
  32175. characterMakers.push(() => makeCharacter(
  32176. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32177. {
  32178. front: {
  32179. height: math.unit(9, "feet"),
  32180. weight: math.unit(120, "lb"),
  32181. name: "Front",
  32182. image: {
  32183. source: "./media/characters/sally/front.svg",
  32184. extra: 1506/1349,
  32185. bottom: 66/1572
  32186. }
  32187. },
  32188. },
  32189. [
  32190. {
  32191. name: "Normal",
  32192. height: math.unit(9, "feet"),
  32193. default: true
  32194. },
  32195. ]
  32196. ))
  32197. characterMakers.push(() => makeCharacter(
  32198. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32199. {
  32200. front: {
  32201. height: math.unit(8, "feet"),
  32202. weight: math.unit(900, "lb"),
  32203. name: "Front",
  32204. image: {
  32205. source: "./media/characters/owen/front.svg",
  32206. extra: 1761/1657,
  32207. bottom: 74/1835
  32208. }
  32209. },
  32210. side: {
  32211. height: math.unit(8, "feet"),
  32212. weight: math.unit(900, "lb"),
  32213. name: "Side",
  32214. image: {
  32215. source: "./media/characters/owen/side.svg",
  32216. extra: 1797/1734,
  32217. bottom: 30/1827
  32218. }
  32219. },
  32220. back: {
  32221. height: math.unit(8, "feet"),
  32222. weight: math.unit(900, "lb"),
  32223. name: "Back",
  32224. image: {
  32225. source: "./media/characters/owen/back.svg",
  32226. extra: 1796/1706,
  32227. bottom: 59/1855
  32228. }
  32229. },
  32230. maw: {
  32231. height: math.unit(1.76, "feet"),
  32232. name: "Maw",
  32233. image: {
  32234. source: "./media/characters/owen/maw.svg"
  32235. }
  32236. },
  32237. },
  32238. [
  32239. {
  32240. name: "Normal",
  32241. height: math.unit(8, "feet"),
  32242. default: true
  32243. },
  32244. ]
  32245. ))
  32246. characterMakers.push(() => makeCharacter(
  32247. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32248. {
  32249. front: {
  32250. height: math.unit(4, "feet"),
  32251. weight: math.unit(400, "lb"),
  32252. name: "Front",
  32253. image: {
  32254. source: "./media/characters/ryth/front.svg",
  32255. extra: 1920/1748,
  32256. bottom: 42/1962
  32257. }
  32258. },
  32259. back: {
  32260. height: math.unit(4, "feet"),
  32261. weight: math.unit(400, "lb"),
  32262. name: "Back",
  32263. image: {
  32264. source: "./media/characters/ryth/back.svg",
  32265. extra: 1897/1690,
  32266. bottom: 89/1986
  32267. }
  32268. },
  32269. mouth: {
  32270. height: math.unit(1.39, "feet"),
  32271. name: "Mouth",
  32272. image: {
  32273. source: "./media/characters/ryth/mouth.svg"
  32274. }
  32275. },
  32276. tailmaw: {
  32277. height: math.unit(1.23, "feet"),
  32278. name: "Tailmaw",
  32279. image: {
  32280. source: "./media/characters/ryth/tailmaw.svg"
  32281. }
  32282. },
  32283. goia: {
  32284. height: math.unit(4, "meters"),
  32285. weight: math.unit(10800, "lb"),
  32286. name: "Goia",
  32287. image: {
  32288. source: "./media/characters/ryth/goia.svg",
  32289. extra: 745/640,
  32290. bottom: 107/852
  32291. }
  32292. },
  32293. goiaFront: {
  32294. height: math.unit(4, "meters"),
  32295. weight: math.unit(10800, "lb"),
  32296. name: "Goia (Front)",
  32297. image: {
  32298. source: "./media/characters/ryth/goia-front.svg",
  32299. extra: 750/586,
  32300. bottom: 114/864
  32301. }
  32302. },
  32303. goiaMaw: {
  32304. height: math.unit(5.55, "feet"),
  32305. name: "Goia Maw",
  32306. image: {
  32307. source: "./media/characters/ryth/goia-maw.svg"
  32308. }
  32309. },
  32310. goiaForepaw: {
  32311. height: math.unit(3.5, "feet"),
  32312. name: "Goia Forepaw",
  32313. image: {
  32314. source: "./media/characters/ryth/goia-forepaw.svg"
  32315. }
  32316. },
  32317. goiaHindpaw: {
  32318. height: math.unit(5.55, "feet"),
  32319. name: "Goia Hindpaw",
  32320. image: {
  32321. source: "./media/characters/ryth/goia-hindpaw.svg"
  32322. }
  32323. },
  32324. },
  32325. [
  32326. {
  32327. name: "Normal",
  32328. height: math.unit(4, "feet"),
  32329. default: true
  32330. },
  32331. ]
  32332. ))
  32333. characterMakers.push(() => makeCharacter(
  32334. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32335. {
  32336. front: {
  32337. height: math.unit(7, "feet"),
  32338. weight: math.unit(180, "lb"),
  32339. name: "Front",
  32340. image: {
  32341. source: "./media/characters/necrolance/front.svg",
  32342. extra: 1062/947,
  32343. bottom: 41/1103
  32344. }
  32345. },
  32346. back: {
  32347. height: math.unit(7, "feet"),
  32348. weight: math.unit(180, "lb"),
  32349. name: "Back",
  32350. image: {
  32351. source: "./media/characters/necrolance/back.svg",
  32352. extra: 1045/984,
  32353. bottom: 14/1059
  32354. }
  32355. },
  32356. wing: {
  32357. height: math.unit(2.67, "feet"),
  32358. name: "Wing",
  32359. image: {
  32360. source: "./media/characters/necrolance/wing.svg"
  32361. }
  32362. },
  32363. },
  32364. [
  32365. {
  32366. name: "Normal",
  32367. height: math.unit(7, "feet"),
  32368. default: true
  32369. },
  32370. ]
  32371. ))
  32372. characterMakers.push(() => makeCharacter(
  32373. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32374. {
  32375. front: {
  32376. height: math.unit(76, "meters"),
  32377. weight: math.unit(30000, "tons"),
  32378. name: "Front",
  32379. image: {
  32380. source: "./media/characters/tyler/front.svg",
  32381. extra: 1640/1640,
  32382. bottom: 114/1754
  32383. }
  32384. },
  32385. },
  32386. [
  32387. {
  32388. name: "Macro",
  32389. height: math.unit(76, "meters"),
  32390. default: true
  32391. },
  32392. ]
  32393. ))
  32394. characterMakers.push(() => makeCharacter(
  32395. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32396. {
  32397. front: {
  32398. height: math.unit(4 + 11/12, "feet"),
  32399. weight: math.unit(132, "lb"),
  32400. name: "Front",
  32401. image: {
  32402. source: "./media/characters/icey/front.svg",
  32403. extra: 2750/2550,
  32404. bottom: 33/2783
  32405. }
  32406. },
  32407. back: {
  32408. height: math.unit(4 + 11/12, "feet"),
  32409. weight: math.unit(132, "lb"),
  32410. name: "Back",
  32411. image: {
  32412. source: "./media/characters/icey/back.svg",
  32413. extra: 2624/2481,
  32414. bottom: 35/2659
  32415. }
  32416. },
  32417. },
  32418. [
  32419. {
  32420. name: "Normal",
  32421. height: math.unit(4 + 11/12, "feet"),
  32422. default: true
  32423. },
  32424. ]
  32425. ))
  32426. characterMakers.push(() => makeCharacter(
  32427. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32428. {
  32429. front: {
  32430. height: math.unit(100, "feet"),
  32431. weight: math.unit(0, "lb"),
  32432. name: "Front",
  32433. image: {
  32434. source: "./media/characters/smile/front.svg",
  32435. extra: 2983/2912,
  32436. bottom: 162/3145
  32437. }
  32438. },
  32439. back: {
  32440. height: math.unit(100, "feet"),
  32441. weight: math.unit(0, "lb"),
  32442. name: "Back",
  32443. image: {
  32444. source: "./media/characters/smile/back.svg",
  32445. extra: 3143/3031,
  32446. bottom: 91/3234
  32447. }
  32448. },
  32449. head: {
  32450. height: math.unit(26.3, "feet"),
  32451. weight: math.unit(0, "lb"),
  32452. name: "Head",
  32453. image: {
  32454. source: "./media/characters/smile/head.svg"
  32455. }
  32456. },
  32457. collar: {
  32458. height: math.unit(5.3, "feet"),
  32459. weight: math.unit(0, "lb"),
  32460. name: "Collar",
  32461. image: {
  32462. source: "./media/characters/smile/collar.svg"
  32463. }
  32464. },
  32465. },
  32466. [
  32467. {
  32468. name: "Macro",
  32469. height: math.unit(100, "feet"),
  32470. default: true
  32471. },
  32472. ]
  32473. ))
  32474. characterMakers.push(() => makeCharacter(
  32475. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32476. {
  32477. dragon: {
  32478. height: math.unit(26, "feet"),
  32479. weight: math.unit(36, "tons"),
  32480. name: "Dragon",
  32481. image: {
  32482. source: "./media/characters/arimphae/dragon.svg",
  32483. extra: 1574/983,
  32484. bottom: 357/1931
  32485. }
  32486. },
  32487. drake: {
  32488. height: math.unit(9, "feet"),
  32489. weight: math.unit(1.5, "tons"),
  32490. name: "Drake",
  32491. image: {
  32492. source: "./media/characters/arimphae/drake.svg",
  32493. extra: 1120/925,
  32494. bottom: 435/1555
  32495. }
  32496. },
  32497. },
  32498. [
  32499. {
  32500. name: "Small",
  32501. height: math.unit(26*5/9, "feet")
  32502. },
  32503. {
  32504. name: "Normal",
  32505. height: math.unit(26, "feet"),
  32506. default: true
  32507. },
  32508. ]
  32509. ))
  32510. characterMakers.push(() => makeCharacter(
  32511. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32512. {
  32513. front: {
  32514. height: math.unit(8 + 9/12, "feet"),
  32515. name: "Front",
  32516. image: {
  32517. source: "./media/characters/xander/front.svg",
  32518. extra: 1237/974,
  32519. bottom: 94/1331
  32520. }
  32521. },
  32522. },
  32523. [
  32524. {
  32525. name: "Normal",
  32526. height: math.unit(8 + 9/12, "feet"),
  32527. default: true
  32528. },
  32529. {
  32530. name: "Gaze Grabber",
  32531. height: math.unit(13 + 8/12, "feet")
  32532. },
  32533. {
  32534. name: "Jaw Dropper",
  32535. height: math.unit(27, "feet")
  32536. },
  32537. {
  32538. name: "Show Stopper",
  32539. height: math.unit(136, "feet")
  32540. },
  32541. {
  32542. name: "Superstar",
  32543. height: math.unit(1.9e6, "miles")
  32544. },
  32545. ]
  32546. ))
  32547. characterMakers.push(() => makeCharacter(
  32548. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32549. {
  32550. side: {
  32551. height: math.unit(2100, "feet"),
  32552. name: "Side",
  32553. image: {
  32554. source: "./media/characters/osiris/side.svg",
  32555. extra: 1105/939,
  32556. bottom: 167/1272
  32557. }
  32558. },
  32559. },
  32560. [
  32561. {
  32562. name: "Macro",
  32563. height: math.unit(2100, "feet"),
  32564. default: true
  32565. },
  32566. ]
  32567. ))
  32568. characterMakers.push(() => makeCharacter(
  32569. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32570. {
  32571. front: {
  32572. height: math.unit(6 + 8/12, "feet"),
  32573. weight: math.unit(225, "lb"),
  32574. name: "Front",
  32575. image: {
  32576. source: "./media/characters/rhys-londe/front.svg",
  32577. extra: 2258/2141,
  32578. bottom: 188/2446
  32579. }
  32580. },
  32581. back: {
  32582. height: math.unit(6 + 8/12, "feet"),
  32583. weight: math.unit(225, "lb"),
  32584. name: "Back",
  32585. image: {
  32586. source: "./media/characters/rhys-londe/back.svg",
  32587. extra: 2237/2137,
  32588. bottom: 63/2300
  32589. }
  32590. },
  32591. frontNsfw: {
  32592. height: math.unit(6 + 8/12, "feet"),
  32593. weight: math.unit(225, "lb"),
  32594. name: "Front (NSFW)",
  32595. image: {
  32596. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32597. extra: 2258/2141,
  32598. bottom: 188/2446
  32599. }
  32600. },
  32601. backNsfw: {
  32602. height: math.unit(6 + 8/12, "feet"),
  32603. weight: math.unit(225, "lb"),
  32604. name: "Back (NSFW)",
  32605. image: {
  32606. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32607. extra: 2237/2137,
  32608. bottom: 63/2300
  32609. }
  32610. },
  32611. dick: {
  32612. height: math.unit(30, "inches"),
  32613. name: "Dick",
  32614. image: {
  32615. source: "./media/characters/rhys-londe/dick.svg"
  32616. }
  32617. },
  32618. maw: {
  32619. height: math.unit(1.6, "feet"),
  32620. name: "Maw",
  32621. image: {
  32622. source: "./media/characters/rhys-londe/maw.svg"
  32623. }
  32624. },
  32625. },
  32626. [
  32627. {
  32628. name: "Normal",
  32629. height: math.unit(6 + 8/12, "feet"),
  32630. default: true
  32631. },
  32632. ]
  32633. ))
  32634. characterMakers.push(() => makeCharacter(
  32635. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32636. {
  32637. front: {
  32638. height: math.unit(3 + 10/12, "feet"),
  32639. weight: math.unit(90, "lb"),
  32640. name: "Front",
  32641. image: {
  32642. source: "./media/characters/taivas-ensim/front.svg",
  32643. extra: 1327/1216,
  32644. bottom: 96/1423
  32645. }
  32646. },
  32647. back: {
  32648. height: math.unit(3 + 10/12, "feet"),
  32649. weight: math.unit(90, "lb"),
  32650. name: "Back",
  32651. image: {
  32652. source: "./media/characters/taivas-ensim/back.svg",
  32653. extra: 1355/1247,
  32654. bottom: 11/1366
  32655. }
  32656. },
  32657. frontNsfw: {
  32658. height: math.unit(3 + 10/12, "feet"),
  32659. weight: math.unit(90, "lb"),
  32660. name: "Front (NSFW)",
  32661. image: {
  32662. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32663. extra: 1327/1216,
  32664. bottom: 96/1423
  32665. }
  32666. },
  32667. backNsfw: {
  32668. height: math.unit(3 + 10/12, "feet"),
  32669. weight: math.unit(90, "lb"),
  32670. name: "Back (NSFW)",
  32671. image: {
  32672. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32673. extra: 1355/1247,
  32674. bottom: 11/1366
  32675. }
  32676. },
  32677. },
  32678. [
  32679. {
  32680. name: "Normal",
  32681. height: math.unit(3 + 10/12, "feet"),
  32682. default: true
  32683. },
  32684. ]
  32685. ))
  32686. characterMakers.push(() => makeCharacter(
  32687. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32688. {
  32689. front: {
  32690. height: math.unit(9 + 6/12, "feet"),
  32691. weight: math.unit(940, "lb"),
  32692. name: "Front",
  32693. image: {
  32694. source: "./media/characters/byliss/front.svg",
  32695. extra: 1327/1290,
  32696. bottom: 82/1409
  32697. }
  32698. },
  32699. back: {
  32700. height: math.unit(9 + 6/12, "feet"),
  32701. weight: math.unit(940, "lb"),
  32702. name: "Back",
  32703. image: {
  32704. source: "./media/characters/byliss/back.svg",
  32705. extra: 1376/1349,
  32706. bottom: 9/1385
  32707. }
  32708. },
  32709. frontNsfw: {
  32710. height: math.unit(9 + 6/12, "feet"),
  32711. weight: math.unit(940, "lb"),
  32712. name: "Front (NSFW)",
  32713. image: {
  32714. source: "./media/characters/byliss/front-nsfw.svg",
  32715. extra: 1327/1290,
  32716. bottom: 82/1409
  32717. }
  32718. },
  32719. backNsfw: {
  32720. height: math.unit(9 + 6/12, "feet"),
  32721. weight: math.unit(940, "lb"),
  32722. name: "Back (NSFW)",
  32723. image: {
  32724. source: "./media/characters/byliss/back-nsfw.svg",
  32725. extra: 1376/1349,
  32726. bottom: 9/1385
  32727. }
  32728. },
  32729. },
  32730. [
  32731. {
  32732. name: "Normal",
  32733. height: math.unit(9 + 6/12, "feet"),
  32734. default: true
  32735. },
  32736. ]
  32737. ))
  32738. characterMakers.push(() => makeCharacter(
  32739. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32740. {
  32741. front: {
  32742. height: math.unit(5 + 2/12, "feet"),
  32743. weight: math.unit(200, "lb"),
  32744. name: "Front",
  32745. image: {
  32746. source: "./media/characters/noraly/front.svg",
  32747. extra: 4985/4773,
  32748. bottom: 150/5135
  32749. }
  32750. },
  32751. full: {
  32752. height: math.unit(5 + 2/12, "feet"),
  32753. weight: math.unit(164, "lb"),
  32754. name: "Full",
  32755. image: {
  32756. source: "./media/characters/noraly/full.svg",
  32757. extra: 1114/1059,
  32758. bottom: 35/1149
  32759. }
  32760. },
  32761. fuller: {
  32762. height: math.unit(5 + 2/12, "feet"),
  32763. weight: math.unit(230, "lb"),
  32764. name: "Fuller",
  32765. image: {
  32766. source: "./media/characters/noraly/fuller.svg",
  32767. extra: 1114/1059,
  32768. bottom: 35/1149
  32769. }
  32770. },
  32771. fullest: {
  32772. height: math.unit(5 + 2/12, "feet"),
  32773. weight: math.unit(300, "lb"),
  32774. name: "Fullest",
  32775. image: {
  32776. source: "./media/characters/noraly/fullest.svg",
  32777. extra: 1114/1059,
  32778. bottom: 35/1149
  32779. }
  32780. },
  32781. },
  32782. [
  32783. {
  32784. name: "Normal",
  32785. height: math.unit(5 + 2/12, "feet"),
  32786. default: true
  32787. },
  32788. ]
  32789. ))
  32790. characterMakers.push(() => makeCharacter(
  32791. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32792. {
  32793. front: {
  32794. height: math.unit(5 + 2/12, "feet"),
  32795. weight: math.unit(210, "lb"),
  32796. name: "Front",
  32797. image: {
  32798. source: "./media/characters/pera/front.svg",
  32799. extra: 1560/1531,
  32800. bottom: 165/1725
  32801. }
  32802. },
  32803. back: {
  32804. height: math.unit(5 + 2/12, "feet"),
  32805. weight: math.unit(210, "lb"),
  32806. name: "Back",
  32807. image: {
  32808. source: "./media/characters/pera/back.svg",
  32809. extra: 1523/1493,
  32810. bottom: 152/1675
  32811. }
  32812. },
  32813. dick: {
  32814. height: math.unit(2.4, "feet"),
  32815. name: "Dick",
  32816. image: {
  32817. source: "./media/characters/pera/dick.svg"
  32818. }
  32819. },
  32820. },
  32821. [
  32822. {
  32823. name: "Normal",
  32824. height: math.unit(5 + 2/12, "feet"),
  32825. default: true
  32826. },
  32827. ]
  32828. ))
  32829. characterMakers.push(() => makeCharacter(
  32830. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32831. {
  32832. front: {
  32833. height: math.unit(12, "feet"),
  32834. weight: math.unit(3200, "lb"),
  32835. name: "Front",
  32836. image: {
  32837. source: "./media/characters/julian/front.svg",
  32838. extra: 2962/2701,
  32839. bottom: 184/3146
  32840. }
  32841. },
  32842. maw: {
  32843. height: math.unit(5.35, "feet"),
  32844. name: "Maw",
  32845. image: {
  32846. source: "./media/characters/julian/maw.svg"
  32847. }
  32848. },
  32849. paw: {
  32850. height: math.unit(3.07, "feet"),
  32851. name: "Paw",
  32852. image: {
  32853. source: "./media/characters/julian/paw.svg"
  32854. }
  32855. },
  32856. },
  32857. [
  32858. {
  32859. name: "Default",
  32860. height: math.unit(12, "feet"),
  32861. default: true
  32862. },
  32863. {
  32864. name: "Big",
  32865. height: math.unit(50, "feet")
  32866. },
  32867. {
  32868. name: "Really Big",
  32869. height: math.unit(1, "mile")
  32870. },
  32871. {
  32872. name: "Extremely Big",
  32873. height: math.unit(100, "miles")
  32874. },
  32875. {
  32876. name: "Planet Hugger",
  32877. height: math.unit(200, "megameters")
  32878. },
  32879. {
  32880. name: "Unreasonably Big",
  32881. height: math.unit(1e300, "meters")
  32882. },
  32883. ]
  32884. ))
  32885. characterMakers.push(() => makeCharacter(
  32886. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32887. {
  32888. solgooleo: {
  32889. height: math.unit(4, "meters"),
  32890. weight: math.unit(6000*1.5, "kg"),
  32891. volume: math.unit(6000, "liters"),
  32892. name: "Solgooleo",
  32893. image: {
  32894. source: "./media/characters/pi/solgooleo.svg",
  32895. extra: 388/331,
  32896. bottom: 29/417
  32897. }
  32898. },
  32899. },
  32900. [
  32901. {
  32902. name: "Normal",
  32903. height: math.unit(4, "meters"),
  32904. default: true
  32905. },
  32906. ]
  32907. ))
  32908. characterMakers.push(() => makeCharacter(
  32909. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32910. {
  32911. front: {
  32912. height: math.unit(8, "feet"),
  32913. weight: math.unit(4, "tons"),
  32914. name: "Front",
  32915. image: {
  32916. source: "./media/characters/shaun/front.svg",
  32917. extra: 503/495,
  32918. bottom: 20/523
  32919. }
  32920. },
  32921. back: {
  32922. height: math.unit(8, "feet"),
  32923. weight: math.unit(4, "tons"),
  32924. name: "Back",
  32925. image: {
  32926. source: "./media/characters/shaun/back.svg",
  32927. extra: 487/480,
  32928. bottom: 20/507
  32929. }
  32930. },
  32931. },
  32932. [
  32933. {
  32934. name: "Lorg",
  32935. height: math.unit(8, "feet"),
  32936. default: true
  32937. },
  32938. ]
  32939. ))
  32940. characterMakers.push(() => makeCharacter(
  32941. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32942. {
  32943. front: {
  32944. height: math.unit(7, "feet"),
  32945. name: "Front",
  32946. image: {
  32947. source: "./media/characters/sini/front.svg",
  32948. extra: 726/678,
  32949. bottom: 35/761
  32950. }
  32951. },
  32952. back: {
  32953. height: math.unit(7, "feet"),
  32954. name: "Back",
  32955. image: {
  32956. source: "./media/characters/sini/back.svg",
  32957. extra: 743/701,
  32958. bottom: 12/755
  32959. }
  32960. },
  32961. mawAnthro: {
  32962. height: math.unit(2.14, "feet"),
  32963. name: "Maw (Anthro)",
  32964. image: {
  32965. source: "./media/characters/sini/maw-anthro.svg"
  32966. }
  32967. },
  32968. dick: {
  32969. height: math.unit(1.45, "feet"),
  32970. name: "Dick (Anthro)",
  32971. image: {
  32972. source: "./media/characters/sini/dick-anthro.svg"
  32973. }
  32974. },
  32975. feral: {
  32976. height: math.unit(16, "feet"),
  32977. name: "Feral",
  32978. image: {
  32979. source: "./media/characters/sini/feral.svg",
  32980. extra: 814/605,
  32981. bottom: 11/825
  32982. }
  32983. },
  32984. mawFeral: {
  32985. height: math.unit(5.66, "feet"),
  32986. name: "Maw-feral",
  32987. image: {
  32988. source: "./media/characters/sini/maw-feral.svg"
  32989. }
  32990. },
  32991. footFeral: {
  32992. height: math.unit(5.17, "feet"),
  32993. name: "Foot-feral",
  32994. image: {
  32995. source: "./media/characters/sini/foot-feral.svg"
  32996. }
  32997. },
  32998. },
  32999. [
  33000. {
  33001. name: "Normal",
  33002. height: math.unit(7, "feet"),
  33003. default: true
  33004. },
  33005. ]
  33006. ))
  33007. characterMakers.push(() => makeCharacter(
  33008. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33009. {
  33010. side: {
  33011. height: math.unit(13, "meters"),
  33012. weight: math.unit(9072, "kg"),
  33013. name: "Side",
  33014. image: {
  33015. source: "./media/characters/raylldo/side.svg",
  33016. extra: 403/344,
  33017. bottom: 42/445
  33018. }
  33019. },
  33020. leaping: {
  33021. height: math.unit(12.3, "meters"),
  33022. weight: math.unit(9072, "kg"),
  33023. name: "Leaping",
  33024. image: {
  33025. source: "./media/characters/raylldo/leaping.svg",
  33026. extra: 470/249,
  33027. bottom: 13/483
  33028. }
  33029. },
  33030. flying: {
  33031. height: math.unit(18, "meters"),
  33032. weight: math.unit(9072, "kg"),
  33033. name: "Flying",
  33034. image: {
  33035. source: "./media/characters/raylldo/flying.svg"
  33036. }
  33037. },
  33038. head: {
  33039. height: math.unit(5.85, "meters"),
  33040. name: "Head",
  33041. image: {
  33042. source: "./media/characters/raylldo/head.svg"
  33043. }
  33044. },
  33045. maw: {
  33046. height: math.unit(5.32, "meters"),
  33047. name: "Maw",
  33048. image: {
  33049. source: "./media/characters/raylldo/maw.svg"
  33050. }
  33051. },
  33052. eye: {
  33053. height: math.unit(0.54, "meters"),
  33054. name: "Eye",
  33055. image: {
  33056. source: "./media/characters/raylldo/eye.svg"
  33057. }
  33058. },
  33059. },
  33060. [
  33061. {
  33062. name: "Normal",
  33063. height: math.unit(13, "meters"),
  33064. default: true
  33065. },
  33066. ]
  33067. ))
  33068. characterMakers.push(() => makeCharacter(
  33069. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33070. {
  33071. anthroFront: {
  33072. height: math.unit(9, "feet"),
  33073. weight: math.unit(600, "lb"),
  33074. name: "Anthro (Front)",
  33075. image: {
  33076. source: "./media/characters/glint/anthro-front.svg",
  33077. extra: 1097/1018,
  33078. bottom: 28/1125
  33079. }
  33080. },
  33081. anthroBack: {
  33082. height: math.unit(9, "feet"),
  33083. weight: math.unit(600, "lb"),
  33084. name: "Anthro (Back)",
  33085. image: {
  33086. source: "./media/characters/glint/anthro-back.svg",
  33087. extra: 1154/997,
  33088. bottom: 36/1190
  33089. }
  33090. },
  33091. feral: {
  33092. height: math.unit(11, "feet"),
  33093. weight: math.unit(50000, "lb"),
  33094. name: "Feral",
  33095. image: {
  33096. source: "./media/characters/glint/feral.svg",
  33097. extra: 3035/1585,
  33098. bottom: 1169/4204
  33099. }
  33100. },
  33101. dickAnthro: {
  33102. height: math.unit(0.7, "meters"),
  33103. name: "Dick (Anthro)",
  33104. image: {
  33105. source: "./media/characters/glint/dick-anthro.svg"
  33106. }
  33107. },
  33108. dickFeral: {
  33109. height: math.unit(2.65, "meters"),
  33110. name: "Dick (Feral)",
  33111. image: {
  33112. source: "./media/characters/glint/dick-feral.svg"
  33113. }
  33114. },
  33115. slitHidden: {
  33116. height: math.unit(5.85, "meters"),
  33117. name: "Slit (Hidden)",
  33118. image: {
  33119. source: "./media/characters/glint/slit-hidden.svg"
  33120. }
  33121. },
  33122. slitErect: {
  33123. height: math.unit(5.85, "meters"),
  33124. name: "Slit (Erect)",
  33125. image: {
  33126. source: "./media/characters/glint/slit-erect.svg"
  33127. }
  33128. },
  33129. mawAnthro: {
  33130. height: math.unit(0.63, "meters"),
  33131. name: "Maw (Anthro)",
  33132. image: {
  33133. source: "./media/characters/glint/maw.svg"
  33134. }
  33135. },
  33136. mawFeral: {
  33137. height: math.unit(2.89, "meters"),
  33138. name: "Maw (Feral)",
  33139. image: {
  33140. source: "./media/characters/glint/maw.svg"
  33141. }
  33142. },
  33143. },
  33144. [
  33145. {
  33146. name: "Normal",
  33147. height: math.unit(9, "feet"),
  33148. default: true
  33149. },
  33150. ]
  33151. ))
  33152. characterMakers.push(() => makeCharacter(
  33153. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33154. {
  33155. side: {
  33156. height: math.unit(15, "feet"),
  33157. weight: math.unit(5000, "kg"),
  33158. name: "Side",
  33159. image: {
  33160. source: "./media/characters/kairne/side.svg",
  33161. extra: 979/811,
  33162. bottom: 13/992
  33163. }
  33164. },
  33165. front: {
  33166. height: math.unit(15, "feet"),
  33167. weight: math.unit(5000, "kg"),
  33168. name: "Front",
  33169. image: {
  33170. source: "./media/characters/kairne/front.svg",
  33171. extra: 908/814,
  33172. bottom: 26/934
  33173. }
  33174. },
  33175. sideNsfw: {
  33176. height: math.unit(15, "feet"),
  33177. weight: math.unit(5000, "kg"),
  33178. name: "Side (NSFW)",
  33179. image: {
  33180. source: "./media/characters/kairne/side-nsfw.svg",
  33181. extra: 979/811,
  33182. bottom: 13/992
  33183. }
  33184. },
  33185. frontNsfw: {
  33186. height: math.unit(15, "feet"),
  33187. weight: math.unit(5000, "kg"),
  33188. name: "Front (NSFW)",
  33189. image: {
  33190. source: "./media/characters/kairne/front-nsfw.svg",
  33191. extra: 908/814,
  33192. bottom: 26/934
  33193. }
  33194. },
  33195. dickCaged: {
  33196. height: math.unit(0.65, "meters"),
  33197. name: "Dick-caged",
  33198. image: {
  33199. source: "./media/characters/kairne/dick-caged.svg"
  33200. }
  33201. },
  33202. dick: {
  33203. height: math.unit(0.79, "meters"),
  33204. name: "Dick",
  33205. image: {
  33206. source: "./media/characters/kairne/dick.svg"
  33207. }
  33208. },
  33209. genitals: {
  33210. height: math.unit(1.29, "meters"),
  33211. name: "Genitals",
  33212. image: {
  33213. source: "./media/characters/kairne/genitals.svg"
  33214. }
  33215. },
  33216. maw: {
  33217. height: math.unit(1.73, "meters"),
  33218. name: "Maw",
  33219. image: {
  33220. source: "./media/characters/kairne/maw.svg"
  33221. }
  33222. },
  33223. },
  33224. [
  33225. {
  33226. name: "Normal",
  33227. height: math.unit(15, "feet"),
  33228. default: true
  33229. },
  33230. ]
  33231. ))
  33232. characterMakers.push(() => makeCharacter(
  33233. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33234. {
  33235. front: {
  33236. height: math.unit(5 + 8/12, "feet"),
  33237. weight: math.unit(139, "lb"),
  33238. name: "Front",
  33239. image: {
  33240. source: "./media/characters/biscuit-jackal/front.svg",
  33241. extra: 2106/1961,
  33242. bottom: 58/2164
  33243. }
  33244. },
  33245. back: {
  33246. height: math.unit(5 + 8/12, "feet"),
  33247. weight: math.unit(139, "lb"),
  33248. name: "Back",
  33249. image: {
  33250. source: "./media/characters/biscuit-jackal/back.svg",
  33251. extra: 2132/1976,
  33252. bottom: 57/2189
  33253. }
  33254. },
  33255. werejackal: {
  33256. height: math.unit(6 + 3/12, "feet"),
  33257. weight: math.unit(188, "lb"),
  33258. name: "Werejackal",
  33259. image: {
  33260. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33261. extra: 2373/2178,
  33262. bottom: 53/2426
  33263. }
  33264. },
  33265. },
  33266. [
  33267. {
  33268. name: "Normal",
  33269. height: math.unit(5 + 8/12, "feet"),
  33270. default: true
  33271. },
  33272. ]
  33273. ))
  33274. characterMakers.push(() => makeCharacter(
  33275. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33276. {
  33277. front: {
  33278. height: math.unit(140, "cm"),
  33279. weight: math.unit(45, "kg"),
  33280. name: "Front",
  33281. image: {
  33282. source: "./media/characters/tayra-white/front.svg",
  33283. extra: 2229/2192,
  33284. bottom: 75/2304
  33285. }
  33286. },
  33287. },
  33288. [
  33289. {
  33290. name: "Normal",
  33291. height: math.unit(140, "cm"),
  33292. default: true
  33293. },
  33294. ]
  33295. ))
  33296. characterMakers.push(() => makeCharacter(
  33297. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33298. {
  33299. front: {
  33300. height: math.unit(4 + 5/12, "feet"),
  33301. name: "Front",
  33302. image: {
  33303. source: "./media/characters/scoop/front.svg",
  33304. extra: 1257/1136,
  33305. bottom: 69/1326
  33306. }
  33307. },
  33308. back: {
  33309. height: math.unit(4 + 5/12, "feet"),
  33310. name: "Back",
  33311. image: {
  33312. source: "./media/characters/scoop/back.svg",
  33313. extra: 1321/1152,
  33314. bottom: 32/1353
  33315. }
  33316. },
  33317. maw: {
  33318. height: math.unit(0.68, "feet"),
  33319. name: "Maw",
  33320. image: {
  33321. source: "./media/characters/scoop/maw.svg"
  33322. }
  33323. },
  33324. },
  33325. [
  33326. {
  33327. name: "Really Small",
  33328. height: math.unit(1, "mm")
  33329. },
  33330. {
  33331. name: "Micro",
  33332. height: math.unit(1, "inch")
  33333. },
  33334. {
  33335. name: "Normal",
  33336. height: math.unit(4 + 5/12, "feet"),
  33337. default: true
  33338. },
  33339. {
  33340. name: "Macro",
  33341. height: math.unit(200, "feet")
  33342. },
  33343. {
  33344. name: "Megamacro",
  33345. height: math.unit(3240, "feet")
  33346. },
  33347. {
  33348. name: "Teramacro",
  33349. height: math.unit(2500, "miles")
  33350. },
  33351. ]
  33352. ))
  33353. characterMakers.push(() => makeCharacter(
  33354. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33355. {
  33356. front: {
  33357. height: math.unit(15 + 7/12, "feet"),
  33358. name: "Front",
  33359. image: {
  33360. source: "./media/characters/saphinara/front.svg",
  33361. extra: 604/546,
  33362. bottom: 19/623
  33363. }
  33364. },
  33365. side: {
  33366. height: math.unit(15 + 7/12, "feet"),
  33367. name: "Side",
  33368. image: {
  33369. source: "./media/characters/saphinara/side.svg",
  33370. extra: 605/547,
  33371. bottom: 6/611
  33372. }
  33373. },
  33374. back: {
  33375. height: math.unit(15 + 7/12, "feet"),
  33376. name: "Back",
  33377. image: {
  33378. source: "./media/characters/saphinara/back.svg",
  33379. extra: 591/531,
  33380. bottom: 13/604
  33381. }
  33382. },
  33383. frontTail: {
  33384. height: math.unit(15 + 7/12, "feet"),
  33385. name: "Front (Full Tail)",
  33386. image: {
  33387. source: "./media/characters/saphinara/front-tail.svg",
  33388. extra: 748/547,
  33389. bottom: 66/814
  33390. }
  33391. },
  33392. },
  33393. [
  33394. {
  33395. name: "Normal",
  33396. height: math.unit(15 + 7/12, "feet"),
  33397. default: true
  33398. },
  33399. {
  33400. name: "Angry",
  33401. height: math.unit(30 + 6/12, "feet")
  33402. },
  33403. {
  33404. name: "Enraged",
  33405. height: math.unit(102 + 1/12, "feet")
  33406. },
  33407. ]
  33408. ))
  33409. characterMakers.push(() => makeCharacter(
  33410. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33411. {
  33412. front: {
  33413. height: math.unit(6 + 8/12, "feet"),
  33414. weight: math.unit(300, "lb"),
  33415. name: "Front",
  33416. image: {
  33417. source: "./media/characters/jrain/front.svg",
  33418. extra: 3039/2865,
  33419. bottom: 399/3438
  33420. }
  33421. },
  33422. back: {
  33423. height: math.unit(6 + 8/12, "feet"),
  33424. weight: math.unit(300, "lb"),
  33425. name: "Back",
  33426. image: {
  33427. source: "./media/characters/jrain/back.svg",
  33428. extra: 3089/2938,
  33429. bottom: 172/3261
  33430. }
  33431. },
  33432. head: {
  33433. height: math.unit(2.14, "feet"),
  33434. name: "Head",
  33435. image: {
  33436. source: "./media/characters/jrain/head.svg"
  33437. }
  33438. },
  33439. maw: {
  33440. height: math.unit(1.77, "feet"),
  33441. name: "Maw",
  33442. image: {
  33443. source: "./media/characters/jrain/maw.svg"
  33444. }
  33445. },
  33446. leftHand: {
  33447. height: math.unit(1.1, "feet"),
  33448. name: "Left Hand",
  33449. image: {
  33450. source: "./media/characters/jrain/left-hand.svg"
  33451. }
  33452. },
  33453. rightHand: {
  33454. height: math.unit(1.1, "feet"),
  33455. name: "Right Hand",
  33456. image: {
  33457. source: "./media/characters/jrain/right-hand.svg"
  33458. }
  33459. },
  33460. eye: {
  33461. height: math.unit(0.35, "feet"),
  33462. name: "Eye",
  33463. image: {
  33464. source: "./media/characters/jrain/eye.svg"
  33465. }
  33466. },
  33467. },
  33468. [
  33469. {
  33470. name: "Normal",
  33471. height: math.unit(6 + 8/12, "feet"),
  33472. default: true
  33473. },
  33474. {
  33475. name: "Casually Large",
  33476. height: math.unit(25, "feet")
  33477. },
  33478. {
  33479. name: "Giant",
  33480. height: math.unit(100, "feet")
  33481. },
  33482. {
  33483. name: "Kaiju",
  33484. height: math.unit(300, "feet")
  33485. },
  33486. ]
  33487. ))
  33488. characterMakers.push(() => makeCharacter(
  33489. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33490. {
  33491. dragon: {
  33492. height: math.unit(5, "meters"),
  33493. name: "Dragon",
  33494. image: {
  33495. source: "./media/characters/sabrina/dragon.svg",
  33496. extra: 3670 / 2365,
  33497. bottom: 333 / 4003
  33498. }
  33499. },
  33500. gryphon: {
  33501. height: math.unit(3, "meters"),
  33502. name: "Gryphon",
  33503. image: {
  33504. source: "./media/characters/sabrina/gryphon.svg",
  33505. extra: 1576 / 945,
  33506. bottom: 71 / 1647
  33507. }
  33508. },
  33509. snake: {
  33510. height: math.unit(12, "meters"),
  33511. name: "Snake",
  33512. image: {
  33513. source: "./media/characters/sabrina/snake.svg",
  33514. extra: 1758 / 1320,
  33515. bottom: 186 / 1944
  33516. }
  33517. },
  33518. collar: {
  33519. height: math.unit(1.86, "meters"),
  33520. name: "Collar",
  33521. image: {
  33522. source: "./media/characters/sabrina/collar.svg"
  33523. }
  33524. },
  33525. eye: {
  33526. height: math.unit(0.53, "meters"),
  33527. name: "Eye",
  33528. image: {
  33529. source: "./media/characters/sabrina/eye.svg"
  33530. }
  33531. },
  33532. foot: {
  33533. height: math.unit(1.86, "meters"),
  33534. name: "Foot",
  33535. image: {
  33536. source: "./media/characters/sabrina/foot.svg"
  33537. }
  33538. },
  33539. hand: {
  33540. height: math.unit(1.32, "meters"),
  33541. name: "Hand",
  33542. image: {
  33543. source: "./media/characters/sabrina/hand.svg"
  33544. }
  33545. },
  33546. head: {
  33547. height: math.unit(2.44, "meters"),
  33548. name: "Head",
  33549. image: {
  33550. source: "./media/characters/sabrina/head.svg"
  33551. }
  33552. },
  33553. headAngry: {
  33554. height: math.unit(2.44, "meters"),
  33555. name: "Head (Angry))",
  33556. image: {
  33557. source: "./media/characters/sabrina/head-angry.svg"
  33558. }
  33559. },
  33560. maw: {
  33561. height: math.unit(1.65, "meters"),
  33562. name: "Maw",
  33563. image: {
  33564. source: "./media/characters/sabrina/maw.svg"
  33565. }
  33566. },
  33567. spikes: {
  33568. height: math.unit(1.69, "meters"),
  33569. name: "Spikes",
  33570. image: {
  33571. source: "./media/characters/sabrina/spikes.svg"
  33572. }
  33573. },
  33574. stomach: {
  33575. height: math.unit(1.15, "meters"),
  33576. name: "Stomach",
  33577. image: {
  33578. source: "./media/characters/sabrina/stomach.svg"
  33579. }
  33580. },
  33581. tongue: {
  33582. height: math.unit(1.27, "meters"),
  33583. name: "Tongue",
  33584. image: {
  33585. source: "./media/characters/sabrina/tongue.svg"
  33586. }
  33587. },
  33588. wingDorsal: {
  33589. height: math.unit(4.85, "meters"),
  33590. name: "Wing (Dorsal)",
  33591. image: {
  33592. source: "./media/characters/sabrina/wing-dorsal.svg"
  33593. }
  33594. },
  33595. wingVentral: {
  33596. height: math.unit(4.85, "meters"),
  33597. name: "Wing (Ventral)",
  33598. image: {
  33599. source: "./media/characters/sabrina/wing-ventral.svg"
  33600. }
  33601. },
  33602. },
  33603. [
  33604. {
  33605. name: "Normal",
  33606. height: math.unit(5, "meters"),
  33607. default: true
  33608. },
  33609. ]
  33610. ))
  33611. characterMakers.push(() => makeCharacter(
  33612. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33613. {
  33614. frontMaid: {
  33615. height: math.unit(5 + 5/12, "feet"),
  33616. weight: math.unit(130, "lb"),
  33617. name: "Front (Maid)",
  33618. image: {
  33619. source: "./media/characters/midnight-tales/front-maid.svg",
  33620. extra: 489/454,
  33621. bottom: 61/550
  33622. }
  33623. },
  33624. frontFormal: {
  33625. height: math.unit(5 + 5/12, "feet"),
  33626. weight: math.unit(130, "lb"),
  33627. name: "Front (Formal)",
  33628. image: {
  33629. source: "./media/characters/midnight-tales/front-formal.svg",
  33630. extra: 489/454,
  33631. bottom: 61/550
  33632. }
  33633. },
  33634. back: {
  33635. height: math.unit(5 + 5/12, "feet"),
  33636. weight: math.unit(130, "lb"),
  33637. name: "Back",
  33638. image: {
  33639. source: "./media/characters/midnight-tales/back.svg",
  33640. extra: 498/456,
  33641. bottom: 33/531
  33642. }
  33643. },
  33644. frontBeast: {
  33645. height: math.unit(40, "feet"),
  33646. weight: math.unit(64000, "lb"),
  33647. name: "Front (Beast)",
  33648. image: {
  33649. source: "./media/characters/midnight-tales/front-beast.svg",
  33650. extra: 927/860,
  33651. bottom: 53/980
  33652. }
  33653. },
  33654. backBeast: {
  33655. height: math.unit(40, "feet"),
  33656. weight: math.unit(64000, "lb"),
  33657. name: "Back (Beast)",
  33658. image: {
  33659. source: "./media/characters/midnight-tales/back-beast.svg",
  33660. extra: 929/855,
  33661. bottom: 16/945
  33662. }
  33663. },
  33664. footBeast: {
  33665. height: math.unit(6.7, "feet"),
  33666. name: "Foot (Beast)",
  33667. image: {
  33668. source: "./media/characters/midnight-tales/foot-beast.svg"
  33669. }
  33670. },
  33671. headBeast: {
  33672. height: math.unit(8, "feet"),
  33673. name: "Head (Beast)",
  33674. image: {
  33675. source: "./media/characters/midnight-tales/head-beast.svg"
  33676. }
  33677. },
  33678. },
  33679. [
  33680. {
  33681. name: "Normal",
  33682. height: math.unit(5 + 5 / 12, "feet"),
  33683. default: true
  33684. },
  33685. {
  33686. name: "Macro",
  33687. height: math.unit(25, "feet")
  33688. },
  33689. ]
  33690. ))
  33691. characterMakers.push(() => makeCharacter(
  33692. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33693. {
  33694. front: {
  33695. height: math.unit(5 + 10/12, "feet"),
  33696. name: "Front",
  33697. image: {
  33698. source: "./media/characters/argon/front.svg",
  33699. extra: 2009/1935,
  33700. bottom: 118/2127
  33701. }
  33702. },
  33703. back: {
  33704. height: math.unit(5 + 10/12, "feet"),
  33705. name: "Back",
  33706. image: {
  33707. source: "./media/characters/argon/back.svg",
  33708. extra: 2047/1992,
  33709. bottom: 20/2067
  33710. }
  33711. },
  33712. frontDressed: {
  33713. height: math.unit(5 + 10/12, "feet"),
  33714. name: "Front (Dressed)",
  33715. image: {
  33716. source: "./media/characters/argon/front-dressed.svg",
  33717. extra: 2009/1935,
  33718. bottom: 118/2127
  33719. }
  33720. },
  33721. },
  33722. [
  33723. {
  33724. name: "Normal",
  33725. height: math.unit(5 + 10/12, "feet"),
  33726. default: true
  33727. },
  33728. ]
  33729. ))
  33730. characterMakers.push(() => makeCharacter(
  33731. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33732. {
  33733. front: {
  33734. height: math.unit(8 + 6/12, "feet"),
  33735. weight: math.unit(1150, "lb"),
  33736. name: "Front",
  33737. image: {
  33738. source: "./media/characters/kichi/front.svg",
  33739. extra: 1267/1164,
  33740. bottom: 61/1328
  33741. }
  33742. },
  33743. back: {
  33744. height: math.unit(8 + 6/12, "feet"),
  33745. weight: math.unit(1150, "lb"),
  33746. name: "Back",
  33747. image: {
  33748. source: "./media/characters/kichi/back.svg",
  33749. extra: 1273/1166,
  33750. bottom: 33/1306
  33751. }
  33752. },
  33753. },
  33754. [
  33755. {
  33756. name: "Normal",
  33757. height: math.unit(8 + 6/12, "feet"),
  33758. default: true
  33759. },
  33760. ]
  33761. ))
  33762. characterMakers.push(() => makeCharacter(
  33763. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33764. {
  33765. front: {
  33766. height: math.unit(6, "feet"),
  33767. weight: math.unit(210, "lb"),
  33768. name: "Front",
  33769. image: {
  33770. source: "./media/characters/manetel-greyscale/front.svg",
  33771. extra: 350/312,
  33772. bottom: 8/358
  33773. }
  33774. },
  33775. },
  33776. [
  33777. {
  33778. name: "Micro",
  33779. height: math.unit(2, "inches")
  33780. },
  33781. {
  33782. name: "Normal",
  33783. height: math.unit(6, "feet"),
  33784. default: true
  33785. },
  33786. {
  33787. name: "Minimacro",
  33788. height: math.unit(17, "feet")
  33789. },
  33790. {
  33791. name: "Macro",
  33792. height: math.unit(117, "feet")
  33793. },
  33794. ]
  33795. ))
  33796. characterMakers.push(() => makeCharacter(
  33797. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33798. {
  33799. side: {
  33800. height: math.unit(5 + 1/12, "feet"),
  33801. weight: math.unit(418, "lb"),
  33802. name: "Side",
  33803. image: {
  33804. source: "./media/characters/softpurr/side.svg",
  33805. extra: 1993/1945,
  33806. bottom: 134/2127
  33807. }
  33808. },
  33809. front: {
  33810. height: math.unit(5 + 1/12, "feet"),
  33811. weight: math.unit(418, "lb"),
  33812. name: "Front",
  33813. image: {
  33814. source: "./media/characters/softpurr/front.svg",
  33815. extra: 1950/1856,
  33816. bottom: 174/2124
  33817. }
  33818. },
  33819. paw: {
  33820. height: math.unit(1, "feet"),
  33821. name: "Paw",
  33822. image: {
  33823. source: "./media/characters/softpurr/paw.svg"
  33824. }
  33825. },
  33826. },
  33827. [
  33828. {
  33829. name: "Normal",
  33830. height: math.unit(5 + 1/12, "feet"),
  33831. default: true
  33832. },
  33833. ]
  33834. ))
  33835. characterMakers.push(() => makeCharacter(
  33836. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33837. {
  33838. front: {
  33839. height: math.unit(260, "meters"),
  33840. name: "Front",
  33841. image: {
  33842. source: "./media/characters/anahita/front.svg",
  33843. extra: 665/635,
  33844. bottom: 89/754
  33845. }
  33846. },
  33847. },
  33848. [
  33849. {
  33850. name: "Macro",
  33851. height: math.unit(260, "meters"),
  33852. default: true
  33853. },
  33854. ]
  33855. ))
  33856. characterMakers.push(() => makeCharacter(
  33857. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33858. {
  33859. front: {
  33860. height: math.unit(4 + 10/12, "feet"),
  33861. weight: math.unit(160, "lb"),
  33862. name: "Front",
  33863. image: {
  33864. source: "./media/characters/chip-mouse/front.svg",
  33865. extra: 3528/3408,
  33866. bottom: 0/3528
  33867. }
  33868. },
  33869. frontNsfw: {
  33870. height: math.unit(4 + 10/12, "feet"),
  33871. weight: math.unit(160, "lb"),
  33872. name: "Front (NSFW)",
  33873. image: {
  33874. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33875. extra: 3528/3408,
  33876. bottom: 0/3528
  33877. }
  33878. },
  33879. },
  33880. [
  33881. {
  33882. name: "Normal",
  33883. height: math.unit(4 + 10/12, "feet"),
  33884. default: true
  33885. },
  33886. ]
  33887. ))
  33888. characterMakers.push(() => makeCharacter(
  33889. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33890. {
  33891. side: {
  33892. height: math.unit(10, "feet"),
  33893. weight: math.unit(14000, "lb"),
  33894. name: "Side",
  33895. image: {
  33896. source: "./media/characters/kremm/side.svg",
  33897. extra: 1390/1053,
  33898. bottom: 90/1480
  33899. }
  33900. },
  33901. gut: {
  33902. height: math.unit(5.8, "feet"),
  33903. name: "Gut",
  33904. image: {
  33905. source: "./media/characters/kremm/gut.svg"
  33906. }
  33907. },
  33908. ass: {
  33909. height: math.unit(6.1, "feet"),
  33910. name: "Ass",
  33911. image: {
  33912. source: "./media/characters/kremm/ass.svg"
  33913. }
  33914. },
  33915. jaws: {
  33916. height: math.unit(2.2, "feet"),
  33917. name: "Jaws",
  33918. image: {
  33919. source: "./media/characters/kremm/jaws.svg"
  33920. }
  33921. },
  33922. dick: {
  33923. height: math.unit(4.26, "feet"),
  33924. name: "Dick",
  33925. image: {
  33926. source: "./media/characters/kremm/dick.svg"
  33927. }
  33928. },
  33929. },
  33930. [
  33931. {
  33932. name: "Normal",
  33933. height: math.unit(10, "feet"),
  33934. default: true
  33935. },
  33936. ]
  33937. ))
  33938. characterMakers.push(() => makeCharacter(
  33939. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33940. {
  33941. front: {
  33942. height: math.unit(30, "stories"),
  33943. name: "Front",
  33944. image: {
  33945. source: "./media/characters/kai/front.svg",
  33946. extra: 1892/1718,
  33947. bottom: 162/2054
  33948. }
  33949. },
  33950. },
  33951. [
  33952. {
  33953. name: "Macro",
  33954. height: math.unit(30, "stories"),
  33955. default: true
  33956. },
  33957. ]
  33958. ))
  33959. characterMakers.push(() => makeCharacter(
  33960. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33961. {
  33962. front: {
  33963. height: math.unit(6 + 4/12, "feet"),
  33964. weight: math.unit(145, "lb"),
  33965. name: "Front",
  33966. image: {
  33967. source: "./media/characters/sykes/front.svg",
  33968. extra: 1321 / 1187,
  33969. bottom: 66 / 1387
  33970. }
  33971. },
  33972. back: {
  33973. height: math.unit(6 + 4/12, "feet"),
  33974. weight: math.unit(145, "lb"),
  33975. name: "Back",
  33976. image: {
  33977. source: "./media/characters/sykes/back.svg",
  33978. extra: 1326/1181,
  33979. bottom: 31/1357
  33980. }
  33981. },
  33982. handBack: {
  33983. height: math.unit(0.9, "feet"),
  33984. name: "Hand (Back)",
  33985. image: {
  33986. source: "./media/characters/sykes/hand-back.svg"
  33987. }
  33988. },
  33989. handFront: {
  33990. height: math.unit(0.839, "feet"),
  33991. name: "Hand (Front)",
  33992. image: {
  33993. source: "./media/characters/sykes/hand-front.svg"
  33994. }
  33995. },
  33996. leftFoot: {
  33997. height: math.unit(1.2, "feet"),
  33998. name: "Foot (Left)",
  33999. image: {
  34000. source: "./media/characters/sykes/foot-left.svg"
  34001. }
  34002. },
  34003. rightFoot: {
  34004. height: math.unit(1.2, "feet"),
  34005. name: "Foot (Right)",
  34006. image: {
  34007. source: "./media/characters/sykes/foot-right.svg"
  34008. }
  34009. },
  34010. maw: {
  34011. height: math.unit(1.93, "feet"),
  34012. name: "Maw",
  34013. image: {
  34014. source: "./media/characters/sykes/maw.svg"
  34015. }
  34016. },
  34017. teeth: {
  34018. height: math.unit(0.51, "feet"),
  34019. name: "Teeth",
  34020. image: {
  34021. source: "./media/characters/sykes/teeth.svg"
  34022. }
  34023. },
  34024. tongue: {
  34025. height: math.unit(2.13, "feet"),
  34026. name: "Tongue",
  34027. image: {
  34028. source: "./media/characters/sykes/tongue.svg"
  34029. }
  34030. },
  34031. uvula: {
  34032. height: math.unit(0.16, "feet"),
  34033. name: "Uvula",
  34034. image: {
  34035. source: "./media/characters/sykes/uvula.svg"
  34036. }
  34037. },
  34038. collar: {
  34039. height: math.unit(0.287, "feet"),
  34040. name: "Collar",
  34041. image: {
  34042. source: "./media/characters/sykes/collar.svg"
  34043. }
  34044. },
  34045. },
  34046. [
  34047. {
  34048. name: "Shrunken",
  34049. height: math.unit(5, "inches")
  34050. },
  34051. {
  34052. name: "Normal",
  34053. height: math.unit(6 + 4 / 12, "feet"),
  34054. default: true
  34055. },
  34056. {
  34057. name: "Big",
  34058. height: math.unit(15, "feet")
  34059. },
  34060. ]
  34061. ))
  34062. characterMakers.push(() => makeCharacter(
  34063. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34064. {
  34065. front: {
  34066. height: math.unit(5 + 8/12, "feet"),
  34067. weight: math.unit(190, "lb"),
  34068. name: "Front",
  34069. image: {
  34070. source: "./media/characters/oven-otter/front.svg",
  34071. extra: 1809/1740,
  34072. bottom: 181/1990
  34073. }
  34074. },
  34075. back: {
  34076. height: math.unit(5 + 8/12, "feet"),
  34077. weight: math.unit(190, "lb"),
  34078. name: "Back",
  34079. image: {
  34080. source: "./media/characters/oven-otter/back.svg",
  34081. extra: 1709/1635,
  34082. bottom: 118/1827
  34083. }
  34084. },
  34085. hand: {
  34086. height: math.unit(1.07, "feet"),
  34087. name: "Hand",
  34088. image: {
  34089. source: "./media/characters/oven-otter/hand.svg"
  34090. }
  34091. },
  34092. beans: {
  34093. height: math.unit(1.74, "feet"),
  34094. name: "Beans",
  34095. image: {
  34096. source: "./media/characters/oven-otter/beans.svg"
  34097. }
  34098. },
  34099. },
  34100. [
  34101. {
  34102. name: "Micro",
  34103. height: math.unit(0.5, "inches")
  34104. },
  34105. {
  34106. name: "Normal",
  34107. height: math.unit(5 + 8/12, "feet"),
  34108. default: true
  34109. },
  34110. {
  34111. name: "Macro",
  34112. height: math.unit(250, "feet")
  34113. },
  34114. {
  34115. name: "Really High",
  34116. height: math.unit(420, "feet")
  34117. },
  34118. ]
  34119. ))
  34120. characterMakers.push(() => makeCharacter(
  34121. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34122. {
  34123. front: {
  34124. height: math.unit(5, "meters"),
  34125. weight: math.unit(292000000000000, "kg"),
  34126. name: "Front",
  34127. image: {
  34128. source: "./media/characters/devourer/front.svg",
  34129. extra: 1800/1733,
  34130. bottom: 211/2011
  34131. }
  34132. },
  34133. maw: {
  34134. height: math.unit(1.1, "meter"),
  34135. name: "Maw",
  34136. image: {
  34137. source: "./media/characters/devourer/maw.svg"
  34138. }
  34139. },
  34140. },
  34141. [
  34142. {
  34143. name: "Small",
  34144. height: math.unit(3, "meters")
  34145. },
  34146. {
  34147. name: "Large",
  34148. height: math.unit(5, "meters"),
  34149. default: true
  34150. },
  34151. ]
  34152. ))
  34153. characterMakers.push(() => makeCharacter(
  34154. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34155. {
  34156. front: {
  34157. height: math.unit(6, "feet"),
  34158. weight: math.unit(400, "lb"),
  34159. name: "Front",
  34160. image: {
  34161. source: "./media/characters/ellarby/front.svg",
  34162. extra: 1909/1763,
  34163. bottom: 80/1989
  34164. }
  34165. },
  34166. back: {
  34167. height: math.unit(6, "feet"),
  34168. weight: math.unit(400, "lb"),
  34169. name: "Back",
  34170. image: {
  34171. source: "./media/characters/ellarby/back.svg",
  34172. extra: 1914/1784,
  34173. bottom: 172/2086
  34174. }
  34175. },
  34176. },
  34177. [
  34178. {
  34179. name: "Mischief",
  34180. height: math.unit(18, "inches")
  34181. },
  34182. {
  34183. name: "Trouble",
  34184. height: math.unit(12, "feet")
  34185. },
  34186. {
  34187. name: "Havoc",
  34188. height: math.unit(200, "feet"),
  34189. default: true
  34190. },
  34191. {
  34192. name: "Pandemonium",
  34193. height: math.unit(1, "mile")
  34194. },
  34195. {
  34196. name: "Catastrophe",
  34197. height: math.unit(100, "miles")
  34198. },
  34199. ]
  34200. ))
  34201. characterMakers.push(() => makeCharacter(
  34202. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34203. {
  34204. front: {
  34205. height: math.unit(4.7, "meters"),
  34206. weight: math.unit(6500, "kg"),
  34207. name: "Front",
  34208. image: {
  34209. source: "./media/characters/vex/front.svg",
  34210. extra: 1288/1140,
  34211. bottom: 100/1388
  34212. }
  34213. },
  34214. },
  34215. [
  34216. {
  34217. name: "Normal",
  34218. height: math.unit(4.7, "meters"),
  34219. default: true
  34220. },
  34221. ]
  34222. ))
  34223. characterMakers.push(() => makeCharacter(
  34224. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34225. {
  34226. normal: {
  34227. height: math.unit(6, "feet"),
  34228. weight: math.unit(350, "lb"),
  34229. name: "Normal",
  34230. image: {
  34231. source: "./media/characters/teshy/normal.svg",
  34232. extra: 1795/1735,
  34233. bottom: 16/1811
  34234. }
  34235. },
  34236. monsterFront: {
  34237. height: math.unit(12, "feet"),
  34238. weight: math.unit(4700, "lb"),
  34239. name: "Monster (Front)",
  34240. image: {
  34241. source: "./media/characters/teshy/monster-front.svg",
  34242. extra: 2042/2034,
  34243. bottom: 128/2170
  34244. }
  34245. },
  34246. monsterSide: {
  34247. height: math.unit(12, "feet"),
  34248. weight: math.unit(4700, "lb"),
  34249. name: "Monster (Side)",
  34250. image: {
  34251. source: "./media/characters/teshy/monster-side.svg",
  34252. extra: 2067/2056,
  34253. bottom: 70/2137
  34254. }
  34255. },
  34256. monsterBack: {
  34257. height: math.unit(12, "feet"),
  34258. weight: math.unit(4700, "lb"),
  34259. name: "Monster (Back)",
  34260. image: {
  34261. source: "./media/characters/teshy/monster-back.svg",
  34262. extra: 1921/1914,
  34263. bottom: 171/2092
  34264. }
  34265. },
  34266. },
  34267. [
  34268. {
  34269. name: "Normal",
  34270. height: math.unit(6, "feet"),
  34271. default: true
  34272. },
  34273. ]
  34274. ))
  34275. characterMakers.push(() => makeCharacter(
  34276. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34277. {
  34278. front: {
  34279. height: math.unit(6, "feet"),
  34280. name: "Front",
  34281. image: {
  34282. source: "./media/characters/ramey/front.svg",
  34283. extra: 790/787,
  34284. bottom: 27/817
  34285. }
  34286. },
  34287. },
  34288. [
  34289. {
  34290. name: "Normal",
  34291. height: math.unit(6, "feet"),
  34292. default: true
  34293. },
  34294. ]
  34295. ))
  34296. characterMakers.push(() => makeCharacter(
  34297. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34298. {
  34299. front: {
  34300. height: math.unit(5 + 5/12, "feet"),
  34301. weight: math.unit(120, "lb"),
  34302. name: "Front",
  34303. image: {
  34304. source: "./media/characters/phirae/front.svg",
  34305. extra: 2491/2436,
  34306. bottom: 38/2529
  34307. }
  34308. },
  34309. },
  34310. [
  34311. {
  34312. name: "Normal",
  34313. height: math.unit(5 + 5/12, "feet"),
  34314. default: true
  34315. },
  34316. ]
  34317. ))
  34318. characterMakers.push(() => makeCharacter(
  34319. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34320. {
  34321. front: {
  34322. height: math.unit(5 + 3/12, "feet"),
  34323. name: "Front",
  34324. image: {
  34325. source: "./media/characters/stagglas/front.svg",
  34326. extra: 962/882,
  34327. bottom: 53/1015
  34328. }
  34329. },
  34330. feral: {
  34331. height: math.unit(335, "cm"),
  34332. name: "Feral",
  34333. image: {
  34334. source: "./media/characters/stagglas/feral.svg",
  34335. extra: 1732/1090,
  34336. bottom: 48/1780
  34337. }
  34338. },
  34339. },
  34340. [
  34341. {
  34342. name: "Normal",
  34343. height: math.unit(5 + 3/12, "feet"),
  34344. default: true
  34345. },
  34346. ]
  34347. ))
  34348. characterMakers.push(() => makeCharacter(
  34349. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34350. {
  34351. front: {
  34352. height: math.unit(5 + 4/12, "feet"),
  34353. weight: math.unit(145, "lb"),
  34354. name: "Front",
  34355. image: {
  34356. source: "./media/characters/starra/front.svg",
  34357. extra: 1790/1691,
  34358. bottom: 91/1881
  34359. }
  34360. },
  34361. },
  34362. [
  34363. {
  34364. name: "Normal",
  34365. height: math.unit(5 + 4/12, "feet"),
  34366. default: true
  34367. },
  34368. ]
  34369. ))
  34370. characterMakers.push(() => makeCharacter(
  34371. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34372. {
  34373. front: {
  34374. height: math.unit(2.2, "meters"),
  34375. name: "Front",
  34376. image: {
  34377. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34378. extra: 1194/1005,
  34379. bottom: 25/1219
  34380. }
  34381. },
  34382. },
  34383. [
  34384. {
  34385. name: "Normal",
  34386. height: math.unit(2.2, "meters"),
  34387. default: true
  34388. },
  34389. ]
  34390. ))
  34391. characterMakers.push(() => makeCharacter(
  34392. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34393. {
  34394. side: {
  34395. height: math.unit(8 + 2/12, "feet"),
  34396. weight: math.unit(1240, "lb"),
  34397. name: "Side",
  34398. image: {
  34399. source: "./media/characters/mika-valentine/side.svg",
  34400. extra: 2670/2501,
  34401. bottom: 250/2920
  34402. }
  34403. },
  34404. },
  34405. [
  34406. {
  34407. name: "Normal",
  34408. height: math.unit(8 + 2/12, "feet"),
  34409. default: true
  34410. },
  34411. ]
  34412. ))
  34413. characterMakers.push(() => makeCharacter(
  34414. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34415. {
  34416. front: {
  34417. height: math.unit(7 + 2/12, "feet"),
  34418. name: "Front",
  34419. image: {
  34420. source: "./media/characters/xoltol/front.svg",
  34421. extra: 2212/2124,
  34422. bottom: 84/2296
  34423. }
  34424. },
  34425. side: {
  34426. height: math.unit(7 + 2/12, "feet"),
  34427. name: "Side",
  34428. image: {
  34429. source: "./media/characters/xoltol/side.svg",
  34430. extra: 2273/2197,
  34431. bottom: 26/2299
  34432. }
  34433. },
  34434. hand: {
  34435. height: math.unit(2.5, "feet"),
  34436. name: "Hand",
  34437. image: {
  34438. source: "./media/characters/xoltol/hand.svg"
  34439. }
  34440. },
  34441. },
  34442. [
  34443. {
  34444. name: "Small-ish",
  34445. height: math.unit(5 + 11/12, "feet")
  34446. },
  34447. {
  34448. name: "Normal",
  34449. height: math.unit(7 + 2/12, "feet")
  34450. },
  34451. {
  34452. name: "\"Macro\"",
  34453. height: math.unit(14 + 9/12, "feet"),
  34454. default: true
  34455. },
  34456. {
  34457. name: "Alternate Height",
  34458. height: math.unit(20, "feet")
  34459. },
  34460. {
  34461. name: "Actually Macro",
  34462. height: math.unit(100, "feet")
  34463. },
  34464. ]
  34465. ))
  34466. characterMakers.push(() => makeCharacter(
  34467. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34468. {
  34469. front: {
  34470. height: math.unit(5 + 2/12, "feet"),
  34471. name: "Front",
  34472. image: {
  34473. source: "./media/characters/kotetsu-redwood/front.svg",
  34474. extra: 1053/942,
  34475. bottom: 60/1113
  34476. }
  34477. },
  34478. },
  34479. [
  34480. {
  34481. name: "Normal",
  34482. height: math.unit(5 + 2/12, "feet"),
  34483. default: true
  34484. },
  34485. ]
  34486. ))
  34487. characterMakers.push(() => makeCharacter(
  34488. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34489. {
  34490. front: {
  34491. height: math.unit(2.4, "meters"),
  34492. weight: math.unit(125, "kg"),
  34493. name: "Front",
  34494. image: {
  34495. source: "./media/characters/lilith/front.svg",
  34496. extra: 1590/1513,
  34497. bottom: 203/1793
  34498. }
  34499. },
  34500. },
  34501. [
  34502. {
  34503. name: "Humanoid",
  34504. height: math.unit(2.4, "meters")
  34505. },
  34506. {
  34507. name: "Normal",
  34508. height: math.unit(6, "meters"),
  34509. default: true
  34510. },
  34511. {
  34512. name: "Largest",
  34513. height: math.unit(55, "meters")
  34514. },
  34515. ]
  34516. ))
  34517. characterMakers.push(() => makeCharacter(
  34518. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34519. {
  34520. front: {
  34521. height: math.unit(8 + 4/12, "feet"),
  34522. weight: math.unit(535, "lb"),
  34523. name: "Front",
  34524. image: {
  34525. source: "./media/characters/beh'kah-bolger/front.svg",
  34526. extra: 1660/1603,
  34527. bottom: 37/1697
  34528. }
  34529. },
  34530. },
  34531. [
  34532. {
  34533. name: "Normal",
  34534. height: math.unit(8 + 4/12, "feet"),
  34535. default: true
  34536. },
  34537. {
  34538. name: "Kaiju",
  34539. height: math.unit(250, "feet")
  34540. },
  34541. {
  34542. name: "Still Growing",
  34543. height: math.unit(10, "miles")
  34544. },
  34545. {
  34546. name: "Continental",
  34547. height: math.unit(5000, "miles")
  34548. },
  34549. {
  34550. name: "Final Form",
  34551. height: math.unit(2500000, "miles")
  34552. },
  34553. ]
  34554. ))
  34555. characterMakers.push(() => makeCharacter(
  34556. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34557. {
  34558. front: {
  34559. height: math.unit(7 + 2/12, "feet"),
  34560. weight: math.unit(230, "kg"),
  34561. name: "Front",
  34562. image: {
  34563. source: "./media/characters/tatyana-milewska/front.svg",
  34564. extra: 1199/1150,
  34565. bottom: 86/1285
  34566. }
  34567. },
  34568. },
  34569. [
  34570. {
  34571. name: "Normal",
  34572. height: math.unit(7 + 2/12, "feet"),
  34573. default: true
  34574. },
  34575. {
  34576. name: "Big",
  34577. height: math.unit(12, "feet")
  34578. },
  34579. {
  34580. name: "Minimacro",
  34581. height: math.unit(20, "feet")
  34582. },
  34583. {
  34584. name: "Macro",
  34585. height: math.unit(120, "feet")
  34586. },
  34587. ]
  34588. ))
  34589. characterMakers.push(() => makeCharacter(
  34590. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34591. {
  34592. front: {
  34593. height: math.unit(7 + 8/12, "feet"),
  34594. weight: math.unit(152, "kg"),
  34595. name: "Front",
  34596. image: {
  34597. source: "./media/characters/helen-arri/front.svg",
  34598. extra: 440/423,
  34599. bottom: 14/454
  34600. }
  34601. },
  34602. back: {
  34603. height: math.unit(7 + 8/12, "feet"),
  34604. weight: math.unit(152, "kg"),
  34605. name: "Back",
  34606. image: {
  34607. source: "./media/characters/helen-arri/back.svg",
  34608. extra: 443/426,
  34609. bottom: 8/451
  34610. }
  34611. },
  34612. },
  34613. [
  34614. {
  34615. name: "Normal",
  34616. height: math.unit(7 + 8/12, "feet"),
  34617. default: true
  34618. },
  34619. {
  34620. name: "Big",
  34621. height: math.unit(14, "feet")
  34622. },
  34623. {
  34624. name: "Minimacro",
  34625. height: math.unit(24, "feet")
  34626. },
  34627. {
  34628. name: "Macro",
  34629. height: math.unit(140, "feet")
  34630. },
  34631. ]
  34632. ))
  34633. characterMakers.push(() => makeCharacter(
  34634. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34635. {
  34636. front: {
  34637. height: math.unit(6, "meters"),
  34638. name: "Front",
  34639. image: {
  34640. source: "./media/characters/ehanu-rehu/front.svg",
  34641. extra: 1800/1800,
  34642. bottom: 59/1859
  34643. }
  34644. },
  34645. },
  34646. [
  34647. {
  34648. name: "Normal",
  34649. height: math.unit(6, "meters"),
  34650. default: true
  34651. },
  34652. ]
  34653. ))
  34654. characterMakers.push(() => makeCharacter(
  34655. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34656. {
  34657. front: {
  34658. height: math.unit(7 + 3/12, "feet"),
  34659. name: "Front",
  34660. image: {
  34661. source: "./media/characters/renholder/front.svg",
  34662. extra: 3096/2960,
  34663. bottom: 250/3346
  34664. }
  34665. },
  34666. },
  34667. [
  34668. {
  34669. name: "Normal Bat",
  34670. height: math.unit(7 + 3/12, "feet"),
  34671. default: true
  34672. },
  34673. {
  34674. name: "Slightly Tall Bat",
  34675. height: math.unit(100, "feet")
  34676. },
  34677. {
  34678. name: "Big Bat",
  34679. height: math.unit(1000, "feet")
  34680. },
  34681. {
  34682. name: "City-Sized Bat",
  34683. height: math.unit(200000, "feet")
  34684. },
  34685. {
  34686. name: "Bigger Bat",
  34687. height: math.unit(10000, "miles")
  34688. },
  34689. {
  34690. name: "Solar Sized Bat",
  34691. height: math.unit(100, "AU")
  34692. },
  34693. {
  34694. name: "Galactic Bat",
  34695. height: math.unit(200000, "lightyears")
  34696. },
  34697. {
  34698. name: "Universally Known Bat",
  34699. height: math.unit(1, "universe")
  34700. },
  34701. ]
  34702. ))
  34703. characterMakers.push(() => makeCharacter(
  34704. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34705. {
  34706. front: {
  34707. height: math.unit(6 + 11/12, "feet"),
  34708. weight: math.unit(250, "lb"),
  34709. name: "Front",
  34710. image: {
  34711. source: "./media/characters/cookiecat/front.svg",
  34712. extra: 893/827,
  34713. bottom: 14/907
  34714. }
  34715. },
  34716. },
  34717. [
  34718. {
  34719. name: "Micro",
  34720. height: math.unit(3, "inches")
  34721. },
  34722. {
  34723. name: "Normal",
  34724. height: math.unit(6 + 11/12, "feet"),
  34725. default: true
  34726. },
  34727. {
  34728. name: "Macro",
  34729. height: math.unit(100, "feet")
  34730. },
  34731. {
  34732. name: "Macro+",
  34733. height: math.unit(404, "feet")
  34734. },
  34735. {
  34736. name: "Megamacro",
  34737. height: math.unit(165, "miles")
  34738. },
  34739. {
  34740. name: "Planetary",
  34741. height: math.unit(4600, "miles")
  34742. },
  34743. ]
  34744. ))
  34745. characterMakers.push(() => makeCharacter(
  34746. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34747. {
  34748. front: {
  34749. height: math.unit(10 + 3/12, "feet"),
  34750. weight: math.unit(1500, "lb"),
  34751. name: "Front",
  34752. image: {
  34753. source: "./media/characters/tux-kusanagi/front.svg",
  34754. extra: 944/840,
  34755. bottom: 39/983
  34756. }
  34757. },
  34758. back: {
  34759. height: math.unit(10 + 3/12, "feet"),
  34760. weight: math.unit(1500, "lb"),
  34761. name: "Back",
  34762. image: {
  34763. source: "./media/characters/tux-kusanagi/back.svg",
  34764. extra: 941/842,
  34765. bottom: 28/969
  34766. }
  34767. },
  34768. rump: {
  34769. height: math.unit(5.25, "feet"),
  34770. name: "Rump",
  34771. image: {
  34772. source: "./media/characters/tux-kusanagi/rump.svg"
  34773. }
  34774. },
  34775. beak: {
  34776. height: math.unit(1.54, "feet"),
  34777. name: "Beak",
  34778. image: {
  34779. source: "./media/characters/tux-kusanagi/beak.svg"
  34780. }
  34781. },
  34782. },
  34783. [
  34784. {
  34785. name: "Normal",
  34786. height: math.unit(10 + 3/12, "feet"),
  34787. default: true
  34788. },
  34789. ]
  34790. ))
  34791. characterMakers.push(() => makeCharacter(
  34792. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34793. {
  34794. front: {
  34795. height: math.unit(58, "feet"),
  34796. weight: math.unit(200, "tons"),
  34797. name: "Front",
  34798. image: {
  34799. source: "./media/characters/uzarmazari/front.svg",
  34800. extra: 1575/1455,
  34801. bottom: 152/1727
  34802. }
  34803. },
  34804. back: {
  34805. height: math.unit(58, "feet"),
  34806. weight: math.unit(200, "tons"),
  34807. name: "Back",
  34808. image: {
  34809. source: "./media/characters/uzarmazari/back.svg",
  34810. extra: 1585/1510,
  34811. bottom: 157/1742
  34812. }
  34813. },
  34814. head: {
  34815. height: math.unit(26, "feet"),
  34816. name: "Head",
  34817. image: {
  34818. source: "./media/characters/uzarmazari/head.svg"
  34819. }
  34820. },
  34821. },
  34822. [
  34823. {
  34824. name: "Normal",
  34825. height: math.unit(58, "feet"),
  34826. default: true
  34827. },
  34828. ]
  34829. ))
  34830. characterMakers.push(() => makeCharacter(
  34831. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34832. {
  34833. side: {
  34834. height: math.unit(15, "feet"),
  34835. name: "Side",
  34836. image: {
  34837. source: "./media/characters/akitu/side.svg",
  34838. extra: 1421/1321,
  34839. bottom: 157/1578
  34840. }
  34841. },
  34842. front: {
  34843. height: math.unit(15, "feet"),
  34844. name: "Front",
  34845. image: {
  34846. source: "./media/characters/akitu/front.svg",
  34847. extra: 1435/1326,
  34848. bottom: 232/1667
  34849. }
  34850. },
  34851. },
  34852. [
  34853. {
  34854. name: "Normal",
  34855. height: math.unit(15, "feet"),
  34856. default: true
  34857. },
  34858. ]
  34859. ))
  34860. characterMakers.push(() => makeCharacter(
  34861. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34862. {
  34863. front: {
  34864. height: math.unit(10 + 8/12, "feet"),
  34865. name: "Front",
  34866. image: {
  34867. source: "./media/characters/azalie-croixland/front.svg",
  34868. extra: 1972/1856,
  34869. bottom: 31/2003
  34870. }
  34871. },
  34872. },
  34873. [
  34874. {
  34875. name: "Original Height",
  34876. height: math.unit(5 + 4/12, "feet")
  34877. },
  34878. {
  34879. name: "Normal Height",
  34880. height: math.unit(10 + 8/12, "feet"),
  34881. default: true
  34882. },
  34883. ]
  34884. ))
  34885. characterMakers.push(() => makeCharacter(
  34886. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34887. {
  34888. side: {
  34889. height: math.unit(7 + 1/12, "feet"),
  34890. weight: math.unit(245, "lb"),
  34891. name: "Side",
  34892. image: {
  34893. source: "./media/characters/kavus-kazian/side.svg",
  34894. extra: 349/342,
  34895. bottom: 15/364
  34896. }
  34897. },
  34898. },
  34899. [
  34900. {
  34901. name: "Normal",
  34902. height: math.unit(7 + 1/12, "feet"),
  34903. default: true
  34904. },
  34905. ]
  34906. ))
  34907. characterMakers.push(() => makeCharacter(
  34908. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34909. {
  34910. normal: {
  34911. height: math.unit(5 + 11/12, "feet"),
  34912. name: "Normal",
  34913. image: {
  34914. source: "./media/characters/moonlight-rose/normal.svg",
  34915. extra: 1979/1835,
  34916. bottom: 14/1993
  34917. }
  34918. },
  34919. demon: {
  34920. height: math.unit(5, "km"),
  34921. name: "Demon",
  34922. image: {
  34923. source: "./media/characters/moonlight-rose/demon.svg",
  34924. extra: 986/916,
  34925. bottom: 28/1014
  34926. }
  34927. },
  34928. },
  34929. [
  34930. {
  34931. name: "\"Natural\" height",
  34932. height: math.unit(5 + 11/12, "feet")
  34933. },
  34934. {
  34935. name: "Comfortable Size",
  34936. height: math.unit(40, "meters")
  34937. },
  34938. {
  34939. name: "Common Size",
  34940. height: math.unit(50, "km"),
  34941. default: true
  34942. },
  34943. {
  34944. name: "Demonic",
  34945. height: math.unit(1.24415e+21, "meters")
  34946. },
  34947. ]
  34948. ))
  34949. characterMakers.push(() => makeCharacter(
  34950. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34951. {
  34952. front: {
  34953. height: math.unit(16, "feet"),
  34954. weight: math.unit(610, "kg"),
  34955. name: "Front",
  34956. image: {
  34957. source: "./media/characters/huckle/front.svg",
  34958. extra: 1731/1625,
  34959. bottom: 33/1764
  34960. }
  34961. },
  34962. back: {
  34963. height: math.unit(16, "feet"),
  34964. weight: math.unit(610, "kg"),
  34965. name: "Back",
  34966. image: {
  34967. source: "./media/characters/huckle/back.svg",
  34968. extra: 1738/1651,
  34969. bottom: 37/1775
  34970. }
  34971. },
  34972. laughing: {
  34973. height: math.unit(3.75, "feet"),
  34974. name: "Laughing",
  34975. image: {
  34976. source: "./media/characters/huckle/laughing.svg"
  34977. }
  34978. },
  34979. angry: {
  34980. height: math.unit(4.15, "feet"),
  34981. name: "Angry",
  34982. image: {
  34983. source: "./media/characters/huckle/angry.svg"
  34984. }
  34985. },
  34986. },
  34987. [
  34988. {
  34989. name: "Normal",
  34990. height: math.unit(16, "feet"),
  34991. default: true
  34992. },
  34993. {
  34994. name: "Mini Macro",
  34995. height: math.unit(463, "feet")
  34996. },
  34997. {
  34998. name: "Macro",
  34999. height: math.unit(1680, "meters")
  35000. },
  35001. {
  35002. name: "Mega Macro",
  35003. height: math.unit(175, "km")
  35004. },
  35005. {
  35006. name: "Terra Macro",
  35007. height: math.unit(32, "gigameters")
  35008. },
  35009. {
  35010. name: "Multiverse+",
  35011. height: math.unit(2.56e23, "yottameters")
  35012. },
  35013. ]
  35014. ))
  35015. characterMakers.push(() => makeCharacter(
  35016. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35017. {
  35018. front: {
  35019. height: math.unit(6 + 9/12, "feet"),
  35020. weight: math.unit(280, "lb"),
  35021. name: "Front",
  35022. image: {
  35023. source: "./media/characters/candy/front.svg",
  35024. extra: 234/217,
  35025. bottom: 11/245
  35026. }
  35027. },
  35028. },
  35029. [
  35030. {
  35031. name: "Really Small",
  35032. height: math.unit(0.1, "nm")
  35033. },
  35034. {
  35035. name: "Micro",
  35036. height: math.unit(2, "inches")
  35037. },
  35038. {
  35039. name: "Normal",
  35040. height: math.unit(6 + 9/12, "feet"),
  35041. default: true
  35042. },
  35043. {
  35044. name: "Small Macro",
  35045. height: math.unit(69, "feet")
  35046. },
  35047. {
  35048. name: "Macro",
  35049. height: math.unit(160, "feet")
  35050. },
  35051. {
  35052. name: "Megamacro",
  35053. height: math.unit(22000, "miles")
  35054. },
  35055. {
  35056. name: "Gigamacro",
  35057. height: math.unit(50000, "miles")
  35058. },
  35059. ]
  35060. ))
  35061. characterMakers.push(() => makeCharacter(
  35062. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35063. {
  35064. front: {
  35065. height: math.unit(4, "feet"),
  35066. weight: math.unit(90, "lb"),
  35067. name: "Front",
  35068. image: {
  35069. source: "./media/characters/joey-mcdonald/front.svg",
  35070. extra: 1059/852,
  35071. bottom: 33/1092
  35072. }
  35073. },
  35074. back: {
  35075. height: math.unit(4, "feet"),
  35076. weight: math.unit(90, "lb"),
  35077. name: "Back",
  35078. image: {
  35079. source: "./media/characters/joey-mcdonald/back.svg",
  35080. extra: 1077/879,
  35081. bottom: 5/1082
  35082. }
  35083. },
  35084. frontKobold: {
  35085. height: math.unit(4, "feet"),
  35086. weight: math.unit(100, "lb"),
  35087. name: "Front-kobold",
  35088. image: {
  35089. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35090. extra: 1480/1367,
  35091. bottom: 0/1480
  35092. }
  35093. },
  35094. backKobold: {
  35095. height: math.unit(4, "feet"),
  35096. weight: math.unit(100, "lb"),
  35097. name: "Back-kobold",
  35098. image: {
  35099. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35100. extra: 1449/1361,
  35101. bottom: 0/1449
  35102. }
  35103. },
  35104. },
  35105. [
  35106. {
  35107. name: "Normal",
  35108. height: math.unit(4, "feet"),
  35109. default: true
  35110. },
  35111. ]
  35112. ))
  35113. characterMakers.push(() => makeCharacter(
  35114. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35115. {
  35116. front: {
  35117. height: math.unit(12 + 6/12, "feet"),
  35118. name: "Front",
  35119. image: {
  35120. source: "./media/characters/kass-lockheed/front.svg",
  35121. extra: 354/343,
  35122. bottom: 9/363
  35123. }
  35124. },
  35125. back: {
  35126. height: math.unit(12 + 6/12, "feet"),
  35127. name: "Back",
  35128. image: {
  35129. source: "./media/characters/kass-lockheed/back.svg",
  35130. extra: 364/352,
  35131. bottom: 3/367
  35132. }
  35133. },
  35134. dick: {
  35135. height: math.unit(3.12, "feet"),
  35136. name: "Dick",
  35137. image: {
  35138. source: "./media/characters/kass-lockheed/dick.svg"
  35139. }
  35140. },
  35141. head: {
  35142. height: math.unit(2.6, "feet"),
  35143. name: "Head",
  35144. image: {
  35145. source: "./media/characters/kass-lockheed/head.svg"
  35146. }
  35147. },
  35148. bleh: {
  35149. height: math.unit(2.85, "feet"),
  35150. name: "Bleh",
  35151. image: {
  35152. source: "./media/characters/kass-lockheed/bleh.svg"
  35153. }
  35154. },
  35155. smug: {
  35156. height: math.unit(2.85, "feet"),
  35157. name: "Smug",
  35158. image: {
  35159. source: "./media/characters/kass-lockheed/smug.svg"
  35160. }
  35161. },
  35162. },
  35163. [
  35164. {
  35165. name: "Normal",
  35166. height: math.unit(12 + 6/12, "feet"),
  35167. default: true
  35168. },
  35169. ]
  35170. ))
  35171. characterMakers.push(() => makeCharacter(
  35172. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35173. {
  35174. front: {
  35175. height: math.unit(6 + 2/12, "feet"),
  35176. name: "Front",
  35177. image: {
  35178. source: "./media/characters/taylor/front.svg",
  35179. extra: 639/495,
  35180. bottom: 12/651
  35181. }
  35182. },
  35183. },
  35184. [
  35185. {
  35186. name: "Normal",
  35187. height: math.unit(6 + 2/12, "feet"),
  35188. default: true
  35189. },
  35190. {
  35191. name: "Big",
  35192. height: math.unit(15, "feet")
  35193. },
  35194. {
  35195. name: "Lorg",
  35196. height: math.unit(80, "feet")
  35197. },
  35198. {
  35199. name: "Too Lorg",
  35200. height: math.unit(120, "feet")
  35201. },
  35202. ]
  35203. ))
  35204. characterMakers.push(() => makeCharacter(
  35205. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35206. {
  35207. front: {
  35208. height: math.unit(15, "feet"),
  35209. name: "Front",
  35210. image: {
  35211. source: "./media/characters/kaizer/front.svg",
  35212. extra: 1612/1436,
  35213. bottom: 43/1655
  35214. }
  35215. },
  35216. },
  35217. [
  35218. {
  35219. name: "Normal",
  35220. height: math.unit(15, "feet"),
  35221. default: true
  35222. },
  35223. ]
  35224. ))
  35225. characterMakers.push(() => makeCharacter(
  35226. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35227. {
  35228. front: {
  35229. height: math.unit(2, "feet"),
  35230. weight: math.unit(30, "lb"),
  35231. name: "Front",
  35232. image: {
  35233. source: "./media/characters/sandy/front.svg",
  35234. extra: 1439/1307,
  35235. bottom: 194/1633
  35236. }
  35237. },
  35238. },
  35239. [
  35240. {
  35241. name: "Normal",
  35242. height: math.unit(2, "feet"),
  35243. default: true
  35244. },
  35245. ]
  35246. ))
  35247. characterMakers.push(() => makeCharacter(
  35248. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35249. {
  35250. front: {
  35251. height: math.unit(3, "feet"),
  35252. name: "Front",
  35253. image: {
  35254. source: "./media/characters/mellvi/front.svg",
  35255. extra: 1831/1630,
  35256. bottom: 58/1889
  35257. }
  35258. },
  35259. },
  35260. [
  35261. {
  35262. name: "Normal",
  35263. height: math.unit(3, "feet"),
  35264. default: true
  35265. },
  35266. ]
  35267. ))
  35268. characterMakers.push(() => makeCharacter(
  35269. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35270. {
  35271. front: {
  35272. height: math.unit(5 + 11/12, "feet"),
  35273. weight: math.unit(200, "lb"),
  35274. name: "Front",
  35275. image: {
  35276. source: "./media/characters/shirou/front.svg",
  35277. extra: 2491/2383,
  35278. bottom: 189/2680
  35279. }
  35280. },
  35281. back: {
  35282. height: math.unit(5 + 11/12, "feet"),
  35283. weight: math.unit(200, "lb"),
  35284. name: "Back",
  35285. image: {
  35286. source: "./media/characters/shirou/back.svg",
  35287. extra: 2554/2450,
  35288. bottom: 76/2630
  35289. }
  35290. },
  35291. },
  35292. [
  35293. {
  35294. name: "Normal",
  35295. height: math.unit(5 + 11/12, "feet"),
  35296. default: true
  35297. },
  35298. ]
  35299. ))
  35300. characterMakers.push(() => makeCharacter(
  35301. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35302. {
  35303. front: {
  35304. height: math.unit(6 + 3/12, "feet"),
  35305. weight: math.unit(177, "lb"),
  35306. name: "Front",
  35307. image: {
  35308. source: "./media/characters/noryu/front.svg",
  35309. extra: 973/885,
  35310. bottom: 10/983
  35311. }
  35312. },
  35313. },
  35314. [
  35315. {
  35316. name: "Normal",
  35317. height: math.unit(6 + 3/12, "feet"),
  35318. default: true
  35319. },
  35320. ]
  35321. ))
  35322. characterMakers.push(() => makeCharacter(
  35323. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35324. {
  35325. front: {
  35326. height: math.unit(5 + 6/12, "feet"),
  35327. weight: math.unit(170, "lb"),
  35328. name: "Front",
  35329. image: {
  35330. source: "./media/characters/mevolas-rubenido/front.svg",
  35331. extra: 2109/1901,
  35332. bottom: 96/2205
  35333. }
  35334. },
  35335. },
  35336. [
  35337. {
  35338. name: "Normal",
  35339. height: math.unit(5 + 6/12, "feet"),
  35340. default: true
  35341. },
  35342. ]
  35343. ))
  35344. characterMakers.push(() => makeCharacter(
  35345. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35346. {
  35347. front: {
  35348. height: math.unit(100, "feet"),
  35349. name: "Front",
  35350. image: {
  35351. source: "./media/characters/dee/front.svg",
  35352. extra: 2153/2036,
  35353. bottom: 59/2212
  35354. }
  35355. },
  35356. back: {
  35357. height: math.unit(100, "feet"),
  35358. name: "Back",
  35359. image: {
  35360. source: "./media/characters/dee/back.svg",
  35361. extra: 2183/2058,
  35362. bottom: 75/2258
  35363. }
  35364. },
  35365. foot: {
  35366. height: math.unit(19.43, "feet"),
  35367. name: "Foot",
  35368. image: {
  35369. source: "./media/characters/dee/foot.svg"
  35370. }
  35371. },
  35372. hoof: {
  35373. height: math.unit(20.6, "feet"),
  35374. name: "Hoof",
  35375. image: {
  35376. source: "./media/characters/dee/hoof.svg"
  35377. }
  35378. },
  35379. },
  35380. [
  35381. {
  35382. name: "Macro",
  35383. height: math.unit(100, "feet"),
  35384. default: true
  35385. },
  35386. ]
  35387. ))
  35388. characterMakers.push(() => makeCharacter(
  35389. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35390. {
  35391. front: {
  35392. height: math.unit(5 + 6/12, "feet"),
  35393. name: "Front",
  35394. image: {
  35395. source: "./media/characters/teh/front.svg",
  35396. extra: 1002/847,
  35397. bottom: 62/1064
  35398. }
  35399. },
  35400. },
  35401. [
  35402. {
  35403. name: "Normal",
  35404. height: math.unit(5 + 6/12, "feet"),
  35405. default: true
  35406. },
  35407. ]
  35408. ))
  35409. characterMakers.push(() => makeCharacter(
  35410. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35411. {
  35412. side: {
  35413. height: math.unit(6 + 1/12, "feet"),
  35414. weight: math.unit(204, "lb"),
  35415. name: "Side",
  35416. image: {
  35417. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35418. extra: 974/775,
  35419. bottom: 169/1143
  35420. }
  35421. },
  35422. sitting: {
  35423. height: math.unit(6 + 2/12, "feet"),
  35424. weight: math.unit(204, "lb"),
  35425. name: "Sitting",
  35426. image: {
  35427. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35428. extra: 1175/964,
  35429. bottom: 378/1553
  35430. }
  35431. },
  35432. },
  35433. [
  35434. {
  35435. name: "Normal",
  35436. height: math.unit(6 + 1/12, "feet"),
  35437. default: true
  35438. },
  35439. ]
  35440. ))
  35441. characterMakers.push(() => makeCharacter(
  35442. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35443. {
  35444. front: {
  35445. height: math.unit(6, "inches"),
  35446. name: "Front",
  35447. image: {
  35448. source: "./media/characters/tululi/front.svg",
  35449. extra: 1997/1876,
  35450. bottom: 20/2017
  35451. }
  35452. },
  35453. },
  35454. [
  35455. {
  35456. name: "Normal",
  35457. height: math.unit(6, "inches"),
  35458. default: true
  35459. },
  35460. ]
  35461. ))
  35462. characterMakers.push(() => makeCharacter(
  35463. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35464. {
  35465. front: {
  35466. height: math.unit(4 + 1/12, "feet"),
  35467. name: "Front",
  35468. image: {
  35469. source: "./media/characters/star/front.svg",
  35470. extra: 1493/1189,
  35471. bottom: 48/1541
  35472. }
  35473. },
  35474. },
  35475. [
  35476. {
  35477. name: "Normal",
  35478. height: math.unit(4 + 1/12, "feet"),
  35479. default: true
  35480. },
  35481. ]
  35482. ))
  35483. characterMakers.push(() => makeCharacter(
  35484. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35485. {
  35486. front: {
  35487. height: math.unit(6 + 3/12, "feet"),
  35488. name: "Front",
  35489. image: {
  35490. source: "./media/characters/comet/front.svg",
  35491. extra: 1681/1462,
  35492. bottom: 26/1707
  35493. }
  35494. },
  35495. },
  35496. [
  35497. {
  35498. name: "Normal",
  35499. height: math.unit(6 + 3/12, "feet"),
  35500. default: true
  35501. },
  35502. ]
  35503. ))
  35504. characterMakers.push(() => makeCharacter(
  35505. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35506. {
  35507. front: {
  35508. height: math.unit(950, "feet"),
  35509. name: "Front",
  35510. image: {
  35511. source: "./media/characters/vortex/front.svg",
  35512. extra: 1497/1434,
  35513. bottom: 56/1553
  35514. }
  35515. },
  35516. maw: {
  35517. height: math.unit(285, "feet"),
  35518. name: "Maw",
  35519. image: {
  35520. source: "./media/characters/vortex/maw.svg"
  35521. }
  35522. },
  35523. },
  35524. [
  35525. {
  35526. name: "Macro",
  35527. height: math.unit(950, "feet"),
  35528. default: true
  35529. },
  35530. ]
  35531. ))
  35532. characterMakers.push(() => makeCharacter(
  35533. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35534. {
  35535. front: {
  35536. height: math.unit(600, "feet"),
  35537. weight: math.unit(0.02, "grams"),
  35538. name: "Front",
  35539. image: {
  35540. source: "./media/characters/doodle/front.svg",
  35541. extra: 1578/1413,
  35542. bottom: 37/1615
  35543. }
  35544. },
  35545. },
  35546. [
  35547. {
  35548. name: "Macro",
  35549. height: math.unit(600, "feet"),
  35550. default: true
  35551. },
  35552. ]
  35553. ))
  35554. characterMakers.push(() => makeCharacter(
  35555. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35556. {
  35557. front: {
  35558. height: math.unit(6 + 6/12, "feet"),
  35559. name: "Front",
  35560. image: {
  35561. source: "./media/characters/jai/front.svg",
  35562. extra: 1645/1534,
  35563. bottom: 115/1760
  35564. }
  35565. },
  35566. },
  35567. [
  35568. {
  35569. name: "Normal",
  35570. height: math.unit(6 + 6/12, "feet"),
  35571. default: true
  35572. },
  35573. ]
  35574. ))
  35575. characterMakers.push(() => makeCharacter(
  35576. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35577. {
  35578. front: {
  35579. height: math.unit(6 + 8/12, "feet"),
  35580. name: "Front",
  35581. image: {
  35582. source: "./media/characters/pixel/front.svg",
  35583. extra: 1900/1735,
  35584. bottom: 63/1963
  35585. }
  35586. },
  35587. },
  35588. [
  35589. {
  35590. name: "Normal",
  35591. height: math.unit(6 + 8/12, "feet"),
  35592. default: true
  35593. },
  35594. ]
  35595. ))
  35596. characterMakers.push(() => makeCharacter(
  35597. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35598. {
  35599. back: {
  35600. height: math.unit(4 + 1/12, "feet"),
  35601. weight: math.unit(75, "lb"),
  35602. name: "Back",
  35603. image: {
  35604. source: "./media/characters/rhett/back.svg",
  35605. extra: 930/878,
  35606. bottom: 25/955
  35607. }
  35608. },
  35609. front: {
  35610. height: math.unit(4 + 1/12, "feet"),
  35611. weight: math.unit(75, "lb"),
  35612. name: "Front",
  35613. image: {
  35614. source: "./media/characters/rhett/front.svg",
  35615. extra: 1682/1586,
  35616. bottom: 92/1774
  35617. }
  35618. },
  35619. },
  35620. [
  35621. {
  35622. name: "Micro",
  35623. height: math.unit(8, "inches")
  35624. },
  35625. {
  35626. name: "Tiny",
  35627. height: math.unit(2, "feet")
  35628. },
  35629. {
  35630. name: "Normal",
  35631. height: math.unit(4 + 1/12, "feet"),
  35632. default: true
  35633. },
  35634. ]
  35635. ))
  35636. characterMakers.push(() => makeCharacter(
  35637. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35638. {
  35639. front: {
  35640. height: math.unit(3 + 3/12, "feet"),
  35641. name: "Front",
  35642. image: {
  35643. source: "./media/characters/penny/front.svg",
  35644. extra: 1406/1311,
  35645. bottom: 26/1432
  35646. }
  35647. },
  35648. },
  35649. [
  35650. {
  35651. name: "Normal",
  35652. height: math.unit(3 + 3/12, "feet"),
  35653. default: true
  35654. },
  35655. ]
  35656. ))
  35657. characterMakers.push(() => makeCharacter(
  35658. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35659. {
  35660. front: {
  35661. height: math.unit(4 + 11/12, "feet"),
  35662. name: "Front",
  35663. image: {
  35664. source: "./media/characters/monty/front.svg",
  35665. extra: 1479/1209,
  35666. bottom: 0/1479
  35667. }
  35668. },
  35669. },
  35670. [
  35671. {
  35672. name: "Normal",
  35673. height: math.unit(4 + 11/12, "feet"),
  35674. default: true
  35675. },
  35676. ]
  35677. ))
  35678. characterMakers.push(() => makeCharacter(
  35679. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35680. {
  35681. front: {
  35682. height: math.unit(8 + 4/12, "feet"),
  35683. name: "Front",
  35684. image: {
  35685. source: "./media/characters/sterling/front.svg",
  35686. extra: 1420/1236,
  35687. bottom: 27/1447
  35688. }
  35689. },
  35690. },
  35691. [
  35692. {
  35693. name: "Normal",
  35694. height: math.unit(8 + 4/12, "feet"),
  35695. default: true
  35696. },
  35697. ]
  35698. ))
  35699. characterMakers.push(() => makeCharacter(
  35700. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35701. {
  35702. front: {
  35703. height: math.unit(15, "feet"),
  35704. name: "Front",
  35705. image: {
  35706. source: "./media/characters/marble/front.svg",
  35707. extra: 973/937,
  35708. bottom: 32/1005
  35709. }
  35710. },
  35711. },
  35712. [
  35713. {
  35714. name: "Normal",
  35715. height: math.unit(15, "feet"),
  35716. default: true
  35717. },
  35718. ]
  35719. ))
  35720. characterMakers.push(() => makeCharacter(
  35721. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35722. {
  35723. front: {
  35724. height: math.unit(3, "inches"),
  35725. name: "Front",
  35726. image: {
  35727. source: "./media/characters/powder/front.svg",
  35728. extra: 1504/1334,
  35729. bottom: 518/2022
  35730. }
  35731. },
  35732. },
  35733. [
  35734. {
  35735. name: "Normal",
  35736. height: math.unit(3, "inches"),
  35737. default: true
  35738. },
  35739. ]
  35740. ))
  35741. characterMakers.push(() => makeCharacter(
  35742. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35743. {
  35744. front: {
  35745. height: math.unit(4 + 5/12, "feet"),
  35746. name: "Front",
  35747. image: {
  35748. source: "./media/characters/joey-raccoon/front.svg",
  35749. extra: 1273/1197,
  35750. bottom: 0/1273
  35751. }
  35752. },
  35753. },
  35754. [
  35755. {
  35756. name: "Normal",
  35757. height: math.unit(4 + 5/12, "feet"),
  35758. default: true
  35759. },
  35760. ]
  35761. ))
  35762. characterMakers.push(() => makeCharacter(
  35763. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35764. {
  35765. front: {
  35766. height: math.unit(8 + 4/12, "feet"),
  35767. name: "Front",
  35768. image: {
  35769. source: "./media/characters/vick/front.svg",
  35770. extra: 2187/2118,
  35771. bottom: 47/2234
  35772. }
  35773. },
  35774. },
  35775. [
  35776. {
  35777. name: "Normal",
  35778. height: math.unit(8 + 4/12, "feet"),
  35779. default: true
  35780. },
  35781. ]
  35782. ))
  35783. characterMakers.push(() => makeCharacter(
  35784. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35785. {
  35786. front: {
  35787. height: math.unit(5 + 5/12, "feet"),
  35788. name: "Front",
  35789. image: {
  35790. source: "./media/characters/mitsy/front.svg",
  35791. extra: 1842/1695,
  35792. bottom: 0/1842
  35793. }
  35794. },
  35795. },
  35796. [
  35797. {
  35798. name: "Normal",
  35799. height: math.unit(5 + 5/12, "feet"),
  35800. default: true
  35801. },
  35802. ]
  35803. ))
  35804. characterMakers.push(() => makeCharacter(
  35805. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35806. {
  35807. front: {
  35808. height: math.unit(6 + 3/12, "feet"),
  35809. name: "Front",
  35810. image: {
  35811. source: "./media/characters/silvy/front.svg",
  35812. extra: 1995/1836,
  35813. bottom: 225/2220
  35814. }
  35815. },
  35816. },
  35817. [
  35818. {
  35819. name: "Normal",
  35820. height: math.unit(6 + 3/12, "feet"),
  35821. default: true
  35822. },
  35823. ]
  35824. ))
  35825. characterMakers.push(() => makeCharacter(
  35826. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35827. {
  35828. front: {
  35829. height: math.unit(3 + 8/12, "feet"),
  35830. name: "Front",
  35831. image: {
  35832. source: "./media/characters/rodney/front.svg",
  35833. extra: 1956/1747,
  35834. bottom: 31/1987
  35835. }
  35836. },
  35837. frontDressed: {
  35838. height: math.unit(2.9, "feet"),
  35839. name: "Front (Dressed)",
  35840. image: {
  35841. source: "./media/characters/rodney/front-dressed.svg",
  35842. extra: 1382/1241,
  35843. bottom: 385/1767
  35844. }
  35845. },
  35846. },
  35847. [
  35848. {
  35849. name: "Normal",
  35850. height: math.unit(3 + 8/12, "feet"),
  35851. default: true
  35852. },
  35853. ]
  35854. ))
  35855. characterMakers.push(() => makeCharacter(
  35856. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35857. {
  35858. front: {
  35859. height: math.unit(5 + 9/12, "feet"),
  35860. weight: math.unit(194, "lbs"),
  35861. name: "Front",
  35862. image: {
  35863. source: "./media/characters/zakail-sudekai/front.svg",
  35864. extra: 2696/2533,
  35865. bottom: 248/2944
  35866. }
  35867. },
  35868. maw: {
  35869. height: math.unit(1.35, "feet"),
  35870. name: "Maw",
  35871. image: {
  35872. source: "./media/characters/zakail-sudekai/maw.svg"
  35873. }
  35874. },
  35875. },
  35876. [
  35877. {
  35878. name: "Normal",
  35879. height: math.unit(5 + 9/12, "feet"),
  35880. default: true
  35881. },
  35882. ]
  35883. ))
  35884. characterMakers.push(() => makeCharacter(
  35885. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35886. {
  35887. front: {
  35888. height: math.unit(8 + 4/12, "feet"),
  35889. weight: math.unit(1200, "lb"),
  35890. name: "Front",
  35891. image: {
  35892. source: "./media/characters/eleanor/front.svg",
  35893. extra: 1226/1192,
  35894. bottom: 52/1278
  35895. }
  35896. },
  35897. back: {
  35898. height: math.unit(8 + 4/12, "feet"),
  35899. weight: math.unit(1200, "lb"),
  35900. name: "Back",
  35901. image: {
  35902. source: "./media/characters/eleanor/back.svg",
  35903. extra: 1242/1184,
  35904. bottom: 60/1302
  35905. }
  35906. },
  35907. head: {
  35908. height: math.unit(2.62, "feet"),
  35909. name: "Head",
  35910. image: {
  35911. source: "./media/characters/eleanor/head.svg"
  35912. }
  35913. },
  35914. },
  35915. [
  35916. {
  35917. name: "Normal",
  35918. height: math.unit(8 + 4/12, "feet"),
  35919. default: true
  35920. },
  35921. ]
  35922. ))
  35923. characterMakers.push(() => makeCharacter(
  35924. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35925. {
  35926. front: {
  35927. height: math.unit(8 + 4/12, "feet"),
  35928. weight: math.unit(750, "lb"),
  35929. name: "Front",
  35930. image: {
  35931. source: "./media/characters/tanya/front.svg",
  35932. extra: 1749/1615,
  35933. bottom: 33/1782
  35934. }
  35935. },
  35936. },
  35937. [
  35938. {
  35939. name: "Normal",
  35940. height: math.unit(8 + 4/12, "feet"),
  35941. default: true
  35942. },
  35943. ]
  35944. ))
  35945. characterMakers.push(() => makeCharacter(
  35946. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35947. {
  35948. front: {
  35949. height: math.unit(5, "feet"),
  35950. weight: math.unit(225, "lb"),
  35951. name: "Front",
  35952. image: {
  35953. source: "./media/characters/cindy/front.svg",
  35954. extra: 1320/1250,
  35955. bottom: 42/1362
  35956. }
  35957. },
  35958. frontDressed: {
  35959. height: math.unit(5, "feet"),
  35960. weight: math.unit(225, "lb"),
  35961. name: "Front (Dressed)",
  35962. image: {
  35963. source: "./media/characters/cindy/front-dressed.svg",
  35964. extra: 1320/1250,
  35965. bottom: 42/1362
  35966. }
  35967. },
  35968. back: {
  35969. height: math.unit(5, "feet"),
  35970. weight: math.unit(225, "lb"),
  35971. name: "Back",
  35972. image: {
  35973. source: "./media/characters/cindy/back.svg",
  35974. extra: 1384/1346,
  35975. bottom: 14/1398
  35976. }
  35977. },
  35978. },
  35979. [
  35980. {
  35981. name: "Normal",
  35982. height: math.unit(5, "feet"),
  35983. default: true
  35984. },
  35985. ]
  35986. ))
  35987. characterMakers.push(() => makeCharacter(
  35988. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35989. {
  35990. front: {
  35991. height: math.unit(6 + 9/12, "feet"),
  35992. weight: math.unit(440, "lb"),
  35993. name: "Front",
  35994. image: {
  35995. source: "./media/characters/wilbur-owen/front.svg",
  35996. extra: 1575/1448,
  35997. bottom: 72/1647
  35998. }
  35999. },
  36000. back: {
  36001. height: math.unit(6 + 9/12, "feet"),
  36002. weight: math.unit(440, "lb"),
  36003. name: "Back",
  36004. image: {
  36005. source: "./media/characters/wilbur-owen/back.svg",
  36006. extra: 1578/1445,
  36007. bottom: 36/1614
  36008. }
  36009. },
  36010. },
  36011. [
  36012. {
  36013. name: "Normal",
  36014. height: math.unit(6 + 9/12, "feet"),
  36015. default: true
  36016. },
  36017. ]
  36018. ))
  36019. characterMakers.push(() => makeCharacter(
  36020. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36021. {
  36022. front: {
  36023. height: math.unit(6 + 5/12, "feet"),
  36024. weight: math.unit(650, "lb"),
  36025. name: "Front",
  36026. image: {
  36027. source: "./media/characters/keegan/front.svg",
  36028. extra: 2387/2198,
  36029. bottom: 33/2420
  36030. }
  36031. },
  36032. side: {
  36033. height: math.unit(6 + 5/12, "feet"),
  36034. weight: math.unit(650, "lb"),
  36035. name: "Side",
  36036. image: {
  36037. source: "./media/characters/keegan/side.svg",
  36038. extra: 2390/2202,
  36039. bottom: 47/2437
  36040. }
  36041. },
  36042. back: {
  36043. height: math.unit(6 + 5/12, "feet"),
  36044. weight: math.unit(650, "lb"),
  36045. name: "Back",
  36046. image: {
  36047. source: "./media/characters/keegan/back.svg",
  36048. extra: 2418/2268,
  36049. bottom: 15/2433
  36050. }
  36051. },
  36052. frontSfw: {
  36053. height: math.unit(6 + 5/12, "feet"),
  36054. weight: math.unit(650, "lb"),
  36055. name: "Front (SFW)",
  36056. image: {
  36057. source: "./media/characters/keegan/front-sfw.svg",
  36058. extra: 2387/2198,
  36059. bottom: 33/2420
  36060. }
  36061. },
  36062. beans: {
  36063. height: math.unit(1.85, "feet"),
  36064. name: "Beans",
  36065. image: {
  36066. source: "./media/characters/keegan/beans.svg"
  36067. }
  36068. },
  36069. },
  36070. [
  36071. {
  36072. name: "Normal",
  36073. height: math.unit(6 + 5/12, "feet"),
  36074. default: true
  36075. },
  36076. ]
  36077. ))
  36078. characterMakers.push(() => makeCharacter(
  36079. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36080. {
  36081. front: {
  36082. height: math.unit(9, "feet"),
  36083. name: "Front",
  36084. image: {
  36085. source: "./media/characters/colton/front.svg",
  36086. extra: 1589/1326,
  36087. bottom: 139/1728
  36088. }
  36089. },
  36090. },
  36091. [
  36092. {
  36093. name: "Normal",
  36094. height: math.unit(9, "feet"),
  36095. default: true
  36096. },
  36097. ]
  36098. ))
  36099. characterMakers.push(() => makeCharacter(
  36100. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36101. {
  36102. front: {
  36103. height: math.unit(2 + 9/12, "feet"),
  36104. name: "Front",
  36105. image: {
  36106. source: "./media/characters/bora/front.svg",
  36107. extra: 1265/1250,
  36108. bottom: 24/1289
  36109. }
  36110. },
  36111. },
  36112. [
  36113. {
  36114. name: "Normal",
  36115. height: math.unit(2 + 9/12, "feet"),
  36116. default: true
  36117. },
  36118. ]
  36119. ))
  36120. characterMakers.push(() => makeCharacter(
  36121. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36122. {
  36123. front: {
  36124. height: math.unit(8, "feet"),
  36125. name: "Front",
  36126. image: {
  36127. source: "./media/characters/myu-myu/front.svg",
  36128. extra: 1949/1857,
  36129. bottom: 90/2039
  36130. }
  36131. },
  36132. },
  36133. [
  36134. {
  36135. name: "Normal",
  36136. height: math.unit(8, "feet"),
  36137. default: true
  36138. },
  36139. {
  36140. name: "Big",
  36141. height: math.unit(15, "feet")
  36142. },
  36143. {
  36144. name: "BIG",
  36145. height: math.unit(25, "feet")
  36146. },
  36147. ]
  36148. ))
  36149. characterMakers.push(() => makeCharacter(
  36150. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36151. {
  36152. side: {
  36153. height: math.unit(7 + 5/12, "feet"),
  36154. weight: math.unit(2800, "lb"),
  36155. name: "Side",
  36156. image: {
  36157. source: "./media/characters/haloren/side.svg",
  36158. extra: 1793/409,
  36159. bottom: 59/1852
  36160. }
  36161. },
  36162. frontPaw: {
  36163. height: math.unit(2.36, "feet"),
  36164. name: "Front paw",
  36165. image: {
  36166. source: "./media/characters/haloren/front-paw.svg"
  36167. }
  36168. },
  36169. hindPaw: {
  36170. height: math.unit(3.18, "feet"),
  36171. name: "Hind paw",
  36172. image: {
  36173. source: "./media/characters/haloren/hind-paw.svg"
  36174. }
  36175. },
  36176. maw: {
  36177. height: math.unit(5.05, "feet"),
  36178. name: "Maw",
  36179. image: {
  36180. source: "./media/characters/haloren/maw.svg"
  36181. }
  36182. },
  36183. dick: {
  36184. height: math.unit(2.90, "feet"),
  36185. name: "Dick",
  36186. image: {
  36187. source: "./media/characters/haloren/dick.svg"
  36188. }
  36189. },
  36190. },
  36191. [
  36192. {
  36193. name: "Normal",
  36194. height: math.unit(7 + 5/12, "feet"),
  36195. default: true
  36196. },
  36197. {
  36198. name: "Enhanced",
  36199. height: math.unit(14 + 3/12, "feet")
  36200. },
  36201. ]
  36202. ))
  36203. characterMakers.push(() => makeCharacter(
  36204. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36205. {
  36206. front: {
  36207. height: math.unit(171, "cm"),
  36208. name: "Front",
  36209. image: {
  36210. source: "./media/characters/kimmy/front.svg",
  36211. extra: 1491/1435,
  36212. bottom: 53/1544
  36213. }
  36214. },
  36215. },
  36216. [
  36217. {
  36218. name: "Small",
  36219. height: math.unit(9, "cm")
  36220. },
  36221. {
  36222. name: "Normal",
  36223. height: math.unit(171, "cm"),
  36224. default: true
  36225. },
  36226. ]
  36227. ))
  36228. characterMakers.push(() => makeCharacter(
  36229. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36230. {
  36231. front: {
  36232. height: math.unit(8, "feet"),
  36233. weight: math.unit(300, "lb"),
  36234. name: "Front",
  36235. image: {
  36236. source: "./media/characters/galeboomer/front.svg",
  36237. extra: 4651/4415,
  36238. bottom: 162/4813
  36239. }
  36240. },
  36241. back: {
  36242. height: math.unit(8, "feet"),
  36243. weight: math.unit(300, "lb"),
  36244. name: "Back",
  36245. image: {
  36246. source: "./media/characters/galeboomer/back.svg",
  36247. extra: 4544/4314,
  36248. bottom: 16/4560
  36249. }
  36250. },
  36251. frontAlt: {
  36252. height: math.unit(8, "feet"),
  36253. weight: math.unit(300, "lb"),
  36254. name: "Front (Alt)",
  36255. image: {
  36256. source: "./media/characters/galeboomer/front-alt.svg",
  36257. extra: 4458/4228,
  36258. bottom: 68/4526
  36259. }
  36260. },
  36261. maw: {
  36262. height: math.unit(1.2, "feet"),
  36263. name: "Maw",
  36264. image: {
  36265. source: "./media/characters/galeboomer/maw.svg"
  36266. }
  36267. },
  36268. },
  36269. [
  36270. {
  36271. name: "Normal",
  36272. height: math.unit(8, "feet"),
  36273. default: true
  36274. },
  36275. ]
  36276. ))
  36277. characterMakers.push(() => makeCharacter(
  36278. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36279. {
  36280. front: {
  36281. height: math.unit(5 + 9/12, "feet"),
  36282. weight: math.unit(120, "lb"),
  36283. name: "Front",
  36284. image: {
  36285. source: "./media/characters/chyr/front.svg",
  36286. extra: 1323/1254,
  36287. bottom: 63/1386
  36288. }
  36289. },
  36290. back: {
  36291. height: math.unit(5 + 9/12, "feet"),
  36292. weight: math.unit(120, "lb"),
  36293. name: "Back",
  36294. image: {
  36295. source: "./media/characters/chyr/back.svg",
  36296. extra: 1323/1252,
  36297. bottom: 48/1371
  36298. }
  36299. },
  36300. },
  36301. [
  36302. {
  36303. name: "Normal",
  36304. height: math.unit(5 + 9/12, "feet"),
  36305. default: true
  36306. },
  36307. ]
  36308. ))
  36309. characterMakers.push(() => makeCharacter(
  36310. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36311. {
  36312. front: {
  36313. height: math.unit(7, "feet"),
  36314. weight: math.unit(310, "lb"),
  36315. name: "Front",
  36316. image: {
  36317. source: "./media/characters/solarus/front.svg",
  36318. extra: 2415/2021,
  36319. bottom: 103/2518
  36320. }
  36321. },
  36322. back: {
  36323. height: math.unit(7, "feet"),
  36324. weight: math.unit(310, "lb"),
  36325. name: "Back",
  36326. image: {
  36327. source: "./media/characters/solarus/back.svg",
  36328. extra: 2463/2089,
  36329. bottom: 79/2542
  36330. }
  36331. },
  36332. },
  36333. [
  36334. {
  36335. name: "Normal",
  36336. height: math.unit(7, "feet"),
  36337. default: true
  36338. },
  36339. ]
  36340. ))
  36341. characterMakers.push(() => makeCharacter(
  36342. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36343. {
  36344. front: {
  36345. height: math.unit(16, "feet"),
  36346. name: "Front",
  36347. image: {
  36348. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36349. extra: 1844/1780,
  36350. bottom: 58/1902
  36351. }
  36352. },
  36353. winterCoat: {
  36354. height: math.unit(16, "feet"),
  36355. name: "Winter Coat",
  36356. image: {
  36357. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36358. extra: 1807/1775,
  36359. bottom: 69/1876
  36360. }
  36361. },
  36362. },
  36363. [
  36364. {
  36365. name: "Normal",
  36366. height: math.unit(16, "feet"),
  36367. default: true
  36368. },
  36369. {
  36370. name: "Chicago Size",
  36371. height: math.unit(560, "feet")
  36372. },
  36373. ]
  36374. ))
  36375. characterMakers.push(() => makeCharacter(
  36376. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36377. {
  36378. front: {
  36379. height: math.unit(11 + 6/12, "feet"),
  36380. weight: math.unit(1366, "lb"),
  36381. name: "Front",
  36382. image: {
  36383. source: "./media/characters/lexor/front.svg",
  36384. extra: 1560/1481,
  36385. bottom: 211/1771
  36386. }
  36387. },
  36388. back: {
  36389. height: math.unit(11 + 6/12, "feet"),
  36390. weight: math.unit(1366, "lb"),
  36391. name: "Back",
  36392. image: {
  36393. source: "./media/characters/lexor/back.svg",
  36394. extra: 1614/1533,
  36395. bottom: 76/1690
  36396. }
  36397. },
  36398. maw: {
  36399. height: math.unit(3, "feet"),
  36400. name: "Maw",
  36401. image: {
  36402. source: "./media/characters/lexor/maw.svg"
  36403. }
  36404. },
  36405. dick: {
  36406. height: math.unit(2.59, "feet"),
  36407. name: "Dick",
  36408. image: {
  36409. source: "./media/characters/lexor/dick.svg"
  36410. }
  36411. },
  36412. },
  36413. [
  36414. {
  36415. name: "Normal",
  36416. height: math.unit(11 + 6/12, "feet"),
  36417. default: true
  36418. },
  36419. ]
  36420. ))
  36421. characterMakers.push(() => makeCharacter(
  36422. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36423. {
  36424. front: {
  36425. height: math.unit(5 + 8/12, "feet"),
  36426. name: "Front",
  36427. image: {
  36428. source: "./media/characters/magnum/front.svg",
  36429. extra: 942/855,
  36430. bottom: 26/968
  36431. }
  36432. },
  36433. },
  36434. [
  36435. {
  36436. name: "Normal",
  36437. height: math.unit(5 + 8/12, "feet"),
  36438. default: true
  36439. },
  36440. ]
  36441. ))
  36442. characterMakers.push(() => makeCharacter(
  36443. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36444. {
  36445. front: {
  36446. height: math.unit(18 + 4/12, "feet"),
  36447. weight: math.unit(1500, "kg"),
  36448. name: "Front",
  36449. image: {
  36450. source: "./media/characters/solas-sharpsman/front.svg",
  36451. extra: 1698/1589,
  36452. bottom: 0/1698
  36453. }
  36454. },
  36455. },
  36456. [
  36457. {
  36458. name: "Normal",
  36459. height: math.unit(18 + 4/12, "feet"),
  36460. default: true
  36461. },
  36462. ]
  36463. ))
  36464. characterMakers.push(() => makeCharacter(
  36465. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36466. {
  36467. front: {
  36468. height: math.unit(5 + 5/12, "feet"),
  36469. weight: math.unit(180, "lb"),
  36470. name: "Front",
  36471. image: {
  36472. source: "./media/characters/october/front.svg",
  36473. extra: 1800/1650,
  36474. bottom: 0/1800
  36475. }
  36476. },
  36477. frontNsfw: {
  36478. height: math.unit(5 + 5/12, "feet"),
  36479. weight: math.unit(180, "lb"),
  36480. name: "Front (NSFW)",
  36481. image: {
  36482. source: "./media/characters/october/front-nsfw.svg",
  36483. extra: 1392/1307,
  36484. bottom: 42/1434
  36485. }
  36486. },
  36487. },
  36488. [
  36489. {
  36490. name: "Normal",
  36491. height: math.unit(5 + 5/12, "feet"),
  36492. default: true
  36493. },
  36494. ]
  36495. ))
  36496. characterMakers.push(() => makeCharacter(
  36497. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36498. {
  36499. front: {
  36500. height: math.unit(8 + 6/12, "feet"),
  36501. name: "Front",
  36502. image: {
  36503. source: "./media/characters/essynkardi/front.svg",
  36504. extra: 1914/1846,
  36505. bottom: 22/1936
  36506. }
  36507. },
  36508. },
  36509. [
  36510. {
  36511. name: "Normal",
  36512. height: math.unit(8 + 6/12, "feet"),
  36513. default: true
  36514. },
  36515. ]
  36516. ))
  36517. characterMakers.push(() => makeCharacter(
  36518. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36519. {
  36520. front: {
  36521. height: math.unit(6 + 6/12, "feet"),
  36522. weight: math.unit(7, "lb"),
  36523. name: "Front",
  36524. image: {
  36525. source: "./media/characters/icky/front.svg",
  36526. extra: 813/782,
  36527. bottom: 66/879
  36528. }
  36529. },
  36530. back: {
  36531. height: math.unit(6 + 6/12, "feet"),
  36532. weight: math.unit(7, "lb"),
  36533. name: "Back",
  36534. image: {
  36535. source: "./media/characters/icky/back.svg",
  36536. extra: 754/735,
  36537. bottom: 56/810
  36538. }
  36539. },
  36540. },
  36541. [
  36542. {
  36543. name: "Normal",
  36544. height: math.unit(6 + 6/12, "feet"),
  36545. default: true
  36546. },
  36547. ]
  36548. ))
  36549. characterMakers.push(() => makeCharacter(
  36550. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36551. {
  36552. front: {
  36553. height: math.unit(15, "feet"),
  36554. name: "Front",
  36555. image: {
  36556. source: "./media/characters/rojas/front.svg",
  36557. extra: 1462/1408,
  36558. bottom: 95/1557
  36559. }
  36560. },
  36561. back: {
  36562. height: math.unit(15, "feet"),
  36563. name: "Back",
  36564. image: {
  36565. source: "./media/characters/rojas/back.svg",
  36566. extra: 1023/954,
  36567. bottom: 28/1051
  36568. }
  36569. },
  36570. },
  36571. [
  36572. {
  36573. name: "Normal",
  36574. height: math.unit(15, "feet"),
  36575. default: true
  36576. },
  36577. ]
  36578. ))
  36579. characterMakers.push(() => makeCharacter(
  36580. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36581. {
  36582. frontHuman: {
  36583. height: math.unit(5 + 7/12, "feet"),
  36584. name: "Front (Human)",
  36585. image: {
  36586. source: "./media/characters/alek-dryagan/front-human.svg",
  36587. extra: 1687/1667,
  36588. bottom: 69/1756
  36589. }
  36590. },
  36591. backHuman: {
  36592. height: math.unit(5 + 7/12, "feet"),
  36593. name: "Back (Human)",
  36594. image: {
  36595. source: "./media/characters/alek-dryagan/back-human.svg",
  36596. extra: 1670/1649,
  36597. bottom: 65/1735
  36598. }
  36599. },
  36600. frontDemi: {
  36601. height: math.unit(65, "feet"),
  36602. name: "Front (Demi)",
  36603. image: {
  36604. source: "./media/characters/alek-dryagan/front-demi.svg",
  36605. extra: 1669/1642,
  36606. bottom: 49/1718
  36607. }
  36608. },
  36609. backDemi: {
  36610. height: math.unit(65, "feet"),
  36611. name: "Back (Demi)",
  36612. image: {
  36613. source: "./media/characters/alek-dryagan/back-demi.svg",
  36614. extra: 1658/1637,
  36615. bottom: 40/1698
  36616. }
  36617. },
  36618. mawHuman: {
  36619. height: math.unit(0.3, "feet"),
  36620. name: "Maw (Human)",
  36621. image: {
  36622. source: "./media/characters/alek-dryagan/maw-human.svg"
  36623. }
  36624. },
  36625. mawDemi: {
  36626. height: math.unit(3.8, "feet"),
  36627. name: "Maw (Demi)",
  36628. image: {
  36629. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36630. }
  36631. },
  36632. },
  36633. [
  36634. {
  36635. name: "Normal",
  36636. height: math.unit(5 + 7/12, "feet"),
  36637. default: true
  36638. },
  36639. ]
  36640. ))
  36641. characterMakers.push(() => makeCharacter(
  36642. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36643. {
  36644. frontHuman: {
  36645. height: math.unit(5 + 2/12, "feet"),
  36646. name: "Front (Human)",
  36647. image: {
  36648. source: "./media/characters/gen/front-human.svg",
  36649. extra: 1627/1538,
  36650. bottom: 71/1698
  36651. }
  36652. },
  36653. backHuman: {
  36654. height: math.unit(5 + 2/12, "feet"),
  36655. name: "Back (Human)",
  36656. image: {
  36657. source: "./media/characters/gen/back-human.svg",
  36658. extra: 1638/1548,
  36659. bottom: 69/1707
  36660. }
  36661. },
  36662. frontDemi: {
  36663. height: math.unit(5 + 2/12, "feet"),
  36664. name: "Front (Demi)",
  36665. image: {
  36666. source: "./media/characters/gen/front-demi.svg",
  36667. extra: 1627/1538,
  36668. bottom: 71/1698
  36669. }
  36670. },
  36671. backDemi: {
  36672. height: math.unit(5 + 2/12, "feet"),
  36673. name: "Back (Demi)",
  36674. image: {
  36675. source: "./media/characters/gen/back-demi.svg",
  36676. extra: 1638/1548,
  36677. bottom: 69/1707
  36678. }
  36679. },
  36680. },
  36681. [
  36682. {
  36683. name: "Normal",
  36684. height: math.unit(5 + 2/12, "feet"),
  36685. default: true
  36686. },
  36687. ]
  36688. ))
  36689. characterMakers.push(() => makeCharacter(
  36690. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36691. {
  36692. frontImp: {
  36693. height: math.unit(1 + 11/12, "feet"),
  36694. name: "Front (Imp)",
  36695. image: {
  36696. source: "./media/characters/max-kobold/front-imp.svg",
  36697. extra: 1238/1134,
  36698. bottom: 81/1319
  36699. }
  36700. },
  36701. backImp: {
  36702. height: math.unit(1 + 11/12, "feet"),
  36703. name: "Back (Imp)",
  36704. image: {
  36705. source: "./media/characters/max-kobold/back-imp.svg",
  36706. extra: 1334/1175,
  36707. bottom: 34/1368
  36708. }
  36709. },
  36710. frontDemi: {
  36711. height: math.unit(5 + 9/12, "feet"),
  36712. name: "Front (Demi)",
  36713. image: {
  36714. source: "./media/characters/max-kobold/front-demi.svg",
  36715. extra: 1715/1685,
  36716. bottom: 54/1769
  36717. }
  36718. },
  36719. backDemi: {
  36720. height: math.unit(5 + 9/12, "feet"),
  36721. name: "Back (Demi)",
  36722. image: {
  36723. source: "./media/characters/max-kobold/back-demi.svg",
  36724. extra: 1752/1729,
  36725. bottom: 41/1793
  36726. }
  36727. },
  36728. handImp: {
  36729. height: math.unit(0.45, "feet"),
  36730. name: "Hand (Imp)",
  36731. image: {
  36732. source: "./media/characters/max-kobold/hand.svg"
  36733. }
  36734. },
  36735. pawImp: {
  36736. height: math.unit(0.46, "feet"),
  36737. name: "Paw (Imp)",
  36738. image: {
  36739. source: "./media/characters/max-kobold/paw.svg"
  36740. }
  36741. },
  36742. handDemi: {
  36743. height: math.unit(0.80, "feet"),
  36744. name: "Hand (Demi)",
  36745. image: {
  36746. source: "./media/characters/max-kobold/hand.svg"
  36747. }
  36748. },
  36749. pawDemi: {
  36750. height: math.unit(1.1, "feet"),
  36751. name: "Paw (Demi)",
  36752. image: {
  36753. source: "./media/characters/max-kobold/paw.svg"
  36754. }
  36755. },
  36756. headImp: {
  36757. height: math.unit(1.33, "feet"),
  36758. name: "Head (Imp)",
  36759. image: {
  36760. source: "./media/characters/max-kobold/head-imp.svg"
  36761. }
  36762. },
  36763. mawImp: {
  36764. height: math.unit(0.75, "feet"),
  36765. name: "Maw (Imp)",
  36766. image: {
  36767. source: "./media/characters/max-kobold/maw-imp.svg"
  36768. }
  36769. },
  36770. mawDemi: {
  36771. height: math.unit(0.42, "feet"),
  36772. name: "Maw (Demi)",
  36773. image: {
  36774. source: "./media/characters/max-kobold/maw-demi.svg"
  36775. }
  36776. },
  36777. },
  36778. [
  36779. {
  36780. name: "Normal",
  36781. height: math.unit(1 + 11/12, "feet"),
  36782. default: true
  36783. },
  36784. ]
  36785. ))
  36786. characterMakers.push(() => makeCharacter(
  36787. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36788. {
  36789. front: {
  36790. height: math.unit(7 + 5/12, "feet"),
  36791. name: "Front",
  36792. image: {
  36793. source: "./media/characters/carbon/front.svg",
  36794. extra: 1754/1689,
  36795. bottom: 65/1819
  36796. }
  36797. },
  36798. back: {
  36799. height: math.unit(7 + 5/12, "feet"),
  36800. name: "Back",
  36801. image: {
  36802. source: "./media/characters/carbon/back.svg",
  36803. extra: 1762/1695,
  36804. bottom: 24/1786
  36805. }
  36806. },
  36807. frontGigantamax: {
  36808. height: math.unit(150, "feet"),
  36809. name: "Front (Gigantamax)",
  36810. image: {
  36811. source: "./media/characters/carbon/front-gigantamax.svg",
  36812. extra: 1826/1669,
  36813. bottom: 59/1885
  36814. }
  36815. },
  36816. backGigantamax: {
  36817. height: math.unit(150, "feet"),
  36818. name: "Back (Gigantamax)",
  36819. image: {
  36820. source: "./media/characters/carbon/back-gigantamax.svg",
  36821. extra: 1796/1653,
  36822. bottom: 53/1849
  36823. }
  36824. },
  36825. maw: {
  36826. height: math.unit(0.48, "feet"),
  36827. name: "Maw",
  36828. image: {
  36829. source: "./media/characters/carbon/maw.svg"
  36830. }
  36831. },
  36832. mawGigantamax: {
  36833. height: math.unit(7.5, "feet"),
  36834. name: "Maw (Gigantamax)",
  36835. image: {
  36836. source: "./media/characters/carbon/maw-gigantamax.svg"
  36837. }
  36838. },
  36839. },
  36840. [
  36841. {
  36842. name: "Normal",
  36843. height: math.unit(7 + 5/12, "feet"),
  36844. default: true
  36845. },
  36846. ]
  36847. ))
  36848. characterMakers.push(() => makeCharacter(
  36849. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36850. {
  36851. front: {
  36852. height: math.unit(6, "feet"),
  36853. name: "Front",
  36854. image: {
  36855. source: "./media/characters/maverick/front.svg",
  36856. extra: 1672/1661,
  36857. bottom: 85/1757
  36858. }
  36859. },
  36860. back: {
  36861. height: math.unit(6, "feet"),
  36862. name: "Back",
  36863. image: {
  36864. source: "./media/characters/maverick/back.svg",
  36865. extra: 1642/1631,
  36866. bottom: 38/1680
  36867. }
  36868. },
  36869. },
  36870. [
  36871. {
  36872. name: "Normal",
  36873. height: math.unit(6, "feet"),
  36874. default: true
  36875. },
  36876. ]
  36877. ))
  36878. characterMakers.push(() => makeCharacter(
  36879. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36880. {
  36881. front: {
  36882. height: math.unit(15, "feet"),
  36883. weight: math.unit(615, "lb"),
  36884. name: "Front",
  36885. image: {
  36886. source: "./media/characters/grockle/front.svg",
  36887. extra: 1535/1427,
  36888. bottom: 56/1591
  36889. }
  36890. },
  36891. },
  36892. [
  36893. {
  36894. name: "Normal",
  36895. height: math.unit(15, "feet"),
  36896. default: true
  36897. },
  36898. {
  36899. name: "Large",
  36900. height: math.unit(150, "feet")
  36901. },
  36902. {
  36903. name: "Macro",
  36904. height: math.unit(1876, "feet")
  36905. },
  36906. {
  36907. name: "Mega Macro",
  36908. height: math.unit(121940, "feet")
  36909. },
  36910. {
  36911. name: "Giga Macro",
  36912. height: math.unit(750, "km")
  36913. },
  36914. {
  36915. name: "Tera Macro",
  36916. height: math.unit(750000, "km")
  36917. },
  36918. {
  36919. name: "Galactic",
  36920. height: math.unit(1.4e5, "km")
  36921. },
  36922. {
  36923. name: "Godlike",
  36924. height: math.unit(9.8e280, "galaxies")
  36925. },
  36926. ]
  36927. ))
  36928. characterMakers.push(() => makeCharacter(
  36929. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36930. {
  36931. front: {
  36932. height: math.unit(11, "meters"),
  36933. weight: math.unit(20, "tonnes"),
  36934. name: "Front",
  36935. image: {
  36936. source: "./media/characters/alistair/front.svg",
  36937. extra: 1265/1009,
  36938. bottom: 93/1358
  36939. }
  36940. },
  36941. },
  36942. [
  36943. {
  36944. name: "Normal",
  36945. height: math.unit(11, "meters"),
  36946. default: true
  36947. },
  36948. ]
  36949. ))
  36950. characterMakers.push(() => makeCharacter(
  36951. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36952. {
  36953. front: {
  36954. height: math.unit(5 + 8/12, "feet"),
  36955. name: "Front",
  36956. image: {
  36957. source: "./media/characters/haruka/front.svg",
  36958. extra: 2012/1952,
  36959. bottom: 0/2012
  36960. }
  36961. },
  36962. },
  36963. [
  36964. {
  36965. name: "Normal",
  36966. height: math.unit(5 + 8/12, "feet"),
  36967. default: true
  36968. },
  36969. ]
  36970. ))
  36971. characterMakers.push(() => makeCharacter(
  36972. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36973. {
  36974. back: {
  36975. height: math.unit(9, "feet"),
  36976. name: "Back",
  36977. image: {
  36978. source: "./media/characters/vivian-sylveon/back.svg",
  36979. extra: 1853/1714,
  36980. bottom: 0/1853
  36981. }
  36982. },
  36983. },
  36984. [
  36985. {
  36986. name: "Normal",
  36987. height: math.unit(9, "feet"),
  36988. default: true
  36989. },
  36990. {
  36991. name: "Macro",
  36992. height: math.unit(500, "feet")
  36993. },
  36994. {
  36995. name: "Megamacro",
  36996. height: math.unit(600, "miles")
  36997. },
  36998. {
  36999. name: "Gigamacro",
  37000. height: math.unit(30000, "miles")
  37001. },
  37002. ]
  37003. ))
  37004. characterMakers.push(() => makeCharacter(
  37005. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37006. {
  37007. anthro: {
  37008. height: math.unit(5 + 10/12, "feet"),
  37009. weight: math.unit(100, "lb"),
  37010. name: "Anthro",
  37011. image: {
  37012. source: "./media/characters/daiki/anthro.svg",
  37013. extra: 1115/1027,
  37014. bottom: 69/1184
  37015. }
  37016. },
  37017. feral: {
  37018. height: math.unit(200, "feet"),
  37019. name: "Feral",
  37020. image: {
  37021. source: "./media/characters/daiki/feral.svg",
  37022. extra: 1256/313,
  37023. bottom: 39/1295
  37024. }
  37025. },
  37026. feralHead: {
  37027. height: math.unit(171, "feet"),
  37028. name: "Feral Head",
  37029. image: {
  37030. source: "./media/characters/daiki/feral-head.svg"
  37031. }
  37032. },
  37033. manaDragon: {
  37034. height: math.unit(170, "meters"),
  37035. name: "Mana-dragon",
  37036. image: {
  37037. source: "./media/characters/daiki/mana-dragon.svg",
  37038. extra: 763/420,
  37039. bottom: 97/860
  37040. }
  37041. },
  37042. },
  37043. [
  37044. {
  37045. name: "Normal",
  37046. height: math.unit(5 + 10/12, "feet"),
  37047. default: true
  37048. },
  37049. ]
  37050. ))
  37051. characterMakers.push(() => makeCharacter(
  37052. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37053. {
  37054. fullyEquippedFront: {
  37055. height: math.unit(3 + 1/12, "feet"),
  37056. weight: math.unit(24, "lb"),
  37057. name: "Fully Equipped (Front)",
  37058. image: {
  37059. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37060. extra: 687/605,
  37061. bottom: 18/705
  37062. }
  37063. },
  37064. fullyEquippedBack: {
  37065. height: math.unit(3 + 1/12, "feet"),
  37066. weight: math.unit(24, "lb"),
  37067. name: "Fully Equipped (Back)",
  37068. image: {
  37069. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37070. extra: 689/590,
  37071. bottom: 18/707
  37072. }
  37073. },
  37074. dailyWear: {
  37075. height: math.unit(3 + 1/12, "feet"),
  37076. weight: math.unit(24, "lb"),
  37077. name: "Daily Wear",
  37078. image: {
  37079. source: "./media/characters/tea-spot/daily-wear.svg",
  37080. extra: 701/620,
  37081. bottom: 21/722
  37082. }
  37083. },
  37084. maidWork: {
  37085. height: math.unit(3 + 1/12, "feet"),
  37086. weight: math.unit(24, "lb"),
  37087. name: "Maid Work",
  37088. image: {
  37089. source: "./media/characters/tea-spot/maid-work.svg",
  37090. extra: 693/609,
  37091. bottom: 15/708
  37092. }
  37093. },
  37094. },
  37095. [
  37096. {
  37097. name: "Normal",
  37098. height: math.unit(3 + 1/12, "feet"),
  37099. default: true
  37100. },
  37101. ]
  37102. ))
  37103. characterMakers.push(() => makeCharacter(
  37104. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37105. {
  37106. front: {
  37107. height: math.unit(175, "cm"),
  37108. weight: math.unit(75, "kg"),
  37109. name: "Front",
  37110. image: {
  37111. source: "./media/characters/chee/front.svg",
  37112. extra: 1796/1740,
  37113. bottom: 40/1836
  37114. }
  37115. },
  37116. },
  37117. [
  37118. {
  37119. name: "Micro-Micro",
  37120. height: math.unit(1, "nm")
  37121. },
  37122. {
  37123. name: "Micro-erst",
  37124. height: math.unit(1, "micrometer")
  37125. },
  37126. {
  37127. name: "Micro-er",
  37128. height: math.unit(1, "cm")
  37129. },
  37130. {
  37131. name: "Normal",
  37132. height: math.unit(175, "cm"),
  37133. default: true
  37134. },
  37135. {
  37136. name: "Macro",
  37137. height: math.unit(100, "m")
  37138. },
  37139. {
  37140. name: "Macro-er",
  37141. height: math.unit(1, "km")
  37142. },
  37143. {
  37144. name: "Macro-erst",
  37145. height: math.unit(10, "km")
  37146. },
  37147. {
  37148. name: "Macro-Macro",
  37149. height: math.unit(100, "km")
  37150. },
  37151. ]
  37152. ))
  37153. characterMakers.push(() => makeCharacter(
  37154. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37155. {
  37156. front: {
  37157. height: math.unit(11 + 9/12, "feet"),
  37158. weight: math.unit(935, "lb"),
  37159. name: "Front",
  37160. image: {
  37161. source: "./media/characters/kingsley/front.svg",
  37162. extra: 1803/1674,
  37163. bottom: 127/1930
  37164. }
  37165. },
  37166. frontNude: {
  37167. height: math.unit(11 + 9/12, "feet"),
  37168. weight: math.unit(935, "lb"),
  37169. name: "Front (Nude)",
  37170. image: {
  37171. source: "./media/characters/kingsley/front-nude.svg",
  37172. extra: 1803/1674,
  37173. bottom: 127/1930
  37174. }
  37175. },
  37176. },
  37177. [
  37178. {
  37179. name: "Normal",
  37180. height: math.unit(11 + 9/12, "feet"),
  37181. default: true
  37182. },
  37183. ]
  37184. ))
  37185. characterMakers.push(() => makeCharacter(
  37186. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37187. {
  37188. side: {
  37189. height: math.unit(9, "feet"),
  37190. name: "Side",
  37191. image: {
  37192. source: "./media/characters/rymel/side.svg",
  37193. extra: 792/469,
  37194. bottom: 121/913
  37195. }
  37196. },
  37197. maw: {
  37198. height: math.unit(2.4, "meters"),
  37199. name: "Maw",
  37200. image: {
  37201. source: "./media/characters/rymel/maw.svg"
  37202. }
  37203. },
  37204. },
  37205. [
  37206. {
  37207. name: "House Drake",
  37208. height: math.unit(2, "feet")
  37209. },
  37210. {
  37211. name: "Reduced",
  37212. height: math.unit(4.5, "feet")
  37213. },
  37214. {
  37215. name: "Normal",
  37216. height: math.unit(9, "feet"),
  37217. default: true
  37218. },
  37219. ]
  37220. ))
  37221. characterMakers.push(() => makeCharacter(
  37222. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37223. {
  37224. front: {
  37225. height: math.unit(1.74, "meters"),
  37226. weight: math.unit(55, "kg"),
  37227. name: "Front",
  37228. image: {
  37229. source: "./media/characters/rubus/front.svg",
  37230. extra: 1894/1742,
  37231. bottom: 44/1938
  37232. }
  37233. },
  37234. },
  37235. [
  37236. {
  37237. name: "Normal",
  37238. height: math.unit(1.74, "meters"),
  37239. default: true
  37240. },
  37241. ]
  37242. ))
  37243. characterMakers.push(() => makeCharacter(
  37244. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37245. {
  37246. front: {
  37247. height: math.unit(5 + 2/12, "feet"),
  37248. weight: math.unit(112, "lb"),
  37249. name: "Front",
  37250. image: {
  37251. source: "./media/characters/cassie-kingston/front.svg",
  37252. extra: 1438/1390,
  37253. bottom: 47/1485
  37254. }
  37255. },
  37256. },
  37257. [
  37258. {
  37259. name: "Normal",
  37260. height: math.unit(5 + 2/12, "feet"),
  37261. default: true
  37262. },
  37263. {
  37264. name: "Macro",
  37265. height: math.unit(128, "feet")
  37266. },
  37267. {
  37268. name: "Megamacro",
  37269. height: math.unit(2.56, "miles")
  37270. },
  37271. ]
  37272. ))
  37273. characterMakers.push(() => makeCharacter(
  37274. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37275. {
  37276. front: {
  37277. height: math.unit(7, "feet"),
  37278. name: "Front",
  37279. image: {
  37280. source: "./media/characters/fox/front.svg",
  37281. extra: 1798/1703,
  37282. bottom: 55/1853
  37283. }
  37284. },
  37285. back: {
  37286. height: math.unit(7, "feet"),
  37287. name: "Back",
  37288. image: {
  37289. source: "./media/characters/fox/back.svg",
  37290. extra: 1748/1649,
  37291. bottom: 32/1780
  37292. }
  37293. },
  37294. head: {
  37295. height: math.unit(1.95, "feet"),
  37296. name: "Head",
  37297. image: {
  37298. source: "./media/characters/fox/head.svg"
  37299. }
  37300. },
  37301. dick: {
  37302. height: math.unit(1.33, "feet"),
  37303. name: "Dick",
  37304. image: {
  37305. source: "./media/characters/fox/dick.svg"
  37306. }
  37307. },
  37308. foot: {
  37309. height: math.unit(1, "feet"),
  37310. name: "Foot",
  37311. image: {
  37312. source: "./media/characters/fox/foot.svg"
  37313. }
  37314. },
  37315. paw: {
  37316. height: math.unit(0.92, "feet"),
  37317. name: "Paw",
  37318. image: {
  37319. source: "./media/characters/fox/paw.svg"
  37320. }
  37321. },
  37322. },
  37323. [
  37324. {
  37325. name: "Small",
  37326. height: math.unit(3, "inches")
  37327. },
  37328. {
  37329. name: "\"Realistic\"",
  37330. height: math.unit(7, "feet")
  37331. },
  37332. {
  37333. name: "Normal",
  37334. height: math.unit(150, "feet"),
  37335. default: true
  37336. },
  37337. {
  37338. name: "BIG",
  37339. height: math.unit(1200, "feet")
  37340. },
  37341. {
  37342. name: "👀",
  37343. height: math.unit(5, "miles")
  37344. },
  37345. {
  37346. name: "👀👀👀",
  37347. height: math.unit(64, "miles")
  37348. },
  37349. ]
  37350. ))
  37351. characterMakers.push(() => makeCharacter(
  37352. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37353. {
  37354. front: {
  37355. height: math.unit(625, "feet"),
  37356. name: "Front",
  37357. image: {
  37358. source: "./media/characters/asonja-rossa/front.svg",
  37359. extra: 1833/1686,
  37360. bottom: 24/1857
  37361. }
  37362. },
  37363. back: {
  37364. height: math.unit(625, "feet"),
  37365. name: "Back",
  37366. image: {
  37367. source: "./media/characters/asonja-rossa/back.svg",
  37368. extra: 1852/1753,
  37369. bottom: 26/1878
  37370. }
  37371. },
  37372. },
  37373. [
  37374. {
  37375. name: "Macro",
  37376. height: math.unit(625, "feet"),
  37377. default: true
  37378. },
  37379. ]
  37380. ))
  37381. characterMakers.push(() => makeCharacter(
  37382. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37383. {
  37384. side: {
  37385. height: math.unit(8, "feet"),
  37386. name: "Side",
  37387. image: {
  37388. source: "./media/characters/rezukii/side.svg",
  37389. extra: 979/542,
  37390. bottom: 87/1066
  37391. }
  37392. },
  37393. sitting: {
  37394. height: math.unit(14.6, "feet"),
  37395. name: "Sitting",
  37396. image: {
  37397. source: "./media/characters/rezukii/sitting.svg",
  37398. extra: 1023/813,
  37399. bottom: 45/1068
  37400. }
  37401. },
  37402. },
  37403. [
  37404. {
  37405. name: "Tiny",
  37406. height: math.unit(2, "feet")
  37407. },
  37408. {
  37409. name: "Smol",
  37410. height: math.unit(4, "feet")
  37411. },
  37412. {
  37413. name: "Normal",
  37414. height: math.unit(8, "feet"),
  37415. default: true
  37416. },
  37417. {
  37418. name: "Big",
  37419. height: math.unit(12, "feet")
  37420. },
  37421. {
  37422. name: "Macro",
  37423. height: math.unit(30, "feet")
  37424. },
  37425. ]
  37426. ))
  37427. characterMakers.push(() => makeCharacter(
  37428. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37429. {
  37430. front: {
  37431. height: math.unit(14, "feet"),
  37432. weight: math.unit(9.5, "tonnes"),
  37433. name: "Front",
  37434. image: {
  37435. source: "./media/characters/dawnheart/front.svg",
  37436. extra: 2792/2675,
  37437. bottom: 64/2856
  37438. }
  37439. },
  37440. },
  37441. [
  37442. {
  37443. name: "Normal",
  37444. height: math.unit(14, "feet"),
  37445. default: true
  37446. },
  37447. ]
  37448. ))
  37449. characterMakers.push(() => makeCharacter(
  37450. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37451. {
  37452. front: {
  37453. height: math.unit(1.7, "m"),
  37454. name: "Front",
  37455. image: {
  37456. source: "./media/characters/gladi/front.svg",
  37457. extra: 1460/1362,
  37458. bottom: 19/1479
  37459. }
  37460. },
  37461. back: {
  37462. height: math.unit(1.7, "m"),
  37463. name: "Back",
  37464. image: {
  37465. source: "./media/characters/gladi/back.svg",
  37466. extra: 1459/1357,
  37467. bottom: 12/1471
  37468. }
  37469. },
  37470. feral: {
  37471. height: math.unit(2.05, "m"),
  37472. name: "Feral",
  37473. image: {
  37474. source: "./media/characters/gladi/feral.svg",
  37475. extra: 821/557,
  37476. bottom: 91/912
  37477. }
  37478. },
  37479. },
  37480. [
  37481. {
  37482. name: "Shortest",
  37483. height: math.unit(70, "cm")
  37484. },
  37485. {
  37486. name: "Normal",
  37487. height: math.unit(1.7, "m")
  37488. },
  37489. {
  37490. name: "Macro",
  37491. height: math.unit(10, "m"),
  37492. default: true
  37493. },
  37494. {
  37495. name: "Tallest",
  37496. height: math.unit(200, "m")
  37497. },
  37498. ]
  37499. ))
  37500. characterMakers.push(() => makeCharacter(
  37501. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37502. {
  37503. front: {
  37504. height: math.unit(5 + 7/12, "feet"),
  37505. weight: math.unit(2, "tons"),
  37506. name: "Front",
  37507. image: {
  37508. source: "./media/characters/erdno/front.svg",
  37509. extra: 1234/1129,
  37510. bottom: 35/1269
  37511. }
  37512. },
  37513. angled: {
  37514. height: math.unit(5 + 7/12, "feet"),
  37515. weight: math.unit(2, "tons"),
  37516. name: "Angled",
  37517. image: {
  37518. source: "./media/characters/erdno/angled.svg",
  37519. extra: 1185/1139,
  37520. bottom: 36/1221
  37521. }
  37522. },
  37523. side: {
  37524. height: math.unit(5 + 7/12, "feet"),
  37525. weight: math.unit(2, "tons"),
  37526. name: "Side",
  37527. image: {
  37528. source: "./media/characters/erdno/side.svg",
  37529. extra: 1191/1144,
  37530. bottom: 40/1231
  37531. }
  37532. },
  37533. back: {
  37534. height: math.unit(5 + 7/12, "feet"),
  37535. weight: math.unit(2, "tons"),
  37536. name: "Back",
  37537. image: {
  37538. source: "./media/characters/erdno/back.svg",
  37539. extra: 1202/1146,
  37540. bottom: 17/1219
  37541. }
  37542. },
  37543. frontNsfw: {
  37544. height: math.unit(5 + 7/12, "feet"),
  37545. weight: math.unit(2, "tons"),
  37546. name: "Front (NSFW)",
  37547. image: {
  37548. source: "./media/characters/erdno/front-nsfw.svg",
  37549. extra: 1234/1129,
  37550. bottom: 35/1269
  37551. }
  37552. },
  37553. angledNsfw: {
  37554. height: math.unit(5 + 7/12, "feet"),
  37555. weight: math.unit(2, "tons"),
  37556. name: "Angled (NSFW)",
  37557. image: {
  37558. source: "./media/characters/erdno/angled-nsfw.svg",
  37559. extra: 1185/1139,
  37560. bottom: 36/1221
  37561. }
  37562. },
  37563. sideNsfw: {
  37564. height: math.unit(5 + 7/12, "feet"),
  37565. weight: math.unit(2, "tons"),
  37566. name: "Side (NSFW)",
  37567. image: {
  37568. source: "./media/characters/erdno/side-nsfw.svg",
  37569. extra: 1191/1144,
  37570. bottom: 40/1231
  37571. }
  37572. },
  37573. backNsfw: {
  37574. height: math.unit(5 + 7/12, "feet"),
  37575. weight: math.unit(2, "tons"),
  37576. name: "Back (NSFW)",
  37577. image: {
  37578. source: "./media/characters/erdno/back-nsfw.svg",
  37579. extra: 1202/1146,
  37580. bottom: 17/1219
  37581. }
  37582. },
  37583. frontHyper: {
  37584. height: math.unit(5 + 7/12, "feet"),
  37585. weight: math.unit(2, "tons"),
  37586. name: "Front (Hyper)",
  37587. image: {
  37588. source: "./media/characters/erdno/front-hyper.svg",
  37589. extra: 1298/1136,
  37590. bottom: 35/1333
  37591. }
  37592. },
  37593. },
  37594. [
  37595. {
  37596. name: "Normal",
  37597. height: math.unit(5 + 7/12, "feet"),
  37598. default: true
  37599. },
  37600. {
  37601. name: "Big",
  37602. height: math.unit(5.7, "meters")
  37603. },
  37604. {
  37605. name: "Macro",
  37606. height: math.unit(5.7, "kilometers")
  37607. },
  37608. {
  37609. name: "Megamacro",
  37610. height: math.unit(5.7, "earths")
  37611. },
  37612. ]
  37613. ))
  37614. characterMakers.push(() => makeCharacter(
  37615. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37616. {
  37617. front: {
  37618. height: math.unit(5 + 10/12, "feet"),
  37619. weight: math.unit(150, "lb"),
  37620. name: "Front",
  37621. image: {
  37622. source: "./media/characters/jamie/front.svg",
  37623. extra: 1908/1768,
  37624. bottom: 19/1927
  37625. }
  37626. },
  37627. },
  37628. [
  37629. {
  37630. name: "Minimum",
  37631. height: math.unit(2, "cm")
  37632. },
  37633. {
  37634. name: "Micro",
  37635. height: math.unit(3, "inches")
  37636. },
  37637. {
  37638. name: "Normal",
  37639. height: math.unit(5 + 10/12, "feet"),
  37640. default: true
  37641. },
  37642. {
  37643. name: "Macro",
  37644. height: math.unit(150, "feet")
  37645. },
  37646. {
  37647. name: "Megamacro",
  37648. height: math.unit(10000, "m")
  37649. },
  37650. ]
  37651. ))
  37652. characterMakers.push(() => makeCharacter(
  37653. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37654. {
  37655. front: {
  37656. height: math.unit(2, "meters"),
  37657. weight: math.unit(100, "kg"),
  37658. name: "Front",
  37659. image: {
  37660. source: "./media/characters/shiron/front.svg",
  37661. extra: 2103/1985,
  37662. bottom: 98/2201
  37663. }
  37664. },
  37665. back: {
  37666. height: math.unit(2, "meters"),
  37667. weight: math.unit(100, "kg"),
  37668. name: "Back",
  37669. image: {
  37670. source: "./media/characters/shiron/back.svg",
  37671. extra: 2110/2015,
  37672. bottom: 89/2199
  37673. }
  37674. },
  37675. hand: {
  37676. height: math.unit(0.96, "feet"),
  37677. name: "Hand",
  37678. image: {
  37679. source: "./media/characters/shiron/hand.svg"
  37680. }
  37681. },
  37682. foot: {
  37683. height: math.unit(1.464, "feet"),
  37684. name: "Foot",
  37685. image: {
  37686. source: "./media/characters/shiron/foot.svg"
  37687. }
  37688. },
  37689. },
  37690. [
  37691. {
  37692. name: "Normal",
  37693. height: math.unit(2, "meters")
  37694. },
  37695. {
  37696. name: "Macro",
  37697. height: math.unit(500, "meters"),
  37698. default: true
  37699. },
  37700. {
  37701. name: "Megamacro",
  37702. height: math.unit(20, "km")
  37703. },
  37704. ]
  37705. ))
  37706. characterMakers.push(() => makeCharacter(
  37707. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37708. {
  37709. front: {
  37710. height: math.unit(6, "feet"),
  37711. name: "Front",
  37712. image: {
  37713. source: "./media/characters/sam/front.svg",
  37714. extra: 849/826,
  37715. bottom: 19/868
  37716. }
  37717. },
  37718. },
  37719. [
  37720. {
  37721. name: "Normal",
  37722. height: math.unit(6, "feet"),
  37723. default: true
  37724. },
  37725. ]
  37726. ))
  37727. characterMakers.push(() => makeCharacter(
  37728. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37729. {
  37730. front: {
  37731. height: math.unit(8 + 4/12, "feet"),
  37732. weight: math.unit(122, "kg"),
  37733. name: "Front",
  37734. image: {
  37735. source: "./media/characters/namori-kurogawa/front.svg",
  37736. extra: 1894/1576,
  37737. bottom: 34/1928
  37738. }
  37739. },
  37740. },
  37741. [
  37742. {
  37743. name: "Normal",
  37744. height: math.unit(8 + 4/12, "feet"),
  37745. default: true
  37746. },
  37747. ]
  37748. ))
  37749. characterMakers.push(() => makeCharacter(
  37750. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37751. {
  37752. front: {
  37753. height: math.unit(9, "feet"),
  37754. weight: math.unit(621, "lb"),
  37755. name: "Front",
  37756. image: {
  37757. source: "./media/characters/unmru/front.svg",
  37758. extra: 1853/1747,
  37759. bottom: 73/1926
  37760. }
  37761. },
  37762. side: {
  37763. height: math.unit(9, "feet"),
  37764. weight: math.unit(621, "lb"),
  37765. name: "Side",
  37766. image: {
  37767. source: "./media/characters/unmru/side.svg",
  37768. extra: 1781/1671,
  37769. bottom: 127/1908
  37770. }
  37771. },
  37772. back: {
  37773. height: math.unit(9, "feet"),
  37774. weight: math.unit(621, "lb"),
  37775. name: "Back",
  37776. image: {
  37777. source: "./media/characters/unmru/back.svg",
  37778. extra: 1894/1765,
  37779. bottom: 75/1969
  37780. }
  37781. },
  37782. dick: {
  37783. height: math.unit(3, "feet"),
  37784. weight: math.unit(35, "lb"),
  37785. name: "Dick",
  37786. image: {
  37787. source: "./media/characters/unmru/dick.svg"
  37788. }
  37789. },
  37790. },
  37791. [
  37792. {
  37793. name: "Normal",
  37794. height: math.unit(9, "feet")
  37795. },
  37796. {
  37797. name: "Natural",
  37798. height: math.unit(27, "feet"),
  37799. default: true
  37800. },
  37801. {
  37802. name: "Giant",
  37803. height: math.unit(90, "feet")
  37804. },
  37805. {
  37806. name: "Kaiju",
  37807. height: math.unit(270, "feet")
  37808. },
  37809. {
  37810. name: "Macro",
  37811. height: math.unit(900, "feet")
  37812. },
  37813. {
  37814. name: "Macro+",
  37815. height: math.unit(2700, "feet")
  37816. },
  37817. {
  37818. name: "Megamacro",
  37819. height: math.unit(9000, "feet")
  37820. },
  37821. {
  37822. name: "City-Crushing",
  37823. height: math.unit(27000, "feet")
  37824. },
  37825. {
  37826. name: "Mountain-Mashing",
  37827. height: math.unit(90000, "feet")
  37828. },
  37829. {
  37830. name: "Earth-Eclipsing",
  37831. height: math.unit(2.7e8, "feet")
  37832. },
  37833. {
  37834. name: "Sol-Swallowing",
  37835. height: math.unit(9e10, "feet")
  37836. },
  37837. {
  37838. name: "Majoris-Munching",
  37839. height: math.unit(2.7e13, "feet")
  37840. },
  37841. ]
  37842. ))
  37843. characterMakers.push(() => makeCharacter(
  37844. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37845. {
  37846. front: {
  37847. height: math.unit(1, "inch"),
  37848. name: "Front",
  37849. image: {
  37850. source: "./media/characters/squeaks-mouse/front.svg",
  37851. extra: 352/308,
  37852. bottom: 25/377
  37853. }
  37854. },
  37855. },
  37856. [
  37857. {
  37858. name: "Micro",
  37859. height: math.unit(1, "inch"),
  37860. default: true
  37861. },
  37862. ]
  37863. ))
  37864. characterMakers.push(() => makeCharacter(
  37865. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37866. {
  37867. side: {
  37868. height: math.unit(35, "feet"),
  37869. name: "Side",
  37870. image: {
  37871. source: "./media/characters/sayko/side.svg",
  37872. extra: 1697/1021,
  37873. bottom: 82/1779
  37874. }
  37875. },
  37876. head: {
  37877. height: math.unit(16, "feet"),
  37878. name: "Head",
  37879. image: {
  37880. source: "./media/characters/sayko/head.svg"
  37881. }
  37882. },
  37883. forepaw: {
  37884. height: math.unit(7.85, "feet"),
  37885. name: "Forepaw",
  37886. image: {
  37887. source: "./media/characters/sayko/forepaw.svg"
  37888. }
  37889. },
  37890. hindpaw: {
  37891. height: math.unit(8.8, "feet"),
  37892. name: "Hindpaw",
  37893. image: {
  37894. source: "./media/characters/sayko/hindpaw.svg"
  37895. }
  37896. },
  37897. },
  37898. [
  37899. {
  37900. name: "Normal",
  37901. height: math.unit(35, "feet"),
  37902. default: true
  37903. },
  37904. {
  37905. name: "Colossus",
  37906. height: math.unit(100, "meters")
  37907. },
  37908. {
  37909. name: "\"Small\" Deity",
  37910. height: math.unit(1, "km")
  37911. },
  37912. {
  37913. name: "\"Large\" Deity",
  37914. height: math.unit(15, "km")
  37915. },
  37916. ]
  37917. ))
  37918. characterMakers.push(() => makeCharacter(
  37919. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37920. {
  37921. front: {
  37922. height: math.unit(6, "feet"),
  37923. weight: math.unit(250, "lb"),
  37924. name: "Front",
  37925. image: {
  37926. source: "./media/characters/mukiro/front.svg",
  37927. extra: 1368/1310,
  37928. bottom: 34/1402
  37929. }
  37930. },
  37931. },
  37932. [
  37933. {
  37934. name: "Normal",
  37935. height: math.unit(6, "feet"),
  37936. default: true
  37937. },
  37938. ]
  37939. ))
  37940. characterMakers.push(() => makeCharacter(
  37941. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37942. {
  37943. front: {
  37944. height: math.unit(12 + 4/12, "feet"),
  37945. name: "Front",
  37946. image: {
  37947. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37948. extra: 1346/1311,
  37949. bottom: 65/1411
  37950. }
  37951. },
  37952. },
  37953. [
  37954. {
  37955. name: "Base",
  37956. height: math.unit(12 + 4/12, "feet"),
  37957. default: true
  37958. },
  37959. {
  37960. name: "Macro",
  37961. height: math.unit(150, "feet")
  37962. },
  37963. {
  37964. name: "Mega",
  37965. height: math.unit(2, "miles")
  37966. },
  37967. {
  37968. name: "Demi God",
  37969. height: math.unit(4, "AU")
  37970. },
  37971. {
  37972. name: "God Size",
  37973. height: math.unit(1, "universe")
  37974. },
  37975. ]
  37976. ))
  37977. characterMakers.push(() => makeCharacter(
  37978. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37979. {
  37980. front: {
  37981. height: math.unit(3 + 3/12, "feet"),
  37982. weight: math.unit(88, "lb"),
  37983. name: "Front",
  37984. image: {
  37985. source: "./media/characters/trey/front.svg",
  37986. extra: 1815/1509,
  37987. bottom: 60/1875
  37988. }
  37989. },
  37990. },
  37991. [
  37992. {
  37993. name: "Normal",
  37994. height: math.unit(3 + 3/12, "feet"),
  37995. default: true
  37996. },
  37997. ]
  37998. ))
  37999. characterMakers.push(() => makeCharacter(
  38000. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38001. {
  38002. front: {
  38003. height: math.unit(4, "meters"),
  38004. name: "Front",
  38005. image: {
  38006. source: "./media/characters/adelonda/front.svg",
  38007. extra: 1077/982,
  38008. bottom: 39/1116
  38009. }
  38010. },
  38011. back: {
  38012. height: math.unit(4, "meters"),
  38013. name: "Back",
  38014. image: {
  38015. source: "./media/characters/adelonda/back.svg",
  38016. extra: 1105/1003,
  38017. bottom: 25/1130
  38018. }
  38019. },
  38020. feral: {
  38021. height: math.unit(40/1.5, "meters"),
  38022. name: "Feral",
  38023. image: {
  38024. source: "./media/characters/adelonda/feral.svg",
  38025. extra: 597/271,
  38026. bottom: 387/984
  38027. }
  38028. },
  38029. },
  38030. [
  38031. {
  38032. name: "Normal",
  38033. height: math.unit(4, "meters"),
  38034. default: true
  38035. },
  38036. ]
  38037. ))
  38038. characterMakers.push(() => makeCharacter(
  38039. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38040. {
  38041. front: {
  38042. height: math.unit(8 + 4/12, "feet"),
  38043. weight: math.unit(670, "lb"),
  38044. name: "Front",
  38045. image: {
  38046. source: "./media/characters/acadiel/front.svg",
  38047. extra: 1901/1595,
  38048. bottom: 142/2043
  38049. }
  38050. },
  38051. },
  38052. [
  38053. {
  38054. name: "Normal",
  38055. height: math.unit(8 + 4/12, "feet"),
  38056. default: true
  38057. },
  38058. {
  38059. name: "Macro",
  38060. height: math.unit(200, "feet")
  38061. },
  38062. ]
  38063. ))
  38064. characterMakers.push(() => makeCharacter(
  38065. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38066. {
  38067. front: {
  38068. height: math.unit(6 + 2/12, "feet"),
  38069. weight: math.unit(185, "lb"),
  38070. name: "Front",
  38071. image: {
  38072. source: "./media/characters/kayne-ein/front.svg",
  38073. extra: 1780/1560,
  38074. bottom: 81/1861
  38075. }
  38076. },
  38077. },
  38078. [
  38079. {
  38080. name: "Normal",
  38081. height: math.unit(6 + 2/12, "feet"),
  38082. default: true
  38083. },
  38084. {
  38085. name: "Transformation Stage",
  38086. height: math.unit(15, "feet")
  38087. },
  38088. {
  38089. name: "Macro",
  38090. height: math.unit(150, "feet")
  38091. },
  38092. {
  38093. name: "Earth's Shadow",
  38094. height: math.unit(6200, "miles")
  38095. },
  38096. {
  38097. name: "Universal Demon",
  38098. height: math.unit(28e9, "parsecs")
  38099. },
  38100. {
  38101. name: "Multiverse God",
  38102. height: math.unit(3, "multiverses")
  38103. },
  38104. ]
  38105. ))
  38106. characterMakers.push(() => makeCharacter(
  38107. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38108. {
  38109. front: {
  38110. height: math.unit(5 + 5/12, "feet"),
  38111. name: "Front",
  38112. image: {
  38113. source: "./media/characters/fawn/front.svg",
  38114. extra: 1873/1731,
  38115. bottom: 95/1968
  38116. }
  38117. },
  38118. back: {
  38119. height: math.unit(5 + 5/12, "feet"),
  38120. name: "Back",
  38121. image: {
  38122. source: "./media/characters/fawn/back.svg",
  38123. extra: 1813/1700,
  38124. bottom: 14/1827
  38125. }
  38126. },
  38127. hoof: {
  38128. height: math.unit(1.45, "feet"),
  38129. name: "Hoof",
  38130. image: {
  38131. source: "./media/characters/fawn/hoof.svg"
  38132. }
  38133. },
  38134. },
  38135. [
  38136. {
  38137. name: "Normal",
  38138. height: math.unit(5 + 5/12, "feet"),
  38139. default: true
  38140. },
  38141. ]
  38142. ))
  38143. characterMakers.push(() => makeCharacter(
  38144. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38145. {
  38146. front: {
  38147. height: math.unit(2 + 5/12, "feet"),
  38148. name: "Front",
  38149. image: {
  38150. source: "./media/characters/orion/front.svg",
  38151. extra: 1366/1304,
  38152. bottom: 43/1409
  38153. }
  38154. },
  38155. paw: {
  38156. height: math.unit(0.52, "feet"),
  38157. name: "Paw",
  38158. image: {
  38159. source: "./media/characters/orion/paw.svg"
  38160. }
  38161. },
  38162. },
  38163. [
  38164. {
  38165. name: "Normal",
  38166. height: math.unit(2 + 5/12, "feet"),
  38167. default: true
  38168. },
  38169. ]
  38170. ))
  38171. characterMakers.push(() => makeCharacter(
  38172. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38173. {
  38174. front: {
  38175. height: math.unit(5 + 10/12, "feet"),
  38176. name: "Front",
  38177. image: {
  38178. source: "./media/characters/vera/front.svg",
  38179. extra: 1680/1575,
  38180. bottom: 49/1729
  38181. }
  38182. },
  38183. back: {
  38184. height: math.unit(5 + 10/12, "feet"),
  38185. name: "Back",
  38186. image: {
  38187. source: "./media/characters/vera/back.svg",
  38188. extra: 1700/1588,
  38189. bottom: 18/1718
  38190. }
  38191. },
  38192. arcanine: {
  38193. height: math.unit(6 + 8/12, "feet"),
  38194. name: "Arcanine",
  38195. image: {
  38196. source: "./media/characters/vera/arcanine.svg",
  38197. extra: 1590/1511,
  38198. bottom: 71/1661
  38199. }
  38200. },
  38201. maw: {
  38202. height: math.unit(0.82, "feet"),
  38203. name: "Maw",
  38204. image: {
  38205. source: "./media/characters/vera/maw.svg"
  38206. }
  38207. },
  38208. mawArcanine: {
  38209. height: math.unit(0.97, "feet"),
  38210. name: "Maw (Arcanine)",
  38211. image: {
  38212. source: "./media/characters/vera/maw-arcanine.svg"
  38213. }
  38214. },
  38215. paw: {
  38216. height: math.unit(0.75, "feet"),
  38217. name: "Paw",
  38218. image: {
  38219. source: "./media/characters/vera/paw.svg"
  38220. }
  38221. },
  38222. pawprint: {
  38223. height: math.unit(0.52, "feet"),
  38224. name: "Pawprint",
  38225. image: {
  38226. source: "./media/characters/vera/pawprint.svg"
  38227. }
  38228. },
  38229. },
  38230. [
  38231. {
  38232. name: "Normal",
  38233. height: math.unit(5 + 10/12, "feet"),
  38234. default: true
  38235. },
  38236. {
  38237. name: "Macro",
  38238. height: math.unit(75, "feet")
  38239. },
  38240. ]
  38241. ))
  38242. characterMakers.push(() => makeCharacter(
  38243. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38244. {
  38245. front: {
  38246. height: math.unit(4, "feet"),
  38247. weight: math.unit(40, "lb"),
  38248. name: "Front",
  38249. image: {
  38250. source: "./media/characters/orvan-rabbit/front.svg",
  38251. extra: 1896/1642,
  38252. bottom: 29/1925
  38253. }
  38254. },
  38255. },
  38256. [
  38257. {
  38258. name: "Normal",
  38259. height: math.unit(4, "feet"),
  38260. default: true
  38261. },
  38262. ]
  38263. ))
  38264. characterMakers.push(() => makeCharacter(
  38265. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38266. {
  38267. front: {
  38268. height: math.unit(6, "feet"),
  38269. weight: math.unit(168, "lb"),
  38270. name: "Front",
  38271. image: {
  38272. source: "./media/characters/lisa/front.svg",
  38273. extra: 2065/1867,
  38274. bottom: 46/2111
  38275. }
  38276. },
  38277. back: {
  38278. height: math.unit(6, "feet"),
  38279. weight: math.unit(168, "lb"),
  38280. name: "Back",
  38281. image: {
  38282. source: "./media/characters/lisa/back.svg",
  38283. extra: 1982/1838,
  38284. bottom: 29/2011
  38285. }
  38286. },
  38287. maw: {
  38288. height: math.unit(0.81, "feet"),
  38289. name: "Maw",
  38290. image: {
  38291. source: "./media/characters/lisa/maw.svg"
  38292. }
  38293. },
  38294. paw: {
  38295. height: math.unit(0.9, "feet"),
  38296. name: "Paw",
  38297. image: {
  38298. source: "./media/characters/lisa/paw.svg"
  38299. }
  38300. },
  38301. caribousune: {
  38302. height: math.unit(7 + 2/12, "feet"),
  38303. weight: math.unit(268, "lb"),
  38304. name: "Caribousune",
  38305. image: {
  38306. source: "./media/characters/lisa/caribousune.svg",
  38307. extra: 1843/1633,
  38308. bottom: 29/1872
  38309. }
  38310. },
  38311. frontCaribousune: {
  38312. height: math.unit(7 + 2/12, "feet"),
  38313. weight: math.unit(268, "lb"),
  38314. name: "Front (Caribousune)",
  38315. image: {
  38316. source: "./media/characters/lisa/front-caribousune.svg",
  38317. extra: 1818/1638,
  38318. bottom: 52/1870
  38319. }
  38320. },
  38321. sideCaribousune: {
  38322. height: math.unit(7 + 2/12, "feet"),
  38323. weight: math.unit(268, "lb"),
  38324. name: "Side (Caribousune)",
  38325. image: {
  38326. source: "./media/characters/lisa/side-caribousune.svg",
  38327. extra: 1851/1635,
  38328. bottom: 16/1867
  38329. }
  38330. },
  38331. backCaribousune: {
  38332. height: math.unit(7 + 2/12, "feet"),
  38333. weight: math.unit(268, "lb"),
  38334. name: "Back (Caribousune)",
  38335. image: {
  38336. source: "./media/characters/lisa/back-caribousune.svg",
  38337. extra: 1801/1604,
  38338. bottom: 44/1845
  38339. }
  38340. },
  38341. caribou: {
  38342. height: math.unit(7 + 2/12, "feet"),
  38343. weight: math.unit(268, "lb"),
  38344. name: "Caribou",
  38345. image: {
  38346. source: "./media/characters/lisa/caribou.svg",
  38347. extra: 1843/1633,
  38348. bottom: 29/1872
  38349. }
  38350. },
  38351. frontCaribou: {
  38352. height: math.unit(7 + 2/12, "feet"),
  38353. weight: math.unit(268, "lb"),
  38354. name: "Front (Caribou)",
  38355. image: {
  38356. source: "./media/characters/lisa/front-caribou.svg",
  38357. extra: 1818/1638,
  38358. bottom: 52/1870
  38359. }
  38360. },
  38361. sideCaribou: {
  38362. height: math.unit(7 + 2/12, "feet"),
  38363. weight: math.unit(268, "lb"),
  38364. name: "Side (Caribou)",
  38365. image: {
  38366. source: "./media/characters/lisa/side-caribou.svg",
  38367. extra: 1851/1635,
  38368. bottom: 16/1867
  38369. }
  38370. },
  38371. backCaribou: {
  38372. height: math.unit(7 + 2/12, "feet"),
  38373. weight: math.unit(268, "lb"),
  38374. name: "Back (Caribou)",
  38375. image: {
  38376. source: "./media/characters/lisa/back-caribou.svg",
  38377. extra: 1801/1604,
  38378. bottom: 44/1845
  38379. }
  38380. },
  38381. mawCaribou: {
  38382. height: math.unit(1.45, "feet"),
  38383. name: "Maw (Caribou)",
  38384. image: {
  38385. source: "./media/characters/lisa/maw-caribou.svg"
  38386. }
  38387. },
  38388. mawCaribousune: {
  38389. height: math.unit(1.45, "feet"),
  38390. name: "Maw (Caribousune)",
  38391. image: {
  38392. source: "./media/characters/lisa/maw-caribousune.svg"
  38393. }
  38394. },
  38395. pawCaribousune: {
  38396. height: math.unit(1.61, "feet"),
  38397. name: "Paw (Caribou)",
  38398. image: {
  38399. source: "./media/characters/lisa/paw-caribousune.svg"
  38400. }
  38401. },
  38402. },
  38403. [
  38404. {
  38405. name: "Normal",
  38406. height: math.unit(6, "feet")
  38407. },
  38408. {
  38409. name: "God Size",
  38410. height: math.unit(72, "feet"),
  38411. default: true
  38412. },
  38413. {
  38414. name: "Towering",
  38415. height: math.unit(288, "feet")
  38416. },
  38417. {
  38418. name: "City Size",
  38419. height: math.unit(48384, "feet")
  38420. },
  38421. {
  38422. name: "Continental",
  38423. height: math.unit(4200, "miles")
  38424. },
  38425. {
  38426. name: "Planet Eater",
  38427. height: math.unit(42, "earths")
  38428. },
  38429. {
  38430. name: "Star Swallower",
  38431. height: math.unit(42, "solarradii")
  38432. },
  38433. {
  38434. name: "System Swallower",
  38435. height: math.unit(84000, "AU")
  38436. },
  38437. {
  38438. name: "Galaxy Gobbler",
  38439. height: math.unit(42, "galaxies")
  38440. },
  38441. {
  38442. name: "Universe Devourer",
  38443. height: math.unit(42, "universes")
  38444. },
  38445. {
  38446. name: "Multiverse Muncher",
  38447. height: math.unit(42, "multiverses")
  38448. },
  38449. ]
  38450. ))
  38451. characterMakers.push(() => makeCharacter(
  38452. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38453. {
  38454. front: {
  38455. height: math.unit(36, "feet"),
  38456. name: "Front",
  38457. image: {
  38458. source: "./media/characters/shadow-rat/front.svg",
  38459. extra: 1845/1758,
  38460. bottom: 83/1928
  38461. }
  38462. },
  38463. },
  38464. [
  38465. {
  38466. name: "Macro",
  38467. height: math.unit(36, "feet"),
  38468. default: true
  38469. },
  38470. ]
  38471. ))
  38472. characterMakers.push(() => makeCharacter(
  38473. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38474. {
  38475. side: {
  38476. height: math.unit(8, "feet"),
  38477. weight: math.unit(2630, "lb"),
  38478. name: "Side",
  38479. image: {
  38480. source: "./media/characters/torallia/side.svg",
  38481. extra: 2164/2021,
  38482. bottom: 371/2535
  38483. }
  38484. },
  38485. },
  38486. [
  38487. {
  38488. name: "Mortal Interaction",
  38489. height: math.unit(8, "feet")
  38490. },
  38491. {
  38492. name: "Natural",
  38493. height: math.unit(24, "feet"),
  38494. default: true
  38495. },
  38496. {
  38497. name: "Giant",
  38498. height: math.unit(80, "feet")
  38499. },
  38500. {
  38501. name: "Kaiju",
  38502. height: math.unit(240, "feet")
  38503. },
  38504. {
  38505. name: "Macro",
  38506. height: math.unit(800, "feet")
  38507. },
  38508. {
  38509. name: "Macro+",
  38510. height: math.unit(2400, "feet")
  38511. },
  38512. {
  38513. name: "Macro++",
  38514. height: math.unit(8000, "feet")
  38515. },
  38516. {
  38517. name: "City-Crushing",
  38518. height: math.unit(24000, "feet")
  38519. },
  38520. {
  38521. name: "Mountain-Mashing",
  38522. height: math.unit(80000, "feet")
  38523. },
  38524. {
  38525. name: "District Demolisher",
  38526. height: math.unit(240000, "feet")
  38527. },
  38528. {
  38529. name: "Tri-County Terror",
  38530. height: math.unit(800000, "feet")
  38531. },
  38532. {
  38533. name: "State Smasher",
  38534. height: math.unit(2.4e6, "feet")
  38535. },
  38536. {
  38537. name: "Nation Nemesis",
  38538. height: math.unit(8e6, "feet")
  38539. },
  38540. {
  38541. name: "Continent Cracker",
  38542. height: math.unit(2.4e7, "feet")
  38543. },
  38544. {
  38545. name: "Planet-Pillaging",
  38546. height: math.unit(8e7, "feet")
  38547. },
  38548. {
  38549. name: "Earth-Eclipsing",
  38550. height: math.unit(2.4e8, "feet")
  38551. },
  38552. {
  38553. name: "Jovian-Jostling",
  38554. height: math.unit(8e8, "feet")
  38555. },
  38556. {
  38557. name: "Gas Giant Gulper",
  38558. height: math.unit(2.4e9, "feet")
  38559. },
  38560. {
  38561. name: "Astral Annihilator",
  38562. height: math.unit(8e9, "feet")
  38563. },
  38564. {
  38565. name: "Celestial Conqueror",
  38566. height: math.unit(2.4e10, "feet")
  38567. },
  38568. {
  38569. name: "Sol-Swallowing",
  38570. height: math.unit(8e10, "feet")
  38571. },
  38572. {
  38573. name: "Hunter of the Heavens",
  38574. height: math.unit(2.4e13, "feet")
  38575. },
  38576. ]
  38577. ))
  38578. characterMakers.push(() => makeCharacter(
  38579. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38580. {
  38581. front: {
  38582. height: math.unit(6 + 8/12, "feet"),
  38583. name: "Front",
  38584. image: {
  38585. source: "./media/characters/rebecca-pawlson/front.svg",
  38586. extra: 1737/1596,
  38587. bottom: 107/1844
  38588. }
  38589. },
  38590. back: {
  38591. height: math.unit(6 + 8/12, "feet"),
  38592. name: "Back",
  38593. image: {
  38594. source: "./media/characters/rebecca-pawlson/back.svg",
  38595. extra: 1702/1523,
  38596. bottom: 86/1788
  38597. }
  38598. },
  38599. },
  38600. [
  38601. {
  38602. name: "Normal",
  38603. height: math.unit(6 + 8/12, "feet")
  38604. },
  38605. {
  38606. name: "Mini Macro",
  38607. height: math.unit(10, "feet"),
  38608. default: true
  38609. },
  38610. {
  38611. name: "Macro",
  38612. height: math.unit(100, "feet")
  38613. },
  38614. {
  38615. name: "Mega Macro",
  38616. height: math.unit(2500, "feet")
  38617. },
  38618. {
  38619. name: "Giga Macro",
  38620. height: math.unit(50, "miles")
  38621. },
  38622. ]
  38623. ))
  38624. characterMakers.push(() => makeCharacter(
  38625. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38626. {
  38627. front: {
  38628. height: math.unit(7 + 6/12, "feet"),
  38629. weight: math.unit(600, "lb"),
  38630. name: "Front",
  38631. image: {
  38632. source: "./media/characters/moxie-nova/front.svg",
  38633. extra: 1734/1652,
  38634. bottom: 41/1775
  38635. }
  38636. },
  38637. },
  38638. [
  38639. {
  38640. name: "Normal",
  38641. height: math.unit(7 + 6/12, "feet"),
  38642. default: true
  38643. },
  38644. ]
  38645. ))
  38646. characterMakers.push(() => makeCharacter(
  38647. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38648. {
  38649. goat: {
  38650. height: math.unit(4, "feet"),
  38651. weight: math.unit(180, "lb"),
  38652. name: "Goat",
  38653. image: {
  38654. source: "./media/characters/tiffany/goat.svg",
  38655. extra: 1845/1595,
  38656. bottom: 106/1951
  38657. }
  38658. },
  38659. front: {
  38660. height: math.unit(5, "feet"),
  38661. weight: math.unit(150, "lb"),
  38662. name: "Foxcoon",
  38663. image: {
  38664. source: "./media/characters/tiffany/foxcoon.svg",
  38665. extra: 1941/1845,
  38666. bottom: 58/1999
  38667. }
  38668. },
  38669. },
  38670. [
  38671. {
  38672. name: "Normal",
  38673. height: math.unit(5, "feet"),
  38674. default: true
  38675. },
  38676. ]
  38677. ))
  38678. characterMakers.push(() => makeCharacter(
  38679. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38680. {
  38681. front: {
  38682. height: math.unit(8, "feet"),
  38683. weight: math.unit(300, "lb"),
  38684. name: "Front",
  38685. image: {
  38686. source: "./media/characters/raxinath/front.svg",
  38687. extra: 1407/1309,
  38688. bottom: 39/1446
  38689. }
  38690. },
  38691. back: {
  38692. height: math.unit(8, "feet"),
  38693. weight: math.unit(300, "lb"),
  38694. name: "Back",
  38695. image: {
  38696. source: "./media/characters/raxinath/back.svg",
  38697. extra: 1405/1315,
  38698. bottom: 9/1414
  38699. }
  38700. },
  38701. },
  38702. [
  38703. {
  38704. name: "Speck",
  38705. height: math.unit(0.5, "nm")
  38706. },
  38707. {
  38708. name: "Micro",
  38709. height: math.unit(3, "inches")
  38710. },
  38711. {
  38712. name: "Kobold",
  38713. height: math.unit(3, "feet")
  38714. },
  38715. {
  38716. name: "Normal",
  38717. height: math.unit(8, "feet"),
  38718. default: true
  38719. },
  38720. {
  38721. name: "Giant",
  38722. height: math.unit(50, "feet")
  38723. },
  38724. {
  38725. name: "Macro",
  38726. height: math.unit(1000, "feet")
  38727. },
  38728. {
  38729. name: "Megamacro",
  38730. height: math.unit(1, "mile")
  38731. },
  38732. ]
  38733. ))
  38734. characterMakers.push(() => makeCharacter(
  38735. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38736. {
  38737. front: {
  38738. height: math.unit(10, "feet"),
  38739. weight: math.unit(1442, "lb"),
  38740. name: "Front",
  38741. image: {
  38742. source: "./media/characters/mal-dragon/front.svg",
  38743. extra: 1515/1444,
  38744. bottom: 113/1628
  38745. }
  38746. },
  38747. back: {
  38748. height: math.unit(10, "feet"),
  38749. weight: math.unit(1442, "lb"),
  38750. name: "Back",
  38751. image: {
  38752. source: "./media/characters/mal-dragon/back.svg",
  38753. extra: 1527/1434,
  38754. bottom: 25/1552
  38755. }
  38756. },
  38757. },
  38758. [
  38759. {
  38760. name: "Mortal Interaction",
  38761. height: math.unit(10, "feet"),
  38762. default: true
  38763. },
  38764. {
  38765. name: "Large",
  38766. height: math.unit(30, "feet")
  38767. },
  38768. {
  38769. name: "Kaiju",
  38770. height: math.unit(300, "feet")
  38771. },
  38772. {
  38773. name: "Megamacro",
  38774. height: math.unit(10000, "feet")
  38775. },
  38776. {
  38777. name: "Continent Cracker",
  38778. height: math.unit(30000000, "feet")
  38779. },
  38780. {
  38781. name: "Sol-Swallowing",
  38782. height: math.unit(1e11, "feet")
  38783. },
  38784. {
  38785. name: "Light Universal",
  38786. height: math.unit(5, "universes")
  38787. },
  38788. {
  38789. name: "Universe Atoms",
  38790. height: math.unit(1.829e9, "universes")
  38791. },
  38792. {
  38793. name: "Light Multiversal",
  38794. height: math.unit(5, "multiverses")
  38795. },
  38796. {
  38797. name: "Multiverse Atoms",
  38798. height: math.unit(1.829e9, "multiverses")
  38799. },
  38800. {
  38801. name: "Fabric of Time",
  38802. height: math.unit(1e262, "multiverses")
  38803. },
  38804. ]
  38805. ))
  38806. characterMakers.push(() => makeCharacter(
  38807. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38808. {
  38809. front: {
  38810. height: math.unit(9, "feet"),
  38811. weight: math.unit(1050, "lb"),
  38812. name: "Front",
  38813. image: {
  38814. source: "./media/characters/tabitha/front.svg",
  38815. extra: 2083/1994,
  38816. bottom: 68/2151
  38817. }
  38818. },
  38819. },
  38820. [
  38821. {
  38822. name: "Baseline",
  38823. height: math.unit(9, "feet"),
  38824. default: true
  38825. },
  38826. {
  38827. name: "Giant",
  38828. height: math.unit(90, "feet")
  38829. },
  38830. {
  38831. name: "Macro",
  38832. height: math.unit(900, "feet")
  38833. },
  38834. {
  38835. name: "Megamacro",
  38836. height: math.unit(9000, "feet")
  38837. },
  38838. {
  38839. name: "City-Crushing",
  38840. height: math.unit(27000, "feet")
  38841. },
  38842. {
  38843. name: "Mountain-Mashing",
  38844. height: math.unit(90000, "feet")
  38845. },
  38846. {
  38847. name: "Nation Nemesis",
  38848. height: math.unit(9e6, "feet")
  38849. },
  38850. {
  38851. name: "Continent Cracker",
  38852. height: math.unit(27e6, "feet")
  38853. },
  38854. {
  38855. name: "Earth-Eclipsing",
  38856. height: math.unit(2.7e8, "feet")
  38857. },
  38858. {
  38859. name: "Gas Giant Gulper",
  38860. height: math.unit(2.7e9, "feet")
  38861. },
  38862. {
  38863. name: "Sol-Swallowing",
  38864. height: math.unit(9e10, "feet")
  38865. },
  38866. {
  38867. name: "Galaxy Gulper",
  38868. height: math.unit(9, "galaxies")
  38869. },
  38870. {
  38871. name: "Cosmos Churner",
  38872. height: math.unit(9, "universes")
  38873. },
  38874. ]
  38875. ))
  38876. characterMakers.push(() => makeCharacter(
  38877. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38878. {
  38879. front: {
  38880. height: math.unit(160, "cm"),
  38881. weight: math.unit(55, "kg"),
  38882. name: "Front",
  38883. image: {
  38884. source: "./media/characters/tow/front.svg",
  38885. extra: 1751/1722,
  38886. bottom: 74/1825
  38887. }
  38888. },
  38889. },
  38890. [
  38891. {
  38892. name: "Norm",
  38893. height: math.unit(160, "cm")
  38894. },
  38895. {
  38896. name: "Casual",
  38897. height: math.unit(3200, "m"),
  38898. default: true
  38899. },
  38900. {
  38901. name: "Show-Off",
  38902. height: math.unit(160, "km")
  38903. },
  38904. ]
  38905. ))
  38906. characterMakers.push(() => makeCharacter(
  38907. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38908. {
  38909. front: {
  38910. height: math.unit(7 + 11/12, "feet"),
  38911. weight: math.unit(342.8, "lb"),
  38912. name: "Front",
  38913. image: {
  38914. source: "./media/characters/vivian-orca-dragon/front.svg",
  38915. extra: 1890/1865,
  38916. bottom: 28/1918
  38917. }
  38918. },
  38919. },
  38920. [
  38921. {
  38922. name: "Micro",
  38923. height: math.unit(5, "inches")
  38924. },
  38925. {
  38926. name: "Normal",
  38927. height: math.unit(7 + 11/12, "feet"),
  38928. default: true
  38929. },
  38930. {
  38931. name: "Macro",
  38932. height: math.unit(395 + 7/12, "feet")
  38933. },
  38934. ]
  38935. ))
  38936. characterMakers.push(() => makeCharacter(
  38937. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38938. {
  38939. side: {
  38940. height: math.unit(10, "feet"),
  38941. weight: math.unit(1442, "lb"),
  38942. name: "Side",
  38943. image: {
  38944. source: "./media/characters/lotherakon/side.svg",
  38945. extra: 1604/1497,
  38946. bottom: 89/1693
  38947. }
  38948. },
  38949. },
  38950. [
  38951. {
  38952. name: "Mortal Interaction",
  38953. height: math.unit(10, "feet")
  38954. },
  38955. {
  38956. name: "Large",
  38957. height: math.unit(30, "feet"),
  38958. default: true
  38959. },
  38960. {
  38961. name: "Giant",
  38962. height: math.unit(100, "feet")
  38963. },
  38964. {
  38965. name: "Kaiju",
  38966. height: math.unit(300, "feet")
  38967. },
  38968. {
  38969. name: "Macro",
  38970. height: math.unit(1000, "feet")
  38971. },
  38972. {
  38973. name: "Macro+",
  38974. height: math.unit(3000, "feet")
  38975. },
  38976. {
  38977. name: "Megamacro",
  38978. height: math.unit(10000, "feet")
  38979. },
  38980. {
  38981. name: "City-Crushing",
  38982. height: math.unit(30000, "feet")
  38983. },
  38984. {
  38985. name: "Continent Cracker",
  38986. height: math.unit(30e6, "feet")
  38987. },
  38988. {
  38989. name: "Earth Eclipsing",
  38990. height: math.unit(3e8, "feet")
  38991. },
  38992. {
  38993. name: "Gas Giant Gulper",
  38994. height: math.unit(3e9, "feet")
  38995. },
  38996. {
  38997. name: "Sol-Swallowing",
  38998. height: math.unit(1e11, "feet")
  38999. },
  39000. {
  39001. name: "System Swallower",
  39002. height: math.unit(3e14, "feet")
  39003. },
  39004. {
  39005. name: "Galaxy Gulper",
  39006. height: math.unit(10, "galaxies")
  39007. },
  39008. {
  39009. name: "Light Universal",
  39010. height: math.unit(5, "universes")
  39011. },
  39012. {
  39013. name: "Universe Palm",
  39014. height: math.unit(20, "universes")
  39015. },
  39016. {
  39017. name: "Light Multiversal",
  39018. height: math.unit(5, "multiverses")
  39019. },
  39020. {
  39021. name: "Multiverse Palm",
  39022. height: math.unit(20, "multiverses")
  39023. },
  39024. {
  39025. name: "Inferno Incarnate",
  39026. height: math.unit(1e7, "multiverses")
  39027. },
  39028. ]
  39029. ))
  39030. characterMakers.push(() => makeCharacter(
  39031. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39032. {
  39033. front: {
  39034. height: math.unit(8, "feet"),
  39035. weight: math.unit(1200, "lb"),
  39036. name: "Front",
  39037. image: {
  39038. source: "./media/characters/malithee/front.svg",
  39039. extra: 1675/1640,
  39040. bottom: 162/1837
  39041. }
  39042. },
  39043. },
  39044. [
  39045. {
  39046. name: "Mortal Interaction",
  39047. height: math.unit(8, "feet"),
  39048. default: true
  39049. },
  39050. {
  39051. name: "Large",
  39052. height: math.unit(24, "feet")
  39053. },
  39054. {
  39055. name: "Kaiju",
  39056. height: math.unit(240, "feet")
  39057. },
  39058. {
  39059. name: "Megamacro",
  39060. height: math.unit(8000, "feet")
  39061. },
  39062. {
  39063. name: "Continent Cracker",
  39064. height: math.unit(24e6, "feet")
  39065. },
  39066. {
  39067. name: "Earth-Eclipsing",
  39068. height: math.unit(2.4e8, "feet")
  39069. },
  39070. {
  39071. name: "Sol-Swallowing",
  39072. height: math.unit(8e10, "feet")
  39073. },
  39074. {
  39075. name: "Galaxy Gulper",
  39076. height: math.unit(8, "galaxies")
  39077. },
  39078. {
  39079. name: "Light Universal",
  39080. height: math.unit(4, "universes")
  39081. },
  39082. {
  39083. name: "Universe Atoms",
  39084. height: math.unit(1.829e9, "universes")
  39085. },
  39086. {
  39087. name: "Light Multiversal",
  39088. height: math.unit(4, "multiverses")
  39089. },
  39090. {
  39091. name: "Multiverse Atoms",
  39092. height: math.unit(1.829e9, "multiverses")
  39093. },
  39094. {
  39095. name: "Nigh-Omnipresence",
  39096. height: math.unit(8e261, "multiverses")
  39097. },
  39098. ]
  39099. ))
  39100. characterMakers.push(() => makeCharacter(
  39101. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39102. {
  39103. front: {
  39104. height: math.unit(10, "feet"),
  39105. weight: math.unit(1500, "lb"),
  39106. name: "Front",
  39107. image: {
  39108. source: "./media/characters/miles-thestia/front.svg",
  39109. extra: 1812/1727,
  39110. bottom: 86/1898
  39111. }
  39112. },
  39113. back: {
  39114. height: math.unit(10, "feet"),
  39115. weight: math.unit(1500, "lb"),
  39116. name: "Back",
  39117. image: {
  39118. source: "./media/characters/miles-thestia/back.svg",
  39119. extra: 1799/1690,
  39120. bottom: 47/1846
  39121. }
  39122. },
  39123. frontNsfw: {
  39124. height: math.unit(10, "feet"),
  39125. weight: math.unit(1500, "lb"),
  39126. name: "Front (NSFW)",
  39127. image: {
  39128. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39129. extra: 1812/1727,
  39130. bottom: 86/1898
  39131. }
  39132. },
  39133. },
  39134. [
  39135. {
  39136. name: "Mini-Macro",
  39137. height: math.unit(10, "feet"),
  39138. default: true
  39139. },
  39140. ]
  39141. ))
  39142. characterMakers.push(() => makeCharacter(
  39143. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39144. {
  39145. front: {
  39146. height: math.unit(25, "feet"),
  39147. name: "Front",
  39148. image: {
  39149. source: "./media/characters/titan-s-wulf/front.svg",
  39150. extra: 1560/1484,
  39151. bottom: 76/1636
  39152. }
  39153. },
  39154. },
  39155. [
  39156. {
  39157. name: "Smallest",
  39158. height: math.unit(25, "feet"),
  39159. default: true
  39160. },
  39161. {
  39162. name: "Normal",
  39163. height: math.unit(200, "feet")
  39164. },
  39165. {
  39166. name: "Macro",
  39167. height: math.unit(200000, "feet")
  39168. },
  39169. {
  39170. name: "Multiversal Original",
  39171. height: math.unit(10000, "multiverses")
  39172. },
  39173. ]
  39174. ))
  39175. characterMakers.push(() => makeCharacter(
  39176. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39177. {
  39178. front: {
  39179. height: math.unit(8, "feet"),
  39180. weight: math.unit(553, "lb"),
  39181. name: "Front",
  39182. image: {
  39183. source: "./media/characters/tawendeh/front.svg",
  39184. extra: 2365/2268,
  39185. bottom: 83/2448
  39186. }
  39187. },
  39188. frontClothed: {
  39189. height: math.unit(8, "feet"),
  39190. weight: math.unit(553, "lb"),
  39191. name: "Front (Clothed)",
  39192. image: {
  39193. source: "./media/characters/tawendeh/front-clothed.svg",
  39194. extra: 2365/2268,
  39195. bottom: 83/2448
  39196. }
  39197. },
  39198. back: {
  39199. height: math.unit(8, "feet"),
  39200. weight: math.unit(553, "lb"),
  39201. name: "Back",
  39202. image: {
  39203. source: "./media/characters/tawendeh/back.svg",
  39204. extra: 2397/2294,
  39205. bottom: 42/2439
  39206. }
  39207. },
  39208. },
  39209. [
  39210. {
  39211. name: "Mortal Interaction",
  39212. height: math.unit(8, "feet"),
  39213. default: true
  39214. },
  39215. {
  39216. name: "Giant",
  39217. height: math.unit(80, "feet")
  39218. },
  39219. {
  39220. name: "Macro",
  39221. height: math.unit(800, "feet")
  39222. },
  39223. {
  39224. name: "Megamacro",
  39225. height: math.unit(8000, "feet")
  39226. },
  39227. {
  39228. name: "City-Crushing",
  39229. height: math.unit(24000, "feet")
  39230. },
  39231. {
  39232. name: "Mountain-Mashing",
  39233. height: math.unit(80000, "feet")
  39234. },
  39235. {
  39236. name: "Nation Nemesis",
  39237. height: math.unit(8e6, "feet")
  39238. },
  39239. {
  39240. name: "Continent Cracker",
  39241. height: math.unit(24e6, "feet")
  39242. },
  39243. {
  39244. name: "Earth-Eclipsing",
  39245. height: math.unit(2.4e8, "feet")
  39246. },
  39247. {
  39248. name: "Gas Giant Gulper",
  39249. height: math.unit(2.4e9, "feet")
  39250. },
  39251. {
  39252. name: "Sol-Swallowing",
  39253. height: math.unit(8e10, "feet")
  39254. },
  39255. {
  39256. name: "Galaxy Gulper",
  39257. height: math.unit(8, "galaxies")
  39258. },
  39259. {
  39260. name: "Cosmos Churner",
  39261. height: math.unit(8, "universes")
  39262. },
  39263. {
  39264. name: "Omnipotent Otter",
  39265. height: math.unit(80, "universes")
  39266. },
  39267. ]
  39268. ))
  39269. characterMakers.push(() => makeCharacter(
  39270. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39271. {
  39272. front: {
  39273. height: math.unit(2.6, "meters"),
  39274. weight: math.unit(900, "kg"),
  39275. name: "Front",
  39276. image: {
  39277. source: "./media/characters/neesha/front.svg",
  39278. extra: 1803/1653,
  39279. bottom: 128/1931
  39280. }
  39281. },
  39282. },
  39283. [
  39284. {
  39285. name: "Normal",
  39286. height: math.unit(2.6, "meters"),
  39287. default: true
  39288. },
  39289. {
  39290. name: "Macro",
  39291. height: math.unit(50, "meters")
  39292. },
  39293. ]
  39294. ))
  39295. characterMakers.push(() => makeCharacter(
  39296. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39297. {
  39298. front: {
  39299. height: math.unit(5, "feet"),
  39300. weight: math.unit(185, "lb"),
  39301. name: "Front",
  39302. image: {
  39303. source: "./media/characters/kyera/front.svg",
  39304. extra: 1875/1790,
  39305. bottom: 96/1971
  39306. }
  39307. },
  39308. },
  39309. [
  39310. {
  39311. name: "Normal",
  39312. height: math.unit(5, "feet"),
  39313. default: true
  39314. },
  39315. ]
  39316. ))
  39317. characterMakers.push(() => makeCharacter(
  39318. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39319. {
  39320. front: {
  39321. height: math.unit(7 + 6/12, "feet"),
  39322. weight: math.unit(540, "lb"),
  39323. name: "Front",
  39324. image: {
  39325. source: "./media/characters/yuko/front.svg",
  39326. extra: 1282/1222,
  39327. bottom: 101/1383
  39328. }
  39329. },
  39330. frontClothed: {
  39331. height: math.unit(7 + 6/12, "feet"),
  39332. weight: math.unit(540, "lb"),
  39333. name: "Front (Clothed)",
  39334. image: {
  39335. source: "./media/characters/yuko/front-clothed.svg",
  39336. extra: 1282/1222,
  39337. bottom: 101/1383
  39338. }
  39339. },
  39340. },
  39341. [
  39342. {
  39343. name: "Normal",
  39344. height: math.unit(7 + 6/12, "feet"),
  39345. default: true
  39346. },
  39347. {
  39348. name: "Macro",
  39349. height: math.unit(26 + 9/12, "feet")
  39350. },
  39351. {
  39352. name: "Megamacro",
  39353. height: math.unit(300, "feet")
  39354. },
  39355. {
  39356. name: "Gigamacro",
  39357. height: math.unit(5000, "feet")
  39358. },
  39359. {
  39360. name: "Planetary",
  39361. height: math.unit(10000, "miles")
  39362. },
  39363. ]
  39364. ))
  39365. characterMakers.push(() => makeCharacter(
  39366. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39367. {
  39368. front: {
  39369. height: math.unit(8 + 2/12, "feet"),
  39370. weight: math.unit(600, "lb"),
  39371. name: "Front",
  39372. image: {
  39373. source: "./media/characters/deam-nitrel/front.svg",
  39374. extra: 1308/1234,
  39375. bottom: 125/1433
  39376. }
  39377. },
  39378. },
  39379. [
  39380. {
  39381. name: "Normal",
  39382. height: math.unit(8 + 2/12, "feet"),
  39383. default: true
  39384. },
  39385. ]
  39386. ))
  39387. characterMakers.push(() => makeCharacter(
  39388. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39389. {
  39390. front: {
  39391. height: math.unit(6.1, "feet"),
  39392. weight: math.unit(180, "lb"),
  39393. name: "Front",
  39394. image: {
  39395. source: "./media/characters/skyress/front.svg",
  39396. extra: 1045/915,
  39397. bottom: 28/1073
  39398. }
  39399. },
  39400. maw: {
  39401. height: math.unit(1, "feet"),
  39402. name: "Maw",
  39403. image: {
  39404. source: "./media/characters/skyress/maw.svg"
  39405. }
  39406. },
  39407. },
  39408. [
  39409. {
  39410. name: "Normal",
  39411. height: math.unit(6.1, "feet"),
  39412. default: true
  39413. },
  39414. {
  39415. name: "Macro",
  39416. height: math.unit(200, "feet")
  39417. },
  39418. ]
  39419. ))
  39420. characterMakers.push(() => makeCharacter(
  39421. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39422. {
  39423. front: {
  39424. height: math.unit(4 + 2/12, "feet"),
  39425. weight: math.unit(40, "kg"),
  39426. name: "Front",
  39427. image: {
  39428. source: "./media/characters/amethyst-jones/front.svg",
  39429. extra: 1220/1150,
  39430. bottom: 101/1321
  39431. }
  39432. },
  39433. },
  39434. [
  39435. {
  39436. name: "Normal",
  39437. height: math.unit(4 + 2/12, "feet"),
  39438. default: true
  39439. },
  39440. ]
  39441. ))
  39442. characterMakers.push(() => makeCharacter(
  39443. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39444. {
  39445. front: {
  39446. height: math.unit(1.7, "m"),
  39447. weight: math.unit(135, "lb"),
  39448. name: "Front",
  39449. image: {
  39450. source: "./media/characters/jade/front.svg",
  39451. extra: 1818/1767,
  39452. bottom: 32/1850
  39453. }
  39454. },
  39455. back: {
  39456. height: math.unit(1.7, "m"),
  39457. weight: math.unit(135, "lb"),
  39458. name: "Back",
  39459. image: {
  39460. source: "./media/characters/jade/back.svg",
  39461. extra: 1869/1809,
  39462. bottom: 35/1904
  39463. }
  39464. },
  39465. hand: {
  39466. height: math.unit(0.24, "m"),
  39467. name: "Hand",
  39468. image: {
  39469. source: "./media/characters/jade/hand.svg"
  39470. }
  39471. },
  39472. foot: {
  39473. height: math.unit(0.263, "m"),
  39474. name: "Foot",
  39475. image: {
  39476. source: "./media/characters/jade/foot.svg"
  39477. }
  39478. },
  39479. dick: {
  39480. height: math.unit(0.47, "m"),
  39481. name: "Dick",
  39482. image: {
  39483. source: "./media/characters/jade/dick.svg"
  39484. }
  39485. },
  39486. },
  39487. [
  39488. {
  39489. name: "Micro",
  39490. height: math.unit(22, "cm")
  39491. },
  39492. {
  39493. name: "Normal",
  39494. height: math.unit(1.7, "m"),
  39495. default: true
  39496. },
  39497. {
  39498. name: "Macro",
  39499. height: math.unit(152, "m")
  39500. },
  39501. ]
  39502. ))
  39503. characterMakers.push(() => makeCharacter(
  39504. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39505. {
  39506. front: {
  39507. height: math.unit(100, "miles"),
  39508. weight: math.unit(20000, "tons"),
  39509. name: "Front",
  39510. image: {
  39511. source: "./media/characters/cookie/front.svg",
  39512. extra: 1125/1070,
  39513. bottom: 30/1155
  39514. }
  39515. },
  39516. },
  39517. [
  39518. {
  39519. name: "Big",
  39520. height: math.unit(50, "feet")
  39521. },
  39522. {
  39523. name: "Macro",
  39524. height: math.unit(100, "miles"),
  39525. default: true
  39526. },
  39527. {
  39528. name: "Megamacro",
  39529. height: math.unit(90000, "miles")
  39530. },
  39531. ]
  39532. ))
  39533. characterMakers.push(() => makeCharacter(
  39534. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39535. {
  39536. front: {
  39537. height: math.unit(6, "feet"),
  39538. weight: math.unit(145, "lb"),
  39539. name: "Front",
  39540. image: {
  39541. source: "./media/characters/farzian/front.svg",
  39542. extra: 1902/1693,
  39543. bottom: 108/2010
  39544. }
  39545. },
  39546. },
  39547. [
  39548. {
  39549. name: "Macro",
  39550. height: math.unit(500, "feet"),
  39551. default: true
  39552. },
  39553. ]
  39554. ))
  39555. characterMakers.push(() => makeCharacter(
  39556. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39557. {
  39558. front: {
  39559. height: math.unit(3 + 6/12, "feet"),
  39560. weight: math.unit(50, "lb"),
  39561. name: "Front",
  39562. image: {
  39563. source: "./media/characters/kimberly-tilson/front.svg",
  39564. extra: 1400/1322,
  39565. bottom: 36/1436
  39566. }
  39567. },
  39568. back: {
  39569. height: math.unit(3 + 6/12, "feet"),
  39570. weight: math.unit(50, "lb"),
  39571. name: "Back",
  39572. image: {
  39573. source: "./media/characters/kimberly-tilson/back.svg",
  39574. extra: 1370/1307,
  39575. bottom: 20/1390
  39576. }
  39577. },
  39578. },
  39579. [
  39580. {
  39581. name: "Normal",
  39582. height: math.unit(3 + 6/12, "feet"),
  39583. default: true
  39584. },
  39585. ]
  39586. ))
  39587. characterMakers.push(() => makeCharacter(
  39588. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39589. {
  39590. front: {
  39591. height: math.unit(1148, "feet"),
  39592. weight: math.unit(34057, "lb"),
  39593. name: "Front",
  39594. image: {
  39595. source: "./media/characters/harthos/front.svg",
  39596. extra: 1391/1339,
  39597. bottom: 13/1404
  39598. }
  39599. },
  39600. },
  39601. [
  39602. {
  39603. name: "Macro",
  39604. height: math.unit(1148, "feet"),
  39605. default: true
  39606. },
  39607. ]
  39608. ))
  39609. characterMakers.push(() => makeCharacter(
  39610. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39611. {
  39612. front: {
  39613. height: math.unit(15, "feet"),
  39614. name: "Front",
  39615. image: {
  39616. source: "./media/characters/hypatia/front.svg",
  39617. extra: 1653/1591,
  39618. bottom: 79/1732
  39619. }
  39620. },
  39621. },
  39622. [
  39623. {
  39624. name: "Normal",
  39625. height: math.unit(15, "feet")
  39626. },
  39627. {
  39628. name: "Small",
  39629. height: math.unit(300, "feet")
  39630. },
  39631. {
  39632. name: "Macro",
  39633. height: math.unit(2500, "feet"),
  39634. default: true
  39635. },
  39636. {
  39637. name: "Mega Macro",
  39638. height: math.unit(1500, "miles")
  39639. },
  39640. {
  39641. name: "Giga Macro",
  39642. height: math.unit(1.5e6, "miles")
  39643. },
  39644. ]
  39645. ))
  39646. characterMakers.push(() => makeCharacter(
  39647. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39648. {
  39649. front: {
  39650. height: math.unit(6, "feet"),
  39651. weight: math.unit(200, "lb"),
  39652. name: "Front",
  39653. image: {
  39654. source: "./media/characters/wulver/front.svg",
  39655. extra: 1724/1632,
  39656. bottom: 130/1854
  39657. }
  39658. },
  39659. frontNsfw: {
  39660. height: math.unit(6, "feet"),
  39661. weight: math.unit(200, "lb"),
  39662. name: "Front (NSFW)",
  39663. image: {
  39664. source: "./media/characters/wulver/front-nsfw.svg",
  39665. extra: 1724/1632,
  39666. bottom: 130/1854
  39667. }
  39668. },
  39669. },
  39670. [
  39671. {
  39672. name: "Human-Sized",
  39673. height: math.unit(6, "feet")
  39674. },
  39675. {
  39676. name: "Normal",
  39677. height: math.unit(4, "meters"),
  39678. default: true
  39679. },
  39680. {
  39681. name: "Large",
  39682. height: math.unit(6, "m")
  39683. },
  39684. ]
  39685. ))
  39686. characterMakers.push(() => makeCharacter(
  39687. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39688. {
  39689. front: {
  39690. height: math.unit(7, "feet"),
  39691. name: "Front",
  39692. image: {
  39693. source: "./media/characters/maru/front.svg",
  39694. extra: 1595/1570,
  39695. bottom: 0/1595
  39696. }
  39697. },
  39698. },
  39699. [
  39700. {
  39701. name: "Normal",
  39702. height: math.unit(7, "feet"),
  39703. default: true
  39704. },
  39705. {
  39706. name: "Macro",
  39707. height: math.unit(700, "feet")
  39708. },
  39709. {
  39710. name: "Mega Macro",
  39711. height: math.unit(25, "miles")
  39712. },
  39713. ]
  39714. ))
  39715. characterMakers.push(() => makeCharacter(
  39716. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39717. {
  39718. front: {
  39719. height: math.unit(6, "feet"),
  39720. weight: math.unit(170, "lb"),
  39721. name: "Front",
  39722. image: {
  39723. source: "./media/characters/xenon/front.svg",
  39724. extra: 1376/1305,
  39725. bottom: 56/1432
  39726. }
  39727. },
  39728. back: {
  39729. height: math.unit(6, "feet"),
  39730. weight: math.unit(170, "lb"),
  39731. name: "Back",
  39732. image: {
  39733. source: "./media/characters/xenon/back.svg",
  39734. extra: 1328/1259,
  39735. bottom: 95/1423
  39736. }
  39737. },
  39738. maw: {
  39739. height: math.unit(0.52, "feet"),
  39740. name: "Maw",
  39741. image: {
  39742. source: "./media/characters/xenon/maw.svg"
  39743. }
  39744. },
  39745. hand: {
  39746. height: math.unit(0.82, "feet"),
  39747. name: "Hand",
  39748. image: {
  39749. source: "./media/characters/xenon/hand.svg"
  39750. }
  39751. },
  39752. foot: {
  39753. height: math.unit(1.13, "feet"),
  39754. name: "Foot",
  39755. image: {
  39756. source: "./media/characters/xenon/foot.svg"
  39757. }
  39758. },
  39759. },
  39760. [
  39761. {
  39762. name: "Micro",
  39763. height: math.unit(0.8, "inches")
  39764. },
  39765. {
  39766. name: "Normal",
  39767. height: math.unit(6, "feet")
  39768. },
  39769. {
  39770. name: "Macro",
  39771. height: math.unit(50, "feet"),
  39772. default: true
  39773. },
  39774. {
  39775. name: "Macro+",
  39776. height: math.unit(250, "feet")
  39777. },
  39778. {
  39779. name: "Megamacro",
  39780. height: math.unit(1500, "feet")
  39781. },
  39782. ]
  39783. ))
  39784. characterMakers.push(() => makeCharacter(
  39785. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39786. {
  39787. front: {
  39788. height: math.unit(7 + 5/12, "feet"),
  39789. name: "Front",
  39790. image: {
  39791. source: "./media/characters/zane/front.svg",
  39792. extra: 1260/1203,
  39793. bottom: 94/1354
  39794. }
  39795. },
  39796. back: {
  39797. height: math.unit(5.05, "feet"),
  39798. name: "Back",
  39799. image: {
  39800. source: "./media/characters/zane/back.svg",
  39801. extra: 893/829,
  39802. bottom: 30/923
  39803. }
  39804. },
  39805. werewolf: {
  39806. height: math.unit(11, "feet"),
  39807. name: "Werewolf",
  39808. image: {
  39809. source: "./media/characters/zane/werewolf.svg",
  39810. extra: 1383/1323,
  39811. bottom: 89/1472
  39812. }
  39813. },
  39814. foot: {
  39815. height: math.unit(1.46, "feet"),
  39816. name: "Foot",
  39817. image: {
  39818. source: "./media/characters/zane/foot.svg"
  39819. }
  39820. },
  39821. footFront: {
  39822. height: math.unit(0.784, "feet"),
  39823. name: "Foot (Front)",
  39824. image: {
  39825. source: "./media/characters/zane/foot-front.svg"
  39826. }
  39827. },
  39828. dick: {
  39829. height: math.unit(1.95, "feet"),
  39830. name: "Dick",
  39831. image: {
  39832. source: "./media/characters/zane/dick.svg"
  39833. }
  39834. },
  39835. dickWerewolf: {
  39836. height: math.unit(3.77, "feet"),
  39837. name: "Dick (Werewolf)",
  39838. image: {
  39839. source: "./media/characters/zane/dick.svg"
  39840. }
  39841. },
  39842. },
  39843. [
  39844. {
  39845. name: "Normal",
  39846. height: math.unit(7 + 5/12, "feet"),
  39847. default: true
  39848. },
  39849. ]
  39850. ))
  39851. characterMakers.push(() => makeCharacter(
  39852. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39853. {
  39854. front: {
  39855. height: math.unit(6 + 2/12, "feet"),
  39856. weight: math.unit(284, "lb"),
  39857. name: "Front",
  39858. image: {
  39859. source: "./media/characters/benni-desparque/front.svg",
  39860. extra: 1353/1126,
  39861. bottom: 69/1422
  39862. }
  39863. },
  39864. },
  39865. [
  39866. {
  39867. name: "Civilian",
  39868. height: math.unit(6 + 2/12, "feet")
  39869. },
  39870. {
  39871. name: "Normal",
  39872. height: math.unit(98, "feet"),
  39873. default: true
  39874. },
  39875. {
  39876. name: "Kaiju Fighter",
  39877. height: math.unit(268, "feet")
  39878. },
  39879. ]
  39880. ))
  39881. characterMakers.push(() => makeCharacter(
  39882. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39883. {
  39884. front: {
  39885. height: math.unit(5, "feet"),
  39886. weight: math.unit(105, "lb"),
  39887. name: "Front",
  39888. image: {
  39889. source: "./media/characters/maxine/front.svg",
  39890. extra: 1386/1250,
  39891. bottom: 71/1457
  39892. }
  39893. },
  39894. },
  39895. [
  39896. {
  39897. name: "Normal",
  39898. height: math.unit(5, "feet"),
  39899. default: true
  39900. },
  39901. ]
  39902. ))
  39903. characterMakers.push(() => makeCharacter(
  39904. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39905. {
  39906. front: {
  39907. height: math.unit(11 + 7/12, "feet"),
  39908. weight: math.unit(9576, "lb"),
  39909. name: "Front",
  39910. image: {
  39911. source: "./media/characters/scaly/front.svg",
  39912. extra: 888/867,
  39913. bottom: 36/924
  39914. }
  39915. },
  39916. },
  39917. [
  39918. {
  39919. name: "Normal",
  39920. height: math.unit(11 + 7/12, "feet"),
  39921. default: true
  39922. },
  39923. ]
  39924. ))
  39925. characterMakers.push(() => makeCharacter(
  39926. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  39927. {
  39928. front: {
  39929. height: math.unit(6 + 3/12, "feet"),
  39930. name: "Front",
  39931. image: {
  39932. source: "./media/characters/saelria/front.svg",
  39933. extra: 1243/1138,
  39934. bottom: 46/1289
  39935. }
  39936. },
  39937. },
  39938. [
  39939. {
  39940. name: "Micro",
  39941. height: math.unit(6, "inches"),
  39942. },
  39943. {
  39944. name: "Normal",
  39945. height: math.unit(6 + 3/12, "feet"),
  39946. default: true
  39947. },
  39948. {
  39949. name: "Macro",
  39950. height: math.unit(25, "feet")
  39951. },
  39952. ]
  39953. ))
  39954. characterMakers.push(() => makeCharacter(
  39955. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39956. {
  39957. front: {
  39958. height: math.unit(80, "meters"),
  39959. weight: math.unit(7000, "tonnes"),
  39960. name: "Front",
  39961. image: {
  39962. source: "./media/characters/tef/front.svg",
  39963. extra: 2036/1991,
  39964. bottom: 54/2090
  39965. }
  39966. },
  39967. back: {
  39968. height: math.unit(80, "meters"),
  39969. weight: math.unit(7000, "tonnes"),
  39970. name: "Back",
  39971. image: {
  39972. source: "./media/characters/tef/back.svg",
  39973. extra: 2036/1991,
  39974. bottom: 54/2090
  39975. }
  39976. },
  39977. },
  39978. [
  39979. {
  39980. name: "Macro",
  39981. height: math.unit(80, "meters"),
  39982. default: true
  39983. },
  39984. ]
  39985. ))
  39986. characterMakers.push(() => makeCharacter(
  39987. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39988. {
  39989. front: {
  39990. height: math.unit(13, "feet"),
  39991. weight: math.unit(6, "tons"),
  39992. name: "Front",
  39993. image: {
  39994. source: "./media/characters/rover/front.svg",
  39995. extra: 1233/1156,
  39996. bottom: 50/1283
  39997. }
  39998. },
  39999. back: {
  40000. height: math.unit(13, "feet"),
  40001. weight: math.unit(6, "tons"),
  40002. name: "Back",
  40003. image: {
  40004. source: "./media/characters/rover/back.svg",
  40005. extra: 1327/1258,
  40006. bottom: 39/1366
  40007. }
  40008. },
  40009. },
  40010. [
  40011. {
  40012. name: "Normal",
  40013. height: math.unit(13, "feet"),
  40014. default: true
  40015. },
  40016. {
  40017. name: "Macro",
  40018. height: math.unit(1300, "feet")
  40019. },
  40020. {
  40021. name: "Megamacro",
  40022. height: math.unit(1300, "miles")
  40023. },
  40024. {
  40025. name: "Gigamacro",
  40026. height: math.unit(1300000, "miles")
  40027. },
  40028. ]
  40029. ))
  40030. characterMakers.push(() => makeCharacter(
  40031. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40032. {
  40033. front: {
  40034. height: math.unit(6, "feet"),
  40035. weight: math.unit(150, "lb"),
  40036. name: "Front",
  40037. image: {
  40038. source: "./media/characters/ariz/front.svg",
  40039. extra: 1401/1346,
  40040. bottom: 5/1406
  40041. }
  40042. },
  40043. },
  40044. [
  40045. {
  40046. name: "Normal",
  40047. height: math.unit(10, "feet"),
  40048. default: true
  40049. },
  40050. ]
  40051. ))
  40052. characterMakers.push(() => makeCharacter(
  40053. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40054. {
  40055. front: {
  40056. height: math.unit(6, "feet"),
  40057. weight: math.unit(140, "lb"),
  40058. name: "Front",
  40059. image: {
  40060. source: "./media/characters/sigrun/front.svg",
  40061. extra: 1418/1359,
  40062. bottom: 27/1445
  40063. }
  40064. },
  40065. },
  40066. [
  40067. {
  40068. name: "Macro",
  40069. height: math.unit(35, "feet"),
  40070. default: true
  40071. },
  40072. ]
  40073. ))
  40074. characterMakers.push(() => makeCharacter(
  40075. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40076. {
  40077. front: {
  40078. height: math.unit(6, "feet"),
  40079. weight: math.unit(150, "lb"),
  40080. name: "Front",
  40081. image: {
  40082. source: "./media/characters/numin/front.svg",
  40083. extra: 1433/1388,
  40084. bottom: 12/1445
  40085. }
  40086. },
  40087. },
  40088. [
  40089. {
  40090. name: "Macro",
  40091. height: math.unit(21.5, "km"),
  40092. default: true
  40093. },
  40094. ]
  40095. ))
  40096. characterMakers.push(() => makeCharacter(
  40097. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40098. {
  40099. front: {
  40100. height: math.unit(6, "feet"),
  40101. weight: math.unit(463, "lb"),
  40102. name: "Front",
  40103. image: {
  40104. source: "./media/characters/melwa/front.svg",
  40105. extra: 1307/1248,
  40106. bottom: 93/1400
  40107. }
  40108. },
  40109. },
  40110. [
  40111. {
  40112. name: "Macro",
  40113. height: math.unit(50, "meters"),
  40114. default: true
  40115. },
  40116. ]
  40117. ))
  40118. characterMakers.push(() => makeCharacter(
  40119. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40120. {
  40121. front: {
  40122. height: math.unit(325, "feet"),
  40123. name: "Front",
  40124. image: {
  40125. source: "./media/characters/zorkaiju/front.svg",
  40126. extra: 1955/1814,
  40127. bottom: 40/1995
  40128. }
  40129. },
  40130. frontExtended: {
  40131. height: math.unit(325, "feet"),
  40132. name: "Front (Extended)",
  40133. image: {
  40134. source: "./media/characters/zorkaiju/front-extended.svg",
  40135. extra: 1955/1814,
  40136. bottom: 40/1995
  40137. }
  40138. },
  40139. side: {
  40140. height: math.unit(325, "feet"),
  40141. name: "Side",
  40142. image: {
  40143. source: "./media/characters/zorkaiju/side.svg",
  40144. extra: 1495/1396,
  40145. bottom: 17/1512
  40146. }
  40147. },
  40148. sideExtended: {
  40149. height: math.unit(325, "feet"),
  40150. name: "Side (Extended)",
  40151. image: {
  40152. source: "./media/characters/zorkaiju/side-extended.svg",
  40153. extra: 1495/1396,
  40154. bottom: 17/1512
  40155. }
  40156. },
  40157. back: {
  40158. height: math.unit(325, "feet"),
  40159. name: "Back",
  40160. image: {
  40161. source: "./media/characters/zorkaiju/back.svg",
  40162. extra: 1959/1821,
  40163. bottom: 31/1990
  40164. }
  40165. },
  40166. backExtended: {
  40167. height: math.unit(325, "feet"),
  40168. name: "Back (Extended)",
  40169. image: {
  40170. source: "./media/characters/zorkaiju/back-extended.svg",
  40171. extra: 1959/1821,
  40172. bottom: 31/1990
  40173. }
  40174. },
  40175. hand: {
  40176. height: math.unit(58.4, "feet"),
  40177. name: "Hand",
  40178. image: {
  40179. source: "./media/characters/zorkaiju/hand.svg"
  40180. }
  40181. },
  40182. handExtended: {
  40183. height: math.unit(61.4, "feet"),
  40184. name: "Hand (Extended)",
  40185. image: {
  40186. source: "./media/characters/zorkaiju/hand-extended.svg"
  40187. }
  40188. },
  40189. foot: {
  40190. height: math.unit(95, "feet"),
  40191. name: "Foot",
  40192. image: {
  40193. source: "./media/characters/zorkaiju/foot.svg"
  40194. }
  40195. },
  40196. leftArm: {
  40197. height: math.unit(59, "feet"),
  40198. name: "Left Arm",
  40199. image: {
  40200. source: "./media/characters/zorkaiju/left-arm.svg"
  40201. }
  40202. },
  40203. rightArm: {
  40204. height: math.unit(59, "feet"),
  40205. name: "Right Arm",
  40206. image: {
  40207. source: "./media/characters/zorkaiju/right-arm.svg"
  40208. }
  40209. },
  40210. tail: {
  40211. height: math.unit(104, "feet"),
  40212. name: "Tail",
  40213. image: {
  40214. source: "./media/characters/zorkaiju/tail.svg"
  40215. }
  40216. },
  40217. tailExtended: {
  40218. height: math.unit(104, "feet"),
  40219. name: "Tail (Extended)",
  40220. image: {
  40221. source: "./media/characters/zorkaiju/tail-extended.svg"
  40222. }
  40223. },
  40224. tailBottom: {
  40225. height: math.unit(104, "feet"),
  40226. name: "Tail Bottom",
  40227. image: {
  40228. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40229. }
  40230. },
  40231. crystal: {
  40232. height: math.unit(27.54, "feet"),
  40233. name: "Crystal",
  40234. image: {
  40235. source: "./media/characters/zorkaiju/crystal.svg"
  40236. }
  40237. },
  40238. },
  40239. [
  40240. {
  40241. name: "Kaiju",
  40242. height: math.unit(325, "feet"),
  40243. default: true
  40244. },
  40245. ]
  40246. ))
  40247. characterMakers.push(() => makeCharacter(
  40248. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40249. {
  40250. front: {
  40251. height: math.unit(6 + 1/12, "feet"),
  40252. weight: math.unit(115, "lb"),
  40253. name: "Front",
  40254. image: {
  40255. source: "./media/characters/bailey-belfry/front.svg",
  40256. extra: 1240/1121,
  40257. bottom: 101/1341
  40258. }
  40259. },
  40260. },
  40261. [
  40262. {
  40263. name: "Normal",
  40264. height: math.unit(6 + 1/12, "feet"),
  40265. default: true
  40266. },
  40267. ]
  40268. ))
  40269. characterMakers.push(() => makeCharacter(
  40270. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40271. {
  40272. side: {
  40273. height: math.unit(4, "meters"),
  40274. weight: math.unit(250, "kg"),
  40275. name: "Side",
  40276. image: {
  40277. source: "./media/characters/blacky/side.svg",
  40278. extra: 1027/919,
  40279. bottom: 43/1070
  40280. }
  40281. },
  40282. maw: {
  40283. height: math.unit(1, "meters"),
  40284. name: "Maw",
  40285. image: {
  40286. source: "./media/characters/blacky/maw.svg"
  40287. }
  40288. },
  40289. paw: {
  40290. height: math.unit(1, "meters"),
  40291. name: "Paw",
  40292. image: {
  40293. source: "./media/characters/blacky/paw.svg"
  40294. }
  40295. },
  40296. },
  40297. [
  40298. {
  40299. name: "Normal",
  40300. height: math.unit(4, "meters"),
  40301. default: true
  40302. },
  40303. ]
  40304. ))
  40305. characterMakers.push(() => makeCharacter(
  40306. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40307. {
  40308. front: {
  40309. height: math.unit(170, "cm"),
  40310. weight: math.unit(66, "kg"),
  40311. name: "Front",
  40312. image: {
  40313. source: "./media/characters/thux-ei/front.svg",
  40314. extra: 1109/1011,
  40315. bottom: 8/1117
  40316. }
  40317. },
  40318. },
  40319. [
  40320. {
  40321. name: "Normal",
  40322. height: math.unit(170, "cm"),
  40323. default: true
  40324. },
  40325. ]
  40326. ))
  40327. characterMakers.push(() => makeCharacter(
  40328. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40329. {
  40330. front: {
  40331. height: math.unit(5, "feet"),
  40332. weight: math.unit(120, "lb"),
  40333. name: "Front",
  40334. image: {
  40335. source: "./media/characters/roxanne-voltaire/front.svg",
  40336. extra: 1901/1779,
  40337. bottom: 53/1954
  40338. }
  40339. },
  40340. },
  40341. [
  40342. {
  40343. name: "Normal",
  40344. height: math.unit(5, "feet"),
  40345. default: true
  40346. },
  40347. {
  40348. name: "Giant",
  40349. height: math.unit(50, "feet")
  40350. },
  40351. {
  40352. name: "Titan",
  40353. height: math.unit(500, "feet")
  40354. },
  40355. {
  40356. name: "Macro",
  40357. height: math.unit(5000, "feet")
  40358. },
  40359. {
  40360. name: "Megamacro",
  40361. height: math.unit(50000, "feet")
  40362. },
  40363. {
  40364. name: "Gigamacro",
  40365. height: math.unit(500000, "feet")
  40366. },
  40367. {
  40368. name: "Teramacro",
  40369. height: math.unit(5e6, "feet")
  40370. },
  40371. ]
  40372. ))
  40373. characterMakers.push(() => makeCharacter(
  40374. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40375. {
  40376. front: {
  40377. height: math.unit(6 + 2/12, "feet"),
  40378. name: "Front",
  40379. image: {
  40380. source: "./media/characters/squeaks/front.svg",
  40381. extra: 1823/1768,
  40382. bottom: 138/1961
  40383. }
  40384. },
  40385. },
  40386. [
  40387. {
  40388. name: "Micro",
  40389. height: math.unit(0.5, "inches")
  40390. },
  40391. {
  40392. name: "Normal",
  40393. height: math.unit(6 + 2/12, "feet"),
  40394. default: true
  40395. },
  40396. {
  40397. name: "Macro",
  40398. height: math.unit(600, "feet")
  40399. },
  40400. ]
  40401. ))
  40402. characterMakers.push(() => makeCharacter(
  40403. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40404. {
  40405. front: {
  40406. height: math.unit(1.72, "meters"),
  40407. name: "Front",
  40408. image: {
  40409. source: "./media/characters/archinger/front.svg",
  40410. extra: 1861/1675,
  40411. bottom: 125/1986
  40412. }
  40413. },
  40414. back: {
  40415. height: math.unit(1.72, "meters"),
  40416. name: "Back",
  40417. image: {
  40418. source: "./media/characters/archinger/back.svg",
  40419. extra: 1844/1701,
  40420. bottom: 104/1948
  40421. }
  40422. },
  40423. cock: {
  40424. height: math.unit(0.59, "feet"),
  40425. name: "Cock",
  40426. image: {
  40427. source: "./media/characters/archinger/cock.svg"
  40428. }
  40429. },
  40430. },
  40431. [
  40432. {
  40433. name: "Normal",
  40434. height: math.unit(1.72, "meters"),
  40435. default: true
  40436. },
  40437. {
  40438. name: "Macro",
  40439. height: math.unit(84, "meters")
  40440. },
  40441. {
  40442. name: "Macro+",
  40443. height: math.unit(112, "meters")
  40444. },
  40445. {
  40446. name: "Macro++",
  40447. height: math.unit(960, "meters")
  40448. },
  40449. {
  40450. name: "Macro+++",
  40451. height: math.unit(4, "km")
  40452. },
  40453. {
  40454. name: "Macro++++",
  40455. height: math.unit(48, "km")
  40456. },
  40457. {
  40458. name: "Macro+++++",
  40459. height: math.unit(4500, "km")
  40460. },
  40461. ]
  40462. ))
  40463. characterMakers.push(() => makeCharacter(
  40464. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40465. {
  40466. front: {
  40467. height: math.unit(5 + 5/12, "feet"),
  40468. name: "Front",
  40469. image: {
  40470. source: "./media/characters/alsnapz/front.svg",
  40471. extra: 1157/1065,
  40472. bottom: 42/1199
  40473. }
  40474. },
  40475. },
  40476. [
  40477. {
  40478. name: "Normal",
  40479. height: math.unit(5 + 5/12, "feet"),
  40480. default: true
  40481. },
  40482. ]
  40483. ))
  40484. characterMakers.push(() => makeCharacter(
  40485. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40486. {
  40487. side: {
  40488. height: math.unit(3.2, "earths"),
  40489. name: "Side",
  40490. image: {
  40491. source: "./media/characters/mag/side.svg",
  40492. extra: 1331/1008,
  40493. bottom: 52/1383
  40494. }
  40495. },
  40496. wing: {
  40497. height: math.unit(1.94, "earths"),
  40498. name: "Wing",
  40499. image: {
  40500. source: "./media/characters/mag/wing.svg"
  40501. }
  40502. },
  40503. dick: {
  40504. height: math.unit(1.8, "earths"),
  40505. name: "Dick",
  40506. image: {
  40507. source: "./media/characters/mag/dick.svg"
  40508. }
  40509. },
  40510. ass: {
  40511. height: math.unit(1.33, "earths"),
  40512. name: "Ass",
  40513. image: {
  40514. source: "./media/characters/mag/ass.svg"
  40515. }
  40516. },
  40517. head: {
  40518. height: math.unit(1.1, "earths"),
  40519. name: "Head",
  40520. image: {
  40521. source: "./media/characters/mag/head.svg"
  40522. }
  40523. },
  40524. maw: {
  40525. height: math.unit(1.62, "earths"),
  40526. name: "Maw",
  40527. image: {
  40528. source: "./media/characters/mag/maw.svg"
  40529. }
  40530. },
  40531. },
  40532. [
  40533. {
  40534. name: "Small",
  40535. height: math.unit(162, "feet")
  40536. },
  40537. {
  40538. name: "Normal",
  40539. height: math.unit(3.2, "earths"),
  40540. default: true
  40541. },
  40542. ]
  40543. ))
  40544. characterMakers.push(() => makeCharacter(
  40545. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40546. {
  40547. front: {
  40548. height: math.unit(512, "feet"),
  40549. weight: math.unit(63509, "tonnes"),
  40550. name: "Front",
  40551. image: {
  40552. source: "./media/characters/vorrel-harroc/front.svg",
  40553. extra: 1075/1063,
  40554. bottom: 62/1137
  40555. }
  40556. },
  40557. },
  40558. [
  40559. {
  40560. name: "Normal",
  40561. height: math.unit(10, "feet")
  40562. },
  40563. {
  40564. name: "Macro",
  40565. height: math.unit(512, "feet"),
  40566. default: true
  40567. },
  40568. {
  40569. name: "Megamacro",
  40570. height: math.unit(256, "miles")
  40571. },
  40572. {
  40573. name: "Gigamacro",
  40574. height: math.unit(4096, "miles")
  40575. },
  40576. ]
  40577. ))
  40578. characterMakers.push(() => makeCharacter(
  40579. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40580. {
  40581. side: {
  40582. height: math.unit(50, "feet"),
  40583. name: "Side",
  40584. image: {
  40585. source: "./media/characters/froimar/side.svg",
  40586. extra: 855/638,
  40587. bottom: 99/954
  40588. }
  40589. },
  40590. },
  40591. [
  40592. {
  40593. name: "Macro",
  40594. height: math.unit(50, "feet"),
  40595. default: true
  40596. },
  40597. ]
  40598. ))
  40599. characterMakers.push(() => makeCharacter(
  40600. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40601. {
  40602. front: {
  40603. height: math.unit(210, "miles"),
  40604. name: "Front",
  40605. image: {
  40606. source: "./media/characters/timothy/front.svg",
  40607. extra: 1007/943,
  40608. bottom: 62/1069
  40609. }
  40610. },
  40611. frontSkirt: {
  40612. height: math.unit(210, "miles"),
  40613. name: "Front (Skirt)",
  40614. image: {
  40615. source: "./media/characters/timothy/front-skirt.svg",
  40616. extra: 1007/943,
  40617. bottom: 62/1069
  40618. }
  40619. },
  40620. frontCoat: {
  40621. height: math.unit(210, "miles"),
  40622. name: "Front (Coat)",
  40623. image: {
  40624. source: "./media/characters/timothy/front-coat.svg",
  40625. extra: 1007/943,
  40626. bottom: 62/1069
  40627. }
  40628. },
  40629. },
  40630. [
  40631. {
  40632. name: "Macro",
  40633. height: math.unit(210, "miles"),
  40634. default: true
  40635. },
  40636. {
  40637. name: "Megamacro",
  40638. height: math.unit(210000, "miles")
  40639. },
  40640. ]
  40641. ))
  40642. characterMakers.push(() => makeCharacter(
  40643. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40644. {
  40645. front: {
  40646. height: math.unit(188, "feet"),
  40647. name: "Front",
  40648. image: {
  40649. source: "./media/characters/pyotr/front.svg",
  40650. extra: 1912/1826,
  40651. bottom: 18/1930
  40652. }
  40653. },
  40654. },
  40655. [
  40656. {
  40657. name: "Macro",
  40658. height: math.unit(188, "feet"),
  40659. default: true
  40660. },
  40661. {
  40662. name: "Megamacro",
  40663. height: math.unit(8, "miles")
  40664. },
  40665. ]
  40666. ))
  40667. characterMakers.push(() => makeCharacter(
  40668. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40669. {
  40670. side: {
  40671. height: math.unit(10, "feet"),
  40672. weight: math.unit(4500, "lb"),
  40673. name: "Side",
  40674. image: {
  40675. source: "./media/characters/ackart/side.svg",
  40676. extra: 1776/1668,
  40677. bottom: 116/1892
  40678. }
  40679. },
  40680. },
  40681. [
  40682. {
  40683. name: "Normal",
  40684. height: math.unit(10, "feet"),
  40685. default: true
  40686. },
  40687. ]
  40688. ))
  40689. characterMakers.push(() => makeCharacter(
  40690. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40691. {
  40692. side: {
  40693. height: math.unit(21, "feet"),
  40694. name: "Side",
  40695. image: {
  40696. source: "./media/characters/nolow/side.svg",
  40697. extra: 1484/1434,
  40698. bottom: 85/1569
  40699. }
  40700. },
  40701. sideErect: {
  40702. height: math.unit(21, "feet"),
  40703. name: "Side-erect",
  40704. image: {
  40705. source: "./media/characters/nolow/side-erect.svg",
  40706. extra: 1484/1434,
  40707. bottom: 85/1569
  40708. }
  40709. },
  40710. },
  40711. [
  40712. {
  40713. name: "Regular",
  40714. height: math.unit(12, "feet")
  40715. },
  40716. {
  40717. name: "Big Chee",
  40718. height: math.unit(21, "feet"),
  40719. default: true
  40720. },
  40721. ]
  40722. ))
  40723. characterMakers.push(() => makeCharacter(
  40724. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40725. {
  40726. front: {
  40727. height: math.unit(7, "feet"),
  40728. weight: math.unit(250, "lb"),
  40729. name: "Front",
  40730. image: {
  40731. source: "./media/characters/nines/front.svg",
  40732. extra: 1741/1607,
  40733. bottom: 41/1782
  40734. }
  40735. },
  40736. side: {
  40737. height: math.unit(7, "feet"),
  40738. weight: math.unit(250, "lb"),
  40739. name: "Side",
  40740. image: {
  40741. source: "./media/characters/nines/side.svg",
  40742. extra: 1854/1735,
  40743. bottom: 93/1947
  40744. }
  40745. },
  40746. back: {
  40747. height: math.unit(7, "feet"),
  40748. weight: math.unit(250, "lb"),
  40749. name: "Back",
  40750. image: {
  40751. source: "./media/characters/nines/back.svg",
  40752. extra: 1748/1615,
  40753. bottom: 20/1768
  40754. }
  40755. },
  40756. },
  40757. [
  40758. {
  40759. name: "Megamacro",
  40760. height: math.unit(99, "km"),
  40761. default: true
  40762. },
  40763. ]
  40764. ))
  40765. characterMakers.push(() => makeCharacter(
  40766. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40767. {
  40768. front: {
  40769. height: math.unit(5 + 10/12, "feet"),
  40770. weight: math.unit(210, "lb"),
  40771. name: "Front",
  40772. image: {
  40773. source: "./media/characters/zenith/front.svg",
  40774. extra: 1531/1452,
  40775. bottom: 198/1729
  40776. }
  40777. },
  40778. back: {
  40779. height: math.unit(5 + 10/12, "feet"),
  40780. weight: math.unit(210, "lb"),
  40781. name: "Back",
  40782. image: {
  40783. source: "./media/characters/zenith/back.svg",
  40784. extra: 1571/1487,
  40785. bottom: 75/1646
  40786. }
  40787. },
  40788. },
  40789. [
  40790. {
  40791. name: "Normal",
  40792. height: math.unit(5 + 10/12, "feet"),
  40793. default: true
  40794. }
  40795. ]
  40796. ))
  40797. characterMakers.push(() => makeCharacter(
  40798. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40799. {
  40800. front: {
  40801. height: math.unit(4, "feet"),
  40802. weight: math.unit(60, "lb"),
  40803. name: "Front",
  40804. image: {
  40805. source: "./media/characters/jasper/front.svg",
  40806. extra: 1450/1379,
  40807. bottom: 19/1469
  40808. }
  40809. },
  40810. },
  40811. [
  40812. {
  40813. name: "Normal",
  40814. height: math.unit(4, "feet"),
  40815. default: true
  40816. },
  40817. ]
  40818. ))
  40819. characterMakers.push(() => makeCharacter(
  40820. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40821. {
  40822. front: {
  40823. height: math.unit(6 + 5/12, "feet"),
  40824. weight: math.unit(290, "lb"),
  40825. name: "Front",
  40826. image: {
  40827. source: "./media/characters/tiberius-thyben/front.svg",
  40828. extra: 757/739,
  40829. bottom: 39/796
  40830. }
  40831. },
  40832. },
  40833. [
  40834. {
  40835. name: "Micro",
  40836. height: math.unit(1.5, "inches")
  40837. },
  40838. {
  40839. name: "Normal",
  40840. height: math.unit(6 + 5/12, "feet"),
  40841. default: true
  40842. },
  40843. {
  40844. name: "Macro",
  40845. height: math.unit(300, "feet")
  40846. },
  40847. ]
  40848. ))
  40849. characterMakers.push(() => makeCharacter(
  40850. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40851. {
  40852. front: {
  40853. height: math.unit(5 + 6/12, "feet"),
  40854. weight: math.unit(60, "kg"),
  40855. name: "Front",
  40856. image: {
  40857. source: "./media/characters/sabre/front.svg",
  40858. extra: 738/671,
  40859. bottom: 27/765
  40860. }
  40861. },
  40862. },
  40863. [
  40864. {
  40865. name: "Teeny",
  40866. height: math.unit(2, "inches")
  40867. },
  40868. {
  40869. name: "Smol",
  40870. height: math.unit(8, "inches")
  40871. },
  40872. {
  40873. name: "Normal",
  40874. height: math.unit(5 + 6/12, "feet"),
  40875. default: true
  40876. },
  40877. {
  40878. name: "Mini-Macro",
  40879. height: math.unit(15, "feet")
  40880. },
  40881. {
  40882. name: "Macro",
  40883. height: math.unit(50, "feet")
  40884. },
  40885. ]
  40886. ))
  40887. characterMakers.push(() => makeCharacter(
  40888. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40889. {
  40890. front: {
  40891. height: math.unit(6 + 4/12, "feet"),
  40892. weight: math.unit(170, "lb"),
  40893. name: "Front",
  40894. image: {
  40895. source: "./media/characters/charlie/front.svg",
  40896. extra: 1348/1228,
  40897. bottom: 15/1363
  40898. }
  40899. },
  40900. },
  40901. [
  40902. {
  40903. name: "Macro",
  40904. height: math.unit(1700, "meters"),
  40905. default: true
  40906. },
  40907. {
  40908. name: "MegaMacro",
  40909. height: math.unit(20400, "meters")
  40910. },
  40911. ]
  40912. ))
  40913. characterMakers.push(() => makeCharacter(
  40914. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40915. {
  40916. front: {
  40917. height: math.unit(6 + 3/12, "feet"),
  40918. weight: math.unit(185, "lb"),
  40919. name: "Front",
  40920. image: {
  40921. source: "./media/characters/susan-grant/front.svg",
  40922. extra: 1351/1327,
  40923. bottom: 26/1377
  40924. }
  40925. },
  40926. },
  40927. [
  40928. {
  40929. name: "Normal",
  40930. height: math.unit(6 + 3/12, "feet"),
  40931. default: true
  40932. },
  40933. {
  40934. name: "Macro",
  40935. height: math.unit(225, "feet")
  40936. },
  40937. {
  40938. name: "Macro+",
  40939. height: math.unit(900, "feet")
  40940. },
  40941. {
  40942. name: "MegaMacro",
  40943. height: math.unit(14400, "feet")
  40944. },
  40945. ]
  40946. ))
  40947. characterMakers.push(() => makeCharacter(
  40948. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40949. {
  40950. front: {
  40951. height: math.unit(5 + 4/12, "feet"),
  40952. weight: math.unit(110, "lb"),
  40953. name: "Front",
  40954. image: {
  40955. source: "./media/characters/axel-isanov/front.svg",
  40956. extra: 1096/1065,
  40957. bottom: 13/1109
  40958. }
  40959. },
  40960. },
  40961. [
  40962. {
  40963. name: "Normal",
  40964. height: math.unit(5 + 4/12, "feet"),
  40965. default: true
  40966. },
  40967. ]
  40968. ))
  40969. characterMakers.push(() => makeCharacter(
  40970. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40971. {
  40972. front: {
  40973. height: math.unit(9, "feet"),
  40974. weight: math.unit(467, "lb"),
  40975. name: "Front",
  40976. image: {
  40977. source: "./media/characters/necahual/front.svg",
  40978. extra: 920/873,
  40979. bottom: 26/946
  40980. }
  40981. },
  40982. back: {
  40983. height: math.unit(9, "feet"),
  40984. weight: math.unit(467, "lb"),
  40985. name: "Back",
  40986. image: {
  40987. source: "./media/characters/necahual/back.svg",
  40988. extra: 930/884,
  40989. bottom: 16/946
  40990. }
  40991. },
  40992. frontUnderwear: {
  40993. height: math.unit(9, "feet"),
  40994. weight: math.unit(467, "lb"),
  40995. name: "Front (Underwear)",
  40996. image: {
  40997. source: "./media/characters/necahual/front-underwear.svg",
  40998. extra: 920/873,
  40999. bottom: 26/946
  41000. }
  41001. },
  41002. frontDressed: {
  41003. height: math.unit(9, "feet"),
  41004. weight: math.unit(467, "lb"),
  41005. name: "Front (Dressed)",
  41006. image: {
  41007. source: "./media/characters/necahual/front-dressed.svg",
  41008. extra: 920/873,
  41009. bottom: 26/946
  41010. }
  41011. },
  41012. },
  41013. [
  41014. {
  41015. name: "Comprsesed",
  41016. height: math.unit(9, "feet")
  41017. },
  41018. {
  41019. name: "Natural",
  41020. height: math.unit(15, "feet"),
  41021. default: true
  41022. },
  41023. {
  41024. name: "Boosted",
  41025. height: math.unit(50, "feet")
  41026. },
  41027. {
  41028. name: "Boosted+",
  41029. height: math.unit(150, "feet")
  41030. },
  41031. {
  41032. name: "Max",
  41033. height: math.unit(500, "feet")
  41034. },
  41035. ]
  41036. ))
  41037. characterMakers.push(() => makeCharacter(
  41038. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41039. {
  41040. front: {
  41041. height: math.unit(22 + 1/12, "feet"),
  41042. weight: math.unit(3200, "lb"),
  41043. name: "Front",
  41044. image: {
  41045. source: "./media/characters/theo-acacia/front.svg",
  41046. extra: 1796/1741,
  41047. bottom: 83/1879
  41048. }
  41049. },
  41050. frontUnderwear: {
  41051. height: math.unit(22 + 1/12, "feet"),
  41052. weight: math.unit(3200, "lb"),
  41053. name: "Front (Underwear)",
  41054. image: {
  41055. source: "./media/characters/theo-acacia/front-underwear.svg",
  41056. extra: 1796/1741,
  41057. bottom: 83/1879
  41058. }
  41059. },
  41060. frontNude: {
  41061. height: math.unit(22 + 1/12, "feet"),
  41062. weight: math.unit(3200, "lb"),
  41063. name: "Front (Nude)",
  41064. image: {
  41065. source: "./media/characters/theo-acacia/front-nude.svg",
  41066. extra: 1796/1741,
  41067. bottom: 83/1879
  41068. }
  41069. },
  41070. },
  41071. [
  41072. {
  41073. name: "Normal",
  41074. height: math.unit(22 + 1/12, "feet"),
  41075. default: true
  41076. },
  41077. ]
  41078. ))
  41079. characterMakers.push(() => makeCharacter(
  41080. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41081. {
  41082. front: {
  41083. height: math.unit(20, "feet"),
  41084. name: "Front",
  41085. image: {
  41086. source: "./media/characters/astra/front.svg",
  41087. extra: 1850/1714,
  41088. bottom: 106/1956
  41089. }
  41090. },
  41091. frontUndressed: {
  41092. height: math.unit(20, "feet"),
  41093. name: "Front (Undressed)",
  41094. image: {
  41095. source: "./media/characters/astra/front-undressed.svg",
  41096. extra: 1926/1749,
  41097. bottom: 0/1926
  41098. }
  41099. },
  41100. hand: {
  41101. height: math.unit(1.53, "feet"),
  41102. name: "Hand",
  41103. image: {
  41104. source: "./media/characters/astra/hand.svg"
  41105. }
  41106. },
  41107. paw: {
  41108. height: math.unit(1.53, "feet"),
  41109. name: "Paw",
  41110. image: {
  41111. source: "./media/characters/astra/paw.svg"
  41112. }
  41113. },
  41114. },
  41115. [
  41116. {
  41117. name: "Smallest",
  41118. height: math.unit(20, "feet")
  41119. },
  41120. {
  41121. name: "Normal",
  41122. height: math.unit(1e9, "miles"),
  41123. default: true
  41124. },
  41125. {
  41126. name: "Larger",
  41127. height: math.unit(5, "multiverses")
  41128. },
  41129. {
  41130. name: "Largest",
  41131. height: math.unit(1e9, "multiverses")
  41132. },
  41133. ]
  41134. ))
  41135. characterMakers.push(() => makeCharacter(
  41136. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41137. {
  41138. front: {
  41139. height: math.unit(8, "feet"),
  41140. name: "Front",
  41141. image: {
  41142. source: "./media/characters/breanna/front.svg",
  41143. extra: 1912/1632,
  41144. bottom: 33/1945
  41145. }
  41146. },
  41147. },
  41148. [
  41149. {
  41150. name: "Smallest",
  41151. height: math.unit(8, "feet")
  41152. },
  41153. {
  41154. name: "Normal",
  41155. height: math.unit(1, "mile"),
  41156. default: true
  41157. },
  41158. {
  41159. name: "Maximum",
  41160. height: math.unit(1500000000000, "lightyears")
  41161. },
  41162. ]
  41163. ))
  41164. characterMakers.push(() => makeCharacter(
  41165. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41166. {
  41167. front: {
  41168. height: math.unit(5 + 11/12, "feet"),
  41169. weight: math.unit(155, "lb"),
  41170. name: "Front",
  41171. image: {
  41172. source: "./media/characters/cai/front.svg",
  41173. extra: 1823/1702,
  41174. bottom: 32/1855
  41175. }
  41176. },
  41177. back: {
  41178. height: math.unit(5 + 11/12, "feet"),
  41179. weight: math.unit(155, "lb"),
  41180. name: "Back",
  41181. image: {
  41182. source: "./media/characters/cai/back.svg",
  41183. extra: 1809/1708,
  41184. bottom: 31/1840
  41185. }
  41186. },
  41187. },
  41188. [
  41189. {
  41190. name: "Normal",
  41191. height: math.unit(5 + 11/12, "feet"),
  41192. default: true
  41193. },
  41194. {
  41195. name: "Big",
  41196. height: math.unit(15, "feet")
  41197. },
  41198. {
  41199. name: "Macro",
  41200. height: math.unit(200, "feet")
  41201. },
  41202. ]
  41203. ))
  41204. characterMakers.push(() => makeCharacter(
  41205. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41206. {
  41207. front: {
  41208. height: math.unit(5 + 6/12, "feet"),
  41209. weight: math.unit(160, "lb"),
  41210. name: "Front",
  41211. image: {
  41212. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41213. extra: 1227/1174,
  41214. bottom: 37/1264
  41215. }
  41216. },
  41217. },
  41218. [
  41219. {
  41220. name: "Macro",
  41221. height: math.unit(444, "meters"),
  41222. default: true
  41223. },
  41224. ]
  41225. ))
  41226. characterMakers.push(() => makeCharacter(
  41227. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41228. {
  41229. front: {
  41230. height: math.unit(18 + 7/12, "feet"),
  41231. name: "Front",
  41232. image: {
  41233. source: "./media/characters/rex/front.svg",
  41234. extra: 1941/1807,
  41235. bottom: 66/2007
  41236. }
  41237. },
  41238. back: {
  41239. height: math.unit(18 + 7/12, "feet"),
  41240. name: "Back",
  41241. image: {
  41242. source: "./media/characters/rex/back.svg",
  41243. extra: 1937/1822,
  41244. bottom: 42/1979
  41245. }
  41246. },
  41247. boot: {
  41248. height: math.unit(3.45, "feet"),
  41249. name: "Boot",
  41250. image: {
  41251. source: "./media/characters/rex/boot.svg"
  41252. }
  41253. },
  41254. paw: {
  41255. height: math.unit(4.17, "feet"),
  41256. name: "Paw",
  41257. image: {
  41258. source: "./media/characters/rex/paw.svg"
  41259. }
  41260. },
  41261. head: {
  41262. height: math.unit(6.728, "feet"),
  41263. name: "Head",
  41264. image: {
  41265. source: "./media/characters/rex/head.svg"
  41266. }
  41267. },
  41268. },
  41269. [
  41270. {
  41271. name: "Nano",
  41272. height: math.unit(18 + 7/12, "feet")
  41273. },
  41274. {
  41275. name: "Micro",
  41276. height: math.unit(1.5, "megameters")
  41277. },
  41278. {
  41279. name: "Normal",
  41280. height: math.unit(440, "megameters"),
  41281. default: true
  41282. },
  41283. {
  41284. name: "Macro",
  41285. height: math.unit(2.5, "gigameters")
  41286. },
  41287. {
  41288. name: "Gigamacro",
  41289. height: math.unit(2, "galaxies")
  41290. },
  41291. ]
  41292. ))
  41293. characterMakers.push(() => makeCharacter(
  41294. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41295. {
  41296. side: {
  41297. height: math.unit(32, "feet"),
  41298. weight: math.unit(250000, "lb"),
  41299. name: "Side",
  41300. image: {
  41301. source: "./media/characters/silverwing/side.svg",
  41302. extra: 1100/1019,
  41303. bottom: 204/1304
  41304. }
  41305. },
  41306. },
  41307. [
  41308. {
  41309. name: "Normal",
  41310. height: math.unit(32, "feet"),
  41311. default: true
  41312. },
  41313. ]
  41314. ))
  41315. characterMakers.push(() => makeCharacter(
  41316. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41317. {
  41318. front: {
  41319. height: math.unit(6 + 6/12, "feet"),
  41320. weight: math.unit(350, "lb"),
  41321. name: "Front",
  41322. image: {
  41323. source: "./media/characters/tristan-hawthorne/front.svg",
  41324. extra: 1159/1124,
  41325. bottom: 37/1196
  41326. }
  41327. },
  41328. },
  41329. [
  41330. {
  41331. name: "Normal",
  41332. height: math.unit(6 + 6/12, "feet"),
  41333. default: true
  41334. },
  41335. ]
  41336. ))
  41337. characterMakers.push(() => makeCharacter(
  41338. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41339. {
  41340. front: {
  41341. height: math.unit(5 + 11/12, "feet"),
  41342. weight: math.unit(190, "lb"),
  41343. name: "Front",
  41344. image: {
  41345. source: "./media/characters/mizu/front.svg",
  41346. extra: 1988/1788,
  41347. bottom: 14/2002
  41348. }
  41349. },
  41350. },
  41351. [
  41352. {
  41353. name: "Normal",
  41354. height: math.unit(5 + 11/12, "feet"),
  41355. default: true
  41356. },
  41357. ]
  41358. ))
  41359. characterMakers.push(() => makeCharacter(
  41360. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  41361. {
  41362. front: {
  41363. height: math.unit(6, "feet"),
  41364. name: "Front",
  41365. image: {
  41366. source: "./media/characters/moonlight-rose-terra/front.svg",
  41367. extra: 1434/1252,
  41368. bottom: 48/1482
  41369. }
  41370. },
  41371. },
  41372. [
  41373. {
  41374. name: "TRAPPIST-1D",
  41375. height: math.unit(4992*2, "km")
  41376. },
  41377. {
  41378. name: "Earth",
  41379. height: math.unit(6367*2, "km"),
  41380. default: true
  41381. },
  41382. {
  41383. name: "Kepler-22b",
  41384. height: math.unit(15282*2, "km")
  41385. },
  41386. ]
  41387. ))
  41388. characterMakers.push(() => makeCharacter(
  41389. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  41390. {
  41391. front: {
  41392. height: math.unit(6, "feet"),
  41393. name: "Front",
  41394. image: {
  41395. source: "./media/characters/moonlight-rose-neptune/front.svg",
  41396. extra: 1851/1712,
  41397. bottom: 0/1851
  41398. }
  41399. },
  41400. },
  41401. [
  41402. {
  41403. name: "Enceladus",
  41404. height: math.unit(513*2, "km")
  41405. },
  41406. {
  41407. name: "Europe",
  41408. height: math.unit(1560*2, "km")
  41409. },
  41410. {
  41411. name: "Neptune",
  41412. height: math.unit(24622*2, "km"),
  41413. default: true
  41414. },
  41415. {
  41416. name: "CoRoT-9b",
  41417. height: math.unit(75067*2, "km")
  41418. },
  41419. ]
  41420. ))
  41421. characterMakers.push(() => makeCharacter(
  41422. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  41423. {
  41424. front: {
  41425. height: math.unit(6, "feet"),
  41426. name: "Front",
  41427. image: {
  41428. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  41429. extra: 1367/1286,
  41430. bottom: 55/1422
  41431. }
  41432. },
  41433. },
  41434. [
  41435. {
  41436. name: "Saturn",
  41437. height: math.unit(58232*2, "km")
  41438. },
  41439. {
  41440. name: "Jupiter",
  41441. height: math.unit(69911*2, "km"),
  41442. default: true
  41443. },
  41444. {
  41445. name: "HD 100546 b",
  41446. height: math.unit(482938, "km")
  41447. },
  41448. ]
  41449. ))
  41450. characterMakers.push(() => makeCharacter(
  41451. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41452. {
  41453. front: {
  41454. height: math.unit(1.7, "feet"),
  41455. weight: math.unit(50, "lb"),
  41456. name: "Front",
  41457. image: {
  41458. source: "./media/characters/dechroma/front.svg",
  41459. extra: 1095/859,
  41460. bottom: 64/1159
  41461. }
  41462. },
  41463. },
  41464. [
  41465. {
  41466. name: "Normal",
  41467. height: math.unit(1.7, "feet"),
  41468. default: true
  41469. },
  41470. ]
  41471. ))
  41472. characterMakers.push(() => makeCharacter(
  41473. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41474. {
  41475. side: {
  41476. height: math.unit(30, "feet"),
  41477. name: "Side",
  41478. image: {
  41479. source: "./media/characters/veluren-thanazel/side.svg",
  41480. extra: 1611/633,
  41481. bottom: 118/1729
  41482. }
  41483. },
  41484. front: {
  41485. height: math.unit(30, "feet"),
  41486. name: "Front",
  41487. image: {
  41488. source: "./media/characters/veluren-thanazel/front.svg",
  41489. extra: 1486/636,
  41490. bottom: 238/1724
  41491. }
  41492. },
  41493. head: {
  41494. height: math.unit(21.4, "feet"),
  41495. name: "Head",
  41496. image: {
  41497. source: "./media/characters/veluren-thanazel/head.svg"
  41498. }
  41499. },
  41500. genitals: {
  41501. height: math.unit(19.4, "feet"),
  41502. name: "Genitals",
  41503. image: {
  41504. source: "./media/characters/veluren-thanazel/genitals.svg"
  41505. }
  41506. },
  41507. },
  41508. [
  41509. {
  41510. name: "Social",
  41511. height: math.unit(6, "feet")
  41512. },
  41513. {
  41514. name: "Play",
  41515. height: math.unit(12, "feet")
  41516. },
  41517. {
  41518. name: "True",
  41519. height: math.unit(30, "feet"),
  41520. default: true
  41521. },
  41522. ]
  41523. ))
  41524. characterMakers.push(() => makeCharacter(
  41525. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41526. {
  41527. front: {
  41528. height: math.unit(7 + 6/12, "feet"),
  41529. weight: math.unit(500, "kg"),
  41530. name: "Front",
  41531. image: {
  41532. source: "./media/characters/arcturas/front.svg",
  41533. extra: 1700/1500,
  41534. bottom: 145/1845
  41535. }
  41536. },
  41537. },
  41538. [
  41539. {
  41540. name: "Normal",
  41541. height: math.unit(7 + 6/12, "feet"),
  41542. default: true
  41543. },
  41544. ]
  41545. ))
  41546. characterMakers.push(() => makeCharacter(
  41547. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41548. {
  41549. side: {
  41550. height: math.unit(6, "feet"),
  41551. weight: math.unit(2, "tons"),
  41552. name: "Side",
  41553. image: {
  41554. source: "./media/characters/vitaen/side.svg",
  41555. extra: 1157/617,
  41556. bottom: 122/1279
  41557. }
  41558. },
  41559. },
  41560. [
  41561. {
  41562. name: "Normal",
  41563. height: math.unit(6, "feet"),
  41564. default: true
  41565. },
  41566. ]
  41567. ))
  41568. characterMakers.push(() => makeCharacter(
  41569. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41570. {
  41571. front: {
  41572. height: math.unit(19, "feet"),
  41573. name: "Front",
  41574. image: {
  41575. source: "./media/characters/fia-dreamweaver/front.svg",
  41576. extra: 1630/1504,
  41577. bottom: 25/1655
  41578. }
  41579. },
  41580. },
  41581. [
  41582. {
  41583. name: "Normal",
  41584. height: math.unit(19, "feet"),
  41585. default: true
  41586. },
  41587. ]
  41588. ))
  41589. characterMakers.push(() => makeCharacter(
  41590. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41591. {
  41592. front: {
  41593. height: math.unit(5 + 4/12, "feet"),
  41594. name: "Front",
  41595. image: {
  41596. source: "./media/characters/artan/front.svg",
  41597. extra: 1618/1535,
  41598. bottom: 46/1664
  41599. }
  41600. },
  41601. back: {
  41602. height: math.unit(5 + 4/12, "feet"),
  41603. name: "Back",
  41604. image: {
  41605. source: "./media/characters/artan/back.svg",
  41606. extra: 1618/1543,
  41607. bottom: 31/1649
  41608. }
  41609. },
  41610. },
  41611. [
  41612. {
  41613. name: "Normal",
  41614. height: math.unit(5 + 4/12, "feet"),
  41615. default: true
  41616. },
  41617. ]
  41618. ))
  41619. characterMakers.push(() => makeCharacter(
  41620. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41621. {
  41622. side: {
  41623. height: math.unit(182, "cm"),
  41624. weight: math.unit(1000, "lb"),
  41625. name: "Side",
  41626. image: {
  41627. source: "./media/characters/silver-dragon/side.svg",
  41628. extra: 710/287,
  41629. bottom: 88/798
  41630. }
  41631. },
  41632. },
  41633. [
  41634. {
  41635. name: "Normal",
  41636. height: math.unit(182, "cm"),
  41637. default: true
  41638. },
  41639. ]
  41640. ))
  41641. characterMakers.push(() => makeCharacter(
  41642. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41643. {
  41644. side: {
  41645. height: math.unit(6 + 6/12, "feet"),
  41646. weight: math.unit(1.5, "tons"),
  41647. name: "Side",
  41648. image: {
  41649. source: "./media/characters/zephyr/side.svg",
  41650. extra: 1433/586,
  41651. bottom: 109/1542
  41652. }
  41653. },
  41654. },
  41655. [
  41656. {
  41657. name: "Normal",
  41658. height: math.unit(6 + 6/12, "feet"),
  41659. default: true
  41660. },
  41661. ]
  41662. ))
  41663. characterMakers.push(() => makeCharacter(
  41664. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41665. {
  41666. side: {
  41667. height: math.unit(1, "feet"),
  41668. name: "Side",
  41669. image: {
  41670. source: "./media/characters/vixye/side.svg",
  41671. extra: 632/541,
  41672. bottom: 0/632
  41673. }
  41674. },
  41675. },
  41676. [
  41677. {
  41678. name: "Normal",
  41679. height: math.unit(1, "feet"),
  41680. default: true
  41681. },
  41682. {
  41683. name: "True",
  41684. height: math.unit(1e15, "multiverses")
  41685. },
  41686. ]
  41687. ))
  41688. characterMakers.push(() => makeCharacter(
  41689. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41690. {
  41691. front: {
  41692. height: math.unit(8 + 2/12, "feet"),
  41693. weight: math.unit(650, "lb"),
  41694. name: "Front",
  41695. image: {
  41696. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41697. extra: 1174/1137,
  41698. bottom: 82/1256
  41699. }
  41700. },
  41701. back: {
  41702. height: math.unit(8 + 2/12, "feet"),
  41703. weight: math.unit(650, "lb"),
  41704. name: "Back",
  41705. image: {
  41706. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41707. extra: 1204/1157,
  41708. bottom: 46/1250
  41709. }
  41710. },
  41711. },
  41712. [
  41713. {
  41714. name: "Wildform",
  41715. height: math.unit(8 + 2/12, "feet"),
  41716. default: true
  41717. },
  41718. ]
  41719. ))
  41720. characterMakers.push(() => makeCharacter(
  41721. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41722. {
  41723. front: {
  41724. height: math.unit(18, "feet"),
  41725. name: "Front",
  41726. image: {
  41727. source: "./media/characters/cyphin/front.svg",
  41728. extra: 970/886,
  41729. bottom: 42/1012
  41730. }
  41731. },
  41732. back: {
  41733. height: math.unit(18, "feet"),
  41734. name: "Back",
  41735. image: {
  41736. source: "./media/characters/cyphin/back.svg",
  41737. extra: 1009/894,
  41738. bottom: 24/1033
  41739. }
  41740. },
  41741. head: {
  41742. height: math.unit(5.05, "feet"),
  41743. name: "Head",
  41744. image: {
  41745. source: "./media/characters/cyphin/head.svg"
  41746. }
  41747. },
  41748. tailbud: {
  41749. height: math.unit(5, "feet"),
  41750. name: "Tailbud",
  41751. image: {
  41752. source: "./media/characters/cyphin/tailbud.svg"
  41753. }
  41754. },
  41755. },
  41756. [
  41757. ]
  41758. ))
  41759. characterMakers.push(() => makeCharacter(
  41760. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41761. {
  41762. side: {
  41763. height: math.unit(10, "feet"),
  41764. weight: math.unit(6, "tons"),
  41765. name: "Side",
  41766. image: {
  41767. source: "./media/characters/raijin/side.svg",
  41768. extra: 1529/613,
  41769. bottom: 337/1866
  41770. }
  41771. },
  41772. },
  41773. [
  41774. {
  41775. name: "Normal",
  41776. height: math.unit(10, "feet"),
  41777. default: true
  41778. },
  41779. ]
  41780. ))
  41781. characterMakers.push(() => makeCharacter(
  41782. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41783. {
  41784. side: {
  41785. height: math.unit(9, "feet"),
  41786. name: "Side",
  41787. image: {
  41788. source: "./media/characters/nilghais/side.svg",
  41789. extra: 1047/744,
  41790. bottom: 91/1138
  41791. }
  41792. },
  41793. head: {
  41794. height: math.unit(3.14, "feet"),
  41795. name: "Head",
  41796. image: {
  41797. source: "./media/characters/nilghais/head.svg"
  41798. }
  41799. },
  41800. mouth: {
  41801. height: math.unit(4.6, "feet"),
  41802. name: "Mouth",
  41803. image: {
  41804. source: "./media/characters/nilghais/mouth.svg"
  41805. }
  41806. },
  41807. wings: {
  41808. height: math.unit(24, "feet"),
  41809. name: "Wings",
  41810. image: {
  41811. source: "./media/characters/nilghais/wings.svg"
  41812. }
  41813. },
  41814. ass: {
  41815. height: math.unit(6.12, "feet"),
  41816. name: "Ass",
  41817. image: {
  41818. source: "./media/characters/nilghais/ass.svg"
  41819. }
  41820. },
  41821. },
  41822. [
  41823. {
  41824. name: "Normal",
  41825. height: math.unit(9, "feet"),
  41826. default: true
  41827. },
  41828. ]
  41829. ))
  41830. characterMakers.push(() => makeCharacter(
  41831. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41832. {
  41833. regular: {
  41834. height: math.unit(16 + 2/12, "feet"),
  41835. weight: math.unit(2300, "lb"),
  41836. name: "Regular",
  41837. image: {
  41838. source: "./media/characters/zolgar/regular.svg",
  41839. extra: 1246/1004,
  41840. bottom: 124/1370
  41841. }
  41842. },
  41843. boxers: {
  41844. height: math.unit(16 + 2/12, "feet"),
  41845. weight: math.unit(2300, "lb"),
  41846. name: "Boxers",
  41847. image: {
  41848. source: "./media/characters/zolgar/boxers.svg",
  41849. extra: 1246/1004,
  41850. bottom: 124/1370
  41851. }
  41852. },
  41853. armored: {
  41854. height: math.unit(16 + 2/12, "feet"),
  41855. weight: math.unit(2300, "lb"),
  41856. name: "Armored",
  41857. image: {
  41858. source: "./media/characters/zolgar/armored.svg",
  41859. extra: 1246/1004,
  41860. bottom: 124/1370
  41861. }
  41862. },
  41863. goth: {
  41864. height: math.unit(16 + 2/12, "feet"),
  41865. weight: math.unit(2300, "lb"),
  41866. name: "Goth",
  41867. image: {
  41868. source: "./media/characters/zolgar/goth.svg",
  41869. extra: 1246/1004,
  41870. bottom: 124/1370
  41871. }
  41872. },
  41873. },
  41874. [
  41875. {
  41876. name: "Shrunken Down",
  41877. height: math.unit(9 + 2/12, "feet")
  41878. },
  41879. {
  41880. name: "Normal",
  41881. height: math.unit(16 + 2/12, "feet"),
  41882. default: true
  41883. },
  41884. ]
  41885. ))
  41886. characterMakers.push(() => makeCharacter(
  41887. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41888. {
  41889. front: {
  41890. height: math.unit(6, "feet"),
  41891. weight: math.unit(168, "lb"),
  41892. name: "Front",
  41893. image: {
  41894. source: "./media/characters/luca/front.svg",
  41895. extra: 841/667,
  41896. bottom: 102/943
  41897. }
  41898. },
  41899. },
  41900. [
  41901. {
  41902. name: "Normal",
  41903. height: math.unit(6, "feet"),
  41904. default: true
  41905. },
  41906. ]
  41907. ))
  41908. characterMakers.push(() => makeCharacter(
  41909. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41910. {
  41911. side: {
  41912. height: math.unit(7 + 3/12, "feet"),
  41913. weight: math.unit(312, "lb"),
  41914. name: "Side",
  41915. image: {
  41916. source: "./media/characters/zezo/side.svg",
  41917. extra: 1192/1067,
  41918. bottom: 63/1255
  41919. }
  41920. },
  41921. },
  41922. [
  41923. {
  41924. name: "Normal",
  41925. height: math.unit(7 + 3/12, "feet"),
  41926. default: true
  41927. },
  41928. ]
  41929. ))
  41930. characterMakers.push(() => makeCharacter(
  41931. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41932. {
  41933. front: {
  41934. height: math.unit(5 + 5/12, "feet"),
  41935. weight: math.unit(170, "lb"),
  41936. name: "Front",
  41937. image: {
  41938. source: "./media/characters/mayso/front.svg",
  41939. extra: 1215/1108,
  41940. bottom: 16/1231
  41941. }
  41942. },
  41943. },
  41944. [
  41945. {
  41946. name: "Normal",
  41947. height: math.unit(5 + 5/12, "feet"),
  41948. default: true
  41949. },
  41950. ]
  41951. ))
  41952. characterMakers.push(() => makeCharacter(
  41953. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41954. {
  41955. front: {
  41956. height: math.unit(4 + 3/12, "feet"),
  41957. weight: math.unit(80, "lb"),
  41958. name: "Front",
  41959. image: {
  41960. source: "./media/characters/hess/front.svg",
  41961. extra: 1200/1123,
  41962. bottom: 16/1216
  41963. }
  41964. },
  41965. },
  41966. [
  41967. {
  41968. name: "Normal",
  41969. height: math.unit(4 + 3/12, "feet"),
  41970. default: true
  41971. },
  41972. ]
  41973. ))
  41974. characterMakers.push(() => makeCharacter(
  41975. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41976. {
  41977. front: {
  41978. height: math.unit(1.9, "meters"),
  41979. name: "Front",
  41980. image: {
  41981. source: "./media/characters/ashgar/front.svg",
  41982. extra: 1177/1146,
  41983. bottom: 99/1276
  41984. }
  41985. },
  41986. back: {
  41987. height: math.unit(1.9, "meters"),
  41988. name: "Back",
  41989. image: {
  41990. source: "./media/characters/ashgar/back.svg",
  41991. extra: 1201/1183,
  41992. bottom: 53/1254
  41993. }
  41994. },
  41995. feral: {
  41996. height: math.unit(1.4, "meters"),
  41997. name: "Feral",
  41998. image: {
  41999. source: "./media/characters/ashgar/feral.svg",
  42000. extra: 370/345,
  42001. bottom: 45/415
  42002. }
  42003. },
  42004. },
  42005. [
  42006. {
  42007. name: "Normal",
  42008. height: math.unit(1.9, "meters"),
  42009. default: true
  42010. },
  42011. ]
  42012. ))
  42013. characterMakers.push(() => makeCharacter(
  42014. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42015. {
  42016. regular: {
  42017. height: math.unit(6, "feet"),
  42018. weight: math.unit(220, "lb"),
  42019. name: "Regular",
  42020. image: {
  42021. source: "./media/characters/phillip/regular.svg",
  42022. extra: 1373/1277,
  42023. bottom: 75/1448
  42024. }
  42025. },
  42026. dressed: {
  42027. height: math.unit(6, "feet"),
  42028. weight: math.unit(220, "lb"),
  42029. name: "Dressed",
  42030. image: {
  42031. source: "./media/characters/phillip/dressed.svg",
  42032. extra: 1373/1277,
  42033. bottom: 75/1448
  42034. }
  42035. },
  42036. paw: {
  42037. height: math.unit(1.44, "feet"),
  42038. name: "Paw",
  42039. image: {
  42040. source: "./media/characters/phillip/paw.svg"
  42041. }
  42042. },
  42043. },
  42044. [
  42045. {
  42046. name: "Normal",
  42047. height: math.unit(6, "feet"),
  42048. default: true
  42049. },
  42050. ]
  42051. ))
  42052. characterMakers.push(() => makeCharacter(
  42053. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42054. {
  42055. side: {
  42056. height: math.unit(42, "feet"),
  42057. name: "Side",
  42058. image: {
  42059. source: "./media/characters/uvula/side.svg",
  42060. extra: 683/586,
  42061. bottom: 60/743
  42062. }
  42063. },
  42064. front: {
  42065. height: math.unit(42, "feet"),
  42066. name: "Front",
  42067. image: {
  42068. source: "./media/characters/uvula/front.svg",
  42069. extra: 705/613,
  42070. bottom: 54/759
  42071. }
  42072. },
  42073. maw: {
  42074. height: math.unit(23.5, "feet"),
  42075. name: "Maw",
  42076. image: {
  42077. source: "./media/characters/uvula/maw.svg"
  42078. }
  42079. },
  42080. },
  42081. [
  42082. {
  42083. name: "Original Size",
  42084. height: math.unit(14, "inches")
  42085. },
  42086. {
  42087. name: "Human Size",
  42088. height: math.unit(6, "feet")
  42089. },
  42090. {
  42091. name: "Big",
  42092. height: math.unit(42, "feet"),
  42093. default: true
  42094. },
  42095. {
  42096. name: "Bigger",
  42097. height: math.unit(100, "feet")
  42098. },
  42099. ]
  42100. ))
  42101. characterMakers.push(() => makeCharacter(
  42102. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42103. {
  42104. front: {
  42105. height: math.unit(5 + 11/12, "feet"),
  42106. name: "Front",
  42107. image: {
  42108. source: "./media/characters/lannah/front.svg",
  42109. extra: 1208/1113,
  42110. bottom: 97/1305
  42111. }
  42112. },
  42113. },
  42114. [
  42115. {
  42116. name: "Normal",
  42117. height: math.unit(5 + 11/12, "feet"),
  42118. default: true
  42119. },
  42120. ]
  42121. ))
  42122. characterMakers.push(() => makeCharacter(
  42123. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42124. {
  42125. front: {
  42126. height: math.unit(6 + 3/12, "feet"),
  42127. weight: math.unit(3.5, "tons"),
  42128. name: "Front",
  42129. image: {
  42130. source: "./media/characters/emberflame/front.svg",
  42131. extra: 1198/672,
  42132. bottom: 82/1280
  42133. }
  42134. },
  42135. side: {
  42136. height: math.unit(6 + 3/12, "feet"),
  42137. weight: math.unit(3.5, "tons"),
  42138. name: "Side",
  42139. image: {
  42140. source: "./media/characters/emberflame/side.svg",
  42141. extra: 938/527,
  42142. bottom: 56/994
  42143. }
  42144. },
  42145. },
  42146. [
  42147. {
  42148. name: "Normal",
  42149. height: math.unit(6 + 3/12, "feet"),
  42150. default: true
  42151. },
  42152. ]
  42153. ))
  42154. characterMakers.push(() => makeCharacter(
  42155. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42156. {
  42157. side: {
  42158. height: math.unit(17.5, "feet"),
  42159. weight: math.unit(35, "tons"),
  42160. name: "Side",
  42161. image: {
  42162. source: "./media/characters/sophie-ambrose/side.svg",
  42163. extra: 1573/1242,
  42164. bottom: 71/1644
  42165. }
  42166. },
  42167. maw: {
  42168. height: math.unit(7.4, "feet"),
  42169. name: "Maw",
  42170. image: {
  42171. source: "./media/characters/sophie-ambrose/maw.svg"
  42172. }
  42173. },
  42174. },
  42175. [
  42176. {
  42177. name: "Normal",
  42178. height: math.unit(17.5, "feet"),
  42179. default: true
  42180. },
  42181. ]
  42182. ))
  42183. characterMakers.push(() => makeCharacter(
  42184. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42185. {
  42186. front: {
  42187. height: math.unit(280, "feet"),
  42188. weight: math.unit(550, "tons"),
  42189. name: "Front",
  42190. image: {
  42191. source: "./media/characters/king-mugi/front.svg",
  42192. extra: 1102/947,
  42193. bottom: 104/1206
  42194. }
  42195. },
  42196. },
  42197. [
  42198. {
  42199. name: "King Mugi",
  42200. height: math.unit(280, "feet"),
  42201. default: true
  42202. },
  42203. ]
  42204. ))
  42205. characterMakers.push(() => makeCharacter(
  42206. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42207. {
  42208. front: {
  42209. height: math.unit(64, "meters"),
  42210. name: "Front",
  42211. image: {
  42212. source: "./media/characters/nova-fox/front.svg",
  42213. extra: 1310/1246,
  42214. bottom: 65/1375
  42215. }
  42216. },
  42217. },
  42218. [
  42219. {
  42220. name: "Macro",
  42221. height: math.unit(64, "meters"),
  42222. default: true
  42223. },
  42224. ]
  42225. ))
  42226. characterMakers.push(() => makeCharacter(
  42227. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42228. {
  42229. front: {
  42230. height: math.unit(6 + 3/12, "feet"),
  42231. weight: math.unit(170, "lb"),
  42232. name: "Front",
  42233. image: {
  42234. source: "./media/characters/sam-bat/front.svg",
  42235. extra: 1601/1411,
  42236. bottom: 125/1726
  42237. }
  42238. },
  42239. back: {
  42240. height: math.unit(6 + 3/12, "feet"),
  42241. weight: math.unit(170, "lb"),
  42242. name: "Back",
  42243. image: {
  42244. source: "./media/characters/sam-bat/back.svg",
  42245. extra: 1577/1405,
  42246. bottom: 58/1635
  42247. }
  42248. },
  42249. },
  42250. [
  42251. {
  42252. name: "Normal",
  42253. height: math.unit(6 + 3/12, "feet"),
  42254. default: true
  42255. },
  42256. ]
  42257. ))
  42258. characterMakers.push(() => makeCharacter(
  42259. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42260. {
  42261. front: {
  42262. height: math.unit(59, "feet"),
  42263. weight: math.unit(40000, "lb"),
  42264. name: "Front",
  42265. image: {
  42266. source: "./media/characters/inari/front.svg",
  42267. extra: 1884/1350,
  42268. bottom: 95/1979
  42269. }
  42270. },
  42271. },
  42272. [
  42273. {
  42274. name: "Gigantamax",
  42275. height: math.unit(59, "feet"),
  42276. default: true
  42277. },
  42278. ]
  42279. ))
  42280. characterMakers.push(() => makeCharacter(
  42281. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42282. {
  42283. front: {
  42284. height: math.unit(5 + 8/12, "feet"),
  42285. name: "Front",
  42286. image: {
  42287. source: "./media/characters/elizabeth/front.svg",
  42288. extra: 1395/1298,
  42289. bottom: 54/1449
  42290. }
  42291. },
  42292. mouth: {
  42293. height: math.unit(1.97, "feet"),
  42294. name: "Mouth",
  42295. image: {
  42296. source: "./media/characters/elizabeth/mouth.svg"
  42297. }
  42298. },
  42299. foot: {
  42300. height: math.unit(1.17, "feet"),
  42301. name: "Foot",
  42302. image: {
  42303. source: "./media/characters/elizabeth/foot.svg"
  42304. }
  42305. },
  42306. },
  42307. [
  42308. {
  42309. name: "Normal",
  42310. height: math.unit(5 + 8/12, "feet"),
  42311. default: true
  42312. },
  42313. {
  42314. name: "Minimacro",
  42315. height: math.unit(18, "feet")
  42316. },
  42317. {
  42318. name: "Macro",
  42319. height: math.unit(180, "feet")
  42320. },
  42321. ]
  42322. ))
  42323. characterMakers.push(() => makeCharacter(
  42324. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42325. {
  42326. front: {
  42327. height: math.unit(5 + 2/12, "feet"),
  42328. name: "Front",
  42329. image: {
  42330. source: "./media/characters/october-gossamer/front.svg",
  42331. extra: 505/454,
  42332. bottom: 7/512
  42333. }
  42334. },
  42335. back: {
  42336. height: math.unit(5 + 2/12, "feet"),
  42337. name: "Back",
  42338. image: {
  42339. source: "./media/characters/october-gossamer/back.svg",
  42340. extra: 501/454,
  42341. bottom: 11/512
  42342. }
  42343. },
  42344. },
  42345. [
  42346. {
  42347. name: "Normal",
  42348. height: math.unit(5 + 2/12, "feet"),
  42349. default: true
  42350. },
  42351. ]
  42352. ))
  42353. characterMakers.push(() => makeCharacter(
  42354. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42355. {
  42356. front: {
  42357. height: math.unit(5, "feet"),
  42358. name: "Front",
  42359. image: {
  42360. source: "./media/characters/epiglottis/front.svg",
  42361. extra: 923/849,
  42362. bottom: 17/940
  42363. }
  42364. },
  42365. },
  42366. [
  42367. {
  42368. name: "Original Size",
  42369. height: math.unit(10, "inches")
  42370. },
  42371. {
  42372. name: "Human Size",
  42373. height: math.unit(5, "feet"),
  42374. default: true
  42375. },
  42376. {
  42377. name: "Big",
  42378. height: math.unit(25, "feet")
  42379. },
  42380. {
  42381. name: "Bigger",
  42382. height: math.unit(50, "feet")
  42383. },
  42384. {
  42385. name: "oh lawd",
  42386. height: math.unit(75, "feet")
  42387. },
  42388. ]
  42389. ))
  42390. characterMakers.push(() => makeCharacter(
  42391. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42392. {
  42393. front: {
  42394. height: math.unit(2 + 4/12, "feet"),
  42395. weight: math.unit(60, "lb"),
  42396. name: "Front",
  42397. image: {
  42398. source: "./media/characters/lerm/front.svg",
  42399. extra: 796/790,
  42400. bottom: 79/875
  42401. }
  42402. },
  42403. },
  42404. [
  42405. {
  42406. name: "Normal",
  42407. height: math.unit(2 + 4/12, "feet"),
  42408. default: true
  42409. },
  42410. ]
  42411. ))
  42412. characterMakers.push(() => makeCharacter(
  42413. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42414. {
  42415. front: {
  42416. height: math.unit(5.5, "feet"),
  42417. weight: math.unit(130, "lb"),
  42418. name: "Front",
  42419. image: {
  42420. source: "./media/characters/xena-nebadon/front.svg",
  42421. extra: 1828/1730,
  42422. bottom: 79/1907
  42423. }
  42424. },
  42425. },
  42426. [
  42427. {
  42428. name: "Tiny Puppy",
  42429. height: math.unit(3, "inches")
  42430. },
  42431. {
  42432. name: "Normal",
  42433. height: math.unit(5.5, "feet"),
  42434. default: true
  42435. },
  42436. {
  42437. name: "Lotta Lady",
  42438. height: math.unit(12, "feet")
  42439. },
  42440. {
  42441. name: "Pretty Big",
  42442. height: math.unit(100, "feet")
  42443. },
  42444. {
  42445. name: "Big",
  42446. height: math.unit(500, "feet")
  42447. },
  42448. {
  42449. name: "Skyscraper Toys",
  42450. height: math.unit(2500, "feet")
  42451. },
  42452. {
  42453. name: "Plane Catcher",
  42454. height: math.unit(8, "miles")
  42455. },
  42456. {
  42457. name: "Planet Toys",
  42458. height: math.unit(15, "earths")
  42459. },
  42460. {
  42461. name: "Stardust",
  42462. height: math.unit(0.25, "galaxies")
  42463. },
  42464. {
  42465. name: "Snacks",
  42466. height: math.unit(70, "universes")
  42467. },
  42468. ]
  42469. ))
  42470. characterMakers.push(() => makeCharacter(
  42471. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42472. {
  42473. front: {
  42474. height: math.unit(1.6, "meters"),
  42475. weight: math.unit(60, "kg"),
  42476. name: "Front",
  42477. image: {
  42478. source: "./media/characters/bounty/front.svg",
  42479. extra: 1426/1308,
  42480. bottom: 15/1441
  42481. }
  42482. },
  42483. back: {
  42484. height: math.unit(1.6, "meters"),
  42485. weight: math.unit(60, "kg"),
  42486. name: "Back",
  42487. image: {
  42488. source: "./media/characters/bounty/back.svg",
  42489. extra: 1417/1307,
  42490. bottom: 8/1425
  42491. }
  42492. },
  42493. },
  42494. [
  42495. {
  42496. name: "Normal",
  42497. height: math.unit(1.6, "meters"),
  42498. default: true
  42499. },
  42500. {
  42501. name: "Macro",
  42502. height: math.unit(300, "meters")
  42503. },
  42504. ]
  42505. ))
  42506. characterMakers.push(() => makeCharacter(
  42507. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42508. {
  42509. front: {
  42510. height: math.unit(2 + 8/12, "feet"),
  42511. weight: math.unit(15, "lb"),
  42512. name: "Front",
  42513. image: {
  42514. source: "./media/characters/mochi/front.svg",
  42515. extra: 1022/852,
  42516. bottom: 435/1457
  42517. }
  42518. },
  42519. back: {
  42520. height: math.unit(2 + 8/12, "feet"),
  42521. weight: math.unit(15, "lb"),
  42522. name: "Back",
  42523. image: {
  42524. source: "./media/characters/mochi/back.svg",
  42525. extra: 1335/1119,
  42526. bottom: 39/1374
  42527. }
  42528. },
  42529. bird: {
  42530. height: math.unit(2 + 8/12, "feet"),
  42531. weight: math.unit(15, "lb"),
  42532. name: "Bird",
  42533. image: {
  42534. source: "./media/characters/mochi/bird.svg",
  42535. extra: 1251/1113,
  42536. bottom: 178/1429
  42537. }
  42538. },
  42539. kaiju: {
  42540. height: math.unit(154, "feet"),
  42541. weight: math.unit(1e7, "lb"),
  42542. name: "Kaiju",
  42543. image: {
  42544. source: "./media/characters/mochi/kaiju.svg",
  42545. extra: 460/324,
  42546. bottom: 40/500
  42547. }
  42548. },
  42549. head: {
  42550. height: math.unit(1.21, "feet"),
  42551. name: "Head",
  42552. image: {
  42553. source: "./media/characters/mochi/head.svg"
  42554. }
  42555. },
  42556. alternateTail: {
  42557. height: math.unit(2 + 8/12, "feet"),
  42558. weight: math.unit(45, "lb"),
  42559. name: "Alternate Tail",
  42560. image: {
  42561. source: "./media/characters/mochi/alternate-tail.svg",
  42562. extra: 139/76,
  42563. bottom: 45/184
  42564. }
  42565. },
  42566. },
  42567. [
  42568. {
  42569. name: "Micro",
  42570. height: math.unit(2, "inches")
  42571. },
  42572. {
  42573. name: "Normal",
  42574. height: math.unit(2 + 8/12, "feet"),
  42575. default: true
  42576. },
  42577. {
  42578. name: "Macro",
  42579. height: math.unit(106, "feet")
  42580. },
  42581. ]
  42582. ))
  42583. characterMakers.push(() => makeCharacter(
  42584. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42585. {
  42586. front: {
  42587. height: math.unit(5.67, "feet"),
  42588. weight: math.unit(135, "lb"),
  42589. name: "Front",
  42590. image: {
  42591. source: "./media/characters/sarel/front.svg",
  42592. extra: 865/788,
  42593. bottom: 97/962
  42594. }
  42595. },
  42596. back: {
  42597. height: math.unit(5.67, "feet"),
  42598. weight: math.unit(135, "lb"),
  42599. name: "Back",
  42600. image: {
  42601. source: "./media/characters/sarel/back.svg",
  42602. extra: 857/777,
  42603. bottom: 32/889
  42604. }
  42605. },
  42606. chozoan: {
  42607. height: math.unit(5.67, "feet"),
  42608. weight: math.unit(135, "lb"),
  42609. name: "Chozoan",
  42610. image: {
  42611. source: "./media/characters/sarel/chozoan.svg",
  42612. extra: 865/788,
  42613. bottom: 97/962
  42614. }
  42615. },
  42616. current: {
  42617. height: math.unit(5.67, "feet"),
  42618. weight: math.unit(135, "lb"),
  42619. name: "Current",
  42620. image: {
  42621. source: "./media/characters/sarel/current.svg",
  42622. extra: 865/788,
  42623. bottom: 97/962
  42624. }
  42625. },
  42626. head: {
  42627. height: math.unit(1.77, "feet"),
  42628. name: "Head",
  42629. image: {
  42630. source: "./media/characters/sarel/head.svg"
  42631. }
  42632. },
  42633. claws: {
  42634. height: math.unit(1.8, "feet"),
  42635. name: "Claws",
  42636. image: {
  42637. source: "./media/characters/sarel/claws.svg"
  42638. }
  42639. },
  42640. clawsAlt: {
  42641. height: math.unit(1.8, "feet"),
  42642. name: "Claws-alt",
  42643. image: {
  42644. source: "./media/characters/sarel/claws-alt.svg"
  42645. }
  42646. },
  42647. },
  42648. [
  42649. {
  42650. name: "Normal",
  42651. height: math.unit(5.67, "feet"),
  42652. default: true
  42653. },
  42654. ]
  42655. ))
  42656. characterMakers.push(() => makeCharacter(
  42657. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42658. {
  42659. front: {
  42660. height: math.unit(5500, "feet"),
  42661. name: "Front",
  42662. image: {
  42663. source: "./media/characters/alyonia/front.svg",
  42664. extra: 1200/1135,
  42665. bottom: 29/1229
  42666. }
  42667. },
  42668. back: {
  42669. height: math.unit(5500, "feet"),
  42670. name: "Back",
  42671. image: {
  42672. source: "./media/characters/alyonia/back.svg",
  42673. extra: 1205/1138,
  42674. bottom: 10/1215
  42675. }
  42676. },
  42677. },
  42678. [
  42679. {
  42680. name: "Small",
  42681. height: math.unit(10, "feet")
  42682. },
  42683. {
  42684. name: "Macro",
  42685. height: math.unit(500, "feet")
  42686. },
  42687. {
  42688. name: "Mega Macro",
  42689. height: math.unit(5500, "feet"),
  42690. default: true
  42691. },
  42692. {
  42693. name: "Mega Macro+",
  42694. height: math.unit(500000, "feet")
  42695. },
  42696. {
  42697. name: "Giga Macro",
  42698. height: math.unit(3000, "miles")
  42699. },
  42700. {
  42701. name: "Tera Macro",
  42702. height: math.unit(2.8e6, "miles")
  42703. },
  42704. {
  42705. name: "Galactic",
  42706. height: math.unit(120000, "lightyears")
  42707. },
  42708. ]
  42709. ))
  42710. characterMakers.push(() => makeCharacter(
  42711. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42712. {
  42713. werewolf: {
  42714. height: math.unit(8, "feet"),
  42715. weight: math.unit(425, "lb"),
  42716. name: "Werewolf",
  42717. image: {
  42718. source: "./media/characters/autumn/werewolf.svg",
  42719. extra: 2154/2031,
  42720. bottom: 160/2314
  42721. }
  42722. },
  42723. human: {
  42724. height: math.unit(5 + 8/12, "feet"),
  42725. weight: math.unit(150, "lb"),
  42726. name: "Human",
  42727. image: {
  42728. source: "./media/characters/autumn/human.svg",
  42729. extra: 1200/1149,
  42730. bottom: 30/1230
  42731. }
  42732. },
  42733. },
  42734. [
  42735. {
  42736. name: "Normal",
  42737. height: math.unit(8, "feet"),
  42738. default: true
  42739. },
  42740. ]
  42741. ))
  42742. characterMakers.push(() => makeCharacter(
  42743. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42744. {
  42745. front: {
  42746. height: math.unit(8 + 5/12, "feet"),
  42747. weight: math.unit(825, "lb"),
  42748. name: "Front",
  42749. image: {
  42750. source: "./media/characters/cobalt-charizard/front.svg",
  42751. extra: 1268/1155,
  42752. bottom: 122/1390
  42753. }
  42754. },
  42755. side: {
  42756. height: math.unit(8 + 5/12, "feet"),
  42757. weight: math.unit(825, "lb"),
  42758. name: "Side",
  42759. image: {
  42760. source: "./media/characters/cobalt-charizard/side.svg",
  42761. extra: 1348/1257,
  42762. bottom: 58/1406
  42763. }
  42764. },
  42765. gMax: {
  42766. height: math.unit(134 + 11/12, "feet"),
  42767. name: "G-Max",
  42768. image: {
  42769. source: "./media/characters/cobalt-charizard/g-max.svg",
  42770. extra: 1835/1541,
  42771. bottom: 151/1986
  42772. }
  42773. },
  42774. },
  42775. [
  42776. {
  42777. name: "Normal",
  42778. height: math.unit(8 + 5/12, "feet"),
  42779. default: true
  42780. },
  42781. ]
  42782. ))
  42783. characterMakers.push(() => makeCharacter(
  42784. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42785. {
  42786. front: {
  42787. height: math.unit(6 + 3/12, "feet"),
  42788. weight: math.unit(210, "lb"),
  42789. name: "Front",
  42790. image: {
  42791. source: "./media/characters/stella/front.svg",
  42792. extra: 3549/3335,
  42793. bottom: 51/3600
  42794. }
  42795. },
  42796. },
  42797. [
  42798. {
  42799. name: "Normal",
  42800. height: math.unit(6 + 3/12, "feet"),
  42801. default: true
  42802. },
  42803. ]
  42804. ))
  42805. characterMakers.push(() => makeCharacter(
  42806. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42807. {
  42808. front: {
  42809. height: math.unit(5, "feet"),
  42810. weight: math.unit(90, "lb"),
  42811. name: "Front",
  42812. image: {
  42813. source: "./media/characters/riley-bishop/front.svg",
  42814. extra: 1450/1428,
  42815. bottom: 152/1602
  42816. }
  42817. },
  42818. },
  42819. [
  42820. {
  42821. name: "Normal",
  42822. height: math.unit(5, "feet"),
  42823. default: true
  42824. },
  42825. ]
  42826. ))
  42827. characterMakers.push(() => makeCharacter(
  42828. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42829. {
  42830. side: {
  42831. height: math.unit(8 + 2/12, "feet"),
  42832. weight: math.unit(500, "kg"),
  42833. name: "Side",
  42834. image: {
  42835. source: "./media/characters/theo-arcanine/side.svg",
  42836. extra: 1342/1074,
  42837. bottom: 111/1453
  42838. }
  42839. },
  42840. },
  42841. [
  42842. {
  42843. name: "Normal",
  42844. height: math.unit(8 + 2/12, "feet"),
  42845. default: true
  42846. },
  42847. ]
  42848. ))
  42849. characterMakers.push(() => makeCharacter(
  42850. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42851. {
  42852. front: {
  42853. height: math.unit(4, "feet"),
  42854. name: "Front",
  42855. image: {
  42856. source: "./media/characters/kali/front.svg",
  42857. extra: 1921/1357,
  42858. bottom: 70/1991
  42859. }
  42860. },
  42861. },
  42862. [
  42863. {
  42864. name: "Normal",
  42865. height: math.unit(4, "feet"),
  42866. default: true
  42867. },
  42868. {
  42869. name: "Macro",
  42870. height: math.unit(32, "meters")
  42871. },
  42872. {
  42873. name: "Macro+",
  42874. height: math.unit(150, "meters")
  42875. },
  42876. {
  42877. name: "Megamacro",
  42878. height: math.unit(7500, "meters")
  42879. },
  42880. {
  42881. name: "Megamacro+",
  42882. height: math.unit(80, "kilometers")
  42883. },
  42884. ]
  42885. ))
  42886. characterMakers.push(() => makeCharacter(
  42887. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42888. {
  42889. side: {
  42890. height: math.unit(5 + 11/12, "feet"),
  42891. weight: math.unit(236, "lb"),
  42892. name: "Side",
  42893. image: {
  42894. source: "./media/characters/gapp/side.svg",
  42895. extra: 775/340,
  42896. bottom: 58/833
  42897. }
  42898. },
  42899. mouth: {
  42900. height: math.unit(2.98, "feet"),
  42901. name: "Mouth",
  42902. image: {
  42903. source: "./media/characters/gapp/mouth.svg"
  42904. }
  42905. },
  42906. },
  42907. [
  42908. {
  42909. name: "Normal",
  42910. height: math.unit(5 + 1/12, "feet"),
  42911. default: true
  42912. },
  42913. ]
  42914. ))
  42915. characterMakers.push(() => makeCharacter(
  42916. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42917. {
  42918. front: {
  42919. height: math.unit(6, "feet"),
  42920. name: "Front",
  42921. image: {
  42922. source: "./media/characters/persephone/front.svg",
  42923. extra: 1895/1717,
  42924. bottom: 96/1991
  42925. }
  42926. },
  42927. back: {
  42928. height: math.unit(6, "feet"),
  42929. name: "Back",
  42930. image: {
  42931. source: "./media/characters/persephone/back.svg",
  42932. extra: 1868/1679,
  42933. bottom: 26/1894
  42934. }
  42935. },
  42936. casual: {
  42937. height: math.unit(6, "feet"),
  42938. name: "Casual",
  42939. image: {
  42940. source: "./media/characters/persephone/casual.svg",
  42941. extra: 1713/1541,
  42942. bottom: 76/1789
  42943. }
  42944. },
  42945. },
  42946. [
  42947. {
  42948. name: "Human Size",
  42949. height: math.unit(6, "feet")
  42950. },
  42951. {
  42952. name: "Big Steppy",
  42953. height: math.unit(600, "meters"),
  42954. default: true
  42955. },
  42956. {
  42957. name: "Galaxy Brain",
  42958. height: math.unit(1, "zettameter")
  42959. },
  42960. ]
  42961. ))
  42962. characterMakers.push(() => makeCharacter(
  42963. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42964. {
  42965. front: {
  42966. height: math.unit(1.85, "meters"),
  42967. name: "Front",
  42968. image: {
  42969. source: "./media/characters/riley-foxthing/front.svg",
  42970. extra: 1495/1354,
  42971. bottom: 122/1617
  42972. }
  42973. },
  42974. frontAlt: {
  42975. height: math.unit(1.85, "meters"),
  42976. name: "Front (Alt)",
  42977. image: {
  42978. source: "./media/characters/riley-foxthing/front-alt.svg",
  42979. extra: 1572/1389,
  42980. bottom: 116/1688
  42981. }
  42982. },
  42983. },
  42984. [
  42985. {
  42986. name: "Normal Sized",
  42987. height: math.unit(1.85, "meters"),
  42988. default: true
  42989. },
  42990. {
  42991. name: "Quite Sizable",
  42992. height: math.unit(5, "meters")
  42993. },
  42994. {
  42995. name: "Rather Large",
  42996. height: math.unit(20, "meters")
  42997. },
  42998. {
  42999. name: "Macro",
  43000. height: math.unit(450, "meters")
  43001. },
  43002. {
  43003. name: "Giga",
  43004. height: math.unit(5, "km")
  43005. },
  43006. ]
  43007. ))
  43008. characterMakers.push(() => makeCharacter(
  43009. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43010. {
  43011. front: {
  43012. height: math.unit(6, "feet"),
  43013. weight: math.unit(200, "lb"),
  43014. name: "Front",
  43015. image: {
  43016. source: "./media/characters/blizzard/front.svg",
  43017. extra: 1136/990,
  43018. bottom: 136/1272
  43019. }
  43020. },
  43021. back: {
  43022. height: math.unit(6, "feet"),
  43023. weight: math.unit(200, "lb"),
  43024. name: "Back",
  43025. image: {
  43026. source: "./media/characters/blizzard/back.svg",
  43027. extra: 1175/1034,
  43028. bottom: 97/1272
  43029. }
  43030. },
  43031. sitting: {
  43032. height: math.unit(3.725, "feet"),
  43033. weight: math.unit(200, "lb"),
  43034. name: "Sitting",
  43035. image: {
  43036. source: "./media/characters/blizzard/sitting.svg",
  43037. extra: 581/485,
  43038. bottom: 90/671
  43039. }
  43040. },
  43041. frontWizard: {
  43042. height: math.unit(7.9, "feet"),
  43043. weight: math.unit(200, "lb"),
  43044. name: "Front (Wizard)",
  43045. image: {
  43046. source: "./media/characters/blizzard/front-wizard.svg"
  43047. }
  43048. },
  43049. backWizard: {
  43050. height: math.unit(7.9, "feet"),
  43051. weight: math.unit(200, "lb"),
  43052. name: "Back (Wizard)",
  43053. image: {
  43054. source: "./media/characters/blizzard/back-wizard.svg"
  43055. }
  43056. },
  43057. frontNsfw: {
  43058. height: math.unit(6, "feet"),
  43059. weight: math.unit(200, "lb"),
  43060. name: "Front (NSFW)",
  43061. image: {
  43062. source: "./media/characters/blizzard/front-nsfw.svg",
  43063. extra: 1136/990,
  43064. bottom: 136/1272
  43065. }
  43066. },
  43067. backNsfw: {
  43068. height: math.unit(6, "feet"),
  43069. weight: math.unit(200, "lb"),
  43070. name: "Back (NSFW)",
  43071. image: {
  43072. source: "./media/characters/blizzard/back-nsfw.svg",
  43073. extra: 1175/1034,
  43074. bottom: 97/1272
  43075. }
  43076. },
  43077. sittingNsfw: {
  43078. height: math.unit(3.725, "feet"),
  43079. weight: math.unit(200, "lb"),
  43080. name: "Sitting (NSFW)",
  43081. image: {
  43082. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43083. extra: 581/485,
  43084. bottom: 90/671
  43085. }
  43086. },
  43087. wizardFrontNsfw: {
  43088. height: math.unit(7.9, "feet"),
  43089. weight: math.unit(200, "lb"),
  43090. name: "Wizard (Front, NSFW)",
  43091. image: {
  43092. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43093. }
  43094. },
  43095. },
  43096. [
  43097. {
  43098. name: "Normal",
  43099. height: math.unit(6, "feet"),
  43100. default: true
  43101. },
  43102. ]
  43103. ))
  43104. characterMakers.push(() => makeCharacter(
  43105. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43106. {
  43107. front: {
  43108. height: math.unit(5 + 2/12, "feet"),
  43109. name: "Front",
  43110. image: {
  43111. source: "./media/characters/lumi/front.svg",
  43112. extra: 1328/1268,
  43113. bottom: 103/1431
  43114. }
  43115. },
  43116. back: {
  43117. height: math.unit(5 + 2/12, "feet"),
  43118. name: "Back",
  43119. image: {
  43120. source: "./media/characters/lumi/back.svg",
  43121. extra: 1381/1327,
  43122. bottom: 43/1424
  43123. }
  43124. },
  43125. },
  43126. [
  43127. {
  43128. name: "Normal",
  43129. height: math.unit(5 + 2/12, "feet"),
  43130. default: true
  43131. },
  43132. ]
  43133. ))
  43134. characterMakers.push(() => makeCharacter(
  43135. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43136. {
  43137. front: {
  43138. height: math.unit(5 + 9/12, "feet"),
  43139. name: "Front",
  43140. image: {
  43141. source: "./media/characters/aliya-cotton/front.svg",
  43142. extra: 577/564,
  43143. bottom: 29/606
  43144. }
  43145. },
  43146. },
  43147. [
  43148. {
  43149. name: "Normal",
  43150. height: math.unit(5 + 9/12, "feet"),
  43151. default: true
  43152. },
  43153. ]
  43154. ))
  43155. characterMakers.push(() => makeCharacter(
  43156. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43157. {
  43158. front: {
  43159. height: math.unit(2.7, "meters"),
  43160. weight: math.unit(25000, "lb"),
  43161. name: "Front",
  43162. image: {
  43163. source: "./media/characters/noah-luxray/front.svg",
  43164. extra: 1644/825,
  43165. bottom: 339/1983
  43166. }
  43167. },
  43168. side: {
  43169. height: math.unit(2.97, "meters"),
  43170. weight: math.unit(25000, "lb"),
  43171. name: "Side",
  43172. image: {
  43173. source: "./media/characters/noah-luxray/side.svg",
  43174. extra: 1319/650,
  43175. bottom: 163/1482
  43176. }
  43177. },
  43178. dick: {
  43179. height: math.unit(7.4, "feet"),
  43180. weight: math.unit(2500, "lb"),
  43181. name: "Dick",
  43182. image: {
  43183. source: "./media/characters/noah-luxray/dick.svg"
  43184. }
  43185. },
  43186. dickAlt: {
  43187. height: math.unit(10.83, "feet"),
  43188. weight: math.unit(2500, "lb"),
  43189. name: "Dick-alt",
  43190. image: {
  43191. source: "./media/characters/noah-luxray/dick-alt.svg"
  43192. }
  43193. },
  43194. },
  43195. [
  43196. {
  43197. name: "BIG",
  43198. height: math.unit(2.7, "meters"),
  43199. default: true
  43200. },
  43201. ]
  43202. ))
  43203. characterMakers.push(() => makeCharacter(
  43204. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43205. {
  43206. standing: {
  43207. height: math.unit(183, "cm"),
  43208. weight: math.unit(68, "kg"),
  43209. name: "Standing",
  43210. image: {
  43211. source: "./media/characters/arion/standing.svg",
  43212. extra: 1869/1807,
  43213. bottom: 93/1962
  43214. }
  43215. },
  43216. reclining: {
  43217. height: math.unit(70.5, "cm"),
  43218. weight: math.unit(68, "lb"),
  43219. name: "Reclining",
  43220. image: {
  43221. source: "./media/characters/arion/reclining.svg",
  43222. extra: 937/870,
  43223. bottom: 63/1000
  43224. }
  43225. },
  43226. },
  43227. [
  43228. {
  43229. name: "Colossus Size, Low",
  43230. height: math.unit(33, "meters"),
  43231. default: true
  43232. },
  43233. {
  43234. name: "Colossus Size, Mid",
  43235. height: math.unit(52, "meters")
  43236. },
  43237. {
  43238. name: "Colossus Size, High",
  43239. height: math.unit(60, "meters")
  43240. },
  43241. {
  43242. name: "Titan Size, Low",
  43243. height: math.unit(91, "meters"),
  43244. },
  43245. {
  43246. name: "Titan Size, Mid",
  43247. height: math.unit(122, "meters")
  43248. },
  43249. {
  43250. name: "Titan Size, High",
  43251. height: math.unit(162, "meters")
  43252. },
  43253. ]
  43254. ))
  43255. characterMakers.push(() => makeCharacter(
  43256. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43257. {
  43258. front: {
  43259. height: math.unit(53, "meters"),
  43260. name: "Front",
  43261. image: {
  43262. source: "./media/characters/stellar-marbey/front.svg",
  43263. extra: 1913/1805,
  43264. bottom: 92/2005
  43265. }
  43266. },
  43267. back: {
  43268. height: math.unit(53, "meters"),
  43269. name: "Back",
  43270. image: {
  43271. source: "./media/characters/stellar-marbey/back.svg",
  43272. extra: 1960/1851,
  43273. bottom: 28/1988
  43274. }
  43275. },
  43276. mouth: {
  43277. height: math.unit(3.5, "meters"),
  43278. name: "Mouth",
  43279. image: {
  43280. source: "./media/characters/stellar-marbey/mouth.svg"
  43281. }
  43282. },
  43283. },
  43284. [
  43285. {
  43286. name: "Macro",
  43287. height: math.unit(53, "meters"),
  43288. default: true
  43289. },
  43290. ]
  43291. ))
  43292. characterMakers.push(() => makeCharacter(
  43293. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43294. {
  43295. front: {
  43296. height: math.unit(8 + 1/12, "feet"),
  43297. weight: math.unit(233, "lb"),
  43298. name: "Front",
  43299. image: {
  43300. source: "./media/characters/matsu/front.svg",
  43301. extra: 832/772,
  43302. bottom: 40/872
  43303. }
  43304. },
  43305. back: {
  43306. height: math.unit(8 + 1/12, "feet"),
  43307. weight: math.unit(233, "lb"),
  43308. name: "Back",
  43309. image: {
  43310. source: "./media/characters/matsu/back.svg",
  43311. extra: 839/780,
  43312. bottom: 47/886
  43313. }
  43314. },
  43315. },
  43316. [
  43317. {
  43318. name: "Normal",
  43319. height: math.unit(8 + 1/12, "feet"),
  43320. default: true
  43321. },
  43322. ]
  43323. ))
  43324. characterMakers.push(() => makeCharacter(
  43325. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43326. {
  43327. front: {
  43328. height: math.unit(4, "feet"),
  43329. weight: math.unit(148, "lb"),
  43330. name: "Front",
  43331. image: {
  43332. source: "./media/characters/thiz/front.svg",
  43333. extra: 1913/1748,
  43334. bottom: 62/1975
  43335. }
  43336. },
  43337. },
  43338. [
  43339. {
  43340. name: "Normal",
  43341. height: math.unit(4, "feet"),
  43342. default: true
  43343. },
  43344. ]
  43345. ))
  43346. characterMakers.push(() => makeCharacter(
  43347. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43348. {
  43349. front: {
  43350. height: math.unit(7 + 6/12, "feet"),
  43351. weight: math.unit(267, "lb"),
  43352. name: "Front",
  43353. image: {
  43354. source: "./media/characters/marcel/front.svg",
  43355. extra: 1221/1096,
  43356. bottom: 76/1297
  43357. }
  43358. },
  43359. },
  43360. [
  43361. {
  43362. name: "Normal",
  43363. height: math.unit(7 + 6/12, "feet"),
  43364. default: true
  43365. },
  43366. ]
  43367. ))
  43368. characterMakers.push(() => makeCharacter(
  43369. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43370. {
  43371. side: {
  43372. height: math.unit(42, "meters"),
  43373. name: "Side",
  43374. image: {
  43375. source: "./media/characters/flake/side.svg",
  43376. extra: 1525/1306,
  43377. bottom: 209/1734
  43378. }
  43379. },
  43380. },
  43381. [
  43382. {
  43383. name: "Normal",
  43384. height: math.unit(42, "meters"),
  43385. default: true
  43386. },
  43387. ]
  43388. ))
  43389. characterMakers.push(() => makeCharacter(
  43390. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43391. {
  43392. dressed: {
  43393. height: math.unit(6 + 4/12, "feet"),
  43394. weight: math.unit(520, "lb"),
  43395. name: "Dressed",
  43396. image: {
  43397. source: "./media/characters/someonne/dressed.svg",
  43398. extra: 1020/1010,
  43399. bottom: 178/1198
  43400. }
  43401. },
  43402. undressed: {
  43403. height: math.unit(6 + 4/12, "feet"),
  43404. weight: math.unit(520, "lb"),
  43405. name: "Undressed",
  43406. image: {
  43407. source: "./media/characters/someonne/undressed.svg",
  43408. extra: 1019/1014,
  43409. bottom: 169/1188
  43410. }
  43411. },
  43412. },
  43413. [
  43414. {
  43415. name: "Normal",
  43416. height: math.unit(6 + 4/12, "feet"),
  43417. default: true
  43418. },
  43419. ]
  43420. ))
  43421. characterMakers.push(() => makeCharacter(
  43422. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43423. {
  43424. front: {
  43425. height: math.unit(3, "feet"),
  43426. weight: math.unit(30, "lb"),
  43427. name: "Front",
  43428. image: {
  43429. source: "./media/characters/till/front.svg",
  43430. extra: 892/823,
  43431. bottom: 55/947
  43432. }
  43433. },
  43434. },
  43435. [
  43436. {
  43437. name: "Normal",
  43438. height: math.unit(3, "feet"),
  43439. default: true
  43440. },
  43441. ]
  43442. ))
  43443. characterMakers.push(() => makeCharacter(
  43444. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43445. {
  43446. front: {
  43447. height: math.unit(9 + 8/12, "feet"),
  43448. weight: math.unit(800, "lb"),
  43449. name: "Front",
  43450. image: {
  43451. source: "./media/characters/sydney-heki/front.svg",
  43452. extra: 1360/1300,
  43453. bottom: 22/1382
  43454. }
  43455. },
  43456. back: {
  43457. height: math.unit(9 + 8/12, "feet"),
  43458. weight: math.unit(800, "lb"),
  43459. name: "Back",
  43460. image: {
  43461. source: "./media/characters/sydney-heki/back.svg",
  43462. extra: 1356/1293,
  43463. bottom: 12/1368
  43464. }
  43465. },
  43466. frontDressed: {
  43467. height: math.unit(9 + 8/12, "feet"),
  43468. weight: math.unit(800, "lb"),
  43469. name: "Front-dressed",
  43470. image: {
  43471. source: "./media/characters/sydney-heki/front-dressed.svg",
  43472. extra: 1360/1300,
  43473. bottom: 22/1382
  43474. }
  43475. },
  43476. },
  43477. [
  43478. {
  43479. name: "Normal",
  43480. height: math.unit(9 + 8/12, "feet"),
  43481. default: true
  43482. },
  43483. {
  43484. name: "Macro",
  43485. height: math.unit(500, "feet")
  43486. },
  43487. {
  43488. name: "Megamacro",
  43489. height: math.unit(3.6, "miles")
  43490. },
  43491. ]
  43492. ))
  43493. characterMakers.push(() => makeCharacter(
  43494. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43495. {
  43496. front: {
  43497. height: math.unit(200, "cm"),
  43498. weight: math.unit(250, "lb"),
  43499. name: "Front",
  43500. image: {
  43501. source: "./media/characters/fowler-karlsson/front.svg",
  43502. extra: 897/845,
  43503. bottom: 123/1020
  43504. }
  43505. },
  43506. back: {
  43507. height: math.unit(200, "cm"),
  43508. weight: math.unit(250, "lb"),
  43509. name: "Back",
  43510. image: {
  43511. source: "./media/characters/fowler-karlsson/back.svg",
  43512. extra: 999/944,
  43513. bottom: 26/1025
  43514. }
  43515. },
  43516. dick: {
  43517. height: math.unit(1.92, "feet"),
  43518. weight: math.unit(150, "lb"),
  43519. name: "Dick",
  43520. image: {
  43521. source: "./media/characters/fowler-karlsson/dick.svg"
  43522. }
  43523. },
  43524. },
  43525. [
  43526. {
  43527. name: "Normal",
  43528. height: math.unit(200, "cm"),
  43529. default: true
  43530. },
  43531. {
  43532. name: "Smaller Macro",
  43533. height: math.unit(90, "m")
  43534. },
  43535. {
  43536. name: "Macro",
  43537. height: math.unit(150, "m")
  43538. },
  43539. {
  43540. name: "Bigger Macro",
  43541. height: math.unit(300, "m")
  43542. },
  43543. ]
  43544. ))
  43545. characterMakers.push(() => makeCharacter(
  43546. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43547. {
  43548. side: {
  43549. height: math.unit(8 + 2/12, "feet"),
  43550. weight: math.unit(1, "tonne"),
  43551. name: "Side",
  43552. image: {
  43553. source: "./media/characters/rylide/side.svg",
  43554. extra: 1318/1034,
  43555. bottom: 106/1424
  43556. }
  43557. },
  43558. sitting: {
  43559. height: math.unit(303, "cm"),
  43560. weight: math.unit(1, "tonne"),
  43561. name: "Sitting",
  43562. image: {
  43563. source: "./media/characters/rylide/sitting.svg",
  43564. extra: 1303/1103,
  43565. bottom: 36/1339
  43566. }
  43567. },
  43568. },
  43569. [
  43570. {
  43571. name: "Normal",
  43572. height: math.unit(8 + 2/12, "feet"),
  43573. default: true
  43574. },
  43575. ]
  43576. ))
  43577. characterMakers.push(() => makeCharacter(
  43578. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43579. {
  43580. front: {
  43581. height: math.unit(5 + 10/12, "feet"),
  43582. weight: math.unit(160, "lb"),
  43583. name: "Front",
  43584. image: {
  43585. source: "./media/characters/pudask/front.svg",
  43586. extra: 1616/1590,
  43587. bottom: 161/1777
  43588. }
  43589. },
  43590. },
  43591. [
  43592. {
  43593. name: "Ferret Height",
  43594. height: math.unit(2 + 5/12, "feet")
  43595. },
  43596. {
  43597. name: "Canon Height",
  43598. height: math.unit(5 + 10/12, "feet"),
  43599. default: true
  43600. },
  43601. ]
  43602. ))
  43603. characterMakers.push(() => makeCharacter(
  43604. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43605. {
  43606. front: {
  43607. height: math.unit(3 + 6/12, "feet"),
  43608. weight: math.unit(60, "lb"),
  43609. name: "Front",
  43610. image: {
  43611. source: "./media/characters/ramita/front.svg",
  43612. extra: 1402/1232,
  43613. bottom: 62/1464
  43614. }
  43615. },
  43616. dressed: {
  43617. height: math.unit(3 + 6/12, "feet"),
  43618. weight: math.unit(60, "lb"),
  43619. name: "Dressed",
  43620. image: {
  43621. source: "./media/characters/ramita/dressed.svg",
  43622. extra: 1534/1249,
  43623. bottom: 50/1584
  43624. }
  43625. },
  43626. },
  43627. [
  43628. {
  43629. name: "Normal",
  43630. height: math.unit(3 + 6/12, "feet"),
  43631. default: true
  43632. },
  43633. ]
  43634. ))
  43635. characterMakers.push(() => makeCharacter(
  43636. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43637. {
  43638. front: {
  43639. height: math.unit(8, "feet"),
  43640. name: "Front",
  43641. image: {
  43642. source: "./media/characters/ark/front.svg",
  43643. extra: 772/693,
  43644. bottom: 45/817
  43645. }
  43646. },
  43647. },
  43648. [
  43649. {
  43650. name: "Normal",
  43651. height: math.unit(8, "feet"),
  43652. default: true
  43653. },
  43654. ]
  43655. ))
  43656. characterMakers.push(() => makeCharacter(
  43657. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43658. {
  43659. front: {
  43660. height: math.unit(6, "feet"),
  43661. weight: math.unit(250, "lb"),
  43662. volume: math.unit(5/8, "gallons"),
  43663. name: "Front",
  43664. image: {
  43665. source: "./media/characters/ludwig-horn/front.svg",
  43666. extra: 1782/1635,
  43667. bottom: 96/1878
  43668. }
  43669. },
  43670. back: {
  43671. height: math.unit(6, "feet"),
  43672. weight: math.unit(250, "lb"),
  43673. volume: math.unit(5/8, "gallons"),
  43674. name: "Back",
  43675. image: {
  43676. source: "./media/characters/ludwig-horn/back.svg",
  43677. extra: 1874/1729,
  43678. bottom: 27/1901
  43679. }
  43680. },
  43681. dick: {
  43682. height: math.unit(1.05, "feet"),
  43683. weight: math.unit(15, "lb"),
  43684. volume: math.unit(5/8, "gallons"),
  43685. name: "Dick",
  43686. image: {
  43687. source: "./media/characters/ludwig-horn/dick.svg"
  43688. }
  43689. },
  43690. },
  43691. [
  43692. {
  43693. name: "Small",
  43694. height: math.unit(6, "feet")
  43695. },
  43696. {
  43697. name: "Typical",
  43698. height: math.unit(12, "feet"),
  43699. default: true
  43700. },
  43701. {
  43702. name: "Building",
  43703. height: math.unit(80, "feet")
  43704. },
  43705. {
  43706. name: "Town",
  43707. height: math.unit(800, "feet")
  43708. },
  43709. {
  43710. name: "Kingdom",
  43711. height: math.unit(80000, "feet")
  43712. },
  43713. {
  43714. name: "Planet",
  43715. height: math.unit(8000000, "feet")
  43716. },
  43717. {
  43718. name: "Universe",
  43719. height: math.unit(8000000000, "feet")
  43720. },
  43721. {
  43722. name: "Transcended",
  43723. height: math.unit(8e27, "feet")
  43724. },
  43725. ]
  43726. ))
  43727. characterMakers.push(() => makeCharacter(
  43728. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43729. {
  43730. front: {
  43731. height: math.unit(5, "feet"),
  43732. weight: math.unit(50, "kg"),
  43733. name: "Front",
  43734. image: {
  43735. source: "./media/characters/biot-avery/front.svg",
  43736. extra: 1295/1232,
  43737. bottom: 86/1381
  43738. }
  43739. },
  43740. },
  43741. [
  43742. {
  43743. name: "Normal",
  43744. height: math.unit(5, "feet"),
  43745. default: true
  43746. },
  43747. ]
  43748. ))
  43749. characterMakers.push(() => makeCharacter(
  43750. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43751. {
  43752. front: {
  43753. height: math.unit(6, "feet"),
  43754. name: "Front",
  43755. image: {
  43756. source: "./media/characters/kitsune-kiro/front.svg",
  43757. extra: 1270/1158,
  43758. bottom: 42/1312
  43759. }
  43760. },
  43761. frontAlt: {
  43762. height: math.unit(6, "feet"),
  43763. name: "Front-alt",
  43764. image: {
  43765. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43766. extra: 1130/1081,
  43767. bottom: 36/1166
  43768. }
  43769. },
  43770. },
  43771. [
  43772. {
  43773. name: "Smol",
  43774. height: math.unit(3, "feet")
  43775. },
  43776. {
  43777. name: "Normal",
  43778. height: math.unit(6, "feet"),
  43779. default: true
  43780. },
  43781. ]
  43782. ))
  43783. characterMakers.push(() => makeCharacter(
  43784. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43785. {
  43786. front: {
  43787. height: math.unit(6, "feet"),
  43788. weight: math.unit(125, "lb"),
  43789. name: "Front",
  43790. image: {
  43791. source: "./media/characters/jack-thatcher/front.svg",
  43792. extra: 1474/1370,
  43793. bottom: 26/1500
  43794. }
  43795. },
  43796. back: {
  43797. height: math.unit(6, "feet"),
  43798. weight: math.unit(125, "lb"),
  43799. name: "Back",
  43800. image: {
  43801. source: "./media/characters/jack-thatcher/back.svg",
  43802. extra: 1489/1384,
  43803. bottom: 18/1507
  43804. }
  43805. },
  43806. },
  43807. [
  43808. {
  43809. name: "Normal",
  43810. height: math.unit(6, "feet"),
  43811. default: true
  43812. },
  43813. {
  43814. name: "Macro",
  43815. height: math.unit(75, "feet")
  43816. },
  43817. {
  43818. name: "Macro-er",
  43819. height: math.unit(250, "feet")
  43820. },
  43821. ]
  43822. ))
  43823. characterMakers.push(() => makeCharacter(
  43824. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43825. {
  43826. front: {
  43827. height: math.unit(7, "feet"),
  43828. weight: math.unit(110, "kg"),
  43829. name: "Front",
  43830. image: {
  43831. source: "./media/characters/max-hyper/front.svg",
  43832. extra: 1969/1881,
  43833. bottom: 49/2018
  43834. }
  43835. },
  43836. },
  43837. [
  43838. {
  43839. name: "Normal",
  43840. height: math.unit(7, "feet"),
  43841. default: true
  43842. },
  43843. ]
  43844. ))
  43845. characterMakers.push(() => makeCharacter(
  43846. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43847. {
  43848. front: {
  43849. height: math.unit(5 + 5/12, "feet"),
  43850. weight: math.unit(160, "lb"),
  43851. name: "Front",
  43852. image: {
  43853. source: "./media/characters/spook/front.svg",
  43854. extra: 794/791,
  43855. bottom: 54/848
  43856. }
  43857. },
  43858. back: {
  43859. height: math.unit(5 + 5/12, "feet"),
  43860. weight: math.unit(160, "lb"),
  43861. name: "Back",
  43862. image: {
  43863. source: "./media/characters/spook/back.svg",
  43864. extra: 812/798,
  43865. bottom: 32/844
  43866. }
  43867. },
  43868. },
  43869. [
  43870. {
  43871. name: "Normal",
  43872. height: math.unit(5 + 5/12, "feet"),
  43873. default: true
  43874. },
  43875. ]
  43876. ))
  43877. characterMakers.push(() => makeCharacter(
  43878. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43879. {
  43880. front: {
  43881. height: math.unit(18, "feet"),
  43882. name: "Front",
  43883. image: {
  43884. source: "./media/characters/xeaduulix/front.svg",
  43885. extra: 1380/1166,
  43886. bottom: 110/1490
  43887. }
  43888. },
  43889. back: {
  43890. height: math.unit(18, "feet"),
  43891. name: "Back",
  43892. image: {
  43893. source: "./media/characters/xeaduulix/back.svg",
  43894. extra: 1592/1170,
  43895. bottom: 128/1720
  43896. }
  43897. },
  43898. frontNsfw: {
  43899. height: math.unit(18, "feet"),
  43900. name: "Front (NSFW)",
  43901. image: {
  43902. source: "./media/characters/xeaduulix/front-nsfw.svg",
  43903. extra: 1380/1166,
  43904. bottom: 110/1490
  43905. }
  43906. },
  43907. backNsfw: {
  43908. height: math.unit(18, "feet"),
  43909. name: "Back (NSFW)",
  43910. image: {
  43911. source: "./media/characters/xeaduulix/back-nsfw.svg",
  43912. extra: 1592/1170,
  43913. bottom: 128/1720
  43914. }
  43915. },
  43916. },
  43917. [
  43918. {
  43919. name: "Normal",
  43920. height: math.unit(18, "feet"),
  43921. default: true
  43922. },
  43923. ]
  43924. ))
  43925. characterMakers.push(() => makeCharacter(
  43926. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  43927. {
  43928. spreadWings: {
  43929. height: math.unit(20, "feet"),
  43930. name: "Spread Wings",
  43931. image: {
  43932. source: "./media/characters/fledge/spread-wings.svg",
  43933. extra: 693/635,
  43934. bottom: 26/719
  43935. }
  43936. },
  43937. front: {
  43938. height: math.unit(20, "feet"),
  43939. name: "Front",
  43940. image: {
  43941. source: "./media/characters/fledge/front.svg",
  43942. extra: 684/637,
  43943. bottom: 18/702
  43944. }
  43945. },
  43946. frontAlt: {
  43947. height: math.unit(20, "feet"),
  43948. name: "Front (Alt)",
  43949. image: {
  43950. source: "./media/characters/fledge/front-alt.svg",
  43951. extra: 708/664,
  43952. bottom: 13/721
  43953. }
  43954. },
  43955. back: {
  43956. height: math.unit(20, "feet"),
  43957. name: "Back",
  43958. image: {
  43959. source: "./media/characters/fledge/back.svg",
  43960. extra: 718/634,
  43961. bottom: 22/740
  43962. }
  43963. },
  43964. head: {
  43965. height: math.unit(5.55, "feet"),
  43966. name: "Head",
  43967. image: {
  43968. source: "./media/characters/fledge/head.svg"
  43969. }
  43970. },
  43971. headAlt: {
  43972. height: math.unit(5.1, "feet"),
  43973. name: "Head (Alt)",
  43974. image: {
  43975. source: "./media/characters/fledge/head-alt.svg"
  43976. }
  43977. },
  43978. },
  43979. [
  43980. {
  43981. name: "Small",
  43982. height: math.unit(6 + 2/12, "feet")
  43983. },
  43984. {
  43985. name: "Big",
  43986. height: math.unit(20, "feet"),
  43987. default: true
  43988. },
  43989. {
  43990. name: "Giant",
  43991. height: math.unit(100, "feet")
  43992. },
  43993. {
  43994. name: "Macro",
  43995. height: math.unit(200, "feet")
  43996. },
  43997. ]
  43998. ))
  43999. characterMakers.push(() => makeCharacter(
  44000. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44001. {
  44002. front: {
  44003. height: math.unit(1, "meter"),
  44004. name: "Front",
  44005. image: {
  44006. source: "./media/characters/atlas-morenai/front.svg",
  44007. extra: 1275/1043,
  44008. bottom: 19/1294
  44009. }
  44010. },
  44011. back: {
  44012. height: math.unit(1, "meter"),
  44013. name: "Back",
  44014. image: {
  44015. source: "./media/characters/atlas-morenai/back.svg",
  44016. extra: 1141/1001,
  44017. bottom: 25/1166
  44018. }
  44019. },
  44020. },
  44021. [
  44022. {
  44023. name: "Normal",
  44024. height: math.unit(1, "meter"),
  44025. default: true
  44026. },
  44027. {
  44028. name: "Magic-Infused",
  44029. height: math.unit(5, "meters")
  44030. },
  44031. ]
  44032. ))
  44033. characterMakers.push(() => makeCharacter(
  44034. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44035. {
  44036. front: {
  44037. height: math.unit(5, "meters"),
  44038. name: "Front",
  44039. image: {
  44040. source: "./media/characters/cintia/front.svg",
  44041. extra: 1312/1228,
  44042. bottom: 38/1350
  44043. }
  44044. },
  44045. back: {
  44046. height: math.unit(5, "meters"),
  44047. name: "Back",
  44048. image: {
  44049. source: "./media/characters/cintia/back.svg",
  44050. extra: 1260/1166,
  44051. bottom: 98/1358
  44052. }
  44053. },
  44054. frontDick: {
  44055. height: math.unit(5, "meters"),
  44056. name: "Front (Dick)",
  44057. image: {
  44058. source: "./media/characters/cintia/front-dick.svg",
  44059. extra: 1312/1228,
  44060. bottom: 38/1350
  44061. }
  44062. },
  44063. backDick: {
  44064. height: math.unit(5, "meters"),
  44065. name: "Back (Dick)",
  44066. image: {
  44067. source: "./media/characters/cintia/back-dick.svg",
  44068. extra: 1260/1166,
  44069. bottom: 98/1358
  44070. }
  44071. },
  44072. bust: {
  44073. height: math.unit(1.97, "meters"),
  44074. name: "Bust",
  44075. image: {
  44076. source: "./media/characters/cintia/bust.svg",
  44077. extra: 617/565,
  44078. bottom: 0/617
  44079. }
  44080. },
  44081. },
  44082. [
  44083. {
  44084. name: "Normal",
  44085. height: math.unit(5, "meters"),
  44086. default: true
  44087. },
  44088. ]
  44089. ))
  44090. characterMakers.push(() => makeCharacter(
  44091. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44092. {
  44093. side: {
  44094. height: math.unit(100, "feet"),
  44095. name: "Side",
  44096. image: {
  44097. source: "./media/characters/denora/side.svg",
  44098. extra: 875/803,
  44099. bottom: 9/884
  44100. }
  44101. },
  44102. },
  44103. [
  44104. {
  44105. name: "Standard",
  44106. height: math.unit(100, "feet"),
  44107. default: true
  44108. },
  44109. {
  44110. name: "Grand",
  44111. height: math.unit(1000, "feet")
  44112. },
  44113. {
  44114. name: "Conquering",
  44115. height: math.unit(10000, "feet")
  44116. },
  44117. ]
  44118. ))
  44119. characterMakers.push(() => makeCharacter(
  44120. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44121. {
  44122. dressed: {
  44123. height: math.unit(8 + 5/12, "feet"),
  44124. weight: math.unit(700, "lb"),
  44125. name: "Dressed",
  44126. image: {
  44127. source: "./media/characters/kiva/dressed.svg",
  44128. extra: 1102/1055,
  44129. bottom: 60/1162
  44130. }
  44131. },
  44132. nude: {
  44133. height: math.unit(8 + 5/12, "feet"),
  44134. weight: math.unit(700, "lb"),
  44135. name: "Nude",
  44136. image: {
  44137. source: "./media/characters/kiva/nude.svg",
  44138. extra: 1102/1055,
  44139. bottom: 60/1162
  44140. }
  44141. },
  44142. },
  44143. [
  44144. {
  44145. name: "Base Height",
  44146. height: math.unit(8 + 5/12, "feet"),
  44147. default: true
  44148. },
  44149. {
  44150. name: "Macro",
  44151. height: math.unit(100, "feet")
  44152. },
  44153. {
  44154. name: "Max",
  44155. height: math.unit(3280, "feet")
  44156. },
  44157. ]
  44158. ))
  44159. characterMakers.push(() => makeCharacter(
  44160. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44161. {
  44162. front: {
  44163. height: math.unit(6 + 8/12, "feet"),
  44164. weight: math.unit(250, "lb"),
  44165. name: "Front",
  44166. image: {
  44167. source: "./media/characters/ztragon/front.svg",
  44168. extra: 1825/1684,
  44169. bottom: 98/1923
  44170. }
  44171. },
  44172. },
  44173. [
  44174. {
  44175. name: "Normal",
  44176. height: math.unit(6 + 8/12, "feet"),
  44177. default: true
  44178. },
  44179. {
  44180. name: "Macro",
  44181. height: math.unit(80, "feet")
  44182. },
  44183. ]
  44184. ))
  44185. characterMakers.push(() => makeCharacter(
  44186. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44187. {
  44188. front: {
  44189. height: math.unit(10.4, "feet"),
  44190. weight: math.unit(2, "tons"),
  44191. name: "Front",
  44192. image: {
  44193. source: "./media/characters/yesenia/front.svg",
  44194. extra: 1479/1474,
  44195. bottom: 233/1712
  44196. }
  44197. },
  44198. },
  44199. [
  44200. {
  44201. name: "Normal",
  44202. height: math.unit(10.4, "feet"),
  44203. default: true
  44204. },
  44205. ]
  44206. ))
  44207. characterMakers.push(() => makeCharacter(
  44208. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44209. {
  44210. normal: {
  44211. height: math.unit(6 + 1/12, "feet"),
  44212. weight: math.unit(180, "lb"),
  44213. name: "Normal",
  44214. image: {
  44215. source: "./media/characters/leanne-lycheborne/normal.svg",
  44216. extra: 1748/1660,
  44217. bottom: 98/1846
  44218. }
  44219. },
  44220. were: {
  44221. height: math.unit(12, "feet"),
  44222. weight: math.unit(1600, "lb"),
  44223. name: "Were",
  44224. image: {
  44225. source: "./media/characters/leanne-lycheborne/were.svg",
  44226. extra: 1485/1432,
  44227. bottom: 66/1551
  44228. }
  44229. },
  44230. },
  44231. [
  44232. {
  44233. name: "Normal",
  44234. height: math.unit(6 + 1/12, "feet"),
  44235. default: true
  44236. },
  44237. ]
  44238. ))
  44239. characterMakers.push(() => makeCharacter(
  44240. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44241. {
  44242. side: {
  44243. height: math.unit(13, "feet"),
  44244. name: "Side",
  44245. image: {
  44246. source: "./media/characters/kira-tyler/side.svg",
  44247. extra: 693/393,
  44248. bottom: 58/751
  44249. }
  44250. },
  44251. },
  44252. [
  44253. {
  44254. name: "Normal",
  44255. height: math.unit(13, "feet"),
  44256. default: true
  44257. },
  44258. ]
  44259. ))
  44260. characterMakers.push(() => makeCharacter(
  44261. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44262. {
  44263. front: {
  44264. height: math.unit(10.3, "feet"),
  44265. weight: math.unit(150, "lb"),
  44266. name: "Front",
  44267. image: {
  44268. source: "./media/characters/blaze/front.svg",
  44269. extra: 1378/1286,
  44270. bottom: 172/1550
  44271. }
  44272. },
  44273. },
  44274. [
  44275. {
  44276. name: "Normal",
  44277. height: math.unit(10.3, "feet"),
  44278. default: true
  44279. },
  44280. ]
  44281. ))
  44282. characterMakers.push(() => makeCharacter(
  44283. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44284. {
  44285. side: {
  44286. height: math.unit(2, "meters"),
  44287. weight: math.unit(400, "kg"),
  44288. name: "Side",
  44289. image: {
  44290. source: "./media/characters/anu/side.svg",
  44291. extra: 506/394,
  44292. bottom: 18/524
  44293. }
  44294. },
  44295. },
  44296. [
  44297. {
  44298. name: "Humanoid",
  44299. height: math.unit(2, "meters")
  44300. },
  44301. {
  44302. name: "Normal",
  44303. height: math.unit(5, "meters"),
  44304. default: true
  44305. },
  44306. ]
  44307. ))
  44308. characterMakers.push(() => makeCharacter(
  44309. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44310. {
  44311. front: {
  44312. height: math.unit(5 + 5/12, "feet"),
  44313. weight: math.unit(170, "lb"),
  44314. name: "Front",
  44315. image: {
  44316. source: "./media/characters/synx-the-lynx/front.svg",
  44317. extra: 1893/1745,
  44318. bottom: 17/1910
  44319. }
  44320. },
  44321. side: {
  44322. height: math.unit(5 + 5/12, "feet"),
  44323. weight: math.unit(170, "lb"),
  44324. name: "Side",
  44325. image: {
  44326. source: "./media/characters/synx-the-lynx/side.svg",
  44327. extra: 1884/1740,
  44328. bottom: 39/1923
  44329. }
  44330. },
  44331. back: {
  44332. height: math.unit(5 + 5/12, "feet"),
  44333. weight: math.unit(170, "lb"),
  44334. name: "Back",
  44335. image: {
  44336. source: "./media/characters/synx-the-lynx/back.svg",
  44337. extra: 1903/1755,
  44338. bottom: 14/1917
  44339. }
  44340. },
  44341. },
  44342. [
  44343. {
  44344. name: "Normal",
  44345. height: math.unit(5 + 5/12, "feet"),
  44346. default: true
  44347. },
  44348. ]
  44349. ))
  44350. characterMakers.push(() => makeCharacter(
  44351. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44352. {
  44353. back: {
  44354. height: math.unit(15, "feet"),
  44355. name: "Back",
  44356. image: {
  44357. source: "./media/characters/nadezda-fex/back.svg",
  44358. extra: 1695/1481,
  44359. bottom: 25/1720
  44360. }
  44361. },
  44362. },
  44363. [
  44364. {
  44365. name: "Normal",
  44366. height: math.unit(15, "feet"),
  44367. default: true
  44368. },
  44369. {
  44370. name: "Macro",
  44371. height: math.unit(2.5, "miles")
  44372. },
  44373. {
  44374. name: "Goddess",
  44375. height: math.unit(2, "multiverses")
  44376. },
  44377. ]
  44378. ))
  44379. characterMakers.push(() => makeCharacter(
  44380. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44381. {
  44382. front: {
  44383. height: math.unit(216, "cm"),
  44384. name: "Front",
  44385. image: {
  44386. source: "./media/characters/lev/front.svg",
  44387. extra: 1728/1670,
  44388. bottom: 82/1810
  44389. }
  44390. },
  44391. back: {
  44392. height: math.unit(216, "cm"),
  44393. name: "Back",
  44394. image: {
  44395. source: "./media/characters/lev/back.svg",
  44396. extra: 1738/1675,
  44397. bottom: 24/1762
  44398. }
  44399. },
  44400. dressed: {
  44401. height: math.unit(216, "cm"),
  44402. name: "Dressed",
  44403. image: {
  44404. source: "./media/characters/lev/dressed.svg",
  44405. extra: 1397/1351,
  44406. bottom: 73/1470
  44407. }
  44408. },
  44409. head: {
  44410. height: math.unit(0.51, "meter"),
  44411. name: "Head",
  44412. image: {
  44413. source: "./media/characters/lev/head.svg"
  44414. }
  44415. },
  44416. },
  44417. [
  44418. {
  44419. name: "Normal",
  44420. height: math.unit(216, "cm"),
  44421. default: true
  44422. },
  44423. {
  44424. name: "Relatively Macro",
  44425. height: math.unit(80, "meters")
  44426. },
  44427. {
  44428. name: "Megamacro",
  44429. height: math.unit(21600, "meters")
  44430. },
  44431. {
  44432. name: "Megamacro+",
  44433. height: math.unit(64800, "meters")
  44434. },
  44435. ]
  44436. ))
  44437. characterMakers.push(() => makeCharacter(
  44438. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44439. {
  44440. front: {
  44441. height: math.unit(2, "meters"),
  44442. weight: math.unit(80, "kg"),
  44443. name: "Front",
  44444. image: {
  44445. source: "./media/characters/moka/front.svg",
  44446. extra: 1337/1255,
  44447. bottom: 58/1395
  44448. }
  44449. },
  44450. },
  44451. [
  44452. {
  44453. name: "Micro",
  44454. height: math.unit(15, "cm")
  44455. },
  44456. {
  44457. name: "Normal",
  44458. height: math.unit(2, "meters"),
  44459. default: true
  44460. },
  44461. {
  44462. name: "Macro",
  44463. height: math.unit(20, "meters"),
  44464. },
  44465. ]
  44466. ))
  44467. characterMakers.push(() => makeCharacter(
  44468. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44469. {
  44470. front: {
  44471. height: math.unit(9, "feet"),
  44472. weight: math.unit(240, "lb"),
  44473. name: "Front",
  44474. image: {
  44475. source: "./media/characters/kuzco/front.svg",
  44476. extra: 1593/1487,
  44477. bottom: 32/1625
  44478. }
  44479. },
  44480. side: {
  44481. height: math.unit(9, "feet"),
  44482. weight: math.unit(240, "lb"),
  44483. name: "Side",
  44484. image: {
  44485. source: "./media/characters/kuzco/side.svg",
  44486. extra: 1575/1485,
  44487. bottom: 30/1605
  44488. }
  44489. },
  44490. back: {
  44491. height: math.unit(9, "feet"),
  44492. weight: math.unit(240, "lb"),
  44493. name: "Back",
  44494. image: {
  44495. source: "./media/characters/kuzco/back.svg",
  44496. extra: 1603/1514,
  44497. bottom: 14/1617
  44498. }
  44499. },
  44500. },
  44501. [
  44502. {
  44503. name: "Normal",
  44504. height: math.unit(9, "feet"),
  44505. default: true
  44506. },
  44507. ]
  44508. ))
  44509. characterMakers.push(() => makeCharacter(
  44510. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44511. {
  44512. side: {
  44513. height: math.unit(2, "meters"),
  44514. weight: math.unit(300, "kg"),
  44515. name: "Side",
  44516. image: {
  44517. source: "./media/characters/ceruleus/side.svg",
  44518. extra: 1068/974,
  44519. bottom: 126/1194
  44520. }
  44521. },
  44522. },
  44523. [
  44524. {
  44525. name: "Normal",
  44526. height: math.unit(16, "meters"),
  44527. default: true
  44528. },
  44529. ]
  44530. ))
  44531. characterMakers.push(() => makeCharacter(
  44532. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44533. {
  44534. front: {
  44535. height: math.unit(9, "feet"),
  44536. weight: math.unit(500, "kg"),
  44537. name: "Front",
  44538. image: {
  44539. source: "./media/characters/acouya/front.svg",
  44540. extra: 1660/1473,
  44541. bottom: 28/1688
  44542. }
  44543. },
  44544. },
  44545. [
  44546. {
  44547. name: "Normal",
  44548. height: math.unit(9, "feet"),
  44549. default: true
  44550. },
  44551. ]
  44552. ))
  44553. characterMakers.push(() => makeCharacter(
  44554. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44555. {
  44556. front: {
  44557. height: math.unit(5 + 6/12, "feet"),
  44558. weight: math.unit(195, "lb"),
  44559. name: "Front",
  44560. image: {
  44561. source: "./media/characters/vant/front.svg",
  44562. extra: 1396/1320,
  44563. bottom: 20/1416
  44564. }
  44565. },
  44566. back: {
  44567. height: math.unit(5 + 6/12, "feet"),
  44568. weight: math.unit(195, "lb"),
  44569. name: "Back",
  44570. image: {
  44571. source: "./media/characters/vant/back.svg",
  44572. extra: 1396/1320,
  44573. bottom: 20/1416
  44574. }
  44575. },
  44576. maw: {
  44577. height: math.unit(0.75, "feet"),
  44578. name: "Maw",
  44579. image: {
  44580. source: "./media/characters/vant/maw.svg"
  44581. }
  44582. },
  44583. paw: {
  44584. height: math.unit(1.07, "feet"),
  44585. name: "Paw",
  44586. image: {
  44587. source: "./media/characters/vant/paw.svg"
  44588. }
  44589. },
  44590. },
  44591. [
  44592. {
  44593. name: "Micro",
  44594. height: math.unit(0.25, "inches")
  44595. },
  44596. {
  44597. name: "Normal",
  44598. height: math.unit(5 + 6/12, "feet"),
  44599. default: true
  44600. },
  44601. {
  44602. name: "Macro",
  44603. height: math.unit(75, "feet")
  44604. },
  44605. ]
  44606. ))
  44607. characterMakers.push(() => makeCharacter(
  44608. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  44609. {
  44610. front: {
  44611. height: math.unit(30, "meters"),
  44612. weight: math.unit(363, "tons"),
  44613. name: "Front",
  44614. image: {
  44615. source: "./media/characters/ahra/front.svg",
  44616. extra: 1914/1814,
  44617. bottom: 46/1960
  44618. }
  44619. },
  44620. },
  44621. [
  44622. {
  44623. name: "Macro",
  44624. height: math.unit(30, "meters"),
  44625. default: true
  44626. },
  44627. ]
  44628. ))
  44629. characterMakers.push(() => makeCharacter(
  44630. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  44631. {
  44632. undressed: {
  44633. height: math.unit(2, "m"),
  44634. weight: math.unit(250, "kg"),
  44635. name: "Undressed",
  44636. image: {
  44637. source: "./media/characters/coriander/undressed.svg",
  44638. extra: 1757/1606,
  44639. bottom: 107/1864
  44640. }
  44641. },
  44642. dressed: {
  44643. height: math.unit(2, "m"),
  44644. weight: math.unit(250, "kg"),
  44645. name: "Dressed",
  44646. image: {
  44647. source: "./media/characters/coriander/dressed.svg",
  44648. extra: 1757/1606,
  44649. bottom: 107/1864
  44650. }
  44651. },
  44652. },
  44653. [
  44654. {
  44655. name: "Normal",
  44656. height: math.unit(4, "meters"),
  44657. default: true
  44658. },
  44659. {
  44660. name: "XL",
  44661. height: math.unit(6, "meters")
  44662. },
  44663. {
  44664. name: "XXL",
  44665. height: math.unit(8, "meters")
  44666. },
  44667. ]
  44668. ))
  44669. characterMakers.push(() => makeCharacter(
  44670. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  44671. {
  44672. front: {
  44673. height: math.unit(6, "feet"),
  44674. name: "Front",
  44675. image: {
  44676. source: "./media/characters/syrinx/front.svg",
  44677. extra: 1557/1259,
  44678. bottom: 171/1728
  44679. }
  44680. },
  44681. },
  44682. [
  44683. {
  44684. name: "Normal",
  44685. height: math.unit(6 + 3/12, "feet"),
  44686. default: true
  44687. },
  44688. ]
  44689. ))
  44690. characterMakers.push(() => makeCharacter(
  44691. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  44692. {
  44693. front: {
  44694. height: math.unit(11 + 6/12, "feet"),
  44695. weight: math.unit(1.5, "tons"),
  44696. name: "Front",
  44697. image: {
  44698. source: "./media/characters/bor/front.svg",
  44699. extra: 1189/1109,
  44700. bottom: 170/1359
  44701. }
  44702. },
  44703. },
  44704. [
  44705. {
  44706. name: "Normal",
  44707. height: math.unit(11 + 6/12, "feet"),
  44708. default: true
  44709. },
  44710. {
  44711. name: "Macro",
  44712. height: math.unit(32 + 9/12, "feet")
  44713. },
  44714. ]
  44715. ))
  44716. characterMakers.push(() => makeCharacter(
  44717. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  44718. {
  44719. anthro: {
  44720. height: math.unit(9, "feet"),
  44721. weight: math.unit(2076, "lb"),
  44722. name: "Anthro",
  44723. image: {
  44724. source: "./media/characters/abacus/anthro.svg",
  44725. extra: 1540/1494,
  44726. bottom: 233/1773
  44727. }
  44728. },
  44729. pigeon: {
  44730. height: math.unit(1, "feet"),
  44731. name: "Pigeon",
  44732. image: {
  44733. source: "./media/characters/abacus/pigeon.svg",
  44734. extra: 528/525,
  44735. bottom: 46/574
  44736. }
  44737. },
  44738. },
  44739. [
  44740. {
  44741. name: "Normal",
  44742. height: math.unit(9, "feet"),
  44743. default: true
  44744. },
  44745. ]
  44746. ))
  44747. characterMakers.push(() => makeCharacter(
  44748. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  44749. {
  44750. side: {
  44751. height: math.unit(6, "feet"),
  44752. name: "Side",
  44753. image: {
  44754. source: "./media/characters/delkhan/side.svg",
  44755. extra: 1884/1786,
  44756. bottom: 308/2192
  44757. }
  44758. },
  44759. head: {
  44760. height: math.unit(3.38, "feet"),
  44761. name: "Head",
  44762. image: {
  44763. source: "./media/characters/delkhan/head.svg"
  44764. }
  44765. },
  44766. },
  44767. [
  44768. {
  44769. name: "Normal",
  44770. height: math.unit(72, "feet"),
  44771. default: true
  44772. },
  44773. {
  44774. name: "Giant",
  44775. height: math.unit(172, "feet")
  44776. },
  44777. ]
  44778. ))
  44779. characterMakers.push(() => makeCharacter(
  44780. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  44781. {
  44782. standing: {
  44783. height: math.unit(6, "feet"),
  44784. name: "Standing",
  44785. image: {
  44786. source: "./media/characters/euchidat/standing.svg",
  44787. extra: 1612/1553,
  44788. bottom: 116/1728
  44789. }
  44790. },
  44791. leaning: {
  44792. height: math.unit(6, "feet"),
  44793. name: "Leaning",
  44794. image: {
  44795. source: "./media/characters/euchidat/leaning.svg",
  44796. extra: 1719/1674,
  44797. bottom: 27/1746
  44798. }
  44799. },
  44800. },
  44801. [
  44802. {
  44803. name: "Normal",
  44804. height: math.unit(175, "feet"),
  44805. default: true
  44806. },
  44807. {
  44808. name: "Megamacro",
  44809. height: math.unit(190, "miles")
  44810. },
  44811. {
  44812. name: "Gigamacro",
  44813. height: math.unit(190000, "miles")
  44814. },
  44815. ]
  44816. ))
  44817. characterMakers.push(() => makeCharacter(
  44818. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  44819. {
  44820. front: {
  44821. height: math.unit(6, "feet"),
  44822. weight: math.unit(150, "lb"),
  44823. name: "Front",
  44824. image: {
  44825. source: "./media/characters/rebecca-stack/front.svg",
  44826. extra: 1256/1201,
  44827. bottom: 18/1274
  44828. }
  44829. },
  44830. },
  44831. [
  44832. {
  44833. name: "Normal",
  44834. height: math.unit(5 + 8/12, "feet"),
  44835. default: true
  44836. },
  44837. {
  44838. name: "Demolitionist",
  44839. height: math.unit(200, "feet")
  44840. },
  44841. {
  44842. name: "Out of Control",
  44843. height: math.unit(2, "miles")
  44844. },
  44845. {
  44846. name: "Giga",
  44847. height: math.unit(7200, "miles")
  44848. },
  44849. ]
  44850. ))
  44851. characterMakers.push(() => makeCharacter(
  44852. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  44853. {
  44854. front: {
  44855. height: math.unit(6, "feet"),
  44856. weight: math.unit(150, "lb"),
  44857. name: "Front",
  44858. image: {
  44859. source: "./media/characters/jenny-cartwright/front.svg",
  44860. extra: 1384/1376,
  44861. bottom: 58/1442
  44862. }
  44863. },
  44864. },
  44865. [
  44866. {
  44867. name: "Normal",
  44868. height: math.unit(6 + 7/12, "feet"),
  44869. default: true
  44870. },
  44871. {
  44872. name: "Librarian",
  44873. height: math.unit(55, "feet")
  44874. },
  44875. {
  44876. name: "Sightseer",
  44877. height: math.unit(50, "miles")
  44878. },
  44879. {
  44880. name: "Giga",
  44881. height: math.unit(30000, "miles")
  44882. },
  44883. ]
  44884. ))
  44885. characterMakers.push(() => makeCharacter(
  44886. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  44887. {
  44888. nude: {
  44889. height: math.unit(8, "feet"),
  44890. weight: math.unit(225, "lb"),
  44891. name: "Nude",
  44892. image: {
  44893. source: "./media/characters/marvy/nude.svg",
  44894. extra: 1900/1683,
  44895. bottom: 89/1989
  44896. }
  44897. },
  44898. dressed: {
  44899. height: math.unit(8, "feet"),
  44900. weight: math.unit(225, "lb"),
  44901. name: "Dressed",
  44902. image: {
  44903. source: "./media/characters/marvy/dressed.svg",
  44904. extra: 1900/1683,
  44905. bottom: 89/1989
  44906. }
  44907. },
  44908. head: {
  44909. height: math.unit(2.85, "feet"),
  44910. name: "Head",
  44911. image: {
  44912. source: "./media/characters/marvy/head.svg"
  44913. }
  44914. },
  44915. },
  44916. [
  44917. {
  44918. name: "Normal",
  44919. height: math.unit(8, "feet"),
  44920. default: true
  44921. },
  44922. ]
  44923. ))
  44924. characterMakers.push(() => makeCharacter(
  44925. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  44926. {
  44927. front: {
  44928. height: math.unit(8, "feet"),
  44929. weight: math.unit(250, "lb"),
  44930. name: "Front",
  44931. image: {
  44932. source: "./media/characters/leah/front.svg",
  44933. extra: 1257/1149,
  44934. bottom: 109/1366
  44935. }
  44936. },
  44937. },
  44938. [
  44939. {
  44940. name: "Normal",
  44941. height: math.unit(8, "feet"),
  44942. default: true
  44943. },
  44944. {
  44945. name: "Minimacro",
  44946. height: math.unit(40, "feet")
  44947. },
  44948. {
  44949. name: "Macro",
  44950. height: math.unit(124, "feet")
  44951. },
  44952. {
  44953. name: "Megamacro",
  44954. height: math.unit(850, "feet")
  44955. },
  44956. ]
  44957. ))
  44958. characterMakers.push(() => makeCharacter(
  44959. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  44960. {
  44961. side: {
  44962. height: math.unit(13 + 6/12, "feet"),
  44963. weight: math.unit(3200, "lb"),
  44964. name: "Side",
  44965. image: {
  44966. source: "./media/characters/alvir/side.svg",
  44967. extra: 896/589,
  44968. bottom: 26/922
  44969. }
  44970. },
  44971. },
  44972. [
  44973. {
  44974. name: "Normal",
  44975. height: math.unit(13 + 6/12, "feet"),
  44976. default: true
  44977. },
  44978. ]
  44979. ))
  44980. characterMakers.push(() => makeCharacter(
  44981. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  44982. {
  44983. front: {
  44984. height: math.unit(5 + 4/12, "feet"),
  44985. weight: math.unit(236, "lb"),
  44986. name: "Front",
  44987. image: {
  44988. source: "./media/characters/zaina-khalil/front.svg",
  44989. extra: 1533/1485,
  44990. bottom: 94/1627
  44991. }
  44992. },
  44993. side: {
  44994. height: math.unit(5 + 4/12, "feet"),
  44995. weight: math.unit(236, "lb"),
  44996. name: "Side",
  44997. image: {
  44998. source: "./media/characters/zaina-khalil/side.svg",
  44999. extra: 1537/1498,
  45000. bottom: 66/1603
  45001. }
  45002. },
  45003. back: {
  45004. height: math.unit(5 + 4/12, "feet"),
  45005. weight: math.unit(236, "lb"),
  45006. name: "Back",
  45007. image: {
  45008. source: "./media/characters/zaina-khalil/back.svg",
  45009. extra: 1546/1494,
  45010. bottom: 89/1635
  45011. }
  45012. },
  45013. },
  45014. [
  45015. {
  45016. name: "Normal",
  45017. height: math.unit(5 + 4/12, "feet"),
  45018. default: true
  45019. },
  45020. ]
  45021. ))
  45022. characterMakers.push(() => makeCharacter(
  45023. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45024. {
  45025. side: {
  45026. height: math.unit(12, "feet"),
  45027. weight: math.unit(4000, "lb"),
  45028. name: "Side",
  45029. image: {
  45030. source: "./media/characters/terry/side.svg",
  45031. extra: 1518/1439,
  45032. bottom: 149/1667
  45033. }
  45034. },
  45035. },
  45036. [
  45037. {
  45038. name: "Normal",
  45039. height: math.unit(12, "feet"),
  45040. default: true
  45041. },
  45042. ]
  45043. ))
  45044. characterMakers.push(() => makeCharacter(
  45045. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45046. {
  45047. front: {
  45048. height: math.unit(12, "feet"),
  45049. weight: math.unit(1500, "lb"),
  45050. name: "Front",
  45051. image: {
  45052. source: "./media/characters/kahea/front.svg",
  45053. extra: 1722/1617,
  45054. bottom: 179/1901
  45055. }
  45056. },
  45057. },
  45058. [
  45059. {
  45060. name: "Normal",
  45061. height: math.unit(12, "feet"),
  45062. default: true
  45063. },
  45064. ]
  45065. ))
  45066. characterMakers.push(() => makeCharacter(
  45067. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45068. {
  45069. demonFront: {
  45070. height: math.unit(36, "feet"),
  45071. name: "Front",
  45072. image: {
  45073. source: "./media/characters/alex-xuria/demon-front.svg",
  45074. extra: 1705/1673,
  45075. bottom: 198/1903
  45076. },
  45077. form: "demon",
  45078. default: true
  45079. },
  45080. demonBack: {
  45081. height: math.unit(36, "feet"),
  45082. name: "Back",
  45083. image: {
  45084. source: "./media/characters/alex-xuria/demon-back.svg",
  45085. extra: 1725/1693,
  45086. bottom: 70/1795
  45087. },
  45088. form: "demon"
  45089. },
  45090. demonHead: {
  45091. height: math.unit(2.14, "meters"),
  45092. name: "Head",
  45093. image: {
  45094. source: "./media/characters/alex-xuria/demon-head.svg"
  45095. },
  45096. form: "demon"
  45097. },
  45098. demonHand: {
  45099. height: math.unit(1.61, "meters"),
  45100. name: "Hand",
  45101. image: {
  45102. source: "./media/characters/alex-xuria/demon-hand.svg"
  45103. },
  45104. form: "demon"
  45105. },
  45106. demonPaw: {
  45107. height: math.unit(1.35, "meters"),
  45108. name: "Paw",
  45109. image: {
  45110. source: "./media/characters/alex-xuria/demon-paw.svg"
  45111. },
  45112. form: "demon"
  45113. },
  45114. demonFoot: {
  45115. height: math.unit(2.2, "meters"),
  45116. name: "Foot",
  45117. image: {
  45118. source: "./media/characters/alex-xuria/demon-foot.svg"
  45119. },
  45120. form: "demon"
  45121. },
  45122. demonCock: {
  45123. height: math.unit(1.74, "meters"),
  45124. name: "Cock",
  45125. image: {
  45126. source: "./media/characters/alex-xuria/demon-cock.svg"
  45127. },
  45128. form: "demon"
  45129. },
  45130. demonTailClosed: {
  45131. height: math.unit(1.47, "meters"),
  45132. name: "Tail (Closed)",
  45133. image: {
  45134. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45135. },
  45136. form: "demon"
  45137. },
  45138. demonTailOpen: {
  45139. height: math.unit(2.85, "meters"),
  45140. name: "Tail (Open)",
  45141. image: {
  45142. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45143. },
  45144. form: "demon"
  45145. },
  45146. incubusFront: {
  45147. height: math.unit(12, "feet"),
  45148. name: "Front",
  45149. image: {
  45150. source: "./media/characters/alex-xuria/incubus-front.svg",
  45151. extra: 1754/1677,
  45152. bottom: 125/1879
  45153. },
  45154. form: "incubus",
  45155. default: true
  45156. },
  45157. incubusBack: {
  45158. height: math.unit(12, "feet"),
  45159. name: "Back",
  45160. image: {
  45161. source: "./media/characters/alex-xuria/incubus-back.svg",
  45162. extra: 1702/1647,
  45163. bottom: 30/1732
  45164. },
  45165. form: "incubus"
  45166. },
  45167. incubusHead: {
  45168. height: math.unit(3.45, "feet"),
  45169. name: "Head",
  45170. image: {
  45171. source: "./media/characters/alex-xuria/incubus-head.svg"
  45172. },
  45173. form: "incubus"
  45174. },
  45175. rabbitFront: {
  45176. height: math.unit(6, "feet"),
  45177. name: "Front",
  45178. image: {
  45179. source: "./media/characters/alex-xuria/rabbit-front.svg",
  45180. extra: 1369/1349,
  45181. bottom: 45/1414
  45182. },
  45183. form: "rabbit",
  45184. default: true
  45185. },
  45186. rabbitSide: {
  45187. height: math.unit(6, "feet"),
  45188. name: "Side",
  45189. image: {
  45190. source: "./media/characters/alex-xuria/rabbit-side.svg",
  45191. extra: 1370/1356,
  45192. bottom: 37/1407
  45193. },
  45194. form: "rabbit"
  45195. },
  45196. rabbitBack: {
  45197. height: math.unit(6, "feet"),
  45198. name: "Back",
  45199. image: {
  45200. source: "./media/characters/alex-xuria/rabbit-back.svg",
  45201. extra: 1375/1358,
  45202. bottom: 43/1418
  45203. },
  45204. form: "rabbit"
  45205. },
  45206. },
  45207. [
  45208. {
  45209. name: "Normal",
  45210. height: math.unit(6, "feet"),
  45211. default: true,
  45212. form: "rabbit"
  45213. },
  45214. {
  45215. name: "Incubus",
  45216. height: math.unit(12, "feet"),
  45217. default: true,
  45218. form: "incubus"
  45219. },
  45220. {
  45221. name: "Demon",
  45222. height: math.unit(36, "feet"),
  45223. default: true,
  45224. form: "demon"
  45225. }
  45226. ],
  45227. {
  45228. "demon": {
  45229. name: "Demon",
  45230. default: true
  45231. },
  45232. "incubus": {
  45233. name: "Incubus",
  45234. },
  45235. "rabbit": {
  45236. name: "Rabbit"
  45237. }
  45238. }
  45239. ))
  45240. characterMakers.push(() => makeCharacter(
  45241. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  45242. {
  45243. front: {
  45244. height: math.unit(7 + 5/12, "feet"),
  45245. weight: math.unit(510, "lb"),
  45246. name: "Front",
  45247. image: {
  45248. source: "./media/characters/syrup/front.svg",
  45249. extra: 932/916,
  45250. bottom: 26/958
  45251. }
  45252. },
  45253. },
  45254. [
  45255. {
  45256. name: "Normal",
  45257. height: math.unit(7 + 5/12, "feet"),
  45258. default: true
  45259. },
  45260. {
  45261. name: "Big",
  45262. height: math.unit(50, "feet")
  45263. },
  45264. {
  45265. name: "Macro",
  45266. height: math.unit(300, "feet")
  45267. },
  45268. {
  45269. name: "Megamacro",
  45270. height: math.unit(1, "mile")
  45271. },
  45272. ]
  45273. ))
  45274. characterMakers.push(() => makeCharacter(
  45275. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  45276. {
  45277. front: {
  45278. height: math.unit(6 + 9/12, "feet"),
  45279. name: "Front",
  45280. image: {
  45281. source: "./media/characters/zeimne/front.svg",
  45282. extra: 1969/1806,
  45283. bottom: 53/2022
  45284. }
  45285. },
  45286. },
  45287. [
  45288. {
  45289. name: "Normal",
  45290. height: math.unit(6 + 9/12, "feet"),
  45291. default: true
  45292. },
  45293. {
  45294. name: "Giant",
  45295. height: math.unit(550, "feet")
  45296. },
  45297. {
  45298. name: "Mega",
  45299. height: math.unit(3, "miles")
  45300. },
  45301. {
  45302. name: "Giga",
  45303. height: math.unit(250, "miles")
  45304. },
  45305. {
  45306. name: "Tera",
  45307. height: math.unit(1, "AU")
  45308. },
  45309. ]
  45310. ))
  45311. characterMakers.push(() => makeCharacter(
  45312. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  45313. {
  45314. front: {
  45315. height: math.unit(5 + 2/12, "feet"),
  45316. name: "Front",
  45317. image: {
  45318. source: "./media/characters/grar/front.svg",
  45319. extra: 1331/1119,
  45320. bottom: 60/1391
  45321. }
  45322. },
  45323. back: {
  45324. height: math.unit(5 + 2/12, "feet"),
  45325. name: "Back",
  45326. image: {
  45327. source: "./media/characters/grar/back.svg",
  45328. extra: 1385/1169,
  45329. bottom: 23/1408
  45330. }
  45331. },
  45332. },
  45333. [
  45334. {
  45335. name: "Normal",
  45336. height: math.unit(5 + 2/12, "feet"),
  45337. default: true
  45338. },
  45339. ]
  45340. ))
  45341. characterMakers.push(() => makeCharacter(
  45342. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  45343. {
  45344. front: {
  45345. height: math.unit(13 + 7/12, "feet"),
  45346. weight: math.unit(2200, "lb"),
  45347. name: "Front",
  45348. image: {
  45349. source: "./media/characters/endraya/front.svg",
  45350. extra: 1289/1215,
  45351. bottom: 50/1339
  45352. }
  45353. },
  45354. nude: {
  45355. height: math.unit(13 + 7/12, "feet"),
  45356. weight: math.unit(2200, "lb"),
  45357. name: "Nude",
  45358. image: {
  45359. source: "./media/characters/endraya/nude.svg",
  45360. extra: 1247/1171,
  45361. bottom: 40/1287
  45362. }
  45363. },
  45364. head: {
  45365. height: math.unit(2.6, "feet"),
  45366. name: "Head",
  45367. image: {
  45368. source: "./media/characters/endraya/head.svg"
  45369. }
  45370. },
  45371. slit: {
  45372. height: math.unit(3.4, "feet"),
  45373. name: "Slit",
  45374. image: {
  45375. source: "./media/characters/endraya/slit.svg"
  45376. }
  45377. },
  45378. },
  45379. [
  45380. {
  45381. name: "Normal",
  45382. height: math.unit(13 + 7/12, "feet"),
  45383. default: true
  45384. },
  45385. {
  45386. name: "Macro",
  45387. height: math.unit(200, "feet")
  45388. },
  45389. ]
  45390. ))
  45391. characterMakers.push(() => makeCharacter(
  45392. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  45393. {
  45394. front: {
  45395. height: math.unit(412, "meters"),
  45396. name: "Front",
  45397. image: {
  45398. source: "./media/characters/rodryana/front.svg",
  45399. extra: 2002/1921,
  45400. bottom: 53/2055
  45401. }
  45402. },
  45403. back: {
  45404. height: math.unit(412, "meters"),
  45405. name: "Back",
  45406. image: {
  45407. source: "./media/characters/rodryana/back.svg",
  45408. extra: 1993/1926,
  45409. bottom: 48/2041
  45410. }
  45411. },
  45412. maw: {
  45413. height: math.unit(45, "meters"),
  45414. name: "Maw",
  45415. image: {
  45416. source: "./media/characters/rodryana/maw.svg"
  45417. }
  45418. },
  45419. slit: {
  45420. height: math.unit(72, "meters"),
  45421. name: "Slit",
  45422. image: {
  45423. source: "./media/characters/rodryana/slit.svg"
  45424. }
  45425. },
  45426. },
  45427. [
  45428. {
  45429. name: "Macro",
  45430. height: math.unit(412, "meters"),
  45431. default: true
  45432. },
  45433. ]
  45434. ))
  45435. characterMakers.push(() => makeCharacter(
  45436. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  45437. {
  45438. front: {
  45439. height: math.unit(6, "feet"),
  45440. weight: math.unit(1000, "lb"),
  45441. name: "Front",
  45442. image: {
  45443. source: "./media/characters/asaya/front.svg",
  45444. extra: 1460/1200,
  45445. bottom: 71/1531
  45446. }
  45447. },
  45448. },
  45449. [
  45450. {
  45451. name: "Normal",
  45452. height: math.unit(8, "km"),
  45453. default: true
  45454. },
  45455. ]
  45456. ))
  45457. characterMakers.push(() => makeCharacter(
  45458. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  45459. {
  45460. front: {
  45461. height: math.unit(3.5, "meters"),
  45462. name: "Front",
  45463. image: {
  45464. source: "./media/characters/sarzu-and-israz/front.svg",
  45465. extra: 1570/1558,
  45466. bottom: 150/1720
  45467. },
  45468. },
  45469. back: {
  45470. height: math.unit(3.5, "meters"),
  45471. name: "Back",
  45472. image: {
  45473. source: "./media/characters/sarzu-and-israz/back.svg",
  45474. extra: 1523/1509,
  45475. bottom: 132/1655
  45476. },
  45477. },
  45478. frontFemale: {
  45479. height: math.unit(3.5, "meters"),
  45480. name: "Front (Female)",
  45481. image: {
  45482. source: "./media/characters/sarzu-and-israz/front-female.svg",
  45483. extra: 1570/1558,
  45484. bottom: 150/1720
  45485. },
  45486. },
  45487. frontHerm: {
  45488. height: math.unit(3.5, "meters"),
  45489. name: "Front (Herm)",
  45490. image: {
  45491. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  45492. extra: 1570/1558,
  45493. bottom: 150/1720
  45494. },
  45495. },
  45496. },
  45497. [
  45498. {
  45499. name: "Normal",
  45500. height: math.unit(3.5, "meters"),
  45501. default: true,
  45502. },
  45503. {
  45504. name: "Macro",
  45505. height: math.unit(65.5, "meters"),
  45506. },
  45507. ],
  45508. ))
  45509. characterMakers.push(() => makeCharacter(
  45510. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  45511. {
  45512. front: {
  45513. height: math.unit(6, "feet"),
  45514. weight: math.unit(250, "lb"),
  45515. name: "Front",
  45516. image: {
  45517. source: "./media/characters/zenimma/front.svg",
  45518. extra: 1346/1320,
  45519. bottom: 58/1404
  45520. }
  45521. },
  45522. back: {
  45523. height: math.unit(6, "feet"),
  45524. weight: math.unit(250, "lb"),
  45525. name: "Back",
  45526. image: {
  45527. source: "./media/characters/zenimma/back.svg",
  45528. extra: 1324/1308,
  45529. bottom: 44/1368
  45530. }
  45531. },
  45532. dick: {
  45533. height: math.unit(1.44, "feet"),
  45534. name: "Dick",
  45535. image: {
  45536. source: "./media/characters/zenimma/dick.svg"
  45537. }
  45538. },
  45539. },
  45540. [
  45541. {
  45542. name: "Canon Height",
  45543. height: math.unit(66, "miles"),
  45544. default: true
  45545. },
  45546. ]
  45547. ))
  45548. characterMakers.push(() => makeCharacter(
  45549. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  45550. {
  45551. nude: {
  45552. height: math.unit(6, "feet"),
  45553. weight: math.unit(150, "lb"),
  45554. name: "Nude",
  45555. image: {
  45556. source: "./media/characters/shavon/nude.svg",
  45557. extra: 1242/1096,
  45558. bottom: 98/1340
  45559. }
  45560. },
  45561. dressed: {
  45562. height: math.unit(6, "feet"),
  45563. weight: math.unit(150, "lb"),
  45564. name: "Dressed",
  45565. image: {
  45566. source: "./media/characters/shavon/dressed.svg",
  45567. extra: 1242/1096,
  45568. bottom: 98/1340
  45569. }
  45570. },
  45571. },
  45572. [
  45573. {
  45574. name: "Macro",
  45575. height: math.unit(255, "feet"),
  45576. default: true
  45577. },
  45578. ]
  45579. ))
  45580. characterMakers.push(() => makeCharacter(
  45581. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  45582. {
  45583. front: {
  45584. height: math.unit(6, "feet"),
  45585. name: "Front",
  45586. image: {
  45587. source: "./media/characters/steph/front.svg",
  45588. extra: 1430/1330,
  45589. bottom: 54/1484
  45590. }
  45591. },
  45592. },
  45593. [
  45594. {
  45595. name: "Normal",
  45596. height: math.unit(6, "feet"),
  45597. default: true
  45598. },
  45599. ]
  45600. ))
  45601. characterMakers.push(() => makeCharacter(
  45602. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  45603. {
  45604. front: {
  45605. height: math.unit(9, "feet"),
  45606. weight: math.unit(400, "lb"),
  45607. name: "Front",
  45608. image: {
  45609. source: "./media/characters/kil'aman/front.svg",
  45610. extra: 1210/1159,
  45611. bottom: 109/1319
  45612. }
  45613. },
  45614. head: {
  45615. height: math.unit(2.14, "feet"),
  45616. name: "Head",
  45617. image: {
  45618. source: "./media/characters/kil'aman/head.svg"
  45619. }
  45620. },
  45621. maw: {
  45622. height: math.unit(1.21, "feet"),
  45623. name: "Maw",
  45624. image: {
  45625. source: "./media/characters/kil'aman/maw.svg"
  45626. }
  45627. },
  45628. foot: {
  45629. height: math.unit(1.7, "feet"),
  45630. name: "Foot",
  45631. image: {
  45632. source: "./media/characters/kil'aman/foot.svg"
  45633. }
  45634. },
  45635. dick: {
  45636. height: math.unit(2.1, "feet"),
  45637. name: "Dick",
  45638. image: {
  45639. source: "./media/characters/kil'aman/dick.svg"
  45640. }
  45641. },
  45642. },
  45643. [
  45644. {
  45645. name: "Normal",
  45646. height: math.unit(9, "feet")
  45647. },
  45648. {
  45649. name: "Canon Height",
  45650. height: math.unit(10, "miles"),
  45651. default: true
  45652. },
  45653. {
  45654. name: "Maximum",
  45655. height: math.unit(6e9, "miles")
  45656. },
  45657. ]
  45658. ))
  45659. //characters
  45660. function makeCharacters() {
  45661. const results = [];
  45662. characterMakers.forEach(character => {
  45663. results.push(character());
  45664. });
  45665. return results;
  45666. }