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

45478 строки
1.1 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "feliform"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "feliform"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf", "werebeast"]
  569. },
  570. "werebeast": {
  571. name: "Werebeast",
  572. parents: ["monster"]
  573. },
  574. "meerkat": {
  575. name: "Meerkat",
  576. parents: ["mammal"]
  577. },
  578. "human": {
  579. name: "Human",
  580. parents: ["mammal"]
  581. },
  582. "geth": {
  583. name: "Geth",
  584. parents: ["android"]
  585. },
  586. "husky": {
  587. name: "Husky",
  588. parents: ["dog"]
  589. },
  590. "long-eared-bat": {
  591. name: "Long Eared Bat",
  592. parents: ["bat"]
  593. },
  594. "lizard": {
  595. name: "Lizard",
  596. parents: ["reptile"]
  597. },
  598. "salamander": {
  599. name: "Salamander",
  600. parents: ["lizard"]
  601. },
  602. "chameleon": {
  603. name: "Chameleon",
  604. parents: ["lizard"]
  605. },
  606. "gecko": {
  607. name: "Gecko",
  608. parents: ["lizard"]
  609. },
  610. "kobold": {
  611. name: "Kobold",
  612. parents: ["reptile"]
  613. },
  614. "charizard": {
  615. name: "Charizard",
  616. parents: ["pokemon"]
  617. },
  618. "lugia": {
  619. name: "Lugia",
  620. parents: ["pokemon"]
  621. },
  622. "cerberus": {
  623. name: "Cerberus",
  624. parents: ["dog"]
  625. },
  626. "tyrantrum": {
  627. name: "Tyrantrum",
  628. parents: ["pokemon"]
  629. },
  630. "lemur": {
  631. name: "Lemur",
  632. parents: ["mammal"]
  633. },
  634. "kelpie": {
  635. name: "Kelpie",
  636. parents: ["horse", "monster"]
  637. },
  638. "labrador": {
  639. name: "Labrador",
  640. parents: ["dog"]
  641. },
  642. "sylveon": {
  643. name: "Sylveon",
  644. parents: ["eeveelution"]
  645. },
  646. "eeveelution": {
  647. name: "Eeveelution",
  648. parents: ["pokemon"]
  649. },
  650. "polar-bear": {
  651. name: "Polar Bear",
  652. parents: ["bear"]
  653. },
  654. "bear": {
  655. name: "Bear",
  656. parents: ["mammal"]
  657. },
  658. "absol": {
  659. name: "Absol",
  660. parents: ["pokemon"]
  661. },
  662. "wolver": {
  663. name: "Wolver",
  664. parents: ["mammal"]
  665. },
  666. "rottweiler": {
  667. name: "Rottweiler",
  668. parents: ["dog"]
  669. },
  670. "zebra": {
  671. name: "Zebra",
  672. parents: ["horse"]
  673. },
  674. "yoshi": {
  675. name: "Yoshi",
  676. parents: ["lizard"]
  677. },
  678. "lynx": {
  679. name: "Lynx",
  680. parents: ["cat"]
  681. },
  682. "unknown": {
  683. name: "Unknown",
  684. parents: []
  685. },
  686. "thylacine": {
  687. name: "Thylacine",
  688. parents: ["mammal"]
  689. },
  690. "gabumon": {
  691. name: "Gabumon",
  692. parents: ["digimon"]
  693. },
  694. "border-collie": {
  695. name: "Border Collie",
  696. parents: ["dog"]
  697. },
  698. "imp": {
  699. name: "Imp",
  700. parents: ["demon"]
  701. },
  702. "kangaroo": {
  703. name: "Kangaroo",
  704. parents: ["marsupial"]
  705. },
  706. "renamon": {
  707. name: "Renamon",
  708. parents: ["digimon"]
  709. },
  710. "candy-orca-dragon": {
  711. name: "Candy Orca Dragon",
  712. parents: ["fish", "dragon", "candy"]
  713. },
  714. "sabertooth-tiger": {
  715. name: "Sabertooth Tiger",
  716. parents: ["cat"]
  717. },
  718. "espurr": {
  719. name: "Espurr",
  720. parents: ["pokemon"]
  721. },
  722. "otter": {
  723. name: "Otter",
  724. parents: ["mustelid"]
  725. },
  726. "elemental": {
  727. name: "Elemental",
  728. parents: ["mammal"]
  729. },
  730. "mew": {
  731. name: "Mew",
  732. parents: ["pokemon"]
  733. },
  734. "goodra": {
  735. name: "Goodra",
  736. parents: ["pokemon"]
  737. },
  738. "fairy": {
  739. name: "Fairy",
  740. parents: ["magical"]
  741. },
  742. "typhlosion": {
  743. name: "Typhlosion",
  744. parents: ["pokemon"]
  745. },
  746. "magical": {
  747. name: "Magical",
  748. parents: []
  749. },
  750. "xenomorph": {
  751. name: "Xenomorph",
  752. parents: ["monster", "alien"]
  753. },
  754. "charr": {
  755. name: "Charr",
  756. parents: ["cat"]
  757. },
  758. "siberian-husky": {
  759. name: "Siberian Husky",
  760. parents: ["husky"]
  761. },
  762. "alligator": {
  763. name: "Alligator",
  764. parents: ["reptile"]
  765. },
  766. "bernese-mountain-dog": {
  767. name: "Bernese Mountain Dog",
  768. parents: ["dog"]
  769. },
  770. "reshiram": {
  771. name: "Reshiram",
  772. parents: ["pokemon"]
  773. },
  774. "grizzly-bear": {
  775. name: "Grizzly Bear",
  776. parents: ["bear"]
  777. },
  778. "water-monitor": {
  779. name: "Water Monitor",
  780. parents: ["lizard"]
  781. },
  782. "banchofossa": {
  783. name: "Banchofossa",
  784. parents: ["mammal"]
  785. },
  786. "kirin": {
  787. name: "Kirin",
  788. parents: ["monster"]
  789. },
  790. "quilava": {
  791. name: "Quilava",
  792. parents: ["pokemon"]
  793. },
  794. "seviper": {
  795. name: "Seviper",
  796. parents: ["pokemon"]
  797. },
  798. "flying-fox": {
  799. name: "Flying Fox",
  800. parents: ["bat"]
  801. },
  802. "keynain": {
  803. name: "Keynain",
  804. parents: ["avian"]
  805. },
  806. "lucario": {
  807. name: "Lucario",
  808. parents: ["pokemon"]
  809. },
  810. "siamese-cat": {
  811. name: "Siamese Cat",
  812. parents: ["cat"]
  813. },
  814. "spider": {
  815. name: "Spider",
  816. parents: ["insect"]
  817. },
  818. "samurott": {
  819. name: "Samurott",
  820. parents: ["pokemon"]
  821. },
  822. "megalodon": {
  823. name: "Megalodon",
  824. parents: ["shark"]
  825. },
  826. "unicorn": {
  827. name: "Unicorn",
  828. parents: ["horse"]
  829. },
  830. "greninja": {
  831. name: "Greninja",
  832. parents: ["pokemon"]
  833. },
  834. "water-dragon": {
  835. name: "Water Dragon",
  836. parents: ["dragon"]
  837. },
  838. "cross-fox": {
  839. name: "Cross Fox",
  840. parents: ["fox"]
  841. },
  842. "synth": {
  843. name: "Synth",
  844. parents: ["machine"]
  845. },
  846. "construct": {
  847. name: "Construct",
  848. parents: []
  849. },
  850. "mexican-wolf": {
  851. name: "Mexican Wolf",
  852. parents: ["wolf"]
  853. },
  854. "leopard": {
  855. name: "Leopard",
  856. parents: ["cat"]
  857. },
  858. "pig": {
  859. name: "Pig",
  860. parents: ["mammal"]
  861. },
  862. "ampharos": {
  863. name: "Ampharos",
  864. parents: ["pokemon"]
  865. },
  866. "orca": {
  867. name: "Orca",
  868. parents: ["fish"]
  869. },
  870. "lycanroc": {
  871. name: "Lycanroc",
  872. parents: ["pokemon"]
  873. },
  874. "surkanu": {
  875. name: "Surkanu",
  876. parents: ["monster"]
  877. },
  878. "seal": {
  879. name: "Seal",
  880. parents: ["mammal"]
  881. },
  882. "keldeo": {
  883. name: "Keldeo",
  884. parents: ["pokemon"]
  885. },
  886. "great-dane": {
  887. name: "Great Dane",
  888. parents: ["dog"]
  889. },
  890. "black-backed-jackal": {
  891. name: "Black Backed Jackal",
  892. parents: ["jackal"]
  893. },
  894. "sheep": {
  895. name: "Sheep",
  896. parents: ["mammal"]
  897. },
  898. "leopard-seal": {
  899. name: "Leopard Seal",
  900. parents: ["seal"]
  901. },
  902. "zoroark": {
  903. name: "Zoroark",
  904. parents: ["pokemon"]
  905. },
  906. "maned-wolf": {
  907. name: "Maned Wolf",
  908. parents: ["canine"]
  909. },
  910. "dracha": {
  911. name: "Dracha",
  912. parents: ["dragon"]
  913. },
  914. "wolxi": {
  915. name: "Wolxi",
  916. parents: ["mammal", "alien"]
  917. },
  918. "dratini": {
  919. name: "Dratini",
  920. parents: ["pokemon", "dragon"]
  921. },
  922. "skaven": {
  923. name: "Skaven",
  924. parents: ["rat"]
  925. },
  926. "mongoose": {
  927. name: "Mongoose",
  928. parents: ["mammal"]
  929. },
  930. "lopunny": {
  931. name: "Lopunny",
  932. parents: ["pokemon", "rabbit"]
  933. },
  934. "feraligatr": {
  935. name: "Feraligatr",
  936. parents: ["pokemon", "alligator"]
  937. },
  938. "houndoom": {
  939. name: "Houndoom",
  940. parents: ["pokemon", "dog"]
  941. },
  942. "protogen": {
  943. name: "Protogen",
  944. parents: ["machine"]
  945. },
  946. "saint-bernard": {
  947. name: "Saint Bernard",
  948. parents: ["dog"]
  949. },
  950. "crow": {
  951. name: "Crow",
  952. parents: ["corvid"]
  953. },
  954. "delphox": {
  955. name: "Delphox",
  956. parents: ["pokemon", "fox"]
  957. },
  958. "moose": {
  959. name: "Moose",
  960. parents: ["mammal"]
  961. },
  962. "joraxian": {
  963. name: "Joraxian",
  964. parents: ["monster", "canine", "demon"]
  965. },
  966. "nimbat": {
  967. name: "Nimbat",
  968. parents: ["mammal"]
  969. },
  970. "aardwolf": {
  971. name: "Aardwolf",
  972. parents: ["canine"]
  973. },
  974. "fluudrani": {
  975. name: "Fluudrani",
  976. parents: ["animal"]
  977. },
  978. "arcanine": {
  979. name: "Arcanine",
  980. parents: ["pokemon", "dog"]
  981. },
  982. "inteleon": {
  983. name: "Inteleon",
  984. parents: ["pokemon", "fish"]
  985. },
  986. "ninetales": {
  987. name: "Ninetales",
  988. parents: ["pokemon", "kitsune"]
  989. },
  990. "tigrex": {
  991. name: "Tigrex",
  992. parents: ["tiger"]
  993. },
  994. "zorua": {
  995. name: "Zorua",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "vulpix": {
  999. name: "Vulpix",
  1000. parents: ["pokemon", "fox"]
  1001. },
  1002. "barghest": {
  1003. name: "Barghest",
  1004. parents: ["monster"]
  1005. },
  1006. "gray-wolf": {
  1007. name: "Gray Wolf",
  1008. parents: ["wolf"]
  1009. },
  1010. "ruppells-fox": {
  1011. name: "Rüppell's Fox",
  1012. parents: ["fox"]
  1013. },
  1014. "bull-terrier": {
  1015. name: "Bull Terrier",
  1016. parents: ["dog"]
  1017. },
  1018. "european-honey-buzzard": {
  1019. name: "European Honey Buzzard",
  1020. parents: ["avian"]
  1021. },
  1022. "t-rex": {
  1023. name: "Tyrannosaurus Rex",
  1024. parents: ["dinosaur"]
  1025. },
  1026. "mactarian": {
  1027. name: "Mactarian",
  1028. parents: ["shark", "monster"]
  1029. },
  1030. "mewtwo-y": {
  1031. name: "Mewtwo Y",
  1032. parents: ["mewtwo"]
  1033. },
  1034. "mewtwo": {
  1035. name: "Mewtwo",
  1036. parents: ["pokemon"]
  1037. },
  1038. "mew": {
  1039. name: "Mew",
  1040. parents: ["pokemon"]
  1041. },
  1042. "eevee": {
  1043. name: "Eevee",
  1044. parents: ["eeveelution"]
  1045. },
  1046. "mienshao": {
  1047. name: "Mienshao",
  1048. parents: ["pokemon"]
  1049. },
  1050. "sugar-glider": {
  1051. name: "Sugar Glider",
  1052. parents: ["opossum"]
  1053. },
  1054. "spectral-bat": {
  1055. name: "Spectral Bat",
  1056. parents: ["bat"]
  1057. },
  1058. "scolipede": {
  1059. name: "Scolipede",
  1060. parents: ["pokemon", "insect"]
  1061. },
  1062. "jackalope": {
  1063. name: "Jackalope",
  1064. parents: ["rabbit", "antelope"]
  1065. },
  1066. "caracal": {
  1067. name: "Caracal",
  1068. parents: ["cat"]
  1069. },
  1070. "stoat": {
  1071. name: "Stoat",
  1072. parents: ["mammal"]
  1073. },
  1074. "african-golden-cat": {
  1075. name: "African Golden Cat",
  1076. parents: ["cat"]
  1077. },
  1078. "gigantosaurus": {
  1079. name: "Gigantosaurus",
  1080. parents: ["dinosaur"]
  1081. },
  1082. "zorgoia": {
  1083. name: "Zorgoia",
  1084. parents: ["mammal"]
  1085. },
  1086. "monitor-lizard": {
  1087. name: "Monitor Lizard",
  1088. parents: ["lizard"]
  1089. },
  1090. "ziralkia": {
  1091. name: "Ziralkia",
  1092. parents: ["mammal"]
  1093. },
  1094. "kiiasi": {
  1095. name: "Kiiasi",
  1096. parents: ["animal"]
  1097. },
  1098. "synx": {
  1099. name: "Synx",
  1100. parents: ["monster"]
  1101. },
  1102. "panther": {
  1103. name: "Panther",
  1104. parents: ["cat"]
  1105. },
  1106. "azumarill": {
  1107. name: "Azumarill",
  1108. parents: ["pokemon"]
  1109. },
  1110. "river-snaptail": {
  1111. name: "River Snaptail",
  1112. parents: ["otter", "crocodile"]
  1113. },
  1114. "great-blue-heron": {
  1115. name: "Great Blue Heron",
  1116. parents: ["avian"]
  1117. },
  1118. "smeargle": {
  1119. name: "Smeargle",
  1120. parents: ["pokemon"]
  1121. },
  1122. "vendeilen": {
  1123. name: "Vendeilen",
  1124. parents: ["monster"]
  1125. },
  1126. "ventura": {
  1127. name: "Ventura",
  1128. parents: ["canine"]
  1129. },
  1130. "clouded-leopard": {
  1131. name: "Clouded Leopard",
  1132. parents: ["leopard"]
  1133. },
  1134. "argonian": {
  1135. name: "Argonian",
  1136. parents: ["lizard"]
  1137. },
  1138. "salazzle": {
  1139. name: "Salazzle",
  1140. parents: ["pokemon", "lizard"]
  1141. },
  1142. "je-stoff-drachen": {
  1143. name: "Je-Stoff Drachen",
  1144. parents: ["dragon"]
  1145. },
  1146. "finnish-spitz-dog": {
  1147. name: "Finnish Spitz Dog",
  1148. parents: ["dog"]
  1149. },
  1150. "gray-fox": {
  1151. name: "Gray Fox",
  1152. parents: ["fox"]
  1153. },
  1154. "opossum": {
  1155. name: "opossum",
  1156. parents: ["mammal"]
  1157. },
  1158. "antelope": {
  1159. name: "Antelope",
  1160. parents: ["mammal"]
  1161. },
  1162. "weavile": {
  1163. name: "Weavile",
  1164. parents: ["pokemon"]
  1165. },
  1166. "pikachu": {
  1167. name: "Pikachu",
  1168. parents: ["pokemon", "mouse"]
  1169. },
  1170. "grovyle": {
  1171. name: "Grovyle",
  1172. parents: ["pokemon", "plant"]
  1173. },
  1174. "sthara": {
  1175. name: "Sthara",
  1176. parents: ["snow-leopard", "reptile"]
  1177. },
  1178. "star-warrior": {
  1179. name: "Star Warrior",
  1180. parents: ["magical"]
  1181. },
  1182. "dragonoid": {
  1183. name: "Dragonoid",
  1184. parents: ["dragon"]
  1185. },
  1186. "suicune": {
  1187. name: "Suicune",
  1188. parents: ["pokemon"]
  1189. },
  1190. "vole": {
  1191. name: "Vole",
  1192. parents: ["mammal"]
  1193. },
  1194. "blaziken": {
  1195. name: "Blaziken",
  1196. parents: ["pokemon", "avian"]
  1197. },
  1198. "buizel": {
  1199. name: "Buizel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "floatzel": {
  1203. name: "Floatzel",
  1204. parents: ["pokemon", "fish"]
  1205. },
  1206. "umok": {
  1207. name: "Umok",
  1208. parents: ["avian"]
  1209. },
  1210. "sea-monster": {
  1211. name: "Sea Monster",
  1212. parents: ["monster", "fish"]
  1213. },
  1214. "egyptian-vulture": {
  1215. name: "Egyptian Vulture",
  1216. parents: ["avian"]
  1217. },
  1218. "doberman": {
  1219. name: "Doberman",
  1220. parents: ["dog"]
  1221. },
  1222. "zangoose": {
  1223. name: "Zangoose",
  1224. parents: ["pokemon", "mongoose"]
  1225. },
  1226. "mongoose": {
  1227. name: "Mongoose",
  1228. parents: ["mammal"]
  1229. },
  1230. "wickerbeast": {
  1231. name: "Wickerbeast",
  1232. parents: ["monster"]
  1233. },
  1234. "zenari": {
  1235. name: "Zenari",
  1236. parents: ["lizard"]
  1237. },
  1238. "plant": {
  1239. name: "Plant",
  1240. parents: []
  1241. },
  1242. "raskatox": {
  1243. name: "Raskatox",
  1244. parents: ["raccoon", "skunk", "cat", "fox"]
  1245. },
  1246. "mikromare": {
  1247. name: "mikromare",
  1248. parents: ["alien"]
  1249. },
  1250. "alien": {
  1251. name: "Alien",
  1252. parents: ["animal"]
  1253. },
  1254. "deity": {
  1255. name: "Deity",
  1256. parents: []
  1257. },
  1258. "skarlan": {
  1259. name: "Skarlan",
  1260. parents: ["slug", "dragon"]
  1261. },
  1262. "slug": {
  1263. name: "Slug",
  1264. parents: ["mollusk"]
  1265. },
  1266. "mollusk": {
  1267. name: "Mollusk",
  1268. parents: ["animal"]
  1269. },
  1270. "chimera": {
  1271. name: "Chimera",
  1272. parents: ["monster"]
  1273. },
  1274. "gestalt": {
  1275. name: "Gestalt",
  1276. parents: ["construct"]
  1277. },
  1278. "mimic": {
  1279. name: "Mimic",
  1280. parents: ["monster"]
  1281. },
  1282. "calico-rat": {
  1283. name: "Calico Rat",
  1284. parents: ["rat"]
  1285. },
  1286. "panda": {
  1287. name: "Panda",
  1288. parents: ["mammal"]
  1289. },
  1290. "oni": {
  1291. name: "Oni",
  1292. parents: ["monster"]
  1293. },
  1294. "pegasus": {
  1295. name: "Pegasus",
  1296. parents: ["horse"]
  1297. },
  1298. "vulpera": {
  1299. name: "Vulpera",
  1300. parents: ["fennec-fox"]
  1301. },
  1302. "ceratosaurus": {
  1303. name: "Ceratosaurus",
  1304. parents: ["dinosaur"]
  1305. },
  1306. "nykur": {
  1307. name: "Nykur",
  1308. parents: ["horse", "monster"]
  1309. },
  1310. "giraffe": {
  1311. name: "Giraffe",
  1312. parents: ["mammal"]
  1313. },
  1314. "tauren": {
  1315. name: "Tauren",
  1316. parents: ["cow"]
  1317. },
  1318. "draconi": {
  1319. name: "Draconi",
  1320. parents: ["alien", "cat", "cyborg"]
  1321. },
  1322. "dire-wolf": {
  1323. name: "Dire Wolf",
  1324. parents: ["wolf"]
  1325. },
  1326. "ferromorph": {
  1327. name: "Ferromorph",
  1328. parents: ["construct"]
  1329. },
  1330. "meowth": {
  1331. name: "Meowth",
  1332. parents: ["cat", "pokemon"]
  1333. },
  1334. "pavodragon": {
  1335. name: "Pavodragon",
  1336. parents: ["dragon"]
  1337. },
  1338. "aaltranae": {
  1339. name: "Aaltranae",
  1340. parents: ["dragon"]
  1341. },
  1342. "cyborg": {
  1343. name: "Cyborg",
  1344. parents: ["machine"]
  1345. },
  1346. "draptor": {
  1347. name: "Draptor",
  1348. parents: ["dragon"]
  1349. },
  1350. "candy": {
  1351. name: "Candy",
  1352. parents: []
  1353. },
  1354. "drenath": {
  1355. name: "Drenath",
  1356. parents: ["dragon", "snake", "rabbit"]
  1357. },
  1358. "coyju": {
  1359. name: "Coyju",
  1360. parents: ["coyote", "kaiju"]
  1361. },
  1362. "kaiju": {
  1363. name: "Kaiju",
  1364. parents: ["monster"]
  1365. },
  1366. "nickit": {
  1367. name: "Nickit",
  1368. parents: ["pokemon", "cat"]
  1369. },
  1370. "lopunny": {
  1371. name: "Lopunny",
  1372. parents: ["pokemon", "rabbit"]
  1373. },
  1374. "korean-jindo-dog": {
  1375. name: "Korean Jindo Dog",
  1376. parents: ["dog"]
  1377. },
  1378. "naga": {
  1379. name: "Naga",
  1380. parents: ["snake", "monster"]
  1381. },
  1382. "undead": {
  1383. name: "Undead",
  1384. parents: ["monster"]
  1385. },
  1386. "whale": {
  1387. name: "Whale",
  1388. parents: ["fish"]
  1389. },
  1390. "gelato-bee": {
  1391. name: "Gelato Bee",
  1392. parents: ["bee"]
  1393. },
  1394. "bee": {
  1395. name: "Bee",
  1396. parents: ["insect"]
  1397. },
  1398. "gardevoir": {
  1399. name: "Gardevoir",
  1400. parents: ["pokemon"]
  1401. },
  1402. "ant": {
  1403. name: "Ant",
  1404. parents: ["insect"]
  1405. },
  1406. "frog": {
  1407. name: "Frog",
  1408. parents: ["amphibian"]
  1409. },
  1410. "amphibian": {
  1411. name: "Amphibian",
  1412. parents: ["animal"]
  1413. },
  1414. "pangolin": {
  1415. name: "Pangolin",
  1416. parents: ["mammal"]
  1417. },
  1418. "uragi'viidorn": {
  1419. name: "Uragi'viidorn",
  1420. parents: ["avian", "bear"]
  1421. },
  1422. "gryphdelphais": {
  1423. name: "Gryphdelphais",
  1424. parents: ["dolphin", "gryphon"]
  1425. },
  1426. "plush": {
  1427. name: "Plush",
  1428. parents: ["construct"]
  1429. },
  1430. "draiger": {
  1431. name: "Draiger",
  1432. parents: ["dragon","tiger"]
  1433. },
  1434. "foxsky": {
  1435. name: "Foxsky",
  1436. parents: ["fox", "husky"]
  1437. },
  1438. "umbreon": {
  1439. name: "Umbreon",
  1440. parents: ["eeveelution"]
  1441. },
  1442. "slime-dragon": {
  1443. name: "Slime Dragon",
  1444. parents: ["dragon", "goo"]
  1445. },
  1446. "enderman": {
  1447. name: "Enderman",
  1448. parents: ["monster"]
  1449. },
  1450. "gremlin": {
  1451. name: "Gremlin",
  1452. parents: ["monster"]
  1453. },
  1454. "dragonsune": {
  1455. name: "Dragonsune",
  1456. parents: ["dragon", "kitsune"]
  1457. },
  1458. "ghost": {
  1459. name: "Ghost",
  1460. parents: ["supernatural"]
  1461. },
  1462. "false-vampire-bat": {
  1463. name: "False Vampire Bat",
  1464. parents: ["bat"]
  1465. },
  1466. "succubus": {
  1467. name: "Succubus",
  1468. parents: ["demon"]
  1469. },
  1470. "mia": {
  1471. name: "Mia",
  1472. parents: ["canine"]
  1473. },
  1474. "rainbow": {
  1475. name: "Rainbow",
  1476. parents: ["monster"]
  1477. },
  1478. "solgaleo": {
  1479. name: "Solgaleo",
  1480. parents: ["pokemon"]
  1481. },
  1482. "lucent-nargacuga": {
  1483. name: "Lucent Nargacuga",
  1484. parents: ["monster-hunter"]
  1485. },
  1486. "monster-hunter": {
  1487. name: "Monster Hunter",
  1488. parents: ["monster"]
  1489. },
  1490. "leviathan": {
  1491. "name": "Leviathan",
  1492. "url": "sea-monster"
  1493. },
  1494. "bull": {
  1495. name: "Bull",
  1496. parents: ["mammal"]
  1497. },
  1498. "tanuki": {
  1499. name: "Tanuki",
  1500. parents: ["monster"]
  1501. },
  1502. "chakat": {
  1503. name: "Chakat",
  1504. parents: ["cat"]
  1505. },
  1506. "hydra": {
  1507. name: "Hydra",
  1508. parents: ["monster"]
  1509. },
  1510. "zigzagoon": {
  1511. name: "Zigzagoon",
  1512. parents: ["raccoon", "pokemon"]
  1513. },
  1514. "vulture": {
  1515. name: "Vulture",
  1516. parents: ["avian"]
  1517. },
  1518. "eastern-dragon": {
  1519. name: "Eastern Dragon",
  1520. parents: ["dragon"]
  1521. },
  1522. "gryffon": {
  1523. name: "Gryffon",
  1524. parents: ["phoenix", "red-panda"]
  1525. },
  1526. "amtsvane": {
  1527. name: "Amtsvane",
  1528. parents: ["reptile"]
  1529. },
  1530. "kigavi": {
  1531. name: "Kigavi",
  1532. parents: ["avian"]
  1533. },
  1534. "turian": {
  1535. name: "Turian",
  1536. parents: ["avian"]
  1537. },
  1538. "zeraora": {
  1539. name: "Zeraora",
  1540. parents: ["pokemon"]
  1541. },
  1542. "sandshrew": {
  1543. name: "Sandshrew",
  1544. parents: ["pokemon", "pangolin"]
  1545. },
  1546. "valais-blacknose-sheep": {
  1547. name: "Valais Blacknose Sheep",
  1548. parents: ["sheep"]
  1549. },
  1550. "novaleit": {
  1551. name: "Novaleit",
  1552. parents: ["mammal"]
  1553. },
  1554. "dunnoh": {
  1555. name: "Dunnoh",
  1556. parents: ["mammal"]
  1557. },
  1558. "lunaral-dragon": {
  1559. name: "Lunaral Dragon",
  1560. parents: ["dragon"]
  1561. },
  1562. "arctic-wolf": {
  1563. name: "Arctic Wolf",
  1564. parents: ["wolf"]
  1565. },
  1566. "donkey": {
  1567. name: "Donkey",
  1568. parents: ["horse"]
  1569. },
  1570. "chinchilla": {
  1571. name: "Chinchilla",
  1572. parents: ["rodent"]
  1573. },
  1574. "felkin": {
  1575. name: "Felkin",
  1576. parents: ["dragon"]
  1577. },
  1578. "tykeriel": {
  1579. name: "Tykeriel",
  1580. parents: ["avian"]
  1581. },
  1582. "folf": {
  1583. name: "Folf",
  1584. parents: ["fox", "wolf"]
  1585. },
  1586. "pooltoy": {
  1587. name: "Pooltoy",
  1588. parents: ["construct"]
  1589. },
  1590. "demi": {
  1591. name: "Demi",
  1592. parents: ["human"]
  1593. },
  1594. "stegosaurus": {
  1595. name: "Stegosaurus",
  1596. parents: ["dinosaur"]
  1597. },
  1598. "computer-virus": {
  1599. name: "Computer Virus",
  1600. parents: ["program"]
  1601. },
  1602. "program": {
  1603. name: "Program",
  1604. parents: ["construct"]
  1605. },
  1606. "space-springhare": {
  1607. name: "Space Springhare",
  1608. parents: ["rabbit"]
  1609. },
  1610. "river-drake": {
  1611. name: "River Drake",
  1612. parents: ["dragon"]
  1613. },
  1614. "djinn": {
  1615. "name": "Djinn",
  1616. "url": "supernatural"
  1617. },
  1618. "supernatural": {
  1619. name: "Supernatural",
  1620. parents: ["monster"]
  1621. },
  1622. "grasshopper-mouse": {
  1623. name: "Grasshopper Mouse",
  1624. parents: ["mouse"]
  1625. },
  1626. "somali-cat": {
  1627. name: "Somali Cat",
  1628. parents: ["cat"]
  1629. },
  1630. "minccino": {
  1631. name: "Minccino",
  1632. parents: ["pokemon", "chinchilla"]
  1633. },
  1634. "pine-marten": {
  1635. name: "Pine Marten",
  1636. parents: ["marten"]
  1637. },
  1638. "marten": {
  1639. name: "Marten",
  1640. parents: ["mustelid"]
  1641. },
  1642. "mustelid": {
  1643. name: "Mustelid",
  1644. parents: ["mammal"]
  1645. },
  1646. "caribou": {
  1647. name: "Caribou",
  1648. parents: ["deer"]
  1649. },
  1650. "gnoll": {
  1651. name: "Gnoll",
  1652. parents: ["hyena", "monster"]
  1653. },
  1654. "peacekeeper": {
  1655. name: "Peacekeeper",
  1656. parents: ["human"]
  1657. },
  1658. "river-otter": {
  1659. name: "River Otter",
  1660. parents: ["otter"]
  1661. },
  1662. "dhole": {
  1663. name: "Dhole",
  1664. parents: ["canine"]
  1665. },
  1666. "springbok": {
  1667. name: "Springbok",
  1668. parents: ["antelope"]
  1669. },
  1670. "marsupial": {
  1671. name: "Marsupial",
  1672. parents: ["mammal"]
  1673. },
  1674. "townsend-big-eared-bat": {
  1675. name: "Townsend Big-eared Bat",
  1676. parents: ["bat"]
  1677. },
  1678. "squirrel": {
  1679. name: "Squirrel",
  1680. parents: ["rodent"]
  1681. },
  1682. "magpie": {
  1683. name: "Magpie",
  1684. parents: ["corvid"]
  1685. },
  1686. "civet": {
  1687. name: "Civet",
  1688. parents: ["feliform"]
  1689. },
  1690. "feliform": {
  1691. name: "Feliform",
  1692. parents: ["mammal"]
  1693. },
  1694. "tiefling": {
  1695. name: "Tiefling",
  1696. parents: ["devil"]
  1697. },
  1698. "devil": {
  1699. name: "Devil",
  1700. parents: ["supernatural"]
  1701. },
  1702. "sika-deer": {
  1703. name: "Sika Deer",
  1704. parents: ["deer"]
  1705. },
  1706. "vaporeon": {
  1707. name: "Vaporeon",
  1708. parents: ["eeveelution"]
  1709. },
  1710. "leafeon": {
  1711. name: "Leafeon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "jolteon": {
  1715. name: "Jolteon",
  1716. parents: ["eeveelution"]
  1717. },
  1718. "spireborn": {
  1719. name: "Spireborn",
  1720. parents: ["zorgoia"]
  1721. },
  1722. "vampire": {
  1723. name: "Vampire",
  1724. parents: ["monster"]
  1725. },
  1726. "extraplanar": {
  1727. name: "Extraplanar",
  1728. parents: []
  1729. },
  1730. "goo": {
  1731. name: "Goo",
  1732. parents: []
  1733. },
  1734. "skink": {
  1735. name: "Skink",
  1736. parents: ["lizard"]
  1737. },
  1738. "bat-eared-fox": {
  1739. name: "Bat-eared Fox",
  1740. parents: ["fox"]
  1741. },
  1742. "belted-kingfisher": {
  1743. name: "Belted Kingfisher",
  1744. parents: ["avian"]
  1745. },
  1746. "omnifalcon": {
  1747. name: "Omnifalcon",
  1748. parents: ["gryphon", "falcon", "harpy-eagle"]
  1749. },
  1750. "falcon": {
  1751. name: "Falcon",
  1752. parents: ["avian"]
  1753. },
  1754. "avali": {
  1755. name: "Avali",
  1756. parents: ["avian", "alien"]
  1757. },
  1758. "arctic-fox": {
  1759. name: "Arctic Fox",
  1760. parents: ["fox"]
  1761. },
  1762. "snow-tiger": {
  1763. name: "Snow Tiger",
  1764. parents: ["tiger"]
  1765. },
  1766. "marble-fox": {
  1767. name: "Marble Fox",
  1768. parents: ["fox"]
  1769. },
  1770. "king-wickerbeast": {
  1771. name: "King Wickerbeast",
  1772. parents: ["wickerbeast"]
  1773. },
  1774. "wickerbeast": {
  1775. name: "Wickerbeast",
  1776. parents: ["mammal"]
  1777. },
  1778. "european-polecat": {
  1779. name: "European Polecat",
  1780. parents: ["mustelid"]
  1781. },
  1782. "teshari": {
  1783. name: "Teshari",
  1784. parents: ["avian", "raptor"]
  1785. },
  1786. "alicorn": {
  1787. name: "Alicorn",
  1788. parents: ["horse"]
  1789. },
  1790. "atlas-moth": {
  1791. name: "Atlas Moth",
  1792. parents: ["moth"]
  1793. },
  1794. }
  1795. //species
  1796. function getSpeciesInfo(speciesList) {
  1797. let result = new Set();
  1798. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1799. result.add(entry)
  1800. });
  1801. return Array.from(result);
  1802. };
  1803. function getSpeciesInfoHelper(species) {
  1804. if (!speciesData[species]) {
  1805. console.warn(species + " doesn't exist");
  1806. return [];
  1807. }
  1808. if (speciesData[species].parents) {
  1809. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1810. } else {
  1811. return [species];
  1812. }
  1813. }
  1814. characterMakers.push(() => makeCharacter(
  1815. {
  1816. name: "Fen",
  1817. species: ["crux"],
  1818. description: {
  1819. title: "Bio",
  1820. text: "Very furry. Sheds on everything."
  1821. },
  1822. tags: [
  1823. "anthro",
  1824. "goo"
  1825. ]
  1826. },
  1827. {
  1828. front: {
  1829. height: math.unit(2.2428, "meter"),
  1830. weight: math.unit(124.738, "kg"),
  1831. name: "Front",
  1832. image: {
  1833. source: "./media/characters/fen/front.svg",
  1834. extra: 1804/1562,
  1835. bottom: 205/2009
  1836. }
  1837. },
  1838. back: {
  1839. height: math.unit(2.2428, "meter"),
  1840. weight: math.unit(124.738, "kg"),
  1841. name: "Back",
  1842. image: {
  1843. source: "./media/characters/fen/back.svg",
  1844. },
  1845. info: {
  1846. description: {
  1847. mode: "append",
  1848. text: "\n\nHe is not currently looking at you."
  1849. }
  1850. }
  1851. },
  1852. maw: {
  1853. height: math.unit(2.83, "feet"),
  1854. name: "Maw",
  1855. image: {
  1856. source: "./media/characters/fen/maw.svg"
  1857. }
  1858. },
  1859. full: {
  1860. height: math.unit(0.91, "meter"),
  1861. weight: math.unit(225, "kg"),
  1862. name: "Full",
  1863. image: {
  1864. source: "./media/characters/fen/full.svg",
  1865. extra: 1133/859,
  1866. bottom: 145/1278
  1867. },
  1868. info: {
  1869. description: {
  1870. mode: "append",
  1871. text: "\n\nMunch."
  1872. }
  1873. }
  1874. },
  1875. kneeling: {
  1876. height: math.unit(5.4, "feet"),
  1877. weight: math.unit(124.738, "kg"),
  1878. name: "Kneeling",
  1879. image: {
  1880. source: "./media/characters/fen/kneeling.svg",
  1881. extra: 563 / 507
  1882. }
  1883. },
  1884. goo: {
  1885. height: math.unit(2.8, "feet"),
  1886. weight: math.unit(125, "kg"),
  1887. capacity: math.unit(1, "people"),
  1888. name: "Goo",
  1889. image: {
  1890. source: "./media/characters/fen/goo.svg",
  1891. bottom: 116 / 613
  1892. }
  1893. },
  1894. lounging: {
  1895. height: math.unit(6.5, "feet"),
  1896. weight: math.unit(125, "kg"),
  1897. name: "Lounging",
  1898. image: {
  1899. source: "./media/characters/fen/lounging.svg"
  1900. }
  1901. },
  1902. },
  1903. [
  1904. {
  1905. name: "Small",
  1906. height: math.unit(2.2428, "meter")
  1907. },
  1908. {
  1909. name: "Normal",
  1910. height: math.unit(12, "feet"),
  1911. default: true,
  1912. },
  1913. {
  1914. name: "Minimacro",
  1915. height: math.unit(40, "feet"),
  1916. info: {
  1917. description: {
  1918. mode: "append",
  1919. text: "\n\nTOO DAMN BIG"
  1920. }
  1921. }
  1922. },
  1923. {
  1924. name: "Macro",
  1925. height: math.unit(100, "feet"),
  1926. info: {
  1927. description: {
  1928. mode: "append",
  1929. text: "\n\nTOO DAMN BIG"
  1930. }
  1931. }
  1932. },
  1933. {
  1934. name: "Macro+",
  1935. height: math.unit(300, "feet")
  1936. },
  1937. {
  1938. name: "Megamacro",
  1939. height: math.unit(2, "miles")
  1940. }
  1941. ]
  1942. ))
  1943. characterMakers.push(() => makeCharacter(
  1944. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1945. {
  1946. front: {
  1947. height: math.unit(183, "cm"),
  1948. weight: math.unit(80, "kg"),
  1949. name: "Front",
  1950. image: {
  1951. source: "./media/characters/sofia-fluttertail/front.svg",
  1952. bottom: 0.01,
  1953. extra: 2154 / 2081
  1954. }
  1955. },
  1956. frontAlt: {
  1957. height: math.unit(183, "cm"),
  1958. weight: math.unit(80, "kg"),
  1959. name: "Front (alt)",
  1960. image: {
  1961. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1962. }
  1963. },
  1964. back: {
  1965. height: math.unit(183, "cm"),
  1966. weight: math.unit(80, "kg"),
  1967. name: "Back",
  1968. image: {
  1969. source: "./media/characters/sofia-fluttertail/back.svg"
  1970. }
  1971. },
  1972. kneeling: {
  1973. height: math.unit(125, "cm"),
  1974. weight: math.unit(80, "kg"),
  1975. name: "Kneeling",
  1976. image: {
  1977. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1978. extra: 1033 / 977,
  1979. bottom: 23.7 / 1057
  1980. }
  1981. },
  1982. maw: {
  1983. height: math.unit(183 / 5, "cm"),
  1984. name: "Maw",
  1985. image: {
  1986. source: "./media/characters/sofia-fluttertail/maw.svg"
  1987. }
  1988. },
  1989. mawcloseup: {
  1990. height: math.unit(183 / 5 * 0.41, "cm"),
  1991. name: "Maw (Closeup)",
  1992. image: {
  1993. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1994. }
  1995. },
  1996. paws: {
  1997. height: math.unit(1.17, "feet"),
  1998. name: "Paws",
  1999. image: {
  2000. source: "./media/characters/sofia-fluttertail/paws.svg",
  2001. extra: 851 / 851,
  2002. bottom: 17 / 868
  2003. }
  2004. },
  2005. },
  2006. [
  2007. {
  2008. name: "Normal",
  2009. height: math.unit(1.83, "meter")
  2010. },
  2011. {
  2012. name: "Size Thief",
  2013. height: math.unit(18, "feet")
  2014. },
  2015. {
  2016. name: "50 Foot Collie",
  2017. height: math.unit(50, "feet")
  2018. },
  2019. {
  2020. name: "Macro",
  2021. height: math.unit(96, "feet"),
  2022. default: true
  2023. },
  2024. {
  2025. name: "Megamerger",
  2026. height: math.unit(650, "feet")
  2027. },
  2028. ]
  2029. ))
  2030. characterMakers.push(() => makeCharacter(
  2031. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2032. {
  2033. front: {
  2034. height: math.unit(7, "feet"),
  2035. weight: math.unit(100, "kg"),
  2036. name: "Front",
  2037. image: {
  2038. source: "./media/characters/march/front.svg",
  2039. extra: 1992/1851,
  2040. bottom: 39/2031
  2041. }
  2042. },
  2043. foot: {
  2044. height: math.unit(0.9, "feet"),
  2045. name: "Foot",
  2046. image: {
  2047. source: "./media/characters/march/foot.svg"
  2048. }
  2049. },
  2050. },
  2051. [
  2052. {
  2053. name: "Normal",
  2054. height: math.unit(7.9, "feet")
  2055. },
  2056. {
  2057. name: "Macro",
  2058. height: math.unit(220, "meters")
  2059. },
  2060. {
  2061. name: "Megamacro",
  2062. height: math.unit(2.98, "km"),
  2063. default: true
  2064. },
  2065. {
  2066. name: "Gigamacro",
  2067. height: math.unit(15963, "km")
  2068. },
  2069. {
  2070. name: "Teramacro",
  2071. height: math.unit(2980000000, "km")
  2072. },
  2073. {
  2074. name: "Examacro",
  2075. height: math.unit(250, "parsecs")
  2076. },
  2077. ]
  2078. ))
  2079. characterMakers.push(() => makeCharacter(
  2080. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2081. {
  2082. front: {
  2083. height: math.unit(6, "feet"),
  2084. weight: math.unit(60, "kg"),
  2085. name: "Front",
  2086. image: {
  2087. source: "./media/characters/noir/front.svg",
  2088. extra: 1,
  2089. bottom: 0.032
  2090. }
  2091. },
  2092. },
  2093. [
  2094. {
  2095. name: "Normal",
  2096. height: math.unit(6.6, "feet")
  2097. },
  2098. {
  2099. name: "Macro",
  2100. height: math.unit(500, "feet")
  2101. },
  2102. {
  2103. name: "Megamacro",
  2104. height: math.unit(2.5, "km"),
  2105. default: true
  2106. },
  2107. {
  2108. name: "Gigamacro",
  2109. height: math.unit(22500, "km")
  2110. },
  2111. {
  2112. name: "Teramacro",
  2113. height: math.unit(2500000000, "km")
  2114. },
  2115. {
  2116. name: "Examacro",
  2117. height: math.unit(200, "parsecs")
  2118. },
  2119. ]
  2120. ))
  2121. characterMakers.push(() => makeCharacter(
  2122. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2123. {
  2124. front: {
  2125. height: math.unit(7, "feet"),
  2126. weight: math.unit(100, "kg"),
  2127. name: "Front",
  2128. image: {
  2129. source: "./media/characters/okuri/front.svg",
  2130. extra: 1,
  2131. bottom: 0.037
  2132. }
  2133. },
  2134. back: {
  2135. height: math.unit(7, "feet"),
  2136. weight: math.unit(100, "kg"),
  2137. name: "Back",
  2138. image: {
  2139. source: "./media/characters/okuri/back.svg",
  2140. extra: 1,
  2141. bottom: 0.007
  2142. }
  2143. },
  2144. },
  2145. [
  2146. {
  2147. name: "Megamacro",
  2148. height: math.unit(100, "miles"),
  2149. default: true
  2150. },
  2151. ]
  2152. ))
  2153. characterMakers.push(() => makeCharacter(
  2154. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2155. {
  2156. front: {
  2157. height: math.unit(7, "feet"),
  2158. weight: math.unit(100, "kg"),
  2159. name: "Front",
  2160. image: {
  2161. source: "./media/characters/manny/front.svg",
  2162. extra: 1,
  2163. bottom: 0.06
  2164. }
  2165. },
  2166. back: {
  2167. height: math.unit(7, "feet"),
  2168. weight: math.unit(100, "kg"),
  2169. name: "Back",
  2170. image: {
  2171. source: "./media/characters/manny/back.svg",
  2172. extra: 1,
  2173. bottom: 0.014
  2174. }
  2175. },
  2176. },
  2177. [
  2178. {
  2179. name: "Normal",
  2180. height: math.unit(7, "feet"),
  2181. },
  2182. {
  2183. name: "Macro",
  2184. height: math.unit(78, "feet"),
  2185. default: true
  2186. },
  2187. {
  2188. name: "Macro+",
  2189. height: math.unit(300, "meters")
  2190. },
  2191. {
  2192. name: "Macro++",
  2193. height: math.unit(2400, "meters")
  2194. },
  2195. {
  2196. name: "Megamacro",
  2197. height: math.unit(5167, "meters")
  2198. },
  2199. {
  2200. name: "Gigamacro",
  2201. height: math.unit(41769, "miles")
  2202. },
  2203. ]
  2204. ))
  2205. characterMakers.push(() => makeCharacter(
  2206. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2207. {
  2208. front: {
  2209. height: math.unit(7, "feet"),
  2210. weight: math.unit(100, "kg"),
  2211. name: "Front",
  2212. image: {
  2213. source: "./media/characters/adake/front-1.svg"
  2214. }
  2215. },
  2216. frontAlt: {
  2217. height: math.unit(7, "feet"),
  2218. weight: math.unit(100, "kg"),
  2219. name: "Front (Alt)",
  2220. image: {
  2221. source: "./media/characters/adake/front-2.svg",
  2222. extra: 1,
  2223. bottom: 0.01
  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/adake/back.svg",
  2232. }
  2233. },
  2234. kneel: {
  2235. height: math.unit(5.385, "feet"),
  2236. weight: math.unit(100, "kg"),
  2237. name: "Kneeling",
  2238. image: {
  2239. source: "./media/characters/adake/kneel.svg",
  2240. bottom: 0.052
  2241. }
  2242. },
  2243. },
  2244. [
  2245. {
  2246. name: "Normal",
  2247. height: math.unit(7, "feet"),
  2248. },
  2249. {
  2250. name: "Macro",
  2251. height: math.unit(78, "feet"),
  2252. default: true
  2253. },
  2254. {
  2255. name: "Macro+",
  2256. height: math.unit(300, "meters")
  2257. },
  2258. {
  2259. name: "Macro++",
  2260. height: math.unit(2400, "meters")
  2261. },
  2262. {
  2263. name: "Megamacro",
  2264. height: math.unit(5167, "meters")
  2265. },
  2266. {
  2267. name: "Gigamacro",
  2268. height: math.unit(41769, "miles")
  2269. },
  2270. ]
  2271. ))
  2272. characterMakers.push(() => makeCharacter(
  2273. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2274. {
  2275. front: {
  2276. height: math.unit(1.65, "meters"),
  2277. weight: math.unit(50, "kg"),
  2278. name: "Front",
  2279. image: {
  2280. source: "./media/characters/elijah/front.svg",
  2281. extra: 858 / 830,
  2282. bottom: 95.5 / 953.8559
  2283. }
  2284. },
  2285. back: {
  2286. height: math.unit(1.65, "meters"),
  2287. weight: math.unit(50, "kg"),
  2288. name: "Back",
  2289. image: {
  2290. source: "./media/characters/elijah/back.svg",
  2291. extra: 895 / 850,
  2292. bottom: 5.3 / 897.956
  2293. }
  2294. },
  2295. frontNsfw: {
  2296. height: math.unit(1.65, "meters"),
  2297. weight: math.unit(50, "kg"),
  2298. name: "Front (NSFW)",
  2299. image: {
  2300. source: "./media/characters/elijah/front-nsfw.svg",
  2301. extra: 858 / 830,
  2302. bottom: 95.5 / 953.8559
  2303. }
  2304. },
  2305. backNsfw: {
  2306. height: math.unit(1.65, "meters"),
  2307. weight: math.unit(50, "kg"),
  2308. name: "Back (NSFW)",
  2309. image: {
  2310. source: "./media/characters/elijah/back-nsfw.svg",
  2311. extra: 895 / 850,
  2312. bottom: 5.3 / 897.956
  2313. }
  2314. },
  2315. dick: {
  2316. height: math.unit(1, "feet"),
  2317. name: "Dick",
  2318. image: {
  2319. source: "./media/characters/elijah/dick.svg"
  2320. }
  2321. },
  2322. beakOpen: {
  2323. height: math.unit(1.25, "feet"),
  2324. name: "Beak (Open)",
  2325. image: {
  2326. source: "./media/characters/elijah/beak-open.svg"
  2327. }
  2328. },
  2329. beakShut: {
  2330. height: math.unit(1.25, "feet"),
  2331. name: "Beak (Shut)",
  2332. image: {
  2333. source: "./media/characters/elijah/beak-shut.svg"
  2334. }
  2335. },
  2336. footFlexing: {
  2337. height: math.unit(1.61, "feet"),
  2338. name: "Foot (Flexing)",
  2339. image: {
  2340. source: "./media/characters/elijah/foot-flexing.svg"
  2341. }
  2342. },
  2343. footStepping: {
  2344. height: math.unit(1.44, "feet"),
  2345. name: "Foot (Stepping)",
  2346. image: {
  2347. source: "./media/characters/elijah/foot-stepping.svg"
  2348. }
  2349. },
  2350. plantigradeLeg: {
  2351. height: math.unit(2.34, "feet"),
  2352. name: "Plantigrade Leg",
  2353. image: {
  2354. source: "./media/characters/elijah/plantigrade-leg.svg"
  2355. }
  2356. },
  2357. plantigradeFootLeft: {
  2358. height: math.unit(0.9, "feet"),
  2359. name: "Plantigrade Foot (Left)",
  2360. image: {
  2361. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2362. }
  2363. },
  2364. plantigradeFootRight: {
  2365. height: math.unit(0.9, "feet"),
  2366. name: "Plantigrade Foot (Right)",
  2367. image: {
  2368. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2369. }
  2370. },
  2371. },
  2372. [
  2373. {
  2374. name: "Normal",
  2375. height: math.unit(1.65, "meters")
  2376. },
  2377. {
  2378. name: "Macro",
  2379. height: math.unit(55, "meters"),
  2380. default: true
  2381. },
  2382. {
  2383. name: "Macro+",
  2384. height: math.unit(105, "meters")
  2385. },
  2386. ]
  2387. ))
  2388. characterMakers.push(() => makeCharacter(
  2389. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2390. {
  2391. front: {
  2392. height: math.unit(7 + 2/12, "feet"),
  2393. weight: math.unit(320, "kg"),
  2394. name: "Front",
  2395. image: {
  2396. source: "./media/characters/rai/front.svg",
  2397. extra: 1802/1696,
  2398. bottom: 68/1870
  2399. }
  2400. },
  2401. frontDressed: {
  2402. height: math.unit(7 + 2/12, "feet"),
  2403. weight: math.unit(320, "kg"),
  2404. name: "Front (Dressed)",
  2405. image: {
  2406. source: "./media/characters/rai/front-dressed.svg",
  2407. extra: 1802/1696,
  2408. bottom: 68/1870
  2409. }
  2410. },
  2411. side: {
  2412. height: math.unit(7 + 2/12, "feet"),
  2413. weight: math.unit(320, "kg"),
  2414. name: "Side",
  2415. image: {
  2416. source: "./media/characters/rai/side.svg",
  2417. extra: 1789/1710,
  2418. bottom: 115/1904
  2419. }
  2420. },
  2421. back: {
  2422. height: math.unit(7 + 2/12, "feet"),
  2423. weight: math.unit(320, "kg"),
  2424. name: "Back",
  2425. image: {
  2426. source: "./media/characters/rai/back.svg",
  2427. extra: 1770/1707,
  2428. bottom: 28/1798
  2429. }
  2430. },
  2431. feral: {
  2432. height: math.unit(9.5, "feet"),
  2433. weight: math.unit(640, "kg"),
  2434. name: "Feral",
  2435. image: {
  2436. source: "./media/characters/rai/feral.svg",
  2437. extra: 945/553,
  2438. bottom: 176/1121
  2439. }
  2440. },
  2441. dragon: {
  2442. height: math.unit(23, "feet"),
  2443. weight: math.unit(50000, "lb"),
  2444. name: "Dragon",
  2445. image: {
  2446. source: "./media/characters/rai/dragon.svg",
  2447. extra: 2498 / 2030,
  2448. bottom: 85.2 / 2584
  2449. }
  2450. },
  2451. maw: {
  2452. height: math.unit(1.69, "feet"),
  2453. name: "Maw",
  2454. image: {
  2455. source: "./media/characters/rai/maw.svg"
  2456. }
  2457. },
  2458. },
  2459. [
  2460. {
  2461. name: "Normal",
  2462. height: math.unit(7 + 2/12, "feet")
  2463. },
  2464. {
  2465. name: "Big",
  2466. height: math.unit(11, "feet")
  2467. },
  2468. {
  2469. name: "Macro",
  2470. height: math.unit(302, "feet"),
  2471. default: true
  2472. },
  2473. ]
  2474. ))
  2475. characterMakers.push(() => makeCharacter(
  2476. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2477. {
  2478. frontDressed: {
  2479. height: math.unit(216, "feet"),
  2480. weight: math.unit(7000000, "lb"),
  2481. name: "Front (Dressed)",
  2482. image: {
  2483. source: "./media/characters/jazzy/front-dressed.svg",
  2484. extra: 2738 / 2651,
  2485. bottom: 41.8 / 2786
  2486. }
  2487. },
  2488. backDressed: {
  2489. height: math.unit(216, "feet"),
  2490. weight: math.unit(7000000, "lb"),
  2491. name: "Back (Dressed)",
  2492. image: {
  2493. source: "./media/characters/jazzy/back-dressed.svg",
  2494. extra: 2775 / 2673,
  2495. bottom: 36.8 / 2817
  2496. }
  2497. },
  2498. front: {
  2499. height: math.unit(216, "feet"),
  2500. weight: math.unit(7000000, "lb"),
  2501. name: "Front",
  2502. image: {
  2503. source: "./media/characters/jazzy/front.svg",
  2504. extra: 2738 / 2651,
  2505. bottom: 41.8 / 2786
  2506. }
  2507. },
  2508. back: {
  2509. height: math.unit(216, "feet"),
  2510. weight: math.unit(7000000, "lb"),
  2511. name: "Back",
  2512. image: {
  2513. source: "./media/characters/jazzy/back.svg",
  2514. extra: 2775 / 2673,
  2515. bottom: 36.8 / 2817
  2516. }
  2517. },
  2518. maw: {
  2519. height: math.unit(20, "feet"),
  2520. name: "Maw",
  2521. image: {
  2522. source: "./media/characters/jazzy/maw.svg"
  2523. }
  2524. },
  2525. paws: {
  2526. height: math.unit(27.5, "feet"),
  2527. name: "Paws",
  2528. image: {
  2529. source: "./media/characters/jazzy/paws.svg"
  2530. }
  2531. },
  2532. eye: {
  2533. height: math.unit(4.4, "feet"),
  2534. name: "Eye",
  2535. image: {
  2536. source: "./media/characters/jazzy/eye.svg"
  2537. }
  2538. },
  2539. droneOffense: {
  2540. height: math.unit(9.5, "inches"),
  2541. name: "Drone (Offense)",
  2542. image: {
  2543. source: "./media/characters/jazzy/drone-offense.svg"
  2544. }
  2545. },
  2546. droneRecon: {
  2547. height: math.unit(9.5, "inches"),
  2548. name: "Drone (Recon)",
  2549. image: {
  2550. source: "./media/characters/jazzy/drone-recon.svg"
  2551. }
  2552. },
  2553. droneDefense: {
  2554. height: math.unit(9.5, "inches"),
  2555. name: "Drone (Defense)",
  2556. image: {
  2557. source: "./media/characters/jazzy/drone-defense.svg"
  2558. }
  2559. },
  2560. },
  2561. [
  2562. {
  2563. name: "Macro",
  2564. height: math.unit(216, "feet"),
  2565. default: true
  2566. },
  2567. ]
  2568. ))
  2569. characterMakers.push(() => makeCharacter(
  2570. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2571. {
  2572. front: {
  2573. height: math.unit(9 + 6/12, "feet"),
  2574. weight: math.unit(700, "lb"),
  2575. name: "Front",
  2576. image: {
  2577. source: "./media/characters/flamm/front.svg",
  2578. extra: 1751/1632,
  2579. bottom: 46/1797
  2580. }
  2581. },
  2582. buff: {
  2583. height: math.unit(9 + 6/12, "feet"),
  2584. weight: math.unit(950, "lb"),
  2585. name: "Buff",
  2586. image: {
  2587. source: "./media/characters/flamm/buff.svg",
  2588. extra: 3018/2874,
  2589. bottom: 221/3239
  2590. }
  2591. },
  2592. },
  2593. [
  2594. {
  2595. name: "Normal",
  2596. height: math.unit(9.5, "feet")
  2597. },
  2598. {
  2599. name: "Macro",
  2600. height: math.unit(200, "feet"),
  2601. default: true
  2602. },
  2603. ]
  2604. ))
  2605. characterMakers.push(() => makeCharacter(
  2606. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2607. {
  2608. front: {
  2609. height: math.unit(5 + 3/12, "feet"),
  2610. weight: math.unit(60, "kg"),
  2611. name: "Front",
  2612. image: {
  2613. source: "./media/characters/zephiro/front.svg",
  2614. extra: 2309 / 2162,
  2615. bottom: 0.069
  2616. }
  2617. },
  2618. side: {
  2619. height: math.unit(5 + 3/12, "feet"),
  2620. weight: math.unit(60, "kg"),
  2621. name: "Side",
  2622. image: {
  2623. source: "./media/characters/zephiro/side.svg",
  2624. extra: 2403 / 2279,
  2625. bottom: 0.015
  2626. }
  2627. },
  2628. back: {
  2629. height: math.unit(5 + 3/12, "feet"),
  2630. weight: math.unit(60, "kg"),
  2631. name: "Back",
  2632. image: {
  2633. source: "./media/characters/zephiro/back.svg",
  2634. extra: 2373 / 2244,
  2635. bottom: 0.013
  2636. }
  2637. },
  2638. hand: {
  2639. height: math.unit(0.68, "feet"),
  2640. name: "Hand",
  2641. image: {
  2642. source: "./media/characters/zephiro/hand.svg"
  2643. }
  2644. },
  2645. paw: {
  2646. height: math.unit(1, "feet"),
  2647. name: "Paw",
  2648. image: {
  2649. source: "./media/characters/zephiro/paw.svg"
  2650. }
  2651. },
  2652. beans: {
  2653. height: math.unit(0.93, "feet"),
  2654. name: "Beans",
  2655. image: {
  2656. source: "./media/characters/zephiro/beans.svg"
  2657. }
  2658. },
  2659. },
  2660. [
  2661. {
  2662. name: "Micro",
  2663. height: math.unit(3, "inches")
  2664. },
  2665. {
  2666. name: "Normal",
  2667. height: math.unit(5 + 3 / 12, "feet"),
  2668. default: true
  2669. },
  2670. {
  2671. name: "Macro",
  2672. height: math.unit(118, "feet")
  2673. },
  2674. ]
  2675. ))
  2676. characterMakers.push(() => makeCharacter(
  2677. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2678. {
  2679. front: {
  2680. height: math.unit(5, "feet"),
  2681. weight: math.unit(90, "kg"),
  2682. name: "Front",
  2683. image: {
  2684. source: "./media/characters/fory/front.svg",
  2685. extra: 2862 / 2674,
  2686. bottom: 180 / 3043.8
  2687. }
  2688. },
  2689. back: {
  2690. height: math.unit(5, "feet"),
  2691. weight: math.unit(90, "kg"),
  2692. name: "Back",
  2693. image: {
  2694. source: "./media/characters/fory/back.svg",
  2695. extra: 2962 / 2791,
  2696. bottom: 106 / 3071.8
  2697. }
  2698. },
  2699. foot: {
  2700. height: math.unit(2.14, "feet"),
  2701. name: "Foot",
  2702. image: {
  2703. source: "./media/characters/fory/foot.svg"
  2704. }
  2705. },
  2706. },
  2707. [
  2708. {
  2709. name: "Normal",
  2710. height: math.unit(5, "feet")
  2711. },
  2712. {
  2713. name: "Macro",
  2714. height: math.unit(50, "feet"),
  2715. default: true
  2716. },
  2717. {
  2718. name: "Megamacro",
  2719. height: math.unit(10, "miles")
  2720. },
  2721. {
  2722. name: "Gigamacro",
  2723. height: math.unit(5, "earths")
  2724. },
  2725. ]
  2726. ))
  2727. characterMakers.push(() => makeCharacter(
  2728. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2729. {
  2730. front: {
  2731. height: math.unit(7, "feet"),
  2732. weight: math.unit(90, "kg"),
  2733. name: "Front",
  2734. image: {
  2735. source: "./media/characters/kurrikage/front.svg",
  2736. extra: 1845/1733,
  2737. bottom: 119/1964
  2738. }
  2739. },
  2740. back: {
  2741. height: math.unit(7, "feet"),
  2742. weight: math.unit(90, "kg"),
  2743. name: "Back",
  2744. image: {
  2745. source: "./media/characters/kurrikage/back.svg",
  2746. extra: 1790/1677,
  2747. bottom: 61/1851
  2748. }
  2749. },
  2750. dressed: {
  2751. height: math.unit(7, "feet"),
  2752. weight: math.unit(90, "kg"),
  2753. name: "Dressed",
  2754. image: {
  2755. source: "./media/characters/kurrikage/dressed.svg",
  2756. extra: 1845/1733,
  2757. bottom: 119/1964
  2758. }
  2759. },
  2760. foot: {
  2761. height: math.unit(1.5, "feet"),
  2762. name: "Foot",
  2763. image: {
  2764. source: "./media/characters/kurrikage/foot.svg"
  2765. }
  2766. },
  2767. staff: {
  2768. height: math.unit(6.7, "feet"),
  2769. name: "Staff",
  2770. image: {
  2771. source: "./media/characters/kurrikage/staff.svg"
  2772. }
  2773. },
  2774. peek: {
  2775. height: math.unit(1.05, "feet"),
  2776. name: "Peeking",
  2777. image: {
  2778. source: "./media/characters/kurrikage/peek.svg",
  2779. bottom: 0.08
  2780. }
  2781. },
  2782. },
  2783. [
  2784. {
  2785. name: "Normal",
  2786. height: math.unit(12, "feet"),
  2787. default: true
  2788. },
  2789. {
  2790. name: "Big",
  2791. height: math.unit(20, "feet")
  2792. },
  2793. {
  2794. name: "Macro",
  2795. height: math.unit(500, "feet")
  2796. },
  2797. {
  2798. name: "Megamacro",
  2799. height: math.unit(20, "miles")
  2800. },
  2801. ]
  2802. ))
  2803. characterMakers.push(() => makeCharacter(
  2804. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2805. {
  2806. front: {
  2807. height: math.unit(6, "feet"),
  2808. weight: math.unit(75, "kg"),
  2809. name: "Front",
  2810. image: {
  2811. source: "./media/characters/shingo/front.svg",
  2812. extra: 1900/1825,
  2813. bottom: 82/1982
  2814. }
  2815. },
  2816. side: {
  2817. height: math.unit(6, "feet"),
  2818. weight: math.unit(75, "kg"),
  2819. name: "Side",
  2820. image: {
  2821. source: "./media/characters/shingo/side.svg",
  2822. extra: 1930/1865,
  2823. bottom: 16/1946
  2824. }
  2825. },
  2826. back: {
  2827. height: math.unit(6, "feet"),
  2828. weight: math.unit(75, "kg"),
  2829. name: "Back",
  2830. image: {
  2831. source: "./media/characters/shingo/back.svg",
  2832. extra: 1922/1852,
  2833. bottom: 16/1938
  2834. }
  2835. },
  2836. frontDressed: {
  2837. height: math.unit(6, "feet"),
  2838. weight: math.unit(150, "lb"),
  2839. name: "Front-dressed",
  2840. image: {
  2841. source: "./media/characters/shingo/front-dressed.svg",
  2842. extra: 1900/1825,
  2843. bottom: 82/1982
  2844. }
  2845. },
  2846. paw: {
  2847. height: math.unit(1.29, "feet"),
  2848. name: "Paw",
  2849. image: {
  2850. source: "./media/characters/shingo/paw.svg"
  2851. }
  2852. },
  2853. hand: {
  2854. height: math.unit(1.07, "feet"),
  2855. name: "Hand",
  2856. image: {
  2857. source: "./media/characters/shingo/hand.svg"
  2858. }
  2859. },
  2860. frontAlt: {
  2861. height: math.unit(6, "feet"),
  2862. weight: math.unit(75, "kg"),
  2863. name: "Front (Alt)",
  2864. image: {
  2865. source: "./media/characters/shingo/front-alt.svg",
  2866. extra: 3511 / 3338,
  2867. bottom: 0.005
  2868. }
  2869. },
  2870. frontAlt2: {
  2871. height: math.unit(6, "feet"),
  2872. weight: math.unit(75, "kg"),
  2873. name: "Front (Alt 2)",
  2874. image: {
  2875. source: "./media/characters/shingo/front-alt-2.svg",
  2876. extra: 706/681,
  2877. bottom: 11/717
  2878. }
  2879. },
  2880. pawAlt: {
  2881. height: math.unit(1, "feet"),
  2882. name: "Paw (Alt)",
  2883. image: {
  2884. source: "./media/characters/shingo/paw-alt.svg"
  2885. }
  2886. },
  2887. },
  2888. [
  2889. {
  2890. name: "Micro",
  2891. height: math.unit(4, "inches")
  2892. },
  2893. {
  2894. name: "Normal",
  2895. height: math.unit(6, "feet"),
  2896. default: true
  2897. },
  2898. {
  2899. name: "Macro",
  2900. height: math.unit(108, "feet")
  2901. },
  2902. {
  2903. name: "Macro+",
  2904. height: math.unit(1500, "feet")
  2905. },
  2906. ]
  2907. ))
  2908. characterMakers.push(() => makeCharacter(
  2909. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2910. {
  2911. side: {
  2912. height: math.unit(6, "feet"),
  2913. weight: math.unit(75, "kg"),
  2914. name: "Side",
  2915. image: {
  2916. source: "./media/characters/aigey/side.svg"
  2917. }
  2918. },
  2919. },
  2920. [
  2921. {
  2922. name: "Macro",
  2923. height: math.unit(200, "feet"),
  2924. default: true
  2925. },
  2926. {
  2927. name: "Megamacro",
  2928. height: math.unit(100, "miles")
  2929. },
  2930. ]
  2931. )
  2932. )
  2933. characterMakers.push(() => makeCharacter(
  2934. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2935. {
  2936. front: {
  2937. height: math.unit(5 + 5 / 12, "feet"),
  2938. weight: math.unit(75, "kg"),
  2939. name: "Front",
  2940. image: {
  2941. source: "./media/characters/natasha/front.svg",
  2942. extra: 859 / 824,
  2943. bottom: 23 / 879.6
  2944. }
  2945. },
  2946. frontNsfw: {
  2947. height: math.unit(5 + 5 / 12, "feet"),
  2948. weight: math.unit(75, "kg"),
  2949. name: "Front (NSFW)",
  2950. image: {
  2951. source: "./media/characters/natasha/front-nsfw.svg",
  2952. extra: 859 / 824,
  2953. bottom: 23 / 879.6
  2954. }
  2955. },
  2956. frontErect: {
  2957. height: math.unit(5 + 5 / 12, "feet"),
  2958. weight: math.unit(75, "kg"),
  2959. name: "Front (Erect)",
  2960. image: {
  2961. source: "./media/characters/natasha/front-erect.svg",
  2962. extra: 859 / 824,
  2963. bottom: 23 / 879.6
  2964. }
  2965. },
  2966. back: {
  2967. height: math.unit(5 + 5 / 12, "feet"),
  2968. weight: math.unit(75, "kg"),
  2969. name: "Back",
  2970. image: {
  2971. source: "./media/characters/natasha/back.svg",
  2972. extra: 887.9 / 852.6,
  2973. bottom: 9.7 / 896.4
  2974. }
  2975. },
  2976. backAlt: {
  2977. height: math.unit(5 + 5 / 12, "feet"),
  2978. weight: math.unit(75, "kg"),
  2979. name: "Back (Alt)",
  2980. image: {
  2981. source: "./media/characters/natasha/back-alt.svg",
  2982. extra: 1236.7 / 1192,
  2983. bottom: 22.3 / 1258.2
  2984. }
  2985. },
  2986. dick: {
  2987. height: math.unit(1.772, "feet"),
  2988. name: "Dick",
  2989. image: {
  2990. source: "./media/characters/natasha/dick.svg"
  2991. }
  2992. },
  2993. paw: {
  2994. height: math.unit(0.250, "meters"),
  2995. name: "Paw",
  2996. image: {
  2997. source: "./media/characters/natasha/paw.svg"
  2998. }
  2999. },
  3000. },
  3001. [
  3002. {
  3003. name: "Normal",
  3004. height: math.unit(5 + 5 / 12, "feet")
  3005. },
  3006. {
  3007. name: "Large",
  3008. height: math.unit(12, "feet")
  3009. },
  3010. {
  3011. name: "Macro",
  3012. height: math.unit(100, "feet"),
  3013. default: true
  3014. },
  3015. {
  3016. name: "Macro+",
  3017. height: math.unit(260, "feet")
  3018. },
  3019. {
  3020. name: "Macro++",
  3021. height: math.unit(1, "mile")
  3022. },
  3023. ]
  3024. ))
  3025. characterMakers.push(() => makeCharacter(
  3026. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3027. {
  3028. front: {
  3029. height: math.unit(6, "feet"),
  3030. weight: math.unit(75, "kg"),
  3031. name: "Front",
  3032. image: {
  3033. source: "./media/characters/malik/front.svg"
  3034. }
  3035. },
  3036. side: {
  3037. height: math.unit(6, "feet"),
  3038. weight: math.unit(75, "kg"),
  3039. name: "Side",
  3040. image: {
  3041. source: "./media/characters/malik/side.svg",
  3042. extra: 1.1539
  3043. }
  3044. },
  3045. back: {
  3046. height: math.unit(6, "feet"),
  3047. weight: math.unit(75, "kg"),
  3048. name: "Back",
  3049. image: {
  3050. source: "./media/characters/malik/back.svg"
  3051. }
  3052. },
  3053. },
  3054. [
  3055. {
  3056. name: "Macro",
  3057. height: math.unit(156, "feet"),
  3058. default: true
  3059. },
  3060. {
  3061. name: "Macro+",
  3062. height: math.unit(1188, "feet")
  3063. },
  3064. ]
  3065. ))
  3066. characterMakers.push(() => makeCharacter(
  3067. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3068. {
  3069. front: {
  3070. height: math.unit(6, "feet"),
  3071. weight: math.unit(75, "kg"),
  3072. name: "Front",
  3073. image: {
  3074. source: "./media/characters/sefer/front.svg",
  3075. extra: 848 / 659,
  3076. bottom: 28.3 / 876.442
  3077. }
  3078. },
  3079. back: {
  3080. height: math.unit(6, "feet"),
  3081. weight: math.unit(75, "kg"),
  3082. name: "Back",
  3083. image: {
  3084. source: "./media/characters/sefer/back.svg",
  3085. extra: 864 / 695,
  3086. bottom: 10 / 871
  3087. }
  3088. },
  3089. frontDressed: {
  3090. height: math.unit(6, "feet"),
  3091. weight: math.unit(75, "kg"),
  3092. name: "Front (Dressed)",
  3093. image: {
  3094. source: "./media/characters/sefer/front-dressed.svg",
  3095. extra: 839 / 653,
  3096. bottom: 37.6 / 878
  3097. }
  3098. },
  3099. },
  3100. [
  3101. {
  3102. name: "Normal",
  3103. height: math.unit(6, "feet"),
  3104. default: true
  3105. },
  3106. ]
  3107. ))
  3108. characterMakers.push(() => makeCharacter(
  3109. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3110. {
  3111. body: {
  3112. height: math.unit(2.2428, "meter"),
  3113. weight: math.unit(124.738, "kg"),
  3114. name: "Body",
  3115. image: {
  3116. extra: 1225 / 1050,
  3117. source: "./media/characters/north/front.svg"
  3118. }
  3119. }
  3120. },
  3121. [
  3122. {
  3123. name: "Micro",
  3124. height: math.unit(4, "inches")
  3125. },
  3126. {
  3127. name: "Macro",
  3128. height: math.unit(63, "meters")
  3129. },
  3130. {
  3131. name: "Megamacro",
  3132. height: math.unit(101, "miles"),
  3133. default: true
  3134. }
  3135. ]
  3136. ))
  3137. characterMakers.push(() => makeCharacter(
  3138. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3139. {
  3140. angled: {
  3141. height: math.unit(4, "meter"),
  3142. weight: math.unit(150, "kg"),
  3143. name: "Angled",
  3144. image: {
  3145. source: "./media/characters/talan/angled-sfw.svg",
  3146. bottom: 29 / 3734
  3147. }
  3148. },
  3149. angledNsfw: {
  3150. height: math.unit(4, "meter"),
  3151. weight: math.unit(150, "kg"),
  3152. name: "Angled (NSFW)",
  3153. image: {
  3154. source: "./media/characters/talan/angled-nsfw.svg",
  3155. bottom: 29 / 3734
  3156. }
  3157. },
  3158. frontNsfw: {
  3159. height: math.unit(4, "meter"),
  3160. weight: math.unit(150, "kg"),
  3161. name: "Front (NSFW)",
  3162. image: {
  3163. source: "./media/characters/talan/front-nsfw.svg",
  3164. bottom: 29 / 3734
  3165. }
  3166. },
  3167. sideNsfw: {
  3168. height: math.unit(4, "meter"),
  3169. weight: math.unit(150, "kg"),
  3170. name: "Side (NSFW)",
  3171. image: {
  3172. source: "./media/characters/talan/side-nsfw.svg",
  3173. bottom: 29 / 3734
  3174. }
  3175. },
  3176. back: {
  3177. height: math.unit(4, "meter"),
  3178. weight: math.unit(150, "kg"),
  3179. name: "Back",
  3180. image: {
  3181. source: "./media/characters/talan/back.svg"
  3182. }
  3183. },
  3184. dickBottom: {
  3185. height: math.unit(0.621, "meter"),
  3186. name: "Dick (Bottom)",
  3187. image: {
  3188. source: "./media/characters/talan/dick-bottom.svg"
  3189. }
  3190. },
  3191. dickTop: {
  3192. height: math.unit(0.621, "meter"),
  3193. name: "Dick (Top)",
  3194. image: {
  3195. source: "./media/characters/talan/dick-top.svg"
  3196. }
  3197. },
  3198. dickSide: {
  3199. height: math.unit(0.305, "meter"),
  3200. name: "Dick (Side)",
  3201. image: {
  3202. source: "./media/characters/talan/dick-side.svg"
  3203. }
  3204. },
  3205. dickFront: {
  3206. height: math.unit(0.305, "meter"),
  3207. name: "Dick (Front)",
  3208. image: {
  3209. source: "./media/characters/talan/dick-front.svg"
  3210. }
  3211. },
  3212. },
  3213. [
  3214. {
  3215. name: "Normal",
  3216. height: math.unit(4, "meters")
  3217. },
  3218. {
  3219. name: "Macro",
  3220. height: math.unit(100, "meters")
  3221. },
  3222. {
  3223. name: "Megamacro",
  3224. height: math.unit(2, "miles"),
  3225. default: true
  3226. },
  3227. {
  3228. name: "Gigamacro",
  3229. height: math.unit(5000, "miles")
  3230. },
  3231. {
  3232. name: "Teramacro",
  3233. height: math.unit(100, "parsecs")
  3234. }
  3235. ]
  3236. ))
  3237. characterMakers.push(() => makeCharacter(
  3238. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3239. {
  3240. front: {
  3241. height: math.unit(2, "meter"),
  3242. weight: math.unit(90, "kg"),
  3243. name: "Front",
  3244. image: {
  3245. source: "./media/characters/gael'rathus/front.svg"
  3246. }
  3247. },
  3248. frontAlt: {
  3249. height: math.unit(2, "meter"),
  3250. weight: math.unit(90, "kg"),
  3251. name: "Front (alt)",
  3252. image: {
  3253. source: "./media/characters/gael'rathus/front-alt.svg"
  3254. }
  3255. },
  3256. frontAlt2: {
  3257. height: math.unit(2, "meter"),
  3258. weight: math.unit(90, "kg"),
  3259. name: "Front (alt 2)",
  3260. image: {
  3261. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3262. }
  3263. }
  3264. },
  3265. [
  3266. {
  3267. name: "Normal",
  3268. height: math.unit(9, "feet"),
  3269. default: true
  3270. },
  3271. {
  3272. name: "Large",
  3273. height: math.unit(25, "feet")
  3274. },
  3275. {
  3276. name: "Macro",
  3277. height: math.unit(0.25, "miles")
  3278. },
  3279. {
  3280. name: "Megamacro",
  3281. height: math.unit(10, "miles")
  3282. }
  3283. ]
  3284. ))
  3285. characterMakers.push(() => makeCharacter(
  3286. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3287. {
  3288. side: {
  3289. height: math.unit(2, "meter"),
  3290. weight: math.unit(140, "kg"),
  3291. name: "Side",
  3292. image: {
  3293. source: "./media/characters/sosha/side.svg",
  3294. bottom: 0.042
  3295. }
  3296. },
  3297. },
  3298. [
  3299. {
  3300. name: "Normal",
  3301. height: math.unit(12, "feet"),
  3302. default: true
  3303. }
  3304. ]
  3305. ))
  3306. characterMakers.push(() => makeCharacter(
  3307. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3308. {
  3309. side: {
  3310. height: math.unit(5 + 5 / 12, "feet"),
  3311. weight: math.unit(170, "kg"),
  3312. name: "Side",
  3313. image: {
  3314. source: "./media/characters/runnola/side.svg",
  3315. extra: 741 / 448,
  3316. bottom: 0.05
  3317. }
  3318. },
  3319. },
  3320. [
  3321. {
  3322. name: "Small",
  3323. height: math.unit(3, "feet")
  3324. },
  3325. {
  3326. name: "Normal",
  3327. height: math.unit(5 + 5 / 12, "feet"),
  3328. default: true
  3329. },
  3330. {
  3331. name: "Big",
  3332. height: math.unit(10, "feet")
  3333. },
  3334. ]
  3335. ))
  3336. characterMakers.push(() => makeCharacter(
  3337. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3338. {
  3339. front: {
  3340. height: math.unit(2, "meter"),
  3341. weight: math.unit(50, "kg"),
  3342. name: "Front",
  3343. image: {
  3344. source: "./media/characters/kurribird/front.svg",
  3345. bottom: 0.015
  3346. }
  3347. },
  3348. frontAlt: {
  3349. height: math.unit(1.5, "meter"),
  3350. weight: math.unit(50, "kg"),
  3351. name: "Front (Alt)",
  3352. image: {
  3353. source: "./media/characters/kurribird/front-alt.svg",
  3354. extra: 1.45
  3355. }
  3356. },
  3357. },
  3358. [
  3359. {
  3360. name: "Normal",
  3361. height: math.unit(7, "feet")
  3362. },
  3363. {
  3364. name: "Big",
  3365. height: math.unit(12, "feet"),
  3366. default: true
  3367. },
  3368. {
  3369. name: "Macro",
  3370. height: math.unit(1500, "feet")
  3371. },
  3372. {
  3373. name: "Megamacro",
  3374. height: math.unit(2, "miles")
  3375. }
  3376. ]
  3377. ))
  3378. characterMakers.push(() => makeCharacter(
  3379. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3380. {
  3381. front: {
  3382. height: math.unit(2, "meter"),
  3383. weight: math.unit(80, "kg"),
  3384. name: "Front",
  3385. image: {
  3386. source: "./media/characters/elbial/front.svg",
  3387. extra: 1643 / 1556,
  3388. bottom: 60.2 / 1696
  3389. }
  3390. },
  3391. side: {
  3392. height: math.unit(2, "meter"),
  3393. weight: math.unit(80, "kg"),
  3394. name: "Side",
  3395. image: {
  3396. source: "./media/characters/elbial/side.svg",
  3397. extra: 1630 / 1565,
  3398. bottom: 71.5 / 1697
  3399. }
  3400. },
  3401. back: {
  3402. height: math.unit(2, "meter"),
  3403. weight: math.unit(80, "kg"),
  3404. name: "Back",
  3405. image: {
  3406. source: "./media/characters/elbial/back.svg",
  3407. extra: 1668 / 1595,
  3408. bottom: 5.6 / 1672
  3409. }
  3410. },
  3411. frontDressed: {
  3412. height: math.unit(2, "meter"),
  3413. weight: math.unit(80, "kg"),
  3414. name: "Front (Dressed)",
  3415. image: {
  3416. source: "./media/characters/elbial/front-dressed.svg",
  3417. extra: 1653 / 1584,
  3418. bottom: 57 / 1708
  3419. }
  3420. },
  3421. genitals: {
  3422. height: math.unit(2 / 3.367, "meter"),
  3423. name: "Genitals",
  3424. image: {
  3425. source: "./media/characters/elbial/genitals.svg"
  3426. }
  3427. },
  3428. },
  3429. [
  3430. {
  3431. name: "Large",
  3432. height: math.unit(100, "feet")
  3433. },
  3434. {
  3435. name: "Macro",
  3436. height: math.unit(500, "feet"),
  3437. default: true
  3438. },
  3439. {
  3440. name: "Megamacro",
  3441. height: math.unit(10, "miles")
  3442. },
  3443. {
  3444. name: "Gigamacro",
  3445. height: math.unit(25000, "miles")
  3446. },
  3447. {
  3448. name: "Full-Size",
  3449. height: math.unit(8000000, "gigaparsecs")
  3450. }
  3451. ]
  3452. ))
  3453. characterMakers.push(() => makeCharacter(
  3454. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3455. {
  3456. front: {
  3457. height: math.unit(2, "meter"),
  3458. weight: math.unit(60, "kg"),
  3459. name: "Front",
  3460. image: {
  3461. source: "./media/characters/noah/front.svg"
  3462. }
  3463. },
  3464. talons: {
  3465. height: math.unit(0.315, "meter"),
  3466. name: "Talons",
  3467. image: {
  3468. source: "./media/characters/noah/talons.svg"
  3469. }
  3470. }
  3471. },
  3472. [
  3473. {
  3474. name: "Large",
  3475. height: math.unit(50, "feet")
  3476. },
  3477. {
  3478. name: "Macro",
  3479. height: math.unit(750, "feet"),
  3480. default: true
  3481. },
  3482. {
  3483. name: "Megamacro",
  3484. height: math.unit(50, "miles")
  3485. },
  3486. {
  3487. name: "Gigamacro",
  3488. height: math.unit(100000, "miles")
  3489. },
  3490. {
  3491. name: "Full-Size",
  3492. height: math.unit(3000000000, "miles")
  3493. }
  3494. ]
  3495. ))
  3496. characterMakers.push(() => makeCharacter(
  3497. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3498. {
  3499. front: {
  3500. height: math.unit(2, "meter"),
  3501. weight: math.unit(80, "kg"),
  3502. name: "Front",
  3503. image: {
  3504. source: "./media/characters/natalya/front.svg"
  3505. }
  3506. },
  3507. back: {
  3508. height: math.unit(2, "meter"),
  3509. weight: math.unit(80, "kg"),
  3510. name: "Back",
  3511. image: {
  3512. source: "./media/characters/natalya/back.svg"
  3513. }
  3514. }
  3515. },
  3516. [
  3517. {
  3518. name: "Normal",
  3519. height: math.unit(150, "feet"),
  3520. default: true
  3521. },
  3522. {
  3523. name: "Megamacro",
  3524. height: math.unit(5, "miles")
  3525. },
  3526. {
  3527. name: "Full-Size",
  3528. height: math.unit(600, "kiloparsecs")
  3529. }
  3530. ]
  3531. ))
  3532. characterMakers.push(() => makeCharacter(
  3533. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3534. {
  3535. front: {
  3536. height: math.unit(2, "meter"),
  3537. weight: math.unit(50, "kg"),
  3538. name: "Front",
  3539. image: {
  3540. source: "./media/characters/erestrebah/front.svg",
  3541. extra: 1262/1162,
  3542. bottom: 96/1358
  3543. }
  3544. },
  3545. back: {
  3546. height: math.unit(2, "meter"),
  3547. weight: math.unit(50, "kg"),
  3548. name: "Back",
  3549. image: {
  3550. source: "./media/characters/erestrebah/back.svg",
  3551. extra: 1257/1139,
  3552. bottom: 13/1270
  3553. }
  3554. },
  3555. wing: {
  3556. height: math.unit(2, "meter"),
  3557. weight: math.unit(50, "kg"),
  3558. name: "Wing",
  3559. image: {
  3560. source: "./media/characters/erestrebah/wing.svg",
  3561. extra: 1262/1162,
  3562. bottom: 96/1358
  3563. }
  3564. },
  3565. mouth: {
  3566. height: math.unit(0.39, "feet"),
  3567. name: "Mouth",
  3568. image: {
  3569. source: "./media/characters/erestrebah/mouth.svg"
  3570. }
  3571. }
  3572. },
  3573. [
  3574. {
  3575. name: "Normal",
  3576. height: math.unit(10, "feet")
  3577. },
  3578. {
  3579. name: "Large",
  3580. height: math.unit(50, "feet"),
  3581. default: true
  3582. },
  3583. {
  3584. name: "Macro",
  3585. height: math.unit(300, "feet")
  3586. },
  3587. {
  3588. name: "Macro+",
  3589. height: math.unit(750, "feet")
  3590. },
  3591. {
  3592. name: "Megamacro",
  3593. height: math.unit(3, "miles")
  3594. }
  3595. ]
  3596. ))
  3597. characterMakers.push(() => makeCharacter(
  3598. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3599. {
  3600. front: {
  3601. height: math.unit(2, "meter"),
  3602. weight: math.unit(80, "kg"),
  3603. name: "Front",
  3604. image: {
  3605. source: "./media/characters/jennifer/front.svg",
  3606. bottom: 0.11,
  3607. extra: 1.16
  3608. }
  3609. },
  3610. frontAlt: {
  3611. height: math.unit(2, "meter"),
  3612. weight: math.unit(80, "kg"),
  3613. name: "Front (Alt)",
  3614. image: {
  3615. source: "./media/characters/jennifer/front-alt.svg"
  3616. }
  3617. }
  3618. },
  3619. [
  3620. {
  3621. name: "Canon Height",
  3622. height: math.unit(120, "feet"),
  3623. default: true
  3624. },
  3625. {
  3626. name: "Macro+",
  3627. height: math.unit(300, "feet")
  3628. },
  3629. {
  3630. name: "Megamacro",
  3631. height: math.unit(20000, "feet")
  3632. }
  3633. ]
  3634. ))
  3635. characterMakers.push(() => makeCharacter(
  3636. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3637. {
  3638. front: {
  3639. height: math.unit(2, "meter"),
  3640. weight: math.unit(50, "kg"),
  3641. name: "Front",
  3642. image: {
  3643. source: "./media/characters/kalista/front.svg",
  3644. extra: 1947 / 1700,
  3645. bottom: 76.6 / 1412.98
  3646. }
  3647. },
  3648. back: {
  3649. height: math.unit(2, "meter"),
  3650. weight: math.unit(50, "kg"),
  3651. name: "Back",
  3652. image: {
  3653. source: "./media/characters/kalista/back.svg",
  3654. extra: 1366 / 1156,
  3655. bottom: 33.9 / 1362.78
  3656. }
  3657. }
  3658. },
  3659. [
  3660. {
  3661. name: "Uncomfortably Small",
  3662. height: math.unit(10, "feet")
  3663. },
  3664. {
  3665. name: "Small",
  3666. height: math.unit(30, "feet")
  3667. },
  3668. {
  3669. name: "Macro",
  3670. height: math.unit(100, "feet"),
  3671. default: true
  3672. },
  3673. {
  3674. name: "Macro+",
  3675. height: math.unit(2000, "feet")
  3676. },
  3677. {
  3678. name: "True Form",
  3679. height: math.unit(8924, "miles")
  3680. }
  3681. ]
  3682. ))
  3683. characterMakers.push(() => makeCharacter(
  3684. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3685. {
  3686. front: {
  3687. height: math.unit(2, "meter"),
  3688. weight: math.unit(120, "kg"),
  3689. name: "Front",
  3690. image: {
  3691. source: "./media/characters/ggv/front.svg"
  3692. }
  3693. },
  3694. side: {
  3695. height: math.unit(2, "meter"),
  3696. weight: math.unit(120, "kg"),
  3697. name: "Side",
  3698. image: {
  3699. source: "./media/characters/ggv/side.svg"
  3700. }
  3701. }
  3702. },
  3703. [
  3704. {
  3705. name: "Extremely Puny",
  3706. height: math.unit(9 + 5 / 12, "feet")
  3707. },
  3708. {
  3709. name: "Horribly Small",
  3710. height: math.unit(47.7, "miles"),
  3711. default: true
  3712. },
  3713. {
  3714. name: "Reasonably Sized",
  3715. height: math.unit(25000, "parsecs")
  3716. },
  3717. {
  3718. name: "Slightly Uncompressed",
  3719. height: math.unit(7.77e31, "parsecs")
  3720. },
  3721. {
  3722. name: "Omniversal",
  3723. height: math.unit(1e300, "meters")
  3724. },
  3725. ]
  3726. ))
  3727. characterMakers.push(() => makeCharacter(
  3728. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3729. {
  3730. front: {
  3731. height: math.unit(2, "meter"),
  3732. weight: math.unit(75, "lb"),
  3733. name: "Front",
  3734. image: {
  3735. source: "./media/characters/napalm/front.svg"
  3736. }
  3737. },
  3738. back: {
  3739. height: math.unit(2, "meter"),
  3740. weight: math.unit(75, "lb"),
  3741. name: "Back",
  3742. image: {
  3743. source: "./media/characters/napalm/back.svg"
  3744. }
  3745. }
  3746. },
  3747. [
  3748. {
  3749. name: "Standard",
  3750. height: math.unit(55, "feet"),
  3751. default: true
  3752. }
  3753. ]
  3754. ))
  3755. characterMakers.push(() => makeCharacter(
  3756. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3757. {
  3758. front: {
  3759. height: math.unit(7 + 5 / 6, "feet"),
  3760. weight: math.unit(325, "lb"),
  3761. name: "Front",
  3762. image: {
  3763. source: "./media/characters/asana/front.svg",
  3764. extra: 1133 / 1060,
  3765. bottom: 15.2 / 1148.6
  3766. }
  3767. },
  3768. back: {
  3769. height: math.unit(7 + 5 / 6, "feet"),
  3770. weight: math.unit(325, "lb"),
  3771. name: "Back",
  3772. image: {
  3773. source: "./media/characters/asana/back.svg",
  3774. extra: 1114 / 1043,
  3775. bottom: 5 / 1120
  3776. }
  3777. },
  3778. dressedDark: {
  3779. height: math.unit(7 + 5 / 6, "feet"),
  3780. weight: math.unit(325, "lb"),
  3781. name: "Dressed (Dark)",
  3782. image: {
  3783. source: "./media/characters/asana/dressed-dark.svg",
  3784. extra: 1133 / 1060,
  3785. bottom: 15.2 / 1148.6
  3786. }
  3787. },
  3788. dressedLight: {
  3789. height: math.unit(7 + 5 / 6, "feet"),
  3790. weight: math.unit(325, "lb"),
  3791. name: "Dressed (Light)",
  3792. image: {
  3793. source: "./media/characters/asana/dressed-light.svg",
  3794. extra: 1133 / 1060,
  3795. bottom: 15.2 / 1148.6
  3796. }
  3797. },
  3798. },
  3799. [
  3800. {
  3801. name: "Standard",
  3802. height: math.unit(7 + 5 / 6, "feet"),
  3803. default: true
  3804. },
  3805. {
  3806. name: "Large",
  3807. height: math.unit(10, "meters")
  3808. },
  3809. {
  3810. name: "Macro",
  3811. height: math.unit(2500, "meters")
  3812. },
  3813. {
  3814. name: "Megamacro",
  3815. height: math.unit(5e6, "meters")
  3816. },
  3817. {
  3818. name: "Examacro",
  3819. height: math.unit(5e12, "lightyears")
  3820. },
  3821. {
  3822. name: "Max Size",
  3823. height: math.unit(1e31, "lightyears")
  3824. }
  3825. ]
  3826. ))
  3827. characterMakers.push(() => makeCharacter(
  3828. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3829. {
  3830. front: {
  3831. height: math.unit(2, "meter"),
  3832. weight: math.unit(60, "kg"),
  3833. name: "Front",
  3834. image: {
  3835. source: "./media/characters/ebony/front.svg",
  3836. bottom: 0.03,
  3837. extra: 1045 / 810 + 0.03
  3838. }
  3839. },
  3840. side: {
  3841. height: math.unit(2, "meter"),
  3842. weight: math.unit(60, "kg"),
  3843. name: "Side",
  3844. image: {
  3845. source: "./media/characters/ebony/side.svg",
  3846. bottom: 0.03,
  3847. extra: 1045 / 810 + 0.03
  3848. }
  3849. },
  3850. back: {
  3851. height: math.unit(2, "meter"),
  3852. weight: math.unit(60, "kg"),
  3853. name: "Back",
  3854. image: {
  3855. source: "./media/characters/ebony/back.svg",
  3856. bottom: 0.01,
  3857. extra: 1045 / 810 + 0.01
  3858. }
  3859. },
  3860. },
  3861. [
  3862. // TODO check why I did this lol
  3863. {
  3864. name: "Standard",
  3865. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3866. default: true
  3867. },
  3868. {
  3869. name: "Macro",
  3870. height: math.unit(200, "feet")
  3871. },
  3872. {
  3873. name: "Gigamacro",
  3874. height: math.unit(13000, "km")
  3875. }
  3876. ]
  3877. ))
  3878. characterMakers.push(() => makeCharacter(
  3879. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3880. {
  3881. front: {
  3882. height: math.unit(6, "feet"),
  3883. weight: math.unit(175, "lb"),
  3884. name: "Front",
  3885. image: {
  3886. source: "./media/characters/mountain/front.svg",
  3887. extra: 972 / 955,
  3888. bottom: 64 / 1036.6
  3889. }
  3890. },
  3891. back: {
  3892. height: math.unit(6, "feet"),
  3893. weight: math.unit(175, "lb"),
  3894. name: "Back",
  3895. image: {
  3896. source: "./media/characters/mountain/back.svg",
  3897. extra: 970 / 950,
  3898. bottom: 28.25 / 999
  3899. }
  3900. },
  3901. },
  3902. [
  3903. {
  3904. name: "Large",
  3905. height: math.unit(20, "meters")
  3906. },
  3907. {
  3908. name: "Macro",
  3909. height: math.unit(300, "meters")
  3910. },
  3911. {
  3912. name: "Gigamacro",
  3913. height: math.unit(10000, "km"),
  3914. default: true
  3915. },
  3916. {
  3917. name: "Examacro",
  3918. height: math.unit(10e9, "lightyears")
  3919. }
  3920. ]
  3921. ))
  3922. characterMakers.push(() => makeCharacter(
  3923. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3924. {
  3925. front: {
  3926. height: math.unit(8, "feet"),
  3927. weight: math.unit(500, "lb"),
  3928. name: "Front",
  3929. image: {
  3930. source: "./media/characters/rick/front.svg"
  3931. }
  3932. }
  3933. },
  3934. [
  3935. {
  3936. name: "Normal",
  3937. height: math.unit(8, "feet"),
  3938. default: true
  3939. },
  3940. {
  3941. name: "Macro",
  3942. height: math.unit(5, "km")
  3943. }
  3944. ]
  3945. ))
  3946. characterMakers.push(() => makeCharacter(
  3947. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3948. {
  3949. front: {
  3950. height: math.unit(8, "feet"),
  3951. weight: math.unit(120, "lb"),
  3952. name: "Front",
  3953. image: {
  3954. source: "./media/characters/ona/front.svg"
  3955. }
  3956. },
  3957. frontAlt: {
  3958. height: math.unit(8, "feet"),
  3959. weight: math.unit(120, "lb"),
  3960. name: "Front (Alt)",
  3961. image: {
  3962. source: "./media/characters/ona/front-alt.svg"
  3963. }
  3964. },
  3965. back: {
  3966. height: math.unit(8, "feet"),
  3967. weight: math.unit(120, "lb"),
  3968. name: "Back",
  3969. image: {
  3970. source: "./media/characters/ona/back.svg"
  3971. }
  3972. },
  3973. foot: {
  3974. height: math.unit(1.1, "feet"),
  3975. name: "Foot",
  3976. image: {
  3977. source: "./media/characters/ona/foot.svg"
  3978. }
  3979. }
  3980. },
  3981. [
  3982. {
  3983. name: "Megamacro",
  3984. height: math.unit(70, "km"),
  3985. default: true
  3986. },
  3987. {
  3988. name: "Gigamacro",
  3989. height: math.unit(681818, "miles")
  3990. },
  3991. {
  3992. name: "Examacro",
  3993. height: math.unit(3800000, "lightyears")
  3994. },
  3995. ]
  3996. ))
  3997. characterMakers.push(() => makeCharacter(
  3998. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3999. {
  4000. front: {
  4001. height: math.unit(12, "feet"),
  4002. weight: math.unit(3000, "lb"),
  4003. name: "Front",
  4004. image: {
  4005. source: "./media/characters/mech/front.svg",
  4006. extra: 2900 / 2770,
  4007. bottom: 110 / 3010
  4008. }
  4009. },
  4010. back: {
  4011. height: math.unit(12, "feet"),
  4012. weight: math.unit(3000, "lb"),
  4013. name: "Back",
  4014. image: {
  4015. source: "./media/characters/mech/back.svg",
  4016. extra: 3011 / 2890,
  4017. bottom: 94 / 3105
  4018. }
  4019. },
  4020. maw: {
  4021. height: math.unit(3.07, "feet"),
  4022. name: "Maw",
  4023. image: {
  4024. source: "./media/characters/mech/maw.svg"
  4025. }
  4026. },
  4027. head: {
  4028. height: math.unit(2.82, "feet"),
  4029. name: "Head",
  4030. image: {
  4031. source: "./media/characters/mech/head.svg"
  4032. }
  4033. },
  4034. dick: {
  4035. height: math.unit(1.43, "feet"),
  4036. name: "Dick",
  4037. image: {
  4038. source: "./media/characters/mech/dick.svg"
  4039. }
  4040. },
  4041. },
  4042. [
  4043. {
  4044. name: "Normal",
  4045. height: math.unit(12, "feet")
  4046. },
  4047. {
  4048. name: "Macro",
  4049. height: math.unit(300, "feet"),
  4050. default: true
  4051. },
  4052. {
  4053. name: "Macro+",
  4054. height: math.unit(1500, "feet")
  4055. },
  4056. ]
  4057. ))
  4058. characterMakers.push(() => makeCharacter(
  4059. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4060. {
  4061. front: {
  4062. height: math.unit(1.3, "meter"),
  4063. weight: math.unit(30, "kg"),
  4064. name: "Front",
  4065. image: {
  4066. source: "./media/characters/gregory/front.svg",
  4067. }
  4068. }
  4069. },
  4070. [
  4071. {
  4072. name: "Normal",
  4073. height: math.unit(1.3, "meter"),
  4074. default: true
  4075. },
  4076. {
  4077. name: "Macro",
  4078. height: math.unit(20, "meter")
  4079. }
  4080. ]
  4081. ))
  4082. characterMakers.push(() => makeCharacter(
  4083. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4084. {
  4085. front: {
  4086. height: math.unit(2.8, "meter"),
  4087. weight: math.unit(200, "kg"),
  4088. name: "Front",
  4089. image: {
  4090. source: "./media/characters/elory/front.svg",
  4091. }
  4092. }
  4093. },
  4094. [
  4095. {
  4096. name: "Normal",
  4097. height: math.unit(2.8, "meter"),
  4098. default: true
  4099. },
  4100. {
  4101. name: "Macro",
  4102. height: math.unit(38, "meter")
  4103. }
  4104. ]
  4105. ))
  4106. characterMakers.push(() => makeCharacter(
  4107. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4108. {
  4109. front: {
  4110. height: math.unit(470, "feet"),
  4111. weight: math.unit(924, "tons"),
  4112. name: "Front",
  4113. image: {
  4114. source: "./media/characters/angelpatamon/front.svg",
  4115. }
  4116. }
  4117. },
  4118. [
  4119. {
  4120. name: "Normal",
  4121. height: math.unit(470, "feet"),
  4122. default: true
  4123. },
  4124. {
  4125. name: "Deity Size I",
  4126. height: math.unit(28651.2, "km")
  4127. },
  4128. {
  4129. name: "Deity Size II",
  4130. height: math.unit(171907.2, "km")
  4131. }
  4132. ]
  4133. ))
  4134. characterMakers.push(() => makeCharacter(
  4135. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4136. {
  4137. side: {
  4138. height: math.unit(7.2, "meter"),
  4139. weight: math.unit(8.2, "tons"),
  4140. name: "Side",
  4141. image: {
  4142. source: "./media/characters/cryae/side.svg",
  4143. extra: 3500 / 1500
  4144. }
  4145. }
  4146. },
  4147. [
  4148. {
  4149. name: "Normal",
  4150. height: math.unit(7.2, "meter"),
  4151. default: true
  4152. }
  4153. ]
  4154. ))
  4155. characterMakers.push(() => makeCharacter(
  4156. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4157. {
  4158. front: {
  4159. height: math.unit(6, "feet"),
  4160. weight: math.unit(175, "lb"),
  4161. name: "Front",
  4162. image: {
  4163. source: "./media/characters/xera/front.svg",
  4164. extra: 2377 / 1972,
  4165. bottom: 75.5 / 2452
  4166. }
  4167. },
  4168. side: {
  4169. height: math.unit(6, "feet"),
  4170. weight: math.unit(175, "lb"),
  4171. name: "Side",
  4172. image: {
  4173. source: "./media/characters/xera/side.svg",
  4174. extra: 2345 / 2019,
  4175. bottom: 39.7 / 2384
  4176. }
  4177. },
  4178. back: {
  4179. height: math.unit(6, "feet"),
  4180. weight: math.unit(175, "lb"),
  4181. name: "Back",
  4182. image: {
  4183. source: "./media/characters/xera/back.svg",
  4184. extra: 2095 / 1984,
  4185. bottom: 67 / 2166
  4186. }
  4187. },
  4188. },
  4189. [
  4190. {
  4191. name: "Small",
  4192. height: math.unit(10, "feet")
  4193. },
  4194. {
  4195. name: "Macro",
  4196. height: math.unit(500, "meters"),
  4197. default: true
  4198. },
  4199. {
  4200. name: "Macro+",
  4201. height: math.unit(10, "km")
  4202. },
  4203. {
  4204. name: "Gigamacro",
  4205. height: math.unit(25000, "km")
  4206. },
  4207. {
  4208. name: "Teramacro",
  4209. height: math.unit(3e6, "km")
  4210. }
  4211. ]
  4212. ))
  4213. characterMakers.push(() => makeCharacter(
  4214. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4215. {
  4216. front: {
  4217. height: math.unit(6, "feet"),
  4218. weight: math.unit(175, "lb"),
  4219. name: "Front",
  4220. image: {
  4221. source: "./media/characters/nebula/front.svg",
  4222. extra: 2566 / 2362,
  4223. bottom: 81 / 2644
  4224. }
  4225. }
  4226. },
  4227. [
  4228. {
  4229. name: "Small",
  4230. height: math.unit(4.5, "meters")
  4231. },
  4232. {
  4233. name: "Macro",
  4234. height: math.unit(1500, "meters"),
  4235. default: true
  4236. },
  4237. {
  4238. name: "Megamacro",
  4239. height: math.unit(150, "km")
  4240. },
  4241. {
  4242. name: "Gigamacro",
  4243. height: math.unit(27000, "km")
  4244. }
  4245. ]
  4246. ))
  4247. characterMakers.push(() => makeCharacter(
  4248. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4249. {
  4250. front: {
  4251. height: math.unit(6, "feet"),
  4252. weight: math.unit(225, "lb"),
  4253. name: "Front",
  4254. image: {
  4255. source: "./media/characters/abysgar/front.svg"
  4256. }
  4257. }
  4258. },
  4259. [
  4260. {
  4261. name: "Small",
  4262. height: math.unit(4.5, "meters")
  4263. },
  4264. {
  4265. name: "Macro",
  4266. height: math.unit(1250, "meters"),
  4267. default: true
  4268. },
  4269. {
  4270. name: "Megamacro",
  4271. height: math.unit(125, "km")
  4272. },
  4273. {
  4274. name: "Gigamacro",
  4275. height: math.unit(26000, "km")
  4276. }
  4277. ]
  4278. ))
  4279. characterMakers.push(() => makeCharacter(
  4280. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4281. {
  4282. front: {
  4283. height: math.unit(6, "feet"),
  4284. weight: math.unit(180, "lb"),
  4285. name: "Front",
  4286. image: {
  4287. source: "./media/characters/yakuz/front.svg"
  4288. }
  4289. }
  4290. },
  4291. [
  4292. {
  4293. name: "Small",
  4294. height: math.unit(5, "meters")
  4295. },
  4296. {
  4297. name: "Macro",
  4298. height: math.unit(1500, "meters"),
  4299. default: true
  4300. },
  4301. {
  4302. name: "Megamacro",
  4303. height: math.unit(200, "km")
  4304. },
  4305. {
  4306. name: "Gigamacro",
  4307. height: math.unit(100000, "km")
  4308. }
  4309. ]
  4310. ))
  4311. characterMakers.push(() => makeCharacter(
  4312. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4313. {
  4314. front: {
  4315. height: math.unit(6, "feet"),
  4316. weight: math.unit(175, "lb"),
  4317. name: "Front",
  4318. image: {
  4319. source: "./media/characters/mirova/front.svg",
  4320. extra: 3334 / 3071,
  4321. bottom: 42 / 3375.6
  4322. }
  4323. }
  4324. },
  4325. [
  4326. {
  4327. name: "Small",
  4328. height: math.unit(5, "meters")
  4329. },
  4330. {
  4331. name: "Macro",
  4332. height: math.unit(900, "meters"),
  4333. default: true
  4334. },
  4335. {
  4336. name: "Megamacro",
  4337. height: math.unit(135, "km")
  4338. },
  4339. {
  4340. name: "Gigamacro",
  4341. height: math.unit(20000, "km")
  4342. }
  4343. ]
  4344. ))
  4345. characterMakers.push(() => makeCharacter(
  4346. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4347. {
  4348. side: {
  4349. height: math.unit(28.35, "feet"),
  4350. weight: math.unit(99.75, "tons"),
  4351. name: "Side",
  4352. image: {
  4353. source: "./media/characters/asana-mech/side.svg",
  4354. extra: 923 / 699,
  4355. bottom: 50 / 975
  4356. }
  4357. },
  4358. chaingun: {
  4359. height: math.unit(7, "feet"),
  4360. weight: math.unit(2400, "lb"),
  4361. name: "Chaingun",
  4362. image: {
  4363. source: "./media/characters/asana-mech/chaingun.svg"
  4364. }
  4365. },
  4366. laser: {
  4367. height: math.unit(7.12, "feet"),
  4368. weight: math.unit(2000, "lb"),
  4369. name: "Laser",
  4370. image: {
  4371. source: "./media/characters/asana-mech/laser.svg"
  4372. }
  4373. },
  4374. },
  4375. [
  4376. {
  4377. name: "Normal",
  4378. height: math.unit(28.35, "feet"),
  4379. default: true
  4380. },
  4381. {
  4382. name: "Macro",
  4383. height: math.unit(2500, "feet")
  4384. },
  4385. {
  4386. name: "Megamacro",
  4387. height: math.unit(25, "miles")
  4388. },
  4389. {
  4390. name: "Examacro",
  4391. height: math.unit(6e8, "lightyears")
  4392. },
  4393. ]
  4394. ))
  4395. characterMakers.push(() => makeCharacter(
  4396. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4397. {
  4398. front: {
  4399. height: math.unit(5, "meters"),
  4400. weight: math.unit(1000, "kg"),
  4401. name: "Front",
  4402. image: {
  4403. source: "./media/characters/asche/front.svg",
  4404. extra: 1258 / 1190,
  4405. bottom: 47 / 1305
  4406. }
  4407. },
  4408. frontUnderwear: {
  4409. height: math.unit(5, "meters"),
  4410. weight: math.unit(1000, "kg"),
  4411. name: "Front (Underwear)",
  4412. image: {
  4413. source: "./media/characters/asche/front-underwear.svg",
  4414. extra: 1258 / 1190,
  4415. bottom: 47 / 1305
  4416. }
  4417. },
  4418. frontDressed: {
  4419. height: math.unit(5, "meters"),
  4420. weight: math.unit(1000, "kg"),
  4421. name: "Front (Dressed)",
  4422. image: {
  4423. source: "./media/characters/asche/front-dressed.svg",
  4424. extra: 1258 / 1190,
  4425. bottom: 47 / 1305
  4426. }
  4427. },
  4428. frontArmor: {
  4429. height: math.unit(5, "meters"),
  4430. weight: math.unit(1000, "kg"),
  4431. name: "Front (Armored)",
  4432. image: {
  4433. source: "./media/characters/asche/front-armored.svg",
  4434. extra: 1374 / 1308,
  4435. bottom: 23 / 1397
  4436. }
  4437. },
  4438. mp724: {
  4439. height: math.unit(0.96, "meters"),
  4440. weight: math.unit(38, "kg"),
  4441. name: "H&K MP724",
  4442. image: {
  4443. source: "./media/characters/asche/h&k-mp724.svg"
  4444. }
  4445. },
  4446. side: {
  4447. height: math.unit(5, "meters"),
  4448. weight: math.unit(1000, "kg"),
  4449. name: "Side",
  4450. image: {
  4451. source: "./media/characters/asche/side.svg",
  4452. extra: 1717 / 1609,
  4453. bottom: 0.005
  4454. }
  4455. },
  4456. back: {
  4457. height: math.unit(5, "meters"),
  4458. weight: math.unit(1000, "kg"),
  4459. name: "Back",
  4460. image: {
  4461. source: "./media/characters/asche/back.svg",
  4462. extra: 1570 / 1501
  4463. }
  4464. },
  4465. },
  4466. [
  4467. {
  4468. name: "DEFCON 5",
  4469. height: math.unit(5, "meters")
  4470. },
  4471. {
  4472. name: "DEFCON 4",
  4473. height: math.unit(500, "meters"),
  4474. default: true
  4475. },
  4476. {
  4477. name: "DEFCON 3",
  4478. height: math.unit(5, "km")
  4479. },
  4480. {
  4481. name: "DEFCON 2",
  4482. height: math.unit(500, "km")
  4483. },
  4484. {
  4485. name: "DEFCON 1",
  4486. height: math.unit(500000, "km")
  4487. },
  4488. {
  4489. name: "DEFCON 0",
  4490. height: math.unit(3, "gigaparsecs")
  4491. },
  4492. ]
  4493. ))
  4494. characterMakers.push(() => makeCharacter(
  4495. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4496. {
  4497. front: {
  4498. height: math.unit(2, "meters"),
  4499. weight: math.unit(76, "kg"),
  4500. name: "Front",
  4501. image: {
  4502. source: "./media/characters/gale/front.svg"
  4503. }
  4504. },
  4505. frontAlt1: {
  4506. height: math.unit(2, "meters"),
  4507. weight: math.unit(76, "kg"),
  4508. name: "Front (Alt 1)",
  4509. image: {
  4510. source: "./media/characters/gale/front-alt-1.svg"
  4511. }
  4512. },
  4513. frontAlt2: {
  4514. height: math.unit(2, "meters"),
  4515. weight: math.unit(76, "kg"),
  4516. name: "Front (Alt 2)",
  4517. image: {
  4518. source: "./media/characters/gale/front-alt-2.svg"
  4519. }
  4520. },
  4521. },
  4522. [
  4523. {
  4524. name: "Normal",
  4525. height: math.unit(7, "feet")
  4526. },
  4527. {
  4528. name: "Macro",
  4529. height: math.unit(150, "feet"),
  4530. default: true
  4531. },
  4532. {
  4533. name: "Macro+",
  4534. height: math.unit(300, "feet")
  4535. },
  4536. ]
  4537. ))
  4538. characterMakers.push(() => makeCharacter(
  4539. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4540. {
  4541. front: {
  4542. height: math.unit(5 + 10/12, "feet"),
  4543. weight: math.unit(67, "kg"),
  4544. name: "Front",
  4545. image: {
  4546. source: "./media/characters/draylen/front.svg",
  4547. extra: 832/777,
  4548. bottom: 85/917
  4549. }
  4550. }
  4551. },
  4552. [
  4553. {
  4554. name: "Normal",
  4555. height: math.unit(5 + 10/12, "feet")
  4556. },
  4557. {
  4558. name: "Macro",
  4559. height: math.unit(150, "feet"),
  4560. default: true
  4561. }
  4562. ]
  4563. ))
  4564. characterMakers.push(() => makeCharacter(
  4565. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4566. {
  4567. front: {
  4568. height: math.unit(7 + 9 / 12, "feet"),
  4569. weight: math.unit(379, "lbs"),
  4570. name: "Front",
  4571. image: {
  4572. source: "./media/characters/chez/front.svg"
  4573. }
  4574. },
  4575. side: {
  4576. height: math.unit(7 + 9 / 12, "feet"),
  4577. weight: math.unit(379, "lbs"),
  4578. name: "Side",
  4579. image: {
  4580. source: "./media/characters/chez/side.svg"
  4581. }
  4582. }
  4583. },
  4584. [
  4585. {
  4586. name: "Normal",
  4587. height: math.unit(7 + 9 / 12, "feet"),
  4588. default: true
  4589. },
  4590. {
  4591. name: "God King",
  4592. height: math.unit(9750000, "meters")
  4593. }
  4594. ]
  4595. ))
  4596. characterMakers.push(() => makeCharacter(
  4597. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4598. {
  4599. front: {
  4600. height: math.unit(6, "feet"),
  4601. weight: math.unit(275, "lbs"),
  4602. name: "Front",
  4603. image: {
  4604. source: "./media/characters/kaylum/front.svg",
  4605. bottom: 0.01,
  4606. extra: 1166 / 1031
  4607. }
  4608. },
  4609. frontWingless: {
  4610. height: math.unit(6, "feet"),
  4611. weight: math.unit(275, "lbs"),
  4612. name: "Front (Wingless)",
  4613. image: {
  4614. source: "./media/characters/kaylum/front-wingless.svg",
  4615. bottom: 0.01,
  4616. extra: 1117 / 1031
  4617. }
  4618. }
  4619. },
  4620. [
  4621. {
  4622. name: "Normal",
  4623. height: math.unit(3.05, "meters")
  4624. },
  4625. {
  4626. name: "Master",
  4627. height: math.unit(5.5, "meters")
  4628. },
  4629. {
  4630. name: "Rampage",
  4631. height: math.unit(19, "meters")
  4632. },
  4633. {
  4634. name: "Macro Lite",
  4635. height: math.unit(37, "meters")
  4636. },
  4637. {
  4638. name: "Hyper Predator",
  4639. height: math.unit(61, "meters")
  4640. },
  4641. {
  4642. name: "Macro",
  4643. height: math.unit(138, "meters"),
  4644. default: true
  4645. }
  4646. ]
  4647. ))
  4648. characterMakers.push(() => makeCharacter(
  4649. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4650. {
  4651. front: {
  4652. height: math.unit(6, "feet"),
  4653. weight: math.unit(150, "lbs"),
  4654. name: "Front",
  4655. image: {
  4656. source: "./media/characters/geta/front.svg"
  4657. }
  4658. }
  4659. },
  4660. [
  4661. {
  4662. name: "Micro",
  4663. height: math.unit(3, "inches"),
  4664. default: true
  4665. },
  4666. {
  4667. name: "Normal",
  4668. height: math.unit(5 + 5 / 12, "feet")
  4669. }
  4670. ]
  4671. ))
  4672. characterMakers.push(() => makeCharacter(
  4673. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4674. {
  4675. front: {
  4676. height: math.unit(6, "feet"),
  4677. weight: math.unit(300, "lbs"),
  4678. name: "Front",
  4679. image: {
  4680. source: "./media/characters/tyrnn/front.svg"
  4681. }
  4682. }
  4683. },
  4684. [
  4685. {
  4686. name: "Main Height",
  4687. height: math.unit(355, "feet"),
  4688. default: true
  4689. },
  4690. {
  4691. name: "Fave. Height",
  4692. height: math.unit(2400, "feet")
  4693. }
  4694. ]
  4695. ))
  4696. characterMakers.push(() => makeCharacter(
  4697. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4698. {
  4699. front: {
  4700. height: math.unit(6, "feet"),
  4701. weight: math.unit(300, "lbs"),
  4702. name: "Front",
  4703. image: {
  4704. source: "./media/characters/appledectomy/front.svg"
  4705. }
  4706. }
  4707. },
  4708. [
  4709. {
  4710. name: "Macro",
  4711. height: math.unit(2500, "feet")
  4712. },
  4713. {
  4714. name: "Megamacro",
  4715. height: math.unit(50, "miles"),
  4716. default: true
  4717. },
  4718. {
  4719. name: "Gigamacro",
  4720. height: math.unit(5000, "miles")
  4721. },
  4722. {
  4723. name: "Teramacro",
  4724. height: math.unit(250000, "miles")
  4725. },
  4726. ]
  4727. ))
  4728. characterMakers.push(() => makeCharacter(
  4729. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4730. {
  4731. front: {
  4732. height: math.unit(6, "feet"),
  4733. weight: math.unit(200, "lbs"),
  4734. name: "Front",
  4735. image: {
  4736. source: "./media/characters/vulpes/front.svg",
  4737. extra: 573 / 543,
  4738. bottom: 0.033
  4739. }
  4740. },
  4741. side: {
  4742. height: math.unit(6, "feet"),
  4743. weight: math.unit(200, "lbs"),
  4744. name: "Side",
  4745. image: {
  4746. source: "./media/characters/vulpes/side.svg",
  4747. extra: 577 / 549,
  4748. bottom: 11 / 588
  4749. }
  4750. },
  4751. back: {
  4752. height: math.unit(6, "feet"),
  4753. weight: math.unit(200, "lbs"),
  4754. name: "Back",
  4755. image: {
  4756. source: "./media/characters/vulpes/back.svg",
  4757. extra: 573 / 549,
  4758. bottom: 20 / 593
  4759. }
  4760. },
  4761. feet: {
  4762. height: math.unit(1.276, "feet"),
  4763. name: "Feet",
  4764. image: {
  4765. source: "./media/characters/vulpes/feet.svg"
  4766. }
  4767. },
  4768. maw: {
  4769. height: math.unit(1.18, "feet"),
  4770. name: "Maw",
  4771. image: {
  4772. source: "./media/characters/vulpes/maw.svg"
  4773. }
  4774. },
  4775. },
  4776. [
  4777. {
  4778. name: "Micro",
  4779. height: math.unit(2, "inches")
  4780. },
  4781. {
  4782. name: "Normal",
  4783. height: math.unit(6.3, "feet")
  4784. },
  4785. {
  4786. name: "Macro",
  4787. height: math.unit(850, "feet")
  4788. },
  4789. {
  4790. name: "Megamacro",
  4791. height: math.unit(7500, "feet"),
  4792. default: true
  4793. },
  4794. {
  4795. name: "Gigamacro",
  4796. height: math.unit(570000, "miles")
  4797. }
  4798. ]
  4799. ))
  4800. characterMakers.push(() => makeCharacter(
  4801. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4802. {
  4803. front: {
  4804. height: math.unit(6, "feet"),
  4805. weight: math.unit(210, "lbs"),
  4806. name: "Front",
  4807. image: {
  4808. source: "./media/characters/rain-fallen/front.svg"
  4809. }
  4810. },
  4811. side: {
  4812. height: math.unit(6, "feet"),
  4813. weight: math.unit(210, "lbs"),
  4814. name: "Side",
  4815. image: {
  4816. source: "./media/characters/rain-fallen/side.svg"
  4817. }
  4818. },
  4819. back: {
  4820. height: math.unit(6, "feet"),
  4821. weight: math.unit(210, "lbs"),
  4822. name: "Back",
  4823. image: {
  4824. source: "./media/characters/rain-fallen/back.svg"
  4825. }
  4826. },
  4827. feral: {
  4828. height: math.unit(9, "feet"),
  4829. weight: math.unit(700, "lbs"),
  4830. name: "Feral",
  4831. image: {
  4832. source: "./media/characters/rain-fallen/feral.svg"
  4833. }
  4834. },
  4835. },
  4836. [
  4837. {
  4838. name: "Meddling with Mortals",
  4839. height: math.unit(8 + 8/12, "feet")
  4840. },
  4841. {
  4842. name: "Normal",
  4843. height: math.unit(5, "meter")
  4844. },
  4845. {
  4846. name: "Macro",
  4847. height: math.unit(150, "meter"),
  4848. default: true
  4849. },
  4850. {
  4851. name: "Megamacro",
  4852. height: math.unit(278e6, "meter")
  4853. },
  4854. {
  4855. name: "Gigamacro",
  4856. height: math.unit(2e9, "meter")
  4857. },
  4858. {
  4859. name: "Teramacro",
  4860. height: math.unit(8e12, "meter")
  4861. },
  4862. {
  4863. name: "Devourer",
  4864. height: math.unit(14, "zettameters")
  4865. },
  4866. {
  4867. name: "Scarlet King",
  4868. height: math.unit(18, "yottameters")
  4869. },
  4870. {
  4871. name: "Void",
  4872. height: math.unit(1e88, "yottameters")
  4873. }
  4874. ]
  4875. ))
  4876. characterMakers.push(() => makeCharacter(
  4877. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4878. {
  4879. standing: {
  4880. height: math.unit(6, "feet"),
  4881. weight: math.unit(180, "lbs"),
  4882. name: "Standing",
  4883. image: {
  4884. source: "./media/characters/zaakira/standing.svg",
  4885. extra: 1599/1504,
  4886. bottom: 39/1638
  4887. }
  4888. },
  4889. laying: {
  4890. height: math.unit(3, "feet"),
  4891. weight: math.unit(180, "lbs"),
  4892. name: "Laying",
  4893. image: {
  4894. source: "./media/characters/zaakira/laying.svg"
  4895. }
  4896. },
  4897. },
  4898. [
  4899. {
  4900. name: "Normal",
  4901. height: math.unit(12, "feet")
  4902. },
  4903. {
  4904. name: "Macro",
  4905. height: math.unit(279, "feet"),
  4906. default: true
  4907. }
  4908. ]
  4909. ))
  4910. characterMakers.push(() => makeCharacter(
  4911. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4912. {
  4913. femSfw: {
  4914. height: math.unit(8, "feet"),
  4915. weight: math.unit(350, "lb"),
  4916. name: "Fem",
  4917. image: {
  4918. source: "./media/characters/sigvald/fem-sfw.svg",
  4919. extra: 182 / 164,
  4920. bottom: 8.7 / 190.5
  4921. }
  4922. },
  4923. femNsfw: {
  4924. height: math.unit(8, "feet"),
  4925. weight: math.unit(350, "lb"),
  4926. name: "Fem (NSFW)",
  4927. image: {
  4928. source: "./media/characters/sigvald/fem-nsfw.svg",
  4929. extra: 182 / 164,
  4930. bottom: 8.7 / 190.5
  4931. }
  4932. },
  4933. maleNsfw: {
  4934. height: math.unit(8, "feet"),
  4935. weight: math.unit(350, "lb"),
  4936. name: "Male (NSFW)",
  4937. image: {
  4938. source: "./media/characters/sigvald/male-nsfw.svg",
  4939. extra: 182 / 164,
  4940. bottom: 8.7 / 190.5
  4941. }
  4942. },
  4943. hermNsfw: {
  4944. height: math.unit(8, "feet"),
  4945. weight: math.unit(350, "lb"),
  4946. name: "Herm (NSFW)",
  4947. image: {
  4948. source: "./media/characters/sigvald/herm-nsfw.svg",
  4949. extra: 182 / 164,
  4950. bottom: 8.7 / 190.5
  4951. }
  4952. },
  4953. dick: {
  4954. height: math.unit(2.36, "feet"),
  4955. name: "Dick",
  4956. image: {
  4957. source: "./media/characters/sigvald/dick.svg"
  4958. }
  4959. },
  4960. eye: {
  4961. height: math.unit(0.31, "feet"),
  4962. name: "Eye",
  4963. image: {
  4964. source: "./media/characters/sigvald/eye.svg"
  4965. }
  4966. },
  4967. mouth: {
  4968. height: math.unit(0.92, "feet"),
  4969. name: "Mouth",
  4970. image: {
  4971. source: "./media/characters/sigvald/mouth.svg"
  4972. }
  4973. },
  4974. paws: {
  4975. height: math.unit(2.2, "feet"),
  4976. name: "Paws",
  4977. image: {
  4978. source: "./media/characters/sigvald/paws.svg"
  4979. }
  4980. }
  4981. },
  4982. [
  4983. {
  4984. name: "Normal",
  4985. height: math.unit(8, "feet")
  4986. },
  4987. {
  4988. name: "Large",
  4989. height: math.unit(12, "feet")
  4990. },
  4991. {
  4992. name: "Larger",
  4993. height: math.unit(20, "feet")
  4994. },
  4995. {
  4996. name: "Macro",
  4997. height: math.unit(150, "feet")
  4998. },
  4999. {
  5000. name: "Macro+",
  5001. height: math.unit(200, "feet"),
  5002. default: true
  5003. },
  5004. ]
  5005. ))
  5006. characterMakers.push(() => makeCharacter(
  5007. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5008. {
  5009. side: {
  5010. height: math.unit(12, "feet"),
  5011. weight: math.unit(2000, "kg"),
  5012. name: "Side",
  5013. image: {
  5014. source: "./media/characters/scott/side.svg",
  5015. extra: 754 / 724,
  5016. bottom: 0.069
  5017. }
  5018. },
  5019. upright: {
  5020. height: math.unit(12, "feet"),
  5021. weight: math.unit(2000, "kg"),
  5022. name: "Upright",
  5023. image: {
  5024. source: "./media/characters/scott/upright.svg",
  5025. extra: 3881 / 3722,
  5026. bottom: 0.05
  5027. }
  5028. },
  5029. },
  5030. [
  5031. {
  5032. name: "Normal",
  5033. height: math.unit(12, "feet"),
  5034. default: true
  5035. },
  5036. ]
  5037. ))
  5038. characterMakers.push(() => makeCharacter(
  5039. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5040. {
  5041. side: {
  5042. height: math.unit(8, "meters"),
  5043. weight: math.unit(84755, "lbs"),
  5044. name: "Side",
  5045. image: {
  5046. source: "./media/characters/tobias/side.svg",
  5047. extra: 1474 / 1096,
  5048. bottom: 38.9 / 1513.1235
  5049. }
  5050. },
  5051. },
  5052. [
  5053. {
  5054. name: "Normal",
  5055. height: math.unit(8, "meters"),
  5056. default: true
  5057. },
  5058. ]
  5059. ))
  5060. characterMakers.push(() => makeCharacter(
  5061. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5062. {
  5063. front: {
  5064. height: math.unit(5.5, "feet"),
  5065. weight: math.unit(400, "lbs"),
  5066. name: "Front",
  5067. image: {
  5068. source: "./media/characters/kieran/front.svg",
  5069. extra: 2694 / 2364,
  5070. bottom: 217 / 2908
  5071. }
  5072. },
  5073. side: {
  5074. height: math.unit(5.5, "feet"),
  5075. weight: math.unit(400, "lbs"),
  5076. name: "Side",
  5077. image: {
  5078. source: "./media/characters/kieran/side.svg",
  5079. extra: 875 / 777,
  5080. bottom: 84.6 / 959
  5081. }
  5082. },
  5083. },
  5084. [
  5085. {
  5086. name: "Normal",
  5087. height: math.unit(5.5, "feet"),
  5088. default: true
  5089. },
  5090. ]
  5091. ))
  5092. characterMakers.push(() => makeCharacter(
  5093. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5094. {
  5095. side: {
  5096. height: math.unit(2, "meters"),
  5097. weight: math.unit(70, "kg"),
  5098. name: "Side",
  5099. image: {
  5100. source: "./media/characters/sanya/side.svg",
  5101. bottom: 0.02,
  5102. extra: 1.02
  5103. }
  5104. },
  5105. },
  5106. [
  5107. {
  5108. name: "Small",
  5109. height: math.unit(2, "meters")
  5110. },
  5111. {
  5112. name: "Normal",
  5113. height: math.unit(3, "meters")
  5114. },
  5115. {
  5116. name: "Macro",
  5117. height: math.unit(16, "meters"),
  5118. default: true
  5119. },
  5120. ]
  5121. ))
  5122. characterMakers.push(() => makeCharacter(
  5123. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5124. {
  5125. front: {
  5126. height: math.unit(2, "meters"),
  5127. weight: math.unit(120, "kg"),
  5128. name: "Front",
  5129. image: {
  5130. source: "./media/characters/miranda/front.svg",
  5131. extra: 195 / 185,
  5132. bottom: 10.9 / 206.5
  5133. }
  5134. },
  5135. back: {
  5136. height: math.unit(2, "meters"),
  5137. weight: math.unit(120, "kg"),
  5138. name: "Back",
  5139. image: {
  5140. source: "./media/characters/miranda/back.svg",
  5141. extra: 201 / 193,
  5142. bottom: 2.3 / 203.7
  5143. }
  5144. },
  5145. },
  5146. [
  5147. {
  5148. name: "Normal",
  5149. height: math.unit(10, "feet"),
  5150. default: true
  5151. }
  5152. ]
  5153. ))
  5154. characterMakers.push(() => makeCharacter(
  5155. { name: "James", species: ["deer"], tags: ["anthro"] },
  5156. {
  5157. side: {
  5158. height: math.unit(2, "meters"),
  5159. weight: math.unit(100, "kg"),
  5160. name: "Front",
  5161. image: {
  5162. source: "./media/characters/james/front.svg",
  5163. extra: 10 / 8.5
  5164. }
  5165. },
  5166. },
  5167. [
  5168. {
  5169. name: "Normal",
  5170. height: math.unit(8.5, "feet"),
  5171. default: true
  5172. }
  5173. ]
  5174. ))
  5175. characterMakers.push(() => makeCharacter(
  5176. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5177. {
  5178. side: {
  5179. height: math.unit(9.5, "feet"),
  5180. weight: math.unit(2500, "lbs"),
  5181. name: "Side",
  5182. image: {
  5183. source: "./media/characters/heather/side.svg"
  5184. }
  5185. },
  5186. },
  5187. [
  5188. {
  5189. name: "Normal",
  5190. height: math.unit(9.5, "feet"),
  5191. default: true
  5192. }
  5193. ]
  5194. ))
  5195. characterMakers.push(() => makeCharacter(
  5196. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5197. {
  5198. side: {
  5199. height: math.unit(6.5, "feet"),
  5200. weight: math.unit(400, "lbs"),
  5201. name: "Side",
  5202. image: {
  5203. source: "./media/characters/lukas/side.svg",
  5204. extra: 7.25 / 6.5
  5205. }
  5206. },
  5207. },
  5208. [
  5209. {
  5210. name: "Normal",
  5211. height: math.unit(6.5, "feet"),
  5212. default: true
  5213. }
  5214. ]
  5215. ))
  5216. characterMakers.push(() => makeCharacter(
  5217. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5218. {
  5219. side: {
  5220. height: math.unit(5, "feet"),
  5221. weight: math.unit(3000, "lbs"),
  5222. name: "Side",
  5223. image: {
  5224. source: "./media/characters/louise/side.svg"
  5225. }
  5226. },
  5227. },
  5228. [
  5229. {
  5230. name: "Normal",
  5231. height: math.unit(5, "feet"),
  5232. default: true
  5233. }
  5234. ]
  5235. ))
  5236. characterMakers.push(() => makeCharacter(
  5237. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5238. {
  5239. side: {
  5240. height: math.unit(6, "feet"),
  5241. weight: math.unit(150, "lbs"),
  5242. name: "Side",
  5243. image: {
  5244. source: "./media/characters/ramona/side.svg"
  5245. }
  5246. },
  5247. },
  5248. [
  5249. {
  5250. name: "Normal",
  5251. height: math.unit(5.3, "meters"),
  5252. default: true
  5253. },
  5254. {
  5255. name: "Macro",
  5256. height: math.unit(20, "stories")
  5257. },
  5258. {
  5259. name: "Macro+",
  5260. height: math.unit(50, "stories")
  5261. },
  5262. ]
  5263. ))
  5264. characterMakers.push(() => makeCharacter(
  5265. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5266. {
  5267. standing: {
  5268. height: math.unit(5.75, "feet"),
  5269. weight: math.unit(160, "lbs"),
  5270. name: "Standing",
  5271. image: {
  5272. source: "./media/characters/deerpuff/standing.svg",
  5273. extra: 682 / 624
  5274. }
  5275. },
  5276. sitting: {
  5277. height: math.unit(5.75 / 1.79, "feet"),
  5278. weight: math.unit(160, "lbs"),
  5279. name: "Sitting",
  5280. image: {
  5281. source: "./media/characters/deerpuff/sitting.svg",
  5282. bottom: 44 / 400,
  5283. extra: 1
  5284. }
  5285. },
  5286. taurLaying: {
  5287. height: math.unit(6, "feet"),
  5288. weight: math.unit(400, "lbs"),
  5289. name: "Taur (Laying)",
  5290. image: {
  5291. source: "./media/characters/deerpuff/taur-laying.svg"
  5292. }
  5293. },
  5294. },
  5295. [
  5296. {
  5297. name: "Puffball",
  5298. height: math.unit(6, "inches")
  5299. },
  5300. {
  5301. name: "Normalpuff",
  5302. height: math.unit(5.75, "feet")
  5303. },
  5304. {
  5305. name: "Macropuff",
  5306. height: math.unit(1500, "feet"),
  5307. default: true
  5308. },
  5309. {
  5310. name: "Megapuff",
  5311. height: math.unit(500, "miles")
  5312. },
  5313. {
  5314. name: "Gigapuff",
  5315. height: math.unit(250000, "miles")
  5316. },
  5317. {
  5318. name: "Omegapuff",
  5319. height: math.unit(1000, "lightyears")
  5320. },
  5321. ]
  5322. ))
  5323. characterMakers.push(() => makeCharacter(
  5324. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5325. {
  5326. stomping: {
  5327. height: math.unit(6, "feet"),
  5328. weight: math.unit(170, "lbs"),
  5329. name: "Stomping",
  5330. image: {
  5331. source: "./media/characters/vivian/stomping.svg"
  5332. }
  5333. },
  5334. sitting: {
  5335. height: math.unit(6 / 1.75, "feet"),
  5336. weight: math.unit(170, "lbs"),
  5337. name: "Sitting",
  5338. image: {
  5339. source: "./media/characters/vivian/sitting.svg",
  5340. bottom: 1 / 6.4,
  5341. extra: 1,
  5342. }
  5343. },
  5344. },
  5345. [
  5346. {
  5347. name: "Normal",
  5348. height: math.unit(7, "feet"),
  5349. default: true
  5350. },
  5351. {
  5352. name: "Macro",
  5353. height: math.unit(10, "stories")
  5354. },
  5355. {
  5356. name: "Macro+",
  5357. height: math.unit(30, "stories")
  5358. },
  5359. {
  5360. name: "Megamacro",
  5361. height: math.unit(10, "miles")
  5362. },
  5363. {
  5364. name: "Megamacro+",
  5365. height: math.unit(2750000, "meters")
  5366. },
  5367. ]
  5368. ))
  5369. characterMakers.push(() => makeCharacter(
  5370. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5371. {
  5372. front: {
  5373. height: math.unit(6, "feet"),
  5374. weight: math.unit(160, "lbs"),
  5375. name: "Front",
  5376. image: {
  5377. source: "./media/characters/prince/front.svg",
  5378. extra: 3400 / 3000
  5379. }
  5380. },
  5381. jumping: {
  5382. height: math.unit(6, "feet"),
  5383. weight: math.unit(160, "lbs"),
  5384. name: "Jumping",
  5385. image: {
  5386. source: "./media/characters/prince/jump.svg",
  5387. extra: 2555 / 2134
  5388. }
  5389. },
  5390. },
  5391. [
  5392. {
  5393. name: "Normal",
  5394. height: math.unit(7.75, "feet"),
  5395. default: true
  5396. },
  5397. {
  5398. name: "Not cute",
  5399. height: math.unit(17, "feet")
  5400. },
  5401. {
  5402. name: "I said NOT",
  5403. height: math.unit(91, "feet")
  5404. },
  5405. {
  5406. name: "Please stop",
  5407. height: math.unit(560, "feet")
  5408. },
  5409. {
  5410. name: "What have you done",
  5411. height: math.unit(2200, "feet")
  5412. },
  5413. {
  5414. name: "Deer God",
  5415. height: math.unit(3.6, "miles")
  5416. },
  5417. ]
  5418. ))
  5419. characterMakers.push(() => makeCharacter(
  5420. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5421. {
  5422. standing: {
  5423. height: math.unit(6, "feet"),
  5424. weight: math.unit(300, "lbs"),
  5425. name: "Standing",
  5426. image: {
  5427. source: "./media/characters/psymon/standing.svg",
  5428. extra: 1888 / 1810,
  5429. bottom: 0.05
  5430. }
  5431. },
  5432. slithering: {
  5433. height: math.unit(6, "feet"),
  5434. weight: math.unit(300, "lbs"),
  5435. name: "Slithering",
  5436. image: {
  5437. source: "./media/characters/psymon/slithering.svg",
  5438. extra: 1330 / 1224
  5439. }
  5440. },
  5441. slitheringAlt: {
  5442. height: math.unit(6, "feet"),
  5443. weight: math.unit(300, "lbs"),
  5444. name: "Slithering (Alt)",
  5445. image: {
  5446. source: "./media/characters/psymon/slithering-alt.svg",
  5447. extra: 1330 / 1224
  5448. }
  5449. },
  5450. },
  5451. [
  5452. {
  5453. name: "Normal",
  5454. height: math.unit(11.25, "feet"),
  5455. default: true
  5456. },
  5457. {
  5458. name: "Large",
  5459. height: math.unit(27, "feet")
  5460. },
  5461. {
  5462. name: "Giant",
  5463. height: math.unit(87, "feet")
  5464. },
  5465. {
  5466. name: "Macro",
  5467. height: math.unit(365, "feet")
  5468. },
  5469. {
  5470. name: "Megamacro",
  5471. height: math.unit(3, "miles")
  5472. },
  5473. {
  5474. name: "World Serpent",
  5475. height: math.unit(8000, "miles")
  5476. },
  5477. ]
  5478. ))
  5479. characterMakers.push(() => makeCharacter(
  5480. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5481. {
  5482. front: {
  5483. height: math.unit(6, "feet"),
  5484. weight: math.unit(180, "lbs"),
  5485. name: "Front",
  5486. image: {
  5487. source: "./media/characters/daimos/front.svg",
  5488. extra: 4160 / 3897,
  5489. bottom: 0.021
  5490. }
  5491. }
  5492. },
  5493. [
  5494. {
  5495. name: "Normal",
  5496. height: math.unit(8, "feet"),
  5497. default: true
  5498. },
  5499. {
  5500. name: "Big Dog",
  5501. height: math.unit(22, "feet")
  5502. },
  5503. {
  5504. name: "Macro",
  5505. height: math.unit(127, "feet")
  5506. },
  5507. {
  5508. name: "Megamacro",
  5509. height: math.unit(3600, "feet")
  5510. },
  5511. ]
  5512. ))
  5513. characterMakers.push(() => makeCharacter(
  5514. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5515. {
  5516. side: {
  5517. height: math.unit(6, "feet"),
  5518. weight: math.unit(180, "lbs"),
  5519. name: "Side",
  5520. image: {
  5521. source: "./media/characters/blake/side.svg",
  5522. extra: 1212 / 1120,
  5523. bottom: 0.05
  5524. }
  5525. },
  5526. crouched: {
  5527. height: math.unit(6 * 0.57, "feet"),
  5528. weight: math.unit(180, "lbs"),
  5529. name: "Crouched",
  5530. image: {
  5531. source: "./media/characters/blake/crouched.svg",
  5532. extra: 840 / 587,
  5533. bottom: 0.04
  5534. }
  5535. },
  5536. bent: {
  5537. height: math.unit(6 * 0.75, "feet"),
  5538. weight: math.unit(180, "lbs"),
  5539. name: "Bent",
  5540. image: {
  5541. source: "./media/characters/blake/bent.svg",
  5542. extra: 592 / 544,
  5543. bottom: 0.035
  5544. }
  5545. },
  5546. },
  5547. [
  5548. {
  5549. name: "Normal",
  5550. height: math.unit(8 + 1 / 6, "feet"),
  5551. default: true
  5552. },
  5553. {
  5554. name: "Big Backside",
  5555. height: math.unit(37, "feet")
  5556. },
  5557. {
  5558. name: "Subway Shredder",
  5559. height: math.unit(72, "feet")
  5560. },
  5561. {
  5562. name: "City Carver",
  5563. height: math.unit(1675, "feet")
  5564. },
  5565. {
  5566. name: "Tectonic Tweaker",
  5567. height: math.unit(2300, "miles")
  5568. },
  5569. ]
  5570. ))
  5571. characterMakers.push(() => makeCharacter(
  5572. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5573. {
  5574. front: {
  5575. height: math.unit(6, "feet"),
  5576. weight: math.unit(180, "lbs"),
  5577. name: "Front",
  5578. image: {
  5579. source: "./media/characters/guisetto/front.svg",
  5580. extra: 856 / 817,
  5581. bottom: 0.06
  5582. }
  5583. },
  5584. airborne: {
  5585. height: math.unit(6, "feet"),
  5586. weight: math.unit(180, "lbs"),
  5587. name: "Airborne",
  5588. image: {
  5589. source: "./media/characters/guisetto/airborne.svg",
  5590. extra: 584 / 525
  5591. }
  5592. },
  5593. },
  5594. [
  5595. {
  5596. name: "Normal",
  5597. height: math.unit(10 + 11 / 12, "feet"),
  5598. default: true
  5599. },
  5600. {
  5601. name: "Large",
  5602. height: math.unit(35, "feet")
  5603. },
  5604. {
  5605. name: "Macro",
  5606. height: math.unit(475, "feet")
  5607. },
  5608. ]
  5609. ))
  5610. characterMakers.push(() => makeCharacter(
  5611. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5612. {
  5613. front: {
  5614. height: math.unit(6, "feet"),
  5615. weight: math.unit(180, "lbs"),
  5616. name: "Front",
  5617. image: {
  5618. source: "./media/characters/luxor/front.svg",
  5619. extra: 2940 / 2152
  5620. }
  5621. },
  5622. back: {
  5623. height: math.unit(6, "feet"),
  5624. weight: math.unit(180, "lbs"),
  5625. name: "Back",
  5626. image: {
  5627. source: "./media/characters/luxor/back.svg",
  5628. extra: 1083 / 960
  5629. }
  5630. },
  5631. },
  5632. [
  5633. {
  5634. name: "Normal",
  5635. height: math.unit(5 + 5 / 6, "feet"),
  5636. default: true
  5637. },
  5638. {
  5639. name: "Lamp",
  5640. height: math.unit(50, "feet")
  5641. },
  5642. {
  5643. name: "Lämp",
  5644. height: math.unit(300, "feet")
  5645. },
  5646. {
  5647. name: "The sun is a lamp",
  5648. height: math.unit(250000, "miles")
  5649. },
  5650. ]
  5651. ))
  5652. characterMakers.push(() => makeCharacter(
  5653. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5654. {
  5655. front: {
  5656. height: math.unit(6, "feet"),
  5657. weight: math.unit(50, "lbs"),
  5658. name: "Front",
  5659. image: {
  5660. source: "./media/characters/huoyan/front.svg"
  5661. }
  5662. },
  5663. side: {
  5664. height: math.unit(6, "feet"),
  5665. weight: math.unit(180, "lbs"),
  5666. name: "Side",
  5667. image: {
  5668. source: "./media/characters/huoyan/side.svg"
  5669. }
  5670. },
  5671. },
  5672. [
  5673. {
  5674. name: "Chef",
  5675. height: math.unit(9, "feet")
  5676. },
  5677. {
  5678. name: "Normal",
  5679. height: math.unit(65, "feet"),
  5680. default: true
  5681. },
  5682. {
  5683. name: "Macro",
  5684. height: math.unit(780, "feet")
  5685. },
  5686. {
  5687. name: "Flaming Mountain",
  5688. height: math.unit(4.8, "miles")
  5689. },
  5690. {
  5691. name: "Celestial",
  5692. height: math.unit(765000, "miles")
  5693. },
  5694. ]
  5695. ))
  5696. characterMakers.push(() => makeCharacter(
  5697. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5698. {
  5699. front: {
  5700. height: math.unit(5 + 3 / 4, "feet"),
  5701. weight: math.unit(120, "lbs"),
  5702. name: "Front",
  5703. image: {
  5704. source: "./media/characters/tails/front.svg"
  5705. }
  5706. }
  5707. },
  5708. [
  5709. {
  5710. name: "Normal",
  5711. height: math.unit(5 + 3 / 4, "feet"),
  5712. default: true
  5713. }
  5714. ]
  5715. ))
  5716. characterMakers.push(() => makeCharacter(
  5717. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5718. {
  5719. front: {
  5720. height: math.unit(4, "feet"),
  5721. weight: math.unit(50, "lbs"),
  5722. name: "Front",
  5723. image: {
  5724. source: "./media/characters/rainy/front.svg"
  5725. }
  5726. }
  5727. },
  5728. [
  5729. {
  5730. name: "Macro",
  5731. height: math.unit(800, "feet"),
  5732. default: true
  5733. }
  5734. ]
  5735. ))
  5736. characterMakers.push(() => makeCharacter(
  5737. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5738. {
  5739. front: {
  5740. height: math.unit(6, "feet"),
  5741. weight: math.unit(150, "lbs"),
  5742. name: "Front",
  5743. image: {
  5744. source: "./media/characters/rainier/front.svg"
  5745. }
  5746. }
  5747. },
  5748. [
  5749. {
  5750. name: "Micro",
  5751. height: math.unit(2, "mm"),
  5752. default: true
  5753. }
  5754. ]
  5755. ))
  5756. characterMakers.push(() => makeCharacter(
  5757. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5758. {
  5759. front: {
  5760. height: math.unit(8 + 4/12, "feet"),
  5761. name: "Front",
  5762. image: {
  5763. source: "./media/characters/andy-renard/front.svg",
  5764. extra: 1839/1726,
  5765. bottom: 134/1973
  5766. }
  5767. },
  5768. back: {
  5769. height: math.unit(8 + 4/12, "feet"),
  5770. name: "Back",
  5771. image: {
  5772. source: "./media/characters/andy-renard/back.svg",
  5773. extra: 1838/1710,
  5774. bottom: 105/1943
  5775. }
  5776. },
  5777. },
  5778. [
  5779. {
  5780. name: "Tall",
  5781. height: math.unit(8 + 4/12, "feet")
  5782. },
  5783. {
  5784. name: "Mini Macro",
  5785. height: math.unit(15, "feet"),
  5786. default: true
  5787. },
  5788. {
  5789. name: "Macro",
  5790. height: math.unit(100, "feet")
  5791. },
  5792. {
  5793. name: "Mega Macro",
  5794. height: math.unit(1000, "feet")
  5795. },
  5796. {
  5797. name: "Giga Macro",
  5798. height: math.unit(10, "miles")
  5799. },
  5800. {
  5801. name: "God Macro",
  5802. height: math.unit(1, "multiverse")
  5803. },
  5804. ]
  5805. ))
  5806. characterMakers.push(() => makeCharacter(
  5807. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5808. {
  5809. front: {
  5810. height: math.unit(6, "feet"),
  5811. weight: math.unit(210, "lbs"),
  5812. name: "Front",
  5813. image: {
  5814. source: "./media/characters/cimmaron/front-sfw.svg",
  5815. extra: 701 / 676,
  5816. bottom: 0.046
  5817. }
  5818. },
  5819. back: {
  5820. height: math.unit(6, "feet"),
  5821. weight: math.unit(210, "lbs"),
  5822. name: "Back",
  5823. image: {
  5824. source: "./media/characters/cimmaron/back-sfw.svg",
  5825. extra: 701 / 676,
  5826. bottom: 0.046
  5827. }
  5828. },
  5829. frontNsfw: {
  5830. height: math.unit(6, "feet"),
  5831. weight: math.unit(210, "lbs"),
  5832. name: "Front (NSFW)",
  5833. image: {
  5834. source: "./media/characters/cimmaron/front-nsfw.svg",
  5835. extra: 701 / 676,
  5836. bottom: 0.046
  5837. }
  5838. },
  5839. backNsfw: {
  5840. height: math.unit(6, "feet"),
  5841. weight: math.unit(210, "lbs"),
  5842. name: "Back (NSFW)",
  5843. image: {
  5844. source: "./media/characters/cimmaron/back-nsfw.svg",
  5845. extra: 701 / 676,
  5846. bottom: 0.046
  5847. }
  5848. },
  5849. dick: {
  5850. height: math.unit(1.714, "feet"),
  5851. name: "Dick",
  5852. image: {
  5853. source: "./media/characters/cimmaron/dick.svg"
  5854. }
  5855. },
  5856. },
  5857. [
  5858. {
  5859. name: "Normal",
  5860. height: math.unit(6, "feet"),
  5861. default: true
  5862. },
  5863. {
  5864. name: "Macro Mayor",
  5865. height: math.unit(350, "meters")
  5866. },
  5867. ]
  5868. ))
  5869. characterMakers.push(() => makeCharacter(
  5870. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5871. {
  5872. front: {
  5873. height: math.unit(6, "feet"),
  5874. weight: math.unit(200, "lbs"),
  5875. name: "Front",
  5876. image: {
  5877. source: "./media/characters/akari/front.svg",
  5878. extra: 962 / 901,
  5879. bottom: 0.04
  5880. }
  5881. }
  5882. },
  5883. [
  5884. {
  5885. name: "Micro",
  5886. height: math.unit(5, "inches"),
  5887. default: true
  5888. },
  5889. {
  5890. name: "Normal",
  5891. height: math.unit(7, "feet")
  5892. },
  5893. ]
  5894. ))
  5895. characterMakers.push(() => makeCharacter(
  5896. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5897. {
  5898. front: {
  5899. height: math.unit(6, "feet"),
  5900. weight: math.unit(140, "lbs"),
  5901. name: "Front",
  5902. image: {
  5903. source: "./media/characters/cynosura/front.svg",
  5904. extra: 896 / 847
  5905. }
  5906. },
  5907. back: {
  5908. height: math.unit(6, "feet"),
  5909. weight: math.unit(140, "lbs"),
  5910. name: "Back",
  5911. image: {
  5912. source: "./media/characters/cynosura/back.svg",
  5913. extra: 1365 / 1250
  5914. }
  5915. },
  5916. },
  5917. [
  5918. {
  5919. name: "Micro",
  5920. height: math.unit(4, "inches")
  5921. },
  5922. {
  5923. name: "Normal",
  5924. height: math.unit(5.75, "feet"),
  5925. default: true
  5926. },
  5927. {
  5928. name: "Tall",
  5929. height: math.unit(10, "feet")
  5930. },
  5931. {
  5932. name: "Big",
  5933. height: math.unit(20, "feet")
  5934. },
  5935. {
  5936. name: "Macro",
  5937. height: math.unit(50, "feet")
  5938. },
  5939. ]
  5940. ))
  5941. characterMakers.push(() => makeCharacter(
  5942. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5943. {
  5944. front: {
  5945. height: math.unit(13 + 2/12, "feet"),
  5946. weight: math.unit(800, "kg"),
  5947. name: "Front",
  5948. image: {
  5949. source: "./media/characters/gin/front.svg",
  5950. extra: 1312/1191,
  5951. bottom: 45/1357
  5952. }
  5953. },
  5954. mouth: {
  5955. height: math.unit(2.39 * 1.8, "feet"),
  5956. name: "Mouth",
  5957. image: {
  5958. source: "./media/characters/gin/mouth.svg"
  5959. }
  5960. },
  5961. hand: {
  5962. height: math.unit(1.57 * 2.19, "feet"),
  5963. name: "Hand",
  5964. image: {
  5965. source: "./media/characters/gin/hand.svg"
  5966. }
  5967. },
  5968. foot: {
  5969. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5970. name: "Foot",
  5971. image: {
  5972. source: "./media/characters/gin/foot.svg"
  5973. }
  5974. },
  5975. sole: {
  5976. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5977. name: "Sole",
  5978. image: {
  5979. source: "./media/characters/gin/sole.svg"
  5980. }
  5981. },
  5982. },
  5983. [
  5984. {
  5985. name: "Very Small",
  5986. height: math.unit(13 + 2 / 12, "feet")
  5987. },
  5988. {
  5989. name: "Micro",
  5990. height: math.unit(600, "miles")
  5991. },
  5992. {
  5993. name: "Regular",
  5994. height: math.unit(20, "earths"),
  5995. default: true
  5996. },
  5997. {
  5998. name: "Macro",
  5999. height: math.unit(2.2, "solarradii")
  6000. },
  6001. {
  6002. name: "Teramacro",
  6003. height: math.unit(1.2, "galaxies")
  6004. },
  6005. {
  6006. name: "Omegamacro",
  6007. height: math.unit(200, "universes")
  6008. },
  6009. ]
  6010. ))
  6011. characterMakers.push(() => makeCharacter(
  6012. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6013. {
  6014. front: {
  6015. height: math.unit(6 + 1 / 6, "feet"),
  6016. weight: math.unit(178, "lbs"),
  6017. name: "Front",
  6018. image: {
  6019. source: "./media/characters/guy/front.svg"
  6020. }
  6021. }
  6022. },
  6023. [
  6024. {
  6025. name: "Normal",
  6026. height: math.unit(6 + 1 / 6, "feet"),
  6027. default: true
  6028. },
  6029. {
  6030. name: "Large",
  6031. height: math.unit(25 + 7 / 12, "feet")
  6032. },
  6033. {
  6034. name: "Macro",
  6035. height: math.unit(60 + 9 / 12, "feet")
  6036. },
  6037. {
  6038. name: "Macro+",
  6039. height: math.unit(246, "feet")
  6040. },
  6041. {
  6042. name: "Macro++",
  6043. height: math.unit(878, "feet")
  6044. }
  6045. ]
  6046. ))
  6047. characterMakers.push(() => makeCharacter(
  6048. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6049. {
  6050. front: {
  6051. height: math.unit(9, "feet"),
  6052. weight: math.unit(800, "lbs"),
  6053. name: "Front",
  6054. image: {
  6055. source: "./media/characters/tiberius/front.svg",
  6056. extra: 2295 / 2071
  6057. }
  6058. },
  6059. back: {
  6060. height: math.unit(9, "feet"),
  6061. weight: math.unit(800, "lbs"),
  6062. name: "Back",
  6063. image: {
  6064. source: "./media/characters/tiberius/back.svg",
  6065. extra: 2373 / 2160
  6066. }
  6067. },
  6068. },
  6069. [
  6070. {
  6071. name: "Normal",
  6072. height: math.unit(9, "feet"),
  6073. default: true
  6074. }
  6075. ]
  6076. ))
  6077. characterMakers.push(() => makeCharacter(
  6078. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6079. {
  6080. front: {
  6081. height: math.unit(6, "feet"),
  6082. weight: math.unit(600, "lbs"),
  6083. name: "Front",
  6084. image: {
  6085. source: "./media/characters/surgo/front.svg",
  6086. extra: 3591 / 2227
  6087. }
  6088. },
  6089. back: {
  6090. height: math.unit(6, "feet"),
  6091. weight: math.unit(600, "lbs"),
  6092. name: "Back",
  6093. image: {
  6094. source: "./media/characters/surgo/back.svg",
  6095. extra: 3557 / 2228
  6096. }
  6097. },
  6098. laying: {
  6099. height: math.unit(6 * 0.85, "feet"),
  6100. weight: math.unit(600, "lbs"),
  6101. name: "Laying",
  6102. image: {
  6103. source: "./media/characters/surgo/laying.svg"
  6104. }
  6105. },
  6106. },
  6107. [
  6108. {
  6109. name: "Normal",
  6110. height: math.unit(6, "feet"),
  6111. default: true
  6112. }
  6113. ]
  6114. ))
  6115. characterMakers.push(() => makeCharacter(
  6116. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6117. {
  6118. side: {
  6119. height: math.unit(6, "feet"),
  6120. weight: math.unit(150, "lbs"),
  6121. name: "Side",
  6122. image: {
  6123. source: "./media/characters/cibus/side.svg",
  6124. extra: 800 / 400
  6125. }
  6126. },
  6127. },
  6128. [
  6129. {
  6130. name: "Normal",
  6131. height: math.unit(6, "feet"),
  6132. default: true
  6133. }
  6134. ]
  6135. ))
  6136. characterMakers.push(() => makeCharacter(
  6137. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6138. {
  6139. front: {
  6140. height: math.unit(6, "feet"),
  6141. weight: math.unit(240, "lbs"),
  6142. name: "Front",
  6143. image: {
  6144. source: "./media/characters/nibbles/front.svg"
  6145. }
  6146. },
  6147. side: {
  6148. height: math.unit(6, "feet"),
  6149. weight: math.unit(240, "lbs"),
  6150. name: "Side",
  6151. image: {
  6152. source: "./media/characters/nibbles/side.svg"
  6153. }
  6154. },
  6155. },
  6156. [
  6157. {
  6158. name: "Normal",
  6159. height: math.unit(9, "feet"),
  6160. default: true
  6161. }
  6162. ]
  6163. ))
  6164. characterMakers.push(() => makeCharacter(
  6165. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6166. {
  6167. side: {
  6168. height: math.unit(5 + 1 / 6, "feet"),
  6169. weight: math.unit(130, "lbs"),
  6170. name: "Side",
  6171. image: {
  6172. source: "./media/characters/rikky/side.svg",
  6173. extra: 851 / 801
  6174. }
  6175. },
  6176. },
  6177. [
  6178. {
  6179. name: "Normal",
  6180. height: math.unit(5 + 1 / 6, "feet")
  6181. },
  6182. {
  6183. name: "Macro",
  6184. height: math.unit(152, "feet"),
  6185. default: true
  6186. },
  6187. {
  6188. name: "Megamacro",
  6189. height: math.unit(7, "miles")
  6190. }
  6191. ]
  6192. ))
  6193. characterMakers.push(() => makeCharacter(
  6194. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6195. {
  6196. side: {
  6197. height: math.unit(370, "cm"),
  6198. weight: math.unit(350, "lbs"),
  6199. name: "Side",
  6200. image: {
  6201. source: "./media/characters/malfressa/side.svg"
  6202. }
  6203. },
  6204. walking: {
  6205. height: math.unit(370, "cm"),
  6206. weight: math.unit(350, "lbs"),
  6207. name: "Walking",
  6208. image: {
  6209. source: "./media/characters/malfressa/walking.svg"
  6210. }
  6211. },
  6212. feral: {
  6213. height: math.unit(2500, "cm"),
  6214. weight: math.unit(100000, "lbs"),
  6215. name: "Feral",
  6216. image: {
  6217. source: "./media/characters/malfressa/feral.svg",
  6218. extra: 2108 / 837,
  6219. bottom: 0.02
  6220. }
  6221. },
  6222. },
  6223. [
  6224. {
  6225. name: "Normal",
  6226. height: math.unit(370, "cm")
  6227. },
  6228. {
  6229. name: "Macro",
  6230. height: math.unit(300, "meters"),
  6231. default: true
  6232. }
  6233. ]
  6234. ))
  6235. characterMakers.push(() => makeCharacter(
  6236. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6237. {
  6238. front: {
  6239. height: math.unit(6, "feet"),
  6240. weight: math.unit(60, "kg"),
  6241. name: "Front",
  6242. image: {
  6243. source: "./media/characters/jaro/front.svg"
  6244. }
  6245. },
  6246. back: {
  6247. height: math.unit(6, "feet"),
  6248. weight: math.unit(60, "kg"),
  6249. name: "Back",
  6250. image: {
  6251. source: "./media/characters/jaro/back.svg"
  6252. }
  6253. },
  6254. },
  6255. [
  6256. {
  6257. name: "Micro",
  6258. height: math.unit(7, "inches")
  6259. },
  6260. {
  6261. name: "Normal",
  6262. height: math.unit(5.5, "feet"),
  6263. default: true
  6264. },
  6265. {
  6266. name: "Minimacro",
  6267. height: math.unit(20, "feet")
  6268. },
  6269. {
  6270. name: "Macro",
  6271. height: math.unit(200, "meters")
  6272. }
  6273. ]
  6274. ))
  6275. characterMakers.push(() => makeCharacter(
  6276. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6277. {
  6278. front: {
  6279. height: math.unit(6, "feet"),
  6280. weight: math.unit(195, "lb"),
  6281. name: "Front",
  6282. image: {
  6283. source: "./media/characters/rogue/front.svg"
  6284. }
  6285. },
  6286. },
  6287. [
  6288. {
  6289. name: "Macro",
  6290. height: math.unit(90, "feet"),
  6291. default: true
  6292. },
  6293. ]
  6294. ))
  6295. characterMakers.push(() => makeCharacter(
  6296. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6297. {
  6298. front: {
  6299. height: math.unit(5 + 8 / 12, "feet"),
  6300. weight: math.unit(140, "lb"),
  6301. name: "Front",
  6302. image: {
  6303. source: "./media/characters/piper/front.svg",
  6304. extra: 3948/3655,
  6305. bottom: 0/3948
  6306. }
  6307. },
  6308. },
  6309. [
  6310. {
  6311. name: "Micro",
  6312. height: math.unit(2, "inches")
  6313. },
  6314. {
  6315. name: "Normal",
  6316. height: math.unit(5 + 8 / 12, "feet")
  6317. },
  6318. {
  6319. name: "Macro",
  6320. height: math.unit(250, "feet"),
  6321. default: true
  6322. },
  6323. {
  6324. name: "Megamacro",
  6325. height: math.unit(7, "miles")
  6326. },
  6327. ]
  6328. ))
  6329. characterMakers.push(() => makeCharacter(
  6330. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6331. {
  6332. front: {
  6333. height: math.unit(6, "feet"),
  6334. weight: math.unit(220, "lb"),
  6335. name: "Front",
  6336. image: {
  6337. source: "./media/characters/gemini/front.svg"
  6338. }
  6339. },
  6340. back: {
  6341. height: math.unit(6, "feet"),
  6342. weight: math.unit(220, "lb"),
  6343. name: "Back",
  6344. image: {
  6345. source: "./media/characters/gemini/back.svg"
  6346. }
  6347. },
  6348. kneeling: {
  6349. height: math.unit(6 / 1.5, "feet"),
  6350. weight: math.unit(220, "lb"),
  6351. name: "Kneeling",
  6352. image: {
  6353. source: "./media/characters/gemini/kneeling.svg",
  6354. bottom: 0.02
  6355. }
  6356. },
  6357. },
  6358. [
  6359. {
  6360. name: "Macro",
  6361. height: math.unit(300, "meters"),
  6362. default: true
  6363. },
  6364. {
  6365. name: "Megamacro",
  6366. height: math.unit(6900, "meters")
  6367. },
  6368. ]
  6369. ))
  6370. characterMakers.push(() => makeCharacter(
  6371. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6372. {
  6373. anthro: {
  6374. height: math.unit(2.35, "meters"),
  6375. weight: math.unit(73, "kg"),
  6376. name: "Anthro",
  6377. image: {
  6378. source: "./media/characters/alicia/anthro.svg",
  6379. extra: 2571 / 2385,
  6380. bottom: 75 / 2648
  6381. }
  6382. },
  6383. paw: {
  6384. height: math.unit(1.32, "feet"),
  6385. name: "Paw",
  6386. image: {
  6387. source: "./media/characters/alicia/paw.svg"
  6388. }
  6389. },
  6390. feral: {
  6391. height: math.unit(1.69, "meters"),
  6392. weight: math.unit(73, "kg"),
  6393. name: "Feral",
  6394. image: {
  6395. source: "./media/characters/alicia/feral.svg",
  6396. extra: 2123 / 1715,
  6397. bottom: 222 / 2349
  6398. }
  6399. },
  6400. },
  6401. [
  6402. {
  6403. name: "Normal",
  6404. height: math.unit(2.35, "meters")
  6405. },
  6406. {
  6407. name: "Macro",
  6408. height: math.unit(60, "meters"),
  6409. default: true
  6410. },
  6411. {
  6412. name: "Megamacro",
  6413. height: math.unit(10000, "kilometers")
  6414. },
  6415. ]
  6416. ))
  6417. characterMakers.push(() => makeCharacter(
  6418. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6419. {
  6420. front: {
  6421. height: math.unit(7, "feet"),
  6422. weight: math.unit(250, "lbs"),
  6423. name: "Front",
  6424. image: {
  6425. source: "./media/characters/archy/front.svg"
  6426. }
  6427. }
  6428. },
  6429. [
  6430. {
  6431. name: "Micro",
  6432. height: math.unit(1, "inch")
  6433. },
  6434. {
  6435. name: "Shorty",
  6436. height: math.unit(5, "feet")
  6437. },
  6438. {
  6439. name: "Normal",
  6440. height: math.unit(7, "feet")
  6441. },
  6442. {
  6443. name: "Macro",
  6444. height: math.unit(600, "meters"),
  6445. default: true
  6446. },
  6447. {
  6448. name: "Megamacro",
  6449. height: math.unit(1, "mile")
  6450. },
  6451. ]
  6452. ))
  6453. characterMakers.push(() => makeCharacter(
  6454. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6455. {
  6456. front: {
  6457. height: math.unit(1.65, "meters"),
  6458. weight: math.unit(74, "kg"),
  6459. name: "Front",
  6460. image: {
  6461. source: "./media/characters/berri/front.svg",
  6462. extra: 857 / 837,
  6463. bottom: 18 / 877
  6464. }
  6465. },
  6466. bum: {
  6467. height: math.unit(1.46, "feet"),
  6468. name: "Bum",
  6469. image: {
  6470. source: "./media/characters/berri/bum.svg"
  6471. }
  6472. },
  6473. mouth: {
  6474. height: math.unit(0.44, "feet"),
  6475. name: "Mouth",
  6476. image: {
  6477. source: "./media/characters/berri/mouth.svg"
  6478. }
  6479. },
  6480. paw: {
  6481. height: math.unit(0.826, "feet"),
  6482. name: "Paw",
  6483. image: {
  6484. source: "./media/characters/berri/paw.svg"
  6485. }
  6486. },
  6487. },
  6488. [
  6489. {
  6490. name: "Normal",
  6491. height: math.unit(1.65, "meters")
  6492. },
  6493. {
  6494. name: "Macro",
  6495. height: math.unit(60, "m"),
  6496. default: true
  6497. },
  6498. {
  6499. name: "Megamacro",
  6500. height: math.unit(9.213, "km")
  6501. },
  6502. {
  6503. name: "Planet Eater",
  6504. height: math.unit(489, "megameters")
  6505. },
  6506. {
  6507. name: "Teramacro",
  6508. height: math.unit(2471635000000, "meters")
  6509. },
  6510. {
  6511. name: "Examacro",
  6512. height: math.unit(8.0624e+26, "meters")
  6513. }
  6514. ]
  6515. ))
  6516. characterMakers.push(() => makeCharacter(
  6517. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6518. {
  6519. front: {
  6520. height: math.unit(1.72, "meters"),
  6521. weight: math.unit(68, "kg"),
  6522. name: "Front",
  6523. image: {
  6524. source: "./media/characters/lexi/front.svg"
  6525. }
  6526. }
  6527. },
  6528. [
  6529. {
  6530. name: "Very Smol",
  6531. height: math.unit(10, "mm")
  6532. },
  6533. {
  6534. name: "Micro",
  6535. height: math.unit(6.8, "cm"),
  6536. default: true
  6537. },
  6538. {
  6539. name: "Normal",
  6540. height: math.unit(1.72, "m")
  6541. }
  6542. ]
  6543. ))
  6544. characterMakers.push(() => makeCharacter(
  6545. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6546. {
  6547. front: {
  6548. height: math.unit(1.69, "meters"),
  6549. weight: math.unit(68, "kg"),
  6550. name: "Front",
  6551. image: {
  6552. source: "./media/characters/martin/front.svg",
  6553. extra: 596 / 581
  6554. }
  6555. }
  6556. },
  6557. [
  6558. {
  6559. name: "Micro",
  6560. height: math.unit(6.85, "cm"),
  6561. default: true
  6562. },
  6563. {
  6564. name: "Normal",
  6565. height: math.unit(1.69, "m")
  6566. }
  6567. ]
  6568. ))
  6569. characterMakers.push(() => makeCharacter(
  6570. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6571. {
  6572. front: {
  6573. height: math.unit(1.69, "meters"),
  6574. weight: math.unit(68, "kg"),
  6575. name: "Front",
  6576. image: {
  6577. source: "./media/characters/juno/front.svg"
  6578. }
  6579. }
  6580. },
  6581. [
  6582. {
  6583. name: "Micro",
  6584. height: math.unit(7, "cm")
  6585. },
  6586. {
  6587. name: "Normal",
  6588. height: math.unit(1.89, "m")
  6589. },
  6590. {
  6591. name: "Macro",
  6592. height: math.unit(353, "meters"),
  6593. default: true
  6594. }
  6595. ]
  6596. ))
  6597. characterMakers.push(() => makeCharacter(
  6598. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6599. {
  6600. front: {
  6601. height: math.unit(1.93, "meters"),
  6602. weight: math.unit(83, "kg"),
  6603. name: "Front",
  6604. image: {
  6605. source: "./media/characters/samantha/front.svg"
  6606. }
  6607. },
  6608. frontClothed: {
  6609. height: math.unit(1.93, "meters"),
  6610. weight: math.unit(83, "kg"),
  6611. name: "Front (Clothed)",
  6612. image: {
  6613. source: "./media/characters/samantha/front-clothed.svg"
  6614. }
  6615. },
  6616. back: {
  6617. height: math.unit(1.93, "meters"),
  6618. weight: math.unit(83, "kg"),
  6619. name: "Back",
  6620. image: {
  6621. source: "./media/characters/samantha/back.svg"
  6622. }
  6623. },
  6624. },
  6625. [
  6626. {
  6627. name: "Normal",
  6628. height: math.unit(1.93, "m")
  6629. },
  6630. {
  6631. name: "Macro",
  6632. height: math.unit(74, "meters"),
  6633. default: true
  6634. },
  6635. {
  6636. name: "Macro+",
  6637. height: math.unit(223, "meters"),
  6638. },
  6639. {
  6640. name: "Megamacro",
  6641. height: math.unit(8381, "meters"),
  6642. },
  6643. {
  6644. name: "Megamacro+",
  6645. height: math.unit(12000, "kilometers")
  6646. },
  6647. ]
  6648. ))
  6649. characterMakers.push(() => makeCharacter(
  6650. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6651. {
  6652. front: {
  6653. height: math.unit(1.92, "meters"),
  6654. weight: math.unit(80, "kg"),
  6655. name: "Front",
  6656. image: {
  6657. source: "./media/characters/dr-clay/front.svg"
  6658. }
  6659. },
  6660. frontClothed: {
  6661. height: math.unit(1.92, "meters"),
  6662. weight: math.unit(80, "kg"),
  6663. name: "Front (Clothed)",
  6664. image: {
  6665. source: "./media/characters/dr-clay/front-clothed.svg"
  6666. }
  6667. }
  6668. },
  6669. [
  6670. {
  6671. name: "Normal",
  6672. height: math.unit(1.92, "m")
  6673. },
  6674. {
  6675. name: "Macro",
  6676. height: math.unit(214, "meters"),
  6677. default: true
  6678. },
  6679. {
  6680. name: "Macro+",
  6681. height: math.unit(12.237, "meters"),
  6682. },
  6683. {
  6684. name: "Megamacro",
  6685. height: math.unit(557, "megameters"),
  6686. },
  6687. {
  6688. name: "Unimaginable",
  6689. height: math.unit(120e9, "lightyears")
  6690. },
  6691. ]
  6692. ))
  6693. characterMakers.push(() => makeCharacter(
  6694. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6695. {
  6696. front: {
  6697. height: math.unit(2, "meters"),
  6698. weight: math.unit(80, "kg"),
  6699. name: "Front",
  6700. image: {
  6701. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6702. }
  6703. }
  6704. },
  6705. [
  6706. {
  6707. name: "Teramacro",
  6708. height: math.unit(500000, "lightyears"),
  6709. default: true
  6710. },
  6711. ]
  6712. ))
  6713. characterMakers.push(() => makeCharacter(
  6714. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6715. {
  6716. crux: {
  6717. height: math.unit(2, "meters"),
  6718. weight: math.unit(150, "kg"),
  6719. name: "Crux",
  6720. image: {
  6721. source: "./media/characters/vemus/crux.svg",
  6722. extra: 1074/936,
  6723. bottom: 23/1097
  6724. }
  6725. },
  6726. skunkTanuki: {
  6727. height: math.unit(2, "meters"),
  6728. weight: math.unit(150, "kg"),
  6729. name: "Skunk-Tanuki",
  6730. image: {
  6731. source: "./media/characters/vemus/skunk-tanuki.svg",
  6732. extra: 926/893,
  6733. bottom: 20/946
  6734. }
  6735. },
  6736. },
  6737. [
  6738. {
  6739. name: "Normal",
  6740. height: math.unit(3.75, "meters"),
  6741. default: true
  6742. },
  6743. {
  6744. name: "Big",
  6745. height: math.unit(8, "meters")
  6746. },
  6747. {
  6748. name: "Macro",
  6749. height: math.unit(100, "meters")
  6750. },
  6751. {
  6752. name: "Macro+",
  6753. height: math.unit(1500, "meters")
  6754. },
  6755. {
  6756. name: "Stellar",
  6757. height: math.unit(14e8, "meters")
  6758. },
  6759. ]
  6760. ))
  6761. characterMakers.push(() => makeCharacter(
  6762. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6763. {
  6764. front: {
  6765. height: math.unit(2, "meters"),
  6766. weight: math.unit(70, "kg"),
  6767. name: "Front",
  6768. image: {
  6769. source: "./media/characters/beherit/front.svg",
  6770. extra: 1408 / 1242
  6771. }
  6772. }
  6773. },
  6774. [
  6775. {
  6776. name: "Normal",
  6777. height: math.unit(6, "feet")
  6778. },
  6779. {
  6780. name: "Lorg",
  6781. height: math.unit(25, "feet"),
  6782. default: true
  6783. },
  6784. {
  6785. name: "Lorger",
  6786. height: math.unit(75, "feet")
  6787. },
  6788. {
  6789. name: "Macro",
  6790. height: math.unit(200, "meters")
  6791. },
  6792. ]
  6793. ))
  6794. characterMakers.push(() => makeCharacter(
  6795. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6796. {
  6797. front: {
  6798. height: math.unit(2, "meters"),
  6799. weight: math.unit(150, "kg"),
  6800. name: "Front",
  6801. image: {
  6802. source: "./media/characters/everett/front.svg",
  6803. extra: 2038 / 1737,
  6804. bottom: 0.03
  6805. }
  6806. },
  6807. paw: {
  6808. height: math.unit(2 / 3.6, "meters"),
  6809. name: "Paw",
  6810. image: {
  6811. source: "./media/characters/everett/paw.svg"
  6812. }
  6813. },
  6814. },
  6815. [
  6816. {
  6817. name: "Normal",
  6818. height: math.unit(15, "feet"),
  6819. default: true
  6820. },
  6821. {
  6822. name: "Lorg",
  6823. height: math.unit(70, "feet"),
  6824. default: true
  6825. },
  6826. {
  6827. name: "Lorger",
  6828. height: math.unit(250, "feet")
  6829. },
  6830. {
  6831. name: "Macro",
  6832. height: math.unit(500, "meters")
  6833. },
  6834. ]
  6835. ))
  6836. characterMakers.push(() => makeCharacter(
  6837. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6838. {
  6839. front: {
  6840. height: math.unit(2, "meters"),
  6841. weight: math.unit(86, "kg"),
  6842. name: "Front",
  6843. image: {
  6844. source: "./media/characters/rose/front.svg",
  6845. extra: 1785/1636,
  6846. bottom: 30/1815
  6847. }
  6848. },
  6849. frontSporty: {
  6850. height: math.unit(2, "meters"),
  6851. weight: math.unit(86, "kg"),
  6852. name: "Front (Sporty)",
  6853. image: {
  6854. source: "./media/characters/rose/front-sporty.svg",
  6855. extra: 350/335,
  6856. bottom: 10/360
  6857. }
  6858. },
  6859. frontAlt: {
  6860. height: math.unit(1.6, "meters"),
  6861. weight: math.unit(86, "kg"),
  6862. name: "Front (Alt)",
  6863. image: {
  6864. source: "./media/characters/rose/front-alt.svg",
  6865. extra: 299/283,
  6866. bottom: 3/302
  6867. }
  6868. },
  6869. plush: {
  6870. height: math.unit(2, "meters"),
  6871. weight: math.unit(86/3, "kg"),
  6872. name: "Plush",
  6873. image: {
  6874. source: "./media/characters/rose/plush.svg",
  6875. extra: 361/337,
  6876. bottom: 11/372
  6877. }
  6878. },
  6879. },
  6880. [
  6881. {
  6882. name: "True Micro",
  6883. height: math.unit(9, "cm")
  6884. },
  6885. {
  6886. name: "Micro",
  6887. height: math.unit(16, "cm")
  6888. },
  6889. {
  6890. name: "Normal",
  6891. height: math.unit(1.85, "meters"),
  6892. default: true
  6893. },
  6894. {
  6895. name: "Mini-Macro",
  6896. height: math.unit(5, "meters")
  6897. },
  6898. {
  6899. name: "Macro",
  6900. height: math.unit(15, "meters")
  6901. },
  6902. {
  6903. name: "True Macro",
  6904. height: math.unit(40, "meters")
  6905. },
  6906. {
  6907. name: "City Scale",
  6908. height: math.unit(1, "km")
  6909. },
  6910. ]
  6911. ))
  6912. characterMakers.push(() => makeCharacter(
  6913. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6914. {
  6915. front: {
  6916. height: math.unit(2, "meters"),
  6917. weight: math.unit(350, "lbs"),
  6918. name: "Front",
  6919. image: {
  6920. source: "./media/characters/regal/front.svg"
  6921. }
  6922. },
  6923. back: {
  6924. height: math.unit(2, "meters"),
  6925. weight: math.unit(350, "lbs"),
  6926. name: "Back",
  6927. image: {
  6928. source: "./media/characters/regal/back.svg"
  6929. }
  6930. },
  6931. },
  6932. [
  6933. {
  6934. name: "Macro",
  6935. height: math.unit(350, "feet"),
  6936. default: true
  6937. }
  6938. ]
  6939. ))
  6940. characterMakers.push(() => makeCharacter(
  6941. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6942. {
  6943. front: {
  6944. height: math.unit(4 + 11 / 12, "feet"),
  6945. weight: math.unit(100, "lbs"),
  6946. name: "Front",
  6947. image: {
  6948. source: "./media/characters/opal/front.svg"
  6949. }
  6950. },
  6951. frontAlt: {
  6952. height: math.unit(4 + 11 / 12, "feet"),
  6953. weight: math.unit(100, "lbs"),
  6954. name: "Front (Alt)",
  6955. image: {
  6956. source: "./media/characters/opal/front-alt.svg"
  6957. }
  6958. },
  6959. },
  6960. [
  6961. {
  6962. name: "Small",
  6963. height: math.unit(4 + 11 / 12, "feet")
  6964. },
  6965. {
  6966. name: "Normal",
  6967. height: math.unit(20, "feet"),
  6968. default: true
  6969. },
  6970. {
  6971. name: "Macro",
  6972. height: math.unit(120, "feet")
  6973. },
  6974. {
  6975. name: "Megamacro",
  6976. height: math.unit(80, "miles")
  6977. },
  6978. {
  6979. name: "True Size",
  6980. height: math.unit(100000, "lightyears")
  6981. },
  6982. ]
  6983. ))
  6984. characterMakers.push(() => makeCharacter(
  6985. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6986. {
  6987. front: {
  6988. height: math.unit(6, "feet"),
  6989. weight: math.unit(200, "lbs"),
  6990. name: "Front",
  6991. image: {
  6992. source: "./media/characters/vector-wuff/front.svg"
  6993. }
  6994. }
  6995. },
  6996. [
  6997. {
  6998. name: "Normal",
  6999. height: math.unit(2.8, "meters")
  7000. },
  7001. {
  7002. name: "Macro",
  7003. height: math.unit(450, "meters"),
  7004. default: true
  7005. },
  7006. {
  7007. name: "Megamacro",
  7008. height: math.unit(15, "kilometers")
  7009. }
  7010. ]
  7011. ))
  7012. characterMakers.push(() => makeCharacter(
  7013. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7014. {
  7015. front: {
  7016. height: math.unit(6, "feet"),
  7017. weight: math.unit(256, "lbs"),
  7018. name: "Front",
  7019. image: {
  7020. source: "./media/characters/dannik/front.svg"
  7021. }
  7022. }
  7023. },
  7024. [
  7025. {
  7026. name: "Macro",
  7027. height: math.unit(69.57, "meters"),
  7028. default: true
  7029. },
  7030. ]
  7031. ))
  7032. characterMakers.push(() => makeCharacter(
  7033. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7034. {
  7035. front: {
  7036. height: math.unit(6, "feet"),
  7037. weight: math.unit(120, "lbs"),
  7038. name: "Front",
  7039. image: {
  7040. source: "./media/characters/azura-saharah/front.svg"
  7041. }
  7042. },
  7043. back: {
  7044. height: math.unit(6, "feet"),
  7045. weight: math.unit(120, "lbs"),
  7046. name: "Back",
  7047. image: {
  7048. source: "./media/characters/azura-saharah/back.svg"
  7049. }
  7050. },
  7051. },
  7052. [
  7053. {
  7054. name: "Macro",
  7055. height: math.unit(100, "feet"),
  7056. default: true
  7057. },
  7058. ]
  7059. ))
  7060. characterMakers.push(() => makeCharacter(
  7061. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7062. {
  7063. side: {
  7064. height: math.unit(5 + 4 / 12, "feet"),
  7065. weight: math.unit(163, "lbs"),
  7066. name: "Side",
  7067. image: {
  7068. source: "./media/characters/kennedy/side.svg"
  7069. }
  7070. }
  7071. },
  7072. [
  7073. {
  7074. name: "Standard Doggo",
  7075. height: math.unit(5 + 4 / 12, "feet")
  7076. },
  7077. {
  7078. name: "Big Doggo",
  7079. height: math.unit(25 + 3 / 12, "feet"),
  7080. default: true
  7081. },
  7082. ]
  7083. ))
  7084. characterMakers.push(() => makeCharacter(
  7085. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7086. {
  7087. front: {
  7088. height: math.unit(6, "feet"),
  7089. weight: math.unit(90, "lbs"),
  7090. name: "Front",
  7091. image: {
  7092. source: "./media/characters/odi-lunar/front.svg"
  7093. }
  7094. }
  7095. },
  7096. [
  7097. {
  7098. name: "Micro",
  7099. height: math.unit(3, "inches"),
  7100. default: true
  7101. },
  7102. {
  7103. name: "Normal",
  7104. height: math.unit(5.5, "feet")
  7105. }
  7106. ]
  7107. ))
  7108. characterMakers.push(() => makeCharacter(
  7109. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7110. {
  7111. back: {
  7112. height: math.unit(6, "feet"),
  7113. weight: math.unit(220, "lbs"),
  7114. name: "Back",
  7115. image: {
  7116. source: "./media/characters/mandake/back.svg"
  7117. }
  7118. }
  7119. },
  7120. [
  7121. {
  7122. name: "Normal",
  7123. height: math.unit(7, "feet"),
  7124. default: true
  7125. },
  7126. {
  7127. name: "Macro",
  7128. height: math.unit(78, "feet")
  7129. },
  7130. {
  7131. name: "Macro+",
  7132. height: math.unit(300, "meters")
  7133. },
  7134. {
  7135. name: "Macro++",
  7136. height: math.unit(2400, "feet")
  7137. },
  7138. {
  7139. name: "Megamacro",
  7140. height: math.unit(5167, "meters")
  7141. },
  7142. {
  7143. name: "Gigamacro",
  7144. height: math.unit(41769, "miles")
  7145. },
  7146. ]
  7147. ))
  7148. characterMakers.push(() => makeCharacter(
  7149. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7150. {
  7151. front: {
  7152. height: math.unit(6, "feet"),
  7153. weight: math.unit(120, "lbs"),
  7154. name: "Front",
  7155. image: {
  7156. source: "./media/characters/yozey/front.svg"
  7157. }
  7158. },
  7159. frontAlt: {
  7160. height: math.unit(6, "feet"),
  7161. weight: math.unit(120, "lbs"),
  7162. name: "Front (Alt)",
  7163. image: {
  7164. source: "./media/characters/yozey/front-alt.svg"
  7165. }
  7166. },
  7167. side: {
  7168. height: math.unit(6, "feet"),
  7169. weight: math.unit(120, "lbs"),
  7170. name: "Side",
  7171. image: {
  7172. source: "./media/characters/yozey/side.svg"
  7173. }
  7174. },
  7175. },
  7176. [
  7177. {
  7178. name: "Micro",
  7179. height: math.unit(3, "inches"),
  7180. default: true
  7181. },
  7182. {
  7183. name: "Normal",
  7184. height: math.unit(6, "feet")
  7185. }
  7186. ]
  7187. ))
  7188. characterMakers.push(() => makeCharacter(
  7189. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7190. {
  7191. front: {
  7192. height: math.unit(6, "feet"),
  7193. weight: math.unit(103, "lbs"),
  7194. name: "Front",
  7195. image: {
  7196. source: "./media/characters/valeska-voss/front.svg"
  7197. }
  7198. }
  7199. },
  7200. [
  7201. {
  7202. name: "Mini-Sized Sub",
  7203. height: math.unit(3.1, "inches")
  7204. },
  7205. {
  7206. name: "Mid-Sized Sub",
  7207. height: math.unit(6.2, "inches")
  7208. },
  7209. {
  7210. name: "Full-Sized Sub",
  7211. height: math.unit(9.3, "inches")
  7212. },
  7213. {
  7214. name: "Normal",
  7215. height: math.unit(5 + 2 / 12, "foot"),
  7216. default: true
  7217. },
  7218. ]
  7219. ))
  7220. characterMakers.push(() => makeCharacter(
  7221. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7222. {
  7223. front: {
  7224. height: math.unit(6, "feet"),
  7225. weight: math.unit(160, "lbs"),
  7226. name: "Front",
  7227. image: {
  7228. source: "./media/characters/gene-zeta/front.svg",
  7229. extra: 3006 / 2826,
  7230. bottom: 182 / 3188
  7231. }
  7232. }
  7233. },
  7234. [
  7235. {
  7236. name: "Micro",
  7237. height: math.unit(6, "inches")
  7238. },
  7239. {
  7240. name: "Normal",
  7241. height: math.unit(5 + 11 / 12, "foot"),
  7242. default: true
  7243. },
  7244. {
  7245. name: "Macro",
  7246. height: math.unit(140, "feet")
  7247. },
  7248. {
  7249. name: "Supercharged",
  7250. height: math.unit(2500, "feet")
  7251. },
  7252. ]
  7253. ))
  7254. characterMakers.push(() => makeCharacter(
  7255. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7256. {
  7257. front: {
  7258. height: math.unit(6, "feet"),
  7259. weight: math.unit(350, "lbs"),
  7260. name: "Front",
  7261. image: {
  7262. source: "./media/characters/razinox/front.svg",
  7263. extra: 1686 / 1548,
  7264. bottom: 28.2 / 1868
  7265. }
  7266. },
  7267. back: {
  7268. height: math.unit(6, "feet"),
  7269. weight: math.unit(350, "lbs"),
  7270. name: "Back",
  7271. image: {
  7272. source: "./media/characters/razinox/back.svg",
  7273. extra: 1660 / 1590,
  7274. bottom: 15 / 1665
  7275. }
  7276. },
  7277. },
  7278. [
  7279. {
  7280. name: "Normal",
  7281. height: math.unit(10 + 8 / 12, "foot")
  7282. },
  7283. {
  7284. name: "Minimacro",
  7285. height: math.unit(15, "foot")
  7286. },
  7287. {
  7288. name: "Macro",
  7289. height: math.unit(60, "foot"),
  7290. default: true
  7291. },
  7292. {
  7293. name: "Megamacro",
  7294. height: math.unit(5, "miles")
  7295. },
  7296. {
  7297. name: "Gigamacro",
  7298. height: math.unit(6000, "miles")
  7299. },
  7300. ]
  7301. ))
  7302. characterMakers.push(() => makeCharacter(
  7303. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7304. {
  7305. front: {
  7306. height: math.unit(6, "feet"),
  7307. weight: math.unit(150, "lbs"),
  7308. name: "Front",
  7309. image: {
  7310. source: "./media/characters/cobalt/front.svg"
  7311. }
  7312. }
  7313. },
  7314. [
  7315. {
  7316. name: "Normal",
  7317. height: math.unit(8 + 1 / 12, "foot")
  7318. },
  7319. {
  7320. name: "Macro",
  7321. height: math.unit(111, "foot"),
  7322. default: true
  7323. },
  7324. {
  7325. name: "Supracosmic",
  7326. height: math.unit(1e42, "feet")
  7327. },
  7328. ]
  7329. ))
  7330. characterMakers.push(() => makeCharacter(
  7331. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7332. {
  7333. front: {
  7334. height: math.unit(6, "feet"),
  7335. weight: math.unit(140, "lbs"),
  7336. name: "Front",
  7337. image: {
  7338. source: "./media/characters/amanda/front.svg"
  7339. }
  7340. }
  7341. },
  7342. [
  7343. {
  7344. name: "Micro",
  7345. height: math.unit(5, "inches"),
  7346. default: true
  7347. },
  7348. ]
  7349. ))
  7350. characterMakers.push(() => makeCharacter(
  7351. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7352. {
  7353. front: {
  7354. height: math.unit(2.75, "meters"),
  7355. weight: math.unit(1200, "lb"),
  7356. name: "Front",
  7357. image: {
  7358. source: "./media/characters/teal/front.svg",
  7359. extra: 2463 / 2320,
  7360. bottom: 166 / 2629
  7361. }
  7362. },
  7363. back: {
  7364. height: math.unit(2.75, "meters"),
  7365. weight: math.unit(1200, "lb"),
  7366. name: "Back",
  7367. image: {
  7368. source: "./media/characters/teal/back.svg",
  7369. extra: 2580 / 2489,
  7370. bottom: 151 / 2731
  7371. }
  7372. },
  7373. sitting: {
  7374. height: math.unit(1.9, "meters"),
  7375. weight: math.unit(1200, "lb"),
  7376. name: "Sitting",
  7377. image: {
  7378. source: "./media/characters/teal/sitting.svg",
  7379. extra: 623 / 590,
  7380. bottom: 121 / 744
  7381. }
  7382. },
  7383. standing: {
  7384. height: math.unit(2.75, "meters"),
  7385. weight: math.unit(1200, "lb"),
  7386. name: "Standing",
  7387. image: {
  7388. source: "./media/characters/teal/standing.svg",
  7389. extra: 923 / 893,
  7390. bottom: 60 / 983
  7391. }
  7392. },
  7393. stretching: {
  7394. height: math.unit(3.65, "meters"),
  7395. weight: math.unit(1200, "lb"),
  7396. name: "Stretching",
  7397. image: {
  7398. source: "./media/characters/teal/stretching.svg",
  7399. extra: 1276 / 1244,
  7400. bottom: 0 / 1276
  7401. }
  7402. },
  7403. legged: {
  7404. height: math.unit(1.3, "meters"),
  7405. weight: math.unit(100, "lb"),
  7406. name: "Legged",
  7407. image: {
  7408. source: "./media/characters/teal/legged.svg",
  7409. extra: 462 / 437,
  7410. bottom: 24 / 486
  7411. }
  7412. },
  7413. naga: {
  7414. height: math.unit(5.4, "meters"),
  7415. weight: math.unit(4000, "lb"),
  7416. name: "Naga",
  7417. image: {
  7418. source: "./media/characters/teal/naga.svg",
  7419. extra: 1902 / 1858,
  7420. bottom: 0 / 1902
  7421. }
  7422. },
  7423. hand: {
  7424. height: math.unit(0.52, "meters"),
  7425. name: "Hand",
  7426. image: {
  7427. source: "./media/characters/teal/hand.svg"
  7428. }
  7429. },
  7430. maw: {
  7431. height: math.unit(0.43, "meters"),
  7432. name: "Maw",
  7433. image: {
  7434. source: "./media/characters/teal/maw.svg"
  7435. }
  7436. },
  7437. slit: {
  7438. height: math.unit(0.25, "meters"),
  7439. name: "Slit",
  7440. image: {
  7441. source: "./media/characters/teal/slit.svg"
  7442. }
  7443. },
  7444. },
  7445. [
  7446. {
  7447. name: "Normal",
  7448. height: math.unit(2.75, "meters"),
  7449. default: true
  7450. },
  7451. {
  7452. name: "Macro",
  7453. height: math.unit(300, "feet")
  7454. },
  7455. {
  7456. name: "Macro+",
  7457. height: math.unit(2000, "feet")
  7458. },
  7459. ]
  7460. ))
  7461. characterMakers.push(() => makeCharacter(
  7462. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7463. {
  7464. frontCat: {
  7465. height: math.unit(6, "feet"),
  7466. weight: math.unit(180, "lbs"),
  7467. name: "Front (Cat)",
  7468. image: {
  7469. source: "./media/characters/ravin-amulet/front-cat.svg"
  7470. }
  7471. },
  7472. frontCatAlt: {
  7473. height: math.unit(6, "feet"),
  7474. weight: math.unit(180, "lbs"),
  7475. name: "Front (Alt, Cat)",
  7476. image: {
  7477. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7478. }
  7479. },
  7480. frontWerewolf: {
  7481. height: math.unit(6 * 1.2, "feet"),
  7482. weight: math.unit(225, "lbs"),
  7483. name: "Front (Werewolf)",
  7484. image: {
  7485. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7486. }
  7487. },
  7488. backWerewolf: {
  7489. height: math.unit(6 * 1.2, "feet"),
  7490. weight: math.unit(225, "lbs"),
  7491. name: "Back (Werewolf)",
  7492. image: {
  7493. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7494. }
  7495. },
  7496. },
  7497. [
  7498. {
  7499. name: "Nano",
  7500. height: math.unit(1, "micrometer")
  7501. },
  7502. {
  7503. name: "Micro",
  7504. height: math.unit(1, "inch")
  7505. },
  7506. {
  7507. name: "Normal",
  7508. height: math.unit(6, "feet"),
  7509. default: true
  7510. },
  7511. {
  7512. name: "Macro",
  7513. height: math.unit(60, "feet")
  7514. }
  7515. ]
  7516. ))
  7517. characterMakers.push(() => makeCharacter(
  7518. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7519. {
  7520. front: {
  7521. height: math.unit(6, "feet"),
  7522. weight: math.unit(165, "lbs"),
  7523. name: "Front",
  7524. image: {
  7525. source: "./media/characters/fluoresce/front.svg"
  7526. }
  7527. }
  7528. },
  7529. [
  7530. {
  7531. name: "Micro",
  7532. height: math.unit(6, "cm")
  7533. },
  7534. {
  7535. name: "Normal",
  7536. height: math.unit(5 + 7 / 12, "feet"),
  7537. default: true
  7538. },
  7539. {
  7540. name: "Macro",
  7541. height: math.unit(56, "feet")
  7542. },
  7543. {
  7544. name: "Megamacro",
  7545. height: math.unit(1.9, "miles")
  7546. },
  7547. ]
  7548. ))
  7549. characterMakers.push(() => makeCharacter(
  7550. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7551. {
  7552. front: {
  7553. height: math.unit(9 + 6 / 12, "feet"),
  7554. weight: math.unit(523, "lbs"),
  7555. name: "Side",
  7556. image: {
  7557. source: "./media/characters/aurora/side.svg"
  7558. }
  7559. }
  7560. },
  7561. [
  7562. {
  7563. name: "Normal",
  7564. height: math.unit(9 + 6 / 12, "feet")
  7565. },
  7566. {
  7567. name: "Macro",
  7568. height: math.unit(96, "feet"),
  7569. default: true
  7570. },
  7571. {
  7572. name: "Macro+",
  7573. height: math.unit(243, "feet")
  7574. },
  7575. ]
  7576. ))
  7577. characterMakers.push(() => makeCharacter(
  7578. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7579. {
  7580. front: {
  7581. height: math.unit(194, "cm"),
  7582. weight: math.unit(90, "kg"),
  7583. name: "Front",
  7584. image: {
  7585. source: "./media/characters/ranek/front.svg"
  7586. }
  7587. },
  7588. side: {
  7589. height: math.unit(194, "cm"),
  7590. weight: math.unit(90, "kg"),
  7591. name: "Side",
  7592. image: {
  7593. source: "./media/characters/ranek/side.svg"
  7594. }
  7595. },
  7596. back: {
  7597. height: math.unit(194, "cm"),
  7598. weight: math.unit(90, "kg"),
  7599. name: "Back",
  7600. image: {
  7601. source: "./media/characters/ranek/back.svg"
  7602. }
  7603. },
  7604. feral: {
  7605. height: math.unit(30, "cm"),
  7606. weight: math.unit(1.6, "lbs"),
  7607. name: "Feral",
  7608. image: {
  7609. source: "./media/characters/ranek/feral.svg"
  7610. }
  7611. },
  7612. },
  7613. [
  7614. {
  7615. name: "Normal",
  7616. height: math.unit(194, "cm"),
  7617. default: true
  7618. },
  7619. {
  7620. name: "Macro",
  7621. height: math.unit(100, "meters")
  7622. },
  7623. ]
  7624. ))
  7625. characterMakers.push(() => makeCharacter(
  7626. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7627. {
  7628. front: {
  7629. height: math.unit(5 + 6 / 12, "feet"),
  7630. weight: math.unit(153, "lbs"),
  7631. name: "Front",
  7632. image: {
  7633. source: "./media/characters/andrew-cooper/front.svg"
  7634. }
  7635. },
  7636. },
  7637. [
  7638. {
  7639. name: "Nano",
  7640. height: math.unit(1, "mm")
  7641. },
  7642. {
  7643. name: "Micro",
  7644. height: math.unit(2, "inches")
  7645. },
  7646. {
  7647. name: "Normal",
  7648. height: math.unit(5 + 6 / 12, "feet"),
  7649. default: true
  7650. }
  7651. ]
  7652. ))
  7653. characterMakers.push(() => makeCharacter(
  7654. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7655. {
  7656. front: {
  7657. height: math.unit(6, "feet"),
  7658. weight: math.unit(180, "lbs"),
  7659. name: "Front",
  7660. image: {
  7661. source: "./media/characters/akane-sato/front.svg",
  7662. extra: 1219 / 1140
  7663. }
  7664. },
  7665. back: {
  7666. height: math.unit(6, "feet"),
  7667. weight: math.unit(180, "lbs"),
  7668. name: "Back",
  7669. image: {
  7670. source: "./media/characters/akane-sato/back.svg",
  7671. extra: 1219 / 1170
  7672. }
  7673. },
  7674. },
  7675. [
  7676. {
  7677. name: "Normal",
  7678. height: math.unit(2.5, "meters")
  7679. },
  7680. {
  7681. name: "Macro",
  7682. height: math.unit(250, "meters"),
  7683. default: true
  7684. },
  7685. {
  7686. name: "Megamacro",
  7687. height: math.unit(25, "km")
  7688. },
  7689. ]
  7690. ))
  7691. characterMakers.push(() => makeCharacter(
  7692. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7693. {
  7694. front: {
  7695. height: math.unit(6, "feet"),
  7696. weight: math.unit(65, "kg"),
  7697. name: "Front",
  7698. image: {
  7699. source: "./media/characters/rook/front.svg",
  7700. extra: 960 / 950
  7701. }
  7702. }
  7703. },
  7704. [
  7705. {
  7706. name: "Normal",
  7707. height: math.unit(8.8, "feet")
  7708. },
  7709. {
  7710. name: "Macro",
  7711. height: math.unit(88, "feet"),
  7712. default: true
  7713. },
  7714. {
  7715. name: "Megamacro",
  7716. height: math.unit(8, "miles")
  7717. },
  7718. ]
  7719. ))
  7720. characterMakers.push(() => makeCharacter(
  7721. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7722. {
  7723. front: {
  7724. height: math.unit(12 + 2 / 12, "feet"),
  7725. weight: math.unit(808, "lbs"),
  7726. name: "Front",
  7727. image: {
  7728. source: "./media/characters/prodigy/front.svg"
  7729. }
  7730. }
  7731. },
  7732. [
  7733. {
  7734. name: "Normal",
  7735. height: math.unit(12 + 2 / 12, "feet"),
  7736. default: true
  7737. },
  7738. {
  7739. name: "Macro",
  7740. height: math.unit(143, "feet")
  7741. },
  7742. {
  7743. name: "Macro+",
  7744. height: math.unit(400, "feet")
  7745. },
  7746. ]
  7747. ))
  7748. characterMakers.push(() => makeCharacter(
  7749. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7750. {
  7751. front: {
  7752. height: math.unit(6, "feet"),
  7753. weight: math.unit(225, "lbs"),
  7754. name: "Front",
  7755. image: {
  7756. source: "./media/characters/daniel/front.svg"
  7757. }
  7758. },
  7759. leaning: {
  7760. height: math.unit(6, "feet"),
  7761. weight: math.unit(225, "lbs"),
  7762. name: "Leaning",
  7763. image: {
  7764. source: "./media/characters/daniel/leaning.svg"
  7765. }
  7766. },
  7767. },
  7768. [
  7769. {
  7770. name: "Macro",
  7771. height: math.unit(1000, "feet"),
  7772. default: true
  7773. },
  7774. ]
  7775. ))
  7776. characterMakers.push(() => makeCharacter(
  7777. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7778. {
  7779. front: {
  7780. height: math.unit(6, "feet"),
  7781. weight: math.unit(88, "lbs"),
  7782. name: "Front",
  7783. image: {
  7784. source: "./media/characters/chiros/front.svg",
  7785. extra: 306 / 226
  7786. }
  7787. },
  7788. side: {
  7789. height: math.unit(6, "feet"),
  7790. weight: math.unit(88, "lbs"),
  7791. name: "Side",
  7792. image: {
  7793. source: "./media/characters/chiros/side.svg",
  7794. extra: 306 / 226
  7795. }
  7796. },
  7797. },
  7798. [
  7799. {
  7800. name: "Normal",
  7801. height: math.unit(6, "cm"),
  7802. default: true
  7803. },
  7804. ]
  7805. ))
  7806. characterMakers.push(() => makeCharacter(
  7807. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7808. {
  7809. front: {
  7810. height: math.unit(6, "feet"),
  7811. weight: math.unit(100, "lbs"),
  7812. name: "Front",
  7813. image: {
  7814. source: "./media/characters/selka/front.svg",
  7815. extra: 947 / 887
  7816. }
  7817. }
  7818. },
  7819. [
  7820. {
  7821. name: "Normal",
  7822. height: math.unit(5, "cm"),
  7823. default: true
  7824. },
  7825. ]
  7826. ))
  7827. characterMakers.push(() => makeCharacter(
  7828. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7829. {
  7830. front: {
  7831. height: math.unit(8 + 3 / 12, "feet"),
  7832. weight: math.unit(424, "lbs"),
  7833. name: "Front",
  7834. image: {
  7835. source: "./media/characters/verin/front.svg",
  7836. extra: 1845 / 1550
  7837. }
  7838. },
  7839. frontArmored: {
  7840. height: math.unit(8 + 3 / 12, "feet"),
  7841. weight: math.unit(424, "lbs"),
  7842. name: "Front (Armored)",
  7843. image: {
  7844. source: "./media/characters/verin/front-armor.svg",
  7845. extra: 1845 / 1550,
  7846. bottom: 0.01
  7847. }
  7848. },
  7849. back: {
  7850. height: math.unit(8 + 3 / 12, "feet"),
  7851. weight: math.unit(424, "lbs"),
  7852. name: "Back",
  7853. image: {
  7854. source: "./media/characters/verin/back.svg",
  7855. bottom: 0.1,
  7856. extra: 1
  7857. }
  7858. },
  7859. foot: {
  7860. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7861. name: "Foot",
  7862. image: {
  7863. source: "./media/characters/verin/foot.svg"
  7864. }
  7865. },
  7866. },
  7867. [
  7868. {
  7869. name: "Normal",
  7870. height: math.unit(8 + 3 / 12, "feet")
  7871. },
  7872. {
  7873. name: "Minimacro",
  7874. height: math.unit(21, "feet"),
  7875. default: true
  7876. },
  7877. {
  7878. name: "Macro",
  7879. height: math.unit(626, "feet")
  7880. },
  7881. ]
  7882. ))
  7883. characterMakers.push(() => makeCharacter(
  7884. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7885. {
  7886. front: {
  7887. height: math.unit(2.718, "meters"),
  7888. weight: math.unit(150, "lbs"),
  7889. name: "Front",
  7890. image: {
  7891. source: "./media/characters/sovrim-terraquian/front.svg"
  7892. }
  7893. },
  7894. back: {
  7895. height: math.unit(2.718, "meters"),
  7896. weight: math.unit(150, "lbs"),
  7897. name: "Back",
  7898. image: {
  7899. source: "./media/characters/sovrim-terraquian/back.svg"
  7900. }
  7901. }
  7902. },
  7903. [
  7904. {
  7905. name: "Micro",
  7906. height: math.unit(2, "inches")
  7907. },
  7908. {
  7909. name: "Small",
  7910. height: math.unit(1, "meter")
  7911. },
  7912. {
  7913. name: "Normal",
  7914. height: math.unit(Math.E, "meters"),
  7915. default: true
  7916. },
  7917. {
  7918. name: "Macro",
  7919. height: math.unit(20, "meters")
  7920. },
  7921. {
  7922. name: "Macro+",
  7923. height: math.unit(400, "meters")
  7924. },
  7925. ]
  7926. ))
  7927. characterMakers.push(() => makeCharacter(
  7928. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7929. {
  7930. front: {
  7931. height: math.unit(7, "feet"),
  7932. weight: math.unit(489, "lbs"),
  7933. name: "Front",
  7934. image: {
  7935. source: "./media/characters/reece-silvermane/front.svg",
  7936. bottom: 0.02,
  7937. extra: 1
  7938. }
  7939. },
  7940. },
  7941. [
  7942. {
  7943. name: "Macro",
  7944. height: math.unit(1.5, "miles"),
  7945. default: true
  7946. },
  7947. ]
  7948. ))
  7949. characterMakers.push(() => makeCharacter(
  7950. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7951. {
  7952. front: {
  7953. height: math.unit(6, "feet"),
  7954. weight: math.unit(78, "kg"),
  7955. name: "Front",
  7956. image: {
  7957. source: "./media/characters/kane/front.svg",
  7958. extra: 978 / 899
  7959. }
  7960. },
  7961. },
  7962. [
  7963. {
  7964. name: "Normal",
  7965. height: math.unit(2.1, "m"),
  7966. },
  7967. {
  7968. name: "Macro",
  7969. height: math.unit(1, "km"),
  7970. default: true
  7971. },
  7972. ]
  7973. ))
  7974. characterMakers.push(() => makeCharacter(
  7975. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7976. {
  7977. front: {
  7978. height: math.unit(6, "feet"),
  7979. weight: math.unit(200, "kg"),
  7980. name: "Front",
  7981. image: {
  7982. source: "./media/characters/tegon/front.svg",
  7983. bottom: 0.01,
  7984. extra: 1
  7985. }
  7986. },
  7987. },
  7988. [
  7989. {
  7990. name: "Micro",
  7991. height: math.unit(1, "inch")
  7992. },
  7993. {
  7994. name: "Normal",
  7995. height: math.unit(6 + 3 / 12, "feet"),
  7996. default: true
  7997. },
  7998. {
  7999. name: "Macro",
  8000. height: math.unit(300, "feet")
  8001. },
  8002. {
  8003. name: "Megamacro",
  8004. height: math.unit(69, "miles")
  8005. },
  8006. ]
  8007. ))
  8008. characterMakers.push(() => makeCharacter(
  8009. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8010. {
  8011. side: {
  8012. height: math.unit(6, "feet"),
  8013. weight: math.unit(2304, "lbs"),
  8014. name: "Side",
  8015. image: {
  8016. source: "./media/characters/arcturax/side.svg",
  8017. extra: 790 / 376,
  8018. bottom: 0.01
  8019. }
  8020. },
  8021. },
  8022. [
  8023. {
  8024. name: "Micro",
  8025. height: math.unit(2, "inch")
  8026. },
  8027. {
  8028. name: "Normal",
  8029. height: math.unit(6, "feet")
  8030. },
  8031. {
  8032. name: "Macro",
  8033. height: math.unit(39, "feet"),
  8034. default: true
  8035. },
  8036. {
  8037. name: "Megamacro",
  8038. height: math.unit(7, "miles")
  8039. },
  8040. ]
  8041. ))
  8042. characterMakers.push(() => makeCharacter(
  8043. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8044. {
  8045. front: {
  8046. height: math.unit(6, "feet"),
  8047. weight: math.unit(50, "lbs"),
  8048. name: "Front",
  8049. image: {
  8050. source: "./media/characters/sentri/front.svg",
  8051. extra: 1750 / 1570,
  8052. bottom: 0.025
  8053. }
  8054. },
  8055. frontAlt: {
  8056. height: math.unit(6, "feet"),
  8057. weight: math.unit(50, "lbs"),
  8058. name: "Front (Alt)",
  8059. image: {
  8060. source: "./media/characters/sentri/front-alt.svg",
  8061. extra: 1750 / 1570,
  8062. bottom: 0.025
  8063. }
  8064. },
  8065. },
  8066. [
  8067. {
  8068. name: "Normal",
  8069. height: math.unit(15, "feet"),
  8070. default: true
  8071. },
  8072. {
  8073. name: "Macro",
  8074. height: math.unit(2500, "feet")
  8075. }
  8076. ]
  8077. ))
  8078. characterMakers.push(() => makeCharacter(
  8079. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8080. {
  8081. front: {
  8082. height: math.unit(5 + 8 / 12, "feet"),
  8083. weight: math.unit(130, "lbs"),
  8084. name: "Front",
  8085. image: {
  8086. source: "./media/characters/corvin/front.svg",
  8087. extra: 1803 / 1629
  8088. }
  8089. },
  8090. frontShirt: {
  8091. height: math.unit(5 + 8 / 12, "feet"),
  8092. weight: math.unit(130, "lbs"),
  8093. name: "Front (Shirt)",
  8094. image: {
  8095. source: "./media/characters/corvin/front-shirt.svg",
  8096. extra: 1803 / 1629
  8097. }
  8098. },
  8099. frontPoncho: {
  8100. height: math.unit(5 + 8 / 12, "feet"),
  8101. weight: math.unit(130, "lbs"),
  8102. name: "Front (Poncho)",
  8103. image: {
  8104. source: "./media/characters/corvin/front-poncho.svg",
  8105. extra: 1803 / 1629
  8106. }
  8107. },
  8108. side: {
  8109. height: math.unit(5 + 8 / 12, "feet"),
  8110. weight: math.unit(130, "lbs"),
  8111. name: "Side",
  8112. image: {
  8113. source: "./media/characters/corvin/side.svg",
  8114. extra: 1012 / 945
  8115. }
  8116. },
  8117. back: {
  8118. height: math.unit(5 + 8 / 12, "feet"),
  8119. weight: math.unit(130, "lbs"),
  8120. name: "Back",
  8121. image: {
  8122. source: "./media/characters/corvin/back.svg",
  8123. extra: 1803 / 1629
  8124. }
  8125. },
  8126. },
  8127. [
  8128. {
  8129. name: "Micro",
  8130. height: math.unit(3, "inches")
  8131. },
  8132. {
  8133. name: "Normal",
  8134. height: math.unit(5 + 8 / 12, "feet")
  8135. },
  8136. {
  8137. name: "Macro",
  8138. height: math.unit(300, "feet"),
  8139. default: true
  8140. },
  8141. {
  8142. name: "Megamacro",
  8143. height: math.unit(500, "miles")
  8144. }
  8145. ]
  8146. ))
  8147. characterMakers.push(() => makeCharacter(
  8148. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8149. {
  8150. front: {
  8151. height: math.unit(6, "feet"),
  8152. weight: math.unit(135, "lbs"),
  8153. name: "Front",
  8154. image: {
  8155. source: "./media/characters/q/front.svg",
  8156. extra: 854 / 752,
  8157. bottom: 0.005
  8158. }
  8159. },
  8160. back: {
  8161. height: math.unit(6, "feet"),
  8162. weight: math.unit(130, "lbs"),
  8163. name: "Back",
  8164. image: {
  8165. source: "./media/characters/q/back.svg",
  8166. extra: 854 / 752
  8167. }
  8168. },
  8169. },
  8170. [
  8171. {
  8172. name: "Macro",
  8173. height: math.unit(90, "feet"),
  8174. default: true
  8175. },
  8176. {
  8177. name: "Extra Macro",
  8178. height: math.unit(300, "feet"),
  8179. },
  8180. {
  8181. name: "BIG WALF",
  8182. height: math.unit(750, "feet"),
  8183. },
  8184. ]
  8185. ))
  8186. characterMakers.push(() => makeCharacter(
  8187. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8188. {
  8189. front: {
  8190. height: math.unit(6, "feet"),
  8191. weight: math.unit(150, "lbs"),
  8192. name: "Front",
  8193. image: {
  8194. source: "./media/characters/carley/front.svg",
  8195. extra: 3927 / 3540,
  8196. bottom: 29.2 / 735
  8197. }
  8198. }
  8199. },
  8200. [
  8201. {
  8202. name: "Normal",
  8203. height: math.unit(6 + 3 / 12, "feet")
  8204. },
  8205. {
  8206. name: "Macro",
  8207. height: math.unit(185, "feet"),
  8208. default: true
  8209. },
  8210. {
  8211. name: "Megamacro",
  8212. height: math.unit(8, "miles"),
  8213. },
  8214. ]
  8215. ))
  8216. characterMakers.push(() => makeCharacter(
  8217. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8218. {
  8219. front: {
  8220. height: math.unit(3, "feet"),
  8221. weight: math.unit(28, "lbs"),
  8222. name: "Front",
  8223. image: {
  8224. source: "./media/characters/citrine/front.svg"
  8225. }
  8226. }
  8227. },
  8228. [
  8229. {
  8230. name: "Normal",
  8231. height: math.unit(3, "feet"),
  8232. default: true
  8233. }
  8234. ]
  8235. ))
  8236. characterMakers.push(() => makeCharacter(
  8237. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8238. {
  8239. front: {
  8240. height: math.unit(14, "feet"),
  8241. weight: math.unit(1450, "kg"),
  8242. capacity: math.unit(15, "people"),
  8243. name: "Front",
  8244. image: {
  8245. source: "./media/characters/aura-starwind/front.svg",
  8246. extra: 1440/1327,
  8247. bottom: 11/1451
  8248. }
  8249. },
  8250. side: {
  8251. height: math.unit(14, "feet"),
  8252. weight: math.unit(1450, "kg"),
  8253. capacity: math.unit(15, "people"),
  8254. name: "Side",
  8255. image: {
  8256. source: "./media/characters/aura-starwind/side.svg",
  8257. extra: 1654 / 1497
  8258. }
  8259. },
  8260. taur: {
  8261. height: math.unit(18, "feet"),
  8262. weight: math.unit(5500, "kg"),
  8263. capacity: math.unit(50, "people"),
  8264. name: "Taur",
  8265. image: {
  8266. source: "./media/characters/aura-starwind/taur.svg",
  8267. extra: 1760 / 1650
  8268. }
  8269. },
  8270. feral: {
  8271. height: math.unit(46, "feet"),
  8272. weight: math.unit(25000, "kg"),
  8273. capacity: math.unit(120, "people"),
  8274. name: "Feral",
  8275. image: {
  8276. source: "./media/characters/aura-starwind/feral.svg"
  8277. }
  8278. },
  8279. },
  8280. [
  8281. {
  8282. name: "Normal",
  8283. height: math.unit(14, "feet"),
  8284. default: true
  8285. },
  8286. {
  8287. name: "Macro",
  8288. height: math.unit(50, "meters")
  8289. },
  8290. {
  8291. name: "Megamacro",
  8292. height: math.unit(5000, "meters")
  8293. },
  8294. {
  8295. name: "Gigamacro",
  8296. height: math.unit(100000, "kilometers")
  8297. },
  8298. ]
  8299. ))
  8300. characterMakers.push(() => makeCharacter(
  8301. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8302. {
  8303. front: {
  8304. height: math.unit(2 + 7 / 12, "feet"),
  8305. weight: math.unit(32, "lbs"),
  8306. name: "Front",
  8307. image: {
  8308. source: "./media/characters/rivet/front.svg",
  8309. extra: 1716 / 1658,
  8310. bottom: 0.03
  8311. }
  8312. },
  8313. foot: {
  8314. height: math.unit(0.551, "feet"),
  8315. name: "Rivet's Foot",
  8316. image: {
  8317. source: "./media/characters/rivet/foot.svg"
  8318. },
  8319. rename: true
  8320. }
  8321. },
  8322. [
  8323. {
  8324. name: "Micro",
  8325. height: math.unit(1.5, "inches"),
  8326. },
  8327. {
  8328. name: "Normal",
  8329. height: math.unit(2 + 7 / 12, "feet"),
  8330. default: true
  8331. },
  8332. {
  8333. name: "Macro",
  8334. height: math.unit(85, "feet")
  8335. },
  8336. {
  8337. name: "Megamacro",
  8338. height: math.unit(2.2, "km")
  8339. }
  8340. ]
  8341. ))
  8342. characterMakers.push(() => makeCharacter(
  8343. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8344. {
  8345. front: {
  8346. height: math.unit(5 + 9 / 12, "feet"),
  8347. weight: math.unit(150, "lbs"),
  8348. name: "Front",
  8349. image: {
  8350. source: "./media/characters/coffee/front.svg",
  8351. extra: 3666 / 3032,
  8352. bottom: 0.04
  8353. }
  8354. },
  8355. foot: {
  8356. height: math.unit(1.29, "feet"),
  8357. name: "Foot",
  8358. image: {
  8359. source: "./media/characters/coffee/foot.svg"
  8360. }
  8361. },
  8362. },
  8363. [
  8364. {
  8365. name: "Micro",
  8366. height: math.unit(2, "inches"),
  8367. },
  8368. {
  8369. name: "Normal",
  8370. height: math.unit(5 + 9 / 12, "feet"),
  8371. default: true
  8372. },
  8373. {
  8374. name: "Macro",
  8375. height: math.unit(800, "feet")
  8376. },
  8377. {
  8378. name: "Megamacro",
  8379. height: math.unit(25, "miles")
  8380. }
  8381. ]
  8382. ))
  8383. characterMakers.push(() => makeCharacter(
  8384. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8385. {
  8386. front: {
  8387. height: math.unit(6, "feet"),
  8388. weight: math.unit(200, "lbs"),
  8389. name: "Front",
  8390. image: {
  8391. source: "./media/characters/chari-gal/front.svg",
  8392. extra: 1568 / 1385,
  8393. bottom: 0.047
  8394. }
  8395. },
  8396. gigantamax: {
  8397. height: math.unit(6 * 16, "feet"),
  8398. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8399. name: "Gigantamax",
  8400. image: {
  8401. source: "./media/characters/chari-gal/gigantamax.svg",
  8402. extra: 1124 / 888,
  8403. bottom: 0.03
  8404. }
  8405. },
  8406. },
  8407. [
  8408. {
  8409. name: "Normal",
  8410. height: math.unit(5 + 7 / 12, "feet")
  8411. },
  8412. {
  8413. name: "Macro",
  8414. height: math.unit(200, "feet"),
  8415. default: true
  8416. }
  8417. ]
  8418. ))
  8419. characterMakers.push(() => makeCharacter(
  8420. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8421. {
  8422. front: {
  8423. height: math.unit(6, "feet"),
  8424. weight: math.unit(150, "lbs"),
  8425. name: "Front",
  8426. image: {
  8427. source: "./media/characters/nova/front.svg",
  8428. extra: 5000 / 4722,
  8429. bottom: 0.02
  8430. }
  8431. }
  8432. },
  8433. [
  8434. {
  8435. name: "Micro-",
  8436. height: math.unit(0.8, "inches")
  8437. },
  8438. {
  8439. name: "Micro",
  8440. height: math.unit(2, "inches"),
  8441. default: true
  8442. },
  8443. ]
  8444. ))
  8445. characterMakers.push(() => makeCharacter(
  8446. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8447. {
  8448. front: {
  8449. height: math.unit(3 + 1 / 12, "feet"),
  8450. weight: math.unit(21.7, "lbs"),
  8451. name: "Front",
  8452. image: {
  8453. source: "./media/characters/argent/front.svg",
  8454. extra: 1471 / 1331,
  8455. bottom: 100.8 / 1575.5
  8456. }
  8457. }
  8458. },
  8459. [
  8460. {
  8461. name: "Micro",
  8462. height: math.unit(2, "inches")
  8463. },
  8464. {
  8465. name: "Normal",
  8466. height: math.unit(3 + 1 / 12, "feet"),
  8467. default: true
  8468. },
  8469. {
  8470. name: "Macro",
  8471. height: math.unit(120, "feet")
  8472. },
  8473. ]
  8474. ))
  8475. characterMakers.push(() => makeCharacter(
  8476. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8477. {
  8478. lamp: {
  8479. height: math.unit(7 * 1559 / 989, "feet"),
  8480. name: "Magic Lamp",
  8481. image: {
  8482. source: "./media/characters/mira-al-cul/lamp.svg",
  8483. extra: 1617 / 1559
  8484. }
  8485. },
  8486. front: {
  8487. height: math.unit(7, "feet"),
  8488. name: "Front",
  8489. image: {
  8490. source: "./media/characters/mira-al-cul/front.svg",
  8491. extra: 1044 / 990
  8492. }
  8493. },
  8494. },
  8495. [
  8496. {
  8497. name: "Heavily Restricted",
  8498. height: math.unit(7 * 1559 / 989, "feet")
  8499. },
  8500. {
  8501. name: "Freshly Freed",
  8502. height: math.unit(50 * 1559 / 989, "feet")
  8503. },
  8504. {
  8505. name: "World Encompassing",
  8506. height: math.unit(10000 * 1559 / 989, "miles")
  8507. },
  8508. {
  8509. name: "Galactic",
  8510. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8511. },
  8512. {
  8513. name: "Palmed Universe",
  8514. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8515. default: true
  8516. },
  8517. {
  8518. name: "Multiversal Matriarch",
  8519. height: math.unit(8.87e10, "yottameters")
  8520. },
  8521. {
  8522. name: "Void Mother",
  8523. height: math.unit(3.14e110, "yottaparsecs")
  8524. },
  8525. {
  8526. name: "Toying with Transcendence",
  8527. height: math.unit(1e307, "meters")
  8528. },
  8529. ]
  8530. ))
  8531. characterMakers.push(() => makeCharacter(
  8532. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8533. {
  8534. front: {
  8535. height: math.unit(17 + 1 / 12, "feet"),
  8536. weight: math.unit(476.2 * 5, "lbs"),
  8537. name: "Front",
  8538. image: {
  8539. source: "./media/characters/kuro-shi-uchū/front.svg",
  8540. extra: 2329 / 1835,
  8541. bottom: 0.02
  8542. }
  8543. },
  8544. },
  8545. [
  8546. {
  8547. name: "Micro",
  8548. height: math.unit(2, "inches")
  8549. },
  8550. {
  8551. name: "Normal",
  8552. height: math.unit(12, "meters")
  8553. },
  8554. {
  8555. name: "Planetary",
  8556. height: math.unit(0.00929, "AU"),
  8557. default: true
  8558. },
  8559. {
  8560. name: "Universal",
  8561. height: math.unit(20, "gigaparsecs")
  8562. },
  8563. ]
  8564. ))
  8565. characterMakers.push(() => makeCharacter(
  8566. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8567. {
  8568. front: {
  8569. height: math.unit(5 + 2 / 12, "feet"),
  8570. weight: math.unit(120, "lbs"),
  8571. name: "Front",
  8572. image: {
  8573. source: "./media/characters/katherine/front.svg",
  8574. extra: 2075 / 1969
  8575. }
  8576. },
  8577. dress: {
  8578. height: math.unit(5 + 2 / 12, "feet"),
  8579. weight: math.unit(120, "lbs"),
  8580. name: "Dress",
  8581. image: {
  8582. source: "./media/characters/katherine/dress.svg",
  8583. extra: 2258 / 2064
  8584. }
  8585. },
  8586. },
  8587. [
  8588. {
  8589. name: "Micro",
  8590. height: math.unit(1, "inches"),
  8591. default: true
  8592. },
  8593. {
  8594. name: "Normal",
  8595. height: math.unit(5 + 2 / 12, "feet")
  8596. },
  8597. {
  8598. name: "Macro",
  8599. height: math.unit(100, "meters")
  8600. },
  8601. {
  8602. name: "Megamacro",
  8603. height: math.unit(80, "miles")
  8604. },
  8605. ]
  8606. ))
  8607. characterMakers.push(() => makeCharacter(
  8608. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8609. {
  8610. front: {
  8611. height: math.unit(7 + 8 / 12, "feet"),
  8612. weight: math.unit(250, "lbs"),
  8613. name: "Front",
  8614. image: {
  8615. source: "./media/characters/yevis/front.svg",
  8616. extra: 1938 / 1755
  8617. }
  8618. }
  8619. },
  8620. [
  8621. {
  8622. name: "Mortal",
  8623. height: math.unit(7 + 8 / 12, "feet")
  8624. },
  8625. {
  8626. name: "Battle",
  8627. height: math.unit(25 + 11 / 12, "feet")
  8628. },
  8629. {
  8630. name: "Wrath",
  8631. height: math.unit(1654 + 11 / 12, "feet")
  8632. },
  8633. {
  8634. name: "Planet Destroyer",
  8635. height: math.unit(12000, "miles")
  8636. },
  8637. {
  8638. name: "Galaxy Conqueror",
  8639. height: math.unit(1.45, "zettameters"),
  8640. default: true
  8641. },
  8642. {
  8643. name: "Universal War",
  8644. height: math.unit(184, "gigaparsecs")
  8645. },
  8646. {
  8647. name: "Eternity War",
  8648. height: math.unit(1.98e55, "yottaparsecs")
  8649. },
  8650. ]
  8651. ))
  8652. characterMakers.push(() => makeCharacter(
  8653. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8654. {
  8655. front: {
  8656. height: math.unit(5 + 8 / 12, "feet"),
  8657. weight: math.unit(63, "kg"),
  8658. name: "Front",
  8659. image: {
  8660. source: "./media/characters/xavier/front.svg",
  8661. extra: 944 / 883
  8662. }
  8663. },
  8664. frontStretch: {
  8665. height: math.unit(5 + 8 / 12, "feet"),
  8666. weight: math.unit(63, "kg"),
  8667. name: "Stretching",
  8668. image: {
  8669. source: "./media/characters/xavier/front-stretch.svg",
  8670. extra: 962 / 820
  8671. }
  8672. },
  8673. },
  8674. [
  8675. {
  8676. name: "Normal",
  8677. height: math.unit(5 + 8 / 12, "feet")
  8678. },
  8679. {
  8680. name: "Macro",
  8681. height: math.unit(100, "meters"),
  8682. default: true
  8683. },
  8684. {
  8685. name: "McLargeHuge",
  8686. height: math.unit(10, "miles")
  8687. },
  8688. ]
  8689. ))
  8690. characterMakers.push(() => makeCharacter(
  8691. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8692. {
  8693. front: {
  8694. height: math.unit(5 + 5 / 12, "feet"),
  8695. weight: math.unit(150, "lb"),
  8696. name: "Front",
  8697. image: {
  8698. source: "./media/characters/joshii/front.svg",
  8699. extra: 765 / 653,
  8700. bottom: 51 / 816
  8701. }
  8702. },
  8703. foot: {
  8704. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8705. name: "Foot",
  8706. image: {
  8707. source: "./media/characters/joshii/foot.svg"
  8708. }
  8709. },
  8710. },
  8711. [
  8712. {
  8713. name: "Micro",
  8714. height: math.unit(2, "inches"),
  8715. default: true
  8716. },
  8717. {
  8718. name: "Normal",
  8719. height: math.unit(5 + 5 / 12, "feet")
  8720. },
  8721. {
  8722. name: "Macro",
  8723. height: math.unit(785, "feet")
  8724. },
  8725. {
  8726. name: "Megamacro",
  8727. height: math.unit(24.5, "miles")
  8728. },
  8729. ]
  8730. ))
  8731. characterMakers.push(() => makeCharacter(
  8732. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8733. {
  8734. front: {
  8735. height: math.unit(6, "feet"),
  8736. weight: math.unit(150, "lb"),
  8737. name: "Front",
  8738. image: {
  8739. source: "./media/characters/goddess-elizabeth/front.svg",
  8740. extra: 1800 / 1525,
  8741. bottom: 0.005
  8742. }
  8743. },
  8744. foot: {
  8745. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8746. name: "Foot",
  8747. image: {
  8748. source: "./media/characters/goddess-elizabeth/foot.svg"
  8749. }
  8750. },
  8751. mouth: {
  8752. height: math.unit(6, "feet"),
  8753. name: "Mouth",
  8754. image: {
  8755. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8756. }
  8757. },
  8758. },
  8759. [
  8760. {
  8761. name: "Micro",
  8762. height: math.unit(12, "feet")
  8763. },
  8764. {
  8765. name: "Normal",
  8766. height: math.unit(80, "miles"),
  8767. default: true
  8768. },
  8769. {
  8770. name: "Macro",
  8771. height: math.unit(15000, "parsecs")
  8772. },
  8773. ]
  8774. ))
  8775. characterMakers.push(() => makeCharacter(
  8776. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8777. {
  8778. front: {
  8779. height: math.unit(5 + 9 / 12, "feet"),
  8780. weight: math.unit(144, "lb"),
  8781. name: "Front",
  8782. image: {
  8783. source: "./media/characters/kara/front.svg"
  8784. }
  8785. },
  8786. feet: {
  8787. height: math.unit(6 / 6.765, "feet"),
  8788. name: "Kara's Feet",
  8789. rename: true,
  8790. image: {
  8791. source: "./media/characters/kara/feet.svg"
  8792. }
  8793. },
  8794. },
  8795. [
  8796. {
  8797. name: "Normal",
  8798. height: math.unit(5 + 9 / 12, "feet")
  8799. },
  8800. {
  8801. name: "Macro",
  8802. height: math.unit(174, "feet"),
  8803. default: true
  8804. },
  8805. ]
  8806. ))
  8807. characterMakers.push(() => makeCharacter(
  8808. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8809. {
  8810. front: {
  8811. height: math.unit(18, "feet"),
  8812. weight: math.unit(4050, "lb"),
  8813. name: "Front",
  8814. image: {
  8815. source: "./media/characters/tyrone/front.svg",
  8816. extra: 2405 / 2270,
  8817. bottom: 182 / 2587
  8818. }
  8819. },
  8820. },
  8821. [
  8822. {
  8823. name: "Normal",
  8824. height: math.unit(18, "feet"),
  8825. default: true
  8826. },
  8827. {
  8828. name: "Macro",
  8829. height: math.unit(300, "feet")
  8830. },
  8831. {
  8832. name: "Megamacro",
  8833. height: math.unit(15, "km")
  8834. },
  8835. {
  8836. name: "Gigamacro",
  8837. height: math.unit(500, "km")
  8838. },
  8839. {
  8840. name: "Teramacro",
  8841. height: math.unit(0.5, "gigameters")
  8842. },
  8843. {
  8844. name: "Omnimacro",
  8845. height: math.unit(1e252, "yottauniverse")
  8846. },
  8847. ]
  8848. ))
  8849. characterMakers.push(() => makeCharacter(
  8850. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8851. {
  8852. front: {
  8853. height: math.unit(7 + 8 / 12, "feet"),
  8854. weight: math.unit(120, "lb"),
  8855. name: "Front",
  8856. image: {
  8857. source: "./media/characters/danny/front.svg",
  8858. extra: 1490 / 1350
  8859. }
  8860. },
  8861. back: {
  8862. height: math.unit(7 + 8 / 12, "feet"),
  8863. weight: math.unit(120, "lb"),
  8864. name: "Back",
  8865. image: {
  8866. source: "./media/characters/danny/back.svg",
  8867. extra: 1490 / 1350
  8868. }
  8869. },
  8870. },
  8871. [
  8872. {
  8873. name: "Normal",
  8874. height: math.unit(7 + 8 / 12, "feet"),
  8875. default: true
  8876. },
  8877. ]
  8878. ))
  8879. characterMakers.push(() => makeCharacter(
  8880. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8881. {
  8882. front: {
  8883. height: math.unit(3.5, "inches"),
  8884. weight: math.unit(19, "grams"),
  8885. name: "Front",
  8886. image: {
  8887. source: "./media/characters/mallow/front.svg",
  8888. extra: 471 / 431
  8889. }
  8890. },
  8891. back: {
  8892. height: math.unit(3.5, "inches"),
  8893. weight: math.unit(19, "grams"),
  8894. name: "Back",
  8895. image: {
  8896. source: "./media/characters/mallow/back.svg",
  8897. extra: 471 / 431
  8898. }
  8899. },
  8900. },
  8901. [
  8902. {
  8903. name: "Normal",
  8904. height: math.unit(3.5, "inches"),
  8905. default: true
  8906. },
  8907. ]
  8908. ))
  8909. characterMakers.push(() => makeCharacter(
  8910. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8911. {
  8912. front: {
  8913. height: math.unit(9, "feet"),
  8914. weight: math.unit(230, "kg"),
  8915. name: "Front",
  8916. image: {
  8917. source: "./media/characters/starry-aqua/front.svg"
  8918. }
  8919. },
  8920. back: {
  8921. height: math.unit(9, "feet"),
  8922. weight: math.unit(230, "kg"),
  8923. name: "Back",
  8924. image: {
  8925. source: "./media/characters/starry-aqua/back.svg"
  8926. }
  8927. },
  8928. hand: {
  8929. height: math.unit(9 * 0.1168, "feet"),
  8930. name: "Hand",
  8931. image: {
  8932. source: "./media/characters/starry-aqua/hand.svg"
  8933. }
  8934. },
  8935. foot: {
  8936. height: math.unit(9 * 0.18, "feet"),
  8937. name: "Foot",
  8938. image: {
  8939. source: "./media/characters/starry-aqua/foot.svg"
  8940. }
  8941. }
  8942. },
  8943. [
  8944. {
  8945. name: "Micro",
  8946. height: math.unit(3, "inches")
  8947. },
  8948. {
  8949. name: "Normal",
  8950. height: math.unit(9, "feet")
  8951. },
  8952. {
  8953. name: "Macro",
  8954. height: math.unit(300, "feet"),
  8955. default: true
  8956. },
  8957. {
  8958. name: "Megamacro",
  8959. height: math.unit(3200, "feet")
  8960. }
  8961. ]
  8962. ))
  8963. characterMakers.push(() => makeCharacter(
  8964. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  8965. {
  8966. front: {
  8967. height: math.unit(15, "feet"),
  8968. weight: math.unit(5026, "lb"),
  8969. name: "Front",
  8970. image: {
  8971. source: "./media/characters/luka-towers/front.svg",
  8972. extra: 1269/1133,
  8973. bottom: 51/1320
  8974. }
  8975. },
  8976. },
  8977. [
  8978. {
  8979. name: "Normal",
  8980. height: math.unit(15, "feet"),
  8981. default: true
  8982. },
  8983. {
  8984. name: "Minimacro",
  8985. height: math.unit(25, "feet")
  8986. },
  8987. {
  8988. name: "Macro",
  8989. height: math.unit(320, "feet")
  8990. },
  8991. {
  8992. name: "Megamacro",
  8993. height: math.unit(35000, "feet")
  8994. },
  8995. {
  8996. name: "Gigamacro",
  8997. height: math.unit(4000, "miles")
  8998. },
  8999. {
  9000. name: "Teramacro",
  9001. height: math.unit(15000, "miles")
  9002. },
  9003. ]
  9004. ))
  9005. characterMakers.push(() => makeCharacter(
  9006. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9007. {
  9008. front: {
  9009. height: math.unit(6, "feet"),
  9010. weight: math.unit(150, "lb"),
  9011. name: "Front",
  9012. image: {
  9013. source: "./media/characters/natalie-nightring/front.svg",
  9014. extra: 1,
  9015. bottom: 0.06
  9016. }
  9017. },
  9018. },
  9019. [
  9020. {
  9021. name: "Uh Oh",
  9022. height: math.unit(0.1, "mm")
  9023. },
  9024. {
  9025. name: "Small",
  9026. height: math.unit(3, "inches")
  9027. },
  9028. {
  9029. name: "Human Scale",
  9030. height: math.unit(6, "feet")
  9031. },
  9032. {
  9033. name: "Librarian",
  9034. height: math.unit(50, "feet"),
  9035. default: true
  9036. },
  9037. {
  9038. name: "Immense",
  9039. height: math.unit(200, "miles")
  9040. },
  9041. ]
  9042. ))
  9043. characterMakers.push(() => makeCharacter(
  9044. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9045. {
  9046. front: {
  9047. height: math.unit(6, "feet"),
  9048. weight: math.unit(180, "lbs"),
  9049. name: "Front",
  9050. image: {
  9051. source: "./media/characters/danni-rosie/front.svg",
  9052. extra: 1260 / 1128,
  9053. bottom: 0.022
  9054. }
  9055. },
  9056. },
  9057. [
  9058. {
  9059. name: "Micro",
  9060. height: math.unit(2, "inches"),
  9061. default: true
  9062. },
  9063. ]
  9064. ))
  9065. characterMakers.push(() => makeCharacter(
  9066. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9067. {
  9068. front: {
  9069. height: math.unit(5 + 9 / 12, "feet"),
  9070. weight: math.unit(220, "lb"),
  9071. name: "Front",
  9072. image: {
  9073. source: "./media/characters/samantha-kruse/front.svg",
  9074. extra: (985 / 935),
  9075. bottom: 0.03
  9076. }
  9077. },
  9078. frontUndressed: {
  9079. height: math.unit(5 + 9 / 12, "feet"),
  9080. weight: math.unit(220, "lb"),
  9081. name: "Front (Undressed)",
  9082. image: {
  9083. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9084. extra: (973 / 923),
  9085. bottom: 0.025
  9086. }
  9087. },
  9088. fat: {
  9089. height: math.unit(5 + 9 / 12, "feet"),
  9090. weight: math.unit(900, "lb"),
  9091. name: "Front (Fat)",
  9092. image: {
  9093. source: "./media/characters/samantha-kruse/fat.svg",
  9094. extra: 2688 / 2561
  9095. }
  9096. },
  9097. },
  9098. [
  9099. {
  9100. name: "Normal",
  9101. height: math.unit(5 + 9 / 12, "feet"),
  9102. default: true
  9103. }
  9104. ]
  9105. ))
  9106. characterMakers.push(() => makeCharacter(
  9107. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9108. {
  9109. back: {
  9110. height: math.unit(5 + 4 / 12, "feet"),
  9111. weight: math.unit(4963, "lb"),
  9112. name: "Back",
  9113. image: {
  9114. source: "./media/characters/amelia-rosie/back.svg",
  9115. extra: 1113 / 963,
  9116. bottom: 0.01
  9117. }
  9118. },
  9119. },
  9120. [
  9121. {
  9122. name: "Level 0",
  9123. height: math.unit(5 + 4 / 12, "feet")
  9124. },
  9125. {
  9126. name: "Level 1",
  9127. height: math.unit(164597, "feet"),
  9128. default: true
  9129. },
  9130. {
  9131. name: "Level 2",
  9132. height: math.unit(956243, "miles")
  9133. },
  9134. {
  9135. name: "Level 3",
  9136. height: math.unit(29421709423, "miles")
  9137. },
  9138. {
  9139. name: "Level 4",
  9140. height: math.unit(154, "lightyears")
  9141. },
  9142. {
  9143. name: "Level 5",
  9144. height: math.unit(4738272, "lightyears")
  9145. },
  9146. {
  9147. name: "Level 6",
  9148. height: math.unit(145787152896, "lightyears")
  9149. },
  9150. ]
  9151. ))
  9152. characterMakers.push(() => makeCharacter(
  9153. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9154. {
  9155. front: {
  9156. height: math.unit(5 + 11 / 12, "feet"),
  9157. weight: math.unit(65, "kg"),
  9158. name: "Front",
  9159. image: {
  9160. source: "./media/characters/rook-kitara/front.svg",
  9161. extra: 1347 / 1274,
  9162. bottom: 0.005
  9163. }
  9164. },
  9165. },
  9166. [
  9167. {
  9168. name: "Totally Unfair",
  9169. height: math.unit(1.8, "mm")
  9170. },
  9171. {
  9172. name: "Lap Rookie",
  9173. height: math.unit(1.4, "feet")
  9174. },
  9175. {
  9176. name: "Normal",
  9177. height: math.unit(5 + 11 / 12, "feet"),
  9178. default: true
  9179. },
  9180. {
  9181. name: "How Did This Happen",
  9182. height: math.unit(80, "miles")
  9183. }
  9184. ]
  9185. ))
  9186. characterMakers.push(() => makeCharacter(
  9187. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9188. {
  9189. front: {
  9190. height: math.unit(7, "feet"),
  9191. weight: math.unit(300, "lb"),
  9192. name: "Front",
  9193. image: {
  9194. source: "./media/characters/pisces/front.svg",
  9195. extra: 2255 / 2115,
  9196. bottom: 0.03
  9197. }
  9198. },
  9199. back: {
  9200. height: math.unit(7, "feet"),
  9201. weight: math.unit(300, "lb"),
  9202. name: "Back",
  9203. image: {
  9204. source: "./media/characters/pisces/back.svg",
  9205. extra: 2146 / 2055,
  9206. bottom: 0.04
  9207. }
  9208. },
  9209. },
  9210. [
  9211. {
  9212. name: "Normal",
  9213. height: math.unit(7, "feet"),
  9214. default: true
  9215. },
  9216. {
  9217. name: "Swimming Pool",
  9218. height: math.unit(12.2, "meters")
  9219. },
  9220. {
  9221. name: "Olympic Swimming Pool",
  9222. height: math.unit(56.3, "meters")
  9223. },
  9224. {
  9225. name: "Lake Superior",
  9226. height: math.unit(93900, "meters")
  9227. },
  9228. {
  9229. name: "Mediterranean Sea",
  9230. height: math.unit(644457, "meters")
  9231. },
  9232. {
  9233. name: "World's Oceans",
  9234. height: math.unit(4567491, "meters")
  9235. },
  9236. ]
  9237. ))
  9238. characterMakers.push(() => makeCharacter(
  9239. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9240. {
  9241. front: {
  9242. height: math.unit(2.3, "meters"),
  9243. weight: math.unit(120, "kg"),
  9244. name: "Front",
  9245. image: {
  9246. source: "./media/characters/zelas/front.svg"
  9247. }
  9248. },
  9249. side: {
  9250. height: math.unit(2.3, "meters"),
  9251. weight: math.unit(120, "kg"),
  9252. name: "Side",
  9253. image: {
  9254. source: "./media/characters/zelas/side.svg"
  9255. }
  9256. },
  9257. back: {
  9258. height: math.unit(2.3, "meters"),
  9259. weight: math.unit(120, "kg"),
  9260. name: "Back",
  9261. image: {
  9262. source: "./media/characters/zelas/back.svg"
  9263. }
  9264. },
  9265. foot: {
  9266. height: math.unit(1.116, "feet"),
  9267. name: "Foot",
  9268. image: {
  9269. source: "./media/characters/zelas/foot.svg"
  9270. }
  9271. },
  9272. },
  9273. [
  9274. {
  9275. name: "Normal",
  9276. height: math.unit(2.3, "meters")
  9277. },
  9278. {
  9279. name: "Macro",
  9280. height: math.unit(30, "meters"),
  9281. default: true
  9282. },
  9283. ]
  9284. ))
  9285. characterMakers.push(() => makeCharacter(
  9286. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9287. {
  9288. front: {
  9289. height: math.unit(1, "inch"),
  9290. weight: math.unit(0.21, "grams"),
  9291. name: "Front",
  9292. image: {
  9293. source: "./media/characters/talbot/front.svg",
  9294. extra: 594 / 544
  9295. }
  9296. },
  9297. },
  9298. [
  9299. {
  9300. name: "Micro",
  9301. height: math.unit(1, "inch"),
  9302. default: true
  9303. },
  9304. ]
  9305. ))
  9306. characterMakers.push(() => makeCharacter(
  9307. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9308. {
  9309. front: {
  9310. height: math.unit(3 + 3 / 12, "feet"),
  9311. weight: math.unit(51.8, "lb"),
  9312. name: "Front",
  9313. image: {
  9314. source: "./media/characters/fliss/front.svg",
  9315. extra: 840 / 640
  9316. }
  9317. },
  9318. },
  9319. [
  9320. {
  9321. name: "Teeny Tiny",
  9322. height: math.unit(1, "mm")
  9323. },
  9324. {
  9325. name: "Small",
  9326. height: math.unit(1, "inch"),
  9327. default: true
  9328. },
  9329. {
  9330. name: "Standard Sylveon",
  9331. height: math.unit(3 + 3 / 12, "feet")
  9332. },
  9333. {
  9334. name: "Large Nuisance",
  9335. height: math.unit(33, "feet")
  9336. },
  9337. {
  9338. name: "City Filler",
  9339. height: math.unit(3000, "feet")
  9340. },
  9341. {
  9342. name: "New Horizon",
  9343. height: math.unit(6000, "miles")
  9344. },
  9345. ]
  9346. ))
  9347. characterMakers.push(() => makeCharacter(
  9348. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9349. {
  9350. front: {
  9351. height: math.unit(5, "cm"),
  9352. weight: math.unit(1.94, "g"),
  9353. name: "Front",
  9354. image: {
  9355. source: "./media/characters/fleta/front.svg",
  9356. extra: 835 / 803
  9357. }
  9358. },
  9359. back: {
  9360. height: math.unit(5, "cm"),
  9361. weight: math.unit(1.94, "g"),
  9362. name: "Back",
  9363. image: {
  9364. source: "./media/characters/fleta/back.svg",
  9365. extra: 835 / 803
  9366. }
  9367. },
  9368. },
  9369. [
  9370. {
  9371. name: "Micro",
  9372. height: math.unit(5, "cm"),
  9373. default: true
  9374. },
  9375. ]
  9376. ))
  9377. characterMakers.push(() => makeCharacter(
  9378. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9379. {
  9380. front: {
  9381. height: math.unit(6, "feet"),
  9382. weight: math.unit(225, "lb"),
  9383. name: "Front",
  9384. image: {
  9385. source: "./media/characters/dominic/front.svg",
  9386. extra: 1770 / 1620,
  9387. bottom: 0.025
  9388. }
  9389. },
  9390. back: {
  9391. height: math.unit(6, "feet"),
  9392. weight: math.unit(225, "lb"),
  9393. name: "Back",
  9394. image: {
  9395. source: "./media/characters/dominic/back.svg",
  9396. extra: 1745 / 1620,
  9397. bottom: 0.065
  9398. }
  9399. },
  9400. },
  9401. [
  9402. {
  9403. name: "Nano",
  9404. height: math.unit(0.1, "mm")
  9405. },
  9406. {
  9407. name: "Micro-",
  9408. height: math.unit(1, "mm")
  9409. },
  9410. {
  9411. name: "Micro",
  9412. height: math.unit(4, "inches")
  9413. },
  9414. {
  9415. name: "Normal",
  9416. height: math.unit(6 + 4 / 12, "feet"),
  9417. default: true
  9418. },
  9419. {
  9420. name: "Macro",
  9421. height: math.unit(115, "feet")
  9422. },
  9423. {
  9424. name: "Macro+",
  9425. height: math.unit(955, "feet")
  9426. },
  9427. {
  9428. name: "Megamacro",
  9429. height: math.unit(8990, "feet")
  9430. },
  9431. {
  9432. name: "Gigmacro",
  9433. height: math.unit(9310, "miles")
  9434. },
  9435. {
  9436. name: "Teramacro",
  9437. height: math.unit(1567005010, "miles")
  9438. },
  9439. {
  9440. name: "Examacro",
  9441. height: math.unit(1425, "parsecs")
  9442. },
  9443. ]
  9444. ))
  9445. characterMakers.push(() => makeCharacter(
  9446. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9447. {
  9448. front: {
  9449. height: math.unit(400, "feet"),
  9450. weight: math.unit(44444444, "lb"),
  9451. name: "Front",
  9452. image: {
  9453. source: "./media/characters/major-colonel/front.svg"
  9454. }
  9455. },
  9456. back: {
  9457. height: math.unit(400, "feet"),
  9458. weight: math.unit(44444444, "lb"),
  9459. name: "Back",
  9460. image: {
  9461. source: "./media/characters/major-colonel/back.svg"
  9462. }
  9463. },
  9464. },
  9465. [
  9466. {
  9467. name: "Macro",
  9468. height: math.unit(400, "feet"),
  9469. default: true
  9470. },
  9471. ]
  9472. ))
  9473. characterMakers.push(() => makeCharacter(
  9474. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9475. {
  9476. catFront: {
  9477. height: math.unit(6, "feet"),
  9478. weight: math.unit(120, "lb"),
  9479. name: "Front (Cat Side)",
  9480. image: {
  9481. source: "./media/characters/axel-lycan/cat-front.svg",
  9482. extra: 430 / 402,
  9483. bottom: 43 / 472.35
  9484. }
  9485. },
  9486. catBack: {
  9487. height: math.unit(6, "feet"),
  9488. weight: math.unit(120, "lb"),
  9489. name: "Back (Cat Side)",
  9490. image: {
  9491. source: "./media/characters/axel-lycan/cat-back.svg",
  9492. extra: 447 / 419,
  9493. bottom: 23.3 / 469
  9494. }
  9495. },
  9496. wolfFront: {
  9497. height: math.unit(6, "feet"),
  9498. weight: math.unit(120, "lb"),
  9499. name: "Front (Wolf Side)",
  9500. image: {
  9501. source: "./media/characters/axel-lycan/wolf-front.svg",
  9502. extra: 485 / 456,
  9503. bottom: 19 / 504
  9504. }
  9505. },
  9506. wolfBack: {
  9507. height: math.unit(6, "feet"),
  9508. weight: math.unit(120, "lb"),
  9509. name: "Back (Wolf Side)",
  9510. image: {
  9511. source: "./media/characters/axel-lycan/wolf-back.svg",
  9512. extra: 475 / 438,
  9513. bottom: 39.2 / 514
  9514. }
  9515. },
  9516. },
  9517. [
  9518. {
  9519. name: "Macro",
  9520. height: math.unit(1, "km"),
  9521. default: true
  9522. },
  9523. ]
  9524. ))
  9525. characterMakers.push(() => makeCharacter(
  9526. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9527. {
  9528. front: {
  9529. height: math.unit(5 + 9 / 12, "feet"),
  9530. weight: math.unit(175, "lb"),
  9531. name: "Front",
  9532. image: {
  9533. source: "./media/characters/vanrel-hyena/front.svg",
  9534. extra: 1086 / 1010,
  9535. bottom: 0.04
  9536. }
  9537. },
  9538. },
  9539. [
  9540. {
  9541. name: "Normal",
  9542. height: math.unit(5 + 9 / 12, "feet"),
  9543. default: true
  9544. },
  9545. ]
  9546. ))
  9547. characterMakers.push(() => makeCharacter(
  9548. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9549. {
  9550. front: {
  9551. height: math.unit(6, "feet"),
  9552. weight: math.unit(103, "lb"),
  9553. name: "Front",
  9554. image: {
  9555. source: "./media/characters/abbott-absol/front.svg",
  9556. extra: 2010 / 1842
  9557. }
  9558. },
  9559. },
  9560. [
  9561. {
  9562. name: "Megamicro",
  9563. height: math.unit(0.1, "mm")
  9564. },
  9565. {
  9566. name: "Micro",
  9567. height: math.unit(1, "inch")
  9568. },
  9569. {
  9570. name: "Normal",
  9571. height: math.unit(6, "feet"),
  9572. default: true
  9573. },
  9574. ]
  9575. ))
  9576. characterMakers.push(() => makeCharacter(
  9577. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9578. {
  9579. front: {
  9580. height: math.unit(6, "feet"),
  9581. weight: math.unit(264, "lb"),
  9582. name: "Front",
  9583. image: {
  9584. source: "./media/characters/hector/front.svg",
  9585. extra: 2280 / 2130,
  9586. bottom: 0.07
  9587. }
  9588. },
  9589. },
  9590. [
  9591. {
  9592. name: "Normal",
  9593. height: math.unit(12.25, "foot"),
  9594. default: true
  9595. },
  9596. {
  9597. name: "Macro",
  9598. height: math.unit(160, "feet")
  9599. },
  9600. ]
  9601. ))
  9602. characterMakers.push(() => makeCharacter(
  9603. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9604. {
  9605. front: {
  9606. height: math.unit(6, "feet"),
  9607. weight: math.unit(150, "lb"),
  9608. name: "Front",
  9609. image: {
  9610. source: "./media/characters/sal/front.svg",
  9611. extra: 1846 / 1699,
  9612. bottom: 0.04
  9613. }
  9614. },
  9615. },
  9616. [
  9617. {
  9618. name: "Megamacro",
  9619. height: math.unit(10, "miles"),
  9620. default: true
  9621. },
  9622. ]
  9623. ))
  9624. characterMakers.push(() => makeCharacter(
  9625. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9626. {
  9627. front: {
  9628. height: math.unit(3, "meters"),
  9629. weight: math.unit(450, "kg"),
  9630. name: "front",
  9631. image: {
  9632. source: "./media/characters/ranger/front.svg",
  9633. extra: 2401 / 2243,
  9634. bottom: 0.05
  9635. }
  9636. },
  9637. },
  9638. [
  9639. {
  9640. name: "Normal",
  9641. height: math.unit(3, "meters"),
  9642. default: true
  9643. },
  9644. ]
  9645. ))
  9646. characterMakers.push(() => makeCharacter(
  9647. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9648. {
  9649. front: {
  9650. height: math.unit(14, "feet"),
  9651. weight: math.unit(800, "kg"),
  9652. name: "Front",
  9653. image: {
  9654. source: "./media/characters/theresa/front.svg",
  9655. extra: 3575 / 3346,
  9656. bottom: 0.03
  9657. }
  9658. },
  9659. },
  9660. [
  9661. {
  9662. name: "Normal",
  9663. height: math.unit(14, "feet"),
  9664. default: true
  9665. },
  9666. ]
  9667. ))
  9668. characterMakers.push(() => makeCharacter(
  9669. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9670. {
  9671. front: {
  9672. height: math.unit(6, "feet"),
  9673. weight: math.unit(3, "kg"),
  9674. name: "Front",
  9675. image: {
  9676. source: "./media/characters/ine/front.svg",
  9677. extra: 678 / 539,
  9678. bottom: 0.023
  9679. }
  9680. },
  9681. },
  9682. [
  9683. {
  9684. name: "Normal",
  9685. height: math.unit(2.265, "feet"),
  9686. default: true
  9687. },
  9688. ]
  9689. ))
  9690. characterMakers.push(() => makeCharacter(
  9691. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9692. {
  9693. front: {
  9694. height: math.unit(5, "feet"),
  9695. weight: math.unit(30, "kg"),
  9696. name: "Front",
  9697. image: {
  9698. source: "./media/characters/vial/front.svg",
  9699. extra: 1365 / 1277,
  9700. bottom: 0.04
  9701. }
  9702. },
  9703. },
  9704. [
  9705. {
  9706. name: "Normal",
  9707. height: math.unit(5, "feet"),
  9708. default: true
  9709. },
  9710. ]
  9711. ))
  9712. characterMakers.push(() => makeCharacter(
  9713. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9714. {
  9715. side: {
  9716. height: math.unit(3.4, "meters"),
  9717. weight: math.unit(1000, "lb"),
  9718. name: "Side",
  9719. image: {
  9720. source: "./media/characters/rovoska/side.svg",
  9721. extra: 4403 / 1515
  9722. }
  9723. },
  9724. },
  9725. [
  9726. {
  9727. name: "Normal",
  9728. height: math.unit(3.4, "meters"),
  9729. default: true
  9730. },
  9731. ]
  9732. ))
  9733. characterMakers.push(() => makeCharacter(
  9734. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9735. {
  9736. front: {
  9737. height: math.unit(8, "feet"),
  9738. weight: math.unit(315, "lb"),
  9739. name: "Front",
  9740. image: {
  9741. source: "./media/characters/gunner-rotthbauer/front.svg"
  9742. }
  9743. },
  9744. back: {
  9745. height: math.unit(8, "feet"),
  9746. weight: math.unit(315, "lb"),
  9747. name: "Back",
  9748. image: {
  9749. source: "./media/characters/gunner-rotthbauer/back.svg"
  9750. }
  9751. },
  9752. },
  9753. [
  9754. {
  9755. name: "Micro",
  9756. height: math.unit(3.5, "inches")
  9757. },
  9758. {
  9759. name: "Normal",
  9760. height: math.unit(8, "feet"),
  9761. default: true
  9762. },
  9763. {
  9764. name: "Macro",
  9765. height: math.unit(250, "feet")
  9766. },
  9767. {
  9768. name: "Megamacro",
  9769. height: math.unit(1, "AU")
  9770. },
  9771. ]
  9772. ))
  9773. characterMakers.push(() => makeCharacter(
  9774. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9775. {
  9776. front: {
  9777. height: math.unit(5 + 5 / 12, "feet"),
  9778. weight: math.unit(140, "lb"),
  9779. name: "Front",
  9780. image: {
  9781. source: "./media/characters/allatia/front.svg",
  9782. extra: 1227 / 1180,
  9783. bottom: 0.027
  9784. }
  9785. },
  9786. },
  9787. [
  9788. {
  9789. name: "Normal",
  9790. height: math.unit(5 + 5 / 12, "feet")
  9791. },
  9792. {
  9793. name: "Macro",
  9794. height: math.unit(250, "feet"),
  9795. default: true
  9796. },
  9797. {
  9798. name: "Megamacro",
  9799. height: math.unit(8, "miles")
  9800. }
  9801. ]
  9802. ))
  9803. characterMakers.push(() => makeCharacter(
  9804. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9805. {
  9806. front: {
  9807. height: math.unit(6, "feet"),
  9808. weight: math.unit(120, "lb"),
  9809. name: "Front",
  9810. image: {
  9811. source: "./media/characters/tene/front.svg",
  9812. extra: 1728 / 1578,
  9813. bottom: 0.022
  9814. }
  9815. },
  9816. stomping: {
  9817. height: math.unit(2.025, "meters"),
  9818. weight: math.unit(120, "lb"),
  9819. name: "Stomping",
  9820. image: {
  9821. source: "./media/characters/tene/stomping.svg",
  9822. extra: 938 / 873,
  9823. bottom: 0.01
  9824. }
  9825. },
  9826. sitting: {
  9827. height: math.unit(1, "meter"),
  9828. weight: math.unit(120, "lb"),
  9829. name: "Sitting",
  9830. image: {
  9831. source: "./media/characters/tene/sitting.svg",
  9832. extra: 437 / 415,
  9833. bottom: 0.1
  9834. }
  9835. },
  9836. feral: {
  9837. height: math.unit(3.9, "feet"),
  9838. weight: math.unit(250, "lb"),
  9839. name: "Feral",
  9840. image: {
  9841. source: "./media/characters/tene/feral.svg",
  9842. extra: 717 / 458,
  9843. bottom: 0.179
  9844. }
  9845. },
  9846. },
  9847. [
  9848. {
  9849. name: "Normal",
  9850. height: math.unit(6, "feet")
  9851. },
  9852. {
  9853. name: "Macro",
  9854. height: math.unit(300, "feet"),
  9855. default: true
  9856. },
  9857. {
  9858. name: "Megamacro",
  9859. height: math.unit(5, "miles")
  9860. },
  9861. ]
  9862. ))
  9863. characterMakers.push(() => makeCharacter(
  9864. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9865. {
  9866. side: {
  9867. height: math.unit(6, "feet"),
  9868. name: "Side",
  9869. image: {
  9870. source: "./media/characters/evander/side.svg",
  9871. extra: 877 / 477
  9872. }
  9873. },
  9874. },
  9875. [
  9876. {
  9877. name: "Normal",
  9878. height: math.unit(0.83, "meters"),
  9879. default: true
  9880. },
  9881. ]
  9882. ))
  9883. characterMakers.push(() => makeCharacter(
  9884. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9885. {
  9886. front: {
  9887. height: math.unit(12, "feet"),
  9888. weight: math.unit(1000, "lb"),
  9889. name: "Front",
  9890. image: {
  9891. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9892. extra: 1762 / 1611
  9893. }
  9894. },
  9895. back: {
  9896. height: math.unit(12, "feet"),
  9897. weight: math.unit(1000, "lb"),
  9898. name: "Back",
  9899. image: {
  9900. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9901. extra: 1762 / 1611
  9902. }
  9903. },
  9904. },
  9905. [
  9906. {
  9907. name: "Normal",
  9908. height: math.unit(12, "feet"),
  9909. default: true
  9910. },
  9911. {
  9912. name: "Kaiju",
  9913. height: math.unit(150, "feet")
  9914. },
  9915. ]
  9916. ))
  9917. characterMakers.push(() => makeCharacter(
  9918. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9919. {
  9920. front: {
  9921. height: math.unit(6, "feet"),
  9922. weight: math.unit(150, "lb"),
  9923. name: "Front",
  9924. image: {
  9925. source: "./media/characters/zero-alurus/front.svg"
  9926. }
  9927. },
  9928. back: {
  9929. height: math.unit(6, "feet"),
  9930. weight: math.unit(150, "lb"),
  9931. name: "Back",
  9932. image: {
  9933. source: "./media/characters/zero-alurus/back.svg"
  9934. }
  9935. },
  9936. },
  9937. [
  9938. {
  9939. name: "Normal",
  9940. height: math.unit(5 + 10 / 12, "feet")
  9941. },
  9942. {
  9943. name: "Macro",
  9944. height: math.unit(60, "feet"),
  9945. default: true
  9946. },
  9947. {
  9948. name: "Macro+",
  9949. height: math.unit(450, "feet")
  9950. },
  9951. ]
  9952. ))
  9953. characterMakers.push(() => makeCharacter(
  9954. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9955. {
  9956. front: {
  9957. height: math.unit(6, "feet"),
  9958. weight: math.unit(200, "lb"),
  9959. name: "Front",
  9960. image: {
  9961. source: "./media/characters/mega-shi/front.svg",
  9962. extra: 1279 / 1250,
  9963. bottom: 0.02
  9964. }
  9965. },
  9966. back: {
  9967. height: math.unit(6, "feet"),
  9968. weight: math.unit(200, "lb"),
  9969. name: "Back",
  9970. image: {
  9971. source: "./media/characters/mega-shi/back.svg",
  9972. extra: 1279 / 1250,
  9973. bottom: 0.02
  9974. }
  9975. },
  9976. },
  9977. [
  9978. {
  9979. name: "Micro",
  9980. height: math.unit(16 + 6 / 12, "feet")
  9981. },
  9982. {
  9983. name: "Third Dimension",
  9984. height: math.unit(40, "meters")
  9985. },
  9986. {
  9987. name: "Normal",
  9988. height: math.unit(660, "feet"),
  9989. default: true
  9990. },
  9991. {
  9992. name: "Megamacro",
  9993. height: math.unit(10, "miles")
  9994. },
  9995. {
  9996. name: "Planetary Launch",
  9997. height: math.unit(500, "miles")
  9998. },
  9999. {
  10000. name: "Interstellar",
  10001. height: math.unit(1e9, "miles")
  10002. },
  10003. {
  10004. name: "Leaving the Universe",
  10005. height: math.unit(1, "gigaparsec")
  10006. },
  10007. {
  10008. name: "Travelling Universes",
  10009. height: math.unit(30e15, "parsecs")
  10010. },
  10011. ]
  10012. ))
  10013. characterMakers.push(() => makeCharacter(
  10014. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10015. {
  10016. front: {
  10017. height: math.unit(6, "feet"),
  10018. weight: math.unit(150, "lb"),
  10019. name: "Front",
  10020. image: {
  10021. source: "./media/characters/odyssey/front.svg",
  10022. extra: 1782 / 1582,
  10023. bottom: 0.01
  10024. }
  10025. },
  10026. side: {
  10027. height: math.unit(5.7, "feet"),
  10028. weight: math.unit(140, "lb"),
  10029. name: "Side",
  10030. image: {
  10031. source: "./media/characters/odyssey/side.svg",
  10032. extra: 6462 / 5700
  10033. }
  10034. },
  10035. },
  10036. [
  10037. {
  10038. name: "Normal",
  10039. height: math.unit(5 + 4 / 12, "feet")
  10040. },
  10041. {
  10042. name: "Macro",
  10043. height: math.unit(1, "km")
  10044. },
  10045. {
  10046. name: "Megamacro",
  10047. height: math.unit(3000, "km")
  10048. },
  10049. {
  10050. name: "Gigamacro",
  10051. height: math.unit(1, "AU"),
  10052. default: true
  10053. },
  10054. {
  10055. name: "Omniversal",
  10056. height: math.unit(100e14, "lightyears")
  10057. },
  10058. ]
  10059. ))
  10060. characterMakers.push(() => makeCharacter(
  10061. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10062. {
  10063. front: {
  10064. height: math.unit(6, "feet"),
  10065. weight: math.unit(300, "lb"),
  10066. name: "Front",
  10067. image: {
  10068. source: "./media/characters/mekuto/front.svg",
  10069. extra: 921 / 832,
  10070. bottom: 0.03
  10071. }
  10072. },
  10073. hand: {
  10074. height: math.unit(6 / 10.24, "feet"),
  10075. name: "Hand",
  10076. image: {
  10077. source: "./media/characters/mekuto/hand.svg"
  10078. }
  10079. },
  10080. foot: {
  10081. height: math.unit(6 / 5.05, "feet"),
  10082. name: "Foot",
  10083. image: {
  10084. source: "./media/characters/mekuto/foot.svg"
  10085. }
  10086. },
  10087. },
  10088. [
  10089. {
  10090. name: "Minimicro",
  10091. height: math.unit(0.2, "inches")
  10092. },
  10093. {
  10094. name: "Micro",
  10095. height: math.unit(1.5, "inches")
  10096. },
  10097. {
  10098. name: "Normal",
  10099. height: math.unit(5 + 11 / 12, "feet"),
  10100. default: true
  10101. },
  10102. {
  10103. name: "Minimacro",
  10104. height: math.unit(17 + 9 / 12, "feet")
  10105. },
  10106. {
  10107. name: "Macro",
  10108. height: math.unit(177.5, "feet")
  10109. },
  10110. {
  10111. name: "Megamacro",
  10112. height: math.unit(152, "miles")
  10113. },
  10114. ]
  10115. ))
  10116. characterMakers.push(() => makeCharacter(
  10117. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10118. {
  10119. front: {
  10120. height: math.unit(6.5, "inches"),
  10121. weight: math.unit(13, "oz"),
  10122. name: "Front",
  10123. image: {
  10124. source: "./media/characters/dafydd-tomos/front.svg",
  10125. extra: 2990 / 2603,
  10126. bottom: 0.03
  10127. }
  10128. },
  10129. },
  10130. [
  10131. {
  10132. name: "Micro",
  10133. height: math.unit(6.5, "inches"),
  10134. default: true
  10135. },
  10136. ]
  10137. ))
  10138. characterMakers.push(() => makeCharacter(
  10139. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10140. {
  10141. front: {
  10142. height: math.unit(6, "feet"),
  10143. weight: math.unit(150, "lb"),
  10144. name: "Front",
  10145. image: {
  10146. source: "./media/characters/splinter/front.svg",
  10147. extra: 2990 / 2882,
  10148. bottom: 0.04
  10149. }
  10150. },
  10151. back: {
  10152. height: math.unit(6, "feet"),
  10153. weight: math.unit(150, "lb"),
  10154. name: "Back",
  10155. image: {
  10156. source: "./media/characters/splinter/back.svg",
  10157. extra: 2990 / 2882,
  10158. bottom: 0.04
  10159. }
  10160. },
  10161. },
  10162. [
  10163. {
  10164. name: "Normal",
  10165. height: math.unit(6, "feet")
  10166. },
  10167. {
  10168. name: "Macro",
  10169. height: math.unit(230, "meters"),
  10170. default: true
  10171. },
  10172. ]
  10173. ))
  10174. characterMakers.push(() => makeCharacter(
  10175. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10176. {
  10177. front: {
  10178. height: math.unit(4 + 10 / 12, "feet"),
  10179. weight: math.unit(480, "lb"),
  10180. name: "Front",
  10181. image: {
  10182. source: "./media/characters/snow-gabumon/front.svg",
  10183. extra: 1140 / 963,
  10184. bottom: 0.058
  10185. }
  10186. },
  10187. back: {
  10188. height: math.unit(4 + 10 / 12, "feet"),
  10189. weight: math.unit(480, "lb"),
  10190. name: "Back",
  10191. image: {
  10192. source: "./media/characters/snow-gabumon/back.svg",
  10193. extra: 1115 / 962,
  10194. bottom: 0.041
  10195. }
  10196. },
  10197. frontUndresed: {
  10198. height: math.unit(4 + 10 / 12, "feet"),
  10199. weight: math.unit(480, "lb"),
  10200. name: "Front (Undressed)",
  10201. image: {
  10202. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10203. extra: 1061 / 960,
  10204. bottom: 0.045
  10205. }
  10206. },
  10207. },
  10208. [
  10209. {
  10210. name: "Micro",
  10211. height: math.unit(1, "inch")
  10212. },
  10213. {
  10214. name: "Normal",
  10215. height: math.unit(4 + 10 / 12, "feet"),
  10216. default: true
  10217. },
  10218. {
  10219. name: "Macro",
  10220. height: math.unit(200, "feet")
  10221. },
  10222. {
  10223. name: "Megamacro",
  10224. height: math.unit(120, "miles")
  10225. },
  10226. {
  10227. name: "Gigamacro",
  10228. height: math.unit(9800, "miles")
  10229. },
  10230. ]
  10231. ))
  10232. characterMakers.push(() => makeCharacter(
  10233. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10234. {
  10235. front: {
  10236. height: math.unit(1.7, "meters"),
  10237. weight: math.unit(140, "lb"),
  10238. name: "Front",
  10239. image: {
  10240. source: "./media/characters/moody/front.svg",
  10241. extra: 3226 / 3007,
  10242. bottom: 0.087
  10243. }
  10244. },
  10245. },
  10246. [
  10247. {
  10248. name: "Micro",
  10249. height: math.unit(1, "mm")
  10250. },
  10251. {
  10252. name: "Normal",
  10253. height: math.unit(1.7, "meters"),
  10254. default: true
  10255. },
  10256. {
  10257. name: "Macro",
  10258. height: math.unit(80, "meters")
  10259. },
  10260. {
  10261. name: "Macro+",
  10262. height: math.unit(500, "meters")
  10263. },
  10264. ]
  10265. ))
  10266. characterMakers.push(() => makeCharacter(
  10267. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10268. {
  10269. front: {
  10270. height: math.unit(6, "feet"),
  10271. weight: math.unit(150, "lb"),
  10272. name: "Front",
  10273. image: {
  10274. source: "./media/characters/zyas/front.svg",
  10275. extra: 1180 / 1120,
  10276. bottom: 0.045
  10277. }
  10278. },
  10279. },
  10280. [
  10281. {
  10282. name: "Normal",
  10283. height: math.unit(10, "feet"),
  10284. default: true
  10285. },
  10286. {
  10287. name: "Macro",
  10288. height: math.unit(500, "feet")
  10289. },
  10290. {
  10291. name: "Megamacro",
  10292. height: math.unit(5, "miles")
  10293. },
  10294. {
  10295. name: "Teramacro",
  10296. height: math.unit(150000, "miles")
  10297. },
  10298. ]
  10299. ))
  10300. characterMakers.push(() => makeCharacter(
  10301. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10302. {
  10303. front: {
  10304. height: math.unit(6, "feet"),
  10305. weight: math.unit(150, "lb"),
  10306. name: "Front",
  10307. image: {
  10308. source: "./media/characters/cuon/front.svg",
  10309. extra: 1390 / 1320,
  10310. bottom: 0.008
  10311. }
  10312. },
  10313. },
  10314. [
  10315. {
  10316. name: "Micro",
  10317. height: math.unit(3, "inches")
  10318. },
  10319. {
  10320. name: "Normal",
  10321. height: math.unit(18 + 9 / 12, "feet"),
  10322. default: true
  10323. },
  10324. {
  10325. name: "Macro",
  10326. height: math.unit(360, "feet")
  10327. },
  10328. {
  10329. name: "Megamacro",
  10330. height: math.unit(360, "miles")
  10331. },
  10332. ]
  10333. ))
  10334. characterMakers.push(() => makeCharacter(
  10335. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10336. {
  10337. front: {
  10338. height: math.unit(2.4, "meters"),
  10339. weight: math.unit(70, "kg"),
  10340. name: "Front",
  10341. image: {
  10342. source: "./media/characters/nyanuxk/front.svg",
  10343. extra: 1172 / 1084,
  10344. bottom: 0.065
  10345. }
  10346. },
  10347. side: {
  10348. height: math.unit(2.4, "meters"),
  10349. weight: math.unit(70, "kg"),
  10350. name: "Side",
  10351. image: {
  10352. source: "./media/characters/nyanuxk/side.svg",
  10353. extra: 1190 / 1132,
  10354. bottom: 0.007
  10355. }
  10356. },
  10357. back: {
  10358. height: math.unit(2.4, "meters"),
  10359. weight: math.unit(70, "kg"),
  10360. name: "Back",
  10361. image: {
  10362. source: "./media/characters/nyanuxk/back.svg",
  10363. extra: 1200 / 1141,
  10364. bottom: 0.015
  10365. }
  10366. },
  10367. foot: {
  10368. height: math.unit(0.52, "meters"),
  10369. name: "Foot",
  10370. image: {
  10371. source: "./media/characters/nyanuxk/foot.svg"
  10372. }
  10373. },
  10374. },
  10375. [
  10376. {
  10377. name: "Micro",
  10378. height: math.unit(2, "cm")
  10379. },
  10380. {
  10381. name: "Normal",
  10382. height: math.unit(2.4, "meters"),
  10383. default: true
  10384. },
  10385. {
  10386. name: "Smaller Macro",
  10387. height: math.unit(120, "meters")
  10388. },
  10389. {
  10390. name: "Bigger Macro",
  10391. height: math.unit(1.2, "km")
  10392. },
  10393. {
  10394. name: "Megamacro",
  10395. height: math.unit(15, "kilometers")
  10396. },
  10397. {
  10398. name: "Gigamacro",
  10399. height: math.unit(2000, "km")
  10400. },
  10401. {
  10402. name: "Teramacro",
  10403. height: math.unit(500000, "km")
  10404. },
  10405. ]
  10406. ))
  10407. characterMakers.push(() => makeCharacter(
  10408. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10409. {
  10410. side: {
  10411. height: math.unit(6, "feet"),
  10412. name: "Side",
  10413. image: {
  10414. source: "./media/characters/ailbhe/side.svg",
  10415. extra: 757 / 464,
  10416. bottom: 0.041
  10417. }
  10418. },
  10419. },
  10420. [
  10421. {
  10422. name: "Normal",
  10423. height: math.unit(1.07, "meters"),
  10424. default: true
  10425. },
  10426. ]
  10427. ))
  10428. characterMakers.push(() => makeCharacter(
  10429. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10430. {
  10431. front: {
  10432. height: math.unit(6, "feet"),
  10433. weight: math.unit(120, "kg"),
  10434. name: "Front",
  10435. image: {
  10436. source: "./media/characters/zevulfius/front.svg",
  10437. extra: 965 / 903
  10438. }
  10439. },
  10440. side: {
  10441. height: math.unit(6, "feet"),
  10442. weight: math.unit(120, "kg"),
  10443. name: "Side",
  10444. image: {
  10445. source: "./media/characters/zevulfius/side.svg",
  10446. extra: 939 / 900
  10447. }
  10448. },
  10449. back: {
  10450. height: math.unit(6, "feet"),
  10451. weight: math.unit(120, "kg"),
  10452. name: "Back",
  10453. image: {
  10454. source: "./media/characters/zevulfius/back.svg",
  10455. extra: 918 / 854,
  10456. bottom: 0.005
  10457. }
  10458. },
  10459. foot: {
  10460. height: math.unit(6 / 3.72, "feet"),
  10461. name: "Foot",
  10462. image: {
  10463. source: "./media/characters/zevulfius/foot.svg"
  10464. }
  10465. },
  10466. },
  10467. [
  10468. {
  10469. name: "Macro",
  10470. height: math.unit(750, "meters")
  10471. },
  10472. {
  10473. name: "Megamacro",
  10474. height: math.unit(20, "km"),
  10475. default: true
  10476. },
  10477. {
  10478. name: "Gigamacro",
  10479. height: math.unit(2000, "km")
  10480. },
  10481. {
  10482. name: "Teramacro",
  10483. height: math.unit(250000, "km")
  10484. },
  10485. ]
  10486. ))
  10487. characterMakers.push(() => makeCharacter(
  10488. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10489. {
  10490. front: {
  10491. height: math.unit(100, "feet"),
  10492. weight: math.unit(350, "kg"),
  10493. name: "Front",
  10494. image: {
  10495. source: "./media/characters/rikes/front.svg",
  10496. extra: 1565 / 1483,
  10497. bottom: 0.017
  10498. }
  10499. },
  10500. },
  10501. [
  10502. {
  10503. name: "Macro",
  10504. height: math.unit(100, "feet"),
  10505. default: true
  10506. },
  10507. ]
  10508. ))
  10509. characterMakers.push(() => makeCharacter(
  10510. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10511. {
  10512. front: {
  10513. height: math.unit(8, "feet"),
  10514. weight: math.unit(356, "lb"),
  10515. name: "Front",
  10516. image: {
  10517. source: "./media/characters/adam-silver-mane/front.svg",
  10518. extra: 1036/937,
  10519. bottom: 63/1099
  10520. }
  10521. },
  10522. side: {
  10523. height: math.unit(8, "feet"),
  10524. weight: math.unit(356, "lb"),
  10525. name: "Side",
  10526. image: {
  10527. source: "./media/characters/adam-silver-mane/side.svg",
  10528. extra: 997/901,
  10529. bottom: 59/1056
  10530. }
  10531. },
  10532. frontNsfw: {
  10533. height: math.unit(8, "feet"),
  10534. weight: math.unit(356, "lb"),
  10535. name: "Front (NSFW)",
  10536. image: {
  10537. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10538. extra: 1036/937,
  10539. bottom: 63/1099
  10540. }
  10541. },
  10542. sideNsfw: {
  10543. height: math.unit(8, "feet"),
  10544. weight: math.unit(356, "lb"),
  10545. name: "Side (NSFW)",
  10546. image: {
  10547. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10548. extra: 997/901,
  10549. bottom: 59/1056
  10550. }
  10551. },
  10552. dick: {
  10553. height: math.unit(2.1, "feet"),
  10554. name: "Dick",
  10555. image: {
  10556. source: "./media/characters/adam-silver-mane/dick.svg"
  10557. }
  10558. },
  10559. taur: {
  10560. height: math.unit(16, "feet"),
  10561. weight: math.unit(1500, "kg"),
  10562. name: "Taur",
  10563. image: {
  10564. source: "./media/characters/adam-silver-mane/taur.svg",
  10565. extra: 1713 / 1571,
  10566. bottom: 0.01
  10567. }
  10568. },
  10569. },
  10570. [
  10571. {
  10572. name: "Normal",
  10573. height: math.unit(8, "feet")
  10574. },
  10575. {
  10576. name: "Minimacro",
  10577. height: math.unit(80, "feet")
  10578. },
  10579. {
  10580. name: "MDA",
  10581. height: math.unit(80, "meters")
  10582. },
  10583. {
  10584. name: "Macro",
  10585. height: math.unit(800, "feet"),
  10586. default: true
  10587. },
  10588. {
  10589. name: "Megamacro",
  10590. height: math.unit(8000, "feet")
  10591. },
  10592. {
  10593. name: "Gigamacro",
  10594. height: math.unit(800, "miles")
  10595. },
  10596. {
  10597. name: "Teramacro",
  10598. height: math.unit(80000, "miles")
  10599. },
  10600. {
  10601. name: "Celestial",
  10602. height: math.unit(8e6, "miles")
  10603. },
  10604. {
  10605. name: "Star Dragon",
  10606. height: math.unit(800000, "parsecs")
  10607. },
  10608. {
  10609. name: "Godly",
  10610. height: math.unit(800, "teraparsecs")
  10611. },
  10612. ]
  10613. ))
  10614. characterMakers.push(() => makeCharacter(
  10615. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10616. {
  10617. front: {
  10618. height: math.unit(6, "feet"),
  10619. weight: math.unit(150, "lb"),
  10620. name: "Front",
  10621. image: {
  10622. source: "./media/characters/ky'owin/front.svg",
  10623. extra: 3888 / 3068,
  10624. bottom: 0.015
  10625. }
  10626. },
  10627. },
  10628. [
  10629. {
  10630. name: "Normal",
  10631. height: math.unit(6 + 8 / 12, "feet")
  10632. },
  10633. {
  10634. name: "Large",
  10635. height: math.unit(68, "feet")
  10636. },
  10637. {
  10638. name: "Macro",
  10639. height: math.unit(132, "feet")
  10640. },
  10641. {
  10642. name: "Macro+",
  10643. height: math.unit(340, "feet")
  10644. },
  10645. {
  10646. name: "Macro++",
  10647. height: math.unit(680, "feet"),
  10648. default: true
  10649. },
  10650. {
  10651. name: "Megamacro",
  10652. height: math.unit(1, "mile")
  10653. },
  10654. {
  10655. name: "Megamacro+",
  10656. height: math.unit(10, "miles")
  10657. },
  10658. ]
  10659. ))
  10660. characterMakers.push(() => makeCharacter(
  10661. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10662. {
  10663. front: {
  10664. height: math.unit(4, "feet"),
  10665. weight: math.unit(50, "lb"),
  10666. name: "Front",
  10667. image: {
  10668. source: "./media/characters/mal/front.svg",
  10669. extra: 785 / 724,
  10670. bottom: 0.07
  10671. }
  10672. },
  10673. },
  10674. [
  10675. {
  10676. name: "Micro",
  10677. height: math.unit(4, "inches")
  10678. },
  10679. {
  10680. name: "Normal",
  10681. height: math.unit(4, "feet"),
  10682. default: true
  10683. },
  10684. {
  10685. name: "Macro",
  10686. height: math.unit(200, "feet")
  10687. },
  10688. ]
  10689. ))
  10690. characterMakers.push(() => makeCharacter(
  10691. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10692. {
  10693. front: {
  10694. height: math.unit(6, "feet"),
  10695. weight: math.unit(150, "lb"),
  10696. name: "Front",
  10697. image: {
  10698. source: "./media/characters/jordan-deware/front.svg",
  10699. extra: 1191 / 1012
  10700. }
  10701. },
  10702. },
  10703. [
  10704. {
  10705. name: "Nano",
  10706. height: math.unit(0.01, "mm")
  10707. },
  10708. {
  10709. name: "Minimicro",
  10710. height: math.unit(1, "mm")
  10711. },
  10712. {
  10713. name: "Micro",
  10714. height: math.unit(0.5, "inches")
  10715. },
  10716. {
  10717. name: "Normal",
  10718. height: math.unit(4, "feet"),
  10719. default: true
  10720. },
  10721. {
  10722. name: "Minimacro",
  10723. height: math.unit(40, "meters")
  10724. },
  10725. {
  10726. name: "Small Macro",
  10727. height: math.unit(400, "meters")
  10728. },
  10729. {
  10730. name: "Macro",
  10731. height: math.unit(4, "miles")
  10732. },
  10733. {
  10734. name: "Megamacro",
  10735. height: math.unit(40, "miles")
  10736. },
  10737. {
  10738. name: "Megamacro+",
  10739. height: math.unit(400, "miles")
  10740. },
  10741. {
  10742. name: "Gigamacro",
  10743. height: math.unit(400000, "miles")
  10744. },
  10745. ]
  10746. ))
  10747. characterMakers.push(() => makeCharacter(
  10748. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10749. {
  10750. side: {
  10751. height: math.unit(6, "feet"),
  10752. weight: math.unit(150, "lb"),
  10753. name: "Side",
  10754. image: {
  10755. source: "./media/characters/kimiko/side.svg",
  10756. extra: 600 / 358
  10757. }
  10758. },
  10759. },
  10760. [
  10761. {
  10762. name: "Normal",
  10763. height: math.unit(15, "feet"),
  10764. default: true
  10765. },
  10766. {
  10767. name: "Macro",
  10768. height: math.unit(220, "feet")
  10769. },
  10770. {
  10771. name: "Macro+",
  10772. height: math.unit(1450, "feet")
  10773. },
  10774. {
  10775. name: "Megamacro",
  10776. height: math.unit(11500, "feet")
  10777. },
  10778. {
  10779. name: "Gigamacro",
  10780. height: math.unit(9500, "miles")
  10781. },
  10782. {
  10783. name: "Teramacro",
  10784. height: math.unit(2208005005, "miles")
  10785. },
  10786. {
  10787. name: "Examacro",
  10788. height: math.unit(2750, "parsecs")
  10789. },
  10790. {
  10791. name: "Zettamacro",
  10792. height: math.unit(101500, "parsecs")
  10793. },
  10794. ]
  10795. ))
  10796. characterMakers.push(() => makeCharacter(
  10797. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10798. {
  10799. front: {
  10800. height: math.unit(6, "feet"),
  10801. weight: math.unit(70, "kg"),
  10802. name: "Front",
  10803. image: {
  10804. source: "./media/characters/andrew-sleepy/front.svg"
  10805. }
  10806. },
  10807. side: {
  10808. height: math.unit(6, "feet"),
  10809. weight: math.unit(70, "kg"),
  10810. name: "Side",
  10811. image: {
  10812. source: "./media/characters/andrew-sleepy/side.svg"
  10813. }
  10814. },
  10815. },
  10816. [
  10817. {
  10818. name: "Micro",
  10819. height: math.unit(1, "mm"),
  10820. default: true
  10821. },
  10822. ]
  10823. ))
  10824. characterMakers.push(() => makeCharacter(
  10825. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10826. {
  10827. front: {
  10828. height: math.unit(6, "feet"),
  10829. weight: math.unit(150, "lb"),
  10830. name: "Front",
  10831. image: {
  10832. source: "./media/characters/judio/front.svg",
  10833. extra: 1258 / 1110
  10834. }
  10835. },
  10836. },
  10837. [
  10838. {
  10839. name: "Normal",
  10840. height: math.unit(5 + 6 / 12, "feet")
  10841. },
  10842. {
  10843. name: "Macro",
  10844. height: math.unit(1000, "feet"),
  10845. default: true
  10846. },
  10847. {
  10848. name: "Megamacro",
  10849. height: math.unit(10, "miles")
  10850. },
  10851. ]
  10852. ))
  10853. characterMakers.push(() => makeCharacter(
  10854. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10855. {
  10856. front: {
  10857. height: math.unit(6, "feet"),
  10858. weight: math.unit(68, "kg"),
  10859. name: "Front",
  10860. image: {
  10861. source: "./media/characters/nomaxice/front.svg",
  10862. extra: 1498 / 1073,
  10863. bottom: 0.075
  10864. }
  10865. },
  10866. foot: {
  10867. height: math.unit(1.1, "feet"),
  10868. name: "Foot",
  10869. image: {
  10870. source: "./media/characters/nomaxice/foot.svg"
  10871. }
  10872. },
  10873. },
  10874. [
  10875. {
  10876. name: "Micro",
  10877. height: math.unit(8, "cm")
  10878. },
  10879. {
  10880. name: "Norm",
  10881. height: math.unit(1.82, "m")
  10882. },
  10883. {
  10884. name: "Norm+",
  10885. height: math.unit(8.8, "feet")
  10886. },
  10887. {
  10888. name: "Big",
  10889. height: math.unit(8, "meters"),
  10890. default: true
  10891. },
  10892. {
  10893. name: "Macro",
  10894. height: math.unit(18, "meters")
  10895. },
  10896. {
  10897. name: "Macro+",
  10898. height: math.unit(88, "meters")
  10899. },
  10900. ]
  10901. ))
  10902. characterMakers.push(() => makeCharacter(
  10903. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10904. {
  10905. front: {
  10906. height: math.unit(12, "feet"),
  10907. weight: math.unit(1.5, "tons"),
  10908. name: "Front",
  10909. image: {
  10910. source: "./media/characters/dydros/front.svg",
  10911. extra: 863 / 800,
  10912. bottom: 0.015
  10913. }
  10914. },
  10915. back: {
  10916. height: math.unit(12, "feet"),
  10917. weight: math.unit(1.5, "tons"),
  10918. name: "Back",
  10919. image: {
  10920. source: "./media/characters/dydros/back.svg",
  10921. extra: 900 / 843,
  10922. bottom: 0.005
  10923. }
  10924. },
  10925. },
  10926. [
  10927. {
  10928. name: "Normal",
  10929. height: math.unit(12, "feet"),
  10930. default: true
  10931. },
  10932. ]
  10933. ))
  10934. characterMakers.push(() => makeCharacter(
  10935. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10936. {
  10937. front: {
  10938. height: math.unit(6, "feet"),
  10939. weight: math.unit(100, "kg"),
  10940. name: "Front",
  10941. image: {
  10942. source: "./media/characters/riggi/front.svg",
  10943. extra: 5787 / 5303
  10944. }
  10945. },
  10946. hyper: {
  10947. height: math.unit(6 * 5 / 3, "feet"),
  10948. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10949. name: "Hyper",
  10950. image: {
  10951. source: "./media/characters/riggi/hyper.svg",
  10952. extra: 3595 / 3485
  10953. }
  10954. },
  10955. },
  10956. [
  10957. {
  10958. name: "Small Macro",
  10959. height: math.unit(50, "feet")
  10960. },
  10961. {
  10962. name: "Default",
  10963. height: math.unit(200, "feet"),
  10964. default: true
  10965. },
  10966. {
  10967. name: "Loom",
  10968. height: math.unit(10000, "feet")
  10969. },
  10970. {
  10971. name: "Cruising Altitude",
  10972. height: math.unit(30000, "feet")
  10973. },
  10974. {
  10975. name: "Megamacro",
  10976. height: math.unit(100, "miles")
  10977. },
  10978. {
  10979. name: "Continent Sized",
  10980. height: math.unit(2800, "miles")
  10981. },
  10982. {
  10983. name: "Earth Sized",
  10984. height: math.unit(8000, "miles")
  10985. },
  10986. ]
  10987. ))
  10988. characterMakers.push(() => makeCharacter(
  10989. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10990. {
  10991. front: {
  10992. height: math.unit(6, "feet"),
  10993. weight: math.unit(250, "lb"),
  10994. name: "Front",
  10995. image: {
  10996. source: "./media/characters/alexi/front.svg",
  10997. extra: 3483 / 3291,
  10998. bottom: 0.04
  10999. }
  11000. },
  11001. back: {
  11002. height: math.unit(6, "feet"),
  11003. weight: math.unit(250, "lb"),
  11004. name: "Back",
  11005. image: {
  11006. source: "./media/characters/alexi/back.svg",
  11007. extra: 3533 / 3356,
  11008. bottom: 0.021
  11009. }
  11010. },
  11011. frontTransforming: {
  11012. height: math.unit(8.58, "feet"),
  11013. weight: math.unit(1300, "lb"),
  11014. name: "Transforming",
  11015. image: {
  11016. source: "./media/characters/alexi/front-transforming.svg",
  11017. extra: 437 / 409,
  11018. bottom: 19 / 458.66
  11019. }
  11020. },
  11021. frontTransformed: {
  11022. height: math.unit(12.5, "feet"),
  11023. weight: math.unit(4000, "lb"),
  11024. name: "Transformed",
  11025. image: {
  11026. source: "./media/characters/alexi/front-transformed.svg",
  11027. extra: 639 / 614,
  11028. bottom: 30.55 / 671
  11029. }
  11030. },
  11031. },
  11032. [
  11033. {
  11034. name: "Normal",
  11035. height: math.unit(14, "feet"),
  11036. default: true
  11037. },
  11038. {
  11039. name: "Minimacro",
  11040. height: math.unit(30, "meters")
  11041. },
  11042. {
  11043. name: "Macro",
  11044. height: math.unit(500, "meters")
  11045. },
  11046. {
  11047. name: "Megamacro",
  11048. height: math.unit(9000, "km")
  11049. },
  11050. {
  11051. name: "Teramacro",
  11052. height: math.unit(384000, "km")
  11053. },
  11054. ]
  11055. ))
  11056. characterMakers.push(() => makeCharacter(
  11057. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11058. {
  11059. front: {
  11060. height: math.unit(6, "feet"),
  11061. weight: math.unit(150, "lb"),
  11062. name: "Front",
  11063. image: {
  11064. source: "./media/characters/kayroo/front.svg",
  11065. extra: 1153 / 1038,
  11066. bottom: 0.06
  11067. }
  11068. },
  11069. foot: {
  11070. height: math.unit(6, "feet"),
  11071. weight: math.unit(150, "lb"),
  11072. name: "Foot",
  11073. image: {
  11074. source: "./media/characters/kayroo/foot.svg"
  11075. }
  11076. },
  11077. },
  11078. [
  11079. {
  11080. name: "Normal",
  11081. height: math.unit(8, "feet"),
  11082. default: true
  11083. },
  11084. {
  11085. name: "Minimacro",
  11086. height: math.unit(250, "feet")
  11087. },
  11088. {
  11089. name: "Macro",
  11090. height: math.unit(2800, "feet")
  11091. },
  11092. {
  11093. name: "Megamacro",
  11094. height: math.unit(5200, "feet")
  11095. },
  11096. {
  11097. name: "Gigamacro",
  11098. height: math.unit(27000, "feet")
  11099. },
  11100. {
  11101. name: "Omega",
  11102. height: math.unit(45000, "feet")
  11103. },
  11104. ]
  11105. ))
  11106. characterMakers.push(() => makeCharacter(
  11107. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11108. {
  11109. front: {
  11110. height: math.unit(18, "feet"),
  11111. weight: math.unit(5800, "lb"),
  11112. name: "Front",
  11113. image: {
  11114. source: "./media/characters/rhys/front.svg",
  11115. extra: 3386 / 3090,
  11116. bottom: 0.07
  11117. }
  11118. },
  11119. },
  11120. [
  11121. {
  11122. name: "Normal",
  11123. height: math.unit(18, "feet"),
  11124. default: true
  11125. },
  11126. {
  11127. name: "Working Size",
  11128. height: math.unit(200, "feet")
  11129. },
  11130. {
  11131. name: "Demolition Size",
  11132. height: math.unit(2000, "feet")
  11133. },
  11134. {
  11135. name: "Maximum Licensed Size",
  11136. height: math.unit(5, "miles")
  11137. },
  11138. {
  11139. name: "Maximum Observed Size",
  11140. height: math.unit(10, "yottameters")
  11141. },
  11142. ]
  11143. ))
  11144. characterMakers.push(() => makeCharacter(
  11145. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11146. {
  11147. front: {
  11148. height: math.unit(6, "feet"),
  11149. weight: math.unit(250, "lb"),
  11150. name: "Front",
  11151. image: {
  11152. source: "./media/characters/toto/front.svg",
  11153. extra: 527 / 479,
  11154. bottom: 0.05
  11155. }
  11156. },
  11157. },
  11158. [
  11159. {
  11160. name: "Micro",
  11161. height: math.unit(3, "feet")
  11162. },
  11163. {
  11164. name: "Normal",
  11165. height: math.unit(10, "feet")
  11166. },
  11167. {
  11168. name: "Macro",
  11169. height: math.unit(150, "feet"),
  11170. default: true
  11171. },
  11172. {
  11173. name: "Megamacro",
  11174. height: math.unit(1200, "feet")
  11175. },
  11176. ]
  11177. ))
  11178. characterMakers.push(() => makeCharacter(
  11179. { name: "King", species: ["lion"], tags: ["anthro"] },
  11180. {
  11181. back: {
  11182. height: math.unit(6, "feet"),
  11183. weight: math.unit(150, "lb"),
  11184. name: "Back",
  11185. image: {
  11186. source: "./media/characters/king/back.svg"
  11187. }
  11188. },
  11189. },
  11190. [
  11191. {
  11192. name: "Micro",
  11193. height: math.unit(2, "inches")
  11194. },
  11195. {
  11196. name: "Normal",
  11197. height: math.unit(8, "feet")
  11198. },
  11199. {
  11200. name: "Macro",
  11201. height: math.unit(200, "feet"),
  11202. default: true
  11203. },
  11204. {
  11205. name: "Megamacro",
  11206. height: math.unit(50, "miles")
  11207. },
  11208. ]
  11209. ))
  11210. characterMakers.push(() => makeCharacter(
  11211. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11212. {
  11213. front: {
  11214. height: math.unit(11, "feet"),
  11215. weight: math.unit(1400, "lb"),
  11216. name: "Front",
  11217. image: {
  11218. source: "./media/characters/cordite/front.svg",
  11219. extra: 1919/1827,
  11220. bottom: 40/1959
  11221. }
  11222. },
  11223. side: {
  11224. height: math.unit(11, "feet"),
  11225. weight: math.unit(1400, "lb"),
  11226. name: "Side",
  11227. image: {
  11228. source: "./media/characters/cordite/side.svg",
  11229. extra: 1908/1793,
  11230. bottom: 38/1946
  11231. }
  11232. },
  11233. back: {
  11234. height: math.unit(11, "feet"),
  11235. weight: math.unit(1400, "lb"),
  11236. name: "Back",
  11237. image: {
  11238. source: "./media/characters/cordite/back.svg",
  11239. extra: 1938/1837,
  11240. bottom: 10/1948
  11241. }
  11242. },
  11243. feral: {
  11244. height: math.unit(2, "feet"),
  11245. weight: math.unit(90, "lb"),
  11246. name: "Feral",
  11247. image: {
  11248. source: "./media/characters/cordite/feral.svg",
  11249. extra: 1260 / 755,
  11250. bottom: 0.05
  11251. }
  11252. },
  11253. },
  11254. [
  11255. {
  11256. name: "Normal",
  11257. height: math.unit(11, "feet"),
  11258. default: true
  11259. },
  11260. ]
  11261. ))
  11262. characterMakers.push(() => makeCharacter(
  11263. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11264. {
  11265. front: {
  11266. height: math.unit(6, "feet"),
  11267. weight: math.unit(150, "lb"),
  11268. name: "Front",
  11269. image: {
  11270. source: "./media/characters/pianostrong/front.svg",
  11271. extra: 6577 / 6254,
  11272. bottom: 0.02
  11273. }
  11274. },
  11275. side: {
  11276. height: math.unit(6, "feet"),
  11277. weight: math.unit(150, "lb"),
  11278. name: "Side",
  11279. image: {
  11280. source: "./media/characters/pianostrong/side.svg",
  11281. extra: 6106 / 5730
  11282. }
  11283. },
  11284. back: {
  11285. height: math.unit(6, "feet"),
  11286. weight: math.unit(150, "lb"),
  11287. name: "Back",
  11288. image: {
  11289. source: "./media/characters/pianostrong/back.svg",
  11290. extra: 6085 / 5733,
  11291. bottom: 0.01
  11292. }
  11293. },
  11294. },
  11295. [
  11296. {
  11297. name: "Macro",
  11298. height: math.unit(100, "feet")
  11299. },
  11300. {
  11301. name: "Macro+",
  11302. height: math.unit(300, "feet"),
  11303. default: true
  11304. },
  11305. {
  11306. name: "Macro++",
  11307. height: math.unit(1000, "feet")
  11308. },
  11309. ]
  11310. ))
  11311. characterMakers.push(() => makeCharacter(
  11312. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11313. {
  11314. front: {
  11315. height: math.unit(6, "feet"),
  11316. weight: math.unit(150, "lb"),
  11317. name: "Front",
  11318. image: {
  11319. source: "./media/characters/kona/front.svg",
  11320. extra: 2960 / 2629,
  11321. bottom: 0.005
  11322. }
  11323. },
  11324. },
  11325. [
  11326. {
  11327. name: "Normal",
  11328. height: math.unit(11 + 8 / 12, "feet")
  11329. },
  11330. {
  11331. name: "Macro",
  11332. height: math.unit(850, "feet"),
  11333. default: true
  11334. },
  11335. {
  11336. name: "Macro+",
  11337. height: math.unit(1.5, "km"),
  11338. default: true
  11339. },
  11340. {
  11341. name: "Megamacro",
  11342. height: math.unit(80, "miles")
  11343. },
  11344. {
  11345. name: "Gigamacro",
  11346. height: math.unit(3500, "miles")
  11347. },
  11348. ]
  11349. ))
  11350. characterMakers.push(() => makeCharacter(
  11351. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11352. {
  11353. side: {
  11354. height: math.unit(1.9, "meters"),
  11355. weight: math.unit(326, "kg"),
  11356. name: "Side",
  11357. image: {
  11358. source: "./media/characters/levi/side.svg",
  11359. extra: 1704 / 1334,
  11360. bottom: 0.02
  11361. }
  11362. },
  11363. },
  11364. [
  11365. {
  11366. name: "Normal",
  11367. height: math.unit(1.9, "meters"),
  11368. default: true
  11369. },
  11370. {
  11371. name: "Macro",
  11372. height: math.unit(20, "meters")
  11373. },
  11374. {
  11375. name: "Macro+",
  11376. height: math.unit(200, "meters")
  11377. },
  11378. {
  11379. name: "Megamacro",
  11380. height: math.unit(2, "km")
  11381. },
  11382. {
  11383. name: "Megamacro+",
  11384. height: math.unit(20, "km")
  11385. },
  11386. {
  11387. name: "Gigamacro",
  11388. height: math.unit(2500, "km")
  11389. },
  11390. {
  11391. name: "Gigamacro+",
  11392. height: math.unit(120000, "km")
  11393. },
  11394. {
  11395. name: "Teramacro",
  11396. height: math.unit(7.77e6, "km")
  11397. },
  11398. ]
  11399. ))
  11400. characterMakers.push(() => makeCharacter(
  11401. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11402. {
  11403. front: {
  11404. height: math.unit(6 + 4/12, "feet"),
  11405. weight: math.unit(190, "lb"),
  11406. name: "Front",
  11407. image: {
  11408. source: "./media/characters/bmc/front.svg",
  11409. extra: 1626/1472,
  11410. bottom: 79/1705
  11411. }
  11412. },
  11413. back: {
  11414. height: math.unit(6 + 4/12, "feet"),
  11415. weight: math.unit(190, "lb"),
  11416. name: "Back",
  11417. image: {
  11418. source: "./media/characters/bmc/back.svg",
  11419. extra: 1640/1479,
  11420. bottom: 45/1685
  11421. }
  11422. },
  11423. frontArmor: {
  11424. height: math.unit(6 + 4/12, "feet"),
  11425. weight: math.unit(190, "lb"),
  11426. name: "Front-armor",
  11427. image: {
  11428. source: "./media/characters/bmc/front-armor.svg",
  11429. extra: 1538/1468,
  11430. bottom: 79/1617
  11431. }
  11432. },
  11433. },
  11434. [
  11435. {
  11436. name: "Human-sized",
  11437. height: math.unit(6 + 4 / 12, "feet")
  11438. },
  11439. {
  11440. name: "Interactive Size",
  11441. height: math.unit(25, "feet")
  11442. },
  11443. {
  11444. name: "Small",
  11445. height: math.unit(250, "feet")
  11446. },
  11447. {
  11448. name: "Normal",
  11449. height: math.unit(1250, "feet"),
  11450. default: true
  11451. },
  11452. {
  11453. name: "Good Day",
  11454. height: math.unit(88, "miles")
  11455. },
  11456. {
  11457. name: "Largest Measured Size",
  11458. height: math.unit(105.960, "galaxies")
  11459. },
  11460. ]
  11461. ))
  11462. characterMakers.push(() => makeCharacter(
  11463. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11464. {
  11465. front: {
  11466. height: math.unit(20, "feet"),
  11467. weight: math.unit(2016, "kg"),
  11468. name: "Front",
  11469. image: {
  11470. source: "./media/characters/sven-the-kaiju/front.svg",
  11471. extra: 1277/1250,
  11472. bottom: 35/1312
  11473. }
  11474. },
  11475. mouth: {
  11476. height: math.unit(1.85, "feet"),
  11477. name: "Mouth",
  11478. image: {
  11479. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11480. }
  11481. },
  11482. },
  11483. [
  11484. {
  11485. name: "Fairy",
  11486. height: math.unit(6, "inches")
  11487. },
  11488. {
  11489. name: "Normal",
  11490. height: math.unit(20, "feet"),
  11491. default: true
  11492. },
  11493. {
  11494. name: "Rampage",
  11495. height: math.unit(200, "feet")
  11496. },
  11497. {
  11498. name: "Archfey Forest Guardian",
  11499. height: math.unit(1, "mile")
  11500. },
  11501. ]
  11502. ))
  11503. characterMakers.push(() => makeCharacter(
  11504. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11505. {
  11506. front: {
  11507. height: math.unit(4, "meters"),
  11508. weight: math.unit(2, "tons"),
  11509. name: "Front",
  11510. image: {
  11511. source: "./media/characters/marik/front.svg",
  11512. extra: 1057 / 1003,
  11513. bottom: 0.08
  11514. }
  11515. },
  11516. },
  11517. [
  11518. {
  11519. name: "Normal",
  11520. height: math.unit(4, "meters"),
  11521. default: true
  11522. },
  11523. {
  11524. name: "Macro",
  11525. height: math.unit(20, "meters")
  11526. },
  11527. {
  11528. name: "Megamacro",
  11529. height: math.unit(50, "km")
  11530. },
  11531. {
  11532. name: "Gigamacro",
  11533. height: math.unit(100, "km")
  11534. },
  11535. {
  11536. name: "Alpha Macro",
  11537. height: math.unit(7.88e7, "yottameters")
  11538. },
  11539. ]
  11540. ))
  11541. characterMakers.push(() => makeCharacter(
  11542. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11543. {
  11544. front: {
  11545. height: math.unit(6, "feet"),
  11546. weight: math.unit(110, "lb"),
  11547. name: "Front",
  11548. image: {
  11549. source: "./media/characters/mel/front.svg",
  11550. extra: 736 / 617,
  11551. bottom: 0.017
  11552. }
  11553. },
  11554. },
  11555. [
  11556. {
  11557. name: "Pico",
  11558. height: math.unit(3, "pm")
  11559. },
  11560. {
  11561. name: "Nano",
  11562. height: math.unit(3, "nm")
  11563. },
  11564. {
  11565. name: "Micro",
  11566. height: math.unit(0.3, "mm"),
  11567. default: true
  11568. },
  11569. {
  11570. name: "Micro+",
  11571. height: math.unit(3, "mm")
  11572. },
  11573. {
  11574. name: "Normal",
  11575. height: math.unit(5 + 10.5 / 12, "feet")
  11576. },
  11577. ]
  11578. ))
  11579. characterMakers.push(() => makeCharacter(
  11580. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11581. {
  11582. kaiju: {
  11583. height: math.unit(1.75, "meters"),
  11584. weight: math.unit(55, "kg"),
  11585. name: "Kaiju",
  11586. image: {
  11587. source: "./media/characters/lykonous/kaiju.svg",
  11588. extra: 1055 / 946,
  11589. bottom: 0.135
  11590. }
  11591. },
  11592. },
  11593. [
  11594. {
  11595. name: "Normal",
  11596. height: math.unit(2.5, "meters"),
  11597. default: true
  11598. },
  11599. {
  11600. name: "Kaiju Dragon",
  11601. height: math.unit(60, "meters")
  11602. },
  11603. {
  11604. name: "Mega Kaiju",
  11605. height: math.unit(120, "km")
  11606. },
  11607. {
  11608. name: "Giga Kaiju",
  11609. height: math.unit(200, "megameters")
  11610. },
  11611. {
  11612. name: "Terra Kaiju",
  11613. height: math.unit(400, "gigameters")
  11614. },
  11615. {
  11616. name: "Kaiju Dragon God",
  11617. height: math.unit(13000, "exaparsecs")
  11618. },
  11619. ]
  11620. ))
  11621. characterMakers.push(() => makeCharacter(
  11622. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11623. {
  11624. front: {
  11625. height: math.unit(6, "feet"),
  11626. weight: math.unit(150, "lb"),
  11627. name: "Front",
  11628. image: {
  11629. source: "./media/characters/blü/front.svg",
  11630. extra: 1883 / 1564,
  11631. bottom: 0.031
  11632. }
  11633. },
  11634. },
  11635. [
  11636. {
  11637. name: "Normal",
  11638. height: math.unit(13, "feet"),
  11639. default: true
  11640. },
  11641. {
  11642. name: "Big Boi",
  11643. height: math.unit(150, "meters")
  11644. },
  11645. {
  11646. name: "Mini Stomper",
  11647. height: math.unit(300, "meters")
  11648. },
  11649. {
  11650. name: "Macro",
  11651. height: math.unit(1000, "meters")
  11652. },
  11653. {
  11654. name: "Megamacro",
  11655. height: math.unit(11000, "meters")
  11656. },
  11657. {
  11658. name: "Gigamacro",
  11659. height: math.unit(11000, "km")
  11660. },
  11661. {
  11662. name: "Teramacro",
  11663. height: math.unit(420000, "km")
  11664. },
  11665. {
  11666. name: "Examacro",
  11667. height: math.unit(120, "parsecs")
  11668. },
  11669. {
  11670. name: "God Tho",
  11671. height: math.unit(98000000000, "parsecs")
  11672. },
  11673. ]
  11674. ))
  11675. characterMakers.push(() => makeCharacter(
  11676. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11677. {
  11678. taurFront: {
  11679. height: math.unit(6, "feet"),
  11680. weight: math.unit(200, "lb"),
  11681. name: "Taur (Front)",
  11682. image: {
  11683. source: "./media/characters/scales/taur-front.svg",
  11684. extra: 1,
  11685. bottom: 0.05
  11686. }
  11687. },
  11688. taurBack: {
  11689. height: math.unit(6, "feet"),
  11690. weight: math.unit(200, "lb"),
  11691. name: "Taur (Back)",
  11692. image: {
  11693. source: "./media/characters/scales/taur-back.svg",
  11694. extra: 1,
  11695. bottom: 0.08
  11696. }
  11697. },
  11698. anthro: {
  11699. height: math.unit(6 * 7 / 12, "feet"),
  11700. weight: math.unit(100, "lb"),
  11701. name: "Anthro",
  11702. image: {
  11703. source: "./media/characters/scales/anthro.svg",
  11704. extra: 1,
  11705. bottom: 0.06
  11706. }
  11707. },
  11708. },
  11709. [
  11710. {
  11711. name: "Normal",
  11712. height: math.unit(12, "feet"),
  11713. default: true
  11714. },
  11715. ]
  11716. ))
  11717. characterMakers.push(() => makeCharacter(
  11718. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11719. {
  11720. front: {
  11721. height: math.unit(6, "feet"),
  11722. weight: math.unit(150, "lb"),
  11723. name: "Front",
  11724. image: {
  11725. source: "./media/characters/koragos/front.svg",
  11726. extra: 841 / 794,
  11727. bottom: 0.035
  11728. }
  11729. },
  11730. back: {
  11731. height: math.unit(6, "feet"),
  11732. weight: math.unit(150, "lb"),
  11733. name: "Back",
  11734. image: {
  11735. source: "./media/characters/koragos/back.svg",
  11736. extra: 841 / 810,
  11737. bottom: 0.022
  11738. }
  11739. },
  11740. },
  11741. [
  11742. {
  11743. name: "Normal",
  11744. height: math.unit(6 + 11 / 12, "feet"),
  11745. default: true
  11746. },
  11747. {
  11748. name: "Macro",
  11749. height: math.unit(490, "feet")
  11750. },
  11751. {
  11752. name: "Megamacro",
  11753. height: math.unit(10, "miles")
  11754. },
  11755. {
  11756. name: "Gigamacro",
  11757. height: math.unit(50, "miles")
  11758. },
  11759. ]
  11760. ))
  11761. characterMakers.push(() => makeCharacter(
  11762. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11763. {
  11764. front: {
  11765. height: math.unit(6, "feet"),
  11766. weight: math.unit(250, "lb"),
  11767. name: "Front",
  11768. image: {
  11769. source: "./media/characters/xylrem/front.svg",
  11770. extra: 3323 / 3050,
  11771. bottom: 0.065
  11772. }
  11773. },
  11774. },
  11775. [
  11776. {
  11777. name: "Micro",
  11778. height: math.unit(4, "feet")
  11779. },
  11780. {
  11781. name: "Normal",
  11782. height: math.unit(16, "feet"),
  11783. default: true
  11784. },
  11785. {
  11786. name: "Macro",
  11787. height: math.unit(2720, "feet")
  11788. },
  11789. {
  11790. name: "Megamacro",
  11791. height: math.unit(25000, "miles")
  11792. },
  11793. ]
  11794. ))
  11795. characterMakers.push(() => makeCharacter(
  11796. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11797. {
  11798. front: {
  11799. height: math.unit(8, "feet"),
  11800. weight: math.unit(250, "kg"),
  11801. name: "Front",
  11802. image: {
  11803. source: "./media/characters/ikideru/front.svg",
  11804. extra: 930 / 870,
  11805. bottom: 0.087
  11806. }
  11807. },
  11808. back: {
  11809. height: math.unit(8, "feet"),
  11810. weight: math.unit(250, "kg"),
  11811. name: "Back",
  11812. image: {
  11813. source: "./media/characters/ikideru/back.svg",
  11814. extra: 919 / 852,
  11815. bottom: 0.055
  11816. }
  11817. },
  11818. },
  11819. [
  11820. {
  11821. name: "Rare",
  11822. height: math.unit(8, "feet"),
  11823. default: true
  11824. },
  11825. {
  11826. name: "Playful Loom",
  11827. height: math.unit(80, "feet")
  11828. },
  11829. {
  11830. name: "City Leaner",
  11831. height: math.unit(230, "feet")
  11832. },
  11833. {
  11834. name: "Megamacro",
  11835. height: math.unit(2500, "feet")
  11836. },
  11837. {
  11838. name: "Gigamacro",
  11839. height: math.unit(26400, "feet")
  11840. },
  11841. {
  11842. name: "Tectonic Shifter",
  11843. height: math.unit(1.7, "megameters")
  11844. },
  11845. {
  11846. name: "Planet Carer",
  11847. height: math.unit(21, "megameters")
  11848. },
  11849. {
  11850. name: "God",
  11851. height: math.unit(11157.22, "parsecs")
  11852. },
  11853. ]
  11854. ))
  11855. characterMakers.push(() => makeCharacter(
  11856. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11857. {
  11858. front: {
  11859. height: math.unit(6, "feet"),
  11860. weight: math.unit(120, "lb"),
  11861. name: "Front",
  11862. image: {
  11863. source: "./media/characters/neo/front.svg"
  11864. }
  11865. },
  11866. },
  11867. [
  11868. {
  11869. name: "Micro",
  11870. height: math.unit(2, "inches"),
  11871. default: true
  11872. },
  11873. {
  11874. name: "Human Size",
  11875. height: math.unit(5 + 8 / 12, "feet")
  11876. },
  11877. ]
  11878. ))
  11879. characterMakers.push(() => makeCharacter(
  11880. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11881. {
  11882. front: {
  11883. height: math.unit(13 + 10 / 12, "feet"),
  11884. weight: math.unit(5320, "lb"),
  11885. name: "Front",
  11886. image: {
  11887. source: "./media/characters/chauncey-chantz/front.svg",
  11888. extra: 1587 / 1435,
  11889. bottom: 0.02
  11890. }
  11891. },
  11892. },
  11893. [
  11894. {
  11895. name: "Normal",
  11896. height: math.unit(13 + 10 / 12, "feet"),
  11897. default: true
  11898. },
  11899. {
  11900. name: "Macro",
  11901. height: math.unit(45, "feet")
  11902. },
  11903. {
  11904. name: "Megamacro",
  11905. height: math.unit(250, "miles")
  11906. },
  11907. {
  11908. name: "Planetary",
  11909. height: math.unit(10000, "miles")
  11910. },
  11911. {
  11912. name: "Galactic",
  11913. height: math.unit(40000, "parsecs")
  11914. },
  11915. {
  11916. name: "Universal",
  11917. height: math.unit(1, "yottameter")
  11918. },
  11919. ]
  11920. ))
  11921. characterMakers.push(() => makeCharacter(
  11922. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11923. {
  11924. front: {
  11925. height: math.unit(6, "feet"),
  11926. weight: math.unit(150, "lb"),
  11927. name: "Front",
  11928. image: {
  11929. source: "./media/characters/epifox/front.svg",
  11930. extra: 1,
  11931. bottom: 0.075
  11932. }
  11933. },
  11934. },
  11935. [
  11936. {
  11937. name: "Micro",
  11938. height: math.unit(6, "inches")
  11939. },
  11940. {
  11941. name: "Normal",
  11942. height: math.unit(12, "feet"),
  11943. default: true
  11944. },
  11945. {
  11946. name: "Macro",
  11947. height: math.unit(3810, "feet")
  11948. },
  11949. {
  11950. name: "Megamacro",
  11951. height: math.unit(500, "miles")
  11952. },
  11953. ]
  11954. ))
  11955. characterMakers.push(() => makeCharacter(
  11956. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11957. {
  11958. front: {
  11959. height: math.unit(1.8796, "m"),
  11960. weight: math.unit(230, "lb"),
  11961. name: "Front",
  11962. image: {
  11963. source: "./media/characters/colin-t/front.svg",
  11964. extra: 1272 / 1193,
  11965. bottom: 0.07
  11966. }
  11967. },
  11968. },
  11969. [
  11970. {
  11971. name: "Micro",
  11972. height: math.unit(0.571, "meters")
  11973. },
  11974. {
  11975. name: "Normal",
  11976. height: math.unit(1.8796, "meters"),
  11977. default: true
  11978. },
  11979. {
  11980. name: "Tall",
  11981. height: math.unit(4, "meters")
  11982. },
  11983. {
  11984. name: "Macro",
  11985. height: math.unit(67.241, "meters")
  11986. },
  11987. {
  11988. name: "Megamacro",
  11989. height: math.unit(371.856, "meters")
  11990. },
  11991. {
  11992. name: "Planetary",
  11993. height: math.unit(12631.5689, "km")
  11994. },
  11995. ]
  11996. ))
  11997. characterMakers.push(() => makeCharacter(
  11998. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11999. {
  12000. front: {
  12001. height: math.unit(1.85, "meters"),
  12002. weight: math.unit(80, "kg"),
  12003. name: "Front",
  12004. image: {
  12005. source: "./media/characters/matvei/front.svg",
  12006. extra: 614 / 594,
  12007. bottom: 0.01
  12008. }
  12009. },
  12010. },
  12011. [
  12012. {
  12013. name: "Normal",
  12014. height: math.unit(1.85, "meters"),
  12015. default: true
  12016. },
  12017. ]
  12018. ))
  12019. characterMakers.push(() => makeCharacter(
  12020. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12021. {
  12022. front: {
  12023. height: math.unit(5 + 9 / 12, "feet"),
  12024. weight: math.unit(70, "lb"),
  12025. name: "Front",
  12026. image: {
  12027. source: "./media/characters/quincy/front.svg",
  12028. extra: 3041 / 2751
  12029. }
  12030. },
  12031. back: {
  12032. height: math.unit(5 + 9 / 12, "feet"),
  12033. weight: math.unit(70, "lb"),
  12034. name: "Back",
  12035. image: {
  12036. source: "./media/characters/quincy/back.svg",
  12037. extra: 3041 / 2751
  12038. }
  12039. },
  12040. flying: {
  12041. height: math.unit(5 + 4 / 12, "feet"),
  12042. weight: math.unit(70, "lb"),
  12043. name: "Flying",
  12044. image: {
  12045. source: "./media/characters/quincy/flying.svg",
  12046. extra: 1044 / 930
  12047. }
  12048. },
  12049. },
  12050. [
  12051. {
  12052. name: "Micro",
  12053. height: math.unit(3, "cm")
  12054. },
  12055. {
  12056. name: "Normal",
  12057. height: math.unit(5 + 9 / 12, "feet")
  12058. },
  12059. {
  12060. name: "Macro",
  12061. height: math.unit(200, "meters"),
  12062. default: true
  12063. },
  12064. {
  12065. name: "Megamacro",
  12066. height: math.unit(1000, "meters")
  12067. },
  12068. ]
  12069. ))
  12070. characterMakers.push(() => makeCharacter(
  12071. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12072. {
  12073. front: {
  12074. height: math.unit(3 + 11/12, "feet"),
  12075. weight: math.unit(50, "lb"),
  12076. name: "Front",
  12077. image: {
  12078. source: "./media/characters/vanrel/front.svg",
  12079. extra: 1104/949,
  12080. bottom: 52/1156
  12081. }
  12082. },
  12083. back: {
  12084. height: math.unit(3 + 11/12, "feet"),
  12085. weight: math.unit(50, "lb"),
  12086. name: "Back",
  12087. image: {
  12088. source: "./media/characters/vanrel/back.svg",
  12089. extra: 1119/976,
  12090. bottom: 37/1156
  12091. }
  12092. },
  12093. tome: {
  12094. height: math.unit(1.35, "feet"),
  12095. weight: math.unit(10, "lb"),
  12096. name: "Vanrel's Tome",
  12097. rename: true,
  12098. image: {
  12099. source: "./media/characters/vanrel/tome.svg"
  12100. }
  12101. },
  12102. beans: {
  12103. height: math.unit(0.89, "feet"),
  12104. name: "Beans",
  12105. image: {
  12106. source: "./media/characters/vanrel/beans.svg"
  12107. }
  12108. },
  12109. },
  12110. [
  12111. {
  12112. name: "Normal",
  12113. height: math.unit(3 + 11/12, "feet"),
  12114. default: true
  12115. },
  12116. ]
  12117. ))
  12118. characterMakers.push(() => makeCharacter(
  12119. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12120. {
  12121. front: {
  12122. height: math.unit(7 + 5 / 12, "feet"),
  12123. name: "Front",
  12124. image: {
  12125. source: "./media/characters/kuiper-vanrel/front.svg",
  12126. extra: 1219/1169,
  12127. bottom: 69/1288
  12128. }
  12129. },
  12130. back: {
  12131. height: math.unit(7 + 5 / 12, "feet"),
  12132. name: "Back",
  12133. image: {
  12134. source: "./media/characters/kuiper-vanrel/back.svg",
  12135. extra: 1236/1193,
  12136. bottom: 27/1263
  12137. }
  12138. },
  12139. foot: {
  12140. height: math.unit(0.55, "meters"),
  12141. name: "Foot",
  12142. image: {
  12143. source: "./media/characters/kuiper-vanrel/foot.svg",
  12144. }
  12145. },
  12146. battle: {
  12147. height: math.unit(6.824, "feet"),
  12148. name: "Battle",
  12149. image: {
  12150. source: "./media/characters/kuiper-vanrel/battle.svg",
  12151. extra: 1466 / 1327,
  12152. bottom: 29 / 1492.5
  12153. }
  12154. },
  12155. meerkui: {
  12156. height: math.unit(18, "inches"),
  12157. name: "Meerkui",
  12158. image: {
  12159. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12160. extra: 1354/1289,
  12161. bottom: 69/1423
  12162. }
  12163. },
  12164. },
  12165. [
  12166. {
  12167. name: "Normal",
  12168. height: math.unit(7 + 5 / 12, "feet"),
  12169. default: true
  12170. },
  12171. ]
  12172. ))
  12173. characterMakers.push(() => makeCharacter(
  12174. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12175. {
  12176. front: {
  12177. height: math.unit(8 + 5 / 12, "feet"),
  12178. name: "Front",
  12179. image: {
  12180. source: "./media/characters/keset-vanrel/front.svg",
  12181. extra: 1231/1148,
  12182. bottom: 82/1313
  12183. }
  12184. },
  12185. back: {
  12186. height: math.unit(8 + 5 / 12, "feet"),
  12187. name: "Back",
  12188. image: {
  12189. source: "./media/characters/keset-vanrel/back.svg",
  12190. extra: 1240/1174,
  12191. bottom: 33/1273
  12192. }
  12193. },
  12194. hand: {
  12195. height: math.unit(0.6, "meters"),
  12196. name: "Hand",
  12197. image: {
  12198. source: "./media/characters/keset-vanrel/hand.svg"
  12199. }
  12200. },
  12201. foot: {
  12202. height: math.unit(0.94978, "meters"),
  12203. name: "Foot",
  12204. image: {
  12205. source: "./media/characters/keset-vanrel/foot.svg"
  12206. }
  12207. },
  12208. battle: {
  12209. height: math.unit(7.408, "feet"),
  12210. name: "Battle",
  12211. image: {
  12212. source: "./media/characters/keset-vanrel/battle.svg",
  12213. extra: 1890 / 1386,
  12214. bottom: 73.28 / 1970
  12215. }
  12216. },
  12217. },
  12218. [
  12219. {
  12220. name: "Normal",
  12221. height: math.unit(8 + 5 / 12, "feet"),
  12222. default: true
  12223. },
  12224. ]
  12225. ))
  12226. characterMakers.push(() => makeCharacter(
  12227. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12228. {
  12229. front: {
  12230. height: math.unit(6, "feet"),
  12231. weight: math.unit(150, "lb"),
  12232. name: "Front",
  12233. image: {
  12234. source: "./media/characters/neos/front.svg",
  12235. extra: 1696 / 992,
  12236. bottom: 0.14
  12237. }
  12238. },
  12239. },
  12240. [
  12241. {
  12242. name: "Normal",
  12243. height: math.unit(54, "cm"),
  12244. default: true
  12245. },
  12246. {
  12247. name: "Macro",
  12248. height: math.unit(100, "m")
  12249. },
  12250. {
  12251. name: "Megamacro",
  12252. height: math.unit(10, "km")
  12253. },
  12254. {
  12255. name: "Megamacro+",
  12256. height: math.unit(100, "km")
  12257. },
  12258. {
  12259. name: "Gigamacro",
  12260. height: math.unit(100, "Mm")
  12261. },
  12262. {
  12263. name: "Teramacro",
  12264. height: math.unit(100, "Gm")
  12265. },
  12266. {
  12267. name: "Examacro",
  12268. height: math.unit(100, "Em")
  12269. },
  12270. {
  12271. name: "Godly",
  12272. height: math.unit(10000, "Ym")
  12273. },
  12274. {
  12275. name: "Beyond Godly",
  12276. height: math.unit(25, "multiverses")
  12277. },
  12278. ]
  12279. ))
  12280. characterMakers.push(() => makeCharacter(
  12281. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12282. {
  12283. feminine: {
  12284. height: math.unit(5, "feet"),
  12285. weight: math.unit(100, "lb"),
  12286. name: "Feminine",
  12287. image: {
  12288. source: "./media/characters/sammy-mouse/feminine.svg",
  12289. extra: 2526 / 2425,
  12290. bottom: 0.123
  12291. }
  12292. },
  12293. masculine: {
  12294. height: math.unit(5, "feet"),
  12295. weight: math.unit(100, "lb"),
  12296. name: "Masculine",
  12297. image: {
  12298. source: "./media/characters/sammy-mouse/masculine.svg",
  12299. extra: 2526 / 2425,
  12300. bottom: 0.123
  12301. }
  12302. },
  12303. },
  12304. [
  12305. {
  12306. name: "Micro",
  12307. height: math.unit(5, "inches")
  12308. },
  12309. {
  12310. name: "Normal",
  12311. height: math.unit(5, "feet"),
  12312. default: true
  12313. },
  12314. {
  12315. name: "Macro",
  12316. height: math.unit(60, "feet")
  12317. },
  12318. ]
  12319. ))
  12320. characterMakers.push(() => makeCharacter(
  12321. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12322. {
  12323. front: {
  12324. height: math.unit(4, "feet"),
  12325. weight: math.unit(50, "lb"),
  12326. name: "Front",
  12327. image: {
  12328. source: "./media/characters/kole/front.svg",
  12329. extra: 1423 / 1303,
  12330. bottom: 0.025
  12331. }
  12332. },
  12333. back: {
  12334. height: math.unit(4, "feet"),
  12335. weight: math.unit(50, "lb"),
  12336. name: "Back",
  12337. image: {
  12338. source: "./media/characters/kole/back.svg",
  12339. extra: 1426 / 1280,
  12340. bottom: 0.02
  12341. }
  12342. },
  12343. },
  12344. [
  12345. {
  12346. name: "Normal",
  12347. height: math.unit(4, "feet"),
  12348. default: true
  12349. },
  12350. ]
  12351. ))
  12352. characterMakers.push(() => makeCharacter(
  12353. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12354. {
  12355. front: {
  12356. height: math.unit(2.5, "feet"),
  12357. weight: math.unit(32, "lb"),
  12358. name: "Front",
  12359. image: {
  12360. source: "./media/characters/rufran/front.svg",
  12361. extra: 1313/885,
  12362. bottom: 94/1407
  12363. }
  12364. },
  12365. side: {
  12366. height: math.unit(2.5, "feet"),
  12367. weight: math.unit(32, "lb"),
  12368. name: "Side",
  12369. image: {
  12370. source: "./media/characters/rufran/side.svg",
  12371. extra: 1109/852,
  12372. bottom: 118/1227
  12373. }
  12374. },
  12375. back: {
  12376. height: math.unit(2.5, "feet"),
  12377. weight: math.unit(32, "lb"),
  12378. name: "Back",
  12379. image: {
  12380. source: "./media/characters/rufran/back.svg",
  12381. extra: 1280/878,
  12382. bottom: 131/1411
  12383. }
  12384. },
  12385. mouth: {
  12386. height: math.unit(1.13, "feet"),
  12387. name: "Mouth",
  12388. image: {
  12389. source: "./media/characters/rufran/mouth.svg"
  12390. }
  12391. },
  12392. foot: {
  12393. height: math.unit(1.33, "feet"),
  12394. name: "Foot",
  12395. image: {
  12396. source: "./media/characters/rufran/foot.svg"
  12397. }
  12398. },
  12399. koboldFront: {
  12400. height: math.unit(2 + 6 / 12, "feet"),
  12401. weight: math.unit(20, "lb"),
  12402. name: "Front (Kobold)",
  12403. image: {
  12404. source: "./media/characters/rufran/kobold-front.svg",
  12405. extra: 2041 / 1839,
  12406. bottom: 0.055
  12407. }
  12408. },
  12409. koboldBack: {
  12410. height: math.unit(2 + 6 / 12, "feet"),
  12411. weight: math.unit(20, "lb"),
  12412. name: "Back (Kobold)",
  12413. image: {
  12414. source: "./media/characters/rufran/kobold-back.svg",
  12415. extra: 2054 / 1839,
  12416. bottom: 0.01
  12417. }
  12418. },
  12419. koboldHand: {
  12420. height: math.unit(0.2166, "meters"),
  12421. name: "Hand (Kobold)",
  12422. image: {
  12423. source: "./media/characters/rufran/kobold-hand.svg"
  12424. }
  12425. },
  12426. koboldFoot: {
  12427. height: math.unit(0.185, "meters"),
  12428. name: "Foot (Kobold)",
  12429. image: {
  12430. source: "./media/characters/rufran/kobold-foot.svg"
  12431. }
  12432. },
  12433. },
  12434. [
  12435. {
  12436. name: "Micro",
  12437. height: math.unit(1, "inch")
  12438. },
  12439. {
  12440. name: "Normal",
  12441. height: math.unit(2 + 6 / 12, "feet"),
  12442. default: true
  12443. },
  12444. {
  12445. name: "Big",
  12446. height: math.unit(60, "feet")
  12447. },
  12448. {
  12449. name: "Macro",
  12450. height: math.unit(325, "feet")
  12451. },
  12452. ]
  12453. ))
  12454. characterMakers.push(() => makeCharacter(
  12455. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12456. {
  12457. front: {
  12458. height: math.unit(0.3, "meters"),
  12459. weight: math.unit(3.5, "kg"),
  12460. name: "Front",
  12461. image: {
  12462. source: "./media/characters/chip/front.svg",
  12463. extra: 748 / 674
  12464. }
  12465. },
  12466. },
  12467. [
  12468. {
  12469. name: "Micro",
  12470. height: math.unit(1, "inch"),
  12471. default: true
  12472. },
  12473. ]
  12474. ))
  12475. characterMakers.push(() => makeCharacter(
  12476. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12477. {
  12478. side: {
  12479. height: math.unit(2.3, "meters"),
  12480. weight: math.unit(3500, "lb"),
  12481. name: "Side",
  12482. image: {
  12483. source: "./media/characters/torvid/side.svg",
  12484. extra: 1972 / 722,
  12485. bottom: 0.035
  12486. }
  12487. },
  12488. },
  12489. [
  12490. {
  12491. name: "Normal",
  12492. height: math.unit(2.3, "meters"),
  12493. default: true
  12494. },
  12495. ]
  12496. ))
  12497. characterMakers.push(() => makeCharacter(
  12498. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12499. {
  12500. front: {
  12501. height: math.unit(2, "meters"),
  12502. weight: math.unit(150.5, "kg"),
  12503. name: "Front",
  12504. image: {
  12505. source: "./media/characters/susan/front.svg",
  12506. extra: 693 / 635,
  12507. bottom: 0.05
  12508. }
  12509. },
  12510. },
  12511. [
  12512. {
  12513. name: "Megamacro",
  12514. height: math.unit(505, "miles"),
  12515. default: true
  12516. },
  12517. ]
  12518. ))
  12519. characterMakers.push(() => makeCharacter(
  12520. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12521. {
  12522. front: {
  12523. height: math.unit(6, "feet"),
  12524. weight: math.unit(150, "lb"),
  12525. name: "Front",
  12526. image: {
  12527. source: "./media/characters/raindrops/front.svg",
  12528. extra: 2655 / 2461,
  12529. bottom: 49 / 2705
  12530. }
  12531. },
  12532. back: {
  12533. height: math.unit(6, "feet"),
  12534. weight: math.unit(150, "lb"),
  12535. name: "Back",
  12536. image: {
  12537. source: "./media/characters/raindrops/back.svg",
  12538. extra: 2574 / 2400,
  12539. bottom: 65 / 2634
  12540. }
  12541. },
  12542. },
  12543. [
  12544. {
  12545. name: "Micro",
  12546. height: math.unit(6, "inches")
  12547. },
  12548. {
  12549. name: "Normal",
  12550. height: math.unit(6 + 2 / 12, "feet")
  12551. },
  12552. {
  12553. name: "Macro",
  12554. height: math.unit(131, "feet"),
  12555. default: true
  12556. },
  12557. {
  12558. name: "Megamacro",
  12559. height: math.unit(15, "miles")
  12560. },
  12561. {
  12562. name: "Gigamacro",
  12563. height: math.unit(4000, "miles")
  12564. },
  12565. {
  12566. name: "Teramacro",
  12567. height: math.unit(315000, "miles")
  12568. },
  12569. ]
  12570. ))
  12571. characterMakers.push(() => makeCharacter(
  12572. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12573. {
  12574. front: {
  12575. height: math.unit(2.794, "meters"),
  12576. weight: math.unit(325, "kg"),
  12577. name: "Front",
  12578. image: {
  12579. source: "./media/characters/tezwa/front.svg",
  12580. extra: 2083 / 1906,
  12581. bottom: 0.031
  12582. }
  12583. },
  12584. foot: {
  12585. height: math.unit(0.687, "meters"),
  12586. name: "Foot",
  12587. image: {
  12588. source: "./media/characters/tezwa/foot.svg"
  12589. }
  12590. },
  12591. },
  12592. [
  12593. {
  12594. name: "Normal",
  12595. height: math.unit(9 + 2 / 12, "feet"),
  12596. default: true
  12597. },
  12598. ]
  12599. ))
  12600. characterMakers.push(() => makeCharacter(
  12601. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12602. {
  12603. front: {
  12604. height: math.unit(58, "feet"),
  12605. weight: math.unit(89000, "lb"),
  12606. name: "Front",
  12607. image: {
  12608. source: "./media/characters/typhus/front.svg",
  12609. extra: 816 / 800,
  12610. bottom: 0.065
  12611. }
  12612. },
  12613. },
  12614. [
  12615. {
  12616. name: "Macro",
  12617. height: math.unit(58, "feet"),
  12618. default: true
  12619. },
  12620. ]
  12621. ))
  12622. characterMakers.push(() => makeCharacter(
  12623. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12624. {
  12625. front: {
  12626. height: math.unit(12, "feet"),
  12627. weight: math.unit(6, "tonnes"),
  12628. name: "Front",
  12629. image: {
  12630. source: "./media/characters/lyra-von-wulf/front.svg",
  12631. extra: 1,
  12632. bottom: 0.10
  12633. }
  12634. },
  12635. frontMecha: {
  12636. height: math.unit(12, "feet"),
  12637. weight: math.unit(12, "tonnes"),
  12638. name: "Front (Mecha)",
  12639. image: {
  12640. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12641. extra: 1,
  12642. bottom: 0.042
  12643. }
  12644. },
  12645. maw: {
  12646. height: math.unit(2.2, "feet"),
  12647. name: "Maw",
  12648. image: {
  12649. source: "./media/characters/lyra-von-wulf/maw.svg"
  12650. }
  12651. },
  12652. },
  12653. [
  12654. {
  12655. name: "Normal",
  12656. height: math.unit(12, "feet"),
  12657. default: true
  12658. },
  12659. {
  12660. name: "Classic",
  12661. height: math.unit(50, "feet")
  12662. },
  12663. {
  12664. name: "Macro",
  12665. height: math.unit(500, "feet")
  12666. },
  12667. {
  12668. name: "Megamacro",
  12669. height: math.unit(1, "mile")
  12670. },
  12671. {
  12672. name: "Gigamacro",
  12673. height: math.unit(400, "miles")
  12674. },
  12675. {
  12676. name: "Teramacro",
  12677. height: math.unit(22000, "miles")
  12678. },
  12679. {
  12680. name: "Solarmacro",
  12681. height: math.unit(8600000, "miles")
  12682. },
  12683. {
  12684. name: "Galactic",
  12685. height: math.unit(1057000, "lightyears")
  12686. },
  12687. ]
  12688. ))
  12689. characterMakers.push(() => makeCharacter(
  12690. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12691. {
  12692. front: {
  12693. height: math.unit(6 + 10 / 12, "feet"),
  12694. weight: math.unit(150, "lb"),
  12695. name: "Front",
  12696. image: {
  12697. source: "./media/characters/dixon/front.svg",
  12698. extra: 3361 / 3209,
  12699. bottom: 0.01
  12700. }
  12701. },
  12702. },
  12703. [
  12704. {
  12705. name: "Normal",
  12706. height: math.unit(6 + 10 / 12, "feet"),
  12707. default: true
  12708. },
  12709. {
  12710. name: "Big",
  12711. height: math.unit(12, "meters")
  12712. },
  12713. {
  12714. name: "Macro",
  12715. height: math.unit(500, "meters")
  12716. },
  12717. {
  12718. name: "Megamacro",
  12719. height: math.unit(2, "km")
  12720. },
  12721. ]
  12722. ))
  12723. characterMakers.push(() => makeCharacter(
  12724. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12725. {
  12726. front: {
  12727. height: math.unit(185, "cm"),
  12728. weight: math.unit(68, "kg"),
  12729. name: "Front",
  12730. image: {
  12731. source: "./media/characters/kauko/front.svg",
  12732. extra: 1455 / 1421,
  12733. bottom: 0.03
  12734. }
  12735. },
  12736. back: {
  12737. height: math.unit(185, "cm"),
  12738. weight: math.unit(68, "kg"),
  12739. name: "Back",
  12740. image: {
  12741. source: "./media/characters/kauko/back.svg",
  12742. extra: 1455 / 1421,
  12743. bottom: 0.004
  12744. }
  12745. },
  12746. },
  12747. [
  12748. {
  12749. name: "Normal",
  12750. height: math.unit(185, "cm"),
  12751. default: true
  12752. },
  12753. ]
  12754. ))
  12755. characterMakers.push(() => makeCharacter(
  12756. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12757. {
  12758. front: {
  12759. height: math.unit(6, "feet"),
  12760. weight: math.unit(150, "kg"),
  12761. name: "Front",
  12762. image: {
  12763. source: "./media/characters/varg/front.svg",
  12764. extra: 1108 / 1018,
  12765. bottom: 0.0375
  12766. }
  12767. },
  12768. },
  12769. [
  12770. {
  12771. name: "Normal",
  12772. height: math.unit(5, "meters")
  12773. },
  12774. {
  12775. name: "Macro",
  12776. height: math.unit(200, "meters")
  12777. },
  12778. {
  12779. name: "Megamacro",
  12780. height: math.unit(20, "kilometers")
  12781. },
  12782. {
  12783. name: "True Size",
  12784. height: math.unit(211, "km"),
  12785. default: true
  12786. },
  12787. {
  12788. name: "Gigamacro",
  12789. height: math.unit(1000, "km")
  12790. },
  12791. {
  12792. name: "Gigamacro+",
  12793. height: math.unit(8000, "km")
  12794. },
  12795. {
  12796. name: "Teramacro",
  12797. height: math.unit(1000000, "km")
  12798. },
  12799. ]
  12800. ))
  12801. characterMakers.push(() => makeCharacter(
  12802. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12803. {
  12804. front: {
  12805. height: math.unit(7 + 7 / 12, "feet"),
  12806. weight: math.unit(267, "lb"),
  12807. name: "Front",
  12808. image: {
  12809. source: "./media/characters/dayza/front.svg",
  12810. extra: 1262 / 1200,
  12811. bottom: 0.035
  12812. }
  12813. },
  12814. side: {
  12815. height: math.unit(7 + 7 / 12, "feet"),
  12816. weight: math.unit(267, "lb"),
  12817. name: "Side",
  12818. image: {
  12819. source: "./media/characters/dayza/side.svg",
  12820. extra: 1295 / 1245,
  12821. bottom: 0.05
  12822. }
  12823. },
  12824. back: {
  12825. height: math.unit(7 + 7 / 12, "feet"),
  12826. weight: math.unit(267, "lb"),
  12827. name: "Back",
  12828. image: {
  12829. source: "./media/characters/dayza/back.svg",
  12830. extra: 1241 / 1170
  12831. }
  12832. },
  12833. },
  12834. [
  12835. {
  12836. name: "Normal",
  12837. height: math.unit(7 + 7 / 12, "feet"),
  12838. default: true
  12839. },
  12840. {
  12841. name: "Macro",
  12842. height: math.unit(155, "feet")
  12843. },
  12844. ]
  12845. ))
  12846. characterMakers.push(() => makeCharacter(
  12847. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12848. {
  12849. front: {
  12850. height: math.unit(6 + 5 / 12, "feet"),
  12851. weight: math.unit(160, "lb"),
  12852. name: "Front",
  12853. image: {
  12854. source: "./media/characters/xanthos/front.svg",
  12855. extra: 1,
  12856. bottom: 0.04
  12857. }
  12858. },
  12859. back: {
  12860. height: math.unit(6 + 5 / 12, "feet"),
  12861. weight: math.unit(160, "lb"),
  12862. name: "Back",
  12863. image: {
  12864. source: "./media/characters/xanthos/back.svg",
  12865. extra: 1,
  12866. bottom: 0.03
  12867. }
  12868. },
  12869. hand: {
  12870. height: math.unit(0.928, "feet"),
  12871. name: "Hand",
  12872. image: {
  12873. source: "./media/characters/xanthos/hand.svg"
  12874. }
  12875. },
  12876. foot: {
  12877. height: math.unit(1.286, "feet"),
  12878. name: "Foot",
  12879. image: {
  12880. source: "./media/characters/xanthos/foot.svg"
  12881. }
  12882. },
  12883. },
  12884. [
  12885. {
  12886. name: "Normal",
  12887. height: math.unit(6 + 5 / 12, "feet"),
  12888. default: true
  12889. },
  12890. {
  12891. name: "Normal+",
  12892. height: math.unit(6, "meters")
  12893. },
  12894. {
  12895. name: "Macro",
  12896. height: math.unit(40, "feet")
  12897. },
  12898. {
  12899. name: "Macro+",
  12900. height: math.unit(200, "meters")
  12901. },
  12902. {
  12903. name: "Megamacro",
  12904. height: math.unit(20, "km")
  12905. },
  12906. {
  12907. name: "Megamacro+",
  12908. height: math.unit(100, "km")
  12909. },
  12910. {
  12911. name: "Gigamacro",
  12912. height: math.unit(200, "megameters")
  12913. },
  12914. {
  12915. name: "Gigamacro+",
  12916. height: math.unit(1.5, "gigameters")
  12917. },
  12918. ]
  12919. ))
  12920. characterMakers.push(() => makeCharacter(
  12921. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12922. {
  12923. front: {
  12924. height: math.unit(6 + 3 / 12, "feet"),
  12925. weight: math.unit(215, "lb"),
  12926. name: "Front",
  12927. image: {
  12928. source: "./media/characters/grynn/front.svg",
  12929. extra: 4627 / 4209,
  12930. bottom: 0.047
  12931. }
  12932. },
  12933. },
  12934. [
  12935. {
  12936. name: "Micro",
  12937. height: math.unit(6, "inches")
  12938. },
  12939. {
  12940. name: "Normal",
  12941. height: math.unit(6 + 3 / 12, "feet"),
  12942. default: true
  12943. },
  12944. {
  12945. name: "Big",
  12946. height: math.unit(104, "feet")
  12947. },
  12948. {
  12949. name: "Macro",
  12950. height: math.unit(944, "feet")
  12951. },
  12952. {
  12953. name: "Macro+",
  12954. height: math.unit(9480, "feet")
  12955. },
  12956. {
  12957. name: "Megamacro",
  12958. height: math.unit(78752, "feet")
  12959. },
  12960. {
  12961. name: "Megamacro+",
  12962. height: math.unit(630128, "feet")
  12963. },
  12964. {
  12965. name: "Megamacro++",
  12966. height: math.unit(3150695, "feet")
  12967. },
  12968. ]
  12969. ))
  12970. characterMakers.push(() => makeCharacter(
  12971. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12972. {
  12973. front: {
  12974. height: math.unit(7 + 5 / 12, "feet"),
  12975. weight: math.unit(450, "lb"),
  12976. name: "Front",
  12977. image: {
  12978. source: "./media/characters/mocha-aura/front.svg",
  12979. extra: 1907 / 1817,
  12980. bottom: 0.04
  12981. }
  12982. },
  12983. back: {
  12984. height: math.unit(7 + 5 / 12, "feet"),
  12985. weight: math.unit(450, "lb"),
  12986. name: "Back",
  12987. image: {
  12988. source: "./media/characters/mocha-aura/back.svg",
  12989. extra: 1900 / 1825,
  12990. bottom: 0.045
  12991. }
  12992. },
  12993. },
  12994. [
  12995. {
  12996. name: "Nano",
  12997. height: math.unit(1, "nm")
  12998. },
  12999. {
  13000. name: "Megamicro",
  13001. height: math.unit(1, "mm")
  13002. },
  13003. {
  13004. name: "Micro",
  13005. height: math.unit(3, "inches")
  13006. },
  13007. {
  13008. name: "Normal",
  13009. height: math.unit(7 + 5 / 12, "feet"),
  13010. default: true
  13011. },
  13012. {
  13013. name: "Macro",
  13014. height: math.unit(30, "feet")
  13015. },
  13016. {
  13017. name: "Megamacro",
  13018. height: math.unit(3500, "feet")
  13019. },
  13020. {
  13021. name: "Teramacro",
  13022. height: math.unit(500000, "miles")
  13023. },
  13024. {
  13025. name: "Petamacro",
  13026. height: math.unit(50000000000000000, "parsecs")
  13027. },
  13028. ]
  13029. ))
  13030. characterMakers.push(() => makeCharacter(
  13031. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13032. {
  13033. front: {
  13034. height: math.unit(6, "feet"),
  13035. weight: math.unit(150, "lb"),
  13036. name: "Front",
  13037. image: {
  13038. source: "./media/characters/ilisha-devya/front.svg",
  13039. extra: 1,
  13040. bottom: 0.175
  13041. }
  13042. },
  13043. back: {
  13044. height: math.unit(6, "feet"),
  13045. weight: math.unit(150, "lb"),
  13046. name: "Back",
  13047. image: {
  13048. source: "./media/characters/ilisha-devya/back.svg",
  13049. extra: 1,
  13050. bottom: 0.015
  13051. }
  13052. },
  13053. },
  13054. [
  13055. {
  13056. name: "Macro",
  13057. height: math.unit(500, "feet"),
  13058. default: true
  13059. },
  13060. {
  13061. name: "Megamacro",
  13062. height: math.unit(10, "miles")
  13063. },
  13064. {
  13065. name: "Gigamacro",
  13066. height: math.unit(100000, "miles")
  13067. },
  13068. {
  13069. name: "Examacro",
  13070. height: math.unit(1e9, "lightyears")
  13071. },
  13072. {
  13073. name: "Omniversal",
  13074. height: math.unit(1e33, "lightyears")
  13075. },
  13076. {
  13077. name: "Beyond Infinite",
  13078. height: math.unit(1e100, "lightyears")
  13079. },
  13080. ]
  13081. ))
  13082. characterMakers.push(() => makeCharacter(
  13083. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13084. {
  13085. Side: {
  13086. height: math.unit(6, "feet"),
  13087. weight: math.unit(150, "lb"),
  13088. name: "Side",
  13089. image: {
  13090. source: "./media/characters/mira/side.svg",
  13091. extra: 900 / 799,
  13092. bottom: 0.02
  13093. }
  13094. },
  13095. },
  13096. [
  13097. {
  13098. name: "Human Size",
  13099. height: math.unit(6, "feet")
  13100. },
  13101. {
  13102. name: "Macro",
  13103. height: math.unit(100, "feet"),
  13104. default: true
  13105. },
  13106. {
  13107. name: "Megamacro",
  13108. height: math.unit(10, "miles")
  13109. },
  13110. {
  13111. name: "Gigamacro",
  13112. height: math.unit(25000, "miles")
  13113. },
  13114. {
  13115. name: "Teramacro",
  13116. height: math.unit(300, "AU")
  13117. },
  13118. {
  13119. name: "Full Size",
  13120. height: math.unit(4.5e10, "lightyears")
  13121. },
  13122. ]
  13123. ))
  13124. characterMakers.push(() => makeCharacter(
  13125. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13126. {
  13127. front: {
  13128. height: math.unit(6, "feet"),
  13129. weight: math.unit(150, "lb"),
  13130. name: "Front",
  13131. image: {
  13132. source: "./media/characters/holly/front.svg",
  13133. extra: 639 / 606
  13134. }
  13135. },
  13136. back: {
  13137. height: math.unit(6, "feet"),
  13138. weight: math.unit(150, "lb"),
  13139. name: "Back",
  13140. image: {
  13141. source: "./media/characters/holly/back.svg",
  13142. extra: 623 / 598
  13143. }
  13144. },
  13145. frontWorking: {
  13146. height: math.unit(6, "feet"),
  13147. weight: math.unit(150, "lb"),
  13148. name: "Front (Working)",
  13149. image: {
  13150. source: "./media/characters/holly/front-working.svg",
  13151. extra: 607 / 577,
  13152. bottom: 0.048
  13153. }
  13154. },
  13155. },
  13156. [
  13157. {
  13158. name: "Normal",
  13159. height: math.unit(12 + 3 / 12, "feet"),
  13160. default: true
  13161. },
  13162. ]
  13163. ))
  13164. characterMakers.push(() => makeCharacter(
  13165. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13166. {
  13167. front: {
  13168. height: math.unit(6, "feet"),
  13169. weight: math.unit(150, "lb"),
  13170. name: "Front",
  13171. image: {
  13172. source: "./media/characters/porter/front.svg",
  13173. extra: 1,
  13174. bottom: 0.01
  13175. }
  13176. },
  13177. frontRobes: {
  13178. height: math.unit(6, "feet"),
  13179. weight: math.unit(150, "lb"),
  13180. name: "Front (Robes)",
  13181. image: {
  13182. source: "./media/characters/porter/front-robes.svg",
  13183. extra: 1.01,
  13184. bottom: 0.01
  13185. }
  13186. },
  13187. },
  13188. [
  13189. {
  13190. name: "Normal",
  13191. height: math.unit(11 + 9 / 12, "feet"),
  13192. default: true
  13193. },
  13194. ]
  13195. ))
  13196. characterMakers.push(() => makeCharacter(
  13197. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13198. {
  13199. legendary: {
  13200. height: math.unit(6, "feet"),
  13201. weight: math.unit(150, "lb"),
  13202. name: "Legendary",
  13203. image: {
  13204. source: "./media/characters/lucy/legendary.svg",
  13205. extra: 1355 / 1100,
  13206. bottom: 0.045
  13207. }
  13208. },
  13209. },
  13210. [
  13211. {
  13212. name: "Legendary",
  13213. height: math.unit(86882 * 2, "miles"),
  13214. default: true
  13215. },
  13216. ]
  13217. ))
  13218. characterMakers.push(() => makeCharacter(
  13219. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13220. {
  13221. front: {
  13222. height: math.unit(6, "feet"),
  13223. weight: math.unit(150, "lb"),
  13224. name: "Front",
  13225. image: {
  13226. source: "./media/characters/drusilla/front.svg",
  13227. extra: 678 / 635,
  13228. bottom: 0.03
  13229. }
  13230. },
  13231. back: {
  13232. height: math.unit(6, "feet"),
  13233. weight: math.unit(150, "lb"),
  13234. name: "Back",
  13235. image: {
  13236. source: "./media/characters/drusilla/back.svg",
  13237. extra: 678 / 635,
  13238. bottom: 0.005
  13239. }
  13240. },
  13241. },
  13242. [
  13243. {
  13244. name: "Macro",
  13245. height: math.unit(100, "feet")
  13246. },
  13247. {
  13248. name: "Canon Height",
  13249. height: math.unit(2000, "feet"),
  13250. default: true
  13251. },
  13252. ]
  13253. ))
  13254. characterMakers.push(() => makeCharacter(
  13255. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13256. {
  13257. front: {
  13258. height: math.unit(6, "feet"),
  13259. weight: math.unit(180, "lb"),
  13260. name: "Front",
  13261. image: {
  13262. source: "./media/characters/renard-thatch/front.svg",
  13263. extra: 2411 / 2275,
  13264. bottom: 0.01
  13265. }
  13266. },
  13267. frontPosing: {
  13268. height: math.unit(6, "feet"),
  13269. weight: math.unit(180, "lb"),
  13270. name: "Front (Posing)",
  13271. image: {
  13272. source: "./media/characters/renard-thatch/front-posing.svg",
  13273. extra: 2381 / 2261,
  13274. bottom: 0.01
  13275. }
  13276. },
  13277. back: {
  13278. height: math.unit(6, "feet"),
  13279. weight: math.unit(180, "lb"),
  13280. name: "Back",
  13281. image: {
  13282. source: "./media/characters/renard-thatch/back.svg",
  13283. extra: 2428 / 2288
  13284. }
  13285. },
  13286. },
  13287. [
  13288. {
  13289. name: "Micro",
  13290. height: math.unit(3, "inches")
  13291. },
  13292. {
  13293. name: "Default",
  13294. height: math.unit(6, "feet"),
  13295. default: true
  13296. },
  13297. {
  13298. name: "Macro",
  13299. height: math.unit(75, "feet")
  13300. },
  13301. ]
  13302. ))
  13303. characterMakers.push(() => makeCharacter(
  13304. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13305. {
  13306. front: {
  13307. height: math.unit(1450, "feet"),
  13308. weight: math.unit(1.21e6, "tons"),
  13309. name: "Front",
  13310. image: {
  13311. source: "./media/characters/sekvra/front.svg",
  13312. extra: 1,
  13313. bottom: 0.03
  13314. }
  13315. },
  13316. frontClothed: {
  13317. height: math.unit(1450, "feet"),
  13318. weight: math.unit(1.21e6, "tons"),
  13319. name: "Front (Clothed)",
  13320. image: {
  13321. source: "./media/characters/sekvra/front-clothed.svg",
  13322. extra: 1,
  13323. bottom: 0.03
  13324. }
  13325. },
  13326. side: {
  13327. height: math.unit(1450, "feet"),
  13328. weight: math.unit(1.21e6, "tons"),
  13329. name: "Side",
  13330. image: {
  13331. source: "./media/characters/sekvra/side.svg",
  13332. extra: 1,
  13333. bottom: 0.025
  13334. }
  13335. },
  13336. back: {
  13337. height: math.unit(1450, "feet"),
  13338. weight: math.unit(1.21e6, "tons"),
  13339. name: "Back",
  13340. image: {
  13341. source: "./media/characters/sekvra/back.svg",
  13342. extra: 1,
  13343. bottom: 0.005
  13344. }
  13345. },
  13346. },
  13347. [
  13348. {
  13349. name: "Macro",
  13350. height: math.unit(1450, "feet"),
  13351. default: true
  13352. },
  13353. {
  13354. name: "Megamacro",
  13355. height: math.unit(15000, "feet")
  13356. },
  13357. ]
  13358. ))
  13359. characterMakers.push(() => makeCharacter(
  13360. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13361. {
  13362. front: {
  13363. height: math.unit(6, "feet"),
  13364. weight: math.unit(150, "lb"),
  13365. name: "Front",
  13366. image: {
  13367. source: "./media/characters/carmine/front.svg",
  13368. extra: 1,
  13369. bottom: 0.035
  13370. }
  13371. },
  13372. frontArmor: {
  13373. height: math.unit(6, "feet"),
  13374. weight: math.unit(150, "lb"),
  13375. name: "Front (Armor)",
  13376. image: {
  13377. source: "./media/characters/carmine/front-armor.svg",
  13378. extra: 1,
  13379. bottom: 0.035
  13380. }
  13381. },
  13382. },
  13383. [
  13384. {
  13385. name: "Large",
  13386. height: math.unit(1, "mile")
  13387. },
  13388. {
  13389. name: "Huge",
  13390. height: math.unit(40, "miles"),
  13391. default: true
  13392. },
  13393. {
  13394. name: "Colossal",
  13395. height: math.unit(2500, "miles")
  13396. },
  13397. ]
  13398. ))
  13399. characterMakers.push(() => makeCharacter(
  13400. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13401. {
  13402. front: {
  13403. height: math.unit(6, "feet"),
  13404. weight: math.unit(150, "lb"),
  13405. name: "Front",
  13406. image: {
  13407. source: "./media/characters/elyssia/front.svg",
  13408. extra: 2201 / 2035,
  13409. bottom: 0.05
  13410. }
  13411. },
  13412. frontClothed: {
  13413. height: math.unit(6, "feet"),
  13414. weight: math.unit(150, "lb"),
  13415. name: "Front (Clothed)",
  13416. image: {
  13417. source: "./media/characters/elyssia/front-clothed.svg",
  13418. extra: 2201 / 2035,
  13419. bottom: 0.05
  13420. }
  13421. },
  13422. back: {
  13423. height: math.unit(6, "feet"),
  13424. weight: math.unit(150, "lb"),
  13425. name: "Back",
  13426. image: {
  13427. source: "./media/characters/elyssia/back.svg",
  13428. extra: 2201 / 2035,
  13429. bottom: 0.013
  13430. }
  13431. },
  13432. },
  13433. [
  13434. {
  13435. name: "Smaller",
  13436. height: math.unit(150, "feet")
  13437. },
  13438. {
  13439. name: "Standard",
  13440. height: math.unit(1400, "feet"),
  13441. default: true
  13442. },
  13443. {
  13444. name: "Distracted",
  13445. height: math.unit(15000, "feet")
  13446. },
  13447. ]
  13448. ))
  13449. characterMakers.push(() => makeCharacter(
  13450. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13451. {
  13452. front: {
  13453. height: math.unit(7 + 4 / 12, "feet"),
  13454. weight: math.unit(500, "lb"),
  13455. name: "Front",
  13456. image: {
  13457. source: "./media/characters/geno-maxwell/front.svg",
  13458. extra: 2207 / 2040,
  13459. bottom: 0.015
  13460. }
  13461. },
  13462. },
  13463. [
  13464. {
  13465. name: "Micro",
  13466. height: math.unit(3, "inches")
  13467. },
  13468. {
  13469. name: "Normal",
  13470. height: math.unit(7 + 4 / 12, "feet"),
  13471. default: true
  13472. },
  13473. {
  13474. name: "Macro",
  13475. height: math.unit(220, "feet")
  13476. },
  13477. {
  13478. name: "Megamacro",
  13479. height: math.unit(11, "miles")
  13480. },
  13481. ]
  13482. ))
  13483. characterMakers.push(() => makeCharacter(
  13484. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13485. {
  13486. front: {
  13487. height: math.unit(7 + 4 / 12, "feet"),
  13488. weight: math.unit(500, "lb"),
  13489. name: "Front",
  13490. image: {
  13491. source: "./media/characters/regena-maxwell/front.svg",
  13492. extra: 3115 / 2770,
  13493. bottom: 0.02
  13494. }
  13495. },
  13496. },
  13497. [
  13498. {
  13499. name: "Normal",
  13500. height: math.unit(7 + 4 / 12, "feet"),
  13501. default: true
  13502. },
  13503. {
  13504. name: "Macro",
  13505. height: math.unit(220, "feet")
  13506. },
  13507. {
  13508. name: "Megamacro",
  13509. height: math.unit(11, "miles")
  13510. },
  13511. ]
  13512. ))
  13513. characterMakers.push(() => makeCharacter(
  13514. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13515. {
  13516. front: {
  13517. height: math.unit(6, "feet"),
  13518. weight: math.unit(150, "lb"),
  13519. name: "Front",
  13520. image: {
  13521. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13522. extra: 860 / 690,
  13523. bottom: 0.03
  13524. }
  13525. },
  13526. },
  13527. [
  13528. {
  13529. name: "Normal",
  13530. height: math.unit(1.7, "meters"),
  13531. default: true
  13532. },
  13533. ]
  13534. ))
  13535. characterMakers.push(() => makeCharacter(
  13536. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13537. {
  13538. front: {
  13539. height: math.unit(6, "feet"),
  13540. weight: math.unit(150, "lb"),
  13541. name: "Front",
  13542. image: {
  13543. source: "./media/characters/quilly/front.svg",
  13544. extra: 890 / 776
  13545. }
  13546. },
  13547. },
  13548. [
  13549. {
  13550. name: "Gigamacro",
  13551. height: math.unit(404090, "miles"),
  13552. default: true
  13553. },
  13554. ]
  13555. ))
  13556. characterMakers.push(() => makeCharacter(
  13557. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13558. {
  13559. front: {
  13560. height: math.unit(7 + 8 / 12, "feet"),
  13561. weight: math.unit(350, "lb"),
  13562. name: "Front",
  13563. image: {
  13564. source: "./media/characters/tempest/front.svg",
  13565. extra: 1175 / 1086,
  13566. bottom: 0.02
  13567. }
  13568. },
  13569. },
  13570. [
  13571. {
  13572. name: "Normal",
  13573. height: math.unit(7 + 8 / 12, "feet"),
  13574. default: true
  13575. },
  13576. ]
  13577. ))
  13578. characterMakers.push(() => makeCharacter(
  13579. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13580. {
  13581. side: {
  13582. height: math.unit(4 + 5 / 12, "feet"),
  13583. weight: math.unit(80, "lb"),
  13584. name: "Side",
  13585. image: {
  13586. source: "./media/characters/rodger/side.svg",
  13587. extra: 1235 / 1118
  13588. }
  13589. },
  13590. },
  13591. [
  13592. {
  13593. name: "Micro",
  13594. height: math.unit(1, "inch")
  13595. },
  13596. {
  13597. name: "Normal",
  13598. height: math.unit(4 + 5 / 12, "feet"),
  13599. default: true
  13600. },
  13601. {
  13602. name: "Macro",
  13603. height: math.unit(120, "feet")
  13604. },
  13605. ]
  13606. ))
  13607. characterMakers.push(() => makeCharacter(
  13608. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13609. {
  13610. front: {
  13611. height: math.unit(6, "feet"),
  13612. weight: math.unit(150, "lb"),
  13613. name: "Front",
  13614. image: {
  13615. source: "./media/characters/danyel/front.svg",
  13616. extra: 1185 / 1123,
  13617. bottom: 0.05
  13618. }
  13619. },
  13620. },
  13621. [
  13622. {
  13623. name: "Shrunken",
  13624. height: math.unit(0.5, "mm")
  13625. },
  13626. {
  13627. name: "Micro",
  13628. height: math.unit(1, "mm"),
  13629. default: true
  13630. },
  13631. {
  13632. name: "Upsized",
  13633. height: math.unit(5 + 5 / 12, "feet")
  13634. },
  13635. ]
  13636. ))
  13637. characterMakers.push(() => makeCharacter(
  13638. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13639. {
  13640. front: {
  13641. height: math.unit(5 + 6 / 12, "feet"),
  13642. weight: math.unit(200, "lb"),
  13643. name: "Front",
  13644. image: {
  13645. source: "./media/characters/vivian-bijoux/front.svg",
  13646. extra: 1,
  13647. bottom: 0.072
  13648. }
  13649. },
  13650. },
  13651. [
  13652. {
  13653. name: "Normal",
  13654. height: math.unit(5 + 6 / 12, "feet"),
  13655. default: true
  13656. },
  13657. {
  13658. name: "Bad Dream",
  13659. height: math.unit(500, "feet")
  13660. },
  13661. {
  13662. name: "Nightmare",
  13663. height: math.unit(500, "miles")
  13664. },
  13665. ]
  13666. ))
  13667. characterMakers.push(() => makeCharacter(
  13668. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13669. {
  13670. front: {
  13671. height: math.unit(6 + 1 / 12, "feet"),
  13672. weight: math.unit(260, "lb"),
  13673. name: "Front",
  13674. image: {
  13675. source: "./media/characters/zeta/front.svg",
  13676. extra: 1968 / 1889,
  13677. bottom: 0.06
  13678. }
  13679. },
  13680. back: {
  13681. height: math.unit(6 + 1 / 12, "feet"),
  13682. weight: math.unit(260, "lb"),
  13683. name: "Back",
  13684. image: {
  13685. source: "./media/characters/zeta/back.svg",
  13686. extra: 1944 / 1858,
  13687. bottom: 0.03
  13688. }
  13689. },
  13690. hand: {
  13691. height: math.unit(1.112, "feet"),
  13692. name: "Hand",
  13693. image: {
  13694. source: "./media/characters/zeta/hand.svg"
  13695. }
  13696. },
  13697. foot: {
  13698. height: math.unit(1.48, "feet"),
  13699. name: "Foot",
  13700. image: {
  13701. source: "./media/characters/zeta/foot.svg"
  13702. }
  13703. },
  13704. },
  13705. [
  13706. {
  13707. name: "Micro",
  13708. height: math.unit(6, "inches")
  13709. },
  13710. {
  13711. name: "Normal",
  13712. height: math.unit(6 + 1 / 12, "feet"),
  13713. default: true
  13714. },
  13715. {
  13716. name: "Macro",
  13717. height: math.unit(20, "feet")
  13718. },
  13719. ]
  13720. ))
  13721. characterMakers.push(() => makeCharacter(
  13722. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13723. {
  13724. front: {
  13725. height: math.unit(6, "feet"),
  13726. weight: math.unit(150, "lb"),
  13727. name: "Front",
  13728. image: {
  13729. source: "./media/characters/jamie-larsen/front.svg",
  13730. extra: 962 / 933,
  13731. bottom: 0.02
  13732. }
  13733. },
  13734. back: {
  13735. height: math.unit(6, "feet"),
  13736. weight: math.unit(150, "lb"),
  13737. name: "Back",
  13738. image: {
  13739. source: "./media/characters/jamie-larsen/back.svg",
  13740. extra: 997 / 946
  13741. }
  13742. },
  13743. },
  13744. [
  13745. {
  13746. name: "Macro",
  13747. height: math.unit(28 + 7 / 12, "feet"),
  13748. default: true
  13749. },
  13750. {
  13751. name: "Macro+",
  13752. height: math.unit(180, "feet")
  13753. },
  13754. {
  13755. name: "Megamacro",
  13756. height: math.unit(10, "miles")
  13757. },
  13758. {
  13759. name: "Gigamacro",
  13760. height: math.unit(200000, "miles")
  13761. },
  13762. ]
  13763. ))
  13764. characterMakers.push(() => makeCharacter(
  13765. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13766. {
  13767. front: {
  13768. height: math.unit(6, "feet"),
  13769. weight: math.unit(120, "lb"),
  13770. name: "Front",
  13771. image: {
  13772. source: "./media/characters/vance/front.svg",
  13773. extra: 1980 / 1890,
  13774. bottom: 0.09
  13775. }
  13776. },
  13777. back: {
  13778. height: math.unit(6, "feet"),
  13779. weight: math.unit(120, "lb"),
  13780. name: "Back",
  13781. image: {
  13782. source: "./media/characters/vance/back.svg",
  13783. extra: 2081 / 1994,
  13784. bottom: 0.014
  13785. }
  13786. },
  13787. hand: {
  13788. height: math.unit(0.88, "feet"),
  13789. name: "Hand",
  13790. image: {
  13791. source: "./media/characters/vance/hand.svg"
  13792. }
  13793. },
  13794. foot: {
  13795. height: math.unit(0.64, "feet"),
  13796. name: "Foot",
  13797. image: {
  13798. source: "./media/characters/vance/foot.svg"
  13799. }
  13800. },
  13801. },
  13802. [
  13803. {
  13804. name: "Small",
  13805. height: math.unit(90, "feet"),
  13806. default: true
  13807. },
  13808. {
  13809. name: "Macro",
  13810. height: math.unit(100, "meters")
  13811. },
  13812. {
  13813. name: "Megamacro",
  13814. height: math.unit(15, "miles")
  13815. },
  13816. ]
  13817. ))
  13818. characterMakers.push(() => makeCharacter(
  13819. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13820. {
  13821. front: {
  13822. height: math.unit(6, "feet"),
  13823. weight: math.unit(180, "lb"),
  13824. name: "Front",
  13825. image: {
  13826. source: "./media/characters/xochitl/front.svg",
  13827. extra: 2297 / 2261,
  13828. bottom: 0.065
  13829. }
  13830. },
  13831. back: {
  13832. height: math.unit(6, "feet"),
  13833. weight: math.unit(180, "lb"),
  13834. name: "Back",
  13835. image: {
  13836. source: "./media/characters/xochitl/back.svg",
  13837. extra: 2386 / 2354,
  13838. bottom: 0.01
  13839. }
  13840. },
  13841. foot: {
  13842. height: math.unit(6 / 5 * 1.15, "feet"),
  13843. weight: math.unit(150, "lb"),
  13844. name: "Foot",
  13845. image: {
  13846. source: "./media/characters/xochitl/foot.svg"
  13847. }
  13848. },
  13849. },
  13850. [
  13851. {
  13852. name: "Macro",
  13853. height: math.unit(80, "feet")
  13854. },
  13855. {
  13856. name: "Macro+",
  13857. height: math.unit(400, "feet"),
  13858. default: true
  13859. },
  13860. {
  13861. name: "Gigamacro",
  13862. height: math.unit(80000, "miles")
  13863. },
  13864. {
  13865. name: "Gigamacro+",
  13866. height: math.unit(400000, "miles")
  13867. },
  13868. {
  13869. name: "Teramacro",
  13870. height: math.unit(300, "AU")
  13871. },
  13872. ]
  13873. ))
  13874. characterMakers.push(() => makeCharacter(
  13875. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13876. {
  13877. front: {
  13878. height: math.unit(6, "feet"),
  13879. weight: math.unit(150, "lb"),
  13880. name: "Front",
  13881. image: {
  13882. source: "./media/characters/vincent/front.svg",
  13883. extra: 1130 / 1080,
  13884. bottom: 0.055
  13885. }
  13886. },
  13887. beak: {
  13888. height: math.unit(6 * 0.1, "feet"),
  13889. name: "Beak",
  13890. image: {
  13891. source: "./media/characters/vincent/beak.svg"
  13892. }
  13893. },
  13894. hand: {
  13895. height: math.unit(6 * 0.85, "feet"),
  13896. weight: math.unit(150, "lb"),
  13897. name: "Hand",
  13898. image: {
  13899. source: "./media/characters/vincent/hand.svg"
  13900. }
  13901. },
  13902. foot: {
  13903. height: math.unit(6 * 0.19, "feet"),
  13904. weight: math.unit(150, "lb"),
  13905. name: "Foot",
  13906. image: {
  13907. source: "./media/characters/vincent/foot.svg"
  13908. }
  13909. },
  13910. },
  13911. [
  13912. {
  13913. name: "Base",
  13914. height: math.unit(6 + 5 / 12, "feet"),
  13915. default: true
  13916. },
  13917. {
  13918. name: "Macro",
  13919. height: math.unit(300, "feet")
  13920. },
  13921. {
  13922. name: "Megamacro",
  13923. height: math.unit(2, "miles")
  13924. },
  13925. {
  13926. name: "Gigamacro",
  13927. height: math.unit(1000, "miles")
  13928. },
  13929. ]
  13930. ))
  13931. characterMakers.push(() => makeCharacter(
  13932. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13933. {
  13934. front: {
  13935. height: math.unit(2, "meters"),
  13936. weight: math.unit(500, "kg"),
  13937. name: "Front",
  13938. image: {
  13939. source: "./media/characters/coatl/front.svg",
  13940. extra: 3948 / 3500,
  13941. bottom: 0.082
  13942. }
  13943. },
  13944. },
  13945. [
  13946. {
  13947. name: "Normal",
  13948. height: math.unit(4, "meters")
  13949. },
  13950. {
  13951. name: "Macro",
  13952. height: math.unit(100, "meters"),
  13953. default: true
  13954. },
  13955. {
  13956. name: "Macro+",
  13957. height: math.unit(300, "meters")
  13958. },
  13959. {
  13960. name: "Megamacro",
  13961. height: math.unit(3, "gigameters")
  13962. },
  13963. {
  13964. name: "Megamacro+",
  13965. height: math.unit(300, "terameters")
  13966. },
  13967. {
  13968. name: "Megamacro++",
  13969. height: math.unit(3, "lightyears")
  13970. },
  13971. ]
  13972. ))
  13973. characterMakers.push(() => makeCharacter(
  13974. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13975. {
  13976. front: {
  13977. height: math.unit(6, "feet"),
  13978. weight: math.unit(50, "kg"),
  13979. name: "front",
  13980. image: {
  13981. source: "./media/characters/shiroryu/front.svg",
  13982. extra: 1990 / 1935
  13983. }
  13984. },
  13985. },
  13986. [
  13987. {
  13988. name: "Mortal Mingling",
  13989. height: math.unit(3, "meters")
  13990. },
  13991. {
  13992. name: "Kaiju-ish",
  13993. height: math.unit(250, "meters")
  13994. },
  13995. {
  13996. name: "Somewhat Godly",
  13997. height: math.unit(400, "km"),
  13998. default: true
  13999. },
  14000. {
  14001. name: "Planetary",
  14002. height: math.unit(300, "megameters")
  14003. },
  14004. {
  14005. name: "Galaxy-dwarfing",
  14006. height: math.unit(450, "kiloparsecs")
  14007. },
  14008. {
  14009. name: "Universe Eater",
  14010. height: math.unit(150, "gigaparsecs")
  14011. },
  14012. {
  14013. name: "Almost Immeasurable",
  14014. height: math.unit(1.3e266, "yottaparsecs")
  14015. },
  14016. ]
  14017. ))
  14018. characterMakers.push(() => makeCharacter(
  14019. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14020. {
  14021. front: {
  14022. height: math.unit(6, "feet"),
  14023. weight: math.unit(150, "lb"),
  14024. name: "Front",
  14025. image: {
  14026. source: "./media/characters/umeko/front.svg",
  14027. extra: 1,
  14028. bottom: 0.019
  14029. }
  14030. },
  14031. frontArmored: {
  14032. height: math.unit(6, "feet"),
  14033. weight: math.unit(150, "lb"),
  14034. name: "Front (Armored)",
  14035. image: {
  14036. source: "./media/characters/umeko/front-armored.svg",
  14037. extra: 1,
  14038. bottom: 0.021
  14039. }
  14040. },
  14041. },
  14042. [
  14043. {
  14044. name: "Macro",
  14045. height: math.unit(220, "feet"),
  14046. default: true
  14047. },
  14048. {
  14049. name: "Guardian Dragon",
  14050. height: math.unit(50, "miles")
  14051. },
  14052. {
  14053. name: "Cosmic",
  14054. height: math.unit(800000, "miles")
  14055. },
  14056. ]
  14057. ))
  14058. characterMakers.push(() => makeCharacter(
  14059. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14060. {
  14061. front: {
  14062. height: math.unit(6, "feet"),
  14063. weight: math.unit(150, "lb"),
  14064. name: "Front",
  14065. image: {
  14066. source: "./media/characters/cassidy/front.svg",
  14067. extra: 1,
  14068. bottom: 0.043
  14069. }
  14070. },
  14071. },
  14072. [
  14073. {
  14074. name: "Canon Height",
  14075. height: math.unit(120, "feet"),
  14076. default: true
  14077. },
  14078. {
  14079. name: "Macro+",
  14080. height: math.unit(400, "feet")
  14081. },
  14082. {
  14083. name: "Macro++",
  14084. height: math.unit(4000, "feet")
  14085. },
  14086. {
  14087. name: "Megamacro",
  14088. height: math.unit(3, "miles")
  14089. },
  14090. ]
  14091. ))
  14092. characterMakers.push(() => makeCharacter(
  14093. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14094. {
  14095. front: {
  14096. height: math.unit(6, "feet"),
  14097. weight: math.unit(150, "lb"),
  14098. name: "Front",
  14099. image: {
  14100. source: "./media/characters/isaac/front.svg",
  14101. extra: 896 / 815,
  14102. bottom: 0.11
  14103. }
  14104. },
  14105. },
  14106. [
  14107. {
  14108. name: "Human Size",
  14109. height: math.unit(8, "feet"),
  14110. default: true
  14111. },
  14112. {
  14113. name: "Macro",
  14114. height: math.unit(400, "feet")
  14115. },
  14116. {
  14117. name: "Megamacro",
  14118. height: math.unit(50, "miles")
  14119. },
  14120. {
  14121. name: "Canon Height",
  14122. height: math.unit(200, "AU")
  14123. },
  14124. ]
  14125. ))
  14126. characterMakers.push(() => makeCharacter(
  14127. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14128. {
  14129. front: {
  14130. height: math.unit(6, "feet"),
  14131. weight: math.unit(72, "kg"),
  14132. name: "Front",
  14133. image: {
  14134. source: "./media/characters/sleekit/front.svg",
  14135. extra: 4693 / 4487,
  14136. bottom: 0.012
  14137. }
  14138. },
  14139. },
  14140. [
  14141. {
  14142. name: "Minimum Height",
  14143. height: math.unit(10, "meters")
  14144. },
  14145. {
  14146. name: "Smaller",
  14147. height: math.unit(25, "meters")
  14148. },
  14149. {
  14150. name: "Larger",
  14151. height: math.unit(38, "meters"),
  14152. default: true
  14153. },
  14154. {
  14155. name: "Maximum height",
  14156. height: math.unit(100, "meters")
  14157. },
  14158. ]
  14159. ))
  14160. characterMakers.push(() => makeCharacter(
  14161. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14162. {
  14163. front: {
  14164. height: math.unit(6, "feet"),
  14165. weight: math.unit(150, "lb"),
  14166. name: "Front",
  14167. image: {
  14168. source: "./media/characters/nillia/front.svg",
  14169. extra: 2195 / 2037,
  14170. bottom: 0.005
  14171. }
  14172. },
  14173. back: {
  14174. height: math.unit(6, "feet"),
  14175. weight: math.unit(150, "lb"),
  14176. name: "Back",
  14177. image: {
  14178. source: "./media/characters/nillia/back.svg",
  14179. extra: 2195 / 2037,
  14180. bottom: 0.005
  14181. }
  14182. },
  14183. },
  14184. [
  14185. {
  14186. name: "Canon Height",
  14187. height: math.unit(489, "feet"),
  14188. default: true
  14189. }
  14190. ]
  14191. ))
  14192. characterMakers.push(() => makeCharacter(
  14193. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14194. {
  14195. front: {
  14196. height: math.unit(6, "feet"),
  14197. weight: math.unit(150, "lb"),
  14198. name: "Front",
  14199. image: {
  14200. source: "./media/characters/mesmyriza/front.svg",
  14201. extra: 2067 / 1784,
  14202. bottom: 0.035
  14203. }
  14204. },
  14205. foot: {
  14206. height: math.unit(6 / (250 / 35), "feet"),
  14207. name: "Foot",
  14208. image: {
  14209. source: "./media/characters/mesmyriza/foot.svg"
  14210. }
  14211. },
  14212. },
  14213. [
  14214. {
  14215. name: "Macro",
  14216. height: math.unit(457, "meters"),
  14217. default: true
  14218. },
  14219. {
  14220. name: "Megamacro",
  14221. height: math.unit(8, "megameters")
  14222. },
  14223. ]
  14224. ))
  14225. characterMakers.push(() => makeCharacter(
  14226. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14227. {
  14228. front: {
  14229. height: math.unit(6, "feet"),
  14230. weight: math.unit(250, "lb"),
  14231. name: "Front",
  14232. image: {
  14233. source: "./media/characters/saudade/front.svg",
  14234. extra: 1172 / 1139,
  14235. bottom: 0.035
  14236. }
  14237. },
  14238. },
  14239. [
  14240. {
  14241. name: "Micro",
  14242. height: math.unit(3, "inches")
  14243. },
  14244. {
  14245. name: "Normal",
  14246. height: math.unit(6, "feet"),
  14247. default: true
  14248. },
  14249. {
  14250. name: "Macro",
  14251. height: math.unit(50, "feet")
  14252. },
  14253. {
  14254. name: "Megamacro",
  14255. height: math.unit(2800, "feet")
  14256. },
  14257. ]
  14258. ))
  14259. characterMakers.push(() => makeCharacter(
  14260. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14261. {
  14262. front: {
  14263. height: math.unit(5 + 4 / 12, "feet"),
  14264. weight: math.unit(100, "lb"),
  14265. name: "Front",
  14266. image: {
  14267. source: "./media/characters/keireer/front.svg",
  14268. extra: 716 / 666,
  14269. bottom: 0.05
  14270. }
  14271. },
  14272. },
  14273. [
  14274. {
  14275. name: "Normal",
  14276. height: math.unit(5 + 4 / 12, "feet"),
  14277. default: true
  14278. },
  14279. ]
  14280. ))
  14281. characterMakers.push(() => makeCharacter(
  14282. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14283. {
  14284. front: {
  14285. height: math.unit(6, "feet"),
  14286. weight: math.unit(90, "kg"),
  14287. name: "Front",
  14288. image: {
  14289. source: "./media/characters/mirja/front.svg",
  14290. extra: 1789 / 1683,
  14291. bottom: 0.05
  14292. }
  14293. },
  14294. frontDressed: {
  14295. height: math.unit(6, "feet"),
  14296. weight: math.unit(90, "lb"),
  14297. name: "Front (Dressed)",
  14298. image: {
  14299. source: "./media/characters/mirja/front-dressed.svg",
  14300. extra: 1789 / 1683,
  14301. bottom: 0.05
  14302. }
  14303. },
  14304. back: {
  14305. height: math.unit(6, "feet"),
  14306. weight: math.unit(90, "lb"),
  14307. name: "Back",
  14308. image: {
  14309. source: "./media/characters/mirja/back.svg",
  14310. extra: 953 / 917,
  14311. bottom: 0.017
  14312. }
  14313. },
  14314. },
  14315. [
  14316. {
  14317. name: "\"Incognito\"",
  14318. height: math.unit(3, "meters")
  14319. },
  14320. {
  14321. name: "Strolling Size",
  14322. height: math.unit(15, "km")
  14323. },
  14324. {
  14325. name: "Larger Strolling Size",
  14326. height: math.unit(400, "km")
  14327. },
  14328. {
  14329. name: "Preferred Size",
  14330. height: math.unit(5000, "km")
  14331. },
  14332. {
  14333. name: "True Size",
  14334. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14335. default: true
  14336. },
  14337. ]
  14338. ))
  14339. characterMakers.push(() => makeCharacter(
  14340. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14341. {
  14342. front: {
  14343. height: math.unit(15, "feet"),
  14344. weight: math.unit(880, "kg"),
  14345. name: "Front",
  14346. image: {
  14347. source: "./media/characters/nightraver/front.svg",
  14348. extra: 2444 / 2160,
  14349. bottom: 0.027
  14350. }
  14351. },
  14352. back: {
  14353. height: math.unit(15, "feet"),
  14354. weight: math.unit(880, "kg"),
  14355. name: "Back",
  14356. image: {
  14357. source: "./media/characters/nightraver/back.svg",
  14358. extra: 2309 / 2180,
  14359. bottom: 0.005
  14360. }
  14361. },
  14362. sole: {
  14363. height: math.unit(2.878, "feet"),
  14364. name: "Sole",
  14365. image: {
  14366. source: "./media/characters/nightraver/sole.svg"
  14367. }
  14368. },
  14369. foot: {
  14370. height: math.unit(2.285, "feet"),
  14371. name: "Foot",
  14372. image: {
  14373. source: "./media/characters/nightraver/foot.svg"
  14374. }
  14375. },
  14376. maw: {
  14377. height: math.unit(2.67, "feet"),
  14378. name: "Maw",
  14379. image: {
  14380. source: "./media/characters/nightraver/maw.svg"
  14381. }
  14382. },
  14383. },
  14384. [
  14385. {
  14386. name: "Micro",
  14387. height: math.unit(1, "cm")
  14388. },
  14389. {
  14390. name: "Normal",
  14391. height: math.unit(15, "feet"),
  14392. default: true
  14393. },
  14394. {
  14395. name: "Macro",
  14396. height: math.unit(300, "feet")
  14397. },
  14398. {
  14399. name: "Megamacro",
  14400. height: math.unit(300, "miles")
  14401. },
  14402. {
  14403. name: "Gigamacro",
  14404. height: math.unit(10000, "miles")
  14405. },
  14406. ]
  14407. ))
  14408. characterMakers.push(() => makeCharacter(
  14409. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14410. {
  14411. side: {
  14412. height: math.unit(2, "inches"),
  14413. weight: math.unit(5, "grams"),
  14414. name: "Side",
  14415. image: {
  14416. source: "./media/characters/arc/side.svg"
  14417. }
  14418. },
  14419. },
  14420. [
  14421. {
  14422. name: "Micro",
  14423. height: math.unit(2, "inches"),
  14424. default: true
  14425. },
  14426. ]
  14427. ))
  14428. characterMakers.push(() => makeCharacter(
  14429. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14430. {
  14431. front: {
  14432. height: math.unit(1.1938, "meters"),
  14433. weight: math.unit(54, "kg"),
  14434. name: "Front",
  14435. image: {
  14436. source: "./media/characters/nebula-shahar/front.svg",
  14437. extra: 1642 / 1436,
  14438. bottom: 0.06
  14439. }
  14440. },
  14441. },
  14442. [
  14443. {
  14444. name: "Megamicro",
  14445. height: math.unit(0.3, "mm")
  14446. },
  14447. {
  14448. name: "Micro",
  14449. height: math.unit(3, "cm")
  14450. },
  14451. {
  14452. name: "Normal",
  14453. height: math.unit(138, "cm"),
  14454. default: true
  14455. },
  14456. {
  14457. name: "Macro",
  14458. height: math.unit(30, "m")
  14459. },
  14460. ]
  14461. ))
  14462. characterMakers.push(() => makeCharacter(
  14463. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14464. {
  14465. front: {
  14466. height: math.unit(5.24, "feet"),
  14467. weight: math.unit(150, "lb"),
  14468. name: "Front",
  14469. image: {
  14470. source: "./media/characters/shayla/front.svg",
  14471. extra: 1512 / 1414,
  14472. bottom: 0.01
  14473. }
  14474. },
  14475. back: {
  14476. height: math.unit(5.24, "feet"),
  14477. weight: math.unit(150, "lb"),
  14478. name: "Back",
  14479. image: {
  14480. source: "./media/characters/shayla/back.svg",
  14481. extra: 1512 / 1414
  14482. }
  14483. },
  14484. hand: {
  14485. height: math.unit(0.7781496062992126, "feet"),
  14486. name: "Hand",
  14487. image: {
  14488. source: "./media/characters/shayla/hand.svg"
  14489. }
  14490. },
  14491. foot: {
  14492. height: math.unit(1.4206036745406823, "feet"),
  14493. name: "Foot",
  14494. image: {
  14495. source: "./media/characters/shayla/foot.svg"
  14496. }
  14497. },
  14498. },
  14499. [
  14500. {
  14501. name: "Micro",
  14502. height: math.unit(0.32, "feet")
  14503. },
  14504. {
  14505. name: "Normal",
  14506. height: math.unit(5.24, "feet"),
  14507. default: true
  14508. },
  14509. {
  14510. name: "Macro",
  14511. height: math.unit(492.12, "feet")
  14512. },
  14513. {
  14514. name: "Megamacro",
  14515. height: math.unit(186.41, "miles")
  14516. },
  14517. ]
  14518. ))
  14519. characterMakers.push(() => makeCharacter(
  14520. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14521. {
  14522. front: {
  14523. height: math.unit(2.2, "m"),
  14524. weight: math.unit(120, "kg"),
  14525. name: "Front",
  14526. image: {
  14527. source: "./media/characters/pia-jr/front.svg",
  14528. extra: 1000 / 970,
  14529. bottom: 0.035
  14530. }
  14531. },
  14532. hand: {
  14533. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14534. name: "Hand",
  14535. image: {
  14536. source: "./media/characters/pia-jr/hand.svg"
  14537. }
  14538. },
  14539. paw: {
  14540. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14541. name: "Paw",
  14542. image: {
  14543. source: "./media/characters/pia-jr/paw.svg"
  14544. }
  14545. },
  14546. },
  14547. [
  14548. {
  14549. name: "Micro",
  14550. height: math.unit(1.2, "cm")
  14551. },
  14552. {
  14553. name: "Normal",
  14554. height: math.unit(2.2, "m"),
  14555. default: true
  14556. },
  14557. {
  14558. name: "Macro",
  14559. height: math.unit(180, "m")
  14560. },
  14561. {
  14562. name: "Megamacro",
  14563. height: math.unit(420, "km")
  14564. },
  14565. ]
  14566. ))
  14567. characterMakers.push(() => makeCharacter(
  14568. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14569. {
  14570. front: {
  14571. height: math.unit(2, "m"),
  14572. weight: math.unit(115, "kg"),
  14573. name: "Front",
  14574. image: {
  14575. source: "./media/characters/pia-sr/front.svg",
  14576. extra: 760 / 730,
  14577. bottom: 0.015
  14578. }
  14579. },
  14580. back: {
  14581. height: math.unit(2, "m"),
  14582. weight: math.unit(115, "kg"),
  14583. name: "Back",
  14584. image: {
  14585. source: "./media/characters/pia-sr/back.svg",
  14586. extra: 760 / 730,
  14587. bottom: 0.01
  14588. }
  14589. },
  14590. hand: {
  14591. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14592. name: "Hand",
  14593. image: {
  14594. source: "./media/characters/pia-sr/hand.svg"
  14595. }
  14596. },
  14597. foot: {
  14598. height: math.unit(1.83, "feet"),
  14599. name: "Foot",
  14600. image: {
  14601. source: "./media/characters/pia-sr/foot.svg"
  14602. }
  14603. },
  14604. },
  14605. [
  14606. {
  14607. name: "Micro",
  14608. height: math.unit(88, "mm")
  14609. },
  14610. {
  14611. name: "Normal",
  14612. height: math.unit(2, "m"),
  14613. default: true
  14614. },
  14615. {
  14616. name: "Macro",
  14617. height: math.unit(200, "m")
  14618. },
  14619. {
  14620. name: "Megamacro",
  14621. height: math.unit(420, "km")
  14622. },
  14623. ]
  14624. ))
  14625. characterMakers.push(() => makeCharacter(
  14626. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14627. {
  14628. front: {
  14629. height: math.unit(8 + 2 / 12, "feet"),
  14630. weight: math.unit(300, "lb"),
  14631. name: "Front",
  14632. image: {
  14633. source: "./media/characters/kibibyte/front.svg",
  14634. extra: 2221 / 2098,
  14635. bottom: 0.04
  14636. }
  14637. },
  14638. },
  14639. [
  14640. {
  14641. name: "Normal",
  14642. height: math.unit(8 + 2 / 12, "feet"),
  14643. default: true
  14644. },
  14645. {
  14646. name: "Socialable Macro",
  14647. height: math.unit(50, "feet")
  14648. },
  14649. {
  14650. name: "Macro",
  14651. height: math.unit(300, "feet")
  14652. },
  14653. {
  14654. name: "Megamacro",
  14655. height: math.unit(500, "miles")
  14656. },
  14657. ]
  14658. ))
  14659. characterMakers.push(() => makeCharacter(
  14660. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14661. {
  14662. front: {
  14663. height: math.unit(6, "feet"),
  14664. weight: math.unit(150, "lb"),
  14665. name: "Front",
  14666. image: {
  14667. source: "./media/characters/felix/front.svg",
  14668. extra: 762 / 722,
  14669. bottom: 0.02
  14670. }
  14671. },
  14672. frontClothed: {
  14673. height: math.unit(6, "feet"),
  14674. weight: math.unit(150, "lb"),
  14675. name: "Front (Clothed)",
  14676. image: {
  14677. source: "./media/characters/felix/front-clothed.svg",
  14678. extra: 762 / 722,
  14679. bottom: 0.02
  14680. }
  14681. },
  14682. },
  14683. [
  14684. {
  14685. name: "Normal",
  14686. height: math.unit(6 + 8 / 12, "feet"),
  14687. default: true
  14688. },
  14689. {
  14690. name: "Macro",
  14691. height: math.unit(2600, "feet")
  14692. },
  14693. {
  14694. name: "Megamacro",
  14695. height: math.unit(450, "miles")
  14696. },
  14697. ]
  14698. ))
  14699. characterMakers.push(() => makeCharacter(
  14700. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14701. {
  14702. front: {
  14703. height: math.unit(6 + 1 / 12, "feet"),
  14704. weight: math.unit(250, "lb"),
  14705. name: "Front",
  14706. image: {
  14707. source: "./media/characters/tobo/front.svg",
  14708. extra: 608 / 586,
  14709. bottom: 0.023
  14710. }
  14711. },
  14712. back: {
  14713. height: math.unit(6 + 1 / 12, "feet"),
  14714. weight: math.unit(250, "lb"),
  14715. name: "Back",
  14716. image: {
  14717. source: "./media/characters/tobo/back.svg",
  14718. extra: 608 / 586
  14719. }
  14720. },
  14721. },
  14722. [
  14723. {
  14724. name: "Nano",
  14725. height: math.unit(2, "nm")
  14726. },
  14727. {
  14728. name: "Megamicro",
  14729. height: math.unit(0.1, "mm")
  14730. },
  14731. {
  14732. name: "Micro",
  14733. height: math.unit(1, "inch"),
  14734. default: true
  14735. },
  14736. {
  14737. name: "Human-sized",
  14738. height: math.unit(6 + 1 / 12, "feet")
  14739. },
  14740. {
  14741. name: "Macro",
  14742. height: math.unit(250, "feet")
  14743. },
  14744. {
  14745. name: "Megamacro",
  14746. height: math.unit(75, "miles")
  14747. },
  14748. {
  14749. name: "Texas-sized",
  14750. height: math.unit(750, "miles")
  14751. },
  14752. {
  14753. name: "Teramacro",
  14754. height: math.unit(50000, "miles")
  14755. },
  14756. ]
  14757. ))
  14758. characterMakers.push(() => makeCharacter(
  14759. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14760. {
  14761. front: {
  14762. height: math.unit(6, "feet"),
  14763. weight: math.unit(269, "lb"),
  14764. name: "Front",
  14765. image: {
  14766. source: "./media/characters/danny-kapowsky/front.svg",
  14767. extra: 766 / 736,
  14768. bottom: 0.044
  14769. }
  14770. },
  14771. back: {
  14772. height: math.unit(6, "feet"),
  14773. weight: math.unit(269, "lb"),
  14774. name: "Back",
  14775. image: {
  14776. source: "./media/characters/danny-kapowsky/back.svg",
  14777. extra: 797 / 760,
  14778. bottom: 0.025
  14779. }
  14780. },
  14781. },
  14782. [
  14783. {
  14784. name: "Macro",
  14785. height: math.unit(150, "feet"),
  14786. default: true
  14787. },
  14788. {
  14789. name: "Macro+",
  14790. height: math.unit(200, "feet")
  14791. },
  14792. {
  14793. name: "Macro++",
  14794. height: math.unit(300, "feet")
  14795. },
  14796. {
  14797. name: "Macro+++",
  14798. height: math.unit(400, "feet")
  14799. },
  14800. ]
  14801. ))
  14802. characterMakers.push(() => makeCharacter(
  14803. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14804. {
  14805. side: {
  14806. height: math.unit(6, "feet"),
  14807. weight: math.unit(170, "lb"),
  14808. name: "Side",
  14809. image: {
  14810. source: "./media/characters/finn/side.svg",
  14811. extra: 1953 / 1807,
  14812. bottom: 0.057
  14813. }
  14814. },
  14815. },
  14816. [
  14817. {
  14818. name: "Megamacro",
  14819. height: math.unit(14445, "feet"),
  14820. default: true
  14821. },
  14822. ]
  14823. ))
  14824. characterMakers.push(() => makeCharacter(
  14825. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14826. {
  14827. front: {
  14828. height: math.unit(5 + 6 / 12, "feet"),
  14829. weight: math.unit(125, "lb"),
  14830. name: "Front",
  14831. image: {
  14832. source: "./media/characters/roy/front.svg",
  14833. extra: 1,
  14834. bottom: 0.11
  14835. }
  14836. },
  14837. },
  14838. [
  14839. {
  14840. name: "Micro",
  14841. height: math.unit(3, "inches"),
  14842. default: true
  14843. },
  14844. {
  14845. name: "Normal",
  14846. height: math.unit(5 + 6 / 12, "feet")
  14847. },
  14848. {
  14849. name: "Lesser Macro",
  14850. height: math.unit(60, "feet")
  14851. },
  14852. {
  14853. name: "Greater Macro",
  14854. height: math.unit(120, "feet")
  14855. },
  14856. ]
  14857. ))
  14858. characterMakers.push(() => makeCharacter(
  14859. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14860. {
  14861. front: {
  14862. height: math.unit(6, "feet"),
  14863. weight: math.unit(100, "lb"),
  14864. name: "Front",
  14865. image: {
  14866. source: "./media/characters/aevsivs/front.svg",
  14867. extra: 1,
  14868. bottom: 0.03
  14869. }
  14870. },
  14871. back: {
  14872. height: math.unit(6, "feet"),
  14873. weight: math.unit(100, "lb"),
  14874. name: "Back",
  14875. image: {
  14876. source: "./media/characters/aevsivs/back.svg"
  14877. }
  14878. },
  14879. },
  14880. [
  14881. {
  14882. name: "Micro",
  14883. height: math.unit(2, "inches"),
  14884. default: true
  14885. },
  14886. {
  14887. name: "Normal",
  14888. height: math.unit(5, "feet")
  14889. },
  14890. ]
  14891. ))
  14892. characterMakers.push(() => makeCharacter(
  14893. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14894. {
  14895. front: {
  14896. height: math.unit(5 + 7 / 12, "feet"),
  14897. weight: math.unit(159, "lb"),
  14898. name: "Front",
  14899. image: {
  14900. source: "./media/characters/hildegard/front.svg",
  14901. extra: 289 / 269,
  14902. bottom: 7.63 / 297.8
  14903. }
  14904. },
  14905. back: {
  14906. height: math.unit(5 + 7 / 12, "feet"),
  14907. weight: math.unit(159, "lb"),
  14908. name: "Back",
  14909. image: {
  14910. source: "./media/characters/hildegard/back.svg",
  14911. extra: 280 / 260,
  14912. bottom: 2.3 / 282
  14913. }
  14914. },
  14915. },
  14916. [
  14917. {
  14918. name: "Normal",
  14919. height: math.unit(5 + 7 / 12, "feet"),
  14920. default: true
  14921. },
  14922. ]
  14923. ))
  14924. characterMakers.push(() => makeCharacter(
  14925. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14926. {
  14927. bernard: {
  14928. height: math.unit(2 + 7 / 12, "feet"),
  14929. weight: math.unit(66, "lb"),
  14930. name: "Bernard",
  14931. rename: true,
  14932. image: {
  14933. source: "./media/characters/bernard-wilder/bernard.svg",
  14934. extra: 192 / 128,
  14935. bottom: 0.05
  14936. }
  14937. },
  14938. wilder: {
  14939. height: math.unit(5 + 8 / 12, "feet"),
  14940. weight: math.unit(143, "lb"),
  14941. name: "Wilder",
  14942. rename: true,
  14943. image: {
  14944. source: "./media/characters/bernard-wilder/wilder.svg",
  14945. extra: 361 / 312,
  14946. bottom: 0.02
  14947. }
  14948. },
  14949. },
  14950. [
  14951. {
  14952. name: "Normal",
  14953. height: math.unit(2 + 7 / 12, "feet"),
  14954. default: true
  14955. },
  14956. ]
  14957. ))
  14958. characterMakers.push(() => makeCharacter(
  14959. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14960. {
  14961. anthro: {
  14962. height: math.unit(6 + 1 / 12, "feet"),
  14963. weight: math.unit(155, "lb"),
  14964. name: "Anthro",
  14965. image: {
  14966. source: "./media/characters/hearth/anthro.svg",
  14967. extra: 260 / 250,
  14968. bottom: 0.02
  14969. }
  14970. },
  14971. feral: {
  14972. height: math.unit(3.78, "feet"),
  14973. weight: math.unit(35, "kg"),
  14974. name: "Feral",
  14975. image: {
  14976. source: "./media/characters/hearth/feral.svg",
  14977. extra: 153 / 135,
  14978. bottom: 0.03
  14979. }
  14980. },
  14981. },
  14982. [
  14983. {
  14984. name: "Normal",
  14985. height: math.unit(6 + 1 / 12, "feet"),
  14986. default: true
  14987. },
  14988. ]
  14989. ))
  14990. characterMakers.push(() => makeCharacter(
  14991. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14992. {
  14993. front: {
  14994. height: math.unit(6, "feet"),
  14995. weight: math.unit(182, "lb"),
  14996. name: "Front",
  14997. image: {
  14998. source: "./media/characters/ingrid/front.svg",
  14999. extra: 294 / 268,
  15000. bottom: 0.027
  15001. }
  15002. },
  15003. },
  15004. [
  15005. {
  15006. name: "Normal",
  15007. height: math.unit(6, "feet"),
  15008. default: true
  15009. },
  15010. ]
  15011. ))
  15012. characterMakers.push(() => makeCharacter(
  15013. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15014. {
  15015. eevee: {
  15016. height: math.unit(2 + 10 / 12, "feet"),
  15017. weight: math.unit(86, "lb"),
  15018. name: "Malgam",
  15019. image: {
  15020. source: "./media/characters/malgam/eevee.svg",
  15021. extra: 218 / 180,
  15022. bottom: 0.2
  15023. }
  15024. },
  15025. sylveon: {
  15026. height: math.unit(4, "feet"),
  15027. weight: math.unit(101, "lb"),
  15028. name: "Future Malgam",
  15029. rename: true,
  15030. image: {
  15031. source: "./media/characters/malgam/sylveon.svg",
  15032. extra: 371 / 325,
  15033. bottom: 0.015
  15034. }
  15035. },
  15036. gigantamax: {
  15037. height: math.unit(50, "feet"),
  15038. name: "Gigantamax Malgam",
  15039. rename: true,
  15040. image: {
  15041. source: "./media/characters/malgam/gigantamax.svg"
  15042. }
  15043. },
  15044. },
  15045. [
  15046. {
  15047. name: "Normal",
  15048. height: math.unit(2 + 10 / 12, "feet"),
  15049. default: true
  15050. },
  15051. ]
  15052. ))
  15053. characterMakers.push(() => makeCharacter(
  15054. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15055. {
  15056. front: {
  15057. height: math.unit(5 + 11 / 12, "feet"),
  15058. weight: math.unit(188, "lb"),
  15059. name: "Front",
  15060. image: {
  15061. source: "./media/characters/fleur/front.svg",
  15062. extra: 309 / 283,
  15063. bottom: 0.007
  15064. }
  15065. },
  15066. },
  15067. [
  15068. {
  15069. name: "Normal",
  15070. height: math.unit(5 + 11 / 12, "feet"),
  15071. default: true
  15072. },
  15073. ]
  15074. ))
  15075. characterMakers.push(() => makeCharacter(
  15076. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15077. {
  15078. front: {
  15079. height: math.unit(5 + 4 / 12, "feet"),
  15080. weight: math.unit(122, "lb"),
  15081. name: "Front",
  15082. image: {
  15083. source: "./media/characters/jude/front.svg",
  15084. extra: 288 / 273,
  15085. bottom: 0.03
  15086. }
  15087. },
  15088. },
  15089. [
  15090. {
  15091. name: "Normal",
  15092. height: math.unit(5 + 4 / 12, "feet"),
  15093. default: true
  15094. },
  15095. ]
  15096. ))
  15097. characterMakers.push(() => makeCharacter(
  15098. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15099. {
  15100. front: {
  15101. height: math.unit(5 + 11 / 12, "feet"),
  15102. weight: math.unit(190, "lb"),
  15103. name: "Front",
  15104. image: {
  15105. source: "./media/characters/seara/front.svg",
  15106. extra: 1,
  15107. bottom: 0.05
  15108. }
  15109. },
  15110. },
  15111. [
  15112. {
  15113. name: "Normal",
  15114. height: math.unit(5 + 11 / 12, "feet"),
  15115. default: true
  15116. },
  15117. ]
  15118. ))
  15119. characterMakers.push(() => makeCharacter(
  15120. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15121. {
  15122. front: {
  15123. height: math.unit(16 + 5 / 12, "feet"),
  15124. weight: math.unit(524, "lb"),
  15125. name: "Front",
  15126. image: {
  15127. source: "./media/characters/caspian/front.svg",
  15128. extra: 1,
  15129. bottom: 0.04
  15130. }
  15131. },
  15132. },
  15133. [
  15134. {
  15135. name: "Normal",
  15136. height: math.unit(16 + 5 / 12, "feet"),
  15137. default: true
  15138. },
  15139. ]
  15140. ))
  15141. characterMakers.push(() => makeCharacter(
  15142. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15143. {
  15144. front: {
  15145. height: math.unit(5 + 7 / 12, "feet"),
  15146. weight: math.unit(170, "lb"),
  15147. name: "Front",
  15148. image: {
  15149. source: "./media/characters/mika/front.svg",
  15150. extra: 1,
  15151. bottom: 0.016
  15152. }
  15153. },
  15154. },
  15155. [
  15156. {
  15157. name: "Normal",
  15158. height: math.unit(5 + 7 / 12, "feet"),
  15159. default: true
  15160. },
  15161. ]
  15162. ))
  15163. characterMakers.push(() => makeCharacter(
  15164. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15165. {
  15166. front: {
  15167. height: math.unit(6 + 2 / 12, "feet"),
  15168. weight: math.unit(268, "lb"),
  15169. name: "Front",
  15170. image: {
  15171. source: "./media/characters/sol/front.svg",
  15172. extra: 247 / 231,
  15173. bottom: 0.05
  15174. }
  15175. },
  15176. },
  15177. [
  15178. {
  15179. name: "Normal",
  15180. height: math.unit(6 + 2 / 12, "feet"),
  15181. default: true
  15182. },
  15183. ]
  15184. ))
  15185. characterMakers.push(() => makeCharacter(
  15186. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15187. {
  15188. buizel: {
  15189. height: math.unit(2 + 5 / 12, "feet"),
  15190. weight: math.unit(87, "lb"),
  15191. name: "Buizel",
  15192. image: {
  15193. source: "./media/characters/umiko/buizel.svg",
  15194. extra: 172 / 157,
  15195. bottom: 0.01
  15196. }
  15197. },
  15198. floatzel: {
  15199. height: math.unit(5 + 9 / 12, "feet"),
  15200. weight: math.unit(250, "lb"),
  15201. name: "Floatzel",
  15202. image: {
  15203. source: "./media/characters/umiko/floatzel.svg",
  15204. extra: 262 / 248
  15205. }
  15206. },
  15207. },
  15208. [
  15209. {
  15210. name: "Normal",
  15211. height: math.unit(2 + 5 / 12, "feet"),
  15212. default: true
  15213. },
  15214. ]
  15215. ))
  15216. characterMakers.push(() => makeCharacter(
  15217. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15218. {
  15219. front: {
  15220. height: math.unit(6 + 2 / 12, "feet"),
  15221. weight: math.unit(146, "lb"),
  15222. name: "Front",
  15223. image: {
  15224. source: "./media/characters/iliac/front.svg",
  15225. extra: 389 / 365,
  15226. bottom: 0.035
  15227. }
  15228. },
  15229. },
  15230. [
  15231. {
  15232. name: "Normal",
  15233. height: math.unit(6 + 2 / 12, "feet"),
  15234. default: true
  15235. },
  15236. ]
  15237. ))
  15238. characterMakers.push(() => makeCharacter(
  15239. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15240. {
  15241. front: {
  15242. height: math.unit(6, "feet"),
  15243. weight: math.unit(170, "lb"),
  15244. name: "Front",
  15245. image: {
  15246. source: "./media/characters/topaz/front.svg",
  15247. extra: 317 / 303,
  15248. bottom: 0.055
  15249. }
  15250. },
  15251. },
  15252. [
  15253. {
  15254. name: "Normal",
  15255. height: math.unit(6, "feet"),
  15256. default: true
  15257. },
  15258. ]
  15259. ))
  15260. characterMakers.push(() => makeCharacter(
  15261. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15262. {
  15263. front: {
  15264. height: math.unit(5 + 11 / 12, "feet"),
  15265. weight: math.unit(144, "lb"),
  15266. name: "Front",
  15267. image: {
  15268. source: "./media/characters/gabriel/front.svg",
  15269. extra: 285 / 262,
  15270. bottom: 0.004
  15271. }
  15272. },
  15273. },
  15274. [
  15275. {
  15276. name: "Normal",
  15277. height: math.unit(5 + 11 / 12, "feet"),
  15278. default: true
  15279. },
  15280. ]
  15281. ))
  15282. characterMakers.push(() => makeCharacter(
  15283. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15284. {
  15285. side: {
  15286. height: math.unit(6 + 5 / 12, "feet"),
  15287. weight: math.unit(300, "lb"),
  15288. name: "Side",
  15289. image: {
  15290. source: "./media/characters/tempest-suicune/side.svg",
  15291. extra: 195 / 154,
  15292. bottom: 0.04
  15293. }
  15294. },
  15295. },
  15296. [
  15297. {
  15298. name: "Normal",
  15299. height: math.unit(6 + 5 / 12, "feet"),
  15300. default: true
  15301. },
  15302. ]
  15303. ))
  15304. characterMakers.push(() => makeCharacter(
  15305. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15306. {
  15307. front: {
  15308. height: math.unit(7 + 2 / 12, "feet"),
  15309. weight: math.unit(322, "lb"),
  15310. name: "Front",
  15311. image: {
  15312. source: "./media/characters/vulcan/front.svg",
  15313. extra: 154 / 147,
  15314. bottom: 0.04
  15315. }
  15316. },
  15317. },
  15318. [
  15319. {
  15320. name: "Normal",
  15321. height: math.unit(7 + 2 / 12, "feet"),
  15322. default: true
  15323. },
  15324. ]
  15325. ))
  15326. characterMakers.push(() => makeCharacter(
  15327. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15328. {
  15329. front: {
  15330. height: math.unit(5 + 10 / 12, "feet"),
  15331. weight: math.unit(264, "lb"),
  15332. name: "Front",
  15333. image: {
  15334. source: "./media/characters/gault/front.svg",
  15335. extra: 161 / 140,
  15336. bottom: 0.028
  15337. }
  15338. },
  15339. },
  15340. [
  15341. {
  15342. name: "Normal",
  15343. height: math.unit(5 + 10 / 12, "feet"),
  15344. default: true
  15345. },
  15346. ]
  15347. ))
  15348. characterMakers.push(() => makeCharacter(
  15349. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15350. {
  15351. front: {
  15352. height: math.unit(6, "feet"),
  15353. weight: math.unit(150, "lb"),
  15354. name: "Front",
  15355. image: {
  15356. source: "./media/characters/shard/front.svg",
  15357. extra: 273 / 238,
  15358. bottom: 0.02
  15359. }
  15360. },
  15361. },
  15362. [
  15363. {
  15364. name: "Normal",
  15365. height: math.unit(3 + 6 / 12, "feet"),
  15366. default: true
  15367. },
  15368. ]
  15369. ))
  15370. characterMakers.push(() => makeCharacter(
  15371. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15372. {
  15373. front: {
  15374. height: math.unit(5 + 11 / 12, "feet"),
  15375. weight: math.unit(146, "lb"),
  15376. name: "Front",
  15377. image: {
  15378. source: "./media/characters/ashe/front.svg",
  15379. extra: 400 / 373,
  15380. bottom: 0.01
  15381. }
  15382. },
  15383. },
  15384. [
  15385. {
  15386. name: "Normal",
  15387. height: math.unit(5 + 11 / 12, "feet"),
  15388. default: true
  15389. },
  15390. ]
  15391. ))
  15392. characterMakers.push(() => makeCharacter(
  15393. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15394. {
  15395. front: {
  15396. height: math.unit(5 + 5 / 12, "feet"),
  15397. weight: math.unit(135, "lb"),
  15398. name: "Front",
  15399. image: {
  15400. source: "./media/characters/beatrix/front.svg",
  15401. extra: 392 / 379,
  15402. bottom: 0.01
  15403. }
  15404. },
  15405. },
  15406. [
  15407. {
  15408. name: "Normal",
  15409. height: math.unit(6, "feet"),
  15410. default: true
  15411. },
  15412. ]
  15413. ))
  15414. characterMakers.push(() => makeCharacter(
  15415. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15416. {
  15417. front: {
  15418. height: math.unit(6, "feet"),
  15419. weight: math.unit(150, "lb"),
  15420. name: "Front",
  15421. image: {
  15422. source: "./media/characters/ignatius/front.svg",
  15423. extra: 245 / 222,
  15424. bottom: 0.01
  15425. }
  15426. },
  15427. },
  15428. [
  15429. {
  15430. name: "Normal",
  15431. height: math.unit(5 + 5 / 12, "feet"),
  15432. default: true
  15433. },
  15434. ]
  15435. ))
  15436. characterMakers.push(() => makeCharacter(
  15437. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15438. {
  15439. front: {
  15440. height: math.unit(6 + 2 / 12, "feet"),
  15441. weight: math.unit(138, "lb"),
  15442. name: "Front",
  15443. image: {
  15444. source: "./media/characters/mei-li/front.svg",
  15445. extra: 237 / 229,
  15446. bottom: 0.03
  15447. }
  15448. },
  15449. },
  15450. [
  15451. {
  15452. name: "Normal",
  15453. height: math.unit(6 + 2 / 12, "feet"),
  15454. default: true
  15455. },
  15456. ]
  15457. ))
  15458. characterMakers.push(() => makeCharacter(
  15459. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15460. {
  15461. front: {
  15462. height: math.unit(2 + 4 / 12, "feet"),
  15463. weight: math.unit(62, "lb"),
  15464. name: "Front",
  15465. image: {
  15466. source: "./media/characters/puru/front.svg",
  15467. extra: 206 / 149,
  15468. bottom: 0.06
  15469. }
  15470. },
  15471. },
  15472. [
  15473. {
  15474. name: "Normal",
  15475. height: math.unit(2 + 4 / 12, "feet"),
  15476. default: true
  15477. },
  15478. ]
  15479. ))
  15480. characterMakers.push(() => makeCharacter(
  15481. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15482. {
  15483. anthro: {
  15484. height: math.unit(5 + 8/12, "feet"),
  15485. weight: math.unit(200, "lb"),
  15486. energyNeed: math.unit(2000, "kcal"),
  15487. name: "Anthro",
  15488. image: {
  15489. source: "./media/characters/kee/anthro.svg",
  15490. extra: 3251/3184,
  15491. bottom: 250/3501
  15492. }
  15493. },
  15494. taur: {
  15495. height: math.unit(11, "feet"),
  15496. weight: math.unit(500, "lb"),
  15497. energyNeed: math.unit(5000, "kcal"),
  15498. name: "Taur",
  15499. image: {
  15500. source: "./media/characters/kee/taur.svg",
  15501. extra: 1362/1320,
  15502. bottom: 83/1445
  15503. }
  15504. },
  15505. },
  15506. [
  15507. {
  15508. name: "Normal",
  15509. height: math.unit(5 + 8/12, "feet"),
  15510. default: true
  15511. },
  15512. {
  15513. name: "Macro",
  15514. height: math.unit(35, "feet")
  15515. },
  15516. ]
  15517. ))
  15518. characterMakers.push(() => makeCharacter(
  15519. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15520. {
  15521. anthro: {
  15522. height: math.unit(7, "feet"),
  15523. weight: math.unit(190, "lb"),
  15524. name: "Anthro",
  15525. image: {
  15526. source: "./media/characters/cobalt-dracha/anthro.svg",
  15527. extra: 231 / 225,
  15528. bottom: 0.04
  15529. }
  15530. },
  15531. feral: {
  15532. height: math.unit(9 + 7 / 12, "feet"),
  15533. weight: math.unit(294, "lb"),
  15534. name: "Feral",
  15535. image: {
  15536. source: "./media/characters/cobalt-dracha/feral.svg",
  15537. extra: 692 / 633,
  15538. bottom: 0.05
  15539. }
  15540. },
  15541. },
  15542. [
  15543. {
  15544. name: "Normal",
  15545. height: math.unit(7, "feet"),
  15546. default: true
  15547. },
  15548. ]
  15549. ))
  15550. characterMakers.push(() => makeCharacter(
  15551. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15552. {
  15553. fallen: {
  15554. height: math.unit(11 + 8 / 12, "feet"),
  15555. weight: math.unit(485, "lb"),
  15556. name: "Java (Fallen)",
  15557. rename: true,
  15558. image: {
  15559. source: "./media/characters/java/fallen.svg",
  15560. extra: 226 / 208,
  15561. bottom: 0.005
  15562. }
  15563. },
  15564. godkin: {
  15565. height: math.unit(10 + 6 / 12, "feet"),
  15566. weight: math.unit(328, "lb"),
  15567. name: "Java (Godkin)",
  15568. rename: true,
  15569. image: {
  15570. source: "./media/characters/java/godkin.svg",
  15571. extra: 270 / 262,
  15572. bottom: 0.02
  15573. }
  15574. },
  15575. },
  15576. [
  15577. {
  15578. name: "Normal",
  15579. height: math.unit(11 + 8 / 12, "feet"),
  15580. default: true
  15581. },
  15582. ]
  15583. ))
  15584. characterMakers.push(() => makeCharacter(
  15585. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15586. {
  15587. front: {
  15588. height: math.unit(7 + 8 / 12, "feet"),
  15589. weight: math.unit(320, "lb"),
  15590. name: "Front",
  15591. image: {
  15592. source: "./media/characters/skoll/front.svg",
  15593. extra: 232 / 220,
  15594. bottom: 0.02
  15595. }
  15596. },
  15597. },
  15598. [
  15599. {
  15600. name: "Normal",
  15601. height: math.unit(7 + 8 / 12, "feet"),
  15602. default: true
  15603. },
  15604. ]
  15605. ))
  15606. characterMakers.push(() => makeCharacter(
  15607. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15608. {
  15609. front: {
  15610. height: math.unit(5 + 9 / 12, "feet"),
  15611. weight: math.unit(170, "lb"),
  15612. name: "Front",
  15613. image: {
  15614. source: "./media/characters/purna/front.svg",
  15615. extra: 239 / 229,
  15616. bottom: 0.01
  15617. }
  15618. },
  15619. },
  15620. [
  15621. {
  15622. name: "Normal",
  15623. height: math.unit(5 + 9 / 12, "feet"),
  15624. default: true
  15625. },
  15626. ]
  15627. ))
  15628. characterMakers.push(() => makeCharacter(
  15629. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15630. {
  15631. front: {
  15632. height: math.unit(5 + 9 / 12, "feet"),
  15633. weight: math.unit(142, "lb"),
  15634. name: "Front",
  15635. image: {
  15636. source: "./media/characters/kuva/front.svg",
  15637. extra: 281 / 271,
  15638. bottom: 0.006
  15639. }
  15640. },
  15641. },
  15642. [
  15643. {
  15644. name: "Normal",
  15645. height: math.unit(5 + 9 / 12, "feet"),
  15646. default: true
  15647. },
  15648. ]
  15649. ))
  15650. characterMakers.push(() => makeCharacter(
  15651. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15652. {
  15653. anthro: {
  15654. height: math.unit(9 + 2 / 12, "feet"),
  15655. weight: math.unit(270, "lb"),
  15656. name: "Anthro",
  15657. image: {
  15658. source: "./media/characters/embra/anthro.svg",
  15659. extra: 200 / 187,
  15660. bottom: 0.02
  15661. }
  15662. },
  15663. feral: {
  15664. height: math.unit(18 + 8 / 12, "feet"),
  15665. weight: math.unit(576, "lb"),
  15666. name: "Feral",
  15667. image: {
  15668. source: "./media/characters/embra/feral.svg",
  15669. extra: 152 / 137,
  15670. bottom: 0.037
  15671. }
  15672. },
  15673. },
  15674. [
  15675. {
  15676. name: "Normal",
  15677. height: math.unit(9 + 2 / 12, "feet"),
  15678. default: true
  15679. },
  15680. ]
  15681. ))
  15682. characterMakers.push(() => makeCharacter(
  15683. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15684. {
  15685. anthro: {
  15686. height: math.unit(10 + 9 / 12, "feet"),
  15687. weight: math.unit(224, "lb"),
  15688. name: "Anthro",
  15689. image: {
  15690. source: "./media/characters/grottos/anthro.svg",
  15691. extra: 350 / 332,
  15692. bottom: 0.045
  15693. }
  15694. },
  15695. feral: {
  15696. height: math.unit(20 + 7 / 12, "feet"),
  15697. weight: math.unit(629, "lb"),
  15698. name: "Feral",
  15699. image: {
  15700. source: "./media/characters/grottos/feral.svg",
  15701. extra: 207 / 190,
  15702. bottom: 0.05
  15703. }
  15704. },
  15705. },
  15706. [
  15707. {
  15708. name: "Normal",
  15709. height: math.unit(10 + 9 / 12, "feet"),
  15710. default: true
  15711. },
  15712. ]
  15713. ))
  15714. characterMakers.push(() => makeCharacter(
  15715. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15716. {
  15717. anthro: {
  15718. height: math.unit(9 + 6 / 12, "feet"),
  15719. weight: math.unit(298, "lb"),
  15720. name: "Anthro",
  15721. image: {
  15722. source: "./media/characters/frifna/anthro.svg",
  15723. extra: 282 / 269,
  15724. bottom: 0.015
  15725. }
  15726. },
  15727. feral: {
  15728. height: math.unit(16 + 2 / 12, "feet"),
  15729. weight: math.unit(624, "lb"),
  15730. name: "Feral",
  15731. image: {
  15732. source: "./media/characters/frifna/feral.svg"
  15733. }
  15734. },
  15735. },
  15736. [
  15737. {
  15738. name: "Normal",
  15739. height: math.unit(9 + 6 / 12, "feet"),
  15740. default: true
  15741. },
  15742. ]
  15743. ))
  15744. characterMakers.push(() => makeCharacter(
  15745. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15746. {
  15747. front: {
  15748. height: math.unit(6 + 2 / 12, "feet"),
  15749. weight: math.unit(168, "lb"),
  15750. name: "Front",
  15751. image: {
  15752. source: "./media/characters/elise/front.svg",
  15753. extra: 276 / 271
  15754. }
  15755. },
  15756. },
  15757. [
  15758. {
  15759. name: "Normal",
  15760. height: math.unit(6 + 2 / 12, "feet"),
  15761. default: true
  15762. },
  15763. ]
  15764. ))
  15765. characterMakers.push(() => makeCharacter(
  15766. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15767. {
  15768. front: {
  15769. height: math.unit(5 + 10 / 12, "feet"),
  15770. weight: math.unit(210, "lb"),
  15771. name: "Front",
  15772. image: {
  15773. source: "./media/characters/glade/front.svg",
  15774. extra: 258 / 247,
  15775. bottom: 0.008
  15776. }
  15777. },
  15778. },
  15779. [
  15780. {
  15781. name: "Normal",
  15782. height: math.unit(5 + 10 / 12, "feet"),
  15783. default: true
  15784. },
  15785. ]
  15786. ))
  15787. characterMakers.push(() => makeCharacter(
  15788. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15789. {
  15790. front: {
  15791. height: math.unit(5 + 10 / 12, "feet"),
  15792. weight: math.unit(129, "lb"),
  15793. name: "Front",
  15794. image: {
  15795. source: "./media/characters/rina/front.svg",
  15796. extra: 266 / 255,
  15797. bottom: 0.005
  15798. }
  15799. },
  15800. },
  15801. [
  15802. {
  15803. name: "Normal",
  15804. height: math.unit(5 + 10 / 12, "feet"),
  15805. default: true
  15806. },
  15807. ]
  15808. ))
  15809. characterMakers.push(() => makeCharacter(
  15810. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15811. {
  15812. front: {
  15813. height: math.unit(6 + 1 / 12, "feet"),
  15814. weight: math.unit(192, "lb"),
  15815. name: "Front",
  15816. image: {
  15817. source: "./media/characters/veronica/front.svg",
  15818. extra: 319 / 309,
  15819. bottom: 0.005
  15820. }
  15821. },
  15822. },
  15823. [
  15824. {
  15825. name: "Normal",
  15826. height: math.unit(6 + 1 / 12, "feet"),
  15827. default: true
  15828. },
  15829. ]
  15830. ))
  15831. characterMakers.push(() => makeCharacter(
  15832. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15833. {
  15834. front: {
  15835. height: math.unit(9 + 3 / 12, "feet"),
  15836. weight: math.unit(1100, "lb"),
  15837. name: "Front",
  15838. image: {
  15839. source: "./media/characters/braxton/front.svg",
  15840. extra: 1057 / 984,
  15841. bottom: 0.05
  15842. }
  15843. },
  15844. },
  15845. [
  15846. {
  15847. name: "Normal",
  15848. height: math.unit(9 + 3 / 12, "feet")
  15849. },
  15850. {
  15851. name: "Giant",
  15852. height: math.unit(300, "feet"),
  15853. default: true
  15854. },
  15855. {
  15856. name: "Macro",
  15857. height: math.unit(700, "feet")
  15858. },
  15859. {
  15860. name: "Megamacro",
  15861. height: math.unit(6000, "feet")
  15862. },
  15863. ]
  15864. ))
  15865. characterMakers.push(() => makeCharacter(
  15866. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15867. {
  15868. front: {
  15869. height: math.unit(6 + 7 / 12, "feet"),
  15870. weight: math.unit(150, "lb"),
  15871. name: "Front",
  15872. image: {
  15873. source: "./media/characters/blue-feyonics/front.svg",
  15874. extra: 1403 / 1306,
  15875. bottom: 0.047
  15876. }
  15877. },
  15878. },
  15879. [
  15880. {
  15881. name: "Normal",
  15882. height: math.unit(6 + 7 / 12, "feet"),
  15883. default: true
  15884. },
  15885. ]
  15886. ))
  15887. characterMakers.push(() => makeCharacter(
  15888. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15889. {
  15890. front: {
  15891. height: math.unit(1.8, "meters"),
  15892. weight: math.unit(60, "kg"),
  15893. name: "Front",
  15894. image: {
  15895. source: "./media/characters/maxwell/front.svg",
  15896. extra: 2060 / 1873
  15897. }
  15898. },
  15899. },
  15900. [
  15901. {
  15902. name: "Micro",
  15903. height: math.unit(1, "mm")
  15904. },
  15905. {
  15906. name: "Normal",
  15907. height: math.unit(1.8, "meter"),
  15908. default: true
  15909. },
  15910. {
  15911. name: "Macro",
  15912. height: math.unit(30, "meters")
  15913. },
  15914. {
  15915. name: "Megamacro",
  15916. height: math.unit(10, "km")
  15917. },
  15918. ]
  15919. ))
  15920. characterMakers.push(() => makeCharacter(
  15921. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15922. {
  15923. front: {
  15924. height: math.unit(6, "feet"),
  15925. weight: math.unit(150, "lb"),
  15926. name: "Front",
  15927. image: {
  15928. source: "./media/characters/jack/front.svg",
  15929. extra: 1754 / 1640,
  15930. bottom: 0.01
  15931. }
  15932. },
  15933. },
  15934. [
  15935. {
  15936. name: "Normal",
  15937. height: math.unit(80000, "feet"),
  15938. default: true
  15939. },
  15940. {
  15941. name: "Max size",
  15942. height: math.unit(10, "lightyears")
  15943. },
  15944. ]
  15945. ))
  15946. characterMakers.push(() => makeCharacter(
  15947. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15948. {
  15949. urban: {
  15950. height: math.unit(5, "feet"),
  15951. weight: math.unit(240, "lb"),
  15952. name: "Urban",
  15953. image: {
  15954. source: "./media/characters/cafat/urban.svg",
  15955. extra: 1223/1126,
  15956. bottom: 205/1428
  15957. }
  15958. },
  15959. summer: {
  15960. height: math.unit(5, "feet"),
  15961. weight: math.unit(240, "lb"),
  15962. name: "Summer",
  15963. image: {
  15964. source: "./media/characters/cafat/summer.svg",
  15965. extra: 1223/1126,
  15966. bottom: 205/1428
  15967. }
  15968. },
  15969. winter: {
  15970. height: math.unit(5, "feet"),
  15971. weight: math.unit(240, "lb"),
  15972. name: "Winter",
  15973. image: {
  15974. source: "./media/characters/cafat/winter.svg",
  15975. extra: 1223/1126,
  15976. bottom: 205/1428
  15977. }
  15978. },
  15979. lingerie: {
  15980. height: math.unit(5, "feet"),
  15981. weight: math.unit(240, "lb"),
  15982. name: "Lingerie",
  15983. image: {
  15984. source: "./media/characters/cafat/lingerie.svg",
  15985. extra: 1223/1126,
  15986. bottom: 205/1428
  15987. }
  15988. },
  15989. upright: {
  15990. height: math.unit(6.3, "feet"),
  15991. weight: math.unit(240, "lb"),
  15992. name: "Upright",
  15993. image: {
  15994. source: "./media/characters/cafat/upright.svg",
  15995. bottom: 0.01
  15996. }
  15997. },
  15998. uprightFull: {
  15999. height: math.unit(6.3, "feet"),
  16000. weight: math.unit(240, "lb"),
  16001. name: "Upright (Full)",
  16002. image: {
  16003. source: "./media/characters/cafat/upright-full.svg",
  16004. bottom: 0.01
  16005. }
  16006. },
  16007. },
  16008. [
  16009. {
  16010. name: "Small",
  16011. height: math.unit(5, "feet"),
  16012. default: true
  16013. },
  16014. {
  16015. name: "Large",
  16016. height: math.unit(13, "feet")
  16017. },
  16018. ]
  16019. ))
  16020. characterMakers.push(() => makeCharacter(
  16021. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16022. {
  16023. front: {
  16024. height: math.unit(6, "feet"),
  16025. weight: math.unit(150, "lb"),
  16026. name: "Front",
  16027. image: {
  16028. source: "./media/characters/verin-raharra/front.svg",
  16029. extra: 5019 / 4835,
  16030. bottom: 0.023
  16031. }
  16032. },
  16033. },
  16034. [
  16035. {
  16036. name: "Normal",
  16037. height: math.unit(7 + 5 / 12, "feet"),
  16038. default: true
  16039. },
  16040. {
  16041. name: "Upsized",
  16042. height: math.unit(20, "feet")
  16043. },
  16044. ]
  16045. ))
  16046. characterMakers.push(() => makeCharacter(
  16047. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16048. {
  16049. front: {
  16050. height: math.unit(7, "feet"),
  16051. weight: math.unit(230, "lb"),
  16052. name: "Front",
  16053. image: {
  16054. source: "./media/characters/nakata/front.svg",
  16055. extra: 1.005,
  16056. bottom: 0.01
  16057. }
  16058. },
  16059. },
  16060. [
  16061. {
  16062. name: "Normal",
  16063. height: math.unit(7, "feet"),
  16064. default: true
  16065. },
  16066. {
  16067. name: "Big",
  16068. height: math.unit(14, "feet")
  16069. },
  16070. {
  16071. name: "Macro",
  16072. height: math.unit(400, "feet")
  16073. },
  16074. ]
  16075. ))
  16076. characterMakers.push(() => makeCharacter(
  16077. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16078. {
  16079. front: {
  16080. height: math.unit(4.91, "feet"),
  16081. weight: math.unit(100, "lb"),
  16082. name: "Front",
  16083. image: {
  16084. source: "./media/characters/lily/front.svg",
  16085. extra: 1585 / 1415,
  16086. bottom: 0.02
  16087. }
  16088. },
  16089. },
  16090. [
  16091. {
  16092. name: "Normal",
  16093. height: math.unit(4.91, "feet"),
  16094. default: true
  16095. },
  16096. ]
  16097. ))
  16098. characterMakers.push(() => makeCharacter(
  16099. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16100. {
  16101. laying: {
  16102. height: math.unit(4 + 4 / 12, "feet"),
  16103. weight: math.unit(600, "lb"),
  16104. name: "Laying",
  16105. image: {
  16106. source: "./media/characters/sheila/laying.svg",
  16107. extra: 1333 / 1265,
  16108. bottom: 0.16
  16109. }
  16110. },
  16111. },
  16112. [
  16113. {
  16114. name: "Normal",
  16115. height: math.unit(4 + 4 / 12, "feet"),
  16116. default: true
  16117. },
  16118. ]
  16119. ))
  16120. characterMakers.push(() => makeCharacter(
  16121. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16122. {
  16123. front: {
  16124. height: math.unit(6, "feet"),
  16125. weight: math.unit(190, "lb"),
  16126. name: "Front",
  16127. image: {
  16128. source: "./media/characters/sax/front.svg",
  16129. extra: 1187 / 973,
  16130. bottom: 0.042
  16131. }
  16132. },
  16133. },
  16134. [
  16135. {
  16136. name: "Micro",
  16137. height: math.unit(4, "inches"),
  16138. default: true
  16139. },
  16140. ]
  16141. ))
  16142. characterMakers.push(() => makeCharacter(
  16143. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16144. {
  16145. front: {
  16146. height: math.unit(6, "feet"),
  16147. weight: math.unit(150, "lb"),
  16148. name: "Front",
  16149. image: {
  16150. source: "./media/characters/pandora/front.svg",
  16151. extra: 2720 / 2556,
  16152. bottom: 0.015
  16153. }
  16154. },
  16155. back: {
  16156. height: math.unit(6, "feet"),
  16157. weight: math.unit(150, "lb"),
  16158. name: "Back",
  16159. image: {
  16160. source: "./media/characters/pandora/back.svg",
  16161. extra: 2720 / 2556,
  16162. bottom: 0.01
  16163. }
  16164. },
  16165. beans: {
  16166. height: math.unit(6 / 8, "feet"),
  16167. name: "Beans",
  16168. image: {
  16169. source: "./media/characters/pandora/beans.svg"
  16170. }
  16171. },
  16172. collar: {
  16173. height: math.unit(0.31, "feet"),
  16174. name: "Collar",
  16175. image: {
  16176. source: "./media/characters/pandora/collar.svg"
  16177. }
  16178. },
  16179. skirt: {
  16180. height: math.unit(6, "feet"),
  16181. weight: math.unit(150, "lb"),
  16182. name: "Skirt",
  16183. image: {
  16184. source: "./media/characters/pandora/skirt.svg",
  16185. extra: 1622 / 1525,
  16186. bottom: 0.015
  16187. }
  16188. },
  16189. hoodie: {
  16190. height: math.unit(6, "feet"),
  16191. weight: math.unit(150, "lb"),
  16192. name: "Hoodie",
  16193. image: {
  16194. source: "./media/characters/pandora/hoodie.svg",
  16195. extra: 1622 / 1525,
  16196. bottom: 0.015
  16197. }
  16198. },
  16199. casual: {
  16200. height: math.unit(6, "feet"),
  16201. weight: math.unit(150, "lb"),
  16202. name: "Casual",
  16203. image: {
  16204. source: "./media/characters/pandora/casual.svg",
  16205. extra: 1622 / 1525,
  16206. bottom: 0.015
  16207. }
  16208. },
  16209. },
  16210. [
  16211. {
  16212. name: "Normal",
  16213. height: math.unit(6, "feet")
  16214. },
  16215. {
  16216. name: "Big Steppy",
  16217. height: math.unit(1, "km"),
  16218. default: true
  16219. },
  16220. {
  16221. name: "Galactic Steppy",
  16222. height: math.unit(2, "gigameters")
  16223. },
  16224. ]
  16225. ))
  16226. characterMakers.push(() => makeCharacter(
  16227. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16228. {
  16229. side: {
  16230. height: math.unit(10, "feet"),
  16231. weight: math.unit(800, "kg"),
  16232. name: "Side",
  16233. image: {
  16234. source: "./media/characters/venio-darcony/side.svg",
  16235. extra: 1373 / 1003,
  16236. bottom: 0.037
  16237. }
  16238. },
  16239. front: {
  16240. height: math.unit(19, "feet"),
  16241. weight: math.unit(800, "kg"),
  16242. name: "Front",
  16243. image: {
  16244. source: "./media/characters/venio-darcony/front.svg"
  16245. }
  16246. },
  16247. back: {
  16248. height: math.unit(19, "feet"),
  16249. weight: math.unit(800, "kg"),
  16250. name: "Back",
  16251. image: {
  16252. source: "./media/characters/venio-darcony/back.svg"
  16253. }
  16254. },
  16255. sideNsfw: {
  16256. height: math.unit(10, "feet"),
  16257. weight: math.unit(800, "kg"),
  16258. name: "Side (NSFW)",
  16259. image: {
  16260. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16261. extra: 1373 / 1003,
  16262. bottom: 0.037
  16263. }
  16264. },
  16265. frontNsfw: {
  16266. height: math.unit(19, "feet"),
  16267. weight: math.unit(800, "kg"),
  16268. name: "Front (NSFW)",
  16269. image: {
  16270. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16271. }
  16272. },
  16273. backNsfw: {
  16274. height: math.unit(19, "feet"),
  16275. weight: math.unit(800, "kg"),
  16276. name: "Back (NSFW)",
  16277. image: {
  16278. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16279. }
  16280. },
  16281. sideArmored: {
  16282. height: math.unit(10, "feet"),
  16283. weight: math.unit(800, "kg"),
  16284. name: "Side (Armored)",
  16285. image: {
  16286. source: "./media/characters/venio-darcony/side-armored.svg",
  16287. extra: 1373 / 1003,
  16288. bottom: 0.037
  16289. }
  16290. },
  16291. frontArmored: {
  16292. height: math.unit(19, "feet"),
  16293. weight: math.unit(900, "kg"),
  16294. name: "Front (Armored)",
  16295. image: {
  16296. source: "./media/characters/venio-darcony/front-armored.svg"
  16297. }
  16298. },
  16299. backArmored: {
  16300. height: math.unit(19, "feet"),
  16301. weight: math.unit(900, "kg"),
  16302. name: "Back (Armored)",
  16303. image: {
  16304. source: "./media/characters/venio-darcony/back-armored.svg"
  16305. }
  16306. },
  16307. sword: {
  16308. height: math.unit(10, "feet"),
  16309. weight: math.unit(50, "lb"),
  16310. name: "Sword",
  16311. image: {
  16312. source: "./media/characters/venio-darcony/sword.svg"
  16313. }
  16314. },
  16315. },
  16316. [
  16317. {
  16318. name: "Normal",
  16319. height: math.unit(10, "feet")
  16320. },
  16321. {
  16322. name: "Macro",
  16323. height: math.unit(130, "feet"),
  16324. default: true
  16325. },
  16326. {
  16327. name: "Macro+",
  16328. height: math.unit(240, "feet")
  16329. },
  16330. ]
  16331. ))
  16332. characterMakers.push(() => makeCharacter(
  16333. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16334. {
  16335. front: {
  16336. height: math.unit(6, "feet"),
  16337. weight: math.unit(150, "lb"),
  16338. name: "Front",
  16339. image: {
  16340. source: "./media/characters/veski/front.svg",
  16341. extra: 1299 / 1225,
  16342. bottom: 0.04
  16343. }
  16344. },
  16345. back: {
  16346. height: math.unit(6, "feet"),
  16347. weight: math.unit(150, "lb"),
  16348. name: "Back",
  16349. image: {
  16350. source: "./media/characters/veski/back.svg",
  16351. extra: 1299 / 1225,
  16352. bottom: 0.008
  16353. }
  16354. },
  16355. maw: {
  16356. height: math.unit(1.5 * 1.21, "feet"),
  16357. name: "Maw",
  16358. image: {
  16359. source: "./media/characters/veski/maw.svg"
  16360. }
  16361. },
  16362. },
  16363. [
  16364. {
  16365. name: "Macro",
  16366. height: math.unit(2, "km"),
  16367. default: true
  16368. },
  16369. ]
  16370. ))
  16371. characterMakers.push(() => makeCharacter(
  16372. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16373. {
  16374. front: {
  16375. height: math.unit(5 + 7 / 12, "feet"),
  16376. name: "Front",
  16377. image: {
  16378. source: "./media/characters/isabelle/front.svg",
  16379. extra: 2130 / 1976,
  16380. bottom: 0.05
  16381. }
  16382. },
  16383. },
  16384. [
  16385. {
  16386. name: "Supermicro",
  16387. height: math.unit(10, "micrometers")
  16388. },
  16389. {
  16390. name: "Micro",
  16391. height: math.unit(1, "inch")
  16392. },
  16393. {
  16394. name: "Tiny",
  16395. height: math.unit(5, "inches")
  16396. },
  16397. {
  16398. name: "Standard",
  16399. height: math.unit(5 + 7 / 12, "inches")
  16400. },
  16401. {
  16402. name: "Macro",
  16403. height: math.unit(80, "meters"),
  16404. default: true
  16405. },
  16406. {
  16407. name: "Megamacro",
  16408. height: math.unit(250, "meters")
  16409. },
  16410. {
  16411. name: "Gigamacro",
  16412. height: math.unit(5, "km")
  16413. },
  16414. {
  16415. name: "Cosmic",
  16416. height: math.unit(2.5e6, "miles")
  16417. },
  16418. ]
  16419. ))
  16420. characterMakers.push(() => makeCharacter(
  16421. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16422. {
  16423. front: {
  16424. height: math.unit(6, "feet"),
  16425. weight: math.unit(150, "lb"),
  16426. name: "Front",
  16427. image: {
  16428. source: "./media/characters/hanzo/front.svg",
  16429. extra: 374 / 344,
  16430. bottom: 0.02
  16431. }
  16432. },
  16433. },
  16434. [
  16435. {
  16436. name: "Normal",
  16437. height: math.unit(8, "feet"),
  16438. default: true
  16439. },
  16440. ]
  16441. ))
  16442. characterMakers.push(() => makeCharacter(
  16443. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16444. {
  16445. front: {
  16446. height: math.unit(7, "feet"),
  16447. weight: math.unit(130, "lb"),
  16448. name: "Front",
  16449. image: {
  16450. source: "./media/characters/anna/front.svg",
  16451. extra: 169 / 145,
  16452. bottom: 0.06
  16453. }
  16454. },
  16455. full: {
  16456. height: math.unit(4.96, "feet"),
  16457. weight: math.unit(220, "lb"),
  16458. name: "Full",
  16459. image: {
  16460. source: "./media/characters/anna/full.svg",
  16461. extra: 138 / 114,
  16462. bottom: 0.15
  16463. }
  16464. },
  16465. tongue: {
  16466. height: math.unit(2.53, "feet"),
  16467. name: "Tongue",
  16468. image: {
  16469. source: "./media/characters/anna/tongue.svg"
  16470. }
  16471. },
  16472. },
  16473. [
  16474. {
  16475. name: "Normal",
  16476. height: math.unit(7, "feet"),
  16477. default: true
  16478. },
  16479. ]
  16480. ))
  16481. characterMakers.push(() => makeCharacter(
  16482. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16483. {
  16484. front: {
  16485. height: math.unit(7, "feet"),
  16486. weight: math.unit(150, "lb"),
  16487. name: "Front",
  16488. image: {
  16489. source: "./media/characters/ian-corvid/front.svg",
  16490. extra: 150 / 142,
  16491. bottom: 0.02
  16492. }
  16493. },
  16494. back: {
  16495. height: math.unit(7, "feet"),
  16496. weight: math.unit(150, "lb"),
  16497. name: "Back",
  16498. image: {
  16499. source: "./media/characters/ian-corvid/back.svg",
  16500. extra: 150 / 143,
  16501. bottom: 0.01
  16502. }
  16503. },
  16504. stomping: {
  16505. height: math.unit(7, "feet"),
  16506. weight: math.unit(150, "lb"),
  16507. name: "Stomping",
  16508. image: {
  16509. source: "./media/characters/ian-corvid/stomping.svg",
  16510. extra: 76 / 72
  16511. }
  16512. },
  16513. sitting: {
  16514. height: math.unit(7 / 1.8, "feet"),
  16515. weight: math.unit(150, "lb"),
  16516. name: "Sitting",
  16517. image: {
  16518. source: "./media/characters/ian-corvid/sitting.svg",
  16519. extra: 1400 / 1269,
  16520. bottom: 0.15
  16521. }
  16522. },
  16523. },
  16524. [
  16525. {
  16526. name: "Tiny Microw",
  16527. height: math.unit(1, "inch")
  16528. },
  16529. {
  16530. name: "Microw",
  16531. height: math.unit(6, "inches")
  16532. },
  16533. {
  16534. name: "Crow",
  16535. height: math.unit(7 + 1 / 12, "feet"),
  16536. default: true
  16537. },
  16538. {
  16539. name: "Macrow",
  16540. height: math.unit(176, "feet")
  16541. },
  16542. ]
  16543. ))
  16544. characterMakers.push(() => makeCharacter(
  16545. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16546. {
  16547. front: {
  16548. height: math.unit(5 + 7 / 12, "feet"),
  16549. weight: math.unit(147, "lb"),
  16550. name: "Front",
  16551. image: {
  16552. source: "./media/characters/natalie-kellon/front.svg",
  16553. extra: 1214 / 1141,
  16554. bottom: 0.02
  16555. }
  16556. },
  16557. },
  16558. [
  16559. {
  16560. name: "Micro",
  16561. height: math.unit(1 / 16, "inch")
  16562. },
  16563. {
  16564. name: "Tiny",
  16565. height: math.unit(4, "inches")
  16566. },
  16567. {
  16568. name: "Normal",
  16569. height: math.unit(5 + 7 / 12, "feet"),
  16570. default: true
  16571. },
  16572. {
  16573. name: "Amazon",
  16574. height: math.unit(12, "feet")
  16575. },
  16576. {
  16577. name: "Giantess",
  16578. height: math.unit(160, "meters")
  16579. },
  16580. {
  16581. name: "Titaness",
  16582. height: math.unit(800, "meters")
  16583. },
  16584. ]
  16585. ))
  16586. characterMakers.push(() => makeCharacter(
  16587. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16588. {
  16589. front: {
  16590. height: math.unit(6, "feet"),
  16591. weight: math.unit(150, "lb"),
  16592. name: "Front",
  16593. image: {
  16594. source: "./media/characters/alluria/front.svg",
  16595. extra: 806 / 738,
  16596. bottom: 0.01
  16597. }
  16598. },
  16599. side: {
  16600. height: math.unit(6, "feet"),
  16601. weight: math.unit(150, "lb"),
  16602. name: "Side",
  16603. image: {
  16604. source: "./media/characters/alluria/side.svg",
  16605. extra: 800 / 750,
  16606. }
  16607. },
  16608. back: {
  16609. height: math.unit(6, "feet"),
  16610. weight: math.unit(150, "lb"),
  16611. name: "Back",
  16612. image: {
  16613. source: "./media/characters/alluria/back.svg",
  16614. extra: 806 / 738,
  16615. }
  16616. },
  16617. frontMaid: {
  16618. height: math.unit(6, "feet"),
  16619. weight: math.unit(150, "lb"),
  16620. name: "Front (Maid)",
  16621. image: {
  16622. source: "./media/characters/alluria/front-maid.svg",
  16623. extra: 806 / 738,
  16624. bottom: 0.01
  16625. }
  16626. },
  16627. sideMaid: {
  16628. height: math.unit(6, "feet"),
  16629. weight: math.unit(150, "lb"),
  16630. name: "Side (Maid)",
  16631. image: {
  16632. source: "./media/characters/alluria/side-maid.svg",
  16633. extra: 800 / 750,
  16634. bottom: 0.005
  16635. }
  16636. },
  16637. backMaid: {
  16638. height: math.unit(6, "feet"),
  16639. weight: math.unit(150, "lb"),
  16640. name: "Back (Maid)",
  16641. image: {
  16642. source: "./media/characters/alluria/back-maid.svg",
  16643. extra: 806 / 738,
  16644. }
  16645. },
  16646. },
  16647. [
  16648. {
  16649. name: "Micro",
  16650. height: math.unit(6, "inches"),
  16651. default: true
  16652. },
  16653. ]
  16654. ))
  16655. characterMakers.push(() => makeCharacter(
  16656. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16657. {
  16658. front: {
  16659. height: math.unit(6, "feet"),
  16660. weight: math.unit(150, "lb"),
  16661. name: "Front",
  16662. image: {
  16663. source: "./media/characters/kyle/front.svg",
  16664. extra: 1069 / 962,
  16665. bottom: 77.228 / 1727.45
  16666. }
  16667. },
  16668. },
  16669. [
  16670. {
  16671. name: "Macro",
  16672. height: math.unit(150, "feet"),
  16673. default: true
  16674. },
  16675. ]
  16676. ))
  16677. characterMakers.push(() => makeCharacter(
  16678. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16679. {
  16680. front: {
  16681. height: math.unit(6, "feet"),
  16682. weight: math.unit(300, "lb"),
  16683. name: "Front",
  16684. image: {
  16685. source: "./media/characters/duncan/front.svg",
  16686. extra: 1650 / 1482,
  16687. bottom: 0.05
  16688. }
  16689. },
  16690. },
  16691. [
  16692. {
  16693. name: "Macro",
  16694. height: math.unit(100, "feet"),
  16695. default: true
  16696. },
  16697. ]
  16698. ))
  16699. characterMakers.push(() => makeCharacter(
  16700. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16701. {
  16702. front: {
  16703. height: math.unit(5 + 4 / 12, "feet"),
  16704. weight: math.unit(220, "lb"),
  16705. name: "Front",
  16706. image: {
  16707. source: "./media/characters/memory/front.svg",
  16708. extra: 3641 / 3545,
  16709. bottom: 0.03
  16710. }
  16711. },
  16712. back: {
  16713. height: math.unit(5 + 4 / 12, "feet"),
  16714. weight: math.unit(220, "lb"),
  16715. name: "Back",
  16716. image: {
  16717. source: "./media/characters/memory/back.svg",
  16718. extra: 3641 / 3545,
  16719. bottom: 0.025
  16720. }
  16721. },
  16722. frontSkirt: {
  16723. height: math.unit(5 + 4 / 12, "feet"),
  16724. weight: math.unit(220, "lb"),
  16725. name: "Front (Skirt)",
  16726. image: {
  16727. source: "./media/characters/memory/front-skirt.svg",
  16728. extra: 3641 / 3545,
  16729. bottom: 0.03
  16730. }
  16731. },
  16732. frontDress: {
  16733. height: math.unit(5 + 4 / 12, "feet"),
  16734. weight: math.unit(220, "lb"),
  16735. name: "Front (Dress)",
  16736. image: {
  16737. source: "./media/characters/memory/front-dress.svg",
  16738. extra: 3641 / 3545,
  16739. bottom: 0.03
  16740. }
  16741. },
  16742. },
  16743. [
  16744. {
  16745. name: "Micro",
  16746. height: math.unit(6, "inches"),
  16747. default: true
  16748. },
  16749. {
  16750. name: "Normal",
  16751. height: math.unit(5 + 4 / 12, "feet")
  16752. },
  16753. ]
  16754. ))
  16755. characterMakers.push(() => makeCharacter(
  16756. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16757. {
  16758. front: {
  16759. height: math.unit(4 + 11 / 12, "feet"),
  16760. weight: math.unit(100, "lb"),
  16761. name: "Front",
  16762. image: {
  16763. source: "./media/characters/luno/front.svg",
  16764. extra: 1535 / 1487,
  16765. bottom: 0.03
  16766. }
  16767. },
  16768. },
  16769. [
  16770. {
  16771. name: "Micro",
  16772. height: math.unit(3, "inches")
  16773. },
  16774. {
  16775. name: "Normal",
  16776. height: math.unit(4 + 11 / 12, "feet"),
  16777. default: true
  16778. },
  16779. {
  16780. name: "Macro",
  16781. height: math.unit(300, "feet")
  16782. },
  16783. {
  16784. name: "Megamacro",
  16785. height: math.unit(700, "miles")
  16786. },
  16787. ]
  16788. ))
  16789. characterMakers.push(() => makeCharacter(
  16790. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16791. {
  16792. front: {
  16793. height: math.unit(6 + 2 / 12, "feet"),
  16794. weight: math.unit(170, "lb"),
  16795. name: "Front",
  16796. image: {
  16797. source: "./media/characters/jamesy/front.svg",
  16798. extra: 440 / 382,
  16799. bottom: 0.005
  16800. }
  16801. },
  16802. },
  16803. [
  16804. {
  16805. name: "Micro",
  16806. height: math.unit(3, "inches")
  16807. },
  16808. {
  16809. name: "Normal",
  16810. height: math.unit(6 + 2 / 12, "feet"),
  16811. default: true
  16812. },
  16813. {
  16814. name: "Macro",
  16815. height: math.unit(300, "feet")
  16816. },
  16817. {
  16818. name: "Megamacro",
  16819. height: math.unit(700, "miles")
  16820. },
  16821. ]
  16822. ))
  16823. characterMakers.push(() => makeCharacter(
  16824. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16825. {
  16826. front: {
  16827. height: math.unit(6, "feet"),
  16828. weight: math.unit(160, "lb"),
  16829. name: "Front",
  16830. image: {
  16831. source: "./media/characters/mark/front.svg",
  16832. extra: 3300 / 3100,
  16833. bottom: 136.42 / 3440.47
  16834. }
  16835. },
  16836. },
  16837. [
  16838. {
  16839. name: "Macro",
  16840. height: math.unit(120, "meters")
  16841. },
  16842. {
  16843. name: "Bigger Macro",
  16844. height: math.unit(350, "meters")
  16845. },
  16846. {
  16847. name: "Megamacro",
  16848. height: math.unit(8, "km"),
  16849. default: true
  16850. },
  16851. {
  16852. name: "Continental",
  16853. height: math.unit(4550, "km")
  16854. },
  16855. {
  16856. name: "Planetary",
  16857. height: math.unit(65000, "km")
  16858. },
  16859. ]
  16860. ))
  16861. characterMakers.push(() => makeCharacter(
  16862. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16863. {
  16864. front: {
  16865. height: math.unit(6, "feet"),
  16866. weight: math.unit(400, "lb"),
  16867. name: "Front",
  16868. image: {
  16869. source: "./media/characters/mac/front.svg",
  16870. extra: 1048 / 987.7,
  16871. bottom: 60 / 1107.6,
  16872. }
  16873. },
  16874. },
  16875. [
  16876. {
  16877. name: "Macro",
  16878. height: math.unit(500, "feet"),
  16879. default: true
  16880. },
  16881. ]
  16882. ))
  16883. characterMakers.push(() => makeCharacter(
  16884. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16885. {
  16886. front: {
  16887. height: math.unit(5 + 2 / 12, "feet"),
  16888. weight: math.unit(190, "lb"),
  16889. name: "Front",
  16890. image: {
  16891. source: "./media/characters/bari/front.svg",
  16892. extra: 3156 / 2880,
  16893. bottom: 0.03
  16894. }
  16895. },
  16896. back: {
  16897. height: math.unit(5 + 2 / 12, "feet"),
  16898. weight: math.unit(190, "lb"),
  16899. name: "Back",
  16900. image: {
  16901. source: "./media/characters/bari/back.svg",
  16902. extra: 3260 / 2834,
  16903. bottom: 0.025
  16904. }
  16905. },
  16906. frontPlush: {
  16907. height: math.unit(5 + 2 / 12, "feet"),
  16908. weight: math.unit(190, "lb"),
  16909. name: "Front (Plush)",
  16910. image: {
  16911. source: "./media/characters/bari/front-plush.svg",
  16912. extra: 1112 / 1061,
  16913. bottom: 0.002
  16914. }
  16915. },
  16916. },
  16917. [
  16918. {
  16919. name: "Micro",
  16920. height: math.unit(3, "inches")
  16921. },
  16922. {
  16923. name: "Normal",
  16924. height: math.unit(5 + 2 / 12, "feet"),
  16925. default: true
  16926. },
  16927. {
  16928. name: "Macro",
  16929. height: math.unit(20, "feet")
  16930. },
  16931. ]
  16932. ))
  16933. characterMakers.push(() => makeCharacter(
  16934. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16935. {
  16936. front: {
  16937. height: math.unit(6 + 1 / 12, "feet"),
  16938. weight: math.unit(275, "lb"),
  16939. name: "Front",
  16940. image: {
  16941. source: "./media/characters/hunter-misha-raven/front.svg"
  16942. }
  16943. },
  16944. },
  16945. [
  16946. {
  16947. name: "Mortal",
  16948. height: math.unit(6 + 1 / 12, "feet")
  16949. },
  16950. {
  16951. name: "Divine",
  16952. height: math.unit(1.12134e34, "parsecs"),
  16953. default: true
  16954. },
  16955. ]
  16956. ))
  16957. characterMakers.push(() => makeCharacter(
  16958. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16959. {
  16960. front: {
  16961. height: math.unit(6 + 3 / 12, "feet"),
  16962. weight: math.unit(220, "lb"),
  16963. name: "Front",
  16964. image: {
  16965. source: "./media/characters/max-calore/front.svg",
  16966. extra: 1700 / 1648,
  16967. bottom: 0.01
  16968. }
  16969. },
  16970. back: {
  16971. height: math.unit(6 + 3 / 12, "feet"),
  16972. weight: math.unit(220, "lb"),
  16973. name: "Back",
  16974. image: {
  16975. source: "./media/characters/max-calore/back.svg",
  16976. extra: 1700 / 1648,
  16977. bottom: 0.01
  16978. }
  16979. },
  16980. },
  16981. [
  16982. {
  16983. name: "Normal",
  16984. height: math.unit(6 + 3 / 12, "feet"),
  16985. default: true
  16986. },
  16987. ]
  16988. ))
  16989. characterMakers.push(() => makeCharacter(
  16990. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16991. {
  16992. side: {
  16993. height: math.unit(2 + 8 / 12, "feet"),
  16994. weight: math.unit(99, "lb"),
  16995. name: "Side",
  16996. image: {
  16997. source: "./media/characters/aspen/side.svg",
  16998. extra: 152 / 138,
  16999. bottom: 0.032
  17000. }
  17001. },
  17002. },
  17003. [
  17004. {
  17005. name: "Normal",
  17006. height: math.unit(2 + 8 / 12, "feet"),
  17007. default: true
  17008. },
  17009. ]
  17010. ))
  17011. characterMakers.push(() => makeCharacter(
  17012. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17013. {
  17014. side: {
  17015. height: math.unit(3 + 2 / 12, "feet"),
  17016. weight: math.unit(224, "lb"),
  17017. name: "Side",
  17018. image: {
  17019. source: "./media/characters/sheila-feral-wolf/side.svg",
  17020. extra: 179 / 166,
  17021. bottom: 0.03
  17022. }
  17023. },
  17024. },
  17025. [
  17026. {
  17027. name: "Normal",
  17028. height: math.unit(3 + 2 / 12, "feet"),
  17029. default: true
  17030. },
  17031. ]
  17032. ))
  17033. characterMakers.push(() => makeCharacter(
  17034. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17035. {
  17036. side: {
  17037. height: math.unit(1 + 9 / 12, "feet"),
  17038. weight: math.unit(38, "lb"),
  17039. name: "Side",
  17040. image: {
  17041. source: "./media/characters/michelle/side.svg",
  17042. extra: 147 / 136.7,
  17043. bottom: 0.03
  17044. }
  17045. },
  17046. },
  17047. [
  17048. {
  17049. name: "Normal",
  17050. height: math.unit(1 + 9 / 12, "feet"),
  17051. default: true
  17052. },
  17053. ]
  17054. ))
  17055. characterMakers.push(() => makeCharacter(
  17056. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17057. {
  17058. front: {
  17059. height: math.unit(1 + 1 / 12, "feet"),
  17060. weight: math.unit(18, "lb"),
  17061. name: "Front",
  17062. image: {
  17063. source: "./media/characters/nino/front.svg"
  17064. }
  17065. },
  17066. },
  17067. [
  17068. {
  17069. name: "Normal",
  17070. height: math.unit(1 + 1 / 12, "feet"),
  17071. default: true
  17072. },
  17073. ]
  17074. ))
  17075. characterMakers.push(() => makeCharacter(
  17076. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17077. {
  17078. front: {
  17079. height: math.unit(1, "feet"),
  17080. weight: math.unit(16, "lb"),
  17081. name: "Front",
  17082. image: {
  17083. source: "./media/characters/viola/front.svg"
  17084. }
  17085. },
  17086. },
  17087. [
  17088. {
  17089. name: "Normal",
  17090. height: math.unit(1, "feet"),
  17091. default: true
  17092. },
  17093. ]
  17094. ))
  17095. characterMakers.push(() => makeCharacter(
  17096. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17097. {
  17098. front: {
  17099. height: math.unit(6 + 5 / 12, "feet"),
  17100. weight: math.unit(580, "lb"),
  17101. name: "Front",
  17102. image: {
  17103. source: "./media/characters/atlas/front.svg",
  17104. extra: 298.5 / 290,
  17105. bottom: 0.015
  17106. }
  17107. },
  17108. },
  17109. [
  17110. {
  17111. name: "Normal",
  17112. height: math.unit(6 + 5 / 12, "feet"),
  17113. default: true
  17114. },
  17115. ]
  17116. ))
  17117. characterMakers.push(() => makeCharacter(
  17118. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17119. {
  17120. side: {
  17121. height: math.unit(1 + 10 / 12, "feet"),
  17122. weight: math.unit(25, "lb"),
  17123. name: "Side",
  17124. image: {
  17125. source: "./media/characters/davy/side.svg",
  17126. extra: 200 / 170,
  17127. bottom: 0.01
  17128. }
  17129. },
  17130. },
  17131. [
  17132. {
  17133. name: "Normal",
  17134. height: math.unit(1 + 10 / 12, "feet"),
  17135. default: true
  17136. },
  17137. ]
  17138. ))
  17139. characterMakers.push(() => makeCharacter(
  17140. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17141. {
  17142. side: {
  17143. height: math.unit(4 + 8 / 12, "feet"),
  17144. weight: math.unit(166, "lb"),
  17145. name: "Side",
  17146. image: {
  17147. source: "./media/characters/fiona/side.svg",
  17148. extra: 232 / 220,
  17149. bottom: 0.03
  17150. }
  17151. },
  17152. },
  17153. [
  17154. {
  17155. name: "Normal",
  17156. height: math.unit(4 + 8 / 12, "feet"),
  17157. default: true
  17158. },
  17159. ]
  17160. ))
  17161. characterMakers.push(() => makeCharacter(
  17162. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17163. {
  17164. front: {
  17165. height: math.unit(2, "feet"),
  17166. weight: math.unit(62, "lb"),
  17167. name: "Front",
  17168. image: {
  17169. source: "./media/characters/lyla/front.svg",
  17170. bottom: 0.1
  17171. }
  17172. },
  17173. },
  17174. [
  17175. {
  17176. name: "Normal",
  17177. height: math.unit(2, "feet"),
  17178. default: true
  17179. },
  17180. ]
  17181. ))
  17182. characterMakers.push(() => makeCharacter(
  17183. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17184. {
  17185. side: {
  17186. height: math.unit(1.8, "feet"),
  17187. weight: math.unit(44, "lb"),
  17188. name: "Side",
  17189. image: {
  17190. source: "./media/characters/perseus/side.svg",
  17191. bottom: 0.21
  17192. }
  17193. },
  17194. },
  17195. [
  17196. {
  17197. name: "Normal",
  17198. height: math.unit(1.8, "feet"),
  17199. default: true
  17200. },
  17201. ]
  17202. ))
  17203. characterMakers.push(() => makeCharacter(
  17204. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17205. {
  17206. side: {
  17207. height: math.unit(4 + 2 / 12, "feet"),
  17208. weight: math.unit(20, "lb"),
  17209. name: "Side",
  17210. image: {
  17211. source: "./media/characters/remus/side.svg"
  17212. }
  17213. },
  17214. },
  17215. [
  17216. {
  17217. name: "Normal",
  17218. height: math.unit(4 + 2 / 12, "feet"),
  17219. default: true
  17220. },
  17221. ]
  17222. ))
  17223. characterMakers.push(() => makeCharacter(
  17224. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17225. {
  17226. front: {
  17227. height: math.unit(4 + 11 / 12, "feet"),
  17228. weight: math.unit(114, "lb"),
  17229. name: "Front",
  17230. image: {
  17231. source: "./media/characters/raf/front.svg",
  17232. bottom: 20.5 / 1863
  17233. }
  17234. },
  17235. side: {
  17236. height: math.unit(4 + 11 / 12, "feet"),
  17237. weight: math.unit(114, "lb"),
  17238. name: "Side",
  17239. image: {
  17240. source: "./media/characters/raf/side.svg",
  17241. bottom: 22 / 1822
  17242. }
  17243. },
  17244. },
  17245. [
  17246. {
  17247. name: "Micro",
  17248. height: math.unit(2, "inches")
  17249. },
  17250. {
  17251. name: "Normal",
  17252. height: math.unit(4 + 11 / 12, "feet"),
  17253. default: true
  17254. },
  17255. {
  17256. name: "Macro",
  17257. height: math.unit(70, "feet")
  17258. },
  17259. ]
  17260. ))
  17261. characterMakers.push(() => makeCharacter(
  17262. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17263. {
  17264. front: {
  17265. height: math.unit(1.5, "meters"),
  17266. weight: math.unit(68, "kg"),
  17267. name: "Front",
  17268. image: {
  17269. source: "./media/characters/liam-einarr/front.svg",
  17270. extra: 2822 / 2666
  17271. }
  17272. },
  17273. back: {
  17274. height: math.unit(1.5, "meters"),
  17275. weight: math.unit(68, "kg"),
  17276. name: "Back",
  17277. image: {
  17278. source: "./media/characters/liam-einarr/back.svg",
  17279. extra: 2822 / 2666,
  17280. bottom: 0.015
  17281. }
  17282. },
  17283. },
  17284. [
  17285. {
  17286. name: "Normal",
  17287. height: math.unit(1.5, "meters"),
  17288. default: true
  17289. },
  17290. {
  17291. name: "Macro",
  17292. height: math.unit(150, "meters")
  17293. },
  17294. {
  17295. name: "Megamacro",
  17296. height: math.unit(35, "km")
  17297. },
  17298. ]
  17299. ))
  17300. characterMakers.push(() => makeCharacter(
  17301. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17302. {
  17303. front: {
  17304. height: math.unit(6, "feet"),
  17305. weight: math.unit(75, "kg"),
  17306. name: "Front",
  17307. image: {
  17308. source: "./media/characters/linda/front.svg",
  17309. extra: 930 / 874,
  17310. bottom: 0.004
  17311. }
  17312. },
  17313. },
  17314. [
  17315. {
  17316. name: "Normal",
  17317. height: math.unit(6, "feet"),
  17318. default: true
  17319. },
  17320. ]
  17321. ))
  17322. characterMakers.push(() => makeCharacter(
  17323. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17324. {
  17325. front: {
  17326. height: math.unit(6 + 8 / 12, "feet"),
  17327. weight: math.unit(220, "lb"),
  17328. name: "Front",
  17329. image: {
  17330. source: "./media/characters/caylex/front.svg",
  17331. extra: 821 / 772,
  17332. bottom: 0.07
  17333. }
  17334. },
  17335. back: {
  17336. height: math.unit(6 + 8 / 12, "feet"),
  17337. weight: math.unit(220, "lb"),
  17338. name: "Back",
  17339. image: {
  17340. source: "./media/characters/caylex/back.svg",
  17341. extra: 821 / 772,
  17342. bottom: 0.022
  17343. }
  17344. },
  17345. hand: {
  17346. height: math.unit(1.25, "feet"),
  17347. name: "Hand",
  17348. image: {
  17349. source: "./media/characters/caylex/hand.svg"
  17350. }
  17351. },
  17352. foot: {
  17353. height: math.unit(1.6, "feet"),
  17354. name: "Foot",
  17355. image: {
  17356. source: "./media/characters/caylex/foot.svg"
  17357. }
  17358. },
  17359. armored: {
  17360. height: math.unit(6 + 8 / 12, "feet"),
  17361. weight: math.unit(250, "lb"),
  17362. name: "Armored",
  17363. image: {
  17364. source: "./media/characters/caylex/armored.svg",
  17365. extra: 1420 / 1310,
  17366. bottom: 0.045
  17367. }
  17368. },
  17369. },
  17370. [
  17371. {
  17372. name: "Normal",
  17373. height: math.unit(6 + 8 / 12, "feet"),
  17374. default: true
  17375. },
  17376. {
  17377. name: "Normal+",
  17378. height: math.unit(12, "feet")
  17379. },
  17380. ]
  17381. ))
  17382. characterMakers.push(() => makeCharacter(
  17383. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17384. {
  17385. front: {
  17386. height: math.unit(7 + 6 / 12, "feet"),
  17387. weight: math.unit(288, "lb"),
  17388. name: "Front",
  17389. image: {
  17390. source: "./media/characters/alana/front.svg",
  17391. extra: 679 / 653,
  17392. bottom: 22.5 / 701
  17393. }
  17394. },
  17395. },
  17396. [
  17397. {
  17398. name: "Normal",
  17399. height: math.unit(7 + 6 / 12, "feet")
  17400. },
  17401. {
  17402. name: "Large",
  17403. height: math.unit(50, "feet")
  17404. },
  17405. {
  17406. name: "Macro",
  17407. height: math.unit(100, "feet"),
  17408. default: true
  17409. },
  17410. {
  17411. name: "Macro+",
  17412. height: math.unit(200, "feet")
  17413. },
  17414. ]
  17415. ))
  17416. characterMakers.push(() => makeCharacter(
  17417. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17418. {
  17419. front: {
  17420. height: math.unit(6 + 1 / 12, "feet"),
  17421. weight: math.unit(210, "lb"),
  17422. name: "Front",
  17423. image: {
  17424. source: "./media/characters/hasani/front.svg",
  17425. extra: 244 / 232,
  17426. bottom: 0.01
  17427. }
  17428. },
  17429. back: {
  17430. height: math.unit(6 + 1 / 12, "feet"),
  17431. weight: math.unit(210, "lb"),
  17432. name: "Back",
  17433. image: {
  17434. source: "./media/characters/hasani/back.svg",
  17435. extra: 244 / 232,
  17436. bottom: 0.01
  17437. }
  17438. },
  17439. },
  17440. [
  17441. {
  17442. name: "Normal",
  17443. height: math.unit(6 + 1 / 12, "feet")
  17444. },
  17445. {
  17446. name: "Macro",
  17447. height: math.unit(175, "feet"),
  17448. default: true
  17449. },
  17450. ]
  17451. ))
  17452. characterMakers.push(() => makeCharacter(
  17453. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17454. {
  17455. front: {
  17456. height: math.unit(1.82, "meters"),
  17457. weight: math.unit(140, "lb"),
  17458. name: "Front",
  17459. image: {
  17460. source: "./media/characters/nita/front.svg",
  17461. extra: 2473 / 2363,
  17462. bottom: 0.01
  17463. }
  17464. },
  17465. },
  17466. [
  17467. {
  17468. name: "Normal",
  17469. height: math.unit(1.82, "m")
  17470. },
  17471. {
  17472. name: "Macro",
  17473. height: math.unit(300, "m")
  17474. },
  17475. {
  17476. name: "Mistake Canon",
  17477. height: math.unit(0.5, "miles"),
  17478. default: true
  17479. },
  17480. {
  17481. name: "Big Mistake",
  17482. height: math.unit(13, "miles")
  17483. },
  17484. {
  17485. name: "Playing God",
  17486. height: math.unit(2450, "miles")
  17487. },
  17488. ]
  17489. ))
  17490. characterMakers.push(() => makeCharacter(
  17491. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17492. {
  17493. front: {
  17494. height: math.unit(4, "feet"),
  17495. weight: math.unit(120, "lb"),
  17496. name: "Front",
  17497. image: {
  17498. source: "./media/characters/shiriko/front.svg",
  17499. extra: 970/934,
  17500. bottom: 5/975
  17501. }
  17502. },
  17503. },
  17504. [
  17505. {
  17506. name: "Normal",
  17507. height: math.unit(4, "feet"),
  17508. default: true
  17509. },
  17510. ]
  17511. ))
  17512. characterMakers.push(() => makeCharacter(
  17513. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17514. {
  17515. front: {
  17516. height: math.unit(6, "feet"),
  17517. name: "front",
  17518. image: {
  17519. source: "./media/characters/deja/front.svg",
  17520. extra: 926 / 840,
  17521. bottom: 0.07
  17522. }
  17523. },
  17524. },
  17525. [
  17526. {
  17527. name: "Planck Length",
  17528. height: math.unit(1.6e-35, "meters")
  17529. },
  17530. {
  17531. name: "Normal",
  17532. height: math.unit(30.48, "meters"),
  17533. default: true
  17534. },
  17535. {
  17536. name: "Universal",
  17537. height: math.unit(8.8e26, "meters")
  17538. },
  17539. ]
  17540. ))
  17541. characterMakers.push(() => makeCharacter(
  17542. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17543. {
  17544. side: {
  17545. height: math.unit(8, "feet"),
  17546. weight: math.unit(6300, "lb"),
  17547. name: "Side",
  17548. image: {
  17549. source: "./media/characters/anima/side.svg",
  17550. bottom: 0.035
  17551. }
  17552. },
  17553. },
  17554. [
  17555. {
  17556. name: "Normal",
  17557. height: math.unit(8, "feet"),
  17558. default: true
  17559. },
  17560. ]
  17561. ))
  17562. characterMakers.push(() => makeCharacter(
  17563. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17564. {
  17565. front: {
  17566. height: math.unit(8, "feet"),
  17567. weight: math.unit(350, "lb"),
  17568. name: "Front",
  17569. image: {
  17570. source: "./media/characters/bianca/front.svg",
  17571. extra: 234 / 225,
  17572. bottom: 0.03
  17573. }
  17574. },
  17575. },
  17576. [
  17577. {
  17578. name: "Normal",
  17579. height: math.unit(8, "feet"),
  17580. default: true
  17581. },
  17582. ]
  17583. ))
  17584. characterMakers.push(() => makeCharacter(
  17585. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17586. {
  17587. front: {
  17588. height: math.unit(6, "feet"),
  17589. weight: math.unit(150, "lb"),
  17590. name: "Front",
  17591. image: {
  17592. source: "./media/characters/adinia/front.svg",
  17593. extra: 1845 / 1672,
  17594. bottom: 0.02
  17595. }
  17596. },
  17597. back: {
  17598. height: math.unit(6, "feet"),
  17599. weight: math.unit(150, "lb"),
  17600. name: "Back",
  17601. image: {
  17602. source: "./media/characters/adinia/back.svg",
  17603. extra: 1845 / 1672,
  17604. bottom: 0.002
  17605. }
  17606. },
  17607. },
  17608. [
  17609. {
  17610. name: "Normal",
  17611. height: math.unit(11 + 5 / 12, "feet"),
  17612. default: true
  17613. },
  17614. ]
  17615. ))
  17616. characterMakers.push(() => makeCharacter(
  17617. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17618. {
  17619. front: {
  17620. height: math.unit(3, "meters"),
  17621. weight: math.unit(200, "kg"),
  17622. name: "Front",
  17623. image: {
  17624. source: "./media/characters/lykasa/front.svg",
  17625. extra: 1076 / 976,
  17626. bottom: 0.06
  17627. }
  17628. },
  17629. },
  17630. [
  17631. {
  17632. name: "Normal",
  17633. height: math.unit(3, "meters")
  17634. },
  17635. {
  17636. name: "Kaiju",
  17637. height: math.unit(120, "meters"),
  17638. default: true
  17639. },
  17640. {
  17641. name: "Mega Kaiju",
  17642. height: math.unit(240, "km")
  17643. },
  17644. {
  17645. name: "Giga Kaiju",
  17646. height: math.unit(400, "megameters")
  17647. },
  17648. {
  17649. name: "Tera Kaiju",
  17650. height: math.unit(800, "gigameters")
  17651. },
  17652. {
  17653. name: "Kaiju Dragon Goddess",
  17654. height: math.unit(26, "zettaparsecs")
  17655. },
  17656. ]
  17657. ))
  17658. characterMakers.push(() => makeCharacter(
  17659. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17660. {
  17661. side: {
  17662. height: math.unit(283 / 124 * 6, "feet"),
  17663. weight: math.unit(35000, "lb"),
  17664. name: "Side",
  17665. image: {
  17666. source: "./media/characters/malfaren/side.svg",
  17667. extra: 2500 / 1010,
  17668. bottom: 0.01
  17669. }
  17670. },
  17671. front: {
  17672. height: math.unit(22.36, "feet"),
  17673. weight: math.unit(35000, "lb"),
  17674. name: "Front",
  17675. image: {
  17676. source: "./media/characters/malfaren/front.svg",
  17677. extra: 1631 / 1476,
  17678. bottom: 0.01
  17679. }
  17680. },
  17681. maw: {
  17682. height: math.unit(6.9, "feet"),
  17683. name: "Maw",
  17684. image: {
  17685. source: "./media/characters/malfaren/maw.svg"
  17686. }
  17687. },
  17688. },
  17689. [
  17690. {
  17691. name: "Big",
  17692. height: math.unit(283 / 162 * 6, "feet"),
  17693. },
  17694. {
  17695. name: "Bigger",
  17696. height: math.unit(283 / 124 * 6, "feet")
  17697. },
  17698. {
  17699. name: "Massive",
  17700. height: math.unit(283 / 92 * 6, "feet"),
  17701. default: true
  17702. },
  17703. {
  17704. name: "👀💦",
  17705. height: math.unit(283 / 73 * 6, "feet"),
  17706. },
  17707. ]
  17708. ))
  17709. characterMakers.push(() => makeCharacter(
  17710. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17711. {
  17712. front: {
  17713. height: math.unit(1.7, "m"),
  17714. weight: math.unit(70, "kg"),
  17715. name: "Front",
  17716. image: {
  17717. source: "./media/characters/kernel/front.svg",
  17718. extra: 222 / 210,
  17719. bottom: 0.007
  17720. }
  17721. },
  17722. },
  17723. [
  17724. {
  17725. name: "Nano",
  17726. height: math.unit(17, "micrometers")
  17727. },
  17728. {
  17729. name: "Micro",
  17730. height: math.unit(1.7, "mm")
  17731. },
  17732. {
  17733. name: "Small",
  17734. height: math.unit(1.7, "cm")
  17735. },
  17736. {
  17737. name: "Normal",
  17738. height: math.unit(1.7, "m"),
  17739. default: true
  17740. },
  17741. ]
  17742. ))
  17743. characterMakers.push(() => makeCharacter(
  17744. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17745. {
  17746. front: {
  17747. height: math.unit(1.75, "meters"),
  17748. weight: math.unit(65, "kg"),
  17749. name: "Front",
  17750. image: {
  17751. source: "./media/characters/jayne-folest/front.svg",
  17752. extra: 2115 / 2007,
  17753. bottom: 0.02
  17754. }
  17755. },
  17756. back: {
  17757. height: math.unit(1.75, "meters"),
  17758. weight: math.unit(65, "kg"),
  17759. name: "Back",
  17760. image: {
  17761. source: "./media/characters/jayne-folest/back.svg",
  17762. extra: 2115 / 2007,
  17763. bottom: 0.005
  17764. }
  17765. },
  17766. frontClothed: {
  17767. height: math.unit(1.75, "meters"),
  17768. weight: math.unit(65, "kg"),
  17769. name: "Front (Clothed)",
  17770. image: {
  17771. source: "./media/characters/jayne-folest/front-clothed.svg",
  17772. extra: 2115 / 2007,
  17773. bottom: 0.035
  17774. }
  17775. },
  17776. hand: {
  17777. height: math.unit(1 / 1.260, "feet"),
  17778. name: "Hand",
  17779. image: {
  17780. source: "./media/characters/jayne-folest/hand.svg"
  17781. }
  17782. },
  17783. foot: {
  17784. height: math.unit(1 / 0.918, "feet"),
  17785. name: "Foot",
  17786. image: {
  17787. source: "./media/characters/jayne-folest/foot.svg"
  17788. }
  17789. },
  17790. },
  17791. [
  17792. {
  17793. name: "Micro",
  17794. height: math.unit(4, "cm")
  17795. },
  17796. {
  17797. name: "Normal",
  17798. height: math.unit(1.75, "meters")
  17799. },
  17800. {
  17801. name: "Macro",
  17802. height: math.unit(47.5, "meters"),
  17803. default: true
  17804. },
  17805. ]
  17806. ))
  17807. characterMakers.push(() => makeCharacter(
  17808. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17809. {
  17810. front: {
  17811. height: math.unit(180, "cm"),
  17812. weight: math.unit(70, "kg"),
  17813. name: "Front",
  17814. image: {
  17815. source: "./media/characters/algier/front.svg",
  17816. extra: 596 / 572,
  17817. bottom: 0.04
  17818. }
  17819. },
  17820. back: {
  17821. height: math.unit(180, "cm"),
  17822. weight: math.unit(70, "kg"),
  17823. name: "Back",
  17824. image: {
  17825. source: "./media/characters/algier/back.svg",
  17826. extra: 596 / 572,
  17827. bottom: 0.025
  17828. }
  17829. },
  17830. frontdressed: {
  17831. height: math.unit(180, "cm"),
  17832. weight: math.unit(150, "kg"),
  17833. name: "Front-dressed",
  17834. image: {
  17835. source: "./media/characters/algier/front-dressed.svg",
  17836. extra: 596 / 572,
  17837. bottom: 0.038
  17838. }
  17839. },
  17840. },
  17841. [
  17842. {
  17843. name: "Micro",
  17844. height: math.unit(5, "cm")
  17845. },
  17846. {
  17847. name: "Normal",
  17848. height: math.unit(180, "cm"),
  17849. default: true
  17850. },
  17851. {
  17852. name: "Macro",
  17853. height: math.unit(64, "m")
  17854. },
  17855. ]
  17856. ))
  17857. characterMakers.push(() => makeCharacter(
  17858. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17859. {
  17860. upright: {
  17861. height: math.unit(7, "feet"),
  17862. weight: math.unit(300, "lb"),
  17863. name: "Upright",
  17864. image: {
  17865. source: "./media/characters/pretzel/upright.svg",
  17866. extra: 534 / 522,
  17867. bottom: 0.065
  17868. }
  17869. },
  17870. sprawling: {
  17871. height: math.unit(3.75, "feet"),
  17872. weight: math.unit(300, "lb"),
  17873. name: "Sprawling",
  17874. image: {
  17875. source: "./media/characters/pretzel/sprawling.svg",
  17876. extra: 314 / 281,
  17877. bottom: 0.1
  17878. }
  17879. },
  17880. tongue: {
  17881. height: math.unit(2, "feet"),
  17882. name: "Tongue",
  17883. image: {
  17884. source: "./media/characters/pretzel/tongue.svg"
  17885. }
  17886. },
  17887. },
  17888. [
  17889. {
  17890. name: "Normal",
  17891. height: math.unit(7, "feet"),
  17892. default: true
  17893. },
  17894. {
  17895. name: "Oversized",
  17896. height: math.unit(15, "feet")
  17897. },
  17898. {
  17899. name: "Huge",
  17900. height: math.unit(30, "feet")
  17901. },
  17902. {
  17903. name: "Macro",
  17904. height: math.unit(250, "feet")
  17905. },
  17906. ]
  17907. ))
  17908. characterMakers.push(() => makeCharacter(
  17909. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17910. {
  17911. sideFront: {
  17912. height: math.unit(5 + 2 / 12, "feet"),
  17913. weight: math.unit(120, "lb"),
  17914. name: "Front Side",
  17915. image: {
  17916. source: "./media/characters/roxi/side-front.svg",
  17917. extra: 2924 / 2717,
  17918. bottom: 0.08
  17919. }
  17920. },
  17921. sideBack: {
  17922. height: math.unit(5 + 2 / 12, "feet"),
  17923. weight: math.unit(120, "lb"),
  17924. name: "Back Side",
  17925. image: {
  17926. source: "./media/characters/roxi/side-back.svg",
  17927. extra: 2904 / 2693,
  17928. bottom: 0.06
  17929. }
  17930. },
  17931. front: {
  17932. height: math.unit(5 + 2 / 12, "feet"),
  17933. weight: math.unit(120, "lb"),
  17934. name: "Front",
  17935. image: {
  17936. source: "./media/characters/roxi/front.svg",
  17937. extra: 2028 / 1907,
  17938. bottom: 0.01
  17939. }
  17940. },
  17941. frontAlt: {
  17942. height: math.unit(5 + 2 / 12, "feet"),
  17943. weight: math.unit(120, "lb"),
  17944. name: "Front (Alt)",
  17945. image: {
  17946. source: "./media/characters/roxi/front-alt.svg",
  17947. extra: 1828 / 1798,
  17948. bottom: 0.01
  17949. }
  17950. },
  17951. sitting: {
  17952. height: math.unit(2.8, "feet"),
  17953. weight: math.unit(120, "lb"),
  17954. name: "Sitting",
  17955. image: {
  17956. source: "./media/characters/roxi/sitting.svg",
  17957. extra: 2660 / 2462,
  17958. bottom: 0.1
  17959. }
  17960. },
  17961. },
  17962. [
  17963. {
  17964. name: "Normal",
  17965. height: math.unit(5 + 2 / 12, "feet"),
  17966. default: true
  17967. },
  17968. ]
  17969. ))
  17970. characterMakers.push(() => makeCharacter(
  17971. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17972. {
  17973. side: {
  17974. height: math.unit(55, "feet"),
  17975. weight: math.unit(153, "tons"),
  17976. name: "Side",
  17977. image: {
  17978. source: "./media/characters/shadow/side.svg",
  17979. extra: 701 / 628,
  17980. bottom: 0.02
  17981. }
  17982. },
  17983. flying: {
  17984. height: math.unit(145, "feet"),
  17985. weight: math.unit(153, "tons"),
  17986. name: "Flying",
  17987. image: {
  17988. source: "./media/characters/shadow/flying.svg"
  17989. }
  17990. },
  17991. },
  17992. [
  17993. {
  17994. name: "Normal",
  17995. height: math.unit(55, "feet"),
  17996. default: true
  17997. },
  17998. ]
  17999. ))
  18000. characterMakers.push(() => makeCharacter(
  18001. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18002. {
  18003. front: {
  18004. height: math.unit(6, "feet"),
  18005. weight: math.unit(200, "lb"),
  18006. name: "Front",
  18007. image: {
  18008. source: "./media/characters/marcie/front.svg",
  18009. extra: 960 / 876,
  18010. bottom: 58 / 1017.87
  18011. }
  18012. },
  18013. },
  18014. [
  18015. {
  18016. name: "Macro",
  18017. height: math.unit(1, "mile"),
  18018. default: true
  18019. },
  18020. ]
  18021. ))
  18022. characterMakers.push(() => makeCharacter(
  18023. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18024. {
  18025. front: {
  18026. height: math.unit(7, "feet"),
  18027. weight: math.unit(200, "lb"),
  18028. name: "Front",
  18029. image: {
  18030. source: "./media/characters/kachina/front.svg",
  18031. extra: 1290.68 / 1119,
  18032. bottom: 36.5 / 1327.18
  18033. }
  18034. },
  18035. },
  18036. [
  18037. {
  18038. name: "Normal",
  18039. height: math.unit(7, "feet"),
  18040. default: true
  18041. },
  18042. ]
  18043. ))
  18044. characterMakers.push(() => makeCharacter(
  18045. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18046. {
  18047. looking: {
  18048. height: math.unit(2, "meters"),
  18049. weight: math.unit(300, "kg"),
  18050. name: "Looking",
  18051. image: {
  18052. source: "./media/characters/kash/looking.svg",
  18053. extra: 474 / 344,
  18054. bottom: 0.03
  18055. }
  18056. },
  18057. side: {
  18058. height: math.unit(2, "meters"),
  18059. weight: math.unit(300, "kg"),
  18060. name: "Side",
  18061. image: {
  18062. source: "./media/characters/kash/side.svg",
  18063. extra: 302 / 251,
  18064. bottom: 0.03
  18065. }
  18066. },
  18067. front: {
  18068. height: math.unit(2, "meters"),
  18069. weight: math.unit(300, "kg"),
  18070. name: "Front",
  18071. image: {
  18072. source: "./media/characters/kash/front.svg",
  18073. extra: 495 / 360,
  18074. bottom: 0.015
  18075. }
  18076. },
  18077. },
  18078. [
  18079. {
  18080. name: "Normal",
  18081. height: math.unit(2, "meters"),
  18082. default: true
  18083. },
  18084. {
  18085. name: "Big",
  18086. height: math.unit(3, "meters")
  18087. },
  18088. {
  18089. name: "Large",
  18090. height: math.unit(5, "meters")
  18091. },
  18092. ]
  18093. ))
  18094. characterMakers.push(() => makeCharacter(
  18095. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18096. {
  18097. feeding: {
  18098. height: math.unit(6.7, "feet"),
  18099. weight: math.unit(350, "lb"),
  18100. name: "Feeding",
  18101. image: {
  18102. source: "./media/characters/lalim/feeding.svg",
  18103. }
  18104. },
  18105. },
  18106. [
  18107. {
  18108. name: "Normal",
  18109. height: math.unit(6.7, "feet"),
  18110. default: true
  18111. },
  18112. ]
  18113. ))
  18114. characterMakers.push(() => makeCharacter(
  18115. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18116. {
  18117. front: {
  18118. height: math.unit(9.5, "feet"),
  18119. weight: math.unit(600, "lb"),
  18120. name: "Front",
  18121. image: {
  18122. source: "./media/characters/de'vout/front.svg",
  18123. extra: 1443 / 1328,
  18124. bottom: 0.025
  18125. }
  18126. },
  18127. back: {
  18128. height: math.unit(9.5, "feet"),
  18129. weight: math.unit(600, "lb"),
  18130. name: "Back",
  18131. image: {
  18132. source: "./media/characters/de'vout/back.svg",
  18133. extra: 1443 / 1328
  18134. }
  18135. },
  18136. frontDressed: {
  18137. height: math.unit(9.5, "feet"),
  18138. weight: math.unit(600, "lb"),
  18139. name: "Front (Dressed",
  18140. image: {
  18141. source: "./media/characters/de'vout/front-dressed.svg",
  18142. extra: 1443 / 1328,
  18143. bottom: 0.025
  18144. }
  18145. },
  18146. backDressed: {
  18147. height: math.unit(9.5, "feet"),
  18148. weight: math.unit(600, "lb"),
  18149. name: "Back (Dressed",
  18150. image: {
  18151. source: "./media/characters/de'vout/back-dressed.svg",
  18152. extra: 1443 / 1328
  18153. }
  18154. },
  18155. },
  18156. [
  18157. {
  18158. name: "Normal",
  18159. height: math.unit(9.5, "feet"),
  18160. default: true
  18161. },
  18162. ]
  18163. ))
  18164. characterMakers.push(() => makeCharacter(
  18165. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18166. {
  18167. front: {
  18168. height: math.unit(8, "feet"),
  18169. weight: math.unit(225, "lb"),
  18170. name: "Front",
  18171. image: {
  18172. source: "./media/characters/talana/front.svg",
  18173. extra: 1410 / 1300,
  18174. bottom: 0.015
  18175. }
  18176. },
  18177. frontDressed: {
  18178. height: math.unit(8, "feet"),
  18179. weight: math.unit(225, "lb"),
  18180. name: "Front (Dressed",
  18181. image: {
  18182. source: "./media/characters/talana/front-dressed.svg",
  18183. extra: 1410 / 1300,
  18184. bottom: 0.015
  18185. }
  18186. },
  18187. },
  18188. [
  18189. {
  18190. name: "Normal",
  18191. height: math.unit(8, "feet"),
  18192. default: true
  18193. },
  18194. ]
  18195. ))
  18196. characterMakers.push(() => makeCharacter(
  18197. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18198. {
  18199. side: {
  18200. height: math.unit(7.2, "feet"),
  18201. weight: math.unit(150, "lb"),
  18202. name: "Side",
  18203. image: {
  18204. source: "./media/characters/xeauvok/side.svg",
  18205. extra: 1975 / 1523,
  18206. bottom: 0.07
  18207. }
  18208. },
  18209. },
  18210. [
  18211. {
  18212. name: "Normal",
  18213. height: math.unit(7.2, "feet"),
  18214. default: true
  18215. },
  18216. ]
  18217. ))
  18218. characterMakers.push(() => makeCharacter(
  18219. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18220. {
  18221. side: {
  18222. height: math.unit(10, "feet"),
  18223. weight: math.unit(900, "kg"),
  18224. name: "Side",
  18225. image: {
  18226. source: "./media/characters/zara/side.svg",
  18227. extra: 504 / 498
  18228. }
  18229. },
  18230. },
  18231. [
  18232. {
  18233. name: "Normal",
  18234. height: math.unit(10, "feet"),
  18235. default: true
  18236. },
  18237. ]
  18238. ))
  18239. characterMakers.push(() => makeCharacter(
  18240. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18241. {
  18242. side: {
  18243. height: math.unit(6, "feet"),
  18244. weight: math.unit(150, "lb"),
  18245. name: "Side",
  18246. image: {
  18247. source: "./media/characters/richard-dragon/side.svg",
  18248. extra: 845 / 340,
  18249. bottom: 0.017
  18250. }
  18251. },
  18252. maw: {
  18253. height: math.unit(2.97, "feet"),
  18254. name: "Maw",
  18255. image: {
  18256. source: "./media/characters/richard-dragon/maw.svg"
  18257. }
  18258. },
  18259. },
  18260. [
  18261. ]
  18262. ))
  18263. characterMakers.push(() => makeCharacter(
  18264. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18265. {
  18266. front: {
  18267. height: math.unit(4, "feet"),
  18268. weight: math.unit(100, "lb"),
  18269. name: "Front",
  18270. image: {
  18271. source: "./media/characters/richard-smeargle/front.svg",
  18272. extra: 2952 / 2820,
  18273. bottom: 0.028
  18274. }
  18275. },
  18276. },
  18277. [
  18278. {
  18279. name: "Normal",
  18280. height: math.unit(4, "feet"),
  18281. default: true
  18282. },
  18283. {
  18284. name: "Dynamax",
  18285. height: math.unit(20, "meters")
  18286. },
  18287. ]
  18288. ))
  18289. characterMakers.push(() => makeCharacter(
  18290. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18291. {
  18292. front: {
  18293. height: math.unit(6, "feet"),
  18294. weight: math.unit(110, "lb"),
  18295. name: "Front",
  18296. image: {
  18297. source: "./media/characters/klay/front.svg",
  18298. extra: 962 / 883,
  18299. bottom: 0.04
  18300. }
  18301. },
  18302. back: {
  18303. height: math.unit(6, "feet"),
  18304. weight: math.unit(110, "lb"),
  18305. name: "Back",
  18306. image: {
  18307. source: "./media/characters/klay/back.svg",
  18308. extra: 962 / 883
  18309. }
  18310. },
  18311. beans: {
  18312. height: math.unit(1.15, "feet"),
  18313. name: "Beans",
  18314. image: {
  18315. source: "./media/characters/klay/beans.svg"
  18316. }
  18317. },
  18318. },
  18319. [
  18320. {
  18321. name: "Micro",
  18322. height: math.unit(6, "inches")
  18323. },
  18324. {
  18325. name: "Mini",
  18326. height: math.unit(3, "feet")
  18327. },
  18328. {
  18329. name: "Normal",
  18330. height: math.unit(6, "feet"),
  18331. default: true
  18332. },
  18333. {
  18334. name: "Big",
  18335. height: math.unit(25, "feet")
  18336. },
  18337. {
  18338. name: "Macro",
  18339. height: math.unit(100, "feet")
  18340. },
  18341. {
  18342. name: "Megamacro",
  18343. height: math.unit(400, "feet")
  18344. },
  18345. ]
  18346. ))
  18347. characterMakers.push(() => makeCharacter(
  18348. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18349. {
  18350. front: {
  18351. height: math.unit(6, "feet"),
  18352. weight: math.unit(160, "lb"),
  18353. name: "Front",
  18354. image: {
  18355. source: "./media/characters/marcus/front.svg",
  18356. extra: 734 / 676,
  18357. bottom: 0.03
  18358. }
  18359. },
  18360. },
  18361. [
  18362. {
  18363. name: "Little",
  18364. height: math.unit(6, "feet")
  18365. },
  18366. {
  18367. name: "Normal",
  18368. height: math.unit(110, "feet"),
  18369. default: true
  18370. },
  18371. {
  18372. name: "Macro",
  18373. height: math.unit(250, "feet")
  18374. },
  18375. {
  18376. name: "Megamacro",
  18377. height: math.unit(1000, "feet")
  18378. },
  18379. ]
  18380. ))
  18381. characterMakers.push(() => makeCharacter(
  18382. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18383. {
  18384. front: {
  18385. height: math.unit(7, "feet"),
  18386. weight: math.unit(275, "lb"),
  18387. name: "Front",
  18388. image: {
  18389. source: "./media/characters/claude-delroute/front.svg",
  18390. extra: 230 / 214,
  18391. bottom: 0.007
  18392. }
  18393. },
  18394. side: {
  18395. height: math.unit(7, "feet"),
  18396. weight: math.unit(275, "lb"),
  18397. name: "Side",
  18398. image: {
  18399. source: "./media/characters/claude-delroute/side.svg",
  18400. extra: 222 / 214,
  18401. bottom: 0.01
  18402. }
  18403. },
  18404. back: {
  18405. height: math.unit(7, "feet"),
  18406. weight: math.unit(275, "lb"),
  18407. name: "Back",
  18408. image: {
  18409. source: "./media/characters/claude-delroute/back.svg",
  18410. extra: 230 / 214,
  18411. bottom: 0.015
  18412. }
  18413. },
  18414. maw: {
  18415. height: math.unit(0.6407, "meters"),
  18416. name: "Maw",
  18417. image: {
  18418. source: "./media/characters/claude-delroute/maw.svg"
  18419. }
  18420. },
  18421. },
  18422. [
  18423. {
  18424. name: "Normal",
  18425. height: math.unit(7, "feet"),
  18426. default: true
  18427. },
  18428. {
  18429. name: "Lorge",
  18430. height: math.unit(20, "feet")
  18431. },
  18432. ]
  18433. ))
  18434. characterMakers.push(() => makeCharacter(
  18435. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18436. {
  18437. front: {
  18438. height: math.unit(8 + 4 / 12, "feet"),
  18439. weight: math.unit(600, "lb"),
  18440. name: "Front",
  18441. image: {
  18442. source: "./media/characters/dragonien/front.svg",
  18443. extra: 100 / 94,
  18444. bottom: 3.3 / 103.3445
  18445. }
  18446. },
  18447. back: {
  18448. height: math.unit(8 + 4 / 12, "feet"),
  18449. weight: math.unit(600, "lb"),
  18450. name: "Back",
  18451. image: {
  18452. source: "./media/characters/dragonien/back.svg",
  18453. extra: 776 / 746,
  18454. bottom: 6.4 / 782.0616
  18455. }
  18456. },
  18457. foot: {
  18458. height: math.unit(1.54, "feet"),
  18459. name: "Foot",
  18460. image: {
  18461. source: "./media/characters/dragonien/foot.svg",
  18462. }
  18463. },
  18464. },
  18465. [
  18466. {
  18467. name: "Normal",
  18468. height: math.unit(8 + 4 / 12, "feet"),
  18469. default: true
  18470. },
  18471. {
  18472. name: "Macro",
  18473. height: math.unit(200, "feet")
  18474. },
  18475. {
  18476. name: "Megamacro",
  18477. height: math.unit(1, "mile")
  18478. },
  18479. {
  18480. name: "Gigamacro",
  18481. height: math.unit(1000, "miles")
  18482. },
  18483. ]
  18484. ))
  18485. characterMakers.push(() => makeCharacter(
  18486. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18487. {
  18488. front: {
  18489. height: math.unit(5 + 2 / 12, "feet"),
  18490. weight: math.unit(110, "lb"),
  18491. name: "Front",
  18492. image: {
  18493. source: "./media/characters/desta/front.svg",
  18494. extra: 767 / 726,
  18495. bottom: 11.7 / 779
  18496. }
  18497. },
  18498. back: {
  18499. height: math.unit(5 + 2 / 12, "feet"),
  18500. weight: math.unit(110, "lb"),
  18501. name: "Back",
  18502. image: {
  18503. source: "./media/characters/desta/back.svg",
  18504. extra: 777 / 728,
  18505. bottom: 6 / 784
  18506. }
  18507. },
  18508. frontAlt: {
  18509. height: math.unit(5 + 2 / 12, "feet"),
  18510. weight: math.unit(110, "lb"),
  18511. name: "Front",
  18512. image: {
  18513. source: "./media/characters/desta/front-alt.svg",
  18514. extra: 1482 / 1417
  18515. }
  18516. },
  18517. side: {
  18518. height: math.unit(5 + 2 / 12, "feet"),
  18519. weight: math.unit(110, "lb"),
  18520. name: "Side",
  18521. image: {
  18522. source: "./media/characters/desta/side.svg",
  18523. extra: 2579 / 2491,
  18524. bottom: 0.053
  18525. }
  18526. },
  18527. },
  18528. [
  18529. {
  18530. name: "Micro",
  18531. height: math.unit(6, "inches")
  18532. },
  18533. {
  18534. name: "Normal",
  18535. height: math.unit(5 + 2 / 12, "feet"),
  18536. default: true
  18537. },
  18538. {
  18539. name: "Macro",
  18540. height: math.unit(62, "feet")
  18541. },
  18542. {
  18543. name: "Megamacro",
  18544. height: math.unit(1800, "feet")
  18545. },
  18546. ]
  18547. ))
  18548. characterMakers.push(() => makeCharacter(
  18549. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18550. {
  18551. front: {
  18552. height: math.unit(10, "feet"),
  18553. weight: math.unit(700, "lb"),
  18554. name: "Front",
  18555. image: {
  18556. source: "./media/characters/storm-alystar/front.svg",
  18557. extra: 2112 / 1898,
  18558. bottom: 0.034
  18559. }
  18560. },
  18561. },
  18562. [
  18563. {
  18564. name: "Micro",
  18565. height: math.unit(3.5, "inches")
  18566. },
  18567. {
  18568. name: "Normal",
  18569. height: math.unit(10, "feet"),
  18570. default: true
  18571. },
  18572. {
  18573. name: "Macro",
  18574. height: math.unit(400, "feet")
  18575. },
  18576. {
  18577. name: "Deific",
  18578. height: math.unit(60, "miles")
  18579. },
  18580. ]
  18581. ))
  18582. characterMakers.push(() => makeCharacter(
  18583. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18584. {
  18585. front: {
  18586. height: math.unit(2.35, "meters"),
  18587. weight: math.unit(119, "kg"),
  18588. name: "Front",
  18589. image: {
  18590. source: "./media/characters/ilia/front.svg",
  18591. extra: 1285 / 1255,
  18592. bottom: 0.06
  18593. }
  18594. },
  18595. },
  18596. [
  18597. {
  18598. name: "Normal",
  18599. height: math.unit(2.35, "meters")
  18600. },
  18601. {
  18602. name: "Macro",
  18603. height: math.unit(140, "meters"),
  18604. default: true
  18605. },
  18606. {
  18607. name: "Megamacro",
  18608. height: math.unit(100, "miles")
  18609. },
  18610. ]
  18611. ))
  18612. characterMakers.push(() => makeCharacter(
  18613. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18614. {
  18615. front: {
  18616. height: math.unit(6 + 5 / 12, "feet"),
  18617. weight: math.unit(190, "lb"),
  18618. name: "Front",
  18619. image: {
  18620. source: "./media/characters/kingdead/front.svg",
  18621. extra: 1228 / 1177
  18622. }
  18623. },
  18624. },
  18625. [
  18626. {
  18627. name: "Micro",
  18628. height: math.unit(7, "inches")
  18629. },
  18630. {
  18631. name: "Normal",
  18632. height: math.unit(6 + 5 / 12, "feet")
  18633. },
  18634. {
  18635. name: "Macro",
  18636. height: math.unit(150, "feet"),
  18637. default: true
  18638. },
  18639. {
  18640. name: "Megamacro",
  18641. height: math.unit(200, "miles")
  18642. },
  18643. ]
  18644. ))
  18645. characterMakers.push(() => makeCharacter(
  18646. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18647. {
  18648. front: {
  18649. height: math.unit(8, "feet"),
  18650. weight: math.unit(600, "lb"),
  18651. name: "Front",
  18652. image: {
  18653. source: "./media/characters/kyrehx/front.svg",
  18654. extra: 1195 / 1095,
  18655. bottom: 0.034
  18656. }
  18657. },
  18658. },
  18659. [
  18660. {
  18661. name: "Micro",
  18662. height: math.unit(2, "inches")
  18663. },
  18664. {
  18665. name: "Normal",
  18666. height: math.unit(8, "feet"),
  18667. default: true
  18668. },
  18669. {
  18670. name: "Macro",
  18671. height: math.unit(255, "feet")
  18672. },
  18673. ]
  18674. ))
  18675. characterMakers.push(() => makeCharacter(
  18676. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18677. {
  18678. front: {
  18679. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18680. weight: math.unit(184, "lb"),
  18681. name: "Front",
  18682. image: {
  18683. source: "./media/characters/xang/front.svg",
  18684. extra: 845 / 755
  18685. }
  18686. },
  18687. },
  18688. [
  18689. {
  18690. name: "Normal",
  18691. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18692. default: true
  18693. },
  18694. {
  18695. name: "Macro",
  18696. height: math.unit(0.935 * 146, "feet")
  18697. },
  18698. {
  18699. name: "Megamacro",
  18700. height: math.unit(0.935 * 3, "miles")
  18701. },
  18702. ]
  18703. ))
  18704. characterMakers.push(() => makeCharacter(
  18705. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18706. {
  18707. frontDressed: {
  18708. height: math.unit(5 + 7 / 12, "feet"),
  18709. weight: math.unit(140, "lb"),
  18710. name: "Front (Dressed)",
  18711. image: {
  18712. source: "./media/characters/doc-weardno/front-dressed.svg",
  18713. extra: 263 / 234
  18714. }
  18715. },
  18716. backDressed: {
  18717. height: math.unit(5 + 7 / 12, "feet"),
  18718. weight: math.unit(140, "lb"),
  18719. name: "Back (Dressed)",
  18720. image: {
  18721. source: "./media/characters/doc-weardno/back-dressed.svg",
  18722. extra: 266 / 238
  18723. }
  18724. },
  18725. front: {
  18726. height: math.unit(5 + 7 / 12, "feet"),
  18727. weight: math.unit(140, "lb"),
  18728. name: "Front",
  18729. image: {
  18730. source: "./media/characters/doc-weardno/front.svg",
  18731. extra: 254 / 233
  18732. }
  18733. },
  18734. },
  18735. [
  18736. {
  18737. name: "Micro",
  18738. height: math.unit(3, "inches")
  18739. },
  18740. {
  18741. name: "Normal",
  18742. height: math.unit(5 + 7 / 12, "feet"),
  18743. default: true
  18744. },
  18745. {
  18746. name: "Macro",
  18747. height: math.unit(25, "feet")
  18748. },
  18749. {
  18750. name: "Megamacro",
  18751. height: math.unit(2, "miles")
  18752. },
  18753. ]
  18754. ))
  18755. characterMakers.push(() => makeCharacter(
  18756. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18757. {
  18758. front: {
  18759. height: math.unit(6 + 2 / 12, "feet"),
  18760. weight: math.unit(153, "lb"),
  18761. name: "Front",
  18762. image: {
  18763. source: "./media/characters/seth-whilst/front.svg",
  18764. bottom: 0.07
  18765. }
  18766. },
  18767. },
  18768. [
  18769. {
  18770. name: "Micro",
  18771. height: math.unit(5, "inches")
  18772. },
  18773. {
  18774. name: "Normal",
  18775. height: math.unit(6 + 2 / 12, "feet"),
  18776. default: true
  18777. },
  18778. ]
  18779. ))
  18780. characterMakers.push(() => makeCharacter(
  18781. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18782. {
  18783. front: {
  18784. height: math.unit(3, "inches"),
  18785. weight: math.unit(8, "grams"),
  18786. name: "Front",
  18787. image: {
  18788. source: "./media/characters/pocket-jabari/front.svg",
  18789. extra: 1024 / 974,
  18790. bottom: 0.039
  18791. }
  18792. },
  18793. },
  18794. [
  18795. {
  18796. name: "Minimicro",
  18797. height: math.unit(8, "mm")
  18798. },
  18799. {
  18800. name: "Micro",
  18801. height: math.unit(3, "inches"),
  18802. default: true
  18803. },
  18804. {
  18805. name: "Normal",
  18806. height: math.unit(3, "feet")
  18807. },
  18808. ]
  18809. ))
  18810. characterMakers.push(() => makeCharacter(
  18811. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18812. {
  18813. front: {
  18814. height: math.unit(15, "feet"),
  18815. weight: math.unit(3280, "lb"),
  18816. name: "Front",
  18817. image: {
  18818. source: "./media/characters/sapphy/front.svg",
  18819. extra: 671 / 577,
  18820. bottom: 0.085
  18821. }
  18822. },
  18823. back: {
  18824. height: math.unit(15, "feet"),
  18825. weight: math.unit(3280, "lb"),
  18826. name: "Back",
  18827. image: {
  18828. source: "./media/characters/sapphy/back.svg",
  18829. extra: 631 / 607,
  18830. bottom: 0.045
  18831. }
  18832. },
  18833. },
  18834. [
  18835. {
  18836. name: "Normal",
  18837. height: math.unit(15, "feet")
  18838. },
  18839. {
  18840. name: "Casual Macro",
  18841. height: math.unit(120, "feet")
  18842. },
  18843. {
  18844. name: "Macro",
  18845. height: math.unit(2150, "feet"),
  18846. default: true
  18847. },
  18848. {
  18849. name: "Megamacro",
  18850. height: math.unit(8, "miles")
  18851. },
  18852. {
  18853. name: "Galaxy Mom",
  18854. height: math.unit(6, "megalightyears")
  18855. },
  18856. ]
  18857. ))
  18858. characterMakers.push(() => makeCharacter(
  18859. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18860. {
  18861. front: {
  18862. height: math.unit(6, "feet"),
  18863. weight: math.unit(170, "lb"),
  18864. name: "Front",
  18865. image: {
  18866. source: "./media/characters/kiro/front.svg",
  18867. extra: 1064 / 1012,
  18868. bottom: 0.052
  18869. }
  18870. },
  18871. },
  18872. [
  18873. {
  18874. name: "Micro",
  18875. height: math.unit(6, "inches")
  18876. },
  18877. {
  18878. name: "Normal",
  18879. height: math.unit(6, "feet"),
  18880. default: true
  18881. },
  18882. {
  18883. name: "Macro",
  18884. height: math.unit(72, "feet")
  18885. },
  18886. ]
  18887. ))
  18888. characterMakers.push(() => makeCharacter(
  18889. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18890. {
  18891. front: {
  18892. height: math.unit(5 + 9 / 12, "feet"),
  18893. weight: math.unit(175, "lb"),
  18894. name: "Front",
  18895. image: {
  18896. source: "./media/characters/irishfox/front.svg",
  18897. extra: 1912 / 1680,
  18898. bottom: 0.02
  18899. }
  18900. },
  18901. },
  18902. [
  18903. {
  18904. name: "Nano",
  18905. height: math.unit(1, "mm")
  18906. },
  18907. {
  18908. name: "Micro",
  18909. height: math.unit(2, "inches")
  18910. },
  18911. {
  18912. name: "Normal",
  18913. height: math.unit(5 + 9 / 12, "feet"),
  18914. default: true
  18915. },
  18916. {
  18917. name: "Macro",
  18918. height: math.unit(45, "feet")
  18919. },
  18920. ]
  18921. ))
  18922. characterMakers.push(() => makeCharacter(
  18923. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18924. {
  18925. front: {
  18926. height: math.unit(6 + 1 / 12, "feet"),
  18927. weight: math.unit(75, "lb"),
  18928. name: "Front",
  18929. image: {
  18930. source: "./media/characters/aronai-sieyes/front.svg",
  18931. extra: 1556 / 1480,
  18932. bottom: 0.015
  18933. }
  18934. },
  18935. side: {
  18936. height: math.unit(6 + 1 / 12, "feet"),
  18937. weight: math.unit(75, "lb"),
  18938. name: "Side",
  18939. image: {
  18940. source: "./media/characters/aronai-sieyes/side.svg",
  18941. extra: 1433 / 1390,
  18942. bottom: 0.0393
  18943. }
  18944. },
  18945. back: {
  18946. height: math.unit(6 + 1 / 12, "feet"),
  18947. weight: math.unit(75, "lb"),
  18948. name: "Back",
  18949. image: {
  18950. source: "./media/characters/aronai-sieyes/back.svg",
  18951. extra: 1544 / 1494,
  18952. bottom: 0.02
  18953. }
  18954. },
  18955. frontClothed: {
  18956. height: math.unit(6 + 1 / 12, "feet"),
  18957. weight: math.unit(75, "lb"),
  18958. name: "Front (Clothed)",
  18959. image: {
  18960. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18961. extra: 1582 / 1527
  18962. }
  18963. },
  18964. feral: {
  18965. height: math.unit(18, "feet"),
  18966. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18967. name: "Feral",
  18968. image: {
  18969. source: "./media/characters/aronai-sieyes/feral.svg",
  18970. extra: 1530 / 1240,
  18971. bottom: 0.035
  18972. }
  18973. },
  18974. },
  18975. [
  18976. {
  18977. name: "Micro",
  18978. height: math.unit(2, "inches")
  18979. },
  18980. {
  18981. name: "Normal",
  18982. height: math.unit(6 + 1 / 12, "feet"),
  18983. default: true
  18984. }
  18985. ]
  18986. ))
  18987. characterMakers.push(() => makeCharacter(
  18988. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18989. {
  18990. front: {
  18991. height: math.unit(12, "feet"),
  18992. weight: math.unit(410, "kg"),
  18993. name: "Front",
  18994. image: {
  18995. source: "./media/characters/xuna/front.svg",
  18996. extra: 2184 / 1980
  18997. }
  18998. },
  18999. side: {
  19000. height: math.unit(12, "feet"),
  19001. weight: math.unit(410, "kg"),
  19002. name: "Side",
  19003. image: {
  19004. source: "./media/characters/xuna/side.svg",
  19005. extra: 2184 / 1980
  19006. }
  19007. },
  19008. back: {
  19009. height: math.unit(12, "feet"),
  19010. weight: math.unit(410, "kg"),
  19011. name: "Back",
  19012. image: {
  19013. source: "./media/characters/xuna/back.svg",
  19014. extra: 2184 / 1980
  19015. }
  19016. },
  19017. },
  19018. [
  19019. {
  19020. name: "Nano glow",
  19021. height: math.unit(10, "nm")
  19022. },
  19023. {
  19024. name: "Micro floof",
  19025. height: math.unit(0.3, "m")
  19026. },
  19027. {
  19028. name: "Huggable softy boi",
  19029. height: math.unit(3.6576, "m"),
  19030. default: true
  19031. },
  19032. {
  19033. name: "Admirable floof",
  19034. height: math.unit(80, "meters")
  19035. },
  19036. {
  19037. name: "Gentle macro",
  19038. height: math.unit(300, "meters")
  19039. },
  19040. {
  19041. name: "Very careful floof",
  19042. height: math.unit(3200, "meters")
  19043. },
  19044. {
  19045. name: "The mega floof",
  19046. height: math.unit(36000, "meters")
  19047. },
  19048. {
  19049. name: "Giga-fur-Wicker",
  19050. height: math.unit(4800000, "meters")
  19051. },
  19052. {
  19053. name: "Licky world",
  19054. height: math.unit(20000000, "meters")
  19055. },
  19056. {
  19057. name: "Floofy cyan sun",
  19058. height: math.unit(1500000000, "meters")
  19059. },
  19060. {
  19061. name: "Milky Wicker",
  19062. height: math.unit(1000000000000000000000, "meters")
  19063. },
  19064. {
  19065. name: "The observing Wicker",
  19066. height: math.unit(999999999999999999999999999, "meters")
  19067. },
  19068. ]
  19069. ))
  19070. characterMakers.push(() => makeCharacter(
  19071. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19072. {
  19073. front: {
  19074. height: math.unit(5 + 9 / 12, "feet"),
  19075. weight: math.unit(150, "lb"),
  19076. name: "Front",
  19077. image: {
  19078. source: "./media/characters/arokha-sieyes/front.svg",
  19079. extra: 1425 / 1284,
  19080. bottom: 0.05
  19081. }
  19082. },
  19083. },
  19084. [
  19085. {
  19086. name: "Normal",
  19087. height: math.unit(5 + 9 / 12, "feet")
  19088. },
  19089. {
  19090. name: "Macro",
  19091. height: math.unit(30, "meters"),
  19092. default: true
  19093. },
  19094. ]
  19095. ))
  19096. characterMakers.push(() => makeCharacter(
  19097. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19098. {
  19099. front: {
  19100. height: math.unit(6, "feet"),
  19101. weight: math.unit(180, "lb"),
  19102. name: "Front",
  19103. image: {
  19104. source: "./media/characters/arokh-sieyes/front.svg",
  19105. extra: 1830 / 1769,
  19106. bottom: 0.01
  19107. }
  19108. },
  19109. },
  19110. [
  19111. {
  19112. name: "Normal",
  19113. height: math.unit(6, "feet")
  19114. },
  19115. {
  19116. name: "Macro",
  19117. height: math.unit(30, "meters"),
  19118. default: true
  19119. },
  19120. ]
  19121. ))
  19122. characterMakers.push(() => makeCharacter(
  19123. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19124. {
  19125. side: {
  19126. height: math.unit(13 + 1 / 12, "feet"),
  19127. weight: math.unit(8.5, "tonnes"),
  19128. name: "Side",
  19129. image: {
  19130. source: "./media/characters/goldeneye/side.svg",
  19131. extra: 1182 / 778,
  19132. bottom: 0.067
  19133. }
  19134. },
  19135. paw: {
  19136. height: math.unit(3.4, "feet"),
  19137. name: "Paw",
  19138. image: {
  19139. source: "./media/characters/goldeneye/paw.svg"
  19140. }
  19141. },
  19142. },
  19143. [
  19144. {
  19145. name: "Normal",
  19146. height: math.unit(13 + 1 / 12, "feet"),
  19147. default: true
  19148. },
  19149. ]
  19150. ))
  19151. characterMakers.push(() => makeCharacter(
  19152. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19153. {
  19154. front: {
  19155. height: math.unit(6 + 1 / 12, "feet"),
  19156. weight: math.unit(210, "lb"),
  19157. name: "Front",
  19158. image: {
  19159. source: "./media/characters/leonardo-lycheborne/front.svg",
  19160. extra: 776/723,
  19161. bottom: 34/810
  19162. }
  19163. },
  19164. side: {
  19165. height: math.unit(6 + 1 / 12, "feet"),
  19166. weight: math.unit(210, "lb"),
  19167. name: "Side",
  19168. image: {
  19169. source: "./media/characters/leonardo-lycheborne/side.svg",
  19170. extra: 780/728,
  19171. bottom: 12/792
  19172. }
  19173. },
  19174. back: {
  19175. height: math.unit(6 + 1 / 12, "feet"),
  19176. weight: math.unit(210, "lb"),
  19177. name: "Back",
  19178. image: {
  19179. source: "./media/characters/leonardo-lycheborne/back.svg",
  19180. extra: 775/721,
  19181. bottom: 17/792
  19182. }
  19183. },
  19184. hand: {
  19185. height: math.unit(1.08, "feet"),
  19186. name: "Hand",
  19187. image: {
  19188. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19189. }
  19190. },
  19191. foot: {
  19192. height: math.unit(1.32, "feet"),
  19193. name: "Foot",
  19194. image: {
  19195. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19196. }
  19197. },
  19198. maw: {
  19199. height: math.unit(1, "feet"),
  19200. name: "Maw",
  19201. image: {
  19202. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19203. }
  19204. },
  19205. were: {
  19206. height: math.unit(20, "feet"),
  19207. weight: math.unit(7800, "lb"),
  19208. name: "Were",
  19209. image: {
  19210. source: "./media/characters/leonardo-lycheborne/were.svg",
  19211. extra: 1224/1165,
  19212. bottom: 72/1296
  19213. }
  19214. },
  19215. feral: {
  19216. height: math.unit(7.5, "feet"),
  19217. weight: math.unit(600, "lb"),
  19218. name: "Feral",
  19219. image: {
  19220. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19221. extra: 797/702,
  19222. bottom: 139/936
  19223. }
  19224. },
  19225. taur: {
  19226. height: math.unit(11, "feet"),
  19227. weight: math.unit(3300, "lb"),
  19228. name: "Taur",
  19229. image: {
  19230. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19231. extra: 1271/1197,
  19232. bottom: 47/1318
  19233. }
  19234. },
  19235. barghest: {
  19236. height: math.unit(11, "feet"),
  19237. weight: math.unit(1300, "lb"),
  19238. name: "Barghest",
  19239. image: {
  19240. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19241. extra: 1291/1204,
  19242. bottom: 37/1328
  19243. }
  19244. },
  19245. dick: {
  19246. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19247. name: "Dick",
  19248. image: {
  19249. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19250. }
  19251. },
  19252. dickWere: {
  19253. height: math.unit((20) / 3.8, "feet"),
  19254. name: "Dick (Were)",
  19255. image: {
  19256. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19257. }
  19258. },
  19259. },
  19260. [
  19261. {
  19262. name: "Normal",
  19263. height: math.unit(6 + 1 / 12, "feet"),
  19264. default: true
  19265. },
  19266. ]
  19267. ))
  19268. characterMakers.push(() => makeCharacter(
  19269. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19270. {
  19271. front: {
  19272. height: math.unit(10, "feet"),
  19273. weight: math.unit(350, "lb"),
  19274. name: "Front",
  19275. image: {
  19276. source: "./media/characters/jet/front.svg",
  19277. extra: 2050 / 1980,
  19278. bottom: 0.013
  19279. }
  19280. },
  19281. back: {
  19282. height: math.unit(10, "feet"),
  19283. weight: math.unit(350, "lb"),
  19284. name: "Back",
  19285. image: {
  19286. source: "./media/characters/jet/back.svg",
  19287. extra: 2050 / 1980,
  19288. bottom: 0.013
  19289. }
  19290. },
  19291. },
  19292. [
  19293. {
  19294. name: "Micro",
  19295. height: math.unit(6, "inches")
  19296. },
  19297. {
  19298. name: "Normal",
  19299. height: math.unit(10, "feet"),
  19300. default: true
  19301. },
  19302. {
  19303. name: "Macro",
  19304. height: math.unit(100, "feet")
  19305. },
  19306. ]
  19307. ))
  19308. characterMakers.push(() => makeCharacter(
  19309. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19310. {
  19311. front: {
  19312. height: math.unit(15, "feet"),
  19313. weight: math.unit(2800, "lb"),
  19314. name: "Front",
  19315. image: {
  19316. source: "./media/characters/tanarath/front.svg",
  19317. extra: 2392 / 2220,
  19318. bottom: 0.03
  19319. }
  19320. },
  19321. back: {
  19322. height: math.unit(15, "feet"),
  19323. weight: math.unit(2800, "lb"),
  19324. name: "Back",
  19325. image: {
  19326. source: "./media/characters/tanarath/back.svg",
  19327. extra: 2392 / 2220,
  19328. bottom: 0.03
  19329. }
  19330. },
  19331. },
  19332. [
  19333. {
  19334. name: "Normal",
  19335. height: math.unit(15, "feet"),
  19336. default: true
  19337. },
  19338. ]
  19339. ))
  19340. characterMakers.push(() => makeCharacter(
  19341. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19342. {
  19343. front: {
  19344. height: math.unit(7 + 1 / 12, "feet"),
  19345. weight: math.unit(175, "lb"),
  19346. name: "Front",
  19347. image: {
  19348. source: "./media/characters/patty-cattybatty/front.svg",
  19349. extra: 908 / 874,
  19350. bottom: 0.025
  19351. }
  19352. },
  19353. },
  19354. [
  19355. {
  19356. name: "Micro",
  19357. height: math.unit(1, "inch")
  19358. },
  19359. {
  19360. name: "Normal",
  19361. height: math.unit(7 + 1 / 12, "feet")
  19362. },
  19363. {
  19364. name: "Mini Macro",
  19365. height: math.unit(155, "feet")
  19366. },
  19367. {
  19368. name: "Macro",
  19369. height: math.unit(1077, "feet")
  19370. },
  19371. {
  19372. name: "Mega Macro",
  19373. height: math.unit(47650, "feet"),
  19374. default: true
  19375. },
  19376. {
  19377. name: "Giga Macro",
  19378. height: math.unit(440, "miles")
  19379. },
  19380. {
  19381. name: "Tera Macro",
  19382. height: math.unit(8700, "miles")
  19383. },
  19384. {
  19385. name: "Planetary Macro",
  19386. height: math.unit(32700, "miles")
  19387. },
  19388. {
  19389. name: "Solar Macro",
  19390. height: math.unit(550000, "miles")
  19391. },
  19392. {
  19393. name: "Celestial Macro",
  19394. height: math.unit(2.5, "AU")
  19395. },
  19396. ]
  19397. ))
  19398. characterMakers.push(() => makeCharacter(
  19399. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19400. {
  19401. front: {
  19402. height: math.unit(4 + 5 / 12, "feet"),
  19403. weight: math.unit(90, "lb"),
  19404. name: "Front",
  19405. image: {
  19406. source: "./media/characters/cappu/front.svg",
  19407. extra: 1247 / 1152,
  19408. bottom: 0.012
  19409. }
  19410. },
  19411. },
  19412. [
  19413. {
  19414. name: "Normal",
  19415. height: math.unit(4 + 5 / 12, "feet"),
  19416. default: true
  19417. },
  19418. ]
  19419. ))
  19420. characterMakers.push(() => makeCharacter(
  19421. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19422. {
  19423. frontDressed: {
  19424. height: math.unit(70, "cm"),
  19425. weight: math.unit(6, "kg"),
  19426. name: "Front (Dressed)",
  19427. image: {
  19428. source: "./media/characters/sebi/front-dressed.svg",
  19429. extra: 713.5 / 686.5,
  19430. bottom: 0.003
  19431. }
  19432. },
  19433. front: {
  19434. height: math.unit(70, "cm"),
  19435. weight: math.unit(5, "kg"),
  19436. name: "Front",
  19437. image: {
  19438. source: "./media/characters/sebi/front.svg",
  19439. extra: 713.5 / 686.5,
  19440. bottom: 0.003
  19441. }
  19442. }
  19443. },
  19444. [
  19445. {
  19446. name: "Normal",
  19447. height: math.unit(70, "cm"),
  19448. default: true
  19449. },
  19450. {
  19451. name: "Macro",
  19452. height: math.unit(8, "meters")
  19453. },
  19454. ]
  19455. ))
  19456. characterMakers.push(() => makeCharacter(
  19457. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19458. {
  19459. front: {
  19460. height: math.unit(6, "feet"),
  19461. weight: math.unit(150, "lb"),
  19462. name: "Front",
  19463. image: {
  19464. source: "./media/characters/typhek/front.svg",
  19465. extra: 1948 / 1929,
  19466. bottom: 0.025
  19467. }
  19468. },
  19469. side: {
  19470. height: math.unit(6, "feet"),
  19471. weight: math.unit(150, "lb"),
  19472. name: "Side",
  19473. image: {
  19474. source: "./media/characters/typhek/side.svg",
  19475. extra: 2034 / 2010,
  19476. bottom: 0.003
  19477. }
  19478. },
  19479. back: {
  19480. height: math.unit(6, "feet"),
  19481. weight: math.unit(150, "lb"),
  19482. name: "Back",
  19483. image: {
  19484. source: "./media/characters/typhek/back.svg",
  19485. extra: 2005 / 1978,
  19486. bottom: 0.004
  19487. }
  19488. },
  19489. palm: {
  19490. height: math.unit(1.2, "feet"),
  19491. name: "Palm",
  19492. image: {
  19493. source: "./media/characters/typhek/palm.svg"
  19494. }
  19495. },
  19496. fist: {
  19497. height: math.unit(1.1, "feet"),
  19498. name: "Fist",
  19499. image: {
  19500. source: "./media/characters/typhek/fist.svg"
  19501. }
  19502. },
  19503. foot: {
  19504. height: math.unit(1.57, "feet"),
  19505. name: "Foot",
  19506. image: {
  19507. source: "./media/characters/typhek/foot.svg"
  19508. }
  19509. },
  19510. sole: {
  19511. height: math.unit(2.05, "feet"),
  19512. name: "Sole",
  19513. image: {
  19514. source: "./media/characters/typhek/sole.svg"
  19515. }
  19516. },
  19517. },
  19518. [
  19519. {
  19520. name: "Macro",
  19521. height: math.unit(40, "stories"),
  19522. default: true
  19523. },
  19524. {
  19525. name: "Megamacro",
  19526. height: math.unit(1, "mile")
  19527. },
  19528. {
  19529. name: "Gigamacro",
  19530. height: math.unit(4000, "solarradii")
  19531. },
  19532. {
  19533. name: "Universal",
  19534. height: math.unit(1.1, "universes")
  19535. }
  19536. ]
  19537. ))
  19538. characterMakers.push(() => makeCharacter(
  19539. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19540. {
  19541. side: {
  19542. height: math.unit(5 + 7 / 12, "feet"),
  19543. weight: math.unit(150, "lb"),
  19544. name: "Side",
  19545. image: {
  19546. source: "./media/characters/kassy/side.svg",
  19547. extra: 1280 / 1225,
  19548. bottom: 0.002
  19549. }
  19550. },
  19551. front: {
  19552. height: math.unit(5 + 7 / 12, "feet"),
  19553. weight: math.unit(150, "lb"),
  19554. name: "Front",
  19555. image: {
  19556. source: "./media/characters/kassy/front.svg",
  19557. extra: 1280 / 1225,
  19558. bottom: 0.025
  19559. }
  19560. },
  19561. back: {
  19562. height: math.unit(5 + 7 / 12, "feet"),
  19563. weight: math.unit(150, "lb"),
  19564. name: "Back",
  19565. image: {
  19566. source: "./media/characters/kassy/back.svg",
  19567. extra: 1280 / 1225,
  19568. bottom: 0.002
  19569. }
  19570. },
  19571. foot: {
  19572. height: math.unit(1.266, "feet"),
  19573. name: "Foot",
  19574. image: {
  19575. source: "./media/characters/kassy/foot.svg"
  19576. }
  19577. },
  19578. },
  19579. [
  19580. {
  19581. name: "Normal",
  19582. height: math.unit(5 + 7 / 12, "feet")
  19583. },
  19584. {
  19585. name: "Macro",
  19586. height: math.unit(137, "feet"),
  19587. default: true
  19588. },
  19589. {
  19590. name: "Megamacro",
  19591. height: math.unit(1, "mile")
  19592. },
  19593. ]
  19594. ))
  19595. characterMakers.push(() => makeCharacter(
  19596. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19597. {
  19598. front: {
  19599. height: math.unit(6 + 1 / 12, "feet"),
  19600. weight: math.unit(200, "lb"),
  19601. name: "Front",
  19602. image: {
  19603. source: "./media/characters/neil/front.svg",
  19604. extra: 1326 / 1250,
  19605. bottom: 0.023
  19606. }
  19607. },
  19608. },
  19609. [
  19610. {
  19611. name: "Normal",
  19612. height: math.unit(6 + 1 / 12, "feet"),
  19613. default: true
  19614. },
  19615. {
  19616. name: "Macro",
  19617. height: math.unit(200, "feet")
  19618. },
  19619. ]
  19620. ))
  19621. characterMakers.push(() => makeCharacter(
  19622. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19623. {
  19624. front: {
  19625. height: math.unit(5 + 9 / 12, "feet"),
  19626. weight: math.unit(190, "lb"),
  19627. name: "Front",
  19628. image: {
  19629. source: "./media/characters/atticus/front.svg",
  19630. extra: 2934 / 2785,
  19631. bottom: 0.025
  19632. }
  19633. },
  19634. },
  19635. [
  19636. {
  19637. name: "Normal",
  19638. height: math.unit(5 + 9 / 12, "feet"),
  19639. default: true
  19640. },
  19641. {
  19642. name: "Macro",
  19643. height: math.unit(180, "feet")
  19644. },
  19645. ]
  19646. ))
  19647. characterMakers.push(() => makeCharacter(
  19648. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19649. {
  19650. side: {
  19651. height: math.unit(9, "feet"),
  19652. weight: math.unit(650, "lb"),
  19653. name: "Side",
  19654. image: {
  19655. source: "./media/characters/milo/side.svg",
  19656. extra: 2644 / 2310,
  19657. bottom: 0.032
  19658. }
  19659. },
  19660. },
  19661. [
  19662. {
  19663. name: "Normal",
  19664. height: math.unit(9, "feet"),
  19665. default: true
  19666. },
  19667. {
  19668. name: "Macro",
  19669. height: math.unit(300, "feet")
  19670. },
  19671. ]
  19672. ))
  19673. characterMakers.push(() => makeCharacter(
  19674. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19675. {
  19676. side: {
  19677. height: math.unit(8, "meters"),
  19678. weight: math.unit(90000, "kg"),
  19679. name: "Side",
  19680. image: {
  19681. source: "./media/characters/ijzer/side.svg",
  19682. extra: 2756 / 1600,
  19683. bottom: 0.01
  19684. }
  19685. },
  19686. },
  19687. [
  19688. {
  19689. name: "Small",
  19690. height: math.unit(3, "meters")
  19691. },
  19692. {
  19693. name: "Normal",
  19694. height: math.unit(8, "meters"),
  19695. default: true
  19696. },
  19697. {
  19698. name: "Normal+",
  19699. height: math.unit(10, "meters")
  19700. },
  19701. {
  19702. name: "Bigger",
  19703. height: math.unit(24, "meters")
  19704. },
  19705. {
  19706. name: "Huge",
  19707. height: math.unit(80, "meters")
  19708. },
  19709. ]
  19710. ))
  19711. characterMakers.push(() => makeCharacter(
  19712. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19713. {
  19714. front: {
  19715. height: math.unit(6 + 2 / 12, "feet"),
  19716. weight: math.unit(153, "lb"),
  19717. name: "Front",
  19718. image: {
  19719. source: "./media/characters/luca-cervicum/front.svg",
  19720. extra: 370 / 327,
  19721. bottom: 0.015
  19722. }
  19723. },
  19724. back: {
  19725. height: math.unit(6 + 2 / 12, "feet"),
  19726. weight: math.unit(153, "lb"),
  19727. name: "Back",
  19728. image: {
  19729. source: "./media/characters/luca-cervicum/back.svg",
  19730. extra: 367 / 333,
  19731. bottom: 0.005
  19732. }
  19733. },
  19734. frontGear: {
  19735. height: math.unit(6 + 2 / 12, "feet"),
  19736. weight: math.unit(173, "lb"),
  19737. name: "Front (Gear)",
  19738. image: {
  19739. source: "./media/characters/luca-cervicum/front-gear.svg",
  19740. extra: 377 / 333,
  19741. bottom: 0.006
  19742. }
  19743. },
  19744. },
  19745. [
  19746. {
  19747. name: "Normal",
  19748. height: math.unit(6 + 2 / 12, "feet"),
  19749. default: true
  19750. },
  19751. ]
  19752. ))
  19753. characterMakers.push(() => makeCharacter(
  19754. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19755. {
  19756. front: {
  19757. height: math.unit(6 + 1 / 12, "feet"),
  19758. weight: math.unit(304, "lb"),
  19759. name: "Front",
  19760. image: {
  19761. source: "./media/characters/oliver/front.svg",
  19762. extra: 157 / 143,
  19763. bottom: 0.08
  19764. }
  19765. },
  19766. },
  19767. [
  19768. {
  19769. name: "Normal",
  19770. height: math.unit(6 + 1 / 12, "feet"),
  19771. default: true
  19772. },
  19773. ]
  19774. ))
  19775. characterMakers.push(() => makeCharacter(
  19776. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19777. {
  19778. front: {
  19779. height: math.unit(5 + 7 / 12, "feet"),
  19780. weight: math.unit(140, "lb"),
  19781. name: "Front",
  19782. image: {
  19783. source: "./media/characters/shane/front.svg",
  19784. extra: 304 / 289,
  19785. bottom: 0.005
  19786. }
  19787. },
  19788. },
  19789. [
  19790. {
  19791. name: "Normal",
  19792. height: math.unit(5 + 7 / 12, "feet"),
  19793. default: true
  19794. },
  19795. ]
  19796. ))
  19797. characterMakers.push(() => makeCharacter(
  19798. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19799. {
  19800. front: {
  19801. height: math.unit(5 + 9 / 12, "feet"),
  19802. weight: math.unit(178, "lb"),
  19803. name: "Front",
  19804. image: {
  19805. source: "./media/characters/shin/front.svg",
  19806. extra: 159 / 151,
  19807. bottom: 0.015
  19808. }
  19809. },
  19810. },
  19811. [
  19812. {
  19813. name: "Normal",
  19814. height: math.unit(5 + 9 / 12, "feet"),
  19815. default: true
  19816. },
  19817. ]
  19818. ))
  19819. characterMakers.push(() => makeCharacter(
  19820. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19821. {
  19822. front: {
  19823. height: math.unit(5 + 10 / 12, "feet"),
  19824. weight: math.unit(168, "lb"),
  19825. name: "Front",
  19826. image: {
  19827. source: "./media/characters/xerxes/front.svg",
  19828. extra: 282 / 260,
  19829. bottom: 0.045
  19830. }
  19831. },
  19832. },
  19833. [
  19834. {
  19835. name: "Normal",
  19836. height: math.unit(5 + 10 / 12, "feet"),
  19837. default: true
  19838. },
  19839. ]
  19840. ))
  19841. characterMakers.push(() => makeCharacter(
  19842. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19843. {
  19844. front: {
  19845. height: math.unit(6 + 7 / 12, "feet"),
  19846. weight: math.unit(208, "lb"),
  19847. name: "Front",
  19848. image: {
  19849. source: "./media/characters/chaska/front.svg",
  19850. extra: 332 / 319,
  19851. bottom: 0.015
  19852. }
  19853. },
  19854. },
  19855. [
  19856. {
  19857. name: "Normal",
  19858. height: math.unit(6 + 7 / 12, "feet"),
  19859. default: true
  19860. },
  19861. ]
  19862. ))
  19863. characterMakers.push(() => makeCharacter(
  19864. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19865. {
  19866. front: {
  19867. height: math.unit(5 + 8 / 12, "feet"),
  19868. weight: math.unit(208, "lb"),
  19869. name: "Front",
  19870. image: {
  19871. source: "./media/characters/enuk/front.svg",
  19872. extra: 437 / 406,
  19873. bottom: 0.02
  19874. }
  19875. },
  19876. },
  19877. [
  19878. {
  19879. name: "Normal",
  19880. height: math.unit(5 + 8 / 12, "feet"),
  19881. default: true
  19882. },
  19883. ]
  19884. ))
  19885. characterMakers.push(() => makeCharacter(
  19886. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19887. {
  19888. front: {
  19889. height: math.unit(5 + 10 / 12, "feet"),
  19890. weight: math.unit(252, "lb"),
  19891. name: "Front",
  19892. image: {
  19893. source: "./media/characters/bruun/front.svg",
  19894. extra: 197 / 187,
  19895. bottom: 0.012
  19896. }
  19897. },
  19898. },
  19899. [
  19900. {
  19901. name: "Normal",
  19902. height: math.unit(5 + 10 / 12, "feet"),
  19903. default: true
  19904. },
  19905. ]
  19906. ))
  19907. characterMakers.push(() => makeCharacter(
  19908. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19909. {
  19910. front: {
  19911. height: math.unit(6 + 10 / 12, "feet"),
  19912. weight: math.unit(255, "lb"),
  19913. name: "Front",
  19914. image: {
  19915. source: "./media/characters/alexeev/front.svg",
  19916. extra: 213 / 200,
  19917. bottom: 0.05
  19918. }
  19919. },
  19920. },
  19921. [
  19922. {
  19923. name: "Normal",
  19924. height: math.unit(6 + 10 / 12, "feet"),
  19925. default: true
  19926. },
  19927. ]
  19928. ))
  19929. characterMakers.push(() => makeCharacter(
  19930. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19931. {
  19932. front: {
  19933. height: math.unit(2 + 8 / 12, "feet"),
  19934. weight: math.unit(22, "lb"),
  19935. name: "Front",
  19936. image: {
  19937. source: "./media/characters/evelyn/front.svg",
  19938. extra: 208 / 180
  19939. }
  19940. },
  19941. },
  19942. [
  19943. {
  19944. name: "Normal",
  19945. height: math.unit(2 + 8 / 12, "feet"),
  19946. default: true
  19947. },
  19948. ]
  19949. ))
  19950. characterMakers.push(() => makeCharacter(
  19951. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19952. {
  19953. front: {
  19954. height: math.unit(5 + 9 / 12, "feet"),
  19955. weight: math.unit(139, "lb"),
  19956. name: "Front",
  19957. image: {
  19958. source: "./media/characters/inca/front.svg",
  19959. extra: 294 / 291,
  19960. bottom: 0.03
  19961. }
  19962. },
  19963. },
  19964. [
  19965. {
  19966. name: "Normal",
  19967. height: math.unit(5 + 9 / 12, "feet"),
  19968. default: true
  19969. },
  19970. ]
  19971. ))
  19972. characterMakers.push(() => makeCharacter(
  19973. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19974. {
  19975. front: {
  19976. height: math.unit(5 + 1 / 12, "feet"),
  19977. weight: math.unit(84, "lb"),
  19978. name: "Front",
  19979. image: {
  19980. source: "./media/characters/magdalene/front.svg",
  19981. extra: 293 / 273
  19982. }
  19983. },
  19984. },
  19985. [
  19986. {
  19987. name: "Normal",
  19988. height: math.unit(5 + 1 / 12, "feet"),
  19989. default: true
  19990. },
  19991. ]
  19992. ))
  19993. characterMakers.push(() => makeCharacter(
  19994. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19995. {
  19996. front: {
  19997. height: math.unit(6 + 3 / 12, "feet"),
  19998. weight: math.unit(185, "lb"),
  19999. name: "Front",
  20000. image: {
  20001. source: "./media/characters/mera/front.svg",
  20002. extra: 291 / 277,
  20003. bottom: 0.03
  20004. }
  20005. },
  20006. },
  20007. [
  20008. {
  20009. name: "Normal",
  20010. height: math.unit(6 + 3 / 12, "feet"),
  20011. default: true
  20012. },
  20013. ]
  20014. ))
  20015. characterMakers.push(() => makeCharacter(
  20016. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20017. {
  20018. front: {
  20019. height: math.unit(6 + 7 / 12, "feet"),
  20020. weight: math.unit(160, "lb"),
  20021. name: "Front",
  20022. image: {
  20023. source: "./media/characters/ceres/front.svg",
  20024. extra: 1023 / 950,
  20025. bottom: 0.027
  20026. }
  20027. },
  20028. back: {
  20029. height: math.unit(6 + 7 / 12, "feet"),
  20030. weight: math.unit(160, "lb"),
  20031. name: "Back",
  20032. image: {
  20033. source: "./media/characters/ceres/back.svg",
  20034. extra: 1023 / 950
  20035. }
  20036. },
  20037. },
  20038. [
  20039. {
  20040. name: "Normal",
  20041. height: math.unit(6 + 7 / 12, "feet"),
  20042. default: true
  20043. },
  20044. ]
  20045. ))
  20046. characterMakers.push(() => makeCharacter(
  20047. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20048. {
  20049. front: {
  20050. height: math.unit(5 + 10 / 12, "feet"),
  20051. weight: math.unit(150, "lb"),
  20052. name: "Front",
  20053. image: {
  20054. source: "./media/characters/kris/front.svg",
  20055. extra: 885 / 803,
  20056. bottom: 0.03
  20057. }
  20058. },
  20059. },
  20060. [
  20061. {
  20062. name: "Normal",
  20063. height: math.unit(5 + 10 / 12, "feet"),
  20064. default: true
  20065. },
  20066. ]
  20067. ))
  20068. characterMakers.push(() => makeCharacter(
  20069. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20070. {
  20071. front: {
  20072. height: math.unit(7, "feet"),
  20073. weight: math.unit(120, "kg"),
  20074. name: "Front",
  20075. image: {
  20076. source: "./media/characters/taluthus/front.svg",
  20077. extra: 903 / 833,
  20078. bottom: 0.015
  20079. }
  20080. },
  20081. },
  20082. [
  20083. {
  20084. name: "Normal",
  20085. height: math.unit(7, "feet"),
  20086. default: true
  20087. },
  20088. {
  20089. name: "Macro",
  20090. height: math.unit(300, "feet")
  20091. },
  20092. ]
  20093. ))
  20094. characterMakers.push(() => makeCharacter(
  20095. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20096. {
  20097. front: {
  20098. height: math.unit(5 + 9 / 12, "feet"),
  20099. weight: math.unit(145, "lb"),
  20100. name: "Front",
  20101. image: {
  20102. source: "./media/characters/dawn/front.svg",
  20103. extra: 2094 / 2016,
  20104. bottom: 0.025
  20105. }
  20106. },
  20107. back: {
  20108. height: math.unit(5 + 9 / 12, "feet"),
  20109. weight: math.unit(160, "lb"),
  20110. name: "Back",
  20111. image: {
  20112. source: "./media/characters/dawn/back.svg",
  20113. extra: 2112 / 2080,
  20114. bottom: 0.005
  20115. }
  20116. },
  20117. },
  20118. [
  20119. {
  20120. name: "Normal",
  20121. height: math.unit(6 + 7 / 12, "feet"),
  20122. default: true
  20123. },
  20124. ]
  20125. ))
  20126. characterMakers.push(() => makeCharacter(
  20127. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20128. {
  20129. anthro: {
  20130. height: math.unit(8 + 3 / 12, "feet"),
  20131. weight: math.unit(450, "lb"),
  20132. name: "Anthro",
  20133. image: {
  20134. source: "./media/characters/arador/anthro.svg",
  20135. extra: 1835 / 1718,
  20136. bottom: 0.025
  20137. }
  20138. },
  20139. feral: {
  20140. height: math.unit(4, "feet"),
  20141. weight: math.unit(200, "lb"),
  20142. name: "Feral",
  20143. image: {
  20144. source: "./media/characters/arador/feral.svg",
  20145. extra: 1683 / 1514,
  20146. bottom: 0.07
  20147. }
  20148. },
  20149. },
  20150. [
  20151. {
  20152. name: "Normal",
  20153. height: math.unit(8 + 3 / 12, "feet")
  20154. },
  20155. {
  20156. name: "Macro",
  20157. height: math.unit(82.5, "feet"),
  20158. default: true
  20159. },
  20160. ]
  20161. ))
  20162. characterMakers.push(() => makeCharacter(
  20163. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20164. {
  20165. front: {
  20166. height: math.unit(5 + 10 / 12, "feet"),
  20167. weight: math.unit(125, "lb"),
  20168. name: "Front",
  20169. image: {
  20170. source: "./media/characters/dharsi/front.svg",
  20171. extra: 716 / 630,
  20172. bottom: 0.035
  20173. }
  20174. },
  20175. },
  20176. [
  20177. {
  20178. name: "Nano",
  20179. height: math.unit(100, "nm")
  20180. },
  20181. {
  20182. name: "Micro",
  20183. height: math.unit(2, "inches")
  20184. },
  20185. {
  20186. name: "Normal",
  20187. height: math.unit(5 + 10 / 12, "feet"),
  20188. default: true
  20189. },
  20190. {
  20191. name: "Macro",
  20192. height: math.unit(1000, "feet")
  20193. },
  20194. {
  20195. name: "Megamacro",
  20196. height: math.unit(10, "miles")
  20197. },
  20198. {
  20199. name: "Gigamacro",
  20200. height: math.unit(3000, "miles")
  20201. },
  20202. {
  20203. name: "Teramacro",
  20204. height: math.unit(500000, "miles")
  20205. },
  20206. {
  20207. name: "Teramacro+",
  20208. height: math.unit(30, "galaxies")
  20209. },
  20210. ]
  20211. ))
  20212. characterMakers.push(() => makeCharacter(
  20213. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20214. {
  20215. front: {
  20216. height: math.unit(6, "feet"),
  20217. weight: math.unit(150, "lb"),
  20218. name: "Front",
  20219. image: {
  20220. source: "./media/characters/deathy/front.svg",
  20221. extra: 1552 / 1463,
  20222. bottom: 0.025
  20223. }
  20224. },
  20225. side: {
  20226. height: math.unit(6, "feet"),
  20227. weight: math.unit(150, "lb"),
  20228. name: "Side",
  20229. image: {
  20230. source: "./media/characters/deathy/side.svg",
  20231. extra: 1604 / 1455,
  20232. bottom: 0.025
  20233. }
  20234. },
  20235. back: {
  20236. height: math.unit(6, "feet"),
  20237. weight: math.unit(150, "lb"),
  20238. name: "Back",
  20239. image: {
  20240. source: "./media/characters/deathy/back.svg",
  20241. extra: 1580 / 1463,
  20242. bottom: 0.005
  20243. }
  20244. },
  20245. },
  20246. [
  20247. {
  20248. name: "Micro",
  20249. height: math.unit(5, "millimeters")
  20250. },
  20251. {
  20252. name: "Normal",
  20253. height: math.unit(6 + 5 / 12, "feet"),
  20254. default: true
  20255. },
  20256. ]
  20257. ))
  20258. characterMakers.push(() => makeCharacter(
  20259. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20260. {
  20261. front: {
  20262. height: math.unit(16, "feet"),
  20263. weight: math.unit(4000, "lb"),
  20264. name: "Front",
  20265. image: {
  20266. source: "./media/characters/juniper/front.svg",
  20267. bottom: 0.04
  20268. }
  20269. },
  20270. },
  20271. [
  20272. {
  20273. name: "Normal",
  20274. height: math.unit(16, "feet"),
  20275. default: true
  20276. },
  20277. ]
  20278. ))
  20279. characterMakers.push(() => makeCharacter(
  20280. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20281. {
  20282. front: {
  20283. height: math.unit(6, "feet"),
  20284. weight: math.unit(150, "lb"),
  20285. name: "Front",
  20286. image: {
  20287. source: "./media/characters/hipster/front.svg",
  20288. extra: 1312 / 1209,
  20289. bottom: 0.025
  20290. }
  20291. },
  20292. back: {
  20293. height: math.unit(6, "feet"),
  20294. weight: math.unit(150, "lb"),
  20295. name: "Back",
  20296. image: {
  20297. source: "./media/characters/hipster/back.svg",
  20298. extra: 1281 / 1196,
  20299. bottom: 0.01
  20300. }
  20301. },
  20302. },
  20303. [
  20304. {
  20305. name: "Micro",
  20306. height: math.unit(1, "mm")
  20307. },
  20308. {
  20309. name: "Normal",
  20310. height: math.unit(4, "inches"),
  20311. default: true
  20312. },
  20313. {
  20314. name: "Macro",
  20315. height: math.unit(500, "feet")
  20316. },
  20317. {
  20318. name: "Megamacro",
  20319. height: math.unit(1000, "miles")
  20320. },
  20321. ]
  20322. ))
  20323. characterMakers.push(() => makeCharacter(
  20324. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20325. {
  20326. front: {
  20327. height: math.unit(6, "feet"),
  20328. weight: math.unit(150, "lb"),
  20329. name: "Front",
  20330. image: {
  20331. source: "./media/characters/tendirmuldr/front.svg",
  20332. extra: 1878 / 1772,
  20333. bottom: 0.015
  20334. }
  20335. },
  20336. },
  20337. [
  20338. {
  20339. name: "Megamacro",
  20340. height: math.unit(1500, "miles"),
  20341. default: true
  20342. },
  20343. ]
  20344. ))
  20345. characterMakers.push(() => makeCharacter(
  20346. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20347. {
  20348. front: {
  20349. height: math.unit(14, "feet"),
  20350. weight: math.unit(12000, "lb"),
  20351. name: "Front",
  20352. image: {
  20353. source: "./media/characters/mort/front.svg",
  20354. extra: 365 / 318,
  20355. bottom: 0.01
  20356. }
  20357. },
  20358. side: {
  20359. height: math.unit(14, "feet"),
  20360. weight: math.unit(12000, "lb"),
  20361. name: "Side",
  20362. image: {
  20363. source: "./media/characters/mort/side.svg",
  20364. extra: 365 / 318,
  20365. bottom: 0.052
  20366. },
  20367. default: true
  20368. },
  20369. back: {
  20370. height: math.unit(14, "feet"),
  20371. weight: math.unit(12000, "lb"),
  20372. name: "Back",
  20373. image: {
  20374. source: "./media/characters/mort/back.svg",
  20375. extra: 371 / 332,
  20376. bottom: 0.18
  20377. }
  20378. },
  20379. },
  20380. [
  20381. {
  20382. name: "Normal",
  20383. height: math.unit(14, "feet"),
  20384. default: true
  20385. },
  20386. ]
  20387. ))
  20388. characterMakers.push(() => makeCharacter(
  20389. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20390. {
  20391. front: {
  20392. height: math.unit(8, "feet"),
  20393. weight: math.unit(1, "ton"),
  20394. name: "Front",
  20395. image: {
  20396. source: "./media/characters/lycoa/front.svg",
  20397. extra: 1875 / 1789,
  20398. bottom: 0.022
  20399. }
  20400. },
  20401. back: {
  20402. height: math.unit(8, "feet"),
  20403. weight: math.unit(1, "ton"),
  20404. name: "Back",
  20405. image: {
  20406. source: "./media/characters/lycoa/back.svg",
  20407. extra: 1835 / 1781,
  20408. bottom: 0.03
  20409. }
  20410. },
  20411. head: {
  20412. height: math.unit(2.1, "feet"),
  20413. name: "Head",
  20414. image: {
  20415. source: "./media/characters/lycoa/head.svg"
  20416. }
  20417. },
  20418. tailmaw: {
  20419. height: math.unit(1.9, "feet"),
  20420. name: "Tailmaw",
  20421. image: {
  20422. source: "./media/characters/lycoa/tailmaw.svg"
  20423. }
  20424. },
  20425. tentacles: {
  20426. height: math.unit(2.1, "feet"),
  20427. name: "Tentacles",
  20428. image: {
  20429. source: "./media/characters/lycoa/tentacles.svg"
  20430. }
  20431. },
  20432. dick: {
  20433. height: math.unit(1.73, "feet"),
  20434. name: "Dick",
  20435. image: {
  20436. source: "./media/characters/lycoa/dick.svg"
  20437. }
  20438. },
  20439. },
  20440. [
  20441. {
  20442. name: "Normal",
  20443. height: math.unit(8, "feet"),
  20444. default: true
  20445. },
  20446. {
  20447. name: "Macro",
  20448. height: math.unit(30, "feet")
  20449. },
  20450. ]
  20451. ))
  20452. characterMakers.push(() => makeCharacter(
  20453. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20454. {
  20455. front: {
  20456. height: math.unit(4 + 2 / 12, "feet"),
  20457. weight: math.unit(70, "lb"),
  20458. name: "Front",
  20459. image: {
  20460. source: "./media/characters/naldara/front.svg",
  20461. extra: 841 / 720,
  20462. bottom: 0.04
  20463. }
  20464. },
  20465. naga: {
  20466. height: math.unit(23, "feet"),
  20467. weight: math.unit(15000, "kg"),
  20468. name: "Naga",
  20469. image: {
  20470. source: "./media/characters/naldara/naga.svg",
  20471. extra: 3290 / 2959,
  20472. bottom: 124 / 3432
  20473. }
  20474. },
  20475. },
  20476. [
  20477. {
  20478. name: "Normal",
  20479. height: math.unit(4 + 2 / 12, "feet"),
  20480. default: true
  20481. },
  20482. ]
  20483. ))
  20484. characterMakers.push(() => makeCharacter(
  20485. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20486. {
  20487. front: {
  20488. height: math.unit(13 + 7 / 12, "feet"),
  20489. weight: math.unit(1500, "lb"),
  20490. name: "Front",
  20491. image: {
  20492. source: "./media/characters/briar/front.svg",
  20493. extra: 626 / 596,
  20494. bottom: 0.08
  20495. }
  20496. },
  20497. },
  20498. [
  20499. {
  20500. name: "Normal",
  20501. height: math.unit(13 + 7 / 12, "feet"),
  20502. default: true
  20503. },
  20504. ]
  20505. ))
  20506. characterMakers.push(() => makeCharacter(
  20507. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20508. {
  20509. side: {
  20510. height: math.unit(10, "feet"),
  20511. weight: math.unit(500, "lb"),
  20512. name: "Side",
  20513. image: {
  20514. source: "./media/characters/vanguard/side.svg",
  20515. extra: 502 / 425,
  20516. bottom: 0.087
  20517. }
  20518. },
  20519. },
  20520. [
  20521. {
  20522. name: "Normal",
  20523. height: math.unit(10, "feet"),
  20524. default: true
  20525. },
  20526. ]
  20527. ))
  20528. characterMakers.push(() => makeCharacter(
  20529. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20530. {
  20531. front: {
  20532. height: math.unit(7.5, "feet"),
  20533. weight: math.unit(2, "lb"),
  20534. name: "Front",
  20535. image: {
  20536. source: "./media/characters/artemis/front.svg",
  20537. extra: 1192 / 1075,
  20538. bottom: 0.07
  20539. }
  20540. },
  20541. frontNsfw: {
  20542. height: math.unit(7.5, "feet"),
  20543. weight: math.unit(2, "lb"),
  20544. name: "Front (NSFW)",
  20545. image: {
  20546. source: "./media/characters/artemis/front-nsfw.svg",
  20547. extra: 1192 / 1075,
  20548. bottom: 0.07
  20549. }
  20550. },
  20551. frontNsfwer: {
  20552. height: math.unit(7.5, "feet"),
  20553. weight: math.unit(2, "lb"),
  20554. name: "Front (NSFW-er)",
  20555. image: {
  20556. source: "./media/characters/artemis/front-nsfwer.svg",
  20557. extra: 1192 / 1075,
  20558. bottom: 0.07
  20559. }
  20560. },
  20561. side: {
  20562. height: math.unit(7.5, "feet"),
  20563. weight: math.unit(2, "lb"),
  20564. name: "Side",
  20565. image: {
  20566. source: "./media/characters/artemis/side.svg",
  20567. extra: 1192 / 1075,
  20568. bottom: 0.07
  20569. }
  20570. },
  20571. sideNsfw: {
  20572. height: math.unit(7.5, "feet"),
  20573. weight: math.unit(2, "lb"),
  20574. name: "Side (NSFW)",
  20575. image: {
  20576. source: "./media/characters/artemis/side-nsfw.svg",
  20577. extra: 1192 / 1075,
  20578. bottom: 0.07
  20579. }
  20580. },
  20581. sideNsfwer: {
  20582. height: math.unit(7.5, "feet"),
  20583. weight: math.unit(2, "lb"),
  20584. name: "Side (NSFW-er)",
  20585. image: {
  20586. source: "./media/characters/artemis/side-nsfwer.svg",
  20587. extra: 1192 / 1075,
  20588. bottom: 0.07
  20589. }
  20590. },
  20591. maw: {
  20592. height: math.unit(1.1, "feet"),
  20593. name: "Maw",
  20594. image: {
  20595. source: "./media/characters/artemis/maw.svg"
  20596. }
  20597. },
  20598. stomach: {
  20599. height: math.unit(0.95, "feet"),
  20600. name: "Stomach",
  20601. image: {
  20602. source: "./media/characters/artemis/stomach.svg"
  20603. }
  20604. },
  20605. dickCanine: {
  20606. height: math.unit(1, "feet"),
  20607. name: "Dick (Canine)",
  20608. image: {
  20609. source: "./media/characters/artemis/dick-canine.svg"
  20610. }
  20611. },
  20612. dickEquine: {
  20613. height: math.unit(0.85, "feet"),
  20614. name: "Dick (Equine)",
  20615. image: {
  20616. source: "./media/characters/artemis/dick-equine.svg"
  20617. }
  20618. },
  20619. dickExotic: {
  20620. height: math.unit(0.85, "feet"),
  20621. name: "Dick (Exotic)",
  20622. image: {
  20623. source: "./media/characters/artemis/dick-exotic.svg"
  20624. }
  20625. },
  20626. },
  20627. [
  20628. {
  20629. name: "Normal",
  20630. height: math.unit(7.5, "feet"),
  20631. default: true
  20632. },
  20633. {
  20634. name: "Enlarged",
  20635. height: math.unit(12, "feet")
  20636. },
  20637. ]
  20638. ))
  20639. characterMakers.push(() => makeCharacter(
  20640. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20641. {
  20642. front: {
  20643. height: math.unit(5 + 3 / 12, "feet"),
  20644. weight: math.unit(160, "lb"),
  20645. name: "Front",
  20646. image: {
  20647. source: "./media/characters/kira/front.svg",
  20648. extra: 906 / 786,
  20649. bottom: 0.01
  20650. }
  20651. },
  20652. back: {
  20653. height: math.unit(5 + 3 / 12, "feet"),
  20654. weight: math.unit(160, "lb"),
  20655. name: "Back",
  20656. image: {
  20657. source: "./media/characters/kira/back.svg",
  20658. extra: 882 / 757,
  20659. bottom: 0.005
  20660. }
  20661. },
  20662. frontDressed: {
  20663. height: math.unit(5 + 3 / 12, "feet"),
  20664. weight: math.unit(160, "lb"),
  20665. name: "Front (Dressed)",
  20666. image: {
  20667. source: "./media/characters/kira/front-dressed.svg",
  20668. extra: 906 / 786,
  20669. bottom: 0.01
  20670. }
  20671. },
  20672. beans: {
  20673. height: math.unit(0.92, "feet"),
  20674. name: "Beans",
  20675. image: {
  20676. source: "./media/characters/kira/beans.svg"
  20677. }
  20678. },
  20679. },
  20680. [
  20681. {
  20682. name: "Normal",
  20683. height: math.unit(5 + 3 / 12, "feet"),
  20684. default: true
  20685. },
  20686. ]
  20687. ))
  20688. characterMakers.push(() => makeCharacter(
  20689. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20690. {
  20691. front: {
  20692. height: math.unit(5 + 4 / 12, "feet"),
  20693. weight: math.unit(145, "lb"),
  20694. name: "Front",
  20695. image: {
  20696. source: "./media/characters/scramble/front.svg",
  20697. extra: 763 / 727,
  20698. bottom: 0.05
  20699. }
  20700. },
  20701. back: {
  20702. height: math.unit(5 + 4 / 12, "feet"),
  20703. weight: math.unit(145, "lb"),
  20704. name: "Back",
  20705. image: {
  20706. source: "./media/characters/scramble/back.svg",
  20707. extra: 826 / 737,
  20708. bottom: 0.002
  20709. }
  20710. },
  20711. },
  20712. [
  20713. {
  20714. name: "Normal",
  20715. height: math.unit(5 + 4 / 12, "feet"),
  20716. default: true
  20717. },
  20718. ]
  20719. ))
  20720. characterMakers.push(() => makeCharacter(
  20721. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20722. {
  20723. side: {
  20724. height: math.unit(6 + 2 / 12, "feet"),
  20725. weight: math.unit(190, "lb"),
  20726. name: "Side",
  20727. image: {
  20728. source: "./media/characters/biscuit/side.svg",
  20729. extra: 858 / 791,
  20730. bottom: 0.044
  20731. }
  20732. },
  20733. },
  20734. [
  20735. {
  20736. name: "Normal",
  20737. height: math.unit(6 + 2 / 12, "feet"),
  20738. default: true
  20739. },
  20740. ]
  20741. ))
  20742. characterMakers.push(() => makeCharacter(
  20743. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20744. {
  20745. front: {
  20746. height: math.unit(5 + 2 / 12, "feet"),
  20747. weight: math.unit(120, "lb"),
  20748. name: "Front",
  20749. image: {
  20750. source: "./media/characters/poffin/front.svg",
  20751. extra: 786 / 680,
  20752. bottom: 0.005
  20753. }
  20754. },
  20755. },
  20756. [
  20757. {
  20758. name: "Normal",
  20759. height: math.unit(5 + 2 / 12, "feet"),
  20760. default: true
  20761. },
  20762. ]
  20763. ))
  20764. characterMakers.push(() => makeCharacter(
  20765. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20766. {
  20767. front: {
  20768. height: math.unit(6 + 3 / 12, "feet"),
  20769. weight: math.unit(519, "lb"),
  20770. name: "Front",
  20771. image: {
  20772. source: "./media/characters/dhari/front.svg",
  20773. extra: 1048 / 946,
  20774. bottom: 0.015
  20775. }
  20776. },
  20777. back: {
  20778. height: math.unit(6 + 3 / 12, "feet"),
  20779. weight: math.unit(519, "lb"),
  20780. name: "Back",
  20781. image: {
  20782. source: "./media/characters/dhari/back.svg",
  20783. extra: 1048 / 931,
  20784. bottom: 0.005
  20785. }
  20786. },
  20787. frontDressed: {
  20788. height: math.unit(6 + 3 / 12, "feet"),
  20789. weight: math.unit(519, "lb"),
  20790. name: "Front (Dressed)",
  20791. image: {
  20792. source: "./media/characters/dhari/front-dressed.svg",
  20793. extra: 1713 / 1546,
  20794. bottom: 0.02
  20795. }
  20796. },
  20797. backDressed: {
  20798. height: math.unit(6 + 3 / 12, "feet"),
  20799. weight: math.unit(519, "lb"),
  20800. name: "Back (Dressed)",
  20801. image: {
  20802. source: "./media/characters/dhari/back-dressed.svg",
  20803. extra: 1699 / 1537,
  20804. bottom: 0.01
  20805. }
  20806. },
  20807. maw: {
  20808. height: math.unit(0.95, "feet"),
  20809. name: "Maw",
  20810. image: {
  20811. source: "./media/characters/dhari/maw.svg"
  20812. }
  20813. },
  20814. wereFront: {
  20815. height: math.unit(12 + 8 / 12, "feet"),
  20816. weight: math.unit(4000, "lb"),
  20817. name: "Front (Were)",
  20818. image: {
  20819. source: "./media/characters/dhari/were-front.svg",
  20820. extra: 1065 / 969,
  20821. bottom: 0.015
  20822. }
  20823. },
  20824. wereBack: {
  20825. height: math.unit(12 + 8 / 12, "feet"),
  20826. weight: math.unit(4000, "lb"),
  20827. name: "Back (Were)",
  20828. image: {
  20829. source: "./media/characters/dhari/were-back.svg",
  20830. extra: 1065 / 969,
  20831. bottom: 0.012
  20832. }
  20833. },
  20834. wereMaw: {
  20835. height: math.unit(0.625, "meters"),
  20836. name: "Maw (Were)",
  20837. image: {
  20838. source: "./media/characters/dhari/were-maw.svg"
  20839. }
  20840. },
  20841. },
  20842. [
  20843. {
  20844. name: "Normal",
  20845. height: math.unit(6 + 3 / 12, "feet"),
  20846. default: true
  20847. },
  20848. ]
  20849. ))
  20850. characterMakers.push(() => makeCharacter(
  20851. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20852. {
  20853. anthro: {
  20854. height: math.unit(5 + 7 / 12, "feet"),
  20855. weight: math.unit(175, "lb"),
  20856. name: "Anthro",
  20857. image: {
  20858. source: "./media/characters/rena-dyne/anthro.svg",
  20859. extra: 1849 / 1785,
  20860. bottom: 0.005
  20861. }
  20862. },
  20863. taur: {
  20864. height: math.unit(15 + 6 / 12, "feet"),
  20865. weight: math.unit(8000, "lb"),
  20866. name: "Taur",
  20867. image: {
  20868. source: "./media/characters/rena-dyne/taur.svg",
  20869. extra: 2315 / 2234,
  20870. bottom: 0.033
  20871. }
  20872. },
  20873. },
  20874. [
  20875. {
  20876. name: "Normal",
  20877. height: math.unit(5 + 7 / 12, "feet"),
  20878. default: true
  20879. },
  20880. ]
  20881. ))
  20882. characterMakers.push(() => makeCharacter(
  20883. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20884. {
  20885. front: {
  20886. height: math.unit(8, "feet"),
  20887. weight: math.unit(600, "lb"),
  20888. name: "Front",
  20889. image: {
  20890. source: "./media/characters/weremeep/front.svg",
  20891. extra: 967 / 862,
  20892. bottom: 0.01
  20893. }
  20894. },
  20895. },
  20896. [
  20897. {
  20898. name: "Normal",
  20899. height: math.unit(8, "feet"),
  20900. default: true
  20901. },
  20902. {
  20903. name: "Lorg",
  20904. height: math.unit(12, "feet")
  20905. },
  20906. {
  20907. name: "Oh Lawd She Comin'",
  20908. height: math.unit(20, "feet")
  20909. },
  20910. ]
  20911. ))
  20912. characterMakers.push(() => makeCharacter(
  20913. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20914. {
  20915. front: {
  20916. height: math.unit(4, "feet"),
  20917. weight: math.unit(90, "lb"),
  20918. name: "Front",
  20919. image: {
  20920. source: "./media/characters/reza/front.svg",
  20921. extra: 1183 / 1111,
  20922. bottom: 0.017
  20923. }
  20924. },
  20925. back: {
  20926. height: math.unit(4, "feet"),
  20927. weight: math.unit(90, "lb"),
  20928. name: "Back",
  20929. image: {
  20930. source: "./media/characters/reza/back.svg",
  20931. extra: 1183 / 1111,
  20932. bottom: 0.01
  20933. }
  20934. },
  20935. drake: {
  20936. height: math.unit(30, "feet"),
  20937. weight: math.unit(246960, "lb"),
  20938. name: "Drake",
  20939. image: {
  20940. source: "./media/characters/reza/drake.svg",
  20941. extra: 2350 / 2024,
  20942. bottom: 60.7 / 2403
  20943. }
  20944. },
  20945. },
  20946. [
  20947. {
  20948. name: "Normal",
  20949. height: math.unit(4, "feet"),
  20950. default: true
  20951. },
  20952. ]
  20953. ))
  20954. characterMakers.push(() => makeCharacter(
  20955. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20956. {
  20957. side: {
  20958. height: math.unit(15, "feet"),
  20959. weight: math.unit(14, "tons"),
  20960. name: "Side",
  20961. image: {
  20962. source: "./media/characters/athea/side.svg",
  20963. extra: 960 / 540,
  20964. bottom: 0.003
  20965. }
  20966. },
  20967. sitting: {
  20968. height: math.unit(6 * 2.85, "feet"),
  20969. weight: math.unit(14, "tons"),
  20970. name: "Sitting",
  20971. image: {
  20972. source: "./media/characters/athea/sitting.svg",
  20973. extra: 621 / 581,
  20974. bottom: 0.075
  20975. }
  20976. },
  20977. maw: {
  20978. height: math.unit(7.59498031496063, "feet"),
  20979. name: "Maw",
  20980. image: {
  20981. source: "./media/characters/athea/maw.svg"
  20982. }
  20983. },
  20984. },
  20985. [
  20986. {
  20987. name: "Lap Cat",
  20988. height: math.unit(2.5, "feet")
  20989. },
  20990. {
  20991. name: "Minimacro",
  20992. height: math.unit(15, "feet"),
  20993. default: true
  20994. },
  20995. {
  20996. name: "Macro",
  20997. height: math.unit(120, "feet")
  20998. },
  20999. {
  21000. name: "Macro+",
  21001. height: math.unit(640, "feet")
  21002. },
  21003. {
  21004. name: "Colossus",
  21005. height: math.unit(2.2, "miles")
  21006. },
  21007. ]
  21008. ))
  21009. characterMakers.push(() => makeCharacter(
  21010. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21011. {
  21012. front: {
  21013. height: math.unit(8 + 8 / 12, "feet"),
  21014. weight: math.unit(130, "kg"),
  21015. name: "Front",
  21016. image: {
  21017. source: "./media/characters/seroko/front.svg",
  21018. extra: 1385 / 1280,
  21019. bottom: 0.025
  21020. }
  21021. },
  21022. back: {
  21023. height: math.unit(8 + 8 / 12, "feet"),
  21024. weight: math.unit(130, "kg"),
  21025. name: "Back",
  21026. image: {
  21027. source: "./media/characters/seroko/back.svg",
  21028. extra: 1369 / 1238,
  21029. bottom: 0.018
  21030. }
  21031. },
  21032. frontDressed: {
  21033. height: math.unit(8 + 8 / 12, "feet"),
  21034. weight: math.unit(130, "kg"),
  21035. name: "Front (Dressed)",
  21036. image: {
  21037. source: "./media/characters/seroko/front-dressed.svg",
  21038. extra: 1366 / 1275,
  21039. bottom: 0.03
  21040. }
  21041. },
  21042. },
  21043. [
  21044. {
  21045. name: "Normal",
  21046. height: math.unit(8 + 8 / 12, "feet"),
  21047. default: true
  21048. },
  21049. ]
  21050. ))
  21051. characterMakers.push(() => makeCharacter(
  21052. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21053. {
  21054. front: {
  21055. height: math.unit(5.5, "feet"),
  21056. weight: math.unit(160, "lb"),
  21057. name: "Front",
  21058. image: {
  21059. source: "./media/characters/quatzi/front.svg",
  21060. extra: 2346 / 2242,
  21061. bottom: 0.015
  21062. }
  21063. },
  21064. },
  21065. [
  21066. {
  21067. name: "Normal",
  21068. height: math.unit(5.5, "feet"),
  21069. default: true
  21070. },
  21071. {
  21072. name: "Big",
  21073. height: math.unit(7.7, "feet")
  21074. },
  21075. ]
  21076. ))
  21077. characterMakers.push(() => makeCharacter(
  21078. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21079. {
  21080. front: {
  21081. height: math.unit(5 + 11 / 12, "feet"),
  21082. weight: math.unit(180, "lb"),
  21083. name: "Front",
  21084. image: {
  21085. source: "./media/characters/sen/front.svg",
  21086. extra: 1321 / 1254,
  21087. bottom: 0.015
  21088. }
  21089. },
  21090. side: {
  21091. height: math.unit(5 + 11 / 12, "feet"),
  21092. weight: math.unit(180, "lb"),
  21093. name: "Side",
  21094. image: {
  21095. source: "./media/characters/sen/side.svg",
  21096. extra: 1321 / 1254,
  21097. bottom: 0.007
  21098. }
  21099. },
  21100. back: {
  21101. height: math.unit(5 + 11 / 12, "feet"),
  21102. weight: math.unit(180, "lb"),
  21103. name: "Back",
  21104. image: {
  21105. source: "./media/characters/sen/back.svg",
  21106. extra: 1321 / 1254
  21107. }
  21108. },
  21109. },
  21110. [
  21111. {
  21112. name: "Normal",
  21113. height: math.unit(5 + 11 / 12, "feet"),
  21114. default: true
  21115. },
  21116. ]
  21117. ))
  21118. characterMakers.push(() => makeCharacter(
  21119. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21120. {
  21121. front: {
  21122. height: math.unit(166.6, "cm"),
  21123. weight: math.unit(66.6, "kg"),
  21124. name: "Front",
  21125. image: {
  21126. source: "./media/characters/fruity/front.svg",
  21127. extra: 1510 / 1386,
  21128. bottom: 0.04
  21129. }
  21130. },
  21131. back: {
  21132. height: math.unit(166.6, "cm"),
  21133. weight: math.unit(66.6, "lb"),
  21134. name: "Back",
  21135. image: {
  21136. source: "./media/characters/fruity/back.svg",
  21137. extra: 1563 / 1435,
  21138. bottom: 0.005
  21139. }
  21140. },
  21141. },
  21142. [
  21143. {
  21144. name: "Normal",
  21145. height: math.unit(166.6, "cm"),
  21146. default: true
  21147. },
  21148. {
  21149. name: "Demonic",
  21150. height: math.unit(166.6, "feet")
  21151. },
  21152. ]
  21153. ))
  21154. characterMakers.push(() => makeCharacter(
  21155. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21156. {
  21157. side: {
  21158. height: math.unit(10, "feet"),
  21159. weight: math.unit(500, "lb"),
  21160. name: "Side",
  21161. image: {
  21162. source: "./media/characters/zost/side.svg",
  21163. extra: 966 / 880,
  21164. bottom: 0.075
  21165. }
  21166. },
  21167. mawFront: {
  21168. height: math.unit(1.08, "meters"),
  21169. name: "Maw (Front)",
  21170. image: {
  21171. source: "./media/characters/zost/maw-front.svg"
  21172. }
  21173. },
  21174. mawSide: {
  21175. height: math.unit(2.66, "feet"),
  21176. name: "Maw (Side)",
  21177. image: {
  21178. source: "./media/characters/zost/maw-side.svg"
  21179. }
  21180. },
  21181. },
  21182. [
  21183. {
  21184. name: "Normal",
  21185. height: math.unit(10, "feet"),
  21186. default: true
  21187. },
  21188. ]
  21189. ))
  21190. characterMakers.push(() => makeCharacter(
  21191. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21192. {
  21193. front: {
  21194. height: math.unit(5 + 4 / 12, "feet"),
  21195. weight: math.unit(120, "lb"),
  21196. name: "Front",
  21197. image: {
  21198. source: "./media/characters/luci/front.svg",
  21199. extra: 1985 / 1884,
  21200. bottom: 0.04
  21201. }
  21202. },
  21203. back: {
  21204. height: math.unit(5 + 4 / 12, "feet"),
  21205. weight: math.unit(120, "lb"),
  21206. name: "Back",
  21207. image: {
  21208. source: "./media/characters/luci/back.svg",
  21209. extra: 1892 / 1791,
  21210. bottom: 0.002
  21211. }
  21212. },
  21213. },
  21214. [
  21215. {
  21216. name: "Normal",
  21217. height: math.unit(5 + 4 / 12, "feet"),
  21218. default: true
  21219. },
  21220. ]
  21221. ))
  21222. characterMakers.push(() => makeCharacter(
  21223. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21224. {
  21225. front: {
  21226. height: math.unit(1500, "feet"),
  21227. weight: math.unit(3.8e6, "tons"),
  21228. name: "Front",
  21229. image: {
  21230. source: "./media/characters/2th/front.svg",
  21231. extra: 3489 / 3350,
  21232. bottom: 0.1
  21233. }
  21234. },
  21235. foot: {
  21236. height: math.unit(461, "feet"),
  21237. name: "Foot",
  21238. image: {
  21239. source: "./media/characters/2th/foot.svg"
  21240. }
  21241. },
  21242. },
  21243. [
  21244. {
  21245. name: "\"Micro\"",
  21246. height: math.unit(15 + 7 / 12, "feet")
  21247. },
  21248. {
  21249. name: "Normal",
  21250. height: math.unit(1500, "feet"),
  21251. default: true
  21252. },
  21253. {
  21254. name: "Macro",
  21255. height: math.unit(5000, "feet")
  21256. },
  21257. {
  21258. name: "Megamacro",
  21259. height: math.unit(15, "miles")
  21260. },
  21261. {
  21262. name: "Gigamacro",
  21263. height: math.unit(4000, "miles")
  21264. },
  21265. {
  21266. name: "Galactic",
  21267. height: math.unit(50, "AU")
  21268. },
  21269. ]
  21270. ))
  21271. characterMakers.push(() => makeCharacter(
  21272. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21273. {
  21274. front: {
  21275. height: math.unit(5 + 6 / 12, "feet"),
  21276. weight: math.unit(220, "lb"),
  21277. name: "Front",
  21278. image: {
  21279. source: "./media/characters/amethyst/front.svg",
  21280. extra: 2078 / 2040,
  21281. bottom: 0.045
  21282. }
  21283. },
  21284. back: {
  21285. height: math.unit(5 + 6 / 12, "feet"),
  21286. weight: math.unit(220, "lb"),
  21287. name: "Back",
  21288. image: {
  21289. source: "./media/characters/amethyst/back.svg",
  21290. extra: 2021 / 1989,
  21291. bottom: 0.02
  21292. }
  21293. },
  21294. },
  21295. [
  21296. {
  21297. name: "Normal",
  21298. height: math.unit(5 + 6 / 12, "feet"),
  21299. default: true
  21300. },
  21301. ]
  21302. ))
  21303. characterMakers.push(() => makeCharacter(
  21304. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21305. {
  21306. front: {
  21307. height: math.unit(4 + 11 / 12, "feet"),
  21308. weight: math.unit(120, "lb"),
  21309. name: "Front",
  21310. image: {
  21311. source: "./media/characters/yumi-akiyama/front.svg",
  21312. extra: 1327 / 1235,
  21313. bottom: 0.02
  21314. }
  21315. },
  21316. back: {
  21317. height: math.unit(4 + 11 / 12, "feet"),
  21318. weight: math.unit(120, "lb"),
  21319. name: "Back",
  21320. image: {
  21321. source: "./media/characters/yumi-akiyama/back.svg",
  21322. extra: 1287 / 1245,
  21323. bottom: 0.002
  21324. }
  21325. },
  21326. },
  21327. [
  21328. {
  21329. name: "Galactic",
  21330. height: math.unit(50, "galaxies"),
  21331. default: true
  21332. },
  21333. {
  21334. name: "Universal",
  21335. height: math.unit(100, "universes")
  21336. },
  21337. ]
  21338. ))
  21339. characterMakers.push(() => makeCharacter(
  21340. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21341. {
  21342. front: {
  21343. height: math.unit(8, "feet"),
  21344. weight: math.unit(500, "lb"),
  21345. name: "Front",
  21346. image: {
  21347. source: "./media/characters/rifter-yrmori/front.svg",
  21348. extra: 1180 / 1125,
  21349. bottom: 0.02
  21350. }
  21351. },
  21352. back: {
  21353. height: math.unit(8, "feet"),
  21354. weight: math.unit(500, "lb"),
  21355. name: "Back",
  21356. image: {
  21357. source: "./media/characters/rifter-yrmori/back.svg",
  21358. extra: 1190 / 1145,
  21359. bottom: 0.001
  21360. }
  21361. },
  21362. wings: {
  21363. height: math.unit(7.75, "feet"),
  21364. weight: math.unit(500, "lb"),
  21365. name: "Wings",
  21366. image: {
  21367. source: "./media/characters/rifter-yrmori/wings.svg",
  21368. extra: 1357 / 1285
  21369. }
  21370. },
  21371. maw: {
  21372. height: math.unit(0.8, "feet"),
  21373. name: "Maw",
  21374. image: {
  21375. source: "./media/characters/rifter-yrmori/maw.svg"
  21376. }
  21377. },
  21378. mawfront: {
  21379. height: math.unit(1.45, "feet"),
  21380. name: "Maw (Front)",
  21381. image: {
  21382. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21383. }
  21384. },
  21385. },
  21386. [
  21387. {
  21388. name: "Normal",
  21389. height: math.unit(8, "feet"),
  21390. default: true
  21391. },
  21392. {
  21393. name: "Macro",
  21394. height: math.unit(42, "meters")
  21395. },
  21396. ]
  21397. ))
  21398. characterMakers.push(() => makeCharacter(
  21399. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21400. {
  21401. were: {
  21402. height: math.unit(25 + 6 / 12, "feet"),
  21403. weight: math.unit(10000, "lb"),
  21404. name: "Were",
  21405. image: {
  21406. source: "./media/characters/tahajin/were.svg",
  21407. extra: 801 / 770,
  21408. bottom: 0.042
  21409. }
  21410. },
  21411. aquatic: {
  21412. height: math.unit(6 + 4 / 12, "feet"),
  21413. weight: math.unit(160, "lb"),
  21414. name: "Aquatic",
  21415. image: {
  21416. source: "./media/characters/tahajin/aquatic.svg",
  21417. extra: 572 / 542,
  21418. bottom: 0.04
  21419. }
  21420. },
  21421. chow: {
  21422. height: math.unit(8 + 11 / 12, "feet"),
  21423. weight: math.unit(450, "lb"),
  21424. name: "Chow",
  21425. image: {
  21426. source: "./media/characters/tahajin/chow.svg",
  21427. extra: 660 / 640,
  21428. bottom: 0.015
  21429. }
  21430. },
  21431. demiNaga: {
  21432. height: math.unit(6 + 8 / 12, "feet"),
  21433. weight: math.unit(300, "lb"),
  21434. name: "Demi Naga",
  21435. image: {
  21436. source: "./media/characters/tahajin/demi-naga.svg",
  21437. extra: 643 / 615,
  21438. bottom: 0.1
  21439. }
  21440. },
  21441. data: {
  21442. height: math.unit(5, "inches"),
  21443. weight: math.unit(0.1, "lb"),
  21444. name: "Data",
  21445. image: {
  21446. source: "./media/characters/tahajin/data.svg"
  21447. }
  21448. },
  21449. fluu: {
  21450. height: math.unit(5 + 7 / 12, "feet"),
  21451. weight: math.unit(140, "lb"),
  21452. name: "Fluu",
  21453. image: {
  21454. source: "./media/characters/tahajin/fluu.svg",
  21455. extra: 628 / 592,
  21456. bottom: 0.02
  21457. }
  21458. },
  21459. starWarrior: {
  21460. height: math.unit(4 + 5 / 12, "feet"),
  21461. weight: math.unit(50, "lb"),
  21462. name: "Star Warrior",
  21463. image: {
  21464. source: "./media/characters/tahajin/star-warrior.svg"
  21465. }
  21466. },
  21467. },
  21468. [
  21469. {
  21470. name: "Normal",
  21471. height: math.unit(25 + 6 / 12, "feet"),
  21472. default: true
  21473. },
  21474. ]
  21475. ))
  21476. characterMakers.push(() => makeCharacter(
  21477. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21478. {
  21479. front: {
  21480. height: math.unit(8, "feet"),
  21481. weight: math.unit(350, "lb"),
  21482. name: "Front",
  21483. image: {
  21484. source: "./media/characters/gabira/front.svg",
  21485. extra: 608 / 580,
  21486. bottom: 0.03
  21487. }
  21488. },
  21489. back: {
  21490. height: math.unit(8, "feet"),
  21491. weight: math.unit(350, "lb"),
  21492. name: "Back",
  21493. image: {
  21494. source: "./media/characters/gabira/back.svg",
  21495. extra: 608 / 580,
  21496. bottom: 0.03
  21497. }
  21498. },
  21499. },
  21500. [
  21501. {
  21502. name: "Normal",
  21503. height: math.unit(8, "feet"),
  21504. default: true
  21505. },
  21506. ]
  21507. ))
  21508. characterMakers.push(() => makeCharacter(
  21509. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21510. {
  21511. front: {
  21512. height: math.unit(5 + 3 / 12, "feet"),
  21513. weight: math.unit(137, "lb"),
  21514. name: "Front",
  21515. image: {
  21516. source: "./media/characters/sasha-katraine/front.svg",
  21517. bottom: 0.045
  21518. }
  21519. },
  21520. },
  21521. [
  21522. {
  21523. name: "Micro",
  21524. height: math.unit(5, "inches")
  21525. },
  21526. {
  21527. name: "Normal",
  21528. height: math.unit(5 + 3 / 12, "feet"),
  21529. default: true
  21530. },
  21531. ]
  21532. ))
  21533. characterMakers.push(() => makeCharacter(
  21534. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21535. {
  21536. side: {
  21537. height: math.unit(4, "inches"),
  21538. weight: math.unit(200, "grams"),
  21539. name: "Side",
  21540. image: {
  21541. source: "./media/characters/der/side.svg",
  21542. extra: 719 / 400,
  21543. bottom: 30.6 / 749.9187
  21544. }
  21545. },
  21546. },
  21547. [
  21548. {
  21549. name: "Micro",
  21550. height: math.unit(4, "inches"),
  21551. default: true
  21552. },
  21553. ]
  21554. ))
  21555. characterMakers.push(() => makeCharacter(
  21556. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21557. {
  21558. side: {
  21559. height: math.unit(30, "meters"),
  21560. weight: math.unit(700, "tonnes"),
  21561. name: "Side",
  21562. image: {
  21563. source: "./media/characters/fixerdragon/side.svg",
  21564. extra: (1293.0514 - 116.03) / 1106.86,
  21565. bottom: 116.03 / 1293.0514
  21566. }
  21567. },
  21568. },
  21569. [
  21570. {
  21571. name: "Planck",
  21572. height: math.unit(1.6e-35, "meters")
  21573. },
  21574. {
  21575. name: "Micro",
  21576. height: math.unit(0.4, "meters")
  21577. },
  21578. {
  21579. name: "Normal",
  21580. height: math.unit(30, "meters"),
  21581. default: true
  21582. },
  21583. {
  21584. name: "Megamacro",
  21585. height: math.unit(1.2, "megameters")
  21586. },
  21587. {
  21588. name: "Teramacro",
  21589. height: math.unit(130, "terameters")
  21590. },
  21591. {
  21592. name: "Yottamacro",
  21593. height: math.unit(6200, "yottameters")
  21594. },
  21595. ]
  21596. ));
  21597. characterMakers.push(() => makeCharacter(
  21598. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21599. {
  21600. front: {
  21601. height: math.unit(8, "feet"),
  21602. weight: math.unit(250, "lb"),
  21603. name: "Front",
  21604. image: {
  21605. source: "./media/characters/kite/front.svg",
  21606. extra: 2796 / 2659,
  21607. bottom: 0.002
  21608. }
  21609. },
  21610. },
  21611. [
  21612. {
  21613. name: "Normal",
  21614. height: math.unit(8, "feet"),
  21615. default: true
  21616. },
  21617. {
  21618. name: "Macro",
  21619. height: math.unit(360, "feet")
  21620. },
  21621. {
  21622. name: "Megamacro",
  21623. height: math.unit(1500, "feet")
  21624. },
  21625. ]
  21626. ))
  21627. characterMakers.push(() => makeCharacter(
  21628. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21629. {
  21630. front: {
  21631. height: math.unit(5 + 11/12, "feet"),
  21632. weight: math.unit(170, "lb"),
  21633. name: "Front",
  21634. image: {
  21635. source: "./media/characters/poojawa-vynar/front.svg",
  21636. extra: 1735/1585,
  21637. bottom: 96/1831
  21638. }
  21639. },
  21640. back: {
  21641. height: math.unit(5 + 11/12, "feet"),
  21642. weight: math.unit(170, "lb"),
  21643. name: "Back",
  21644. image: {
  21645. source: "./media/characters/poojawa-vynar/back.svg",
  21646. extra: 1749/1607,
  21647. bottom: 28/1777
  21648. }
  21649. },
  21650. male: {
  21651. height: math.unit(5 + 11/12, "feet"),
  21652. weight: math.unit(170, "lb"),
  21653. name: "Male",
  21654. image: {
  21655. source: "./media/characters/poojawa-vynar/male.svg",
  21656. extra: 1855/1713,
  21657. bottom: 63/1918
  21658. }
  21659. },
  21660. taur: {
  21661. height: math.unit(5 + 11/12, "feet"),
  21662. weight: math.unit(170, "lb"),
  21663. name: "Taur",
  21664. image: {
  21665. source: "./media/characters/poojawa-vynar/taur.svg",
  21666. extra: 1151/1059,
  21667. bottom: 356/1507
  21668. }
  21669. },
  21670. frontDressed: {
  21671. height: math.unit(5 + 11/12, "feet"),
  21672. weight: math.unit(170, "lb"),
  21673. name: "Front (Dressed)",
  21674. image: {
  21675. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21676. extra: 1735/1585,
  21677. bottom: 96/1831
  21678. }
  21679. },
  21680. backDressed: {
  21681. height: math.unit(5 + 11/12, "feet"),
  21682. weight: math.unit(170, "lb"),
  21683. name: "Back (Dressed)",
  21684. image: {
  21685. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21686. extra: 1749/1607,
  21687. bottom: 28/1777
  21688. }
  21689. },
  21690. maleDressed: {
  21691. height: math.unit(5 + 11/12, "feet"),
  21692. weight: math.unit(170, "lb"),
  21693. name: "Male (Dressed)",
  21694. image: {
  21695. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21696. extra: 1855/1713,
  21697. bottom: 63/1918
  21698. }
  21699. },
  21700. taurDressed: {
  21701. height: math.unit(5 + 11/12, "feet"),
  21702. weight: math.unit(170, "lb"),
  21703. name: "Taur (Dressed)",
  21704. image: {
  21705. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21706. extra: 1151/1059,
  21707. bottom: 356/1507
  21708. }
  21709. },
  21710. maw: {
  21711. height: math.unit(1.46, "feet"),
  21712. name: "Maw",
  21713. image: {
  21714. source: "./media/characters/poojawa-vynar/maw.svg"
  21715. }
  21716. },
  21717. head: {
  21718. height: math.unit(2.34, "feet"),
  21719. name: "Head",
  21720. image: {
  21721. source: "./media/characters/poojawa-vynar/head.svg"
  21722. }
  21723. },
  21724. paw: {
  21725. height: math.unit(1.61, "feet"),
  21726. name: "Paw",
  21727. image: {
  21728. source: "./media/characters/poojawa-vynar/paw.svg"
  21729. }
  21730. },
  21731. pawToering: {
  21732. height: math.unit(1.72, "feet"),
  21733. name: "Paw (Toering)",
  21734. image: {
  21735. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21736. }
  21737. },
  21738. toering: {
  21739. height: math.unit(2.9, "inches"),
  21740. name: "Toering",
  21741. image: {
  21742. source: "./media/characters/poojawa-vynar/toering.svg"
  21743. }
  21744. },
  21745. shaft: {
  21746. height: math.unit(0.625, "feet"),
  21747. name: "Shaft",
  21748. image: {
  21749. source: "./media/characters/poojawa-vynar/shaft.svg"
  21750. }
  21751. },
  21752. spade: {
  21753. height: math.unit(0.42, "feet"),
  21754. name: "Spade",
  21755. image: {
  21756. source: "./media/characters/poojawa-vynar/spade.svg"
  21757. }
  21758. },
  21759. },
  21760. [
  21761. {
  21762. name: "Shortstack",
  21763. height: math.unit(4, "feet")
  21764. },
  21765. {
  21766. name: "Normal",
  21767. height: math.unit(5 + 11 / 12, "feet"),
  21768. default: true
  21769. },
  21770. {
  21771. name: "Tauric",
  21772. height: math.unit(4, "meters")
  21773. },
  21774. ]
  21775. ))
  21776. characterMakers.push(() => makeCharacter(
  21777. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21778. {
  21779. front: {
  21780. height: math.unit(293, "meters"),
  21781. weight: math.unit(70400, "tons"),
  21782. name: "Front",
  21783. image: {
  21784. source: "./media/characters/violette/front.svg",
  21785. extra: 1227 / 1180,
  21786. bottom: 0.005
  21787. }
  21788. },
  21789. back: {
  21790. height: math.unit(293, "meters"),
  21791. weight: math.unit(70400, "tons"),
  21792. name: "Back",
  21793. image: {
  21794. source: "./media/characters/violette/back.svg",
  21795. extra: 1227 / 1180,
  21796. bottom: 0.005
  21797. }
  21798. },
  21799. },
  21800. [
  21801. {
  21802. name: "Macro",
  21803. height: math.unit(293, "meters"),
  21804. default: true
  21805. },
  21806. ]
  21807. ))
  21808. characterMakers.push(() => makeCharacter(
  21809. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21810. {
  21811. front: {
  21812. height: math.unit(1050, "feet"),
  21813. weight: math.unit(200000, "tons"),
  21814. name: "Front",
  21815. image: {
  21816. source: "./media/characters/alessandra/front.svg",
  21817. extra: 960 / 912,
  21818. bottom: 0.06
  21819. }
  21820. },
  21821. },
  21822. [
  21823. {
  21824. name: "Macro",
  21825. height: math.unit(1050, "feet")
  21826. },
  21827. {
  21828. name: "Macro+",
  21829. height: math.unit(900, "meters"),
  21830. default: true
  21831. },
  21832. ]
  21833. ))
  21834. characterMakers.push(() => makeCharacter(
  21835. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21836. {
  21837. front: {
  21838. height: math.unit(5, "feet"),
  21839. weight: math.unit(187, "lb"),
  21840. name: "Front",
  21841. image: {
  21842. source: "./media/characters/person/front.svg",
  21843. extra: 3087 / 2945,
  21844. bottom: 91 / 3181
  21845. }
  21846. },
  21847. },
  21848. [
  21849. {
  21850. name: "Micro",
  21851. height: math.unit(3, "inches")
  21852. },
  21853. {
  21854. name: "Normal",
  21855. height: math.unit(5, "feet"),
  21856. default: true
  21857. },
  21858. {
  21859. name: "Macro",
  21860. height: math.unit(90, "feet")
  21861. },
  21862. {
  21863. name: "Max Size",
  21864. height: math.unit(280, "feet")
  21865. },
  21866. ]
  21867. ))
  21868. characterMakers.push(() => makeCharacter(
  21869. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21870. {
  21871. front: {
  21872. height: math.unit(4.5, "meters"),
  21873. weight: math.unit(3200, "lb"),
  21874. name: "Front",
  21875. image: {
  21876. source: "./media/characters/ty/front.svg",
  21877. extra: 1038 / 960,
  21878. bottom: 31.156 / 1068
  21879. }
  21880. },
  21881. back: {
  21882. height: math.unit(4.5, "meters"),
  21883. weight: math.unit(3200, "lb"),
  21884. name: "Back",
  21885. image: {
  21886. source: "./media/characters/ty/back.svg",
  21887. extra: 1044 / 966,
  21888. bottom: 7.48 / 1049
  21889. }
  21890. },
  21891. },
  21892. [
  21893. {
  21894. name: "Normal",
  21895. height: math.unit(4.5, "meters"),
  21896. default: true
  21897. },
  21898. ]
  21899. ))
  21900. characterMakers.push(() => makeCharacter(
  21901. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21902. {
  21903. front: {
  21904. height: math.unit(5 + 4 / 12, "feet"),
  21905. weight: math.unit(115, "lb"),
  21906. name: "Front",
  21907. image: {
  21908. source: "./media/characters/rocky/front.svg",
  21909. extra: 1012 / 975,
  21910. bottom: 54 / 1066
  21911. }
  21912. },
  21913. },
  21914. [
  21915. {
  21916. name: "Normal",
  21917. height: math.unit(5 + 4 / 12, "feet"),
  21918. default: true
  21919. },
  21920. ]
  21921. ))
  21922. characterMakers.push(() => makeCharacter(
  21923. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21924. {
  21925. upright: {
  21926. height: math.unit(6, "meters"),
  21927. weight: math.unit(4000, "kg"),
  21928. name: "Upright",
  21929. image: {
  21930. source: "./media/characters/ruin/upright.svg",
  21931. extra: 668 / 661,
  21932. bottom: 42 / 799.8396
  21933. }
  21934. },
  21935. },
  21936. [
  21937. {
  21938. name: "Normal",
  21939. height: math.unit(6, "meters"),
  21940. default: true
  21941. },
  21942. ]
  21943. ))
  21944. characterMakers.push(() => makeCharacter(
  21945. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21946. {
  21947. front: {
  21948. height: math.unit(5, "feet"),
  21949. weight: math.unit(106, "lb"),
  21950. name: "Front",
  21951. image: {
  21952. source: "./media/characters/robin/front.svg",
  21953. extra: 862 / 799,
  21954. bottom: 42.4 / 914.8856
  21955. }
  21956. },
  21957. },
  21958. [
  21959. {
  21960. name: "Normal",
  21961. height: math.unit(5, "feet"),
  21962. default: true
  21963. },
  21964. ]
  21965. ))
  21966. characterMakers.push(() => makeCharacter(
  21967. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21968. {
  21969. side: {
  21970. height: math.unit(3, "feet"),
  21971. weight: math.unit(225, "lb"),
  21972. name: "Side",
  21973. image: {
  21974. source: "./media/characters/saian/side.svg",
  21975. extra: 566 / 356,
  21976. bottom: 79.7 / 643
  21977. }
  21978. },
  21979. maw: {
  21980. height: math.unit(2.85, "feet"),
  21981. name: "Maw",
  21982. image: {
  21983. source: "./media/characters/saian/maw.svg"
  21984. }
  21985. },
  21986. },
  21987. [
  21988. {
  21989. name: "Normal",
  21990. height: math.unit(3, "feet"),
  21991. default: true
  21992. },
  21993. ]
  21994. ))
  21995. characterMakers.push(() => makeCharacter(
  21996. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21997. {
  21998. side: {
  21999. height: math.unit(8, "feet"),
  22000. weight: math.unit(300, "lb"),
  22001. name: "Side",
  22002. image: {
  22003. source: "./media/characters/equus-silvermane/side.svg",
  22004. extra: 2176 / 2050,
  22005. bottom: 65.7 / 2245
  22006. }
  22007. },
  22008. front: {
  22009. height: math.unit(8, "feet"),
  22010. weight: math.unit(300, "lb"),
  22011. name: "Front",
  22012. image: {
  22013. source: "./media/characters/equus-silvermane/front.svg",
  22014. extra: 4633 / 4400,
  22015. bottom: 71.3 / 4706.915
  22016. }
  22017. },
  22018. sideStepping: {
  22019. height: math.unit(8, "feet"),
  22020. weight: math.unit(300, "lb"),
  22021. name: "Side (Stepping)",
  22022. image: {
  22023. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22024. extra: 1968 / 1860,
  22025. bottom: 16.4 / 1989
  22026. }
  22027. },
  22028. },
  22029. [
  22030. {
  22031. name: "Normal",
  22032. height: math.unit(8, "feet")
  22033. },
  22034. {
  22035. name: "Minimacro",
  22036. height: math.unit(75, "feet"),
  22037. default: true
  22038. },
  22039. {
  22040. name: "Macro",
  22041. height: math.unit(150, "feet")
  22042. },
  22043. {
  22044. name: "Macro+",
  22045. height: math.unit(1000, "feet")
  22046. },
  22047. {
  22048. name: "Megamacro",
  22049. height: math.unit(1, "mile")
  22050. },
  22051. ]
  22052. ))
  22053. characterMakers.push(() => makeCharacter(
  22054. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22055. {
  22056. side: {
  22057. height: math.unit(20, "feet"),
  22058. weight: math.unit(30000, "kg"),
  22059. name: "Side",
  22060. image: {
  22061. source: "./media/characters/windar/side.svg",
  22062. extra: 1491 / 1248,
  22063. bottom: 82.56 / 1568
  22064. }
  22065. },
  22066. },
  22067. [
  22068. {
  22069. name: "Normal",
  22070. height: math.unit(20, "feet"),
  22071. default: true
  22072. },
  22073. ]
  22074. ))
  22075. characterMakers.push(() => makeCharacter(
  22076. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22077. {
  22078. side: {
  22079. height: math.unit(15.66, "feet"),
  22080. weight: math.unit(150, "lb"),
  22081. name: "Side",
  22082. image: {
  22083. source: "./media/characters/melody/side.svg",
  22084. extra: 1097 / 944,
  22085. bottom: 11.8 / 1109
  22086. }
  22087. },
  22088. sideOutfit: {
  22089. height: math.unit(15.66, "feet"),
  22090. weight: math.unit(150, "lb"),
  22091. name: "Side (Outfit)",
  22092. image: {
  22093. source: "./media/characters/melody/side-outfit.svg",
  22094. extra: 1097 / 944,
  22095. bottom: 11.8 / 1109
  22096. }
  22097. },
  22098. },
  22099. [
  22100. {
  22101. name: "Normal",
  22102. height: math.unit(15.66, "feet"),
  22103. default: true
  22104. },
  22105. ]
  22106. ))
  22107. characterMakers.push(() => makeCharacter(
  22108. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22109. {
  22110. front: {
  22111. height: math.unit(8, "feet"),
  22112. weight: math.unit(325, "lb"),
  22113. name: "Front",
  22114. image: {
  22115. source: "./media/characters/windera/front.svg",
  22116. extra: 3180 / 2845,
  22117. bottom: 178 / 3365
  22118. }
  22119. },
  22120. },
  22121. [
  22122. {
  22123. name: "Normal",
  22124. height: math.unit(8, "feet"),
  22125. default: true
  22126. },
  22127. ]
  22128. ))
  22129. characterMakers.push(() => makeCharacter(
  22130. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22131. {
  22132. front: {
  22133. height: math.unit(28.75, "feet"),
  22134. weight: math.unit(2000, "kg"),
  22135. name: "Front",
  22136. image: {
  22137. source: "./media/characters/sonear/front.svg",
  22138. extra: 1041.1 / 964.9,
  22139. bottom: 53.7 / 1096.6
  22140. }
  22141. },
  22142. },
  22143. [
  22144. {
  22145. name: "Normal",
  22146. height: math.unit(28.75, "feet"),
  22147. default: true
  22148. },
  22149. ]
  22150. ))
  22151. characterMakers.push(() => makeCharacter(
  22152. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22153. {
  22154. side: {
  22155. height: math.unit(25.5, "feet"),
  22156. weight: math.unit(23000, "kg"),
  22157. name: "Side",
  22158. image: {
  22159. source: "./media/characters/kanara/side.svg"
  22160. }
  22161. },
  22162. },
  22163. [
  22164. {
  22165. name: "Normal",
  22166. height: math.unit(25.5, "feet"),
  22167. default: true
  22168. },
  22169. ]
  22170. ))
  22171. characterMakers.push(() => makeCharacter(
  22172. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22173. {
  22174. side: {
  22175. height: math.unit(10, "feet"),
  22176. weight: math.unit(1000, "kg"),
  22177. name: "Side",
  22178. image: {
  22179. source: "./media/characters/ereus/side.svg",
  22180. extra: 1157 / 959,
  22181. bottom: 153 / 1312.5
  22182. }
  22183. },
  22184. },
  22185. [
  22186. {
  22187. name: "Normal",
  22188. height: math.unit(10, "feet"),
  22189. default: true
  22190. },
  22191. ]
  22192. ))
  22193. characterMakers.push(() => makeCharacter(
  22194. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22195. {
  22196. side: {
  22197. height: math.unit(4.5, "feet"),
  22198. weight: math.unit(500, "lb"),
  22199. name: "Side",
  22200. image: {
  22201. source: "./media/characters/e-ter/side.svg",
  22202. extra: 1550 / 1248,
  22203. bottom: 146 / 1694
  22204. }
  22205. },
  22206. },
  22207. [
  22208. {
  22209. name: "Normal",
  22210. height: math.unit(4.5, "feet"),
  22211. default: true
  22212. },
  22213. ]
  22214. ))
  22215. characterMakers.push(() => makeCharacter(
  22216. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22217. {
  22218. side: {
  22219. height: math.unit(9.7, "feet"),
  22220. weight: math.unit(4000, "kg"),
  22221. name: "Side",
  22222. image: {
  22223. source: "./media/characters/yamie/side.svg"
  22224. }
  22225. },
  22226. },
  22227. [
  22228. {
  22229. name: "Normal",
  22230. height: math.unit(9.7, "feet"),
  22231. default: true
  22232. },
  22233. ]
  22234. ))
  22235. characterMakers.push(() => makeCharacter(
  22236. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22237. {
  22238. front: {
  22239. height: math.unit(50, "feet"),
  22240. weight: math.unit(50000, "kg"),
  22241. name: "Front",
  22242. image: {
  22243. source: "./media/characters/anders/front.svg",
  22244. extra: 570 / 539,
  22245. bottom: 14.7 / 586.7
  22246. }
  22247. },
  22248. },
  22249. [
  22250. {
  22251. name: "Large",
  22252. height: math.unit(50, "feet")
  22253. },
  22254. {
  22255. name: "Macro",
  22256. height: math.unit(2000, "feet"),
  22257. default: true
  22258. },
  22259. {
  22260. name: "Megamacro",
  22261. height: math.unit(12, "miles")
  22262. },
  22263. ]
  22264. ))
  22265. characterMakers.push(() => makeCharacter(
  22266. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22267. {
  22268. front: {
  22269. height: math.unit(7 + 2 / 12, "feet"),
  22270. weight: math.unit(300, "lb"),
  22271. name: "Front",
  22272. image: {
  22273. source: "./media/characters/reban/front.svg",
  22274. extra: 516 / 487,
  22275. bottom: 42.82 / 558.356
  22276. }
  22277. },
  22278. dick: {
  22279. height: math.unit(7 / 5, "feet"),
  22280. name: "Dick",
  22281. image: {
  22282. source: "./media/characters/reban/dick.svg"
  22283. }
  22284. },
  22285. },
  22286. [
  22287. {
  22288. name: "Natural Height",
  22289. height: math.unit(7 + 2 / 12, "feet")
  22290. },
  22291. {
  22292. name: "Macro",
  22293. height: math.unit(500, "feet"),
  22294. default: true
  22295. },
  22296. {
  22297. name: "Canon Height",
  22298. height: math.unit(50, "AU")
  22299. },
  22300. ]
  22301. ))
  22302. characterMakers.push(() => makeCharacter(
  22303. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22304. {
  22305. front: {
  22306. height: math.unit(6, "feet"),
  22307. weight: math.unit(150, "lb"),
  22308. name: "Front",
  22309. image: {
  22310. source: "./media/characters/terrance-keayes/front.svg",
  22311. extra: 1.005,
  22312. bottom: 151 / 1615
  22313. }
  22314. },
  22315. side: {
  22316. height: math.unit(6, "feet"),
  22317. weight: math.unit(150, "lb"),
  22318. name: "Side",
  22319. image: {
  22320. source: "./media/characters/terrance-keayes/side.svg",
  22321. extra: 1.005,
  22322. bottom: 129.4 / 1544
  22323. }
  22324. },
  22325. back: {
  22326. height: math.unit(6, "feet"),
  22327. weight: math.unit(150, "lb"),
  22328. name: "Back",
  22329. image: {
  22330. source: "./media/characters/terrance-keayes/back.svg",
  22331. extra: 1.005,
  22332. bottom: 58.4 / 1557.3
  22333. }
  22334. },
  22335. dick: {
  22336. height: math.unit(6 * 0.208, "feet"),
  22337. name: "Dick",
  22338. image: {
  22339. source: "./media/characters/terrance-keayes/dick.svg"
  22340. }
  22341. },
  22342. },
  22343. [
  22344. {
  22345. name: "Canon Height",
  22346. height: math.unit(35, "miles"),
  22347. default: true
  22348. },
  22349. ]
  22350. ))
  22351. characterMakers.push(() => makeCharacter(
  22352. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22353. {
  22354. front: {
  22355. height: math.unit(6, "feet"),
  22356. weight: math.unit(150, "lb"),
  22357. name: "Front",
  22358. image: {
  22359. source: "./media/characters/ofelia/front.svg",
  22360. extra: 546 / 541,
  22361. bottom: 39 / 583
  22362. }
  22363. },
  22364. back: {
  22365. height: math.unit(6, "feet"),
  22366. weight: math.unit(150, "lb"),
  22367. name: "Back",
  22368. image: {
  22369. source: "./media/characters/ofelia/back.svg",
  22370. extra: 564 / 559.5,
  22371. bottom: 8.69 / 573.02
  22372. }
  22373. },
  22374. maw: {
  22375. height: math.unit(1, "feet"),
  22376. name: "Maw",
  22377. image: {
  22378. source: "./media/characters/ofelia/maw.svg"
  22379. }
  22380. },
  22381. foot: {
  22382. height: math.unit(1.949, "feet"),
  22383. name: "Foot",
  22384. image: {
  22385. source: "./media/characters/ofelia/foot.svg"
  22386. }
  22387. },
  22388. },
  22389. [
  22390. {
  22391. name: "Canon Height",
  22392. height: math.unit(2000, "miles"),
  22393. default: true
  22394. },
  22395. ]
  22396. ))
  22397. characterMakers.push(() => makeCharacter(
  22398. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22399. {
  22400. front: {
  22401. height: math.unit(6, "feet"),
  22402. weight: math.unit(150, "lb"),
  22403. name: "Front",
  22404. image: {
  22405. source: "./media/characters/samuel/front.svg",
  22406. extra: 265 / 258,
  22407. bottom: 2 / 266.1566
  22408. }
  22409. },
  22410. },
  22411. [
  22412. {
  22413. name: "Macro",
  22414. height: math.unit(100, "feet"),
  22415. default: true
  22416. },
  22417. {
  22418. name: "Full Size",
  22419. height: math.unit(1000, "miles")
  22420. },
  22421. ]
  22422. ))
  22423. characterMakers.push(() => makeCharacter(
  22424. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22425. {
  22426. front: {
  22427. height: math.unit(6, "feet"),
  22428. weight: math.unit(300, "lb"),
  22429. name: "Front",
  22430. image: {
  22431. source: "./media/characters/beishir-kiel/front.svg",
  22432. extra: 569 / 547,
  22433. bottom: 41.9 / 609
  22434. }
  22435. },
  22436. maw: {
  22437. height: math.unit(6 * 0.202, "feet"),
  22438. name: "Maw",
  22439. image: {
  22440. source: "./media/characters/beishir-kiel/maw.svg"
  22441. }
  22442. },
  22443. },
  22444. [
  22445. {
  22446. name: "Macro",
  22447. height: math.unit(300, "feet"),
  22448. default: true
  22449. },
  22450. ]
  22451. ))
  22452. characterMakers.push(() => makeCharacter(
  22453. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22454. {
  22455. front: {
  22456. height: math.unit(5 + 7/12, "feet"),
  22457. weight: math.unit(120, "lb"),
  22458. name: "Front",
  22459. image: {
  22460. source: "./media/characters/logan-grey/front.svg",
  22461. extra: 1836/1738,
  22462. bottom: 108/1944
  22463. }
  22464. },
  22465. back: {
  22466. height: math.unit(5 + 7/12, "feet"),
  22467. weight: math.unit(120, "lb"),
  22468. name: "Back",
  22469. image: {
  22470. source: "./media/characters/logan-grey/back.svg",
  22471. extra: 1880/1794,
  22472. bottom: 24/1904
  22473. }
  22474. },
  22475. frontSfw: {
  22476. height: math.unit(5 + 7/12, "feet"),
  22477. weight: math.unit(120, "lb"),
  22478. name: "Front (SFW)",
  22479. image: {
  22480. source: "./media/characters/logan-grey/front-sfw.svg",
  22481. extra: 1836/1738,
  22482. bottom: 108/1944
  22483. }
  22484. },
  22485. backSfw: {
  22486. height: math.unit(5 + 7/12, "feet"),
  22487. weight: math.unit(120, "lb"),
  22488. name: "Back (SFW)",
  22489. image: {
  22490. source: "./media/characters/logan-grey/back-sfw.svg",
  22491. extra: 1880/1794,
  22492. bottom: 24/1904
  22493. }
  22494. },
  22495. hands: {
  22496. height: math.unit(0.84, "feet"),
  22497. name: "Hands",
  22498. image: {
  22499. source: "./media/characters/logan-grey/hands.svg"
  22500. }
  22501. },
  22502. paws: {
  22503. height: math.unit(0.72, "feet"),
  22504. name: "Paws",
  22505. image: {
  22506. source: "./media/characters/logan-grey/paws.svg"
  22507. }
  22508. },
  22509. cock: {
  22510. height: math.unit(1.45, "feet"),
  22511. name: "Cock",
  22512. image: {
  22513. source: "./media/characters/logan-grey/cock.svg"
  22514. }
  22515. },
  22516. cockAlt: {
  22517. height: math.unit(1.437, "feet"),
  22518. name: "Cock (alt)",
  22519. image: {
  22520. source: "./media/characters/logan-grey/cock-alt.svg"
  22521. }
  22522. },
  22523. },
  22524. [
  22525. {
  22526. name: "Normal",
  22527. height: math.unit(5 + 8 / 12, "feet")
  22528. },
  22529. {
  22530. name: "The 500 Foot Femboy",
  22531. height: math.unit(500, "feet"),
  22532. default: true
  22533. },
  22534. {
  22535. name: "Megmacro",
  22536. height: math.unit(20, "miles")
  22537. },
  22538. ]
  22539. ))
  22540. characterMakers.push(() => makeCharacter(
  22541. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22542. {
  22543. front: {
  22544. height: math.unit(8 + 2 / 12, "feet"),
  22545. weight: math.unit(275, "lb"),
  22546. name: "Front",
  22547. image: {
  22548. source: "./media/characters/draganta/front.svg",
  22549. extra: 1177 / 1135,
  22550. bottom: 33.46 / 1212.1
  22551. }
  22552. },
  22553. },
  22554. [
  22555. {
  22556. name: "Normal",
  22557. height: math.unit(8 + 6 / 12, "feet"),
  22558. default: true
  22559. },
  22560. {
  22561. name: "Macro",
  22562. height: math.unit(150, "feet")
  22563. },
  22564. {
  22565. name: "Megamacro",
  22566. height: math.unit(1000, "miles")
  22567. },
  22568. ]
  22569. ))
  22570. characterMakers.push(() => makeCharacter(
  22571. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22572. {
  22573. front: {
  22574. height: math.unit(1.72, "m"),
  22575. weight: math.unit(80, "lb"),
  22576. name: "Front",
  22577. image: {
  22578. source: "./media/characters/voski/front.svg",
  22579. extra: 2076.22 / 2022.4,
  22580. bottom: 102.7 / 2177.3866
  22581. }
  22582. },
  22583. frontNsfw: {
  22584. height: math.unit(1.72, "m"),
  22585. weight: math.unit(80, "lb"),
  22586. name: "Front (NSFW)",
  22587. image: {
  22588. source: "./media/characters/voski/front-nsfw.svg",
  22589. extra: 2076.22 / 2022.4,
  22590. bottom: 102.7 / 2177.3866
  22591. }
  22592. },
  22593. back: {
  22594. height: math.unit(1.72, "m"),
  22595. weight: math.unit(80, "lb"),
  22596. name: "Back",
  22597. image: {
  22598. source: "./media/characters/voski/back.svg",
  22599. extra: 2104 / 2051,
  22600. bottom: 10.45 / 2113.63
  22601. }
  22602. },
  22603. },
  22604. [
  22605. {
  22606. name: "Normal",
  22607. height: math.unit(1.72, "m")
  22608. },
  22609. {
  22610. name: "Macro",
  22611. height: math.unit(55, "m"),
  22612. default: true
  22613. },
  22614. {
  22615. name: "Macro+",
  22616. height: math.unit(300, "m")
  22617. },
  22618. {
  22619. name: "Macro++",
  22620. height: math.unit(700, "m")
  22621. },
  22622. {
  22623. name: "Macro+++",
  22624. height: math.unit(4500, "m")
  22625. },
  22626. {
  22627. name: "Macro++++",
  22628. height: math.unit(45, "km")
  22629. },
  22630. {
  22631. name: "Macro+++++",
  22632. height: math.unit(1220, "km")
  22633. },
  22634. ]
  22635. ))
  22636. characterMakers.push(() => makeCharacter(
  22637. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22638. {
  22639. front: {
  22640. height: math.unit(2.3, "m"),
  22641. weight: math.unit(304, "kg"),
  22642. name: "Front",
  22643. image: {
  22644. source: "./media/characters/icowom-lee/front.svg",
  22645. extra: 985 / 955,
  22646. bottom: 25.4 / 1012
  22647. }
  22648. },
  22649. fronttentacles: {
  22650. height: math.unit(2.3, "m"),
  22651. weight: math.unit(304, "kg"),
  22652. name: "Front-tentacles",
  22653. image: {
  22654. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22655. extra: 985 / 955,
  22656. bottom: 25.4 / 1012
  22657. }
  22658. },
  22659. back: {
  22660. height: math.unit(2.3, "m"),
  22661. weight: math.unit(304, "kg"),
  22662. name: "Back",
  22663. image: {
  22664. source: "./media/characters/icowom-lee/back.svg",
  22665. extra: 975 / 954,
  22666. bottom: 9.5 / 985
  22667. }
  22668. },
  22669. backtentacles: {
  22670. height: math.unit(2.3, "m"),
  22671. weight: math.unit(304, "kg"),
  22672. name: "Back-tentacles",
  22673. image: {
  22674. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22675. extra: 975 / 954,
  22676. bottom: 9.5 / 985
  22677. }
  22678. },
  22679. frontDressed: {
  22680. height: math.unit(2.3, "m"),
  22681. weight: math.unit(304, "kg"),
  22682. name: "Front (Dressed)",
  22683. image: {
  22684. source: "./media/characters/icowom-lee/front-dressed.svg",
  22685. extra: 3076 / 2933,
  22686. bottom: 51.4 / 3125.1889
  22687. }
  22688. },
  22689. rump: {
  22690. height: math.unit(0.776, "meters"),
  22691. name: "Rump",
  22692. image: {
  22693. source: "./media/characters/icowom-lee/rump.svg"
  22694. }
  22695. },
  22696. genitals: {
  22697. height: math.unit(0.78, "meters"),
  22698. name: "Genitals",
  22699. image: {
  22700. source: "./media/characters/icowom-lee/genitals.svg"
  22701. }
  22702. },
  22703. },
  22704. [
  22705. {
  22706. name: "Normal",
  22707. height: math.unit(2.3, "meters"),
  22708. default: true
  22709. },
  22710. {
  22711. name: "Macro",
  22712. height: math.unit(94, "meters"),
  22713. default: true
  22714. },
  22715. ]
  22716. ))
  22717. characterMakers.push(() => makeCharacter(
  22718. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22719. {
  22720. front: {
  22721. height: math.unit(22, "meters"),
  22722. weight: math.unit(21000, "kg"),
  22723. name: "Front",
  22724. image: {
  22725. source: "./media/characters/shock-diamond/front.svg",
  22726. extra: 2204 / 2053,
  22727. bottom: 65 / 2239.47
  22728. }
  22729. },
  22730. frontNude: {
  22731. height: math.unit(22, "meters"),
  22732. weight: math.unit(21000, "kg"),
  22733. name: "Front (Nude)",
  22734. image: {
  22735. source: "./media/characters/shock-diamond/front-nude.svg",
  22736. extra: 2514 / 2285,
  22737. bottom: 13 / 2527.56
  22738. }
  22739. },
  22740. },
  22741. [
  22742. {
  22743. name: "Normal",
  22744. height: math.unit(3, "meters")
  22745. },
  22746. {
  22747. name: "Macro",
  22748. height: math.unit(22, "meters"),
  22749. default: true
  22750. },
  22751. ]
  22752. ))
  22753. characterMakers.push(() => makeCharacter(
  22754. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22755. {
  22756. front: {
  22757. height: math.unit(5 + 4 / 12, "feet"),
  22758. weight: math.unit(120, "lb"),
  22759. name: "Front",
  22760. image: {
  22761. source: "./media/characters/rory/front.svg",
  22762. extra: 1318/1241,
  22763. bottom: 42/1360
  22764. }
  22765. },
  22766. back: {
  22767. height: math.unit(5 + 4 / 12, "feet"),
  22768. weight: math.unit(120, "lb"),
  22769. name: "Back",
  22770. image: {
  22771. source: "./media/characters/rory/back.svg",
  22772. extra: 1318/1241,
  22773. bottom: 42/1360
  22774. }
  22775. },
  22776. butt: {
  22777. height: math.unit(1.74, "feet"),
  22778. name: "Butt",
  22779. image: {
  22780. source: "./media/characters/rory/butt.svg"
  22781. }
  22782. },
  22783. dick: {
  22784. height: math.unit(1.02, "feet"),
  22785. name: "Dick",
  22786. image: {
  22787. source: "./media/characters/rory/dick.svg"
  22788. }
  22789. },
  22790. paws: {
  22791. height: math.unit(1, "feet"),
  22792. name: "Paws",
  22793. image: {
  22794. source: "./media/characters/rory/paws.svg"
  22795. }
  22796. },
  22797. frontAlt: {
  22798. height: math.unit(5 + 4 / 12, "feet"),
  22799. weight: math.unit(120, "lb"),
  22800. name: "Front (Alt)",
  22801. image: {
  22802. source: "./media/characters/rory/front-alt.svg",
  22803. extra: 589 / 556,
  22804. bottom: 45.7 / 635.76
  22805. }
  22806. },
  22807. frontAltNude: {
  22808. height: math.unit(5 + 4 / 12, "feet"),
  22809. weight: math.unit(120, "lb"),
  22810. name: "Front (Alt, Nude)",
  22811. image: {
  22812. source: "./media/characters/rory/front-alt-nude.svg",
  22813. extra: 589 / 556,
  22814. bottom: 45.7 / 635.76
  22815. }
  22816. },
  22817. side: {
  22818. height: math.unit(5 + 4 / 12, "feet"),
  22819. weight: math.unit(120, "lb"),
  22820. name: "Side",
  22821. image: {
  22822. source: "./media/characters/rory/side.svg",
  22823. extra: 597 / 564,
  22824. bottom: 55 / 653
  22825. }
  22826. },
  22827. backAlt: {
  22828. height: math.unit(5 + 4 / 12, "feet"),
  22829. weight: math.unit(120, "lb"),
  22830. name: "Back (Alt)",
  22831. image: {
  22832. source: "./media/characters/rory/back-alt.svg",
  22833. extra: 620 / 585,
  22834. bottom: 8.86 / 630.43
  22835. }
  22836. },
  22837. dickAlt: {
  22838. height: math.unit(0.86, "feet"),
  22839. name: "Dick (Alt)",
  22840. image: {
  22841. source: "./media/characters/rory/dick-alt.svg"
  22842. }
  22843. },
  22844. },
  22845. [
  22846. {
  22847. name: "Normal",
  22848. height: math.unit(5 + 4 / 12, "feet"),
  22849. default: true
  22850. },
  22851. {
  22852. name: "Macro",
  22853. height: math.unit(100, "feet")
  22854. },
  22855. {
  22856. name: "Macro+",
  22857. height: math.unit(140, "feet")
  22858. },
  22859. {
  22860. name: "Macro++",
  22861. height: math.unit(300, "feet")
  22862. },
  22863. ]
  22864. ))
  22865. characterMakers.push(() => makeCharacter(
  22866. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22867. {
  22868. front: {
  22869. height: math.unit(5 + 9 / 12, "feet"),
  22870. weight: math.unit(190, "lb"),
  22871. name: "Front",
  22872. image: {
  22873. source: "./media/characters/sprisk/front.svg",
  22874. extra: 1225 / 1180,
  22875. bottom: 42.7 / 1266.4
  22876. }
  22877. },
  22878. frontNsfw: {
  22879. height: math.unit(5 + 9 / 12, "feet"),
  22880. weight: math.unit(190, "lb"),
  22881. name: "Front (NSFW)",
  22882. image: {
  22883. source: "./media/characters/sprisk/front-nsfw.svg",
  22884. extra: 1225 / 1180,
  22885. bottom: 42.7 / 1266.4
  22886. }
  22887. },
  22888. back: {
  22889. height: math.unit(5 + 9 / 12, "feet"),
  22890. weight: math.unit(190, "lb"),
  22891. name: "Back",
  22892. image: {
  22893. source: "./media/characters/sprisk/back.svg",
  22894. extra: 1247 / 1200,
  22895. bottom: 5.6 / 1253.04
  22896. }
  22897. },
  22898. },
  22899. [
  22900. {
  22901. name: "Tiny",
  22902. height: math.unit(2, "inches")
  22903. },
  22904. {
  22905. name: "Normal",
  22906. height: math.unit(5 + 9 / 12, "feet"),
  22907. default: true
  22908. },
  22909. {
  22910. name: "Mini Macro",
  22911. height: math.unit(18, "feet")
  22912. },
  22913. {
  22914. name: "Macro",
  22915. height: math.unit(100, "feet")
  22916. },
  22917. {
  22918. name: "MACRO",
  22919. height: math.unit(50, "miles")
  22920. },
  22921. {
  22922. name: "M A C R O",
  22923. height: math.unit(300, "miles")
  22924. },
  22925. ]
  22926. ))
  22927. characterMakers.push(() => makeCharacter(
  22928. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22929. {
  22930. side: {
  22931. height: math.unit(15.6, "meters"),
  22932. weight: math.unit(700000, "kg"),
  22933. name: "Side",
  22934. image: {
  22935. source: "./media/characters/bunsen/side.svg",
  22936. extra: 1644 / 358
  22937. }
  22938. },
  22939. foot: {
  22940. height: math.unit(1.611 * 1644 / 358, "meter"),
  22941. name: "Foot",
  22942. image: {
  22943. source: "./media/characters/bunsen/foot.svg"
  22944. }
  22945. },
  22946. },
  22947. [
  22948. {
  22949. name: "Small",
  22950. height: math.unit(10, "feet")
  22951. },
  22952. {
  22953. name: "Normal",
  22954. height: math.unit(15.6, "meters"),
  22955. default: true
  22956. },
  22957. ]
  22958. ))
  22959. characterMakers.push(() => makeCharacter(
  22960. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22961. {
  22962. front: {
  22963. height: math.unit(4 + 11 / 12, "feet"),
  22964. weight: math.unit(140, "lb"),
  22965. name: "Front",
  22966. image: {
  22967. source: "./media/characters/sesh/front.svg",
  22968. extra: 3420 / 3231,
  22969. bottom: 72 / 3949.5
  22970. }
  22971. },
  22972. },
  22973. [
  22974. {
  22975. name: "Normal",
  22976. height: math.unit(4 + 11 / 12, "feet")
  22977. },
  22978. {
  22979. name: "Grown",
  22980. height: math.unit(15, "feet"),
  22981. default: true
  22982. },
  22983. {
  22984. name: "Macro",
  22985. height: math.unit(1500, "feet")
  22986. },
  22987. {
  22988. name: "Megamacro",
  22989. height: math.unit(30, "miles")
  22990. },
  22991. {
  22992. name: "Continental",
  22993. height: math.unit(3000, "miles")
  22994. },
  22995. {
  22996. name: "Gravity Mass",
  22997. height: math.unit(300000, "miles")
  22998. },
  22999. {
  23000. name: "Planet Buster",
  23001. height: math.unit(30000000, "miles")
  23002. },
  23003. {
  23004. name: "Big",
  23005. height: math.unit(3000000000, "miles")
  23006. },
  23007. ]
  23008. ))
  23009. characterMakers.push(() => makeCharacter(
  23010. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23011. {
  23012. front: {
  23013. height: math.unit(9, "feet"),
  23014. weight: math.unit(350, "lb"),
  23015. name: "Front",
  23016. image: {
  23017. source: "./media/characters/pepper/front.svg",
  23018. extra: 1448 / 1312,
  23019. bottom: 9.4 / 1457.88
  23020. }
  23021. },
  23022. back: {
  23023. height: math.unit(9, "feet"),
  23024. weight: math.unit(350, "lb"),
  23025. name: "Back",
  23026. image: {
  23027. source: "./media/characters/pepper/back.svg",
  23028. extra: 1423 / 1300,
  23029. bottom: 4.6 / 1429
  23030. }
  23031. },
  23032. maw: {
  23033. height: math.unit(0.932, "feet"),
  23034. name: "Maw",
  23035. image: {
  23036. source: "./media/characters/pepper/maw.svg"
  23037. }
  23038. },
  23039. },
  23040. [
  23041. {
  23042. name: "Normal",
  23043. height: math.unit(9, "feet"),
  23044. default: true
  23045. },
  23046. ]
  23047. ))
  23048. characterMakers.push(() => makeCharacter(
  23049. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23050. {
  23051. front: {
  23052. height: math.unit(6, "feet"),
  23053. weight: math.unit(150, "lb"),
  23054. name: "Front",
  23055. image: {
  23056. source: "./media/characters/maelstrom/front.svg",
  23057. extra: 2100 / 1883,
  23058. bottom: 94 / 2196.7
  23059. }
  23060. },
  23061. },
  23062. [
  23063. {
  23064. name: "Less Kaiju",
  23065. height: math.unit(200, "feet")
  23066. },
  23067. {
  23068. name: "Kaiju",
  23069. height: math.unit(400, "feet"),
  23070. default: true
  23071. },
  23072. {
  23073. name: "Kaiju-er",
  23074. height: math.unit(600, "feet")
  23075. },
  23076. ]
  23077. ))
  23078. characterMakers.push(() => makeCharacter(
  23079. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23080. {
  23081. front: {
  23082. height: math.unit(6 + 5 / 12, "feet"),
  23083. weight: math.unit(180, "lb"),
  23084. name: "Front",
  23085. image: {
  23086. source: "./media/characters/lexir/front.svg",
  23087. extra: 180 / 172,
  23088. bottom: 12 / 192
  23089. }
  23090. },
  23091. back: {
  23092. height: math.unit(6 + 5 / 12, "feet"),
  23093. weight: math.unit(180, "lb"),
  23094. name: "Back",
  23095. image: {
  23096. source: "./media/characters/lexir/back.svg",
  23097. extra: 183.84 / 175.5,
  23098. bottom: 3.1 / 187
  23099. }
  23100. },
  23101. },
  23102. [
  23103. {
  23104. name: "Very Smal",
  23105. height: math.unit(1, "nm")
  23106. },
  23107. {
  23108. name: "Normal",
  23109. height: math.unit(6 + 5 / 12, "feet"),
  23110. default: true
  23111. },
  23112. {
  23113. name: "Macro",
  23114. height: math.unit(1, "mile")
  23115. },
  23116. {
  23117. name: "Megamacro",
  23118. height: math.unit(50, "miles")
  23119. },
  23120. ]
  23121. ))
  23122. characterMakers.push(() => makeCharacter(
  23123. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23124. {
  23125. front: {
  23126. height: math.unit(1.5, "meters"),
  23127. weight: math.unit(100, "lb"),
  23128. name: "Front",
  23129. image: {
  23130. source: "./media/characters/maksio/front.svg",
  23131. extra: 1549 / 1531,
  23132. bottom: 123.7 / 1674.5429
  23133. }
  23134. },
  23135. back: {
  23136. height: math.unit(1.5, "meters"),
  23137. weight: math.unit(100, "lb"),
  23138. name: "Back",
  23139. image: {
  23140. source: "./media/characters/maksio/back.svg",
  23141. extra: 1541 / 1509,
  23142. bottom: 97 / 1639
  23143. }
  23144. },
  23145. hand: {
  23146. height: math.unit(0.621, "feet"),
  23147. name: "Hand",
  23148. image: {
  23149. source: "./media/characters/maksio/hand.svg"
  23150. }
  23151. },
  23152. foot: {
  23153. height: math.unit(1.611, "feet"),
  23154. name: "Foot",
  23155. image: {
  23156. source: "./media/characters/maksio/foot.svg"
  23157. }
  23158. },
  23159. },
  23160. [
  23161. {
  23162. name: "Shrunken",
  23163. height: math.unit(10, "cm")
  23164. },
  23165. {
  23166. name: "Normal",
  23167. height: math.unit(150, "cm"),
  23168. default: true
  23169. },
  23170. ]
  23171. ))
  23172. characterMakers.push(() => makeCharacter(
  23173. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23174. {
  23175. front: {
  23176. height: math.unit(100, "feet"),
  23177. name: "Front",
  23178. image: {
  23179. source: "./media/characters/erza-bear/front.svg",
  23180. extra: 2449 / 2390,
  23181. bottom: 46 / 2494
  23182. }
  23183. },
  23184. back: {
  23185. height: math.unit(100, "feet"),
  23186. name: "Back",
  23187. image: {
  23188. source: "./media/characters/erza-bear/back.svg",
  23189. extra: 2489 / 2430,
  23190. bottom: 85.4 / 2480
  23191. }
  23192. },
  23193. tail: {
  23194. height: math.unit(42, "feet"),
  23195. name: "Tail",
  23196. image: {
  23197. source: "./media/characters/erza-bear/tail.svg"
  23198. }
  23199. },
  23200. tongue: {
  23201. height: math.unit(8, "feet"),
  23202. name: "Tongue",
  23203. image: {
  23204. source: "./media/characters/erza-bear/tongue.svg"
  23205. }
  23206. },
  23207. dick: {
  23208. height: math.unit(10.5, "feet"),
  23209. name: "Dick",
  23210. image: {
  23211. source: "./media/characters/erza-bear/dick.svg"
  23212. }
  23213. },
  23214. dickVertical: {
  23215. height: math.unit(16.9, "feet"),
  23216. name: "Dick (Vertical)",
  23217. image: {
  23218. source: "./media/characters/erza-bear/dick-vertical.svg"
  23219. }
  23220. },
  23221. },
  23222. [
  23223. {
  23224. name: "Macro",
  23225. height: math.unit(100, "feet"),
  23226. default: true
  23227. },
  23228. ]
  23229. ))
  23230. characterMakers.push(() => makeCharacter(
  23231. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23232. {
  23233. front: {
  23234. height: math.unit(172, "cm"),
  23235. weight: math.unit(73, "kg"),
  23236. name: "Front",
  23237. image: {
  23238. source: "./media/characters/violet-flor/front.svg",
  23239. extra: 1530 / 1442,
  23240. bottom: 61.9 / 1588.8
  23241. }
  23242. },
  23243. back: {
  23244. height: math.unit(180, "cm"),
  23245. weight: math.unit(73, "kg"),
  23246. name: "Back",
  23247. image: {
  23248. source: "./media/characters/violet-flor/back.svg",
  23249. extra: 1692 / 1630,
  23250. bottom: 20 / 1712
  23251. }
  23252. },
  23253. },
  23254. [
  23255. {
  23256. name: "Normal",
  23257. height: math.unit(172, "cm"),
  23258. default: true
  23259. },
  23260. ]
  23261. ))
  23262. characterMakers.push(() => makeCharacter(
  23263. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23264. {
  23265. front: {
  23266. height: math.unit(6, "feet"),
  23267. weight: math.unit(220, "lb"),
  23268. name: "Front",
  23269. image: {
  23270. source: "./media/characters/lynn-rhea/front.svg",
  23271. extra: 310 / 273
  23272. }
  23273. },
  23274. back: {
  23275. height: math.unit(6, "feet"),
  23276. weight: math.unit(220, "lb"),
  23277. name: "Back",
  23278. image: {
  23279. source: "./media/characters/lynn-rhea/back.svg",
  23280. extra: 310 / 273
  23281. }
  23282. },
  23283. dicks: {
  23284. height: math.unit(0.9, "feet"),
  23285. name: "Dicks",
  23286. image: {
  23287. source: "./media/characters/lynn-rhea/dicks.svg"
  23288. }
  23289. },
  23290. slit: {
  23291. height: math.unit(0.4, "feet"),
  23292. name: "Slit",
  23293. image: {
  23294. source: "./media/characters/lynn-rhea/slit.svg"
  23295. }
  23296. },
  23297. },
  23298. [
  23299. {
  23300. name: "Micro",
  23301. height: math.unit(1, "inch")
  23302. },
  23303. {
  23304. name: "Macro",
  23305. height: math.unit(60, "feet"),
  23306. default: true
  23307. },
  23308. {
  23309. name: "Megamacro",
  23310. height: math.unit(2, "miles")
  23311. },
  23312. {
  23313. name: "Gigamacro",
  23314. height: math.unit(3, "earths")
  23315. },
  23316. {
  23317. name: "Galactic",
  23318. height: math.unit(0.8, "galaxies")
  23319. },
  23320. ]
  23321. ))
  23322. characterMakers.push(() => makeCharacter(
  23323. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23324. {
  23325. front: {
  23326. height: math.unit(1600, "feet"),
  23327. weight: math.unit(85758785169, "kg"),
  23328. name: "Front",
  23329. image: {
  23330. source: "./media/characters/valathos/front.svg",
  23331. extra: 1451 / 1339
  23332. }
  23333. },
  23334. },
  23335. [
  23336. {
  23337. name: "Macro",
  23338. height: math.unit(1600, "feet"),
  23339. default: true
  23340. },
  23341. ]
  23342. ))
  23343. characterMakers.push(() => makeCharacter(
  23344. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23345. {
  23346. front: {
  23347. height: math.unit(7 + 5 / 12, "feet"),
  23348. weight: math.unit(300, "lb"),
  23349. name: "Front",
  23350. image: {
  23351. source: "./media/characters/azula/front.svg",
  23352. extra: 3208 / 2880,
  23353. bottom: 80.2 / 3277
  23354. }
  23355. },
  23356. back: {
  23357. height: math.unit(7 + 5 / 12, "feet"),
  23358. weight: math.unit(300, "lb"),
  23359. name: "Back",
  23360. image: {
  23361. source: "./media/characters/azula/back.svg",
  23362. extra: 3169 / 2822,
  23363. bottom: 150.6 / 3321
  23364. }
  23365. },
  23366. },
  23367. [
  23368. {
  23369. name: "Normal",
  23370. height: math.unit(7 + 5 / 12, "feet"),
  23371. default: true
  23372. },
  23373. {
  23374. name: "Big",
  23375. height: math.unit(20, "feet")
  23376. },
  23377. ]
  23378. ))
  23379. characterMakers.push(() => makeCharacter(
  23380. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23381. {
  23382. front: {
  23383. height: math.unit(5 + 1 / 12, "feet"),
  23384. weight: math.unit(110, "lb"),
  23385. name: "Front",
  23386. image: {
  23387. source: "./media/characters/rupert/front.svg",
  23388. extra: 1549 / 1495,
  23389. bottom: 54.2 / 1604.4
  23390. }
  23391. },
  23392. },
  23393. [
  23394. {
  23395. name: "Normal",
  23396. height: math.unit(5 + 1 / 12, "feet"),
  23397. default: true
  23398. },
  23399. ]
  23400. ))
  23401. characterMakers.push(() => makeCharacter(
  23402. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23403. {
  23404. front: {
  23405. height: math.unit(8 + 4 / 12, "feet"),
  23406. weight: math.unit(350, "lb"),
  23407. name: "Front",
  23408. image: {
  23409. source: "./media/characters/sheera-castellar/front.svg",
  23410. extra: 1957 / 1894,
  23411. bottom: 26.97 / 1975.017
  23412. }
  23413. },
  23414. side: {
  23415. height: math.unit(8 + 4 / 12, "feet"),
  23416. weight: math.unit(350, "lb"),
  23417. name: "Side",
  23418. image: {
  23419. source: "./media/characters/sheera-castellar/side.svg",
  23420. extra: 1957 / 1894
  23421. }
  23422. },
  23423. back: {
  23424. height: math.unit(8 + 4 / 12, "feet"),
  23425. weight: math.unit(350, "lb"),
  23426. name: "Back",
  23427. image: {
  23428. source: "./media/characters/sheera-castellar/back.svg",
  23429. extra: 1957 / 1894
  23430. }
  23431. },
  23432. angled: {
  23433. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23434. weight: math.unit(350, "lb"),
  23435. name: "Angled",
  23436. image: {
  23437. source: "./media/characters/sheera-castellar/angled.svg",
  23438. extra: 1807 / 1707,
  23439. bottom: 68 / 1875
  23440. }
  23441. },
  23442. genitals: {
  23443. height: math.unit(2.2, "feet"),
  23444. name: "Genitals",
  23445. image: {
  23446. source: "./media/characters/sheera-castellar/genitals.svg"
  23447. }
  23448. },
  23449. taur: {
  23450. height: math.unit(10 + 6/12, "feet"),
  23451. name: "Taur",
  23452. image: {
  23453. source: "./media/characters/sheera-castellar/taur.svg",
  23454. extra: 2017/1909,
  23455. bottom: 185/2202
  23456. }
  23457. },
  23458. },
  23459. [
  23460. {
  23461. name: "Normal",
  23462. height: math.unit(8 + 4 / 12, "feet")
  23463. },
  23464. {
  23465. name: "Macro",
  23466. height: math.unit(150, "feet"),
  23467. default: true
  23468. },
  23469. {
  23470. name: "Macro+",
  23471. height: math.unit(800, "feet")
  23472. },
  23473. ]
  23474. ))
  23475. characterMakers.push(() => makeCharacter(
  23476. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23477. {
  23478. front: {
  23479. height: math.unit(6, "feet"),
  23480. weight: math.unit(150, "lb"),
  23481. name: "Front",
  23482. image: {
  23483. source: "./media/characters/jaipur/front.svg",
  23484. extra: 3860 / 3731,
  23485. bottom: 287 / 4140
  23486. }
  23487. },
  23488. back: {
  23489. height: math.unit(6, "feet"),
  23490. weight: math.unit(150, "lb"),
  23491. name: "Back",
  23492. image: {
  23493. source: "./media/characters/jaipur/back.svg",
  23494. extra: 4060 / 3930,
  23495. bottom: 151 / 4200
  23496. }
  23497. },
  23498. },
  23499. [
  23500. {
  23501. name: "Normal",
  23502. height: math.unit(1.85, "meters"),
  23503. default: true
  23504. },
  23505. {
  23506. name: "Macro",
  23507. height: math.unit(150, "meters")
  23508. },
  23509. {
  23510. name: "Macro+",
  23511. height: math.unit(0.5, "miles")
  23512. },
  23513. {
  23514. name: "Macro++",
  23515. height: math.unit(2.5, "miles")
  23516. },
  23517. {
  23518. name: "Macro+++",
  23519. height: math.unit(12, "miles")
  23520. },
  23521. {
  23522. name: "Macro++++",
  23523. height: math.unit(120, "miles")
  23524. },
  23525. {
  23526. name: "Macro+++++",
  23527. height: math.unit(1200, "miles")
  23528. },
  23529. ]
  23530. ))
  23531. characterMakers.push(() => makeCharacter(
  23532. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23533. {
  23534. front: {
  23535. height: math.unit(6, "feet"),
  23536. weight: math.unit(150, "lb"),
  23537. name: "Front",
  23538. image: {
  23539. source: "./media/characters/sheila-wolf/front.svg",
  23540. extra: 1931 / 1808,
  23541. bottom: 29.5 / 1960
  23542. }
  23543. },
  23544. dick: {
  23545. height: math.unit(1.464, "feet"),
  23546. name: "Dick",
  23547. image: {
  23548. source: "./media/characters/sheila-wolf/dick.svg"
  23549. }
  23550. },
  23551. muzzle: {
  23552. height: math.unit(0.513, "feet"),
  23553. name: "Muzzle",
  23554. image: {
  23555. source: "./media/characters/sheila-wolf/muzzle.svg"
  23556. }
  23557. },
  23558. },
  23559. [
  23560. {
  23561. name: "Macro",
  23562. height: math.unit(70, "feet"),
  23563. default: true
  23564. },
  23565. ]
  23566. ))
  23567. characterMakers.push(() => makeCharacter(
  23568. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23569. {
  23570. front: {
  23571. height: math.unit(32, "meters"),
  23572. weight: math.unit(300000, "kg"),
  23573. name: "Front",
  23574. image: {
  23575. source: "./media/characters/almor/front.svg",
  23576. extra: 1408 / 1322,
  23577. bottom: 94.6 / 1506.5
  23578. }
  23579. },
  23580. },
  23581. [
  23582. {
  23583. name: "Macro",
  23584. height: math.unit(32, "meters"),
  23585. default: true
  23586. },
  23587. ]
  23588. ))
  23589. characterMakers.push(() => makeCharacter(
  23590. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23591. {
  23592. front: {
  23593. height: math.unit(7, "feet"),
  23594. weight: math.unit(200, "lb"),
  23595. name: "Front",
  23596. image: {
  23597. source: "./media/characters/silver/front.svg",
  23598. extra: 472.1 / 450.5,
  23599. bottom: 26.5 / 499.424
  23600. }
  23601. },
  23602. },
  23603. [
  23604. {
  23605. name: "Normal",
  23606. height: math.unit(7, "feet"),
  23607. default: true
  23608. },
  23609. {
  23610. name: "Macro",
  23611. height: math.unit(800, "feet")
  23612. },
  23613. {
  23614. name: "Megamacro",
  23615. height: math.unit(250, "miles")
  23616. },
  23617. ]
  23618. ))
  23619. characterMakers.push(() => makeCharacter(
  23620. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23621. {
  23622. front: {
  23623. height: math.unit(6, "feet"),
  23624. weight: math.unit(150, "lb"),
  23625. name: "Front",
  23626. image: {
  23627. source: "./media/characters/pliskin/front.svg",
  23628. extra: 1469 / 1359,
  23629. bottom: 70 / 1540
  23630. }
  23631. },
  23632. },
  23633. [
  23634. {
  23635. name: "Micro",
  23636. height: math.unit(3, "inches")
  23637. },
  23638. {
  23639. name: "Normal",
  23640. height: math.unit(5 + 11 / 12, "feet"),
  23641. default: true
  23642. },
  23643. {
  23644. name: "Macro",
  23645. height: math.unit(120, "feet")
  23646. },
  23647. ]
  23648. ))
  23649. characterMakers.push(() => makeCharacter(
  23650. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23651. {
  23652. front: {
  23653. height: math.unit(6, "feet"),
  23654. weight: math.unit(150, "lb"),
  23655. name: "Front",
  23656. image: {
  23657. source: "./media/characters/sammy/front.svg",
  23658. extra: 1193 / 1089,
  23659. bottom: 30.5 / 1226
  23660. }
  23661. },
  23662. },
  23663. [
  23664. {
  23665. name: "Macro",
  23666. height: math.unit(1700, "feet"),
  23667. default: true
  23668. },
  23669. {
  23670. name: "Examacro",
  23671. height: math.unit(2.5e9, "lightyears")
  23672. },
  23673. ]
  23674. ))
  23675. characterMakers.push(() => makeCharacter(
  23676. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23677. {
  23678. front: {
  23679. height: math.unit(21, "meters"),
  23680. weight: math.unit(12, "tonnes"),
  23681. name: "Front",
  23682. image: {
  23683. source: "./media/characters/kuru/front.svg",
  23684. extra: 4301 / 3785,
  23685. bottom: 371.3 / 4691
  23686. }
  23687. },
  23688. },
  23689. [
  23690. {
  23691. name: "Macro",
  23692. height: math.unit(21, "meters"),
  23693. default: true
  23694. },
  23695. ]
  23696. ))
  23697. characterMakers.push(() => makeCharacter(
  23698. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23699. {
  23700. front: {
  23701. height: math.unit(23, "meters"),
  23702. weight: math.unit(12.2, "tonnes"),
  23703. name: "Front",
  23704. image: {
  23705. source: "./media/characters/rakka/front.svg",
  23706. extra: 4670 / 4169,
  23707. bottom: 301 / 4968.7
  23708. }
  23709. },
  23710. },
  23711. [
  23712. {
  23713. name: "Macro",
  23714. height: math.unit(23, "meters"),
  23715. default: true
  23716. },
  23717. ]
  23718. ))
  23719. characterMakers.push(() => makeCharacter(
  23720. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23721. {
  23722. front: {
  23723. height: math.unit(6, "feet"),
  23724. weight: math.unit(150, "lb"),
  23725. name: "Front",
  23726. image: {
  23727. source: "./media/characters/rhys-feline/front.svg",
  23728. extra: 2488 / 2308,
  23729. bottom: 35.67 / 2519.19
  23730. }
  23731. },
  23732. },
  23733. [
  23734. {
  23735. name: "Really Small",
  23736. height: math.unit(1, "nm")
  23737. },
  23738. {
  23739. name: "Micro",
  23740. height: math.unit(4, "inches")
  23741. },
  23742. {
  23743. name: "Normal",
  23744. height: math.unit(4 + 10 / 12, "feet"),
  23745. default: true
  23746. },
  23747. {
  23748. name: "Macro",
  23749. height: math.unit(100, "feet")
  23750. },
  23751. {
  23752. name: "Megamacto",
  23753. height: math.unit(50, "miles")
  23754. },
  23755. ]
  23756. ))
  23757. characterMakers.push(() => makeCharacter(
  23758. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23759. {
  23760. side: {
  23761. height: math.unit(30, "feet"),
  23762. weight: math.unit(35000, "kg"),
  23763. name: "Side",
  23764. image: {
  23765. source: "./media/characters/alydar/side.svg",
  23766. extra: 234 / 222,
  23767. bottom: 6.5 / 241
  23768. }
  23769. },
  23770. front: {
  23771. height: math.unit(30, "feet"),
  23772. weight: math.unit(35000, "kg"),
  23773. name: "Front",
  23774. image: {
  23775. source: "./media/characters/alydar/front.svg",
  23776. extra: 223.37 / 210.2,
  23777. bottom: 22.3 / 246.76
  23778. }
  23779. },
  23780. top: {
  23781. height: math.unit(64.54, "feet"),
  23782. weight: math.unit(35000, "kg"),
  23783. name: "Top",
  23784. image: {
  23785. source: "./media/characters/alydar/top.svg"
  23786. }
  23787. },
  23788. anthro: {
  23789. height: math.unit(30, "feet"),
  23790. weight: math.unit(9000, "kg"),
  23791. name: "Anthro",
  23792. image: {
  23793. source: "./media/characters/alydar/anthro.svg",
  23794. extra: 432 / 421,
  23795. bottom: 7.18 / 440
  23796. }
  23797. },
  23798. maw: {
  23799. height: math.unit(11.693, "feet"),
  23800. name: "Maw",
  23801. image: {
  23802. source: "./media/characters/alydar/maw.svg"
  23803. }
  23804. },
  23805. head: {
  23806. height: math.unit(11.693, "feet"),
  23807. name: "Head",
  23808. image: {
  23809. source: "./media/characters/alydar/head.svg"
  23810. }
  23811. },
  23812. headAlt: {
  23813. height: math.unit(12.861, "feet"),
  23814. name: "Head (Alt)",
  23815. image: {
  23816. source: "./media/characters/alydar/head-alt.svg"
  23817. }
  23818. },
  23819. wing: {
  23820. height: math.unit(20.712, "feet"),
  23821. name: "Wing",
  23822. image: {
  23823. source: "./media/characters/alydar/wing.svg"
  23824. }
  23825. },
  23826. wingFeather: {
  23827. height: math.unit(9.662, "feet"),
  23828. name: "Wing Feather",
  23829. image: {
  23830. source: "./media/characters/alydar/wing-feather.svg"
  23831. }
  23832. },
  23833. countourFeather: {
  23834. height: math.unit(4.154, "feet"),
  23835. name: "Contour Feather",
  23836. image: {
  23837. source: "./media/characters/alydar/contour-feather.svg"
  23838. }
  23839. },
  23840. },
  23841. [
  23842. {
  23843. name: "Diplomatic",
  23844. height: math.unit(13, "feet"),
  23845. default: true
  23846. },
  23847. {
  23848. name: "Small",
  23849. height: math.unit(30, "feet")
  23850. },
  23851. {
  23852. name: "Normal",
  23853. height: math.unit(95, "feet"),
  23854. default: true
  23855. },
  23856. {
  23857. name: "Large",
  23858. height: math.unit(285, "feet")
  23859. },
  23860. {
  23861. name: "Incomprehensible",
  23862. height: math.unit(450, "megameters")
  23863. },
  23864. ]
  23865. ))
  23866. characterMakers.push(() => makeCharacter(
  23867. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23868. {
  23869. side: {
  23870. height: math.unit(11, "feet"),
  23871. weight: math.unit(1750, "kg"),
  23872. name: "Side",
  23873. image: {
  23874. source: "./media/characters/selicia/side.svg",
  23875. extra: 440 / 396,
  23876. bottom: 24.8 / 465.979
  23877. }
  23878. },
  23879. maw: {
  23880. height: math.unit(4.665, "feet"),
  23881. name: "Maw",
  23882. image: {
  23883. source: "./media/characters/selicia/maw.svg"
  23884. }
  23885. },
  23886. },
  23887. [
  23888. {
  23889. name: "Normal",
  23890. height: math.unit(11, "feet"),
  23891. default: true
  23892. },
  23893. ]
  23894. ))
  23895. characterMakers.push(() => makeCharacter(
  23896. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23897. {
  23898. side: {
  23899. height: math.unit(2 + 6 / 12, "feet"),
  23900. weight: math.unit(30, "lb"),
  23901. name: "Side",
  23902. image: {
  23903. source: "./media/characters/layla/side.svg",
  23904. extra: 244 / 188,
  23905. bottom: 18.2 / 262.1
  23906. }
  23907. },
  23908. back: {
  23909. height: math.unit(2 + 6 / 12, "feet"),
  23910. weight: math.unit(30, "lb"),
  23911. name: "Back",
  23912. image: {
  23913. source: "./media/characters/layla/back.svg",
  23914. extra: 308 / 241.5,
  23915. bottom: 8.9 / 316.8
  23916. }
  23917. },
  23918. cumming: {
  23919. height: math.unit(2 + 6 / 12, "feet"),
  23920. weight: math.unit(30, "lb"),
  23921. name: "Cumming",
  23922. image: {
  23923. source: "./media/characters/layla/cumming.svg",
  23924. extra: 342 / 279,
  23925. bottom: 595 / 938
  23926. }
  23927. },
  23928. dickFlaccid: {
  23929. height: math.unit(2.595, "feet"),
  23930. name: "Flaccid Genitals",
  23931. image: {
  23932. source: "./media/characters/layla/dick-flaccid.svg"
  23933. }
  23934. },
  23935. dickErect: {
  23936. height: math.unit(2.359, "feet"),
  23937. name: "Erect Genitals",
  23938. image: {
  23939. source: "./media/characters/layla/dick-erect.svg"
  23940. }
  23941. },
  23942. dragon: {
  23943. height: math.unit(40, "feet"),
  23944. name: "Dragon",
  23945. image: {
  23946. source: "./media/characters/layla/dragon.svg",
  23947. extra: 610/535,
  23948. bottom: 367/977
  23949. }
  23950. },
  23951. taur: {
  23952. height: math.unit(30, "feet"),
  23953. name: "Taur",
  23954. image: {
  23955. source: "./media/characters/layla/taur.svg",
  23956. extra: 1268/1199,
  23957. bottom: 112/1380
  23958. }
  23959. },
  23960. },
  23961. [
  23962. {
  23963. name: "Micro",
  23964. height: math.unit(1, "inch")
  23965. },
  23966. {
  23967. name: "Small",
  23968. height: math.unit(1, "foot")
  23969. },
  23970. {
  23971. name: "Normal",
  23972. height: math.unit(2 + 6 / 12, "feet"),
  23973. default: true
  23974. },
  23975. {
  23976. name: "Macro",
  23977. height: math.unit(200, "feet")
  23978. },
  23979. {
  23980. name: "Megamacro",
  23981. height: math.unit(1000, "miles")
  23982. },
  23983. {
  23984. name: "Planetary",
  23985. height: math.unit(8000, "miles")
  23986. },
  23987. {
  23988. name: "True Layla",
  23989. height: math.unit(200000 * 7, "multiverses")
  23990. },
  23991. ]
  23992. ))
  23993. characterMakers.push(() => makeCharacter(
  23994. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23995. {
  23996. back: {
  23997. height: math.unit(10.5, "feet"),
  23998. weight: math.unit(800, "lb"),
  23999. name: "Back",
  24000. image: {
  24001. source: "./media/characters/knox/back.svg",
  24002. extra: 1486 / 1089,
  24003. bottom: 107 / 1601.4
  24004. }
  24005. },
  24006. side: {
  24007. height: math.unit(10.5, "feet"),
  24008. weight: math.unit(800, "lb"),
  24009. name: "Side",
  24010. image: {
  24011. source: "./media/characters/knox/side.svg",
  24012. extra: 244 / 218,
  24013. bottom: 14 / 260
  24014. }
  24015. },
  24016. },
  24017. [
  24018. {
  24019. name: "Compact",
  24020. height: math.unit(10.5, "feet"),
  24021. default: true
  24022. },
  24023. {
  24024. name: "Dynamax",
  24025. height: math.unit(210, "feet")
  24026. },
  24027. {
  24028. name: "Full Macro",
  24029. height: math.unit(850, "feet")
  24030. },
  24031. ]
  24032. ))
  24033. characterMakers.push(() => makeCharacter(
  24034. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24035. {
  24036. front: {
  24037. height: math.unit(28, "feet"),
  24038. weight: math.unit(10500, "lb"),
  24039. name: "Front",
  24040. image: {
  24041. source: "./media/characters/kayda/front.svg",
  24042. extra: 1536 / 1428,
  24043. bottom: 68.7 / 1603
  24044. }
  24045. },
  24046. back: {
  24047. height: math.unit(28, "feet"),
  24048. weight: math.unit(10500, "lb"),
  24049. name: "Back",
  24050. image: {
  24051. source: "./media/characters/kayda/back.svg",
  24052. extra: 1557 / 1464,
  24053. bottom: 39.5 / 1597.49
  24054. }
  24055. },
  24056. dick: {
  24057. height: math.unit(3.858, "feet"),
  24058. name: "Dick",
  24059. image: {
  24060. source: "./media/characters/kayda/dick.svg"
  24061. }
  24062. },
  24063. },
  24064. [
  24065. {
  24066. name: "Macro",
  24067. height: math.unit(28, "feet"),
  24068. default: true
  24069. },
  24070. ]
  24071. ))
  24072. characterMakers.push(() => makeCharacter(
  24073. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24074. {
  24075. front: {
  24076. height: math.unit(10 + 11 / 12, "feet"),
  24077. weight: math.unit(1400, "lb"),
  24078. name: "Front",
  24079. image: {
  24080. source: "./media/characters/brian/front.svg",
  24081. extra: 737 / 692,
  24082. bottom: 55.4 / 785
  24083. }
  24084. },
  24085. },
  24086. [
  24087. {
  24088. name: "Normal",
  24089. height: math.unit(10 + 11 / 12, "feet"),
  24090. default: true
  24091. },
  24092. ]
  24093. ))
  24094. characterMakers.push(() => makeCharacter(
  24095. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24096. {
  24097. front: {
  24098. height: math.unit(5 + 8 / 12, "feet"),
  24099. weight: math.unit(140, "lb"),
  24100. name: "Front",
  24101. image: {
  24102. source: "./media/characters/khemri/front.svg",
  24103. extra: 4780 / 4059,
  24104. bottom: 80.1 / 4859.25
  24105. }
  24106. },
  24107. },
  24108. [
  24109. {
  24110. name: "Micro",
  24111. height: math.unit(6, "inches")
  24112. },
  24113. {
  24114. name: "Normal",
  24115. height: math.unit(5 + 8 / 12, "feet"),
  24116. default: true
  24117. },
  24118. ]
  24119. ))
  24120. characterMakers.push(() => makeCharacter(
  24121. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24122. {
  24123. front: {
  24124. height: math.unit(13, "feet"),
  24125. weight: math.unit(1700, "lb"),
  24126. name: "Front",
  24127. image: {
  24128. source: "./media/characters/felix-braveheart/front.svg",
  24129. extra: 1222 / 1157,
  24130. bottom: 53.2 / 1280
  24131. }
  24132. },
  24133. back: {
  24134. height: math.unit(13, "feet"),
  24135. weight: math.unit(1700, "lb"),
  24136. name: "Back",
  24137. image: {
  24138. source: "./media/characters/felix-braveheart/back.svg",
  24139. extra: 1277 / 1203,
  24140. bottom: 50.2 / 1327
  24141. }
  24142. },
  24143. feral: {
  24144. height: math.unit(6, "feet"),
  24145. weight: math.unit(400, "lb"),
  24146. name: "Feral",
  24147. image: {
  24148. source: "./media/characters/felix-braveheart/feral.svg",
  24149. extra: 682 / 625,
  24150. bottom: 6.9 / 688
  24151. }
  24152. },
  24153. },
  24154. [
  24155. {
  24156. name: "Normal",
  24157. height: math.unit(13, "feet"),
  24158. default: true
  24159. },
  24160. ]
  24161. ))
  24162. characterMakers.push(() => makeCharacter(
  24163. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24164. {
  24165. side: {
  24166. height: math.unit(5 + 11 / 12, "feet"),
  24167. weight: math.unit(1400, "lb"),
  24168. name: "Side",
  24169. image: {
  24170. source: "./media/characters/shadow-blade/side.svg",
  24171. extra: 1726 / 1267,
  24172. bottom: 58.4 / 1785
  24173. }
  24174. },
  24175. },
  24176. [
  24177. {
  24178. name: "Normal",
  24179. height: math.unit(5 + 11 / 12, "feet"),
  24180. default: true
  24181. },
  24182. ]
  24183. ))
  24184. characterMakers.push(() => makeCharacter(
  24185. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24186. {
  24187. front: {
  24188. height: math.unit(1 + 6 / 12, "feet"),
  24189. weight: math.unit(25, "lb"),
  24190. name: "Front",
  24191. image: {
  24192. source: "./media/characters/karla-halldor/front.svg",
  24193. extra: 1459 / 1383,
  24194. bottom: 12 / 1472
  24195. }
  24196. },
  24197. },
  24198. [
  24199. {
  24200. name: "Normal",
  24201. height: math.unit(1 + 6 / 12, "feet"),
  24202. default: true
  24203. },
  24204. ]
  24205. ))
  24206. characterMakers.push(() => makeCharacter(
  24207. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24208. {
  24209. front: {
  24210. height: math.unit(6 + 2 / 12, "feet"),
  24211. weight: math.unit(160, "lb"),
  24212. name: "Front",
  24213. image: {
  24214. source: "./media/characters/ariam/front.svg",
  24215. extra: 1073/976,
  24216. bottom: 52/1125
  24217. }
  24218. },
  24219. back: {
  24220. height: math.unit(6 + 2/12, "feet"),
  24221. weight: math.unit(160, "lb"),
  24222. name: "Back",
  24223. image: {
  24224. source: "./media/characters/ariam/back.svg",
  24225. extra: 1103/1023,
  24226. bottom: 9/1112
  24227. }
  24228. },
  24229. dressed: {
  24230. height: math.unit(6 + 2/12, "feet"),
  24231. weight: math.unit(160, "lb"),
  24232. name: "Dressed",
  24233. image: {
  24234. source: "./media/characters/ariam/dressed.svg",
  24235. extra: 1099/1009,
  24236. bottom: 25/1124
  24237. }
  24238. },
  24239. squatting: {
  24240. height: math.unit(4.1, "feet"),
  24241. weight: math.unit(160, "lb"),
  24242. name: "Squatting",
  24243. image: {
  24244. source: "./media/characters/ariam/squatting.svg",
  24245. extra: 2617 / 2112,
  24246. bottom: 61.2 / 2681,
  24247. }
  24248. },
  24249. },
  24250. [
  24251. {
  24252. name: "Normal",
  24253. height: math.unit(6 + 2 / 12, "feet"),
  24254. default: true
  24255. },
  24256. {
  24257. name: "Normal+",
  24258. height: math.unit(4, "meters")
  24259. },
  24260. {
  24261. name: "Macro",
  24262. height: math.unit(50, "meters")
  24263. },
  24264. {
  24265. name: "Macro+",
  24266. height: math.unit(100, "meters")
  24267. },
  24268. {
  24269. name: "Megamacro",
  24270. height: math.unit(20, "km")
  24271. },
  24272. {
  24273. name: "Caretaker",
  24274. height: math.unit(444, "megameters")
  24275. },
  24276. ]
  24277. ))
  24278. characterMakers.push(() => makeCharacter(
  24279. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24280. {
  24281. front: {
  24282. height: math.unit(1.67, "meters"),
  24283. weight: math.unit(140, "lb"),
  24284. name: "Front",
  24285. image: {
  24286. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24287. extra: 438 / 410,
  24288. bottom: 0.75 / 439
  24289. }
  24290. },
  24291. },
  24292. [
  24293. {
  24294. name: "Shrunken",
  24295. height: math.unit(7.6, "cm")
  24296. },
  24297. {
  24298. name: "Human Scale",
  24299. height: math.unit(1.67, "meters")
  24300. },
  24301. {
  24302. name: "Wolxi Scale",
  24303. height: math.unit(36.7, "meters"),
  24304. default: true
  24305. },
  24306. ]
  24307. ))
  24308. characterMakers.push(() => makeCharacter(
  24309. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24310. {
  24311. front: {
  24312. height: math.unit(1.73, "meters"),
  24313. weight: math.unit(240, "lb"),
  24314. name: "Front",
  24315. image: {
  24316. source: "./media/characters/izue-two-mothers/front.svg",
  24317. extra: 469 / 437,
  24318. bottom: 1.24 / 470.6
  24319. }
  24320. },
  24321. },
  24322. [
  24323. {
  24324. name: "Shrunken",
  24325. height: math.unit(7.86, "cm")
  24326. },
  24327. {
  24328. name: "Human Scale",
  24329. height: math.unit(1.73, "meters")
  24330. },
  24331. {
  24332. name: "Wolxi Scale",
  24333. height: math.unit(38, "meters"),
  24334. default: true
  24335. },
  24336. ]
  24337. ))
  24338. characterMakers.push(() => makeCharacter(
  24339. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24340. {
  24341. front: {
  24342. height: math.unit(1.55, "meters"),
  24343. weight: math.unit(120, "lb"),
  24344. name: "Front",
  24345. image: {
  24346. source: "./media/characters/teeku-love-shack/front.svg",
  24347. extra: 387 / 362,
  24348. bottom: 1.51 / 388
  24349. }
  24350. },
  24351. },
  24352. [
  24353. {
  24354. name: "Shrunken",
  24355. height: math.unit(7, "cm")
  24356. },
  24357. {
  24358. name: "Human Scale",
  24359. height: math.unit(1.55, "meters")
  24360. },
  24361. {
  24362. name: "Wolxi Scale",
  24363. height: math.unit(34.1, "meters"),
  24364. default: true
  24365. },
  24366. ]
  24367. ))
  24368. characterMakers.push(() => makeCharacter(
  24369. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24370. {
  24371. front: {
  24372. height: math.unit(1.83, "meters"),
  24373. weight: math.unit(135, "lb"),
  24374. name: "Front",
  24375. image: {
  24376. source: "./media/characters/dejma-the-red/front.svg",
  24377. extra: 480 / 458,
  24378. bottom: 1.8 / 482
  24379. }
  24380. },
  24381. },
  24382. [
  24383. {
  24384. name: "Shrunken",
  24385. height: math.unit(8.3, "cm")
  24386. },
  24387. {
  24388. name: "Human Scale",
  24389. height: math.unit(1.83, "meters")
  24390. },
  24391. {
  24392. name: "Wolxi Scale",
  24393. height: math.unit(40, "meters"),
  24394. default: true
  24395. },
  24396. ]
  24397. ))
  24398. characterMakers.push(() => makeCharacter(
  24399. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24400. {
  24401. front: {
  24402. height: math.unit(1.78, "meters"),
  24403. weight: math.unit(65, "kg"),
  24404. name: "Front",
  24405. image: {
  24406. source: "./media/characters/aki/front.svg",
  24407. extra: 452 / 415
  24408. }
  24409. },
  24410. frontNsfw: {
  24411. height: math.unit(1.78, "meters"),
  24412. weight: math.unit(65, "kg"),
  24413. name: "Front (NSFW)",
  24414. image: {
  24415. source: "./media/characters/aki/front-nsfw.svg",
  24416. extra: 452 / 415
  24417. }
  24418. },
  24419. back: {
  24420. height: math.unit(1.78, "meters"),
  24421. weight: math.unit(65, "kg"),
  24422. name: "Back",
  24423. image: {
  24424. source: "./media/characters/aki/back.svg",
  24425. extra: 452 / 415
  24426. }
  24427. },
  24428. rump: {
  24429. height: math.unit(2.05, "feet"),
  24430. name: "Rump",
  24431. image: {
  24432. source: "./media/characters/aki/rump.svg"
  24433. }
  24434. },
  24435. dick: {
  24436. height: math.unit(0.95, "feet"),
  24437. name: "Dick",
  24438. image: {
  24439. source: "./media/characters/aki/dick.svg"
  24440. }
  24441. },
  24442. },
  24443. [
  24444. {
  24445. name: "Micro",
  24446. height: math.unit(15, "cm")
  24447. },
  24448. {
  24449. name: "Normal",
  24450. height: math.unit(178, "cm"),
  24451. default: true
  24452. },
  24453. {
  24454. name: "Macro",
  24455. height: math.unit(214, "m")
  24456. },
  24457. {
  24458. name: "Macro+",
  24459. height: math.unit(534, "m")
  24460. },
  24461. ]
  24462. ))
  24463. characterMakers.push(() => makeCharacter(
  24464. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24465. {
  24466. front: {
  24467. height: math.unit(5 + 5 / 12, "feet"),
  24468. weight: math.unit(120, "lb"),
  24469. name: "Front",
  24470. image: {
  24471. source: "./media/characters/ari/front.svg",
  24472. extra: 714.5 / 682,
  24473. bottom: 8 / 722.5
  24474. }
  24475. },
  24476. },
  24477. [
  24478. {
  24479. name: "Normal",
  24480. height: math.unit(5 + 5 / 12, "feet")
  24481. },
  24482. {
  24483. name: "Macro",
  24484. height: math.unit(100, "feet"),
  24485. default: true
  24486. },
  24487. {
  24488. name: "Megamacro",
  24489. height: math.unit(100, "miles")
  24490. },
  24491. {
  24492. name: "Gigamacro",
  24493. height: math.unit(80000, "miles")
  24494. },
  24495. ]
  24496. ))
  24497. characterMakers.push(() => makeCharacter(
  24498. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24499. {
  24500. side: {
  24501. height: math.unit(9, "feet"),
  24502. weight: math.unit(400, "kg"),
  24503. name: "Side",
  24504. image: {
  24505. source: "./media/characters/bolt/side.svg",
  24506. extra: 1126 / 896,
  24507. bottom: 60 / 1187.3,
  24508. }
  24509. },
  24510. },
  24511. [
  24512. {
  24513. name: "Micro",
  24514. height: math.unit(5, "inches")
  24515. },
  24516. {
  24517. name: "Normal",
  24518. height: math.unit(9, "feet"),
  24519. default: true
  24520. },
  24521. {
  24522. name: "Macro",
  24523. height: math.unit(700, "feet")
  24524. },
  24525. {
  24526. name: "Max Size",
  24527. height: math.unit(1.52e22, "yottameters")
  24528. },
  24529. ]
  24530. ))
  24531. characterMakers.push(() => makeCharacter(
  24532. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24533. {
  24534. front: {
  24535. height: math.unit(4.53, "meters"),
  24536. weight: math.unit(3, "tons"),
  24537. name: "Front",
  24538. image: {
  24539. source: "./media/characters/draekon-sylviar/front.svg",
  24540. extra: 1228 / 1068,
  24541. bottom: 41 / 1270
  24542. }
  24543. },
  24544. tail: {
  24545. height: math.unit(1.772, "meter"),
  24546. name: "Tail",
  24547. image: {
  24548. source: "./media/characters/draekon-sylviar/tail.svg"
  24549. }
  24550. },
  24551. head: {
  24552. height: math.unit(1.331, "meter"),
  24553. name: "Head",
  24554. image: {
  24555. source: "./media/characters/draekon-sylviar/head.svg"
  24556. }
  24557. },
  24558. hand: {
  24559. height: math.unit(0.564, "meter"),
  24560. name: "Hand",
  24561. image: {
  24562. source: "./media/characters/draekon-sylviar/hand.svg"
  24563. }
  24564. },
  24565. foot: {
  24566. height: math.unit(0.621, "meter"),
  24567. name: "Foot",
  24568. image: {
  24569. source: "./media/characters/draekon-sylviar/foot.svg",
  24570. bottom: 32 / 324
  24571. }
  24572. },
  24573. dick: {
  24574. height: math.unit(61, "cm"),
  24575. name: "Dick",
  24576. image: {
  24577. source: "./media/characters/draekon-sylviar/dick.svg"
  24578. }
  24579. },
  24580. dickseparated: {
  24581. height: math.unit(61, "cm"),
  24582. name: "Dick-separated",
  24583. image: {
  24584. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24585. }
  24586. },
  24587. },
  24588. [
  24589. {
  24590. name: "Small",
  24591. height: math.unit(4.53 / 2, "meters"),
  24592. default: true
  24593. },
  24594. {
  24595. name: "Normal",
  24596. height: math.unit(4.53, "meters"),
  24597. default: true
  24598. },
  24599. {
  24600. name: "Large",
  24601. height: math.unit(4.53 * 2, "meters"),
  24602. },
  24603. ]
  24604. ))
  24605. characterMakers.push(() => makeCharacter(
  24606. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24607. {
  24608. front: {
  24609. height: math.unit(6 + 2 / 12, "feet"),
  24610. weight: math.unit(180, "lb"),
  24611. name: "Front",
  24612. image: {
  24613. source: "./media/characters/brawler/front.svg",
  24614. extra: 3301 / 3027,
  24615. bottom: 138 / 3439
  24616. }
  24617. },
  24618. },
  24619. [
  24620. {
  24621. name: "Normal",
  24622. height: math.unit(6 + 2 / 12, "feet"),
  24623. default: true
  24624. },
  24625. ]
  24626. ))
  24627. characterMakers.push(() => makeCharacter(
  24628. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24629. {
  24630. front: {
  24631. height: math.unit(11, "feet"),
  24632. weight: math.unit(1000, "lb"),
  24633. name: "Front",
  24634. image: {
  24635. source: "./media/characters/alex/front.svg",
  24636. bottom: 44.5 / 620
  24637. }
  24638. },
  24639. },
  24640. [
  24641. {
  24642. name: "Micro",
  24643. height: math.unit(5, "inches")
  24644. },
  24645. {
  24646. name: "Normal",
  24647. height: math.unit(11, "feet"),
  24648. default: true
  24649. },
  24650. {
  24651. name: "Macro",
  24652. height: math.unit(9.5e9, "feet")
  24653. },
  24654. {
  24655. name: "Max Size",
  24656. height: math.unit(1.4e283, "yottameters")
  24657. },
  24658. ]
  24659. ))
  24660. characterMakers.push(() => makeCharacter(
  24661. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24662. {
  24663. female: {
  24664. height: math.unit(29.9, "m"),
  24665. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24666. name: "Female",
  24667. image: {
  24668. source: "./media/characters/zenari/female.svg",
  24669. extra: 3281.6 / 3217,
  24670. bottom: 72.2 / 3353
  24671. }
  24672. },
  24673. male: {
  24674. height: math.unit(27.7, "m"),
  24675. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24676. name: "Male",
  24677. image: {
  24678. source: "./media/characters/zenari/male.svg",
  24679. extra: 3008 / 2991,
  24680. bottom: 54.6 / 3069
  24681. }
  24682. },
  24683. },
  24684. [
  24685. {
  24686. name: "Macro",
  24687. height: math.unit(29.7, "meters"),
  24688. default: true
  24689. },
  24690. ]
  24691. ))
  24692. characterMakers.push(() => makeCharacter(
  24693. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24694. {
  24695. female: {
  24696. height: math.unit(23.8, "m"),
  24697. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24698. name: "Female",
  24699. image: {
  24700. source: "./media/characters/mactarian/female.svg",
  24701. extra: 2662 / 2569,
  24702. bottom: 73 / 2736
  24703. }
  24704. },
  24705. male: {
  24706. height: math.unit(23.8, "m"),
  24707. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24708. name: "Male",
  24709. image: {
  24710. source: "./media/characters/mactarian/male.svg",
  24711. extra: 2673 / 2600,
  24712. bottom: 76 / 2750
  24713. }
  24714. },
  24715. },
  24716. [
  24717. {
  24718. name: "Macro",
  24719. height: math.unit(23.8, "meters"),
  24720. default: true
  24721. },
  24722. ]
  24723. ))
  24724. characterMakers.push(() => makeCharacter(
  24725. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24726. {
  24727. female: {
  24728. height: math.unit(19.3, "m"),
  24729. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24730. name: "Female",
  24731. image: {
  24732. source: "./media/characters/umok/female.svg",
  24733. extra: 2186 / 2078,
  24734. bottom: 87 / 2277
  24735. }
  24736. },
  24737. male: {
  24738. height: math.unit(19.5, "m"),
  24739. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24740. name: "Male",
  24741. image: {
  24742. source: "./media/characters/umok/male.svg",
  24743. extra: 2233 / 2140,
  24744. bottom: 24.4 / 2258
  24745. }
  24746. },
  24747. },
  24748. [
  24749. {
  24750. name: "Macro",
  24751. height: math.unit(19.3, "meters"),
  24752. default: true
  24753. },
  24754. ]
  24755. ))
  24756. characterMakers.push(() => makeCharacter(
  24757. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24758. {
  24759. female: {
  24760. height: math.unit(26.15, "m"),
  24761. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24762. name: "Female",
  24763. image: {
  24764. source: "./media/characters/joraxian/female.svg",
  24765. extra: 2912 / 2824,
  24766. bottom: 36 / 2956
  24767. }
  24768. },
  24769. male: {
  24770. height: math.unit(25.4, "m"),
  24771. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24772. name: "Male",
  24773. image: {
  24774. source: "./media/characters/joraxian/male.svg",
  24775. extra: 2877 / 2721,
  24776. bottom: 82 / 2967
  24777. }
  24778. },
  24779. },
  24780. [
  24781. {
  24782. name: "Macro",
  24783. height: math.unit(26.15, "meters"),
  24784. default: true
  24785. },
  24786. ]
  24787. ))
  24788. characterMakers.push(() => makeCharacter(
  24789. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24790. {
  24791. female: {
  24792. height: math.unit(21.6, "m"),
  24793. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24794. name: "Female",
  24795. image: {
  24796. source: "./media/characters/sthara/female.svg",
  24797. extra: 2516 / 2347,
  24798. bottom: 21.5 / 2537
  24799. }
  24800. },
  24801. male: {
  24802. height: math.unit(24, "m"),
  24803. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24804. name: "Male",
  24805. image: {
  24806. source: "./media/characters/sthara/male.svg",
  24807. extra: 2732 / 2607,
  24808. bottom: 23 / 2732
  24809. }
  24810. },
  24811. },
  24812. [
  24813. {
  24814. name: "Macro",
  24815. height: math.unit(21.6, "meters"),
  24816. default: true
  24817. },
  24818. ]
  24819. ))
  24820. characterMakers.push(() => makeCharacter(
  24821. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24822. {
  24823. front: {
  24824. height: math.unit(6 + 4 / 12, "feet"),
  24825. weight: math.unit(175, "lb"),
  24826. name: "Front",
  24827. image: {
  24828. source: "./media/characters/luka-bryzant/front.svg",
  24829. extra: 311 / 289,
  24830. bottom: 4 / 315
  24831. }
  24832. },
  24833. back: {
  24834. height: math.unit(6 + 4 / 12, "feet"),
  24835. weight: math.unit(175, "lb"),
  24836. name: "Back",
  24837. image: {
  24838. source: "./media/characters/luka-bryzant/back.svg",
  24839. extra: 311 / 289,
  24840. bottom: 3.8 / 313.7
  24841. }
  24842. },
  24843. },
  24844. [
  24845. {
  24846. name: "Micro",
  24847. height: math.unit(10, "inches")
  24848. },
  24849. {
  24850. name: "Normal",
  24851. height: math.unit(6 + 4 / 12, "feet"),
  24852. default: true
  24853. },
  24854. {
  24855. name: "Large",
  24856. height: math.unit(12, "feet")
  24857. },
  24858. ]
  24859. ))
  24860. characterMakers.push(() => makeCharacter(
  24861. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24862. {
  24863. front: {
  24864. height: math.unit(5 + 7 / 12, "feet"),
  24865. weight: math.unit(185, "lb"),
  24866. name: "Front",
  24867. image: {
  24868. source: "./media/characters/aman-aquila/front.svg",
  24869. extra: 1013 / 976,
  24870. bottom: 45.6 / 1057
  24871. }
  24872. },
  24873. side: {
  24874. height: math.unit(5 + 7 / 12, "feet"),
  24875. weight: math.unit(185, "lb"),
  24876. name: "Side",
  24877. image: {
  24878. source: "./media/characters/aman-aquila/side.svg",
  24879. extra: 1054 / 1011,
  24880. bottom: 15 / 1070
  24881. }
  24882. },
  24883. back: {
  24884. height: math.unit(5 + 7 / 12, "feet"),
  24885. weight: math.unit(185, "lb"),
  24886. name: "Back",
  24887. image: {
  24888. source: "./media/characters/aman-aquila/back.svg",
  24889. extra: 1026 / 970,
  24890. bottom: 12 / 1039
  24891. }
  24892. },
  24893. head: {
  24894. height: math.unit(1.211, "feet"),
  24895. name: "Head",
  24896. image: {
  24897. source: "./media/characters/aman-aquila/head.svg",
  24898. }
  24899. },
  24900. },
  24901. [
  24902. {
  24903. name: "Minimicro",
  24904. height: math.unit(0.057, "inches")
  24905. },
  24906. {
  24907. name: "Micro",
  24908. height: math.unit(7, "inches")
  24909. },
  24910. {
  24911. name: "Mini",
  24912. height: math.unit(3 + 7 / 12, "feet")
  24913. },
  24914. {
  24915. name: "Normal",
  24916. height: math.unit(5 + 7 / 12, "feet"),
  24917. default: true
  24918. },
  24919. {
  24920. name: "Macro",
  24921. height: math.unit(157 + 7 / 12, "feet")
  24922. },
  24923. {
  24924. name: "Megamacro",
  24925. height: math.unit(1557 + 7 / 12, "feet")
  24926. },
  24927. {
  24928. name: "Gigamacro",
  24929. height: math.unit(15557 + 7 / 12, "feet")
  24930. },
  24931. ]
  24932. ))
  24933. characterMakers.push(() => makeCharacter(
  24934. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24935. {
  24936. front: {
  24937. height: math.unit(3 + 2 / 12, "inches"),
  24938. weight: math.unit(0.3, "ounces"),
  24939. name: "Front",
  24940. image: {
  24941. source: "./media/characters/hiphae/front.svg",
  24942. extra: 1931 / 1683,
  24943. bottom: 24 / 1955
  24944. }
  24945. },
  24946. },
  24947. [
  24948. {
  24949. name: "Normal",
  24950. height: math.unit(3 + 1 / 2, "inches"),
  24951. default: true
  24952. },
  24953. ]
  24954. ))
  24955. characterMakers.push(() => makeCharacter(
  24956. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24957. {
  24958. front: {
  24959. height: math.unit(5 + 10 / 12, "feet"),
  24960. weight: math.unit(165, "lb"),
  24961. name: "Front",
  24962. image: {
  24963. source: "./media/characters/nicky/front.svg",
  24964. extra: 3144 / 2886,
  24965. bottom: 45.6 / 3192
  24966. }
  24967. },
  24968. back: {
  24969. height: math.unit(5 + 10 / 12, "feet"),
  24970. weight: math.unit(165, "lb"),
  24971. name: "Back",
  24972. image: {
  24973. source: "./media/characters/nicky/back.svg",
  24974. extra: 3055 / 2804,
  24975. bottom: 28.4 / 3087
  24976. }
  24977. },
  24978. frontclothed: {
  24979. height: math.unit(5 + 10 / 12, "feet"),
  24980. weight: math.unit(165, "lb"),
  24981. name: "Front-clothed",
  24982. image: {
  24983. source: "./media/characters/nicky/front-clothed.svg",
  24984. extra: 3184.9 / 2926.9,
  24985. bottom: 86.5 / 3239.9
  24986. }
  24987. },
  24988. foot: {
  24989. height: math.unit(1.16, "feet"),
  24990. name: "Foot",
  24991. image: {
  24992. source: "./media/characters/nicky/foot.svg"
  24993. }
  24994. },
  24995. feet: {
  24996. height: math.unit(1.34, "feet"),
  24997. name: "Feet",
  24998. image: {
  24999. source: "./media/characters/nicky/feet.svg"
  25000. }
  25001. },
  25002. maw: {
  25003. height: math.unit(0.9, "feet"),
  25004. name: "Maw",
  25005. image: {
  25006. source: "./media/characters/nicky/maw.svg"
  25007. }
  25008. },
  25009. },
  25010. [
  25011. {
  25012. name: "Normal",
  25013. height: math.unit(5 + 10 / 12, "feet"),
  25014. default: true
  25015. },
  25016. {
  25017. name: "Macro",
  25018. height: math.unit(60, "feet")
  25019. },
  25020. {
  25021. name: "Megamacro",
  25022. height: math.unit(1, "mile")
  25023. },
  25024. ]
  25025. ))
  25026. characterMakers.push(() => makeCharacter(
  25027. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25028. {
  25029. side: {
  25030. height: math.unit(10, "feet"),
  25031. weight: math.unit(600, "lb"),
  25032. name: "Side",
  25033. image: {
  25034. source: "./media/characters/blair/side.svg",
  25035. bottom: 16.6 / 475,
  25036. extra: 458 / 431
  25037. }
  25038. },
  25039. },
  25040. [
  25041. {
  25042. name: "Micro",
  25043. height: math.unit(8, "inches")
  25044. },
  25045. {
  25046. name: "Normal",
  25047. height: math.unit(10, "feet"),
  25048. default: true
  25049. },
  25050. {
  25051. name: "Macro",
  25052. height: math.unit(180, "feet")
  25053. },
  25054. ]
  25055. ))
  25056. characterMakers.push(() => makeCharacter(
  25057. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25058. {
  25059. front: {
  25060. height: math.unit(5 + 4 / 12, "feet"),
  25061. weight: math.unit(125, "lb"),
  25062. name: "Front",
  25063. image: {
  25064. source: "./media/characters/fisher/front.svg",
  25065. extra: 444 / 390,
  25066. bottom: 2 / 444.8
  25067. }
  25068. },
  25069. },
  25070. [
  25071. {
  25072. name: "Micro",
  25073. height: math.unit(4, "inches")
  25074. },
  25075. {
  25076. name: "Normal",
  25077. height: math.unit(5 + 4 / 12, "feet"),
  25078. default: true
  25079. },
  25080. {
  25081. name: "Macro",
  25082. height: math.unit(100, "feet")
  25083. },
  25084. ]
  25085. ))
  25086. characterMakers.push(() => makeCharacter(
  25087. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25088. {
  25089. front: {
  25090. height: math.unit(6.71, "feet"),
  25091. weight: math.unit(200, "lb"),
  25092. capacity: math.unit(1000000, "people"),
  25093. name: "Front",
  25094. image: {
  25095. source: "./media/characters/gliss/front.svg",
  25096. extra: 2347 / 2231,
  25097. bottom: 113 / 2462
  25098. }
  25099. },
  25100. hammerspaceSize: {
  25101. height: math.unit(6.71 * 717, "feet"),
  25102. weight: math.unit(200, "lb"),
  25103. capacity: math.unit(1000000, "people"),
  25104. name: "Hammerspace Size",
  25105. image: {
  25106. source: "./media/characters/gliss/front.svg",
  25107. extra: 2347 / 2231,
  25108. bottom: 113 / 2462
  25109. }
  25110. },
  25111. },
  25112. [
  25113. {
  25114. name: "Normal",
  25115. height: math.unit(6.71, "feet"),
  25116. default: true
  25117. },
  25118. ]
  25119. ))
  25120. characterMakers.push(() => makeCharacter(
  25121. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25122. {
  25123. side: {
  25124. height: math.unit(1.44, "m"),
  25125. weight: math.unit(80, "kg"),
  25126. name: "Side",
  25127. image: {
  25128. source: "./media/characters/dune-anderson/side.svg",
  25129. bottom: 49 / 1426
  25130. }
  25131. },
  25132. },
  25133. [
  25134. {
  25135. name: "Wolf-sized",
  25136. height: math.unit(1.44, "meters")
  25137. },
  25138. {
  25139. name: "Normal",
  25140. height: math.unit(5.05, "meters"),
  25141. default: true
  25142. },
  25143. {
  25144. name: "Big",
  25145. height: math.unit(14.4, "meters")
  25146. },
  25147. {
  25148. name: "Huge",
  25149. height: math.unit(144, "meters")
  25150. },
  25151. ]
  25152. ))
  25153. characterMakers.push(() => makeCharacter(
  25154. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25155. {
  25156. front: {
  25157. height: math.unit(7, "feet"),
  25158. weight: math.unit(425, "lb"),
  25159. name: "Front",
  25160. image: {
  25161. source: "./media/characters/hind/front.svg",
  25162. extra: 2091 / 1860,
  25163. bottom: 129 / 2220
  25164. }
  25165. },
  25166. back: {
  25167. height: math.unit(7, "feet"),
  25168. weight: math.unit(425, "lb"),
  25169. name: "Back",
  25170. image: {
  25171. source: "./media/characters/hind/back.svg",
  25172. extra: 2091 / 1860,
  25173. bottom: 24.6 / 2309
  25174. }
  25175. },
  25176. tail: {
  25177. height: math.unit(2.8, "feet"),
  25178. name: "Tail",
  25179. image: {
  25180. source: "./media/characters/hind/tail.svg"
  25181. }
  25182. },
  25183. head: {
  25184. height: math.unit(2.55, "feet"),
  25185. name: "Head",
  25186. image: {
  25187. source: "./media/characters/hind/head.svg"
  25188. }
  25189. },
  25190. },
  25191. [
  25192. {
  25193. name: "XS",
  25194. height: math.unit(0.7, "feet")
  25195. },
  25196. {
  25197. name: "Normal",
  25198. height: math.unit(7, "feet"),
  25199. default: true
  25200. },
  25201. {
  25202. name: "XL",
  25203. height: math.unit(70, "feet")
  25204. },
  25205. ]
  25206. ))
  25207. characterMakers.push(() => makeCharacter(
  25208. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25209. {
  25210. front: {
  25211. height: math.unit(2.1, "meters"),
  25212. weight: math.unit(150, "lb"),
  25213. name: "Front",
  25214. image: {
  25215. source: "./media/characters/tharquench-sizestealer/front.svg",
  25216. extra: 1605/1470,
  25217. bottom: 36/1641
  25218. }
  25219. },
  25220. frontAlt: {
  25221. height: math.unit(2.1, "meters"),
  25222. weight: math.unit(150, "lb"),
  25223. name: "Front (Alt)",
  25224. image: {
  25225. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25226. extra: 2318 / 2063,
  25227. bottom: 93.4 / 2410
  25228. }
  25229. },
  25230. },
  25231. [
  25232. {
  25233. name: "Nano",
  25234. height: math.unit(1, "mm")
  25235. },
  25236. {
  25237. name: "Micro",
  25238. height: math.unit(1, "cm")
  25239. },
  25240. {
  25241. name: "Normal",
  25242. height: math.unit(2.1, "meters"),
  25243. default: true
  25244. },
  25245. ]
  25246. ))
  25247. characterMakers.push(() => makeCharacter(
  25248. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25249. {
  25250. front: {
  25251. height: math.unit(7 + 5 / 12, "feet"),
  25252. weight: math.unit(357, "lb"),
  25253. name: "Front",
  25254. image: {
  25255. source: "./media/characters/solex-draconov/front.svg",
  25256. extra: 1993 / 1865,
  25257. bottom: 117 / 2111
  25258. }
  25259. },
  25260. },
  25261. [
  25262. {
  25263. name: "Natural Height",
  25264. height: math.unit(7 + 5 / 12, "feet"),
  25265. default: true
  25266. },
  25267. {
  25268. name: "Macro",
  25269. height: math.unit(350, "feet")
  25270. },
  25271. {
  25272. name: "Macro+",
  25273. height: math.unit(1000, "feet")
  25274. },
  25275. {
  25276. name: "Megamacro",
  25277. height: math.unit(20, "km")
  25278. },
  25279. {
  25280. name: "Megamacro+",
  25281. height: math.unit(1000, "km")
  25282. },
  25283. {
  25284. name: "Gigamacro",
  25285. height: math.unit(2.5, "Gm")
  25286. },
  25287. {
  25288. name: "Teramacro",
  25289. height: math.unit(15, "Tm")
  25290. },
  25291. {
  25292. name: "Galactic",
  25293. height: math.unit(30, "Zm")
  25294. },
  25295. {
  25296. name: "Universal",
  25297. height: math.unit(21000, "Ym")
  25298. },
  25299. {
  25300. name: "Omniversal",
  25301. height: math.unit(9.861e50, "Ym")
  25302. },
  25303. {
  25304. name: "Existential",
  25305. height: math.unit(1e300, "meters")
  25306. },
  25307. ]
  25308. ))
  25309. characterMakers.push(() => makeCharacter(
  25310. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25311. {
  25312. side: {
  25313. height: math.unit(25, "feet"),
  25314. weight: math.unit(90000, "lb"),
  25315. name: "Side",
  25316. image: {
  25317. source: "./media/characters/mandarax/side.svg",
  25318. extra: 614 / 332,
  25319. bottom: 55 / 630
  25320. }
  25321. },
  25322. head: {
  25323. height: math.unit(11.4, "feet"),
  25324. name: "Head",
  25325. image: {
  25326. source: "./media/characters/mandarax/head.svg"
  25327. }
  25328. },
  25329. belly: {
  25330. height: math.unit(33, "feet"),
  25331. name: "Belly",
  25332. capacity: math.unit(500, "people"),
  25333. image: {
  25334. source: "./media/characters/mandarax/belly.svg"
  25335. }
  25336. },
  25337. dick: {
  25338. height: math.unit(8.46, "feet"),
  25339. name: "Dick",
  25340. image: {
  25341. source: "./media/characters/mandarax/dick.svg"
  25342. }
  25343. },
  25344. top: {
  25345. height: math.unit(28, "meters"),
  25346. name: "Top",
  25347. image: {
  25348. source: "./media/characters/mandarax/top.svg"
  25349. }
  25350. },
  25351. },
  25352. [
  25353. {
  25354. name: "Normal",
  25355. height: math.unit(25, "feet"),
  25356. default: true
  25357. },
  25358. ]
  25359. ))
  25360. characterMakers.push(() => makeCharacter(
  25361. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25362. {
  25363. front: {
  25364. height: math.unit(5, "feet"),
  25365. weight: math.unit(90, "lb"),
  25366. name: "Front",
  25367. image: {
  25368. source: "./media/characters/pixil/front.svg",
  25369. extra: 2000 / 1618,
  25370. bottom: 12.3 / 2011
  25371. }
  25372. },
  25373. },
  25374. [
  25375. {
  25376. name: "Normal",
  25377. height: math.unit(5, "feet"),
  25378. default: true
  25379. },
  25380. {
  25381. name: "Megamacro",
  25382. height: math.unit(10, "miles"),
  25383. },
  25384. ]
  25385. ))
  25386. characterMakers.push(() => makeCharacter(
  25387. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25388. {
  25389. front: {
  25390. height: math.unit(7 + 2 / 12, "feet"),
  25391. weight: math.unit(200, "lb"),
  25392. name: "Front",
  25393. image: {
  25394. source: "./media/characters/angel/front.svg",
  25395. extra: 1830 / 1737,
  25396. bottom: 22.6 / 1854,
  25397. }
  25398. },
  25399. },
  25400. [
  25401. {
  25402. name: "Normal",
  25403. height: math.unit(7 + 2 / 12, "feet"),
  25404. default: true
  25405. },
  25406. {
  25407. name: "Macro",
  25408. height: math.unit(1000, "feet")
  25409. },
  25410. {
  25411. name: "Megamacro",
  25412. height: math.unit(2, "miles")
  25413. },
  25414. {
  25415. name: "Gigamacro",
  25416. height: math.unit(20, "earths")
  25417. },
  25418. ]
  25419. ))
  25420. characterMakers.push(() => makeCharacter(
  25421. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25422. {
  25423. front: {
  25424. height: math.unit(5, "feet"),
  25425. weight: math.unit(180, "lb"),
  25426. name: "Front",
  25427. image: {
  25428. source: "./media/characters/mekana/front.svg",
  25429. extra: 1671 / 1605,
  25430. bottom: 3.5 / 1691
  25431. }
  25432. },
  25433. side: {
  25434. height: math.unit(5, "feet"),
  25435. weight: math.unit(180, "lb"),
  25436. name: "Side",
  25437. image: {
  25438. source: "./media/characters/mekana/side.svg",
  25439. extra: 1671 / 1605,
  25440. bottom: 3.5 / 1691
  25441. }
  25442. },
  25443. back: {
  25444. height: math.unit(5, "feet"),
  25445. weight: math.unit(180, "lb"),
  25446. name: "Back",
  25447. image: {
  25448. source: "./media/characters/mekana/back.svg",
  25449. extra: 1671 / 1605,
  25450. bottom: 3.5 / 1691
  25451. }
  25452. },
  25453. },
  25454. [
  25455. {
  25456. name: "Normal",
  25457. height: math.unit(5, "feet"),
  25458. default: true
  25459. },
  25460. ]
  25461. ))
  25462. characterMakers.push(() => makeCharacter(
  25463. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25464. {
  25465. front: {
  25466. height: math.unit(4 + 6 / 12, "feet"),
  25467. weight: math.unit(80, "lb"),
  25468. name: "Front",
  25469. image: {
  25470. source: "./media/characters/pixie/front.svg",
  25471. extra: 1924 / 1825,
  25472. bottom: 22.4 / 1946
  25473. }
  25474. },
  25475. },
  25476. [
  25477. {
  25478. name: "Normal",
  25479. height: math.unit(4 + 6 / 12, "feet"),
  25480. default: true
  25481. },
  25482. {
  25483. name: "Macro",
  25484. height: math.unit(40, "feet")
  25485. },
  25486. ]
  25487. ))
  25488. characterMakers.push(() => makeCharacter(
  25489. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25490. {
  25491. front: {
  25492. height: math.unit(2.1, "meters"),
  25493. weight: math.unit(200, "lb"),
  25494. name: "Front",
  25495. image: {
  25496. source: "./media/characters/the-lascivious/front.svg",
  25497. extra: 1 / 0.893,
  25498. bottom: 3.5 / 573.7
  25499. }
  25500. },
  25501. },
  25502. [
  25503. {
  25504. name: "Human Scale",
  25505. height: math.unit(2.1, "meters")
  25506. },
  25507. {
  25508. name: "Wolxi Scale",
  25509. height: math.unit(46.2, "m"),
  25510. default: true
  25511. },
  25512. {
  25513. name: "Boinker of Buildings",
  25514. height: math.unit(10, "km")
  25515. },
  25516. {
  25517. name: "Shagger of Skyscrapers",
  25518. height: math.unit(40, "km")
  25519. },
  25520. {
  25521. name: "Banger of Boroughs",
  25522. height: math.unit(4000, "km")
  25523. },
  25524. {
  25525. name: "Screwer of States",
  25526. height: math.unit(100000, "km")
  25527. },
  25528. {
  25529. name: "Pounder of Planets",
  25530. height: math.unit(2000000, "km")
  25531. },
  25532. ]
  25533. ))
  25534. characterMakers.push(() => makeCharacter(
  25535. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25536. {
  25537. front: {
  25538. height: math.unit(6, "feet"),
  25539. weight: math.unit(150, "lb"),
  25540. name: "Front",
  25541. image: {
  25542. source: "./media/characters/aj/front.svg",
  25543. extra: 2039 / 1562,
  25544. bottom: 40 / 2079
  25545. }
  25546. },
  25547. },
  25548. [
  25549. {
  25550. name: "Normal",
  25551. height: math.unit(11 + 6 / 12, "feet"),
  25552. default: true
  25553. },
  25554. {
  25555. name: "Megamacro",
  25556. height: math.unit(60, "megameters")
  25557. },
  25558. ]
  25559. ))
  25560. characterMakers.push(() => makeCharacter(
  25561. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25562. {
  25563. side: {
  25564. height: math.unit(31 + 8 / 12, "feet"),
  25565. weight: math.unit(75000, "kg"),
  25566. name: "Side",
  25567. image: {
  25568. source: "./media/characters/koros/side.svg",
  25569. extra: 1442 / 1297,
  25570. bottom: 122.7 / 1562
  25571. }
  25572. },
  25573. dicksKingsCrown: {
  25574. height: math.unit(6, "feet"),
  25575. name: "Dicks (King's Crown)",
  25576. image: {
  25577. source: "./media/characters/koros/dicks-kings-crown.svg"
  25578. }
  25579. },
  25580. dicksTailSet: {
  25581. height: math.unit(3, "feet"),
  25582. name: "Dicks (Tail Set)",
  25583. image: {
  25584. source: "./media/characters/koros/dicks-tail-set.svg"
  25585. }
  25586. },
  25587. dickCumming: {
  25588. height: math.unit(7.98, "feet"),
  25589. name: "Dick (Cumming)",
  25590. image: {
  25591. source: "./media/characters/koros/dick-cumming.svg"
  25592. }
  25593. },
  25594. dicksBack: {
  25595. height: math.unit(5.9, "feet"),
  25596. name: "Dicks (Back)",
  25597. image: {
  25598. source: "./media/characters/koros/dicks-back.svg"
  25599. }
  25600. },
  25601. dicksFront: {
  25602. height: math.unit(3.72, "feet"),
  25603. name: "Dicks (Front)",
  25604. image: {
  25605. source: "./media/characters/koros/dicks-front.svg"
  25606. }
  25607. },
  25608. dicksPeeking: {
  25609. height: math.unit(3.0, "feet"),
  25610. name: "Dicks (Peeking)",
  25611. image: {
  25612. source: "./media/characters/koros/dicks-peeking.svg"
  25613. }
  25614. },
  25615. eye: {
  25616. height: math.unit(1.7, "feet"),
  25617. name: "Eye",
  25618. image: {
  25619. source: "./media/characters/koros/eye.svg"
  25620. }
  25621. },
  25622. headFront: {
  25623. height: math.unit(11.69, "feet"),
  25624. name: "Head (Front)",
  25625. image: {
  25626. source: "./media/characters/koros/head-front.svg"
  25627. }
  25628. },
  25629. headSide: {
  25630. height: math.unit(14, "feet"),
  25631. name: "Head (Side)",
  25632. image: {
  25633. source: "./media/characters/koros/head-side.svg"
  25634. }
  25635. },
  25636. leg: {
  25637. height: math.unit(17, "feet"),
  25638. name: "Leg",
  25639. image: {
  25640. source: "./media/characters/koros/leg.svg"
  25641. }
  25642. },
  25643. mawSide: {
  25644. height: math.unit(12.8, "feet"),
  25645. name: "Maw (Side)",
  25646. image: {
  25647. source: "./media/characters/koros/maw-side.svg"
  25648. }
  25649. },
  25650. mawSpitting: {
  25651. height: math.unit(17, "feet"),
  25652. name: "Maw (Spitting)",
  25653. image: {
  25654. source: "./media/characters/koros/maw-spitting.svg"
  25655. }
  25656. },
  25657. slit: {
  25658. height: math.unit(2.8, "feet"),
  25659. name: "Slit",
  25660. image: {
  25661. source: "./media/characters/koros/slit.svg"
  25662. }
  25663. },
  25664. stomach: {
  25665. height: math.unit(6.8, "feet"),
  25666. capacity: math.unit(20, "people"),
  25667. name: "Stomach",
  25668. image: {
  25669. source: "./media/characters/koros/stomach.svg"
  25670. }
  25671. },
  25672. wingspanBottom: {
  25673. height: math.unit(114, "feet"),
  25674. name: "Wingspan (Bottom)",
  25675. image: {
  25676. source: "./media/characters/koros/wingspan-bottom.svg"
  25677. }
  25678. },
  25679. wingspanTop: {
  25680. height: math.unit(104, "feet"),
  25681. name: "Wingspan (Top)",
  25682. image: {
  25683. source: "./media/characters/koros/wingspan-top.svg"
  25684. }
  25685. },
  25686. },
  25687. [
  25688. {
  25689. name: "Normal",
  25690. height: math.unit(31 + 8 / 12, "feet"),
  25691. default: true
  25692. },
  25693. ]
  25694. ))
  25695. characterMakers.push(() => makeCharacter(
  25696. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25697. {
  25698. front: {
  25699. height: math.unit(18 + 5 / 12, "feet"),
  25700. weight: math.unit(3750, "kg"),
  25701. name: "Front",
  25702. image: {
  25703. source: "./media/characters/vexx/front.svg",
  25704. extra: 426 / 396,
  25705. bottom: 31.5 / 458
  25706. }
  25707. },
  25708. maw: {
  25709. height: math.unit(6, "feet"),
  25710. name: "Maw",
  25711. image: {
  25712. source: "./media/characters/vexx/maw.svg"
  25713. }
  25714. },
  25715. },
  25716. [
  25717. {
  25718. name: "Normal",
  25719. height: math.unit(18 + 5 / 12, "feet"),
  25720. default: true
  25721. },
  25722. ]
  25723. ))
  25724. characterMakers.push(() => makeCharacter(
  25725. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25726. {
  25727. front: {
  25728. height: math.unit(17 + 6 / 12, "feet"),
  25729. weight: math.unit(150, "lb"),
  25730. name: "Front",
  25731. image: {
  25732. source: "./media/characters/baadra/front.svg",
  25733. extra: 3137 / 2890,
  25734. bottom: 168.4 / 3305
  25735. }
  25736. },
  25737. back: {
  25738. height: math.unit(17 + 6 / 12, "feet"),
  25739. weight: math.unit(150, "lb"),
  25740. name: "Back",
  25741. image: {
  25742. source: "./media/characters/baadra/back.svg",
  25743. extra: 3142 / 2890,
  25744. bottom: 220 / 3371
  25745. }
  25746. },
  25747. head: {
  25748. height: math.unit(5.45, "feet"),
  25749. name: "Head",
  25750. image: {
  25751. source: "./media/characters/baadra/head.svg"
  25752. }
  25753. },
  25754. headAngry: {
  25755. height: math.unit(4.95, "feet"),
  25756. name: "Head (Angry)",
  25757. image: {
  25758. source: "./media/characters/baadra/head-angry.svg"
  25759. }
  25760. },
  25761. headOpen: {
  25762. height: math.unit(6, "feet"),
  25763. name: "Head (Open)",
  25764. image: {
  25765. source: "./media/characters/baadra/head-open.svg"
  25766. }
  25767. },
  25768. },
  25769. [
  25770. {
  25771. name: "Normal",
  25772. height: math.unit(17 + 6 / 12, "feet"),
  25773. default: true
  25774. },
  25775. ]
  25776. ))
  25777. characterMakers.push(() => makeCharacter(
  25778. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25779. {
  25780. front: {
  25781. height: math.unit(7 + 3 / 12, "feet"),
  25782. weight: math.unit(180, "lb"),
  25783. name: "Front",
  25784. image: {
  25785. source: "./media/characters/juri/front.svg",
  25786. extra: 1401 / 1237,
  25787. bottom: 18.5 / 1418
  25788. }
  25789. },
  25790. side: {
  25791. height: math.unit(7 + 3 / 12, "feet"),
  25792. weight: math.unit(180, "lb"),
  25793. name: "Side",
  25794. image: {
  25795. source: "./media/characters/juri/side.svg",
  25796. extra: 1424 / 1242,
  25797. bottom: 18.5 / 1447
  25798. }
  25799. },
  25800. sitting: {
  25801. height: math.unit(6, "feet"),
  25802. weight: math.unit(180, "lb"),
  25803. name: "Sitting",
  25804. image: {
  25805. source: "./media/characters/juri/sitting.svg",
  25806. extra: 1270 / 1143,
  25807. bottom: 100 / 1343
  25808. }
  25809. },
  25810. back: {
  25811. height: math.unit(7 + 3 / 12, "feet"),
  25812. weight: math.unit(180, "lb"),
  25813. name: "Back",
  25814. image: {
  25815. source: "./media/characters/juri/back.svg",
  25816. extra: 1377 / 1240,
  25817. bottom: 23.7 / 1405
  25818. }
  25819. },
  25820. maw: {
  25821. height: math.unit(2.8, "feet"),
  25822. name: "Maw",
  25823. image: {
  25824. source: "./media/characters/juri/maw.svg"
  25825. }
  25826. },
  25827. stomach: {
  25828. height: math.unit(0.89, "feet"),
  25829. capacity: math.unit(4, "liters"),
  25830. name: "Stomach",
  25831. image: {
  25832. source: "./media/characters/juri/stomach.svg"
  25833. }
  25834. },
  25835. },
  25836. [
  25837. {
  25838. name: "Normal",
  25839. height: math.unit(7 + 3 / 12, "feet"),
  25840. default: true
  25841. },
  25842. ]
  25843. ))
  25844. characterMakers.push(() => makeCharacter(
  25845. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25846. {
  25847. fox: {
  25848. height: math.unit(5 + 6 / 12, "feet"),
  25849. weight: math.unit(140, "lb"),
  25850. name: "Fox",
  25851. image: {
  25852. source: "./media/characters/maxene-sita/fox.svg",
  25853. extra: 146 / 138,
  25854. bottom: 2.1 / 148.19
  25855. }
  25856. },
  25857. foxLaying: {
  25858. height: math.unit(1.70, "feet"),
  25859. weight: math.unit(140, "lb"),
  25860. name: "Fox (Laying)",
  25861. image: {
  25862. source: "./media/characters/maxene-sita/fox-laying.svg",
  25863. extra: 910 / 572,
  25864. bottom: 71 / 981
  25865. }
  25866. },
  25867. kitsune: {
  25868. height: math.unit(10, "feet"),
  25869. weight: math.unit(800, "lb"),
  25870. name: "Kitsune",
  25871. image: {
  25872. source: "./media/characters/maxene-sita/kitsune.svg",
  25873. extra: 185 / 176,
  25874. bottom: 4.7 / 189.9
  25875. }
  25876. },
  25877. hellhound: {
  25878. height: math.unit(10, "feet"),
  25879. weight: math.unit(700, "lb"),
  25880. name: "Hellhound",
  25881. image: {
  25882. source: "./media/characters/maxene-sita/hellhound.svg",
  25883. extra: 1600 / 1545,
  25884. bottom: 81 / 1681
  25885. }
  25886. },
  25887. },
  25888. [
  25889. {
  25890. name: "Normal",
  25891. height: math.unit(5 + 6 / 12, "feet"),
  25892. default: true
  25893. },
  25894. ]
  25895. ))
  25896. characterMakers.push(() => makeCharacter(
  25897. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25898. {
  25899. front: {
  25900. height: math.unit(3 + 4 / 12, "feet"),
  25901. weight: math.unit(70, "lb"),
  25902. name: "Front",
  25903. image: {
  25904. source: "./media/characters/maia/front.svg",
  25905. extra: 227 / 219.5,
  25906. bottom: 40 / 267
  25907. }
  25908. },
  25909. back: {
  25910. height: math.unit(3 + 4 / 12, "feet"),
  25911. weight: math.unit(70, "lb"),
  25912. name: "Back",
  25913. image: {
  25914. source: "./media/characters/maia/back.svg",
  25915. extra: 237 / 225
  25916. }
  25917. },
  25918. },
  25919. [
  25920. {
  25921. name: "Normal",
  25922. height: math.unit(3 + 4 / 12, "feet"),
  25923. default: true
  25924. },
  25925. ]
  25926. ))
  25927. characterMakers.push(() => makeCharacter(
  25928. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25929. {
  25930. front: {
  25931. height: math.unit(5 + 10 / 12, "feet"),
  25932. weight: math.unit(197, "lb"),
  25933. name: "Front",
  25934. image: {
  25935. source: "./media/characters/jabaro/front.svg",
  25936. extra: 225 / 216,
  25937. bottom: 5.06 / 230
  25938. }
  25939. },
  25940. back: {
  25941. height: math.unit(5 + 10 / 12, "feet"),
  25942. weight: math.unit(197, "lb"),
  25943. name: "Back",
  25944. image: {
  25945. source: "./media/characters/jabaro/back.svg",
  25946. extra: 225 / 219,
  25947. bottom: 1.9 / 227
  25948. }
  25949. },
  25950. },
  25951. [
  25952. {
  25953. name: "Normal",
  25954. height: math.unit(5 + 10 / 12, "feet"),
  25955. default: true
  25956. },
  25957. ]
  25958. ))
  25959. characterMakers.push(() => makeCharacter(
  25960. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25961. {
  25962. front: {
  25963. height: math.unit(5 + 8 / 12, "feet"),
  25964. weight: math.unit(139, "lb"),
  25965. name: "Front",
  25966. image: {
  25967. source: "./media/characters/risa/front.svg",
  25968. extra: 270 / 260,
  25969. bottom: 11.2 / 282
  25970. }
  25971. },
  25972. back: {
  25973. height: math.unit(5 + 8 / 12, "feet"),
  25974. weight: math.unit(139, "lb"),
  25975. name: "Back",
  25976. image: {
  25977. source: "./media/characters/risa/back.svg",
  25978. extra: 264 / 255,
  25979. bottom: 4 / 268
  25980. }
  25981. },
  25982. },
  25983. [
  25984. {
  25985. name: "Normal",
  25986. height: math.unit(5 + 8 / 12, "feet"),
  25987. default: true
  25988. },
  25989. ]
  25990. ))
  25991. characterMakers.push(() => makeCharacter(
  25992. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25993. {
  25994. front: {
  25995. height: math.unit(2 + 11 / 12, "feet"),
  25996. weight: math.unit(30, "lb"),
  25997. name: "Front",
  25998. image: {
  25999. source: "./media/characters/weatley/front.svg",
  26000. bottom: 10.7 / 414,
  26001. extra: 403.5 / 362
  26002. }
  26003. },
  26004. back: {
  26005. height: math.unit(2 + 11 / 12, "feet"),
  26006. weight: math.unit(30, "lb"),
  26007. name: "Back",
  26008. image: {
  26009. source: "./media/characters/weatley/back.svg",
  26010. bottom: 10.7 / 414,
  26011. extra: 403.5 / 362
  26012. }
  26013. },
  26014. },
  26015. [
  26016. {
  26017. name: "Normal",
  26018. height: math.unit(2 + 11 / 12, "feet"),
  26019. default: true
  26020. },
  26021. ]
  26022. ))
  26023. characterMakers.push(() => makeCharacter(
  26024. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26025. {
  26026. front: {
  26027. height: math.unit(5 + 2 / 12, "feet"),
  26028. weight: math.unit(50, "kg"),
  26029. name: "Front",
  26030. image: {
  26031. source: "./media/characters/mercury-crescent/front.svg",
  26032. extra: 1088 / 1033,
  26033. bottom: 18.9 / 1109
  26034. }
  26035. },
  26036. },
  26037. [
  26038. {
  26039. name: "Normal",
  26040. height: math.unit(5 + 2 / 12, "feet"),
  26041. default: true
  26042. },
  26043. ]
  26044. ))
  26045. characterMakers.push(() => makeCharacter(
  26046. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26047. {
  26048. front: {
  26049. height: math.unit(2, "feet"),
  26050. weight: math.unit(15, "kg"),
  26051. name: "Front",
  26052. image: {
  26053. source: "./media/characters/diamond-jones/front.svg",
  26054. extra: 727/723,
  26055. bottom: 46/773
  26056. }
  26057. },
  26058. },
  26059. [
  26060. {
  26061. name: "Normal",
  26062. height: math.unit(2, "feet"),
  26063. default: true
  26064. },
  26065. ]
  26066. ))
  26067. characterMakers.push(() => makeCharacter(
  26068. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26069. {
  26070. front: {
  26071. height: math.unit(3, "feet"),
  26072. weight: math.unit(30, "kg"),
  26073. name: "Front",
  26074. image: {
  26075. source: "./media/characters/sweet-bit/front.svg",
  26076. extra: 675 / 567,
  26077. bottom: 27.7 / 703
  26078. }
  26079. },
  26080. },
  26081. [
  26082. {
  26083. name: "Normal",
  26084. height: math.unit(3, "feet"),
  26085. default: true
  26086. },
  26087. ]
  26088. ))
  26089. characterMakers.push(() => makeCharacter(
  26090. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26091. {
  26092. side: {
  26093. height: math.unit(9.178, "feet"),
  26094. weight: math.unit(500, "lb"),
  26095. name: "Side",
  26096. image: {
  26097. source: "./media/characters/umbrazen/side.svg",
  26098. extra: 1730 / 1473,
  26099. bottom: 34.6 / 1765
  26100. }
  26101. },
  26102. },
  26103. [
  26104. {
  26105. name: "Normal",
  26106. height: math.unit(9.178, "feet"),
  26107. default: true
  26108. },
  26109. ]
  26110. ))
  26111. characterMakers.push(() => makeCharacter(
  26112. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26113. {
  26114. front: {
  26115. height: math.unit(10, "feet"),
  26116. weight: math.unit(750, "lb"),
  26117. name: "Front",
  26118. image: {
  26119. source: "./media/characters/arlist/front.svg",
  26120. extra: 961 / 778,
  26121. bottom: 6.2 / 986
  26122. }
  26123. },
  26124. },
  26125. [
  26126. {
  26127. name: "Normal",
  26128. height: math.unit(10, "feet"),
  26129. default: true
  26130. },
  26131. ]
  26132. ))
  26133. characterMakers.push(() => makeCharacter(
  26134. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26135. {
  26136. front: {
  26137. height: math.unit(5 + 1 / 12, "feet"),
  26138. weight: math.unit(110, "lb"),
  26139. name: "Front",
  26140. image: {
  26141. source: "./media/characters/aradel/front.svg",
  26142. extra: 324 / 303,
  26143. bottom: 3.6 / 329.4
  26144. }
  26145. },
  26146. },
  26147. [
  26148. {
  26149. name: "Normal",
  26150. height: math.unit(5 + 1 / 12, "feet"),
  26151. default: true
  26152. },
  26153. ]
  26154. ))
  26155. characterMakers.push(() => makeCharacter(
  26156. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26157. {
  26158. front: {
  26159. height: math.unit(3 + 8 / 12, "feet"),
  26160. weight: math.unit(50, "lb"),
  26161. name: "Front",
  26162. image: {
  26163. source: "./media/characters/serryn/front.svg",
  26164. extra: 1792 / 1656,
  26165. bottom: 43.5 / 1840
  26166. }
  26167. },
  26168. },
  26169. [
  26170. {
  26171. name: "Normal",
  26172. height: math.unit(3 + 8 / 12, "feet"),
  26173. default: true
  26174. },
  26175. ]
  26176. ))
  26177. characterMakers.push(() => makeCharacter(
  26178. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26179. {
  26180. front: {
  26181. height: math.unit(7 + 10 / 12, "feet"),
  26182. weight: math.unit(255, "lb"),
  26183. name: "Front",
  26184. image: {
  26185. source: "./media/characters/xavier-thyme/front.svg",
  26186. extra: 3733 / 3642,
  26187. bottom: 131 / 3869
  26188. }
  26189. },
  26190. frontRaven: {
  26191. height: math.unit(7 + 10 / 12, "feet"),
  26192. weight: math.unit(255, "lb"),
  26193. name: "Front (Raven)",
  26194. image: {
  26195. source: "./media/characters/xavier-thyme/front-raven.svg",
  26196. extra: 4385 / 3642,
  26197. bottom: 131 / 4517
  26198. }
  26199. },
  26200. },
  26201. [
  26202. {
  26203. name: "Normal",
  26204. height: math.unit(7 + 10 / 12, "feet"),
  26205. default: true
  26206. },
  26207. ]
  26208. ))
  26209. characterMakers.push(() => makeCharacter(
  26210. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26211. {
  26212. front: {
  26213. height: math.unit(1.6, "m"),
  26214. weight: math.unit(50, "kg"),
  26215. name: "Front",
  26216. image: {
  26217. source: "./media/characters/kiki/front.svg",
  26218. extra: 4682 / 3610,
  26219. bottom: 115 / 4777
  26220. }
  26221. },
  26222. },
  26223. [
  26224. {
  26225. name: "Normal",
  26226. height: math.unit(1.6, "meters"),
  26227. default: true
  26228. },
  26229. ]
  26230. ))
  26231. characterMakers.push(() => makeCharacter(
  26232. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26233. {
  26234. front: {
  26235. height: math.unit(50, "m"),
  26236. weight: math.unit(500, "tonnes"),
  26237. name: "Front",
  26238. image: {
  26239. source: "./media/characters/ryoko/front.svg",
  26240. extra: 4632 / 3926,
  26241. bottom: 193 / 4823
  26242. }
  26243. },
  26244. },
  26245. [
  26246. {
  26247. name: "Normal",
  26248. height: math.unit(50, "meters"),
  26249. default: true
  26250. },
  26251. ]
  26252. ))
  26253. characterMakers.push(() => makeCharacter(
  26254. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26255. {
  26256. front: {
  26257. height: math.unit(30, "m"),
  26258. weight: math.unit(22, "tonnes"),
  26259. name: "Front",
  26260. image: {
  26261. source: "./media/characters/elio/front.svg",
  26262. extra: 4582 / 3720,
  26263. bottom: 236 / 4828
  26264. }
  26265. },
  26266. },
  26267. [
  26268. {
  26269. name: "Normal",
  26270. height: math.unit(30, "meters"),
  26271. default: true
  26272. },
  26273. ]
  26274. ))
  26275. characterMakers.push(() => makeCharacter(
  26276. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26277. {
  26278. front: {
  26279. height: math.unit(6 + 3 / 12, "feet"),
  26280. weight: math.unit(120, "lb"),
  26281. name: "Front",
  26282. image: {
  26283. source: "./media/characters/azura/front.svg",
  26284. extra: 1149 / 1135,
  26285. bottom: 45 / 1194
  26286. }
  26287. },
  26288. frontClothed: {
  26289. height: math.unit(6 + 3 / 12, "feet"),
  26290. weight: math.unit(120, "lb"),
  26291. name: "Front (Clothed)",
  26292. image: {
  26293. source: "./media/characters/azura/front-clothed.svg",
  26294. extra: 1149 / 1135,
  26295. bottom: 45 / 1194
  26296. }
  26297. },
  26298. },
  26299. [
  26300. {
  26301. name: "Normal",
  26302. height: math.unit(6 + 3 / 12, "feet"),
  26303. default: true
  26304. },
  26305. {
  26306. name: "Macro",
  26307. height: math.unit(20 + 6 / 12, "feet")
  26308. },
  26309. {
  26310. name: "Megamacro",
  26311. height: math.unit(12, "miles")
  26312. },
  26313. {
  26314. name: "Gigamacro",
  26315. height: math.unit(10000, "miles")
  26316. },
  26317. {
  26318. name: "Teramacro",
  26319. height: math.unit(900000, "miles")
  26320. },
  26321. ]
  26322. ))
  26323. characterMakers.push(() => makeCharacter(
  26324. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26325. {
  26326. front: {
  26327. height: math.unit(12, "feet"),
  26328. weight: math.unit(1, "ton"),
  26329. capacity: math.unit(660000, "gallons"),
  26330. name: "Front",
  26331. image: {
  26332. source: "./media/characters/zeus/front.svg",
  26333. extra: 5005 / 4717,
  26334. bottom: 363 / 5388
  26335. }
  26336. },
  26337. },
  26338. [
  26339. {
  26340. name: "Normal",
  26341. height: math.unit(12, "feet")
  26342. },
  26343. {
  26344. name: "Preferred Size",
  26345. height: math.unit(0.5, "miles"),
  26346. default: true
  26347. },
  26348. {
  26349. name: "Giga Horse",
  26350. height: math.unit(300, "miles")
  26351. },
  26352. {
  26353. name: "Riding Planets",
  26354. height: math.unit(30, "megameters")
  26355. },
  26356. {
  26357. name: "Cosmic Giant",
  26358. height: math.unit(3, "zettameters")
  26359. },
  26360. {
  26361. name: "Breeding God",
  26362. height: math.unit(9.92e22, "yottameters")
  26363. },
  26364. ]
  26365. ))
  26366. characterMakers.push(() => makeCharacter(
  26367. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26368. {
  26369. side: {
  26370. height: math.unit(9, "feet"),
  26371. weight: math.unit(1500, "kg"),
  26372. name: "Side",
  26373. image: {
  26374. source: "./media/characters/fang/side.svg",
  26375. extra: 924 / 866,
  26376. bottom: 47.5 / 972.3
  26377. }
  26378. },
  26379. },
  26380. [
  26381. {
  26382. name: "Normal",
  26383. height: math.unit(9, "feet"),
  26384. default: true
  26385. },
  26386. {
  26387. name: "Macro",
  26388. height: math.unit(75 + 6 / 12, "feet")
  26389. },
  26390. {
  26391. name: "Teramacro",
  26392. height: math.unit(50000, "miles")
  26393. },
  26394. ]
  26395. ))
  26396. characterMakers.push(() => makeCharacter(
  26397. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26398. {
  26399. front: {
  26400. height: math.unit(10, "feet"),
  26401. weight: math.unit(2, "tons"),
  26402. name: "Front",
  26403. image: {
  26404. source: "./media/characters/rekhit/front.svg",
  26405. extra: 2796 / 2590,
  26406. bottom: 225 / 3022
  26407. }
  26408. },
  26409. },
  26410. [
  26411. {
  26412. name: "Normal",
  26413. height: math.unit(10, "feet"),
  26414. default: true
  26415. },
  26416. {
  26417. name: "Macro",
  26418. height: math.unit(500, "feet")
  26419. },
  26420. ]
  26421. ))
  26422. characterMakers.push(() => makeCharacter(
  26423. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26424. {
  26425. front: {
  26426. height: math.unit(7 + 6.451 / 12, "feet"),
  26427. weight: math.unit(310, "lb"),
  26428. name: "Front",
  26429. image: {
  26430. source: "./media/characters/dahlia-verrick/front.svg",
  26431. extra: 1488 / 1365,
  26432. bottom: 6.2 / 1495
  26433. }
  26434. },
  26435. back: {
  26436. height: math.unit(7 + 6.451 / 12, "feet"),
  26437. weight: math.unit(310, "lb"),
  26438. name: "Back",
  26439. image: {
  26440. source: "./media/characters/dahlia-verrick/back.svg",
  26441. extra: 1472 / 1351,
  26442. bottom: 5.28 / 1477
  26443. }
  26444. },
  26445. frontBusiness: {
  26446. height: math.unit(7 + 6.451 / 12, "feet"),
  26447. weight: math.unit(200, "lb"),
  26448. name: "Front (Business)",
  26449. image: {
  26450. source: "./media/characters/dahlia-verrick/front-business.svg",
  26451. extra: 1478 / 1381,
  26452. bottom: 5.5 / 1484
  26453. }
  26454. },
  26455. frontCasual: {
  26456. height: math.unit(7 + 6.451 / 12, "feet"),
  26457. weight: math.unit(200, "lb"),
  26458. name: "Front (Casual)",
  26459. image: {
  26460. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26461. extra: 1478 / 1381,
  26462. bottom: 5.5 / 1484
  26463. }
  26464. },
  26465. },
  26466. [
  26467. {
  26468. name: "Travel-Sized",
  26469. height: math.unit(7.45, "inches")
  26470. },
  26471. {
  26472. name: "Normal",
  26473. height: math.unit(7 + 6.451 / 12, "feet"),
  26474. default: true
  26475. },
  26476. {
  26477. name: "Hitting the Town",
  26478. height: math.unit(37 + 8 / 12, "feet")
  26479. },
  26480. {
  26481. name: "Stomp in the Suburbs",
  26482. height: math.unit(964 + 9.728 / 12, "feet")
  26483. },
  26484. {
  26485. name: "Sit on the City",
  26486. height: math.unit(61747 + 10.592 / 12, "feet")
  26487. },
  26488. {
  26489. name: "Glomp the Globe",
  26490. height: math.unit(252919327 + 4.832 / 12, "feet")
  26491. },
  26492. ]
  26493. ))
  26494. characterMakers.push(() => makeCharacter(
  26495. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26496. {
  26497. front: {
  26498. height: math.unit(6 + 4 / 12, "feet"),
  26499. weight: math.unit(320, "lb"),
  26500. name: "Front",
  26501. image: {
  26502. source: "./media/characters/balina-mahigan/front.svg",
  26503. extra: 447 / 428,
  26504. bottom: 18 / 466
  26505. }
  26506. },
  26507. back: {
  26508. height: math.unit(6 + 4 / 12, "feet"),
  26509. weight: math.unit(320, "lb"),
  26510. name: "Back",
  26511. image: {
  26512. source: "./media/characters/balina-mahigan/back.svg",
  26513. extra: 445 / 428,
  26514. bottom: 4.07 / 448
  26515. }
  26516. },
  26517. arm: {
  26518. height: math.unit(1.88, "feet"),
  26519. name: "Arm",
  26520. image: {
  26521. source: "./media/characters/balina-mahigan/arm.svg"
  26522. }
  26523. },
  26524. backPort: {
  26525. height: math.unit(0.685, "feet"),
  26526. name: "Back Port",
  26527. image: {
  26528. source: "./media/characters/balina-mahigan/back-port.svg"
  26529. }
  26530. },
  26531. hoofpaw: {
  26532. height: math.unit(1.41, "feet"),
  26533. name: "Hoofpaw",
  26534. image: {
  26535. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26536. }
  26537. },
  26538. leftHandBack: {
  26539. height: math.unit(0.938, "feet"),
  26540. name: "Left Hand (Back)",
  26541. image: {
  26542. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26543. }
  26544. },
  26545. leftHandFront: {
  26546. height: math.unit(0.938, "feet"),
  26547. name: "Left Hand (Front)",
  26548. image: {
  26549. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26550. }
  26551. },
  26552. rightHandBack: {
  26553. height: math.unit(0.95, "feet"),
  26554. name: "Right Hand (Back)",
  26555. image: {
  26556. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26557. }
  26558. },
  26559. rightHandFront: {
  26560. height: math.unit(0.95, "feet"),
  26561. name: "Right Hand (Front)",
  26562. image: {
  26563. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26564. }
  26565. },
  26566. },
  26567. [
  26568. {
  26569. name: "Normal",
  26570. height: math.unit(6 + 4 / 12, "feet"),
  26571. default: true
  26572. },
  26573. ]
  26574. ))
  26575. characterMakers.push(() => makeCharacter(
  26576. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26577. {
  26578. front: {
  26579. height: math.unit(6, "feet"),
  26580. weight: math.unit(320, "lb"),
  26581. name: "Front",
  26582. image: {
  26583. source: "./media/characters/balina-mejeri/front.svg",
  26584. extra: 517 / 488,
  26585. bottom: 44.2 / 561
  26586. }
  26587. },
  26588. },
  26589. [
  26590. {
  26591. name: "Normal",
  26592. height: math.unit(6 + 4 / 12, "feet")
  26593. },
  26594. {
  26595. name: "Business",
  26596. height: math.unit(155, "feet"),
  26597. default: true
  26598. },
  26599. ]
  26600. ))
  26601. characterMakers.push(() => makeCharacter(
  26602. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26603. {
  26604. kneeling: {
  26605. height: math.unit(6 + 4 / 12, "feet"),
  26606. weight: math.unit(300 * 20, "lb"),
  26607. name: "Kneeling",
  26608. image: {
  26609. source: "./media/characters/balbarian/kneeling.svg",
  26610. extra: 922 / 862,
  26611. bottom: 42.4 / 965
  26612. }
  26613. },
  26614. },
  26615. [
  26616. {
  26617. name: "Normal",
  26618. height: math.unit(6 + 4 / 12, "feet")
  26619. },
  26620. {
  26621. name: "Treasured",
  26622. height: math.unit(18 + 9 / 12, "feet"),
  26623. default: true
  26624. },
  26625. {
  26626. name: "Macro",
  26627. height: math.unit(900, "feet")
  26628. },
  26629. ]
  26630. ))
  26631. characterMakers.push(() => makeCharacter(
  26632. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26633. {
  26634. front: {
  26635. height: math.unit(6 + 4 / 12, "feet"),
  26636. weight: math.unit(325, "lb"),
  26637. name: "Front",
  26638. image: {
  26639. source: "./media/characters/balina-amarini/front.svg",
  26640. extra: 415 / 403,
  26641. bottom: 19 / 433.4
  26642. }
  26643. },
  26644. back: {
  26645. height: math.unit(6 + 4 / 12, "feet"),
  26646. weight: math.unit(325, "lb"),
  26647. name: "Back",
  26648. image: {
  26649. source: "./media/characters/balina-amarini/back.svg",
  26650. extra: 415 / 403,
  26651. bottom: 13.5 / 432
  26652. }
  26653. },
  26654. overdrive: {
  26655. height: math.unit(6 + 4 / 12, "feet"),
  26656. weight: math.unit(400, "lb"),
  26657. name: "Overdrive",
  26658. image: {
  26659. source: "./media/characters/balina-amarini/overdrive.svg",
  26660. extra: 269 / 259,
  26661. bottom: 12 / 282
  26662. }
  26663. },
  26664. },
  26665. [
  26666. {
  26667. name: "Boom",
  26668. height: math.unit(9 + 10 / 12, "feet"),
  26669. default: true
  26670. },
  26671. {
  26672. name: "Macro",
  26673. height: math.unit(280, "feet")
  26674. },
  26675. ]
  26676. ))
  26677. characterMakers.push(() => makeCharacter(
  26678. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26679. {
  26680. goddess: {
  26681. height: math.unit(600, "feet"),
  26682. weight: math.unit(2000000, "tons"),
  26683. name: "Goddess",
  26684. image: {
  26685. source: "./media/characters/lady-kubwa/goddess.svg",
  26686. extra: 1240.5 / 1223,
  26687. bottom: 22 / 1263
  26688. }
  26689. },
  26690. goddesser: {
  26691. height: math.unit(900, "feet"),
  26692. weight: math.unit(20000000, "lb"),
  26693. name: "Goddess-er",
  26694. image: {
  26695. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26696. extra: 899 / 888,
  26697. bottom: 12.6 / 912
  26698. }
  26699. },
  26700. },
  26701. [
  26702. {
  26703. name: "Macro",
  26704. height: math.unit(600, "feet"),
  26705. default: true
  26706. },
  26707. {
  26708. name: "Megamacro",
  26709. height: math.unit(250, "miles")
  26710. },
  26711. ]
  26712. ))
  26713. characterMakers.push(() => makeCharacter(
  26714. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26715. {
  26716. front: {
  26717. height: math.unit(7 + 7 / 12, "feet"),
  26718. weight: math.unit(250, "lb"),
  26719. name: "Front",
  26720. image: {
  26721. source: "./media/characters/tala-grovehorn/front.svg",
  26722. extra: 2636 / 2525,
  26723. bottom: 147 / 2781
  26724. }
  26725. },
  26726. back: {
  26727. height: math.unit(7 + 7 / 12, "feet"),
  26728. weight: math.unit(250, "lb"),
  26729. name: "Back",
  26730. image: {
  26731. source: "./media/characters/tala-grovehorn/back.svg",
  26732. extra: 2635 / 2539,
  26733. bottom: 100 / 2732.8
  26734. }
  26735. },
  26736. mouth: {
  26737. height: math.unit(1.15, "feet"),
  26738. name: "Mouth",
  26739. image: {
  26740. source: "./media/characters/tala-grovehorn/mouth.svg"
  26741. }
  26742. },
  26743. dick: {
  26744. height: math.unit(2.36, "feet"),
  26745. name: "Dick",
  26746. image: {
  26747. source: "./media/characters/tala-grovehorn/dick.svg"
  26748. }
  26749. },
  26750. slit: {
  26751. height: math.unit(0.61, "feet"),
  26752. name: "Slit",
  26753. image: {
  26754. source: "./media/characters/tala-grovehorn/slit.svg"
  26755. }
  26756. },
  26757. },
  26758. [
  26759. ]
  26760. ))
  26761. characterMakers.push(() => makeCharacter(
  26762. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26763. {
  26764. front: {
  26765. height: math.unit(7 + 7 / 12, "feet"),
  26766. weight: math.unit(225, "lb"),
  26767. name: "Front",
  26768. image: {
  26769. source: "./media/characters/epona/front.svg",
  26770. extra: 2445 / 2290,
  26771. bottom: 251 / 2696
  26772. }
  26773. },
  26774. back: {
  26775. height: math.unit(7 + 7 / 12, "feet"),
  26776. weight: math.unit(225, "lb"),
  26777. name: "Back",
  26778. image: {
  26779. source: "./media/characters/epona/back.svg",
  26780. extra: 2546 / 2408,
  26781. bottom: 44 / 2589
  26782. }
  26783. },
  26784. genitals: {
  26785. height: math.unit(1.5, "feet"),
  26786. name: "Genitals",
  26787. image: {
  26788. source: "./media/characters/epona/genitals.svg"
  26789. }
  26790. },
  26791. },
  26792. [
  26793. {
  26794. name: "Normal",
  26795. height: math.unit(7 + 7 / 12, "feet"),
  26796. default: true
  26797. },
  26798. ]
  26799. ))
  26800. characterMakers.push(() => makeCharacter(
  26801. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26802. {
  26803. front: {
  26804. height: math.unit(7, "feet"),
  26805. weight: math.unit(518, "lb"),
  26806. name: "Front",
  26807. image: {
  26808. source: "./media/characters/avia-bloodbourn/front.svg",
  26809. extra: 1466 / 1350,
  26810. bottom: 65 / 1527
  26811. }
  26812. },
  26813. },
  26814. [
  26815. ]
  26816. ))
  26817. characterMakers.push(() => makeCharacter(
  26818. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26819. {
  26820. front: {
  26821. height: math.unit(9.35, "feet"),
  26822. weight: math.unit(600, "lb"),
  26823. name: "Front",
  26824. image: {
  26825. source: "./media/characters/amera/front.svg",
  26826. extra: 891 / 818,
  26827. bottom: 30 / 922.7
  26828. }
  26829. },
  26830. back: {
  26831. height: math.unit(9.35, "feet"),
  26832. weight: math.unit(600, "lb"),
  26833. name: "Back",
  26834. image: {
  26835. source: "./media/characters/amera/back.svg",
  26836. extra: 876 / 824,
  26837. bottom: 6.8 / 884
  26838. }
  26839. },
  26840. dick: {
  26841. height: math.unit(2.14, "feet"),
  26842. name: "Dick",
  26843. image: {
  26844. source: "./media/characters/amera/dick.svg"
  26845. }
  26846. },
  26847. },
  26848. [
  26849. {
  26850. name: "Normal",
  26851. height: math.unit(9.35, "feet"),
  26852. default: true
  26853. },
  26854. ]
  26855. ))
  26856. characterMakers.push(() => makeCharacter(
  26857. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26858. {
  26859. kneeling: {
  26860. height: math.unit(3 + 4 / 12, "feet"),
  26861. weight: math.unit(90, "lb"),
  26862. name: "Kneeling",
  26863. image: {
  26864. source: "./media/characters/rosewen/kneeling.svg",
  26865. extra: 1835 / 1571,
  26866. bottom: 27.7 / 1862
  26867. }
  26868. },
  26869. },
  26870. [
  26871. {
  26872. name: "Normal",
  26873. height: math.unit(3 + 4 / 12, "feet"),
  26874. default: true
  26875. },
  26876. ]
  26877. ))
  26878. characterMakers.push(() => makeCharacter(
  26879. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26880. {
  26881. front: {
  26882. height: math.unit(5 + 10 / 12, "feet"),
  26883. weight: math.unit(200, "lb"),
  26884. name: "Front",
  26885. image: {
  26886. source: "./media/characters/sabah/front.svg",
  26887. extra: 849 / 763,
  26888. bottom: 33.9 / 881
  26889. }
  26890. },
  26891. },
  26892. [
  26893. {
  26894. name: "Normal",
  26895. height: math.unit(5 + 10 / 12, "feet"),
  26896. default: true
  26897. },
  26898. ]
  26899. ))
  26900. characterMakers.push(() => makeCharacter(
  26901. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26902. {
  26903. front: {
  26904. height: math.unit(3 + 5 / 12, "feet"),
  26905. weight: math.unit(40, "kg"),
  26906. name: "Front",
  26907. image: {
  26908. source: "./media/characters/purple-flame/front.svg",
  26909. extra: 1577 / 1412,
  26910. bottom: 97 / 1694
  26911. }
  26912. },
  26913. frontDressed: {
  26914. height: math.unit(3 + 5 / 12, "feet"),
  26915. weight: math.unit(40, "kg"),
  26916. name: "Front (Dressed)",
  26917. image: {
  26918. source: "./media/characters/purple-flame/front-dressed.svg",
  26919. extra: 1577 / 1412,
  26920. bottom: 97 / 1694
  26921. }
  26922. },
  26923. headphones: {
  26924. height: math.unit(0.85, "feet"),
  26925. name: "Headphones",
  26926. image: {
  26927. source: "./media/characters/purple-flame/headphones.svg"
  26928. }
  26929. },
  26930. },
  26931. [
  26932. {
  26933. name: "Really Small",
  26934. height: math.unit(5, "cm")
  26935. },
  26936. {
  26937. name: "Micro",
  26938. height: math.unit(1 + 5 / 12, "feet")
  26939. },
  26940. {
  26941. name: "Normal",
  26942. height: math.unit(3 + 5 / 12, "feet"),
  26943. default: true
  26944. },
  26945. {
  26946. name: "Minimacro",
  26947. height: math.unit(125, "feet")
  26948. },
  26949. {
  26950. name: "Macro",
  26951. height: math.unit(0.5, "miles")
  26952. },
  26953. {
  26954. name: "Megamacro",
  26955. height: math.unit(50, "miles")
  26956. },
  26957. {
  26958. name: "Gigantic",
  26959. height: math.unit(750, "miles")
  26960. },
  26961. {
  26962. name: "Planetary",
  26963. height: math.unit(15000, "miles")
  26964. },
  26965. ]
  26966. ))
  26967. characterMakers.push(() => makeCharacter(
  26968. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26969. {
  26970. front: {
  26971. height: math.unit(14, "feet"),
  26972. weight: math.unit(959, "lb"),
  26973. name: "Front",
  26974. image: {
  26975. source: "./media/characters/arsenal/front.svg",
  26976. extra: 2357 / 2157,
  26977. bottom: 93 / 2458
  26978. }
  26979. },
  26980. },
  26981. [
  26982. {
  26983. name: "Normal",
  26984. height: math.unit(14, "feet"),
  26985. default: true
  26986. },
  26987. ]
  26988. ))
  26989. characterMakers.push(() => makeCharacter(
  26990. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26991. {
  26992. front: {
  26993. height: math.unit(6, "feet"),
  26994. weight: math.unit(150, "lb"),
  26995. name: "Front",
  26996. image: {
  26997. source: "./media/characters/adira/front.svg",
  26998. extra: 1078 / 1029,
  26999. bottom: 87 / 1166
  27000. }
  27001. },
  27002. },
  27003. [
  27004. {
  27005. name: "Micro",
  27006. height: math.unit(4, "inches"),
  27007. default: true
  27008. },
  27009. {
  27010. name: "Macro",
  27011. height: math.unit(50, "feet")
  27012. },
  27013. ]
  27014. ))
  27015. characterMakers.push(() => makeCharacter(
  27016. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27017. {
  27018. front: {
  27019. height: math.unit(16, "feet"),
  27020. weight: math.unit(1000, "lb"),
  27021. name: "Front",
  27022. image: {
  27023. source: "./media/characters/grim/front.svg",
  27024. extra: 622 / 614,
  27025. bottom: 18.1 / 642
  27026. }
  27027. },
  27028. back: {
  27029. height: math.unit(16, "feet"),
  27030. weight: math.unit(1000, "lb"),
  27031. name: "Back",
  27032. image: {
  27033. source: "./media/characters/grim/back.svg",
  27034. extra: 610.6 / 602,
  27035. bottom: 40.8 / 652
  27036. }
  27037. },
  27038. hunched: {
  27039. height: math.unit(9.75, "feet"),
  27040. weight: math.unit(1000, "lb"),
  27041. name: "Hunched",
  27042. image: {
  27043. source: "./media/characters/grim/hunched.svg",
  27044. extra: 304 / 297,
  27045. bottom: 35.4 / 394
  27046. }
  27047. },
  27048. },
  27049. [
  27050. {
  27051. name: "Normal",
  27052. height: math.unit(16, "feet"),
  27053. default: true
  27054. },
  27055. ]
  27056. ))
  27057. characterMakers.push(() => makeCharacter(
  27058. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27059. {
  27060. front: {
  27061. height: math.unit(2.3, "meters"),
  27062. weight: math.unit(300, "lb"),
  27063. name: "Front",
  27064. image: {
  27065. source: "./media/characters/sinja/front-sfw.svg",
  27066. extra: 1393 / 1294,
  27067. bottom: 70 / 1463
  27068. }
  27069. },
  27070. frontNsfw: {
  27071. height: math.unit(2.3, "meters"),
  27072. weight: math.unit(300, "lb"),
  27073. name: "Front (NSFW)",
  27074. image: {
  27075. source: "./media/characters/sinja/front-nsfw.svg",
  27076. extra: 1393 / 1294,
  27077. bottom: 70 / 1463
  27078. }
  27079. },
  27080. back: {
  27081. height: math.unit(2.3, "meters"),
  27082. weight: math.unit(300, "lb"),
  27083. name: "Back",
  27084. image: {
  27085. source: "./media/characters/sinja/back.svg",
  27086. extra: 1393 / 1294,
  27087. bottom: 70 / 1463
  27088. }
  27089. },
  27090. head: {
  27091. height: math.unit(1.771, "feet"),
  27092. name: "Head",
  27093. image: {
  27094. source: "./media/characters/sinja/head.svg"
  27095. }
  27096. },
  27097. slit: {
  27098. height: math.unit(0.8, "feet"),
  27099. name: "Slit",
  27100. image: {
  27101. source: "./media/characters/sinja/slit.svg"
  27102. }
  27103. },
  27104. },
  27105. [
  27106. {
  27107. name: "Normal",
  27108. height: math.unit(2.3, "meters")
  27109. },
  27110. {
  27111. name: "Macro",
  27112. height: math.unit(91, "meters"),
  27113. default: true
  27114. },
  27115. {
  27116. name: "Megamacro",
  27117. height: math.unit(91440, "meters")
  27118. },
  27119. {
  27120. name: "Gigamacro",
  27121. height: math.unit(60960000, "meters")
  27122. },
  27123. {
  27124. name: "Teramacro",
  27125. height: math.unit(9144000000, "meters")
  27126. },
  27127. ]
  27128. ))
  27129. characterMakers.push(() => makeCharacter(
  27130. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27131. {
  27132. front: {
  27133. height: math.unit(1.7, "meters"),
  27134. weight: math.unit(130, "lb"),
  27135. name: "Front",
  27136. image: {
  27137. source: "./media/characters/kyu/front.svg",
  27138. extra: 415 / 395,
  27139. bottom: 5 / 420
  27140. }
  27141. },
  27142. head: {
  27143. height: math.unit(1.75, "feet"),
  27144. name: "Head",
  27145. image: {
  27146. source: "./media/characters/kyu/head.svg"
  27147. }
  27148. },
  27149. foot: {
  27150. height: math.unit(0.81, "feet"),
  27151. name: "Foot",
  27152. image: {
  27153. source: "./media/characters/kyu/foot.svg"
  27154. }
  27155. },
  27156. },
  27157. [
  27158. {
  27159. name: "Normal",
  27160. height: math.unit(1.7, "meters")
  27161. },
  27162. {
  27163. name: "Macro",
  27164. height: math.unit(131, "feet"),
  27165. default: true
  27166. },
  27167. {
  27168. name: "Megamacro",
  27169. height: math.unit(91440, "meters")
  27170. },
  27171. {
  27172. name: "Gigamacro",
  27173. height: math.unit(60960000, "meters")
  27174. },
  27175. {
  27176. name: "Teramacro",
  27177. height: math.unit(9144000000, "meters")
  27178. },
  27179. ]
  27180. ))
  27181. characterMakers.push(() => makeCharacter(
  27182. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27183. {
  27184. front: {
  27185. height: math.unit(7 + 1 / 12, "feet"),
  27186. weight: math.unit(250, "lb"),
  27187. name: "Front",
  27188. image: {
  27189. source: "./media/characters/joey/front.svg",
  27190. extra: 1791 / 1537,
  27191. bottom: 28 / 1816
  27192. }
  27193. },
  27194. },
  27195. [
  27196. {
  27197. name: "Micro",
  27198. height: math.unit(3, "inches")
  27199. },
  27200. {
  27201. name: "Normal",
  27202. height: math.unit(7 + 1 / 12, "feet"),
  27203. default: true
  27204. },
  27205. ]
  27206. ))
  27207. characterMakers.push(() => makeCharacter(
  27208. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27209. {
  27210. front: {
  27211. height: math.unit(165, "cm"),
  27212. weight: math.unit(140, "lb"),
  27213. name: "Front",
  27214. image: {
  27215. source: "./media/characters/sam-evans/front.svg",
  27216. extra: 3417 / 3230,
  27217. bottom: 41.3 / 3417
  27218. }
  27219. },
  27220. frontSixTails: {
  27221. height: math.unit(165, "cm"),
  27222. weight: math.unit(140, "lb"),
  27223. name: "Front-six-tails",
  27224. image: {
  27225. source: "./media/characters/sam-evans/front-six-tails.svg",
  27226. extra: 3417 / 3230,
  27227. bottom: 41.3 / 3417
  27228. }
  27229. },
  27230. back: {
  27231. height: math.unit(165, "cm"),
  27232. weight: math.unit(140, "lb"),
  27233. name: "Back",
  27234. image: {
  27235. source: "./media/characters/sam-evans/back.svg",
  27236. extra: 3227 / 3032,
  27237. bottom: 6.8 / 3234
  27238. }
  27239. },
  27240. face: {
  27241. height: math.unit(0.68, "feet"),
  27242. name: "Face",
  27243. image: {
  27244. source: "./media/characters/sam-evans/face.svg"
  27245. }
  27246. },
  27247. },
  27248. [
  27249. {
  27250. name: "Normal",
  27251. height: math.unit(165, "cm"),
  27252. default: true
  27253. },
  27254. {
  27255. name: "Macro",
  27256. height: math.unit(100, "meters")
  27257. },
  27258. {
  27259. name: "Macro+",
  27260. height: math.unit(800, "meters")
  27261. },
  27262. {
  27263. name: "Macro++",
  27264. height: math.unit(3, "km")
  27265. },
  27266. {
  27267. name: "Macro+++",
  27268. height: math.unit(30, "km")
  27269. },
  27270. ]
  27271. ))
  27272. characterMakers.push(() => makeCharacter(
  27273. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27274. {
  27275. front: {
  27276. height: math.unit(10, "feet"),
  27277. weight: math.unit(750, "lb"),
  27278. name: "Front",
  27279. image: {
  27280. source: "./media/characters/juliet-a/front.svg",
  27281. extra: 1766 / 1720,
  27282. bottom: 43 / 1809
  27283. }
  27284. },
  27285. back: {
  27286. height: math.unit(10, "feet"),
  27287. weight: math.unit(750, "lb"),
  27288. name: "Back",
  27289. image: {
  27290. source: "./media/characters/juliet-a/back.svg",
  27291. extra: 1781 / 1734,
  27292. bottom: 35 / 1810,
  27293. }
  27294. },
  27295. },
  27296. [
  27297. {
  27298. name: "Normal",
  27299. height: math.unit(10, "feet"),
  27300. default: true
  27301. },
  27302. {
  27303. name: "Dragon Form",
  27304. height: math.unit(250, "feet")
  27305. },
  27306. {
  27307. name: "Macro",
  27308. height: math.unit(1000, "feet")
  27309. },
  27310. {
  27311. name: "Megamacro",
  27312. height: math.unit(10000, "feet")
  27313. }
  27314. ]
  27315. ))
  27316. characterMakers.push(() => makeCharacter(
  27317. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27318. {
  27319. regular: {
  27320. height: math.unit(7 + 3 / 12, "feet"),
  27321. weight: math.unit(260, "lb"),
  27322. name: "Regular",
  27323. image: {
  27324. source: "./media/characters/wild/regular.svg",
  27325. extra: 97.45 / 92,
  27326. bottom: 6.8 / 104.3
  27327. }
  27328. },
  27329. biggums: {
  27330. height: math.unit(8 + 6 / 12, "feet"),
  27331. weight: math.unit(425, "lb"),
  27332. name: "Biggums",
  27333. image: {
  27334. source: "./media/characters/wild/biggums.svg",
  27335. extra: 97.45 / 92,
  27336. bottom: 7.5 / 132.34
  27337. }
  27338. },
  27339. mawRegular: {
  27340. height: math.unit(1.24, "feet"),
  27341. name: "Maw (Regular)",
  27342. image: {
  27343. source: "./media/characters/wild/maw.svg"
  27344. }
  27345. },
  27346. mawBiggums: {
  27347. height: math.unit(1.47, "feet"),
  27348. name: "Maw (Biggums)",
  27349. image: {
  27350. source: "./media/characters/wild/maw.svg"
  27351. }
  27352. },
  27353. },
  27354. [
  27355. {
  27356. name: "Normal",
  27357. height: math.unit(7 + 3 / 12, "feet"),
  27358. default: true
  27359. },
  27360. ]
  27361. ))
  27362. characterMakers.push(() => makeCharacter(
  27363. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27364. {
  27365. front: {
  27366. height: math.unit(2.5, "meters"),
  27367. weight: math.unit(200, "kg"),
  27368. name: "Front",
  27369. image: {
  27370. source: "./media/characters/vidar/front.svg",
  27371. extra: 2994 / 2795,
  27372. bottom: 56 / 3061
  27373. }
  27374. },
  27375. back: {
  27376. height: math.unit(2.5, "meters"),
  27377. weight: math.unit(200, "kg"),
  27378. name: "Back",
  27379. image: {
  27380. source: "./media/characters/vidar/back.svg",
  27381. extra: 3131 / 2928,
  27382. bottom: 13.5 / 3141.5
  27383. }
  27384. },
  27385. feral: {
  27386. height: math.unit(2.5, "meters"),
  27387. weight: math.unit(2000, "kg"),
  27388. name: "Feral",
  27389. image: {
  27390. source: "./media/characters/vidar/feral.svg",
  27391. extra: 2790 / 1765,
  27392. bottom: 6 / 2796
  27393. }
  27394. },
  27395. },
  27396. [
  27397. {
  27398. name: "Normal",
  27399. height: math.unit(2.5, "meters"),
  27400. default: true
  27401. },
  27402. {
  27403. name: "Macro",
  27404. height: math.unit(100, "meters")
  27405. },
  27406. ]
  27407. ))
  27408. characterMakers.push(() => makeCharacter(
  27409. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27410. {
  27411. front: {
  27412. height: math.unit(5 + 9 / 12, "feet"),
  27413. weight: math.unit(120, "lb"),
  27414. name: "Front",
  27415. image: {
  27416. source: "./media/characters/ash/front.svg",
  27417. extra: 2189 / 1961,
  27418. bottom: 5.2 / 2194
  27419. }
  27420. },
  27421. },
  27422. [
  27423. {
  27424. name: "Normal",
  27425. height: math.unit(5 + 9 / 12, "feet"),
  27426. default: true
  27427. },
  27428. ]
  27429. ))
  27430. characterMakers.push(() => makeCharacter(
  27431. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27432. {
  27433. front: {
  27434. height: math.unit(9, "feet"),
  27435. weight: math.unit(10000, "lb"),
  27436. name: "Front",
  27437. image: {
  27438. source: "./media/characters/gygabite/front.svg",
  27439. bottom: 31.7 / 537.8,
  27440. extra: 505 / 370
  27441. }
  27442. },
  27443. },
  27444. [
  27445. {
  27446. name: "Normal",
  27447. height: math.unit(9, "feet"),
  27448. default: true
  27449. },
  27450. ]
  27451. ))
  27452. characterMakers.push(() => makeCharacter(
  27453. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27454. {
  27455. front: {
  27456. height: math.unit(12, "feet"),
  27457. weight: math.unit(35000, "lb"),
  27458. name: "Front",
  27459. image: {
  27460. source: "./media/characters/p0tat0/front.svg",
  27461. extra: 1065 / 921,
  27462. bottom: 55.7 / 1121.25
  27463. }
  27464. },
  27465. },
  27466. [
  27467. {
  27468. name: "Normal",
  27469. height: math.unit(12, "feet"),
  27470. default: true
  27471. },
  27472. ]
  27473. ))
  27474. characterMakers.push(() => makeCharacter(
  27475. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27476. {
  27477. side: {
  27478. height: math.unit(6.5, "feet"),
  27479. weight: math.unit(800, "lb"),
  27480. name: "Side",
  27481. image: {
  27482. source: "./media/characters/dusk/side.svg",
  27483. extra: 615 / 373,
  27484. bottom: 53 / 664
  27485. }
  27486. },
  27487. sitting: {
  27488. height: math.unit(7, "feet"),
  27489. weight: math.unit(800, "lb"),
  27490. name: "Sitting",
  27491. image: {
  27492. source: "./media/characters/dusk/sitting.svg",
  27493. extra: 753 / 425,
  27494. bottom: 33 / 774
  27495. }
  27496. },
  27497. head: {
  27498. height: math.unit(6.1, "feet"),
  27499. name: "Head",
  27500. image: {
  27501. source: "./media/characters/dusk/head.svg"
  27502. }
  27503. },
  27504. },
  27505. [
  27506. {
  27507. name: "Normal",
  27508. height: math.unit(7, "feet"),
  27509. default: true
  27510. },
  27511. ]
  27512. ))
  27513. characterMakers.push(() => makeCharacter(
  27514. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27515. {
  27516. front: {
  27517. height: math.unit(15, "feet"),
  27518. weight: math.unit(7000, "lb"),
  27519. name: "Front",
  27520. image: {
  27521. source: "./media/characters/jay-direwolf/front.svg",
  27522. extra: 1810 / 1732,
  27523. bottom: 66 / 1892
  27524. }
  27525. },
  27526. },
  27527. [
  27528. {
  27529. name: "Normal",
  27530. height: math.unit(15, "feet"),
  27531. default: true
  27532. },
  27533. ]
  27534. ))
  27535. characterMakers.push(() => makeCharacter(
  27536. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27537. {
  27538. front: {
  27539. height: math.unit(4 + 9 / 12, "feet"),
  27540. weight: math.unit(130, "lb"),
  27541. name: "Front",
  27542. image: {
  27543. source: "./media/characters/anchovie/front.svg",
  27544. extra: 382 / 350,
  27545. bottom: 25 / 409
  27546. }
  27547. },
  27548. back: {
  27549. height: math.unit(4 + 9 / 12, "feet"),
  27550. weight: math.unit(130, "lb"),
  27551. name: "Back",
  27552. image: {
  27553. source: "./media/characters/anchovie/back.svg",
  27554. extra: 385 / 352,
  27555. bottom: 16.6 / 402
  27556. }
  27557. },
  27558. frontDressed: {
  27559. height: math.unit(4 + 9 / 12, "feet"),
  27560. weight: math.unit(130, "lb"),
  27561. name: "Front (Dressed)",
  27562. image: {
  27563. source: "./media/characters/anchovie/front-dressed.svg",
  27564. extra: 382 / 350,
  27565. bottom: 25 / 409
  27566. }
  27567. },
  27568. backDressed: {
  27569. height: math.unit(4 + 9 / 12, "feet"),
  27570. weight: math.unit(130, "lb"),
  27571. name: "Back (Dressed)",
  27572. image: {
  27573. source: "./media/characters/anchovie/back-dressed.svg",
  27574. extra: 385 / 352,
  27575. bottom: 16.6 / 402
  27576. }
  27577. },
  27578. },
  27579. [
  27580. {
  27581. name: "Micro",
  27582. height: math.unit(6.4, "inches")
  27583. },
  27584. {
  27585. name: "Normal",
  27586. height: math.unit(4 + 9 / 12, "feet"),
  27587. default: true
  27588. },
  27589. ]
  27590. ))
  27591. characterMakers.push(() => makeCharacter(
  27592. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27593. {
  27594. front: {
  27595. height: math.unit(2, "meters"),
  27596. weight: math.unit(180, "lb"),
  27597. name: "Front",
  27598. image: {
  27599. source: "./media/characters/acidrenamon/front.svg",
  27600. extra: 987 / 890,
  27601. bottom: 22.8 / 1009
  27602. }
  27603. },
  27604. back: {
  27605. height: math.unit(2, "meters"),
  27606. weight: math.unit(180, "lb"),
  27607. name: "Back",
  27608. image: {
  27609. source: "./media/characters/acidrenamon/back.svg",
  27610. extra: 983 / 891,
  27611. bottom: 8.4 / 992
  27612. }
  27613. },
  27614. head: {
  27615. height: math.unit(1.92, "feet"),
  27616. name: "Head",
  27617. image: {
  27618. source: "./media/characters/acidrenamon/head.svg"
  27619. }
  27620. },
  27621. rump: {
  27622. height: math.unit(1.72, "feet"),
  27623. name: "Rump",
  27624. image: {
  27625. source: "./media/characters/acidrenamon/rump.svg"
  27626. }
  27627. },
  27628. tail: {
  27629. height: math.unit(4.2, "feet"),
  27630. name: "Tail",
  27631. image: {
  27632. source: "./media/characters/acidrenamon/tail.svg"
  27633. }
  27634. },
  27635. },
  27636. [
  27637. {
  27638. name: "Normal",
  27639. height: math.unit(2, "meters"),
  27640. default: true
  27641. },
  27642. {
  27643. name: "Minimacro",
  27644. height: math.unit(7, "meters")
  27645. },
  27646. {
  27647. name: "Macro",
  27648. height: math.unit(200, "meters")
  27649. },
  27650. {
  27651. name: "Gigamacro",
  27652. height: math.unit(0.2, "earths")
  27653. },
  27654. ]
  27655. ))
  27656. characterMakers.push(() => makeCharacter(
  27657. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27658. {
  27659. front: {
  27660. height: math.unit(6, "feet"),
  27661. weight: math.unit(150, "lb"),
  27662. name: "Front",
  27663. image: {
  27664. source: "./media/characters/kenzie-lee/front.svg",
  27665. extra: 1525 / 1465,
  27666. bottom: 45 / 1570
  27667. }
  27668. },
  27669. side: {
  27670. height: math.unit(6, "feet"),
  27671. weight: math.unit(150, "lb"),
  27672. name: "Side",
  27673. image: {
  27674. source: "./media/characters/kenzie-lee/side.svg",
  27675. extra: 5505 / 5383,
  27676. bottom: 60 / 5573
  27677. }
  27678. },
  27679. paw: {
  27680. height: math.unit(0.57, "feet"),
  27681. name: "Paw",
  27682. image: {
  27683. source: "./media/characters/kenzie-lee/paw.svg"
  27684. }
  27685. },
  27686. },
  27687. [
  27688. {
  27689. name: "Normal",
  27690. height: math.unit(152, "feet"),
  27691. default: true
  27692. },
  27693. {
  27694. name: "Megamacro",
  27695. height: math.unit(7, "miles")
  27696. },
  27697. {
  27698. name: "Gigamacro",
  27699. height: math.unit(8000, "miles")
  27700. },
  27701. ]
  27702. ))
  27703. characterMakers.push(() => makeCharacter(
  27704. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27705. {
  27706. side: {
  27707. height: math.unit(6, "feet"),
  27708. weight: math.unit(150, "lb"),
  27709. name: "Side",
  27710. image: {
  27711. source: "./media/characters/withers/side.svg",
  27712. extra: 1830 / 1728,
  27713. bottom: 96 / 1927
  27714. }
  27715. },
  27716. front: {
  27717. height: math.unit(6, "feet"),
  27718. weight: math.unit(150, "lb"),
  27719. name: "Front",
  27720. image: {
  27721. source: "./media/characters/withers/front.svg",
  27722. extra: 1514 / 1438,
  27723. bottom: 118 / 1632
  27724. }
  27725. },
  27726. },
  27727. [
  27728. {
  27729. name: "Macro",
  27730. height: math.unit(168, "feet"),
  27731. default: true
  27732. },
  27733. {
  27734. name: "Megamacro",
  27735. height: math.unit(15, "miles")
  27736. }
  27737. ]
  27738. ))
  27739. characterMakers.push(() => makeCharacter(
  27740. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27741. {
  27742. front: {
  27743. height: math.unit(6 + 7 / 12, "feet"),
  27744. weight: math.unit(250, "lb"),
  27745. name: "Front",
  27746. image: {
  27747. source: "./media/characters/nemoskii/front.svg",
  27748. extra: 2270 / 1734,
  27749. bottom: 86 / 2354
  27750. }
  27751. },
  27752. back: {
  27753. height: math.unit(6 + 7 / 12, "feet"),
  27754. weight: math.unit(250, "lb"),
  27755. name: "Back",
  27756. image: {
  27757. source: "./media/characters/nemoskii/back.svg",
  27758. extra: 1845 / 1788,
  27759. bottom: 10.5 / 1852
  27760. }
  27761. },
  27762. head: {
  27763. height: math.unit(1.31, "feet"),
  27764. name: "Head",
  27765. image: {
  27766. source: "./media/characters/nemoskii/head.svg"
  27767. }
  27768. },
  27769. },
  27770. [
  27771. {
  27772. name: "Micro",
  27773. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27774. },
  27775. {
  27776. name: "Normal",
  27777. height: math.unit(6 + 7 / 12, "feet"),
  27778. default: true
  27779. },
  27780. {
  27781. name: "Macro",
  27782. height: math.unit((6 + 7 / 12) * 150, "feet")
  27783. },
  27784. {
  27785. name: "Macro+",
  27786. height: math.unit((6 + 7 / 12) * 500, "feet")
  27787. },
  27788. {
  27789. name: "Megamacro",
  27790. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27791. },
  27792. ]
  27793. ))
  27794. characterMakers.push(() => makeCharacter(
  27795. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27796. {
  27797. front: {
  27798. height: math.unit(1, "mile"),
  27799. weight: math.unit(265261.9, "lb"),
  27800. name: "Front",
  27801. image: {
  27802. source: "./media/characters/shui/front.svg",
  27803. extra: 1633 / 1564,
  27804. bottom: 91.5 / 1726
  27805. }
  27806. },
  27807. },
  27808. [
  27809. {
  27810. name: "Macro",
  27811. height: math.unit(1, "mile"),
  27812. default: true
  27813. },
  27814. ]
  27815. ))
  27816. characterMakers.push(() => makeCharacter(
  27817. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27818. {
  27819. front: {
  27820. height: math.unit(12 + 6 / 12, "feet"),
  27821. weight: math.unit(1342, "lb"),
  27822. name: "Front",
  27823. image: {
  27824. source: "./media/characters/arokh-takakura/front.svg",
  27825. extra: 1089 / 1043,
  27826. bottom: 77.4 / 1176.7
  27827. }
  27828. },
  27829. back: {
  27830. height: math.unit(12 + 6 / 12, "feet"),
  27831. weight: math.unit(1342, "lb"),
  27832. name: "Back",
  27833. image: {
  27834. source: "./media/characters/arokh-takakura/back.svg",
  27835. extra: 1046 / 1019,
  27836. bottom: 102 / 1150
  27837. }
  27838. },
  27839. },
  27840. [
  27841. {
  27842. name: "Big",
  27843. height: math.unit(12 + 6 / 12, "feet"),
  27844. default: true
  27845. },
  27846. ]
  27847. ))
  27848. characterMakers.push(() => makeCharacter(
  27849. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27850. {
  27851. front: {
  27852. height: math.unit(5 + 6 / 12, "feet"),
  27853. weight: math.unit(150, "lb"),
  27854. name: "Front",
  27855. image: {
  27856. source: "./media/characters/theo/front.svg",
  27857. extra: 1184 / 1131,
  27858. bottom: 7.4 / 1191
  27859. }
  27860. },
  27861. },
  27862. [
  27863. {
  27864. name: "Micro",
  27865. height: math.unit(5, "inches")
  27866. },
  27867. {
  27868. name: "Normal",
  27869. height: math.unit(5 + 6 / 12, "feet"),
  27870. default: true
  27871. },
  27872. ]
  27873. ))
  27874. characterMakers.push(() => makeCharacter(
  27875. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27876. {
  27877. front: {
  27878. height: math.unit(5 + 9 / 12, "feet"),
  27879. weight: math.unit(130, "lb"),
  27880. name: "Front",
  27881. image: {
  27882. source: "./media/characters/cecelia-swift/front.svg",
  27883. extra: 502 / 484,
  27884. bottom: 23 / 523
  27885. }
  27886. },
  27887. back: {
  27888. height: math.unit(5 + 9 / 12, "feet"),
  27889. weight: math.unit(130, "lb"),
  27890. name: "Back",
  27891. image: {
  27892. source: "./media/characters/cecelia-swift/back.svg",
  27893. extra: 499 / 485,
  27894. bottom: 12 / 511
  27895. }
  27896. },
  27897. head: {
  27898. height: math.unit(0.90, "feet"),
  27899. name: "Head",
  27900. image: {
  27901. source: "./media/characters/cecelia-swift/head.svg"
  27902. }
  27903. },
  27904. rump: {
  27905. height: math.unit(1.75, "feet"),
  27906. name: "Rump",
  27907. image: {
  27908. source: "./media/characters/cecelia-swift/rump.svg"
  27909. }
  27910. },
  27911. },
  27912. [
  27913. {
  27914. name: "Normal",
  27915. height: math.unit(5 + 9 / 12, "feet"),
  27916. default: true
  27917. },
  27918. {
  27919. name: "Big",
  27920. height: math.unit(50, "feet")
  27921. },
  27922. {
  27923. name: "Macro",
  27924. height: math.unit(100, "feet")
  27925. },
  27926. {
  27927. name: "Macro+",
  27928. height: math.unit(500, "feet")
  27929. },
  27930. {
  27931. name: "Macro++",
  27932. height: math.unit(1000, "feet")
  27933. },
  27934. ]
  27935. ))
  27936. characterMakers.push(() => makeCharacter(
  27937. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27938. {
  27939. front: {
  27940. height: math.unit(6, "feet"),
  27941. weight: math.unit(150, "lb"),
  27942. name: "Front",
  27943. image: {
  27944. source: "./media/characters/kaunan/front.svg",
  27945. extra: 2890 / 2523,
  27946. bottom: 49 / 2939
  27947. }
  27948. },
  27949. },
  27950. [
  27951. {
  27952. name: "Macro",
  27953. height: math.unit(150, "feet"),
  27954. default: true
  27955. },
  27956. ]
  27957. ))
  27958. characterMakers.push(() => makeCharacter(
  27959. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27960. {
  27961. front: {
  27962. height: math.unit(175, "cm"),
  27963. weight: math.unit(60, "kg"),
  27964. name: "Front",
  27965. image: {
  27966. source: "./media/characters/fei/front.svg",
  27967. extra: 1873/1723,
  27968. bottom: 53/1926
  27969. }
  27970. },
  27971. },
  27972. [
  27973. {
  27974. name: "Mortal",
  27975. height: math.unit(175, "cm")
  27976. },
  27977. {
  27978. name: "Normal",
  27979. height: math.unit(3500, "m"),
  27980. default: true
  27981. },
  27982. {
  27983. name: "Stroll",
  27984. height: math.unit(17.5, "km")
  27985. },
  27986. {
  27987. name: "Showoff",
  27988. height: math.unit(175, "km")
  27989. },
  27990. ]
  27991. ))
  27992. characterMakers.push(() => makeCharacter(
  27993. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27994. {
  27995. front: {
  27996. height: math.unit(7, "feet"),
  27997. weight: math.unit(1000, "kg"),
  27998. name: "Front",
  27999. image: {
  28000. source: "./media/characters/edrax/front.svg",
  28001. extra: 2838 / 2550,
  28002. bottom: 130 / 2968
  28003. }
  28004. },
  28005. },
  28006. [
  28007. {
  28008. name: "Small",
  28009. height: math.unit(7, "feet")
  28010. },
  28011. {
  28012. name: "Normal",
  28013. height: math.unit(1500, "meters")
  28014. },
  28015. {
  28016. name: "Mega",
  28017. height: math.unit(12000000, "km"),
  28018. default: true
  28019. },
  28020. {
  28021. name: "Megamacro",
  28022. height: math.unit(10600000, "lightyears")
  28023. },
  28024. {
  28025. name: "Hypermacro",
  28026. height: math.unit(256, "yottameters")
  28027. },
  28028. ]
  28029. ))
  28030. characterMakers.push(() => makeCharacter(
  28031. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28032. {
  28033. front: {
  28034. height: math.unit(10, "feet"),
  28035. weight: math.unit(750, "lb"),
  28036. name: "Front",
  28037. image: {
  28038. source: "./media/characters/clove/front.svg",
  28039. extra: 2031 / 1860,
  28040. bottom: 47.8 / 2080
  28041. }
  28042. },
  28043. back: {
  28044. height: math.unit(10, "feet"),
  28045. weight: math.unit(750, "lb"),
  28046. name: "Back",
  28047. image: {
  28048. source: "./media/characters/clove/back.svg",
  28049. extra: 2025 / 1859,
  28050. bottom: 46 / 2071
  28051. }
  28052. },
  28053. },
  28054. [
  28055. {
  28056. name: "Normal",
  28057. height: math.unit(10, "feet"),
  28058. default: true
  28059. },
  28060. ]
  28061. ))
  28062. characterMakers.push(() => makeCharacter(
  28063. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28064. {
  28065. front: {
  28066. height: math.unit(4, "feet"),
  28067. weight: math.unit(50, "lb"),
  28068. name: "Front",
  28069. image: {
  28070. source: "./media/characters/alex-rabbit/front.svg",
  28071. extra: 507 / 458,
  28072. bottom: 18.5 / 527
  28073. }
  28074. },
  28075. back: {
  28076. height: math.unit(4, "feet"),
  28077. weight: math.unit(50, "lb"),
  28078. name: "Back",
  28079. image: {
  28080. source: "./media/characters/alex-rabbit/back.svg",
  28081. extra: 502 / 460,
  28082. bottom: 18.9 / 521
  28083. }
  28084. },
  28085. },
  28086. [
  28087. {
  28088. name: "Normal",
  28089. height: math.unit(4, "feet"),
  28090. default: true
  28091. },
  28092. ]
  28093. ))
  28094. characterMakers.push(() => makeCharacter(
  28095. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28096. {
  28097. front: {
  28098. height: math.unit(1 + 3 / 12, "feet"),
  28099. weight: math.unit(80, "lb"),
  28100. name: "Front",
  28101. image: {
  28102. source: "./media/characters/zander-rose/front.svg",
  28103. extra: 916 / 797,
  28104. bottom: 17 / 933
  28105. }
  28106. },
  28107. back: {
  28108. height: math.unit(1 + 3 / 12, "feet"),
  28109. weight: math.unit(80, "lb"),
  28110. name: "Back",
  28111. image: {
  28112. source: "./media/characters/zander-rose/back.svg",
  28113. extra: 903 / 779,
  28114. bottom: 31 / 934
  28115. }
  28116. },
  28117. },
  28118. [
  28119. {
  28120. name: "Normal",
  28121. height: math.unit(1 + 3 / 12, "feet"),
  28122. default: true
  28123. },
  28124. ]
  28125. ))
  28126. characterMakers.push(() => makeCharacter(
  28127. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28128. {
  28129. anthro: {
  28130. height: math.unit(6, "feet"),
  28131. weight: math.unit(150, "lb"),
  28132. name: "Anthro",
  28133. image: {
  28134. source: "./media/characters/razz/anthro.svg",
  28135. extra: 1437 / 1343,
  28136. bottom: 48 / 1485
  28137. }
  28138. },
  28139. feral: {
  28140. height: math.unit(6, "feet"),
  28141. weight: math.unit(150, "lb"),
  28142. name: "Feral",
  28143. image: {
  28144. source: "./media/characters/razz/feral.svg",
  28145. extra: 2569 / 1385,
  28146. bottom: 95 / 2664
  28147. }
  28148. },
  28149. },
  28150. [
  28151. {
  28152. name: "Normal",
  28153. height: math.unit(6, "feet"),
  28154. default: true
  28155. },
  28156. ]
  28157. ))
  28158. characterMakers.push(() => makeCharacter(
  28159. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28160. {
  28161. front: {
  28162. height: math.unit(9 + 4 / 12, "feet"),
  28163. weight: math.unit(500, "lb"),
  28164. name: "Front",
  28165. image: {
  28166. source: "./media/characters/morrigan/front.svg",
  28167. extra: 2707 / 2579,
  28168. bottom: 156 / 2863
  28169. }
  28170. },
  28171. },
  28172. [
  28173. {
  28174. name: "Normal",
  28175. height: math.unit(9 + 4 / 12, "feet"),
  28176. default: true
  28177. },
  28178. ]
  28179. ))
  28180. characterMakers.push(() => makeCharacter(
  28181. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28182. {
  28183. front: {
  28184. height: math.unit(5, "stories"),
  28185. weight: math.unit(4000, "lb"),
  28186. name: "Front",
  28187. image: {
  28188. source: "./media/characters/jenene/front.svg",
  28189. extra: 1780 / 1710,
  28190. bottom: 57 / 1837
  28191. }
  28192. },
  28193. },
  28194. [
  28195. {
  28196. name: "Normal",
  28197. height: math.unit(5, "stories"),
  28198. default: true
  28199. },
  28200. ]
  28201. ))
  28202. characterMakers.push(() => makeCharacter(
  28203. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28204. {
  28205. taurSfw: {
  28206. height: math.unit(10, "meters"),
  28207. weight: math.unit(17500, "kg"),
  28208. name: "Taur",
  28209. image: {
  28210. source: "./media/characters/faey/taur-sfw.svg",
  28211. extra: 1200 / 968,
  28212. bottom: 41 / 1241
  28213. }
  28214. },
  28215. chestmaw: {
  28216. height: math.unit(2.01, "meters"),
  28217. name: "Chestmaw",
  28218. image: {
  28219. source: "./media/characters/faey/chestmaw.svg"
  28220. }
  28221. },
  28222. foot: {
  28223. height: math.unit(2.43, "meters"),
  28224. name: "Foot",
  28225. image: {
  28226. source: "./media/characters/faey/foot.svg"
  28227. }
  28228. },
  28229. jaws: {
  28230. height: math.unit(1.66, "meters"),
  28231. name: "Jaws",
  28232. image: {
  28233. source: "./media/characters/faey/jaws.svg"
  28234. }
  28235. },
  28236. tongues: {
  28237. height: math.unit(2.01, "meters"),
  28238. name: "Tongues",
  28239. image: {
  28240. source: "./media/characters/faey/tongues.svg"
  28241. }
  28242. },
  28243. },
  28244. [
  28245. {
  28246. name: "Small",
  28247. height: math.unit(10, "meters"),
  28248. default: true
  28249. },
  28250. {
  28251. name: "Big",
  28252. height: math.unit(500000, "km")
  28253. },
  28254. ]
  28255. ))
  28256. characterMakers.push(() => makeCharacter(
  28257. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28258. {
  28259. front: {
  28260. height: math.unit(7, "feet"),
  28261. weight: math.unit(275, "lb"),
  28262. name: "Front",
  28263. image: {
  28264. source: "./media/characters/roku/front.svg",
  28265. extra: 903 / 878,
  28266. bottom: 37 / 940
  28267. }
  28268. },
  28269. },
  28270. [
  28271. {
  28272. name: "Normal",
  28273. height: math.unit(7, "feet"),
  28274. default: true
  28275. },
  28276. {
  28277. name: "Macro",
  28278. height: math.unit(500, "feet")
  28279. },
  28280. {
  28281. name: "Megamacro",
  28282. height: math.unit(200, "miles")
  28283. },
  28284. ]
  28285. ))
  28286. characterMakers.push(() => makeCharacter(
  28287. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28288. {
  28289. front: {
  28290. height: math.unit(6 + 2 / 12, "feet"),
  28291. weight: math.unit(150, "lb"),
  28292. name: "Front",
  28293. image: {
  28294. source: "./media/characters/lira/front.svg",
  28295. extra: 1727 / 1605,
  28296. bottom: 26 / 1753
  28297. }
  28298. },
  28299. back: {
  28300. height: math.unit(6 + 2 / 12, "feet"),
  28301. weight: math.unit(150, "lb"),
  28302. name: "Back",
  28303. image: {
  28304. source: "./media/characters/lira/back.svg",
  28305. extra: 1713/1621,
  28306. bottom: 20/1733
  28307. }
  28308. },
  28309. hand: {
  28310. height: math.unit(0.75, "feet"),
  28311. name: "Hand",
  28312. image: {
  28313. source: "./media/characters/lira/hand.svg"
  28314. }
  28315. },
  28316. maw: {
  28317. height: math.unit(0.65, "feet"),
  28318. name: "Maw",
  28319. image: {
  28320. source: "./media/characters/lira/maw.svg"
  28321. }
  28322. },
  28323. pawDigi: {
  28324. height: math.unit(1.6, "feet"),
  28325. name: "Paw Digi",
  28326. image: {
  28327. source: "./media/characters/lira/paw-digi.svg"
  28328. }
  28329. },
  28330. pawPlanti: {
  28331. height: math.unit(1.4, "feet"),
  28332. name: "Paw Planti",
  28333. image: {
  28334. source: "./media/characters/lira/paw-planti.svg"
  28335. }
  28336. },
  28337. },
  28338. [
  28339. {
  28340. name: "Normal",
  28341. height: math.unit(6 + 2 / 12, "feet"),
  28342. default: true
  28343. },
  28344. {
  28345. name: "Macro",
  28346. height: math.unit(100, "feet")
  28347. },
  28348. {
  28349. name: "Macro²",
  28350. height: math.unit(1600, "feet")
  28351. },
  28352. {
  28353. name: "Planetary",
  28354. height: math.unit(20, "earths")
  28355. },
  28356. ]
  28357. ))
  28358. characterMakers.push(() => makeCharacter(
  28359. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28360. {
  28361. front: {
  28362. height: math.unit(6, "feet"),
  28363. weight: math.unit(150, "lb"),
  28364. name: "Front",
  28365. image: {
  28366. source: "./media/characters/hadjet/front.svg",
  28367. extra: 1480 / 1346,
  28368. bottom: 26 / 1506
  28369. }
  28370. },
  28371. frontNsfw: {
  28372. height: math.unit(6, "feet"),
  28373. weight: math.unit(150, "lb"),
  28374. name: "Front (NSFW)",
  28375. image: {
  28376. source: "./media/characters/hadjet/front-nsfw.svg",
  28377. extra: 1440 / 1358,
  28378. bottom: 52 / 1492
  28379. }
  28380. },
  28381. },
  28382. [
  28383. {
  28384. name: "Macro",
  28385. height: math.unit(10, "stories"),
  28386. default: true
  28387. },
  28388. {
  28389. name: "Megamacro",
  28390. height: math.unit(1.5, "miles")
  28391. },
  28392. {
  28393. name: "Megamacro+",
  28394. height: math.unit(5, "miles")
  28395. },
  28396. ]
  28397. ))
  28398. characterMakers.push(() => makeCharacter(
  28399. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28400. {
  28401. side: {
  28402. height: math.unit(106, "feet"),
  28403. weight: math.unit(500, "tonnes"),
  28404. name: "Side",
  28405. image: {
  28406. source: "./media/characters/kodran/side.svg",
  28407. extra: 553 / 480,
  28408. bottom: 33 / 586
  28409. }
  28410. },
  28411. front: {
  28412. height: math.unit(132, "feet"),
  28413. weight: math.unit(500, "tonnes"),
  28414. name: "Front",
  28415. image: {
  28416. source: "./media/characters/kodran/front.svg",
  28417. extra: 667 / 643,
  28418. bottom: 42 / 709
  28419. }
  28420. },
  28421. flying: {
  28422. height: math.unit(350, "feet"),
  28423. weight: math.unit(500, "tonnes"),
  28424. name: "Flying",
  28425. image: {
  28426. source: "./media/characters/kodran/flying.svg"
  28427. }
  28428. },
  28429. foot: {
  28430. height: math.unit(33, "feet"),
  28431. name: "Foot",
  28432. image: {
  28433. source: "./media/characters/kodran/foot.svg"
  28434. }
  28435. },
  28436. footFront: {
  28437. height: math.unit(19, "feet"),
  28438. name: "Foot (Front)",
  28439. image: {
  28440. source: "./media/characters/kodran/foot-front.svg",
  28441. extra: 261 / 261,
  28442. bottom: 91 / 352
  28443. }
  28444. },
  28445. headFront: {
  28446. height: math.unit(53, "feet"),
  28447. name: "Head (Front)",
  28448. image: {
  28449. source: "./media/characters/kodran/head-front.svg"
  28450. }
  28451. },
  28452. headSide: {
  28453. height: math.unit(65, "feet"),
  28454. name: "Head (Side)",
  28455. image: {
  28456. source: "./media/characters/kodran/head-side.svg"
  28457. }
  28458. },
  28459. throat: {
  28460. height: math.unit(79, "feet"),
  28461. name: "Throat",
  28462. image: {
  28463. source: "./media/characters/kodran/throat.svg"
  28464. }
  28465. },
  28466. },
  28467. [
  28468. {
  28469. name: "Large",
  28470. height: math.unit(106, "feet"),
  28471. default: true
  28472. },
  28473. ]
  28474. ))
  28475. characterMakers.push(() => makeCharacter(
  28476. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28477. {
  28478. side: {
  28479. height: math.unit(11, "feet"),
  28480. weight: math.unit(150, "lb"),
  28481. name: "Side",
  28482. image: {
  28483. source: "./media/characters/pyxaron/side.svg",
  28484. extra: 305 / 195,
  28485. bottom: 17 / 322
  28486. }
  28487. },
  28488. },
  28489. [
  28490. {
  28491. name: "Normal",
  28492. height: math.unit(11, "feet"),
  28493. default: true
  28494. },
  28495. ]
  28496. ))
  28497. characterMakers.push(() => makeCharacter(
  28498. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28499. {
  28500. front: {
  28501. height: math.unit(6, "feet"),
  28502. weight: math.unit(150, "lb"),
  28503. name: "Front",
  28504. image: {
  28505. source: "./media/characters/meep/front.svg",
  28506. extra: 88 / 80,
  28507. bottom: 6 / 94
  28508. }
  28509. },
  28510. },
  28511. [
  28512. {
  28513. name: "Fun Sized",
  28514. height: math.unit(2, "inches"),
  28515. default: true
  28516. },
  28517. {
  28518. name: "Friend Sized",
  28519. height: math.unit(8, "inches")
  28520. },
  28521. ]
  28522. ))
  28523. characterMakers.push(() => makeCharacter(
  28524. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28525. {
  28526. front: {
  28527. height: math.unit(15, "feet"),
  28528. weight: math.unit(2500, "lb"),
  28529. name: "Front",
  28530. image: {
  28531. source: "./media/characters/holly-rabbit/front.svg",
  28532. extra: 1433 / 1233,
  28533. bottom: 125 / 1558
  28534. }
  28535. },
  28536. dick: {
  28537. height: math.unit(4.6, "feet"),
  28538. name: "Dick",
  28539. image: {
  28540. source: "./media/characters/holly-rabbit/dick.svg"
  28541. }
  28542. },
  28543. },
  28544. [
  28545. {
  28546. name: "Normal",
  28547. height: math.unit(15, "feet"),
  28548. default: true
  28549. },
  28550. {
  28551. name: "Macro",
  28552. height: math.unit(250, "feet")
  28553. },
  28554. {
  28555. name: "Macro+",
  28556. height: math.unit(2500, "feet")
  28557. },
  28558. ]
  28559. ))
  28560. characterMakers.push(() => makeCharacter(
  28561. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28562. {
  28563. front: {
  28564. height: math.unit(3.02, "meters"),
  28565. weight: math.unit(500, "kg"),
  28566. name: "Front",
  28567. image: {
  28568. source: "./media/characters/drena/front.svg",
  28569. extra: 282 / 243,
  28570. bottom: 8 / 290
  28571. }
  28572. },
  28573. side: {
  28574. height: math.unit(3.02, "meters"),
  28575. weight: math.unit(500, "kg"),
  28576. name: "Side",
  28577. image: {
  28578. source: "./media/characters/drena/side.svg",
  28579. extra: 280 / 245,
  28580. bottom: 10 / 290
  28581. }
  28582. },
  28583. back: {
  28584. height: math.unit(3.02, "meters"),
  28585. weight: math.unit(500, "kg"),
  28586. name: "Back",
  28587. image: {
  28588. source: "./media/characters/drena/back.svg",
  28589. extra: 278 / 243,
  28590. bottom: 2 / 280
  28591. }
  28592. },
  28593. foot: {
  28594. height: math.unit(0.75, "meters"),
  28595. name: "Foot",
  28596. image: {
  28597. source: "./media/characters/drena/foot.svg"
  28598. }
  28599. },
  28600. maw: {
  28601. height: math.unit(0.82, "meters"),
  28602. name: "Maw",
  28603. image: {
  28604. source: "./media/characters/drena/maw.svg"
  28605. }
  28606. },
  28607. rump: {
  28608. height: math.unit(0.93, "meters"),
  28609. name: "Rump",
  28610. image: {
  28611. source: "./media/characters/drena/rump.svg"
  28612. }
  28613. },
  28614. },
  28615. [
  28616. {
  28617. name: "Normal",
  28618. height: math.unit(3.02, "meters"),
  28619. default: true
  28620. },
  28621. ]
  28622. ))
  28623. characterMakers.push(() => makeCharacter(
  28624. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28625. {
  28626. front: {
  28627. height: math.unit(6 + 4 / 12, "feet"),
  28628. weight: math.unit(250, "lb"),
  28629. name: "Front",
  28630. image: {
  28631. source: "./media/characters/remmyzilla/front.svg",
  28632. extra: 4033 / 3588,
  28633. bottom: 123 / 4156
  28634. }
  28635. },
  28636. back: {
  28637. height: math.unit(6 + 4 / 12, "feet"),
  28638. weight: math.unit(250, "lb"),
  28639. name: "Back",
  28640. image: {
  28641. source: "./media/characters/remmyzilla/back.svg",
  28642. extra: 2687 / 2555,
  28643. bottom: 48 / 2735
  28644. }
  28645. },
  28646. paw: {
  28647. height: math.unit(1.73, "feet"),
  28648. name: "Paw",
  28649. image: {
  28650. source: "./media/characters/remmyzilla/paw.svg"
  28651. }
  28652. },
  28653. maw: {
  28654. height: math.unit(1.73, "feet"),
  28655. name: "Maw",
  28656. image: {
  28657. source: "./media/characters/remmyzilla/maw.svg"
  28658. }
  28659. },
  28660. },
  28661. [
  28662. {
  28663. name: "Normal",
  28664. height: math.unit(6 + 4 / 12, "feet")
  28665. },
  28666. {
  28667. name: "Minimacro",
  28668. height: math.unit(12 + 8 / 12, "feet")
  28669. },
  28670. {
  28671. name: "Normal",
  28672. height: math.unit(640, "feet"),
  28673. default: true
  28674. },
  28675. {
  28676. name: "Megamacro",
  28677. height: math.unit(6400, "feet")
  28678. },
  28679. {
  28680. name: "Gigamacro",
  28681. height: math.unit(64000, "miles")
  28682. },
  28683. ]
  28684. ))
  28685. characterMakers.push(() => makeCharacter(
  28686. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28687. {
  28688. front: {
  28689. height: math.unit(2.5, "meters"),
  28690. weight: math.unit(300, "lb"),
  28691. name: "Front",
  28692. image: {
  28693. source: "./media/characters/lawrence/front.svg",
  28694. extra: 357 / 335,
  28695. bottom: 30 / 387
  28696. }
  28697. },
  28698. back: {
  28699. height: math.unit(2.5, "meters"),
  28700. weight: math.unit(300, "lb"),
  28701. name: "Back",
  28702. image: {
  28703. source: "./media/characters/lawrence/back.svg",
  28704. extra: 357 / 338,
  28705. bottom: 16 / 373
  28706. }
  28707. },
  28708. head: {
  28709. height: math.unit(0.9, "meter"),
  28710. name: "Head",
  28711. image: {
  28712. source: "./media/characters/lawrence/head.svg"
  28713. }
  28714. },
  28715. maw: {
  28716. height: math.unit(0.7, "meter"),
  28717. name: "Maw",
  28718. image: {
  28719. source: "./media/characters/lawrence/maw.svg"
  28720. }
  28721. },
  28722. footBottom: {
  28723. height: math.unit(0.5, "meter"),
  28724. name: "Foot (Bottom)",
  28725. image: {
  28726. source: "./media/characters/lawrence/foot-bottom.svg"
  28727. }
  28728. },
  28729. footTop: {
  28730. height: math.unit(0.5, "meter"),
  28731. name: "Foot (Top)",
  28732. image: {
  28733. source: "./media/characters/lawrence/foot-top.svg"
  28734. }
  28735. },
  28736. },
  28737. [
  28738. {
  28739. name: "Normal",
  28740. height: math.unit(2.5, "meters"),
  28741. default: true
  28742. },
  28743. {
  28744. name: "Macro",
  28745. height: math.unit(95, "meters")
  28746. },
  28747. {
  28748. name: "Megamacro",
  28749. height: math.unit(150, "km")
  28750. },
  28751. ]
  28752. ))
  28753. characterMakers.push(() => makeCharacter(
  28754. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28755. {
  28756. front: {
  28757. height: math.unit(4.2, "meters"),
  28758. name: "Front",
  28759. image: {
  28760. source: "./media/characters/sydney/front.svg",
  28761. extra: 1323 / 1277,
  28762. bottom: 111 / 1434
  28763. }
  28764. },
  28765. },
  28766. [
  28767. {
  28768. name: "Normal",
  28769. height: math.unit(4.2, "meters"),
  28770. default: true
  28771. },
  28772. ]
  28773. ))
  28774. characterMakers.push(() => makeCharacter(
  28775. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28776. {
  28777. back: {
  28778. height: math.unit(201, "feet"),
  28779. name: "Back",
  28780. image: {
  28781. source: "./media/characters/jessica/back.svg",
  28782. extra: 273 / 259,
  28783. bottom: 7 / 280
  28784. }
  28785. },
  28786. },
  28787. [
  28788. {
  28789. name: "Normal",
  28790. height: math.unit(201, "feet"),
  28791. default: true
  28792. },
  28793. {
  28794. name: "Megamacro",
  28795. height: math.unit(8, "miles")
  28796. },
  28797. ]
  28798. ))
  28799. characterMakers.push(() => makeCharacter(
  28800. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28801. {
  28802. side: {
  28803. height: math.unit(320, "cm"),
  28804. name: "Side",
  28805. image: {
  28806. source: "./media/characters/victoria/side.svg",
  28807. extra: 778 / 346,
  28808. bottom: 56 / 834
  28809. }
  28810. },
  28811. maw: {
  28812. height: math.unit(5.9, "feet"),
  28813. name: "Maw",
  28814. image: {
  28815. source: "./media/characters/victoria/maw.svg"
  28816. }
  28817. },
  28818. },
  28819. [
  28820. {
  28821. name: "Normal",
  28822. height: math.unit(320, "cm"),
  28823. default: true
  28824. },
  28825. ]
  28826. ))
  28827. characterMakers.push(() => makeCharacter(
  28828. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28829. {
  28830. front: {
  28831. height: math.unit(5 + 6 / 12, "feet"),
  28832. name: "Front",
  28833. image: {
  28834. source: "./media/characters/cat/front.svg",
  28835. extra: 1449/1295,
  28836. bottom: 34/1483
  28837. }
  28838. },
  28839. back: {
  28840. height: math.unit(5 + 6 / 12, "feet"),
  28841. name: "Back",
  28842. image: {
  28843. source: "./media/characters/cat/back.svg",
  28844. extra: 1466/1301,
  28845. bottom: 19/1485
  28846. }
  28847. },
  28848. taur: {
  28849. height: math.unit(7, "feet"),
  28850. name: "Taur",
  28851. image: {
  28852. source: "./media/characters/cat/taur.svg",
  28853. extra: 1389/1233,
  28854. bottom: 83/1472
  28855. }
  28856. },
  28857. lucarioFront: {
  28858. height: math.unit(4, "feet"),
  28859. name: "Lucario (Front)",
  28860. image: {
  28861. source: "./media/characters/cat/lucario-front.svg",
  28862. extra: 1149/1019,
  28863. bottom: 84/1233
  28864. }
  28865. },
  28866. lucarioBack: {
  28867. height: math.unit(4, "feet"),
  28868. name: "Lucario (Back)",
  28869. image: {
  28870. source: "./media/characters/cat/lucario-back.svg",
  28871. extra: 1190/1059,
  28872. bottom: 33/1223
  28873. }
  28874. },
  28875. megaLucario: {
  28876. height: math.unit(4, "feet"),
  28877. name: "Mega Lucario",
  28878. image: {
  28879. source: "./media/characters/cat/mega-lucario.svg",
  28880. extra: 1515 / 1319,
  28881. bottom: 63 / 1578
  28882. }
  28883. },
  28884. nickit: {
  28885. height: math.unit(2, "feet"),
  28886. name: "Nickit",
  28887. image: {
  28888. source: "./media/characters/cat/nickit.svg",
  28889. extra: 1980 / 1585,
  28890. bottom: 102 / 2082
  28891. }
  28892. },
  28893. lopunnyFront: {
  28894. height: math.unit(5, "feet"),
  28895. name: "Lopunny (Front)",
  28896. image: {
  28897. source: "./media/characters/cat/lopunny-front.svg",
  28898. extra: 1782 / 1469,
  28899. bottom: 38 / 1820
  28900. }
  28901. },
  28902. lopunnyBack: {
  28903. height: math.unit(5, "feet"),
  28904. name: "Lopunny (Back)",
  28905. image: {
  28906. source: "./media/characters/cat/lopunny-back.svg",
  28907. extra: 1660 / 1490,
  28908. bottom: 25 / 1685
  28909. }
  28910. },
  28911. },
  28912. [
  28913. {
  28914. name: "Really small",
  28915. height: math.unit(1, "nm")
  28916. },
  28917. {
  28918. name: "Micro",
  28919. height: math.unit(5, "inches")
  28920. },
  28921. {
  28922. name: "Normal",
  28923. height: math.unit(5 + 6 / 12, "feet"),
  28924. default: true
  28925. },
  28926. {
  28927. name: "Macro",
  28928. height: math.unit(50, "feet")
  28929. },
  28930. {
  28931. name: "Macro+",
  28932. height: math.unit(150, "feet")
  28933. },
  28934. {
  28935. name: "Megamacro",
  28936. height: math.unit(100, "miles")
  28937. },
  28938. ]
  28939. ))
  28940. characterMakers.push(() => makeCharacter(
  28941. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28942. {
  28943. front: {
  28944. height: math.unit(63.4, "meters"),
  28945. weight: math.unit(3.28349e+6, "kilograms"),
  28946. name: "Front",
  28947. image: {
  28948. source: "./media/characters/kirina-violet/front.svg",
  28949. extra: 2812 / 2725,
  28950. bottom: 0 / 2812
  28951. }
  28952. },
  28953. back: {
  28954. height: math.unit(63.4, "meters"),
  28955. weight: math.unit(3.28349e+6, "kilograms"),
  28956. name: "Back",
  28957. image: {
  28958. source: "./media/characters/kirina-violet/back.svg",
  28959. extra: 2812 / 2725,
  28960. bottom: 0 / 2812
  28961. }
  28962. },
  28963. mouth: {
  28964. height: math.unit(4.35, "meters"),
  28965. name: "Mouth",
  28966. image: {
  28967. source: "./media/characters/kirina-violet/mouth.svg"
  28968. }
  28969. },
  28970. paw: {
  28971. height: math.unit(5.6, "meters"),
  28972. name: "Paw",
  28973. image: {
  28974. source: "./media/characters/kirina-violet/paw.svg"
  28975. }
  28976. },
  28977. tail: {
  28978. height: math.unit(18, "meters"),
  28979. name: "Tail",
  28980. image: {
  28981. source: "./media/characters/kirina-violet/tail.svg"
  28982. }
  28983. },
  28984. },
  28985. [
  28986. {
  28987. name: "Macro",
  28988. height: math.unit(63.4, "meters"),
  28989. default: true
  28990. },
  28991. ]
  28992. ))
  28993. characterMakers.push(() => makeCharacter(
  28994. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28995. {
  28996. front: {
  28997. height: math.unit(75, "feet"),
  28998. name: "Front",
  28999. image: {
  29000. source: "./media/characters/cat-gigachu/front.svg",
  29001. extra: 1239/1027,
  29002. bottom: 32/1271
  29003. }
  29004. },
  29005. back: {
  29006. height: math.unit(75, "feet"),
  29007. name: "Back",
  29008. image: {
  29009. source: "./media/characters/cat-gigachu/back.svg",
  29010. extra: 1229/1030,
  29011. bottom: 9/1238
  29012. }
  29013. },
  29014. },
  29015. [
  29016. {
  29017. name: "Dynamax",
  29018. height: math.unit(75, "feet"),
  29019. default: true
  29020. },
  29021. ]
  29022. ))
  29023. characterMakers.push(() => makeCharacter(
  29024. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29025. {
  29026. front: {
  29027. height: math.unit(6, "feet"),
  29028. weight: math.unit(150, "lb"),
  29029. name: "Front",
  29030. image: {
  29031. source: "./media/characters/sfaiyan/front.svg",
  29032. extra: 999 / 978,
  29033. bottom: 5 / 1004
  29034. }
  29035. },
  29036. },
  29037. [
  29038. {
  29039. name: "Normal",
  29040. height: math.unit(1.82, "meters")
  29041. },
  29042. {
  29043. name: "Giant",
  29044. height: math.unit(2.27, "km"),
  29045. default: true
  29046. },
  29047. ]
  29048. ))
  29049. characterMakers.push(() => makeCharacter(
  29050. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29051. {
  29052. front: {
  29053. height: math.unit(179, "cm"),
  29054. weight: math.unit(100, "kg"),
  29055. name: "Front",
  29056. image: {
  29057. source: "./media/characters/raunehkeli/front.svg",
  29058. extra: 1934 / 1926,
  29059. bottom: 0 / 1934
  29060. }
  29061. },
  29062. },
  29063. [
  29064. {
  29065. name: "Normal",
  29066. height: math.unit(179, "cm")
  29067. },
  29068. {
  29069. name: "Maximum",
  29070. height: math.unit(575, "meters"),
  29071. default: true
  29072. },
  29073. ]
  29074. ))
  29075. characterMakers.push(() => makeCharacter(
  29076. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29077. {
  29078. front: {
  29079. height: math.unit(6, "feet"),
  29080. weight: math.unit(150, "lb"),
  29081. name: "Front",
  29082. image: {
  29083. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29084. extra: 2625 / 2518,
  29085. bottom: 60 / 2685
  29086. }
  29087. },
  29088. },
  29089. [
  29090. {
  29091. name: "Normal",
  29092. height: math.unit(6 + 2 / 12, "feet")
  29093. },
  29094. {
  29095. name: "Macro",
  29096. height: math.unit(1180, "feet"),
  29097. default: true
  29098. },
  29099. ]
  29100. ))
  29101. characterMakers.push(() => makeCharacter(
  29102. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29103. {
  29104. front: {
  29105. height: math.unit(5 + 6 / 12, "feet"),
  29106. weight: math.unit(108, "lb"),
  29107. name: "Front",
  29108. image: {
  29109. source: "./media/characters/lilith-zott/front.svg",
  29110. extra: 2510 / 2238,
  29111. bottom: 100 / 2610
  29112. }
  29113. },
  29114. frontDressed: {
  29115. height: math.unit(5 + 6 / 12, "feet"),
  29116. weight: math.unit(108, "lb"),
  29117. name: "Front (Dressed)",
  29118. image: {
  29119. source: "./media/characters/lilith-zott/front-dressed.svg",
  29120. extra: 2510 / 2238,
  29121. bottom: 100 / 2610
  29122. }
  29123. },
  29124. },
  29125. [
  29126. {
  29127. name: "Normal",
  29128. height: math.unit(5 + 6 / 12, "feet")
  29129. },
  29130. {
  29131. name: "Macro",
  29132. height: math.unit(1030, "feet"),
  29133. default: true
  29134. },
  29135. ]
  29136. ))
  29137. characterMakers.push(() => makeCharacter(
  29138. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29139. {
  29140. front: {
  29141. height: math.unit(6, "feet"),
  29142. weight: math.unit(150, "lb"),
  29143. name: "Front",
  29144. image: {
  29145. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29146. extra: 2567 / 2435,
  29147. bottom: 39 / 2606
  29148. }
  29149. },
  29150. frontSuper: {
  29151. height: math.unit(6, "feet"),
  29152. name: "Front (Super)",
  29153. image: {
  29154. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29155. extra: 2567 / 2435,
  29156. bottom: 39 / 2606
  29157. }
  29158. },
  29159. },
  29160. [
  29161. {
  29162. name: "Normal",
  29163. height: math.unit(5 + 10 / 12, "feet")
  29164. },
  29165. {
  29166. name: "Macro",
  29167. height: math.unit(1100, "feet"),
  29168. default: true
  29169. },
  29170. ]
  29171. ))
  29172. characterMakers.push(() => makeCharacter(
  29173. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29174. {
  29175. front: {
  29176. height: math.unit(100, "miles"),
  29177. name: "Front",
  29178. image: {
  29179. source: "./media/characters/sona/front.svg",
  29180. extra: 2433 / 2201,
  29181. bottom: 53 / 2486
  29182. }
  29183. },
  29184. foot: {
  29185. height: math.unit(16.1, "miles"),
  29186. name: "Foot",
  29187. image: {
  29188. source: "./media/characters/sona/foot.svg"
  29189. }
  29190. },
  29191. },
  29192. [
  29193. {
  29194. name: "Macro",
  29195. height: math.unit(100, "miles"),
  29196. default: true
  29197. },
  29198. ]
  29199. ))
  29200. characterMakers.push(() => makeCharacter(
  29201. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29202. {
  29203. front: {
  29204. height: math.unit(6, "feet"),
  29205. weight: math.unit(150, "lb"),
  29206. name: "Front",
  29207. image: {
  29208. source: "./media/characters/bailey/front.svg",
  29209. extra: 1778 / 1724,
  29210. bottom: 30 / 1808
  29211. }
  29212. },
  29213. },
  29214. [
  29215. {
  29216. name: "Micro",
  29217. height: math.unit(4, "inches")
  29218. },
  29219. {
  29220. name: "Normal",
  29221. height: math.unit(5 + 5 / 12, "feet"),
  29222. default: true
  29223. },
  29224. {
  29225. name: "Macro",
  29226. height: math.unit(250, "feet")
  29227. },
  29228. {
  29229. name: "Megamacro",
  29230. height: math.unit(100, "miles")
  29231. },
  29232. ]
  29233. ))
  29234. characterMakers.push(() => makeCharacter(
  29235. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29236. {
  29237. front: {
  29238. height: math.unit(5 + 2 / 12, "feet"),
  29239. weight: math.unit(120, "lb"),
  29240. name: "Front",
  29241. image: {
  29242. source: "./media/characters/snaps/front.svg",
  29243. extra: 2370 / 2177,
  29244. bottom: 48 / 2418
  29245. }
  29246. },
  29247. back: {
  29248. height: math.unit(5 + 2 / 12, "feet"),
  29249. weight: math.unit(120, "lb"),
  29250. name: "Back",
  29251. image: {
  29252. source: "./media/characters/snaps/back.svg",
  29253. extra: 2408 / 2258,
  29254. bottom: 15 / 2423
  29255. }
  29256. },
  29257. },
  29258. [
  29259. {
  29260. name: "Micro",
  29261. height: math.unit(9, "inches")
  29262. },
  29263. {
  29264. name: "Normal",
  29265. height: math.unit(5 + 2 / 12, "feet"),
  29266. default: true
  29267. },
  29268. {
  29269. name: "Mini Macro",
  29270. height: math.unit(10, "feet")
  29271. },
  29272. ]
  29273. ))
  29274. characterMakers.push(() => makeCharacter(
  29275. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29276. {
  29277. front: {
  29278. height: math.unit(1.8, "meters"),
  29279. weight: math.unit(85, "kg"),
  29280. name: "Front",
  29281. image: {
  29282. source: "./media/characters/azteck/front.svg",
  29283. extra: 2815 / 2625,
  29284. bottom: 89 / 2904
  29285. }
  29286. },
  29287. back: {
  29288. height: math.unit(1.8, "meters"),
  29289. weight: math.unit(85, "kg"),
  29290. name: "Back",
  29291. image: {
  29292. source: "./media/characters/azteck/back.svg",
  29293. extra: 2856 / 2648,
  29294. bottom: 85 / 2941
  29295. }
  29296. },
  29297. frontDressed: {
  29298. height: math.unit(1.8, "meters"),
  29299. weight: math.unit(85, "kg"),
  29300. name: "Front (Dressed)",
  29301. image: {
  29302. source: "./media/characters/azteck/front-dressed.svg",
  29303. extra: 2147 / 2003,
  29304. bottom: 68 / 2215
  29305. }
  29306. },
  29307. head: {
  29308. height: math.unit(0.47, "meters"),
  29309. weight: math.unit(85, "kg"),
  29310. name: "Head",
  29311. image: {
  29312. source: "./media/characters/azteck/head.svg"
  29313. }
  29314. },
  29315. },
  29316. [
  29317. {
  29318. name: "Bite sized",
  29319. height: math.unit(16, "cm")
  29320. },
  29321. {
  29322. name: "Normal",
  29323. height: math.unit(1.8, "meters"),
  29324. default: true
  29325. },
  29326. ]
  29327. ))
  29328. characterMakers.push(() => makeCharacter(
  29329. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29330. {
  29331. front: {
  29332. height: math.unit(6, "feet"),
  29333. weight: math.unit(150, "lb"),
  29334. name: "Front",
  29335. image: {
  29336. source: "./media/characters/pidge/front.svg",
  29337. extra: 620 / 588,
  29338. bottom: 9 / 629
  29339. }
  29340. },
  29341. back: {
  29342. height: math.unit(6, "feet"),
  29343. weight: math.unit(150, "lb"),
  29344. name: "Back",
  29345. image: {
  29346. source: "./media/characters/pidge/back.svg",
  29347. extra: 620 / 588,
  29348. bottom: 9 / 629
  29349. }
  29350. },
  29351. },
  29352. [
  29353. {
  29354. name: "Macro",
  29355. height: math.unit(1, "mile"),
  29356. default: true
  29357. },
  29358. ]
  29359. ))
  29360. characterMakers.push(() => makeCharacter(
  29361. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29362. {
  29363. front: {
  29364. height: math.unit(6, "feet"),
  29365. weight: math.unit(150, "lb"),
  29366. name: "Front",
  29367. image: {
  29368. source: "./media/characters/en/front.svg",
  29369. extra: 1697 / 1563,
  29370. bottom: 103 / 1800
  29371. }
  29372. },
  29373. back: {
  29374. height: math.unit(6, "feet"),
  29375. weight: math.unit(150, "lb"),
  29376. name: "Back",
  29377. image: {
  29378. source: "./media/characters/en/back.svg",
  29379. extra: 1700 / 1570,
  29380. bottom: 51 / 1751
  29381. }
  29382. },
  29383. frontDressed: {
  29384. height: math.unit(6, "feet"),
  29385. weight: math.unit(150, "lb"),
  29386. name: "Front (Dressed)",
  29387. image: {
  29388. source: "./media/characters/en/front-dressed.svg",
  29389. extra: 1697 / 1563,
  29390. bottom: 103 / 1800
  29391. }
  29392. },
  29393. backDressed: {
  29394. height: math.unit(6, "feet"),
  29395. weight: math.unit(150, "lb"),
  29396. name: "Back (Dressed)",
  29397. image: {
  29398. source: "./media/characters/en/back-dressed.svg",
  29399. extra: 1700 / 1570,
  29400. bottom: 51 / 1751
  29401. }
  29402. },
  29403. },
  29404. [
  29405. {
  29406. name: "Macro",
  29407. height: math.unit(210, "feet"),
  29408. default: true
  29409. },
  29410. ]
  29411. ))
  29412. characterMakers.push(() => makeCharacter(
  29413. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29414. {
  29415. front: {
  29416. height: math.unit(6, "feet"),
  29417. weight: math.unit(150, "lb"),
  29418. name: "Front",
  29419. image: {
  29420. source: "./media/characters/haze-orris/front.svg",
  29421. extra: 3975 / 3525,
  29422. bottom: 137 / 4112
  29423. }
  29424. },
  29425. },
  29426. [
  29427. {
  29428. name: "Micro",
  29429. height: math.unit(150, "mm"),
  29430. default: true
  29431. },
  29432. ]
  29433. ))
  29434. characterMakers.push(() => makeCharacter(
  29435. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29436. {
  29437. front: {
  29438. height: math.unit(6, "feet"),
  29439. weight: math.unit(150, "lb"),
  29440. name: "Front",
  29441. image: {
  29442. source: "./media/characters/casselene-yaro/front.svg",
  29443. extra: 4721 / 4541,
  29444. bottom: 82 / 4803
  29445. }
  29446. },
  29447. back: {
  29448. height: math.unit(6, "feet"),
  29449. weight: math.unit(150, "lb"),
  29450. name: "Back",
  29451. image: {
  29452. source: "./media/characters/casselene-yaro/back.svg",
  29453. extra: 4569 / 4377,
  29454. bottom: 69 / 4638
  29455. }
  29456. },
  29457. frontDressed: {
  29458. height: math.unit(6, "feet"),
  29459. weight: math.unit(150, "lb"),
  29460. name: "Front-dressed",
  29461. image: {
  29462. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29463. extra: 4721 / 4541,
  29464. bottom: 82 / 4803
  29465. }
  29466. },
  29467. },
  29468. [
  29469. {
  29470. name: "Macro",
  29471. height: math.unit(190, "feet"),
  29472. default: true
  29473. },
  29474. ]
  29475. ))
  29476. characterMakers.push(() => makeCharacter(
  29477. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29478. {
  29479. front: {
  29480. height: math.unit(6, "feet"),
  29481. weight: math.unit(150, "lb"),
  29482. name: "Front",
  29483. image: {
  29484. source: "./media/characters/myra-rue-delore/front.svg",
  29485. extra: 1340 / 1308,
  29486. bottom: 67 / 1407
  29487. }
  29488. },
  29489. back: {
  29490. height: math.unit(6, "feet"),
  29491. weight: math.unit(150, "lb"),
  29492. name: "Back",
  29493. image: {
  29494. source: "./media/characters/myra-rue-delore/back.svg",
  29495. extra: 1341 / 1310,
  29496. bottom: 40 / 1381
  29497. }
  29498. },
  29499. frontDressed: {
  29500. height: math.unit(6, "feet"),
  29501. weight: math.unit(150, "lb"),
  29502. name: "Front (Dressed)",
  29503. image: {
  29504. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29505. extra: 1340 / 1308,
  29506. bottom: 67 / 1407
  29507. }
  29508. },
  29509. },
  29510. [
  29511. {
  29512. name: "Macro",
  29513. height: math.unit(150, "feet"),
  29514. default: true
  29515. },
  29516. ]
  29517. ))
  29518. characterMakers.push(() => makeCharacter(
  29519. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29520. {
  29521. front: {
  29522. height: math.unit(10, "feet"),
  29523. weight: math.unit(15015, "lb"),
  29524. name: "Front",
  29525. image: {
  29526. source: "./media/characters/fem!plat/front.svg",
  29527. extra: 2799 / 2604,
  29528. bottom: 149 / 2948
  29529. }
  29530. },
  29531. },
  29532. [
  29533. {
  29534. name: "Normal",
  29535. height: math.unit(10, "feet"),
  29536. default: true
  29537. },
  29538. {
  29539. name: "Macro",
  29540. height: math.unit(100, "feet")
  29541. },
  29542. {
  29543. name: "Megamacro",
  29544. height: math.unit(1000, "feet")
  29545. },
  29546. ]
  29547. ))
  29548. characterMakers.push(() => makeCharacter(
  29549. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29550. {
  29551. front: {
  29552. height: math.unit(15 + 5 / 12, "feet"),
  29553. weight: math.unit(4600, "lb"),
  29554. name: "Front",
  29555. image: {
  29556. source: "./media/characters/neapolitan-ananassa/front.svg",
  29557. extra: 2903 / 2736,
  29558. bottom: 0 / 2903
  29559. }
  29560. },
  29561. side: {
  29562. height: math.unit(15 + 5 / 12, "feet"),
  29563. weight: math.unit(4600, "lb"),
  29564. name: "Side",
  29565. image: {
  29566. source: "./media/characters/neapolitan-ananassa/side.svg",
  29567. extra: 2925 / 2719,
  29568. bottom: 0 / 2925
  29569. }
  29570. },
  29571. back: {
  29572. height: math.unit(15 + 5 / 12, "feet"),
  29573. weight: math.unit(4600, "lb"),
  29574. name: "Back",
  29575. image: {
  29576. source: "./media/characters/neapolitan-ananassa/back.svg",
  29577. extra: 2903 / 2736,
  29578. bottom: 0 / 2903
  29579. }
  29580. },
  29581. },
  29582. [
  29583. {
  29584. name: "Normal",
  29585. height: math.unit(15 + 5 / 12, "feet"),
  29586. default: true
  29587. },
  29588. {
  29589. name: "Post-Millenium",
  29590. height: math.unit(35 + 5 / 12, "feet")
  29591. },
  29592. {
  29593. name: "Post-Era",
  29594. height: math.unit(450 + 5 / 12, "feet")
  29595. },
  29596. ]
  29597. ))
  29598. characterMakers.push(() => makeCharacter(
  29599. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29600. {
  29601. front: {
  29602. height: math.unit(300, "meters"),
  29603. weight: math.unit(125000, "tonnes"),
  29604. name: "Front",
  29605. image: {
  29606. source: "./media/characters/pazuzu/front.svg",
  29607. extra: 877 / 794,
  29608. bottom: 47 / 924
  29609. }
  29610. },
  29611. },
  29612. [
  29613. {
  29614. name: "Macro",
  29615. height: math.unit(300, "meters"),
  29616. default: true
  29617. },
  29618. ]
  29619. ))
  29620. characterMakers.push(() => makeCharacter(
  29621. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29622. {
  29623. side: {
  29624. height: math.unit(10 + 7 / 12, "feet"),
  29625. weight: math.unit(2.5, "tons"),
  29626. name: "Side",
  29627. image: {
  29628. source: "./media/characters/aasha/side.svg",
  29629. extra: 1345 / 1245,
  29630. bottom: 111 / 1456
  29631. }
  29632. },
  29633. back: {
  29634. height: math.unit(10 + 7 / 12, "feet"),
  29635. weight: math.unit(2.5, "tons"),
  29636. name: "Back",
  29637. image: {
  29638. source: "./media/characters/aasha/back.svg",
  29639. extra: 1133 / 1057,
  29640. bottom: 257 / 1390
  29641. }
  29642. },
  29643. },
  29644. [
  29645. {
  29646. name: "Normal",
  29647. height: math.unit(10 + 7 / 12, "feet"),
  29648. default: true
  29649. },
  29650. ]
  29651. ))
  29652. characterMakers.push(() => makeCharacter(
  29653. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29654. {
  29655. front: {
  29656. height: math.unit(6 + 3 / 12, "feet"),
  29657. name: "Front",
  29658. image: {
  29659. source: "./media/characters/nevan/front.svg",
  29660. extra: 704 / 704,
  29661. bottom: 28 / 732
  29662. }
  29663. },
  29664. back: {
  29665. height: math.unit(6 + 3 / 12, "feet"),
  29666. name: "Back",
  29667. image: {
  29668. source: "./media/characters/nevan/back.svg",
  29669. extra: 714 / 714,
  29670. bottom: 21 / 735
  29671. }
  29672. },
  29673. frontFlaccid: {
  29674. height: math.unit(6 + 3 / 12, "feet"),
  29675. name: "Front (Flaccid)",
  29676. image: {
  29677. source: "./media/characters/nevan/front-flaccid.svg",
  29678. extra: 704 / 704,
  29679. bottom: 28 / 732
  29680. }
  29681. },
  29682. frontErect: {
  29683. height: math.unit(6 + 3 / 12, "feet"),
  29684. name: "Front (Erect)",
  29685. image: {
  29686. source: "./media/characters/nevan/front-erect.svg",
  29687. extra: 704 / 704,
  29688. bottom: 28 / 732
  29689. }
  29690. },
  29691. backFlaccid: {
  29692. height: math.unit(6 + 3 / 12, "feet"),
  29693. name: "Back (Flaccid)",
  29694. image: {
  29695. source: "./media/characters/nevan/back-flaccid.svg",
  29696. extra: 714 / 714,
  29697. bottom: 21 / 735
  29698. }
  29699. },
  29700. },
  29701. [
  29702. {
  29703. name: "Normal",
  29704. height: math.unit(6 + 3 / 12, "feet"),
  29705. default: true
  29706. },
  29707. ]
  29708. ))
  29709. characterMakers.push(() => makeCharacter(
  29710. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29711. {
  29712. front: {
  29713. height: math.unit(4, "feet"),
  29714. name: "Front",
  29715. image: {
  29716. source: "./media/characters/arhan/front.svg",
  29717. extra: 3368 / 3133,
  29718. bottom: 0 / 3368
  29719. }
  29720. },
  29721. side: {
  29722. height: math.unit(4, "feet"),
  29723. name: "Side",
  29724. image: {
  29725. source: "./media/characters/arhan/side.svg",
  29726. extra: 3347 / 3105,
  29727. bottom: 0 / 3347
  29728. }
  29729. },
  29730. tongue: {
  29731. height: math.unit(1.42, "feet"),
  29732. name: "Tongue",
  29733. image: {
  29734. source: "./media/characters/arhan/tongue.svg"
  29735. }
  29736. },
  29737. head: {
  29738. height: math.unit(0.85, "feet"),
  29739. name: "Head",
  29740. image: {
  29741. source: "./media/characters/arhan/head.svg"
  29742. }
  29743. },
  29744. },
  29745. [
  29746. {
  29747. name: "Normal",
  29748. height: math.unit(4, "feet"),
  29749. default: true
  29750. },
  29751. ]
  29752. ))
  29753. characterMakers.push(() => makeCharacter(
  29754. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29755. {
  29756. front: {
  29757. height: math.unit(5 + 7.5 / 12, "feet"),
  29758. weight: math.unit(120, "lb"),
  29759. name: "Front",
  29760. image: {
  29761. source: "./media/characters/digi-duncan/front.svg",
  29762. extra: 330 / 326,
  29763. bottom: 16 / 346
  29764. }
  29765. },
  29766. side: {
  29767. height: math.unit(5 + 7.5 / 12, "feet"),
  29768. weight: math.unit(120, "lb"),
  29769. name: "Side",
  29770. image: {
  29771. source: "./media/characters/digi-duncan/side.svg",
  29772. extra: 341 / 337,
  29773. bottom: 1 / 342
  29774. }
  29775. },
  29776. back: {
  29777. height: math.unit(5 + 7.5 / 12, "feet"),
  29778. weight: math.unit(120, "lb"),
  29779. name: "Back",
  29780. image: {
  29781. source: "./media/characters/digi-duncan/back.svg",
  29782. extra: 330 / 326,
  29783. bottom: 12 / 342
  29784. }
  29785. },
  29786. },
  29787. [
  29788. {
  29789. name: "Speck",
  29790. height: math.unit(0.25, "mm")
  29791. },
  29792. {
  29793. name: "Micro",
  29794. height: math.unit(5, "mm")
  29795. },
  29796. {
  29797. name: "Tiny",
  29798. height: math.unit(0.5, "inches"),
  29799. default: true
  29800. },
  29801. {
  29802. name: "Human",
  29803. height: math.unit(5 + 7.5 / 12, "feet")
  29804. },
  29805. {
  29806. name: "Minigiant",
  29807. height: math.unit(8 + 5.25, "feet")
  29808. },
  29809. {
  29810. name: "Giant",
  29811. height: math.unit(2000, "feet")
  29812. },
  29813. {
  29814. name: "Mega",
  29815. height: math.unit(371.1, "miles")
  29816. },
  29817. ]
  29818. ))
  29819. characterMakers.push(() => makeCharacter(
  29820. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29821. {
  29822. front: {
  29823. height: math.unit(2, "meters"),
  29824. weight: math.unit(350, "kg"),
  29825. name: "Front",
  29826. image: {
  29827. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29828. extra: 898 / 838,
  29829. bottom: 9 / 907
  29830. }
  29831. },
  29832. },
  29833. [
  29834. {
  29835. name: "Micro",
  29836. height: math.unit(8, "meters")
  29837. },
  29838. {
  29839. name: "Normal",
  29840. height: math.unit(50, "meters"),
  29841. default: true
  29842. },
  29843. {
  29844. name: "Macro",
  29845. height: math.unit(500, "meters")
  29846. },
  29847. ]
  29848. ))
  29849. characterMakers.push(() => makeCharacter(
  29850. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29851. {
  29852. front: {
  29853. height: math.unit(6 + 6 / 12, "feet"),
  29854. name: "Front",
  29855. image: {
  29856. source: "./media/characters/khardesh/front.svg",
  29857. extra: 888 / 797,
  29858. bottom: 25 / 913
  29859. }
  29860. },
  29861. },
  29862. [
  29863. {
  29864. name: "Normal",
  29865. height: math.unit(6 + 6 / 12, "feet"),
  29866. default: true
  29867. },
  29868. {
  29869. name: "Normal+",
  29870. height: math.unit(4, "meters")
  29871. },
  29872. {
  29873. name: "Macro",
  29874. height: math.unit(50, "meters")
  29875. },
  29876. {
  29877. name: "Macro+",
  29878. height: math.unit(100, "meters")
  29879. },
  29880. {
  29881. name: "Megamacro",
  29882. height: math.unit(20, "km")
  29883. },
  29884. ]
  29885. ))
  29886. characterMakers.push(() => makeCharacter(
  29887. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29888. {
  29889. front: {
  29890. height: math.unit(6, "feet"),
  29891. weight: math.unit(150, "lb"),
  29892. name: "Front",
  29893. image: {
  29894. source: "./media/characters/kosho/front.svg",
  29895. extra: 1847 / 1847,
  29896. bottom: 86 / 1933
  29897. }
  29898. },
  29899. },
  29900. [
  29901. {
  29902. name: "Second-stage micro",
  29903. height: math.unit(0.5, "inches")
  29904. },
  29905. {
  29906. name: "First-stage micro",
  29907. height: math.unit(6, "inches")
  29908. },
  29909. {
  29910. name: "Normal",
  29911. height: math.unit(6, "feet"),
  29912. default: true
  29913. },
  29914. {
  29915. name: "First-stage macro",
  29916. height: math.unit(72, "feet")
  29917. },
  29918. {
  29919. name: "Second-stage macro",
  29920. height: math.unit(864, "feet")
  29921. },
  29922. ]
  29923. ))
  29924. characterMakers.push(() => makeCharacter(
  29925. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29926. {
  29927. normal: {
  29928. height: math.unit(4 + 6 / 12, "feet"),
  29929. name: "Normal",
  29930. image: {
  29931. source: "./media/characters/hydra/normal.svg",
  29932. extra: 2833 / 2634,
  29933. bottom: 68 / 2901
  29934. }
  29935. },
  29936. smol: {
  29937. height: math.unit(0.705, "inches"),
  29938. name: "Smol",
  29939. image: {
  29940. source: "./media/characters/hydra/smol.svg",
  29941. extra: 2715 / 2540,
  29942. bottom: 0 / 2715
  29943. }
  29944. },
  29945. },
  29946. [
  29947. {
  29948. name: "Normal",
  29949. height: math.unit(4 + 6 / 12, "feet"),
  29950. default: true
  29951. }
  29952. ]
  29953. ))
  29954. characterMakers.push(() => makeCharacter(
  29955. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29956. {
  29957. front: {
  29958. height: math.unit(0.6, "cm"),
  29959. name: "Front",
  29960. image: {
  29961. source: "./media/characters/daz/front.svg",
  29962. extra: 1682 / 1164,
  29963. bottom: 42 / 1724
  29964. }
  29965. },
  29966. },
  29967. [
  29968. {
  29969. name: "Normal",
  29970. height: math.unit(0.6, "cm"),
  29971. default: true
  29972. },
  29973. ]
  29974. ))
  29975. characterMakers.push(() => makeCharacter(
  29976. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29977. {
  29978. front: {
  29979. height: math.unit(6, "feet"),
  29980. weight: math.unit(235, "lb"),
  29981. name: "Front",
  29982. image: {
  29983. source: "./media/characters/theo-pangolin/front.svg",
  29984. extra: 1996 / 1969,
  29985. bottom: 115 / 2111
  29986. }
  29987. },
  29988. back: {
  29989. height: math.unit(6, "feet"),
  29990. weight: math.unit(235, "lb"),
  29991. name: "Back",
  29992. image: {
  29993. source: "./media/characters/theo-pangolin/back.svg",
  29994. extra: 1979 / 1979,
  29995. bottom: 40 / 2019
  29996. }
  29997. },
  29998. feral: {
  29999. height: math.unit(2, "feet"),
  30000. weight: math.unit(30, "lb"),
  30001. name: "Feral",
  30002. image: {
  30003. source: "./media/characters/theo-pangolin/feral.svg",
  30004. extra: 803 / 791,
  30005. bottom: 181 / 984
  30006. }
  30007. },
  30008. footFive: {
  30009. height: math.unit(1.43, "feet"),
  30010. name: "Foot (Five Toes)",
  30011. image: {
  30012. source: "./media/characters/theo-pangolin/foot-five.svg"
  30013. }
  30014. },
  30015. footFour: {
  30016. height: math.unit(1.43, "feet"),
  30017. name: "Foot (Four Toes)",
  30018. image: {
  30019. source: "./media/characters/theo-pangolin/foot-four.svg"
  30020. }
  30021. },
  30022. handFour: {
  30023. height: math.unit(0.81, "feet"),
  30024. name: "Hand (Four Fingers)",
  30025. image: {
  30026. source: "./media/characters/theo-pangolin/hand-four.svg"
  30027. }
  30028. },
  30029. handThree: {
  30030. height: math.unit(0.81, "feet"),
  30031. name: "Hand (Three Fingers)",
  30032. image: {
  30033. source: "./media/characters/theo-pangolin/hand-three.svg"
  30034. }
  30035. },
  30036. headFront: {
  30037. height: math.unit(1.37, "feet"),
  30038. name: "Head (Front)",
  30039. image: {
  30040. source: "./media/characters/theo-pangolin/head-front.svg"
  30041. }
  30042. },
  30043. headSide: {
  30044. height: math.unit(1.43, "feet"),
  30045. name: "Head (Side)",
  30046. image: {
  30047. source: "./media/characters/theo-pangolin/head-side.svg"
  30048. }
  30049. },
  30050. tongue: {
  30051. height: math.unit(2.29, "feet"),
  30052. name: "Tongue",
  30053. image: {
  30054. source: "./media/characters/theo-pangolin/tongue.svg"
  30055. }
  30056. },
  30057. },
  30058. [
  30059. {
  30060. name: "Normal",
  30061. height: math.unit(6, "feet")
  30062. },
  30063. {
  30064. name: "Macro",
  30065. height: math.unit(400, "feet"),
  30066. default: true
  30067. },
  30068. ]
  30069. ))
  30070. characterMakers.push(() => makeCharacter(
  30071. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30072. {
  30073. front: {
  30074. height: math.unit(6, "inches"),
  30075. weight: math.unit(0.036, "kg"),
  30076. name: "Front",
  30077. image: {
  30078. source: "./media/characters/renée/front.svg",
  30079. extra: 900 / 886,
  30080. bottom: 8 / 908
  30081. }
  30082. },
  30083. },
  30084. [
  30085. {
  30086. name: "Nano",
  30087. height: math.unit(1, "nm")
  30088. },
  30089. {
  30090. name: "Micro",
  30091. height: math.unit(1, "mm")
  30092. },
  30093. {
  30094. name: "Normal",
  30095. height: math.unit(6, "inches")
  30096. },
  30097. {
  30098. name: "Macro",
  30099. height: math.unit(2000, "feet"),
  30100. default: true
  30101. },
  30102. {
  30103. name: "Megamacro",
  30104. height: math.unit(2, "km")
  30105. },
  30106. {
  30107. name: "Gigamacro",
  30108. height: math.unit(2000, "km")
  30109. },
  30110. {
  30111. name: "Teramacro",
  30112. height: math.unit(250000, "km")
  30113. },
  30114. ]
  30115. ))
  30116. characterMakers.push(() => makeCharacter(
  30117. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30118. {
  30119. front: {
  30120. height: math.unit(4, "meters"),
  30121. weight: math.unit(150, "kg"),
  30122. name: "Front",
  30123. image: {
  30124. source: "./media/characters/caledvwlch/front.svg",
  30125. extra: 1760 / 1551,
  30126. bottom: 28 / 1788
  30127. }
  30128. },
  30129. side: {
  30130. height: math.unit(4, "meters"),
  30131. weight: math.unit(150, "kg"),
  30132. name: "Side",
  30133. image: {
  30134. source: "./media/characters/caledvwlch/side.svg",
  30135. extra: 1605 / 1536,
  30136. bottom: 31 / 1636
  30137. }
  30138. },
  30139. back: {
  30140. height: math.unit(4, "meters"),
  30141. weight: math.unit(150, "kg"),
  30142. name: "Back",
  30143. image: {
  30144. source: "./media/characters/caledvwlch/back.svg",
  30145. extra: 1635 / 1565,
  30146. bottom: 27 / 1662
  30147. }
  30148. },
  30149. },
  30150. [
  30151. {
  30152. name: "\"Incognito\"",
  30153. height: math.unit(4, "meters")
  30154. },
  30155. {
  30156. name: "Small rampage",
  30157. height: math.unit(600, "meters")
  30158. },
  30159. {
  30160. name: "Mega",
  30161. height: math.unit(30, "km")
  30162. },
  30163. {
  30164. name: "Home-size",
  30165. height: math.unit(50, "km"),
  30166. default: true
  30167. },
  30168. {
  30169. name: "Giga",
  30170. height: math.unit(300, "km")
  30171. },
  30172. {
  30173. name: "Lounging",
  30174. height: math.unit(11000, "km")
  30175. },
  30176. {
  30177. name: "Planet snacking",
  30178. height: math.unit(2000000, "km")
  30179. },
  30180. ]
  30181. ))
  30182. characterMakers.push(() => makeCharacter(
  30183. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30184. {
  30185. front: {
  30186. height: math.unit(6, "feet"),
  30187. weight: math.unit(215, "lb"),
  30188. name: "Front",
  30189. image: {
  30190. source: "./media/characters/sapphire-svell/front.svg",
  30191. extra: 495 / 455,
  30192. bottom: 20 / 515
  30193. }
  30194. },
  30195. back: {
  30196. height: math.unit(6, "feet"),
  30197. weight: math.unit(216, "lb"),
  30198. name: "Back",
  30199. image: {
  30200. source: "./media/characters/sapphire-svell/back.svg",
  30201. extra: 497 / 477,
  30202. bottom: 7 / 504
  30203. }
  30204. },
  30205. maw: {
  30206. height: math.unit(1.57, "feet"),
  30207. name: "Maw",
  30208. image: {
  30209. source: "./media/characters/sapphire-svell/maw.svg"
  30210. }
  30211. },
  30212. foot: {
  30213. height: math.unit(1.07, "feet"),
  30214. name: "Foot",
  30215. image: {
  30216. source: "./media/characters/sapphire-svell/foot.svg"
  30217. }
  30218. },
  30219. toering: {
  30220. height: math.unit(1.7, "inch"),
  30221. name: "Toering",
  30222. image: {
  30223. source: "./media/characters/sapphire-svell/toering.svg"
  30224. }
  30225. },
  30226. },
  30227. [
  30228. {
  30229. name: "Normal",
  30230. height: math.unit(300, "feet"),
  30231. default: true
  30232. },
  30233. {
  30234. name: "Augmented",
  30235. height: math.unit(1250, "feet")
  30236. },
  30237. {
  30238. name: "Unleashed",
  30239. height: math.unit(3000, "feet")
  30240. },
  30241. ]
  30242. ))
  30243. characterMakers.push(() => makeCharacter(
  30244. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30245. {
  30246. side: {
  30247. height: math.unit(2 + 3 / 12, "feet"),
  30248. weight: math.unit(110, "lb"),
  30249. name: "Side",
  30250. image: {
  30251. source: "./media/characters/glitch-flux/side.svg",
  30252. extra: 997 / 805,
  30253. bottom: 20 / 1017
  30254. }
  30255. },
  30256. },
  30257. [
  30258. {
  30259. name: "Normal",
  30260. height: math.unit(2 + 3 / 12, "feet"),
  30261. default: true
  30262. },
  30263. ]
  30264. ))
  30265. characterMakers.push(() => makeCharacter(
  30266. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30267. {
  30268. front: {
  30269. height: math.unit(4, "meters"),
  30270. name: "Front",
  30271. image: {
  30272. source: "./media/characters/mid/front.svg",
  30273. extra: 507 / 476,
  30274. bottom: 17 / 524
  30275. }
  30276. },
  30277. back: {
  30278. height: math.unit(4, "meters"),
  30279. name: "Back",
  30280. image: {
  30281. source: "./media/characters/mid/back.svg",
  30282. extra: 519 / 487,
  30283. bottom: 7 / 526
  30284. }
  30285. },
  30286. stuck: {
  30287. height: math.unit(2.2, "meters"),
  30288. name: "Stuck",
  30289. image: {
  30290. source: "./media/characters/mid/stuck.svg",
  30291. extra: 1951 / 1869,
  30292. bottom: 88 / 2039
  30293. }
  30294. }
  30295. },
  30296. [
  30297. {
  30298. name: "Normal",
  30299. height: math.unit(4, "meters"),
  30300. default: true
  30301. },
  30302. {
  30303. name: "Big",
  30304. height: math.unit(10, "meters")
  30305. },
  30306. {
  30307. name: "Macro",
  30308. height: math.unit(800, "meters")
  30309. },
  30310. {
  30311. name: "Megamacro",
  30312. height: math.unit(100, "km")
  30313. },
  30314. {
  30315. name: "Overgrown",
  30316. height: math.unit(1, "parsec")
  30317. },
  30318. ]
  30319. ))
  30320. characterMakers.push(() => makeCharacter(
  30321. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30322. {
  30323. front: {
  30324. height: math.unit(2.5, "meters"),
  30325. weight: math.unit(225, "kg"),
  30326. name: "Front",
  30327. image: {
  30328. source: "./media/characters/iris/front.svg",
  30329. extra: 3348 / 3251,
  30330. bottom: 205 / 3553
  30331. }
  30332. },
  30333. maw: {
  30334. height: math.unit(0.56, "meter"),
  30335. name: "Maw",
  30336. image: {
  30337. source: "./media/characters/iris/maw.svg"
  30338. }
  30339. },
  30340. },
  30341. [
  30342. {
  30343. name: "Mewter cat",
  30344. height: math.unit(1.2, "meters")
  30345. },
  30346. {
  30347. name: "Minimacro",
  30348. height: math.unit(2.5, "meters"),
  30349. default: true
  30350. },
  30351. {
  30352. name: "Macro",
  30353. height: math.unit(180, "meters")
  30354. },
  30355. {
  30356. name: "Megamacro",
  30357. height: math.unit(2746, "meters")
  30358. },
  30359. ]
  30360. ))
  30361. characterMakers.push(() => makeCharacter(
  30362. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30363. {
  30364. front: {
  30365. height: math.unit(6, "feet"),
  30366. weight: math.unit(135, "lb"),
  30367. name: "Front",
  30368. image: {
  30369. source: "./media/characters/axel/front.svg",
  30370. extra: 908 / 908,
  30371. bottom: 58 / 966
  30372. }
  30373. },
  30374. side: {
  30375. height: math.unit(6, "feet"),
  30376. weight: math.unit(135, "lb"),
  30377. name: "Side",
  30378. image: {
  30379. source: "./media/characters/axel/side.svg",
  30380. extra: 958 / 958,
  30381. bottom: 11 / 969
  30382. }
  30383. },
  30384. back: {
  30385. height: math.unit(6, "feet"),
  30386. weight: math.unit(135, "lb"),
  30387. name: "Back",
  30388. image: {
  30389. source: "./media/characters/axel/back.svg",
  30390. extra: 887 / 887,
  30391. bottom: 34 / 921
  30392. }
  30393. },
  30394. head: {
  30395. height: math.unit(1.07, "feet"),
  30396. name: "Head",
  30397. image: {
  30398. source: "./media/characters/axel/head.svg"
  30399. }
  30400. },
  30401. beak: {
  30402. height: math.unit(1.4, "feet"),
  30403. name: "Beak",
  30404. image: {
  30405. source: "./media/characters/axel/beak.svg"
  30406. }
  30407. },
  30408. beakSide: {
  30409. height: math.unit(1.4, "feet"),
  30410. name: "Beak Side",
  30411. image: {
  30412. source: "./media/characters/axel/beak-side.svg"
  30413. }
  30414. },
  30415. sheath: {
  30416. height: math.unit(0.5, "feet"),
  30417. name: "Sheath",
  30418. image: {
  30419. source: "./media/characters/axel/sheath.svg"
  30420. }
  30421. },
  30422. dick: {
  30423. height: math.unit(0.98, "feet"),
  30424. name: "Dick",
  30425. image: {
  30426. source: "./media/characters/axel/dick.svg"
  30427. }
  30428. },
  30429. },
  30430. [
  30431. {
  30432. name: "Macro",
  30433. height: math.unit(68, "meters"),
  30434. default: true
  30435. },
  30436. ]
  30437. ))
  30438. characterMakers.push(() => makeCharacter(
  30439. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30440. {
  30441. front: {
  30442. height: math.unit(3.5, "meters"),
  30443. weight: math.unit(1200, "kg"),
  30444. name: "Front",
  30445. image: {
  30446. source: "./media/characters/joanna/front.svg",
  30447. extra: 1596 / 1488,
  30448. bottom: 29 / 1625
  30449. }
  30450. },
  30451. back: {
  30452. height: math.unit(3.5, "meters"),
  30453. weight: math.unit(1200, "kg"),
  30454. name: "Back",
  30455. image: {
  30456. source: "./media/characters/joanna/back.svg",
  30457. extra: 1594 / 1495,
  30458. bottom: 26 / 1620
  30459. }
  30460. },
  30461. frontShorts: {
  30462. height: math.unit(3.5, "meters"),
  30463. weight: math.unit(1200, "kg"),
  30464. name: "Front (Shorts)",
  30465. image: {
  30466. source: "./media/characters/joanna/front-shorts.svg",
  30467. extra: 1596 / 1488,
  30468. bottom: 29 / 1625
  30469. }
  30470. },
  30471. frontBiker: {
  30472. height: math.unit(3.5, "meters"),
  30473. weight: math.unit(1200, "kg"),
  30474. name: "Front (Biker)",
  30475. image: {
  30476. source: "./media/characters/joanna/front-biker.svg",
  30477. extra: 1596 / 1488,
  30478. bottom: 29 / 1625
  30479. }
  30480. },
  30481. backBiker: {
  30482. height: math.unit(3.5, "meters"),
  30483. weight: math.unit(1200, "kg"),
  30484. name: "Back (Biker)",
  30485. image: {
  30486. source: "./media/characters/joanna/back-biker.svg",
  30487. extra: 1594 / 1495,
  30488. bottom: 88 / 1682
  30489. }
  30490. },
  30491. bikeLeft: {
  30492. height: math.unit(2.4, "meters"),
  30493. weight: math.unit(1600, "kg"),
  30494. name: "Bike (Left)",
  30495. image: {
  30496. source: "./media/characters/joanna/bike-left.svg",
  30497. extra: 720 / 720,
  30498. bottom: 8 / 728
  30499. }
  30500. },
  30501. bikeRight: {
  30502. height: math.unit(2.4, "meters"),
  30503. weight: math.unit(1600, "kg"),
  30504. name: "Bike (Right)",
  30505. image: {
  30506. source: "./media/characters/joanna/bike-right.svg",
  30507. extra: 720 / 720,
  30508. bottom: 8 / 728
  30509. }
  30510. },
  30511. },
  30512. [
  30513. {
  30514. name: "Incognito",
  30515. height: math.unit(3.5, "meters")
  30516. },
  30517. {
  30518. name: "Casual Big",
  30519. height: math.unit(200, "meters")
  30520. },
  30521. {
  30522. name: "Macro",
  30523. height: math.unit(600, "meters")
  30524. },
  30525. {
  30526. name: "Original",
  30527. height: math.unit(20, "km"),
  30528. default: true
  30529. },
  30530. {
  30531. name: "Giga",
  30532. height: math.unit(400, "km")
  30533. },
  30534. {
  30535. name: "Lounging",
  30536. height: math.unit(1500, "km")
  30537. },
  30538. {
  30539. name: "Planetary",
  30540. height: math.unit(200000, "km")
  30541. },
  30542. ]
  30543. ))
  30544. characterMakers.push(() => makeCharacter(
  30545. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30546. {
  30547. front: {
  30548. height: math.unit(6, "feet"),
  30549. weight: math.unit(150, "lb"),
  30550. name: "Front",
  30551. image: {
  30552. source: "./media/characters/hugo-sigil/front.svg",
  30553. extra: 522 / 500,
  30554. bottom: 2 / 524
  30555. }
  30556. },
  30557. back: {
  30558. height: math.unit(6, "feet"),
  30559. weight: math.unit(150, "lb"),
  30560. name: "Back",
  30561. image: {
  30562. source: "./media/characters/hugo-sigil/back.svg",
  30563. extra: 519 / 495,
  30564. bottom: 5 / 524
  30565. }
  30566. },
  30567. maw: {
  30568. height: math.unit(1.4, "feet"),
  30569. weight: math.unit(150, "lb"),
  30570. name: "Maw",
  30571. image: {
  30572. source: "./media/characters/hugo-sigil/maw.svg"
  30573. }
  30574. },
  30575. feet: {
  30576. height: math.unit(1.56, "feet"),
  30577. weight: math.unit(150, "lb"),
  30578. name: "Feet",
  30579. image: {
  30580. source: "./media/characters/hugo-sigil/feet.svg",
  30581. extra: 177 / 177,
  30582. bottom: 12 / 189
  30583. }
  30584. },
  30585. },
  30586. [
  30587. {
  30588. name: "Normal",
  30589. height: math.unit(6, "feet")
  30590. },
  30591. {
  30592. name: "Macro",
  30593. height: math.unit(200, "feet"),
  30594. default: true
  30595. },
  30596. ]
  30597. ))
  30598. characterMakers.push(() => makeCharacter(
  30599. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30600. {
  30601. front: {
  30602. height: math.unit(6, "feet"),
  30603. weight: math.unit(150, "lb"),
  30604. name: "Front",
  30605. image: {
  30606. source: "./media/characters/peri/front.svg",
  30607. extra: 2354 / 2233,
  30608. bottom: 49 / 2403
  30609. }
  30610. },
  30611. },
  30612. [
  30613. {
  30614. name: "Really Small",
  30615. height: math.unit(1, "nm")
  30616. },
  30617. {
  30618. name: "Micro",
  30619. height: math.unit(4, "inches")
  30620. },
  30621. {
  30622. name: "Normal",
  30623. height: math.unit(7, "inches"),
  30624. default: true
  30625. },
  30626. {
  30627. name: "Macro",
  30628. height: math.unit(400, "feet")
  30629. },
  30630. {
  30631. name: "Megamacro",
  30632. height: math.unit(100, "miles")
  30633. },
  30634. ]
  30635. ))
  30636. characterMakers.push(() => makeCharacter(
  30637. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30638. {
  30639. frontSlim: {
  30640. height: math.unit(7, "feet"),
  30641. name: "Front (Slim)",
  30642. image: {
  30643. source: "./media/characters/issilora/front-slim.svg",
  30644. extra: 529 / 449,
  30645. bottom: 53 / 582
  30646. }
  30647. },
  30648. sideSlim: {
  30649. height: math.unit(7, "feet"),
  30650. name: "Side (Slim)",
  30651. image: {
  30652. source: "./media/characters/issilora/side-slim.svg",
  30653. extra: 570 / 480,
  30654. bottom: 30 / 600
  30655. }
  30656. },
  30657. backSlim: {
  30658. height: math.unit(7, "feet"),
  30659. name: "Back (Slim)",
  30660. image: {
  30661. source: "./media/characters/issilora/back-slim.svg",
  30662. extra: 537 / 455,
  30663. bottom: 46 / 583
  30664. }
  30665. },
  30666. frontBuff: {
  30667. height: math.unit(7, "feet"),
  30668. name: "Front (Buff)",
  30669. image: {
  30670. source: "./media/characters/issilora/front-buff.svg",
  30671. extra: 2310 / 2035,
  30672. bottom: 335 / 2645
  30673. }
  30674. },
  30675. head: {
  30676. height: math.unit(1.94, "feet"),
  30677. name: "Head",
  30678. image: {
  30679. source: "./media/characters/issilora/head.svg"
  30680. }
  30681. },
  30682. },
  30683. [
  30684. {
  30685. name: "Minimum",
  30686. height: math.unit(7, "feet")
  30687. },
  30688. {
  30689. name: "Comfortable",
  30690. height: math.unit(17, "feet")
  30691. },
  30692. {
  30693. name: "Fun Size",
  30694. height: math.unit(47, "feet")
  30695. },
  30696. {
  30697. name: "Natural Macro",
  30698. height: math.unit(137, "feet"),
  30699. default: true
  30700. },
  30701. {
  30702. name: "Maximum Kaiju",
  30703. height: math.unit(397, "feet")
  30704. },
  30705. ]
  30706. ))
  30707. characterMakers.push(() => makeCharacter(
  30708. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30709. {
  30710. front: {
  30711. height: math.unit(50 + 9/12, "feet"),
  30712. weight: math.unit(32.8, "tons"),
  30713. name: "Front",
  30714. image: {
  30715. source: "./media/characters/irb'iiritaahn/front.svg",
  30716. extra: 1878/1826,
  30717. bottom: 326/2204
  30718. }
  30719. },
  30720. back: {
  30721. height: math.unit(50 + 9/12, "feet"),
  30722. weight: math.unit(32.8, "tons"),
  30723. name: "Back",
  30724. image: {
  30725. source: "./media/characters/irb'iiritaahn/back.svg",
  30726. extra: 2052/2018,
  30727. bottom: 152/2204
  30728. }
  30729. },
  30730. head: {
  30731. height: math.unit(12.86, "feet"),
  30732. name: "Head",
  30733. image: {
  30734. source: "./media/characters/irb'iiritaahn/head.svg"
  30735. }
  30736. },
  30737. maw: {
  30738. height: math.unit(9.66, "feet"),
  30739. name: "Maw",
  30740. image: {
  30741. source: "./media/characters/irb'iiritaahn/maw.svg"
  30742. }
  30743. },
  30744. frontDick: {
  30745. height: math.unit(8.78461, "feet"),
  30746. name: "Front Dick",
  30747. image: {
  30748. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30749. }
  30750. },
  30751. rearDick: {
  30752. height: math.unit(8.78461, "feet"),
  30753. name: "Rear Dick",
  30754. image: {
  30755. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30756. }
  30757. },
  30758. rearDickUnfolded: {
  30759. height: math.unit(8.78, "feet"),
  30760. name: "Rear Dick (Unfolded)",
  30761. image: {
  30762. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30763. }
  30764. },
  30765. wings: {
  30766. height: math.unit(43, "feet"),
  30767. name: "Wings",
  30768. image: {
  30769. source: "./media/characters/irb'iiritaahn/wings.svg"
  30770. }
  30771. },
  30772. },
  30773. [
  30774. {
  30775. name: "Macro",
  30776. height: math.unit(50 + 9/12, "feet"),
  30777. default: true
  30778. },
  30779. ]
  30780. ))
  30781. characterMakers.push(() => makeCharacter(
  30782. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30783. {
  30784. front: {
  30785. height: math.unit(205, "cm"),
  30786. weight: math.unit(102, "kg"),
  30787. name: "Front",
  30788. image: {
  30789. source: "./media/characters/irbisgreif/front.svg",
  30790. extra: 785/706,
  30791. bottom: 13/798
  30792. }
  30793. },
  30794. back: {
  30795. height: math.unit(205, "cm"),
  30796. weight: math.unit(102, "kg"),
  30797. name: "Back",
  30798. image: {
  30799. source: "./media/characters/irbisgreif/back.svg",
  30800. extra: 713/701,
  30801. bottom: 26/739
  30802. }
  30803. },
  30804. frontDressed: {
  30805. height: math.unit(216, "cm"),
  30806. weight: math.unit(102, "kg"),
  30807. name: "Front-dressed",
  30808. image: {
  30809. source: "./media/characters/irbisgreif/front-dressed.svg",
  30810. extra: 902/776,
  30811. bottom: 14/916
  30812. }
  30813. },
  30814. sideDressed: {
  30815. height: math.unit(195, "cm"),
  30816. weight: math.unit(102, "kg"),
  30817. name: "Side-dressed",
  30818. image: {
  30819. source: "./media/characters/irbisgreif/side-dressed.svg",
  30820. extra: 788/688,
  30821. bottom: 21/809
  30822. }
  30823. },
  30824. backDressed: {
  30825. height: math.unit(216, "cm"),
  30826. weight: math.unit(102, "kg"),
  30827. name: "Back-dressed",
  30828. image: {
  30829. source: "./media/characters/irbisgreif/back-dressed.svg",
  30830. extra: 901/783,
  30831. bottom: 10/911
  30832. }
  30833. },
  30834. dick: {
  30835. height: math.unit(0.49, "feet"),
  30836. name: "Dick",
  30837. image: {
  30838. source: "./media/characters/irbisgreif/dick.svg"
  30839. }
  30840. },
  30841. wingTop: {
  30842. height: math.unit(1.93 , "feet"),
  30843. name: "Wing-top",
  30844. image: {
  30845. source: "./media/characters/irbisgreif/wing-top.svg"
  30846. }
  30847. },
  30848. wingBottom: {
  30849. height: math.unit(1.93 , "feet"),
  30850. name: "Wing-bottom",
  30851. image: {
  30852. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30853. }
  30854. },
  30855. },
  30856. [
  30857. {
  30858. name: "Normal",
  30859. height: math.unit(216, "cm"),
  30860. default: true
  30861. },
  30862. ]
  30863. ))
  30864. characterMakers.push(() => makeCharacter(
  30865. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30866. {
  30867. front: {
  30868. height: math.unit(6, "feet"),
  30869. weight: math.unit(150, "lb"),
  30870. name: "Front",
  30871. image: {
  30872. source: "./media/characters/pride/front.svg",
  30873. extra: 1299/1230,
  30874. bottom: 18/1317
  30875. }
  30876. },
  30877. },
  30878. [
  30879. {
  30880. name: "Normal",
  30881. height: math.unit(7, "feet")
  30882. },
  30883. {
  30884. name: "Mini-macro",
  30885. height: math.unit(11, "feet")
  30886. },
  30887. {
  30888. name: "Macro",
  30889. height: math.unit(15, "meters"),
  30890. default: true
  30891. },
  30892. {
  30893. name: "Macro+",
  30894. height: math.unit(40, "meters")
  30895. },
  30896. ]
  30897. ))
  30898. characterMakers.push(() => makeCharacter(
  30899. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30900. {
  30901. front: {
  30902. height: math.unit(4 + 2 / 12, "feet"),
  30903. weight: math.unit(95, "lb"),
  30904. name: "Front",
  30905. image: {
  30906. source: "./media/characters/vaelophis-nyx/front.svg",
  30907. extra: 2532/2330,
  30908. bottom: 0/2532
  30909. }
  30910. },
  30911. back: {
  30912. height: math.unit(4 + 2 / 12, "feet"),
  30913. weight: math.unit(95, "lb"),
  30914. name: "Back",
  30915. image: {
  30916. source: "./media/characters/vaelophis-nyx/back.svg",
  30917. extra: 2484/2361,
  30918. bottom: 0/2484
  30919. }
  30920. },
  30921. feralSide: {
  30922. height: math.unit(2 + 1/12, "feet"),
  30923. weight: math.unit(20, "lb"),
  30924. name: "Feral (Side)",
  30925. image: {
  30926. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30927. extra: 1721/1581,
  30928. bottom: 70/1791
  30929. }
  30930. },
  30931. feralLazing: {
  30932. height: math.unit(1.08, "feet"),
  30933. weight: math.unit(20, "lb"),
  30934. name: "Feral (Lazing)",
  30935. image: {
  30936. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30937. extra: 822/822,
  30938. bottom: 248/1070
  30939. }
  30940. },
  30941. ear: {
  30942. height: math.unit(0.416, "feet"),
  30943. name: "Ear",
  30944. image: {
  30945. source: "./media/characters/vaelophis-nyx/ear.svg"
  30946. }
  30947. },
  30948. eye: {
  30949. height: math.unit(0.0748, "feet"),
  30950. name: "Eye",
  30951. image: {
  30952. source: "./media/characters/vaelophis-nyx/eye.svg"
  30953. }
  30954. },
  30955. mouth: {
  30956. height: math.unit(0.378, "feet"),
  30957. name: "Mouth",
  30958. image: {
  30959. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30960. }
  30961. },
  30962. spade: {
  30963. height: math.unit(0.55, "feet"),
  30964. name: "Spade",
  30965. image: {
  30966. source: "./media/characters/vaelophis-nyx/spade.svg"
  30967. }
  30968. },
  30969. },
  30970. [
  30971. {
  30972. name: "Normal",
  30973. height: math.unit(4 + 2/12, "feet"),
  30974. default: true
  30975. },
  30976. ]
  30977. ))
  30978. characterMakers.push(() => makeCharacter(
  30979. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30980. {
  30981. front: {
  30982. height: math.unit(7, "feet"),
  30983. weight: math.unit(231, "lb"),
  30984. name: "Front",
  30985. image: {
  30986. source: "./media/characters/flux/front.svg",
  30987. extra: 919/871,
  30988. bottom: 0/919
  30989. }
  30990. },
  30991. back: {
  30992. height: math.unit(7, "feet"),
  30993. weight: math.unit(231, "lb"),
  30994. name: "Back",
  30995. image: {
  30996. source: "./media/characters/flux/back.svg",
  30997. extra: 1040/992,
  30998. bottom: 0/1040
  30999. }
  31000. },
  31001. frontDressed: {
  31002. height: math.unit(7, "feet"),
  31003. weight: math.unit(231, "lb"),
  31004. name: "Front (Dressed)",
  31005. image: {
  31006. source: "./media/characters/flux/front-dressed.svg",
  31007. extra: 919/871,
  31008. bottom: 0/919
  31009. }
  31010. },
  31011. feralSide: {
  31012. height: math.unit(5, "feet"),
  31013. weight: math.unit(150, "lb"),
  31014. name: "Feral (Side)",
  31015. image: {
  31016. source: "./media/characters/flux/feral-side.svg",
  31017. extra: 598/528,
  31018. bottom: 28/626
  31019. }
  31020. },
  31021. head: {
  31022. height: math.unit(1.585, "feet"),
  31023. name: "Head",
  31024. image: {
  31025. source: "./media/characters/flux/head.svg"
  31026. }
  31027. },
  31028. headSide: {
  31029. height: math.unit(1.74, "feet"),
  31030. name: "Head (Side)",
  31031. image: {
  31032. source: "./media/characters/flux/head-side.svg"
  31033. }
  31034. },
  31035. headSideFire: {
  31036. height: math.unit(1.76, "feet"),
  31037. name: "Head (Side, Fire)",
  31038. image: {
  31039. source: "./media/characters/flux/head-side-fire.svg"
  31040. }
  31041. },
  31042. },
  31043. [
  31044. {
  31045. name: "Normal",
  31046. height: math.unit(7, "feet"),
  31047. default: true
  31048. },
  31049. ]
  31050. ))
  31051. characterMakers.push(() => makeCharacter(
  31052. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31053. {
  31054. front: {
  31055. height: math.unit(9, "feet"),
  31056. weight: math.unit(1012, "lb"),
  31057. name: "Front",
  31058. image: {
  31059. source: "./media/characters/ulfra-lupae/front.svg",
  31060. extra: 1083/1011,
  31061. bottom: 67/1150
  31062. }
  31063. },
  31064. },
  31065. [
  31066. {
  31067. name: "Micro",
  31068. height: math.unit(6, "inches")
  31069. },
  31070. {
  31071. name: "Socializing",
  31072. height: math.unit(6 + 5/12, "feet")
  31073. },
  31074. {
  31075. name: "Normal",
  31076. height: math.unit(9, "feet"),
  31077. default: true
  31078. },
  31079. {
  31080. name: "Macro",
  31081. height: math.unit(150, "feet")
  31082. },
  31083. ]
  31084. ))
  31085. characterMakers.push(() => makeCharacter(
  31086. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31087. {
  31088. front: {
  31089. height: math.unit(5 + 2/12, "feet"),
  31090. weight: math.unit(120, "lb"),
  31091. name: "Front",
  31092. image: {
  31093. source: "./media/characters/timber/front.svg",
  31094. extra: 2814/2705,
  31095. bottom: 181/2995
  31096. }
  31097. },
  31098. },
  31099. [
  31100. {
  31101. name: "Normal",
  31102. height: math.unit(5 + 2/12, "feet"),
  31103. default: true
  31104. },
  31105. ]
  31106. ))
  31107. characterMakers.push(() => makeCharacter(
  31108. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31109. {
  31110. front: {
  31111. height: math.unit(5 + 7/12, "feet"),
  31112. weight: math.unit(220, "lb"),
  31113. name: "Front",
  31114. image: {
  31115. source: "./media/characters/nicki/front.svg",
  31116. extra: 453/419,
  31117. bottom: 7/460
  31118. }
  31119. },
  31120. frontAlt: {
  31121. height: math.unit(5 + 7/12, "feet"),
  31122. weight: math.unit(220, "lb"),
  31123. name: "Front-alt",
  31124. image: {
  31125. source: "./media/characters/nicki/front-alt.svg",
  31126. extra: 435/411,
  31127. bottom: 12/447
  31128. }
  31129. },
  31130. back: {
  31131. height: math.unit(5 + 7/12, "feet"),
  31132. weight: math.unit(220, "lb"),
  31133. name: "Back",
  31134. image: {
  31135. source: "./media/characters/nicki/back.svg",
  31136. extra: 440/413,
  31137. bottom: 19/459
  31138. }
  31139. },
  31140. taur: {
  31141. height: math.unit(7 + 6/12, "feet"),
  31142. weight: math.unit(700, "lb"),
  31143. name: "Taur",
  31144. image: {
  31145. source: "./media/characters/nicki/taur.svg",
  31146. extra: 975/773,
  31147. bottom: 0/975
  31148. }
  31149. },
  31150. frontNsfw: {
  31151. height: math.unit(5 + 7/12, "feet"),
  31152. weight: math.unit(220, "lb"),
  31153. name: "Front (NSFW)",
  31154. image: {
  31155. source: "./media/characters/nicki/front-nsfw.svg",
  31156. extra: 453/419,
  31157. bottom: 7/460
  31158. }
  31159. },
  31160. frontNsfwAlt: {
  31161. height: math.unit(5 + 7/12, "feet"),
  31162. weight: math.unit(220, "lb"),
  31163. name: "Front (Alt, NSFW)",
  31164. image: {
  31165. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31166. extra: 435/411,
  31167. bottom: 12/447
  31168. }
  31169. },
  31170. backNsfw: {
  31171. height: math.unit(5 + 7/12, "feet"),
  31172. weight: math.unit(220, "lb"),
  31173. name: "Back (NSFW)",
  31174. image: {
  31175. source: "./media/characters/nicki/back-nsfw.svg",
  31176. extra: 440/413,
  31177. bottom: 19/459
  31178. }
  31179. },
  31180. head: {
  31181. height: math.unit(2.1, "feet"),
  31182. name: "Head",
  31183. image: {
  31184. source: "./media/characters/nicki/head.svg"
  31185. }
  31186. },
  31187. paw: {
  31188. height: math.unit(1.88, "feet"),
  31189. name: "Paw",
  31190. image: {
  31191. source: "./media/characters/nicki/paw.svg"
  31192. }
  31193. },
  31194. },
  31195. [
  31196. {
  31197. name: "Normal",
  31198. height: math.unit(5 + 7/12, "feet"),
  31199. default: true
  31200. },
  31201. ]
  31202. ))
  31203. characterMakers.push(() => makeCharacter(
  31204. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31205. {
  31206. front: {
  31207. height: math.unit(7 + 10/12, "feet"),
  31208. weight: math.unit(3.5, "tons"),
  31209. name: "Front",
  31210. image: {
  31211. source: "./media/characters/lee/front.svg",
  31212. extra: 1773/1615,
  31213. bottom: 86/1859
  31214. }
  31215. },
  31216. hand: {
  31217. height: math.unit(1.78, "feet"),
  31218. name: "Hand",
  31219. image: {
  31220. source: "./media/characters/lee/hand.svg"
  31221. }
  31222. },
  31223. maw: {
  31224. height: math.unit(1.18, "feet"),
  31225. name: "Maw",
  31226. image: {
  31227. source: "./media/characters/lee/maw.svg"
  31228. }
  31229. },
  31230. },
  31231. [
  31232. {
  31233. name: "Normal",
  31234. height: math.unit(7 + 10/12, "feet"),
  31235. default: true
  31236. },
  31237. ]
  31238. ))
  31239. characterMakers.push(() => makeCharacter(
  31240. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31241. {
  31242. front: {
  31243. height: math.unit(9, "feet"),
  31244. name: "Front",
  31245. image: {
  31246. source: "./media/characters/guti/front.svg",
  31247. extra: 4551/4355,
  31248. bottom: 123/4674
  31249. }
  31250. },
  31251. tongue: {
  31252. height: math.unit(1, "feet"),
  31253. name: "Tongue",
  31254. image: {
  31255. source: "./media/characters/guti/tongue.svg"
  31256. }
  31257. },
  31258. paw: {
  31259. height: math.unit(1.18, "feet"),
  31260. name: "Paw",
  31261. image: {
  31262. source: "./media/characters/guti/paw.svg"
  31263. }
  31264. },
  31265. },
  31266. [
  31267. {
  31268. name: "Normal",
  31269. height: math.unit(9, "feet"),
  31270. default: true
  31271. },
  31272. ]
  31273. ))
  31274. characterMakers.push(() => makeCharacter(
  31275. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31276. {
  31277. side: {
  31278. height: math.unit(5, "meters"),
  31279. name: "Side",
  31280. image: {
  31281. source: "./media/characters/vesper/side.svg",
  31282. extra: 1605/1518,
  31283. bottom: 0/1605
  31284. }
  31285. },
  31286. },
  31287. [
  31288. {
  31289. name: "Small",
  31290. height: math.unit(5, "meters")
  31291. },
  31292. {
  31293. name: "Sage",
  31294. height: math.unit(100, "meters"),
  31295. default: true
  31296. },
  31297. {
  31298. name: "Fun Size",
  31299. height: math.unit(600, "meters")
  31300. },
  31301. {
  31302. name: "Goddess",
  31303. height: math.unit(20000, "km")
  31304. },
  31305. {
  31306. name: "Maximum",
  31307. height: math.unit(5, "galaxies")
  31308. },
  31309. ]
  31310. ))
  31311. characterMakers.push(() => makeCharacter(
  31312. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31313. {
  31314. front: {
  31315. height: math.unit(6 + 3/12, "feet"),
  31316. weight: math.unit(190, "lb"),
  31317. name: "Front",
  31318. image: {
  31319. source: "./media/characters/gawain/front.svg",
  31320. extra: 2222/2139,
  31321. bottom: 90/2312
  31322. }
  31323. },
  31324. back: {
  31325. height: math.unit(6 + 3/12, "feet"),
  31326. weight: math.unit(190, "lb"),
  31327. name: "Back",
  31328. image: {
  31329. source: "./media/characters/gawain/back.svg",
  31330. extra: 2199/2111,
  31331. bottom: 73/2272
  31332. }
  31333. },
  31334. },
  31335. [
  31336. {
  31337. name: "Normal",
  31338. height: math.unit(6 + 3/12, "feet"),
  31339. default: true
  31340. },
  31341. ]
  31342. ))
  31343. characterMakers.push(() => makeCharacter(
  31344. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31345. {
  31346. side: {
  31347. height: math.unit(3.5, "meters"),
  31348. weight: math.unit(16000, "lb"),
  31349. name: "Side",
  31350. image: {
  31351. source: "./media/characters/dascalti/side.svg",
  31352. extra: 392/273,
  31353. bottom: 47/439
  31354. }
  31355. },
  31356. breath: {
  31357. height: math.unit(7.4, "feet"),
  31358. name: "Breath",
  31359. image: {
  31360. source: "./media/characters/dascalti/breath.svg"
  31361. }
  31362. },
  31363. fed: {
  31364. height: math.unit(3.6, "meters"),
  31365. weight: math.unit(16000, "lb"),
  31366. name: "Fed",
  31367. image: {
  31368. source: "./media/characters/dascalti/fed.svg",
  31369. extra: 1419/820,
  31370. bottom: 95/1514
  31371. }
  31372. },
  31373. },
  31374. [
  31375. {
  31376. name: "Normal",
  31377. height: math.unit(3.5, "meters"),
  31378. default: true
  31379. },
  31380. ]
  31381. ))
  31382. characterMakers.push(() => makeCharacter(
  31383. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31384. {
  31385. front: {
  31386. height: math.unit(3 + 5/12, "feet"),
  31387. name: "Front",
  31388. image: {
  31389. source: "./media/characters/mauve/front.svg",
  31390. extra: 1126/1033,
  31391. bottom: 65/1191
  31392. }
  31393. },
  31394. side: {
  31395. height: math.unit(3 + 5/12, "feet"),
  31396. name: "Side",
  31397. image: {
  31398. source: "./media/characters/mauve/side.svg",
  31399. extra: 1089/1001,
  31400. bottom: 29/1118
  31401. }
  31402. },
  31403. back: {
  31404. height: math.unit(3 + 5/12, "feet"),
  31405. name: "Back",
  31406. image: {
  31407. source: "./media/characters/mauve/back.svg",
  31408. extra: 1173/1053,
  31409. bottom: 109/1282
  31410. }
  31411. },
  31412. },
  31413. [
  31414. {
  31415. name: "Normal",
  31416. height: math.unit(3 + 5/12, "feet"),
  31417. default: true
  31418. },
  31419. ]
  31420. ))
  31421. characterMakers.push(() => makeCharacter(
  31422. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31423. {
  31424. front: {
  31425. height: math.unit(6 + 3/12, "feet"),
  31426. weight: math.unit(430, "lb"),
  31427. name: "Front",
  31428. image: {
  31429. source: "./media/characters/carlos/front.svg",
  31430. extra: 1964/1913,
  31431. bottom: 70/2034
  31432. }
  31433. },
  31434. },
  31435. [
  31436. {
  31437. name: "Normal",
  31438. height: math.unit(6 + 3/12, "feet"),
  31439. default: true
  31440. },
  31441. ]
  31442. ))
  31443. characterMakers.push(() => makeCharacter(
  31444. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31445. {
  31446. back: {
  31447. height: math.unit(5 + 10/12, "feet"),
  31448. weight: math.unit(200, "lb"),
  31449. name: "Back",
  31450. image: {
  31451. source: "./media/characters/jax/back.svg",
  31452. extra: 764/739,
  31453. bottom: 25/789
  31454. }
  31455. },
  31456. },
  31457. [
  31458. {
  31459. name: "Normal",
  31460. height: math.unit(5 + 10/12, "feet"),
  31461. default: true
  31462. },
  31463. ]
  31464. ))
  31465. characterMakers.push(() => makeCharacter(
  31466. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31467. {
  31468. front: {
  31469. height: math.unit(8, "feet"),
  31470. weight: math.unit(250, "lb"),
  31471. name: "Front",
  31472. image: {
  31473. source: "./media/characters/eikthynir/front.svg",
  31474. extra: 1332/1166,
  31475. bottom: 82/1414
  31476. }
  31477. },
  31478. back: {
  31479. height: math.unit(8, "feet"),
  31480. weight: math.unit(250, "lb"),
  31481. name: "Back",
  31482. image: {
  31483. source: "./media/characters/eikthynir/back.svg",
  31484. extra: 1342/1190,
  31485. bottom: 19/1361
  31486. }
  31487. },
  31488. dick: {
  31489. height: math.unit(2.35, "feet"),
  31490. name: "Dick",
  31491. image: {
  31492. source: "./media/characters/eikthynir/dick.svg"
  31493. }
  31494. },
  31495. },
  31496. [
  31497. {
  31498. name: "Normal",
  31499. height: math.unit(8, "feet"),
  31500. default: true
  31501. },
  31502. ]
  31503. ))
  31504. characterMakers.push(() => makeCharacter(
  31505. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31506. {
  31507. front: {
  31508. height: math.unit(99, "meters"),
  31509. weight: math.unit(13000, "tons"),
  31510. name: "Front",
  31511. image: {
  31512. source: "./media/characters/zlmos/front.svg",
  31513. extra: 2202/1992,
  31514. bottom: 315/2517
  31515. }
  31516. },
  31517. },
  31518. [
  31519. {
  31520. name: "Macro",
  31521. height: math.unit(99, "meters"),
  31522. default: true
  31523. },
  31524. ]
  31525. ))
  31526. characterMakers.push(() => makeCharacter(
  31527. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31528. {
  31529. front: {
  31530. height: math.unit(6 + 5/12, "feet"),
  31531. name: "Front",
  31532. image: {
  31533. source: "./media/characters/purri/front.svg",
  31534. extra: 1698/1610,
  31535. bottom: 32/1730
  31536. }
  31537. },
  31538. frontAlt: {
  31539. height: math.unit(6 + 5/12, "feet"),
  31540. name: "Front (Alt)",
  31541. image: {
  31542. source: "./media/characters/purri/front-alt.svg",
  31543. extra: 450/420,
  31544. bottom: 26/476
  31545. }
  31546. },
  31547. boots: {
  31548. height: math.unit(5.5, "feet"),
  31549. name: "Boots",
  31550. image: {
  31551. source: "./media/characters/purri/boots.svg",
  31552. extra: 905/853,
  31553. bottom: 18/923
  31554. }
  31555. },
  31556. lying: {
  31557. height: math.unit(2, "feet"),
  31558. name: "Lying",
  31559. image: {
  31560. source: "./media/characters/purri/lying.svg",
  31561. extra: 940/843,
  31562. bottom: 146/1086
  31563. }
  31564. },
  31565. devious: {
  31566. height: math.unit(1.77, "feet"),
  31567. name: "Devious",
  31568. image: {
  31569. source: "./media/characters/purri/devious.svg",
  31570. extra: 1440/1155,
  31571. bottom: 147/1587
  31572. }
  31573. },
  31574. bean: {
  31575. height: math.unit(1.94, "feet"),
  31576. name: "Bean",
  31577. image: {
  31578. source: "./media/characters/purri/bean.svg"
  31579. }
  31580. },
  31581. },
  31582. [
  31583. {
  31584. name: "Micro",
  31585. height: math.unit(1, "mm")
  31586. },
  31587. {
  31588. name: "Normal",
  31589. height: math.unit(6 + 5/12, "feet"),
  31590. default: true
  31591. },
  31592. {
  31593. name: "Macro :3c",
  31594. height: math.unit(2, "miles")
  31595. },
  31596. ]
  31597. ))
  31598. characterMakers.push(() => makeCharacter(
  31599. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31600. {
  31601. front: {
  31602. height: math.unit(6 + 2/12, "feet"),
  31603. weight: math.unit(250, "lb"),
  31604. name: "Front",
  31605. image: {
  31606. source: "./media/characters/moonlight/front.svg",
  31607. extra: 1044/908,
  31608. bottom: 56/1100
  31609. }
  31610. },
  31611. feral: {
  31612. height: math.unit(3 + 1/12, "feet"),
  31613. weight: math.unit(50, "kg"),
  31614. name: "Feral",
  31615. image: {
  31616. source: "./media/characters/moonlight/feral.svg",
  31617. extra: 3705/2791,
  31618. bottom: 145/3850
  31619. }
  31620. },
  31621. paw: {
  31622. height: math.unit(1, "feet"),
  31623. name: "Paw",
  31624. image: {
  31625. source: "./media/characters/moonlight/paw.svg"
  31626. }
  31627. },
  31628. paws: {
  31629. height: math.unit(0.98, "feet"),
  31630. name: "Paws",
  31631. image: {
  31632. source: "./media/characters/moonlight/paws.svg",
  31633. extra: 939/939,
  31634. bottom: 50/989
  31635. }
  31636. },
  31637. mouth: {
  31638. height: math.unit(0.48, "feet"),
  31639. name: "Mouth",
  31640. image: {
  31641. source: "./media/characters/moonlight/mouth.svg"
  31642. }
  31643. },
  31644. dick: {
  31645. height: math.unit(1.46, "feet"),
  31646. name: "Dick",
  31647. image: {
  31648. source: "./media/characters/moonlight/dick.svg"
  31649. }
  31650. },
  31651. },
  31652. [
  31653. {
  31654. name: "Normal",
  31655. height: math.unit(6 + 2/12, "feet"),
  31656. default: true
  31657. },
  31658. {
  31659. name: "Macro",
  31660. height: math.unit(300, "feet")
  31661. },
  31662. {
  31663. name: "Macro+",
  31664. height: math.unit(1, "mile")
  31665. },
  31666. {
  31667. name: "Mt. Moon",
  31668. height: math.unit(5, "miles")
  31669. },
  31670. {
  31671. name: "Megamacro",
  31672. height: math.unit(15, "miles")
  31673. },
  31674. ]
  31675. ))
  31676. characterMakers.push(() => makeCharacter(
  31677. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31678. {
  31679. back: {
  31680. height: math.unit(6, "feet"),
  31681. weight: math.unit(150, "lb"),
  31682. name: "Back",
  31683. image: {
  31684. source: "./media/characters/sylen/back.svg",
  31685. extra: 1335/1273,
  31686. bottom: 107/1442
  31687. }
  31688. },
  31689. },
  31690. [
  31691. {
  31692. name: "Normal",
  31693. height: math.unit(5 + 5/12, "feet")
  31694. },
  31695. {
  31696. name: "Megamacro",
  31697. height: math.unit(3, "miles"),
  31698. default: true
  31699. },
  31700. ]
  31701. ))
  31702. characterMakers.push(() => makeCharacter(
  31703. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31704. {
  31705. front: {
  31706. height: math.unit(6, "feet"),
  31707. weight: math.unit(190, "lb"),
  31708. name: "Front",
  31709. image: {
  31710. source: "./media/characters/huttser/front.svg",
  31711. extra: 1152/1058,
  31712. bottom: 23/1175
  31713. }
  31714. },
  31715. side: {
  31716. height: math.unit(6, "feet"),
  31717. weight: math.unit(190, "lb"),
  31718. name: "Side",
  31719. image: {
  31720. source: "./media/characters/huttser/side.svg",
  31721. extra: 1174/1065,
  31722. bottom: 18/1192
  31723. }
  31724. },
  31725. back: {
  31726. height: math.unit(6, "feet"),
  31727. weight: math.unit(190, "lb"),
  31728. name: "Back",
  31729. image: {
  31730. source: "./media/characters/huttser/back.svg",
  31731. extra: 1158/1056,
  31732. bottom: 12/1170
  31733. }
  31734. },
  31735. },
  31736. [
  31737. ]
  31738. ))
  31739. characterMakers.push(() => makeCharacter(
  31740. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31741. {
  31742. side: {
  31743. height: math.unit(12 + 9/12, "feet"),
  31744. weight: math.unit(15000, "lb"),
  31745. name: "Side",
  31746. image: {
  31747. source: "./media/characters/faan/side.svg",
  31748. extra: 2747/2697,
  31749. bottom: 0/2747
  31750. }
  31751. },
  31752. front: {
  31753. height: math.unit(12 + 9/12, "feet"),
  31754. weight: math.unit(15000, "lb"),
  31755. name: "Front",
  31756. image: {
  31757. source: "./media/characters/faan/front.svg",
  31758. extra: 607/571,
  31759. bottom: 24/631
  31760. }
  31761. },
  31762. head: {
  31763. height: math.unit(2.85, "feet"),
  31764. name: "Head",
  31765. image: {
  31766. source: "./media/characters/faan/head.svg"
  31767. }
  31768. },
  31769. headAlt: {
  31770. height: math.unit(3.13, "feet"),
  31771. name: "Head-alt",
  31772. image: {
  31773. source: "./media/characters/faan/head-alt.svg"
  31774. }
  31775. },
  31776. },
  31777. [
  31778. {
  31779. name: "Normal",
  31780. height: math.unit(12 + 9/12, "feet"),
  31781. default: true
  31782. },
  31783. ]
  31784. ))
  31785. characterMakers.push(() => makeCharacter(
  31786. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31787. {
  31788. front: {
  31789. height: math.unit(6, "feet"),
  31790. weight: math.unit(300, "lb"),
  31791. name: "Front",
  31792. image: {
  31793. source: "./media/characters/tanio/front.svg",
  31794. extra: 711/673,
  31795. bottom: 25/736
  31796. }
  31797. },
  31798. },
  31799. [
  31800. {
  31801. name: "Normal",
  31802. height: math.unit(6, "feet"),
  31803. default: true
  31804. },
  31805. ]
  31806. ))
  31807. characterMakers.push(() => makeCharacter(
  31808. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31809. {
  31810. front: {
  31811. height: math.unit(3, "inches"),
  31812. name: "Front",
  31813. image: {
  31814. source: "./media/characters/noboru/front.svg",
  31815. extra: 1039/932,
  31816. bottom: 18/1057
  31817. }
  31818. },
  31819. },
  31820. [
  31821. {
  31822. name: "Micro",
  31823. height: math.unit(3, "inches"),
  31824. default: true
  31825. },
  31826. ]
  31827. ))
  31828. characterMakers.push(() => makeCharacter(
  31829. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31830. {
  31831. front: {
  31832. height: math.unit(1.85, "meters"),
  31833. weight: math.unit(80, "kg"),
  31834. name: "Front",
  31835. image: {
  31836. source: "./media/characters/daniel-barrett/front.svg",
  31837. extra: 355/337,
  31838. bottom: 9/364
  31839. }
  31840. },
  31841. },
  31842. [
  31843. {
  31844. name: "Pico",
  31845. height: math.unit(0.0433, "mm")
  31846. },
  31847. {
  31848. name: "Nano",
  31849. height: math.unit(1.5, "mm")
  31850. },
  31851. {
  31852. name: "Micro",
  31853. height: math.unit(5.3, "cm"),
  31854. default: true
  31855. },
  31856. {
  31857. name: "Normal",
  31858. height: math.unit(1.85, "meters")
  31859. },
  31860. {
  31861. name: "Macro",
  31862. height: math.unit(64.7, "meters")
  31863. },
  31864. {
  31865. name: "Megamacro",
  31866. height: math.unit(2.26, "km")
  31867. },
  31868. {
  31869. name: "Gigamacro",
  31870. height: math.unit(79, "km")
  31871. },
  31872. {
  31873. name: "Teramacro",
  31874. height: math.unit(2765, "km")
  31875. },
  31876. {
  31877. name: "Petamacro",
  31878. height: math.unit(96678, "km")
  31879. },
  31880. ]
  31881. ))
  31882. characterMakers.push(() => makeCharacter(
  31883. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31884. {
  31885. front: {
  31886. height: math.unit(30, "meters"),
  31887. weight: math.unit(400, "tons"),
  31888. name: "Front",
  31889. image: {
  31890. source: "./media/characters/zeel/front.svg",
  31891. extra: 2599/2599,
  31892. bottom: 226/2825
  31893. }
  31894. },
  31895. },
  31896. [
  31897. {
  31898. name: "Macro",
  31899. height: math.unit(30, "meters"),
  31900. default: true
  31901. },
  31902. ]
  31903. ))
  31904. characterMakers.push(() => makeCharacter(
  31905. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31906. {
  31907. front: {
  31908. height: math.unit(6 + 7/12, "feet"),
  31909. weight: math.unit(210, "lb"),
  31910. name: "Front",
  31911. image: {
  31912. source: "./media/characters/tarn/front.svg",
  31913. extra: 3517/3220,
  31914. bottom: 91/3608
  31915. }
  31916. },
  31917. back: {
  31918. height: math.unit(6 + 7/12, "feet"),
  31919. weight: math.unit(210, "lb"),
  31920. name: "Back",
  31921. image: {
  31922. source: "./media/characters/tarn/back.svg",
  31923. extra: 3566/3241,
  31924. bottom: 34/3600
  31925. }
  31926. },
  31927. dick: {
  31928. height: math.unit(1.65, "feet"),
  31929. name: "Dick",
  31930. image: {
  31931. source: "./media/characters/tarn/dick.svg"
  31932. }
  31933. },
  31934. paw: {
  31935. height: math.unit(1.80, "feet"),
  31936. name: "Paw",
  31937. image: {
  31938. source: "./media/characters/tarn/paw.svg"
  31939. }
  31940. },
  31941. tongue: {
  31942. height: math.unit(0.97, "feet"),
  31943. name: "Tongue",
  31944. image: {
  31945. source: "./media/characters/tarn/tongue.svg"
  31946. }
  31947. },
  31948. },
  31949. [
  31950. {
  31951. name: "Micro",
  31952. height: math.unit(4, "inches")
  31953. },
  31954. {
  31955. name: "Normal",
  31956. height: math.unit(6 + 7/12, "feet"),
  31957. default: true
  31958. },
  31959. {
  31960. name: "Macro",
  31961. height: math.unit(300, "feet")
  31962. },
  31963. ]
  31964. ))
  31965. characterMakers.push(() => makeCharacter(
  31966. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31967. {
  31968. front: {
  31969. height: math.unit(5 + 7/12, "feet"),
  31970. weight: math.unit(80, "kg"),
  31971. name: "Front",
  31972. image: {
  31973. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31974. extra: 3023/2865,
  31975. bottom: 33/3056
  31976. }
  31977. },
  31978. back: {
  31979. height: math.unit(5 + 7/12, "feet"),
  31980. weight: math.unit(80, "kg"),
  31981. name: "Back",
  31982. image: {
  31983. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31984. extra: 3020/2886,
  31985. bottom: 30/3050
  31986. }
  31987. },
  31988. dick: {
  31989. height: math.unit(0.98, "feet"),
  31990. name: "Dick",
  31991. image: {
  31992. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31993. }
  31994. },
  31995. anatomy: {
  31996. height: math.unit(2.86, "feet"),
  31997. name: "Anatomy",
  31998. image: {
  31999. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32000. }
  32001. },
  32002. },
  32003. [
  32004. {
  32005. name: "Really Small",
  32006. height: math.unit(2, "inches")
  32007. },
  32008. {
  32009. name: "Micro",
  32010. height: math.unit(5.583, "inches")
  32011. },
  32012. {
  32013. name: "Normal",
  32014. height: math.unit(5 + 7/12, "feet"),
  32015. default: true
  32016. },
  32017. {
  32018. name: "Macro",
  32019. height: math.unit(67, "feet")
  32020. },
  32021. {
  32022. name: "Megamacro",
  32023. height: math.unit(134, "feet")
  32024. },
  32025. ]
  32026. ))
  32027. characterMakers.push(() => makeCharacter(
  32028. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32029. {
  32030. front: {
  32031. height: math.unit(9, "feet"),
  32032. weight: math.unit(120, "lb"),
  32033. name: "Front",
  32034. image: {
  32035. source: "./media/characters/sally/front.svg",
  32036. extra: 1506/1349,
  32037. bottom: 66/1572
  32038. }
  32039. },
  32040. },
  32041. [
  32042. {
  32043. name: "Normal",
  32044. height: math.unit(9, "feet"),
  32045. default: true
  32046. },
  32047. ]
  32048. ))
  32049. characterMakers.push(() => makeCharacter(
  32050. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32051. {
  32052. front: {
  32053. height: math.unit(8, "feet"),
  32054. weight: math.unit(900, "lb"),
  32055. name: "Front",
  32056. image: {
  32057. source: "./media/characters/owen/front.svg",
  32058. extra: 1761/1657,
  32059. bottom: 74/1835
  32060. }
  32061. },
  32062. side: {
  32063. height: math.unit(8, "feet"),
  32064. weight: math.unit(900, "lb"),
  32065. name: "Side",
  32066. image: {
  32067. source: "./media/characters/owen/side.svg",
  32068. extra: 1797/1734,
  32069. bottom: 30/1827
  32070. }
  32071. },
  32072. back: {
  32073. height: math.unit(8, "feet"),
  32074. weight: math.unit(900, "lb"),
  32075. name: "Back",
  32076. image: {
  32077. source: "./media/characters/owen/back.svg",
  32078. extra: 1796/1706,
  32079. bottom: 59/1855
  32080. }
  32081. },
  32082. maw: {
  32083. height: math.unit(1.76, "feet"),
  32084. name: "Maw",
  32085. image: {
  32086. source: "./media/characters/owen/maw.svg"
  32087. }
  32088. },
  32089. },
  32090. [
  32091. {
  32092. name: "Normal",
  32093. height: math.unit(8, "feet"),
  32094. default: true
  32095. },
  32096. ]
  32097. ))
  32098. characterMakers.push(() => makeCharacter(
  32099. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32100. {
  32101. front: {
  32102. height: math.unit(4, "feet"),
  32103. weight: math.unit(400, "lb"),
  32104. name: "Front",
  32105. image: {
  32106. source: "./media/characters/ryth/front.svg",
  32107. extra: 1920/1748,
  32108. bottom: 42/1962
  32109. }
  32110. },
  32111. back: {
  32112. height: math.unit(4, "feet"),
  32113. weight: math.unit(400, "lb"),
  32114. name: "Back",
  32115. image: {
  32116. source: "./media/characters/ryth/back.svg",
  32117. extra: 1897/1690,
  32118. bottom: 89/1986
  32119. }
  32120. },
  32121. mouth: {
  32122. height: math.unit(1.39, "feet"),
  32123. name: "Mouth",
  32124. image: {
  32125. source: "./media/characters/ryth/mouth.svg"
  32126. }
  32127. },
  32128. tailmaw: {
  32129. height: math.unit(1.23, "feet"),
  32130. name: "Tailmaw",
  32131. image: {
  32132. source: "./media/characters/ryth/tailmaw.svg"
  32133. }
  32134. },
  32135. goia: {
  32136. height: math.unit(4, "meters"),
  32137. weight: math.unit(10800, "lb"),
  32138. name: "Goia",
  32139. image: {
  32140. source: "./media/characters/ryth/goia.svg",
  32141. extra: 745/640,
  32142. bottom: 107/852
  32143. }
  32144. },
  32145. goiaFront: {
  32146. height: math.unit(4, "meters"),
  32147. weight: math.unit(10800, "lb"),
  32148. name: "Goia (Front)",
  32149. image: {
  32150. source: "./media/characters/ryth/goia-front.svg",
  32151. extra: 750/586,
  32152. bottom: 114/864
  32153. }
  32154. },
  32155. goiaMaw: {
  32156. height: math.unit(5.55, "feet"),
  32157. name: "Goia Maw",
  32158. image: {
  32159. source: "./media/characters/ryth/goia-maw.svg"
  32160. }
  32161. },
  32162. goiaForepaw: {
  32163. height: math.unit(3.5, "feet"),
  32164. name: "Goia Forepaw",
  32165. image: {
  32166. source: "./media/characters/ryth/goia-forepaw.svg"
  32167. }
  32168. },
  32169. goiaHindpaw: {
  32170. height: math.unit(5.55, "feet"),
  32171. name: "Goia Hindpaw",
  32172. image: {
  32173. source: "./media/characters/ryth/goia-hindpaw.svg"
  32174. }
  32175. },
  32176. },
  32177. [
  32178. {
  32179. name: "Normal",
  32180. height: math.unit(4, "feet"),
  32181. default: true
  32182. },
  32183. ]
  32184. ))
  32185. characterMakers.push(() => makeCharacter(
  32186. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32187. {
  32188. front: {
  32189. height: math.unit(7, "feet"),
  32190. weight: math.unit(180, "lb"),
  32191. name: "Front",
  32192. image: {
  32193. source: "./media/characters/necrolance/front.svg",
  32194. extra: 1062/947,
  32195. bottom: 41/1103
  32196. }
  32197. },
  32198. back: {
  32199. height: math.unit(7, "feet"),
  32200. weight: math.unit(180, "lb"),
  32201. name: "Back",
  32202. image: {
  32203. source: "./media/characters/necrolance/back.svg",
  32204. extra: 1045/984,
  32205. bottom: 14/1059
  32206. }
  32207. },
  32208. wing: {
  32209. height: math.unit(2.67, "feet"),
  32210. name: "Wing",
  32211. image: {
  32212. source: "./media/characters/necrolance/wing.svg"
  32213. }
  32214. },
  32215. },
  32216. [
  32217. {
  32218. name: "Normal",
  32219. height: math.unit(7, "feet"),
  32220. default: true
  32221. },
  32222. ]
  32223. ))
  32224. characterMakers.push(() => makeCharacter(
  32225. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32226. {
  32227. front: {
  32228. height: math.unit(76, "meters"),
  32229. weight: math.unit(30000, "tons"),
  32230. name: "Front",
  32231. image: {
  32232. source: "./media/characters/tyler/front.svg",
  32233. extra: 1640/1640,
  32234. bottom: 114/1754
  32235. }
  32236. },
  32237. },
  32238. [
  32239. {
  32240. name: "Macro",
  32241. height: math.unit(76, "meters"),
  32242. default: true
  32243. },
  32244. ]
  32245. ))
  32246. characterMakers.push(() => makeCharacter(
  32247. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32248. {
  32249. front: {
  32250. height: math.unit(4 + 11/12, "feet"),
  32251. weight: math.unit(132, "lb"),
  32252. name: "Front",
  32253. image: {
  32254. source: "./media/characters/icey/front.svg",
  32255. extra: 2750/2550,
  32256. bottom: 33/2783
  32257. }
  32258. },
  32259. back: {
  32260. height: math.unit(4 + 11/12, "feet"),
  32261. weight: math.unit(132, "lb"),
  32262. name: "Back",
  32263. image: {
  32264. source: "./media/characters/icey/back.svg",
  32265. extra: 2624/2481,
  32266. bottom: 35/2659
  32267. }
  32268. },
  32269. },
  32270. [
  32271. {
  32272. name: "Normal",
  32273. height: math.unit(4 + 11/12, "feet"),
  32274. default: true
  32275. },
  32276. ]
  32277. ))
  32278. characterMakers.push(() => makeCharacter(
  32279. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32280. {
  32281. front: {
  32282. height: math.unit(100, "feet"),
  32283. weight: math.unit(0, "lb"),
  32284. name: "Front",
  32285. image: {
  32286. source: "./media/characters/smile/front.svg",
  32287. extra: 2983/2912,
  32288. bottom: 162/3145
  32289. }
  32290. },
  32291. back: {
  32292. height: math.unit(100, "feet"),
  32293. weight: math.unit(0, "lb"),
  32294. name: "Back",
  32295. image: {
  32296. source: "./media/characters/smile/back.svg",
  32297. extra: 3143/3031,
  32298. bottom: 91/3234
  32299. }
  32300. },
  32301. head: {
  32302. height: math.unit(26.3, "feet"),
  32303. weight: math.unit(0, "lb"),
  32304. name: "Head",
  32305. image: {
  32306. source: "./media/characters/smile/head.svg"
  32307. }
  32308. },
  32309. collar: {
  32310. height: math.unit(5.3, "feet"),
  32311. weight: math.unit(0, "lb"),
  32312. name: "Collar",
  32313. image: {
  32314. source: "./media/characters/smile/collar.svg"
  32315. }
  32316. },
  32317. },
  32318. [
  32319. {
  32320. name: "Macro",
  32321. height: math.unit(100, "feet"),
  32322. default: true
  32323. },
  32324. ]
  32325. ))
  32326. characterMakers.push(() => makeCharacter(
  32327. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32328. {
  32329. dragon: {
  32330. height: math.unit(26, "feet"),
  32331. weight: math.unit(36, "tons"),
  32332. name: "Dragon",
  32333. image: {
  32334. source: "./media/characters/arimphae/dragon.svg",
  32335. extra: 1574/983,
  32336. bottom: 357/1931
  32337. }
  32338. },
  32339. drake: {
  32340. height: math.unit(9, "feet"),
  32341. weight: math.unit(1.5, "tons"),
  32342. name: "Drake",
  32343. image: {
  32344. source: "./media/characters/arimphae/drake.svg",
  32345. extra: 1120/925,
  32346. bottom: 435/1555
  32347. }
  32348. },
  32349. },
  32350. [
  32351. {
  32352. name: "Small",
  32353. height: math.unit(26*5/9, "feet")
  32354. },
  32355. {
  32356. name: "Normal",
  32357. height: math.unit(26, "feet"),
  32358. default: true
  32359. },
  32360. ]
  32361. ))
  32362. characterMakers.push(() => makeCharacter(
  32363. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32364. {
  32365. front: {
  32366. height: math.unit(8 + 9/12, "feet"),
  32367. name: "Front",
  32368. image: {
  32369. source: "./media/characters/xander/front.svg",
  32370. extra: 1237/974,
  32371. bottom: 94/1331
  32372. }
  32373. },
  32374. },
  32375. [
  32376. {
  32377. name: "Normal",
  32378. height: math.unit(8 + 9/12, "feet"),
  32379. default: true
  32380. },
  32381. {
  32382. name: "Gaze Grabber",
  32383. height: math.unit(13 + 8/12, "feet")
  32384. },
  32385. {
  32386. name: "Jaw Dropper",
  32387. height: math.unit(27, "feet")
  32388. },
  32389. {
  32390. name: "Show Stopper",
  32391. height: math.unit(136, "feet")
  32392. },
  32393. {
  32394. name: "Superstar",
  32395. height: math.unit(1.9e6, "miles")
  32396. },
  32397. ]
  32398. ))
  32399. characterMakers.push(() => makeCharacter(
  32400. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32401. {
  32402. side: {
  32403. height: math.unit(2100, "feet"),
  32404. name: "Side",
  32405. image: {
  32406. source: "./media/characters/osiris/side.svg",
  32407. extra: 1105/939,
  32408. bottom: 167/1272
  32409. }
  32410. },
  32411. },
  32412. [
  32413. {
  32414. name: "Macro",
  32415. height: math.unit(2100, "feet"),
  32416. default: true
  32417. },
  32418. ]
  32419. ))
  32420. characterMakers.push(() => makeCharacter(
  32421. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32422. {
  32423. front: {
  32424. height: math.unit(6 + 8/12, "feet"),
  32425. weight: math.unit(225, "lb"),
  32426. name: "Front",
  32427. image: {
  32428. source: "./media/characters/rhys-londe/front.svg",
  32429. extra: 2258/2141,
  32430. bottom: 188/2446
  32431. }
  32432. },
  32433. back: {
  32434. height: math.unit(6 + 8/12, "feet"),
  32435. weight: math.unit(225, "lb"),
  32436. name: "Back",
  32437. image: {
  32438. source: "./media/characters/rhys-londe/back.svg",
  32439. extra: 2237/2137,
  32440. bottom: 63/2300
  32441. }
  32442. },
  32443. frontNsfw: {
  32444. height: math.unit(6 + 8/12, "feet"),
  32445. weight: math.unit(225, "lb"),
  32446. name: "Front (NSFW)",
  32447. image: {
  32448. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32449. extra: 2258/2141,
  32450. bottom: 188/2446
  32451. }
  32452. },
  32453. backNsfw: {
  32454. height: math.unit(6 + 8/12, "feet"),
  32455. weight: math.unit(225, "lb"),
  32456. name: "Back (NSFW)",
  32457. image: {
  32458. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32459. extra: 2237/2137,
  32460. bottom: 63/2300
  32461. }
  32462. },
  32463. dick: {
  32464. height: math.unit(30, "inches"),
  32465. name: "Dick",
  32466. image: {
  32467. source: "./media/characters/rhys-londe/dick.svg"
  32468. }
  32469. },
  32470. maw: {
  32471. height: math.unit(1.6, "feet"),
  32472. name: "Maw",
  32473. image: {
  32474. source: "./media/characters/rhys-londe/maw.svg"
  32475. }
  32476. },
  32477. },
  32478. [
  32479. {
  32480. name: "Normal",
  32481. height: math.unit(6 + 8/12, "feet"),
  32482. default: true
  32483. },
  32484. ]
  32485. ))
  32486. characterMakers.push(() => makeCharacter(
  32487. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32488. {
  32489. front: {
  32490. height: math.unit(3 + 10/12, "feet"),
  32491. weight: math.unit(90, "lb"),
  32492. name: "Front",
  32493. image: {
  32494. source: "./media/characters/taivas-ensim/front.svg",
  32495. extra: 1327/1216,
  32496. bottom: 96/1423
  32497. }
  32498. },
  32499. back: {
  32500. height: math.unit(3 + 10/12, "feet"),
  32501. weight: math.unit(90, "lb"),
  32502. name: "Back",
  32503. image: {
  32504. source: "./media/characters/taivas-ensim/back.svg",
  32505. extra: 1355/1247,
  32506. bottom: 11/1366
  32507. }
  32508. },
  32509. frontNsfw: {
  32510. height: math.unit(3 + 10/12, "feet"),
  32511. weight: math.unit(90, "lb"),
  32512. name: "Front (NSFW)",
  32513. image: {
  32514. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32515. extra: 1327/1216,
  32516. bottom: 96/1423
  32517. }
  32518. },
  32519. backNsfw: {
  32520. height: math.unit(3 + 10/12, "feet"),
  32521. weight: math.unit(90, "lb"),
  32522. name: "Back (NSFW)",
  32523. image: {
  32524. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32525. extra: 1355/1247,
  32526. bottom: 11/1366
  32527. }
  32528. },
  32529. },
  32530. [
  32531. {
  32532. name: "Normal",
  32533. height: math.unit(3 + 10/12, "feet"),
  32534. default: true
  32535. },
  32536. ]
  32537. ))
  32538. characterMakers.push(() => makeCharacter(
  32539. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32540. {
  32541. front: {
  32542. height: math.unit(9 + 6/12, "feet"),
  32543. weight: math.unit(940, "lb"),
  32544. name: "Front",
  32545. image: {
  32546. source: "./media/characters/byliss/front.svg",
  32547. extra: 1327/1290,
  32548. bottom: 82/1409
  32549. }
  32550. },
  32551. back: {
  32552. height: math.unit(9 + 6/12, "feet"),
  32553. weight: math.unit(940, "lb"),
  32554. name: "Back",
  32555. image: {
  32556. source: "./media/characters/byliss/back.svg",
  32557. extra: 1376/1349,
  32558. bottom: 9/1385
  32559. }
  32560. },
  32561. frontNsfw: {
  32562. height: math.unit(9 + 6/12, "feet"),
  32563. weight: math.unit(940, "lb"),
  32564. name: "Front (NSFW)",
  32565. image: {
  32566. source: "./media/characters/byliss/front-nsfw.svg",
  32567. extra: 1327/1290,
  32568. bottom: 82/1409
  32569. }
  32570. },
  32571. backNsfw: {
  32572. height: math.unit(9 + 6/12, "feet"),
  32573. weight: math.unit(940, "lb"),
  32574. name: "Back (NSFW)",
  32575. image: {
  32576. source: "./media/characters/byliss/back-nsfw.svg",
  32577. extra: 1376/1349,
  32578. bottom: 9/1385
  32579. }
  32580. },
  32581. },
  32582. [
  32583. {
  32584. name: "Normal",
  32585. height: math.unit(9 + 6/12, "feet"),
  32586. default: true
  32587. },
  32588. ]
  32589. ))
  32590. characterMakers.push(() => makeCharacter(
  32591. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32592. {
  32593. front: {
  32594. height: math.unit(5 + 2/12, "feet"),
  32595. weight: math.unit(200, "lb"),
  32596. name: "Front",
  32597. image: {
  32598. source: "./media/characters/noraly/front.svg",
  32599. extra: 4985/4773,
  32600. bottom: 150/5135
  32601. }
  32602. },
  32603. full: {
  32604. height: math.unit(5 + 2/12, "feet"),
  32605. weight: math.unit(164, "lb"),
  32606. name: "Full",
  32607. image: {
  32608. source: "./media/characters/noraly/full.svg",
  32609. extra: 1114/1059,
  32610. bottom: 35/1149
  32611. }
  32612. },
  32613. fuller: {
  32614. height: math.unit(5 + 2/12, "feet"),
  32615. weight: math.unit(230, "lb"),
  32616. name: "Fuller",
  32617. image: {
  32618. source: "./media/characters/noraly/fuller.svg",
  32619. extra: 1114/1059,
  32620. bottom: 35/1149
  32621. }
  32622. },
  32623. fullest: {
  32624. height: math.unit(5 + 2/12, "feet"),
  32625. weight: math.unit(300, "lb"),
  32626. name: "Fullest",
  32627. image: {
  32628. source: "./media/characters/noraly/fullest.svg",
  32629. extra: 1114/1059,
  32630. bottom: 35/1149
  32631. }
  32632. },
  32633. },
  32634. [
  32635. {
  32636. name: "Normal",
  32637. height: math.unit(5 + 2/12, "feet"),
  32638. default: true
  32639. },
  32640. ]
  32641. ))
  32642. characterMakers.push(() => makeCharacter(
  32643. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32644. {
  32645. front: {
  32646. height: math.unit(5 + 2/12, "feet"),
  32647. weight: math.unit(210, "lb"),
  32648. name: "Front",
  32649. image: {
  32650. source: "./media/characters/pera/front.svg",
  32651. extra: 1560/1531,
  32652. bottom: 165/1725
  32653. }
  32654. },
  32655. back: {
  32656. height: math.unit(5 + 2/12, "feet"),
  32657. weight: math.unit(210, "lb"),
  32658. name: "Back",
  32659. image: {
  32660. source: "./media/characters/pera/back.svg",
  32661. extra: 1523/1493,
  32662. bottom: 152/1675
  32663. }
  32664. },
  32665. dick: {
  32666. height: math.unit(2.4, "feet"),
  32667. name: "Dick",
  32668. image: {
  32669. source: "./media/characters/pera/dick.svg"
  32670. }
  32671. },
  32672. },
  32673. [
  32674. {
  32675. name: "Normal",
  32676. height: math.unit(5 + 2/12, "feet"),
  32677. default: true
  32678. },
  32679. ]
  32680. ))
  32681. characterMakers.push(() => makeCharacter(
  32682. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32683. {
  32684. front: {
  32685. height: math.unit(12, "feet"),
  32686. weight: math.unit(3200, "lb"),
  32687. name: "Front",
  32688. image: {
  32689. source: "./media/characters/julian/front.svg",
  32690. extra: 2962/2701,
  32691. bottom: 184/3146
  32692. }
  32693. },
  32694. maw: {
  32695. height: math.unit(5.35, "feet"),
  32696. name: "Maw",
  32697. image: {
  32698. source: "./media/characters/julian/maw.svg"
  32699. }
  32700. },
  32701. paw: {
  32702. height: math.unit(3.07, "feet"),
  32703. name: "Paw",
  32704. image: {
  32705. source: "./media/characters/julian/paw.svg"
  32706. }
  32707. },
  32708. },
  32709. [
  32710. {
  32711. name: "Default",
  32712. height: math.unit(12, "feet"),
  32713. default: true
  32714. },
  32715. {
  32716. name: "Big",
  32717. height: math.unit(50, "feet")
  32718. },
  32719. {
  32720. name: "Really Big",
  32721. height: math.unit(1, "mile")
  32722. },
  32723. {
  32724. name: "Extremely Big",
  32725. height: math.unit(100, "miles")
  32726. },
  32727. {
  32728. name: "Planet Hugger",
  32729. height: math.unit(200, "megameters")
  32730. },
  32731. {
  32732. name: "Unreasonably Big",
  32733. height: math.unit(1e300, "meters")
  32734. },
  32735. ]
  32736. ))
  32737. characterMakers.push(() => makeCharacter(
  32738. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32739. {
  32740. solgooleo: {
  32741. height: math.unit(4, "meters"),
  32742. weight: math.unit(6000*1.5, "kg"),
  32743. volume: math.unit(6000, "liters"),
  32744. name: "Solgooleo",
  32745. image: {
  32746. source: "./media/characters/pi/solgooleo.svg",
  32747. extra: 388/331,
  32748. bottom: 29/417
  32749. }
  32750. },
  32751. },
  32752. [
  32753. {
  32754. name: "Normal",
  32755. height: math.unit(4, "meters"),
  32756. default: true
  32757. },
  32758. ]
  32759. ))
  32760. characterMakers.push(() => makeCharacter(
  32761. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32762. {
  32763. front: {
  32764. height: math.unit(8, "feet"),
  32765. weight: math.unit(4, "tons"),
  32766. name: "Front",
  32767. image: {
  32768. source: "./media/characters/shaun/front.svg",
  32769. extra: 503/495,
  32770. bottom: 20/523
  32771. }
  32772. },
  32773. back: {
  32774. height: math.unit(8, "feet"),
  32775. weight: math.unit(4, "tons"),
  32776. name: "Back",
  32777. image: {
  32778. source: "./media/characters/shaun/back.svg",
  32779. extra: 487/480,
  32780. bottom: 20/507
  32781. }
  32782. },
  32783. },
  32784. [
  32785. {
  32786. name: "Lorg",
  32787. height: math.unit(8, "feet"),
  32788. default: true
  32789. },
  32790. ]
  32791. ))
  32792. characterMakers.push(() => makeCharacter(
  32793. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32794. {
  32795. front: {
  32796. height: math.unit(7, "feet"),
  32797. name: "Front",
  32798. image: {
  32799. source: "./media/characters/sini/front.svg",
  32800. extra: 726/678,
  32801. bottom: 35/761
  32802. }
  32803. },
  32804. back: {
  32805. height: math.unit(7, "feet"),
  32806. name: "Back",
  32807. image: {
  32808. source: "./media/characters/sini/back.svg",
  32809. extra: 743/701,
  32810. bottom: 12/755
  32811. }
  32812. },
  32813. mawAnthro: {
  32814. height: math.unit(2.14, "feet"),
  32815. name: "Maw (Anthro)",
  32816. image: {
  32817. source: "./media/characters/sini/maw-anthro.svg"
  32818. }
  32819. },
  32820. dick: {
  32821. height: math.unit(1.45, "feet"),
  32822. name: "Dick (Anthro)",
  32823. image: {
  32824. source: "./media/characters/sini/dick-anthro.svg"
  32825. }
  32826. },
  32827. feral: {
  32828. height: math.unit(16, "feet"),
  32829. name: "Feral",
  32830. image: {
  32831. source: "./media/characters/sini/feral.svg",
  32832. extra: 814/605,
  32833. bottom: 11/825
  32834. }
  32835. },
  32836. mawFeral: {
  32837. height: math.unit(5.66, "feet"),
  32838. name: "Maw-feral",
  32839. image: {
  32840. source: "./media/characters/sini/maw-feral.svg"
  32841. }
  32842. },
  32843. footFeral: {
  32844. height: math.unit(5.17, "feet"),
  32845. name: "Foot-feral",
  32846. image: {
  32847. source: "./media/characters/sini/foot-feral.svg"
  32848. }
  32849. },
  32850. },
  32851. [
  32852. {
  32853. name: "Normal",
  32854. height: math.unit(7, "feet"),
  32855. default: true
  32856. },
  32857. ]
  32858. ))
  32859. characterMakers.push(() => makeCharacter(
  32860. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32861. {
  32862. side: {
  32863. height: math.unit(13, "meters"),
  32864. weight: math.unit(9072, "kg"),
  32865. name: "Side",
  32866. image: {
  32867. source: "./media/characters/raylldo/side.svg",
  32868. extra: 403/344,
  32869. bottom: 42/445
  32870. }
  32871. },
  32872. leaping: {
  32873. height: math.unit(12.3, "meters"),
  32874. weight: math.unit(9072, "kg"),
  32875. name: "Leaping",
  32876. image: {
  32877. source: "./media/characters/raylldo/leaping.svg",
  32878. extra: 470/249,
  32879. bottom: 13/483
  32880. }
  32881. },
  32882. flying: {
  32883. height: math.unit(18, "meters"),
  32884. weight: math.unit(9072, "kg"),
  32885. name: "Flying",
  32886. image: {
  32887. source: "./media/characters/raylldo/flying.svg"
  32888. }
  32889. },
  32890. head: {
  32891. height: math.unit(5.85, "meters"),
  32892. name: "Head",
  32893. image: {
  32894. source: "./media/characters/raylldo/head.svg"
  32895. }
  32896. },
  32897. maw: {
  32898. height: math.unit(5.32, "meters"),
  32899. name: "Maw",
  32900. image: {
  32901. source: "./media/characters/raylldo/maw.svg"
  32902. }
  32903. },
  32904. eye: {
  32905. height: math.unit(0.54, "meters"),
  32906. name: "Eye",
  32907. image: {
  32908. source: "./media/characters/raylldo/eye.svg"
  32909. }
  32910. },
  32911. },
  32912. [
  32913. {
  32914. name: "Normal",
  32915. height: math.unit(13, "meters"),
  32916. default: true
  32917. },
  32918. ]
  32919. ))
  32920. characterMakers.push(() => makeCharacter(
  32921. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32922. {
  32923. anthroFront: {
  32924. height: math.unit(9, "feet"),
  32925. weight: math.unit(600, "lb"),
  32926. name: "Anthro (Front)",
  32927. image: {
  32928. source: "./media/characters/glint/anthro-front.svg",
  32929. extra: 1097/1018,
  32930. bottom: 28/1125
  32931. }
  32932. },
  32933. anthroBack: {
  32934. height: math.unit(9, "feet"),
  32935. weight: math.unit(600, "lb"),
  32936. name: "Anthro (Back)",
  32937. image: {
  32938. source: "./media/characters/glint/anthro-back.svg",
  32939. extra: 1154/997,
  32940. bottom: 36/1190
  32941. }
  32942. },
  32943. feral: {
  32944. height: math.unit(11, "feet"),
  32945. weight: math.unit(50000, "lb"),
  32946. name: "Feral",
  32947. image: {
  32948. source: "./media/characters/glint/feral.svg",
  32949. extra: 3035/1585,
  32950. bottom: 1169/4204
  32951. }
  32952. },
  32953. dickAnthro: {
  32954. height: math.unit(0.7, "meters"),
  32955. name: "Dick (Anthro)",
  32956. image: {
  32957. source: "./media/characters/glint/dick-anthro.svg"
  32958. }
  32959. },
  32960. dickFeral: {
  32961. height: math.unit(2.65, "meters"),
  32962. name: "Dick (Feral)",
  32963. image: {
  32964. source: "./media/characters/glint/dick-feral.svg"
  32965. }
  32966. },
  32967. slitHidden: {
  32968. height: math.unit(5.85, "meters"),
  32969. name: "Slit (Hidden)",
  32970. image: {
  32971. source: "./media/characters/glint/slit-hidden.svg"
  32972. }
  32973. },
  32974. slitErect: {
  32975. height: math.unit(5.85, "meters"),
  32976. name: "Slit (Erect)",
  32977. image: {
  32978. source: "./media/characters/glint/slit-erect.svg"
  32979. }
  32980. },
  32981. mawAnthro: {
  32982. height: math.unit(0.63, "meters"),
  32983. name: "Maw (Anthro)",
  32984. image: {
  32985. source: "./media/characters/glint/maw.svg"
  32986. }
  32987. },
  32988. mawFeral: {
  32989. height: math.unit(2.89, "meters"),
  32990. name: "Maw (Feral)",
  32991. image: {
  32992. source: "./media/characters/glint/maw.svg"
  32993. }
  32994. },
  32995. },
  32996. [
  32997. {
  32998. name: "Normal",
  32999. height: math.unit(9, "feet"),
  33000. default: true
  33001. },
  33002. ]
  33003. ))
  33004. characterMakers.push(() => makeCharacter(
  33005. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33006. {
  33007. side: {
  33008. height: math.unit(15, "feet"),
  33009. weight: math.unit(5000, "kg"),
  33010. name: "Side",
  33011. image: {
  33012. source: "./media/characters/kairne/side.svg",
  33013. extra: 979/811,
  33014. bottom: 13/992
  33015. }
  33016. },
  33017. front: {
  33018. height: math.unit(15, "feet"),
  33019. weight: math.unit(5000, "kg"),
  33020. name: "Front",
  33021. image: {
  33022. source: "./media/characters/kairne/front.svg",
  33023. extra: 908/814,
  33024. bottom: 26/934
  33025. }
  33026. },
  33027. sideNsfw: {
  33028. height: math.unit(15, "feet"),
  33029. weight: math.unit(5000, "kg"),
  33030. name: "Side (NSFW)",
  33031. image: {
  33032. source: "./media/characters/kairne/side-nsfw.svg",
  33033. extra: 979/811,
  33034. bottom: 13/992
  33035. }
  33036. },
  33037. frontNsfw: {
  33038. height: math.unit(15, "feet"),
  33039. weight: math.unit(5000, "kg"),
  33040. name: "Front (NSFW)",
  33041. image: {
  33042. source: "./media/characters/kairne/front-nsfw.svg",
  33043. extra: 908/814,
  33044. bottom: 26/934
  33045. }
  33046. },
  33047. dickCaged: {
  33048. height: math.unit(0.65, "meters"),
  33049. name: "Dick-caged",
  33050. image: {
  33051. source: "./media/characters/kairne/dick-caged.svg"
  33052. }
  33053. },
  33054. dick: {
  33055. height: math.unit(0.79, "meters"),
  33056. name: "Dick",
  33057. image: {
  33058. source: "./media/characters/kairne/dick.svg"
  33059. }
  33060. },
  33061. genitals: {
  33062. height: math.unit(1.29, "meters"),
  33063. name: "Genitals",
  33064. image: {
  33065. source: "./media/characters/kairne/genitals.svg"
  33066. }
  33067. },
  33068. maw: {
  33069. height: math.unit(1.73, "meters"),
  33070. name: "Maw",
  33071. image: {
  33072. source: "./media/characters/kairne/maw.svg"
  33073. }
  33074. },
  33075. },
  33076. [
  33077. {
  33078. name: "Normal",
  33079. height: math.unit(15, "feet"),
  33080. default: true
  33081. },
  33082. ]
  33083. ))
  33084. characterMakers.push(() => makeCharacter(
  33085. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33086. {
  33087. front: {
  33088. height: math.unit(5 + 8/12, "feet"),
  33089. weight: math.unit(139, "lb"),
  33090. name: "Front",
  33091. image: {
  33092. source: "./media/characters/biscuit-jackal/front.svg",
  33093. extra: 2106/1961,
  33094. bottom: 58/2164
  33095. }
  33096. },
  33097. back: {
  33098. height: math.unit(5 + 8/12, "feet"),
  33099. weight: math.unit(139, "lb"),
  33100. name: "Back",
  33101. image: {
  33102. source: "./media/characters/biscuit-jackal/back.svg",
  33103. extra: 2132/1976,
  33104. bottom: 57/2189
  33105. }
  33106. },
  33107. werejackal: {
  33108. height: math.unit(6 + 3/12, "feet"),
  33109. weight: math.unit(188, "lb"),
  33110. name: "Werejackal",
  33111. image: {
  33112. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33113. extra: 2373/2178,
  33114. bottom: 53/2426
  33115. }
  33116. },
  33117. },
  33118. [
  33119. {
  33120. name: "Normal",
  33121. height: math.unit(5 + 8/12, "feet"),
  33122. default: true
  33123. },
  33124. ]
  33125. ))
  33126. characterMakers.push(() => makeCharacter(
  33127. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33128. {
  33129. front: {
  33130. height: math.unit(140, "cm"),
  33131. weight: math.unit(45, "kg"),
  33132. name: "Front",
  33133. image: {
  33134. source: "./media/characters/tayra-white/front.svg",
  33135. extra: 2229/2192,
  33136. bottom: 75/2304
  33137. }
  33138. },
  33139. },
  33140. [
  33141. {
  33142. name: "Normal",
  33143. height: math.unit(140, "cm"),
  33144. default: true
  33145. },
  33146. ]
  33147. ))
  33148. characterMakers.push(() => makeCharacter(
  33149. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33150. {
  33151. front: {
  33152. height: math.unit(4 + 5/12, "feet"),
  33153. name: "Front",
  33154. image: {
  33155. source: "./media/characters/scoop/front.svg",
  33156. extra: 1257/1136,
  33157. bottom: 69/1326
  33158. }
  33159. },
  33160. back: {
  33161. height: math.unit(4 + 5/12, "feet"),
  33162. name: "Back",
  33163. image: {
  33164. source: "./media/characters/scoop/back.svg",
  33165. extra: 1321/1152,
  33166. bottom: 32/1353
  33167. }
  33168. },
  33169. maw: {
  33170. height: math.unit(0.68, "feet"),
  33171. name: "Maw",
  33172. image: {
  33173. source: "./media/characters/scoop/maw.svg"
  33174. }
  33175. },
  33176. },
  33177. [
  33178. {
  33179. name: "Really Small",
  33180. height: math.unit(1, "mm")
  33181. },
  33182. {
  33183. name: "Micro",
  33184. height: math.unit(1, "inch")
  33185. },
  33186. {
  33187. name: "Normal",
  33188. height: math.unit(4 + 5/12, "feet"),
  33189. default: true
  33190. },
  33191. {
  33192. name: "Macro",
  33193. height: math.unit(200, "feet")
  33194. },
  33195. {
  33196. name: "Megamacro",
  33197. height: math.unit(3240, "feet")
  33198. },
  33199. {
  33200. name: "Teramacro",
  33201. height: math.unit(2500, "miles")
  33202. },
  33203. ]
  33204. ))
  33205. characterMakers.push(() => makeCharacter(
  33206. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33207. {
  33208. front: {
  33209. height: math.unit(15 + 7/12, "feet"),
  33210. name: "Front",
  33211. image: {
  33212. source: "./media/characters/saphinara/front.svg",
  33213. extra: 604/546,
  33214. bottom: 19/623
  33215. }
  33216. },
  33217. side: {
  33218. height: math.unit(15 + 7/12, "feet"),
  33219. name: "Side",
  33220. image: {
  33221. source: "./media/characters/saphinara/side.svg",
  33222. extra: 605/547,
  33223. bottom: 6/611
  33224. }
  33225. },
  33226. back: {
  33227. height: math.unit(15 + 7/12, "feet"),
  33228. name: "Back",
  33229. image: {
  33230. source: "./media/characters/saphinara/back.svg",
  33231. extra: 591/531,
  33232. bottom: 13/604
  33233. }
  33234. },
  33235. frontTail: {
  33236. height: math.unit(15 + 7/12, "feet"),
  33237. name: "Front (Full Tail)",
  33238. image: {
  33239. source: "./media/characters/saphinara/front-tail.svg",
  33240. extra: 748/547,
  33241. bottom: 66/814
  33242. }
  33243. },
  33244. },
  33245. [
  33246. {
  33247. name: "Normal",
  33248. height: math.unit(15 + 7/12, "feet"),
  33249. default: true
  33250. },
  33251. {
  33252. name: "Angry",
  33253. height: math.unit(30 + 6/12, "feet")
  33254. },
  33255. {
  33256. name: "Enraged",
  33257. height: math.unit(102 + 1/12, "feet")
  33258. },
  33259. ]
  33260. ))
  33261. characterMakers.push(() => makeCharacter(
  33262. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33263. {
  33264. front: {
  33265. height: math.unit(6 + 8/12, "feet"),
  33266. weight: math.unit(300, "lb"),
  33267. name: "Front",
  33268. image: {
  33269. source: "./media/characters/jrain/front.svg",
  33270. extra: 3039/2865,
  33271. bottom: 399/3438
  33272. }
  33273. },
  33274. back: {
  33275. height: math.unit(6 + 8/12, "feet"),
  33276. weight: math.unit(300, "lb"),
  33277. name: "Back",
  33278. image: {
  33279. source: "./media/characters/jrain/back.svg",
  33280. extra: 3089/2938,
  33281. bottom: 172/3261
  33282. }
  33283. },
  33284. head: {
  33285. height: math.unit(2.14, "feet"),
  33286. name: "Head",
  33287. image: {
  33288. source: "./media/characters/jrain/head.svg"
  33289. }
  33290. },
  33291. maw: {
  33292. height: math.unit(1.77, "feet"),
  33293. name: "Maw",
  33294. image: {
  33295. source: "./media/characters/jrain/maw.svg"
  33296. }
  33297. },
  33298. leftHand: {
  33299. height: math.unit(1.1, "feet"),
  33300. name: "Left Hand",
  33301. image: {
  33302. source: "./media/characters/jrain/left-hand.svg"
  33303. }
  33304. },
  33305. rightHand: {
  33306. height: math.unit(1.1, "feet"),
  33307. name: "Right Hand",
  33308. image: {
  33309. source: "./media/characters/jrain/right-hand.svg"
  33310. }
  33311. },
  33312. eye: {
  33313. height: math.unit(0.35, "feet"),
  33314. name: "Eye",
  33315. image: {
  33316. source: "./media/characters/jrain/eye.svg"
  33317. }
  33318. },
  33319. },
  33320. [
  33321. {
  33322. name: "Normal",
  33323. height: math.unit(6 + 8/12, "feet"),
  33324. default: true
  33325. },
  33326. {
  33327. name: "Casually Large",
  33328. height: math.unit(25, "feet")
  33329. },
  33330. {
  33331. name: "Giant",
  33332. height: math.unit(100, "feet")
  33333. },
  33334. {
  33335. name: "Kaiju",
  33336. height: math.unit(300, "feet")
  33337. },
  33338. ]
  33339. ))
  33340. characterMakers.push(() => makeCharacter(
  33341. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33342. {
  33343. dragon: {
  33344. height: math.unit(5, "meters"),
  33345. name: "Dragon",
  33346. image: {
  33347. source: "./media/characters/sabrina/dragon.svg",
  33348. extra: 3670 / 2365,
  33349. bottom: 333 / 4003
  33350. }
  33351. },
  33352. gryphon: {
  33353. height: math.unit(3, "meters"),
  33354. name: "Gryphon",
  33355. image: {
  33356. source: "./media/characters/sabrina/gryphon.svg",
  33357. extra: 1576 / 945,
  33358. bottom: 71 / 1647
  33359. }
  33360. },
  33361. snake: {
  33362. height: math.unit(12, "meters"),
  33363. name: "Snake",
  33364. image: {
  33365. source: "./media/characters/sabrina/snake.svg",
  33366. extra: 1758 / 1320,
  33367. bottom: 186 / 1944
  33368. }
  33369. },
  33370. collar: {
  33371. height: math.unit(1.86, "meters"),
  33372. name: "Collar",
  33373. image: {
  33374. source: "./media/characters/sabrina/collar.svg"
  33375. }
  33376. },
  33377. eye: {
  33378. height: math.unit(0.53, "meters"),
  33379. name: "Eye",
  33380. image: {
  33381. source: "./media/characters/sabrina/eye.svg"
  33382. }
  33383. },
  33384. foot: {
  33385. height: math.unit(1.86, "meters"),
  33386. name: "Foot",
  33387. image: {
  33388. source: "./media/characters/sabrina/foot.svg"
  33389. }
  33390. },
  33391. hand: {
  33392. height: math.unit(1.32, "meters"),
  33393. name: "Hand",
  33394. image: {
  33395. source: "./media/characters/sabrina/hand.svg"
  33396. }
  33397. },
  33398. head: {
  33399. height: math.unit(2.44, "meters"),
  33400. name: "Head",
  33401. image: {
  33402. source: "./media/characters/sabrina/head.svg"
  33403. }
  33404. },
  33405. headAngry: {
  33406. height: math.unit(2.44, "meters"),
  33407. name: "Head (Angry))",
  33408. image: {
  33409. source: "./media/characters/sabrina/head-angry.svg"
  33410. }
  33411. },
  33412. maw: {
  33413. height: math.unit(1.65, "meters"),
  33414. name: "Maw",
  33415. image: {
  33416. source: "./media/characters/sabrina/maw.svg"
  33417. }
  33418. },
  33419. spikes: {
  33420. height: math.unit(1.69, "meters"),
  33421. name: "Spikes",
  33422. image: {
  33423. source: "./media/characters/sabrina/spikes.svg"
  33424. }
  33425. },
  33426. stomach: {
  33427. height: math.unit(1.15, "meters"),
  33428. name: "Stomach",
  33429. image: {
  33430. source: "./media/characters/sabrina/stomach.svg"
  33431. }
  33432. },
  33433. tongue: {
  33434. height: math.unit(1.27, "meters"),
  33435. name: "Tongue",
  33436. image: {
  33437. source: "./media/characters/sabrina/tongue.svg"
  33438. }
  33439. },
  33440. wingDorsal: {
  33441. height: math.unit(4.85, "meters"),
  33442. name: "Wing (Dorsal)",
  33443. image: {
  33444. source: "./media/characters/sabrina/wing-dorsal.svg"
  33445. }
  33446. },
  33447. wingVentral: {
  33448. height: math.unit(4.85, "meters"),
  33449. name: "Wing (Ventral)",
  33450. image: {
  33451. source: "./media/characters/sabrina/wing-ventral.svg"
  33452. }
  33453. },
  33454. },
  33455. [
  33456. {
  33457. name: "Normal",
  33458. height: math.unit(5, "meters"),
  33459. default: true
  33460. },
  33461. ]
  33462. ))
  33463. characterMakers.push(() => makeCharacter(
  33464. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33465. {
  33466. frontMaid: {
  33467. height: math.unit(5 + 5/12, "feet"),
  33468. weight: math.unit(130, "lb"),
  33469. name: "Front (Maid)",
  33470. image: {
  33471. source: "./media/characters/midnight-tales/front-maid.svg",
  33472. extra: 489/454,
  33473. bottom: 61/550
  33474. }
  33475. },
  33476. frontFormal: {
  33477. height: math.unit(5 + 5/12, "feet"),
  33478. weight: math.unit(130, "lb"),
  33479. name: "Front (Formal)",
  33480. image: {
  33481. source: "./media/characters/midnight-tales/front-formal.svg",
  33482. extra: 489/454,
  33483. bottom: 61/550
  33484. }
  33485. },
  33486. back: {
  33487. height: math.unit(5 + 5/12, "feet"),
  33488. weight: math.unit(130, "lb"),
  33489. name: "Back",
  33490. image: {
  33491. source: "./media/characters/midnight-tales/back.svg",
  33492. extra: 498/456,
  33493. bottom: 33/531
  33494. }
  33495. },
  33496. frontBeast: {
  33497. height: math.unit(40, "feet"),
  33498. weight: math.unit(64000, "lb"),
  33499. name: "Front (Beast)",
  33500. image: {
  33501. source: "./media/characters/midnight-tales/front-beast.svg",
  33502. extra: 927/860,
  33503. bottom: 53/980
  33504. }
  33505. },
  33506. backBeast: {
  33507. height: math.unit(40, "feet"),
  33508. weight: math.unit(64000, "lb"),
  33509. name: "Back (Beast)",
  33510. image: {
  33511. source: "./media/characters/midnight-tales/back-beast.svg",
  33512. extra: 929/855,
  33513. bottom: 16/945
  33514. }
  33515. },
  33516. footBeast: {
  33517. height: math.unit(6.7, "feet"),
  33518. name: "Foot (Beast)",
  33519. image: {
  33520. source: "./media/characters/midnight-tales/foot-beast.svg"
  33521. }
  33522. },
  33523. headBeast: {
  33524. height: math.unit(8, "feet"),
  33525. name: "Head (Beast)",
  33526. image: {
  33527. source: "./media/characters/midnight-tales/head-beast.svg"
  33528. }
  33529. },
  33530. },
  33531. [
  33532. {
  33533. name: "Normal",
  33534. height: math.unit(5 + 5 / 12, "feet"),
  33535. default: true
  33536. },
  33537. {
  33538. name: "Macro",
  33539. height: math.unit(25, "feet")
  33540. },
  33541. ]
  33542. ))
  33543. characterMakers.push(() => makeCharacter(
  33544. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33545. {
  33546. front: {
  33547. height: math.unit(5 + 10/12, "feet"),
  33548. name: "Front",
  33549. image: {
  33550. source: "./media/characters/argon/front.svg",
  33551. extra: 2009/1935,
  33552. bottom: 118/2127
  33553. }
  33554. },
  33555. back: {
  33556. height: math.unit(5 + 10/12, "feet"),
  33557. name: "Back",
  33558. image: {
  33559. source: "./media/characters/argon/back.svg",
  33560. extra: 2047/1992,
  33561. bottom: 20/2067
  33562. }
  33563. },
  33564. frontDressed: {
  33565. height: math.unit(5 + 10/12, "feet"),
  33566. name: "Front (Dressed)",
  33567. image: {
  33568. source: "./media/characters/argon/front-dressed.svg",
  33569. extra: 2009/1935,
  33570. bottom: 118/2127
  33571. }
  33572. },
  33573. },
  33574. [
  33575. {
  33576. name: "Normal",
  33577. height: math.unit(5 + 10/12, "feet"),
  33578. default: true
  33579. },
  33580. ]
  33581. ))
  33582. characterMakers.push(() => makeCharacter(
  33583. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33584. {
  33585. front: {
  33586. height: math.unit(8 + 6/12, "feet"),
  33587. weight: math.unit(1150, "lb"),
  33588. name: "Front",
  33589. image: {
  33590. source: "./media/characters/kichi/front.svg",
  33591. extra: 1267/1164,
  33592. bottom: 61/1328
  33593. }
  33594. },
  33595. back: {
  33596. height: math.unit(8 + 6/12, "feet"),
  33597. weight: math.unit(1150, "lb"),
  33598. name: "Back",
  33599. image: {
  33600. source: "./media/characters/kichi/back.svg",
  33601. extra: 1273/1166,
  33602. bottom: 33/1306
  33603. }
  33604. },
  33605. },
  33606. [
  33607. {
  33608. name: "Normal",
  33609. height: math.unit(8 + 6/12, "feet"),
  33610. default: true
  33611. },
  33612. ]
  33613. ))
  33614. characterMakers.push(() => makeCharacter(
  33615. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33616. {
  33617. front: {
  33618. height: math.unit(6, "feet"),
  33619. weight: math.unit(210, "lb"),
  33620. name: "Front",
  33621. image: {
  33622. source: "./media/characters/manetel-greyscale/front.svg",
  33623. extra: 350/312,
  33624. bottom: 8/358
  33625. }
  33626. },
  33627. },
  33628. [
  33629. {
  33630. name: "Micro",
  33631. height: math.unit(2, "inches")
  33632. },
  33633. {
  33634. name: "Normal",
  33635. height: math.unit(6, "feet"),
  33636. default: true
  33637. },
  33638. {
  33639. name: "Minimacro",
  33640. height: math.unit(17, "feet")
  33641. },
  33642. {
  33643. name: "Macro",
  33644. height: math.unit(117, "feet")
  33645. },
  33646. ]
  33647. ))
  33648. characterMakers.push(() => makeCharacter(
  33649. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33650. {
  33651. side: {
  33652. height: math.unit(5 + 1/12, "feet"),
  33653. weight: math.unit(418, "lb"),
  33654. name: "Side",
  33655. image: {
  33656. source: "./media/characters/softpurr/side.svg",
  33657. extra: 1993/1945,
  33658. bottom: 134/2127
  33659. }
  33660. },
  33661. front: {
  33662. height: math.unit(5 + 1/12, "feet"),
  33663. weight: math.unit(418, "lb"),
  33664. name: "Front",
  33665. image: {
  33666. source: "./media/characters/softpurr/front.svg",
  33667. extra: 1950/1856,
  33668. bottom: 174/2124
  33669. }
  33670. },
  33671. paw: {
  33672. height: math.unit(1, "feet"),
  33673. name: "Paw",
  33674. image: {
  33675. source: "./media/characters/softpurr/paw.svg"
  33676. }
  33677. },
  33678. },
  33679. [
  33680. {
  33681. name: "Normal",
  33682. height: math.unit(5 + 1/12, "feet"),
  33683. default: true
  33684. },
  33685. ]
  33686. ))
  33687. characterMakers.push(() => makeCharacter(
  33688. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33689. {
  33690. front: {
  33691. height: math.unit(260, "meters"),
  33692. name: "Front",
  33693. image: {
  33694. source: "./media/characters/anahita/front.svg",
  33695. extra: 665/635,
  33696. bottom: 89/754
  33697. }
  33698. },
  33699. },
  33700. [
  33701. {
  33702. name: "Macro",
  33703. height: math.unit(260, "meters"),
  33704. default: true
  33705. },
  33706. ]
  33707. ))
  33708. characterMakers.push(() => makeCharacter(
  33709. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33710. {
  33711. front: {
  33712. height: math.unit(4 + 10/12, "feet"),
  33713. weight: math.unit(160, "lb"),
  33714. name: "Front",
  33715. image: {
  33716. source: "./media/characters/chip-mouse/front.svg",
  33717. extra: 3528/3408,
  33718. bottom: 0/3528
  33719. }
  33720. },
  33721. frontNsfw: {
  33722. height: math.unit(4 + 10/12, "feet"),
  33723. weight: math.unit(160, "lb"),
  33724. name: "Front (NSFW)",
  33725. image: {
  33726. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33727. extra: 3528/3408,
  33728. bottom: 0/3528
  33729. }
  33730. },
  33731. },
  33732. [
  33733. {
  33734. name: "Normal",
  33735. height: math.unit(4 + 10/12, "feet"),
  33736. default: true
  33737. },
  33738. ]
  33739. ))
  33740. characterMakers.push(() => makeCharacter(
  33741. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33742. {
  33743. side: {
  33744. height: math.unit(10, "feet"),
  33745. weight: math.unit(14000, "lb"),
  33746. name: "Side",
  33747. image: {
  33748. source: "./media/characters/kremm/side.svg",
  33749. extra: 1390/1053,
  33750. bottom: 90/1480
  33751. }
  33752. },
  33753. gut: {
  33754. height: math.unit(5.8, "feet"),
  33755. name: "Gut",
  33756. image: {
  33757. source: "./media/characters/kremm/gut.svg"
  33758. }
  33759. },
  33760. ass: {
  33761. height: math.unit(6.1, "feet"),
  33762. name: "Ass",
  33763. image: {
  33764. source: "./media/characters/kremm/ass.svg"
  33765. }
  33766. },
  33767. jaws: {
  33768. height: math.unit(2.2, "feet"),
  33769. name: "Jaws",
  33770. image: {
  33771. source: "./media/characters/kremm/jaws.svg"
  33772. }
  33773. },
  33774. dick: {
  33775. height: math.unit(4.26, "feet"),
  33776. name: "Dick",
  33777. image: {
  33778. source: "./media/characters/kremm/dick.svg"
  33779. }
  33780. },
  33781. },
  33782. [
  33783. {
  33784. name: "Normal",
  33785. height: math.unit(10, "feet"),
  33786. default: true
  33787. },
  33788. ]
  33789. ))
  33790. characterMakers.push(() => makeCharacter(
  33791. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33792. {
  33793. front: {
  33794. height: math.unit(30, "stories"),
  33795. name: "Front",
  33796. image: {
  33797. source: "./media/characters/kai/front.svg",
  33798. extra: 1892/1718,
  33799. bottom: 162/2054
  33800. }
  33801. },
  33802. },
  33803. [
  33804. {
  33805. name: "Macro",
  33806. height: math.unit(30, "stories"),
  33807. default: true
  33808. },
  33809. ]
  33810. ))
  33811. characterMakers.push(() => makeCharacter(
  33812. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33813. {
  33814. front: {
  33815. height: math.unit(6 + 4/12, "feet"),
  33816. weight: math.unit(145, "lb"),
  33817. name: "Front",
  33818. image: {
  33819. source: "./media/characters/sykes/front.svg",
  33820. extra: 1321 / 1187,
  33821. bottom: 66 / 1387
  33822. }
  33823. },
  33824. back: {
  33825. height: math.unit(6 + 4/12, "feet"),
  33826. weight: math.unit(145, "lb"),
  33827. name: "Back",
  33828. image: {
  33829. source: "./media/characters/sykes/back.svg",
  33830. extra: 1326/1181,
  33831. bottom: 31/1357
  33832. }
  33833. },
  33834. handBack: {
  33835. height: math.unit(0.9, "feet"),
  33836. name: "Hand (Back)",
  33837. image: {
  33838. source: "./media/characters/sykes/hand-back.svg"
  33839. }
  33840. },
  33841. handFront: {
  33842. height: math.unit(0.839, "feet"),
  33843. name: "Hand (Front)",
  33844. image: {
  33845. source: "./media/characters/sykes/hand-front.svg"
  33846. }
  33847. },
  33848. leftFoot: {
  33849. height: math.unit(1.2, "feet"),
  33850. name: "Foot (Left)",
  33851. image: {
  33852. source: "./media/characters/sykes/foot-left.svg"
  33853. }
  33854. },
  33855. rightFoot: {
  33856. height: math.unit(1.2, "feet"),
  33857. name: "Foot (Right)",
  33858. image: {
  33859. source: "./media/characters/sykes/foot-right.svg"
  33860. }
  33861. },
  33862. maw: {
  33863. height: math.unit(1.93, "feet"),
  33864. name: "Maw",
  33865. image: {
  33866. source: "./media/characters/sykes/maw.svg"
  33867. }
  33868. },
  33869. teeth: {
  33870. height: math.unit(0.51, "feet"),
  33871. name: "Teeth",
  33872. image: {
  33873. source: "./media/characters/sykes/teeth.svg"
  33874. }
  33875. },
  33876. tongue: {
  33877. height: math.unit(2.13, "feet"),
  33878. name: "Tongue",
  33879. image: {
  33880. source: "./media/characters/sykes/tongue.svg"
  33881. }
  33882. },
  33883. uvula: {
  33884. height: math.unit(0.16, "feet"),
  33885. name: "Uvula",
  33886. image: {
  33887. source: "./media/characters/sykes/uvula.svg"
  33888. }
  33889. },
  33890. collar: {
  33891. height: math.unit(0.287, "feet"),
  33892. name: "Collar",
  33893. image: {
  33894. source: "./media/characters/sykes/collar.svg"
  33895. }
  33896. },
  33897. },
  33898. [
  33899. {
  33900. name: "Shrunken",
  33901. height: math.unit(5, "inches")
  33902. },
  33903. {
  33904. name: "Normal",
  33905. height: math.unit(6 + 4 / 12, "feet"),
  33906. default: true
  33907. },
  33908. {
  33909. name: "Big",
  33910. height: math.unit(15, "feet")
  33911. },
  33912. ]
  33913. ))
  33914. characterMakers.push(() => makeCharacter(
  33915. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33916. {
  33917. front: {
  33918. height: math.unit(5 + 8/12, "feet"),
  33919. weight: math.unit(190, "lb"),
  33920. name: "Front",
  33921. image: {
  33922. source: "./media/characters/oven-otter/front.svg",
  33923. extra: 1809/1740,
  33924. bottom: 181/1990
  33925. }
  33926. },
  33927. back: {
  33928. height: math.unit(5 + 8/12, "feet"),
  33929. weight: math.unit(190, "lb"),
  33930. name: "Back",
  33931. image: {
  33932. source: "./media/characters/oven-otter/back.svg",
  33933. extra: 1709/1635,
  33934. bottom: 118/1827
  33935. }
  33936. },
  33937. hand: {
  33938. height: math.unit(1.07, "feet"),
  33939. name: "Hand",
  33940. image: {
  33941. source: "./media/characters/oven-otter/hand.svg"
  33942. }
  33943. },
  33944. beans: {
  33945. height: math.unit(1.74, "feet"),
  33946. name: "Beans",
  33947. image: {
  33948. source: "./media/characters/oven-otter/beans.svg"
  33949. }
  33950. },
  33951. },
  33952. [
  33953. {
  33954. name: "Micro",
  33955. height: math.unit(0.5, "inches")
  33956. },
  33957. {
  33958. name: "Normal",
  33959. height: math.unit(5 + 8/12, "feet"),
  33960. default: true
  33961. },
  33962. {
  33963. name: "Macro",
  33964. height: math.unit(250, "feet")
  33965. },
  33966. {
  33967. name: "Really High",
  33968. height: math.unit(420, "feet")
  33969. },
  33970. ]
  33971. ))
  33972. characterMakers.push(() => makeCharacter(
  33973. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33974. {
  33975. front: {
  33976. height: math.unit(5, "meters"),
  33977. weight: math.unit(292000000000000, "kg"),
  33978. name: "Front",
  33979. image: {
  33980. source: "./media/characters/devourer/front.svg",
  33981. extra: 1800/1733,
  33982. bottom: 211/2011
  33983. }
  33984. },
  33985. maw: {
  33986. height: math.unit(1.1, "meter"),
  33987. name: "Maw",
  33988. image: {
  33989. source: "./media/characters/devourer/maw.svg"
  33990. }
  33991. },
  33992. },
  33993. [
  33994. {
  33995. name: "Small",
  33996. height: math.unit(3, "meters")
  33997. },
  33998. {
  33999. name: "Large",
  34000. height: math.unit(5, "meters"),
  34001. default: true
  34002. },
  34003. ]
  34004. ))
  34005. characterMakers.push(() => makeCharacter(
  34006. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34007. {
  34008. front: {
  34009. height: math.unit(6, "feet"),
  34010. weight: math.unit(400, "lb"),
  34011. name: "Front",
  34012. image: {
  34013. source: "./media/characters/ellarby/front.svg",
  34014. extra: 1909/1763,
  34015. bottom: 80/1989
  34016. }
  34017. },
  34018. back: {
  34019. height: math.unit(6, "feet"),
  34020. weight: math.unit(400, "lb"),
  34021. name: "Back",
  34022. image: {
  34023. source: "./media/characters/ellarby/back.svg",
  34024. extra: 1914/1784,
  34025. bottom: 172/2086
  34026. }
  34027. },
  34028. },
  34029. [
  34030. {
  34031. name: "Mischief",
  34032. height: math.unit(18, "inches")
  34033. },
  34034. {
  34035. name: "Trouble",
  34036. height: math.unit(12, "feet")
  34037. },
  34038. {
  34039. name: "Havoc",
  34040. height: math.unit(200, "feet"),
  34041. default: true
  34042. },
  34043. {
  34044. name: "Pandemonium",
  34045. height: math.unit(1, "mile")
  34046. },
  34047. {
  34048. name: "Catastrophe",
  34049. height: math.unit(100, "miles")
  34050. },
  34051. ]
  34052. ))
  34053. characterMakers.push(() => makeCharacter(
  34054. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34055. {
  34056. front: {
  34057. height: math.unit(4.7, "meters"),
  34058. weight: math.unit(6500, "kg"),
  34059. name: "Front",
  34060. image: {
  34061. source: "./media/characters/vex/front.svg",
  34062. extra: 1288/1140,
  34063. bottom: 100/1388
  34064. }
  34065. },
  34066. },
  34067. [
  34068. {
  34069. name: "Normal",
  34070. height: math.unit(4.7, "meters"),
  34071. default: true
  34072. },
  34073. ]
  34074. ))
  34075. characterMakers.push(() => makeCharacter(
  34076. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34077. {
  34078. normal: {
  34079. height: math.unit(6, "feet"),
  34080. weight: math.unit(350, "lb"),
  34081. name: "Normal",
  34082. image: {
  34083. source: "./media/characters/teshy/normal.svg",
  34084. extra: 1795/1735,
  34085. bottom: 16/1811
  34086. }
  34087. },
  34088. monsterFront: {
  34089. height: math.unit(12, "feet"),
  34090. weight: math.unit(4700, "lb"),
  34091. name: "Monster (Front)",
  34092. image: {
  34093. source: "./media/characters/teshy/monster-front.svg",
  34094. extra: 2042/2034,
  34095. bottom: 128/2170
  34096. }
  34097. },
  34098. monsterSide: {
  34099. height: math.unit(12, "feet"),
  34100. weight: math.unit(4700, "lb"),
  34101. name: "Monster (Side)",
  34102. image: {
  34103. source: "./media/characters/teshy/monster-side.svg",
  34104. extra: 2067/2056,
  34105. bottom: 70/2137
  34106. }
  34107. },
  34108. monsterBack: {
  34109. height: math.unit(12, "feet"),
  34110. weight: math.unit(4700, "lb"),
  34111. name: "Monster (Back)",
  34112. image: {
  34113. source: "./media/characters/teshy/monster-back.svg",
  34114. extra: 1921/1914,
  34115. bottom: 171/2092
  34116. }
  34117. },
  34118. },
  34119. [
  34120. {
  34121. name: "Normal",
  34122. height: math.unit(6, "feet"),
  34123. default: true
  34124. },
  34125. ]
  34126. ))
  34127. characterMakers.push(() => makeCharacter(
  34128. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34129. {
  34130. front: {
  34131. height: math.unit(6, "feet"),
  34132. name: "Front",
  34133. image: {
  34134. source: "./media/characters/ramey/front.svg",
  34135. extra: 790/787,
  34136. bottom: 27/817
  34137. }
  34138. },
  34139. },
  34140. [
  34141. {
  34142. name: "Normal",
  34143. height: math.unit(6, "feet"),
  34144. default: true
  34145. },
  34146. ]
  34147. ))
  34148. characterMakers.push(() => makeCharacter(
  34149. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34150. {
  34151. front: {
  34152. height: math.unit(5 + 5/12, "feet"),
  34153. weight: math.unit(120, "lb"),
  34154. name: "Front",
  34155. image: {
  34156. source: "./media/characters/phirae/front.svg",
  34157. extra: 2491/2436,
  34158. bottom: 38/2529
  34159. }
  34160. },
  34161. },
  34162. [
  34163. {
  34164. name: "Normal",
  34165. height: math.unit(5 + 5/12, "feet"),
  34166. default: true
  34167. },
  34168. ]
  34169. ))
  34170. characterMakers.push(() => makeCharacter(
  34171. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34172. {
  34173. front: {
  34174. height: math.unit(5 + 3/12, "feet"),
  34175. name: "Front",
  34176. image: {
  34177. source: "./media/characters/stagglas/front.svg",
  34178. extra: 962/882,
  34179. bottom: 53/1015
  34180. }
  34181. },
  34182. feral: {
  34183. height: math.unit(335, "cm"),
  34184. name: "Feral",
  34185. image: {
  34186. source: "./media/characters/stagglas/feral.svg",
  34187. extra: 1732/1090,
  34188. bottom: 48/1780
  34189. }
  34190. },
  34191. },
  34192. [
  34193. {
  34194. name: "Normal",
  34195. height: math.unit(5 + 3/12, "feet"),
  34196. default: true
  34197. },
  34198. ]
  34199. ))
  34200. characterMakers.push(() => makeCharacter(
  34201. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34202. {
  34203. front: {
  34204. height: math.unit(5 + 4/12, "feet"),
  34205. weight: math.unit(145, "lb"),
  34206. name: "Front",
  34207. image: {
  34208. source: "./media/characters/starra/front.svg",
  34209. extra: 1790/1691,
  34210. bottom: 91/1881
  34211. }
  34212. },
  34213. },
  34214. [
  34215. {
  34216. name: "Normal",
  34217. height: math.unit(5 + 4/12, "feet"),
  34218. default: true
  34219. },
  34220. ]
  34221. ))
  34222. characterMakers.push(() => makeCharacter(
  34223. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34224. {
  34225. front: {
  34226. height: math.unit(2.2, "meters"),
  34227. name: "Front",
  34228. image: {
  34229. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34230. extra: 1194/1005,
  34231. bottom: 25/1219
  34232. }
  34233. },
  34234. },
  34235. [
  34236. {
  34237. name: "Normal",
  34238. height: math.unit(2.2, "meters"),
  34239. default: true
  34240. },
  34241. ]
  34242. ))
  34243. characterMakers.push(() => makeCharacter(
  34244. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34245. {
  34246. side: {
  34247. height: math.unit(8 + 2/12, "feet"),
  34248. weight: math.unit(1240, "lb"),
  34249. name: "Side",
  34250. image: {
  34251. source: "./media/characters/mika-valentine/side.svg",
  34252. extra: 2670/2501,
  34253. bottom: 250/2920
  34254. }
  34255. },
  34256. },
  34257. [
  34258. {
  34259. name: "Normal",
  34260. height: math.unit(8 + 2/12, "feet"),
  34261. default: true
  34262. },
  34263. ]
  34264. ))
  34265. characterMakers.push(() => makeCharacter(
  34266. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34267. {
  34268. front: {
  34269. height: math.unit(7 + 2/12, "feet"),
  34270. name: "Front",
  34271. image: {
  34272. source: "./media/characters/xoltol/front.svg",
  34273. extra: 2212/2124,
  34274. bottom: 84/2296
  34275. }
  34276. },
  34277. side: {
  34278. height: math.unit(7 + 2/12, "feet"),
  34279. name: "Side",
  34280. image: {
  34281. source: "./media/characters/xoltol/side.svg",
  34282. extra: 2273/2197,
  34283. bottom: 26/2299
  34284. }
  34285. },
  34286. hand: {
  34287. height: math.unit(2.5, "feet"),
  34288. name: "Hand",
  34289. image: {
  34290. source: "./media/characters/xoltol/hand.svg"
  34291. }
  34292. },
  34293. },
  34294. [
  34295. {
  34296. name: "Small-ish",
  34297. height: math.unit(5 + 11/12, "feet")
  34298. },
  34299. {
  34300. name: "Normal",
  34301. height: math.unit(7 + 2/12, "feet")
  34302. },
  34303. {
  34304. name: "\"Macro\"",
  34305. height: math.unit(14 + 9/12, "feet"),
  34306. default: true
  34307. },
  34308. {
  34309. name: "Alternate Height",
  34310. height: math.unit(20, "feet")
  34311. },
  34312. {
  34313. name: "Actually Macro",
  34314. height: math.unit(100, "feet")
  34315. },
  34316. ]
  34317. ))
  34318. characterMakers.push(() => makeCharacter(
  34319. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34320. {
  34321. front: {
  34322. height: math.unit(5 + 2/12, "feet"),
  34323. name: "Front",
  34324. image: {
  34325. source: "./media/characters/kotetsu-redwood/front.svg",
  34326. extra: 1053/942,
  34327. bottom: 60/1113
  34328. }
  34329. },
  34330. },
  34331. [
  34332. {
  34333. name: "Normal",
  34334. height: math.unit(5 + 2/12, "feet"),
  34335. default: true
  34336. },
  34337. ]
  34338. ))
  34339. characterMakers.push(() => makeCharacter(
  34340. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34341. {
  34342. front: {
  34343. height: math.unit(2.4, "meters"),
  34344. weight: math.unit(125, "kg"),
  34345. name: "Front",
  34346. image: {
  34347. source: "./media/characters/lilith/front.svg",
  34348. extra: 1590/1513,
  34349. bottom: 203/1793
  34350. }
  34351. },
  34352. },
  34353. [
  34354. {
  34355. name: "Humanoid",
  34356. height: math.unit(2.4, "meters")
  34357. },
  34358. {
  34359. name: "Normal",
  34360. height: math.unit(6, "meters"),
  34361. default: true
  34362. },
  34363. {
  34364. name: "Largest",
  34365. height: math.unit(55, "meters")
  34366. },
  34367. ]
  34368. ))
  34369. characterMakers.push(() => makeCharacter(
  34370. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34371. {
  34372. front: {
  34373. height: math.unit(8 + 4/12, "feet"),
  34374. weight: math.unit(535, "lb"),
  34375. name: "Front",
  34376. image: {
  34377. source: "./media/characters/beh'kah-bolger/front.svg",
  34378. extra: 1660/1603,
  34379. bottom: 37/1697
  34380. }
  34381. },
  34382. },
  34383. [
  34384. {
  34385. name: "Normal",
  34386. height: math.unit(8 + 4/12, "feet"),
  34387. default: true
  34388. },
  34389. {
  34390. name: "Kaiju",
  34391. height: math.unit(250, "feet")
  34392. },
  34393. {
  34394. name: "Still Growing",
  34395. height: math.unit(10, "miles")
  34396. },
  34397. {
  34398. name: "Continental",
  34399. height: math.unit(5000, "miles")
  34400. },
  34401. {
  34402. name: "Final Form",
  34403. height: math.unit(2500000, "miles")
  34404. },
  34405. ]
  34406. ))
  34407. characterMakers.push(() => makeCharacter(
  34408. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34409. {
  34410. front: {
  34411. height: math.unit(7 + 2/12, "feet"),
  34412. weight: math.unit(230, "kg"),
  34413. name: "Front",
  34414. image: {
  34415. source: "./media/characters/tatyana-milewska/front.svg",
  34416. extra: 1199/1150,
  34417. bottom: 86/1285
  34418. }
  34419. },
  34420. },
  34421. [
  34422. {
  34423. name: "Normal",
  34424. height: math.unit(7 + 2/12, "feet"),
  34425. default: true
  34426. },
  34427. {
  34428. name: "Big",
  34429. height: math.unit(12, "feet")
  34430. },
  34431. {
  34432. name: "Minimacro",
  34433. height: math.unit(20, "feet")
  34434. },
  34435. {
  34436. name: "Macro",
  34437. height: math.unit(120, "feet")
  34438. },
  34439. ]
  34440. ))
  34441. characterMakers.push(() => makeCharacter(
  34442. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34443. {
  34444. front: {
  34445. height: math.unit(7 + 8/12, "feet"),
  34446. weight: math.unit(152, "kg"),
  34447. name: "Front",
  34448. image: {
  34449. source: "./media/characters/helen-arri/front.svg",
  34450. extra: 440/423,
  34451. bottom: 14/454
  34452. }
  34453. },
  34454. back: {
  34455. height: math.unit(7 + 8/12, "feet"),
  34456. weight: math.unit(152, "kg"),
  34457. name: "Back",
  34458. image: {
  34459. source: "./media/characters/helen-arri/back.svg",
  34460. extra: 443/426,
  34461. bottom: 8/451
  34462. }
  34463. },
  34464. },
  34465. [
  34466. {
  34467. name: "Normal",
  34468. height: math.unit(7 + 8/12, "feet"),
  34469. default: true
  34470. },
  34471. {
  34472. name: "Big",
  34473. height: math.unit(14, "feet")
  34474. },
  34475. {
  34476. name: "Minimacro",
  34477. height: math.unit(24, "feet")
  34478. },
  34479. {
  34480. name: "Macro",
  34481. height: math.unit(140, "feet")
  34482. },
  34483. ]
  34484. ))
  34485. characterMakers.push(() => makeCharacter(
  34486. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34487. {
  34488. front: {
  34489. height: math.unit(6, "meters"),
  34490. name: "Front",
  34491. image: {
  34492. source: "./media/characters/ehanu-rehu/front.svg",
  34493. extra: 1800/1800,
  34494. bottom: 59/1859
  34495. }
  34496. },
  34497. },
  34498. [
  34499. {
  34500. name: "Normal",
  34501. height: math.unit(6, "meters"),
  34502. default: true
  34503. },
  34504. ]
  34505. ))
  34506. characterMakers.push(() => makeCharacter(
  34507. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34508. {
  34509. front: {
  34510. height: math.unit(7 + 3/12, "feet"),
  34511. name: "Front",
  34512. image: {
  34513. source: "./media/characters/renholder/front.svg",
  34514. extra: 3096/2960,
  34515. bottom: 250/3346
  34516. }
  34517. },
  34518. },
  34519. [
  34520. {
  34521. name: "Normal Bat",
  34522. height: math.unit(7 + 3/12, "feet"),
  34523. default: true
  34524. },
  34525. {
  34526. name: "Slightly Tall Bat",
  34527. height: math.unit(100, "feet")
  34528. },
  34529. {
  34530. name: "Big Bat",
  34531. height: math.unit(1000, "feet")
  34532. },
  34533. {
  34534. name: "City-Sized Bat",
  34535. height: math.unit(200000, "feet")
  34536. },
  34537. {
  34538. name: "Bigger Bat",
  34539. height: math.unit(10000, "miles")
  34540. },
  34541. {
  34542. name: "Solar Sized Bat",
  34543. height: math.unit(100, "AU")
  34544. },
  34545. {
  34546. name: "Galactic Bat",
  34547. height: math.unit(200000, "lightyears")
  34548. },
  34549. {
  34550. name: "Universally Known Bat",
  34551. height: math.unit(1, "universe")
  34552. },
  34553. ]
  34554. ))
  34555. characterMakers.push(() => makeCharacter(
  34556. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34557. {
  34558. front: {
  34559. height: math.unit(6 + 11/12, "feet"),
  34560. weight: math.unit(250, "lb"),
  34561. name: "Front",
  34562. image: {
  34563. source: "./media/characters/cookiecat/front.svg",
  34564. extra: 893/827,
  34565. bottom: 14/907
  34566. }
  34567. },
  34568. },
  34569. [
  34570. {
  34571. name: "Micro",
  34572. height: math.unit(3, "inches")
  34573. },
  34574. {
  34575. name: "Normal",
  34576. height: math.unit(6 + 11/12, "feet"),
  34577. default: true
  34578. },
  34579. {
  34580. name: "Macro",
  34581. height: math.unit(100, "feet")
  34582. },
  34583. {
  34584. name: "Macro+",
  34585. height: math.unit(404, "feet")
  34586. },
  34587. {
  34588. name: "Megamacro",
  34589. height: math.unit(165, "miles")
  34590. },
  34591. {
  34592. name: "Planetary",
  34593. height: math.unit(4600, "miles")
  34594. },
  34595. ]
  34596. ))
  34597. characterMakers.push(() => makeCharacter(
  34598. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34599. {
  34600. front: {
  34601. height: math.unit(10 + 3/12, "feet"),
  34602. weight: math.unit(1500, "lb"),
  34603. name: "Front",
  34604. image: {
  34605. source: "./media/characters/tux-kusanagi/front.svg",
  34606. extra: 944/840,
  34607. bottom: 39/983
  34608. }
  34609. },
  34610. back: {
  34611. height: math.unit(10 + 3/12, "feet"),
  34612. weight: math.unit(1500, "lb"),
  34613. name: "Back",
  34614. image: {
  34615. source: "./media/characters/tux-kusanagi/back.svg",
  34616. extra: 941/842,
  34617. bottom: 28/969
  34618. }
  34619. },
  34620. rump: {
  34621. height: math.unit(5.25, "feet"),
  34622. name: "Rump",
  34623. image: {
  34624. source: "./media/characters/tux-kusanagi/rump.svg"
  34625. }
  34626. },
  34627. beak: {
  34628. height: math.unit(1.54, "feet"),
  34629. name: "Beak",
  34630. image: {
  34631. source: "./media/characters/tux-kusanagi/beak.svg"
  34632. }
  34633. },
  34634. },
  34635. [
  34636. {
  34637. name: "Normal",
  34638. height: math.unit(10 + 3/12, "feet"),
  34639. default: true
  34640. },
  34641. ]
  34642. ))
  34643. characterMakers.push(() => makeCharacter(
  34644. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34645. {
  34646. front: {
  34647. height: math.unit(58, "feet"),
  34648. weight: math.unit(200, "tons"),
  34649. name: "Front",
  34650. image: {
  34651. source: "./media/characters/uzarmazari/front.svg",
  34652. extra: 1575/1455,
  34653. bottom: 152/1727
  34654. }
  34655. },
  34656. back: {
  34657. height: math.unit(58, "feet"),
  34658. weight: math.unit(200, "tons"),
  34659. name: "Back",
  34660. image: {
  34661. source: "./media/characters/uzarmazari/back.svg",
  34662. extra: 1585/1510,
  34663. bottom: 157/1742
  34664. }
  34665. },
  34666. head: {
  34667. height: math.unit(26, "feet"),
  34668. name: "Head",
  34669. image: {
  34670. source: "./media/characters/uzarmazari/head.svg"
  34671. }
  34672. },
  34673. },
  34674. [
  34675. {
  34676. name: "Normal",
  34677. height: math.unit(58, "feet"),
  34678. default: true
  34679. },
  34680. ]
  34681. ))
  34682. characterMakers.push(() => makeCharacter(
  34683. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34684. {
  34685. side: {
  34686. height: math.unit(15, "feet"),
  34687. name: "Side",
  34688. image: {
  34689. source: "./media/characters/akitu/side.svg",
  34690. extra: 1421/1321,
  34691. bottom: 157/1578
  34692. }
  34693. },
  34694. front: {
  34695. height: math.unit(15, "feet"),
  34696. name: "Front",
  34697. image: {
  34698. source: "./media/characters/akitu/front.svg",
  34699. extra: 1435/1326,
  34700. bottom: 232/1667
  34701. }
  34702. },
  34703. },
  34704. [
  34705. {
  34706. name: "Normal",
  34707. height: math.unit(15, "feet"),
  34708. default: true
  34709. },
  34710. ]
  34711. ))
  34712. characterMakers.push(() => makeCharacter(
  34713. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34714. {
  34715. front: {
  34716. height: math.unit(10 + 8/12, "feet"),
  34717. name: "Front",
  34718. image: {
  34719. source: "./media/characters/azalie-croixland/front.svg",
  34720. extra: 1972/1856,
  34721. bottom: 31/2003
  34722. }
  34723. },
  34724. },
  34725. [
  34726. {
  34727. name: "Original Height",
  34728. height: math.unit(5 + 4/12, "feet")
  34729. },
  34730. {
  34731. name: "Normal Height",
  34732. height: math.unit(10 + 8/12, "feet"),
  34733. default: true
  34734. },
  34735. ]
  34736. ))
  34737. characterMakers.push(() => makeCharacter(
  34738. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34739. {
  34740. side: {
  34741. height: math.unit(7 + 1/12, "feet"),
  34742. weight: math.unit(245, "lb"),
  34743. name: "Side",
  34744. image: {
  34745. source: "./media/characters/kavus-kazian/side.svg",
  34746. extra: 349/342,
  34747. bottom: 15/364
  34748. }
  34749. },
  34750. },
  34751. [
  34752. {
  34753. name: "Normal",
  34754. height: math.unit(7 + 1/12, "feet"),
  34755. default: true
  34756. },
  34757. ]
  34758. ))
  34759. characterMakers.push(() => makeCharacter(
  34760. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34761. {
  34762. normal: {
  34763. height: math.unit(5 + 11/12, "feet"),
  34764. name: "Normal",
  34765. image: {
  34766. source: "./media/characters/moonlight-rose/normal.svg",
  34767. extra: 1979/1835,
  34768. bottom: 14/1993
  34769. }
  34770. },
  34771. demon: {
  34772. height: math.unit(5, "km"),
  34773. name: "Demon",
  34774. image: {
  34775. source: "./media/characters/moonlight-rose/demon.svg",
  34776. extra: 986/916,
  34777. bottom: 28/1014
  34778. }
  34779. },
  34780. },
  34781. [
  34782. {
  34783. name: "\"Natural\" height",
  34784. height: math.unit(5 + 11/12, "feet")
  34785. },
  34786. {
  34787. name: "Comfortable Size",
  34788. height: math.unit(40, "meters")
  34789. },
  34790. {
  34791. name: "Common Size",
  34792. height: math.unit(50, "km"),
  34793. default: true
  34794. },
  34795. {
  34796. name: "Demonic",
  34797. height: math.unit(1.24415e+21, "meters")
  34798. },
  34799. ]
  34800. ))
  34801. characterMakers.push(() => makeCharacter(
  34802. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34803. {
  34804. front: {
  34805. height: math.unit(16, "feet"),
  34806. weight: math.unit(610, "kg"),
  34807. name: "Front",
  34808. image: {
  34809. source: "./media/characters/huckle/front.svg",
  34810. extra: 1731/1625,
  34811. bottom: 33/1764
  34812. }
  34813. },
  34814. back: {
  34815. height: math.unit(16, "feet"),
  34816. weight: math.unit(610, "kg"),
  34817. name: "Back",
  34818. image: {
  34819. source: "./media/characters/huckle/back.svg",
  34820. extra: 1738/1651,
  34821. bottom: 37/1775
  34822. }
  34823. },
  34824. laughing: {
  34825. height: math.unit(3.75, "feet"),
  34826. name: "Laughing",
  34827. image: {
  34828. source: "./media/characters/huckle/laughing.svg"
  34829. }
  34830. },
  34831. angry: {
  34832. height: math.unit(4.15, "feet"),
  34833. name: "Angry",
  34834. image: {
  34835. source: "./media/characters/huckle/angry.svg"
  34836. }
  34837. },
  34838. },
  34839. [
  34840. {
  34841. name: "Normal",
  34842. height: math.unit(16, "feet"),
  34843. default: true
  34844. },
  34845. {
  34846. name: "Mini Macro",
  34847. height: math.unit(463, "feet")
  34848. },
  34849. {
  34850. name: "Macro",
  34851. height: math.unit(1680, "meters")
  34852. },
  34853. {
  34854. name: "Mega Macro",
  34855. height: math.unit(175, "km")
  34856. },
  34857. {
  34858. name: "Terra Macro",
  34859. height: math.unit(32, "gigameters")
  34860. },
  34861. {
  34862. name: "Multiverse+",
  34863. height: math.unit(2.56e23, "yottameters")
  34864. },
  34865. ]
  34866. ))
  34867. characterMakers.push(() => makeCharacter(
  34868. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34869. {
  34870. front: {
  34871. height: math.unit(6 + 9/12, "feet"),
  34872. weight: math.unit(280, "lb"),
  34873. name: "Front",
  34874. image: {
  34875. source: "./media/characters/candy/front.svg",
  34876. extra: 234/217,
  34877. bottom: 11/245
  34878. }
  34879. },
  34880. },
  34881. [
  34882. {
  34883. name: "Really Small",
  34884. height: math.unit(0.1, "nm")
  34885. },
  34886. {
  34887. name: "Micro",
  34888. height: math.unit(2, "inches")
  34889. },
  34890. {
  34891. name: "Normal",
  34892. height: math.unit(6 + 9/12, "feet"),
  34893. default: true
  34894. },
  34895. {
  34896. name: "Small Macro",
  34897. height: math.unit(69, "feet")
  34898. },
  34899. {
  34900. name: "Macro",
  34901. height: math.unit(160, "feet")
  34902. },
  34903. {
  34904. name: "Megamacro",
  34905. height: math.unit(22000, "miles")
  34906. },
  34907. {
  34908. name: "Gigamacro",
  34909. height: math.unit(50000, "miles")
  34910. },
  34911. ]
  34912. ))
  34913. characterMakers.push(() => makeCharacter(
  34914. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  34915. {
  34916. front: {
  34917. height: math.unit(4, "feet"),
  34918. weight: math.unit(90, "lb"),
  34919. name: "Front",
  34920. image: {
  34921. source: "./media/characters/joey-mcdonald/front.svg",
  34922. extra: 1059/852,
  34923. bottom: 33/1092
  34924. }
  34925. },
  34926. back: {
  34927. height: math.unit(4, "feet"),
  34928. weight: math.unit(90, "lb"),
  34929. name: "Back",
  34930. image: {
  34931. source: "./media/characters/joey-mcdonald/back.svg",
  34932. extra: 1077/879,
  34933. bottom: 5/1082
  34934. }
  34935. },
  34936. frontKobold: {
  34937. height: math.unit(4, "feet"),
  34938. weight: math.unit(100, "lb"),
  34939. name: "Front-kobold",
  34940. image: {
  34941. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  34942. extra: 1480/1367,
  34943. bottom: 0/1480
  34944. }
  34945. },
  34946. backKobold: {
  34947. height: math.unit(4, "feet"),
  34948. weight: math.unit(100, "lb"),
  34949. name: "Back-kobold",
  34950. image: {
  34951. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  34952. extra: 1449/1361,
  34953. bottom: 0/1449
  34954. }
  34955. },
  34956. },
  34957. [
  34958. {
  34959. name: "Normal",
  34960. height: math.unit(4, "feet"),
  34961. default: true
  34962. },
  34963. ]
  34964. ))
  34965. characterMakers.push(() => makeCharacter(
  34966. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34967. {
  34968. front: {
  34969. height: math.unit(12 + 6/12, "feet"),
  34970. name: "Front",
  34971. image: {
  34972. source: "./media/characters/kass-lockheed/front.svg",
  34973. extra: 354/343,
  34974. bottom: 9/363
  34975. }
  34976. },
  34977. back: {
  34978. height: math.unit(12 + 6/12, "feet"),
  34979. name: "Back",
  34980. image: {
  34981. source: "./media/characters/kass-lockheed/back.svg",
  34982. extra: 364/352,
  34983. bottom: 3/367
  34984. }
  34985. },
  34986. dick: {
  34987. height: math.unit(3.12, "feet"),
  34988. name: "Dick",
  34989. image: {
  34990. source: "./media/characters/kass-lockheed/dick.svg"
  34991. }
  34992. },
  34993. head: {
  34994. height: math.unit(2.6, "feet"),
  34995. name: "Head",
  34996. image: {
  34997. source: "./media/characters/kass-lockheed/head.svg"
  34998. }
  34999. },
  35000. bleh: {
  35001. height: math.unit(2.85, "feet"),
  35002. name: "Bleh",
  35003. image: {
  35004. source: "./media/characters/kass-lockheed/bleh.svg"
  35005. }
  35006. },
  35007. smug: {
  35008. height: math.unit(2.85, "feet"),
  35009. name: "Smug",
  35010. image: {
  35011. source: "./media/characters/kass-lockheed/smug.svg"
  35012. }
  35013. },
  35014. },
  35015. [
  35016. {
  35017. name: "Normal",
  35018. height: math.unit(12 + 6/12, "feet"),
  35019. default: true
  35020. },
  35021. ]
  35022. ))
  35023. characterMakers.push(() => makeCharacter(
  35024. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35025. {
  35026. front: {
  35027. height: math.unit(6 + 2/12, "feet"),
  35028. name: "Front",
  35029. image: {
  35030. source: "./media/characters/taylor/front.svg",
  35031. extra: 639/495,
  35032. bottom: 12/651
  35033. }
  35034. },
  35035. },
  35036. [
  35037. {
  35038. name: "Normal",
  35039. height: math.unit(6 + 2/12, "feet"),
  35040. default: true
  35041. },
  35042. {
  35043. name: "Big",
  35044. height: math.unit(15, "feet")
  35045. },
  35046. {
  35047. name: "Lorg",
  35048. height: math.unit(80, "feet")
  35049. },
  35050. {
  35051. name: "Too Lorg",
  35052. height: math.unit(120, "feet")
  35053. },
  35054. ]
  35055. ))
  35056. characterMakers.push(() => makeCharacter(
  35057. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35058. {
  35059. front: {
  35060. height: math.unit(15, "feet"),
  35061. name: "Front",
  35062. image: {
  35063. source: "./media/characters/kaizer/front.svg",
  35064. extra: 1612/1436,
  35065. bottom: 43/1655
  35066. }
  35067. },
  35068. },
  35069. [
  35070. {
  35071. name: "Normal",
  35072. height: math.unit(15, "feet"),
  35073. default: true
  35074. },
  35075. ]
  35076. ))
  35077. characterMakers.push(() => makeCharacter(
  35078. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35079. {
  35080. front: {
  35081. height: math.unit(2, "feet"),
  35082. weight: math.unit(30, "lb"),
  35083. name: "Front",
  35084. image: {
  35085. source: "./media/characters/sandy/front.svg",
  35086. extra: 1439/1307,
  35087. bottom: 194/1633
  35088. }
  35089. },
  35090. },
  35091. [
  35092. {
  35093. name: "Normal",
  35094. height: math.unit(2, "feet"),
  35095. default: true
  35096. },
  35097. ]
  35098. ))
  35099. characterMakers.push(() => makeCharacter(
  35100. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35101. {
  35102. front: {
  35103. height: math.unit(3, "feet"),
  35104. name: "Front",
  35105. image: {
  35106. source: "./media/characters/mellvi/front.svg",
  35107. extra: 1831/1630,
  35108. bottom: 58/1889
  35109. }
  35110. },
  35111. },
  35112. [
  35113. {
  35114. name: "Normal",
  35115. height: math.unit(3, "feet"),
  35116. default: true
  35117. },
  35118. ]
  35119. ))
  35120. characterMakers.push(() => makeCharacter(
  35121. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35122. {
  35123. front: {
  35124. height: math.unit(5 + 11/12, "feet"),
  35125. weight: math.unit(200, "lb"),
  35126. name: "Front",
  35127. image: {
  35128. source: "./media/characters/shirou/front.svg",
  35129. extra: 2491/2383,
  35130. bottom: 189/2680
  35131. }
  35132. },
  35133. back: {
  35134. height: math.unit(5 + 11/12, "feet"),
  35135. weight: math.unit(200, "lb"),
  35136. name: "Back",
  35137. image: {
  35138. source: "./media/characters/shirou/back.svg",
  35139. extra: 2554/2450,
  35140. bottom: 76/2630
  35141. }
  35142. },
  35143. },
  35144. [
  35145. {
  35146. name: "Normal",
  35147. height: math.unit(5 + 11/12, "feet"),
  35148. default: true
  35149. },
  35150. ]
  35151. ))
  35152. characterMakers.push(() => makeCharacter(
  35153. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35154. {
  35155. front: {
  35156. height: math.unit(6 + 3/12, "feet"),
  35157. weight: math.unit(177, "lb"),
  35158. name: "Front",
  35159. image: {
  35160. source: "./media/characters/noryu/front.svg",
  35161. extra: 973/885,
  35162. bottom: 10/983
  35163. }
  35164. },
  35165. },
  35166. [
  35167. {
  35168. name: "Normal",
  35169. height: math.unit(6 + 3/12, "feet"),
  35170. default: true
  35171. },
  35172. ]
  35173. ))
  35174. characterMakers.push(() => makeCharacter(
  35175. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35176. {
  35177. front: {
  35178. height: math.unit(5 + 6/12, "feet"),
  35179. weight: math.unit(170, "lb"),
  35180. name: "Front",
  35181. image: {
  35182. source: "./media/characters/mevolas-rubenido/front.svg",
  35183. extra: 2109/1901,
  35184. bottom: 96/2205
  35185. }
  35186. },
  35187. },
  35188. [
  35189. {
  35190. name: "Normal",
  35191. height: math.unit(5 + 6/12, "feet"),
  35192. default: true
  35193. },
  35194. ]
  35195. ))
  35196. characterMakers.push(() => makeCharacter(
  35197. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35198. {
  35199. front: {
  35200. height: math.unit(100, "feet"),
  35201. name: "Front",
  35202. image: {
  35203. source: "./media/characters/dee/front.svg",
  35204. extra: 2153/2036,
  35205. bottom: 59/2212
  35206. }
  35207. },
  35208. back: {
  35209. height: math.unit(100, "feet"),
  35210. name: "Back",
  35211. image: {
  35212. source: "./media/characters/dee/back.svg",
  35213. extra: 2183/2058,
  35214. bottom: 75/2258
  35215. }
  35216. },
  35217. foot: {
  35218. height: math.unit(19.43, "feet"),
  35219. name: "Foot",
  35220. image: {
  35221. source: "./media/characters/dee/foot.svg"
  35222. }
  35223. },
  35224. hoof: {
  35225. height: math.unit(20.6, "feet"),
  35226. name: "Hoof",
  35227. image: {
  35228. source: "./media/characters/dee/hoof.svg"
  35229. }
  35230. },
  35231. },
  35232. [
  35233. {
  35234. name: "Macro",
  35235. height: math.unit(100, "feet"),
  35236. default: true
  35237. },
  35238. ]
  35239. ))
  35240. characterMakers.push(() => makeCharacter(
  35241. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35242. {
  35243. front: {
  35244. height: math.unit(5 + 6/12, "feet"),
  35245. name: "Front",
  35246. image: {
  35247. source: "./media/characters/teh/front.svg",
  35248. extra: 1002/847,
  35249. bottom: 62/1064
  35250. }
  35251. },
  35252. },
  35253. [
  35254. {
  35255. name: "Normal",
  35256. height: math.unit(5 + 6/12, "feet"),
  35257. default: true
  35258. },
  35259. ]
  35260. ))
  35261. characterMakers.push(() => makeCharacter(
  35262. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35263. {
  35264. side: {
  35265. height: math.unit(6 + 1/12, "feet"),
  35266. weight: math.unit(204, "lb"),
  35267. name: "Side",
  35268. image: {
  35269. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35270. extra: 974/775,
  35271. bottom: 169/1143
  35272. }
  35273. },
  35274. sitting: {
  35275. height: math.unit(6 + 2/12, "feet"),
  35276. weight: math.unit(204, "lb"),
  35277. name: "Sitting",
  35278. image: {
  35279. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35280. extra: 1175/964,
  35281. bottom: 378/1553
  35282. }
  35283. },
  35284. },
  35285. [
  35286. {
  35287. name: "Normal",
  35288. height: math.unit(6 + 1/12, "feet"),
  35289. default: true
  35290. },
  35291. ]
  35292. ))
  35293. characterMakers.push(() => makeCharacter(
  35294. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35295. {
  35296. front: {
  35297. height: math.unit(6, "inches"),
  35298. name: "Front",
  35299. image: {
  35300. source: "./media/characters/tululi/front.svg",
  35301. extra: 1997/1876,
  35302. bottom: 20/2017
  35303. }
  35304. },
  35305. },
  35306. [
  35307. {
  35308. name: "Normal",
  35309. height: math.unit(6, "inches"),
  35310. default: true
  35311. },
  35312. ]
  35313. ))
  35314. characterMakers.push(() => makeCharacter(
  35315. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35316. {
  35317. front: {
  35318. height: math.unit(4 + 1/12, "feet"),
  35319. name: "Front",
  35320. image: {
  35321. source: "./media/characters/star/front.svg",
  35322. extra: 1493/1189,
  35323. bottom: 48/1541
  35324. }
  35325. },
  35326. },
  35327. [
  35328. {
  35329. name: "Normal",
  35330. height: math.unit(4 + 1/12, "feet"),
  35331. default: true
  35332. },
  35333. ]
  35334. ))
  35335. characterMakers.push(() => makeCharacter(
  35336. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35337. {
  35338. front: {
  35339. height: math.unit(6 + 3/12, "feet"),
  35340. name: "Front",
  35341. image: {
  35342. source: "./media/characters/comet/front.svg",
  35343. extra: 1681/1462,
  35344. bottom: 26/1707
  35345. }
  35346. },
  35347. },
  35348. [
  35349. {
  35350. name: "Normal",
  35351. height: math.unit(6 + 3/12, "feet"),
  35352. default: true
  35353. },
  35354. ]
  35355. ))
  35356. characterMakers.push(() => makeCharacter(
  35357. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35358. {
  35359. front: {
  35360. height: math.unit(950, "feet"),
  35361. name: "Front",
  35362. image: {
  35363. source: "./media/characters/vortex/front.svg",
  35364. extra: 1497/1434,
  35365. bottom: 56/1553
  35366. }
  35367. },
  35368. maw: {
  35369. height: math.unit(285, "feet"),
  35370. name: "Maw",
  35371. image: {
  35372. source: "./media/characters/vortex/maw.svg"
  35373. }
  35374. },
  35375. },
  35376. [
  35377. {
  35378. name: "Macro",
  35379. height: math.unit(950, "feet"),
  35380. default: true
  35381. },
  35382. ]
  35383. ))
  35384. characterMakers.push(() => makeCharacter(
  35385. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35386. {
  35387. front: {
  35388. height: math.unit(600, "feet"),
  35389. weight: math.unit(0.02, "grams"),
  35390. name: "Front",
  35391. image: {
  35392. source: "./media/characters/doodle/front.svg",
  35393. extra: 1578/1413,
  35394. bottom: 37/1615
  35395. }
  35396. },
  35397. },
  35398. [
  35399. {
  35400. name: "Macro",
  35401. height: math.unit(600, "feet"),
  35402. default: true
  35403. },
  35404. ]
  35405. ))
  35406. characterMakers.push(() => makeCharacter(
  35407. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35408. {
  35409. front: {
  35410. height: math.unit(6 + 6/12, "feet"),
  35411. name: "Front",
  35412. image: {
  35413. source: "./media/characters/jai/front.svg",
  35414. extra: 1645/1534,
  35415. bottom: 115/1760
  35416. }
  35417. },
  35418. },
  35419. [
  35420. {
  35421. name: "Normal",
  35422. height: math.unit(6 + 6/12, "feet"),
  35423. default: true
  35424. },
  35425. ]
  35426. ))
  35427. characterMakers.push(() => makeCharacter(
  35428. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35429. {
  35430. front: {
  35431. height: math.unit(6 + 8/12, "feet"),
  35432. name: "Front",
  35433. image: {
  35434. source: "./media/characters/pixel/front.svg",
  35435. extra: 1900/1735,
  35436. bottom: 63/1963
  35437. }
  35438. },
  35439. },
  35440. [
  35441. {
  35442. name: "Normal",
  35443. height: math.unit(6 + 8/12, "feet"),
  35444. default: true
  35445. },
  35446. ]
  35447. ))
  35448. characterMakers.push(() => makeCharacter(
  35449. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35450. {
  35451. front: {
  35452. height: math.unit(4 + 11/12, "feet"),
  35453. weight: math.unit(111, "lb"),
  35454. name: "Front",
  35455. image: {
  35456. source: "./media/characters/rhett/front.svg",
  35457. extra: 1682/1586,
  35458. bottom: 92/1774
  35459. }
  35460. },
  35461. },
  35462. [
  35463. {
  35464. name: "Mini",
  35465. height: math.unit(1 + 1/12, "feet")
  35466. },
  35467. {
  35468. name: "Normal",
  35469. height: math.unit(4 + 11/12, "feet"),
  35470. default: true
  35471. },
  35472. ]
  35473. ))
  35474. characterMakers.push(() => makeCharacter(
  35475. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35476. {
  35477. front: {
  35478. height: math.unit(3 + 3/12, "feet"),
  35479. name: "Front",
  35480. image: {
  35481. source: "./media/characters/penny/front.svg",
  35482. extra: 1406/1311,
  35483. bottom: 26/1432
  35484. }
  35485. },
  35486. },
  35487. [
  35488. {
  35489. name: "Normal",
  35490. height: math.unit(3 + 3/12, "feet"),
  35491. default: true
  35492. },
  35493. ]
  35494. ))
  35495. characterMakers.push(() => makeCharacter(
  35496. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35497. {
  35498. front: {
  35499. height: math.unit(4 + 11/12, "feet"),
  35500. name: "Front",
  35501. image: {
  35502. source: "./media/characters/monty/front.svg",
  35503. extra: 1479/1209,
  35504. bottom: 0/1479
  35505. }
  35506. },
  35507. },
  35508. [
  35509. {
  35510. name: "Normal",
  35511. height: math.unit(4 + 11/12, "feet"),
  35512. default: true
  35513. },
  35514. ]
  35515. ))
  35516. characterMakers.push(() => makeCharacter(
  35517. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35518. {
  35519. front: {
  35520. height: math.unit(8 + 4/12, "feet"),
  35521. name: "Front",
  35522. image: {
  35523. source: "./media/characters/sterling/front.svg",
  35524. extra: 1420/1236,
  35525. bottom: 27/1447
  35526. }
  35527. },
  35528. },
  35529. [
  35530. {
  35531. name: "Normal",
  35532. height: math.unit(8 + 4/12, "feet"),
  35533. default: true
  35534. },
  35535. ]
  35536. ))
  35537. characterMakers.push(() => makeCharacter(
  35538. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35539. {
  35540. front: {
  35541. height: math.unit(15, "feet"),
  35542. name: "Front",
  35543. image: {
  35544. source: "./media/characters/marble/front.svg",
  35545. extra: 973/937,
  35546. bottom: 32/1005
  35547. }
  35548. },
  35549. },
  35550. [
  35551. {
  35552. name: "Normal",
  35553. height: math.unit(15, "feet"),
  35554. default: true
  35555. },
  35556. ]
  35557. ))
  35558. characterMakers.push(() => makeCharacter(
  35559. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35560. {
  35561. front: {
  35562. height: math.unit(3, "inches"),
  35563. name: "Front",
  35564. image: {
  35565. source: "./media/characters/powder/front.svg",
  35566. extra: 1504/1334,
  35567. bottom: 518/2022
  35568. }
  35569. },
  35570. },
  35571. [
  35572. {
  35573. name: "Normal",
  35574. height: math.unit(3, "inches"),
  35575. default: true
  35576. },
  35577. ]
  35578. ))
  35579. characterMakers.push(() => makeCharacter(
  35580. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35581. {
  35582. front: {
  35583. height: math.unit(4 + 5/12, "feet"),
  35584. name: "Front",
  35585. image: {
  35586. source: "./media/characters/joey-raccoon/front.svg",
  35587. extra: 1273/1197,
  35588. bottom: 0/1273
  35589. }
  35590. },
  35591. },
  35592. [
  35593. {
  35594. name: "Normal",
  35595. height: math.unit(4 + 5/12, "feet"),
  35596. default: true
  35597. },
  35598. ]
  35599. ))
  35600. characterMakers.push(() => makeCharacter(
  35601. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35602. {
  35603. front: {
  35604. height: math.unit(8 + 4/12, "feet"),
  35605. name: "Front",
  35606. image: {
  35607. source: "./media/characters/vick/front.svg",
  35608. extra: 2187/2118,
  35609. bottom: 47/2234
  35610. }
  35611. },
  35612. },
  35613. [
  35614. {
  35615. name: "Normal",
  35616. height: math.unit(8 + 4/12, "feet"),
  35617. default: true
  35618. },
  35619. ]
  35620. ))
  35621. characterMakers.push(() => makeCharacter(
  35622. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35623. {
  35624. front: {
  35625. height: math.unit(5 + 5/12, "feet"),
  35626. name: "Front",
  35627. image: {
  35628. source: "./media/characters/mitsy/front.svg",
  35629. extra: 1842/1695,
  35630. bottom: 0/1842
  35631. }
  35632. },
  35633. },
  35634. [
  35635. {
  35636. name: "Normal",
  35637. height: math.unit(5 + 5/12, "feet"),
  35638. default: true
  35639. },
  35640. ]
  35641. ))
  35642. characterMakers.push(() => makeCharacter(
  35643. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35644. {
  35645. front: {
  35646. height: math.unit(6 + 3/12, "feet"),
  35647. name: "Front",
  35648. image: {
  35649. source: "./media/characters/silvy/front.svg",
  35650. extra: 1995/1836,
  35651. bottom: 225/2220
  35652. }
  35653. },
  35654. },
  35655. [
  35656. {
  35657. name: "Normal",
  35658. height: math.unit(6 + 3/12, "feet"),
  35659. default: true
  35660. },
  35661. ]
  35662. ))
  35663. characterMakers.push(() => makeCharacter(
  35664. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35665. {
  35666. front: {
  35667. height: math.unit(3 + 8/12, "feet"),
  35668. name: "Front",
  35669. image: {
  35670. source: "./media/characters/rodney/front.svg",
  35671. extra: 1956/1747,
  35672. bottom: 31/1987
  35673. }
  35674. },
  35675. frontDressed: {
  35676. height: math.unit(2.9, "feet"),
  35677. name: "Front (Dressed)",
  35678. image: {
  35679. source: "./media/characters/rodney/front-dressed.svg",
  35680. extra: 1382/1241,
  35681. bottom: 385/1767
  35682. }
  35683. },
  35684. },
  35685. [
  35686. {
  35687. name: "Normal",
  35688. height: math.unit(3 + 8/12, "feet"),
  35689. default: true
  35690. },
  35691. ]
  35692. ))
  35693. characterMakers.push(() => makeCharacter(
  35694. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35695. {
  35696. front: {
  35697. height: math.unit(5 + 9/12, "feet"),
  35698. weight: math.unit(194, "lbs"),
  35699. name: "Front",
  35700. image: {
  35701. source: "./media/characters/zakail-sudekai/front.svg",
  35702. extra: 2696/2533,
  35703. bottom: 248/2944
  35704. }
  35705. },
  35706. maw: {
  35707. height: math.unit(1.35, "feet"),
  35708. name: "Maw",
  35709. image: {
  35710. source: "./media/characters/zakail-sudekai/maw.svg"
  35711. }
  35712. },
  35713. },
  35714. [
  35715. {
  35716. name: "Normal",
  35717. height: math.unit(5 + 9/12, "feet"),
  35718. default: true
  35719. },
  35720. ]
  35721. ))
  35722. characterMakers.push(() => makeCharacter(
  35723. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35724. {
  35725. front: {
  35726. height: math.unit(8 + 4/12, "feet"),
  35727. weight: math.unit(1200, "lb"),
  35728. name: "Front",
  35729. image: {
  35730. source: "./media/characters/eleanor/front.svg",
  35731. extra: 1226/1192,
  35732. bottom: 52/1278
  35733. }
  35734. },
  35735. back: {
  35736. height: math.unit(8 + 4/12, "feet"),
  35737. weight: math.unit(1200, "lb"),
  35738. name: "Back",
  35739. image: {
  35740. source: "./media/characters/eleanor/back.svg",
  35741. extra: 1242/1184,
  35742. bottom: 60/1302
  35743. }
  35744. },
  35745. head: {
  35746. height: math.unit(2.62, "feet"),
  35747. name: "Head",
  35748. image: {
  35749. source: "./media/characters/eleanor/head.svg"
  35750. }
  35751. },
  35752. },
  35753. [
  35754. {
  35755. name: "Normal",
  35756. height: math.unit(8 + 4/12, "feet"),
  35757. default: true
  35758. },
  35759. ]
  35760. ))
  35761. characterMakers.push(() => makeCharacter(
  35762. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35763. {
  35764. front: {
  35765. height: math.unit(8 + 4/12, "feet"),
  35766. weight: math.unit(750, "lb"),
  35767. name: "Front",
  35768. image: {
  35769. source: "./media/characters/tanya/front.svg",
  35770. extra: 1749/1615,
  35771. bottom: 33/1782
  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: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35785. {
  35786. front: {
  35787. height: math.unit(5, "feet"),
  35788. weight: math.unit(225, "lb"),
  35789. name: "Front",
  35790. image: {
  35791. source: "./media/characters/cindy/front.svg",
  35792. extra: 1320/1250,
  35793. bottom: 42/1362
  35794. }
  35795. },
  35796. frontDressed: {
  35797. height: math.unit(5, "feet"),
  35798. weight: math.unit(225, "lb"),
  35799. name: "Front (Dressed)",
  35800. image: {
  35801. source: "./media/characters/cindy/front-dressed.svg",
  35802. extra: 1320/1250,
  35803. bottom: 42/1362
  35804. }
  35805. },
  35806. back: {
  35807. height: math.unit(5, "feet"),
  35808. weight: math.unit(225, "lb"),
  35809. name: "Back",
  35810. image: {
  35811. source: "./media/characters/cindy/back.svg",
  35812. extra: 1384/1346,
  35813. bottom: 14/1398
  35814. }
  35815. },
  35816. },
  35817. [
  35818. {
  35819. name: "Normal",
  35820. height: math.unit(5, "feet"),
  35821. default: true
  35822. },
  35823. ]
  35824. ))
  35825. characterMakers.push(() => makeCharacter(
  35826. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35827. {
  35828. front: {
  35829. height: math.unit(6 + 9/12, "feet"),
  35830. weight: math.unit(440, "lb"),
  35831. name: "Front",
  35832. image: {
  35833. source: "./media/characters/wilbur-owen/front.svg",
  35834. extra: 1575/1448,
  35835. bottom: 72/1647
  35836. }
  35837. },
  35838. back: {
  35839. height: math.unit(6 + 9/12, "feet"),
  35840. weight: math.unit(440, "lb"),
  35841. name: "Back",
  35842. image: {
  35843. source: "./media/characters/wilbur-owen/back.svg",
  35844. extra: 1578/1445,
  35845. bottom: 36/1614
  35846. }
  35847. },
  35848. },
  35849. [
  35850. {
  35851. name: "Normal",
  35852. height: math.unit(6 + 9/12, "feet"),
  35853. default: true
  35854. },
  35855. ]
  35856. ))
  35857. characterMakers.push(() => makeCharacter(
  35858. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35859. {
  35860. front: {
  35861. height: math.unit(6 + 5/12, "feet"),
  35862. weight: math.unit(650, "lb"),
  35863. name: "Front",
  35864. image: {
  35865. source: "./media/characters/keegan/front.svg",
  35866. extra: 2387/2198,
  35867. bottom: 33/2420
  35868. }
  35869. },
  35870. side: {
  35871. height: math.unit(6 + 5/12, "feet"),
  35872. weight: math.unit(650, "lb"),
  35873. name: "Side",
  35874. image: {
  35875. source: "./media/characters/keegan/side.svg",
  35876. extra: 2390/2202,
  35877. bottom: 47/2437
  35878. }
  35879. },
  35880. back: {
  35881. height: math.unit(6 + 5/12, "feet"),
  35882. weight: math.unit(650, "lb"),
  35883. name: "Back",
  35884. image: {
  35885. source: "./media/characters/keegan/back.svg",
  35886. extra: 2418/2268,
  35887. bottom: 15/2433
  35888. }
  35889. },
  35890. frontSfw: {
  35891. height: math.unit(6 + 5/12, "feet"),
  35892. weight: math.unit(650, "lb"),
  35893. name: "Front (SFW)",
  35894. image: {
  35895. source: "./media/characters/keegan/front-sfw.svg",
  35896. extra: 2387/2198,
  35897. bottom: 33/2420
  35898. }
  35899. },
  35900. beans: {
  35901. height: math.unit(1.85, "feet"),
  35902. name: "Beans",
  35903. image: {
  35904. source: "./media/characters/keegan/beans.svg"
  35905. }
  35906. },
  35907. },
  35908. [
  35909. {
  35910. name: "Normal",
  35911. height: math.unit(6 + 5/12, "feet"),
  35912. default: true
  35913. },
  35914. ]
  35915. ))
  35916. characterMakers.push(() => makeCharacter(
  35917. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35918. {
  35919. front: {
  35920. height: math.unit(9, "feet"),
  35921. name: "Front",
  35922. image: {
  35923. source: "./media/characters/colton/front.svg",
  35924. extra: 1589/1326,
  35925. bottom: 139/1728
  35926. }
  35927. },
  35928. },
  35929. [
  35930. {
  35931. name: "Normal",
  35932. height: math.unit(9, "feet"),
  35933. default: true
  35934. },
  35935. ]
  35936. ))
  35937. characterMakers.push(() => makeCharacter(
  35938. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35939. {
  35940. front: {
  35941. height: math.unit(2 + 9/12, "feet"),
  35942. name: "Front",
  35943. image: {
  35944. source: "./media/characters/bora/front.svg",
  35945. extra: 1265/1250,
  35946. bottom: 24/1289
  35947. }
  35948. },
  35949. },
  35950. [
  35951. {
  35952. name: "Normal",
  35953. height: math.unit(2 + 9/12, "feet"),
  35954. default: true
  35955. },
  35956. ]
  35957. ))
  35958. characterMakers.push(() => makeCharacter(
  35959. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35960. {
  35961. front: {
  35962. height: math.unit(8, "feet"),
  35963. name: "Front",
  35964. image: {
  35965. source: "./media/characters/myu-myu/front.svg",
  35966. extra: 1949/1857,
  35967. bottom: 90/2039
  35968. }
  35969. },
  35970. },
  35971. [
  35972. {
  35973. name: "Normal",
  35974. height: math.unit(8, "feet"),
  35975. default: true
  35976. },
  35977. {
  35978. name: "Big",
  35979. height: math.unit(15, "feet")
  35980. },
  35981. {
  35982. name: "BIG",
  35983. height: math.unit(25, "feet")
  35984. },
  35985. ]
  35986. ))
  35987. characterMakers.push(() => makeCharacter(
  35988. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35989. {
  35990. side: {
  35991. height: math.unit(7 + 5/12, "feet"),
  35992. weight: math.unit(2800, "lb"),
  35993. name: "Side",
  35994. image: {
  35995. source: "./media/characters/haloren/side.svg",
  35996. extra: 1793/409,
  35997. bottom: 59/1852
  35998. }
  35999. },
  36000. frontPaw: {
  36001. height: math.unit(2.36, "feet"),
  36002. name: "Front paw",
  36003. image: {
  36004. source: "./media/characters/haloren/front-paw.svg"
  36005. }
  36006. },
  36007. hindPaw: {
  36008. height: math.unit(3.18, "feet"),
  36009. name: "Hind paw",
  36010. image: {
  36011. source: "./media/characters/haloren/hind-paw.svg"
  36012. }
  36013. },
  36014. maw: {
  36015. height: math.unit(5.05, "feet"),
  36016. name: "Maw",
  36017. image: {
  36018. source: "./media/characters/haloren/maw.svg"
  36019. }
  36020. },
  36021. dick: {
  36022. height: math.unit(2.90, "feet"),
  36023. name: "Dick",
  36024. image: {
  36025. source: "./media/characters/haloren/dick.svg"
  36026. }
  36027. },
  36028. },
  36029. [
  36030. {
  36031. name: "Normal",
  36032. height: math.unit(7 + 5/12, "feet"),
  36033. default: true
  36034. },
  36035. {
  36036. name: "Enhanced",
  36037. height: math.unit(14 + 3/12, "feet")
  36038. },
  36039. ]
  36040. ))
  36041. characterMakers.push(() => makeCharacter(
  36042. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36043. {
  36044. front: {
  36045. height: math.unit(171, "cm"),
  36046. name: "Front",
  36047. image: {
  36048. source: "./media/characters/kimmy/front.svg",
  36049. extra: 1491/1435,
  36050. bottom: 53/1544
  36051. }
  36052. },
  36053. },
  36054. [
  36055. {
  36056. name: "Small",
  36057. height: math.unit(9, "cm")
  36058. },
  36059. {
  36060. name: "Normal",
  36061. height: math.unit(171, "cm"),
  36062. default: true
  36063. },
  36064. ]
  36065. ))
  36066. characterMakers.push(() => makeCharacter(
  36067. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36068. {
  36069. front: {
  36070. height: math.unit(8, "feet"),
  36071. weight: math.unit(300, "lb"),
  36072. name: "Front",
  36073. image: {
  36074. source: "./media/characters/galeboomer/front.svg",
  36075. extra: 4651/4415,
  36076. bottom: 162/4813
  36077. }
  36078. },
  36079. back: {
  36080. height: math.unit(8, "feet"),
  36081. weight: math.unit(300, "lb"),
  36082. name: "Back",
  36083. image: {
  36084. source: "./media/characters/galeboomer/back.svg",
  36085. extra: 4544/4314,
  36086. bottom: 16/4560
  36087. }
  36088. },
  36089. frontAlt: {
  36090. height: math.unit(8, "feet"),
  36091. weight: math.unit(300, "lb"),
  36092. name: "Front (Alt)",
  36093. image: {
  36094. source: "./media/characters/galeboomer/front-alt.svg",
  36095. extra: 4458/4228,
  36096. bottom: 68/4526
  36097. }
  36098. },
  36099. maw: {
  36100. height: math.unit(1.2, "feet"),
  36101. name: "Maw",
  36102. image: {
  36103. source: "./media/characters/galeboomer/maw.svg"
  36104. }
  36105. },
  36106. },
  36107. [
  36108. {
  36109. name: "Normal",
  36110. height: math.unit(8, "feet"),
  36111. default: true
  36112. },
  36113. ]
  36114. ))
  36115. characterMakers.push(() => makeCharacter(
  36116. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36117. {
  36118. front: {
  36119. height: math.unit(5 + 9/12, "feet"),
  36120. weight: math.unit(120, "lb"),
  36121. name: "Front",
  36122. image: {
  36123. source: "./media/characters/chyr/front.svg",
  36124. extra: 1323/1254,
  36125. bottom: 63/1386
  36126. }
  36127. },
  36128. back: {
  36129. height: math.unit(5 + 9/12, "feet"),
  36130. weight: math.unit(120, "lb"),
  36131. name: "Back",
  36132. image: {
  36133. source: "./media/characters/chyr/back.svg",
  36134. extra: 1323/1252,
  36135. bottom: 48/1371
  36136. }
  36137. },
  36138. },
  36139. [
  36140. {
  36141. name: "Normal",
  36142. height: math.unit(5 + 9/12, "feet"),
  36143. default: true
  36144. },
  36145. ]
  36146. ))
  36147. characterMakers.push(() => makeCharacter(
  36148. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36149. {
  36150. front: {
  36151. height: math.unit(7, "feet"),
  36152. weight: math.unit(310, "lb"),
  36153. name: "Front",
  36154. image: {
  36155. source: "./media/characters/solarus/front.svg",
  36156. extra: 2415/2021,
  36157. bottom: 103/2518
  36158. }
  36159. },
  36160. back: {
  36161. height: math.unit(7, "feet"),
  36162. weight: math.unit(310, "lb"),
  36163. name: "Back",
  36164. image: {
  36165. source: "./media/characters/solarus/back.svg",
  36166. extra: 2463/2089,
  36167. bottom: 79/2542
  36168. }
  36169. },
  36170. },
  36171. [
  36172. {
  36173. name: "Normal",
  36174. height: math.unit(7, "feet"),
  36175. default: true
  36176. },
  36177. ]
  36178. ))
  36179. characterMakers.push(() => makeCharacter(
  36180. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36181. {
  36182. front: {
  36183. height: math.unit(16, "feet"),
  36184. name: "Front",
  36185. image: {
  36186. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36187. extra: 1844/1780,
  36188. bottom: 58/1902
  36189. }
  36190. },
  36191. winterCoat: {
  36192. height: math.unit(16, "feet"),
  36193. name: "Winter Coat",
  36194. image: {
  36195. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36196. extra: 1807/1775,
  36197. bottom: 69/1876
  36198. }
  36199. },
  36200. },
  36201. [
  36202. {
  36203. name: "Normal",
  36204. height: math.unit(16, "feet"),
  36205. default: true
  36206. },
  36207. {
  36208. name: "Chicago Size",
  36209. height: math.unit(560, "feet")
  36210. },
  36211. ]
  36212. ))
  36213. characterMakers.push(() => makeCharacter(
  36214. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36215. {
  36216. front: {
  36217. height: math.unit(11 + 6/12, "feet"),
  36218. weight: math.unit(1366, "lb"),
  36219. name: "Front",
  36220. image: {
  36221. source: "./media/characters/lexor/front.svg",
  36222. extra: 1560/1481,
  36223. bottom: 211/1771
  36224. }
  36225. },
  36226. back: {
  36227. height: math.unit(11 + 6/12, "feet"),
  36228. weight: math.unit(1366, "lb"),
  36229. name: "Back",
  36230. image: {
  36231. source: "./media/characters/lexor/back.svg",
  36232. extra: 1614/1533,
  36233. bottom: 76/1690
  36234. }
  36235. },
  36236. maw: {
  36237. height: math.unit(3, "feet"),
  36238. name: "Maw",
  36239. image: {
  36240. source: "./media/characters/lexor/maw.svg"
  36241. }
  36242. },
  36243. dick: {
  36244. height: math.unit(2.59, "feet"),
  36245. name: "Dick",
  36246. image: {
  36247. source: "./media/characters/lexor/dick.svg"
  36248. }
  36249. },
  36250. },
  36251. [
  36252. {
  36253. name: "Normal",
  36254. height: math.unit(11 + 6/12, "feet"),
  36255. default: true
  36256. },
  36257. ]
  36258. ))
  36259. characterMakers.push(() => makeCharacter(
  36260. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36261. {
  36262. front: {
  36263. height: math.unit(5 + 8/12, "feet"),
  36264. name: "Front",
  36265. image: {
  36266. source: "./media/characters/magnum/front.svg",
  36267. extra: 942/855,
  36268. bottom: 26/968
  36269. }
  36270. },
  36271. },
  36272. [
  36273. {
  36274. name: "Normal",
  36275. height: math.unit(5 + 8/12, "feet"),
  36276. default: true
  36277. },
  36278. ]
  36279. ))
  36280. characterMakers.push(() => makeCharacter(
  36281. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36282. {
  36283. front: {
  36284. height: math.unit(18 + 4/12, "feet"),
  36285. weight: math.unit(1500, "kg"),
  36286. name: "Front",
  36287. image: {
  36288. source: "./media/characters/solas-sharpsman/front.svg",
  36289. extra: 1698/1589,
  36290. bottom: 0/1698
  36291. }
  36292. },
  36293. },
  36294. [
  36295. {
  36296. name: "Normal",
  36297. height: math.unit(18 + 4/12, "feet"),
  36298. default: true
  36299. },
  36300. ]
  36301. ))
  36302. characterMakers.push(() => makeCharacter(
  36303. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36304. {
  36305. front: {
  36306. height: math.unit(5 + 5/12, "feet"),
  36307. weight: math.unit(180, "lb"),
  36308. name: "Front",
  36309. image: {
  36310. source: "./media/characters/october/front.svg",
  36311. extra: 1800/1650,
  36312. bottom: 0/1800
  36313. }
  36314. },
  36315. frontNsfw: {
  36316. height: math.unit(5 + 5/12, "feet"),
  36317. weight: math.unit(180, "lb"),
  36318. name: "Front (NSFW)",
  36319. image: {
  36320. source: "./media/characters/october/front-nsfw.svg",
  36321. extra: 1392/1307,
  36322. bottom: 42/1434
  36323. }
  36324. },
  36325. },
  36326. [
  36327. {
  36328. name: "Normal",
  36329. height: math.unit(5 + 5/12, "feet"),
  36330. default: true
  36331. },
  36332. ]
  36333. ))
  36334. characterMakers.push(() => makeCharacter(
  36335. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36336. {
  36337. front: {
  36338. height: math.unit(8 + 6/12, "feet"),
  36339. name: "Front",
  36340. image: {
  36341. source: "./media/characters/essynkardi/front.svg",
  36342. extra: 1914/1846,
  36343. bottom: 22/1936
  36344. }
  36345. },
  36346. },
  36347. [
  36348. {
  36349. name: "Normal",
  36350. height: math.unit(8 + 6/12, "feet"),
  36351. default: true
  36352. },
  36353. ]
  36354. ))
  36355. characterMakers.push(() => makeCharacter(
  36356. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36357. {
  36358. front: {
  36359. height: math.unit(6 + 6/12, "feet"),
  36360. weight: math.unit(7, "lb"),
  36361. name: "Front",
  36362. image: {
  36363. source: "./media/characters/icky/front.svg",
  36364. extra: 813/782,
  36365. bottom: 66/879
  36366. }
  36367. },
  36368. back: {
  36369. height: math.unit(6 + 6/12, "feet"),
  36370. weight: math.unit(7, "lb"),
  36371. name: "Back",
  36372. image: {
  36373. source: "./media/characters/icky/back.svg",
  36374. extra: 754/735,
  36375. bottom: 56/810
  36376. }
  36377. },
  36378. },
  36379. [
  36380. {
  36381. name: "Normal",
  36382. height: math.unit(6 + 6/12, "feet"),
  36383. default: true
  36384. },
  36385. ]
  36386. ))
  36387. characterMakers.push(() => makeCharacter(
  36388. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36389. {
  36390. front: {
  36391. height: math.unit(15, "feet"),
  36392. name: "Front",
  36393. image: {
  36394. source: "./media/characters/rojas/front.svg",
  36395. extra: 1462/1408,
  36396. bottom: 95/1557
  36397. }
  36398. },
  36399. back: {
  36400. height: math.unit(15, "feet"),
  36401. name: "Back",
  36402. image: {
  36403. source: "./media/characters/rojas/back.svg",
  36404. extra: 1023/954,
  36405. bottom: 28/1051
  36406. }
  36407. },
  36408. },
  36409. [
  36410. {
  36411. name: "Normal",
  36412. height: math.unit(15, "feet"),
  36413. default: true
  36414. },
  36415. ]
  36416. ))
  36417. characterMakers.push(() => makeCharacter(
  36418. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36419. {
  36420. frontHuman: {
  36421. height: math.unit(5 + 7/12, "feet"),
  36422. name: "Front (Human)",
  36423. image: {
  36424. source: "./media/characters/alek-dryagan/front-human.svg",
  36425. extra: 1687/1667,
  36426. bottom: 69/1756
  36427. }
  36428. },
  36429. backHuman: {
  36430. height: math.unit(5 + 7/12, "feet"),
  36431. name: "Back (Human)",
  36432. image: {
  36433. source: "./media/characters/alek-dryagan/back-human.svg",
  36434. extra: 1670/1649,
  36435. bottom: 65/1735
  36436. }
  36437. },
  36438. frontDemi: {
  36439. height: math.unit(65, "feet"),
  36440. name: "Front (Demi)",
  36441. image: {
  36442. source: "./media/characters/alek-dryagan/front-demi.svg",
  36443. extra: 1669/1642,
  36444. bottom: 49/1718
  36445. }
  36446. },
  36447. backDemi: {
  36448. height: math.unit(65, "feet"),
  36449. name: "Back (Demi)",
  36450. image: {
  36451. source: "./media/characters/alek-dryagan/back-demi.svg",
  36452. extra: 1658/1637,
  36453. bottom: 40/1698
  36454. }
  36455. },
  36456. mawHuman: {
  36457. height: math.unit(0.3, "feet"),
  36458. name: "Maw (Human)",
  36459. image: {
  36460. source: "./media/characters/alek-dryagan/maw-human.svg"
  36461. }
  36462. },
  36463. mawDemi: {
  36464. height: math.unit(3.8, "feet"),
  36465. name: "Maw (Demi)",
  36466. image: {
  36467. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36468. }
  36469. },
  36470. },
  36471. [
  36472. {
  36473. name: "Normal",
  36474. height: math.unit(5 + 7/12, "feet"),
  36475. default: true
  36476. },
  36477. ]
  36478. ))
  36479. characterMakers.push(() => makeCharacter(
  36480. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36481. {
  36482. frontHuman: {
  36483. height: math.unit(5 + 2/12, "feet"),
  36484. name: "Front (Human)",
  36485. image: {
  36486. source: "./media/characters/gen/front-human.svg",
  36487. extra: 1627/1538,
  36488. bottom: 71/1698
  36489. }
  36490. },
  36491. backHuman: {
  36492. height: math.unit(5 + 2/12, "feet"),
  36493. name: "Back (Human)",
  36494. image: {
  36495. source: "./media/characters/gen/back-human.svg",
  36496. extra: 1638/1548,
  36497. bottom: 69/1707
  36498. }
  36499. },
  36500. frontDemi: {
  36501. height: math.unit(5 + 2/12, "feet"),
  36502. name: "Front (Demi)",
  36503. image: {
  36504. source: "./media/characters/gen/front-demi.svg",
  36505. extra: 1627/1538,
  36506. bottom: 71/1698
  36507. }
  36508. },
  36509. backDemi: {
  36510. height: math.unit(5 + 2/12, "feet"),
  36511. name: "Back (Demi)",
  36512. image: {
  36513. source: "./media/characters/gen/back-demi.svg",
  36514. extra: 1638/1548,
  36515. bottom: 69/1707
  36516. }
  36517. },
  36518. },
  36519. [
  36520. {
  36521. name: "Normal",
  36522. height: math.unit(5 + 2/12, "feet"),
  36523. default: true
  36524. },
  36525. ]
  36526. ))
  36527. characterMakers.push(() => makeCharacter(
  36528. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36529. {
  36530. frontImp: {
  36531. height: math.unit(1 + 11/12, "feet"),
  36532. name: "Front (Imp)",
  36533. image: {
  36534. source: "./media/characters/max-kobold/front-imp.svg",
  36535. extra: 1238/1134,
  36536. bottom: 81/1319
  36537. }
  36538. },
  36539. backImp: {
  36540. height: math.unit(1 + 11/12, "feet"),
  36541. name: "Back (Imp)",
  36542. image: {
  36543. source: "./media/characters/max-kobold/back-imp.svg",
  36544. extra: 1334/1175,
  36545. bottom: 34/1368
  36546. }
  36547. },
  36548. frontDemi: {
  36549. height: math.unit(5 + 9/12, "feet"),
  36550. name: "Front (Demi)",
  36551. image: {
  36552. source: "./media/characters/max-kobold/front-demi.svg",
  36553. extra: 1715/1685,
  36554. bottom: 54/1769
  36555. }
  36556. },
  36557. backDemi: {
  36558. height: math.unit(5 + 9/12, "feet"),
  36559. name: "Back (Demi)",
  36560. image: {
  36561. source: "./media/characters/max-kobold/back-demi.svg",
  36562. extra: 1752/1729,
  36563. bottom: 41/1793
  36564. }
  36565. },
  36566. handImp: {
  36567. height: math.unit(0.45, "feet"),
  36568. name: "Hand (Imp)",
  36569. image: {
  36570. source: "./media/characters/max-kobold/hand.svg"
  36571. }
  36572. },
  36573. pawImp: {
  36574. height: math.unit(0.46, "feet"),
  36575. name: "Paw (Imp)",
  36576. image: {
  36577. source: "./media/characters/max-kobold/paw.svg"
  36578. }
  36579. },
  36580. handDemi: {
  36581. height: math.unit(0.80, "feet"),
  36582. name: "Hand (Demi)",
  36583. image: {
  36584. source: "./media/characters/max-kobold/hand.svg"
  36585. }
  36586. },
  36587. pawDemi: {
  36588. height: math.unit(1.1, "feet"),
  36589. name: "Paw (Demi)",
  36590. image: {
  36591. source: "./media/characters/max-kobold/paw.svg"
  36592. }
  36593. },
  36594. headImp: {
  36595. height: math.unit(1.33, "feet"),
  36596. name: "Head (Imp)",
  36597. image: {
  36598. source: "./media/characters/max-kobold/head-imp.svg"
  36599. }
  36600. },
  36601. mawImp: {
  36602. height: math.unit(0.75, "feet"),
  36603. name: "Maw (Imp)",
  36604. image: {
  36605. source: "./media/characters/max-kobold/maw-imp.svg"
  36606. }
  36607. },
  36608. mawDemi: {
  36609. height: math.unit(0.42, "feet"),
  36610. name: "Maw (Demi)",
  36611. image: {
  36612. source: "./media/characters/max-kobold/maw-demi.svg"
  36613. }
  36614. },
  36615. },
  36616. [
  36617. {
  36618. name: "Normal",
  36619. height: math.unit(1 + 11/12, "feet"),
  36620. default: true
  36621. },
  36622. ]
  36623. ))
  36624. characterMakers.push(() => makeCharacter(
  36625. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36626. {
  36627. front: {
  36628. height: math.unit(7 + 5/12, "feet"),
  36629. name: "Front",
  36630. image: {
  36631. source: "./media/characters/carbon/front.svg",
  36632. extra: 1754/1689,
  36633. bottom: 65/1819
  36634. }
  36635. },
  36636. back: {
  36637. height: math.unit(7 + 5/12, "feet"),
  36638. name: "Back",
  36639. image: {
  36640. source: "./media/characters/carbon/back.svg",
  36641. extra: 1762/1695,
  36642. bottom: 24/1786
  36643. }
  36644. },
  36645. frontGigantamax: {
  36646. height: math.unit(150, "feet"),
  36647. name: "Front (Gigantamax)",
  36648. image: {
  36649. source: "./media/characters/carbon/front-gigantamax.svg",
  36650. extra: 1826/1669,
  36651. bottom: 59/1885
  36652. }
  36653. },
  36654. backGigantamax: {
  36655. height: math.unit(150, "feet"),
  36656. name: "Back (Gigantamax)",
  36657. image: {
  36658. source: "./media/characters/carbon/back-gigantamax.svg",
  36659. extra: 1796/1653,
  36660. bottom: 53/1849
  36661. }
  36662. },
  36663. maw: {
  36664. height: math.unit(0.48, "feet"),
  36665. name: "Maw",
  36666. image: {
  36667. source: "./media/characters/carbon/maw.svg"
  36668. }
  36669. },
  36670. mawGigantamax: {
  36671. height: math.unit(7.5, "feet"),
  36672. name: "Maw (Gigantamax)",
  36673. image: {
  36674. source: "./media/characters/carbon/maw-gigantamax.svg"
  36675. }
  36676. },
  36677. },
  36678. [
  36679. {
  36680. name: "Normal",
  36681. height: math.unit(7 + 5/12, "feet"),
  36682. default: true
  36683. },
  36684. ]
  36685. ))
  36686. characterMakers.push(() => makeCharacter(
  36687. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36688. {
  36689. front: {
  36690. height: math.unit(6, "feet"),
  36691. name: "Front",
  36692. image: {
  36693. source: "./media/characters/maverick/front.svg",
  36694. extra: 1672/1661,
  36695. bottom: 85/1757
  36696. }
  36697. },
  36698. back: {
  36699. height: math.unit(6, "feet"),
  36700. name: "Back",
  36701. image: {
  36702. source: "./media/characters/maverick/back.svg",
  36703. extra: 1642/1631,
  36704. bottom: 38/1680
  36705. }
  36706. },
  36707. },
  36708. [
  36709. {
  36710. name: "Normal",
  36711. height: math.unit(6, "feet"),
  36712. default: true
  36713. },
  36714. ]
  36715. ))
  36716. characterMakers.push(() => makeCharacter(
  36717. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36718. {
  36719. front: {
  36720. height: math.unit(15, "feet"),
  36721. weight: math.unit(615, "lb"),
  36722. name: "Front",
  36723. image: {
  36724. source: "./media/characters/grockle/front.svg",
  36725. extra: 1535/1427,
  36726. bottom: 56/1591
  36727. }
  36728. },
  36729. },
  36730. [
  36731. {
  36732. name: "Normal",
  36733. height: math.unit(15, "feet"),
  36734. default: true
  36735. },
  36736. {
  36737. name: "Large",
  36738. height: math.unit(150, "feet")
  36739. },
  36740. {
  36741. name: "Macro",
  36742. height: math.unit(1876, "feet")
  36743. },
  36744. {
  36745. name: "Mega Macro",
  36746. height: math.unit(121940, "feet")
  36747. },
  36748. {
  36749. name: "Giga Macro",
  36750. height: math.unit(750, "km")
  36751. },
  36752. {
  36753. name: "Tera Macro",
  36754. height: math.unit(750000, "km")
  36755. },
  36756. {
  36757. name: "Galactic",
  36758. height: math.unit(1.4e5, "km")
  36759. },
  36760. {
  36761. name: "Godlike",
  36762. height: math.unit(9.8e280, "galaxies")
  36763. },
  36764. ]
  36765. ))
  36766. characterMakers.push(() => makeCharacter(
  36767. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36768. {
  36769. front: {
  36770. height: math.unit(11, "meters"),
  36771. weight: math.unit(20, "tonnes"),
  36772. name: "Front",
  36773. image: {
  36774. source: "./media/characters/alistair/front.svg",
  36775. extra: 1265/1009,
  36776. bottom: 93/1358
  36777. }
  36778. },
  36779. },
  36780. [
  36781. {
  36782. name: "Normal",
  36783. height: math.unit(11, "meters"),
  36784. default: true
  36785. },
  36786. ]
  36787. ))
  36788. characterMakers.push(() => makeCharacter(
  36789. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36790. {
  36791. front: {
  36792. height: math.unit(5 + 8/12, "feet"),
  36793. name: "Front",
  36794. image: {
  36795. source: "./media/characters/haruka/front.svg",
  36796. extra: 2012/1952,
  36797. bottom: 0/2012
  36798. }
  36799. },
  36800. },
  36801. [
  36802. {
  36803. name: "Normal",
  36804. height: math.unit(5 + 8/12, "feet"),
  36805. default: true
  36806. },
  36807. ]
  36808. ))
  36809. characterMakers.push(() => makeCharacter(
  36810. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36811. {
  36812. back: {
  36813. height: math.unit(9, "feet"),
  36814. name: "Back",
  36815. image: {
  36816. source: "./media/characters/vivian-sylveon/back.svg",
  36817. extra: 1853/1714,
  36818. bottom: 0/1853
  36819. }
  36820. },
  36821. },
  36822. [
  36823. {
  36824. name: "Normal",
  36825. height: math.unit(9, "feet"),
  36826. default: true
  36827. },
  36828. {
  36829. name: "Macro",
  36830. height: math.unit(500, "feet")
  36831. },
  36832. {
  36833. name: "Megamacro",
  36834. height: math.unit(600, "miles")
  36835. },
  36836. {
  36837. name: "Gigamacro",
  36838. height: math.unit(30000, "miles")
  36839. },
  36840. ]
  36841. ))
  36842. characterMakers.push(() => makeCharacter(
  36843. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36844. {
  36845. anthro: {
  36846. height: math.unit(5 + 10/12, "feet"),
  36847. weight: math.unit(100, "lb"),
  36848. name: "Anthro",
  36849. image: {
  36850. source: "./media/characters/daiki/anthro.svg",
  36851. extra: 1115/1027,
  36852. bottom: 69/1184
  36853. }
  36854. },
  36855. feral: {
  36856. height: math.unit(200, "feet"),
  36857. name: "Feral",
  36858. image: {
  36859. source: "./media/characters/daiki/feral.svg",
  36860. extra: 1256/313,
  36861. bottom: 39/1295
  36862. }
  36863. },
  36864. feralHead: {
  36865. height: math.unit(171, "feet"),
  36866. name: "Feral Head",
  36867. image: {
  36868. source: "./media/characters/daiki/feral-head.svg"
  36869. }
  36870. },
  36871. manaDragon: {
  36872. height: math.unit(170, "meters"),
  36873. name: "Mana-dragon",
  36874. image: {
  36875. source: "./media/characters/daiki/mana-dragon.svg",
  36876. extra: 763/420,
  36877. bottom: 97/860
  36878. }
  36879. },
  36880. },
  36881. [
  36882. {
  36883. name: "Normal",
  36884. height: math.unit(5 + 10/12, "feet"),
  36885. default: true
  36886. },
  36887. ]
  36888. ))
  36889. characterMakers.push(() => makeCharacter(
  36890. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36891. {
  36892. fullyEquippedFront: {
  36893. height: math.unit(3 + 1/12, "feet"),
  36894. weight: math.unit(24, "lb"),
  36895. name: "Fully Equipped (Front)",
  36896. image: {
  36897. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36898. extra: 687/605,
  36899. bottom: 18/705
  36900. }
  36901. },
  36902. fullyEquippedBack: {
  36903. height: math.unit(3 + 1/12, "feet"),
  36904. weight: math.unit(24, "lb"),
  36905. name: "Fully Equipped (Back)",
  36906. image: {
  36907. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36908. extra: 689/590,
  36909. bottom: 18/707
  36910. }
  36911. },
  36912. dailyWear: {
  36913. height: math.unit(3 + 1/12, "feet"),
  36914. weight: math.unit(24, "lb"),
  36915. name: "Daily Wear",
  36916. image: {
  36917. source: "./media/characters/tea-spot/daily-wear.svg",
  36918. extra: 701/620,
  36919. bottom: 21/722
  36920. }
  36921. },
  36922. maidWork: {
  36923. height: math.unit(3 + 1/12, "feet"),
  36924. weight: math.unit(24, "lb"),
  36925. name: "Maid Work",
  36926. image: {
  36927. source: "./media/characters/tea-spot/maid-work.svg",
  36928. extra: 693/609,
  36929. bottom: 15/708
  36930. }
  36931. },
  36932. },
  36933. [
  36934. {
  36935. name: "Normal",
  36936. height: math.unit(3 + 1/12, "feet"),
  36937. default: true
  36938. },
  36939. ]
  36940. ))
  36941. characterMakers.push(() => makeCharacter(
  36942. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36943. {
  36944. front: {
  36945. height: math.unit(175, "cm"),
  36946. weight: math.unit(75, "kg"),
  36947. name: "Front",
  36948. image: {
  36949. source: "./media/characters/chee/front.svg",
  36950. extra: 1796/1740,
  36951. bottom: 40/1836
  36952. }
  36953. },
  36954. },
  36955. [
  36956. {
  36957. name: "Micro-Micro",
  36958. height: math.unit(1, "nm")
  36959. },
  36960. {
  36961. name: "Micro-erst",
  36962. height: math.unit(1, "micrometer")
  36963. },
  36964. {
  36965. name: "Micro-er",
  36966. height: math.unit(1, "cm")
  36967. },
  36968. {
  36969. name: "Normal",
  36970. height: math.unit(175, "cm"),
  36971. default: true
  36972. },
  36973. {
  36974. name: "Macro",
  36975. height: math.unit(100, "m")
  36976. },
  36977. {
  36978. name: "Macro-er",
  36979. height: math.unit(1, "km")
  36980. },
  36981. {
  36982. name: "Macro-erst",
  36983. height: math.unit(10, "km")
  36984. },
  36985. {
  36986. name: "Macro-Macro",
  36987. height: math.unit(100, "km")
  36988. },
  36989. ]
  36990. ))
  36991. characterMakers.push(() => makeCharacter(
  36992. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36993. {
  36994. front: {
  36995. height: math.unit(11 + 9/12, "feet"),
  36996. weight: math.unit(935, "lb"),
  36997. name: "Front",
  36998. image: {
  36999. source: "./media/characters/kingsley/front.svg",
  37000. extra: 1803/1674,
  37001. bottom: 127/1930
  37002. }
  37003. },
  37004. frontNude: {
  37005. height: math.unit(11 + 9/12, "feet"),
  37006. weight: math.unit(935, "lb"),
  37007. name: "Front (Nude)",
  37008. image: {
  37009. source: "./media/characters/kingsley/front-nude.svg",
  37010. extra: 1803/1674,
  37011. bottom: 127/1930
  37012. }
  37013. },
  37014. },
  37015. [
  37016. {
  37017. name: "Normal",
  37018. height: math.unit(11 + 9/12, "feet"),
  37019. default: true
  37020. },
  37021. ]
  37022. ))
  37023. characterMakers.push(() => makeCharacter(
  37024. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37025. {
  37026. side: {
  37027. height: math.unit(9, "feet"),
  37028. name: "Side",
  37029. image: {
  37030. source: "./media/characters/rymel/side.svg",
  37031. extra: 792/469,
  37032. bottom: 121/913
  37033. }
  37034. },
  37035. maw: {
  37036. height: math.unit(2.4, "meters"),
  37037. name: "Maw",
  37038. image: {
  37039. source: "./media/characters/rymel/maw.svg"
  37040. }
  37041. },
  37042. },
  37043. [
  37044. {
  37045. name: "House Drake",
  37046. height: math.unit(2, "feet")
  37047. },
  37048. {
  37049. name: "Reduced",
  37050. height: math.unit(4.5, "feet")
  37051. },
  37052. {
  37053. name: "Normal",
  37054. height: math.unit(9, "feet"),
  37055. default: true
  37056. },
  37057. ]
  37058. ))
  37059. characterMakers.push(() => makeCharacter(
  37060. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37061. {
  37062. front: {
  37063. height: math.unit(1.74, "meters"),
  37064. weight: math.unit(55, "kg"),
  37065. name: "Front",
  37066. image: {
  37067. source: "./media/characters/rubus/front.svg",
  37068. extra: 1894/1742,
  37069. bottom: 44/1938
  37070. }
  37071. },
  37072. },
  37073. [
  37074. {
  37075. name: "Normal",
  37076. height: math.unit(1.74, "meters"),
  37077. default: true
  37078. },
  37079. ]
  37080. ))
  37081. characterMakers.push(() => makeCharacter(
  37082. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37083. {
  37084. front: {
  37085. height: math.unit(5 + 2/12, "feet"),
  37086. weight: math.unit(112, "lb"),
  37087. name: "Front",
  37088. image: {
  37089. source: "./media/characters/cassie-kingston/front.svg",
  37090. extra: 1438/1390,
  37091. bottom: 47/1485
  37092. }
  37093. },
  37094. },
  37095. [
  37096. {
  37097. name: "Normal",
  37098. height: math.unit(5 + 2/12, "feet"),
  37099. default: true
  37100. },
  37101. {
  37102. name: "Macro",
  37103. height: math.unit(128, "feet")
  37104. },
  37105. {
  37106. name: "Megamacro",
  37107. height: math.unit(2.56, "miles")
  37108. },
  37109. ]
  37110. ))
  37111. characterMakers.push(() => makeCharacter(
  37112. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37113. {
  37114. front: {
  37115. height: math.unit(7, "feet"),
  37116. name: "Front",
  37117. image: {
  37118. source: "./media/characters/fox/front.svg",
  37119. extra: 1798/1703,
  37120. bottom: 55/1853
  37121. }
  37122. },
  37123. back: {
  37124. height: math.unit(7, "feet"),
  37125. name: "Back",
  37126. image: {
  37127. source: "./media/characters/fox/back.svg",
  37128. extra: 1748/1649,
  37129. bottom: 32/1780
  37130. }
  37131. },
  37132. head: {
  37133. height: math.unit(1.95, "feet"),
  37134. name: "Head",
  37135. image: {
  37136. source: "./media/characters/fox/head.svg"
  37137. }
  37138. },
  37139. dick: {
  37140. height: math.unit(1.33, "feet"),
  37141. name: "Dick",
  37142. image: {
  37143. source: "./media/characters/fox/dick.svg"
  37144. }
  37145. },
  37146. foot: {
  37147. height: math.unit(1, "feet"),
  37148. name: "Foot",
  37149. image: {
  37150. source: "./media/characters/fox/foot.svg"
  37151. }
  37152. },
  37153. paw: {
  37154. height: math.unit(0.92, "feet"),
  37155. name: "Paw",
  37156. image: {
  37157. source: "./media/characters/fox/paw.svg"
  37158. }
  37159. },
  37160. },
  37161. [
  37162. {
  37163. name: "Small",
  37164. height: math.unit(3, "inches")
  37165. },
  37166. {
  37167. name: "\"Realistic\"",
  37168. height: math.unit(7, "feet")
  37169. },
  37170. {
  37171. name: "Normal",
  37172. height: math.unit(150, "feet"),
  37173. default: true
  37174. },
  37175. {
  37176. name: "BIG",
  37177. height: math.unit(1200, "feet")
  37178. },
  37179. {
  37180. name: "👀",
  37181. height: math.unit(5, "miles")
  37182. },
  37183. {
  37184. name: "👀👀👀",
  37185. height: math.unit(64, "miles")
  37186. },
  37187. ]
  37188. ))
  37189. characterMakers.push(() => makeCharacter(
  37190. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37191. {
  37192. front: {
  37193. height: math.unit(625, "feet"),
  37194. name: "Front",
  37195. image: {
  37196. source: "./media/characters/asonja-rossa/front.svg",
  37197. extra: 1833/1686,
  37198. bottom: 24/1857
  37199. }
  37200. },
  37201. back: {
  37202. height: math.unit(625, "feet"),
  37203. name: "Back",
  37204. image: {
  37205. source: "./media/characters/asonja-rossa/back.svg",
  37206. extra: 1852/1753,
  37207. bottom: 26/1878
  37208. }
  37209. },
  37210. },
  37211. [
  37212. {
  37213. name: "Macro",
  37214. height: math.unit(625, "feet"),
  37215. default: true
  37216. },
  37217. ]
  37218. ))
  37219. characterMakers.push(() => makeCharacter(
  37220. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37221. {
  37222. side: {
  37223. height: math.unit(8, "feet"),
  37224. name: "Side",
  37225. image: {
  37226. source: "./media/characters/rezukii/side.svg",
  37227. extra: 979/542,
  37228. bottom: 87/1066
  37229. }
  37230. },
  37231. sitting: {
  37232. height: math.unit(14.6, "feet"),
  37233. name: "Sitting",
  37234. image: {
  37235. source: "./media/characters/rezukii/sitting.svg",
  37236. extra: 1023/813,
  37237. bottom: 45/1068
  37238. }
  37239. },
  37240. },
  37241. [
  37242. {
  37243. name: "Tiny",
  37244. height: math.unit(2, "feet")
  37245. },
  37246. {
  37247. name: "Smol",
  37248. height: math.unit(4, "feet")
  37249. },
  37250. {
  37251. name: "Normal",
  37252. height: math.unit(8, "feet"),
  37253. default: true
  37254. },
  37255. {
  37256. name: "Big",
  37257. height: math.unit(12, "feet")
  37258. },
  37259. {
  37260. name: "Macro",
  37261. height: math.unit(30, "feet")
  37262. },
  37263. ]
  37264. ))
  37265. characterMakers.push(() => makeCharacter(
  37266. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37267. {
  37268. front: {
  37269. height: math.unit(14, "feet"),
  37270. weight: math.unit(9.5, "tonnes"),
  37271. name: "Front",
  37272. image: {
  37273. source: "./media/characters/dawnheart/front.svg",
  37274. extra: 2792/2675,
  37275. bottom: 64/2856
  37276. }
  37277. },
  37278. },
  37279. [
  37280. {
  37281. name: "Normal",
  37282. height: math.unit(14, "feet"),
  37283. default: true
  37284. },
  37285. ]
  37286. ))
  37287. characterMakers.push(() => makeCharacter(
  37288. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37289. {
  37290. front: {
  37291. height: math.unit(1.7, "m"),
  37292. name: "Front",
  37293. image: {
  37294. source: "./media/characters/gladi/front.svg",
  37295. extra: 1460/1362,
  37296. bottom: 19/1479
  37297. }
  37298. },
  37299. back: {
  37300. height: math.unit(1.7, "m"),
  37301. name: "Back",
  37302. image: {
  37303. source: "./media/characters/gladi/back.svg",
  37304. extra: 1459/1357,
  37305. bottom: 12/1471
  37306. }
  37307. },
  37308. feral: {
  37309. height: math.unit(2.05, "m"),
  37310. name: "Feral",
  37311. image: {
  37312. source: "./media/characters/gladi/feral.svg",
  37313. extra: 821/557,
  37314. bottom: 91/912
  37315. }
  37316. },
  37317. },
  37318. [
  37319. {
  37320. name: "Shortest",
  37321. height: math.unit(70, "cm")
  37322. },
  37323. {
  37324. name: "Normal",
  37325. height: math.unit(1.7, "m")
  37326. },
  37327. {
  37328. name: "Macro",
  37329. height: math.unit(10, "m"),
  37330. default: true
  37331. },
  37332. {
  37333. name: "Tallest",
  37334. height: math.unit(200, "m")
  37335. },
  37336. ]
  37337. ))
  37338. characterMakers.push(() => makeCharacter(
  37339. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37340. {
  37341. front: {
  37342. height: math.unit(5 + 7/12, "feet"),
  37343. weight: math.unit(2, "tons"),
  37344. name: "Front",
  37345. image: {
  37346. source: "./media/characters/erdno/front.svg",
  37347. extra: 1234/1129,
  37348. bottom: 35/1269
  37349. }
  37350. },
  37351. angled: {
  37352. height: math.unit(5 + 7/12, "feet"),
  37353. weight: math.unit(2, "tons"),
  37354. name: "Angled",
  37355. image: {
  37356. source: "./media/characters/erdno/angled.svg",
  37357. extra: 1185/1139,
  37358. bottom: 36/1221
  37359. }
  37360. },
  37361. side: {
  37362. height: math.unit(5 + 7/12, "feet"),
  37363. weight: math.unit(2, "tons"),
  37364. name: "Side",
  37365. image: {
  37366. source: "./media/characters/erdno/side.svg",
  37367. extra: 1191/1144,
  37368. bottom: 40/1231
  37369. }
  37370. },
  37371. back: {
  37372. height: math.unit(5 + 7/12, "feet"),
  37373. weight: math.unit(2, "tons"),
  37374. name: "Back",
  37375. image: {
  37376. source: "./media/characters/erdno/back.svg",
  37377. extra: 1202/1146,
  37378. bottom: 17/1219
  37379. }
  37380. },
  37381. frontNsfw: {
  37382. height: math.unit(5 + 7/12, "feet"),
  37383. weight: math.unit(2, "tons"),
  37384. name: "Front (NSFW)",
  37385. image: {
  37386. source: "./media/characters/erdno/front-nsfw.svg",
  37387. extra: 1234/1129,
  37388. bottom: 35/1269
  37389. }
  37390. },
  37391. angledNsfw: {
  37392. height: math.unit(5 + 7/12, "feet"),
  37393. weight: math.unit(2, "tons"),
  37394. name: "Angled (NSFW)",
  37395. image: {
  37396. source: "./media/characters/erdno/angled-nsfw.svg",
  37397. extra: 1185/1139,
  37398. bottom: 36/1221
  37399. }
  37400. },
  37401. sideNsfw: {
  37402. height: math.unit(5 + 7/12, "feet"),
  37403. weight: math.unit(2, "tons"),
  37404. name: "Side (NSFW)",
  37405. image: {
  37406. source: "./media/characters/erdno/side-nsfw.svg",
  37407. extra: 1191/1144,
  37408. bottom: 40/1231
  37409. }
  37410. },
  37411. backNsfw: {
  37412. height: math.unit(5 + 7/12, "feet"),
  37413. weight: math.unit(2, "tons"),
  37414. name: "Back (NSFW)",
  37415. image: {
  37416. source: "./media/characters/erdno/back-nsfw.svg",
  37417. extra: 1202/1146,
  37418. bottom: 17/1219
  37419. }
  37420. },
  37421. frontHyper: {
  37422. height: math.unit(5 + 7/12, "feet"),
  37423. weight: math.unit(2, "tons"),
  37424. name: "Front (Hyper)",
  37425. image: {
  37426. source: "./media/characters/erdno/front-hyper.svg",
  37427. extra: 1298/1136,
  37428. bottom: 35/1333
  37429. }
  37430. },
  37431. },
  37432. [
  37433. {
  37434. name: "Normal",
  37435. height: math.unit(5 + 7/12, "feet"),
  37436. default: true
  37437. },
  37438. {
  37439. name: "Big",
  37440. height: math.unit(5.7, "meters")
  37441. },
  37442. {
  37443. name: "Macro",
  37444. height: math.unit(5.7, "kilometers")
  37445. },
  37446. {
  37447. name: "Megamacro",
  37448. height: math.unit(5.7, "earths")
  37449. },
  37450. ]
  37451. ))
  37452. characterMakers.push(() => makeCharacter(
  37453. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37454. {
  37455. front: {
  37456. height: math.unit(5 + 10/12, "feet"),
  37457. weight: math.unit(150, "lb"),
  37458. name: "Front",
  37459. image: {
  37460. source: "./media/characters/jamie/front.svg",
  37461. extra: 1908/1768,
  37462. bottom: 19/1927
  37463. }
  37464. },
  37465. },
  37466. [
  37467. {
  37468. name: "Minimum",
  37469. height: math.unit(2, "cm")
  37470. },
  37471. {
  37472. name: "Micro",
  37473. height: math.unit(3, "inches")
  37474. },
  37475. {
  37476. name: "Normal",
  37477. height: math.unit(5 + 10/12, "feet"),
  37478. default: true
  37479. },
  37480. {
  37481. name: "Macro",
  37482. height: math.unit(150, "feet")
  37483. },
  37484. {
  37485. name: "Megamacro",
  37486. height: math.unit(10000, "m")
  37487. },
  37488. ]
  37489. ))
  37490. characterMakers.push(() => makeCharacter(
  37491. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37492. {
  37493. front: {
  37494. height: math.unit(2, "meters"),
  37495. weight: math.unit(100, "kg"),
  37496. name: "Front",
  37497. image: {
  37498. source: "./media/characters/shiron/front.svg",
  37499. extra: 2103/1985,
  37500. bottom: 98/2201
  37501. }
  37502. },
  37503. back: {
  37504. height: math.unit(2, "meters"),
  37505. weight: math.unit(100, "kg"),
  37506. name: "Back",
  37507. image: {
  37508. source: "./media/characters/shiron/back.svg",
  37509. extra: 2110/2015,
  37510. bottom: 89/2199
  37511. }
  37512. },
  37513. hand: {
  37514. height: math.unit(0.96, "feet"),
  37515. name: "Hand",
  37516. image: {
  37517. source: "./media/characters/shiron/hand.svg"
  37518. }
  37519. },
  37520. foot: {
  37521. height: math.unit(1.464, "feet"),
  37522. name: "Foot",
  37523. image: {
  37524. source: "./media/characters/shiron/foot.svg"
  37525. }
  37526. },
  37527. },
  37528. [
  37529. {
  37530. name: "Normal",
  37531. height: math.unit(2, "meters")
  37532. },
  37533. {
  37534. name: "Macro",
  37535. height: math.unit(500, "meters"),
  37536. default: true
  37537. },
  37538. {
  37539. name: "Megamacro",
  37540. height: math.unit(20, "km")
  37541. },
  37542. ]
  37543. ))
  37544. characterMakers.push(() => makeCharacter(
  37545. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37546. {
  37547. front: {
  37548. height: math.unit(6, "feet"),
  37549. name: "Front",
  37550. image: {
  37551. source: "./media/characters/sam/front.svg",
  37552. extra: 849/826,
  37553. bottom: 19/868
  37554. }
  37555. },
  37556. },
  37557. [
  37558. {
  37559. name: "Normal",
  37560. height: math.unit(6, "feet"),
  37561. default: true
  37562. },
  37563. ]
  37564. ))
  37565. characterMakers.push(() => makeCharacter(
  37566. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37567. {
  37568. front: {
  37569. height: math.unit(8 + 4/12, "feet"),
  37570. weight: math.unit(122, "kg"),
  37571. name: "Front",
  37572. image: {
  37573. source: "./media/characters/namori-kurogawa/front.svg",
  37574. extra: 1894/1576,
  37575. bottom: 34/1928
  37576. }
  37577. },
  37578. },
  37579. [
  37580. {
  37581. name: "Normal",
  37582. height: math.unit(8 + 4/12, "feet"),
  37583. default: true
  37584. },
  37585. ]
  37586. ))
  37587. characterMakers.push(() => makeCharacter(
  37588. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37589. {
  37590. front: {
  37591. height: math.unit(9, "feet"),
  37592. weight: math.unit(621, "lb"),
  37593. name: "Front",
  37594. image: {
  37595. source: "./media/characters/unmru/front.svg",
  37596. extra: 1853/1747,
  37597. bottom: 73/1926
  37598. }
  37599. },
  37600. side: {
  37601. height: math.unit(9, "feet"),
  37602. weight: math.unit(621, "lb"),
  37603. name: "Side",
  37604. image: {
  37605. source: "./media/characters/unmru/side.svg",
  37606. extra: 1781/1671,
  37607. bottom: 127/1908
  37608. }
  37609. },
  37610. back: {
  37611. height: math.unit(9, "feet"),
  37612. weight: math.unit(621, "lb"),
  37613. name: "Back",
  37614. image: {
  37615. source: "./media/characters/unmru/back.svg",
  37616. extra: 1894/1765,
  37617. bottom: 75/1969
  37618. }
  37619. },
  37620. dick: {
  37621. height: math.unit(3, "feet"),
  37622. weight: math.unit(35, "lb"),
  37623. name: "Dick",
  37624. image: {
  37625. source: "./media/characters/unmru/dick.svg"
  37626. }
  37627. },
  37628. },
  37629. [
  37630. {
  37631. name: "Normal",
  37632. height: math.unit(9, "feet")
  37633. },
  37634. {
  37635. name: "Natural",
  37636. height: math.unit(27, "feet"),
  37637. default: true
  37638. },
  37639. {
  37640. name: "Giant",
  37641. height: math.unit(90, "feet")
  37642. },
  37643. {
  37644. name: "Kaiju",
  37645. height: math.unit(270, "feet")
  37646. },
  37647. {
  37648. name: "Macro",
  37649. height: math.unit(900, "feet")
  37650. },
  37651. {
  37652. name: "Macro+",
  37653. height: math.unit(2700, "feet")
  37654. },
  37655. {
  37656. name: "Megamacro",
  37657. height: math.unit(9000, "feet")
  37658. },
  37659. {
  37660. name: "City-Crushing",
  37661. height: math.unit(27000, "feet")
  37662. },
  37663. {
  37664. name: "Mountain-Mashing",
  37665. height: math.unit(90000, "feet")
  37666. },
  37667. {
  37668. name: "Earth-Eclipsing",
  37669. height: math.unit(2.7e8, "feet")
  37670. },
  37671. {
  37672. name: "Sol-Swallowing",
  37673. height: math.unit(9e10, "feet")
  37674. },
  37675. {
  37676. name: "Majoris-Munching",
  37677. height: math.unit(2.7e13, "feet")
  37678. },
  37679. ]
  37680. ))
  37681. characterMakers.push(() => makeCharacter(
  37682. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37683. {
  37684. front: {
  37685. height: math.unit(1, "inch"),
  37686. name: "Front",
  37687. image: {
  37688. source: "./media/characters/squeaks-mouse/front.svg",
  37689. extra: 352/308,
  37690. bottom: 25/377
  37691. }
  37692. },
  37693. },
  37694. [
  37695. {
  37696. name: "Micro",
  37697. height: math.unit(1, "inch"),
  37698. default: true
  37699. },
  37700. ]
  37701. ))
  37702. characterMakers.push(() => makeCharacter(
  37703. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37704. {
  37705. side: {
  37706. height: math.unit(35, "feet"),
  37707. name: "Side",
  37708. image: {
  37709. source: "./media/characters/sayko/side.svg",
  37710. extra: 1697/1021,
  37711. bottom: 82/1779
  37712. }
  37713. },
  37714. head: {
  37715. height: math.unit(16, "feet"),
  37716. name: "Head",
  37717. image: {
  37718. source: "./media/characters/sayko/head.svg"
  37719. }
  37720. },
  37721. forepaw: {
  37722. height: math.unit(7.85, "feet"),
  37723. name: "Forepaw",
  37724. image: {
  37725. source: "./media/characters/sayko/forepaw.svg"
  37726. }
  37727. },
  37728. hindpaw: {
  37729. height: math.unit(8.8, "feet"),
  37730. name: "Hindpaw",
  37731. image: {
  37732. source: "./media/characters/sayko/hindpaw.svg"
  37733. }
  37734. },
  37735. },
  37736. [
  37737. {
  37738. name: "Normal",
  37739. height: math.unit(35, "feet"),
  37740. default: true
  37741. },
  37742. {
  37743. name: "Colossus",
  37744. height: math.unit(100, "meters")
  37745. },
  37746. {
  37747. name: "\"Small\" Deity",
  37748. height: math.unit(1, "km")
  37749. },
  37750. {
  37751. name: "\"Large\" Deity",
  37752. height: math.unit(15, "km")
  37753. },
  37754. ]
  37755. ))
  37756. characterMakers.push(() => makeCharacter(
  37757. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37758. {
  37759. front: {
  37760. height: math.unit(6, "feet"),
  37761. weight: math.unit(250, "lb"),
  37762. name: "Front",
  37763. image: {
  37764. source: "./media/characters/mukiro/front.svg",
  37765. extra: 1368/1310,
  37766. bottom: 34/1402
  37767. }
  37768. },
  37769. },
  37770. [
  37771. {
  37772. name: "Normal",
  37773. height: math.unit(6, "feet"),
  37774. default: true
  37775. },
  37776. ]
  37777. ))
  37778. characterMakers.push(() => makeCharacter(
  37779. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37780. {
  37781. front: {
  37782. height: math.unit(12 + 4/12, "feet"),
  37783. name: "Front",
  37784. image: {
  37785. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37786. extra: 1346/1311,
  37787. bottom: 65/1411
  37788. }
  37789. },
  37790. },
  37791. [
  37792. {
  37793. name: "Base",
  37794. height: math.unit(12 + 4/12, "feet"),
  37795. default: true
  37796. },
  37797. {
  37798. name: "Macro",
  37799. height: math.unit(150, "feet")
  37800. },
  37801. {
  37802. name: "Mega",
  37803. height: math.unit(2, "miles")
  37804. },
  37805. {
  37806. name: "Demi God",
  37807. height: math.unit(4, "AU")
  37808. },
  37809. {
  37810. name: "God Size",
  37811. height: math.unit(1, "universe")
  37812. },
  37813. ]
  37814. ))
  37815. characterMakers.push(() => makeCharacter(
  37816. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37817. {
  37818. front: {
  37819. height: math.unit(3 + 3/12, "feet"),
  37820. weight: math.unit(88, "lb"),
  37821. name: "Front",
  37822. image: {
  37823. source: "./media/characters/trey/front.svg",
  37824. extra: 1815/1509,
  37825. bottom: 60/1875
  37826. }
  37827. },
  37828. },
  37829. [
  37830. {
  37831. name: "Normal",
  37832. height: math.unit(3 + 3/12, "feet"),
  37833. default: true
  37834. },
  37835. ]
  37836. ))
  37837. characterMakers.push(() => makeCharacter(
  37838. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37839. {
  37840. front: {
  37841. height: math.unit(4, "meters"),
  37842. name: "Front",
  37843. image: {
  37844. source: "./media/characters/adelonda/front.svg",
  37845. extra: 1077/982,
  37846. bottom: 39/1116
  37847. }
  37848. },
  37849. back: {
  37850. height: math.unit(4, "meters"),
  37851. name: "Back",
  37852. image: {
  37853. source: "./media/characters/adelonda/back.svg",
  37854. extra: 1105/1003,
  37855. bottom: 25/1130
  37856. }
  37857. },
  37858. },
  37859. [
  37860. {
  37861. name: "Normal",
  37862. height: math.unit(4, "meters"),
  37863. default: true
  37864. },
  37865. ]
  37866. ))
  37867. characterMakers.push(() => makeCharacter(
  37868. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37869. {
  37870. front: {
  37871. height: math.unit(8 + 4/12, "feet"),
  37872. weight: math.unit(670, "lb"),
  37873. name: "Front",
  37874. image: {
  37875. source: "./media/characters/acadiel/front.svg",
  37876. extra: 1901/1595,
  37877. bottom: 142/2043
  37878. }
  37879. },
  37880. },
  37881. [
  37882. {
  37883. name: "Normal",
  37884. height: math.unit(8 + 4/12, "feet"),
  37885. default: true
  37886. },
  37887. {
  37888. name: "Macro",
  37889. height: math.unit(200, "feet")
  37890. },
  37891. ]
  37892. ))
  37893. characterMakers.push(() => makeCharacter(
  37894. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37895. {
  37896. front: {
  37897. height: math.unit(6 + 2/12, "feet"),
  37898. weight: math.unit(185, "lb"),
  37899. name: "Front",
  37900. image: {
  37901. source: "./media/characters/kayne-ein/front.svg",
  37902. extra: 1780/1560,
  37903. bottom: 81/1861
  37904. }
  37905. },
  37906. },
  37907. [
  37908. {
  37909. name: "Normal",
  37910. height: math.unit(6 + 2/12, "feet"),
  37911. default: true
  37912. },
  37913. {
  37914. name: "Transformation Stage",
  37915. height: math.unit(15, "feet")
  37916. },
  37917. {
  37918. name: "Macro",
  37919. height: math.unit(150, "feet")
  37920. },
  37921. {
  37922. name: "Earth's Shadow",
  37923. height: math.unit(6200, "miles")
  37924. },
  37925. {
  37926. name: "Universal Demon",
  37927. height: math.unit(28e9, "parsecs")
  37928. },
  37929. {
  37930. name: "Multiverse God",
  37931. height: math.unit(3, "multiverses")
  37932. },
  37933. ]
  37934. ))
  37935. characterMakers.push(() => makeCharacter(
  37936. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37937. {
  37938. front: {
  37939. height: math.unit(5 + 5/12, "feet"),
  37940. name: "Front",
  37941. image: {
  37942. source: "./media/characters/fawn/front.svg",
  37943. extra: 1873/1731,
  37944. bottom: 95/1968
  37945. }
  37946. },
  37947. back: {
  37948. height: math.unit(5 + 5/12, "feet"),
  37949. name: "Back",
  37950. image: {
  37951. source: "./media/characters/fawn/back.svg",
  37952. extra: 1813/1700,
  37953. bottom: 14/1827
  37954. }
  37955. },
  37956. hoof: {
  37957. height: math.unit(1.45, "feet"),
  37958. name: "Hoof",
  37959. image: {
  37960. source: "./media/characters/fawn/hoof.svg"
  37961. }
  37962. },
  37963. },
  37964. [
  37965. {
  37966. name: "Normal",
  37967. height: math.unit(5 + 5/12, "feet"),
  37968. default: true
  37969. },
  37970. ]
  37971. ))
  37972. characterMakers.push(() => makeCharacter(
  37973. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37974. {
  37975. front: {
  37976. height: math.unit(2 + 5/12, "feet"),
  37977. name: "Front",
  37978. image: {
  37979. source: "./media/characters/orion/front.svg",
  37980. extra: 1366/1304,
  37981. bottom: 43/1409
  37982. }
  37983. },
  37984. paw: {
  37985. height: math.unit(0.52, "feet"),
  37986. name: "Paw",
  37987. image: {
  37988. source: "./media/characters/orion/paw.svg"
  37989. }
  37990. },
  37991. },
  37992. [
  37993. {
  37994. name: "Normal",
  37995. height: math.unit(2 + 5/12, "feet"),
  37996. default: true
  37997. },
  37998. ]
  37999. ))
  38000. characterMakers.push(() => makeCharacter(
  38001. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38002. {
  38003. front: {
  38004. height: math.unit(5 + 10/12, "feet"),
  38005. name: "Front",
  38006. image: {
  38007. source: "./media/characters/vera/front.svg",
  38008. extra: 1680/1575,
  38009. bottom: 49/1729
  38010. }
  38011. },
  38012. back: {
  38013. height: math.unit(5 + 10/12, "feet"),
  38014. name: "Back",
  38015. image: {
  38016. source: "./media/characters/vera/back.svg",
  38017. extra: 1700/1588,
  38018. bottom: 18/1718
  38019. }
  38020. },
  38021. arcanine: {
  38022. height: math.unit(6 + 8/12, "feet"),
  38023. name: "Arcanine",
  38024. image: {
  38025. source: "./media/characters/vera/arcanine.svg",
  38026. extra: 1590/1511,
  38027. bottom: 71/1661
  38028. }
  38029. },
  38030. maw: {
  38031. height: math.unit(0.82, "feet"),
  38032. name: "Maw",
  38033. image: {
  38034. source: "./media/characters/vera/maw.svg"
  38035. }
  38036. },
  38037. mawArcanine: {
  38038. height: math.unit(0.97, "feet"),
  38039. name: "Maw (Arcanine)",
  38040. image: {
  38041. source: "./media/characters/vera/maw-arcanine.svg"
  38042. }
  38043. },
  38044. paw: {
  38045. height: math.unit(0.75, "feet"),
  38046. name: "Paw",
  38047. image: {
  38048. source: "./media/characters/vera/paw.svg"
  38049. }
  38050. },
  38051. pawprint: {
  38052. height: math.unit(0.52, "feet"),
  38053. name: "Pawprint",
  38054. image: {
  38055. source: "./media/characters/vera/pawprint.svg"
  38056. }
  38057. },
  38058. },
  38059. [
  38060. {
  38061. name: "Normal",
  38062. height: math.unit(5 + 10/12, "feet"),
  38063. default: true
  38064. },
  38065. {
  38066. name: "Macro",
  38067. height: math.unit(75, "feet")
  38068. },
  38069. ]
  38070. ))
  38071. characterMakers.push(() => makeCharacter(
  38072. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38073. {
  38074. front: {
  38075. height: math.unit(4, "feet"),
  38076. weight: math.unit(40, "lb"),
  38077. name: "Front",
  38078. image: {
  38079. source: "./media/characters/orvan-rabbit/front.svg",
  38080. extra: 1896/1642,
  38081. bottom: 29/1925
  38082. }
  38083. },
  38084. },
  38085. [
  38086. {
  38087. name: "Normal",
  38088. height: math.unit(4, "feet"),
  38089. default: true
  38090. },
  38091. ]
  38092. ))
  38093. characterMakers.push(() => makeCharacter(
  38094. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38095. {
  38096. front: {
  38097. height: math.unit(6, "feet"),
  38098. weight: math.unit(168, "lb"),
  38099. name: "Front",
  38100. image: {
  38101. source: "./media/characters/lisa/front.svg",
  38102. extra: 2065/1867,
  38103. bottom: 46/2111
  38104. }
  38105. },
  38106. back: {
  38107. height: math.unit(6, "feet"),
  38108. weight: math.unit(168, "lb"),
  38109. name: "Back",
  38110. image: {
  38111. source: "./media/characters/lisa/back.svg",
  38112. extra: 1982/1838,
  38113. bottom: 29/2011
  38114. }
  38115. },
  38116. maw: {
  38117. height: math.unit(0.81, "feet"),
  38118. name: "Maw",
  38119. image: {
  38120. source: "./media/characters/lisa/maw.svg"
  38121. }
  38122. },
  38123. paw: {
  38124. height: math.unit(0.9, "feet"),
  38125. name: "Paw",
  38126. image: {
  38127. source: "./media/characters/lisa/paw.svg"
  38128. }
  38129. },
  38130. caribousune: {
  38131. height: math.unit(7 + 2/12, "feet"),
  38132. weight: math.unit(268, "lb"),
  38133. name: "Caribousune",
  38134. image: {
  38135. source: "./media/characters/lisa/caribousune.svg",
  38136. extra: 1843/1633,
  38137. bottom: 29/1872
  38138. }
  38139. },
  38140. frontCaribousune: {
  38141. height: math.unit(7 + 2/12, "feet"),
  38142. weight: math.unit(268, "lb"),
  38143. name: "Front (Caribousune)",
  38144. image: {
  38145. source: "./media/characters/lisa/front-caribousune.svg",
  38146. extra: 1818/1638,
  38147. bottom: 52/1870
  38148. }
  38149. },
  38150. sideCaribousune: {
  38151. height: math.unit(7 + 2/12, "feet"),
  38152. weight: math.unit(268, "lb"),
  38153. name: "Side (Caribousune)",
  38154. image: {
  38155. source: "./media/characters/lisa/side-caribousune.svg",
  38156. extra: 1851/1635,
  38157. bottom: 16/1867
  38158. }
  38159. },
  38160. backCaribousune: {
  38161. height: math.unit(7 + 2/12, "feet"),
  38162. weight: math.unit(268, "lb"),
  38163. name: "Back (Caribousune)",
  38164. image: {
  38165. source: "./media/characters/lisa/back-caribousune.svg",
  38166. extra: 1801/1604,
  38167. bottom: 44/1845
  38168. }
  38169. },
  38170. caribou: {
  38171. height: math.unit(7 + 2/12, "feet"),
  38172. weight: math.unit(268, "lb"),
  38173. name: "Caribou",
  38174. image: {
  38175. source: "./media/characters/lisa/caribou.svg",
  38176. extra: 1843/1633,
  38177. bottom: 29/1872
  38178. }
  38179. },
  38180. frontCaribou: {
  38181. height: math.unit(7 + 2/12, "feet"),
  38182. weight: math.unit(268, "lb"),
  38183. name: "Front (Caribou)",
  38184. image: {
  38185. source: "./media/characters/lisa/front-caribou.svg",
  38186. extra: 1818/1638,
  38187. bottom: 52/1870
  38188. }
  38189. },
  38190. sideCaribou: {
  38191. height: math.unit(7 + 2/12, "feet"),
  38192. weight: math.unit(268, "lb"),
  38193. name: "Side (Caribou)",
  38194. image: {
  38195. source: "./media/characters/lisa/side-caribou.svg",
  38196. extra: 1851/1635,
  38197. bottom: 16/1867
  38198. }
  38199. },
  38200. backCaribou: {
  38201. height: math.unit(7 + 2/12, "feet"),
  38202. weight: math.unit(268, "lb"),
  38203. name: "Back (Caribou)",
  38204. image: {
  38205. source: "./media/characters/lisa/back-caribou.svg",
  38206. extra: 1801/1604,
  38207. bottom: 44/1845
  38208. }
  38209. },
  38210. mawCaribou: {
  38211. height: math.unit(1.45, "feet"),
  38212. name: "Maw (Caribou)",
  38213. image: {
  38214. source: "./media/characters/lisa/maw-caribou.svg"
  38215. }
  38216. },
  38217. mawCaribousune: {
  38218. height: math.unit(1.45, "feet"),
  38219. name: "Maw (Caribousune)",
  38220. image: {
  38221. source: "./media/characters/lisa/maw-caribousune.svg"
  38222. }
  38223. },
  38224. pawCaribousune: {
  38225. height: math.unit(1.61, "feet"),
  38226. name: "Paw (Caribou)",
  38227. image: {
  38228. source: "./media/characters/lisa/paw-caribousune.svg"
  38229. }
  38230. },
  38231. },
  38232. [
  38233. {
  38234. name: "Normal",
  38235. height: math.unit(6, "feet")
  38236. },
  38237. {
  38238. name: "God Size",
  38239. height: math.unit(72, "feet"),
  38240. default: true
  38241. },
  38242. {
  38243. name: "Towering",
  38244. height: math.unit(288, "feet")
  38245. },
  38246. {
  38247. name: "City Size",
  38248. height: math.unit(48384, "feet")
  38249. },
  38250. {
  38251. name: "Continental",
  38252. height: math.unit(4200, "miles")
  38253. },
  38254. {
  38255. name: "Planet Eater",
  38256. height: math.unit(42, "earths")
  38257. },
  38258. {
  38259. name: "Star Swallower",
  38260. height: math.unit(42, "solarradii")
  38261. },
  38262. {
  38263. name: "System Swallower",
  38264. height: math.unit(84000, "AU")
  38265. },
  38266. {
  38267. name: "Galaxy Gobbler",
  38268. height: math.unit(42, "galaxies")
  38269. },
  38270. {
  38271. name: "Universe Devourer",
  38272. height: math.unit(42, "universes")
  38273. },
  38274. {
  38275. name: "Multiverse Muncher",
  38276. height: math.unit(42, "multiverses")
  38277. },
  38278. ]
  38279. ))
  38280. characterMakers.push(() => makeCharacter(
  38281. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38282. {
  38283. front: {
  38284. height: math.unit(36, "feet"),
  38285. name: "Front",
  38286. image: {
  38287. source: "./media/characters/shadow-rat/front.svg",
  38288. extra: 1845/1758,
  38289. bottom: 83/1928
  38290. }
  38291. },
  38292. },
  38293. [
  38294. {
  38295. name: "Macro",
  38296. height: math.unit(36, "feet"),
  38297. default: true
  38298. },
  38299. ]
  38300. ))
  38301. characterMakers.push(() => makeCharacter(
  38302. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38303. {
  38304. side: {
  38305. height: math.unit(8, "feet"),
  38306. weight: math.unit(2630, "lb"),
  38307. name: "Side",
  38308. image: {
  38309. source: "./media/characters/torallia/side.svg",
  38310. extra: 2164/2021,
  38311. bottom: 371/2535
  38312. }
  38313. },
  38314. },
  38315. [
  38316. {
  38317. name: "Mortal Interaction",
  38318. height: math.unit(8, "feet")
  38319. },
  38320. {
  38321. name: "Natural",
  38322. height: math.unit(24, "feet"),
  38323. default: true
  38324. },
  38325. {
  38326. name: "Giant",
  38327. height: math.unit(80, "feet")
  38328. },
  38329. {
  38330. name: "Kaiju",
  38331. height: math.unit(240, "feet")
  38332. },
  38333. {
  38334. name: "Macro",
  38335. height: math.unit(800, "feet")
  38336. },
  38337. {
  38338. name: "Macro+",
  38339. height: math.unit(2400, "feet")
  38340. },
  38341. {
  38342. name: "Macro++",
  38343. height: math.unit(8000, "feet")
  38344. },
  38345. {
  38346. name: "City-Crushing",
  38347. height: math.unit(24000, "feet")
  38348. },
  38349. {
  38350. name: "Mountain-Mashing",
  38351. height: math.unit(80000, "feet")
  38352. },
  38353. {
  38354. name: "District Demolisher",
  38355. height: math.unit(240000, "feet")
  38356. },
  38357. {
  38358. name: "Tri-County Terror",
  38359. height: math.unit(800000, "feet")
  38360. },
  38361. {
  38362. name: "State Smasher",
  38363. height: math.unit(2.4e6, "feet")
  38364. },
  38365. {
  38366. name: "Nation Nemesis",
  38367. height: math.unit(8e6, "feet")
  38368. },
  38369. {
  38370. name: "Continent Cracker",
  38371. height: math.unit(2.4e7, "feet")
  38372. },
  38373. {
  38374. name: "Planet-Pillaging",
  38375. height: math.unit(8e7, "feet")
  38376. },
  38377. {
  38378. name: "Earth-Eclipsing",
  38379. height: math.unit(2.4e8, "feet")
  38380. },
  38381. {
  38382. name: "Jovian-Jostling",
  38383. height: math.unit(8e8, "feet")
  38384. },
  38385. {
  38386. name: "Gas Giant Gulper",
  38387. height: math.unit(2.4e9, "feet")
  38388. },
  38389. {
  38390. name: "Astral Annihilator",
  38391. height: math.unit(8e9, "feet")
  38392. },
  38393. {
  38394. name: "Celestial Conqueror",
  38395. height: math.unit(2.4e10, "feet")
  38396. },
  38397. {
  38398. name: "Sol-Swallowing",
  38399. height: math.unit(8e10, "feet")
  38400. },
  38401. {
  38402. name: "Hunter of the Heavens",
  38403. height: math.unit(2.4e13, "feet")
  38404. },
  38405. ]
  38406. ))
  38407. characterMakers.push(() => makeCharacter(
  38408. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38409. {
  38410. front: {
  38411. height: math.unit(6 + 8/12, "feet"),
  38412. name: "Front",
  38413. image: {
  38414. source: "./media/characters/rebecca-pawlson/front.svg",
  38415. extra: 1737/1596,
  38416. bottom: 107/1844
  38417. }
  38418. },
  38419. back: {
  38420. height: math.unit(6 + 8/12, "feet"),
  38421. name: "Back",
  38422. image: {
  38423. source: "./media/characters/rebecca-pawlson/back.svg",
  38424. extra: 1702/1523,
  38425. bottom: 86/1788
  38426. }
  38427. },
  38428. },
  38429. [
  38430. {
  38431. name: "Normal",
  38432. height: math.unit(6 + 8/12, "feet")
  38433. },
  38434. {
  38435. name: "Mini Macro",
  38436. height: math.unit(10, "feet"),
  38437. default: true
  38438. },
  38439. {
  38440. name: "Macro",
  38441. height: math.unit(100, "feet")
  38442. },
  38443. {
  38444. name: "Mega Macro",
  38445. height: math.unit(2500, "feet")
  38446. },
  38447. {
  38448. name: "Giga Macro",
  38449. height: math.unit(50, "miles")
  38450. },
  38451. ]
  38452. ))
  38453. characterMakers.push(() => makeCharacter(
  38454. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38455. {
  38456. front: {
  38457. height: math.unit(7 + 6/12, "feet"),
  38458. weight: math.unit(600, "lb"),
  38459. name: "Front",
  38460. image: {
  38461. source: "./media/characters/moxie-nova/front.svg",
  38462. extra: 1734/1652,
  38463. bottom: 41/1775
  38464. }
  38465. },
  38466. },
  38467. [
  38468. {
  38469. name: "Normal",
  38470. height: math.unit(7 + 6/12, "feet"),
  38471. default: true
  38472. },
  38473. ]
  38474. ))
  38475. characterMakers.push(() => makeCharacter(
  38476. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38477. {
  38478. goat: {
  38479. height: math.unit(4, "feet"),
  38480. weight: math.unit(180, "lb"),
  38481. name: "Goat",
  38482. image: {
  38483. source: "./media/characters/tiffany/goat.svg",
  38484. extra: 1845/1595,
  38485. bottom: 106/1951
  38486. }
  38487. },
  38488. front: {
  38489. height: math.unit(5, "feet"),
  38490. weight: math.unit(150, "lb"),
  38491. name: "Foxcoon",
  38492. image: {
  38493. source: "./media/characters/tiffany/foxcoon.svg",
  38494. extra: 1941/1845,
  38495. bottom: 58/1999
  38496. }
  38497. },
  38498. },
  38499. [
  38500. {
  38501. name: "Normal",
  38502. height: math.unit(5, "feet"),
  38503. default: true
  38504. },
  38505. ]
  38506. ))
  38507. characterMakers.push(() => makeCharacter(
  38508. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38509. {
  38510. front: {
  38511. height: math.unit(8, "feet"),
  38512. weight: math.unit(300, "lb"),
  38513. name: "Front",
  38514. image: {
  38515. source: "./media/characters/raxinath/front.svg",
  38516. extra: 1407/1309,
  38517. bottom: 39/1446
  38518. }
  38519. },
  38520. back: {
  38521. height: math.unit(8, "feet"),
  38522. weight: math.unit(300, "lb"),
  38523. name: "Back",
  38524. image: {
  38525. source: "./media/characters/raxinath/back.svg",
  38526. extra: 1405/1315,
  38527. bottom: 9/1414
  38528. }
  38529. },
  38530. },
  38531. [
  38532. {
  38533. name: "Speck",
  38534. height: math.unit(0.5, "nm")
  38535. },
  38536. {
  38537. name: "Micro",
  38538. height: math.unit(3, "inches")
  38539. },
  38540. {
  38541. name: "Kobold",
  38542. height: math.unit(3, "feet")
  38543. },
  38544. {
  38545. name: "Normal",
  38546. height: math.unit(8, "feet"),
  38547. default: true
  38548. },
  38549. {
  38550. name: "Giant",
  38551. height: math.unit(50, "feet")
  38552. },
  38553. {
  38554. name: "Macro",
  38555. height: math.unit(1000, "feet")
  38556. },
  38557. {
  38558. name: "Megamacro",
  38559. height: math.unit(1, "mile")
  38560. },
  38561. ]
  38562. ))
  38563. characterMakers.push(() => makeCharacter(
  38564. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38565. {
  38566. front: {
  38567. height: math.unit(10, "feet"),
  38568. weight: math.unit(1442, "lb"),
  38569. name: "Front",
  38570. image: {
  38571. source: "./media/characters/mal-dragon/front.svg",
  38572. extra: 1515/1444,
  38573. bottom: 113/1628
  38574. }
  38575. },
  38576. back: {
  38577. height: math.unit(10, "feet"),
  38578. weight: math.unit(1442, "lb"),
  38579. name: "Back",
  38580. image: {
  38581. source: "./media/characters/mal-dragon/back.svg",
  38582. extra: 1527/1434,
  38583. bottom: 25/1552
  38584. }
  38585. },
  38586. },
  38587. [
  38588. {
  38589. name: "Mortal Interaction",
  38590. height: math.unit(10, "feet"),
  38591. default: true
  38592. },
  38593. {
  38594. name: "Large",
  38595. height: math.unit(30, "feet")
  38596. },
  38597. {
  38598. name: "Kaiju",
  38599. height: math.unit(300, "feet")
  38600. },
  38601. {
  38602. name: "Megamacro",
  38603. height: math.unit(10000, "feet")
  38604. },
  38605. {
  38606. name: "Continent Cracker",
  38607. height: math.unit(30000000, "feet")
  38608. },
  38609. {
  38610. name: "Sol-Swallowing",
  38611. height: math.unit(1e11, "feet")
  38612. },
  38613. {
  38614. name: "Light Universal",
  38615. height: math.unit(5, "universes")
  38616. },
  38617. {
  38618. name: "Universe Atoms",
  38619. height: math.unit(1.829e9, "universes")
  38620. },
  38621. {
  38622. name: "Light Multiversal",
  38623. height: math.unit(5, "multiverses")
  38624. },
  38625. {
  38626. name: "Multiverse Atoms",
  38627. height: math.unit(1.829e9, "multiverses")
  38628. },
  38629. {
  38630. name: "Fabric of Time",
  38631. height: math.unit(1e262, "multiverses")
  38632. },
  38633. ]
  38634. ))
  38635. characterMakers.push(() => makeCharacter(
  38636. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38637. {
  38638. front: {
  38639. height: math.unit(9, "feet"),
  38640. weight: math.unit(1050, "lb"),
  38641. name: "Front",
  38642. image: {
  38643. source: "./media/characters/tabitha/front.svg",
  38644. extra: 2083/1994,
  38645. bottom: 68/2151
  38646. }
  38647. },
  38648. },
  38649. [
  38650. {
  38651. name: "Baseline",
  38652. height: math.unit(9, "feet"),
  38653. default: true
  38654. },
  38655. {
  38656. name: "Giant",
  38657. height: math.unit(90, "feet")
  38658. },
  38659. {
  38660. name: "Macro",
  38661. height: math.unit(900, "feet")
  38662. },
  38663. {
  38664. name: "Megamacro",
  38665. height: math.unit(9000, "feet")
  38666. },
  38667. {
  38668. name: "City-Crushing",
  38669. height: math.unit(27000, "feet")
  38670. },
  38671. {
  38672. name: "Mountain-Mashing",
  38673. height: math.unit(90000, "feet")
  38674. },
  38675. {
  38676. name: "Nation Nemesis",
  38677. height: math.unit(9e6, "feet")
  38678. },
  38679. {
  38680. name: "Continent Cracker",
  38681. height: math.unit(27e6, "feet")
  38682. },
  38683. {
  38684. name: "Earth-Eclipsing",
  38685. height: math.unit(2.7e8, "feet")
  38686. },
  38687. {
  38688. name: "Gas Giant Gulper",
  38689. height: math.unit(2.7e9, "feet")
  38690. },
  38691. {
  38692. name: "Sol-Swallowing",
  38693. height: math.unit(9e10, "feet")
  38694. },
  38695. {
  38696. name: "Galaxy Gulper",
  38697. height: math.unit(9, "galaxies")
  38698. },
  38699. {
  38700. name: "Cosmos Churner",
  38701. height: math.unit(9, "universes")
  38702. },
  38703. ]
  38704. ))
  38705. characterMakers.push(() => makeCharacter(
  38706. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38707. {
  38708. front: {
  38709. height: math.unit(160, "cm"),
  38710. weight: math.unit(55, "kg"),
  38711. name: "Front",
  38712. image: {
  38713. source: "./media/characters/tow/front.svg",
  38714. extra: 1751/1722,
  38715. bottom: 74/1825
  38716. }
  38717. },
  38718. },
  38719. [
  38720. {
  38721. name: "Norm",
  38722. height: math.unit(160, "cm")
  38723. },
  38724. {
  38725. name: "Casual",
  38726. height: math.unit(3200, "m"),
  38727. default: true
  38728. },
  38729. {
  38730. name: "Show-Off",
  38731. height: math.unit(160, "km")
  38732. },
  38733. ]
  38734. ))
  38735. characterMakers.push(() => makeCharacter(
  38736. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38737. {
  38738. front: {
  38739. height: math.unit(7 + 11/12, "feet"),
  38740. weight: math.unit(342.8, "lb"),
  38741. name: "Front",
  38742. image: {
  38743. source: "./media/characters/vivian-orca-dragon/front.svg",
  38744. extra: 1890/1865,
  38745. bottom: 28/1918
  38746. }
  38747. },
  38748. },
  38749. [
  38750. {
  38751. name: "Micro",
  38752. height: math.unit(5, "inches")
  38753. },
  38754. {
  38755. name: "Normal",
  38756. height: math.unit(7 + 11/12, "feet"),
  38757. default: true
  38758. },
  38759. {
  38760. name: "Macro",
  38761. height: math.unit(395 + 7/12, "feet")
  38762. },
  38763. ]
  38764. ))
  38765. characterMakers.push(() => makeCharacter(
  38766. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38767. {
  38768. side: {
  38769. height: math.unit(10, "feet"),
  38770. weight: math.unit(1442, "lb"),
  38771. name: "Side",
  38772. image: {
  38773. source: "./media/characters/lotherakon/side.svg",
  38774. extra: 1604/1497,
  38775. bottom: 89/1693
  38776. }
  38777. },
  38778. },
  38779. [
  38780. {
  38781. name: "Mortal Interaction",
  38782. height: math.unit(10, "feet")
  38783. },
  38784. {
  38785. name: "Large",
  38786. height: math.unit(30, "feet"),
  38787. default: true
  38788. },
  38789. {
  38790. name: "Giant",
  38791. height: math.unit(100, "feet")
  38792. },
  38793. {
  38794. name: "Kaiju",
  38795. height: math.unit(300, "feet")
  38796. },
  38797. {
  38798. name: "Macro",
  38799. height: math.unit(1000, "feet")
  38800. },
  38801. {
  38802. name: "Macro+",
  38803. height: math.unit(3000, "feet")
  38804. },
  38805. {
  38806. name: "Megamacro",
  38807. height: math.unit(10000, "feet")
  38808. },
  38809. {
  38810. name: "City-Crushing",
  38811. height: math.unit(30000, "feet")
  38812. },
  38813. {
  38814. name: "Continent Cracker",
  38815. height: math.unit(30e6, "feet")
  38816. },
  38817. {
  38818. name: "Earth Eclipsing",
  38819. height: math.unit(3e8, "feet")
  38820. },
  38821. {
  38822. name: "Gas Giant Gulper",
  38823. height: math.unit(3e9, "feet")
  38824. },
  38825. {
  38826. name: "Sol-Swallowing",
  38827. height: math.unit(1e11, "feet")
  38828. },
  38829. {
  38830. name: "System Swallower",
  38831. height: math.unit(3e14, "feet")
  38832. },
  38833. {
  38834. name: "Galaxy Gulper",
  38835. height: math.unit(10, "galaxies")
  38836. },
  38837. {
  38838. name: "Light Universal",
  38839. height: math.unit(5, "universes")
  38840. },
  38841. {
  38842. name: "Universe Palm",
  38843. height: math.unit(20, "universes")
  38844. },
  38845. {
  38846. name: "Light Multiversal",
  38847. height: math.unit(5, "multiverses")
  38848. },
  38849. {
  38850. name: "Multiverse Palm",
  38851. height: math.unit(20, "multiverses")
  38852. },
  38853. {
  38854. name: "Inferno Incarnate",
  38855. height: math.unit(1e7, "multiverses")
  38856. },
  38857. ]
  38858. ))
  38859. characterMakers.push(() => makeCharacter(
  38860. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38861. {
  38862. front: {
  38863. height: math.unit(8, "feet"),
  38864. weight: math.unit(1200, "lb"),
  38865. name: "Front",
  38866. image: {
  38867. source: "./media/characters/malithee/front.svg",
  38868. extra: 1675/1640,
  38869. bottom: 162/1837
  38870. }
  38871. },
  38872. },
  38873. [
  38874. {
  38875. name: "Mortal Interaction",
  38876. height: math.unit(8, "feet"),
  38877. default: true
  38878. },
  38879. {
  38880. name: "Large",
  38881. height: math.unit(24, "feet")
  38882. },
  38883. {
  38884. name: "Kaiju",
  38885. height: math.unit(240, "feet")
  38886. },
  38887. {
  38888. name: "Megamacro",
  38889. height: math.unit(8000, "feet")
  38890. },
  38891. {
  38892. name: "Continent Cracker",
  38893. height: math.unit(24e6, "feet")
  38894. },
  38895. {
  38896. name: "Earth-Eclipsing",
  38897. height: math.unit(2.4e8, "feet")
  38898. },
  38899. {
  38900. name: "Sol-Swallowing",
  38901. height: math.unit(8e10, "feet")
  38902. },
  38903. {
  38904. name: "Galaxy Gulper",
  38905. height: math.unit(8, "galaxies")
  38906. },
  38907. {
  38908. name: "Light Universal",
  38909. height: math.unit(4, "universes")
  38910. },
  38911. {
  38912. name: "Universe Atoms",
  38913. height: math.unit(1.829e9, "universes")
  38914. },
  38915. {
  38916. name: "Light Multiversal",
  38917. height: math.unit(4, "multiverses")
  38918. },
  38919. {
  38920. name: "Multiverse Atoms",
  38921. height: math.unit(1.829e9, "multiverses")
  38922. },
  38923. {
  38924. name: "Nigh-Omnipresence",
  38925. height: math.unit(8e261, "multiverses")
  38926. },
  38927. ]
  38928. ))
  38929. characterMakers.push(() => makeCharacter(
  38930. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38931. {
  38932. front: {
  38933. height: math.unit(10, "feet"),
  38934. weight: math.unit(1500, "lb"),
  38935. name: "Front",
  38936. image: {
  38937. source: "./media/characters/miles-thestia/front.svg",
  38938. extra: 1812/1727,
  38939. bottom: 86/1898
  38940. }
  38941. },
  38942. back: {
  38943. height: math.unit(10, "feet"),
  38944. weight: math.unit(1500, "lb"),
  38945. name: "Back",
  38946. image: {
  38947. source: "./media/characters/miles-thestia/back.svg",
  38948. extra: 1799/1690,
  38949. bottom: 47/1846
  38950. }
  38951. },
  38952. frontNsfw: {
  38953. height: math.unit(10, "feet"),
  38954. weight: math.unit(1500, "lb"),
  38955. name: "Front (NSFW)",
  38956. image: {
  38957. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38958. extra: 1812/1727,
  38959. bottom: 86/1898
  38960. }
  38961. },
  38962. },
  38963. [
  38964. {
  38965. name: "Mini-Macro",
  38966. height: math.unit(10, "feet"),
  38967. default: true
  38968. },
  38969. ]
  38970. ))
  38971. characterMakers.push(() => makeCharacter(
  38972. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38973. {
  38974. front: {
  38975. height: math.unit(25, "feet"),
  38976. name: "Front",
  38977. image: {
  38978. source: "./media/characters/titan-s-wulf/front.svg",
  38979. extra: 1560/1484,
  38980. bottom: 76/1636
  38981. }
  38982. },
  38983. },
  38984. [
  38985. {
  38986. name: "Smallest",
  38987. height: math.unit(25, "feet"),
  38988. default: true
  38989. },
  38990. {
  38991. name: "Normal",
  38992. height: math.unit(200, "feet")
  38993. },
  38994. {
  38995. name: "Macro",
  38996. height: math.unit(200000, "feet")
  38997. },
  38998. {
  38999. name: "Multiversal Original",
  39000. height: math.unit(10000, "multiverses")
  39001. },
  39002. ]
  39003. ))
  39004. characterMakers.push(() => makeCharacter(
  39005. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39006. {
  39007. front: {
  39008. height: math.unit(8, "feet"),
  39009. weight: math.unit(553, "lb"),
  39010. name: "Front",
  39011. image: {
  39012. source: "./media/characters/tawendeh/front.svg",
  39013. extra: 2365/2268,
  39014. bottom: 83/2448
  39015. }
  39016. },
  39017. frontClothed: {
  39018. height: math.unit(8, "feet"),
  39019. weight: math.unit(553, "lb"),
  39020. name: "Front (Clothed)",
  39021. image: {
  39022. source: "./media/characters/tawendeh/front-clothed.svg",
  39023. extra: 2365/2268,
  39024. bottom: 83/2448
  39025. }
  39026. },
  39027. back: {
  39028. height: math.unit(8, "feet"),
  39029. weight: math.unit(553, "lb"),
  39030. name: "Back",
  39031. image: {
  39032. source: "./media/characters/tawendeh/back.svg",
  39033. extra: 2397/2294,
  39034. bottom: 42/2439
  39035. }
  39036. },
  39037. },
  39038. [
  39039. {
  39040. name: "Mortal Interaction",
  39041. height: math.unit(8, "feet"),
  39042. default: true
  39043. },
  39044. {
  39045. name: "Giant",
  39046. height: math.unit(80, "feet")
  39047. },
  39048. {
  39049. name: "Macro",
  39050. height: math.unit(800, "feet")
  39051. },
  39052. {
  39053. name: "Megamacro",
  39054. height: math.unit(8000, "feet")
  39055. },
  39056. {
  39057. name: "City-Crushing",
  39058. height: math.unit(24000, "feet")
  39059. },
  39060. {
  39061. name: "Mountain-Mashing",
  39062. height: math.unit(80000, "feet")
  39063. },
  39064. {
  39065. name: "Nation Nemesis",
  39066. height: math.unit(8e6, "feet")
  39067. },
  39068. {
  39069. name: "Continent Cracker",
  39070. height: math.unit(24e6, "feet")
  39071. },
  39072. {
  39073. name: "Earth-Eclipsing",
  39074. height: math.unit(2.4e8, "feet")
  39075. },
  39076. {
  39077. name: "Gas Giant Gulper",
  39078. height: math.unit(2.4e9, "feet")
  39079. },
  39080. {
  39081. name: "Sol-Swallowing",
  39082. height: math.unit(8e10, "feet")
  39083. },
  39084. {
  39085. name: "Galaxy Gulper",
  39086. height: math.unit(8, "galaxies")
  39087. },
  39088. {
  39089. name: "Cosmos Churner",
  39090. height: math.unit(8, "universes")
  39091. },
  39092. {
  39093. name: "Omnipotent Otter",
  39094. height: math.unit(80, "universes")
  39095. },
  39096. ]
  39097. ))
  39098. characterMakers.push(() => makeCharacter(
  39099. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39100. {
  39101. front: {
  39102. height: math.unit(2.6, "meters"),
  39103. weight: math.unit(900, "kg"),
  39104. name: "Front",
  39105. image: {
  39106. source: "./media/characters/neesha/front.svg",
  39107. extra: 1803/1653,
  39108. bottom: 128/1931
  39109. }
  39110. },
  39111. },
  39112. [
  39113. {
  39114. name: "Normal",
  39115. height: math.unit(2.6, "meters"),
  39116. default: true
  39117. },
  39118. {
  39119. name: "Macro",
  39120. height: math.unit(50, "meters")
  39121. },
  39122. ]
  39123. ))
  39124. characterMakers.push(() => makeCharacter(
  39125. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39126. {
  39127. front: {
  39128. height: math.unit(5, "feet"),
  39129. weight: math.unit(185, "lb"),
  39130. name: "Front",
  39131. image: {
  39132. source: "./media/characters/kyera/front.svg",
  39133. extra: 1875/1790,
  39134. bottom: 96/1971
  39135. }
  39136. },
  39137. },
  39138. [
  39139. {
  39140. name: "Normal",
  39141. height: math.unit(5, "feet"),
  39142. default: true
  39143. },
  39144. ]
  39145. ))
  39146. characterMakers.push(() => makeCharacter(
  39147. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39148. {
  39149. front: {
  39150. height: math.unit(7 + 6/12, "feet"),
  39151. weight: math.unit(540, "lb"),
  39152. name: "Front",
  39153. image: {
  39154. source: "./media/characters/yuko/front.svg",
  39155. extra: 1282/1222,
  39156. bottom: 101/1383
  39157. }
  39158. },
  39159. frontClothed: {
  39160. height: math.unit(7 + 6/12, "feet"),
  39161. weight: math.unit(540, "lb"),
  39162. name: "Front (Clothed)",
  39163. image: {
  39164. source: "./media/characters/yuko/front-clothed.svg",
  39165. extra: 1282/1222,
  39166. bottom: 101/1383
  39167. }
  39168. },
  39169. },
  39170. [
  39171. {
  39172. name: "Normal",
  39173. height: math.unit(7 + 6/12, "feet"),
  39174. default: true
  39175. },
  39176. {
  39177. name: "Macro",
  39178. height: math.unit(26 + 9/12, "feet")
  39179. },
  39180. {
  39181. name: "Megamacro",
  39182. height: math.unit(300, "feet")
  39183. },
  39184. {
  39185. name: "Gigamacro",
  39186. height: math.unit(5000, "feet")
  39187. },
  39188. {
  39189. name: "Planetary",
  39190. height: math.unit(10000, "miles")
  39191. },
  39192. ]
  39193. ))
  39194. characterMakers.push(() => makeCharacter(
  39195. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39196. {
  39197. front: {
  39198. height: math.unit(8 + 2/12, "feet"),
  39199. weight: math.unit(600, "lb"),
  39200. name: "Front",
  39201. image: {
  39202. source: "./media/characters/deam-nitrel/front.svg",
  39203. extra: 1308/1234,
  39204. bottom: 125/1433
  39205. }
  39206. },
  39207. },
  39208. [
  39209. {
  39210. name: "Normal",
  39211. height: math.unit(8 + 2/12, "feet"),
  39212. default: true
  39213. },
  39214. ]
  39215. ))
  39216. characterMakers.push(() => makeCharacter(
  39217. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39218. {
  39219. front: {
  39220. height: math.unit(6.1, "feet"),
  39221. weight: math.unit(180, "lb"),
  39222. name: "Front",
  39223. image: {
  39224. source: "./media/characters/skyress/front.svg",
  39225. extra: 1045/915,
  39226. bottom: 28/1073
  39227. }
  39228. },
  39229. maw: {
  39230. height: math.unit(1, "feet"),
  39231. name: "Maw",
  39232. image: {
  39233. source: "./media/characters/skyress/maw.svg"
  39234. }
  39235. },
  39236. },
  39237. [
  39238. {
  39239. name: "Normal",
  39240. height: math.unit(6.1, "feet"),
  39241. default: true
  39242. },
  39243. {
  39244. name: "Macro",
  39245. height: math.unit(200, "feet")
  39246. },
  39247. ]
  39248. ))
  39249. characterMakers.push(() => makeCharacter(
  39250. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39251. {
  39252. front: {
  39253. height: math.unit(4 + 2/12, "feet"),
  39254. weight: math.unit(40, "kg"),
  39255. name: "Front",
  39256. image: {
  39257. source: "./media/characters/amethyst-jones/front.svg",
  39258. extra: 1220/1150,
  39259. bottom: 101/1321
  39260. }
  39261. },
  39262. },
  39263. [
  39264. {
  39265. name: "Normal",
  39266. height: math.unit(4 + 2/12, "feet"),
  39267. default: true
  39268. },
  39269. ]
  39270. ))
  39271. characterMakers.push(() => makeCharacter(
  39272. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39273. {
  39274. front: {
  39275. height: math.unit(1.7, "m"),
  39276. weight: math.unit(135, "lb"),
  39277. name: "Front",
  39278. image: {
  39279. source: "./media/characters/jade/front.svg",
  39280. extra: 1818/1767,
  39281. bottom: 32/1850
  39282. }
  39283. },
  39284. back: {
  39285. height: math.unit(1.7, "m"),
  39286. weight: math.unit(135, "lb"),
  39287. name: "Back",
  39288. image: {
  39289. source: "./media/characters/jade/back.svg",
  39290. extra: 1869/1809,
  39291. bottom: 35/1904
  39292. }
  39293. },
  39294. hand: {
  39295. height: math.unit(0.24, "m"),
  39296. name: "Hand",
  39297. image: {
  39298. source: "./media/characters/jade/hand.svg"
  39299. }
  39300. },
  39301. foot: {
  39302. height: math.unit(0.263, "m"),
  39303. name: "Foot",
  39304. image: {
  39305. source: "./media/characters/jade/foot.svg"
  39306. }
  39307. },
  39308. dick: {
  39309. height: math.unit(0.47, "m"),
  39310. name: "Dick",
  39311. image: {
  39312. source: "./media/characters/jade/dick.svg"
  39313. }
  39314. },
  39315. },
  39316. [
  39317. {
  39318. name: "Micro",
  39319. height: math.unit(22, "cm")
  39320. },
  39321. {
  39322. name: "Normal",
  39323. height: math.unit(1.7, "m"),
  39324. default: true
  39325. },
  39326. {
  39327. name: "Macro",
  39328. height: math.unit(152, "m")
  39329. },
  39330. ]
  39331. ))
  39332. characterMakers.push(() => makeCharacter(
  39333. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39334. {
  39335. front: {
  39336. height: math.unit(100, "miles"),
  39337. weight: math.unit(20000, "tons"),
  39338. name: "Front",
  39339. image: {
  39340. source: "./media/characters/cookie/front.svg",
  39341. extra: 1125/1070,
  39342. bottom: 30/1155
  39343. }
  39344. },
  39345. },
  39346. [
  39347. {
  39348. name: "Big",
  39349. height: math.unit(50, "feet")
  39350. },
  39351. {
  39352. name: "Macro",
  39353. height: math.unit(100, "miles"),
  39354. default: true
  39355. },
  39356. {
  39357. name: "Megamacro",
  39358. height: math.unit(90000, "miles")
  39359. },
  39360. ]
  39361. ))
  39362. characterMakers.push(() => makeCharacter(
  39363. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39364. {
  39365. front: {
  39366. height: math.unit(6, "feet"),
  39367. weight: math.unit(145, "lb"),
  39368. name: "Front",
  39369. image: {
  39370. source: "./media/characters/farzian/front.svg",
  39371. extra: 1902/1693,
  39372. bottom: 108/2010
  39373. }
  39374. },
  39375. },
  39376. [
  39377. {
  39378. name: "Macro",
  39379. height: math.unit(500, "feet"),
  39380. default: true
  39381. },
  39382. ]
  39383. ))
  39384. characterMakers.push(() => makeCharacter(
  39385. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39386. {
  39387. front: {
  39388. height: math.unit(3 + 6/12, "feet"),
  39389. weight: math.unit(50, "lb"),
  39390. name: "Front",
  39391. image: {
  39392. source: "./media/characters/kimberly-tilson/front.svg",
  39393. extra: 1400/1322,
  39394. bottom: 36/1436
  39395. }
  39396. },
  39397. back: {
  39398. height: math.unit(3 + 6/12, "feet"),
  39399. weight: math.unit(50, "lb"),
  39400. name: "Back",
  39401. image: {
  39402. source: "./media/characters/kimberly-tilson/back.svg",
  39403. extra: 1370/1307,
  39404. bottom: 20/1390
  39405. }
  39406. },
  39407. },
  39408. [
  39409. {
  39410. name: "Normal",
  39411. height: math.unit(3 + 6/12, "feet"),
  39412. default: true
  39413. },
  39414. ]
  39415. ))
  39416. characterMakers.push(() => makeCharacter(
  39417. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39418. {
  39419. front: {
  39420. height: math.unit(1148, "feet"),
  39421. weight: math.unit(34057, "lb"),
  39422. name: "Front",
  39423. image: {
  39424. source: "./media/characters/harthos/front.svg",
  39425. extra: 1391/1339,
  39426. bottom: 13/1404
  39427. }
  39428. },
  39429. },
  39430. [
  39431. {
  39432. name: "Macro",
  39433. height: math.unit(1148, "feet"),
  39434. default: true
  39435. },
  39436. ]
  39437. ))
  39438. characterMakers.push(() => makeCharacter(
  39439. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39440. {
  39441. front: {
  39442. height: math.unit(15, "feet"),
  39443. name: "Front",
  39444. image: {
  39445. source: "./media/characters/hypatia/front.svg",
  39446. extra: 1653/1591,
  39447. bottom: 79/1732
  39448. }
  39449. },
  39450. },
  39451. [
  39452. {
  39453. name: "Normal",
  39454. height: math.unit(15, "feet")
  39455. },
  39456. {
  39457. name: "Small",
  39458. height: math.unit(300, "feet")
  39459. },
  39460. {
  39461. name: "Macro",
  39462. height: math.unit(2500, "feet"),
  39463. default: true
  39464. },
  39465. {
  39466. name: "Mega Macro",
  39467. height: math.unit(1500, "miles")
  39468. },
  39469. {
  39470. name: "Giga Macro",
  39471. height: math.unit(1.5e6, "miles")
  39472. },
  39473. ]
  39474. ))
  39475. characterMakers.push(() => makeCharacter(
  39476. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39477. {
  39478. front: {
  39479. height: math.unit(6, "feet"),
  39480. weight: math.unit(200, "lb"),
  39481. name: "Front",
  39482. image: {
  39483. source: "./media/characters/wulver/front.svg",
  39484. extra: 1724/1632,
  39485. bottom: 130/1854
  39486. }
  39487. },
  39488. frontNsfw: {
  39489. height: math.unit(6, "feet"),
  39490. weight: math.unit(200, "lb"),
  39491. name: "Front (NSFW)",
  39492. image: {
  39493. source: "./media/characters/wulver/front-nsfw.svg",
  39494. extra: 1724/1632,
  39495. bottom: 130/1854
  39496. }
  39497. },
  39498. },
  39499. [
  39500. {
  39501. name: "Human-Sized",
  39502. height: math.unit(6, "feet")
  39503. },
  39504. {
  39505. name: "Normal",
  39506. height: math.unit(4, "meters"),
  39507. default: true
  39508. },
  39509. {
  39510. name: "Large",
  39511. height: math.unit(6, "m")
  39512. },
  39513. ]
  39514. ))
  39515. characterMakers.push(() => makeCharacter(
  39516. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39517. {
  39518. front: {
  39519. height: math.unit(7, "feet"),
  39520. name: "Front",
  39521. image: {
  39522. source: "./media/characters/maru/front.svg",
  39523. extra: 1595/1570,
  39524. bottom: 0/1595
  39525. }
  39526. },
  39527. },
  39528. [
  39529. {
  39530. name: "Normal",
  39531. height: math.unit(7, "feet"),
  39532. default: true
  39533. },
  39534. {
  39535. name: "Macro",
  39536. height: math.unit(700, "feet")
  39537. },
  39538. {
  39539. name: "Mega Macro",
  39540. height: math.unit(25, "miles")
  39541. },
  39542. ]
  39543. ))
  39544. characterMakers.push(() => makeCharacter(
  39545. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39546. {
  39547. front: {
  39548. height: math.unit(6, "feet"),
  39549. weight: math.unit(170, "lb"),
  39550. name: "Front",
  39551. image: {
  39552. source: "./media/characters/xenon/front.svg",
  39553. extra: 1376/1305,
  39554. bottom: 56/1432
  39555. }
  39556. },
  39557. back: {
  39558. height: math.unit(6, "feet"),
  39559. weight: math.unit(170, "lb"),
  39560. name: "Back",
  39561. image: {
  39562. source: "./media/characters/xenon/back.svg",
  39563. extra: 1328/1259,
  39564. bottom: 95/1423
  39565. }
  39566. },
  39567. maw: {
  39568. height: math.unit(0.52, "feet"),
  39569. name: "Maw",
  39570. image: {
  39571. source: "./media/characters/xenon/maw.svg"
  39572. }
  39573. },
  39574. hand: {
  39575. height: math.unit(0.82, "feet"),
  39576. name: "Hand",
  39577. image: {
  39578. source: "./media/characters/xenon/hand.svg"
  39579. }
  39580. },
  39581. foot: {
  39582. height: math.unit(1.13, "feet"),
  39583. name: "Foot",
  39584. image: {
  39585. source: "./media/characters/xenon/foot.svg"
  39586. }
  39587. },
  39588. },
  39589. [
  39590. {
  39591. name: "Micro",
  39592. height: math.unit(0.8, "inches")
  39593. },
  39594. {
  39595. name: "Normal",
  39596. height: math.unit(6, "feet")
  39597. },
  39598. {
  39599. name: "Macro",
  39600. height: math.unit(50, "feet"),
  39601. default: true
  39602. },
  39603. {
  39604. name: "Macro+",
  39605. height: math.unit(250, "feet")
  39606. },
  39607. {
  39608. name: "Megamacro",
  39609. height: math.unit(1500, "feet")
  39610. },
  39611. ]
  39612. ))
  39613. characterMakers.push(() => makeCharacter(
  39614. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39615. {
  39616. front: {
  39617. height: math.unit(7 + 5/12, "feet"),
  39618. name: "Front",
  39619. image: {
  39620. source: "./media/characters/zane/front.svg",
  39621. extra: 1260/1203,
  39622. bottom: 94/1354
  39623. }
  39624. },
  39625. back: {
  39626. height: math.unit(5.05, "feet"),
  39627. name: "Back",
  39628. image: {
  39629. source: "./media/characters/zane/back.svg",
  39630. extra: 893/829,
  39631. bottom: 30/923
  39632. }
  39633. },
  39634. werewolf: {
  39635. height: math.unit(11, "feet"),
  39636. name: "Werewolf",
  39637. image: {
  39638. source: "./media/characters/zane/werewolf.svg",
  39639. extra: 1383/1323,
  39640. bottom: 89/1472
  39641. }
  39642. },
  39643. foot: {
  39644. height: math.unit(1.46, "feet"),
  39645. name: "Foot",
  39646. image: {
  39647. source: "./media/characters/zane/foot.svg"
  39648. }
  39649. },
  39650. footFront: {
  39651. height: math.unit(0.784, "feet"),
  39652. name: "Foot (Front)",
  39653. image: {
  39654. source: "./media/characters/zane/foot-front.svg"
  39655. }
  39656. },
  39657. dick: {
  39658. height: math.unit(1.95, "feet"),
  39659. name: "Dick",
  39660. image: {
  39661. source: "./media/characters/zane/dick.svg"
  39662. }
  39663. },
  39664. dickWerewolf: {
  39665. height: math.unit(3.77, "feet"),
  39666. name: "Dick (Werewolf)",
  39667. image: {
  39668. source: "./media/characters/zane/dick.svg"
  39669. }
  39670. },
  39671. },
  39672. [
  39673. {
  39674. name: "Normal",
  39675. height: math.unit(7 + 5/12, "feet"),
  39676. default: true
  39677. },
  39678. ]
  39679. ))
  39680. characterMakers.push(() => makeCharacter(
  39681. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39682. {
  39683. front: {
  39684. height: math.unit(6 + 2/12, "feet"),
  39685. weight: math.unit(284, "lb"),
  39686. name: "Front",
  39687. image: {
  39688. source: "./media/characters/benni-desparque/front.svg",
  39689. extra: 1353/1126,
  39690. bottom: 69/1422
  39691. }
  39692. },
  39693. },
  39694. [
  39695. {
  39696. name: "Civilian",
  39697. height: math.unit(6 + 2/12, "feet")
  39698. },
  39699. {
  39700. name: "Normal",
  39701. height: math.unit(98, "feet"),
  39702. default: true
  39703. },
  39704. {
  39705. name: "Kaiju Fighter",
  39706. height: math.unit(268, "feet")
  39707. },
  39708. ]
  39709. ))
  39710. characterMakers.push(() => makeCharacter(
  39711. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39712. {
  39713. front: {
  39714. height: math.unit(5, "feet"),
  39715. weight: math.unit(105, "lb"),
  39716. name: "Front",
  39717. image: {
  39718. source: "./media/characters/maxine/front.svg",
  39719. extra: 1386/1250,
  39720. bottom: 71/1457
  39721. }
  39722. },
  39723. },
  39724. [
  39725. {
  39726. name: "Normal",
  39727. height: math.unit(5, "feet"),
  39728. default: true
  39729. },
  39730. ]
  39731. ))
  39732. characterMakers.push(() => makeCharacter(
  39733. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39734. {
  39735. front: {
  39736. height: math.unit(11 + 7/12, "feet"),
  39737. weight: math.unit(9576, "lb"),
  39738. name: "Front",
  39739. image: {
  39740. source: "./media/characters/scaly/front.svg",
  39741. extra: 888/867,
  39742. bottom: 36/924
  39743. }
  39744. },
  39745. },
  39746. [
  39747. {
  39748. name: "Normal",
  39749. height: math.unit(11 + 7/12, "feet"),
  39750. default: true
  39751. },
  39752. ]
  39753. ))
  39754. characterMakers.push(() => makeCharacter(
  39755. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39756. {
  39757. front: {
  39758. height: math.unit(9, "inches"),
  39759. name: "Front",
  39760. image: {
  39761. source: "./media/characters/saelria/front.svg",
  39762. extra: 662/621,
  39763. bottom: 12/674
  39764. }
  39765. },
  39766. },
  39767. [
  39768. {
  39769. name: "Tiny",
  39770. height: math.unit(9, "inches"),
  39771. default: true
  39772. },
  39773. ]
  39774. ))
  39775. characterMakers.push(() => makeCharacter(
  39776. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39777. {
  39778. front: {
  39779. height: math.unit(80, "meters"),
  39780. weight: math.unit(7000, "tonnes"),
  39781. name: "Front",
  39782. image: {
  39783. source: "./media/characters/tef/front.svg",
  39784. extra: 2036/1991,
  39785. bottom: 54/2090
  39786. }
  39787. },
  39788. back: {
  39789. height: math.unit(80, "meters"),
  39790. weight: math.unit(7000, "tonnes"),
  39791. name: "Back",
  39792. image: {
  39793. source: "./media/characters/tef/back.svg",
  39794. extra: 2036/1991,
  39795. bottom: 54/2090
  39796. }
  39797. },
  39798. },
  39799. [
  39800. {
  39801. name: "Macro",
  39802. height: math.unit(80, "meters"),
  39803. default: true
  39804. },
  39805. ]
  39806. ))
  39807. characterMakers.push(() => makeCharacter(
  39808. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39809. {
  39810. front: {
  39811. height: math.unit(13, "feet"),
  39812. weight: math.unit(6, "tons"),
  39813. name: "Front",
  39814. image: {
  39815. source: "./media/characters/rover/front.svg",
  39816. extra: 1233/1156,
  39817. bottom: 50/1283
  39818. }
  39819. },
  39820. back: {
  39821. height: math.unit(13, "feet"),
  39822. weight: math.unit(6, "tons"),
  39823. name: "Back",
  39824. image: {
  39825. source: "./media/characters/rover/back.svg",
  39826. extra: 1327/1258,
  39827. bottom: 39/1366
  39828. }
  39829. },
  39830. },
  39831. [
  39832. {
  39833. name: "Normal",
  39834. height: math.unit(13, "feet"),
  39835. default: true
  39836. },
  39837. {
  39838. name: "Macro",
  39839. height: math.unit(1300, "feet")
  39840. },
  39841. {
  39842. name: "Megamacro",
  39843. height: math.unit(1300, "miles")
  39844. },
  39845. {
  39846. name: "Gigamacro",
  39847. height: math.unit(1300000, "miles")
  39848. },
  39849. ]
  39850. ))
  39851. characterMakers.push(() => makeCharacter(
  39852. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39853. {
  39854. front: {
  39855. height: math.unit(6, "feet"),
  39856. weight: math.unit(150, "lb"),
  39857. name: "Front",
  39858. image: {
  39859. source: "./media/characters/ariz/front.svg",
  39860. extra: 1401/1346,
  39861. bottom: 5/1406
  39862. }
  39863. },
  39864. },
  39865. [
  39866. {
  39867. name: "Normal",
  39868. height: math.unit(10, "feet"),
  39869. default: true
  39870. },
  39871. ]
  39872. ))
  39873. characterMakers.push(() => makeCharacter(
  39874. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39875. {
  39876. front: {
  39877. height: math.unit(6, "feet"),
  39878. weight: math.unit(140, "lb"),
  39879. name: "Front",
  39880. image: {
  39881. source: "./media/characters/sigrun/front.svg",
  39882. extra: 1418/1359,
  39883. bottom: 27/1445
  39884. }
  39885. },
  39886. },
  39887. [
  39888. {
  39889. name: "Macro",
  39890. height: math.unit(35, "feet"),
  39891. default: true
  39892. },
  39893. ]
  39894. ))
  39895. characterMakers.push(() => makeCharacter(
  39896. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39897. {
  39898. front: {
  39899. height: math.unit(6, "feet"),
  39900. weight: math.unit(150, "lb"),
  39901. name: "Front",
  39902. image: {
  39903. source: "./media/characters/numin/front.svg",
  39904. extra: 1433/1388,
  39905. bottom: 12/1445
  39906. }
  39907. },
  39908. },
  39909. [
  39910. {
  39911. name: "Macro",
  39912. height: math.unit(21.5, "km"),
  39913. default: true
  39914. },
  39915. ]
  39916. ))
  39917. characterMakers.push(() => makeCharacter(
  39918. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39919. {
  39920. front: {
  39921. height: math.unit(6, "feet"),
  39922. weight: math.unit(463, "lb"),
  39923. name: "Front",
  39924. image: {
  39925. source: "./media/characters/melwa/front.svg",
  39926. extra: 1307/1248,
  39927. bottom: 93/1400
  39928. }
  39929. },
  39930. },
  39931. [
  39932. {
  39933. name: "Macro",
  39934. height: math.unit(50, "meters"),
  39935. default: true
  39936. },
  39937. ]
  39938. ))
  39939. characterMakers.push(() => makeCharacter(
  39940. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39941. {
  39942. front: {
  39943. height: math.unit(325, "feet"),
  39944. name: "Front",
  39945. image: {
  39946. source: "./media/characters/zorkaiju/front.svg",
  39947. extra: 1955/1814,
  39948. bottom: 40/1995
  39949. }
  39950. },
  39951. frontExtended: {
  39952. height: math.unit(325, "feet"),
  39953. name: "Front (Extended)",
  39954. image: {
  39955. source: "./media/characters/zorkaiju/front-extended.svg",
  39956. extra: 1955/1814,
  39957. bottom: 40/1995
  39958. }
  39959. },
  39960. side: {
  39961. height: math.unit(325, "feet"),
  39962. name: "Side",
  39963. image: {
  39964. source: "./media/characters/zorkaiju/side.svg",
  39965. extra: 1495/1396,
  39966. bottom: 17/1512
  39967. }
  39968. },
  39969. sideExtended: {
  39970. height: math.unit(325, "feet"),
  39971. name: "Side (Extended)",
  39972. image: {
  39973. source: "./media/characters/zorkaiju/side-extended.svg",
  39974. extra: 1495/1396,
  39975. bottom: 17/1512
  39976. }
  39977. },
  39978. back: {
  39979. height: math.unit(325, "feet"),
  39980. name: "Back",
  39981. image: {
  39982. source: "./media/characters/zorkaiju/back.svg",
  39983. extra: 1959/1821,
  39984. bottom: 31/1990
  39985. }
  39986. },
  39987. backExtended: {
  39988. height: math.unit(325, "feet"),
  39989. name: "Back (Extended)",
  39990. image: {
  39991. source: "./media/characters/zorkaiju/back-extended.svg",
  39992. extra: 1959/1821,
  39993. bottom: 31/1990
  39994. }
  39995. },
  39996. hand: {
  39997. height: math.unit(58.4, "feet"),
  39998. name: "Hand",
  39999. image: {
  40000. source: "./media/characters/zorkaiju/hand.svg"
  40001. }
  40002. },
  40003. handExtended: {
  40004. height: math.unit(61.4, "feet"),
  40005. name: "Hand (Extended)",
  40006. image: {
  40007. source: "./media/characters/zorkaiju/hand-extended.svg"
  40008. }
  40009. },
  40010. foot: {
  40011. height: math.unit(95, "feet"),
  40012. name: "Foot",
  40013. image: {
  40014. source: "./media/characters/zorkaiju/foot.svg"
  40015. }
  40016. },
  40017. leftArm: {
  40018. height: math.unit(59, "feet"),
  40019. name: "Left Arm",
  40020. image: {
  40021. source: "./media/characters/zorkaiju/left-arm.svg"
  40022. }
  40023. },
  40024. rightArm: {
  40025. height: math.unit(59, "feet"),
  40026. name: "Right Arm",
  40027. image: {
  40028. source: "./media/characters/zorkaiju/right-arm.svg"
  40029. }
  40030. },
  40031. tail: {
  40032. height: math.unit(104, "feet"),
  40033. name: "Tail",
  40034. image: {
  40035. source: "./media/characters/zorkaiju/tail.svg"
  40036. }
  40037. },
  40038. tailExtended: {
  40039. height: math.unit(104, "feet"),
  40040. name: "Tail (Extended)",
  40041. image: {
  40042. source: "./media/characters/zorkaiju/tail-extended.svg"
  40043. }
  40044. },
  40045. tailBottom: {
  40046. height: math.unit(104, "feet"),
  40047. name: "Tail Bottom",
  40048. image: {
  40049. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40050. }
  40051. },
  40052. crystal: {
  40053. height: math.unit(27.54, "feet"),
  40054. name: "Crystal",
  40055. image: {
  40056. source: "./media/characters/zorkaiju/crystal.svg"
  40057. }
  40058. },
  40059. },
  40060. [
  40061. {
  40062. name: "Kaiju",
  40063. height: math.unit(325, "feet"),
  40064. default: true
  40065. },
  40066. ]
  40067. ))
  40068. characterMakers.push(() => makeCharacter(
  40069. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40070. {
  40071. front: {
  40072. height: math.unit(6 + 1/12, "feet"),
  40073. weight: math.unit(115, "lb"),
  40074. name: "Front",
  40075. image: {
  40076. source: "./media/characters/bailey-belfry/front.svg",
  40077. extra: 1240/1121,
  40078. bottom: 101/1341
  40079. }
  40080. },
  40081. },
  40082. [
  40083. {
  40084. name: "Normal",
  40085. height: math.unit(6 + 1/12, "feet"),
  40086. default: true
  40087. },
  40088. ]
  40089. ))
  40090. characterMakers.push(() => makeCharacter(
  40091. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40092. {
  40093. side: {
  40094. height: math.unit(4, "meters"),
  40095. weight: math.unit(250, "kg"),
  40096. name: "Side",
  40097. image: {
  40098. source: "./media/characters/blacky/side.svg",
  40099. extra: 1027/919,
  40100. bottom: 43/1070
  40101. }
  40102. },
  40103. maw: {
  40104. height: math.unit(1, "meters"),
  40105. name: "Maw",
  40106. image: {
  40107. source: "./media/characters/blacky/maw.svg"
  40108. }
  40109. },
  40110. paw: {
  40111. height: math.unit(1, "meters"),
  40112. name: "Paw",
  40113. image: {
  40114. source: "./media/characters/blacky/paw.svg"
  40115. }
  40116. },
  40117. },
  40118. [
  40119. {
  40120. name: "Normal",
  40121. height: math.unit(4, "meters"),
  40122. default: true
  40123. },
  40124. ]
  40125. ))
  40126. characterMakers.push(() => makeCharacter(
  40127. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40128. {
  40129. front: {
  40130. height: math.unit(170, "cm"),
  40131. weight: math.unit(66, "kg"),
  40132. name: "Front",
  40133. image: {
  40134. source: "./media/characters/thux-ei/front.svg",
  40135. extra: 1109/1011,
  40136. bottom: 8/1117
  40137. }
  40138. },
  40139. },
  40140. [
  40141. {
  40142. name: "Normal",
  40143. height: math.unit(170, "cm"),
  40144. default: true
  40145. },
  40146. ]
  40147. ))
  40148. characterMakers.push(() => makeCharacter(
  40149. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40150. {
  40151. front: {
  40152. height: math.unit(5, "feet"),
  40153. weight: math.unit(120, "lb"),
  40154. name: "Front",
  40155. image: {
  40156. source: "./media/characters/roxanne-voltaire/front.svg",
  40157. extra: 1901/1779,
  40158. bottom: 53/1954
  40159. }
  40160. },
  40161. },
  40162. [
  40163. {
  40164. name: "Normal",
  40165. height: math.unit(5, "feet"),
  40166. default: true
  40167. },
  40168. {
  40169. name: "Giant",
  40170. height: math.unit(50, "feet")
  40171. },
  40172. {
  40173. name: "Titan",
  40174. height: math.unit(500, "feet")
  40175. },
  40176. {
  40177. name: "Macro",
  40178. height: math.unit(5000, "feet")
  40179. },
  40180. {
  40181. name: "Megamacro",
  40182. height: math.unit(50000, "feet")
  40183. },
  40184. {
  40185. name: "Gigamacro",
  40186. height: math.unit(500000, "feet")
  40187. },
  40188. {
  40189. name: "Teramacro",
  40190. height: math.unit(5e6, "feet")
  40191. },
  40192. ]
  40193. ))
  40194. characterMakers.push(() => makeCharacter(
  40195. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40196. {
  40197. front: {
  40198. height: math.unit(6 + 2/12, "feet"),
  40199. name: "Front",
  40200. image: {
  40201. source: "./media/characters/squeaks/front.svg",
  40202. extra: 1823/1768,
  40203. bottom: 138/1961
  40204. }
  40205. },
  40206. },
  40207. [
  40208. {
  40209. name: "Micro",
  40210. height: math.unit(0.5, "inches")
  40211. },
  40212. {
  40213. name: "Normal",
  40214. height: math.unit(6 + 2/12, "feet"),
  40215. default: true
  40216. },
  40217. {
  40218. name: "Macro",
  40219. height: math.unit(600, "feet")
  40220. },
  40221. ]
  40222. ))
  40223. characterMakers.push(() => makeCharacter(
  40224. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40225. {
  40226. front: {
  40227. height: math.unit(1.72, "meters"),
  40228. name: "Front",
  40229. image: {
  40230. source: "./media/characters/archinger/front.svg",
  40231. extra: 1861/1675,
  40232. bottom: 125/1986
  40233. }
  40234. },
  40235. back: {
  40236. height: math.unit(1.72, "meters"),
  40237. name: "Back",
  40238. image: {
  40239. source: "./media/characters/archinger/back.svg",
  40240. extra: 1844/1701,
  40241. bottom: 104/1948
  40242. }
  40243. },
  40244. cock: {
  40245. height: math.unit(0.59, "feet"),
  40246. name: "Cock",
  40247. image: {
  40248. source: "./media/characters/archinger/cock.svg"
  40249. }
  40250. },
  40251. },
  40252. [
  40253. {
  40254. name: "Normal",
  40255. height: math.unit(1.72, "meters"),
  40256. default: true
  40257. },
  40258. {
  40259. name: "Macro",
  40260. height: math.unit(84, "meters")
  40261. },
  40262. {
  40263. name: "Macro+",
  40264. height: math.unit(112, "meters")
  40265. },
  40266. {
  40267. name: "Macro++",
  40268. height: math.unit(960, "meters")
  40269. },
  40270. {
  40271. name: "Macro+++",
  40272. height: math.unit(4, "km")
  40273. },
  40274. {
  40275. name: "Macro++++",
  40276. height: math.unit(48, "km")
  40277. },
  40278. {
  40279. name: "Macro+++++",
  40280. height: math.unit(4500, "km")
  40281. },
  40282. ]
  40283. ))
  40284. characterMakers.push(() => makeCharacter(
  40285. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40286. {
  40287. front: {
  40288. height: math.unit(5 + 5/12, "feet"),
  40289. name: "Front",
  40290. image: {
  40291. source: "./media/characters/alsnapz/front.svg",
  40292. extra: 1157/1065,
  40293. bottom: 42/1199
  40294. }
  40295. },
  40296. },
  40297. [
  40298. {
  40299. name: "Normal",
  40300. height: math.unit(5 + 5/12, "feet"),
  40301. default: true
  40302. },
  40303. ]
  40304. ))
  40305. characterMakers.push(() => makeCharacter(
  40306. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40307. {
  40308. side: {
  40309. height: math.unit(3.2, "earths"),
  40310. name: "Side",
  40311. image: {
  40312. source: "./media/characters/mag/side.svg",
  40313. extra: 1331/1008,
  40314. bottom: 52/1383
  40315. }
  40316. },
  40317. wing: {
  40318. height: math.unit(1.94, "earths"),
  40319. name: "Wing",
  40320. image: {
  40321. source: "./media/characters/mag/wing.svg"
  40322. }
  40323. },
  40324. dick: {
  40325. height: math.unit(1.8, "earths"),
  40326. name: "Dick",
  40327. image: {
  40328. source: "./media/characters/mag/dick.svg"
  40329. }
  40330. },
  40331. ass: {
  40332. height: math.unit(1.33, "earths"),
  40333. name: "Ass",
  40334. image: {
  40335. source: "./media/characters/mag/ass.svg"
  40336. }
  40337. },
  40338. head: {
  40339. height: math.unit(1.1, "earths"),
  40340. name: "Head",
  40341. image: {
  40342. source: "./media/characters/mag/head.svg"
  40343. }
  40344. },
  40345. maw: {
  40346. height: math.unit(1.62, "earths"),
  40347. name: "Maw",
  40348. image: {
  40349. source: "./media/characters/mag/maw.svg"
  40350. }
  40351. },
  40352. },
  40353. [
  40354. {
  40355. name: "Small",
  40356. height: math.unit(162, "feet")
  40357. },
  40358. {
  40359. name: "Normal",
  40360. height: math.unit(3.2, "earths"),
  40361. default: true
  40362. },
  40363. ]
  40364. ))
  40365. characterMakers.push(() => makeCharacter(
  40366. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40367. {
  40368. front: {
  40369. height: math.unit(512, "feet"),
  40370. weight: math.unit(63509, "tonnes"),
  40371. name: "Front",
  40372. image: {
  40373. source: "./media/characters/vorrel-harroc/front.svg",
  40374. extra: 1075/1063,
  40375. bottom: 62/1137
  40376. }
  40377. },
  40378. },
  40379. [
  40380. {
  40381. name: "Normal",
  40382. height: math.unit(10, "feet")
  40383. },
  40384. {
  40385. name: "Macro",
  40386. height: math.unit(512, "feet"),
  40387. default: true
  40388. },
  40389. {
  40390. name: "Megamacro",
  40391. height: math.unit(256, "miles")
  40392. },
  40393. {
  40394. name: "Gigamacro",
  40395. height: math.unit(4096, "miles")
  40396. },
  40397. ]
  40398. ))
  40399. characterMakers.push(() => makeCharacter(
  40400. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40401. {
  40402. side: {
  40403. height: math.unit(50, "feet"),
  40404. name: "Side",
  40405. image: {
  40406. source: "./media/characters/froimar/side.svg",
  40407. extra: 855/638,
  40408. bottom: 99/954
  40409. }
  40410. },
  40411. },
  40412. [
  40413. {
  40414. name: "Macro",
  40415. height: math.unit(50, "feet"),
  40416. default: true
  40417. },
  40418. ]
  40419. ))
  40420. characterMakers.push(() => makeCharacter(
  40421. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40422. {
  40423. front: {
  40424. height: math.unit(210, "miles"),
  40425. name: "Front",
  40426. image: {
  40427. source: "./media/characters/timothy/front.svg",
  40428. extra: 1007/943,
  40429. bottom: 62/1069
  40430. }
  40431. },
  40432. frontSkirt: {
  40433. height: math.unit(210, "miles"),
  40434. name: "Front (Skirt)",
  40435. image: {
  40436. source: "./media/characters/timothy/front-skirt.svg",
  40437. extra: 1007/943,
  40438. bottom: 62/1069
  40439. }
  40440. },
  40441. frontCoat: {
  40442. height: math.unit(210, "miles"),
  40443. name: "Front (Coat)",
  40444. image: {
  40445. source: "./media/characters/timothy/front-coat.svg",
  40446. extra: 1007/943,
  40447. bottom: 62/1069
  40448. }
  40449. },
  40450. },
  40451. [
  40452. {
  40453. name: "Macro",
  40454. height: math.unit(210, "miles"),
  40455. default: true
  40456. },
  40457. {
  40458. name: "Megamacro",
  40459. height: math.unit(210000, "miles")
  40460. },
  40461. ]
  40462. ))
  40463. characterMakers.push(() => makeCharacter(
  40464. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40465. {
  40466. front: {
  40467. height: math.unit(188, "feet"),
  40468. name: "Front",
  40469. image: {
  40470. source: "./media/characters/pyotr/front.svg",
  40471. extra: 1912/1826,
  40472. bottom: 18/1930
  40473. }
  40474. },
  40475. },
  40476. [
  40477. {
  40478. name: "Macro",
  40479. height: math.unit(188, "feet"),
  40480. default: true
  40481. },
  40482. {
  40483. name: "Megamacro",
  40484. height: math.unit(8, "miles")
  40485. },
  40486. ]
  40487. ))
  40488. characterMakers.push(() => makeCharacter(
  40489. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40490. {
  40491. side: {
  40492. height: math.unit(10, "feet"),
  40493. weight: math.unit(4500, "lb"),
  40494. name: "Side",
  40495. image: {
  40496. source: "./media/characters/ackart/side.svg",
  40497. extra: 1776/1668,
  40498. bottom: 116/1892
  40499. }
  40500. },
  40501. },
  40502. [
  40503. {
  40504. name: "Normal",
  40505. height: math.unit(10, "feet"),
  40506. default: true
  40507. },
  40508. ]
  40509. ))
  40510. characterMakers.push(() => makeCharacter(
  40511. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40512. {
  40513. side: {
  40514. height: math.unit(21, "feet"),
  40515. name: "Side",
  40516. image: {
  40517. source: "./media/characters/nolow/side.svg",
  40518. extra: 1484/1434,
  40519. bottom: 85/1569
  40520. }
  40521. },
  40522. sideErect: {
  40523. height: math.unit(21, "feet"),
  40524. name: "Side-erect",
  40525. image: {
  40526. source: "./media/characters/nolow/side-erect.svg",
  40527. extra: 1484/1434,
  40528. bottom: 85/1569
  40529. }
  40530. },
  40531. },
  40532. [
  40533. {
  40534. name: "Regular",
  40535. height: math.unit(12, "feet")
  40536. },
  40537. {
  40538. name: "Big Chee",
  40539. height: math.unit(21, "feet"),
  40540. default: true
  40541. },
  40542. ]
  40543. ))
  40544. characterMakers.push(() => makeCharacter(
  40545. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40546. {
  40547. front: {
  40548. height: math.unit(7, "feet"),
  40549. weight: math.unit(250, "lb"),
  40550. name: "Front",
  40551. image: {
  40552. source: "./media/characters/nines/front.svg",
  40553. extra: 1741/1607,
  40554. bottom: 41/1782
  40555. }
  40556. },
  40557. side: {
  40558. height: math.unit(7, "feet"),
  40559. weight: math.unit(250, "lb"),
  40560. name: "Side",
  40561. image: {
  40562. source: "./media/characters/nines/side.svg",
  40563. extra: 1854/1735,
  40564. bottom: 93/1947
  40565. }
  40566. },
  40567. back: {
  40568. height: math.unit(7, "feet"),
  40569. weight: math.unit(250, "lb"),
  40570. name: "Back",
  40571. image: {
  40572. source: "./media/characters/nines/back.svg",
  40573. extra: 1748/1615,
  40574. bottom: 20/1768
  40575. }
  40576. },
  40577. },
  40578. [
  40579. {
  40580. name: "Megamacro",
  40581. height: math.unit(99, "km"),
  40582. default: true
  40583. },
  40584. ]
  40585. ))
  40586. characterMakers.push(() => makeCharacter(
  40587. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40588. {
  40589. front: {
  40590. height: math.unit(5 + 10/12, "feet"),
  40591. weight: math.unit(210, "lb"),
  40592. name: "Front",
  40593. image: {
  40594. source: "./media/characters/zenith/front.svg",
  40595. extra: 1531/1452,
  40596. bottom: 198/1729
  40597. }
  40598. },
  40599. back: {
  40600. height: math.unit(5 + 10/12, "feet"),
  40601. weight: math.unit(210, "lb"),
  40602. name: "Back",
  40603. image: {
  40604. source: "./media/characters/zenith/back.svg",
  40605. extra: 1571/1487,
  40606. bottom: 75/1646
  40607. }
  40608. },
  40609. },
  40610. [
  40611. {
  40612. name: "Normal",
  40613. height: math.unit(5 + 10/12, "feet"),
  40614. default: true
  40615. }
  40616. ]
  40617. ))
  40618. characterMakers.push(() => makeCharacter(
  40619. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40620. {
  40621. front: {
  40622. height: math.unit(4, "feet"),
  40623. weight: math.unit(60, "lb"),
  40624. name: "Front",
  40625. image: {
  40626. source: "./media/characters/jasper/front.svg",
  40627. extra: 1450/1379,
  40628. bottom: 19/1469
  40629. }
  40630. },
  40631. },
  40632. [
  40633. {
  40634. name: "Normal",
  40635. height: math.unit(4, "feet"),
  40636. default: true
  40637. },
  40638. ]
  40639. ))
  40640. characterMakers.push(() => makeCharacter(
  40641. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40642. {
  40643. front: {
  40644. height: math.unit(6 + 5/12, "feet"),
  40645. weight: math.unit(290, "lb"),
  40646. name: "Front",
  40647. image: {
  40648. source: "./media/characters/tiberius-thyben/front.svg",
  40649. extra: 757/739,
  40650. bottom: 39/796
  40651. }
  40652. },
  40653. },
  40654. [
  40655. {
  40656. name: "Micro",
  40657. height: math.unit(1.5, "inches")
  40658. },
  40659. {
  40660. name: "Normal",
  40661. height: math.unit(6 + 5/12, "feet"),
  40662. default: true
  40663. },
  40664. {
  40665. name: "Macro",
  40666. height: math.unit(300, "feet")
  40667. },
  40668. ]
  40669. ))
  40670. characterMakers.push(() => makeCharacter(
  40671. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40672. {
  40673. front: {
  40674. height: math.unit(5 + 6/12, "feet"),
  40675. weight: math.unit(60, "kg"),
  40676. name: "Front",
  40677. image: {
  40678. source: "./media/characters/sabre/front.svg",
  40679. extra: 738/671,
  40680. bottom: 27/765
  40681. }
  40682. },
  40683. },
  40684. [
  40685. {
  40686. name: "Teeny",
  40687. height: math.unit(2, "inches")
  40688. },
  40689. {
  40690. name: "Smol",
  40691. height: math.unit(8, "inches")
  40692. },
  40693. {
  40694. name: "Normal",
  40695. height: math.unit(5 + 6/12, "feet"),
  40696. default: true
  40697. },
  40698. {
  40699. name: "Mini-Macro",
  40700. height: math.unit(15, "feet")
  40701. },
  40702. {
  40703. name: "Macro",
  40704. height: math.unit(50, "feet")
  40705. },
  40706. ]
  40707. ))
  40708. characterMakers.push(() => makeCharacter(
  40709. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40710. {
  40711. front: {
  40712. height: math.unit(6 + 4/12, "feet"),
  40713. weight: math.unit(170, "lb"),
  40714. name: "Front",
  40715. image: {
  40716. source: "./media/characters/charlie/front.svg",
  40717. extra: 1348/1228,
  40718. bottom: 15/1363
  40719. }
  40720. },
  40721. },
  40722. [
  40723. {
  40724. name: "Macro",
  40725. height: math.unit(1700, "meters"),
  40726. default: true
  40727. },
  40728. {
  40729. name: "MegaMacro",
  40730. height: math.unit(20400, "meters")
  40731. },
  40732. ]
  40733. ))
  40734. characterMakers.push(() => makeCharacter(
  40735. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40736. {
  40737. front: {
  40738. height: math.unit(6 + 3/12, "feet"),
  40739. weight: math.unit(185, "lb"),
  40740. name: "Front",
  40741. image: {
  40742. source: "./media/characters/susan-grant/front.svg",
  40743. extra: 1351/1327,
  40744. bottom: 26/1377
  40745. }
  40746. },
  40747. },
  40748. [
  40749. {
  40750. name: "Normal",
  40751. height: math.unit(6 + 3/12, "feet"),
  40752. default: true
  40753. },
  40754. {
  40755. name: "Macro",
  40756. height: math.unit(225, "feet")
  40757. },
  40758. {
  40759. name: "Macro+",
  40760. height: math.unit(900, "feet")
  40761. },
  40762. {
  40763. name: "MegaMacro",
  40764. height: math.unit(14400, "feet")
  40765. },
  40766. ]
  40767. ))
  40768. characterMakers.push(() => makeCharacter(
  40769. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40770. {
  40771. front: {
  40772. height: math.unit(5 + 4/12, "feet"),
  40773. weight: math.unit(110, "lb"),
  40774. name: "Front",
  40775. image: {
  40776. source: "./media/characters/axel-isanov/front.svg",
  40777. extra: 1096/1065,
  40778. bottom: 13/1109
  40779. }
  40780. },
  40781. },
  40782. [
  40783. {
  40784. name: "Normal",
  40785. height: math.unit(5 + 4/12, "feet"),
  40786. default: true
  40787. },
  40788. ]
  40789. ))
  40790. characterMakers.push(() => makeCharacter(
  40791. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40792. {
  40793. front: {
  40794. height: math.unit(9, "feet"),
  40795. weight: math.unit(467, "lb"),
  40796. name: "Front",
  40797. image: {
  40798. source: "./media/characters/necahual/front.svg",
  40799. extra: 920/873,
  40800. bottom: 26/946
  40801. }
  40802. },
  40803. back: {
  40804. height: math.unit(9, "feet"),
  40805. weight: math.unit(467, "lb"),
  40806. name: "Back",
  40807. image: {
  40808. source: "./media/characters/necahual/back.svg",
  40809. extra: 930/884,
  40810. bottom: 16/946
  40811. }
  40812. },
  40813. frontUnderwear: {
  40814. height: math.unit(9, "feet"),
  40815. weight: math.unit(467, "lb"),
  40816. name: "Front (Underwear)",
  40817. image: {
  40818. source: "./media/characters/necahual/front-underwear.svg",
  40819. extra: 920/873,
  40820. bottom: 26/946
  40821. }
  40822. },
  40823. frontDressed: {
  40824. height: math.unit(9, "feet"),
  40825. weight: math.unit(467, "lb"),
  40826. name: "Front (Dressed)",
  40827. image: {
  40828. source: "./media/characters/necahual/front-dressed.svg",
  40829. extra: 920/873,
  40830. bottom: 26/946
  40831. }
  40832. },
  40833. },
  40834. [
  40835. {
  40836. name: "Comprsesed",
  40837. height: math.unit(9, "feet")
  40838. },
  40839. {
  40840. name: "Natural",
  40841. height: math.unit(15, "feet"),
  40842. default: true
  40843. },
  40844. {
  40845. name: "Boosted",
  40846. height: math.unit(50, "feet")
  40847. },
  40848. {
  40849. name: "Boosted+",
  40850. height: math.unit(150, "feet")
  40851. },
  40852. {
  40853. name: "Max",
  40854. height: math.unit(500, "feet")
  40855. },
  40856. ]
  40857. ))
  40858. characterMakers.push(() => makeCharacter(
  40859. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40860. {
  40861. front: {
  40862. height: math.unit(22 + 1/12, "feet"),
  40863. weight: math.unit(3200, "lb"),
  40864. name: "Front",
  40865. image: {
  40866. source: "./media/characters/theo-acacia/front.svg",
  40867. extra: 1796/1741,
  40868. bottom: 83/1879
  40869. }
  40870. },
  40871. frontUnderwear: {
  40872. height: math.unit(22 + 1/12, "feet"),
  40873. weight: math.unit(3200, "lb"),
  40874. name: "Front (Underwear)",
  40875. image: {
  40876. source: "./media/characters/theo-acacia/front-underwear.svg",
  40877. extra: 1796/1741,
  40878. bottom: 83/1879
  40879. }
  40880. },
  40881. frontNude: {
  40882. height: math.unit(22 + 1/12, "feet"),
  40883. weight: math.unit(3200, "lb"),
  40884. name: "Front (Nude)",
  40885. image: {
  40886. source: "./media/characters/theo-acacia/front-nude.svg",
  40887. extra: 1796/1741,
  40888. bottom: 83/1879
  40889. }
  40890. },
  40891. },
  40892. [
  40893. {
  40894. name: "Normal",
  40895. height: math.unit(22 + 1/12, "feet"),
  40896. default: true
  40897. },
  40898. ]
  40899. ))
  40900. characterMakers.push(() => makeCharacter(
  40901. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40902. {
  40903. front: {
  40904. height: math.unit(20, "feet"),
  40905. name: "Front",
  40906. image: {
  40907. source: "./media/characters/astra/front.svg",
  40908. extra: 1850/1714,
  40909. bottom: 106/1956
  40910. }
  40911. },
  40912. frontUndressed: {
  40913. height: math.unit(20, "feet"),
  40914. name: "Front (Undressed)",
  40915. image: {
  40916. source: "./media/characters/astra/front-undressed.svg",
  40917. extra: 1926/1749,
  40918. bottom: 0/1926
  40919. }
  40920. },
  40921. hand: {
  40922. height: math.unit(1.53, "feet"),
  40923. name: "Hand",
  40924. image: {
  40925. source: "./media/characters/astra/hand.svg"
  40926. }
  40927. },
  40928. paw: {
  40929. height: math.unit(1.53, "feet"),
  40930. name: "Paw",
  40931. image: {
  40932. source: "./media/characters/astra/paw.svg"
  40933. }
  40934. },
  40935. },
  40936. [
  40937. {
  40938. name: "Smallest",
  40939. height: math.unit(20, "feet")
  40940. },
  40941. {
  40942. name: "Normal",
  40943. height: math.unit(1e9, "miles"),
  40944. default: true
  40945. },
  40946. {
  40947. name: "Larger",
  40948. height: math.unit(5, "multiverses")
  40949. },
  40950. {
  40951. name: "Largest",
  40952. height: math.unit(1e9, "multiverses")
  40953. },
  40954. ]
  40955. ))
  40956. characterMakers.push(() => makeCharacter(
  40957. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40958. {
  40959. front: {
  40960. height: math.unit(8, "feet"),
  40961. name: "Front",
  40962. image: {
  40963. source: "./media/characters/breanna/front.svg",
  40964. extra: 1912/1632,
  40965. bottom: 33/1945
  40966. }
  40967. },
  40968. },
  40969. [
  40970. {
  40971. name: "Smallest",
  40972. height: math.unit(8, "feet")
  40973. },
  40974. {
  40975. name: "Normal",
  40976. height: math.unit(1, "mile"),
  40977. default: true
  40978. },
  40979. {
  40980. name: "Maximum",
  40981. height: math.unit(1500000000000, "lightyears")
  40982. },
  40983. ]
  40984. ))
  40985. characterMakers.push(() => makeCharacter(
  40986. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40987. {
  40988. front: {
  40989. height: math.unit(5 + 11/12, "feet"),
  40990. weight: math.unit(155, "lb"),
  40991. name: "Front",
  40992. image: {
  40993. source: "./media/characters/cai/front.svg",
  40994. extra: 1823/1702,
  40995. bottom: 32/1855
  40996. }
  40997. },
  40998. back: {
  40999. height: math.unit(5 + 11/12, "feet"),
  41000. weight: math.unit(155, "lb"),
  41001. name: "Back",
  41002. image: {
  41003. source: "./media/characters/cai/back.svg",
  41004. extra: 1809/1708,
  41005. bottom: 31/1840
  41006. }
  41007. },
  41008. },
  41009. [
  41010. {
  41011. name: "Normal",
  41012. height: math.unit(5 + 11/12, "feet"),
  41013. default: true
  41014. },
  41015. {
  41016. name: "Big",
  41017. height: math.unit(15, "feet")
  41018. },
  41019. {
  41020. name: "Macro",
  41021. height: math.unit(200, "feet")
  41022. },
  41023. ]
  41024. ))
  41025. characterMakers.push(() => makeCharacter(
  41026. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41027. {
  41028. front: {
  41029. height: math.unit(5 + 6/12, "feet"),
  41030. weight: math.unit(160, "lb"),
  41031. name: "Front",
  41032. image: {
  41033. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41034. extra: 1227/1174,
  41035. bottom: 37/1264
  41036. }
  41037. },
  41038. },
  41039. [
  41040. {
  41041. name: "Macro",
  41042. height: math.unit(444, "meters"),
  41043. default: true
  41044. },
  41045. ]
  41046. ))
  41047. characterMakers.push(() => makeCharacter(
  41048. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41049. {
  41050. front: {
  41051. height: math.unit(18 + 7/12, "feet"),
  41052. name: "Front",
  41053. image: {
  41054. source: "./media/characters/rex/front.svg",
  41055. extra: 1941/1807,
  41056. bottom: 66/2007
  41057. }
  41058. },
  41059. back: {
  41060. height: math.unit(18 + 7/12, "feet"),
  41061. name: "Back",
  41062. image: {
  41063. source: "./media/characters/rex/back.svg",
  41064. extra: 1937/1822,
  41065. bottom: 42/1979
  41066. }
  41067. },
  41068. boot: {
  41069. height: math.unit(3.45, "feet"),
  41070. name: "Boot",
  41071. image: {
  41072. source: "./media/characters/rex/boot.svg"
  41073. }
  41074. },
  41075. paw: {
  41076. height: math.unit(4.17, "feet"),
  41077. name: "Paw",
  41078. image: {
  41079. source: "./media/characters/rex/paw.svg"
  41080. }
  41081. },
  41082. head: {
  41083. height: math.unit(6.728, "feet"),
  41084. name: "Head",
  41085. image: {
  41086. source: "./media/characters/rex/head.svg"
  41087. }
  41088. },
  41089. },
  41090. [
  41091. {
  41092. name: "Nano",
  41093. height: math.unit(18 + 7/12, "feet")
  41094. },
  41095. {
  41096. name: "Micro",
  41097. height: math.unit(1.5, "megameters")
  41098. },
  41099. {
  41100. name: "Normal",
  41101. height: math.unit(440, "megameters"),
  41102. default: true
  41103. },
  41104. {
  41105. name: "Macro",
  41106. height: math.unit(2.5, "gigameters")
  41107. },
  41108. {
  41109. name: "Gigamacro",
  41110. height: math.unit(2, "galaxies")
  41111. },
  41112. ]
  41113. ))
  41114. characterMakers.push(() => makeCharacter(
  41115. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41116. {
  41117. side: {
  41118. height: math.unit(32, "feet"),
  41119. weight: math.unit(250000, "lb"),
  41120. name: "Side",
  41121. image: {
  41122. source: "./media/characters/silverwing/side.svg",
  41123. extra: 1100/1019,
  41124. bottom: 204/1304
  41125. }
  41126. },
  41127. },
  41128. [
  41129. {
  41130. name: "Normal",
  41131. height: math.unit(32, "feet"),
  41132. default: true
  41133. },
  41134. ]
  41135. ))
  41136. characterMakers.push(() => makeCharacter(
  41137. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41138. {
  41139. front: {
  41140. height: math.unit(6 + 6/12, "feet"),
  41141. weight: math.unit(350, "lb"),
  41142. name: "Front",
  41143. image: {
  41144. source: "./media/characters/tristan-hawthorne/front.svg",
  41145. extra: 1159/1124,
  41146. bottom: 37/1196
  41147. }
  41148. },
  41149. },
  41150. [
  41151. {
  41152. name: "Normal",
  41153. height: math.unit(6 + 6/12, "feet"),
  41154. default: true
  41155. },
  41156. ]
  41157. ))
  41158. characterMakers.push(() => makeCharacter(
  41159. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41160. {
  41161. front: {
  41162. height: math.unit(5 + 11/12, "feet"),
  41163. weight: math.unit(190, "lb"),
  41164. name: "Front",
  41165. image: {
  41166. source: "./media/characters/mizu/front.svg",
  41167. extra: 1988/1788,
  41168. bottom: 14/2002
  41169. }
  41170. },
  41171. },
  41172. [
  41173. {
  41174. name: "Normal",
  41175. height: math.unit(5 + 11/12, "feet"),
  41176. default: true
  41177. },
  41178. ]
  41179. ))
  41180. characterMakers.push(() => makeCharacter(
  41181. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  41182. {
  41183. front: {
  41184. height: math.unit(6, "feet"),
  41185. name: "Front",
  41186. image: {
  41187. source: "./media/characters/moonlight-rose-terra/front.svg",
  41188. extra: 1434/1252,
  41189. bottom: 48/1482
  41190. }
  41191. },
  41192. },
  41193. [
  41194. {
  41195. name: "TRAPPIST-1D",
  41196. height: math.unit(4992*2, "km")
  41197. },
  41198. {
  41199. name: "Earth",
  41200. height: math.unit(6367*2, "km"),
  41201. default: true
  41202. },
  41203. {
  41204. name: "Kepler-22b",
  41205. height: math.unit(15282*2, "km")
  41206. },
  41207. ]
  41208. ))
  41209. characterMakers.push(() => makeCharacter(
  41210. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  41211. {
  41212. front: {
  41213. height: math.unit(6, "feet"),
  41214. name: "Front",
  41215. image: {
  41216. source: "./media/characters/moonlight-rose-neptune/front.svg",
  41217. extra: 1851/1712,
  41218. bottom: 0/1851
  41219. }
  41220. },
  41221. },
  41222. [
  41223. {
  41224. name: "Enceladus",
  41225. height: math.unit(513*2, "km")
  41226. },
  41227. {
  41228. name: "Europe",
  41229. height: math.unit(1560*2, "km")
  41230. },
  41231. {
  41232. name: "Neptune",
  41233. height: math.unit(24622*2, "km"),
  41234. default: true
  41235. },
  41236. {
  41237. name: "CoRoT-9b",
  41238. height: math.unit(75067*2, "km")
  41239. },
  41240. ]
  41241. ))
  41242. characterMakers.push(() => makeCharacter(
  41243. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  41244. {
  41245. front: {
  41246. height: math.unit(6, "feet"),
  41247. name: "Front",
  41248. image: {
  41249. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  41250. extra: 1367/1286,
  41251. bottom: 55/1422
  41252. }
  41253. },
  41254. },
  41255. [
  41256. {
  41257. name: "Saturn",
  41258. height: math.unit(58232*2, "km")
  41259. },
  41260. {
  41261. name: "Jupiter",
  41262. height: math.unit(69911*2, "km"),
  41263. default: true
  41264. },
  41265. {
  41266. name: "HD 100546 b",
  41267. height: math.unit(482938, "km")
  41268. },
  41269. ]
  41270. ))
  41271. characterMakers.push(() => makeCharacter(
  41272. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41273. {
  41274. front: {
  41275. height: math.unit(1.7, "feet"),
  41276. weight: math.unit(50, "lb"),
  41277. name: "Front",
  41278. image: {
  41279. source: "./media/characters/dechroma/front.svg",
  41280. extra: 1095/859,
  41281. bottom: 64/1159
  41282. }
  41283. },
  41284. },
  41285. [
  41286. {
  41287. name: "Normal",
  41288. height: math.unit(1.7, "feet"),
  41289. default: true
  41290. },
  41291. ]
  41292. ))
  41293. characterMakers.push(() => makeCharacter(
  41294. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41295. {
  41296. side: {
  41297. height: math.unit(30, "feet"),
  41298. name: "Side",
  41299. image: {
  41300. source: "./media/characters/veluren-thanazel/side.svg",
  41301. extra: 1611/633,
  41302. bottom: 118/1729
  41303. }
  41304. },
  41305. front: {
  41306. height: math.unit(30, "feet"),
  41307. name: "Front",
  41308. image: {
  41309. source: "./media/characters/veluren-thanazel/front.svg",
  41310. extra: 1486/636,
  41311. bottom: 238/1724
  41312. }
  41313. },
  41314. head: {
  41315. height: math.unit(21.4, "feet"),
  41316. name: "Head",
  41317. image: {
  41318. source: "./media/characters/veluren-thanazel/head.svg"
  41319. }
  41320. },
  41321. genitals: {
  41322. height: math.unit(19.4, "feet"),
  41323. name: "Genitals",
  41324. image: {
  41325. source: "./media/characters/veluren-thanazel/genitals.svg"
  41326. }
  41327. },
  41328. },
  41329. [
  41330. {
  41331. name: "Social",
  41332. height: math.unit(6, "feet")
  41333. },
  41334. {
  41335. name: "Play",
  41336. height: math.unit(12, "feet")
  41337. },
  41338. {
  41339. name: "True",
  41340. height: math.unit(30, "feet"),
  41341. default: true
  41342. },
  41343. ]
  41344. ))
  41345. characterMakers.push(() => makeCharacter(
  41346. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41347. {
  41348. front: {
  41349. height: math.unit(7 + 6/12, "feet"),
  41350. weight: math.unit(500, "kg"),
  41351. name: "Front",
  41352. image: {
  41353. source: "./media/characters/arcturas/front.svg",
  41354. extra: 1700/1500,
  41355. bottom: 145/1845
  41356. }
  41357. },
  41358. },
  41359. [
  41360. {
  41361. name: "Normal",
  41362. height: math.unit(7 + 6/12, "feet"),
  41363. default: true
  41364. },
  41365. ]
  41366. ))
  41367. characterMakers.push(() => makeCharacter(
  41368. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41369. {
  41370. side: {
  41371. height: math.unit(6, "feet"),
  41372. weight: math.unit(2, "tons"),
  41373. name: "Side",
  41374. image: {
  41375. source: "./media/characters/vitaen/side.svg",
  41376. extra: 1157/617,
  41377. bottom: 122/1279
  41378. }
  41379. },
  41380. },
  41381. [
  41382. {
  41383. name: "Normal",
  41384. height: math.unit(6, "feet"),
  41385. default: true
  41386. },
  41387. ]
  41388. ))
  41389. characterMakers.push(() => makeCharacter(
  41390. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41391. {
  41392. front: {
  41393. height: math.unit(19, "feet"),
  41394. name: "Front",
  41395. image: {
  41396. source: "./media/characters/fia-dreamweaver/front.svg",
  41397. extra: 1630/1504,
  41398. bottom: 25/1655
  41399. }
  41400. },
  41401. },
  41402. [
  41403. {
  41404. name: "Normal",
  41405. height: math.unit(19, "feet"),
  41406. default: true
  41407. },
  41408. ]
  41409. ))
  41410. characterMakers.push(() => makeCharacter(
  41411. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41412. {
  41413. front: {
  41414. height: math.unit(5 + 4/12, "feet"),
  41415. name: "Front",
  41416. image: {
  41417. source: "./media/characters/artan/front.svg",
  41418. extra: 1618/1535,
  41419. bottom: 46/1664
  41420. }
  41421. },
  41422. back: {
  41423. height: math.unit(5 + 4/12, "feet"),
  41424. name: "Back",
  41425. image: {
  41426. source: "./media/characters/artan/back.svg",
  41427. extra: 1618/1543,
  41428. bottom: 31/1649
  41429. }
  41430. },
  41431. },
  41432. [
  41433. {
  41434. name: "Normal",
  41435. height: math.unit(5 + 4/12, "feet"),
  41436. default: true
  41437. },
  41438. ]
  41439. ))
  41440. characterMakers.push(() => makeCharacter(
  41441. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41442. {
  41443. side: {
  41444. height: math.unit(182, "cm"),
  41445. weight: math.unit(1000, "lb"),
  41446. name: "Side",
  41447. image: {
  41448. source: "./media/characters/silver-dragon/side.svg",
  41449. extra: 710/287,
  41450. bottom: 88/798
  41451. }
  41452. },
  41453. },
  41454. [
  41455. {
  41456. name: "Normal",
  41457. height: math.unit(182, "cm"),
  41458. default: true
  41459. },
  41460. ]
  41461. ))
  41462. characterMakers.push(() => makeCharacter(
  41463. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41464. {
  41465. side: {
  41466. height: math.unit(6 + 6/12, "feet"),
  41467. weight: math.unit(1.5, "tons"),
  41468. name: "Side",
  41469. image: {
  41470. source: "./media/characters/zephyr/side.svg",
  41471. extra: 1433/586,
  41472. bottom: 109/1542
  41473. }
  41474. },
  41475. },
  41476. [
  41477. {
  41478. name: "Normal",
  41479. height: math.unit(6 + 6/12, "feet"),
  41480. default: true
  41481. },
  41482. ]
  41483. ))
  41484. characterMakers.push(() => makeCharacter(
  41485. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41486. {
  41487. side: {
  41488. height: math.unit(1, "feet"),
  41489. name: "Side",
  41490. image: {
  41491. source: "./media/characters/vixye/side.svg",
  41492. extra: 632/541,
  41493. bottom: 0/632
  41494. }
  41495. },
  41496. },
  41497. [
  41498. {
  41499. name: "Normal",
  41500. height: math.unit(1, "feet"),
  41501. default: true
  41502. },
  41503. {
  41504. name: "True",
  41505. height: math.unit(1e15, "multiverses")
  41506. },
  41507. ]
  41508. ))
  41509. characterMakers.push(() => makeCharacter(
  41510. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41511. {
  41512. front: {
  41513. height: math.unit(8 + 2/12, "feet"),
  41514. weight: math.unit(650, "lb"),
  41515. name: "Front",
  41516. image: {
  41517. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41518. extra: 1174/1137,
  41519. bottom: 82/1256
  41520. }
  41521. },
  41522. back: {
  41523. height: math.unit(8 + 2/12, "feet"),
  41524. weight: math.unit(650, "lb"),
  41525. name: "Back",
  41526. image: {
  41527. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41528. extra: 1204/1157,
  41529. bottom: 46/1250
  41530. }
  41531. },
  41532. },
  41533. [
  41534. {
  41535. name: "Wildform",
  41536. height: math.unit(8 + 2/12, "feet"),
  41537. default: true
  41538. },
  41539. ]
  41540. ))
  41541. characterMakers.push(() => makeCharacter(
  41542. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41543. {
  41544. front: {
  41545. height: math.unit(18, "feet"),
  41546. name: "Front",
  41547. image: {
  41548. source: "./media/characters/cyphin/front.svg",
  41549. extra: 970/886,
  41550. bottom: 42/1012
  41551. }
  41552. },
  41553. back: {
  41554. height: math.unit(18, "feet"),
  41555. name: "Back",
  41556. image: {
  41557. source: "./media/characters/cyphin/back.svg",
  41558. extra: 1009/894,
  41559. bottom: 24/1033
  41560. }
  41561. },
  41562. head: {
  41563. height: math.unit(5.05, "feet"),
  41564. name: "Head",
  41565. image: {
  41566. source: "./media/characters/cyphin/head.svg"
  41567. }
  41568. },
  41569. tailbud: {
  41570. height: math.unit(5, "feet"),
  41571. name: "Tailbud",
  41572. image: {
  41573. source: "./media/characters/cyphin/tailbud.svg"
  41574. }
  41575. },
  41576. },
  41577. [
  41578. ]
  41579. ))
  41580. characterMakers.push(() => makeCharacter(
  41581. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41582. {
  41583. side: {
  41584. height: math.unit(10, "feet"),
  41585. weight: math.unit(6, "tons"),
  41586. name: "Side",
  41587. image: {
  41588. source: "./media/characters/raijin/side.svg",
  41589. extra: 1529/613,
  41590. bottom: 337/1866
  41591. }
  41592. },
  41593. },
  41594. [
  41595. {
  41596. name: "Normal",
  41597. height: math.unit(10, "feet"),
  41598. default: true
  41599. },
  41600. ]
  41601. ))
  41602. characterMakers.push(() => makeCharacter(
  41603. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41604. {
  41605. side: {
  41606. height: math.unit(9, "feet"),
  41607. name: "Side",
  41608. image: {
  41609. source: "./media/characters/nilghais/side.svg",
  41610. extra: 1047/744,
  41611. bottom: 91/1138
  41612. }
  41613. },
  41614. head: {
  41615. height: math.unit(3.14, "feet"),
  41616. name: "Head",
  41617. image: {
  41618. source: "./media/characters/nilghais/head.svg"
  41619. }
  41620. },
  41621. mouth: {
  41622. height: math.unit(4.6, "feet"),
  41623. name: "Mouth",
  41624. image: {
  41625. source: "./media/characters/nilghais/mouth.svg"
  41626. }
  41627. },
  41628. wings: {
  41629. height: math.unit(24, "feet"),
  41630. name: "Wings",
  41631. image: {
  41632. source: "./media/characters/nilghais/wings.svg"
  41633. }
  41634. },
  41635. ass: {
  41636. height: math.unit(6.12, "feet"),
  41637. name: "Ass",
  41638. image: {
  41639. source: "./media/characters/nilghais/ass.svg"
  41640. }
  41641. },
  41642. },
  41643. [
  41644. {
  41645. name: "Normal",
  41646. height: math.unit(9, "feet"),
  41647. default: true
  41648. },
  41649. ]
  41650. ))
  41651. characterMakers.push(() => makeCharacter(
  41652. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41653. {
  41654. regular: {
  41655. height: math.unit(16 + 2/12, "feet"),
  41656. weight: math.unit(2300, "lb"),
  41657. name: "Regular",
  41658. image: {
  41659. source: "./media/characters/zolgar/regular.svg",
  41660. extra: 1246/1004,
  41661. bottom: 124/1370
  41662. }
  41663. },
  41664. boxers: {
  41665. height: math.unit(16 + 2/12, "feet"),
  41666. weight: math.unit(2300, "lb"),
  41667. name: "Boxers",
  41668. image: {
  41669. source: "./media/characters/zolgar/boxers.svg",
  41670. extra: 1246/1004,
  41671. bottom: 124/1370
  41672. }
  41673. },
  41674. armored: {
  41675. height: math.unit(16 + 2/12, "feet"),
  41676. weight: math.unit(2300, "lb"),
  41677. name: "Armored",
  41678. image: {
  41679. source: "./media/characters/zolgar/armored.svg",
  41680. extra: 1246/1004,
  41681. bottom: 124/1370
  41682. }
  41683. },
  41684. goth: {
  41685. height: math.unit(16 + 2/12, "feet"),
  41686. weight: math.unit(2300, "lb"),
  41687. name: "Goth",
  41688. image: {
  41689. source: "./media/characters/zolgar/goth.svg",
  41690. extra: 1246/1004,
  41691. bottom: 124/1370
  41692. }
  41693. },
  41694. },
  41695. [
  41696. {
  41697. name: "Shrunken Down",
  41698. height: math.unit(9 + 2/12, "feet")
  41699. },
  41700. {
  41701. name: "Normal",
  41702. height: math.unit(16 + 2/12, "feet"),
  41703. default: true
  41704. },
  41705. ]
  41706. ))
  41707. characterMakers.push(() => makeCharacter(
  41708. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41709. {
  41710. front: {
  41711. height: math.unit(6, "feet"),
  41712. weight: math.unit(168, "lb"),
  41713. name: "Front",
  41714. image: {
  41715. source: "./media/characters/luca/front.svg",
  41716. extra: 841/667,
  41717. bottom: 102/943
  41718. }
  41719. },
  41720. },
  41721. [
  41722. {
  41723. name: "Normal",
  41724. height: math.unit(6, "feet"),
  41725. default: true
  41726. },
  41727. ]
  41728. ))
  41729. characterMakers.push(() => makeCharacter(
  41730. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41731. {
  41732. side: {
  41733. height: math.unit(7 + 3/12, "feet"),
  41734. weight: math.unit(312, "lb"),
  41735. name: "Side",
  41736. image: {
  41737. source: "./media/characters/zezo/side.svg",
  41738. extra: 1192/1067,
  41739. bottom: 63/1255
  41740. }
  41741. },
  41742. },
  41743. [
  41744. {
  41745. name: "Normal",
  41746. height: math.unit(7 + 3/12, "feet"),
  41747. default: true
  41748. },
  41749. ]
  41750. ))
  41751. characterMakers.push(() => makeCharacter(
  41752. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41753. {
  41754. front: {
  41755. height: math.unit(5 + 5/12, "feet"),
  41756. weight: math.unit(170, "lb"),
  41757. name: "Front",
  41758. image: {
  41759. source: "./media/characters/mayso/front.svg",
  41760. extra: 1215/1108,
  41761. bottom: 16/1231
  41762. }
  41763. },
  41764. },
  41765. [
  41766. {
  41767. name: "Normal",
  41768. height: math.unit(5 + 5/12, "feet"),
  41769. default: true
  41770. },
  41771. ]
  41772. ))
  41773. characterMakers.push(() => makeCharacter(
  41774. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41775. {
  41776. front: {
  41777. height: math.unit(4 + 3/12, "feet"),
  41778. weight: math.unit(80, "lb"),
  41779. name: "Front",
  41780. image: {
  41781. source: "./media/characters/hess/front.svg",
  41782. extra: 1200/1123,
  41783. bottom: 16/1216
  41784. }
  41785. },
  41786. },
  41787. [
  41788. {
  41789. name: "Normal",
  41790. height: math.unit(4 + 3/12, "feet"),
  41791. default: true
  41792. },
  41793. ]
  41794. ))
  41795. characterMakers.push(() => makeCharacter(
  41796. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41797. {
  41798. front: {
  41799. height: math.unit(1.9, "meters"),
  41800. name: "Front",
  41801. image: {
  41802. source: "./media/characters/ashgar/front.svg",
  41803. extra: 1177/1146,
  41804. bottom: 99/1276
  41805. }
  41806. },
  41807. back: {
  41808. height: math.unit(1.9, "meters"),
  41809. name: "Back",
  41810. image: {
  41811. source: "./media/characters/ashgar/back.svg",
  41812. extra: 1201/1183,
  41813. bottom: 53/1254
  41814. }
  41815. },
  41816. feral: {
  41817. height: math.unit(1.4, "meters"),
  41818. name: "Feral",
  41819. image: {
  41820. source: "./media/characters/ashgar/feral.svg",
  41821. extra: 370/345,
  41822. bottom: 45/415
  41823. }
  41824. },
  41825. },
  41826. [
  41827. {
  41828. name: "Normal",
  41829. height: math.unit(1.9, "meters"),
  41830. default: true
  41831. },
  41832. ]
  41833. ))
  41834. characterMakers.push(() => makeCharacter(
  41835. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41836. {
  41837. regular: {
  41838. height: math.unit(6, "feet"),
  41839. weight: math.unit(220, "lb"),
  41840. name: "Regular",
  41841. image: {
  41842. source: "./media/characters/phillip/regular.svg",
  41843. extra: 1373/1277,
  41844. bottom: 75/1448
  41845. }
  41846. },
  41847. dressed: {
  41848. height: math.unit(6, "feet"),
  41849. weight: math.unit(220, "lb"),
  41850. name: "Dressed",
  41851. image: {
  41852. source: "./media/characters/phillip/dressed.svg",
  41853. extra: 1373/1277,
  41854. bottom: 75/1448
  41855. }
  41856. },
  41857. paw: {
  41858. height: math.unit(1.44, "feet"),
  41859. name: "Paw",
  41860. image: {
  41861. source: "./media/characters/phillip/paw.svg"
  41862. }
  41863. },
  41864. },
  41865. [
  41866. {
  41867. name: "Normal",
  41868. height: math.unit(6, "feet"),
  41869. default: true
  41870. },
  41871. ]
  41872. ))
  41873. characterMakers.push(() => makeCharacter(
  41874. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41875. {
  41876. side: {
  41877. height: math.unit(42, "feet"),
  41878. name: "Side",
  41879. image: {
  41880. source: "./media/characters/uvula/side.svg",
  41881. extra: 683/586,
  41882. bottom: 60/743
  41883. }
  41884. },
  41885. front: {
  41886. height: math.unit(42, "feet"),
  41887. name: "Front",
  41888. image: {
  41889. source: "./media/characters/uvula/front.svg",
  41890. extra: 705/613,
  41891. bottom: 54/759
  41892. }
  41893. },
  41894. maw: {
  41895. height: math.unit(23.5, "feet"),
  41896. name: "Maw",
  41897. image: {
  41898. source: "./media/characters/uvula/maw.svg"
  41899. }
  41900. },
  41901. },
  41902. [
  41903. {
  41904. name: "Original Size",
  41905. height: math.unit(14, "inches")
  41906. },
  41907. {
  41908. name: "Human Size",
  41909. height: math.unit(6, "feet")
  41910. },
  41911. {
  41912. name: "Big",
  41913. height: math.unit(42, "feet"),
  41914. default: true
  41915. },
  41916. {
  41917. name: "Bigger",
  41918. height: math.unit(100, "feet")
  41919. },
  41920. ]
  41921. ))
  41922. characterMakers.push(() => makeCharacter(
  41923. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  41924. {
  41925. front: {
  41926. height: math.unit(5 + 11/12, "feet"),
  41927. name: "Front",
  41928. image: {
  41929. source: "./media/characters/lannah/front.svg",
  41930. extra: 1208/1113,
  41931. bottom: 97/1305
  41932. }
  41933. },
  41934. },
  41935. [
  41936. {
  41937. name: "Normal",
  41938. height: math.unit(5 + 11/12, "feet"),
  41939. default: true
  41940. },
  41941. ]
  41942. ))
  41943. characterMakers.push(() => makeCharacter(
  41944. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  41945. {
  41946. front: {
  41947. height: math.unit(6 + 3/12, "feet"),
  41948. weight: math.unit(3.5, "tons"),
  41949. name: "Front",
  41950. image: {
  41951. source: "./media/characters/emberflame/front.svg",
  41952. extra: 1198/672,
  41953. bottom: 82/1280
  41954. }
  41955. },
  41956. side: {
  41957. height: math.unit(6 + 3/12, "feet"),
  41958. weight: math.unit(3.5, "tons"),
  41959. name: "Side",
  41960. image: {
  41961. source: "./media/characters/emberflame/side.svg",
  41962. extra: 938/527,
  41963. bottom: 56/994
  41964. }
  41965. },
  41966. },
  41967. [
  41968. {
  41969. name: "Normal",
  41970. height: math.unit(6 + 3/12, "feet"),
  41971. default: true
  41972. },
  41973. ]
  41974. ))
  41975. characterMakers.push(() => makeCharacter(
  41976. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  41977. {
  41978. side: {
  41979. height: math.unit(17.5, "feet"),
  41980. weight: math.unit(35, "tons"),
  41981. name: "Side",
  41982. image: {
  41983. source: "./media/characters/sophie-ambrose/side.svg",
  41984. extra: 1573/1242,
  41985. bottom: 71/1644
  41986. }
  41987. },
  41988. maw: {
  41989. height: math.unit(7.4, "feet"),
  41990. name: "Maw",
  41991. image: {
  41992. source: "./media/characters/sophie-ambrose/maw.svg"
  41993. }
  41994. },
  41995. },
  41996. [
  41997. {
  41998. name: "Normal",
  41999. height: math.unit(17.5, "feet"),
  42000. default: true
  42001. },
  42002. ]
  42003. ))
  42004. characterMakers.push(() => makeCharacter(
  42005. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42006. {
  42007. front: {
  42008. height: math.unit(280, "feet"),
  42009. weight: math.unit(550, "tons"),
  42010. name: "Front",
  42011. image: {
  42012. source: "./media/characters/king-mugi/front.svg",
  42013. extra: 1102/947,
  42014. bottom: 104/1206
  42015. }
  42016. },
  42017. },
  42018. [
  42019. {
  42020. name: "King Mugi",
  42021. height: math.unit(280, "feet"),
  42022. default: true
  42023. },
  42024. ]
  42025. ))
  42026. characterMakers.push(() => makeCharacter(
  42027. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42028. {
  42029. front: {
  42030. height: math.unit(64, "meters"),
  42031. name: "Front",
  42032. image: {
  42033. source: "./media/characters/nova-fox/front.svg",
  42034. extra: 1310/1246,
  42035. bottom: 65/1375
  42036. }
  42037. },
  42038. },
  42039. [
  42040. {
  42041. name: "Macro",
  42042. height: math.unit(64, "meters"),
  42043. default: true
  42044. },
  42045. ]
  42046. ))
  42047. characterMakers.push(() => makeCharacter(
  42048. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42049. {
  42050. front: {
  42051. height: math.unit(6 + 3/12, "feet"),
  42052. weight: math.unit(170, "lb"),
  42053. name: "Front",
  42054. image: {
  42055. source: "./media/characters/sam-bat/front.svg",
  42056. extra: 1601/1411,
  42057. bottom: 125/1726
  42058. }
  42059. },
  42060. back: {
  42061. height: math.unit(6 + 3/12, "feet"),
  42062. weight: math.unit(170, "lb"),
  42063. name: "Back",
  42064. image: {
  42065. source: "./media/characters/sam-bat/back.svg",
  42066. extra: 1577/1405,
  42067. bottom: 58/1635
  42068. }
  42069. },
  42070. },
  42071. [
  42072. {
  42073. name: "Normal",
  42074. height: math.unit(6 + 3/12, "feet"),
  42075. default: true
  42076. },
  42077. ]
  42078. ))
  42079. characterMakers.push(() => makeCharacter(
  42080. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42081. {
  42082. front: {
  42083. height: math.unit(59, "feet"),
  42084. weight: math.unit(40000, "lb"),
  42085. name: "Front",
  42086. image: {
  42087. source: "./media/characters/inari/front.svg",
  42088. extra: 1884/1350,
  42089. bottom: 95/1979
  42090. }
  42091. },
  42092. },
  42093. [
  42094. {
  42095. name: "Gigantamax",
  42096. height: math.unit(59, "feet"),
  42097. default: true
  42098. },
  42099. ]
  42100. ))
  42101. characterMakers.push(() => makeCharacter(
  42102. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42103. {
  42104. front: {
  42105. height: math.unit(5 + 8/12, "feet"),
  42106. name: "Front",
  42107. image: {
  42108. source: "./media/characters/elizabeth/front.svg",
  42109. extra: 1395/1298,
  42110. bottom: 54/1449
  42111. }
  42112. },
  42113. mouth: {
  42114. height: math.unit(1.97, "feet"),
  42115. name: "Mouth",
  42116. image: {
  42117. source: "./media/characters/elizabeth/mouth.svg"
  42118. }
  42119. },
  42120. foot: {
  42121. height: math.unit(1.17, "feet"),
  42122. name: "Foot",
  42123. image: {
  42124. source: "./media/characters/elizabeth/foot.svg"
  42125. }
  42126. },
  42127. },
  42128. [
  42129. {
  42130. name: "Normal",
  42131. height: math.unit(5 + 8/12, "feet"),
  42132. default: true
  42133. },
  42134. {
  42135. name: "Minimacro",
  42136. height: math.unit(18, "feet")
  42137. },
  42138. {
  42139. name: "Macro",
  42140. height: math.unit(180, "feet")
  42141. },
  42142. ]
  42143. ))
  42144. characterMakers.push(() => makeCharacter(
  42145. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42146. {
  42147. front: {
  42148. height: math.unit(5 + 2/12, "feet"),
  42149. name: "Front",
  42150. image: {
  42151. source: "./media/characters/october-gossamer/front.svg",
  42152. extra: 505/454,
  42153. bottom: 7/512
  42154. }
  42155. },
  42156. back: {
  42157. height: math.unit(5 + 2/12, "feet"),
  42158. name: "Back",
  42159. image: {
  42160. source: "./media/characters/october-gossamer/back.svg",
  42161. extra: 501/454,
  42162. bottom: 11/512
  42163. }
  42164. },
  42165. },
  42166. [
  42167. {
  42168. name: "Normal",
  42169. height: math.unit(5 + 2/12, "feet"),
  42170. default: true
  42171. },
  42172. ]
  42173. ))
  42174. characterMakers.push(() => makeCharacter(
  42175. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42176. {
  42177. front: {
  42178. height: math.unit(5, "feet"),
  42179. name: "Front",
  42180. image: {
  42181. source: "./media/characters/epiglottis/front.svg",
  42182. extra: 923/849,
  42183. bottom: 17/940
  42184. }
  42185. },
  42186. },
  42187. [
  42188. {
  42189. name: "Original Size",
  42190. height: math.unit(10, "inches")
  42191. },
  42192. {
  42193. name: "Human Size",
  42194. height: math.unit(5, "feet"),
  42195. default: true
  42196. },
  42197. {
  42198. name: "Big",
  42199. height: math.unit(25, "feet")
  42200. },
  42201. {
  42202. name: "Bigger",
  42203. height: math.unit(50, "feet")
  42204. },
  42205. {
  42206. name: "oh lawd",
  42207. height: math.unit(75, "feet")
  42208. },
  42209. ]
  42210. ))
  42211. characterMakers.push(() => makeCharacter(
  42212. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42213. {
  42214. front: {
  42215. height: math.unit(2 + 4/12, "feet"),
  42216. weight: math.unit(60, "lb"),
  42217. name: "Front",
  42218. image: {
  42219. source: "./media/characters/lerm/front.svg",
  42220. extra: 796/790,
  42221. bottom: 79/875
  42222. }
  42223. },
  42224. },
  42225. [
  42226. {
  42227. name: "Normal",
  42228. height: math.unit(2 + 4/12, "feet"),
  42229. default: true
  42230. },
  42231. ]
  42232. ))
  42233. characterMakers.push(() => makeCharacter(
  42234. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42235. {
  42236. front: {
  42237. height: math.unit(5.5, "feet"),
  42238. weight: math.unit(130, "lb"),
  42239. name: "Front",
  42240. image: {
  42241. source: "./media/characters/xena-nebadon/front.svg",
  42242. extra: 1828/1730,
  42243. bottom: 79/1907
  42244. }
  42245. },
  42246. },
  42247. [
  42248. {
  42249. name: "Tiny Puppy",
  42250. height: math.unit(3, "inches")
  42251. },
  42252. {
  42253. name: "Normal",
  42254. height: math.unit(5.5, "feet"),
  42255. default: true
  42256. },
  42257. {
  42258. name: "Lotta Lady",
  42259. height: math.unit(12, "feet")
  42260. },
  42261. {
  42262. name: "Pretty Big",
  42263. height: math.unit(100, "feet")
  42264. },
  42265. {
  42266. name: "Big",
  42267. height: math.unit(500, "feet")
  42268. },
  42269. {
  42270. name: "Skyscraper Toys",
  42271. height: math.unit(2500, "feet")
  42272. },
  42273. {
  42274. name: "Plane Catcher",
  42275. height: math.unit(8, "miles")
  42276. },
  42277. {
  42278. name: "Planet Toys",
  42279. height: math.unit(15, "earths")
  42280. },
  42281. {
  42282. name: "Stardust",
  42283. height: math.unit(0.25, "galaxies")
  42284. },
  42285. {
  42286. name: "Snacks",
  42287. height: math.unit(70, "universes")
  42288. },
  42289. ]
  42290. ))
  42291. characterMakers.push(() => makeCharacter(
  42292. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42293. {
  42294. front: {
  42295. height: math.unit(1.6, "meters"),
  42296. weight: math.unit(60, "kg"),
  42297. name: "Front",
  42298. image: {
  42299. source: "./media/characters/bounty/front.svg",
  42300. extra: 1426/1308,
  42301. bottom: 15/1441
  42302. }
  42303. },
  42304. back: {
  42305. height: math.unit(1.6, "meters"),
  42306. weight: math.unit(60, "kg"),
  42307. name: "Back",
  42308. image: {
  42309. source: "./media/characters/bounty/back.svg",
  42310. extra: 1417/1307,
  42311. bottom: 8/1425
  42312. }
  42313. },
  42314. },
  42315. [
  42316. {
  42317. name: "Normal",
  42318. height: math.unit(1.6, "meters"),
  42319. default: true
  42320. },
  42321. {
  42322. name: "Macro",
  42323. height: math.unit(300, "meters")
  42324. },
  42325. ]
  42326. ))
  42327. characterMakers.push(() => makeCharacter(
  42328. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42329. {
  42330. front: {
  42331. height: math.unit(2 + 8/12, "feet"),
  42332. weight: math.unit(15, "lb"),
  42333. name: "Front",
  42334. image: {
  42335. source: "./media/characters/mochi/front.svg",
  42336. extra: 1022/852,
  42337. bottom: 435/1457
  42338. }
  42339. },
  42340. back: {
  42341. height: math.unit(2 + 8/12, "feet"),
  42342. weight: math.unit(15, "lb"),
  42343. name: "Back",
  42344. image: {
  42345. source: "./media/characters/mochi/back.svg",
  42346. extra: 1335/1119,
  42347. bottom: 39/1374
  42348. }
  42349. },
  42350. bird: {
  42351. height: math.unit(2 + 8/12, "feet"),
  42352. weight: math.unit(15, "lb"),
  42353. name: "Bird",
  42354. image: {
  42355. source: "./media/characters/mochi/bird.svg",
  42356. extra: 1251/1113,
  42357. bottom: 178/1429
  42358. }
  42359. },
  42360. kaiju: {
  42361. height: math.unit(154, "feet"),
  42362. weight: math.unit(1e7, "lb"),
  42363. name: "Kaiju",
  42364. image: {
  42365. source: "./media/characters/mochi/kaiju.svg",
  42366. extra: 460/324,
  42367. bottom: 40/500
  42368. }
  42369. },
  42370. head: {
  42371. height: math.unit(1.21, "feet"),
  42372. name: "Head",
  42373. image: {
  42374. source: "./media/characters/mochi/head.svg"
  42375. }
  42376. },
  42377. alternateTail: {
  42378. height: math.unit(2 + 8/12, "feet"),
  42379. weight: math.unit(45, "lb"),
  42380. name: "Alternate Tail",
  42381. image: {
  42382. source: "./media/characters/mochi/alternate-tail.svg",
  42383. extra: 139/76,
  42384. bottom: 45/184
  42385. }
  42386. },
  42387. },
  42388. [
  42389. {
  42390. name: "Micro",
  42391. height: math.unit(2, "inches")
  42392. },
  42393. {
  42394. name: "Normal",
  42395. height: math.unit(2 + 8/12, "feet"),
  42396. default: true
  42397. },
  42398. {
  42399. name: "Macro",
  42400. height: math.unit(106, "feet")
  42401. },
  42402. ]
  42403. ))
  42404. characterMakers.push(() => makeCharacter(
  42405. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42406. {
  42407. front: {
  42408. height: math.unit(5.67, "feet"),
  42409. weight: math.unit(135, "lb"),
  42410. name: "Front",
  42411. image: {
  42412. source: "./media/characters/sarel/front.svg",
  42413. extra: 865/788,
  42414. bottom: 97/962
  42415. }
  42416. },
  42417. back: {
  42418. height: math.unit(5.67, "feet"),
  42419. weight: math.unit(135, "lb"),
  42420. name: "Back",
  42421. image: {
  42422. source: "./media/characters/sarel/back.svg",
  42423. extra: 857/777,
  42424. bottom: 32/889
  42425. }
  42426. },
  42427. chozoan: {
  42428. height: math.unit(5.67, "feet"),
  42429. weight: math.unit(135, "lb"),
  42430. name: "Chozoan",
  42431. image: {
  42432. source: "./media/characters/sarel/chozoan.svg",
  42433. extra: 865/788,
  42434. bottom: 97/962
  42435. }
  42436. },
  42437. current: {
  42438. height: math.unit(5.67, "feet"),
  42439. weight: math.unit(135, "lb"),
  42440. name: "Current",
  42441. image: {
  42442. source: "./media/characters/sarel/current.svg",
  42443. extra: 865/788,
  42444. bottom: 97/962
  42445. }
  42446. },
  42447. head: {
  42448. height: math.unit(1.77, "feet"),
  42449. name: "Head",
  42450. image: {
  42451. source: "./media/characters/sarel/head.svg"
  42452. }
  42453. },
  42454. claws: {
  42455. height: math.unit(1.8, "feet"),
  42456. name: "Claws",
  42457. image: {
  42458. source: "./media/characters/sarel/claws.svg"
  42459. }
  42460. },
  42461. clawsAlt: {
  42462. height: math.unit(1.8, "feet"),
  42463. name: "Claws-alt",
  42464. image: {
  42465. source: "./media/characters/sarel/claws-alt.svg"
  42466. }
  42467. },
  42468. },
  42469. [
  42470. {
  42471. name: "Normal",
  42472. height: math.unit(5.67, "feet"),
  42473. default: true
  42474. },
  42475. ]
  42476. ))
  42477. characterMakers.push(() => makeCharacter(
  42478. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42479. {
  42480. front: {
  42481. height: math.unit(5500, "feet"),
  42482. name: "Front",
  42483. image: {
  42484. source: "./media/characters/alyonia/front.svg",
  42485. extra: 1200/1135,
  42486. bottom: 29/1229
  42487. }
  42488. },
  42489. back: {
  42490. height: math.unit(5500, "feet"),
  42491. name: "Back",
  42492. image: {
  42493. source: "./media/characters/alyonia/back.svg",
  42494. extra: 1205/1138,
  42495. bottom: 10/1215
  42496. }
  42497. },
  42498. },
  42499. [
  42500. {
  42501. name: "Small",
  42502. height: math.unit(10, "feet")
  42503. },
  42504. {
  42505. name: "Macro",
  42506. height: math.unit(500, "feet")
  42507. },
  42508. {
  42509. name: "Mega Macro",
  42510. height: math.unit(5500, "feet"),
  42511. default: true
  42512. },
  42513. {
  42514. name: "Mega Macro+",
  42515. height: math.unit(500000, "feet")
  42516. },
  42517. {
  42518. name: "Giga Macro",
  42519. height: math.unit(3000, "miles")
  42520. },
  42521. {
  42522. name: "Tera Macro",
  42523. height: math.unit(2.8e6, "miles")
  42524. },
  42525. {
  42526. name: "Galactic",
  42527. height: math.unit(120000, "lightyears")
  42528. },
  42529. ]
  42530. ))
  42531. characterMakers.push(() => makeCharacter(
  42532. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42533. {
  42534. werewolf: {
  42535. height: math.unit(8, "feet"),
  42536. weight: math.unit(425, "lb"),
  42537. name: "Werewolf",
  42538. image: {
  42539. source: "./media/characters/autumn/werewolf.svg",
  42540. extra: 2154/2031,
  42541. bottom: 160/2314
  42542. }
  42543. },
  42544. human: {
  42545. height: math.unit(5 + 8/12, "feet"),
  42546. weight: math.unit(150, "lb"),
  42547. name: "Human",
  42548. image: {
  42549. source: "./media/characters/autumn/human.svg",
  42550. extra: 1200/1149,
  42551. bottom: 30/1230
  42552. }
  42553. },
  42554. },
  42555. [
  42556. {
  42557. name: "Normal",
  42558. height: math.unit(8, "feet"),
  42559. default: true
  42560. },
  42561. ]
  42562. ))
  42563. characterMakers.push(() => makeCharacter(
  42564. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42565. {
  42566. front: {
  42567. height: math.unit(8 + 5/12, "feet"),
  42568. weight: math.unit(825, "lb"),
  42569. name: "Front",
  42570. image: {
  42571. source: "./media/characters/cobalt-charizard/front.svg",
  42572. extra: 1268/1155,
  42573. bottom: 122/1390
  42574. }
  42575. },
  42576. side: {
  42577. height: math.unit(8 + 5/12, "feet"),
  42578. weight: math.unit(825, "lb"),
  42579. name: "Side",
  42580. image: {
  42581. source: "./media/characters/cobalt-charizard/side.svg",
  42582. extra: 1348/1257,
  42583. bottom: 58/1406
  42584. }
  42585. },
  42586. gMax: {
  42587. height: math.unit(134 + 11/12, "feet"),
  42588. name: "G-Max",
  42589. image: {
  42590. source: "./media/characters/cobalt-charizard/g-max.svg",
  42591. extra: 1835/1541,
  42592. bottom: 151/1986
  42593. }
  42594. },
  42595. },
  42596. [
  42597. {
  42598. name: "Normal",
  42599. height: math.unit(8 + 5/12, "feet"),
  42600. default: true
  42601. },
  42602. ]
  42603. ))
  42604. characterMakers.push(() => makeCharacter(
  42605. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42606. {
  42607. front: {
  42608. height: math.unit(6 + 3/12, "feet"),
  42609. weight: math.unit(210, "lb"),
  42610. name: "Front",
  42611. image: {
  42612. source: "./media/characters/stella/front.svg",
  42613. extra: 3549/3335,
  42614. bottom: 51/3600
  42615. }
  42616. },
  42617. },
  42618. [
  42619. {
  42620. name: "Normal",
  42621. height: math.unit(6 + 3/12, "feet"),
  42622. default: true
  42623. },
  42624. ]
  42625. ))
  42626. characterMakers.push(() => makeCharacter(
  42627. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42628. {
  42629. front: {
  42630. height: math.unit(5, "feet"),
  42631. weight: math.unit(90, "lb"),
  42632. name: "Front",
  42633. image: {
  42634. source: "./media/characters/riley-bishop/front.svg",
  42635. extra: 1450/1428,
  42636. bottom: 152/1602
  42637. }
  42638. },
  42639. },
  42640. [
  42641. {
  42642. name: "Normal",
  42643. height: math.unit(5, "feet"),
  42644. default: true
  42645. },
  42646. ]
  42647. ))
  42648. characterMakers.push(() => makeCharacter(
  42649. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42650. {
  42651. side: {
  42652. height: math.unit(8 + 2/12, "feet"),
  42653. weight: math.unit(500, "kg"),
  42654. name: "Side",
  42655. image: {
  42656. source: "./media/characters/theo-arcanine/side.svg",
  42657. extra: 1342/1074,
  42658. bottom: 111/1453
  42659. }
  42660. },
  42661. },
  42662. [
  42663. {
  42664. name: "Normal",
  42665. height: math.unit(8 + 2/12, "feet"),
  42666. default: true
  42667. },
  42668. ]
  42669. ))
  42670. characterMakers.push(() => makeCharacter(
  42671. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42672. {
  42673. front: {
  42674. height: math.unit(4, "feet"),
  42675. name: "Front",
  42676. image: {
  42677. source: "./media/characters/kali/front.svg",
  42678. extra: 1921/1357,
  42679. bottom: 70/1991
  42680. }
  42681. },
  42682. },
  42683. [
  42684. {
  42685. name: "Normal",
  42686. height: math.unit(4, "feet"),
  42687. default: true
  42688. },
  42689. {
  42690. name: "Macro",
  42691. height: math.unit(32, "meters")
  42692. },
  42693. {
  42694. name: "Macro+",
  42695. height: math.unit(150, "meters")
  42696. },
  42697. {
  42698. name: "Megamacro",
  42699. height: math.unit(7500, "meters")
  42700. },
  42701. {
  42702. name: "Megamacro+",
  42703. height: math.unit(80, "kilometers")
  42704. },
  42705. ]
  42706. ))
  42707. characterMakers.push(() => makeCharacter(
  42708. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42709. {
  42710. side: {
  42711. height: math.unit(5 + 11/12, "feet"),
  42712. weight: math.unit(236, "lb"),
  42713. name: "Side",
  42714. image: {
  42715. source: "./media/characters/gapp/side.svg",
  42716. extra: 775/340,
  42717. bottom: 58/833
  42718. }
  42719. },
  42720. mouth: {
  42721. height: math.unit(2.98, "feet"),
  42722. name: "Mouth",
  42723. image: {
  42724. source: "./media/characters/gapp/mouth.svg"
  42725. }
  42726. },
  42727. },
  42728. [
  42729. {
  42730. name: "Normal",
  42731. height: math.unit(5 + 1/12, "feet"),
  42732. default: true
  42733. },
  42734. ]
  42735. ))
  42736. characterMakers.push(() => makeCharacter(
  42737. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42738. {
  42739. front: {
  42740. height: math.unit(6, "feet"),
  42741. name: "Front",
  42742. image: {
  42743. source: "./media/characters/persephone/front.svg",
  42744. extra: 1895/1717,
  42745. bottom: 96/1991
  42746. }
  42747. },
  42748. back: {
  42749. height: math.unit(6, "feet"),
  42750. name: "Back",
  42751. image: {
  42752. source: "./media/characters/persephone/back.svg",
  42753. extra: 1868/1679,
  42754. bottom: 26/1894
  42755. }
  42756. },
  42757. casual: {
  42758. height: math.unit(6, "feet"),
  42759. name: "Casual",
  42760. image: {
  42761. source: "./media/characters/persephone/casual.svg",
  42762. extra: 1713/1541,
  42763. bottom: 76/1789
  42764. }
  42765. },
  42766. },
  42767. [
  42768. {
  42769. name: "Human Size",
  42770. height: math.unit(6, "feet")
  42771. },
  42772. {
  42773. name: "Big Steppy",
  42774. height: math.unit(600, "meters"),
  42775. default: true
  42776. },
  42777. {
  42778. name: "Galaxy Brain",
  42779. height: math.unit(1, "zettameter")
  42780. },
  42781. ]
  42782. ))
  42783. characterMakers.push(() => makeCharacter(
  42784. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42785. {
  42786. front: {
  42787. height: math.unit(1.85, "meters"),
  42788. name: "Front",
  42789. image: {
  42790. source: "./media/characters/riley-foxthing/front.svg",
  42791. extra: 1495/1354,
  42792. bottom: 122/1617
  42793. }
  42794. },
  42795. frontAlt: {
  42796. height: math.unit(1.85, "meters"),
  42797. name: "Front (Alt)",
  42798. image: {
  42799. source: "./media/characters/riley-foxthing/front-alt.svg",
  42800. extra: 1572/1389,
  42801. bottom: 116/1688
  42802. }
  42803. },
  42804. },
  42805. [
  42806. {
  42807. name: "Normal Sized",
  42808. height: math.unit(1.85, "meters"),
  42809. default: true
  42810. },
  42811. {
  42812. name: "Quite Sizable",
  42813. height: math.unit(5, "meters")
  42814. },
  42815. {
  42816. name: "Rather Large",
  42817. height: math.unit(20, "meters")
  42818. },
  42819. {
  42820. name: "Macro",
  42821. height: math.unit(450, "meters")
  42822. },
  42823. {
  42824. name: "Giga",
  42825. height: math.unit(5, "km")
  42826. },
  42827. ]
  42828. ))
  42829. characterMakers.push(() => makeCharacter(
  42830. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42831. {
  42832. front: {
  42833. height: math.unit(6, "feet"),
  42834. weight: math.unit(200, "lb"),
  42835. name: "Front",
  42836. image: {
  42837. source: "./media/characters/blizzard/front.svg",
  42838. extra: 1136/990,
  42839. bottom: 136/1272
  42840. }
  42841. },
  42842. back: {
  42843. height: math.unit(6, "feet"),
  42844. weight: math.unit(200, "lb"),
  42845. name: "Back",
  42846. image: {
  42847. source: "./media/characters/blizzard/back.svg",
  42848. extra: 1175/1034,
  42849. bottom: 97/1272
  42850. }
  42851. },
  42852. sitting: {
  42853. height: math.unit(3.725, "feet"),
  42854. weight: math.unit(200, "lb"),
  42855. name: "Sitting",
  42856. image: {
  42857. source: "./media/characters/blizzard/sitting.svg",
  42858. extra: 581/485,
  42859. bottom: 90/671
  42860. }
  42861. },
  42862. frontWizard: {
  42863. height: math.unit(7.9, "feet"),
  42864. weight: math.unit(200, "lb"),
  42865. name: "Front (Wizard)",
  42866. image: {
  42867. source: "./media/characters/blizzard/front-wizard.svg"
  42868. }
  42869. },
  42870. backWizard: {
  42871. height: math.unit(7.9, "feet"),
  42872. weight: math.unit(200, "lb"),
  42873. name: "Back (Wizard)",
  42874. image: {
  42875. source: "./media/characters/blizzard/back-wizard.svg"
  42876. }
  42877. },
  42878. frontNsfw: {
  42879. height: math.unit(6, "feet"),
  42880. weight: math.unit(200, "lb"),
  42881. name: "Front (NSFW)",
  42882. image: {
  42883. source: "./media/characters/blizzard/front-nsfw.svg",
  42884. extra: 1136/990,
  42885. bottom: 136/1272
  42886. }
  42887. },
  42888. backNsfw: {
  42889. height: math.unit(6, "feet"),
  42890. weight: math.unit(200, "lb"),
  42891. name: "Back (NSFW)",
  42892. image: {
  42893. source: "./media/characters/blizzard/back-nsfw.svg",
  42894. extra: 1175/1034,
  42895. bottom: 97/1272
  42896. }
  42897. },
  42898. sittingNsfw: {
  42899. height: math.unit(3.725, "feet"),
  42900. weight: math.unit(200, "lb"),
  42901. name: "Sitting (NSFW)",
  42902. image: {
  42903. source: "./media/characters/blizzard/sitting-nsfw.svg",
  42904. extra: 581/485,
  42905. bottom: 90/671
  42906. }
  42907. },
  42908. wizardFrontNsfw: {
  42909. height: math.unit(7.9, "feet"),
  42910. weight: math.unit(200, "lb"),
  42911. name: "Wizard (Front, NSFW)",
  42912. image: {
  42913. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  42914. }
  42915. },
  42916. },
  42917. [
  42918. {
  42919. name: "Normal",
  42920. height: math.unit(6, "feet"),
  42921. default: true
  42922. },
  42923. ]
  42924. ))
  42925. characterMakers.push(() => makeCharacter(
  42926. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  42927. {
  42928. front: {
  42929. height: math.unit(5 + 2/12, "feet"),
  42930. name: "Front",
  42931. image: {
  42932. source: "./media/characters/lumi/front.svg",
  42933. extra: 1328/1268,
  42934. bottom: 103/1431
  42935. }
  42936. },
  42937. back: {
  42938. height: math.unit(5 + 2/12, "feet"),
  42939. name: "Back",
  42940. image: {
  42941. source: "./media/characters/lumi/back.svg",
  42942. extra: 1381/1327,
  42943. bottom: 43/1424
  42944. }
  42945. },
  42946. },
  42947. [
  42948. {
  42949. name: "Normal",
  42950. height: math.unit(5 + 2/12, "feet"),
  42951. default: true
  42952. },
  42953. ]
  42954. ))
  42955. characterMakers.push(() => makeCharacter(
  42956. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  42957. {
  42958. front: {
  42959. height: math.unit(5 + 9/12, "feet"),
  42960. name: "Front",
  42961. image: {
  42962. source: "./media/characters/aliya-cotton/front.svg",
  42963. extra: 577/564,
  42964. bottom: 29/606
  42965. }
  42966. },
  42967. },
  42968. [
  42969. {
  42970. name: "Normal",
  42971. height: math.unit(5 + 9/12, "feet"),
  42972. default: true
  42973. },
  42974. ]
  42975. ))
  42976. characterMakers.push(() => makeCharacter(
  42977. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  42978. {
  42979. front: {
  42980. height: math.unit(2.7, "meters"),
  42981. weight: math.unit(25000, "lb"),
  42982. name: "Front",
  42983. image: {
  42984. source: "./media/characters/noah-luxray/front.svg",
  42985. extra: 1644/825,
  42986. bottom: 339/1983
  42987. }
  42988. },
  42989. side: {
  42990. height: math.unit(2.97, "meters"),
  42991. weight: math.unit(25000, "lb"),
  42992. name: "Side",
  42993. image: {
  42994. source: "./media/characters/noah-luxray/side.svg",
  42995. extra: 1319/650,
  42996. bottom: 163/1482
  42997. }
  42998. },
  42999. dick: {
  43000. height: math.unit(7.4, "feet"),
  43001. weight: math.unit(2500, "lb"),
  43002. name: "Dick",
  43003. image: {
  43004. source: "./media/characters/noah-luxray/dick.svg"
  43005. }
  43006. },
  43007. dickAlt: {
  43008. height: math.unit(10.83, "feet"),
  43009. weight: math.unit(2500, "lb"),
  43010. name: "Dick-alt",
  43011. image: {
  43012. source: "./media/characters/noah-luxray/dick-alt.svg"
  43013. }
  43014. },
  43015. },
  43016. [
  43017. {
  43018. name: "BIG",
  43019. height: math.unit(2.7, "meters"),
  43020. default: true
  43021. },
  43022. ]
  43023. ))
  43024. characterMakers.push(() => makeCharacter(
  43025. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43026. {
  43027. standing: {
  43028. height: math.unit(183, "cm"),
  43029. weight: math.unit(68, "kg"),
  43030. name: "Standing",
  43031. image: {
  43032. source: "./media/characters/arion/standing.svg",
  43033. extra: 1869/1807,
  43034. bottom: 93/1962
  43035. }
  43036. },
  43037. reclining: {
  43038. height: math.unit(70.5, "cm"),
  43039. weight: math.unit(68, "lb"),
  43040. name: "Reclining",
  43041. image: {
  43042. source: "./media/characters/arion/reclining.svg",
  43043. extra: 937/870,
  43044. bottom: 63/1000
  43045. }
  43046. },
  43047. },
  43048. [
  43049. {
  43050. name: "Colossus Size, Low",
  43051. height: math.unit(33, "meters"),
  43052. default: true
  43053. },
  43054. {
  43055. name: "Colossus Size, Mid",
  43056. height: math.unit(52, "meters")
  43057. },
  43058. {
  43059. name: "Colossus Size, High",
  43060. height: math.unit(60, "meters")
  43061. },
  43062. {
  43063. name: "Titan Size, Low",
  43064. height: math.unit(91, "meters"),
  43065. },
  43066. {
  43067. name: "Titan Size, Mid",
  43068. height: math.unit(122, "meters")
  43069. },
  43070. {
  43071. name: "Titan Size, High",
  43072. height: math.unit(162, "meters")
  43073. },
  43074. ]
  43075. ))
  43076. characterMakers.push(() => makeCharacter(
  43077. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43078. {
  43079. front: {
  43080. height: math.unit(53, "meters"),
  43081. name: "Front",
  43082. image: {
  43083. source: "./media/characters/stellar-marbey/front.svg",
  43084. extra: 1913/1805,
  43085. bottom: 92/2005
  43086. }
  43087. },
  43088. back: {
  43089. height: math.unit(53, "meters"),
  43090. name: "Back",
  43091. image: {
  43092. source: "./media/characters/stellar-marbey/back.svg",
  43093. extra: 1960/1851,
  43094. bottom: 28/1988
  43095. }
  43096. },
  43097. mouth: {
  43098. height: math.unit(3.5, "meters"),
  43099. name: "Mouth",
  43100. image: {
  43101. source: "./media/characters/stellar-marbey/mouth.svg"
  43102. }
  43103. },
  43104. },
  43105. [
  43106. {
  43107. name: "Macro",
  43108. height: math.unit(53, "meters"),
  43109. default: true
  43110. },
  43111. ]
  43112. ))
  43113. characterMakers.push(() => makeCharacter(
  43114. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43115. {
  43116. front: {
  43117. height: math.unit(8 + 1/12, "feet"),
  43118. weight: math.unit(233, "lb"),
  43119. name: "Front",
  43120. image: {
  43121. source: "./media/characters/matsu/front.svg",
  43122. extra: 832/772,
  43123. bottom: 40/872
  43124. }
  43125. },
  43126. back: {
  43127. height: math.unit(8 + 1/12, "feet"),
  43128. weight: math.unit(233, "lb"),
  43129. name: "Back",
  43130. image: {
  43131. source: "./media/characters/matsu/back.svg",
  43132. extra: 839/780,
  43133. bottom: 47/886
  43134. }
  43135. },
  43136. },
  43137. [
  43138. {
  43139. name: "Normal",
  43140. height: math.unit(8 + 1/12, "feet"),
  43141. default: true
  43142. },
  43143. ]
  43144. ))
  43145. characterMakers.push(() => makeCharacter(
  43146. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43147. {
  43148. front: {
  43149. height: math.unit(4, "feet"),
  43150. weight: math.unit(148, "lb"),
  43151. name: "Front",
  43152. image: {
  43153. source: "./media/characters/thiz/front.svg",
  43154. extra: 1913/1748,
  43155. bottom: 62/1975
  43156. }
  43157. },
  43158. },
  43159. [
  43160. {
  43161. name: "Normal",
  43162. height: math.unit(4, "feet"),
  43163. default: true
  43164. },
  43165. ]
  43166. ))
  43167. characterMakers.push(() => makeCharacter(
  43168. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43169. {
  43170. front: {
  43171. height: math.unit(7 + 6/12, "feet"),
  43172. weight: math.unit(267, "lb"),
  43173. name: "Front",
  43174. image: {
  43175. source: "./media/characters/marcel/front.svg",
  43176. extra: 1221/1096,
  43177. bottom: 76/1297
  43178. }
  43179. },
  43180. },
  43181. [
  43182. {
  43183. name: "Normal",
  43184. height: math.unit(7 + 6/12, "feet"),
  43185. default: true
  43186. },
  43187. ]
  43188. ))
  43189. characterMakers.push(() => makeCharacter(
  43190. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43191. {
  43192. side: {
  43193. height: math.unit(42, "meters"),
  43194. name: "Side",
  43195. image: {
  43196. source: "./media/characters/flake/side.svg",
  43197. extra: 1525/1306,
  43198. bottom: 209/1734
  43199. }
  43200. },
  43201. },
  43202. [
  43203. {
  43204. name: "Normal",
  43205. height: math.unit(42, "meters"),
  43206. default: true
  43207. },
  43208. ]
  43209. ))
  43210. characterMakers.push(() => makeCharacter(
  43211. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43212. {
  43213. dressed: {
  43214. height: math.unit(6 + 4/12, "feet"),
  43215. weight: math.unit(520, "lb"),
  43216. name: "Dressed",
  43217. image: {
  43218. source: "./media/characters/someonne/dressed.svg",
  43219. extra: 1020/1010,
  43220. bottom: 178/1198
  43221. }
  43222. },
  43223. undressed: {
  43224. height: math.unit(6 + 4/12, "feet"),
  43225. weight: math.unit(520, "lb"),
  43226. name: "Undressed",
  43227. image: {
  43228. source: "./media/characters/someonne/undressed.svg",
  43229. extra: 1019/1014,
  43230. bottom: 169/1188
  43231. }
  43232. },
  43233. },
  43234. [
  43235. {
  43236. name: "Normal",
  43237. height: math.unit(6 + 4/12, "feet"),
  43238. default: true
  43239. },
  43240. ]
  43241. ))
  43242. characterMakers.push(() => makeCharacter(
  43243. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43244. {
  43245. front: {
  43246. height: math.unit(3, "feet"),
  43247. weight: math.unit(30, "lb"),
  43248. name: "Front",
  43249. image: {
  43250. source: "./media/characters/till/front.svg",
  43251. extra: 892/823,
  43252. bottom: 55/947
  43253. }
  43254. },
  43255. },
  43256. [
  43257. {
  43258. name: "Normal",
  43259. height: math.unit(3, "feet"),
  43260. default: true
  43261. },
  43262. ]
  43263. ))
  43264. characterMakers.push(() => makeCharacter(
  43265. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43266. {
  43267. front: {
  43268. height: math.unit(9 + 8/12, "feet"),
  43269. weight: math.unit(800, "lb"),
  43270. name: "Front",
  43271. image: {
  43272. source: "./media/characters/sydney-heki/front.svg",
  43273. extra: 1360/1300,
  43274. bottom: 22/1382
  43275. }
  43276. },
  43277. back: {
  43278. height: math.unit(9 + 8/12, "feet"),
  43279. weight: math.unit(800, "lb"),
  43280. name: "Back",
  43281. image: {
  43282. source: "./media/characters/sydney-heki/back.svg",
  43283. extra: 1356/1293,
  43284. bottom: 12/1368
  43285. }
  43286. },
  43287. frontDressed: {
  43288. height: math.unit(9 + 8/12, "feet"),
  43289. weight: math.unit(800, "lb"),
  43290. name: "Front-dressed",
  43291. image: {
  43292. source: "./media/characters/sydney-heki/front-dressed.svg",
  43293. extra: 1360/1300,
  43294. bottom: 22/1382
  43295. }
  43296. },
  43297. },
  43298. [
  43299. {
  43300. name: "Normal",
  43301. height: math.unit(9 + 8/12, "feet"),
  43302. default: true
  43303. },
  43304. {
  43305. name: "Macro",
  43306. height: math.unit(500, "feet")
  43307. },
  43308. {
  43309. name: "Megamacro",
  43310. height: math.unit(3.6, "miles")
  43311. },
  43312. ]
  43313. ))
  43314. characterMakers.push(() => makeCharacter(
  43315. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43316. {
  43317. front: {
  43318. height: math.unit(200, "cm"),
  43319. weight: math.unit(250, "lb"),
  43320. name: "Front",
  43321. image: {
  43322. source: "./media/characters/fowler-karlsson/front.svg",
  43323. extra: 897/845,
  43324. bottom: 123/1020
  43325. }
  43326. },
  43327. back: {
  43328. height: math.unit(200, "cm"),
  43329. weight: math.unit(250, "lb"),
  43330. name: "Back",
  43331. image: {
  43332. source: "./media/characters/fowler-karlsson/back.svg",
  43333. extra: 999/944,
  43334. bottom: 26/1025
  43335. }
  43336. },
  43337. dick: {
  43338. height: math.unit(1.92, "feet"),
  43339. weight: math.unit(150, "lb"),
  43340. name: "Dick",
  43341. image: {
  43342. source: "./media/characters/fowler-karlsson/dick.svg"
  43343. }
  43344. },
  43345. },
  43346. [
  43347. {
  43348. name: "Normal",
  43349. height: math.unit(200, "cm"),
  43350. default: true
  43351. },
  43352. {
  43353. name: "Smaller Macro",
  43354. height: math.unit(90, "m")
  43355. },
  43356. {
  43357. name: "Macro",
  43358. height: math.unit(150, "m")
  43359. },
  43360. {
  43361. name: "Bigger Macro",
  43362. height: math.unit(300, "m")
  43363. },
  43364. ]
  43365. ))
  43366. characterMakers.push(() => makeCharacter(
  43367. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43368. {
  43369. side: {
  43370. height: math.unit(8 + 2/12, "feet"),
  43371. weight: math.unit(1, "tonne"),
  43372. name: "Side",
  43373. image: {
  43374. source: "./media/characters/rylide/side.svg",
  43375. extra: 1318/1034,
  43376. bottom: 106/1424
  43377. }
  43378. },
  43379. sitting: {
  43380. height: math.unit(303, "cm"),
  43381. weight: math.unit(1, "tonne"),
  43382. name: "Sitting",
  43383. image: {
  43384. source: "./media/characters/rylide/sitting.svg",
  43385. extra: 1303/1103,
  43386. bottom: 36/1339
  43387. }
  43388. },
  43389. },
  43390. [
  43391. {
  43392. name: "Normal",
  43393. height: math.unit(8 + 2/12, "feet"),
  43394. default: true
  43395. },
  43396. ]
  43397. ))
  43398. characterMakers.push(() => makeCharacter(
  43399. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43400. {
  43401. front: {
  43402. height: math.unit(5 + 10/12, "feet"),
  43403. weight: math.unit(160, "lb"),
  43404. name: "Front",
  43405. image: {
  43406. source: "./media/characters/pudask/front.svg",
  43407. extra: 1616/1590,
  43408. bottom: 161/1777
  43409. }
  43410. },
  43411. },
  43412. [
  43413. {
  43414. name: "Ferret Height",
  43415. height: math.unit(2 + 5/12, "feet")
  43416. },
  43417. {
  43418. name: "Canon Height",
  43419. height: math.unit(5 + 10/12, "feet"),
  43420. default: true
  43421. },
  43422. ]
  43423. ))
  43424. characterMakers.push(() => makeCharacter(
  43425. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43426. {
  43427. front: {
  43428. height: math.unit(3 + 6/12, "feet"),
  43429. weight: math.unit(60, "lb"),
  43430. name: "Front",
  43431. image: {
  43432. source: "./media/characters/ramita/front.svg",
  43433. extra: 1402/1232,
  43434. bottom: 62/1464
  43435. }
  43436. },
  43437. dressed: {
  43438. height: math.unit(3 + 6/12, "feet"),
  43439. weight: math.unit(60, "lb"),
  43440. name: "Dressed",
  43441. image: {
  43442. source: "./media/characters/ramita/dressed.svg",
  43443. extra: 1534/1249,
  43444. bottom: 50/1584
  43445. }
  43446. },
  43447. },
  43448. [
  43449. {
  43450. name: "Normal",
  43451. height: math.unit(3 + 6/12, "feet"),
  43452. default: true
  43453. },
  43454. ]
  43455. ))
  43456. characterMakers.push(() => makeCharacter(
  43457. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43458. {
  43459. front: {
  43460. height: math.unit(8, "feet"),
  43461. name: "Front",
  43462. image: {
  43463. source: "./media/characters/ark/front.svg",
  43464. extra: 772/693,
  43465. bottom: 45/817
  43466. }
  43467. },
  43468. },
  43469. [
  43470. {
  43471. name: "Normal",
  43472. height: math.unit(8, "feet"),
  43473. default: true
  43474. },
  43475. ]
  43476. ))
  43477. characterMakers.push(() => makeCharacter(
  43478. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43479. {
  43480. front: {
  43481. height: math.unit(6, "feet"),
  43482. weight: math.unit(250, "lb"),
  43483. volume: math.unit(5/8, "gallons"),
  43484. name: "Front",
  43485. image: {
  43486. source: "./media/characters/ludwig-horn/front.svg",
  43487. extra: 1782/1635,
  43488. bottom: 96/1878
  43489. }
  43490. },
  43491. back: {
  43492. height: math.unit(6, "feet"),
  43493. weight: math.unit(250, "lb"),
  43494. volume: math.unit(5/8, "gallons"),
  43495. name: "Back",
  43496. image: {
  43497. source: "./media/characters/ludwig-horn/back.svg",
  43498. extra: 1874/1729,
  43499. bottom: 27/1901
  43500. }
  43501. },
  43502. dick: {
  43503. height: math.unit(1.05, "feet"),
  43504. weight: math.unit(15, "lb"),
  43505. volume: math.unit(5/8, "gallons"),
  43506. name: "Dick",
  43507. image: {
  43508. source: "./media/characters/ludwig-horn/dick.svg"
  43509. }
  43510. },
  43511. },
  43512. [
  43513. {
  43514. name: "Small",
  43515. height: math.unit(6, "feet")
  43516. },
  43517. {
  43518. name: "Typical",
  43519. height: math.unit(12, "feet"),
  43520. default: true
  43521. },
  43522. {
  43523. name: "Building",
  43524. height: math.unit(80, "feet")
  43525. },
  43526. {
  43527. name: "Town",
  43528. height: math.unit(800, "feet")
  43529. },
  43530. {
  43531. name: "Kingdom",
  43532. height: math.unit(80000, "feet")
  43533. },
  43534. {
  43535. name: "Planet",
  43536. height: math.unit(8000000, "feet")
  43537. },
  43538. {
  43539. name: "Universe",
  43540. height: math.unit(8000000000, "feet")
  43541. },
  43542. {
  43543. name: "Transcended",
  43544. height: math.unit(8e27, "feet")
  43545. },
  43546. ]
  43547. ))
  43548. characterMakers.push(() => makeCharacter(
  43549. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43550. {
  43551. front: {
  43552. height: math.unit(5, "feet"),
  43553. weight: math.unit(50, "kg"),
  43554. name: "Front",
  43555. image: {
  43556. source: "./media/characters/biot-avery/front.svg",
  43557. extra: 1295/1232,
  43558. bottom: 86/1381
  43559. }
  43560. },
  43561. },
  43562. [
  43563. {
  43564. name: "Normal",
  43565. height: math.unit(5, "feet"),
  43566. default: true
  43567. },
  43568. ]
  43569. ))
  43570. characterMakers.push(() => makeCharacter(
  43571. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43572. {
  43573. front: {
  43574. height: math.unit(6, "feet"),
  43575. name: "Front",
  43576. image: {
  43577. source: "./media/characters/kitsune-kiro/front.svg",
  43578. extra: 1270/1158,
  43579. bottom: 42/1312
  43580. }
  43581. },
  43582. frontAlt: {
  43583. height: math.unit(6, "feet"),
  43584. name: "Front-alt",
  43585. image: {
  43586. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43587. extra: 1130/1081,
  43588. bottom: 36/1166
  43589. }
  43590. },
  43591. },
  43592. [
  43593. {
  43594. name: "Smol",
  43595. height: math.unit(3, "feet")
  43596. },
  43597. {
  43598. name: "Normal",
  43599. height: math.unit(6, "feet"),
  43600. default: true
  43601. },
  43602. ]
  43603. ))
  43604. characterMakers.push(() => makeCharacter(
  43605. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43606. {
  43607. front: {
  43608. height: math.unit(6, "feet"),
  43609. weight: math.unit(125, "lb"),
  43610. name: "Front",
  43611. image: {
  43612. source: "./media/characters/jack-thatcher/front.svg",
  43613. extra: 1474/1370,
  43614. bottom: 26/1500
  43615. }
  43616. },
  43617. back: {
  43618. height: math.unit(6, "feet"),
  43619. weight: math.unit(125, "lb"),
  43620. name: "Back",
  43621. image: {
  43622. source: "./media/characters/jack-thatcher/back.svg",
  43623. extra: 1489/1384,
  43624. bottom: 18/1507
  43625. }
  43626. },
  43627. },
  43628. [
  43629. {
  43630. name: "Normal",
  43631. height: math.unit(6, "feet"),
  43632. default: true
  43633. },
  43634. {
  43635. name: "Macro",
  43636. height: math.unit(75, "feet")
  43637. },
  43638. {
  43639. name: "Macro-er",
  43640. height: math.unit(250, "feet")
  43641. },
  43642. ]
  43643. ))
  43644. characterMakers.push(() => makeCharacter(
  43645. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43646. {
  43647. front: {
  43648. height: math.unit(7, "feet"),
  43649. weight: math.unit(110, "kg"),
  43650. name: "Front",
  43651. image: {
  43652. source: "./media/characters/max-hyper/front.svg",
  43653. extra: 1969/1881,
  43654. bottom: 49/2018
  43655. }
  43656. },
  43657. },
  43658. [
  43659. {
  43660. name: "Normal",
  43661. height: math.unit(7, "feet"),
  43662. default: true
  43663. },
  43664. ]
  43665. ))
  43666. characterMakers.push(() => makeCharacter(
  43667. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43668. {
  43669. front: {
  43670. height: math.unit(5 + 5/12, "feet"),
  43671. weight: math.unit(160, "lb"),
  43672. name: "Front",
  43673. image: {
  43674. source: "./media/characters/spook/front.svg",
  43675. extra: 794/791,
  43676. bottom: 54/848
  43677. }
  43678. },
  43679. back: {
  43680. height: math.unit(5 + 5/12, "feet"),
  43681. weight: math.unit(160, "lb"),
  43682. name: "Back",
  43683. image: {
  43684. source: "./media/characters/spook/back.svg",
  43685. extra: 812/798,
  43686. bottom: 32/844
  43687. }
  43688. },
  43689. },
  43690. [
  43691. {
  43692. name: "Normal",
  43693. height: math.unit(5 + 5/12, "feet"),
  43694. default: true
  43695. },
  43696. ]
  43697. ))
  43698. characterMakers.push(() => makeCharacter(
  43699. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43700. {
  43701. front: {
  43702. height: math.unit(18, "feet"),
  43703. name: "Front",
  43704. image: {
  43705. source: "./media/characters/xeaduulix/front.svg",
  43706. extra: 1380/1166,
  43707. bottom: 110/1490
  43708. }
  43709. },
  43710. back: {
  43711. height: math.unit(18, "feet"),
  43712. name: "Back",
  43713. image: {
  43714. source: "./media/characters/xeaduulix/back.svg",
  43715. extra: 1592/1170,
  43716. bottom: 128/1720
  43717. }
  43718. },
  43719. frontNsfw: {
  43720. height: math.unit(18, "feet"),
  43721. name: "Front (NSFW)",
  43722. image: {
  43723. source: "./media/characters/xeaduulix/front-nsfw.svg",
  43724. extra: 1380/1166,
  43725. bottom: 110/1490
  43726. }
  43727. },
  43728. backNsfw: {
  43729. height: math.unit(18, "feet"),
  43730. name: "Back (NSFW)",
  43731. image: {
  43732. source: "./media/characters/xeaduulix/back-nsfw.svg",
  43733. extra: 1592/1170,
  43734. bottom: 128/1720
  43735. }
  43736. },
  43737. },
  43738. [
  43739. {
  43740. name: "Normal",
  43741. height: math.unit(18, "feet"),
  43742. default: true
  43743. },
  43744. ]
  43745. ))
  43746. characterMakers.push(() => makeCharacter(
  43747. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  43748. {
  43749. spreadWings: {
  43750. height: math.unit(20, "feet"),
  43751. name: "Spread Wings",
  43752. image: {
  43753. source: "./media/characters/fledge/spread-wings.svg",
  43754. extra: 693/635,
  43755. bottom: 26/719
  43756. }
  43757. },
  43758. front: {
  43759. height: math.unit(20, "feet"),
  43760. name: "Front",
  43761. image: {
  43762. source: "./media/characters/fledge/front.svg",
  43763. extra: 684/637,
  43764. bottom: 18/702
  43765. }
  43766. },
  43767. frontAlt: {
  43768. height: math.unit(20, "feet"),
  43769. name: "Front (Alt)",
  43770. image: {
  43771. source: "./media/characters/fledge/front-alt.svg",
  43772. extra: 708/664,
  43773. bottom: 13/721
  43774. }
  43775. },
  43776. back: {
  43777. height: math.unit(20, "feet"),
  43778. name: "Back",
  43779. image: {
  43780. source: "./media/characters/fledge/back.svg",
  43781. extra: 718/634,
  43782. bottom: 22/740
  43783. }
  43784. },
  43785. head: {
  43786. height: math.unit(5.55, "feet"),
  43787. name: "Head",
  43788. image: {
  43789. source: "./media/characters/fledge/head.svg"
  43790. }
  43791. },
  43792. headAlt: {
  43793. height: math.unit(5.1, "feet"),
  43794. name: "Head (Alt)",
  43795. image: {
  43796. source: "./media/characters/fledge/head-alt.svg"
  43797. }
  43798. },
  43799. },
  43800. [
  43801. {
  43802. name: "Small",
  43803. height: math.unit(6 + 2/12, "feet")
  43804. },
  43805. {
  43806. name: "Big",
  43807. height: math.unit(20, "feet"),
  43808. default: true
  43809. },
  43810. {
  43811. name: "Giant",
  43812. height: math.unit(100, "feet")
  43813. },
  43814. {
  43815. name: "Macro",
  43816. height: math.unit(200, "feet")
  43817. },
  43818. ]
  43819. ))
  43820. characterMakers.push(() => makeCharacter(
  43821. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  43822. {
  43823. front: {
  43824. height: math.unit(1, "meter"),
  43825. name: "Front",
  43826. image: {
  43827. source: "./media/characters/atlas-morenai/front.svg",
  43828. extra: 1275/1043,
  43829. bottom: 19/1294
  43830. }
  43831. },
  43832. back: {
  43833. height: math.unit(1, "meter"),
  43834. name: "Back",
  43835. image: {
  43836. source: "./media/characters/atlas-morenai/back.svg",
  43837. extra: 1141/1001,
  43838. bottom: 25/1166
  43839. }
  43840. },
  43841. },
  43842. [
  43843. {
  43844. name: "Normal",
  43845. height: math.unit(1, "meter"),
  43846. default: true
  43847. },
  43848. {
  43849. name: "Magic-Infused",
  43850. height: math.unit(5, "meters")
  43851. },
  43852. ]
  43853. ))
  43854. characterMakers.push(() => makeCharacter(
  43855. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  43856. {
  43857. front: {
  43858. height: math.unit(5, "meters"),
  43859. name: "Front",
  43860. image: {
  43861. source: "./media/characters/cintia/front.svg",
  43862. extra: 1312/1228,
  43863. bottom: 38/1350
  43864. }
  43865. },
  43866. back: {
  43867. height: math.unit(5, "meters"),
  43868. name: "Back",
  43869. image: {
  43870. source: "./media/characters/cintia/back.svg",
  43871. extra: 1260/1166,
  43872. bottom: 98/1358
  43873. }
  43874. },
  43875. frontDick: {
  43876. height: math.unit(5, "meters"),
  43877. name: "Front (Dick)",
  43878. image: {
  43879. source: "./media/characters/cintia/front-dick.svg",
  43880. extra: 1312/1228,
  43881. bottom: 38/1350
  43882. }
  43883. },
  43884. backDick: {
  43885. height: math.unit(5, "meters"),
  43886. name: "Back (Dick)",
  43887. image: {
  43888. source: "./media/characters/cintia/back-dick.svg",
  43889. extra: 1260/1166,
  43890. bottom: 98/1358
  43891. }
  43892. },
  43893. bust: {
  43894. height: math.unit(1.97, "meters"),
  43895. name: "Bust",
  43896. image: {
  43897. source: "./media/characters/cintia/bust.svg",
  43898. extra: 617/565,
  43899. bottom: 0/617
  43900. }
  43901. },
  43902. },
  43903. [
  43904. {
  43905. name: "Normal",
  43906. height: math.unit(5, "meters"),
  43907. default: true
  43908. },
  43909. ]
  43910. ))
  43911. characterMakers.push(() => makeCharacter(
  43912. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  43913. {
  43914. side: {
  43915. height: math.unit(100, "feet"),
  43916. name: "Side",
  43917. image: {
  43918. source: "./media/characters/denora/side.svg",
  43919. extra: 875/803,
  43920. bottom: 9/884
  43921. }
  43922. },
  43923. },
  43924. [
  43925. {
  43926. name: "Standard",
  43927. height: math.unit(100, "feet"),
  43928. default: true
  43929. },
  43930. {
  43931. name: "Grand",
  43932. height: math.unit(1000, "feet")
  43933. },
  43934. {
  43935. name: "Conquering",
  43936. height: math.unit(10000, "feet")
  43937. },
  43938. ]
  43939. ))
  43940. characterMakers.push(() => makeCharacter(
  43941. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  43942. {
  43943. dressed: {
  43944. height: math.unit(8 + 5/12, "feet"),
  43945. weight: math.unit(700, "lb"),
  43946. name: "Dressed",
  43947. image: {
  43948. source: "./media/characters/kiva/dressed.svg",
  43949. extra: 1102/1055,
  43950. bottom: 60/1162
  43951. }
  43952. },
  43953. nude: {
  43954. height: math.unit(8 + 5/12, "feet"),
  43955. weight: math.unit(700, "lb"),
  43956. name: "Nude",
  43957. image: {
  43958. source: "./media/characters/kiva/nude.svg",
  43959. extra: 1102/1055,
  43960. bottom: 60/1162
  43961. }
  43962. },
  43963. },
  43964. [
  43965. {
  43966. name: "Base Height",
  43967. height: math.unit(8 + 5/12, "feet"),
  43968. default: true
  43969. },
  43970. {
  43971. name: "Macro",
  43972. height: math.unit(100, "feet")
  43973. },
  43974. {
  43975. name: "Max",
  43976. height: math.unit(3280, "feet")
  43977. },
  43978. ]
  43979. ))
  43980. characterMakers.push(() => makeCharacter(
  43981. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  43982. {
  43983. front: {
  43984. height: math.unit(6 + 8/12, "feet"),
  43985. weight: math.unit(250, "lb"),
  43986. name: "Front",
  43987. image: {
  43988. source: "./media/characters/ztragon/front.svg",
  43989. extra: 1825/1684,
  43990. bottom: 98/1923
  43991. }
  43992. },
  43993. },
  43994. [
  43995. {
  43996. name: "Normal",
  43997. height: math.unit(6 + 8/12, "feet"),
  43998. default: true
  43999. },
  44000. {
  44001. name: "Macro",
  44002. height: math.unit(80, "feet")
  44003. },
  44004. ]
  44005. ))
  44006. characterMakers.push(() => makeCharacter(
  44007. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44008. {
  44009. front: {
  44010. height: math.unit(10.4, "feet"),
  44011. weight: math.unit(2, "tons"),
  44012. name: "Front",
  44013. image: {
  44014. source: "./media/characters/yesenia/front.svg",
  44015. extra: 1479/1474,
  44016. bottom: 233/1712
  44017. }
  44018. },
  44019. },
  44020. [
  44021. {
  44022. name: "Normal",
  44023. height: math.unit(10.4, "feet"),
  44024. default: true
  44025. },
  44026. ]
  44027. ))
  44028. characterMakers.push(() => makeCharacter(
  44029. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44030. {
  44031. normal: {
  44032. height: math.unit(6 + 1/12, "feet"),
  44033. weight: math.unit(180, "lb"),
  44034. name: "Normal",
  44035. image: {
  44036. source: "./media/characters/leanne-lycheborne/normal.svg",
  44037. extra: 1748/1660,
  44038. bottom: 98/1846
  44039. }
  44040. },
  44041. were: {
  44042. height: math.unit(12, "feet"),
  44043. weight: math.unit(1600, "lb"),
  44044. name: "Were",
  44045. image: {
  44046. source: "./media/characters/leanne-lycheborne/were.svg",
  44047. extra: 1485/1432,
  44048. bottom: 66/1551
  44049. }
  44050. },
  44051. },
  44052. [
  44053. {
  44054. name: "Normal",
  44055. height: math.unit(6 + 1/12, "feet"),
  44056. default: true
  44057. },
  44058. ]
  44059. ))
  44060. characterMakers.push(() => makeCharacter(
  44061. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44062. {
  44063. side: {
  44064. height: math.unit(13, "feet"),
  44065. name: "Side",
  44066. image: {
  44067. source: "./media/characters/kira-tyler/side.svg",
  44068. extra: 693/393,
  44069. bottom: 58/751
  44070. }
  44071. },
  44072. },
  44073. [
  44074. {
  44075. name: "Normal",
  44076. height: math.unit(13, "feet"),
  44077. default: true
  44078. },
  44079. ]
  44080. ))
  44081. characterMakers.push(() => makeCharacter(
  44082. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44083. {
  44084. front: {
  44085. height: math.unit(10.3, "feet"),
  44086. weight: math.unit(150, "lb"),
  44087. name: "Front",
  44088. image: {
  44089. source: "./media/characters/blaze/front.svg",
  44090. extra: 1378/1286,
  44091. bottom: 172/1550
  44092. }
  44093. },
  44094. },
  44095. [
  44096. {
  44097. name: "Normal",
  44098. height: math.unit(10.3, "feet"),
  44099. default: true
  44100. },
  44101. ]
  44102. ))
  44103. characterMakers.push(() => makeCharacter(
  44104. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44105. {
  44106. side: {
  44107. height: math.unit(2, "meters"),
  44108. weight: math.unit(400, "kg"),
  44109. name: "Side",
  44110. image: {
  44111. source: "./media/characters/anu/side.svg",
  44112. extra: 506/394,
  44113. bottom: 18/524
  44114. }
  44115. },
  44116. },
  44117. [
  44118. {
  44119. name: "Humanoid",
  44120. height: math.unit(2, "meters")
  44121. },
  44122. {
  44123. name: "Normal",
  44124. height: math.unit(5, "meters"),
  44125. default: true
  44126. },
  44127. ]
  44128. ))
  44129. characterMakers.push(() => makeCharacter(
  44130. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44131. {
  44132. front: {
  44133. height: math.unit(5 + 5/12, "feet"),
  44134. weight: math.unit(170, "lb"),
  44135. name: "Front",
  44136. image: {
  44137. source: "./media/characters/synx-the-lynx/front.svg",
  44138. extra: 1893/1745,
  44139. bottom: 17/1910
  44140. }
  44141. },
  44142. side: {
  44143. height: math.unit(5 + 5/12, "feet"),
  44144. weight: math.unit(170, "lb"),
  44145. name: "Side",
  44146. image: {
  44147. source: "./media/characters/synx-the-lynx/side.svg",
  44148. extra: 1884/1740,
  44149. bottom: 39/1923
  44150. }
  44151. },
  44152. back: {
  44153. height: math.unit(5 + 5/12, "feet"),
  44154. weight: math.unit(170, "lb"),
  44155. name: "Back",
  44156. image: {
  44157. source: "./media/characters/synx-the-lynx/back.svg",
  44158. extra: 1903/1755,
  44159. bottom: 14/1917
  44160. }
  44161. },
  44162. },
  44163. [
  44164. {
  44165. name: "Normal",
  44166. height: math.unit(5 + 5/12, "feet"),
  44167. default: true
  44168. },
  44169. ]
  44170. ))
  44171. characterMakers.push(() => makeCharacter(
  44172. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44173. {
  44174. back: {
  44175. height: math.unit(15, "feet"),
  44176. name: "Back",
  44177. image: {
  44178. source: "./media/characters/nadezda-fex/back.svg",
  44179. extra: 1695/1481,
  44180. bottom: 25/1720
  44181. }
  44182. },
  44183. },
  44184. [
  44185. {
  44186. name: "Normal",
  44187. height: math.unit(15, "feet"),
  44188. default: true
  44189. },
  44190. {
  44191. name: "Macro",
  44192. height: math.unit(2.5, "miles")
  44193. },
  44194. {
  44195. name: "Goddess",
  44196. height: math.unit(2, "multiverses")
  44197. },
  44198. ]
  44199. ))
  44200. characterMakers.push(() => makeCharacter(
  44201. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44202. {
  44203. front: {
  44204. height: math.unit(216, "cm"),
  44205. name: "Front",
  44206. image: {
  44207. source: "./media/characters/lev/front.svg",
  44208. extra: 1728/1670,
  44209. bottom: 82/1810
  44210. }
  44211. },
  44212. back: {
  44213. height: math.unit(216, "cm"),
  44214. name: "Back",
  44215. image: {
  44216. source: "./media/characters/lev/back.svg",
  44217. extra: 1738/1675,
  44218. bottom: 24/1762
  44219. }
  44220. },
  44221. dressed: {
  44222. height: math.unit(216, "cm"),
  44223. name: "Dressed",
  44224. image: {
  44225. source: "./media/characters/lev/dressed.svg",
  44226. extra: 1397/1351,
  44227. bottom: 73/1470
  44228. }
  44229. },
  44230. head: {
  44231. height: math.unit(0.51, "meter"),
  44232. name: "Head",
  44233. image: {
  44234. source: "./media/characters/lev/head.svg"
  44235. }
  44236. },
  44237. },
  44238. [
  44239. {
  44240. name: "Normal",
  44241. height: math.unit(216, "cm"),
  44242. default: true
  44243. },
  44244. {
  44245. name: "Relatively Macro",
  44246. height: math.unit(80, "meters")
  44247. },
  44248. {
  44249. name: "Megamacro",
  44250. height: math.unit(21600, "meters")
  44251. },
  44252. {
  44253. name: "Megamacro+",
  44254. height: math.unit(64800, "meters")
  44255. },
  44256. ]
  44257. ))
  44258. characterMakers.push(() => makeCharacter(
  44259. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44260. {
  44261. front: {
  44262. height: math.unit(2, "meters"),
  44263. weight: math.unit(80, "kg"),
  44264. name: "Front",
  44265. image: {
  44266. source: "./media/characters/moka/front.svg",
  44267. extra: 1337/1255,
  44268. bottom: 58/1395
  44269. }
  44270. },
  44271. },
  44272. [
  44273. {
  44274. name: "Micro",
  44275. height: math.unit(15, "cm")
  44276. },
  44277. {
  44278. name: "Normal",
  44279. height: math.unit(2, "meters"),
  44280. default: true
  44281. },
  44282. {
  44283. name: "Macro",
  44284. height: math.unit(20, "meters"),
  44285. },
  44286. ]
  44287. ))
  44288. characterMakers.push(() => makeCharacter(
  44289. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44290. {
  44291. front: {
  44292. height: math.unit(9, "feet"),
  44293. weight: math.unit(240, "lb"),
  44294. name: "Front",
  44295. image: {
  44296. source: "./media/characters/kuzco/front.svg",
  44297. extra: 1593/1487,
  44298. bottom: 32/1625
  44299. }
  44300. },
  44301. side: {
  44302. height: math.unit(9, "feet"),
  44303. weight: math.unit(240, "lb"),
  44304. name: "Side",
  44305. image: {
  44306. source: "./media/characters/kuzco/side.svg",
  44307. extra: 1575/1485,
  44308. bottom: 30/1605
  44309. }
  44310. },
  44311. back: {
  44312. height: math.unit(9, "feet"),
  44313. weight: math.unit(240, "lb"),
  44314. name: "Back",
  44315. image: {
  44316. source: "./media/characters/kuzco/back.svg",
  44317. extra: 1603/1514,
  44318. bottom: 14/1617
  44319. }
  44320. },
  44321. },
  44322. [
  44323. {
  44324. name: "Normal",
  44325. height: math.unit(9, "feet"),
  44326. default: true
  44327. },
  44328. ]
  44329. ))
  44330. characterMakers.push(() => makeCharacter(
  44331. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44332. {
  44333. side: {
  44334. height: math.unit(2, "meters"),
  44335. weight: math.unit(300, "kg"),
  44336. name: "Side",
  44337. image: {
  44338. source: "./media/characters/ceruleus/side.svg",
  44339. extra: 1068/974,
  44340. bottom: 126/1194
  44341. }
  44342. },
  44343. },
  44344. [
  44345. {
  44346. name: "Normal",
  44347. height: math.unit(16, "meters"),
  44348. default: true
  44349. },
  44350. ]
  44351. ))
  44352. //characters
  44353. function makeCharacters() {
  44354. const results = [];
  44355. characterMakers.forEach(character => {
  44356. results.push(character());
  44357. });
  44358. return results;
  44359. }