less copy protection, more size visualization
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

36336 wiersze
913 KiB

  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. "mammal"
  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. "mammal"
  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. "canine"
  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. },
  227. "cougar": {
  228. name: "Cougar",
  229. parents: [
  230. "cat"
  231. ]
  232. },
  233. "goat": {
  234. name: "Goat",
  235. parents: [
  236. "mammal"
  237. ]
  238. },
  239. "lion": {
  240. name: "Lion",
  241. parents: [
  242. "cat"
  243. ]
  244. },
  245. "harpy-eager": {
  246. name: "Harpy Eagle",
  247. parents: [
  248. "avian"
  249. ]
  250. },
  251. "deer": {
  252. name: "Deer",
  253. parents: [
  254. "mammal"
  255. ]
  256. },
  257. "phoenix": {
  258. name: "Phoenix",
  259. parents: [
  260. "avian"
  261. ]
  262. },
  263. "aeromorph": {
  264. name: "Aeromorph",
  265. parents: [
  266. "machine"
  267. ]
  268. },
  269. "machine": {
  270. name: "Machine",
  271. },
  272. "android": {
  273. name: "Android",
  274. parents: [
  275. "machine"
  276. ]
  277. },
  278. "jackal": {
  279. name: "Jackal",
  280. parents: [
  281. "canine"
  282. ]
  283. },
  284. "corvid": {
  285. name: "Corvid",
  286. parents: [
  287. "avian"
  288. ]
  289. },
  290. "pharaoh-hound": {
  291. name: "Pharaoh Hound",
  292. parents: [
  293. "dog"
  294. ]
  295. },
  296. "skunk": {
  297. name: "Skunk",
  298. parents: [
  299. "mammal"
  300. ]
  301. },
  302. "shark": {
  303. name: "Shark",
  304. parents: [
  305. "fish"
  306. ]
  307. },
  308. "black-panther": {
  309. name: "Black Panther",
  310. parents: [
  311. "cat"
  312. ]
  313. },
  314. "umbra": {
  315. name: "Umbra",
  316. parents: [
  317. "animal"
  318. ]
  319. },
  320. "raven": {
  321. name: "Raven",
  322. parents: [
  323. "corvid"
  324. ]
  325. },
  326. "snow-leopard": {
  327. name: "Snow Leopard",
  328. parents: [
  329. "cat"
  330. ]
  331. },
  332. "barbary-lion": {
  333. name: "Barbary Lion",
  334. parents: [
  335. "lion"
  336. ]
  337. },
  338. "dra'gal": {
  339. name: "Dra'Gal",
  340. parents: [
  341. "mammal"
  342. ]
  343. },
  344. "german-shepherd": {
  345. name: "German Shepherd",
  346. parents: [
  347. "dog"
  348. ]
  349. },
  350. "bayleef": {
  351. name: "Bayleef",
  352. parents: [
  353. "pokemon"
  354. ]
  355. },
  356. "mouse": {
  357. name: "Mouse",
  358. parents: [
  359. "rodent"
  360. ]
  361. },
  362. "rat": {
  363. name: "Rat",
  364. parents: [
  365. "mammal"
  366. ]
  367. },
  368. "hoshiko-beast": {
  369. name: "Hoshiko Beast",
  370. parents: ["animal"]
  371. },
  372. "snow-jugani": {
  373. name: "Snow Jugani",
  374. parents: ["cat"]
  375. },
  376. "patamon": {
  377. name: "Patamon",
  378. parents: ["digimon"]
  379. },
  380. "digimon": {
  381. name: "Digimon",
  382. },
  383. "jugani": {
  384. name: "Jugani",
  385. parents: ["cat"]
  386. },
  387. "luxray": {
  388. name: "Luxray",
  389. parents: ["pokemon"]
  390. },
  391. "mech": {
  392. name: "Mech",
  393. parents: ["machine"]
  394. },
  395. "zoid": {
  396. name: "Zoid",
  397. parents: ["mech"]
  398. },
  399. "monster": {
  400. name: "Monster",
  401. parents: ["animal"]
  402. },
  403. "foo-dog": {
  404. name: "Foo Dog",
  405. parents: ["mammal"]
  406. },
  407. "elephant": {
  408. name: "Elephant",
  409. parents: ["mammal"]
  410. },
  411. "eagle": {
  412. name: "Eagle",
  413. parents: ["avian"]
  414. },
  415. "cow": {
  416. name: "Cow",
  417. parents: ["mammal"]
  418. },
  419. "crocodile": {
  420. name: "Crocodile",
  421. parents: ["reptile"]
  422. },
  423. "borzoi": {
  424. name: "Borzoi",
  425. parents: ["dog"]
  426. },
  427. "snake": {
  428. name: "Snake",
  429. parents: ["reptile"]
  430. },
  431. "horned-bush-viper": {
  432. name: "Horned Bush Viper",
  433. parents: ["snake"]
  434. },
  435. "cobra": {
  436. name: "Cobra",
  437. parents: ["snake"]
  438. },
  439. "harpy-eagle": {
  440. name: "Harpy Eagle",
  441. parents: ["eagle"]
  442. },
  443. "raptor": {
  444. name: "Raptor",
  445. parents: ["dinosaur"]
  446. },
  447. "dinosaur": {
  448. name: "Dinosaur",
  449. parents: ["reptile"]
  450. },
  451. "veilhound": {
  452. name: "Veilhound",
  453. parents: ["hellhound", "demon"]
  454. },
  455. "hellhound": {
  456. name: "Hellhound",
  457. parents: ["canine"]
  458. },
  459. "insect": {
  460. name: "Insect",
  461. parents: ["animal"]
  462. },
  463. "beetle": {
  464. name: "Beetle",
  465. parents: ["insect"]
  466. },
  467. "moth": {
  468. name: "Moth",
  469. parents: ["insect"]
  470. },
  471. "eastern-dragon": {
  472. name: "Eastern Dragon",
  473. parents: ["dragon"]
  474. },
  475. "jaguar": {
  476. name: "Jaguar",
  477. parents: ["cat"]
  478. },
  479. "horse": {
  480. name: "Horse",
  481. parents: ["mammal"]
  482. },
  483. "sergal": {
  484. name: "Sergal",
  485. parents: ["mammal"]
  486. },
  487. "gryphon": {
  488. name: "Gryphon",
  489. parents: ["lion", "eagle"]
  490. },
  491. "robot": {
  492. name: "Robot",
  493. parents: ["machine"]
  494. },
  495. "medihound": {
  496. name: "Medihound",
  497. parents: ["robot", "dog"]
  498. },
  499. "sylveon": {
  500. name: "Sylveon",
  501. parents: ["pokemon"]
  502. },
  503. "catgirl": {
  504. name: "Catgirl",
  505. parents: ["mammal"]
  506. },
  507. "cowgirl": {
  508. name: "Cowgirl",
  509. parents: ["mammal"]
  510. },
  511. "pony": {
  512. name: "Pony",
  513. parents: ["horse"]
  514. },
  515. "rabbit": {
  516. name: "Rabbit",
  517. parents: ["mammal"]
  518. },
  519. "fennec-fox": {
  520. name: "Fennec Fox",
  521. parents: ["fox"]
  522. },
  523. "azodian": {
  524. name: "Azodian",
  525. parents: ["mouse"]
  526. },
  527. "shiba-inu": {
  528. name: "Shiba Inu",
  529. parents: ["dog"]
  530. },
  531. "changeling": {
  532. name: "Changeling",
  533. parents: ["insect"]
  534. },
  535. "cheetah": {
  536. name: "Cheetah",
  537. parents: ["cat"]
  538. },
  539. "golden-jackal": {
  540. name: "Golden Jackal",
  541. parents: ["jackal"]
  542. },
  543. "manectric": {
  544. name: "Manectric",
  545. parents: ["pokemon"]
  546. },
  547. "rat": {
  548. name: "Rat",
  549. parents: ["rodent"]
  550. },
  551. "rodent": {
  552. name: "Rodent",
  553. parents: ["mammal"]
  554. },
  555. "octocoon": {
  556. name: "Octocoon",
  557. parents: ["raccoon", "octopus"]
  558. },
  559. "octopus": {
  560. name: "Octopus",
  561. parents: ["fish"]
  562. },
  563. "werewolf": {
  564. name: "Werewolf",
  565. parents: ["wolf"]
  566. },
  567. "meerkat": {
  568. name: "Meerkat",
  569. parents: ["mammal"]
  570. },
  571. "human": {
  572. name: "Human",
  573. parents: ["mammal"]
  574. },
  575. "geth": {
  576. name: "Geth",
  577. parents: ["android"]
  578. },
  579. "husky": {
  580. name: "Husky",
  581. parents: ["dog"]
  582. },
  583. "long-eared-bat": {
  584. name: "Long Eared Bat",
  585. parents: ["bat"]
  586. },
  587. "lizard": {
  588. name: "Lizard",
  589. parents: ["reptile"]
  590. },
  591. "salamander": {
  592. name: "Salamander",
  593. parents: ["lizard"]
  594. },
  595. "chameleon": {
  596. name: "Chameleon",
  597. parents: ["lizard"]
  598. },
  599. "gecko": {
  600. name: "Gecko",
  601. parents: ["lizard"]
  602. },
  603. "kobold": {
  604. name: "Kobold",
  605. parents: ["reptile"]
  606. },
  607. "charizard": {
  608. name: "Charizard",
  609. parents: ["pokemon"]
  610. },
  611. "lugia": {
  612. name: "Lugia",
  613. parents: ["pokemon"]
  614. },
  615. "cerberus": {
  616. name: "Cerberus",
  617. parents: ["dog"]
  618. },
  619. "tyrantrum": {
  620. name: "Tyrantrum",
  621. parents: ["pokemon"]
  622. },
  623. "lemur": {
  624. name: "Lemur",
  625. parents: ["mammal"]
  626. },
  627. "kelpie": {
  628. name: "Kelpie",
  629. parents: ["horse", "monster"]
  630. },
  631. "labrador": {
  632. name: "Labrador",
  633. parents: ["dog"]
  634. },
  635. "sylveon": {
  636. name: "Sylveon",
  637. parents: ["eeveelution"]
  638. },
  639. "eeveelution": {
  640. name: "Eeveelution",
  641. parents: ["pokemon"]
  642. },
  643. "polar-bear": {
  644. name: "Polar Bear",
  645. parents: ["bear"]
  646. },
  647. "bear": {
  648. name: "Bear",
  649. parents: ["mammal"]
  650. },
  651. "absol": {
  652. name: "Absol",
  653. parents: ["pokemon"]
  654. },
  655. "wolver": {
  656. name: "Wolver",
  657. parents: ["mammal"]
  658. },
  659. "rottweiler": {
  660. name: "Rottweiler",
  661. parents: ["dog"]
  662. },
  663. "zebra": {
  664. name: "Zebra",
  665. parents: ["horse"]
  666. },
  667. "yoshi": {
  668. name: "Yoshi",
  669. parents: ["lizard"]
  670. },
  671. "lynx": {
  672. name: "Lynx",
  673. parents: ["cat"]
  674. },
  675. "unknown": {
  676. name: "Unknown",
  677. parents: []
  678. },
  679. "thylacine": {
  680. name: "Thylacine",
  681. parents: ["mammal"]
  682. },
  683. "gabumon": {
  684. name: "Gabumon",
  685. parents: ["digimon"]
  686. },
  687. "border-collie": {
  688. name: "Border Collie",
  689. parents: ["dog"]
  690. },
  691. "imp": {
  692. name: "Imp",
  693. parents: ["demon"]
  694. },
  695. "kangaroo": {
  696. name: "Kangaroo",
  697. parents: ["mammal"]
  698. },
  699. "renamon": {
  700. name: "Renamon",
  701. parents: ["digimon"]
  702. },
  703. "candy-orca-dragon": {
  704. name: "Candy Orca Dragon",
  705. parents: ["fish", "dragon", "candy"]
  706. },
  707. "sabertooth-tiger": {
  708. name: "Sabertooth Tiger",
  709. parents: ["cat"]
  710. },
  711. "espurr": {
  712. name: "Espurr",
  713. parents: ["pokemon"]
  714. },
  715. "otter": {
  716. name: "Otter",
  717. parents: ["mammal"]
  718. },
  719. "elemental": {
  720. name: "Elemental",
  721. parents: ["mammal"]
  722. },
  723. "mew": {
  724. name: "Mew",
  725. parents: ["pokemon"]
  726. },
  727. "goodra": {
  728. name: "Goodra",
  729. parents: ["pokemon"]
  730. },
  731. "fairy": {
  732. name: "Fairy",
  733. parents: ["magical"]
  734. },
  735. "typhlosion": {
  736. name: "Typhlosion",
  737. parents: ["pokemon"]
  738. },
  739. "magical": {
  740. name: "Magical",
  741. parents: []
  742. },
  743. "xenomorph": {
  744. name: "Xenomorph",
  745. parents: ["monster", "alien"]
  746. },
  747. "charr": {
  748. name: "Charr",
  749. parents: ["cat"]
  750. },
  751. "siberian-husky": {
  752. name: "Siberian Husky",
  753. parents: ["husky"]
  754. },
  755. "alligator": {
  756. name: "Alligator",
  757. parents: ["reptile"]
  758. },
  759. "bernese-mountain-dog": {
  760. name: "Bernese Mountain Dog",
  761. parents: ["dog"]
  762. },
  763. "reshiram": {
  764. name: "Reshiram",
  765. parents: ["pokemon"]
  766. },
  767. "grizzly-bear": {
  768. name: "Grizzly Bear",
  769. parents: ["bear"]
  770. },
  771. "water-monitor": {
  772. name: "Water Monitor",
  773. parents: ["lizard"]
  774. },
  775. "banchofossa": {
  776. name: "Banchofossa",
  777. parents: ["mammal"]
  778. },
  779. "kirin": {
  780. name: "Kirin",
  781. parents: ["monster"]
  782. },
  783. "quilava": {
  784. name: "Quilava",
  785. parents: ["pokemon"]
  786. },
  787. "seviper": {
  788. name: "Seviper",
  789. parents: ["pokemon"]
  790. },
  791. "flying-fox": {
  792. name: "Flying Fox",
  793. parents: ["bat"]
  794. },
  795. "keynain": {
  796. name: "Keynain",
  797. parents: ["avian"]
  798. },
  799. "lucario": {
  800. name: "Lucario",
  801. parents: ["pokemon"]
  802. },
  803. "siamese-cat": {
  804. name: "Siamese Cat",
  805. parents: ["cat"]
  806. },
  807. "spider": {
  808. name: "Spider",
  809. parents: ["insect"]
  810. },
  811. "samurott": {
  812. name: "Samurott",
  813. parents: ["pokemon"]
  814. },
  815. "megalodon": {
  816. name: "Megalodon",
  817. parents: ["shark"]
  818. },
  819. "unicorn": {
  820. name: "Unicorn",
  821. parents: ["horse"]
  822. },
  823. "greninja": {
  824. name: "Greninja",
  825. parents: ["pokemon"]
  826. },
  827. "water-dragon": {
  828. name: "Water Dragon",
  829. parents: ["dragon"]
  830. },
  831. "cross-fox": {
  832. name: "Cross Fox",
  833. parents: ["fox"]
  834. },
  835. "synth": {
  836. name: "Synth",
  837. parents: ["machine"]
  838. },
  839. "construct": {
  840. name: "Construct",
  841. parents: []
  842. },
  843. "mexican-wolf": {
  844. name: "Mexican Wolf",
  845. parents: ["wolf"]
  846. },
  847. "leopard": {
  848. name: "Leopard",
  849. parents: ["cat"]
  850. },
  851. "pig": {
  852. name: "Pig",
  853. parents: ["mammal"]
  854. },
  855. "ampharos": {
  856. name: "Ampharos",
  857. parents: ["pokemon"]
  858. },
  859. "orca": {
  860. name: "Orca",
  861. parents: ["fish"]
  862. },
  863. "lycanroc": {
  864. name: "Lycanroc",
  865. parents: ["pokemon"]
  866. },
  867. "surkanu": {
  868. name: "Surkanu",
  869. parents: ["monster"]
  870. },
  871. "seal": {
  872. name: "Seal",
  873. parents: ["mammal"]
  874. },
  875. "keldeo": {
  876. name: "Keldeo",
  877. parents: ["pokemon"]
  878. },
  879. "great-dane": {
  880. name: "Great Dane",
  881. parents: ["dog"]
  882. },
  883. "black-backed-jackal": {
  884. name: "Black Backed Jackal",
  885. parents: ["jackal"]
  886. },
  887. "sheep": {
  888. name: "Sheep",
  889. parents: ["mammal"]
  890. },
  891. "leopard-seal": {
  892. name: "Leopard Seal",
  893. parents: ["seal"]
  894. },
  895. "zoroark": {
  896. name: "Zoroark",
  897. parents: ["pokemon"]
  898. },
  899. "maned-wolf": {
  900. name: "Maned Wolf",
  901. parents: ["canine"]
  902. },
  903. "dracha": {
  904. name: "Dracha",
  905. parents: ["dragon"]
  906. },
  907. "wolxi": {
  908. name: "Wolxi",
  909. parents: ["mammal", "alien"]
  910. },
  911. "dratini": {
  912. name: "Dratini",
  913. parents: ["pokemon", "dragon"]
  914. },
  915. "skaven": {
  916. name: "Skaven",
  917. parents: ["rat"]
  918. },
  919. "mongoose": {
  920. name: "Mongoose",
  921. parents: ["mammal"]
  922. },
  923. "lopunny": {
  924. name: "Lopunny",
  925. parents: ["pokemon", "rabbit"]
  926. },
  927. "feraligatr": {
  928. name: "Feraligatr",
  929. parents: ["pokemon", "alligator"]
  930. },
  931. "houndoom": {
  932. name: "Houndoom",
  933. parents: ["pokemon", "dog"]
  934. },
  935. "protogen": {
  936. name: "Protogen",
  937. parents: ["machine"]
  938. },
  939. "saint-bernard": {
  940. name: "Saint Bernard",
  941. parents: ["dog"]
  942. },
  943. "crow": {
  944. name: "Crow",
  945. parents: ["corvid"]
  946. },
  947. "delphox": {
  948. name: "Delphox",
  949. parents: ["pokemon", "fox"]
  950. },
  951. "moose": {
  952. name: "Moose",
  953. parents: ["mammal"]
  954. },
  955. "joraxian": {
  956. name: "Joraxian",
  957. parents: ["monster", "canine", "demon"]
  958. },
  959. "nimbat": {
  960. name: "Nimbat",
  961. parents: ["mammal"]
  962. },
  963. "aardwolf": {
  964. name: "Aardwolf",
  965. parents: ["canine"]
  966. },
  967. "fluudrani": {
  968. name: "Fluudrani",
  969. parents: ["animal"]
  970. },
  971. "arcanine": {
  972. name: "Arcanine",
  973. parents: ["pokemon", "dog"]
  974. },
  975. "inteleon": {
  976. name: "Inteleon",
  977. parents: ["pokemon", "fish"]
  978. },
  979. "ninetales": {
  980. name: "Ninetales",
  981. parents: ["pokemon", "kitsune"]
  982. },
  983. "tigrex": {
  984. name: "Tigrex",
  985. parents: ["tiger"]
  986. },
  987. "zorua": {
  988. name: "Zorua",
  989. parents: ["pokemon", "fox"]
  990. },
  991. "vulpix": {
  992. name: "Vulpix",
  993. parents: ["pokemon", "fox"]
  994. },
  995. "barghest": {
  996. name: "Barghest",
  997. parents: ["monster"]
  998. },
  999. "gray-wolf": {
  1000. name: "Gray Wolf",
  1001. parents: ["wolf"]
  1002. },
  1003. "ruppells-fox": {
  1004. name: "Rüppell's Fox",
  1005. parents: ["fox"]
  1006. },
  1007. "bull-terrier": {
  1008. name: "Bull Terrier",
  1009. parents: ["dog"]
  1010. },
  1011. "european-honey-buzzard": {
  1012. name: "European Honey Buzzard",
  1013. parents: ["avian"]
  1014. },
  1015. "t-rex": {
  1016. name: "T Rex",
  1017. parents: ["dinosaur"]
  1018. },
  1019. "mactarian": {
  1020. name: "Mactarian",
  1021. parents: ["shark", "monster"]
  1022. },
  1023. "mewtwo-y": {
  1024. name: "Mewtwo Y",
  1025. parents: ["mewtwo"]
  1026. },
  1027. "mewtwo": {
  1028. name: "Mewtwo",
  1029. parents: ["pokemon"]
  1030. },
  1031. "mew": {
  1032. name: "Mew",
  1033. parents: ["pokemon"]
  1034. },
  1035. "eevee": {
  1036. name: "Eevee",
  1037. parents: ["eeveelution"]
  1038. },
  1039. "mienshao": {
  1040. name: "Mienshao",
  1041. parents: ["pokemon"]
  1042. },
  1043. "sugar-glider": {
  1044. name: "Sugar Glider",
  1045. parents: ["opossum"]
  1046. },
  1047. "spectral-bat": {
  1048. name: "Spectral Bat",
  1049. parents: ["bat"]
  1050. },
  1051. "scolipede": {
  1052. name: "Scolipede",
  1053. parents: ["pokemon", "insect"]
  1054. },
  1055. "jackalope": {
  1056. name: "Jackalope",
  1057. parents: ["rabbit", "antelope"]
  1058. },
  1059. "caracal": {
  1060. name: "Caracal",
  1061. parents: ["cat"]
  1062. },
  1063. "stoat": {
  1064. name: "Stoat",
  1065. parents: ["mammal"]
  1066. },
  1067. "african-golden-cat": {
  1068. name: "African Golden Cat",
  1069. parents: ["cat"]
  1070. },
  1071. "gigantosaurus": {
  1072. name: "Gigantosaurus",
  1073. parents: ["dinosaur"]
  1074. },
  1075. "zorgoia": {
  1076. name: "Zorgoia",
  1077. parents: ["mammal"]
  1078. },
  1079. "monitor-lizard": {
  1080. name: "Monitor Lizard",
  1081. parents: ["lizard"]
  1082. },
  1083. "ziralkia": {
  1084. name: "Ziralkia",
  1085. parents: ["mammal"]
  1086. },
  1087. "kiiasi": {
  1088. name: "Kiiasi",
  1089. parents: ["animal"]
  1090. },
  1091. "synx": {
  1092. name: "Synx",
  1093. parents: ["monster"]
  1094. },
  1095. "panther": {
  1096. name: "Panther",
  1097. parents: ["cat"]
  1098. },
  1099. "azumarill": {
  1100. name: "Azumarill",
  1101. parents: ["pokemon"]
  1102. },
  1103. "river-snaptail": {
  1104. name: "River Snaptail",
  1105. parents: ["otter", "crocodile"]
  1106. },
  1107. "great-blue-heron": {
  1108. name: "Great Blue Heron",
  1109. parents: ["avian"]
  1110. },
  1111. "smeargle": {
  1112. name: "Smeargle",
  1113. parents: ["pokemon"]
  1114. },
  1115. "vendeilen": {
  1116. name: "Vendeilen",
  1117. parents: ["monster"]
  1118. },
  1119. "ventura": {
  1120. name: "Ventura",
  1121. parents: ["canine"]
  1122. },
  1123. "clouded-leopard": {
  1124. name: "Clouded Leopard",
  1125. parents: ["leopard"]
  1126. },
  1127. "argonian": {
  1128. name: "Argonian",
  1129. parents: ["lizard"]
  1130. },
  1131. "salazzle": {
  1132. name: "Salazzle",
  1133. parents: ["pokemon", "lizard"]
  1134. },
  1135. "je-stoff-drachen": {
  1136. name: "Je-Stoff Drachen",
  1137. parents: ["dragon"]
  1138. },
  1139. "finnish-spitz-dog": {
  1140. name: "Finnish Spitz Dog",
  1141. parents: ["dog"]
  1142. },
  1143. "gray-fox": {
  1144. name: "Gray Fox",
  1145. parents: ["fox"]
  1146. },
  1147. "opossum": {
  1148. name: "opossum",
  1149. parents: ["mammal"]
  1150. },
  1151. "antelope": {
  1152. name: "Antelope",
  1153. parents: ["mammal"]
  1154. },
  1155. "weavile": {
  1156. name: "Weavile",
  1157. parents: ["pokemon"]
  1158. },
  1159. "pikachu": {
  1160. name: "Pikachu",
  1161. parents: ["pokemon", "mouse"]
  1162. },
  1163. "grovyle": {
  1164. name: "Grovyle",
  1165. parents: ["pokemon", "plant"]
  1166. },
  1167. "sthara": {
  1168. name: "Sthara",
  1169. parents: ["snow-leopard", "reptile"]
  1170. },
  1171. "star-warrior": {
  1172. name: "Star Warrior",
  1173. parents: ["magical"]
  1174. },
  1175. "dragonoid": {
  1176. name: "Dragonoid",
  1177. parents: ["dragon"]
  1178. },
  1179. "suicune": {
  1180. name: "Suicune",
  1181. parents: ["pokemon"]
  1182. },
  1183. "vole": {
  1184. name: "Vole",
  1185. parents: ["mammal"]
  1186. },
  1187. "blaziken": {
  1188. name: "Blaziken",
  1189. parents: ["pokemon", "avian"]
  1190. },
  1191. "buizel": {
  1192. name: "Buizel",
  1193. parents: ["pokemon", "fish"]
  1194. },
  1195. "floatzel": {
  1196. name: "Floatzel",
  1197. parents: ["pokemon", "fish"]
  1198. },
  1199. "umok": {
  1200. name: "Umok",
  1201. parents: ["avian"]
  1202. },
  1203. "sea-monster": {
  1204. name: "Sea Monster",
  1205. parents: ["monster", "fish"]
  1206. },
  1207. "egyptian-vulture": {
  1208. name: "Egyptian Vulture",
  1209. parents: ["avian"]
  1210. },
  1211. "doberman": {
  1212. name: "Doberman",
  1213. parents: ["dog"]
  1214. },
  1215. "zangoose": {
  1216. name: "Zangoose",
  1217. parents: ["pokemon", "mongoose"]
  1218. },
  1219. "mongoose": {
  1220. name: "Mongoose",
  1221. parents: ["mammal"]
  1222. },
  1223. "wickerbeast": {
  1224. name: "Wickerbeast",
  1225. parents: ["monster"]
  1226. },
  1227. "zenari": {
  1228. name: "Zenari",
  1229. parents: ["lizard"]
  1230. },
  1231. "plant": {
  1232. name: "Plant",
  1233. parents: []
  1234. },
  1235. "raskatox": {
  1236. name: "Raskatox",
  1237. parents: ["raccoon", "skunk", "cat", "fox"]
  1238. },
  1239. "mikromare": {
  1240. name: "mikromare",
  1241. parents: ["alien"]
  1242. },
  1243. "alien": {
  1244. name: "Alien",
  1245. parents: ["animal"]
  1246. },
  1247. "deity": {
  1248. name: "Deity",
  1249. parents: []
  1250. },
  1251. "skarlan": {
  1252. name: "Skarlan",
  1253. parents: ["slug", "dragon"]
  1254. },
  1255. "slug": {
  1256. name: "Slug",
  1257. parents: ["mollusk"]
  1258. },
  1259. "mollusk": {
  1260. name: "Mollusk",
  1261. parents: ["animal"]
  1262. },
  1263. "chimera": {
  1264. name: "Chimera",
  1265. parents: ["monster"]
  1266. },
  1267. "gestalt": {
  1268. name: "Gestalt",
  1269. parents: ["construct"]
  1270. },
  1271. "mimic": {
  1272. name: "Mimic",
  1273. parents: ["monster"]
  1274. },
  1275. "calico-rat": {
  1276. name: "Calico Rat",
  1277. parents: ["rat"]
  1278. },
  1279. "panda": {
  1280. name: "Panda",
  1281. parents: ["mammal"]
  1282. },
  1283. "oni": {
  1284. name: "Oni",
  1285. parents: ["monster"]
  1286. },
  1287. "pegasus": {
  1288. name: "Pegasus",
  1289. parents: ["horse"]
  1290. },
  1291. "vulpera": {
  1292. name: "Vulpera",
  1293. parents: ["fennec-fox"]
  1294. },
  1295. "ceratosaurus": {
  1296. name: "Ceratosaurus",
  1297. parents: ["dinosaur"]
  1298. },
  1299. "nykur": {
  1300. name: "Nykur",
  1301. parents: ["horse", "monster"]
  1302. },
  1303. "giraffe": {
  1304. name: "Giraffe",
  1305. parents: ["mammal"]
  1306. },
  1307. "tauren": {
  1308. name: "Tauren",
  1309. parents: ["cow"]
  1310. },
  1311. "draconi": {
  1312. name: "Draconi",
  1313. parents: ["alien", "cat", "cyborg"]
  1314. },
  1315. "dire-wolf": {
  1316. name: "Dire Wolf",
  1317. parents: ["wolf"]
  1318. },
  1319. "ferromorph": {
  1320. name: "Ferromorph",
  1321. parents: ["construct"]
  1322. },
  1323. "meowth": {
  1324. name: "Meowth",
  1325. parents: ["cat", "pokemon"]
  1326. },
  1327. "pavodragon": {
  1328. name: "Pavodragon",
  1329. parents: ["dragon"]
  1330. },
  1331. "aaltranae": {
  1332. name: "Aaltranae",
  1333. parents: ["dragon"]
  1334. },
  1335. "cyborg": {
  1336. name: "Cyborg",
  1337. parents: ["machine"]
  1338. },
  1339. "draptor": {
  1340. name: "Draptor",
  1341. parents: ["dragon"]
  1342. },
  1343. "candy": {
  1344. name: "Candy",
  1345. parents: []
  1346. },
  1347. "drenath": {
  1348. name: "Drenath",
  1349. parents: ["dragon", "snake", "rabbit"]
  1350. },
  1351. "coyju": {
  1352. name: "Coyju",
  1353. parents: ["coyote", "kaiju"]
  1354. },
  1355. "kaiju": {
  1356. name: "Kaiju",
  1357. parents: ["monster"]
  1358. },
  1359. "nickit": {
  1360. name: "Nickit",
  1361. parents: ["pokemon", "cat"]
  1362. },
  1363. "lopunny": {
  1364. name: "Lopunny",
  1365. parents: ["pokemon", "rabbit"]
  1366. },
  1367. "korean-jindo-dog": {
  1368. name: "Korean Jindo Dog",
  1369. parents: ["dog"]
  1370. },
  1371. "naga": {
  1372. name: "Naga",
  1373. parents: ["snake", "monster"]
  1374. },
  1375. "undead": {
  1376. name: "Undead",
  1377. parents: ["monster"]
  1378. },
  1379. "whale": {
  1380. name: "Whale",
  1381. parents: ["fish"]
  1382. },
  1383. "gelato-bee": {
  1384. name: "Gelato Bee",
  1385. parents: ["bee"]
  1386. },
  1387. "bee": {
  1388. name: "Bee",
  1389. parents: ["insect"]
  1390. },
  1391. "gardevoir": {
  1392. name: "Gardevoir",
  1393. parents: ["pokemon"]
  1394. },
  1395. "ant": {
  1396. name: "Ant",
  1397. parents: ["insect"]
  1398. },
  1399. "frog": {
  1400. name: "Frog",
  1401. parents: ["amphibian"]
  1402. },
  1403. "amphibian": {
  1404. name: "Amphibian",
  1405. parents: ["animal"]
  1406. },
  1407. "pangolin": {
  1408. name: "Pangolin",
  1409. parents: ["mammal"]
  1410. },
  1411. "uragi'viidorn": {
  1412. name: "Uragi'viidorn",
  1413. parents: ["avian", "bear"]
  1414. },
  1415. "gryphdelphais": {
  1416. name: "Gryphdelphais",
  1417. parents: ["dolphin", "gryphon"]
  1418. },
  1419. "plush": {
  1420. name: "Plush",
  1421. parents: ["construct"]
  1422. },
  1423. "draiger": {
  1424. name: "Draiger",
  1425. parents: ["dragon","tiger"]
  1426. },
  1427. "foxsky": {
  1428. name: "Foxsky",
  1429. parents: ["fox", "husky"]
  1430. },
  1431. "umbreon": {
  1432. name: "Umbreon",
  1433. parents: ["eeveelution"]
  1434. },
  1435. "slime-dragon": {
  1436. name: "Slime Dragon",
  1437. parents: ["dragon"]
  1438. },
  1439. "enderman": {
  1440. name: "Enderman",
  1441. parents: ["monster"]
  1442. },
  1443. "gremlin": {
  1444. name: "Gremlin",
  1445. parents: ["monster"]
  1446. },
  1447. "dragonsune": {
  1448. name: "Dragonsune",
  1449. parents: ["dragon", "kitsune"]
  1450. },
  1451. "ghost": {
  1452. name: "Ghost",
  1453. parents: ["monster"]
  1454. },
  1455. "false-vampire-bat": {
  1456. name: "False Vampire Bat",
  1457. parents: ["bat"]
  1458. },
  1459. "succubus": {
  1460. name: "Succubus",
  1461. parents: ["demon"]
  1462. },
  1463. "mia": {
  1464. name: "Mia",
  1465. parents: ["canine"]
  1466. },
  1467. "rainbow": {
  1468. name: "Rainbow",
  1469. parents: ["monster"]
  1470. },
  1471. "solgaleo": {
  1472. name: "Solgaleo",
  1473. parents: ["pokemon"]
  1474. },
  1475. "lucent-nargacuga": {
  1476. name: "Lucent Nargacuga",
  1477. parents: ["monster-hunter"]
  1478. },
  1479. "monster-hunter": {
  1480. name: "Monster Hunter",
  1481. parents: ["monster"]
  1482. },
  1483. "leviathan": {
  1484. "name": "Leviathan",
  1485. "url": "sea-monster"
  1486. },
  1487. "bull": {
  1488. name: "Bull",
  1489. parents: ["mammal"]
  1490. },
  1491. "tanuki": {
  1492. name: "Tanuki",
  1493. parents: ["monster"]
  1494. },
  1495. "chakat": {
  1496. name: "Chakat",
  1497. parents: ["cat"]
  1498. },
  1499. "hydra": {
  1500. name: "Hydra",
  1501. parents: ["monster"]
  1502. },
  1503. "zigzagoon": {
  1504. name: "Zigzagoon",
  1505. parents: ["raccoon", "pokemon"]
  1506. },
  1507. "vulture": {
  1508. name: "Vulture",
  1509. parents: ["avian"]
  1510. },
  1511. "eastern-dragon": {
  1512. name: "Eastern Dragon",
  1513. parents: ["dragon"]
  1514. },
  1515. "gryffon": {
  1516. name: "Gryffon",
  1517. parents: ["phoenix", "red-panda"]
  1518. },
  1519. "amtsvane": {
  1520. name: "Amtsvane",
  1521. parents: ["reptile"]
  1522. },
  1523. "kigavi": {
  1524. name: "Kigavi",
  1525. parents: ["avian"]
  1526. },
  1527. "turian": {
  1528. name: "Turian",
  1529. parents: ["avian"]
  1530. },
  1531. "zeraora": {
  1532. name: "Zeraora",
  1533. parents: ["pokemon"]
  1534. },
  1535. "sandshrew": {
  1536. name: "Sandshrew",
  1537. parents: ["pokemon", "pangolin"]
  1538. },
  1539. "valais-blacknose-sheep": {
  1540. name: "Valais Blacknose Sheep",
  1541. parents: ["sheep"]
  1542. },
  1543. "novaleit": {
  1544. name: "Novaleit",
  1545. parents: ["mammal"]
  1546. },
  1547. "dunnoh": {
  1548. name: "Dunnoh",
  1549. parents: ["mammal"]
  1550. },
  1551. "lunaral-dragon": {
  1552. name: "Lunaral Dragon",
  1553. parents: ["dragon"]
  1554. },
  1555. "arctic-wolf": {
  1556. name: "Arctic Wolf",
  1557. parents: ["wolf"]
  1558. },
  1559. "donkey": {
  1560. name: "Donkey",
  1561. parents: ["horse"]
  1562. },
  1563. "chinchilla": {
  1564. name: "Chinchilla",
  1565. parents: ["rodent"]
  1566. },
  1567. "felkin": {
  1568. name: "Felkin",
  1569. parents: ["dragon"]
  1570. },
  1571. "tykeriel": {
  1572. name: "Tykeriel",
  1573. parents: ["avian"]
  1574. },
  1575. }
  1576. //species
  1577. function getSpeciesInfo(speciesList) {
  1578. let result = new Set();
  1579. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1580. result.add(entry)
  1581. });
  1582. return Array.from(result);
  1583. };
  1584. function getSpeciesInfoHelper(species) {
  1585. if (!speciesData[species]) {
  1586. console.warn(species + " doesn't exist");
  1587. return [];
  1588. }
  1589. if (speciesData[species].parents) {
  1590. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1591. } else {
  1592. return [species];
  1593. }
  1594. }
  1595. characterMakers.push(() => makeCharacter(
  1596. {
  1597. name: "Fen",
  1598. species: ["crux"],
  1599. description: {
  1600. title: "Bio",
  1601. text: "Very furry. Sheds on everything."
  1602. },
  1603. tags: [
  1604. "anthro",
  1605. "goo"
  1606. ]
  1607. },
  1608. {
  1609. back: {
  1610. height: math.unit(2.2428, "meter"),
  1611. weight: math.unit(124.738, "kg"),
  1612. name: "Back",
  1613. image: {
  1614. source: "./media/characters/fen/back.svg",
  1615. extra: 2024 / 1867,
  1616. bottom: 13 / 2037
  1617. },
  1618. info: {
  1619. description: {
  1620. mode: "append",
  1621. text: "\n\nHe is not currently looking at you."
  1622. }
  1623. }
  1624. },
  1625. full: {
  1626. height: math.unit(1.34, "meter"),
  1627. weight: math.unit(225, "kg"),
  1628. name: "Full",
  1629. image: {
  1630. source: "./media/characters/fen/full.svg"
  1631. },
  1632. info: {
  1633. description: {
  1634. mode: "append",
  1635. text: "\n\nMunch."
  1636. }
  1637. }
  1638. },
  1639. kneeling: {
  1640. height: math.unit(5.4, "feet"),
  1641. weight: math.unit(124.738, "kg"),
  1642. name: "Kneeling",
  1643. image: {
  1644. source: "./media/characters/fen/kneeling.svg",
  1645. extra: 563 / 507
  1646. }
  1647. },
  1648. goo: {
  1649. height: math.unit(2.8, "feet"),
  1650. weight: math.unit(125, "kg"),
  1651. capacity: math.unit(1, "people"),
  1652. name: "Goo",
  1653. image: {
  1654. source: "./media/characters/fen/goo.svg",
  1655. bottom: 116 / 613
  1656. }
  1657. },
  1658. lounging: {
  1659. height: math.unit(6.5, "feet"),
  1660. weight: math.unit(125, "kg"),
  1661. name: "Lounging",
  1662. image: {
  1663. source: "./media/characters/fen/lounging.svg"
  1664. }
  1665. },
  1666. },
  1667. [
  1668. {
  1669. name: "Normal",
  1670. height: math.unit(2.2428, "meter")
  1671. },
  1672. {
  1673. name: "Big",
  1674. height: math.unit(12, "feet")
  1675. },
  1676. {
  1677. name: "Minimacro",
  1678. height: math.unit(40, "feet"),
  1679. default: true,
  1680. info: {
  1681. description: {
  1682. mode: "append",
  1683. text: "\n\nTOO DAMN BIG"
  1684. }
  1685. }
  1686. },
  1687. {
  1688. name: "Macro",
  1689. height: math.unit(100, "feet"),
  1690. info: {
  1691. description: {
  1692. mode: "append",
  1693. text: "\n\nTOO DAMN BIG"
  1694. }
  1695. }
  1696. },
  1697. {
  1698. name: "Macro+",
  1699. height: math.unit(300, "feet")
  1700. },
  1701. {
  1702. name: "Megamacro",
  1703. height: math.unit(2, "miles")
  1704. }
  1705. ]
  1706. ))
  1707. characterMakers.push(() => makeCharacter(
  1708. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1709. {
  1710. front: {
  1711. height: math.unit(183, "cm"),
  1712. weight: math.unit(80, "kg"),
  1713. name: "Front",
  1714. image: {
  1715. source: "./media/characters/sofia-fluttertail/front.svg",
  1716. bottom: 0.01,
  1717. extra: 2154 / 2081
  1718. }
  1719. },
  1720. frontAlt: {
  1721. height: math.unit(183, "cm"),
  1722. weight: math.unit(80, "kg"),
  1723. name: "Front (alt)",
  1724. image: {
  1725. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1726. }
  1727. },
  1728. back: {
  1729. height: math.unit(183, "cm"),
  1730. weight: math.unit(80, "kg"),
  1731. name: "Back",
  1732. image: {
  1733. source: "./media/characters/sofia-fluttertail/back.svg"
  1734. }
  1735. },
  1736. kneeling: {
  1737. height: math.unit(125, "cm"),
  1738. weight: math.unit(80, "kg"),
  1739. name: "Kneeling",
  1740. image: {
  1741. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1742. extra: 1033 / 977,
  1743. bottom: 23.7 / 1057
  1744. }
  1745. },
  1746. maw: {
  1747. height: math.unit(183 / 5, "cm"),
  1748. name: "Maw",
  1749. image: {
  1750. source: "./media/characters/sofia-fluttertail/maw.svg"
  1751. }
  1752. },
  1753. mawcloseup: {
  1754. height: math.unit(183 / 5 * 0.41, "cm"),
  1755. name: "Maw (Closeup)",
  1756. image: {
  1757. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1758. }
  1759. },
  1760. paws: {
  1761. height: math.unit(1.17, "feet"),
  1762. name: "Paws",
  1763. image: {
  1764. source: "./media/characters/sofia-fluttertail/paws.svg",
  1765. extra: 851 / 851,
  1766. bottom: 17 / 868
  1767. }
  1768. },
  1769. },
  1770. [
  1771. {
  1772. name: "Normal",
  1773. height: math.unit(1.83, "meter")
  1774. },
  1775. {
  1776. name: "Size Thief",
  1777. height: math.unit(18, "feet")
  1778. },
  1779. {
  1780. name: "50 Foot Collie",
  1781. height: math.unit(50, "feet")
  1782. },
  1783. {
  1784. name: "Macro",
  1785. height: math.unit(96, "feet"),
  1786. default: true
  1787. },
  1788. {
  1789. name: "Megamerger",
  1790. height: math.unit(650, "feet")
  1791. },
  1792. ]
  1793. ))
  1794. characterMakers.push(() => makeCharacter(
  1795. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1796. {
  1797. front: {
  1798. height: math.unit(7, "feet"),
  1799. weight: math.unit(100, "kg"),
  1800. name: "Front",
  1801. image: {
  1802. source: "./media/characters/march/front.svg",
  1803. extra: 1,
  1804. bottom: 0.015
  1805. }
  1806. },
  1807. foot: {
  1808. height: math.unit(0.9, "feet"),
  1809. name: "Foot",
  1810. image: {
  1811. source: "./media/characters/march/foot.svg"
  1812. }
  1813. },
  1814. },
  1815. [
  1816. {
  1817. name: "Normal",
  1818. height: math.unit(7.9, "feet")
  1819. },
  1820. {
  1821. name: "Macro",
  1822. height: math.unit(220, "meters")
  1823. },
  1824. {
  1825. name: "Megamacro",
  1826. height: math.unit(2.98, "km"),
  1827. default: true
  1828. },
  1829. {
  1830. name: "Gigamacro",
  1831. height: math.unit(15963, "km")
  1832. },
  1833. {
  1834. name: "Teramacro",
  1835. height: math.unit(2980000000, "km")
  1836. },
  1837. {
  1838. name: "Examacro",
  1839. height: math.unit(250, "parsecs")
  1840. },
  1841. ]
  1842. ))
  1843. characterMakers.push(() => makeCharacter(
  1844. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1845. {
  1846. front: {
  1847. height: math.unit(6, "feet"),
  1848. weight: math.unit(60, "kg"),
  1849. name: "Front",
  1850. image: {
  1851. source: "./media/characters/noir/front.svg",
  1852. extra: 1,
  1853. bottom: 0.032
  1854. }
  1855. },
  1856. },
  1857. [
  1858. {
  1859. name: "Normal",
  1860. height: math.unit(6.6, "feet")
  1861. },
  1862. {
  1863. name: "Macro",
  1864. height: math.unit(500, "feet")
  1865. },
  1866. {
  1867. name: "Megamacro",
  1868. height: math.unit(2.5, "km"),
  1869. default: true
  1870. },
  1871. {
  1872. name: "Gigamacro",
  1873. height: math.unit(22500, "km")
  1874. },
  1875. {
  1876. name: "Teramacro",
  1877. height: math.unit(2500000000, "km")
  1878. },
  1879. {
  1880. name: "Examacro",
  1881. height: math.unit(200, "parsecs")
  1882. },
  1883. ]
  1884. ))
  1885. characterMakers.push(() => makeCharacter(
  1886. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1887. {
  1888. front: {
  1889. height: math.unit(7, "feet"),
  1890. weight: math.unit(100, "kg"),
  1891. name: "Front",
  1892. image: {
  1893. source: "./media/characters/okuri/front.svg",
  1894. extra: 1,
  1895. bottom: 0.037
  1896. }
  1897. },
  1898. back: {
  1899. height: math.unit(7, "feet"),
  1900. weight: math.unit(100, "kg"),
  1901. name: "Back",
  1902. image: {
  1903. source: "./media/characters/okuri/back.svg",
  1904. extra: 1,
  1905. bottom: 0.007
  1906. }
  1907. },
  1908. },
  1909. [
  1910. {
  1911. name: "Megamacro",
  1912. height: math.unit(100, "miles"),
  1913. default: true
  1914. },
  1915. ]
  1916. ))
  1917. characterMakers.push(() => makeCharacter(
  1918. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1919. {
  1920. front: {
  1921. height: math.unit(7, "feet"),
  1922. weight: math.unit(100, "kg"),
  1923. name: "Front",
  1924. image: {
  1925. source: "./media/characters/manny/front.svg",
  1926. extra: 1,
  1927. bottom: 0.06
  1928. }
  1929. },
  1930. back: {
  1931. height: math.unit(7, "feet"),
  1932. weight: math.unit(100, "kg"),
  1933. name: "Back",
  1934. image: {
  1935. source: "./media/characters/manny/back.svg",
  1936. extra: 1,
  1937. bottom: 0.014
  1938. }
  1939. },
  1940. },
  1941. [
  1942. {
  1943. name: "Normal",
  1944. height: math.unit(7, "feet"),
  1945. },
  1946. {
  1947. name: "Macro",
  1948. height: math.unit(78, "feet"),
  1949. default: true
  1950. },
  1951. {
  1952. name: "Macro+",
  1953. height: math.unit(300, "meters")
  1954. },
  1955. {
  1956. name: "Macro++",
  1957. height: math.unit(2400, "meters")
  1958. },
  1959. {
  1960. name: "Megamacro",
  1961. height: math.unit(5167, "meters")
  1962. },
  1963. {
  1964. name: "Gigamacro",
  1965. height: math.unit(41769, "miles")
  1966. },
  1967. ]
  1968. ))
  1969. characterMakers.push(() => makeCharacter(
  1970. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1971. {
  1972. front: {
  1973. height: math.unit(7, "feet"),
  1974. weight: math.unit(100, "kg"),
  1975. name: "Front",
  1976. image: {
  1977. source: "./media/characters/adake/front-1.svg"
  1978. }
  1979. },
  1980. frontAlt: {
  1981. height: math.unit(7, "feet"),
  1982. weight: math.unit(100, "kg"),
  1983. name: "Front (Alt)",
  1984. image: {
  1985. source: "./media/characters/adake/front-2.svg",
  1986. extra: 1,
  1987. bottom: 0.01
  1988. }
  1989. },
  1990. back: {
  1991. height: math.unit(7, "feet"),
  1992. weight: math.unit(100, "kg"),
  1993. name: "Back",
  1994. image: {
  1995. source: "./media/characters/adake/back.svg",
  1996. }
  1997. },
  1998. kneel: {
  1999. height: math.unit(5.385, "feet"),
  2000. weight: math.unit(100, "kg"),
  2001. name: "Kneeling",
  2002. image: {
  2003. source: "./media/characters/adake/kneel.svg",
  2004. bottom: 0.052
  2005. }
  2006. },
  2007. },
  2008. [
  2009. {
  2010. name: "Normal",
  2011. height: math.unit(7, "feet"),
  2012. },
  2013. {
  2014. name: "Macro",
  2015. height: math.unit(78, "feet"),
  2016. default: true
  2017. },
  2018. {
  2019. name: "Macro+",
  2020. height: math.unit(300, "meters")
  2021. },
  2022. {
  2023. name: "Macro++",
  2024. height: math.unit(2400, "meters")
  2025. },
  2026. {
  2027. name: "Megamacro",
  2028. height: math.unit(5167, "meters")
  2029. },
  2030. {
  2031. name: "Gigamacro",
  2032. height: math.unit(41769, "miles")
  2033. },
  2034. ]
  2035. ))
  2036. characterMakers.push(() => makeCharacter(
  2037. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2038. {
  2039. front: {
  2040. height: math.unit(1.65, "meters"),
  2041. weight: math.unit(50, "kg"),
  2042. name: "Front",
  2043. image: {
  2044. source: "./media/characters/elijah/front.svg",
  2045. extra: 858 / 830,
  2046. bottom: 95.5 / 953.8559
  2047. }
  2048. },
  2049. back: {
  2050. height: math.unit(1.65, "meters"),
  2051. weight: math.unit(50, "kg"),
  2052. name: "Back",
  2053. image: {
  2054. source: "./media/characters/elijah/back.svg",
  2055. extra: 895 / 850,
  2056. bottom: 5.3 / 897.956
  2057. }
  2058. },
  2059. frontNsfw: {
  2060. height: math.unit(1.65, "meters"),
  2061. weight: math.unit(50, "kg"),
  2062. name: "Front (NSFW)",
  2063. image: {
  2064. source: "./media/characters/elijah/front-nsfw.svg",
  2065. extra: 858 / 830,
  2066. bottom: 95.5 / 953.8559
  2067. }
  2068. },
  2069. backNsfw: {
  2070. height: math.unit(1.65, "meters"),
  2071. weight: math.unit(50, "kg"),
  2072. name: "Back (NSFW)",
  2073. image: {
  2074. source: "./media/characters/elijah/back-nsfw.svg",
  2075. extra: 895 / 850,
  2076. bottom: 5.3 / 897.956
  2077. }
  2078. },
  2079. dick: {
  2080. height: math.unit(1, "feet"),
  2081. name: "Dick",
  2082. image: {
  2083. source: "./media/characters/elijah/dick.svg"
  2084. }
  2085. },
  2086. beakOpen: {
  2087. height: math.unit(1.25, "feet"),
  2088. name: "Beak (Open)",
  2089. image: {
  2090. source: "./media/characters/elijah/beak-open.svg"
  2091. }
  2092. },
  2093. beakShut: {
  2094. height: math.unit(1.25, "feet"),
  2095. name: "Beak (Shut)",
  2096. image: {
  2097. source: "./media/characters/elijah/beak-shut.svg"
  2098. }
  2099. },
  2100. footFlexing: {
  2101. height: math.unit(1.61, "feet"),
  2102. name: "Foot (Flexing)",
  2103. image: {
  2104. source: "./media/characters/elijah/foot-flexing.svg"
  2105. }
  2106. },
  2107. footStepping: {
  2108. height: math.unit(1.44, "feet"),
  2109. name: "Foot (Stepping)",
  2110. image: {
  2111. source: "./media/characters/elijah/foot-stepping.svg"
  2112. }
  2113. },
  2114. plantigradeLeg: {
  2115. height: math.unit(2.34, "feet"),
  2116. name: "Plantigrade Leg",
  2117. image: {
  2118. source: "./media/characters/elijah/plantigrade-leg.svg"
  2119. }
  2120. },
  2121. plantigradeFootLeft: {
  2122. height: math.unit(0.9, "feet"),
  2123. name: "Plantigrade Foot (Left)",
  2124. image: {
  2125. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2126. }
  2127. },
  2128. plantigradeFootRight: {
  2129. height: math.unit(0.9, "feet"),
  2130. name: "Plantigrade Foot (Right)",
  2131. image: {
  2132. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2133. }
  2134. },
  2135. },
  2136. [
  2137. {
  2138. name: "Normal",
  2139. height: math.unit(1.65, "meters")
  2140. },
  2141. {
  2142. name: "Macro",
  2143. height: math.unit(55, "meters"),
  2144. default: true
  2145. },
  2146. {
  2147. name: "Macro+",
  2148. height: math.unit(105, "meters")
  2149. },
  2150. ]
  2151. ))
  2152. characterMakers.push(() => makeCharacter(
  2153. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2154. {
  2155. front: {
  2156. height: math.unit(11, "feet"),
  2157. weight: math.unit(80, "kg"),
  2158. name: "Front",
  2159. image: {
  2160. source: "./media/characters/rai/front.svg",
  2161. extra: 1,
  2162. bottom: 0.03
  2163. }
  2164. },
  2165. side: {
  2166. height: math.unit(11, "feet"),
  2167. weight: math.unit(80, "kg"),
  2168. name: "Side",
  2169. image: {
  2170. source: "./media/characters/rai/side.svg"
  2171. }
  2172. },
  2173. back: {
  2174. height: math.unit(11, "feet"),
  2175. weight: math.unit(80, "lb"),
  2176. name: "Back",
  2177. image: {
  2178. source: "./media/characters/rai/back.svg",
  2179. extra: 1,
  2180. bottom: 0.01
  2181. }
  2182. },
  2183. feral: {
  2184. height: math.unit(11, "feet"),
  2185. weight: math.unit(800, "lb"),
  2186. name: "Feral",
  2187. image: {
  2188. source: "./media/characters/rai/feral.svg",
  2189. extra: 1050 / 659,
  2190. bottom: 0.07
  2191. }
  2192. },
  2193. dragon: {
  2194. height: math.unit(23, "feet"),
  2195. weight: math.unit(50000, "lb"),
  2196. name: "Dragon",
  2197. image: {
  2198. source: "./media/characters/rai/dragon.svg",
  2199. extra: 2498 / 2030,
  2200. bottom: 85.2 / 2584
  2201. }
  2202. },
  2203. maw: {
  2204. height: math.unit(6 / 3.81416, "feet"),
  2205. name: "Maw",
  2206. image: {
  2207. source: "./media/characters/rai/maw.svg"
  2208. }
  2209. },
  2210. },
  2211. [
  2212. {
  2213. name: "Normal",
  2214. height: math.unit(11, "feet")
  2215. },
  2216. {
  2217. name: "Macro",
  2218. height: math.unit(302, "feet"),
  2219. default: true
  2220. },
  2221. ]
  2222. ))
  2223. characterMakers.push(() => makeCharacter(
  2224. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2225. {
  2226. frontDressed: {
  2227. height: math.unit(216, "feet"),
  2228. weight: math.unit(7000000, "lb"),
  2229. name: "Front (Dressed)",
  2230. image: {
  2231. source: "./media/characters/jazzy/front-dressed.svg",
  2232. extra: 2738 / 2651,
  2233. bottom: 41.8 / 2786
  2234. }
  2235. },
  2236. backDressed: {
  2237. height: math.unit(216, "feet"),
  2238. weight: math.unit(7000000, "lb"),
  2239. name: "Back (Dressed)",
  2240. image: {
  2241. source: "./media/characters/jazzy/back-dressed.svg",
  2242. extra: 2775 / 2673,
  2243. bottom: 36.8 / 2817
  2244. }
  2245. },
  2246. front: {
  2247. height: math.unit(216, "feet"),
  2248. weight: math.unit(7000000, "lb"),
  2249. name: "Front",
  2250. image: {
  2251. source: "./media/characters/jazzy/front.svg",
  2252. extra: 2738 / 2651,
  2253. bottom: 41.8 / 2786
  2254. }
  2255. },
  2256. back: {
  2257. height: math.unit(216, "feet"),
  2258. weight: math.unit(7000000, "lb"),
  2259. name: "Back",
  2260. image: {
  2261. source: "./media/characters/jazzy/back.svg",
  2262. extra: 2775 / 2673,
  2263. bottom: 36.8 / 2817
  2264. }
  2265. },
  2266. maw: {
  2267. height: math.unit(20, "feet"),
  2268. name: "Maw",
  2269. image: {
  2270. source: "./media/characters/jazzy/maw.svg"
  2271. }
  2272. },
  2273. paws: {
  2274. height: math.unit(27.5, "feet"),
  2275. name: "Paws",
  2276. image: {
  2277. source: "./media/characters/jazzy/paws.svg"
  2278. }
  2279. },
  2280. eye: {
  2281. height: math.unit(4.4, "feet"),
  2282. name: "Eye",
  2283. image: {
  2284. source: "./media/characters/jazzy/eye.svg"
  2285. }
  2286. },
  2287. droneOffense: {
  2288. height: math.unit(9.5, "inches"),
  2289. name: "Drone (Offense)",
  2290. image: {
  2291. source: "./media/characters/jazzy/drone-offense.svg"
  2292. }
  2293. },
  2294. droneRecon: {
  2295. height: math.unit(9.5, "inches"),
  2296. name: "Drone (Recon)",
  2297. image: {
  2298. source: "./media/characters/jazzy/drone-recon.svg"
  2299. }
  2300. },
  2301. droneDefense: {
  2302. height: math.unit(9.5, "inches"),
  2303. name: "Drone (Defense)",
  2304. image: {
  2305. source: "./media/characters/jazzy/drone-defense.svg"
  2306. }
  2307. },
  2308. },
  2309. [
  2310. {
  2311. name: "Macro",
  2312. height: math.unit(216, "feet"),
  2313. default: true
  2314. },
  2315. ]
  2316. ))
  2317. characterMakers.push(() => makeCharacter(
  2318. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2319. {
  2320. front: {
  2321. height: math.unit(7, "feet"),
  2322. weight: math.unit(80, "kg"),
  2323. name: "Front",
  2324. image: {
  2325. source: "./media/characters/flamm/front.svg",
  2326. extra: 1794 / 1677,
  2327. bottom: 31.7 / 1828.5
  2328. }
  2329. },
  2330. },
  2331. [
  2332. {
  2333. name: "Normal",
  2334. height: math.unit(9.5, "feet")
  2335. },
  2336. {
  2337. name: "Macro",
  2338. height: math.unit(200, "feet"),
  2339. default: true
  2340. },
  2341. ]
  2342. ))
  2343. characterMakers.push(() => makeCharacter(
  2344. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2345. {
  2346. front: {
  2347. height: math.unit(5 + 3/12, "feet"),
  2348. weight: math.unit(60, "kg"),
  2349. name: "Front",
  2350. image: {
  2351. source: "./media/characters/zephiro/front.svg",
  2352. extra: 2309 / 2162,
  2353. bottom: 0.069
  2354. }
  2355. },
  2356. side: {
  2357. height: math.unit(5 + 3/12, "feet"),
  2358. weight: math.unit(60, "kg"),
  2359. name: "Side",
  2360. image: {
  2361. source: "./media/characters/zephiro/side.svg",
  2362. extra: 2403 / 2279,
  2363. bottom: 0.015
  2364. }
  2365. },
  2366. back: {
  2367. height: math.unit(5 + 3/12, "feet"),
  2368. weight: math.unit(60, "kg"),
  2369. name: "Back",
  2370. image: {
  2371. source: "./media/characters/zephiro/back.svg",
  2372. extra: 2373 / 2244,
  2373. bottom: 0.013
  2374. }
  2375. },
  2376. hand: {
  2377. height: math.unit(0.68, "feet"),
  2378. name: "Hand",
  2379. image: {
  2380. source: "./media/characters/zephiro/hand.svg"
  2381. }
  2382. },
  2383. paw: {
  2384. height: math.unit(1, "feet"),
  2385. name: "Paw",
  2386. image: {
  2387. source: "./media/characters/zephiro/paw.svg"
  2388. }
  2389. },
  2390. beans: {
  2391. height: math.unit(0.93, "feet"),
  2392. name: "Beans",
  2393. image: {
  2394. source: "./media/characters/zephiro/beans.svg"
  2395. }
  2396. },
  2397. },
  2398. [
  2399. {
  2400. name: "Micro",
  2401. height: math.unit(3, "inches")
  2402. },
  2403. {
  2404. name: "Normal",
  2405. height: math.unit(5 + 3 / 12, "feet"),
  2406. default: true
  2407. },
  2408. {
  2409. name: "Macro",
  2410. height: math.unit(118, "feet")
  2411. },
  2412. ]
  2413. ))
  2414. characterMakers.push(() => makeCharacter(
  2415. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2416. {
  2417. front: {
  2418. height: math.unit(5, "feet"),
  2419. weight: math.unit(90, "kg"),
  2420. name: "Front",
  2421. image: {
  2422. source: "./media/characters/fory/front.svg",
  2423. extra: 2862 / 2674,
  2424. bottom: 180 / 3043.8
  2425. }
  2426. },
  2427. back: {
  2428. height: math.unit(5, "feet"),
  2429. weight: math.unit(90, "kg"),
  2430. name: "Back",
  2431. image: {
  2432. source: "./media/characters/fory/back.svg",
  2433. extra: 2962 / 2791,
  2434. bottom: 106 / 3071.8
  2435. }
  2436. },
  2437. foot: {
  2438. height: math.unit(2.14, "feet"),
  2439. name: "Foot",
  2440. image: {
  2441. source: "./media/characters/fory/foot.svg"
  2442. }
  2443. },
  2444. },
  2445. [
  2446. {
  2447. name: "Normal",
  2448. height: math.unit(5, "feet")
  2449. },
  2450. {
  2451. name: "Macro",
  2452. height: math.unit(50, "feet"),
  2453. default: true
  2454. },
  2455. {
  2456. name: "Megamacro",
  2457. height: math.unit(10, "miles")
  2458. },
  2459. {
  2460. name: "Gigamacro",
  2461. height: math.unit(5, "earths")
  2462. },
  2463. ]
  2464. ))
  2465. characterMakers.push(() => makeCharacter(
  2466. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2467. {
  2468. front: {
  2469. height: math.unit(7, "feet"),
  2470. weight: math.unit(90, "kg"),
  2471. name: "Front",
  2472. image: {
  2473. source: "./media/characters/kurrikage/front.svg",
  2474. extra: 1,
  2475. bottom: 0.035
  2476. }
  2477. },
  2478. back: {
  2479. height: math.unit(7, "feet"),
  2480. weight: math.unit(90, "lb"),
  2481. name: "Back",
  2482. image: {
  2483. source: "./media/characters/kurrikage/back.svg"
  2484. }
  2485. },
  2486. paw: {
  2487. height: math.unit(1.5, "feet"),
  2488. name: "Paw",
  2489. image: {
  2490. source: "./media/characters/kurrikage/paw.svg"
  2491. }
  2492. },
  2493. staff: {
  2494. height: math.unit(6.7, "feet"),
  2495. name: "Staff",
  2496. image: {
  2497. source: "./media/characters/kurrikage/staff.svg"
  2498. }
  2499. },
  2500. peek: {
  2501. height: math.unit(1.05, "feet"),
  2502. name: "Peeking",
  2503. image: {
  2504. source: "./media/characters/kurrikage/peek.svg",
  2505. bottom: 0.08
  2506. }
  2507. },
  2508. },
  2509. [
  2510. {
  2511. name: "Normal",
  2512. height: math.unit(12, "feet"),
  2513. default: true
  2514. },
  2515. {
  2516. name: "Big",
  2517. height: math.unit(20, "feet")
  2518. },
  2519. {
  2520. name: "Macro",
  2521. height: math.unit(500, "feet")
  2522. },
  2523. {
  2524. name: "Megamacro",
  2525. height: math.unit(20, "miles")
  2526. },
  2527. ]
  2528. ))
  2529. characterMakers.push(() => makeCharacter(
  2530. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2531. {
  2532. front: {
  2533. height: math.unit(6, "feet"),
  2534. weight: math.unit(75, "kg"),
  2535. name: "Front",
  2536. image: {
  2537. source: "./media/characters/shingo/front.svg",
  2538. extra: 706/681,
  2539. bottom: 11/717
  2540. }
  2541. },
  2542. frontAlt: {
  2543. height: math.unit(6, "feet"),
  2544. weight: math.unit(75, "kg"),
  2545. name: "Front (Alt)",
  2546. image: {
  2547. source: "./media/characters/shingo/front-alt.svg",
  2548. extra: 3511 / 3338,
  2549. bottom: 0.005
  2550. }
  2551. },
  2552. paw: {
  2553. height: math.unit(1, "feet"),
  2554. name: "Paw",
  2555. image: {
  2556. source: "./media/characters/shingo/paw.svg"
  2557. }
  2558. },
  2559. },
  2560. [
  2561. {
  2562. name: "Micro",
  2563. height: math.unit(4, "inches")
  2564. },
  2565. {
  2566. name: "Normal",
  2567. height: math.unit(6, "feet"),
  2568. default: true
  2569. },
  2570. {
  2571. name: "Macro",
  2572. height: math.unit(108, "feet")
  2573. },
  2574. {
  2575. name: "Macro+",
  2576. height: math.unit(1500, "feet")
  2577. },
  2578. ]
  2579. ))
  2580. characterMakers.push(() => makeCharacter(
  2581. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2582. {
  2583. side: {
  2584. height: math.unit(6, "feet"),
  2585. weight: math.unit(75, "kg"),
  2586. name: "Side",
  2587. image: {
  2588. source: "./media/characters/aigey/side.svg"
  2589. }
  2590. },
  2591. },
  2592. [
  2593. {
  2594. name: "Macro",
  2595. height: math.unit(200, "feet"),
  2596. default: true
  2597. },
  2598. {
  2599. name: "Megamacro",
  2600. height: math.unit(100, "miles")
  2601. },
  2602. ]
  2603. )
  2604. )
  2605. characterMakers.push(() => makeCharacter(
  2606. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2607. {
  2608. front: {
  2609. height: math.unit(5 + 5 / 12, "feet"),
  2610. weight: math.unit(75, "kg"),
  2611. name: "Front",
  2612. image: {
  2613. source: "./media/characters/natasha/front.svg",
  2614. extra: 859 / 824,
  2615. bottom: 23 / 879.6
  2616. }
  2617. },
  2618. frontNsfw: {
  2619. height: math.unit(5 + 5 / 12, "feet"),
  2620. weight: math.unit(75, "kg"),
  2621. name: "Front (NSFW)",
  2622. image: {
  2623. source: "./media/characters/natasha/front-nsfw.svg",
  2624. extra: 859 / 824,
  2625. bottom: 23 / 879.6
  2626. }
  2627. },
  2628. frontErect: {
  2629. height: math.unit(5 + 5 / 12, "feet"),
  2630. weight: math.unit(75, "kg"),
  2631. name: "Front (Erect)",
  2632. image: {
  2633. source: "./media/characters/natasha/front-erect.svg",
  2634. extra: 859 / 824,
  2635. bottom: 23 / 879.6
  2636. }
  2637. },
  2638. back: {
  2639. height: math.unit(5 + 5 / 12, "feet"),
  2640. weight: math.unit(75, "kg"),
  2641. name: "Back",
  2642. image: {
  2643. source: "./media/characters/natasha/back.svg",
  2644. extra: 887.9 / 852.6,
  2645. bottom: 9.7 / 896.4
  2646. }
  2647. },
  2648. backAlt: {
  2649. height: math.unit(5 + 5 / 12, "feet"),
  2650. weight: math.unit(75, "kg"),
  2651. name: "Back (Alt)",
  2652. image: {
  2653. source: "./media/characters/natasha/back-alt.svg",
  2654. extra: 1236.7 / 1192,
  2655. bottom: 22.3 / 1258.2
  2656. }
  2657. },
  2658. dick: {
  2659. height: math.unit(1.772, "feet"),
  2660. name: "Dick",
  2661. image: {
  2662. source: "./media/characters/natasha/dick.svg"
  2663. }
  2664. },
  2665. paw: {
  2666. height: math.unit(0.250, "meters"),
  2667. name: "Paw",
  2668. image: {
  2669. source: "./media/characters/natasha/paw.svg"
  2670. }
  2671. },
  2672. },
  2673. [
  2674. {
  2675. name: "Normal",
  2676. height: math.unit(5 + 5 / 12, "feet")
  2677. },
  2678. {
  2679. name: "Large",
  2680. height: math.unit(12, "feet")
  2681. },
  2682. {
  2683. name: "Macro",
  2684. height: math.unit(100, "feet"),
  2685. default: true
  2686. },
  2687. {
  2688. name: "Macro+",
  2689. height: math.unit(260, "feet")
  2690. },
  2691. {
  2692. name: "Macro++",
  2693. height: math.unit(1, "mile")
  2694. },
  2695. ]
  2696. ))
  2697. characterMakers.push(() => makeCharacter(
  2698. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2699. {
  2700. front: {
  2701. height: math.unit(6, "feet"),
  2702. weight: math.unit(75, "kg"),
  2703. name: "Front",
  2704. image: {
  2705. source: "./media/characters/malik/front.svg"
  2706. }
  2707. },
  2708. side: {
  2709. height: math.unit(6, "feet"),
  2710. weight: math.unit(75, "kg"),
  2711. name: "Side",
  2712. image: {
  2713. source: "./media/characters/malik/side.svg",
  2714. extra: 1.1539
  2715. }
  2716. },
  2717. back: {
  2718. height: math.unit(6, "feet"),
  2719. weight: math.unit(75, "kg"),
  2720. name: "Back",
  2721. image: {
  2722. source: "./media/characters/malik/back.svg"
  2723. }
  2724. },
  2725. },
  2726. [
  2727. {
  2728. name: "Macro",
  2729. height: math.unit(156, "feet"),
  2730. default: true
  2731. },
  2732. {
  2733. name: "Macro+",
  2734. height: math.unit(1188, "feet")
  2735. },
  2736. ]
  2737. ))
  2738. characterMakers.push(() => makeCharacter(
  2739. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2740. {
  2741. front: {
  2742. height: math.unit(6, "feet"),
  2743. weight: math.unit(75, "kg"),
  2744. name: "Front",
  2745. image: {
  2746. source: "./media/characters/sefer/front.svg",
  2747. extra: 848 / 659,
  2748. bottom: 28.3 / 876.442
  2749. }
  2750. },
  2751. back: {
  2752. height: math.unit(6, "feet"),
  2753. weight: math.unit(75, "kg"),
  2754. name: "Back",
  2755. image: {
  2756. source: "./media/characters/sefer/back.svg",
  2757. extra: 864 / 695,
  2758. bottom: 10 / 871
  2759. }
  2760. },
  2761. frontDressed: {
  2762. height: math.unit(6, "feet"),
  2763. weight: math.unit(75, "kg"),
  2764. name: "Front (Dressed)",
  2765. image: {
  2766. source: "./media/characters/sefer/front-dressed.svg",
  2767. extra: 839 / 653,
  2768. bottom: 37.6 / 878
  2769. }
  2770. },
  2771. },
  2772. [
  2773. {
  2774. name: "Normal",
  2775. height: math.unit(6, "feet"),
  2776. default: true
  2777. },
  2778. ]
  2779. ))
  2780. characterMakers.push(() => makeCharacter(
  2781. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2782. {
  2783. body: {
  2784. height: math.unit(2.2428, "meter"),
  2785. weight: math.unit(124.738, "kg"),
  2786. name: "Body",
  2787. image: {
  2788. extra: 1225 / 1050,
  2789. source: "./media/characters/north/front.svg"
  2790. }
  2791. }
  2792. },
  2793. [
  2794. {
  2795. name: "Micro",
  2796. height: math.unit(4, "inches")
  2797. },
  2798. {
  2799. name: "Macro",
  2800. height: math.unit(63, "meters")
  2801. },
  2802. {
  2803. name: "Megamacro",
  2804. height: math.unit(101, "miles"),
  2805. default: true
  2806. }
  2807. ]
  2808. ))
  2809. characterMakers.push(() => makeCharacter(
  2810. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2811. {
  2812. angled: {
  2813. height: math.unit(4, "meter"),
  2814. weight: math.unit(150, "kg"),
  2815. name: "Angled",
  2816. image: {
  2817. source: "./media/characters/talan/angled-sfw.svg",
  2818. bottom: 29 / 3734
  2819. }
  2820. },
  2821. angledNsfw: {
  2822. height: math.unit(4, "meter"),
  2823. weight: math.unit(150, "kg"),
  2824. name: "Angled (NSFW)",
  2825. image: {
  2826. source: "./media/characters/talan/angled-nsfw.svg",
  2827. bottom: 29 / 3734
  2828. }
  2829. },
  2830. frontNsfw: {
  2831. height: math.unit(4, "meter"),
  2832. weight: math.unit(150, "kg"),
  2833. name: "Front (NSFW)",
  2834. image: {
  2835. source: "./media/characters/talan/front-nsfw.svg",
  2836. bottom: 29 / 3734
  2837. }
  2838. },
  2839. sideNsfw: {
  2840. height: math.unit(4, "meter"),
  2841. weight: math.unit(150, "kg"),
  2842. name: "Side (NSFW)",
  2843. image: {
  2844. source: "./media/characters/talan/side-nsfw.svg",
  2845. bottom: 29 / 3734
  2846. }
  2847. },
  2848. back: {
  2849. height: math.unit(4, "meter"),
  2850. weight: math.unit(150, "kg"),
  2851. name: "Back",
  2852. image: {
  2853. source: "./media/characters/talan/back.svg"
  2854. }
  2855. },
  2856. dickBottom: {
  2857. height: math.unit(0.621, "meter"),
  2858. name: "Dick (Bottom)",
  2859. image: {
  2860. source: "./media/characters/talan/dick-bottom.svg"
  2861. }
  2862. },
  2863. dickTop: {
  2864. height: math.unit(0.621, "meter"),
  2865. name: "Dick (Top)",
  2866. image: {
  2867. source: "./media/characters/talan/dick-top.svg"
  2868. }
  2869. },
  2870. dickSide: {
  2871. height: math.unit(0.305, "meter"),
  2872. name: "Dick (Side)",
  2873. image: {
  2874. source: "./media/characters/talan/dick-side.svg"
  2875. }
  2876. },
  2877. dickFront: {
  2878. height: math.unit(0.305, "meter"),
  2879. name: "Dick (Front)",
  2880. image: {
  2881. source: "./media/characters/talan/dick-front.svg"
  2882. }
  2883. },
  2884. },
  2885. [
  2886. {
  2887. name: "Normal",
  2888. height: math.unit(4, "meters")
  2889. },
  2890. {
  2891. name: "Macro",
  2892. height: math.unit(100, "meters")
  2893. },
  2894. {
  2895. name: "Megamacro",
  2896. height: math.unit(2, "miles"),
  2897. default: true
  2898. },
  2899. {
  2900. name: "Gigamacro",
  2901. height: math.unit(5000, "miles")
  2902. },
  2903. {
  2904. name: "Teramacro",
  2905. height: math.unit(100, "parsecs")
  2906. }
  2907. ]
  2908. ))
  2909. characterMakers.push(() => makeCharacter(
  2910. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2911. {
  2912. front: {
  2913. height: math.unit(2, "meter"),
  2914. weight: math.unit(90, "kg"),
  2915. name: "Front",
  2916. image: {
  2917. source: "./media/characters/gael'rathus/front.svg"
  2918. }
  2919. },
  2920. frontAlt: {
  2921. height: math.unit(2, "meter"),
  2922. weight: math.unit(90, "kg"),
  2923. name: "Front (alt)",
  2924. image: {
  2925. source: "./media/characters/gael'rathus/front-alt.svg"
  2926. }
  2927. },
  2928. frontAlt2: {
  2929. height: math.unit(2, "meter"),
  2930. weight: math.unit(90, "kg"),
  2931. name: "Front (alt 2)",
  2932. image: {
  2933. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2934. }
  2935. }
  2936. },
  2937. [
  2938. {
  2939. name: "Normal",
  2940. height: math.unit(9, "feet"),
  2941. default: true
  2942. },
  2943. {
  2944. name: "Large",
  2945. height: math.unit(25, "feet")
  2946. },
  2947. {
  2948. name: "Macro",
  2949. height: math.unit(0.25, "miles")
  2950. },
  2951. {
  2952. name: "Megamacro",
  2953. height: math.unit(10, "miles")
  2954. }
  2955. ]
  2956. ))
  2957. characterMakers.push(() => makeCharacter(
  2958. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2959. {
  2960. side: {
  2961. height: math.unit(2, "meter"),
  2962. weight: math.unit(140, "kg"),
  2963. name: "Side",
  2964. image: {
  2965. source: "./media/characters/sosha/side.svg",
  2966. bottom: 0.042
  2967. }
  2968. },
  2969. },
  2970. [
  2971. {
  2972. name: "Normal",
  2973. height: math.unit(12, "feet"),
  2974. default: true
  2975. }
  2976. ]
  2977. ))
  2978. characterMakers.push(() => makeCharacter(
  2979. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2980. {
  2981. side: {
  2982. height: math.unit(5 + 5 / 12, "feet"),
  2983. weight: math.unit(170, "kg"),
  2984. name: "Side",
  2985. image: {
  2986. source: "./media/characters/runnola/side.svg",
  2987. extra: 741 / 448,
  2988. bottom: 0.05
  2989. }
  2990. },
  2991. },
  2992. [
  2993. {
  2994. name: "Small",
  2995. height: math.unit(3, "feet")
  2996. },
  2997. {
  2998. name: "Normal",
  2999. height: math.unit(5 + 5 / 12, "feet"),
  3000. default: true
  3001. },
  3002. {
  3003. name: "Big",
  3004. height: math.unit(10, "feet")
  3005. },
  3006. ]
  3007. ))
  3008. characterMakers.push(() => makeCharacter(
  3009. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3010. {
  3011. front: {
  3012. height: math.unit(2, "meter"),
  3013. weight: math.unit(50, "kg"),
  3014. name: "Front",
  3015. image: {
  3016. source: "./media/characters/kurribird/front.svg",
  3017. bottom: 0.015
  3018. }
  3019. },
  3020. frontAlt: {
  3021. height: math.unit(1.5, "meter"),
  3022. weight: math.unit(50, "kg"),
  3023. name: "Front (Alt)",
  3024. image: {
  3025. source: "./media/characters/kurribird/front-alt.svg",
  3026. extra: 1.45
  3027. }
  3028. },
  3029. },
  3030. [
  3031. {
  3032. name: "Normal",
  3033. height: math.unit(7, "feet")
  3034. },
  3035. {
  3036. name: "Big",
  3037. height: math.unit(12, "feet"),
  3038. default: true
  3039. },
  3040. {
  3041. name: "Macro",
  3042. height: math.unit(1500, "feet")
  3043. },
  3044. {
  3045. name: "Megamacro",
  3046. height: math.unit(2, "miles")
  3047. }
  3048. ]
  3049. ))
  3050. characterMakers.push(() => makeCharacter(
  3051. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3052. {
  3053. front: {
  3054. height: math.unit(2, "meter"),
  3055. weight: math.unit(80, "kg"),
  3056. name: "Front",
  3057. image: {
  3058. source: "./media/characters/elbial/front.svg",
  3059. extra: 1643 / 1556,
  3060. bottom: 60.2 / 1696
  3061. }
  3062. },
  3063. side: {
  3064. height: math.unit(2, "meter"),
  3065. weight: math.unit(80, "kg"),
  3066. name: "Side",
  3067. image: {
  3068. source: "./media/characters/elbial/side.svg",
  3069. extra: 1630 / 1565,
  3070. bottom: 71.5 / 1697
  3071. }
  3072. },
  3073. back: {
  3074. height: math.unit(2, "meter"),
  3075. weight: math.unit(80, "kg"),
  3076. name: "Back",
  3077. image: {
  3078. source: "./media/characters/elbial/back.svg",
  3079. extra: 1668 / 1595,
  3080. bottom: 5.6 / 1672
  3081. }
  3082. },
  3083. frontDressed: {
  3084. height: math.unit(2, "meter"),
  3085. weight: math.unit(80, "kg"),
  3086. name: "Front (Dressed)",
  3087. image: {
  3088. source: "./media/characters/elbial/front-dressed.svg",
  3089. extra: 1653 / 1584,
  3090. bottom: 57 / 1708
  3091. }
  3092. },
  3093. genitals: {
  3094. height: math.unit(2 / 3.367, "meter"),
  3095. name: "Genitals",
  3096. image: {
  3097. source: "./media/characters/elbial/genitals.svg"
  3098. }
  3099. },
  3100. },
  3101. [
  3102. {
  3103. name: "Large",
  3104. height: math.unit(100, "feet")
  3105. },
  3106. {
  3107. name: "Macro",
  3108. height: math.unit(500, "feet"),
  3109. default: true
  3110. },
  3111. {
  3112. name: "Megamacro",
  3113. height: math.unit(10, "miles")
  3114. },
  3115. {
  3116. name: "Gigamacro",
  3117. height: math.unit(25000, "miles")
  3118. },
  3119. {
  3120. name: "Full-Size",
  3121. height: math.unit(8000000, "gigaparsecs")
  3122. }
  3123. ]
  3124. ))
  3125. characterMakers.push(() => makeCharacter(
  3126. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3127. {
  3128. front: {
  3129. height: math.unit(2, "meter"),
  3130. weight: math.unit(60, "kg"),
  3131. name: "Front",
  3132. image: {
  3133. source: "./media/characters/noah/front.svg"
  3134. }
  3135. },
  3136. talons: {
  3137. height: math.unit(0.315, "meter"),
  3138. name: "Talons",
  3139. image: {
  3140. source: "./media/characters/noah/talons.svg"
  3141. }
  3142. }
  3143. },
  3144. [
  3145. {
  3146. name: "Large",
  3147. height: math.unit(50, "feet")
  3148. },
  3149. {
  3150. name: "Macro",
  3151. height: math.unit(750, "feet"),
  3152. default: true
  3153. },
  3154. {
  3155. name: "Megamacro",
  3156. height: math.unit(50, "miles")
  3157. },
  3158. {
  3159. name: "Gigamacro",
  3160. height: math.unit(100000, "miles")
  3161. },
  3162. {
  3163. name: "Full-Size",
  3164. height: math.unit(3000000000, "miles")
  3165. }
  3166. ]
  3167. ))
  3168. characterMakers.push(() => makeCharacter(
  3169. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3170. {
  3171. front: {
  3172. height: math.unit(2, "meter"),
  3173. weight: math.unit(80, "kg"),
  3174. name: "Front",
  3175. image: {
  3176. source: "./media/characters/natalya/front.svg"
  3177. }
  3178. },
  3179. back: {
  3180. height: math.unit(2, "meter"),
  3181. weight: math.unit(80, "kg"),
  3182. name: "Back",
  3183. image: {
  3184. source: "./media/characters/natalya/back.svg"
  3185. }
  3186. }
  3187. },
  3188. [
  3189. {
  3190. name: "Normal",
  3191. height: math.unit(150, "feet"),
  3192. default: true
  3193. },
  3194. {
  3195. name: "Megamacro",
  3196. height: math.unit(5, "miles")
  3197. },
  3198. {
  3199. name: "Full-Size",
  3200. height: math.unit(600, "kiloparsecs")
  3201. }
  3202. ]
  3203. ))
  3204. characterMakers.push(() => makeCharacter(
  3205. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3206. {
  3207. front: {
  3208. height: math.unit(2, "meter"),
  3209. weight: math.unit(50, "kg"),
  3210. name: "Front",
  3211. image: {
  3212. source: "./media/characters/erestrebah/front.svg",
  3213. extra: 208 / 193,
  3214. bottom: 0.055
  3215. }
  3216. },
  3217. back: {
  3218. height: math.unit(2, "meter"),
  3219. weight: math.unit(50, "kg"),
  3220. name: "Back",
  3221. image: {
  3222. source: "./media/characters/erestrebah/back.svg",
  3223. extra: 1.3
  3224. }
  3225. }
  3226. },
  3227. [
  3228. {
  3229. name: "Normal",
  3230. height: math.unit(10, "feet")
  3231. },
  3232. {
  3233. name: "Large",
  3234. height: math.unit(50, "feet"),
  3235. default: true
  3236. },
  3237. {
  3238. name: "Macro",
  3239. height: math.unit(300, "feet")
  3240. },
  3241. {
  3242. name: "Macro+",
  3243. height: math.unit(750, "feet")
  3244. },
  3245. {
  3246. name: "Megamacro",
  3247. height: math.unit(3, "miles")
  3248. }
  3249. ]
  3250. ))
  3251. characterMakers.push(() => makeCharacter(
  3252. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3253. {
  3254. front: {
  3255. height: math.unit(2, "meter"),
  3256. weight: math.unit(80, "kg"),
  3257. name: "Front",
  3258. image: {
  3259. source: "./media/characters/jennifer/front.svg",
  3260. bottom: 0.11,
  3261. extra: 1.16
  3262. }
  3263. },
  3264. frontAlt: {
  3265. height: math.unit(2, "meter"),
  3266. weight: math.unit(80, "kg"),
  3267. name: "Front (Alt)",
  3268. image: {
  3269. source: "./media/characters/jennifer/front-alt.svg"
  3270. }
  3271. }
  3272. },
  3273. [
  3274. {
  3275. name: "Canon Height",
  3276. height: math.unit(120, "feet"),
  3277. default: true
  3278. },
  3279. {
  3280. name: "Macro+",
  3281. height: math.unit(300, "feet")
  3282. },
  3283. {
  3284. name: "Megamacro",
  3285. height: math.unit(20000, "feet")
  3286. }
  3287. ]
  3288. ))
  3289. characterMakers.push(() => makeCharacter(
  3290. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3291. {
  3292. front: {
  3293. height: math.unit(2, "meter"),
  3294. weight: math.unit(50, "kg"),
  3295. name: "Front",
  3296. image: {
  3297. source: "./media/characters/kalista/front.svg",
  3298. extra: 1947 / 1700,
  3299. bottom: 76.6 / 1412.98
  3300. }
  3301. },
  3302. back: {
  3303. height: math.unit(2, "meter"),
  3304. weight: math.unit(50, "kg"),
  3305. name: "Back",
  3306. image: {
  3307. source: "./media/characters/kalista/back.svg",
  3308. extra: 1366 / 1156,
  3309. bottom: 33.9 / 1362.78
  3310. }
  3311. }
  3312. },
  3313. [
  3314. {
  3315. name: "Uncomfortably Small",
  3316. height: math.unit(10, "feet")
  3317. },
  3318. {
  3319. name: "Small",
  3320. height: math.unit(30, "feet")
  3321. },
  3322. {
  3323. name: "Macro",
  3324. height: math.unit(100, "feet"),
  3325. default: true
  3326. },
  3327. {
  3328. name: "Macro+",
  3329. height: math.unit(2000, "feet")
  3330. },
  3331. {
  3332. name: "True Form",
  3333. height: math.unit(8924, "miles")
  3334. }
  3335. ]
  3336. ))
  3337. characterMakers.push(() => makeCharacter(
  3338. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3339. {
  3340. front: {
  3341. height: math.unit(2, "meter"),
  3342. weight: math.unit(120, "kg"),
  3343. name: "Front",
  3344. image: {
  3345. source: "./media/characters/ggv/front.svg"
  3346. }
  3347. },
  3348. side: {
  3349. height: math.unit(2, "meter"),
  3350. weight: math.unit(120, "kg"),
  3351. name: "Side",
  3352. image: {
  3353. source: "./media/characters/ggv/side.svg"
  3354. }
  3355. }
  3356. },
  3357. [
  3358. {
  3359. name: "Extremely Puny",
  3360. height: math.unit(9 + 5 / 12, "feet")
  3361. },
  3362. {
  3363. name: "Horribly Small",
  3364. height: math.unit(47.7, "miles"),
  3365. default: true
  3366. },
  3367. {
  3368. name: "Reasonably Sized",
  3369. height: math.unit(25000, "parsecs")
  3370. },
  3371. {
  3372. name: "Slightly Uncompressed",
  3373. height: math.unit(7.77e31, "parsecs")
  3374. },
  3375. {
  3376. name: "Omniversal",
  3377. height: math.unit(1e300, "meters")
  3378. },
  3379. ]
  3380. ))
  3381. characterMakers.push(() => makeCharacter(
  3382. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3383. {
  3384. front: {
  3385. height: math.unit(2, "meter"),
  3386. weight: math.unit(75, "lb"),
  3387. name: "Front",
  3388. image: {
  3389. source: "./media/characters/napalm/front.svg"
  3390. }
  3391. },
  3392. back: {
  3393. height: math.unit(2, "meter"),
  3394. weight: math.unit(75, "lb"),
  3395. name: "Back",
  3396. image: {
  3397. source: "./media/characters/napalm/back.svg"
  3398. }
  3399. }
  3400. },
  3401. [
  3402. {
  3403. name: "Standard",
  3404. height: math.unit(55, "feet"),
  3405. default: true
  3406. }
  3407. ]
  3408. ))
  3409. characterMakers.push(() => makeCharacter(
  3410. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3411. {
  3412. front: {
  3413. height: math.unit(7 + 5 / 6, "feet"),
  3414. weight: math.unit(325, "lb"),
  3415. name: "Front",
  3416. image: {
  3417. source: "./media/characters/asana/front.svg",
  3418. extra: 1133 / 1060,
  3419. bottom: 15.2 / 1148.6
  3420. }
  3421. },
  3422. back: {
  3423. height: math.unit(7 + 5 / 6, "feet"),
  3424. weight: math.unit(325, "lb"),
  3425. name: "Back",
  3426. image: {
  3427. source: "./media/characters/asana/back.svg",
  3428. extra: 1114 / 1043,
  3429. bottom: 5 / 1120
  3430. }
  3431. },
  3432. dressedDark: {
  3433. height: math.unit(7 + 5 / 6, "feet"),
  3434. weight: math.unit(325, "lb"),
  3435. name: "Dressed (Dark)",
  3436. image: {
  3437. source: "./media/characters/asana/dressed-dark.svg",
  3438. extra: 1133 / 1060,
  3439. bottom: 15.2 / 1148.6
  3440. }
  3441. },
  3442. dressedLight: {
  3443. height: math.unit(7 + 5 / 6, "feet"),
  3444. weight: math.unit(325, "lb"),
  3445. name: "Dressed (Light)",
  3446. image: {
  3447. source: "./media/characters/asana/dressed-light.svg",
  3448. extra: 1133 / 1060,
  3449. bottom: 15.2 / 1148.6
  3450. }
  3451. },
  3452. },
  3453. [
  3454. {
  3455. name: "Standard",
  3456. height: math.unit(7 + 5 / 6, "feet"),
  3457. default: true
  3458. },
  3459. {
  3460. name: "Large",
  3461. height: math.unit(10, "meters")
  3462. },
  3463. {
  3464. name: "Macro",
  3465. height: math.unit(2500, "meters")
  3466. },
  3467. {
  3468. name: "Megamacro",
  3469. height: math.unit(5e6, "meters")
  3470. },
  3471. {
  3472. name: "Examacro",
  3473. height: math.unit(5e12, "lightyears")
  3474. },
  3475. {
  3476. name: "Max Size",
  3477. height: math.unit(1e31, "lightyears")
  3478. }
  3479. ]
  3480. ))
  3481. characterMakers.push(() => makeCharacter(
  3482. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3483. {
  3484. front: {
  3485. height: math.unit(2, "meter"),
  3486. weight: math.unit(60, "kg"),
  3487. name: "Front",
  3488. image: {
  3489. source: "./media/characters/ebony/front.svg",
  3490. bottom: 0.03,
  3491. extra: 1045 / 810 + 0.03
  3492. }
  3493. },
  3494. side: {
  3495. height: math.unit(2, "meter"),
  3496. weight: math.unit(60, "kg"),
  3497. name: "Side",
  3498. image: {
  3499. source: "./media/characters/ebony/side.svg",
  3500. bottom: 0.03,
  3501. extra: 1045 / 810 + 0.03
  3502. }
  3503. },
  3504. back: {
  3505. height: math.unit(2, "meter"),
  3506. weight: math.unit(60, "kg"),
  3507. name: "Back",
  3508. image: {
  3509. source: "./media/characters/ebony/back.svg",
  3510. bottom: 0.01,
  3511. extra: 1045 / 810 + 0.01
  3512. }
  3513. },
  3514. },
  3515. [
  3516. // TODO check why I did this lol
  3517. {
  3518. name: "Standard",
  3519. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3520. default: true
  3521. },
  3522. {
  3523. name: "Macro",
  3524. height: math.unit(200, "feet")
  3525. },
  3526. {
  3527. name: "Gigamacro",
  3528. height: math.unit(13000, "km")
  3529. }
  3530. ]
  3531. ))
  3532. characterMakers.push(() => makeCharacter(
  3533. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3534. {
  3535. front: {
  3536. height: math.unit(6, "feet"),
  3537. weight: math.unit(175, "lb"),
  3538. name: "Front",
  3539. image: {
  3540. source: "./media/characters/mountain/front.svg",
  3541. extra: 972 / 955,
  3542. bottom: 64 / 1036.6
  3543. }
  3544. },
  3545. back: {
  3546. height: math.unit(6, "feet"),
  3547. weight: math.unit(175, "lb"),
  3548. name: "Back",
  3549. image: {
  3550. source: "./media/characters/mountain/back.svg",
  3551. extra: 970 / 950,
  3552. bottom: 28.25 / 999
  3553. }
  3554. },
  3555. },
  3556. [
  3557. {
  3558. name: "Large",
  3559. height: math.unit(20, "meters")
  3560. },
  3561. {
  3562. name: "Macro",
  3563. height: math.unit(300, "meters")
  3564. },
  3565. {
  3566. name: "Gigamacro",
  3567. height: math.unit(10000, "km"),
  3568. default: true
  3569. },
  3570. {
  3571. name: "Examacro",
  3572. height: math.unit(10e9, "lightyears")
  3573. }
  3574. ]
  3575. ))
  3576. characterMakers.push(() => makeCharacter(
  3577. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3578. {
  3579. front: {
  3580. height: math.unit(8, "feet"),
  3581. weight: math.unit(500, "lb"),
  3582. name: "Front",
  3583. image: {
  3584. source: "./media/characters/rick/front.svg"
  3585. }
  3586. }
  3587. },
  3588. [
  3589. {
  3590. name: "Normal",
  3591. height: math.unit(8, "feet"),
  3592. default: true
  3593. },
  3594. {
  3595. name: "Macro",
  3596. height: math.unit(5, "km")
  3597. }
  3598. ]
  3599. ))
  3600. characterMakers.push(() => makeCharacter(
  3601. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3602. {
  3603. front: {
  3604. height: math.unit(8, "feet"),
  3605. weight: math.unit(120, "lb"),
  3606. name: "Front",
  3607. image: {
  3608. source: "./media/characters/ona/front.svg"
  3609. }
  3610. },
  3611. frontAlt: {
  3612. height: math.unit(8, "feet"),
  3613. weight: math.unit(120, "lb"),
  3614. name: "Front (Alt)",
  3615. image: {
  3616. source: "./media/characters/ona/front-alt.svg"
  3617. }
  3618. },
  3619. back: {
  3620. height: math.unit(8, "feet"),
  3621. weight: math.unit(120, "lb"),
  3622. name: "Back",
  3623. image: {
  3624. source: "./media/characters/ona/back.svg"
  3625. }
  3626. },
  3627. foot: {
  3628. height: math.unit(1.1, "feet"),
  3629. name: "Foot",
  3630. image: {
  3631. source: "./media/characters/ona/foot.svg"
  3632. }
  3633. }
  3634. },
  3635. [
  3636. {
  3637. name: "Megamacro",
  3638. height: math.unit(70, "km"),
  3639. default: true
  3640. },
  3641. {
  3642. name: "Gigamacro",
  3643. height: math.unit(681818, "miles")
  3644. },
  3645. {
  3646. name: "Examacro",
  3647. height: math.unit(3800000, "lightyears")
  3648. },
  3649. ]
  3650. ))
  3651. characterMakers.push(() => makeCharacter(
  3652. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3653. {
  3654. front: {
  3655. height: math.unit(12, "feet"),
  3656. weight: math.unit(3000, "lb"),
  3657. name: "Front",
  3658. image: {
  3659. source: "./media/characters/mech/front.svg",
  3660. extra: 2900 / 2770,
  3661. bottom: 110 / 3010
  3662. }
  3663. },
  3664. back: {
  3665. height: math.unit(12, "feet"),
  3666. weight: math.unit(3000, "lb"),
  3667. name: "Back",
  3668. image: {
  3669. source: "./media/characters/mech/back.svg",
  3670. extra: 3011 / 2890,
  3671. bottom: 94 / 3105
  3672. }
  3673. },
  3674. maw: {
  3675. height: math.unit(3.07, "feet"),
  3676. name: "Maw",
  3677. image: {
  3678. source: "./media/characters/mech/maw.svg"
  3679. }
  3680. },
  3681. head: {
  3682. height: math.unit(2.82, "feet"),
  3683. name: "Head",
  3684. image: {
  3685. source: "./media/characters/mech/head.svg"
  3686. }
  3687. },
  3688. dick: {
  3689. height: math.unit(1.43, "feet"),
  3690. name: "Dick",
  3691. image: {
  3692. source: "./media/characters/mech/dick.svg"
  3693. }
  3694. },
  3695. },
  3696. [
  3697. {
  3698. name: "Normal",
  3699. height: math.unit(12, "feet")
  3700. },
  3701. {
  3702. name: "Macro",
  3703. height: math.unit(300, "feet"),
  3704. default: true
  3705. },
  3706. {
  3707. name: "Macro+",
  3708. height: math.unit(1500, "feet")
  3709. },
  3710. ]
  3711. ))
  3712. characterMakers.push(() => makeCharacter(
  3713. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3714. {
  3715. front: {
  3716. height: math.unit(1.3, "meter"),
  3717. weight: math.unit(30, "kg"),
  3718. name: "Front",
  3719. image: {
  3720. source: "./media/characters/gregory/front.svg",
  3721. }
  3722. }
  3723. },
  3724. [
  3725. {
  3726. name: "Normal",
  3727. height: math.unit(1.3, "meter"),
  3728. default: true
  3729. },
  3730. {
  3731. name: "Macro",
  3732. height: math.unit(20, "meter")
  3733. }
  3734. ]
  3735. ))
  3736. characterMakers.push(() => makeCharacter(
  3737. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3738. {
  3739. front: {
  3740. height: math.unit(2.8, "meter"),
  3741. weight: math.unit(200, "kg"),
  3742. name: "Front",
  3743. image: {
  3744. source: "./media/characters/elory/front.svg",
  3745. }
  3746. }
  3747. },
  3748. [
  3749. {
  3750. name: "Normal",
  3751. height: math.unit(2.8, "meter"),
  3752. default: true
  3753. },
  3754. {
  3755. name: "Macro",
  3756. height: math.unit(38, "meter")
  3757. }
  3758. ]
  3759. ))
  3760. characterMakers.push(() => makeCharacter(
  3761. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3762. {
  3763. front: {
  3764. height: math.unit(470, "feet"),
  3765. weight: math.unit(924, "tons"),
  3766. name: "Front",
  3767. image: {
  3768. source: "./media/characters/angelpatamon/front.svg",
  3769. }
  3770. }
  3771. },
  3772. [
  3773. {
  3774. name: "Normal",
  3775. height: math.unit(470, "feet"),
  3776. default: true
  3777. },
  3778. {
  3779. name: "Deity Size I",
  3780. height: math.unit(28651.2, "km")
  3781. },
  3782. {
  3783. name: "Deity Size II",
  3784. height: math.unit(171907.2, "km")
  3785. }
  3786. ]
  3787. ))
  3788. characterMakers.push(() => makeCharacter(
  3789. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3790. {
  3791. side: {
  3792. height: math.unit(7.2, "meter"),
  3793. weight: math.unit(8.2, "tons"),
  3794. name: "Side",
  3795. image: {
  3796. source: "./media/characters/cryae/side.svg",
  3797. extra: 3500 / 1500
  3798. }
  3799. }
  3800. },
  3801. [
  3802. {
  3803. name: "Normal",
  3804. height: math.unit(7.2, "meter"),
  3805. default: true
  3806. }
  3807. ]
  3808. ))
  3809. characterMakers.push(() => makeCharacter(
  3810. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3811. {
  3812. front: {
  3813. height: math.unit(6, "feet"),
  3814. weight: math.unit(175, "lb"),
  3815. name: "Front",
  3816. image: {
  3817. source: "./media/characters/xera/front.svg",
  3818. extra: 2377 / 1972,
  3819. bottom: 75.5 / 2452
  3820. }
  3821. },
  3822. side: {
  3823. height: math.unit(6, "feet"),
  3824. weight: math.unit(175, "lb"),
  3825. name: "Side",
  3826. image: {
  3827. source: "./media/characters/xera/side.svg",
  3828. extra: 2345 / 2019,
  3829. bottom: 39.7 / 2384
  3830. }
  3831. },
  3832. back: {
  3833. height: math.unit(6, "feet"),
  3834. weight: math.unit(175, "lb"),
  3835. name: "Back",
  3836. image: {
  3837. source: "./media/characters/xera/back.svg",
  3838. extra: 2095 / 1984,
  3839. bottom: 67 / 2166
  3840. }
  3841. },
  3842. },
  3843. [
  3844. {
  3845. name: "Small",
  3846. height: math.unit(10, "feet")
  3847. },
  3848. {
  3849. name: "Macro",
  3850. height: math.unit(500, "meters"),
  3851. default: true
  3852. },
  3853. {
  3854. name: "Macro+",
  3855. height: math.unit(10, "km")
  3856. },
  3857. {
  3858. name: "Gigamacro",
  3859. height: math.unit(25000, "km")
  3860. },
  3861. {
  3862. name: "Teramacro",
  3863. height: math.unit(3e6, "km")
  3864. }
  3865. ]
  3866. ))
  3867. characterMakers.push(() => makeCharacter(
  3868. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3869. {
  3870. front: {
  3871. height: math.unit(6, "feet"),
  3872. weight: math.unit(175, "lb"),
  3873. name: "Front",
  3874. image: {
  3875. source: "./media/characters/nebula/front.svg",
  3876. extra: 2566 / 2362,
  3877. bottom: 81 / 2644
  3878. }
  3879. }
  3880. },
  3881. [
  3882. {
  3883. name: "Small",
  3884. height: math.unit(4.5, "meters")
  3885. },
  3886. {
  3887. name: "Macro",
  3888. height: math.unit(1500, "meters"),
  3889. default: true
  3890. },
  3891. {
  3892. name: "Megamacro",
  3893. height: math.unit(150, "km")
  3894. },
  3895. {
  3896. name: "Gigamacro",
  3897. height: math.unit(27000, "km")
  3898. }
  3899. ]
  3900. ))
  3901. characterMakers.push(() => makeCharacter(
  3902. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3903. {
  3904. front: {
  3905. height: math.unit(6, "feet"),
  3906. weight: math.unit(225, "lb"),
  3907. name: "Front",
  3908. image: {
  3909. source: "./media/characters/abysgar/front.svg"
  3910. }
  3911. }
  3912. },
  3913. [
  3914. {
  3915. name: "Small",
  3916. height: math.unit(4.5, "meters")
  3917. },
  3918. {
  3919. name: "Macro",
  3920. height: math.unit(1250, "meters"),
  3921. default: true
  3922. },
  3923. {
  3924. name: "Megamacro",
  3925. height: math.unit(125, "km")
  3926. },
  3927. {
  3928. name: "Gigamacro",
  3929. height: math.unit(26000, "km")
  3930. }
  3931. ]
  3932. ))
  3933. characterMakers.push(() => makeCharacter(
  3934. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3935. {
  3936. front: {
  3937. height: math.unit(6, "feet"),
  3938. weight: math.unit(180, "lb"),
  3939. name: "Front",
  3940. image: {
  3941. source: "./media/characters/yakuz/front.svg"
  3942. }
  3943. }
  3944. },
  3945. [
  3946. {
  3947. name: "Small",
  3948. height: math.unit(5, "meters")
  3949. },
  3950. {
  3951. name: "Macro",
  3952. height: math.unit(1500, "meters"),
  3953. default: true
  3954. },
  3955. {
  3956. name: "Megamacro",
  3957. height: math.unit(200, "km")
  3958. },
  3959. {
  3960. name: "Gigamacro",
  3961. height: math.unit(100000, "km")
  3962. }
  3963. ]
  3964. ))
  3965. characterMakers.push(() => makeCharacter(
  3966. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3967. {
  3968. front: {
  3969. height: math.unit(6, "feet"),
  3970. weight: math.unit(175, "lb"),
  3971. name: "Front",
  3972. image: {
  3973. source: "./media/characters/mirova/front.svg",
  3974. extra: 3334 / 3071,
  3975. bottom: 42 / 3375.6
  3976. }
  3977. }
  3978. },
  3979. [
  3980. {
  3981. name: "Small",
  3982. height: math.unit(5, "meters")
  3983. },
  3984. {
  3985. name: "Macro",
  3986. height: math.unit(900, "meters"),
  3987. default: true
  3988. },
  3989. {
  3990. name: "Megamacro",
  3991. height: math.unit(135, "km")
  3992. },
  3993. {
  3994. name: "Gigamacro",
  3995. height: math.unit(20000, "km")
  3996. }
  3997. ]
  3998. ))
  3999. characterMakers.push(() => makeCharacter(
  4000. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4001. {
  4002. side: {
  4003. height: math.unit(28.35, "feet"),
  4004. weight: math.unit(99.75, "tons"),
  4005. name: "Side",
  4006. image: {
  4007. source: "./media/characters/asana-mech/side.svg",
  4008. extra: 923 / 699,
  4009. bottom: 50 / 975
  4010. }
  4011. },
  4012. chaingun: {
  4013. height: math.unit(7, "feet"),
  4014. weight: math.unit(2400, "lb"),
  4015. name: "Chaingun",
  4016. image: {
  4017. source: "./media/characters/asana-mech/chaingun.svg"
  4018. }
  4019. },
  4020. laser: {
  4021. height: math.unit(7.12, "feet"),
  4022. weight: math.unit(2000, "lb"),
  4023. name: "Laser",
  4024. image: {
  4025. source: "./media/characters/asana-mech/laser.svg"
  4026. }
  4027. },
  4028. },
  4029. [
  4030. {
  4031. name: "Normal",
  4032. height: math.unit(28.35, "feet"),
  4033. default: true
  4034. },
  4035. {
  4036. name: "Macro",
  4037. height: math.unit(2500, "feet")
  4038. },
  4039. {
  4040. name: "Megamacro",
  4041. height: math.unit(25, "miles")
  4042. },
  4043. {
  4044. name: "Examacro",
  4045. height: math.unit(6e8, "lightyears")
  4046. },
  4047. ]
  4048. ))
  4049. characterMakers.push(() => makeCharacter(
  4050. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4051. {
  4052. front: {
  4053. height: math.unit(5, "meters"),
  4054. weight: math.unit(1000, "kg"),
  4055. name: "Front",
  4056. image: {
  4057. source: "./media/characters/asche/front.svg",
  4058. extra: 1258 / 1190,
  4059. bottom: 47 / 1305
  4060. }
  4061. },
  4062. frontUnderwear: {
  4063. height: math.unit(5, "meters"),
  4064. weight: math.unit(1000, "kg"),
  4065. name: "Front (Underwear)",
  4066. image: {
  4067. source: "./media/characters/asche/front-underwear.svg",
  4068. extra: 1258 / 1190,
  4069. bottom: 47 / 1305
  4070. }
  4071. },
  4072. frontDressed: {
  4073. height: math.unit(5, "meters"),
  4074. weight: math.unit(1000, "kg"),
  4075. name: "Front (Dressed)",
  4076. image: {
  4077. source: "./media/characters/asche/front-dressed.svg",
  4078. extra: 1258 / 1190,
  4079. bottom: 47 / 1305
  4080. }
  4081. },
  4082. frontArmor: {
  4083. height: math.unit(5, "meters"),
  4084. weight: math.unit(1000, "kg"),
  4085. name: "Front (Armored)",
  4086. image: {
  4087. source: "./media/characters/asche/front-armored.svg",
  4088. extra: 1374 / 1308,
  4089. bottom: 23 / 1397
  4090. }
  4091. },
  4092. mp724: {
  4093. height: math.unit(0.96, "meters"),
  4094. weight: math.unit(38, "kg"),
  4095. name: "H&K MP724",
  4096. image: {
  4097. source: "./media/characters/asche/h&k-mp724.svg"
  4098. }
  4099. },
  4100. side: {
  4101. height: math.unit(5, "meters"),
  4102. weight: math.unit(1000, "kg"),
  4103. name: "Side",
  4104. image: {
  4105. source: "./media/characters/asche/side.svg",
  4106. extra: 1717 / 1609,
  4107. bottom: 0.005
  4108. }
  4109. },
  4110. back: {
  4111. height: math.unit(5, "meters"),
  4112. weight: math.unit(1000, "kg"),
  4113. name: "Back",
  4114. image: {
  4115. source: "./media/characters/asche/back.svg",
  4116. extra: 1570 / 1501
  4117. }
  4118. },
  4119. },
  4120. [
  4121. {
  4122. name: "DEFCON 5",
  4123. height: math.unit(5, "meters")
  4124. },
  4125. {
  4126. name: "DEFCON 4",
  4127. height: math.unit(500, "meters"),
  4128. default: true
  4129. },
  4130. {
  4131. name: "DEFCON 3",
  4132. height: math.unit(5, "km")
  4133. },
  4134. {
  4135. name: "DEFCON 2",
  4136. height: math.unit(500, "km")
  4137. },
  4138. {
  4139. name: "DEFCON 1",
  4140. height: math.unit(500000, "km")
  4141. },
  4142. {
  4143. name: "DEFCON 0",
  4144. height: math.unit(3, "gigaparsecs")
  4145. },
  4146. ]
  4147. ))
  4148. characterMakers.push(() => makeCharacter(
  4149. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4150. {
  4151. front: {
  4152. height: math.unit(2, "meters"),
  4153. weight: math.unit(76, "kg"),
  4154. name: "Front",
  4155. image: {
  4156. source: "./media/characters/gale/front.svg"
  4157. }
  4158. },
  4159. frontAlt1: {
  4160. height: math.unit(2, "meters"),
  4161. weight: math.unit(76, "kg"),
  4162. name: "Front (Alt 1)",
  4163. image: {
  4164. source: "./media/characters/gale/front-alt-1.svg"
  4165. }
  4166. },
  4167. frontAlt2: {
  4168. height: math.unit(2, "meters"),
  4169. weight: math.unit(76, "kg"),
  4170. name: "Front (Alt 2)",
  4171. image: {
  4172. source: "./media/characters/gale/front-alt-2.svg"
  4173. }
  4174. },
  4175. },
  4176. [
  4177. {
  4178. name: "Normal",
  4179. height: math.unit(7, "feet")
  4180. },
  4181. {
  4182. name: "Macro",
  4183. height: math.unit(150, "feet"),
  4184. default: true
  4185. },
  4186. {
  4187. name: "Macro+",
  4188. height: math.unit(300, "feet")
  4189. },
  4190. ]
  4191. ))
  4192. characterMakers.push(() => makeCharacter(
  4193. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4194. {
  4195. front: {
  4196. height: math.unit(2, "meters"),
  4197. weight: math.unit(76, "kg"),
  4198. name: "Front",
  4199. image: {
  4200. source: "./media/characters/draylen/front.svg"
  4201. }
  4202. }
  4203. },
  4204. [
  4205. {
  4206. name: "Macro",
  4207. height: math.unit(150, "feet"),
  4208. default: true
  4209. }
  4210. ]
  4211. ))
  4212. characterMakers.push(() => makeCharacter(
  4213. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4214. {
  4215. front: {
  4216. height: math.unit(7 + 9 / 12, "feet"),
  4217. weight: math.unit(379, "lbs"),
  4218. name: "Front",
  4219. image: {
  4220. source: "./media/characters/chez/front.svg"
  4221. }
  4222. },
  4223. side: {
  4224. height: math.unit(7 + 9 / 12, "feet"),
  4225. weight: math.unit(379, "lbs"),
  4226. name: "Side",
  4227. image: {
  4228. source: "./media/characters/chez/side.svg"
  4229. }
  4230. }
  4231. },
  4232. [
  4233. {
  4234. name: "Normal",
  4235. height: math.unit(7 + 9 / 12, "feet"),
  4236. default: true
  4237. },
  4238. {
  4239. name: "God King",
  4240. height: math.unit(9750000, "meters")
  4241. }
  4242. ]
  4243. ))
  4244. characterMakers.push(() => makeCharacter(
  4245. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4246. {
  4247. front: {
  4248. height: math.unit(6, "feet"),
  4249. weight: math.unit(275, "lbs"),
  4250. name: "Front",
  4251. image: {
  4252. source: "./media/characters/kaylum/front.svg",
  4253. bottom: 0.01,
  4254. extra: 1166 / 1031
  4255. }
  4256. },
  4257. frontWingless: {
  4258. height: math.unit(6, "feet"),
  4259. weight: math.unit(275, "lbs"),
  4260. name: "Front (Wingless)",
  4261. image: {
  4262. source: "./media/characters/kaylum/front-wingless.svg",
  4263. bottom: 0.01,
  4264. extra: 1117 / 1031
  4265. }
  4266. }
  4267. },
  4268. [
  4269. {
  4270. name: "Normal",
  4271. height: math.unit(3.05, "meters")
  4272. },
  4273. {
  4274. name: "Master",
  4275. height: math.unit(5.5, "meters")
  4276. },
  4277. {
  4278. name: "Rampage",
  4279. height: math.unit(19, "meters")
  4280. },
  4281. {
  4282. name: "Macro Lite",
  4283. height: math.unit(37, "meters")
  4284. },
  4285. {
  4286. name: "Hyper Predator",
  4287. height: math.unit(61, "meters")
  4288. },
  4289. {
  4290. name: "Macro",
  4291. height: math.unit(138, "meters"),
  4292. default: true
  4293. }
  4294. ]
  4295. ))
  4296. characterMakers.push(() => makeCharacter(
  4297. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4298. {
  4299. front: {
  4300. height: math.unit(6, "feet"),
  4301. weight: math.unit(150, "lbs"),
  4302. name: "Front",
  4303. image: {
  4304. source: "./media/characters/geta/front.svg"
  4305. }
  4306. }
  4307. },
  4308. [
  4309. {
  4310. name: "Micro",
  4311. height: math.unit(3, "inches"),
  4312. default: true
  4313. },
  4314. {
  4315. name: "Normal",
  4316. height: math.unit(5 + 5 / 12, "feet")
  4317. }
  4318. ]
  4319. ))
  4320. characterMakers.push(() => makeCharacter(
  4321. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4322. {
  4323. front: {
  4324. height: math.unit(6, "feet"),
  4325. weight: math.unit(300, "lbs"),
  4326. name: "Front",
  4327. image: {
  4328. source: "./media/characters/tyrnn/front.svg"
  4329. }
  4330. }
  4331. },
  4332. [
  4333. {
  4334. name: "Main Height",
  4335. height: math.unit(355, "feet"),
  4336. default: true
  4337. },
  4338. {
  4339. name: "Fave. Height",
  4340. height: math.unit(2400, "feet")
  4341. }
  4342. ]
  4343. ))
  4344. characterMakers.push(() => makeCharacter(
  4345. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4346. {
  4347. front: {
  4348. height: math.unit(6, "feet"),
  4349. weight: math.unit(300, "lbs"),
  4350. name: "Front",
  4351. image: {
  4352. source: "./media/characters/appledectomy/front.svg"
  4353. }
  4354. }
  4355. },
  4356. [
  4357. {
  4358. name: "Macro",
  4359. height: math.unit(2500, "feet")
  4360. },
  4361. {
  4362. name: "Megamacro",
  4363. height: math.unit(50, "miles"),
  4364. default: true
  4365. },
  4366. {
  4367. name: "Gigamacro",
  4368. height: math.unit(5000, "miles")
  4369. },
  4370. {
  4371. name: "Teramacro",
  4372. height: math.unit(250000, "miles")
  4373. },
  4374. ]
  4375. ))
  4376. characterMakers.push(() => makeCharacter(
  4377. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4378. {
  4379. front: {
  4380. height: math.unit(6, "feet"),
  4381. weight: math.unit(200, "lbs"),
  4382. name: "Front",
  4383. image: {
  4384. source: "./media/characters/vulpes/front.svg",
  4385. extra: 573 / 543,
  4386. bottom: 0.033
  4387. }
  4388. },
  4389. side: {
  4390. height: math.unit(6, "feet"),
  4391. weight: math.unit(200, "lbs"),
  4392. name: "Side",
  4393. image: {
  4394. source: "./media/characters/vulpes/side.svg",
  4395. extra: 577 / 549,
  4396. bottom: 11 / 588
  4397. }
  4398. },
  4399. back: {
  4400. height: math.unit(6, "feet"),
  4401. weight: math.unit(200, "lbs"),
  4402. name: "Back",
  4403. image: {
  4404. source: "./media/characters/vulpes/back.svg",
  4405. extra: 573 / 549,
  4406. bottom: 20 / 593
  4407. }
  4408. },
  4409. feet: {
  4410. height: math.unit(1.276, "feet"),
  4411. name: "Feet",
  4412. image: {
  4413. source: "./media/characters/vulpes/feet.svg"
  4414. }
  4415. },
  4416. maw: {
  4417. height: math.unit(1.18, "feet"),
  4418. name: "Maw",
  4419. image: {
  4420. source: "./media/characters/vulpes/maw.svg"
  4421. }
  4422. },
  4423. },
  4424. [
  4425. {
  4426. name: "Micro",
  4427. height: math.unit(2, "inches")
  4428. },
  4429. {
  4430. name: "Normal",
  4431. height: math.unit(6.3, "feet")
  4432. },
  4433. {
  4434. name: "Macro",
  4435. height: math.unit(850, "feet")
  4436. },
  4437. {
  4438. name: "Megamacro",
  4439. height: math.unit(7500, "feet"),
  4440. default: true
  4441. },
  4442. {
  4443. name: "Gigamacro",
  4444. height: math.unit(570000, "miles")
  4445. }
  4446. ]
  4447. ))
  4448. characterMakers.push(() => makeCharacter(
  4449. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4450. {
  4451. front: {
  4452. height: math.unit(6, "feet"),
  4453. weight: math.unit(210, "lbs"),
  4454. name: "Front",
  4455. image: {
  4456. source: "./media/characters/rain-fallen/front.svg"
  4457. }
  4458. },
  4459. side: {
  4460. height: math.unit(6, "feet"),
  4461. weight: math.unit(210, "lbs"),
  4462. name: "Side",
  4463. image: {
  4464. source: "./media/characters/rain-fallen/side.svg"
  4465. }
  4466. },
  4467. back: {
  4468. height: math.unit(6, "feet"),
  4469. weight: math.unit(210, "lbs"),
  4470. name: "Back",
  4471. image: {
  4472. source: "./media/characters/rain-fallen/back.svg"
  4473. }
  4474. },
  4475. feral: {
  4476. height: math.unit(9, "feet"),
  4477. weight: math.unit(700, "lbs"),
  4478. name: "Feral",
  4479. image: {
  4480. source: "./media/characters/rain-fallen/feral.svg"
  4481. }
  4482. },
  4483. },
  4484. [
  4485. {
  4486. name: "Meddling with Mortals",
  4487. height: math.unit(8 + 8/12, "feet")
  4488. },
  4489. {
  4490. name: "Normal",
  4491. height: math.unit(5, "meter")
  4492. },
  4493. {
  4494. name: "Macro",
  4495. height: math.unit(150, "meter"),
  4496. default: true
  4497. },
  4498. {
  4499. name: "Megamacro",
  4500. height: math.unit(278e6, "meter")
  4501. },
  4502. {
  4503. name: "Gigamacro",
  4504. height: math.unit(2e9, "meter")
  4505. },
  4506. {
  4507. name: "Teramacro",
  4508. height: math.unit(8e12, "meter")
  4509. },
  4510. {
  4511. name: "Devourer",
  4512. height: math.unit(14, "zettameters")
  4513. },
  4514. {
  4515. name: "Scarlet King",
  4516. height: math.unit(18, "yottameters")
  4517. },
  4518. {
  4519. name: "Void",
  4520. height: math.unit(1e88, "yottameters")
  4521. }
  4522. ]
  4523. ))
  4524. characterMakers.push(() => makeCharacter(
  4525. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4526. {
  4527. standing: {
  4528. height: math.unit(6, "feet"),
  4529. weight: math.unit(180, "lbs"),
  4530. name: "Standing",
  4531. image: {
  4532. source: "./media/characters/zaakira/standing.svg"
  4533. }
  4534. },
  4535. laying: {
  4536. height: math.unit(3, "feet"),
  4537. weight: math.unit(180, "lbs"),
  4538. name: "Laying",
  4539. image: {
  4540. source: "./media/characters/zaakira/laying.svg"
  4541. }
  4542. },
  4543. },
  4544. [
  4545. {
  4546. name: "Normal",
  4547. height: math.unit(12, "feet")
  4548. },
  4549. {
  4550. name: "Macro",
  4551. height: math.unit(279, "feet"),
  4552. default: true
  4553. }
  4554. ]
  4555. ))
  4556. characterMakers.push(() => makeCharacter(
  4557. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4558. {
  4559. femSfw: {
  4560. height: math.unit(8, "feet"),
  4561. weight: math.unit(350, "lb"),
  4562. name: "Fem",
  4563. image: {
  4564. source: "./media/characters/sigvald/fem-sfw.svg",
  4565. extra: 182 / 164,
  4566. bottom: 8.7 / 190.5
  4567. }
  4568. },
  4569. femNsfw: {
  4570. height: math.unit(8, "feet"),
  4571. weight: math.unit(350, "lb"),
  4572. name: "Fem (NSFW)",
  4573. image: {
  4574. source: "./media/characters/sigvald/fem-nsfw.svg",
  4575. extra: 182 / 164,
  4576. bottom: 8.7 / 190.5
  4577. }
  4578. },
  4579. maleNsfw: {
  4580. height: math.unit(8, "feet"),
  4581. weight: math.unit(350, "lb"),
  4582. name: "Male (NSFW)",
  4583. image: {
  4584. source: "./media/characters/sigvald/male-nsfw.svg",
  4585. extra: 182 / 164,
  4586. bottom: 8.7 / 190.5
  4587. }
  4588. },
  4589. hermNsfw: {
  4590. height: math.unit(8, "feet"),
  4591. weight: math.unit(350, "lb"),
  4592. name: "Herm (NSFW)",
  4593. image: {
  4594. source: "./media/characters/sigvald/herm-nsfw.svg",
  4595. extra: 182 / 164,
  4596. bottom: 8.7 / 190.5
  4597. }
  4598. },
  4599. dick: {
  4600. height: math.unit(2.36, "feet"),
  4601. name: "Dick",
  4602. image: {
  4603. source: "./media/characters/sigvald/dick.svg"
  4604. }
  4605. },
  4606. eye: {
  4607. height: math.unit(0.31, "feet"),
  4608. name: "Eye",
  4609. image: {
  4610. source: "./media/characters/sigvald/eye.svg"
  4611. }
  4612. },
  4613. mouth: {
  4614. height: math.unit(0.92, "feet"),
  4615. name: "Mouth",
  4616. image: {
  4617. source: "./media/characters/sigvald/mouth.svg"
  4618. }
  4619. },
  4620. paws: {
  4621. height: math.unit(2.2, "feet"),
  4622. name: "Paws",
  4623. image: {
  4624. source: "./media/characters/sigvald/paws.svg"
  4625. }
  4626. }
  4627. },
  4628. [
  4629. {
  4630. name: "Normal",
  4631. height: math.unit(8, "feet")
  4632. },
  4633. {
  4634. name: "Large",
  4635. height: math.unit(12, "feet")
  4636. },
  4637. {
  4638. name: "Larger",
  4639. height: math.unit(20, "feet")
  4640. },
  4641. {
  4642. name: "Macro",
  4643. height: math.unit(150, "feet")
  4644. },
  4645. {
  4646. name: "Macro+",
  4647. height: math.unit(200, "feet"),
  4648. default: true
  4649. },
  4650. ]
  4651. ))
  4652. characterMakers.push(() => makeCharacter(
  4653. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4654. {
  4655. side: {
  4656. height: math.unit(12, "feet"),
  4657. weight: math.unit(2000, "kg"),
  4658. name: "Side",
  4659. image: {
  4660. source: "./media/characters/scott/side.svg",
  4661. extra: 754 / 724,
  4662. bottom: 0.069
  4663. }
  4664. },
  4665. upright: {
  4666. height: math.unit(12, "feet"),
  4667. weight: math.unit(2000, "kg"),
  4668. name: "Upright",
  4669. image: {
  4670. source: "./media/characters/scott/upright.svg",
  4671. extra: 3881 / 3722,
  4672. bottom: 0.05
  4673. }
  4674. },
  4675. },
  4676. [
  4677. {
  4678. name: "Normal",
  4679. height: math.unit(12, "feet"),
  4680. default: true
  4681. },
  4682. ]
  4683. ))
  4684. characterMakers.push(() => makeCharacter(
  4685. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4686. {
  4687. side: {
  4688. height: math.unit(8, "meters"),
  4689. weight: math.unit(84755, "lbs"),
  4690. name: "Side",
  4691. image: {
  4692. source: "./media/characters/tobias/side.svg",
  4693. extra: 1474 / 1096,
  4694. bottom: 38.9 / 1513.1235
  4695. }
  4696. },
  4697. },
  4698. [
  4699. {
  4700. name: "Normal",
  4701. height: math.unit(8, "meters"),
  4702. default: true
  4703. },
  4704. ]
  4705. ))
  4706. characterMakers.push(() => makeCharacter(
  4707. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4708. {
  4709. front: {
  4710. height: math.unit(5.5, "feet"),
  4711. weight: math.unit(400, "lbs"),
  4712. name: "Front",
  4713. image: {
  4714. source: "./media/characters/kieran/front.svg",
  4715. extra: 2694 / 2364,
  4716. bottom: 217 / 2908
  4717. }
  4718. },
  4719. side: {
  4720. height: math.unit(5.5, "feet"),
  4721. weight: math.unit(400, "lbs"),
  4722. name: "Side",
  4723. image: {
  4724. source: "./media/characters/kieran/side.svg",
  4725. extra: 875 / 777,
  4726. bottom: 84.6 / 959
  4727. }
  4728. },
  4729. },
  4730. [
  4731. {
  4732. name: "Normal",
  4733. height: math.unit(5.5, "feet"),
  4734. default: true
  4735. },
  4736. ]
  4737. ))
  4738. characterMakers.push(() => makeCharacter(
  4739. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4740. {
  4741. side: {
  4742. height: math.unit(2, "meters"),
  4743. weight: math.unit(70, "kg"),
  4744. name: "Side",
  4745. image: {
  4746. source: "./media/characters/sanya/side.svg",
  4747. bottom: 0.02,
  4748. extra: 1.02
  4749. }
  4750. },
  4751. },
  4752. [
  4753. {
  4754. name: "Small",
  4755. height: math.unit(2, "meters")
  4756. },
  4757. {
  4758. name: "Normal",
  4759. height: math.unit(3, "meters")
  4760. },
  4761. {
  4762. name: "Macro",
  4763. height: math.unit(16, "meters"),
  4764. default: true
  4765. },
  4766. ]
  4767. ))
  4768. characterMakers.push(() => makeCharacter(
  4769. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4770. {
  4771. front: {
  4772. height: math.unit(2, "meters"),
  4773. weight: math.unit(120, "kg"),
  4774. name: "Front",
  4775. image: {
  4776. source: "./media/characters/miranda/front.svg",
  4777. extra: 195 / 185,
  4778. bottom: 10.9 / 206.5
  4779. }
  4780. },
  4781. back: {
  4782. height: math.unit(2, "meters"),
  4783. weight: math.unit(120, "kg"),
  4784. name: "Back",
  4785. image: {
  4786. source: "./media/characters/miranda/back.svg",
  4787. extra: 201 / 193,
  4788. bottom: 2.3 / 203.7
  4789. }
  4790. },
  4791. },
  4792. [
  4793. {
  4794. name: "Normal",
  4795. height: math.unit(10, "feet"),
  4796. default: true
  4797. }
  4798. ]
  4799. ))
  4800. characterMakers.push(() => makeCharacter(
  4801. { name: "James", species: ["deer"], tags: ["anthro"] },
  4802. {
  4803. side: {
  4804. height: math.unit(2, "meters"),
  4805. weight: math.unit(100, "kg"),
  4806. name: "Front",
  4807. image: {
  4808. source: "./media/characters/james/front.svg",
  4809. extra: 10 / 8.5
  4810. }
  4811. },
  4812. },
  4813. [
  4814. {
  4815. name: "Normal",
  4816. height: math.unit(8.5, "feet"),
  4817. default: true
  4818. }
  4819. ]
  4820. ))
  4821. characterMakers.push(() => makeCharacter(
  4822. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4823. {
  4824. side: {
  4825. height: math.unit(9.5, "feet"),
  4826. weight: math.unit(2500, "lbs"),
  4827. name: "Side",
  4828. image: {
  4829. source: "./media/characters/heather/side.svg"
  4830. }
  4831. },
  4832. },
  4833. [
  4834. {
  4835. name: "Normal",
  4836. height: math.unit(9.5, "feet"),
  4837. default: true
  4838. }
  4839. ]
  4840. ))
  4841. characterMakers.push(() => makeCharacter(
  4842. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4843. {
  4844. side: {
  4845. height: math.unit(6.5, "feet"),
  4846. weight: math.unit(400, "lbs"),
  4847. name: "Side",
  4848. image: {
  4849. source: "./media/characters/lukas/side.svg",
  4850. extra: 7.25 / 6.5
  4851. }
  4852. },
  4853. },
  4854. [
  4855. {
  4856. name: "Normal",
  4857. height: math.unit(6.5, "feet"),
  4858. default: true
  4859. }
  4860. ]
  4861. ))
  4862. characterMakers.push(() => makeCharacter(
  4863. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4864. {
  4865. side: {
  4866. height: math.unit(5, "feet"),
  4867. weight: math.unit(3000, "lbs"),
  4868. name: "Side",
  4869. image: {
  4870. source: "./media/characters/louise/side.svg"
  4871. }
  4872. },
  4873. },
  4874. [
  4875. {
  4876. name: "Normal",
  4877. height: math.unit(5, "feet"),
  4878. default: true
  4879. }
  4880. ]
  4881. ))
  4882. characterMakers.push(() => makeCharacter(
  4883. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4884. {
  4885. side: {
  4886. height: math.unit(6, "feet"),
  4887. weight: math.unit(150, "lbs"),
  4888. name: "Side",
  4889. image: {
  4890. source: "./media/characters/ramona/side.svg"
  4891. }
  4892. },
  4893. },
  4894. [
  4895. {
  4896. name: "Normal",
  4897. height: math.unit(5.3, "meters"),
  4898. default: true
  4899. },
  4900. {
  4901. name: "Macro",
  4902. height: math.unit(20, "stories")
  4903. },
  4904. {
  4905. name: "Macro+",
  4906. height: math.unit(50, "stories")
  4907. },
  4908. ]
  4909. ))
  4910. characterMakers.push(() => makeCharacter(
  4911. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4912. {
  4913. standing: {
  4914. height: math.unit(5.75, "feet"),
  4915. weight: math.unit(160, "lbs"),
  4916. name: "Standing",
  4917. image: {
  4918. source: "./media/characters/deerpuff/standing.svg",
  4919. extra: 682 / 624
  4920. }
  4921. },
  4922. sitting: {
  4923. height: math.unit(5.75 / 1.79, "feet"),
  4924. weight: math.unit(160, "lbs"),
  4925. name: "Sitting",
  4926. image: {
  4927. source: "./media/characters/deerpuff/sitting.svg",
  4928. bottom: 44 / 400,
  4929. extra: 1
  4930. }
  4931. },
  4932. taurLaying: {
  4933. height: math.unit(6, "feet"),
  4934. weight: math.unit(400, "lbs"),
  4935. name: "Taur (Laying)",
  4936. image: {
  4937. source: "./media/characters/deerpuff/taur-laying.svg"
  4938. }
  4939. },
  4940. },
  4941. [
  4942. {
  4943. name: "Puffball",
  4944. height: math.unit(6, "inches")
  4945. },
  4946. {
  4947. name: "Normalpuff",
  4948. height: math.unit(5.75, "feet")
  4949. },
  4950. {
  4951. name: "Macropuff",
  4952. height: math.unit(1500, "feet"),
  4953. default: true
  4954. },
  4955. {
  4956. name: "Megapuff",
  4957. height: math.unit(500, "miles")
  4958. },
  4959. {
  4960. name: "Gigapuff",
  4961. height: math.unit(250000, "miles")
  4962. },
  4963. {
  4964. name: "Omegapuff",
  4965. height: math.unit(1000, "lightyears")
  4966. },
  4967. ]
  4968. ))
  4969. characterMakers.push(() => makeCharacter(
  4970. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4971. {
  4972. stomping: {
  4973. height: math.unit(6, "feet"),
  4974. weight: math.unit(170, "lbs"),
  4975. name: "Stomping",
  4976. image: {
  4977. source: "./media/characters/vivian/stomping.svg"
  4978. }
  4979. },
  4980. sitting: {
  4981. height: math.unit(6 / 1.75, "feet"),
  4982. weight: math.unit(170, "lbs"),
  4983. name: "Sitting",
  4984. image: {
  4985. source: "./media/characters/vivian/sitting.svg",
  4986. bottom: 1 / 6.4,
  4987. extra: 1,
  4988. }
  4989. },
  4990. },
  4991. [
  4992. {
  4993. name: "Normal",
  4994. height: math.unit(7, "feet"),
  4995. default: true
  4996. },
  4997. {
  4998. name: "Macro",
  4999. height: math.unit(10, "stories")
  5000. },
  5001. {
  5002. name: "Macro+",
  5003. height: math.unit(30, "stories")
  5004. },
  5005. {
  5006. name: "Megamacro",
  5007. height: math.unit(10, "miles")
  5008. },
  5009. {
  5010. name: "Megamacro+",
  5011. height: math.unit(2750000, "meters")
  5012. },
  5013. ]
  5014. ))
  5015. characterMakers.push(() => makeCharacter(
  5016. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5017. {
  5018. front: {
  5019. height: math.unit(6, "feet"),
  5020. weight: math.unit(160, "lbs"),
  5021. name: "Front",
  5022. image: {
  5023. source: "./media/characters/prince/front.svg",
  5024. extra: 3400 / 3000
  5025. }
  5026. },
  5027. jumping: {
  5028. height: math.unit(6, "feet"),
  5029. weight: math.unit(160, "lbs"),
  5030. name: "Jumping",
  5031. image: {
  5032. source: "./media/characters/prince/jump.svg",
  5033. extra: 2555 / 2134
  5034. }
  5035. },
  5036. },
  5037. [
  5038. {
  5039. name: "Normal",
  5040. height: math.unit(7.75, "feet"),
  5041. default: true
  5042. },
  5043. {
  5044. name: "Not cute",
  5045. height: math.unit(17, "feet")
  5046. },
  5047. {
  5048. name: "I said NOT",
  5049. height: math.unit(91, "feet")
  5050. },
  5051. {
  5052. name: "Please stop",
  5053. height: math.unit(560, "feet")
  5054. },
  5055. {
  5056. name: "What have you done",
  5057. height: math.unit(2200, "feet")
  5058. },
  5059. {
  5060. name: "Deer God",
  5061. height: math.unit(3.6, "miles")
  5062. },
  5063. ]
  5064. ))
  5065. characterMakers.push(() => makeCharacter(
  5066. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5067. {
  5068. standing: {
  5069. height: math.unit(6, "feet"),
  5070. weight: math.unit(300, "lbs"),
  5071. name: "Standing",
  5072. image: {
  5073. source: "./media/characters/psymon/standing.svg",
  5074. extra: 1888 / 1810,
  5075. bottom: 0.05
  5076. }
  5077. },
  5078. slithering: {
  5079. height: math.unit(6, "feet"),
  5080. weight: math.unit(300, "lbs"),
  5081. name: "Slithering",
  5082. image: {
  5083. source: "./media/characters/psymon/slithering.svg",
  5084. extra: 1330 / 1224
  5085. }
  5086. },
  5087. slitheringAlt: {
  5088. height: math.unit(6, "feet"),
  5089. weight: math.unit(300, "lbs"),
  5090. name: "Slithering (Alt)",
  5091. image: {
  5092. source: "./media/characters/psymon/slithering-alt.svg",
  5093. extra: 1330 / 1224
  5094. }
  5095. },
  5096. },
  5097. [
  5098. {
  5099. name: "Normal",
  5100. height: math.unit(11.25, "feet"),
  5101. default: true
  5102. },
  5103. {
  5104. name: "Large",
  5105. height: math.unit(27, "feet")
  5106. },
  5107. {
  5108. name: "Giant",
  5109. height: math.unit(87, "feet")
  5110. },
  5111. {
  5112. name: "Macro",
  5113. height: math.unit(365, "feet")
  5114. },
  5115. {
  5116. name: "Megamacro",
  5117. height: math.unit(3, "miles")
  5118. },
  5119. {
  5120. name: "World Serpent",
  5121. height: math.unit(8000, "miles")
  5122. },
  5123. ]
  5124. ))
  5125. characterMakers.push(() => makeCharacter(
  5126. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5127. {
  5128. front: {
  5129. height: math.unit(6, "feet"),
  5130. weight: math.unit(180, "lbs"),
  5131. name: "Front",
  5132. image: {
  5133. source: "./media/characters/daimos/front.svg",
  5134. extra: 4160 / 3897,
  5135. bottom: 0.021
  5136. }
  5137. }
  5138. },
  5139. [
  5140. {
  5141. name: "Normal",
  5142. height: math.unit(8, "feet"),
  5143. default: true
  5144. },
  5145. {
  5146. name: "Big Dog",
  5147. height: math.unit(22, "feet")
  5148. },
  5149. {
  5150. name: "Macro",
  5151. height: math.unit(127, "feet")
  5152. },
  5153. {
  5154. name: "Megamacro",
  5155. height: math.unit(3600, "feet")
  5156. },
  5157. ]
  5158. ))
  5159. characterMakers.push(() => makeCharacter(
  5160. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5161. {
  5162. side: {
  5163. height: math.unit(6, "feet"),
  5164. weight: math.unit(180, "lbs"),
  5165. name: "Side",
  5166. image: {
  5167. source: "./media/characters/blake/side.svg",
  5168. extra: 1212 / 1120,
  5169. bottom: 0.05
  5170. }
  5171. },
  5172. crouched: {
  5173. height: math.unit(6 * 0.57, "feet"),
  5174. weight: math.unit(180, "lbs"),
  5175. name: "Crouched",
  5176. image: {
  5177. source: "./media/characters/blake/crouched.svg",
  5178. extra: 840 / 587,
  5179. bottom: 0.04
  5180. }
  5181. },
  5182. bent: {
  5183. height: math.unit(6 * 0.75, "feet"),
  5184. weight: math.unit(180, "lbs"),
  5185. name: "Bent",
  5186. image: {
  5187. source: "./media/characters/blake/bent.svg",
  5188. extra: 592 / 544,
  5189. bottom: 0.035
  5190. }
  5191. },
  5192. },
  5193. [
  5194. {
  5195. name: "Normal",
  5196. height: math.unit(8 + 1 / 6, "feet"),
  5197. default: true
  5198. },
  5199. {
  5200. name: "Big Backside",
  5201. height: math.unit(37, "feet")
  5202. },
  5203. {
  5204. name: "Subway Shredder",
  5205. height: math.unit(72, "feet")
  5206. },
  5207. {
  5208. name: "City Carver",
  5209. height: math.unit(1675, "feet")
  5210. },
  5211. {
  5212. name: "Tectonic Tweaker",
  5213. height: math.unit(2300, "miles")
  5214. },
  5215. ]
  5216. ))
  5217. characterMakers.push(() => makeCharacter(
  5218. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5219. {
  5220. front: {
  5221. height: math.unit(6, "feet"),
  5222. weight: math.unit(180, "lbs"),
  5223. name: "Front",
  5224. image: {
  5225. source: "./media/characters/guisetto/front.svg",
  5226. extra: 856 / 817,
  5227. bottom: 0.06
  5228. }
  5229. },
  5230. airborne: {
  5231. height: math.unit(6, "feet"),
  5232. weight: math.unit(180, "lbs"),
  5233. name: "Airborne",
  5234. image: {
  5235. source: "./media/characters/guisetto/airborne.svg",
  5236. extra: 584 / 525
  5237. }
  5238. },
  5239. },
  5240. [
  5241. {
  5242. name: "Normal",
  5243. height: math.unit(10 + 11 / 12, "feet"),
  5244. default: true
  5245. },
  5246. {
  5247. name: "Large",
  5248. height: math.unit(35, "feet")
  5249. },
  5250. {
  5251. name: "Macro",
  5252. height: math.unit(475, "feet")
  5253. },
  5254. ]
  5255. ))
  5256. characterMakers.push(() => makeCharacter(
  5257. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5258. {
  5259. front: {
  5260. height: math.unit(6, "feet"),
  5261. weight: math.unit(180, "lbs"),
  5262. name: "Front",
  5263. image: {
  5264. source: "./media/characters/luxor/front.svg",
  5265. extra: 2940 / 2152
  5266. }
  5267. },
  5268. back: {
  5269. height: math.unit(6, "feet"),
  5270. weight: math.unit(180, "lbs"),
  5271. name: "Back",
  5272. image: {
  5273. source: "./media/characters/luxor/back.svg",
  5274. extra: 1083 / 960
  5275. }
  5276. },
  5277. },
  5278. [
  5279. {
  5280. name: "Normal",
  5281. height: math.unit(5 + 5 / 6, "feet"),
  5282. default: true
  5283. },
  5284. {
  5285. name: "Lamp",
  5286. height: math.unit(50, "feet")
  5287. },
  5288. {
  5289. name: "Lämp",
  5290. height: math.unit(300, "feet")
  5291. },
  5292. {
  5293. name: "The sun is a lamp",
  5294. height: math.unit(250000, "miles")
  5295. },
  5296. ]
  5297. ))
  5298. characterMakers.push(() => makeCharacter(
  5299. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5300. {
  5301. front: {
  5302. height: math.unit(6, "feet"),
  5303. weight: math.unit(50, "lbs"),
  5304. name: "Front",
  5305. image: {
  5306. source: "./media/characters/huoyan/front.svg"
  5307. }
  5308. },
  5309. side: {
  5310. height: math.unit(6, "feet"),
  5311. weight: math.unit(180, "lbs"),
  5312. name: "Side",
  5313. image: {
  5314. source: "./media/characters/huoyan/side.svg"
  5315. }
  5316. },
  5317. },
  5318. [
  5319. {
  5320. name: "Chef",
  5321. height: math.unit(9, "feet")
  5322. },
  5323. {
  5324. name: "Normal",
  5325. height: math.unit(65, "feet"),
  5326. default: true
  5327. },
  5328. {
  5329. name: "Macro",
  5330. height: math.unit(780, "feet")
  5331. },
  5332. {
  5333. name: "Flaming Mountain",
  5334. height: math.unit(4.8, "miles")
  5335. },
  5336. {
  5337. name: "Celestial",
  5338. height: math.unit(765000, "miles")
  5339. },
  5340. ]
  5341. ))
  5342. characterMakers.push(() => makeCharacter(
  5343. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5344. {
  5345. front: {
  5346. height: math.unit(5 + 3 / 4, "feet"),
  5347. weight: math.unit(120, "lbs"),
  5348. name: "Front",
  5349. image: {
  5350. source: "./media/characters/tails/front.svg"
  5351. }
  5352. }
  5353. },
  5354. [
  5355. {
  5356. name: "Normal",
  5357. height: math.unit(5 + 3 / 4, "feet"),
  5358. default: true
  5359. }
  5360. ]
  5361. ))
  5362. characterMakers.push(() => makeCharacter(
  5363. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5364. {
  5365. front: {
  5366. height: math.unit(4, "feet"),
  5367. weight: math.unit(50, "lbs"),
  5368. name: "Front",
  5369. image: {
  5370. source: "./media/characters/rainy/front.svg"
  5371. }
  5372. }
  5373. },
  5374. [
  5375. {
  5376. name: "Macro",
  5377. height: math.unit(800, "feet"),
  5378. default: true
  5379. }
  5380. ]
  5381. ))
  5382. characterMakers.push(() => makeCharacter(
  5383. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5384. {
  5385. front: {
  5386. height: math.unit(6, "feet"),
  5387. weight: math.unit(150, "lbs"),
  5388. name: "Front",
  5389. image: {
  5390. source: "./media/characters/rainier/front.svg"
  5391. }
  5392. }
  5393. },
  5394. [
  5395. {
  5396. name: "Micro",
  5397. height: math.unit(2, "mm"),
  5398. default: true
  5399. }
  5400. ]
  5401. ))
  5402. characterMakers.push(() => makeCharacter(
  5403. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5404. {
  5405. front: {
  5406. height: math.unit(6, "feet"),
  5407. weight: math.unit(180, "lbs"),
  5408. name: "Front",
  5409. image: {
  5410. source: "./media/characters/andy/front.svg"
  5411. }
  5412. }
  5413. },
  5414. [
  5415. {
  5416. name: "Normal",
  5417. height: math.unit(8, "feet"),
  5418. default: true
  5419. },
  5420. {
  5421. name: "Macro",
  5422. height: math.unit(1000, "feet")
  5423. },
  5424. {
  5425. name: "Megamacro",
  5426. height: math.unit(5, "miles")
  5427. },
  5428. {
  5429. name: "Gigamacro",
  5430. height: math.unit(5000, "miles")
  5431. },
  5432. ]
  5433. ))
  5434. characterMakers.push(() => makeCharacter(
  5435. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5436. {
  5437. front: {
  5438. height: math.unit(6, "feet"),
  5439. weight: math.unit(210, "lbs"),
  5440. name: "Front",
  5441. image: {
  5442. source: "./media/characters/cimmaron/front-sfw.svg",
  5443. extra: 701 / 676,
  5444. bottom: 0.046
  5445. }
  5446. },
  5447. back: {
  5448. height: math.unit(6, "feet"),
  5449. weight: math.unit(210, "lbs"),
  5450. name: "Back",
  5451. image: {
  5452. source: "./media/characters/cimmaron/back-sfw.svg",
  5453. extra: 701 / 676,
  5454. bottom: 0.046
  5455. }
  5456. },
  5457. frontNsfw: {
  5458. height: math.unit(6, "feet"),
  5459. weight: math.unit(210, "lbs"),
  5460. name: "Front (NSFW)",
  5461. image: {
  5462. source: "./media/characters/cimmaron/front-nsfw.svg",
  5463. extra: 701 / 676,
  5464. bottom: 0.046
  5465. }
  5466. },
  5467. backNsfw: {
  5468. height: math.unit(6, "feet"),
  5469. weight: math.unit(210, "lbs"),
  5470. name: "Back (NSFW)",
  5471. image: {
  5472. source: "./media/characters/cimmaron/back-nsfw.svg",
  5473. extra: 701 / 676,
  5474. bottom: 0.046
  5475. }
  5476. },
  5477. dick: {
  5478. height: math.unit(1.714, "feet"),
  5479. name: "Dick",
  5480. image: {
  5481. source: "./media/characters/cimmaron/dick.svg"
  5482. }
  5483. },
  5484. },
  5485. [
  5486. {
  5487. name: "Normal",
  5488. height: math.unit(6, "feet"),
  5489. default: true
  5490. },
  5491. {
  5492. name: "Macro Mayor",
  5493. height: math.unit(350, "meters")
  5494. },
  5495. ]
  5496. ))
  5497. characterMakers.push(() => makeCharacter(
  5498. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5499. {
  5500. front: {
  5501. height: math.unit(6, "feet"),
  5502. weight: math.unit(200, "lbs"),
  5503. name: "Front",
  5504. image: {
  5505. source: "./media/characters/akari/front.svg",
  5506. extra: 962 / 901,
  5507. bottom: 0.04
  5508. }
  5509. }
  5510. },
  5511. [
  5512. {
  5513. name: "Micro",
  5514. height: math.unit(5, "inches"),
  5515. default: true
  5516. },
  5517. {
  5518. name: "Normal",
  5519. height: math.unit(7, "feet")
  5520. },
  5521. ]
  5522. ))
  5523. characterMakers.push(() => makeCharacter(
  5524. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5525. {
  5526. front: {
  5527. height: math.unit(6, "feet"),
  5528. weight: math.unit(140, "lbs"),
  5529. name: "Front",
  5530. image: {
  5531. source: "./media/characters/cynosura/front.svg",
  5532. extra: 896 / 847
  5533. }
  5534. },
  5535. back: {
  5536. height: math.unit(6, "feet"),
  5537. weight: math.unit(140, "lbs"),
  5538. name: "Back",
  5539. image: {
  5540. source: "./media/characters/cynosura/back.svg",
  5541. extra: 1365 / 1250
  5542. }
  5543. },
  5544. },
  5545. [
  5546. {
  5547. name: "Micro",
  5548. height: math.unit(4, "inches")
  5549. },
  5550. {
  5551. name: "Normal",
  5552. height: math.unit(5.75, "feet"),
  5553. default: true
  5554. },
  5555. {
  5556. name: "Tall",
  5557. height: math.unit(10, "feet")
  5558. },
  5559. {
  5560. name: "Big",
  5561. height: math.unit(20, "feet")
  5562. },
  5563. {
  5564. name: "Macro",
  5565. height: math.unit(50, "feet")
  5566. },
  5567. ]
  5568. ))
  5569. characterMakers.push(() => makeCharacter(
  5570. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5571. {
  5572. front: {
  5573. height: math.unit(6, "feet"),
  5574. weight: math.unit(170, "lbs"),
  5575. name: "Front",
  5576. image: {
  5577. source: "./media/characters/gin/front.svg",
  5578. extra: 1.053,
  5579. bottom: 0.025
  5580. }
  5581. },
  5582. foot: {
  5583. height: math.unit(6 / 4.25, "feet"),
  5584. name: "Foot",
  5585. image: {
  5586. source: "./media/characters/gin/foot.svg"
  5587. }
  5588. },
  5589. sole: {
  5590. height: math.unit(6 / 4.40, "feet"),
  5591. name: "Sole",
  5592. image: {
  5593. source: "./media/characters/gin/sole.svg"
  5594. }
  5595. },
  5596. },
  5597. [
  5598. {
  5599. name: "Normal",
  5600. height: math.unit(13 + 2 / 12, "feet")
  5601. },
  5602. {
  5603. name: "Macro",
  5604. height: math.unit(1500, "feet")
  5605. },
  5606. {
  5607. name: "Megamacro",
  5608. height: math.unit(200, "miles"),
  5609. default: true
  5610. },
  5611. {
  5612. name: "Gigamacro",
  5613. height: math.unit(500, "megameters")
  5614. },
  5615. {
  5616. name: "Teramacro",
  5617. height: math.unit(15, "lightyears")
  5618. }
  5619. ]
  5620. ))
  5621. characterMakers.push(() => makeCharacter(
  5622. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5623. {
  5624. front: {
  5625. height: math.unit(6 + 1 / 6, "feet"),
  5626. weight: math.unit(178, "lbs"),
  5627. name: "Front",
  5628. image: {
  5629. source: "./media/characters/guy/front.svg"
  5630. }
  5631. }
  5632. },
  5633. [
  5634. {
  5635. name: "Normal",
  5636. height: math.unit(6 + 1 / 6, "feet"),
  5637. default: true
  5638. },
  5639. {
  5640. name: "Large",
  5641. height: math.unit(25 + 7 / 12, "feet")
  5642. },
  5643. {
  5644. name: "Macro",
  5645. height: math.unit(60 + 9 / 12, "feet")
  5646. },
  5647. {
  5648. name: "Macro+",
  5649. height: math.unit(246, "feet")
  5650. },
  5651. {
  5652. name: "Macro++",
  5653. height: math.unit(878, "feet")
  5654. }
  5655. ]
  5656. ))
  5657. characterMakers.push(() => makeCharacter(
  5658. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5659. {
  5660. front: {
  5661. height: math.unit(9, "feet"),
  5662. weight: math.unit(800, "lbs"),
  5663. name: "Front",
  5664. image: {
  5665. source: "./media/characters/tiberius/front.svg",
  5666. extra: 2295 / 2071
  5667. }
  5668. },
  5669. back: {
  5670. height: math.unit(9, "feet"),
  5671. weight: math.unit(800, "lbs"),
  5672. name: "Back",
  5673. image: {
  5674. source: "./media/characters/tiberius/back.svg",
  5675. extra: 2373 / 2160
  5676. }
  5677. },
  5678. },
  5679. [
  5680. {
  5681. name: "Normal",
  5682. height: math.unit(9, "feet"),
  5683. default: true
  5684. }
  5685. ]
  5686. ))
  5687. characterMakers.push(() => makeCharacter(
  5688. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5689. {
  5690. front: {
  5691. height: math.unit(6, "feet"),
  5692. weight: math.unit(600, "lbs"),
  5693. name: "Front",
  5694. image: {
  5695. source: "./media/characters/surgo/front.svg",
  5696. extra: 3591 / 2227
  5697. }
  5698. },
  5699. back: {
  5700. height: math.unit(6, "feet"),
  5701. weight: math.unit(600, "lbs"),
  5702. name: "Back",
  5703. image: {
  5704. source: "./media/characters/surgo/back.svg",
  5705. extra: 3557 / 2228
  5706. }
  5707. },
  5708. laying: {
  5709. height: math.unit(6 * 0.85, "feet"),
  5710. weight: math.unit(600, "lbs"),
  5711. name: "Laying",
  5712. image: {
  5713. source: "./media/characters/surgo/laying.svg"
  5714. }
  5715. },
  5716. },
  5717. [
  5718. {
  5719. name: "Normal",
  5720. height: math.unit(6, "feet"),
  5721. default: true
  5722. }
  5723. ]
  5724. ))
  5725. characterMakers.push(() => makeCharacter(
  5726. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5727. {
  5728. side: {
  5729. height: math.unit(6, "feet"),
  5730. weight: math.unit(150, "lbs"),
  5731. name: "Side",
  5732. image: {
  5733. source: "./media/characters/cibus/side.svg",
  5734. extra: 800 / 400
  5735. }
  5736. },
  5737. },
  5738. [
  5739. {
  5740. name: "Normal",
  5741. height: math.unit(6, "feet"),
  5742. default: true
  5743. }
  5744. ]
  5745. ))
  5746. characterMakers.push(() => makeCharacter(
  5747. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5748. {
  5749. front: {
  5750. height: math.unit(6, "feet"),
  5751. weight: math.unit(240, "lbs"),
  5752. name: "Front",
  5753. image: {
  5754. source: "./media/characters/nibbles/front.svg"
  5755. }
  5756. },
  5757. side: {
  5758. height: math.unit(6, "feet"),
  5759. weight: math.unit(240, "lbs"),
  5760. name: "Side",
  5761. image: {
  5762. source: "./media/characters/nibbles/side.svg"
  5763. }
  5764. },
  5765. },
  5766. [
  5767. {
  5768. name: "Normal",
  5769. height: math.unit(9, "feet"),
  5770. default: true
  5771. }
  5772. ]
  5773. ))
  5774. characterMakers.push(() => makeCharacter(
  5775. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5776. {
  5777. side: {
  5778. height: math.unit(5 + 1 / 6, "feet"),
  5779. weight: math.unit(130, "lbs"),
  5780. name: "Side",
  5781. image: {
  5782. source: "./media/characters/rikky/side.svg",
  5783. extra: 851 / 801
  5784. }
  5785. },
  5786. },
  5787. [
  5788. {
  5789. name: "Normal",
  5790. height: math.unit(5 + 1 / 6, "feet")
  5791. },
  5792. {
  5793. name: "Macro",
  5794. height: math.unit(152, "feet"),
  5795. default: true
  5796. },
  5797. {
  5798. name: "Megamacro",
  5799. height: math.unit(7, "miles")
  5800. }
  5801. ]
  5802. ))
  5803. characterMakers.push(() => makeCharacter(
  5804. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5805. {
  5806. side: {
  5807. height: math.unit(370, "cm"),
  5808. weight: math.unit(350, "lbs"),
  5809. name: "Side",
  5810. image: {
  5811. source: "./media/characters/malfressa/side.svg"
  5812. }
  5813. },
  5814. walking: {
  5815. height: math.unit(370, "cm"),
  5816. weight: math.unit(350, "lbs"),
  5817. name: "Walking",
  5818. image: {
  5819. source: "./media/characters/malfressa/walking.svg"
  5820. }
  5821. },
  5822. feral: {
  5823. height: math.unit(2500, "cm"),
  5824. weight: math.unit(100000, "lbs"),
  5825. name: "Feral",
  5826. image: {
  5827. source: "./media/characters/malfressa/feral.svg",
  5828. extra: 2108 / 837,
  5829. bottom: 0.02
  5830. }
  5831. },
  5832. },
  5833. [
  5834. {
  5835. name: "Normal",
  5836. height: math.unit(370, "cm")
  5837. },
  5838. {
  5839. name: "Macro",
  5840. height: math.unit(300, "meters"),
  5841. default: true
  5842. }
  5843. ]
  5844. ))
  5845. characterMakers.push(() => makeCharacter(
  5846. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5847. {
  5848. front: {
  5849. height: math.unit(6, "feet"),
  5850. weight: math.unit(60, "kg"),
  5851. name: "Front",
  5852. image: {
  5853. source: "./media/characters/jaro/front.svg"
  5854. }
  5855. },
  5856. back: {
  5857. height: math.unit(6, "feet"),
  5858. weight: math.unit(60, "kg"),
  5859. name: "Back",
  5860. image: {
  5861. source: "./media/characters/jaro/back.svg"
  5862. }
  5863. },
  5864. },
  5865. [
  5866. {
  5867. name: "Micro",
  5868. height: math.unit(7, "inches")
  5869. },
  5870. {
  5871. name: "Normal",
  5872. height: math.unit(5.5, "feet"),
  5873. default: true
  5874. },
  5875. {
  5876. name: "Minimacro",
  5877. height: math.unit(20, "feet")
  5878. },
  5879. {
  5880. name: "Macro",
  5881. height: math.unit(200, "meters")
  5882. }
  5883. ]
  5884. ))
  5885. characterMakers.push(() => makeCharacter(
  5886. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5887. {
  5888. front: {
  5889. height: math.unit(6, "feet"),
  5890. weight: math.unit(195, "lb"),
  5891. name: "Front",
  5892. image: {
  5893. source: "./media/characters/rogue/front.svg"
  5894. }
  5895. },
  5896. },
  5897. [
  5898. {
  5899. name: "Macro",
  5900. height: math.unit(90, "feet"),
  5901. default: true
  5902. },
  5903. ]
  5904. ))
  5905. characterMakers.push(() => makeCharacter(
  5906. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5907. {
  5908. front: {
  5909. height: math.unit(5 + 8 / 12, "feet"),
  5910. weight: math.unit(140, "lb"),
  5911. name: "Front",
  5912. image: {
  5913. source: "./media/characters/piper/front.svg",
  5914. extra: 3948/3655,
  5915. bottom: 0/3948
  5916. }
  5917. },
  5918. },
  5919. [
  5920. {
  5921. name: "Micro",
  5922. height: math.unit(2, "inches")
  5923. },
  5924. {
  5925. name: "Normal",
  5926. height: math.unit(5 + 8 / 12, "feet")
  5927. },
  5928. {
  5929. name: "Macro",
  5930. height: math.unit(250, "feet"),
  5931. default: true
  5932. },
  5933. {
  5934. name: "Megamacro",
  5935. height: math.unit(7, "miles")
  5936. },
  5937. ]
  5938. ))
  5939. characterMakers.push(() => makeCharacter(
  5940. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5941. {
  5942. front: {
  5943. height: math.unit(6, "feet"),
  5944. weight: math.unit(220, "lb"),
  5945. name: "Front",
  5946. image: {
  5947. source: "./media/characters/gemini/front.svg"
  5948. }
  5949. },
  5950. back: {
  5951. height: math.unit(6, "feet"),
  5952. weight: math.unit(220, "lb"),
  5953. name: "Back",
  5954. image: {
  5955. source: "./media/characters/gemini/back.svg"
  5956. }
  5957. },
  5958. kneeling: {
  5959. height: math.unit(6 / 1.5, "feet"),
  5960. weight: math.unit(220, "lb"),
  5961. name: "Kneeling",
  5962. image: {
  5963. source: "./media/characters/gemini/kneeling.svg",
  5964. bottom: 0.02
  5965. }
  5966. },
  5967. },
  5968. [
  5969. {
  5970. name: "Macro",
  5971. height: math.unit(300, "meters"),
  5972. default: true
  5973. },
  5974. {
  5975. name: "Megamacro",
  5976. height: math.unit(6900, "meters")
  5977. },
  5978. ]
  5979. ))
  5980. characterMakers.push(() => makeCharacter(
  5981. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5982. {
  5983. anthro: {
  5984. height: math.unit(2.35, "meters"),
  5985. weight: math.unit(73, "kg"),
  5986. name: "Anthro",
  5987. image: {
  5988. source: "./media/characters/alicia/anthro.svg",
  5989. extra: 2571 / 2385,
  5990. bottom: 75 / 2648
  5991. }
  5992. },
  5993. paw: {
  5994. height: math.unit(1.32, "feet"),
  5995. name: "Paw",
  5996. image: {
  5997. source: "./media/characters/alicia/paw.svg"
  5998. }
  5999. },
  6000. feral: {
  6001. height: math.unit(1.69, "meters"),
  6002. weight: math.unit(73, "kg"),
  6003. name: "Feral",
  6004. image: {
  6005. source: "./media/characters/alicia/feral.svg",
  6006. extra: 2123 / 1715,
  6007. bottom: 222 / 2349
  6008. }
  6009. },
  6010. },
  6011. [
  6012. {
  6013. name: "Normal",
  6014. height: math.unit(2.35, "meters")
  6015. },
  6016. {
  6017. name: "Macro",
  6018. height: math.unit(60, "meters"),
  6019. default: true
  6020. },
  6021. {
  6022. name: "Megamacro",
  6023. height: math.unit(10000, "kilometers")
  6024. },
  6025. ]
  6026. ))
  6027. characterMakers.push(() => makeCharacter(
  6028. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6029. {
  6030. front: {
  6031. height: math.unit(7, "feet"),
  6032. weight: math.unit(250, "lbs"),
  6033. name: "Front",
  6034. image: {
  6035. source: "./media/characters/archy/front.svg"
  6036. }
  6037. }
  6038. },
  6039. [
  6040. {
  6041. name: "Micro",
  6042. height: math.unit(1, "inch")
  6043. },
  6044. {
  6045. name: "Shorty",
  6046. height: math.unit(5, "feet")
  6047. },
  6048. {
  6049. name: "Normal",
  6050. height: math.unit(7, "feet")
  6051. },
  6052. {
  6053. name: "Macro",
  6054. height: math.unit(600, "meters"),
  6055. default: true
  6056. },
  6057. {
  6058. name: "Megamacro",
  6059. height: math.unit(1, "mile")
  6060. },
  6061. ]
  6062. ))
  6063. characterMakers.push(() => makeCharacter(
  6064. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6065. {
  6066. front: {
  6067. height: math.unit(1.65, "meters"),
  6068. weight: math.unit(74, "kg"),
  6069. name: "Front",
  6070. image: {
  6071. source: "./media/characters/berri/front.svg",
  6072. extra: 857 / 837,
  6073. bottom: 18 / 877
  6074. }
  6075. },
  6076. bum: {
  6077. height: math.unit(1.46, "feet"),
  6078. name: "Bum",
  6079. image: {
  6080. source: "./media/characters/berri/bum.svg"
  6081. }
  6082. },
  6083. mouth: {
  6084. height: math.unit(0.44, "feet"),
  6085. name: "Mouth",
  6086. image: {
  6087. source: "./media/characters/berri/mouth.svg"
  6088. }
  6089. },
  6090. paw: {
  6091. height: math.unit(0.826, "feet"),
  6092. name: "Paw",
  6093. image: {
  6094. source: "./media/characters/berri/paw.svg"
  6095. }
  6096. },
  6097. },
  6098. [
  6099. {
  6100. name: "Normal",
  6101. height: math.unit(1.65, "meters")
  6102. },
  6103. {
  6104. name: "Macro",
  6105. height: math.unit(60, "m"),
  6106. default: true
  6107. },
  6108. {
  6109. name: "Megamacro",
  6110. height: math.unit(9.213, "km")
  6111. },
  6112. {
  6113. name: "Planet Eater",
  6114. height: math.unit(489, "megameters")
  6115. },
  6116. {
  6117. name: "Teramacro",
  6118. height: math.unit(2471635000000, "meters")
  6119. },
  6120. {
  6121. name: "Examacro",
  6122. height: math.unit(8.0624e+26, "meters")
  6123. }
  6124. ]
  6125. ))
  6126. characterMakers.push(() => makeCharacter(
  6127. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6128. {
  6129. front: {
  6130. height: math.unit(1.72, "meters"),
  6131. weight: math.unit(68, "kg"),
  6132. name: "Front",
  6133. image: {
  6134. source: "./media/characters/lexi/front.svg"
  6135. }
  6136. }
  6137. },
  6138. [
  6139. {
  6140. name: "Very Smol",
  6141. height: math.unit(10, "mm")
  6142. },
  6143. {
  6144. name: "Micro",
  6145. height: math.unit(6.8, "cm"),
  6146. default: true
  6147. },
  6148. {
  6149. name: "Normal",
  6150. height: math.unit(1.72, "m")
  6151. }
  6152. ]
  6153. ))
  6154. characterMakers.push(() => makeCharacter(
  6155. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6156. {
  6157. front: {
  6158. height: math.unit(1.69, "meters"),
  6159. weight: math.unit(68, "kg"),
  6160. name: "Front",
  6161. image: {
  6162. source: "./media/characters/martin/front.svg",
  6163. extra: 596 / 581
  6164. }
  6165. }
  6166. },
  6167. [
  6168. {
  6169. name: "Micro",
  6170. height: math.unit(6.85, "cm"),
  6171. default: true
  6172. },
  6173. {
  6174. name: "Normal",
  6175. height: math.unit(1.69, "m")
  6176. }
  6177. ]
  6178. ))
  6179. characterMakers.push(() => makeCharacter(
  6180. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6181. {
  6182. front: {
  6183. height: math.unit(1.69, "meters"),
  6184. weight: math.unit(68, "kg"),
  6185. name: "Front",
  6186. image: {
  6187. source: "./media/characters/juno/front.svg"
  6188. }
  6189. }
  6190. },
  6191. [
  6192. {
  6193. name: "Micro",
  6194. height: math.unit(7, "cm")
  6195. },
  6196. {
  6197. name: "Normal",
  6198. height: math.unit(1.89, "m")
  6199. },
  6200. {
  6201. name: "Macro",
  6202. height: math.unit(353, "meters"),
  6203. default: true
  6204. }
  6205. ]
  6206. ))
  6207. characterMakers.push(() => makeCharacter(
  6208. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6209. {
  6210. front: {
  6211. height: math.unit(1.93, "meters"),
  6212. weight: math.unit(83, "kg"),
  6213. name: "Front",
  6214. image: {
  6215. source: "./media/characters/samantha/front.svg"
  6216. }
  6217. },
  6218. frontClothed: {
  6219. height: math.unit(1.93, "meters"),
  6220. weight: math.unit(83, "kg"),
  6221. name: "Front (Clothed)",
  6222. image: {
  6223. source: "./media/characters/samantha/front-clothed.svg"
  6224. }
  6225. },
  6226. back: {
  6227. height: math.unit(1.93, "meters"),
  6228. weight: math.unit(83, "kg"),
  6229. name: "Back",
  6230. image: {
  6231. source: "./media/characters/samantha/back.svg"
  6232. }
  6233. },
  6234. },
  6235. [
  6236. {
  6237. name: "Normal",
  6238. height: math.unit(1.93, "m")
  6239. },
  6240. {
  6241. name: "Macro",
  6242. height: math.unit(74, "meters"),
  6243. default: true
  6244. },
  6245. {
  6246. name: "Macro+",
  6247. height: math.unit(223, "meters"),
  6248. },
  6249. {
  6250. name: "Megamacro",
  6251. height: math.unit(8381, "meters"),
  6252. },
  6253. {
  6254. name: "Megamacro+",
  6255. height: math.unit(12000, "kilometers")
  6256. },
  6257. ]
  6258. ))
  6259. characterMakers.push(() => makeCharacter(
  6260. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6261. {
  6262. front: {
  6263. height: math.unit(1.92, "meters"),
  6264. weight: math.unit(80, "kg"),
  6265. name: "Front",
  6266. image: {
  6267. source: "./media/characters/dr-clay/front.svg"
  6268. }
  6269. },
  6270. frontClothed: {
  6271. height: math.unit(1.92, "meters"),
  6272. weight: math.unit(80, "kg"),
  6273. name: "Front (Clothed)",
  6274. image: {
  6275. source: "./media/characters/dr-clay/front-clothed.svg"
  6276. }
  6277. }
  6278. },
  6279. [
  6280. {
  6281. name: "Normal",
  6282. height: math.unit(1.92, "m")
  6283. },
  6284. {
  6285. name: "Macro",
  6286. height: math.unit(214, "meters"),
  6287. default: true
  6288. },
  6289. {
  6290. name: "Macro+",
  6291. height: math.unit(12.237, "meters"),
  6292. },
  6293. {
  6294. name: "Megamacro",
  6295. height: math.unit(557, "megameters"),
  6296. },
  6297. {
  6298. name: "Unimaginable",
  6299. height: math.unit(120e9, "lightyears")
  6300. },
  6301. ]
  6302. ))
  6303. characterMakers.push(() => makeCharacter(
  6304. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6305. {
  6306. front: {
  6307. height: math.unit(2, "meters"),
  6308. weight: math.unit(80, "kg"),
  6309. name: "Front",
  6310. image: {
  6311. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6312. }
  6313. }
  6314. },
  6315. [
  6316. {
  6317. name: "Teramacro",
  6318. height: math.unit(500000, "lightyears"),
  6319. default: true
  6320. },
  6321. ]
  6322. ))
  6323. characterMakers.push(() => makeCharacter(
  6324. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6325. {
  6326. front: {
  6327. height: math.unit(2, "meters"),
  6328. weight: math.unit(150, "kg"),
  6329. name: "Front",
  6330. image: {
  6331. source: "./media/characters/vemus/front.svg",
  6332. extra: 2384 / 2084,
  6333. bottom: 0.0123
  6334. }
  6335. }
  6336. },
  6337. [
  6338. {
  6339. name: "Normal",
  6340. height: math.unit(3.75, "meters"),
  6341. default: true
  6342. },
  6343. {
  6344. name: "Big",
  6345. height: math.unit(8, "meters")
  6346. },
  6347. {
  6348. name: "Macro",
  6349. height: math.unit(100, "meters")
  6350. },
  6351. {
  6352. name: "Macro+",
  6353. height: math.unit(1500, "meters")
  6354. },
  6355. {
  6356. name: "Stellar",
  6357. height: math.unit(14e8, "meters")
  6358. },
  6359. ]
  6360. ))
  6361. characterMakers.push(() => makeCharacter(
  6362. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6363. {
  6364. front: {
  6365. height: math.unit(2, "meters"),
  6366. weight: math.unit(70, "kg"),
  6367. name: "Front",
  6368. image: {
  6369. source: "./media/characters/beherit/front.svg",
  6370. extra: 1408 / 1242
  6371. }
  6372. }
  6373. },
  6374. [
  6375. {
  6376. name: "Normal",
  6377. height: math.unit(6, "feet")
  6378. },
  6379. {
  6380. name: "Lorg",
  6381. height: math.unit(25, "feet"),
  6382. default: true
  6383. },
  6384. {
  6385. name: "Lorger",
  6386. height: math.unit(75, "feet")
  6387. },
  6388. {
  6389. name: "Macro",
  6390. height: math.unit(200, "meters")
  6391. },
  6392. ]
  6393. ))
  6394. characterMakers.push(() => makeCharacter(
  6395. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6396. {
  6397. front: {
  6398. height: math.unit(2, "meters"),
  6399. weight: math.unit(150, "kg"),
  6400. name: "Front",
  6401. image: {
  6402. source: "./media/characters/everett/front.svg",
  6403. extra: 2038 / 1737,
  6404. bottom: 0.03
  6405. }
  6406. },
  6407. paw: {
  6408. height: math.unit(2 / 3.6, "meters"),
  6409. name: "Paw",
  6410. image: {
  6411. source: "./media/characters/everett/paw.svg"
  6412. }
  6413. },
  6414. },
  6415. [
  6416. {
  6417. name: "Normal",
  6418. height: math.unit(15, "feet"),
  6419. default: true
  6420. },
  6421. {
  6422. name: "Lorg",
  6423. height: math.unit(70, "feet"),
  6424. default: true
  6425. },
  6426. {
  6427. name: "Lorger",
  6428. height: math.unit(250, "feet")
  6429. },
  6430. {
  6431. name: "Macro",
  6432. height: math.unit(500, "meters")
  6433. },
  6434. ]
  6435. ))
  6436. characterMakers.push(() => makeCharacter(
  6437. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6438. {
  6439. front: {
  6440. height: math.unit(2, "meters"),
  6441. weight: math.unit(86, "kg"),
  6442. name: "Front",
  6443. image: {
  6444. source: "./media/characters/rose/front.svg",
  6445. extra: 350/335,
  6446. bottom: 10/360
  6447. }
  6448. },
  6449. frontAlt: {
  6450. height: math.unit(1.6, "meters"),
  6451. weight: math.unit(86, "kg"),
  6452. name: "Front (Alt)",
  6453. image: {
  6454. source: "./media/characters/rose/front-alt.svg",
  6455. extra: 299/283,
  6456. bottom: 3/302
  6457. }
  6458. },
  6459. plush: {
  6460. height: math.unit(2, "meters"),
  6461. weight: math.unit(86/3, "kg"),
  6462. name: "Plush",
  6463. image: {
  6464. source: "./media/characters/rose/plush.svg",
  6465. extra: 361/337,
  6466. bottom: 11/372
  6467. }
  6468. },
  6469. },
  6470. [
  6471. {
  6472. name: "Mini-Micro",
  6473. height: math.unit(1, "cm")
  6474. },
  6475. {
  6476. name: "Micro",
  6477. height: math.unit(3.5, "inches"),
  6478. default: true
  6479. },
  6480. {
  6481. name: "Normal",
  6482. height: math.unit(6 + 1 / 6, "feet")
  6483. },
  6484. {
  6485. name: "Mini-Macro",
  6486. height: math.unit(9 + 10 / 12, "feet")
  6487. },
  6488. ]
  6489. ))
  6490. characterMakers.push(() => makeCharacter(
  6491. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6492. {
  6493. front: {
  6494. height: math.unit(2, "meters"),
  6495. weight: math.unit(350, "lbs"),
  6496. name: "Front",
  6497. image: {
  6498. source: "./media/characters/regal/front.svg"
  6499. }
  6500. },
  6501. back: {
  6502. height: math.unit(2, "meters"),
  6503. weight: math.unit(350, "lbs"),
  6504. name: "Back",
  6505. image: {
  6506. source: "./media/characters/regal/back.svg"
  6507. }
  6508. },
  6509. },
  6510. [
  6511. {
  6512. name: "Macro",
  6513. height: math.unit(350, "feet"),
  6514. default: true
  6515. }
  6516. ]
  6517. ))
  6518. characterMakers.push(() => makeCharacter(
  6519. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6520. {
  6521. front: {
  6522. height: math.unit(4 + 11 / 12, "feet"),
  6523. weight: math.unit(100, "lbs"),
  6524. name: "Front",
  6525. image: {
  6526. source: "./media/characters/opal/front.svg"
  6527. }
  6528. },
  6529. frontAlt: {
  6530. height: math.unit(4 + 11 / 12, "feet"),
  6531. weight: math.unit(100, "lbs"),
  6532. name: "Front (Alt)",
  6533. image: {
  6534. source: "./media/characters/opal/front-alt.svg"
  6535. }
  6536. },
  6537. },
  6538. [
  6539. {
  6540. name: "Small",
  6541. height: math.unit(4 + 11 / 12, "feet")
  6542. },
  6543. {
  6544. name: "Normal",
  6545. height: math.unit(20, "feet"),
  6546. default: true
  6547. },
  6548. {
  6549. name: "Macro",
  6550. height: math.unit(120, "feet")
  6551. },
  6552. {
  6553. name: "Megamacro",
  6554. height: math.unit(80, "miles")
  6555. },
  6556. {
  6557. name: "True Size",
  6558. height: math.unit(100000, "lightyears")
  6559. },
  6560. ]
  6561. ))
  6562. characterMakers.push(() => makeCharacter(
  6563. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6564. {
  6565. front: {
  6566. height: math.unit(6, "feet"),
  6567. weight: math.unit(200, "lbs"),
  6568. name: "Front",
  6569. image: {
  6570. source: "./media/characters/vector-wuff/front.svg"
  6571. }
  6572. }
  6573. },
  6574. [
  6575. {
  6576. name: "Normal",
  6577. height: math.unit(2.8, "meters")
  6578. },
  6579. {
  6580. name: "Macro",
  6581. height: math.unit(450, "meters"),
  6582. default: true
  6583. },
  6584. {
  6585. name: "Megamacro",
  6586. height: math.unit(15, "kilometers")
  6587. }
  6588. ]
  6589. ))
  6590. characterMakers.push(() => makeCharacter(
  6591. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6592. {
  6593. front: {
  6594. height: math.unit(6, "feet"),
  6595. weight: math.unit(256, "lbs"),
  6596. name: "Front",
  6597. image: {
  6598. source: "./media/characters/dannik/front.svg"
  6599. }
  6600. }
  6601. },
  6602. [
  6603. {
  6604. name: "Macro",
  6605. height: math.unit(69.57, "meters"),
  6606. default: true
  6607. },
  6608. ]
  6609. ))
  6610. characterMakers.push(() => makeCharacter(
  6611. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6612. {
  6613. front: {
  6614. height: math.unit(6, "feet"),
  6615. weight: math.unit(120, "lbs"),
  6616. name: "Front",
  6617. image: {
  6618. source: "./media/characters/azura-saharah/front.svg"
  6619. }
  6620. },
  6621. back: {
  6622. height: math.unit(6, "feet"),
  6623. weight: math.unit(120, "lbs"),
  6624. name: "Back",
  6625. image: {
  6626. source: "./media/characters/azura-saharah/back.svg"
  6627. }
  6628. },
  6629. },
  6630. [
  6631. {
  6632. name: "Macro",
  6633. height: math.unit(100, "feet"),
  6634. default: true
  6635. },
  6636. ]
  6637. ))
  6638. characterMakers.push(() => makeCharacter(
  6639. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6640. {
  6641. side: {
  6642. height: math.unit(5 + 4 / 12, "feet"),
  6643. weight: math.unit(163, "lbs"),
  6644. name: "Side",
  6645. image: {
  6646. source: "./media/characters/kennedy/side.svg"
  6647. }
  6648. }
  6649. },
  6650. [
  6651. {
  6652. name: "Standard Doggo",
  6653. height: math.unit(5 + 4 / 12, "feet")
  6654. },
  6655. {
  6656. name: "Big Doggo",
  6657. height: math.unit(25 + 3 / 12, "feet"),
  6658. default: true
  6659. },
  6660. ]
  6661. ))
  6662. characterMakers.push(() => makeCharacter(
  6663. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6664. {
  6665. front: {
  6666. height: math.unit(6, "feet"),
  6667. weight: math.unit(90, "lbs"),
  6668. name: "Front",
  6669. image: {
  6670. source: "./media/characters/odi-lunar/front.svg"
  6671. }
  6672. }
  6673. },
  6674. [
  6675. {
  6676. name: "Micro",
  6677. height: math.unit(3, "inches"),
  6678. default: true
  6679. },
  6680. {
  6681. name: "Normal",
  6682. height: math.unit(5.5, "feet")
  6683. }
  6684. ]
  6685. ))
  6686. characterMakers.push(() => makeCharacter(
  6687. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6688. {
  6689. back: {
  6690. height: math.unit(6, "feet"),
  6691. weight: math.unit(220, "lbs"),
  6692. name: "Back",
  6693. image: {
  6694. source: "./media/characters/mandake/back.svg"
  6695. }
  6696. }
  6697. },
  6698. [
  6699. {
  6700. name: "Normal",
  6701. height: math.unit(7, "feet"),
  6702. default: true
  6703. },
  6704. {
  6705. name: "Macro",
  6706. height: math.unit(78, "feet")
  6707. },
  6708. {
  6709. name: "Macro+",
  6710. height: math.unit(300, "meters")
  6711. },
  6712. {
  6713. name: "Macro++",
  6714. height: math.unit(2400, "feet")
  6715. },
  6716. {
  6717. name: "Megamacro",
  6718. height: math.unit(5167, "meters")
  6719. },
  6720. {
  6721. name: "Gigamacro",
  6722. height: math.unit(41769, "miles")
  6723. },
  6724. ]
  6725. ))
  6726. characterMakers.push(() => makeCharacter(
  6727. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6728. {
  6729. front: {
  6730. height: math.unit(6, "feet"),
  6731. weight: math.unit(120, "lbs"),
  6732. name: "Front",
  6733. image: {
  6734. source: "./media/characters/yozey/front.svg"
  6735. }
  6736. },
  6737. frontAlt: {
  6738. height: math.unit(6, "feet"),
  6739. weight: math.unit(120, "lbs"),
  6740. name: "Front (Alt)",
  6741. image: {
  6742. source: "./media/characters/yozey/front-alt.svg"
  6743. }
  6744. },
  6745. side: {
  6746. height: math.unit(6, "feet"),
  6747. weight: math.unit(120, "lbs"),
  6748. name: "Side",
  6749. image: {
  6750. source: "./media/characters/yozey/side.svg"
  6751. }
  6752. },
  6753. },
  6754. [
  6755. {
  6756. name: "Micro",
  6757. height: math.unit(3, "inches"),
  6758. default: true
  6759. },
  6760. {
  6761. name: "Normal",
  6762. height: math.unit(6, "feet")
  6763. }
  6764. ]
  6765. ))
  6766. characterMakers.push(() => makeCharacter(
  6767. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6768. {
  6769. front: {
  6770. height: math.unit(6, "feet"),
  6771. weight: math.unit(103, "lbs"),
  6772. name: "Front",
  6773. image: {
  6774. source: "./media/characters/valeska-voss/front.svg"
  6775. }
  6776. }
  6777. },
  6778. [
  6779. {
  6780. name: "Mini-Sized Sub",
  6781. height: math.unit(3.1, "inches")
  6782. },
  6783. {
  6784. name: "Mid-Sized Sub",
  6785. height: math.unit(6.2, "inches")
  6786. },
  6787. {
  6788. name: "Full-Sized Sub",
  6789. height: math.unit(9.3, "inches")
  6790. },
  6791. {
  6792. name: "Normal",
  6793. height: math.unit(5 + 2 / 12, "foot"),
  6794. default: true
  6795. },
  6796. ]
  6797. ))
  6798. characterMakers.push(() => makeCharacter(
  6799. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6800. {
  6801. front: {
  6802. height: math.unit(6, "feet"),
  6803. weight: math.unit(160, "lbs"),
  6804. name: "Front",
  6805. image: {
  6806. source: "./media/characters/gene-zeta/front.svg",
  6807. extra: 3006 / 2826,
  6808. bottom: 182 / 3188
  6809. }
  6810. }
  6811. },
  6812. [
  6813. {
  6814. name: "Micro",
  6815. height: math.unit(6, "inches")
  6816. },
  6817. {
  6818. name: "Normal",
  6819. height: math.unit(5 + 11 / 12, "foot"),
  6820. default: true
  6821. },
  6822. {
  6823. name: "Macro",
  6824. height: math.unit(140, "feet")
  6825. },
  6826. {
  6827. name: "Supercharged",
  6828. height: math.unit(2500, "feet")
  6829. },
  6830. ]
  6831. ))
  6832. characterMakers.push(() => makeCharacter(
  6833. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6834. {
  6835. front: {
  6836. height: math.unit(6, "feet"),
  6837. weight: math.unit(350, "lbs"),
  6838. name: "Front",
  6839. image: {
  6840. source: "./media/characters/razinox/front.svg",
  6841. extra: 1686 / 1548,
  6842. bottom: 28.2 / 1868
  6843. }
  6844. },
  6845. back: {
  6846. height: math.unit(6, "feet"),
  6847. weight: math.unit(350, "lbs"),
  6848. name: "Back",
  6849. image: {
  6850. source: "./media/characters/razinox/back.svg",
  6851. extra: 1660 / 1590,
  6852. bottom: 15 / 1665
  6853. }
  6854. },
  6855. },
  6856. [
  6857. {
  6858. name: "Normal",
  6859. height: math.unit(10 + 8 / 12, "foot")
  6860. },
  6861. {
  6862. name: "Minimacro",
  6863. height: math.unit(15, "foot")
  6864. },
  6865. {
  6866. name: "Macro",
  6867. height: math.unit(60, "foot"),
  6868. default: true
  6869. },
  6870. {
  6871. name: "Megamacro",
  6872. height: math.unit(5, "miles")
  6873. },
  6874. {
  6875. name: "Gigamacro",
  6876. height: math.unit(6000, "miles")
  6877. },
  6878. ]
  6879. ))
  6880. characterMakers.push(() => makeCharacter(
  6881. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6882. {
  6883. front: {
  6884. height: math.unit(6, "feet"),
  6885. weight: math.unit(150, "lbs"),
  6886. name: "Front",
  6887. image: {
  6888. source: "./media/characters/cobalt/front.svg"
  6889. }
  6890. }
  6891. },
  6892. [
  6893. {
  6894. name: "Normal",
  6895. height: math.unit(8 + 1 / 12, "foot")
  6896. },
  6897. {
  6898. name: "Macro",
  6899. height: math.unit(111, "foot"),
  6900. default: true
  6901. },
  6902. {
  6903. name: "Supracosmic",
  6904. height: math.unit(1e42, "feet")
  6905. },
  6906. ]
  6907. ))
  6908. characterMakers.push(() => makeCharacter(
  6909. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6910. {
  6911. front: {
  6912. height: math.unit(6, "feet"),
  6913. weight: math.unit(140, "lbs"),
  6914. name: "Front",
  6915. image: {
  6916. source: "./media/characters/amanda/front.svg"
  6917. }
  6918. }
  6919. },
  6920. [
  6921. {
  6922. name: "Micro",
  6923. height: math.unit(5, "inches"),
  6924. default: true
  6925. },
  6926. ]
  6927. ))
  6928. characterMakers.push(() => makeCharacter(
  6929. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6930. {
  6931. front: {
  6932. height: math.unit(2.75, "meters"),
  6933. weight: math.unit(1200, "lb"),
  6934. name: "Front",
  6935. image: {
  6936. source: "./media/characters/teal/front.svg",
  6937. extra: 2463 / 2320,
  6938. bottom: 166 / 2629
  6939. }
  6940. },
  6941. back: {
  6942. height: math.unit(2.75, "meters"),
  6943. weight: math.unit(1200, "lb"),
  6944. name: "Back",
  6945. image: {
  6946. source: "./media/characters/teal/back.svg",
  6947. extra: 2580 / 2489,
  6948. bottom: 151 / 2731
  6949. }
  6950. },
  6951. sitting: {
  6952. height: math.unit(1.9, "meters"),
  6953. weight: math.unit(1200, "lb"),
  6954. name: "Sitting",
  6955. image: {
  6956. source: "./media/characters/teal/sitting.svg",
  6957. extra: 623 / 590,
  6958. bottom: 121 / 744
  6959. }
  6960. },
  6961. standing: {
  6962. height: math.unit(2.75, "meters"),
  6963. weight: math.unit(1200, "lb"),
  6964. name: "Standing",
  6965. image: {
  6966. source: "./media/characters/teal/standing.svg",
  6967. extra: 923 / 893,
  6968. bottom: 60 / 983
  6969. }
  6970. },
  6971. stretching: {
  6972. height: math.unit(3.65, "meters"),
  6973. weight: math.unit(1200, "lb"),
  6974. name: "Stretching",
  6975. image: {
  6976. source: "./media/characters/teal/stretching.svg",
  6977. extra: 1276 / 1244,
  6978. bottom: 0 / 1276
  6979. }
  6980. },
  6981. legged: {
  6982. height: math.unit(1.3, "meters"),
  6983. weight: math.unit(100, "lb"),
  6984. name: "Legged",
  6985. image: {
  6986. source: "./media/characters/teal/legged.svg",
  6987. extra: 462 / 437,
  6988. bottom: 24 / 486
  6989. }
  6990. },
  6991. naga: {
  6992. height: math.unit(5.4, "meters"),
  6993. weight: math.unit(4000, "lb"),
  6994. name: "Naga",
  6995. image: {
  6996. source: "./media/characters/teal/naga.svg",
  6997. extra: 1902 / 1858,
  6998. bottom: 0 / 1902
  6999. }
  7000. },
  7001. hand: {
  7002. height: math.unit(0.52, "meters"),
  7003. name: "Hand",
  7004. image: {
  7005. source: "./media/characters/teal/hand.svg"
  7006. }
  7007. },
  7008. maw: {
  7009. height: math.unit(0.43, "meters"),
  7010. name: "Maw",
  7011. image: {
  7012. source: "./media/characters/teal/maw.svg"
  7013. }
  7014. },
  7015. slit: {
  7016. height: math.unit(0.25, "meters"),
  7017. name: "Slit",
  7018. image: {
  7019. source: "./media/characters/teal/slit.svg"
  7020. }
  7021. },
  7022. },
  7023. [
  7024. {
  7025. name: "Normal",
  7026. height: math.unit(2.75, "meters"),
  7027. default: true
  7028. },
  7029. {
  7030. name: "Macro",
  7031. height: math.unit(300, "feet")
  7032. },
  7033. {
  7034. name: "Macro+",
  7035. height: math.unit(2000, "feet")
  7036. },
  7037. ]
  7038. ))
  7039. characterMakers.push(() => makeCharacter(
  7040. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7041. {
  7042. frontCat: {
  7043. height: math.unit(6, "feet"),
  7044. weight: math.unit(180, "lbs"),
  7045. name: "Front (Cat)",
  7046. image: {
  7047. source: "./media/characters/ravin-amulet/front-cat.svg"
  7048. }
  7049. },
  7050. frontCatAlt: {
  7051. height: math.unit(6, "feet"),
  7052. weight: math.unit(180, "lbs"),
  7053. name: "Front (Alt, Cat)",
  7054. image: {
  7055. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7056. }
  7057. },
  7058. frontWerewolf: {
  7059. height: math.unit(6 * 1.2, "feet"),
  7060. weight: math.unit(225, "lbs"),
  7061. name: "Front (Werewolf)",
  7062. image: {
  7063. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7064. }
  7065. },
  7066. backWerewolf: {
  7067. height: math.unit(6 * 1.2, "feet"),
  7068. weight: math.unit(225, "lbs"),
  7069. name: "Back (Werewolf)",
  7070. image: {
  7071. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7072. }
  7073. },
  7074. },
  7075. [
  7076. {
  7077. name: "Nano",
  7078. height: math.unit(1, "micrometer")
  7079. },
  7080. {
  7081. name: "Micro",
  7082. height: math.unit(1, "inch")
  7083. },
  7084. {
  7085. name: "Normal",
  7086. height: math.unit(6, "feet"),
  7087. default: true
  7088. },
  7089. {
  7090. name: "Macro",
  7091. height: math.unit(60, "feet")
  7092. }
  7093. ]
  7094. ))
  7095. characterMakers.push(() => makeCharacter(
  7096. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7097. {
  7098. front: {
  7099. height: math.unit(6, "feet"),
  7100. weight: math.unit(165, "lbs"),
  7101. name: "Front",
  7102. image: {
  7103. source: "./media/characters/fluoresce/front.svg"
  7104. }
  7105. }
  7106. },
  7107. [
  7108. {
  7109. name: "Micro",
  7110. height: math.unit(6, "cm")
  7111. },
  7112. {
  7113. name: "Normal",
  7114. height: math.unit(5 + 7 / 12, "feet"),
  7115. default: true
  7116. },
  7117. {
  7118. name: "Macro",
  7119. height: math.unit(56, "feet")
  7120. },
  7121. {
  7122. name: "Megamacro",
  7123. height: math.unit(1.9, "miles")
  7124. },
  7125. ]
  7126. ))
  7127. characterMakers.push(() => makeCharacter(
  7128. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7129. {
  7130. front: {
  7131. height: math.unit(9 + 6 / 12, "feet"),
  7132. weight: math.unit(523, "lbs"),
  7133. name: "Side",
  7134. image: {
  7135. source: "./media/characters/aurora/side.svg"
  7136. }
  7137. }
  7138. },
  7139. [
  7140. {
  7141. name: "Normal",
  7142. height: math.unit(9 + 6 / 12, "feet")
  7143. },
  7144. {
  7145. name: "Macro",
  7146. height: math.unit(96, "feet"),
  7147. default: true
  7148. },
  7149. {
  7150. name: "Macro+",
  7151. height: math.unit(243, "feet")
  7152. },
  7153. ]
  7154. ))
  7155. characterMakers.push(() => makeCharacter(
  7156. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7157. {
  7158. front: {
  7159. height: math.unit(194, "cm"),
  7160. weight: math.unit(90, "kg"),
  7161. name: "Front",
  7162. image: {
  7163. source: "./media/characters/ranek/front.svg"
  7164. }
  7165. },
  7166. side: {
  7167. height: math.unit(194, "cm"),
  7168. weight: math.unit(90, "kg"),
  7169. name: "Side",
  7170. image: {
  7171. source: "./media/characters/ranek/side.svg"
  7172. }
  7173. },
  7174. back: {
  7175. height: math.unit(194, "cm"),
  7176. weight: math.unit(90, "kg"),
  7177. name: "Back",
  7178. image: {
  7179. source: "./media/characters/ranek/back.svg"
  7180. }
  7181. },
  7182. feral: {
  7183. height: math.unit(30, "cm"),
  7184. weight: math.unit(1.6, "lbs"),
  7185. name: "Feral",
  7186. image: {
  7187. source: "./media/characters/ranek/feral.svg"
  7188. }
  7189. },
  7190. },
  7191. [
  7192. {
  7193. name: "Normal",
  7194. height: math.unit(194, "cm"),
  7195. default: true
  7196. },
  7197. {
  7198. name: "Macro",
  7199. height: math.unit(100, "meters")
  7200. },
  7201. ]
  7202. ))
  7203. characterMakers.push(() => makeCharacter(
  7204. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7205. {
  7206. front: {
  7207. height: math.unit(5 + 6 / 12, "feet"),
  7208. weight: math.unit(153, "lbs"),
  7209. name: "Front",
  7210. image: {
  7211. source: "./media/characters/andrew-cooper/front.svg"
  7212. }
  7213. },
  7214. },
  7215. [
  7216. {
  7217. name: "Nano",
  7218. height: math.unit(1, "mm")
  7219. },
  7220. {
  7221. name: "Micro",
  7222. height: math.unit(2, "inches")
  7223. },
  7224. {
  7225. name: "Normal",
  7226. height: math.unit(5 + 6 / 12, "feet"),
  7227. default: true
  7228. }
  7229. ]
  7230. ))
  7231. characterMakers.push(() => makeCharacter(
  7232. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7233. {
  7234. front: {
  7235. height: math.unit(6, "feet"),
  7236. weight: math.unit(180, "lbs"),
  7237. name: "Front",
  7238. image: {
  7239. source: "./media/characters/akane-sato/front.svg",
  7240. extra: 1219 / 1140
  7241. }
  7242. },
  7243. back: {
  7244. height: math.unit(6, "feet"),
  7245. weight: math.unit(180, "lbs"),
  7246. name: "Back",
  7247. image: {
  7248. source: "./media/characters/akane-sato/back.svg",
  7249. extra: 1219 / 1170
  7250. }
  7251. },
  7252. },
  7253. [
  7254. {
  7255. name: "Normal",
  7256. height: math.unit(2.5, "meters")
  7257. },
  7258. {
  7259. name: "Macro",
  7260. height: math.unit(250, "meters"),
  7261. default: true
  7262. },
  7263. {
  7264. name: "Megamacro",
  7265. height: math.unit(25, "km")
  7266. },
  7267. ]
  7268. ))
  7269. characterMakers.push(() => makeCharacter(
  7270. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7271. {
  7272. front: {
  7273. height: math.unit(6, "feet"),
  7274. weight: math.unit(65, "kg"),
  7275. name: "Front",
  7276. image: {
  7277. source: "./media/characters/rook/front.svg",
  7278. extra: 960 / 950
  7279. }
  7280. }
  7281. },
  7282. [
  7283. {
  7284. name: "Normal",
  7285. height: math.unit(8.8, "feet")
  7286. },
  7287. {
  7288. name: "Macro",
  7289. height: math.unit(88, "feet"),
  7290. default: true
  7291. },
  7292. {
  7293. name: "Megamacro",
  7294. height: math.unit(8, "miles")
  7295. },
  7296. ]
  7297. ))
  7298. characterMakers.push(() => makeCharacter(
  7299. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7300. {
  7301. front: {
  7302. height: math.unit(12 + 2 / 12, "feet"),
  7303. weight: math.unit(808, "lbs"),
  7304. name: "Front",
  7305. image: {
  7306. source: "./media/characters/prodigy/front.svg"
  7307. }
  7308. }
  7309. },
  7310. [
  7311. {
  7312. name: "Normal",
  7313. height: math.unit(12 + 2 / 12, "feet"),
  7314. default: true
  7315. },
  7316. {
  7317. name: "Macro",
  7318. height: math.unit(143, "feet")
  7319. },
  7320. {
  7321. name: "Macro+",
  7322. height: math.unit(400, "feet")
  7323. },
  7324. ]
  7325. ))
  7326. characterMakers.push(() => makeCharacter(
  7327. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7328. {
  7329. front: {
  7330. height: math.unit(6, "feet"),
  7331. weight: math.unit(225, "lbs"),
  7332. name: "Front",
  7333. image: {
  7334. source: "./media/characters/daniel/front.svg"
  7335. }
  7336. },
  7337. leaning: {
  7338. height: math.unit(6, "feet"),
  7339. weight: math.unit(225, "lbs"),
  7340. name: "Leaning",
  7341. image: {
  7342. source: "./media/characters/daniel/leaning.svg"
  7343. }
  7344. },
  7345. },
  7346. [
  7347. {
  7348. name: "Macro",
  7349. height: math.unit(1000, "feet"),
  7350. default: true
  7351. },
  7352. ]
  7353. ))
  7354. characterMakers.push(() => makeCharacter(
  7355. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7356. {
  7357. front: {
  7358. height: math.unit(6, "feet"),
  7359. weight: math.unit(88, "lbs"),
  7360. name: "Front",
  7361. image: {
  7362. source: "./media/characters/chiros/front.svg",
  7363. extra: 306 / 226
  7364. }
  7365. },
  7366. side: {
  7367. height: math.unit(6, "feet"),
  7368. weight: math.unit(88, "lbs"),
  7369. name: "Side",
  7370. image: {
  7371. source: "./media/characters/chiros/side.svg",
  7372. extra: 306 / 226
  7373. }
  7374. },
  7375. },
  7376. [
  7377. {
  7378. name: "Normal",
  7379. height: math.unit(6, "cm"),
  7380. default: true
  7381. },
  7382. ]
  7383. ))
  7384. characterMakers.push(() => makeCharacter(
  7385. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7386. {
  7387. front: {
  7388. height: math.unit(6, "feet"),
  7389. weight: math.unit(100, "lbs"),
  7390. name: "Front",
  7391. image: {
  7392. source: "./media/characters/selka/front.svg",
  7393. extra: 947 / 887
  7394. }
  7395. }
  7396. },
  7397. [
  7398. {
  7399. name: "Normal",
  7400. height: math.unit(5, "cm"),
  7401. default: true
  7402. },
  7403. ]
  7404. ))
  7405. characterMakers.push(() => makeCharacter(
  7406. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7407. {
  7408. front: {
  7409. height: math.unit(8 + 3 / 12, "feet"),
  7410. weight: math.unit(424, "lbs"),
  7411. name: "Front",
  7412. image: {
  7413. source: "./media/characters/verin/front.svg",
  7414. extra: 1845 / 1550
  7415. }
  7416. },
  7417. frontArmored: {
  7418. height: math.unit(8 + 3 / 12, "feet"),
  7419. weight: math.unit(424, "lbs"),
  7420. name: "Front (Armored)",
  7421. image: {
  7422. source: "./media/characters/verin/front-armor.svg",
  7423. extra: 1845 / 1550,
  7424. bottom: 0.01
  7425. }
  7426. },
  7427. back: {
  7428. height: math.unit(8 + 3 / 12, "feet"),
  7429. weight: math.unit(424, "lbs"),
  7430. name: "Back",
  7431. image: {
  7432. source: "./media/characters/verin/back.svg",
  7433. bottom: 0.1,
  7434. extra: 1
  7435. }
  7436. },
  7437. foot: {
  7438. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7439. name: "Foot",
  7440. image: {
  7441. source: "./media/characters/verin/foot.svg"
  7442. }
  7443. },
  7444. },
  7445. [
  7446. {
  7447. name: "Normal",
  7448. height: math.unit(8 + 3 / 12, "feet")
  7449. },
  7450. {
  7451. name: "Minimacro",
  7452. height: math.unit(21, "feet"),
  7453. default: true
  7454. },
  7455. {
  7456. name: "Macro",
  7457. height: math.unit(626, "feet")
  7458. },
  7459. ]
  7460. ))
  7461. characterMakers.push(() => makeCharacter(
  7462. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7463. {
  7464. front: {
  7465. height: math.unit(2.718, "meters"),
  7466. weight: math.unit(150, "lbs"),
  7467. name: "Front",
  7468. image: {
  7469. source: "./media/characters/sovrim-terraquian/front.svg"
  7470. }
  7471. },
  7472. back: {
  7473. height: math.unit(2.718, "meters"),
  7474. weight: math.unit(150, "lbs"),
  7475. name: "Back",
  7476. image: {
  7477. source: "./media/characters/sovrim-terraquian/back.svg"
  7478. }
  7479. }
  7480. },
  7481. [
  7482. {
  7483. name: "Micro",
  7484. height: math.unit(2, "inches")
  7485. },
  7486. {
  7487. name: "Small",
  7488. height: math.unit(1, "meter")
  7489. },
  7490. {
  7491. name: "Normal",
  7492. height: math.unit(Math.E, "meters"),
  7493. default: true
  7494. },
  7495. {
  7496. name: "Macro",
  7497. height: math.unit(20, "meters")
  7498. },
  7499. {
  7500. name: "Macro+",
  7501. height: math.unit(400, "meters")
  7502. },
  7503. ]
  7504. ))
  7505. characterMakers.push(() => makeCharacter(
  7506. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7507. {
  7508. front: {
  7509. height: math.unit(7, "feet"),
  7510. weight: math.unit(489, "lbs"),
  7511. name: "Front",
  7512. image: {
  7513. source: "./media/characters/reece-silvermane/front.svg",
  7514. bottom: 0.02,
  7515. extra: 1
  7516. }
  7517. },
  7518. },
  7519. [
  7520. {
  7521. name: "Macro",
  7522. height: math.unit(1.5, "miles"),
  7523. default: true
  7524. },
  7525. ]
  7526. ))
  7527. characterMakers.push(() => makeCharacter(
  7528. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7529. {
  7530. front: {
  7531. height: math.unit(6, "feet"),
  7532. weight: math.unit(78, "kg"),
  7533. name: "Front",
  7534. image: {
  7535. source: "./media/characters/kane/front.svg",
  7536. extra: 978 / 899
  7537. }
  7538. },
  7539. },
  7540. [
  7541. {
  7542. name: "Normal",
  7543. height: math.unit(2.1, "m"),
  7544. },
  7545. {
  7546. name: "Macro",
  7547. height: math.unit(1, "km"),
  7548. default: true
  7549. },
  7550. ]
  7551. ))
  7552. characterMakers.push(() => makeCharacter(
  7553. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7554. {
  7555. front: {
  7556. height: math.unit(6, "feet"),
  7557. weight: math.unit(200, "kg"),
  7558. name: "Front",
  7559. image: {
  7560. source: "./media/characters/tegon/front.svg",
  7561. bottom: 0.01,
  7562. extra: 1
  7563. }
  7564. },
  7565. },
  7566. [
  7567. {
  7568. name: "Micro",
  7569. height: math.unit(1, "inch")
  7570. },
  7571. {
  7572. name: "Normal",
  7573. height: math.unit(6 + 3 / 12, "feet"),
  7574. default: true
  7575. },
  7576. {
  7577. name: "Macro",
  7578. height: math.unit(300, "feet")
  7579. },
  7580. {
  7581. name: "Megamacro",
  7582. height: math.unit(69, "miles")
  7583. },
  7584. ]
  7585. ))
  7586. characterMakers.push(() => makeCharacter(
  7587. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7588. {
  7589. side: {
  7590. height: math.unit(6, "feet"),
  7591. weight: math.unit(2304, "lbs"),
  7592. name: "Side",
  7593. image: {
  7594. source: "./media/characters/arcturax/side.svg",
  7595. extra: 790 / 376,
  7596. bottom: 0.01
  7597. }
  7598. },
  7599. },
  7600. [
  7601. {
  7602. name: "Micro",
  7603. height: math.unit(2, "inch")
  7604. },
  7605. {
  7606. name: "Normal",
  7607. height: math.unit(6, "feet")
  7608. },
  7609. {
  7610. name: "Macro",
  7611. height: math.unit(39, "feet"),
  7612. default: true
  7613. },
  7614. {
  7615. name: "Megamacro",
  7616. height: math.unit(7, "miles")
  7617. },
  7618. ]
  7619. ))
  7620. characterMakers.push(() => makeCharacter(
  7621. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7622. {
  7623. front: {
  7624. height: math.unit(6, "feet"),
  7625. weight: math.unit(50, "lbs"),
  7626. name: "Front",
  7627. image: {
  7628. source: "./media/characters/sentri/front.svg",
  7629. extra: 1750 / 1570,
  7630. bottom: 0.025
  7631. }
  7632. },
  7633. frontAlt: {
  7634. height: math.unit(6, "feet"),
  7635. weight: math.unit(50, "lbs"),
  7636. name: "Front (Alt)",
  7637. image: {
  7638. source: "./media/characters/sentri/front-alt.svg",
  7639. extra: 1750 / 1570,
  7640. bottom: 0.025
  7641. }
  7642. },
  7643. },
  7644. [
  7645. {
  7646. name: "Normal",
  7647. height: math.unit(15, "feet"),
  7648. default: true
  7649. },
  7650. {
  7651. name: "Macro",
  7652. height: math.unit(2500, "feet")
  7653. }
  7654. ]
  7655. ))
  7656. characterMakers.push(() => makeCharacter(
  7657. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7658. {
  7659. front: {
  7660. height: math.unit(5 + 8 / 12, "feet"),
  7661. weight: math.unit(130, "lbs"),
  7662. name: "Front",
  7663. image: {
  7664. source: "./media/characters/corvin/front.svg",
  7665. extra: 1803 / 1629
  7666. }
  7667. },
  7668. frontShirt: {
  7669. height: math.unit(5 + 8 / 12, "feet"),
  7670. weight: math.unit(130, "lbs"),
  7671. name: "Front (Shirt)",
  7672. image: {
  7673. source: "./media/characters/corvin/front-shirt.svg",
  7674. extra: 1803 / 1629
  7675. }
  7676. },
  7677. frontPoncho: {
  7678. height: math.unit(5 + 8 / 12, "feet"),
  7679. weight: math.unit(130, "lbs"),
  7680. name: "Front (Poncho)",
  7681. image: {
  7682. source: "./media/characters/corvin/front-poncho.svg",
  7683. extra: 1803 / 1629
  7684. }
  7685. },
  7686. side: {
  7687. height: math.unit(5 + 8 / 12, "feet"),
  7688. weight: math.unit(130, "lbs"),
  7689. name: "Side",
  7690. image: {
  7691. source: "./media/characters/corvin/side.svg",
  7692. extra: 1012 / 945
  7693. }
  7694. },
  7695. back: {
  7696. height: math.unit(5 + 8 / 12, "feet"),
  7697. weight: math.unit(130, "lbs"),
  7698. name: "Back",
  7699. image: {
  7700. source: "./media/characters/corvin/back.svg",
  7701. extra: 1803 / 1629
  7702. }
  7703. },
  7704. },
  7705. [
  7706. {
  7707. name: "Micro",
  7708. height: math.unit(3, "inches")
  7709. },
  7710. {
  7711. name: "Normal",
  7712. height: math.unit(5 + 8 / 12, "feet")
  7713. },
  7714. {
  7715. name: "Macro",
  7716. height: math.unit(300, "feet"),
  7717. default: true
  7718. },
  7719. {
  7720. name: "Megamacro",
  7721. height: math.unit(500, "miles")
  7722. }
  7723. ]
  7724. ))
  7725. characterMakers.push(() => makeCharacter(
  7726. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7727. {
  7728. front: {
  7729. height: math.unit(6, "feet"),
  7730. weight: math.unit(135, "lbs"),
  7731. name: "Front",
  7732. image: {
  7733. source: "./media/characters/q/front.svg",
  7734. extra: 854 / 752,
  7735. bottom: 0.005
  7736. }
  7737. },
  7738. back: {
  7739. height: math.unit(6, "feet"),
  7740. weight: math.unit(130, "lbs"),
  7741. name: "Back",
  7742. image: {
  7743. source: "./media/characters/q/back.svg",
  7744. extra: 854 / 752
  7745. }
  7746. },
  7747. },
  7748. [
  7749. {
  7750. name: "Macro",
  7751. height: math.unit(90, "feet"),
  7752. default: true
  7753. },
  7754. {
  7755. name: "Extra Macro",
  7756. height: math.unit(300, "feet"),
  7757. },
  7758. {
  7759. name: "BIG WALF",
  7760. height: math.unit(750, "feet"),
  7761. },
  7762. ]
  7763. ))
  7764. characterMakers.push(() => makeCharacter(
  7765. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7766. {
  7767. front: {
  7768. height: math.unit(6, "feet"),
  7769. weight: math.unit(150, "lbs"),
  7770. name: "Front",
  7771. image: {
  7772. source: "./media/characters/carley/front.svg",
  7773. extra: 3927 / 3540,
  7774. bottom: 29.2 / 735
  7775. }
  7776. }
  7777. },
  7778. [
  7779. {
  7780. name: "Normal",
  7781. height: math.unit(6 + 3 / 12, "feet")
  7782. },
  7783. {
  7784. name: "Macro",
  7785. height: math.unit(185, "feet"),
  7786. default: true
  7787. },
  7788. {
  7789. name: "Megamacro",
  7790. height: math.unit(8, "miles"),
  7791. },
  7792. ]
  7793. ))
  7794. characterMakers.push(() => makeCharacter(
  7795. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7796. {
  7797. front: {
  7798. height: math.unit(3, "feet"),
  7799. weight: math.unit(28, "lbs"),
  7800. name: "Front",
  7801. image: {
  7802. source: "./media/characters/citrine/front.svg"
  7803. }
  7804. }
  7805. },
  7806. [
  7807. {
  7808. name: "Normal",
  7809. height: math.unit(3, "feet"),
  7810. default: true
  7811. }
  7812. ]
  7813. ))
  7814. characterMakers.push(() => makeCharacter(
  7815. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7816. {
  7817. front: {
  7818. height: math.unit(14, "feet"),
  7819. weight: math.unit(1450, "kg"),
  7820. capacity: math.unit(15, "people"),
  7821. name: "Front",
  7822. image: {
  7823. source: "./media/characters/aura-starwind/front.svg",
  7824. extra: 1455 / 1335
  7825. }
  7826. },
  7827. side: {
  7828. height: math.unit(14, "feet"),
  7829. weight: math.unit(1450, "kg"),
  7830. capacity: math.unit(15, "people"),
  7831. name: "Side",
  7832. image: {
  7833. source: "./media/characters/aura-starwind/side.svg",
  7834. extra: 1654 / 1497
  7835. }
  7836. },
  7837. taur: {
  7838. height: math.unit(18, "feet"),
  7839. weight: math.unit(5500, "kg"),
  7840. capacity: math.unit(50, "people"),
  7841. name: "Taur",
  7842. image: {
  7843. source: "./media/characters/aura-starwind/taur.svg",
  7844. extra: 1760 / 1650
  7845. }
  7846. },
  7847. feral: {
  7848. height: math.unit(46, "feet"),
  7849. weight: math.unit(25000, "kg"),
  7850. capacity: math.unit(120, "people"),
  7851. name: "Feral",
  7852. image: {
  7853. source: "./media/characters/aura-starwind/feral.svg"
  7854. }
  7855. },
  7856. },
  7857. [
  7858. {
  7859. name: "Normal",
  7860. height: math.unit(14, "feet"),
  7861. default: true
  7862. },
  7863. {
  7864. name: "Macro",
  7865. height: math.unit(50, "meters")
  7866. },
  7867. {
  7868. name: "Megamacro",
  7869. height: math.unit(5000, "meters")
  7870. },
  7871. {
  7872. name: "Gigamacro",
  7873. height: math.unit(100000, "kilometers")
  7874. },
  7875. ]
  7876. ))
  7877. characterMakers.push(() => makeCharacter(
  7878. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7879. {
  7880. front: {
  7881. height: math.unit(2 + 7 / 12, "feet"),
  7882. weight: math.unit(32, "lbs"),
  7883. name: "Front",
  7884. image: {
  7885. source: "./media/characters/rivet/front.svg",
  7886. extra: 1716 / 1658,
  7887. bottom: 0.03
  7888. }
  7889. },
  7890. foot: {
  7891. height: math.unit(0.551, "feet"),
  7892. name: "Rivet's Foot",
  7893. image: {
  7894. source: "./media/characters/rivet/foot.svg"
  7895. },
  7896. rename: true
  7897. }
  7898. },
  7899. [
  7900. {
  7901. name: "Micro",
  7902. height: math.unit(1.5, "inches"),
  7903. },
  7904. {
  7905. name: "Normal",
  7906. height: math.unit(2 + 7 / 12, "feet"),
  7907. default: true
  7908. },
  7909. {
  7910. name: "Macro",
  7911. height: math.unit(85, "feet")
  7912. },
  7913. {
  7914. name: "Megamacro",
  7915. height: math.unit(2.2, "km")
  7916. }
  7917. ]
  7918. ))
  7919. characterMakers.push(() => makeCharacter(
  7920. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7921. {
  7922. front: {
  7923. height: math.unit(5 + 9 / 12, "feet"),
  7924. weight: math.unit(150, "lbs"),
  7925. name: "Front",
  7926. image: {
  7927. source: "./media/characters/coffee/front.svg",
  7928. extra: 3666 / 3032,
  7929. bottom: 0.04
  7930. }
  7931. },
  7932. foot: {
  7933. height: math.unit(1.29, "feet"),
  7934. name: "Foot",
  7935. image: {
  7936. source: "./media/characters/coffee/foot.svg"
  7937. }
  7938. },
  7939. },
  7940. [
  7941. {
  7942. name: "Micro",
  7943. height: math.unit(2, "inches"),
  7944. },
  7945. {
  7946. name: "Normal",
  7947. height: math.unit(5 + 9 / 12, "feet"),
  7948. default: true
  7949. },
  7950. {
  7951. name: "Macro",
  7952. height: math.unit(800, "feet")
  7953. },
  7954. {
  7955. name: "Megamacro",
  7956. height: math.unit(25, "miles")
  7957. }
  7958. ]
  7959. ))
  7960. characterMakers.push(() => makeCharacter(
  7961. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7962. {
  7963. front: {
  7964. height: math.unit(6, "feet"),
  7965. weight: math.unit(200, "lbs"),
  7966. name: "Front",
  7967. image: {
  7968. source: "./media/characters/chari-gal/front.svg",
  7969. extra: 1568 / 1385,
  7970. bottom: 0.047
  7971. }
  7972. },
  7973. gigantamax: {
  7974. height: math.unit(6 * 16, "feet"),
  7975. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7976. name: "Gigantamax",
  7977. image: {
  7978. source: "./media/characters/chari-gal/gigantamax.svg",
  7979. extra: 1124 / 888,
  7980. bottom: 0.03
  7981. }
  7982. },
  7983. },
  7984. [
  7985. {
  7986. name: "Normal",
  7987. height: math.unit(5 + 7 / 12, "feet")
  7988. },
  7989. {
  7990. name: "Macro",
  7991. height: math.unit(200, "feet"),
  7992. default: true
  7993. }
  7994. ]
  7995. ))
  7996. characterMakers.push(() => makeCharacter(
  7997. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7998. {
  7999. front: {
  8000. height: math.unit(6, "feet"),
  8001. weight: math.unit(150, "lbs"),
  8002. name: "Front",
  8003. image: {
  8004. source: "./media/characters/nova/front.svg",
  8005. extra: 5000 / 4722,
  8006. bottom: 0.02
  8007. }
  8008. }
  8009. },
  8010. [
  8011. {
  8012. name: "Micro-",
  8013. height: math.unit(0.8, "inches")
  8014. },
  8015. {
  8016. name: "Micro",
  8017. height: math.unit(2, "inches"),
  8018. default: true
  8019. },
  8020. ]
  8021. ))
  8022. characterMakers.push(() => makeCharacter(
  8023. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8024. {
  8025. front: {
  8026. height: math.unit(3 + 1 / 12, "feet"),
  8027. weight: math.unit(21.7, "lbs"),
  8028. name: "Front",
  8029. image: {
  8030. source: "./media/characters/argent/front.svg",
  8031. extra: 1471 / 1331,
  8032. bottom: 100.8 / 1575.5
  8033. }
  8034. }
  8035. },
  8036. [
  8037. {
  8038. name: "Micro",
  8039. height: math.unit(2, "inches")
  8040. },
  8041. {
  8042. name: "Normal",
  8043. height: math.unit(3 + 1 / 12, "feet"),
  8044. default: true
  8045. },
  8046. {
  8047. name: "Macro",
  8048. height: math.unit(120, "feet")
  8049. },
  8050. ]
  8051. ))
  8052. characterMakers.push(() => makeCharacter(
  8053. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8054. {
  8055. lamp: {
  8056. height: math.unit(7 * 1559 / 989, "feet"),
  8057. name: "Magic Lamp",
  8058. image: {
  8059. source: "./media/characters/mira-al-cul/lamp.svg",
  8060. extra: 1617 / 1559
  8061. }
  8062. },
  8063. front: {
  8064. height: math.unit(7, "feet"),
  8065. name: "Front",
  8066. image: {
  8067. source: "./media/characters/mira-al-cul/front.svg",
  8068. extra: 1044 / 990
  8069. }
  8070. },
  8071. },
  8072. [
  8073. {
  8074. name: "Heavily Restricted",
  8075. height: math.unit(7 * 1559 / 989, "feet")
  8076. },
  8077. {
  8078. name: "Freshly Freed",
  8079. height: math.unit(50 * 1559 / 989, "feet")
  8080. },
  8081. {
  8082. name: "World Encompassing",
  8083. height: math.unit(10000 * 1559 / 989, "miles")
  8084. },
  8085. {
  8086. name: "Galactic",
  8087. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8088. },
  8089. {
  8090. name: "Palmed Universe",
  8091. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8092. default: true
  8093. },
  8094. {
  8095. name: "Multiversal Matriarch",
  8096. height: math.unit(8.87e10, "yottameters")
  8097. },
  8098. {
  8099. name: "Void Mother",
  8100. height: math.unit(3.14e110, "yottaparsecs")
  8101. },
  8102. {
  8103. name: "Toying with Transcendence",
  8104. height: math.unit(1e307, "meters")
  8105. },
  8106. ]
  8107. ))
  8108. characterMakers.push(() => makeCharacter(
  8109. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8110. {
  8111. front: {
  8112. height: math.unit(17 + 1 / 12, "feet"),
  8113. weight: math.unit(476.2 * 5, "lbs"),
  8114. name: "Front",
  8115. image: {
  8116. source: "./media/characters/kuro-shi-uchū/front.svg",
  8117. extra: 2329 / 1835,
  8118. bottom: 0.02
  8119. }
  8120. },
  8121. },
  8122. [
  8123. {
  8124. name: "Micro",
  8125. height: math.unit(2, "inches")
  8126. },
  8127. {
  8128. name: "Normal",
  8129. height: math.unit(12, "meters")
  8130. },
  8131. {
  8132. name: "Planetary",
  8133. height: math.unit(0.00929, "AU"),
  8134. default: true
  8135. },
  8136. {
  8137. name: "Universal",
  8138. height: math.unit(20, "gigaparsecs")
  8139. },
  8140. ]
  8141. ))
  8142. characterMakers.push(() => makeCharacter(
  8143. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8144. {
  8145. front: {
  8146. height: math.unit(5 + 2 / 12, "feet"),
  8147. weight: math.unit(120, "lbs"),
  8148. name: "Front",
  8149. image: {
  8150. source: "./media/characters/katherine/front.svg",
  8151. extra: 2075 / 1969
  8152. }
  8153. },
  8154. dress: {
  8155. height: math.unit(5 + 2 / 12, "feet"),
  8156. weight: math.unit(120, "lbs"),
  8157. name: "Dress",
  8158. image: {
  8159. source: "./media/characters/katherine/dress.svg",
  8160. extra: 2258 / 2064
  8161. }
  8162. },
  8163. },
  8164. [
  8165. {
  8166. name: "Micro",
  8167. height: math.unit(1, "inches"),
  8168. default: true
  8169. },
  8170. {
  8171. name: "Normal",
  8172. height: math.unit(5 + 2 / 12, "feet")
  8173. },
  8174. {
  8175. name: "Macro",
  8176. height: math.unit(100, "meters")
  8177. },
  8178. {
  8179. name: "Megamacro",
  8180. height: math.unit(80, "miles")
  8181. },
  8182. ]
  8183. ))
  8184. characterMakers.push(() => makeCharacter(
  8185. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8186. {
  8187. front: {
  8188. height: math.unit(7 + 8 / 12, "feet"),
  8189. weight: math.unit(250, "lbs"),
  8190. name: "Front",
  8191. image: {
  8192. source: "./media/characters/yevis/front.svg",
  8193. extra: 1938 / 1755
  8194. }
  8195. }
  8196. },
  8197. [
  8198. {
  8199. name: "Mortal",
  8200. height: math.unit(7 + 8 / 12, "feet")
  8201. },
  8202. {
  8203. name: "Battle",
  8204. height: math.unit(25 + 11 / 12, "feet")
  8205. },
  8206. {
  8207. name: "Wrath",
  8208. height: math.unit(1654 + 11 / 12, "feet")
  8209. },
  8210. {
  8211. name: "Planet Destroyer",
  8212. height: math.unit(12000, "miles")
  8213. },
  8214. {
  8215. name: "Galaxy Conqueror",
  8216. height: math.unit(1.45, "zettameters"),
  8217. default: true
  8218. },
  8219. {
  8220. name: "Universal War",
  8221. height: math.unit(184, "gigaparsecs")
  8222. },
  8223. {
  8224. name: "Eternity War",
  8225. height: math.unit(1.98e55, "yottaparsecs")
  8226. },
  8227. ]
  8228. ))
  8229. characterMakers.push(() => makeCharacter(
  8230. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8231. {
  8232. front: {
  8233. height: math.unit(5 + 8 / 12, "feet"),
  8234. weight: math.unit(63, "kg"),
  8235. name: "Front",
  8236. image: {
  8237. source: "./media/characters/xavier/front.svg",
  8238. extra: 944 / 883
  8239. }
  8240. },
  8241. frontStretch: {
  8242. height: math.unit(5 + 8 / 12, "feet"),
  8243. weight: math.unit(63, "kg"),
  8244. name: "Stretching",
  8245. image: {
  8246. source: "./media/characters/xavier/front-stretch.svg",
  8247. extra: 962 / 820
  8248. }
  8249. },
  8250. },
  8251. [
  8252. {
  8253. name: "Normal",
  8254. height: math.unit(5 + 8 / 12, "feet")
  8255. },
  8256. {
  8257. name: "Macro",
  8258. height: math.unit(100, "meters"),
  8259. default: true
  8260. },
  8261. {
  8262. name: "McLargeHuge",
  8263. height: math.unit(10, "miles")
  8264. },
  8265. ]
  8266. ))
  8267. characterMakers.push(() => makeCharacter(
  8268. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8269. {
  8270. front: {
  8271. height: math.unit(5 + 5 / 12, "feet"),
  8272. weight: math.unit(150, "lb"),
  8273. name: "Front",
  8274. image: {
  8275. source: "./media/characters/joshii/front.svg",
  8276. extra: 765 / 653,
  8277. bottom: 51 / 816
  8278. }
  8279. },
  8280. foot: {
  8281. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8282. name: "Foot",
  8283. image: {
  8284. source: "./media/characters/joshii/foot.svg"
  8285. }
  8286. },
  8287. },
  8288. [
  8289. {
  8290. name: "Micro",
  8291. height: math.unit(2, "inches"),
  8292. default: true
  8293. },
  8294. {
  8295. name: "Normal",
  8296. height: math.unit(5 + 5 / 12, "feet")
  8297. },
  8298. {
  8299. name: "Macro",
  8300. height: math.unit(785, "feet")
  8301. },
  8302. {
  8303. name: "Megamacro",
  8304. height: math.unit(24.5, "miles")
  8305. },
  8306. ]
  8307. ))
  8308. characterMakers.push(() => makeCharacter(
  8309. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8310. {
  8311. front: {
  8312. height: math.unit(6, "feet"),
  8313. weight: math.unit(150, "lb"),
  8314. name: "Front",
  8315. image: {
  8316. source: "./media/characters/goddess-elizabeth/front.svg",
  8317. extra: 1800 / 1525,
  8318. bottom: 0.005
  8319. }
  8320. },
  8321. foot: {
  8322. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8323. name: "Foot",
  8324. image: {
  8325. source: "./media/characters/goddess-elizabeth/foot.svg"
  8326. }
  8327. },
  8328. mouth: {
  8329. height: math.unit(6, "feet"),
  8330. name: "Mouth",
  8331. image: {
  8332. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8333. }
  8334. },
  8335. },
  8336. [
  8337. {
  8338. name: "Micro",
  8339. height: math.unit(12, "feet")
  8340. },
  8341. {
  8342. name: "Normal",
  8343. height: math.unit(80, "miles"),
  8344. default: true
  8345. },
  8346. {
  8347. name: "Macro",
  8348. height: math.unit(15000, "parsecs")
  8349. },
  8350. ]
  8351. ))
  8352. characterMakers.push(() => makeCharacter(
  8353. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8354. {
  8355. front: {
  8356. height: math.unit(5 + 9 / 12, "feet"),
  8357. weight: math.unit(144, "lb"),
  8358. name: "Front",
  8359. image: {
  8360. source: "./media/characters/kara/front.svg"
  8361. }
  8362. },
  8363. feet: {
  8364. height: math.unit(6 / 6.765, "feet"),
  8365. name: "Kara's Feet",
  8366. rename: true,
  8367. image: {
  8368. source: "./media/characters/kara/feet.svg"
  8369. }
  8370. },
  8371. },
  8372. [
  8373. {
  8374. name: "Normal",
  8375. height: math.unit(5 + 9 / 12, "feet")
  8376. },
  8377. {
  8378. name: "Macro",
  8379. height: math.unit(174, "feet"),
  8380. default: true
  8381. },
  8382. ]
  8383. ))
  8384. characterMakers.push(() => makeCharacter(
  8385. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8386. {
  8387. front: {
  8388. height: math.unit(18, "feet"),
  8389. weight: math.unit(4050, "lb"),
  8390. name: "Front",
  8391. image: {
  8392. source: "./media/characters/tyrone/front.svg",
  8393. extra: 2405 / 2270,
  8394. bottom: 182 / 2587
  8395. }
  8396. },
  8397. },
  8398. [
  8399. {
  8400. name: "Normal",
  8401. height: math.unit(18, "feet"),
  8402. default: true
  8403. },
  8404. {
  8405. name: "Macro",
  8406. height: math.unit(300, "feet")
  8407. },
  8408. {
  8409. name: "Megamacro",
  8410. height: math.unit(15, "km")
  8411. },
  8412. {
  8413. name: "Gigamacro",
  8414. height: math.unit(500, "km")
  8415. },
  8416. {
  8417. name: "Teramacro",
  8418. height: math.unit(0.5, "gigameters")
  8419. },
  8420. {
  8421. name: "Omnimacro",
  8422. height: math.unit(1e252, "yottauniverse")
  8423. },
  8424. ]
  8425. ))
  8426. characterMakers.push(() => makeCharacter(
  8427. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8428. {
  8429. front: {
  8430. height: math.unit(7 + 8 / 12, "feet"),
  8431. weight: math.unit(120, "lb"),
  8432. name: "Front",
  8433. image: {
  8434. source: "./media/characters/danny/front.svg",
  8435. extra: 1490 / 1350
  8436. }
  8437. },
  8438. back: {
  8439. height: math.unit(7 + 8 / 12, "feet"),
  8440. weight: math.unit(120, "lb"),
  8441. name: "Back",
  8442. image: {
  8443. source: "./media/characters/danny/back.svg",
  8444. extra: 1490 / 1350
  8445. }
  8446. },
  8447. },
  8448. [
  8449. {
  8450. name: "Normal",
  8451. height: math.unit(7 + 8 / 12, "feet"),
  8452. default: true
  8453. },
  8454. ]
  8455. ))
  8456. characterMakers.push(() => makeCharacter(
  8457. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8458. {
  8459. front: {
  8460. height: math.unit(3.5, "inches"),
  8461. weight: math.unit(19, "grams"),
  8462. name: "Front",
  8463. image: {
  8464. source: "./media/characters/mallow/front.svg",
  8465. extra: 471 / 431
  8466. }
  8467. },
  8468. back: {
  8469. height: math.unit(3.5, "inches"),
  8470. weight: math.unit(19, "grams"),
  8471. name: "Back",
  8472. image: {
  8473. source: "./media/characters/mallow/back.svg",
  8474. extra: 471 / 431
  8475. }
  8476. },
  8477. },
  8478. [
  8479. {
  8480. name: "Normal",
  8481. height: math.unit(3.5, "inches"),
  8482. default: true
  8483. },
  8484. ]
  8485. ))
  8486. characterMakers.push(() => makeCharacter(
  8487. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8488. {
  8489. front: {
  8490. height: math.unit(9, "feet"),
  8491. weight: math.unit(230, "kg"),
  8492. name: "Front",
  8493. image: {
  8494. source: "./media/characters/starry-aqua/front.svg"
  8495. }
  8496. },
  8497. back: {
  8498. height: math.unit(9, "feet"),
  8499. weight: math.unit(230, "kg"),
  8500. name: "Back",
  8501. image: {
  8502. source: "./media/characters/starry-aqua/back.svg"
  8503. }
  8504. },
  8505. hand: {
  8506. height: math.unit(9 * 0.1168, "feet"),
  8507. name: "Hand",
  8508. image: {
  8509. source: "./media/characters/starry-aqua/hand.svg"
  8510. }
  8511. },
  8512. foot: {
  8513. height: math.unit(9 * 0.18, "feet"),
  8514. name: "Foot",
  8515. image: {
  8516. source: "./media/characters/starry-aqua/foot.svg"
  8517. }
  8518. }
  8519. },
  8520. [
  8521. {
  8522. name: "Micro",
  8523. height: math.unit(3, "inches")
  8524. },
  8525. {
  8526. name: "Normal",
  8527. height: math.unit(9, "feet")
  8528. },
  8529. {
  8530. name: "Macro",
  8531. height: math.unit(300, "feet"),
  8532. default: true
  8533. },
  8534. {
  8535. name: "Megamacro",
  8536. height: math.unit(3200, "feet")
  8537. }
  8538. ]
  8539. ))
  8540. characterMakers.push(() => makeCharacter(
  8541. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8542. {
  8543. front: {
  8544. height: math.unit(6, "feet"),
  8545. weight: math.unit(230, "lb"),
  8546. name: "Front",
  8547. image: {
  8548. source: "./media/characters/luka/front.svg",
  8549. extra: 1,
  8550. bottom: 0.025
  8551. }
  8552. },
  8553. },
  8554. [
  8555. {
  8556. name: "Normal",
  8557. height: math.unit(12 + 8 / 12, "feet"),
  8558. default: true
  8559. },
  8560. {
  8561. name: "Minimacro",
  8562. height: math.unit(20, "feet")
  8563. },
  8564. {
  8565. name: "Macro",
  8566. height: math.unit(250, "feet")
  8567. },
  8568. {
  8569. name: "Megamacro",
  8570. height: math.unit(5, "miles")
  8571. },
  8572. {
  8573. name: "Gigamacro",
  8574. height: math.unit(8000, "miles")
  8575. },
  8576. ]
  8577. ))
  8578. characterMakers.push(() => makeCharacter(
  8579. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8580. {
  8581. front: {
  8582. height: math.unit(6, "feet"),
  8583. weight: math.unit(150, "lb"),
  8584. name: "Front",
  8585. image: {
  8586. source: "./media/characters/natalie-nightring/front.svg",
  8587. extra: 1,
  8588. bottom: 0.06
  8589. }
  8590. },
  8591. },
  8592. [
  8593. {
  8594. name: "Uh Oh",
  8595. height: math.unit(0.1, "mm")
  8596. },
  8597. {
  8598. name: "Small",
  8599. height: math.unit(3, "inches")
  8600. },
  8601. {
  8602. name: "Human Scale",
  8603. height: math.unit(6, "feet")
  8604. },
  8605. {
  8606. name: "Librarian",
  8607. height: math.unit(50, "feet"),
  8608. default: true
  8609. },
  8610. {
  8611. name: "Immense",
  8612. height: math.unit(200, "miles")
  8613. },
  8614. ]
  8615. ))
  8616. characterMakers.push(() => makeCharacter(
  8617. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8618. {
  8619. front: {
  8620. height: math.unit(6, "feet"),
  8621. weight: math.unit(180, "lbs"),
  8622. name: "Front",
  8623. image: {
  8624. source: "./media/characters/danni-rosie/front.svg",
  8625. extra: 1260 / 1128,
  8626. bottom: 0.022
  8627. }
  8628. },
  8629. },
  8630. [
  8631. {
  8632. name: "Micro",
  8633. height: math.unit(2, "inches"),
  8634. default: true
  8635. },
  8636. ]
  8637. ))
  8638. characterMakers.push(() => makeCharacter(
  8639. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8640. {
  8641. front: {
  8642. height: math.unit(5 + 9 / 12, "feet"),
  8643. weight: math.unit(220, "lb"),
  8644. name: "Front",
  8645. image: {
  8646. source: "./media/characters/samantha-kruse/front.svg",
  8647. extra: (985 / 935),
  8648. bottom: 0.03
  8649. }
  8650. },
  8651. frontUndressed: {
  8652. height: math.unit(5 + 9 / 12, "feet"),
  8653. weight: math.unit(220, "lb"),
  8654. name: "Front (Undressed)",
  8655. image: {
  8656. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8657. extra: (973 / 923),
  8658. bottom: 0.025
  8659. }
  8660. },
  8661. fat: {
  8662. height: math.unit(5 + 9 / 12, "feet"),
  8663. weight: math.unit(900, "lb"),
  8664. name: "Front (Fat)",
  8665. image: {
  8666. source: "./media/characters/samantha-kruse/fat.svg",
  8667. extra: 2688 / 2561
  8668. }
  8669. },
  8670. },
  8671. [
  8672. {
  8673. name: "Normal",
  8674. height: math.unit(5 + 9 / 12, "feet"),
  8675. default: true
  8676. }
  8677. ]
  8678. ))
  8679. characterMakers.push(() => makeCharacter(
  8680. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8681. {
  8682. back: {
  8683. height: math.unit(5 + 4 / 12, "feet"),
  8684. weight: math.unit(4963, "lb"),
  8685. name: "Back",
  8686. image: {
  8687. source: "./media/characters/amelia-rosie/back.svg",
  8688. extra: 1113 / 963,
  8689. bottom: 0.01
  8690. }
  8691. },
  8692. },
  8693. [
  8694. {
  8695. name: "Level 0",
  8696. height: math.unit(5 + 4 / 12, "feet")
  8697. },
  8698. {
  8699. name: "Level 1",
  8700. height: math.unit(164597, "feet"),
  8701. default: true
  8702. },
  8703. {
  8704. name: "Level 2",
  8705. height: math.unit(956243, "miles")
  8706. },
  8707. {
  8708. name: "Level 3",
  8709. height: math.unit(29421709423, "miles")
  8710. },
  8711. {
  8712. name: "Level 4",
  8713. height: math.unit(154, "lightyears")
  8714. },
  8715. {
  8716. name: "Level 5",
  8717. height: math.unit(4738272, "lightyears")
  8718. },
  8719. {
  8720. name: "Level 6",
  8721. height: math.unit(145787152896, "lightyears")
  8722. },
  8723. ]
  8724. ))
  8725. characterMakers.push(() => makeCharacter(
  8726. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8727. {
  8728. front: {
  8729. height: math.unit(5 + 11 / 12, "feet"),
  8730. weight: math.unit(65, "kg"),
  8731. name: "Front",
  8732. image: {
  8733. source: "./media/characters/rook-kitara/front.svg",
  8734. extra: 1347 / 1274,
  8735. bottom: 0.005
  8736. }
  8737. },
  8738. },
  8739. [
  8740. {
  8741. name: "Totally Unfair",
  8742. height: math.unit(1.8, "mm")
  8743. },
  8744. {
  8745. name: "Lap Rookie",
  8746. height: math.unit(1.4, "feet")
  8747. },
  8748. {
  8749. name: "Normal",
  8750. height: math.unit(5 + 11 / 12, "feet"),
  8751. default: true
  8752. },
  8753. {
  8754. name: "How Did This Happen",
  8755. height: math.unit(80, "miles")
  8756. }
  8757. ]
  8758. ))
  8759. characterMakers.push(() => makeCharacter(
  8760. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8761. {
  8762. front: {
  8763. height: math.unit(7, "feet"),
  8764. weight: math.unit(300, "lb"),
  8765. name: "Front",
  8766. image: {
  8767. source: "./media/characters/pisces/front.svg",
  8768. extra: 2255 / 2115,
  8769. bottom: 0.03
  8770. }
  8771. },
  8772. back: {
  8773. height: math.unit(7, "feet"),
  8774. weight: math.unit(300, "lb"),
  8775. name: "Back",
  8776. image: {
  8777. source: "./media/characters/pisces/back.svg",
  8778. extra: 2146 / 2055,
  8779. bottom: 0.04
  8780. }
  8781. },
  8782. },
  8783. [
  8784. {
  8785. name: "Normal",
  8786. height: math.unit(7, "feet"),
  8787. default: true
  8788. },
  8789. {
  8790. name: "Swimming Pool",
  8791. height: math.unit(12.2, "meters")
  8792. },
  8793. {
  8794. name: "Olympic Swimming Pool",
  8795. height: math.unit(56.3, "meters")
  8796. },
  8797. {
  8798. name: "Lake Superior",
  8799. height: math.unit(93900, "meters")
  8800. },
  8801. {
  8802. name: "Mediterranean Sea",
  8803. height: math.unit(644457, "meters")
  8804. },
  8805. {
  8806. name: "World's Oceans",
  8807. height: math.unit(4567491, "meters")
  8808. },
  8809. ]
  8810. ))
  8811. characterMakers.push(() => makeCharacter(
  8812. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8813. {
  8814. front: {
  8815. height: math.unit(2.3, "meters"),
  8816. weight: math.unit(120, "kg"),
  8817. name: "Front",
  8818. image: {
  8819. source: "./media/characters/zelas/front.svg"
  8820. }
  8821. },
  8822. side: {
  8823. height: math.unit(2.3, "meters"),
  8824. weight: math.unit(120, "kg"),
  8825. name: "Side",
  8826. image: {
  8827. source: "./media/characters/zelas/side.svg"
  8828. }
  8829. },
  8830. back: {
  8831. height: math.unit(2.3, "meters"),
  8832. weight: math.unit(120, "kg"),
  8833. name: "Back",
  8834. image: {
  8835. source: "./media/characters/zelas/back.svg"
  8836. }
  8837. },
  8838. foot: {
  8839. height: math.unit(1.116, "feet"),
  8840. name: "Foot",
  8841. image: {
  8842. source: "./media/characters/zelas/foot.svg"
  8843. }
  8844. },
  8845. },
  8846. [
  8847. {
  8848. name: "Normal",
  8849. height: math.unit(2.3, "meters")
  8850. },
  8851. {
  8852. name: "Macro",
  8853. height: math.unit(30, "meters"),
  8854. default: true
  8855. },
  8856. ]
  8857. ))
  8858. characterMakers.push(() => makeCharacter(
  8859. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8860. {
  8861. front: {
  8862. height: math.unit(1, "inch"),
  8863. weight: math.unit(0.21, "grams"),
  8864. name: "Front",
  8865. image: {
  8866. source: "./media/characters/talbot/front.svg",
  8867. extra: 594 / 544
  8868. }
  8869. },
  8870. },
  8871. [
  8872. {
  8873. name: "Micro",
  8874. height: math.unit(1, "inch"),
  8875. default: true
  8876. },
  8877. ]
  8878. ))
  8879. characterMakers.push(() => makeCharacter(
  8880. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8881. {
  8882. front: {
  8883. height: math.unit(3 + 3 / 12, "feet"),
  8884. weight: math.unit(51.8, "lb"),
  8885. name: "Front",
  8886. image: {
  8887. source: "./media/characters/fliss/front.svg",
  8888. extra: 840 / 640
  8889. }
  8890. },
  8891. },
  8892. [
  8893. {
  8894. name: "Teeny Tiny",
  8895. height: math.unit(1, "mm")
  8896. },
  8897. {
  8898. name: "Small",
  8899. height: math.unit(1, "inch"),
  8900. default: true
  8901. },
  8902. {
  8903. name: "Standard Sylveon",
  8904. height: math.unit(3 + 3 / 12, "feet")
  8905. },
  8906. {
  8907. name: "Large Nuisance",
  8908. height: math.unit(33, "feet")
  8909. },
  8910. {
  8911. name: "City Filler",
  8912. height: math.unit(3000, "feet")
  8913. },
  8914. {
  8915. name: "New Horizon",
  8916. height: math.unit(6000, "miles")
  8917. },
  8918. ]
  8919. ))
  8920. characterMakers.push(() => makeCharacter(
  8921. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8922. {
  8923. front: {
  8924. height: math.unit(5, "cm"),
  8925. weight: math.unit(1.94, "g"),
  8926. name: "Front",
  8927. image: {
  8928. source: "./media/characters/fleta/front.svg",
  8929. extra: 835 / 803
  8930. }
  8931. },
  8932. back: {
  8933. height: math.unit(5, "cm"),
  8934. weight: math.unit(1.94, "g"),
  8935. name: "Back",
  8936. image: {
  8937. source: "./media/characters/fleta/back.svg",
  8938. extra: 835 / 803
  8939. }
  8940. },
  8941. },
  8942. [
  8943. {
  8944. name: "Micro",
  8945. height: math.unit(5, "cm"),
  8946. default: true
  8947. },
  8948. ]
  8949. ))
  8950. characterMakers.push(() => makeCharacter(
  8951. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8952. {
  8953. front: {
  8954. height: math.unit(6, "feet"),
  8955. weight: math.unit(225, "lb"),
  8956. name: "Front",
  8957. image: {
  8958. source: "./media/characters/dominic/front.svg",
  8959. extra: 1770 / 1620,
  8960. bottom: 0.025
  8961. }
  8962. },
  8963. back: {
  8964. height: math.unit(6, "feet"),
  8965. weight: math.unit(225, "lb"),
  8966. name: "Back",
  8967. image: {
  8968. source: "./media/characters/dominic/back.svg",
  8969. extra: 1745 / 1620,
  8970. bottom: 0.065
  8971. }
  8972. },
  8973. },
  8974. [
  8975. {
  8976. name: "Nano",
  8977. height: math.unit(0.1, "mm")
  8978. },
  8979. {
  8980. name: "Micro-",
  8981. height: math.unit(1, "mm")
  8982. },
  8983. {
  8984. name: "Micro",
  8985. height: math.unit(4, "inches")
  8986. },
  8987. {
  8988. name: "Normal",
  8989. height: math.unit(6 + 4 / 12, "feet"),
  8990. default: true
  8991. },
  8992. {
  8993. name: "Macro",
  8994. height: math.unit(115, "feet")
  8995. },
  8996. {
  8997. name: "Macro+",
  8998. height: math.unit(955, "feet")
  8999. },
  9000. {
  9001. name: "Megamacro",
  9002. height: math.unit(8990, "feet")
  9003. },
  9004. {
  9005. name: "Gigmacro",
  9006. height: math.unit(9310, "miles")
  9007. },
  9008. {
  9009. name: "Teramacro",
  9010. height: math.unit(1567005010, "miles")
  9011. },
  9012. {
  9013. name: "Examacro",
  9014. height: math.unit(1425, "parsecs")
  9015. },
  9016. ]
  9017. ))
  9018. characterMakers.push(() => makeCharacter(
  9019. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9020. {
  9021. front: {
  9022. height: math.unit(400, "feet"),
  9023. weight: math.unit(44444444, "lb"),
  9024. name: "Front",
  9025. image: {
  9026. source: "./media/characters/major-colonel/front.svg"
  9027. }
  9028. },
  9029. back: {
  9030. height: math.unit(400, "feet"),
  9031. weight: math.unit(44444444, "lb"),
  9032. name: "Back",
  9033. image: {
  9034. source: "./media/characters/major-colonel/back.svg"
  9035. }
  9036. },
  9037. },
  9038. [
  9039. {
  9040. name: "Macro",
  9041. height: math.unit(400, "feet"),
  9042. default: true
  9043. },
  9044. ]
  9045. ))
  9046. characterMakers.push(() => makeCharacter(
  9047. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9048. {
  9049. catFront: {
  9050. height: math.unit(6, "feet"),
  9051. weight: math.unit(120, "lb"),
  9052. name: "Front (Cat Side)",
  9053. image: {
  9054. source: "./media/characters/axel-lycan/cat-front.svg",
  9055. extra: 430 / 402,
  9056. bottom: 43 / 472.35
  9057. }
  9058. },
  9059. catBack: {
  9060. height: math.unit(6, "feet"),
  9061. weight: math.unit(120, "lb"),
  9062. name: "Back (Cat Side)",
  9063. image: {
  9064. source: "./media/characters/axel-lycan/cat-back.svg",
  9065. extra: 447 / 419,
  9066. bottom: 23.3 / 469
  9067. }
  9068. },
  9069. wolfFront: {
  9070. height: math.unit(6, "feet"),
  9071. weight: math.unit(120, "lb"),
  9072. name: "Front (Wolf Side)",
  9073. image: {
  9074. source: "./media/characters/axel-lycan/wolf-front.svg",
  9075. extra: 485 / 456,
  9076. bottom: 19 / 504
  9077. }
  9078. },
  9079. wolfBack: {
  9080. height: math.unit(6, "feet"),
  9081. weight: math.unit(120, "lb"),
  9082. name: "Back (Wolf Side)",
  9083. image: {
  9084. source: "./media/characters/axel-lycan/wolf-back.svg",
  9085. extra: 475 / 438,
  9086. bottom: 39.2 / 514
  9087. }
  9088. },
  9089. },
  9090. [
  9091. {
  9092. name: "Macro",
  9093. height: math.unit(1, "km"),
  9094. default: true
  9095. },
  9096. ]
  9097. ))
  9098. characterMakers.push(() => makeCharacter(
  9099. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9100. {
  9101. front: {
  9102. height: math.unit(5 + 9 / 12, "feet"),
  9103. weight: math.unit(175, "lb"),
  9104. name: "Front",
  9105. image: {
  9106. source: "./media/characters/vanrel-hyena/front.svg",
  9107. extra: 1086 / 1010,
  9108. bottom: 0.04
  9109. }
  9110. },
  9111. },
  9112. [
  9113. {
  9114. name: "Normal",
  9115. height: math.unit(5 + 9 / 12, "feet"),
  9116. default: true
  9117. },
  9118. ]
  9119. ))
  9120. characterMakers.push(() => makeCharacter(
  9121. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9122. {
  9123. front: {
  9124. height: math.unit(6, "feet"),
  9125. weight: math.unit(103, "lb"),
  9126. name: "Front",
  9127. image: {
  9128. source: "./media/characters/abbott-absol/front.svg",
  9129. extra: 2010 / 1842
  9130. }
  9131. },
  9132. },
  9133. [
  9134. {
  9135. name: "Megamicro",
  9136. height: math.unit(0.1, "mm")
  9137. },
  9138. {
  9139. name: "Micro",
  9140. height: math.unit(1, "inch")
  9141. },
  9142. {
  9143. name: "Normal",
  9144. height: math.unit(6, "feet"),
  9145. default: true
  9146. },
  9147. ]
  9148. ))
  9149. characterMakers.push(() => makeCharacter(
  9150. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9151. {
  9152. front: {
  9153. height: math.unit(6, "feet"),
  9154. weight: math.unit(264, "lb"),
  9155. name: "Front",
  9156. image: {
  9157. source: "./media/characters/hector/front.svg",
  9158. extra: 2280 / 2130,
  9159. bottom: 0.07
  9160. }
  9161. },
  9162. },
  9163. [
  9164. {
  9165. name: "Normal",
  9166. height: math.unit(12.25, "foot"),
  9167. default: true
  9168. },
  9169. {
  9170. name: "Macro",
  9171. height: math.unit(160, "feet")
  9172. },
  9173. ]
  9174. ))
  9175. characterMakers.push(() => makeCharacter(
  9176. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9177. {
  9178. front: {
  9179. height: math.unit(6, "feet"),
  9180. weight: math.unit(150, "lb"),
  9181. name: "Front",
  9182. image: {
  9183. source: "./media/characters/sal/front.svg",
  9184. extra: 1846 / 1699,
  9185. bottom: 0.04
  9186. }
  9187. },
  9188. },
  9189. [
  9190. {
  9191. name: "Megamacro",
  9192. height: math.unit(10, "miles"),
  9193. default: true
  9194. },
  9195. ]
  9196. ))
  9197. characterMakers.push(() => makeCharacter(
  9198. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9199. {
  9200. front: {
  9201. height: math.unit(3, "meters"),
  9202. weight: math.unit(450, "kg"),
  9203. name: "front",
  9204. image: {
  9205. source: "./media/characters/ranger/front.svg",
  9206. extra: 2401 / 2243,
  9207. bottom: 0.05
  9208. }
  9209. },
  9210. },
  9211. [
  9212. {
  9213. name: "Normal",
  9214. height: math.unit(3, "meters"),
  9215. default: true
  9216. },
  9217. ]
  9218. ))
  9219. characterMakers.push(() => makeCharacter(
  9220. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9221. {
  9222. front: {
  9223. height: math.unit(14, "feet"),
  9224. weight: math.unit(800, "kg"),
  9225. name: "Front",
  9226. image: {
  9227. source: "./media/characters/theresa/front.svg",
  9228. extra: 3575 / 3346,
  9229. bottom: 0.03
  9230. }
  9231. },
  9232. },
  9233. [
  9234. {
  9235. name: "Normal",
  9236. height: math.unit(14, "feet"),
  9237. default: true
  9238. },
  9239. ]
  9240. ))
  9241. characterMakers.push(() => makeCharacter(
  9242. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9243. {
  9244. front: {
  9245. height: math.unit(6, "feet"),
  9246. weight: math.unit(3, "kg"),
  9247. name: "Front",
  9248. image: {
  9249. source: "./media/characters/ine/front.svg",
  9250. extra: 678 / 539,
  9251. bottom: 0.023
  9252. }
  9253. },
  9254. },
  9255. [
  9256. {
  9257. name: "Normal",
  9258. height: math.unit(2.265, "feet"),
  9259. default: true
  9260. },
  9261. ]
  9262. ))
  9263. characterMakers.push(() => makeCharacter(
  9264. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9265. {
  9266. front: {
  9267. height: math.unit(5, "feet"),
  9268. weight: math.unit(30, "kg"),
  9269. name: "Front",
  9270. image: {
  9271. source: "./media/characters/vial/front.svg",
  9272. extra: 1365 / 1277,
  9273. bottom: 0.04
  9274. }
  9275. },
  9276. },
  9277. [
  9278. {
  9279. name: "Normal",
  9280. height: math.unit(5, "feet"),
  9281. default: true
  9282. },
  9283. ]
  9284. ))
  9285. characterMakers.push(() => makeCharacter(
  9286. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9287. {
  9288. side: {
  9289. height: math.unit(3.4, "meters"),
  9290. weight: math.unit(1000, "lb"),
  9291. name: "Side",
  9292. image: {
  9293. source: "./media/characters/rovoska/side.svg",
  9294. extra: 4403 / 1515
  9295. }
  9296. },
  9297. },
  9298. [
  9299. {
  9300. name: "Normal",
  9301. height: math.unit(3.4, "meters"),
  9302. default: true
  9303. },
  9304. ]
  9305. ))
  9306. characterMakers.push(() => makeCharacter(
  9307. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9308. {
  9309. front: {
  9310. height: math.unit(8, "feet"),
  9311. weight: math.unit(315, "lb"),
  9312. name: "Front",
  9313. image: {
  9314. source: "./media/characters/gunner-rotthbauer/front.svg"
  9315. }
  9316. },
  9317. back: {
  9318. height: math.unit(8, "feet"),
  9319. weight: math.unit(315, "lb"),
  9320. name: "Back",
  9321. image: {
  9322. source: "./media/characters/gunner-rotthbauer/back.svg"
  9323. }
  9324. },
  9325. },
  9326. [
  9327. {
  9328. name: "Micro",
  9329. height: math.unit(3.5, "inches")
  9330. },
  9331. {
  9332. name: "Normal",
  9333. height: math.unit(8, "feet"),
  9334. default: true
  9335. },
  9336. {
  9337. name: "Macro",
  9338. height: math.unit(250, "feet")
  9339. },
  9340. {
  9341. name: "Megamacro",
  9342. height: math.unit(1, "AU")
  9343. },
  9344. ]
  9345. ))
  9346. characterMakers.push(() => makeCharacter(
  9347. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9348. {
  9349. front: {
  9350. height: math.unit(5 + 5 / 12, "feet"),
  9351. weight: math.unit(140, "lb"),
  9352. name: "Front",
  9353. image: {
  9354. source: "./media/characters/allatia/front.svg",
  9355. extra: 1227 / 1180,
  9356. bottom: 0.027
  9357. }
  9358. },
  9359. },
  9360. [
  9361. {
  9362. name: "Normal",
  9363. height: math.unit(5 + 5 / 12, "feet")
  9364. },
  9365. {
  9366. name: "Macro",
  9367. height: math.unit(250, "feet"),
  9368. default: true
  9369. },
  9370. {
  9371. name: "Megamacro",
  9372. height: math.unit(8, "miles")
  9373. }
  9374. ]
  9375. ))
  9376. characterMakers.push(() => makeCharacter(
  9377. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9378. {
  9379. front: {
  9380. height: math.unit(6, "feet"),
  9381. weight: math.unit(120, "lb"),
  9382. name: "Front",
  9383. image: {
  9384. source: "./media/characters/tene/front.svg",
  9385. extra: 1728 / 1578,
  9386. bottom: 0.022
  9387. }
  9388. },
  9389. stomping: {
  9390. height: math.unit(2.025, "meters"),
  9391. weight: math.unit(120, "lb"),
  9392. name: "Stomping",
  9393. image: {
  9394. source: "./media/characters/tene/stomping.svg",
  9395. extra: 938 / 873,
  9396. bottom: 0.01
  9397. }
  9398. },
  9399. sitting: {
  9400. height: math.unit(1, "meter"),
  9401. weight: math.unit(120, "lb"),
  9402. name: "Sitting",
  9403. image: {
  9404. source: "./media/characters/tene/sitting.svg",
  9405. extra: 437 / 415,
  9406. bottom: 0.1
  9407. }
  9408. },
  9409. feral: {
  9410. height: math.unit(3.9, "feet"),
  9411. weight: math.unit(250, "lb"),
  9412. name: "Feral",
  9413. image: {
  9414. source: "./media/characters/tene/feral.svg",
  9415. extra: 717 / 458,
  9416. bottom: 0.179
  9417. }
  9418. },
  9419. },
  9420. [
  9421. {
  9422. name: "Normal",
  9423. height: math.unit(6, "feet")
  9424. },
  9425. {
  9426. name: "Macro",
  9427. height: math.unit(300, "feet"),
  9428. default: true
  9429. },
  9430. {
  9431. name: "Megamacro",
  9432. height: math.unit(5, "miles")
  9433. },
  9434. ]
  9435. ))
  9436. characterMakers.push(() => makeCharacter(
  9437. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9438. {
  9439. side: {
  9440. height: math.unit(6, "feet"),
  9441. name: "Side",
  9442. image: {
  9443. source: "./media/characters/evander/side.svg",
  9444. extra: 877 / 477
  9445. }
  9446. },
  9447. },
  9448. [
  9449. {
  9450. name: "Normal",
  9451. height: math.unit(0.83, "meters"),
  9452. default: true
  9453. },
  9454. ]
  9455. ))
  9456. characterMakers.push(() => makeCharacter(
  9457. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9458. {
  9459. front: {
  9460. height: math.unit(12, "feet"),
  9461. weight: math.unit(1000, "lb"),
  9462. name: "Front",
  9463. image: {
  9464. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9465. extra: 1762 / 1611
  9466. }
  9467. },
  9468. back: {
  9469. height: math.unit(12, "feet"),
  9470. weight: math.unit(1000, "lb"),
  9471. name: "Back",
  9472. image: {
  9473. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9474. extra: 1762 / 1611
  9475. }
  9476. },
  9477. },
  9478. [
  9479. {
  9480. name: "Normal",
  9481. height: math.unit(12, "feet"),
  9482. default: true
  9483. },
  9484. {
  9485. name: "Kaiju",
  9486. height: math.unit(150, "feet")
  9487. },
  9488. ]
  9489. ))
  9490. characterMakers.push(() => makeCharacter(
  9491. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9492. {
  9493. front: {
  9494. height: math.unit(6, "feet"),
  9495. weight: math.unit(150, "lb"),
  9496. name: "Front",
  9497. image: {
  9498. source: "./media/characters/zero-alurus/front.svg"
  9499. }
  9500. },
  9501. back: {
  9502. height: math.unit(6, "feet"),
  9503. weight: math.unit(150, "lb"),
  9504. name: "Back",
  9505. image: {
  9506. source: "./media/characters/zero-alurus/back.svg"
  9507. }
  9508. },
  9509. },
  9510. [
  9511. {
  9512. name: "Normal",
  9513. height: math.unit(5 + 10 / 12, "feet")
  9514. },
  9515. {
  9516. name: "Macro",
  9517. height: math.unit(60, "feet"),
  9518. default: true
  9519. },
  9520. {
  9521. name: "Macro+",
  9522. height: math.unit(450, "feet")
  9523. },
  9524. ]
  9525. ))
  9526. characterMakers.push(() => makeCharacter(
  9527. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9528. {
  9529. front: {
  9530. height: math.unit(6, "feet"),
  9531. weight: math.unit(200, "lb"),
  9532. name: "Front",
  9533. image: {
  9534. source: "./media/characters/mega-shi/front.svg",
  9535. extra: 1279 / 1250,
  9536. bottom: 0.02
  9537. }
  9538. },
  9539. back: {
  9540. height: math.unit(6, "feet"),
  9541. weight: math.unit(200, "lb"),
  9542. name: "Back",
  9543. image: {
  9544. source: "./media/characters/mega-shi/back.svg",
  9545. extra: 1279 / 1250,
  9546. bottom: 0.02
  9547. }
  9548. },
  9549. },
  9550. [
  9551. {
  9552. name: "Micro",
  9553. height: math.unit(16 + 6 / 12, "feet")
  9554. },
  9555. {
  9556. name: "Third Dimension",
  9557. height: math.unit(40, "meters")
  9558. },
  9559. {
  9560. name: "Normal",
  9561. height: math.unit(660, "feet"),
  9562. default: true
  9563. },
  9564. {
  9565. name: "Megamacro",
  9566. height: math.unit(10, "miles")
  9567. },
  9568. {
  9569. name: "Planetary Launch",
  9570. height: math.unit(500, "miles")
  9571. },
  9572. {
  9573. name: "Interstellar",
  9574. height: math.unit(1e9, "miles")
  9575. },
  9576. {
  9577. name: "Leaving the Universe",
  9578. height: math.unit(1, "gigaparsec")
  9579. },
  9580. {
  9581. name: "Travelling Universes",
  9582. height: math.unit(30e15, "parsecs")
  9583. },
  9584. ]
  9585. ))
  9586. characterMakers.push(() => makeCharacter(
  9587. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9588. {
  9589. front: {
  9590. height: math.unit(6, "feet"),
  9591. weight: math.unit(150, "lb"),
  9592. name: "Front",
  9593. image: {
  9594. source: "./media/characters/odyssey/front.svg",
  9595. extra: 1782 / 1582,
  9596. bottom: 0.01
  9597. }
  9598. },
  9599. side: {
  9600. height: math.unit(5.7, "feet"),
  9601. weight: math.unit(140, "lb"),
  9602. name: "Side",
  9603. image: {
  9604. source: "./media/characters/odyssey/side.svg",
  9605. extra: 6462 / 5700
  9606. }
  9607. },
  9608. },
  9609. [
  9610. {
  9611. name: "Normal",
  9612. height: math.unit(5 + 4 / 12, "feet")
  9613. },
  9614. {
  9615. name: "Macro",
  9616. height: math.unit(1, "km")
  9617. },
  9618. {
  9619. name: "Megamacro",
  9620. height: math.unit(3000, "km")
  9621. },
  9622. {
  9623. name: "Gigamacro",
  9624. height: math.unit(1, "AU"),
  9625. default: true
  9626. },
  9627. {
  9628. name: "Omniversal",
  9629. height: math.unit(100e14, "lightyears")
  9630. },
  9631. ]
  9632. ))
  9633. characterMakers.push(() => makeCharacter(
  9634. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9635. {
  9636. front: {
  9637. height: math.unit(6, "feet"),
  9638. weight: math.unit(300, "lb"),
  9639. name: "Front",
  9640. image: {
  9641. source: "./media/characters/mekuto/front.svg",
  9642. extra: 921 / 832,
  9643. bottom: 0.03
  9644. }
  9645. },
  9646. hand: {
  9647. height: math.unit(6 / 10.24, "feet"),
  9648. name: "Hand",
  9649. image: {
  9650. source: "./media/characters/mekuto/hand.svg"
  9651. }
  9652. },
  9653. foot: {
  9654. height: math.unit(6 / 5.05, "feet"),
  9655. name: "Foot",
  9656. image: {
  9657. source: "./media/characters/mekuto/foot.svg"
  9658. }
  9659. },
  9660. },
  9661. [
  9662. {
  9663. name: "Minimicro",
  9664. height: math.unit(0.2, "inches")
  9665. },
  9666. {
  9667. name: "Micro",
  9668. height: math.unit(1.5, "inches")
  9669. },
  9670. {
  9671. name: "Normal",
  9672. height: math.unit(5 + 11 / 12, "feet"),
  9673. default: true
  9674. },
  9675. {
  9676. name: "Minimacro",
  9677. height: math.unit(17 + 9 / 12, "feet")
  9678. },
  9679. {
  9680. name: "Macro",
  9681. height: math.unit(177.5, "feet")
  9682. },
  9683. {
  9684. name: "Megamacro",
  9685. height: math.unit(152, "miles")
  9686. },
  9687. ]
  9688. ))
  9689. characterMakers.push(() => makeCharacter(
  9690. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9691. {
  9692. front: {
  9693. height: math.unit(6.5, "inches"),
  9694. weight: math.unit(13, "oz"),
  9695. name: "Front",
  9696. image: {
  9697. source: "./media/characters/dafydd-tomos/front.svg",
  9698. extra: 2990 / 2603,
  9699. bottom: 0.03
  9700. }
  9701. },
  9702. },
  9703. [
  9704. {
  9705. name: "Micro",
  9706. height: math.unit(6.5, "inches"),
  9707. default: true
  9708. },
  9709. ]
  9710. ))
  9711. characterMakers.push(() => makeCharacter(
  9712. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9713. {
  9714. front: {
  9715. height: math.unit(6, "feet"),
  9716. weight: math.unit(150, "lb"),
  9717. name: "Front",
  9718. image: {
  9719. source: "./media/characters/splinter/front.svg",
  9720. extra: 2990 / 2882,
  9721. bottom: 0.04
  9722. }
  9723. },
  9724. back: {
  9725. height: math.unit(6, "feet"),
  9726. weight: math.unit(150, "lb"),
  9727. name: "Back",
  9728. image: {
  9729. source: "./media/characters/splinter/back.svg",
  9730. extra: 2990 / 2882,
  9731. bottom: 0.04
  9732. }
  9733. },
  9734. },
  9735. [
  9736. {
  9737. name: "Normal",
  9738. height: math.unit(6, "feet")
  9739. },
  9740. {
  9741. name: "Macro",
  9742. height: math.unit(230, "meters"),
  9743. default: true
  9744. },
  9745. ]
  9746. ))
  9747. characterMakers.push(() => makeCharacter(
  9748. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9749. {
  9750. front: {
  9751. height: math.unit(4 + 10 / 12, "feet"),
  9752. weight: math.unit(480, "lb"),
  9753. name: "Front",
  9754. image: {
  9755. source: "./media/characters/snow-gabumon/front.svg",
  9756. extra: 1140 / 963,
  9757. bottom: 0.058
  9758. }
  9759. },
  9760. back: {
  9761. height: math.unit(4 + 10 / 12, "feet"),
  9762. weight: math.unit(480, "lb"),
  9763. name: "Back",
  9764. image: {
  9765. source: "./media/characters/snow-gabumon/back.svg",
  9766. extra: 1115 / 962,
  9767. bottom: 0.041
  9768. }
  9769. },
  9770. frontUndresed: {
  9771. height: math.unit(4 + 10 / 12, "feet"),
  9772. weight: math.unit(480, "lb"),
  9773. name: "Front (Undressed)",
  9774. image: {
  9775. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9776. extra: 1061 / 960,
  9777. bottom: 0.045
  9778. }
  9779. },
  9780. },
  9781. [
  9782. {
  9783. name: "Micro",
  9784. height: math.unit(1, "inch")
  9785. },
  9786. {
  9787. name: "Normal",
  9788. height: math.unit(4 + 10 / 12, "feet"),
  9789. default: true
  9790. },
  9791. {
  9792. name: "Macro",
  9793. height: math.unit(200, "feet")
  9794. },
  9795. {
  9796. name: "Megamacro",
  9797. height: math.unit(120, "miles")
  9798. },
  9799. {
  9800. name: "Gigamacro",
  9801. height: math.unit(9800, "miles")
  9802. },
  9803. ]
  9804. ))
  9805. characterMakers.push(() => makeCharacter(
  9806. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9807. {
  9808. front: {
  9809. height: math.unit(1.7, "meters"),
  9810. weight: math.unit(140, "lb"),
  9811. name: "Front",
  9812. image: {
  9813. source: "./media/characters/moody/front.svg",
  9814. extra: 3226 / 3007,
  9815. bottom: 0.087
  9816. }
  9817. },
  9818. },
  9819. [
  9820. {
  9821. name: "Micro",
  9822. height: math.unit(1, "mm")
  9823. },
  9824. {
  9825. name: "Normal",
  9826. height: math.unit(1.7, "meters"),
  9827. default: true
  9828. },
  9829. {
  9830. name: "Macro",
  9831. height: math.unit(80, "meters")
  9832. },
  9833. {
  9834. name: "Macro+",
  9835. height: math.unit(500, "meters")
  9836. },
  9837. ]
  9838. ))
  9839. characterMakers.push(() => makeCharacter(
  9840. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9841. {
  9842. front: {
  9843. height: math.unit(6, "feet"),
  9844. weight: math.unit(150, "lb"),
  9845. name: "Front",
  9846. image: {
  9847. source: "./media/characters/zyas/front.svg",
  9848. extra: 1180 / 1120,
  9849. bottom: 0.045
  9850. }
  9851. },
  9852. },
  9853. [
  9854. {
  9855. name: "Normal",
  9856. height: math.unit(10, "feet"),
  9857. default: true
  9858. },
  9859. {
  9860. name: "Macro",
  9861. height: math.unit(500, "feet")
  9862. },
  9863. {
  9864. name: "Megamacro",
  9865. height: math.unit(5, "miles")
  9866. },
  9867. {
  9868. name: "Teramacro",
  9869. height: math.unit(150000, "miles")
  9870. },
  9871. ]
  9872. ))
  9873. characterMakers.push(() => makeCharacter(
  9874. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9875. {
  9876. front: {
  9877. height: math.unit(6, "feet"),
  9878. weight: math.unit(150, "lb"),
  9879. name: "Front",
  9880. image: {
  9881. source: "./media/characters/cuon/front.svg",
  9882. extra: 1390 / 1320,
  9883. bottom: 0.008
  9884. }
  9885. },
  9886. },
  9887. [
  9888. {
  9889. name: "Micro",
  9890. height: math.unit(3, "inches")
  9891. },
  9892. {
  9893. name: "Normal",
  9894. height: math.unit(18 + 9 / 12, "feet"),
  9895. default: true
  9896. },
  9897. {
  9898. name: "Macro",
  9899. height: math.unit(360, "feet")
  9900. },
  9901. {
  9902. name: "Megamacro",
  9903. height: math.unit(360, "miles")
  9904. },
  9905. ]
  9906. ))
  9907. characterMakers.push(() => makeCharacter(
  9908. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9909. {
  9910. front: {
  9911. height: math.unit(2.4, "meters"),
  9912. weight: math.unit(70, "kg"),
  9913. name: "Front",
  9914. image: {
  9915. source: "./media/characters/nyanuxk/front.svg",
  9916. extra: 1172 / 1084,
  9917. bottom: 0.065
  9918. }
  9919. },
  9920. side: {
  9921. height: math.unit(2.4, "meters"),
  9922. weight: math.unit(70, "kg"),
  9923. name: "Side",
  9924. image: {
  9925. source: "./media/characters/nyanuxk/side.svg",
  9926. extra: 1190 / 1132,
  9927. bottom: 0.007
  9928. }
  9929. },
  9930. back: {
  9931. height: math.unit(2.4, "meters"),
  9932. weight: math.unit(70, "kg"),
  9933. name: "Back",
  9934. image: {
  9935. source: "./media/characters/nyanuxk/back.svg",
  9936. extra: 1200 / 1141,
  9937. bottom: 0.015
  9938. }
  9939. },
  9940. foot: {
  9941. height: math.unit(0.52, "meters"),
  9942. name: "Foot",
  9943. image: {
  9944. source: "./media/characters/nyanuxk/foot.svg"
  9945. }
  9946. },
  9947. },
  9948. [
  9949. {
  9950. name: "Micro",
  9951. height: math.unit(2, "cm")
  9952. },
  9953. {
  9954. name: "Normal",
  9955. height: math.unit(2.4, "meters"),
  9956. default: true
  9957. },
  9958. {
  9959. name: "Smaller Macro",
  9960. height: math.unit(120, "meters")
  9961. },
  9962. {
  9963. name: "Bigger Macro",
  9964. height: math.unit(1.2, "km")
  9965. },
  9966. {
  9967. name: "Megamacro",
  9968. height: math.unit(15, "kilometers")
  9969. },
  9970. {
  9971. name: "Gigamacro",
  9972. height: math.unit(2000, "km")
  9973. },
  9974. {
  9975. name: "Teramacro",
  9976. height: math.unit(500000, "km")
  9977. },
  9978. ]
  9979. ))
  9980. characterMakers.push(() => makeCharacter(
  9981. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9982. {
  9983. side: {
  9984. height: math.unit(6, "feet"),
  9985. name: "Side",
  9986. image: {
  9987. source: "./media/characters/ailbhe/side.svg",
  9988. extra: 757 / 464,
  9989. bottom: 0.041
  9990. }
  9991. },
  9992. },
  9993. [
  9994. {
  9995. name: "Normal",
  9996. height: math.unit(1.07, "meters"),
  9997. default: true
  9998. },
  9999. ]
  10000. ))
  10001. characterMakers.push(() => makeCharacter(
  10002. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10003. {
  10004. front: {
  10005. height: math.unit(6, "feet"),
  10006. weight: math.unit(120, "kg"),
  10007. name: "Front",
  10008. image: {
  10009. source: "./media/characters/zevulfius/front.svg",
  10010. extra: 965 / 903
  10011. }
  10012. },
  10013. side: {
  10014. height: math.unit(6, "feet"),
  10015. weight: math.unit(120, "kg"),
  10016. name: "Side",
  10017. image: {
  10018. source: "./media/characters/zevulfius/side.svg",
  10019. extra: 939 / 900
  10020. }
  10021. },
  10022. back: {
  10023. height: math.unit(6, "feet"),
  10024. weight: math.unit(120, "kg"),
  10025. name: "Back",
  10026. image: {
  10027. source: "./media/characters/zevulfius/back.svg",
  10028. extra: 918 / 854,
  10029. bottom: 0.005
  10030. }
  10031. },
  10032. foot: {
  10033. height: math.unit(6 / 3.72, "feet"),
  10034. name: "Foot",
  10035. image: {
  10036. source: "./media/characters/zevulfius/foot.svg"
  10037. }
  10038. },
  10039. },
  10040. [
  10041. {
  10042. name: "Macro",
  10043. height: math.unit(750, "meters")
  10044. },
  10045. {
  10046. name: "Megamacro",
  10047. height: math.unit(20, "km"),
  10048. default: true
  10049. },
  10050. {
  10051. name: "Gigamacro",
  10052. height: math.unit(2000, "km")
  10053. },
  10054. {
  10055. name: "Teramacro",
  10056. height: math.unit(250000, "km")
  10057. },
  10058. ]
  10059. ))
  10060. characterMakers.push(() => makeCharacter(
  10061. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10062. {
  10063. front: {
  10064. height: math.unit(100, "feet"),
  10065. weight: math.unit(350, "kg"),
  10066. name: "Front",
  10067. image: {
  10068. source: "./media/characters/rikes/front.svg",
  10069. extra: 1565 / 1483,
  10070. bottom: 0.017
  10071. }
  10072. },
  10073. },
  10074. [
  10075. {
  10076. name: "Macro",
  10077. height: math.unit(100, "feet"),
  10078. default: true
  10079. },
  10080. ]
  10081. ))
  10082. characterMakers.push(() => makeCharacter(
  10083. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10084. {
  10085. anthro: {
  10086. height: math.unit(8, "feet"),
  10087. weight: math.unit(120, "kg"),
  10088. name: "Anthro",
  10089. image: {
  10090. source: "./media/characters/adam-silver-mane/anthro.svg",
  10091. extra: 5743 / 5339,
  10092. bottom: 0.07
  10093. }
  10094. },
  10095. taur: {
  10096. height: math.unit(16, "feet"),
  10097. weight: math.unit(1500, "kg"),
  10098. name: "Taur",
  10099. image: {
  10100. source: "./media/characters/adam-silver-mane/taur.svg",
  10101. extra: 1713 / 1571,
  10102. bottom: 0.01
  10103. }
  10104. },
  10105. },
  10106. [
  10107. {
  10108. name: "Normal",
  10109. height: math.unit(8, "feet")
  10110. },
  10111. {
  10112. name: "Minimacro",
  10113. height: math.unit(80, "feet")
  10114. },
  10115. {
  10116. name: "Macro",
  10117. height: math.unit(800, "feet"),
  10118. default: true
  10119. },
  10120. {
  10121. name: "Megamacro",
  10122. height: math.unit(8000, "feet")
  10123. },
  10124. {
  10125. name: "Gigamacro",
  10126. height: math.unit(800, "miles")
  10127. },
  10128. {
  10129. name: "Teramacro",
  10130. height: math.unit(80000, "miles")
  10131. },
  10132. {
  10133. name: "Celestial",
  10134. height: math.unit(8e6, "miles")
  10135. },
  10136. {
  10137. name: "Star Dragon",
  10138. height: math.unit(800000, "parsecs")
  10139. },
  10140. {
  10141. name: "Godly",
  10142. height: math.unit(800, "teraparsecs")
  10143. },
  10144. ]
  10145. ))
  10146. characterMakers.push(() => makeCharacter(
  10147. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10148. {
  10149. front: {
  10150. height: math.unit(6, "feet"),
  10151. weight: math.unit(150, "lb"),
  10152. name: "Front",
  10153. image: {
  10154. source: "./media/characters/ky'owin/front.svg",
  10155. extra: 3888 / 3068,
  10156. bottom: 0.015
  10157. }
  10158. },
  10159. },
  10160. [
  10161. {
  10162. name: "Normal",
  10163. height: math.unit(6 + 8 / 12, "feet")
  10164. },
  10165. {
  10166. name: "Large",
  10167. height: math.unit(68, "feet")
  10168. },
  10169. {
  10170. name: "Macro",
  10171. height: math.unit(132, "feet")
  10172. },
  10173. {
  10174. name: "Macro+",
  10175. height: math.unit(340, "feet")
  10176. },
  10177. {
  10178. name: "Macro++",
  10179. height: math.unit(680, "feet"),
  10180. default: true
  10181. },
  10182. {
  10183. name: "Megamacro",
  10184. height: math.unit(1, "mile")
  10185. },
  10186. {
  10187. name: "Megamacro+",
  10188. height: math.unit(10, "miles")
  10189. },
  10190. ]
  10191. ))
  10192. characterMakers.push(() => makeCharacter(
  10193. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10194. {
  10195. front: {
  10196. height: math.unit(4, "feet"),
  10197. weight: math.unit(50, "lb"),
  10198. name: "Front",
  10199. image: {
  10200. source: "./media/characters/mal/front.svg",
  10201. extra: 785 / 724,
  10202. bottom: 0.07
  10203. }
  10204. },
  10205. },
  10206. [
  10207. {
  10208. name: "Micro",
  10209. height: math.unit(4, "inches")
  10210. },
  10211. {
  10212. name: "Normal",
  10213. height: math.unit(4, "feet"),
  10214. default: true
  10215. },
  10216. {
  10217. name: "Macro",
  10218. height: math.unit(200, "feet")
  10219. },
  10220. ]
  10221. ))
  10222. characterMakers.push(() => makeCharacter(
  10223. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10224. {
  10225. front: {
  10226. height: math.unit(6, "feet"),
  10227. weight: math.unit(150, "lb"),
  10228. name: "Front",
  10229. image: {
  10230. source: "./media/characters/jordan-deware/front.svg",
  10231. extra: 1191 / 1012
  10232. }
  10233. },
  10234. },
  10235. [
  10236. {
  10237. name: "Nano",
  10238. height: math.unit(0.01, "mm")
  10239. },
  10240. {
  10241. name: "Minimicro",
  10242. height: math.unit(1, "mm")
  10243. },
  10244. {
  10245. name: "Micro",
  10246. height: math.unit(0.5, "inches")
  10247. },
  10248. {
  10249. name: "Normal",
  10250. height: math.unit(4, "feet"),
  10251. default: true
  10252. },
  10253. {
  10254. name: "Minimacro",
  10255. height: math.unit(40, "meters")
  10256. },
  10257. {
  10258. name: "Small Macro",
  10259. height: math.unit(400, "meters")
  10260. },
  10261. {
  10262. name: "Macro",
  10263. height: math.unit(4, "miles")
  10264. },
  10265. {
  10266. name: "Megamacro",
  10267. height: math.unit(40, "miles")
  10268. },
  10269. {
  10270. name: "Megamacro+",
  10271. height: math.unit(400, "miles")
  10272. },
  10273. {
  10274. name: "Gigamacro",
  10275. height: math.unit(400000, "miles")
  10276. },
  10277. ]
  10278. ))
  10279. characterMakers.push(() => makeCharacter(
  10280. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10281. {
  10282. side: {
  10283. height: math.unit(6, "feet"),
  10284. weight: math.unit(150, "lb"),
  10285. name: "Side",
  10286. image: {
  10287. source: "./media/characters/kimiko/side.svg",
  10288. extra: 600 / 358
  10289. }
  10290. },
  10291. },
  10292. [
  10293. {
  10294. name: "Normal",
  10295. height: math.unit(15, "feet"),
  10296. default: true
  10297. },
  10298. {
  10299. name: "Macro",
  10300. height: math.unit(220, "feet")
  10301. },
  10302. {
  10303. name: "Macro+",
  10304. height: math.unit(1450, "feet")
  10305. },
  10306. {
  10307. name: "Megamacro",
  10308. height: math.unit(11500, "feet")
  10309. },
  10310. {
  10311. name: "Gigamacro",
  10312. height: math.unit(9500, "miles")
  10313. },
  10314. {
  10315. name: "Teramacro",
  10316. height: math.unit(2208005005, "miles")
  10317. },
  10318. {
  10319. name: "Examacro",
  10320. height: math.unit(2750, "parsecs")
  10321. },
  10322. {
  10323. name: "Zettamacro",
  10324. height: math.unit(101500, "parsecs")
  10325. },
  10326. ]
  10327. ))
  10328. characterMakers.push(() => makeCharacter(
  10329. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10330. {
  10331. front: {
  10332. height: math.unit(6, "feet"),
  10333. weight: math.unit(70, "kg"),
  10334. name: "Front",
  10335. image: {
  10336. source: "./media/characters/andrew-sleepy/front.svg"
  10337. }
  10338. },
  10339. side: {
  10340. height: math.unit(6, "feet"),
  10341. weight: math.unit(70, "kg"),
  10342. name: "Side",
  10343. image: {
  10344. source: "./media/characters/andrew-sleepy/side.svg"
  10345. }
  10346. },
  10347. },
  10348. [
  10349. {
  10350. name: "Micro",
  10351. height: math.unit(1, "mm"),
  10352. default: true
  10353. },
  10354. ]
  10355. ))
  10356. characterMakers.push(() => makeCharacter(
  10357. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10358. {
  10359. front: {
  10360. height: math.unit(6, "feet"),
  10361. weight: math.unit(150, "lb"),
  10362. name: "Front",
  10363. image: {
  10364. source: "./media/characters/judio/front.svg",
  10365. extra: 1258 / 1110
  10366. }
  10367. },
  10368. },
  10369. [
  10370. {
  10371. name: "Normal",
  10372. height: math.unit(5 + 6 / 12, "feet")
  10373. },
  10374. {
  10375. name: "Macro",
  10376. height: math.unit(1000, "feet"),
  10377. default: true
  10378. },
  10379. {
  10380. name: "Megamacro",
  10381. height: math.unit(10, "miles")
  10382. },
  10383. ]
  10384. ))
  10385. characterMakers.push(() => makeCharacter(
  10386. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10387. {
  10388. front: {
  10389. height: math.unit(6, "feet"),
  10390. weight: math.unit(68, "kg"),
  10391. name: "Front",
  10392. image: {
  10393. source: "./media/characters/nomaxice/front.svg",
  10394. extra: 1498 / 1073,
  10395. bottom: 0.075
  10396. }
  10397. },
  10398. foot: {
  10399. height: math.unit(1.1, "feet"),
  10400. name: "Foot",
  10401. image: {
  10402. source: "./media/characters/nomaxice/foot.svg"
  10403. }
  10404. },
  10405. },
  10406. [
  10407. {
  10408. name: "Micro",
  10409. height: math.unit(8, "cm")
  10410. },
  10411. {
  10412. name: "Norm",
  10413. height: math.unit(1.82, "m")
  10414. },
  10415. {
  10416. name: "Norm+",
  10417. height: math.unit(8.8, "feet")
  10418. },
  10419. {
  10420. name: "Big",
  10421. height: math.unit(8, "meters"),
  10422. default: true
  10423. },
  10424. {
  10425. name: "Macro",
  10426. height: math.unit(18, "meters")
  10427. },
  10428. {
  10429. name: "Macro+",
  10430. height: math.unit(88, "meters")
  10431. },
  10432. ]
  10433. ))
  10434. characterMakers.push(() => makeCharacter(
  10435. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10436. {
  10437. front: {
  10438. height: math.unit(12, "feet"),
  10439. weight: math.unit(1.5, "tons"),
  10440. name: "Front",
  10441. image: {
  10442. source: "./media/characters/dydros/front.svg",
  10443. extra: 863 / 800,
  10444. bottom: 0.015
  10445. }
  10446. },
  10447. back: {
  10448. height: math.unit(12, "feet"),
  10449. weight: math.unit(1.5, "tons"),
  10450. name: "Back",
  10451. image: {
  10452. source: "./media/characters/dydros/back.svg",
  10453. extra: 900 / 843,
  10454. bottom: 0.005
  10455. }
  10456. },
  10457. },
  10458. [
  10459. {
  10460. name: "Normal",
  10461. height: math.unit(12, "feet"),
  10462. default: true
  10463. },
  10464. ]
  10465. ))
  10466. characterMakers.push(() => makeCharacter(
  10467. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10468. {
  10469. front: {
  10470. height: math.unit(6, "feet"),
  10471. weight: math.unit(100, "kg"),
  10472. name: "Front",
  10473. image: {
  10474. source: "./media/characters/riggi/front.svg",
  10475. extra: 5787 / 5303
  10476. }
  10477. },
  10478. hyper: {
  10479. height: math.unit(6 * 5 / 3, "feet"),
  10480. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10481. name: "Hyper",
  10482. image: {
  10483. source: "./media/characters/riggi/hyper.svg",
  10484. extra: 3595 / 3485
  10485. }
  10486. },
  10487. },
  10488. [
  10489. {
  10490. name: "Small Macro",
  10491. height: math.unit(50, "feet")
  10492. },
  10493. {
  10494. name: "Default",
  10495. height: math.unit(200, "feet"),
  10496. default: true
  10497. },
  10498. {
  10499. name: "Loom",
  10500. height: math.unit(10000, "feet")
  10501. },
  10502. {
  10503. name: "Cruising Altitude",
  10504. height: math.unit(30000, "feet")
  10505. },
  10506. {
  10507. name: "Megamacro",
  10508. height: math.unit(100, "miles")
  10509. },
  10510. {
  10511. name: "Continent Sized",
  10512. height: math.unit(2800, "miles")
  10513. },
  10514. {
  10515. name: "Earth Sized",
  10516. height: math.unit(8000, "miles")
  10517. },
  10518. ]
  10519. ))
  10520. characterMakers.push(() => makeCharacter(
  10521. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10522. {
  10523. front: {
  10524. height: math.unit(6, "feet"),
  10525. weight: math.unit(250, "lb"),
  10526. name: "Front",
  10527. image: {
  10528. source: "./media/characters/alexi/front.svg",
  10529. extra: 3483 / 3291,
  10530. bottom: 0.04
  10531. }
  10532. },
  10533. back: {
  10534. height: math.unit(6, "feet"),
  10535. weight: math.unit(250, "lb"),
  10536. name: "Back",
  10537. image: {
  10538. source: "./media/characters/alexi/back.svg",
  10539. extra: 3533 / 3356,
  10540. bottom: 0.021
  10541. }
  10542. },
  10543. frontTransforming: {
  10544. height: math.unit(8.58, "feet"),
  10545. weight: math.unit(1300, "lb"),
  10546. name: "Transforming",
  10547. image: {
  10548. source: "./media/characters/alexi/front-transforming.svg",
  10549. extra: 437 / 409,
  10550. bottom: 19 / 458.66
  10551. }
  10552. },
  10553. frontTransformed: {
  10554. height: math.unit(12.5, "feet"),
  10555. weight: math.unit(4000, "lb"),
  10556. name: "Transformed",
  10557. image: {
  10558. source: "./media/characters/alexi/front-transformed.svg",
  10559. extra: 639 / 614,
  10560. bottom: 30.55 / 671
  10561. }
  10562. },
  10563. },
  10564. [
  10565. {
  10566. name: "Normal",
  10567. height: math.unit(14, "feet"),
  10568. default: true
  10569. },
  10570. {
  10571. name: "Minimacro",
  10572. height: math.unit(30, "meters")
  10573. },
  10574. {
  10575. name: "Macro",
  10576. height: math.unit(500, "meters")
  10577. },
  10578. {
  10579. name: "Megamacro",
  10580. height: math.unit(9000, "km")
  10581. },
  10582. {
  10583. name: "Teramacro",
  10584. height: math.unit(384000, "km")
  10585. },
  10586. ]
  10587. ))
  10588. characterMakers.push(() => makeCharacter(
  10589. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10590. {
  10591. front: {
  10592. height: math.unit(6, "feet"),
  10593. weight: math.unit(150, "lb"),
  10594. name: "Front",
  10595. image: {
  10596. source: "./media/characters/kayroo/front.svg",
  10597. extra: 1153 / 1038,
  10598. bottom: 0.06
  10599. }
  10600. },
  10601. foot: {
  10602. height: math.unit(6, "feet"),
  10603. weight: math.unit(150, "lb"),
  10604. name: "Foot",
  10605. image: {
  10606. source: "./media/characters/kayroo/foot.svg"
  10607. }
  10608. },
  10609. },
  10610. [
  10611. {
  10612. name: "Normal",
  10613. height: math.unit(8, "feet"),
  10614. default: true
  10615. },
  10616. {
  10617. name: "Minimacro",
  10618. height: math.unit(250, "feet")
  10619. },
  10620. {
  10621. name: "Macro",
  10622. height: math.unit(2800, "feet")
  10623. },
  10624. {
  10625. name: "Megamacro",
  10626. height: math.unit(5200, "feet")
  10627. },
  10628. {
  10629. name: "Gigamacro",
  10630. height: math.unit(27000, "feet")
  10631. },
  10632. {
  10633. name: "Omega",
  10634. height: math.unit(45000, "feet")
  10635. },
  10636. ]
  10637. ))
  10638. characterMakers.push(() => makeCharacter(
  10639. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10640. {
  10641. front: {
  10642. height: math.unit(18, "feet"),
  10643. weight: math.unit(5800, "lb"),
  10644. name: "Front",
  10645. image: {
  10646. source: "./media/characters/rhys/front.svg",
  10647. extra: 3386 / 3090,
  10648. bottom: 0.07
  10649. }
  10650. },
  10651. },
  10652. [
  10653. {
  10654. name: "Normal",
  10655. height: math.unit(18, "feet"),
  10656. default: true
  10657. },
  10658. {
  10659. name: "Working Size",
  10660. height: math.unit(200, "feet")
  10661. },
  10662. {
  10663. name: "Demolition Size",
  10664. height: math.unit(2000, "feet")
  10665. },
  10666. {
  10667. name: "Maximum Licensed Size",
  10668. height: math.unit(5, "miles")
  10669. },
  10670. {
  10671. name: "Maximum Observed Size",
  10672. height: math.unit(10, "yottameters")
  10673. },
  10674. ]
  10675. ))
  10676. characterMakers.push(() => makeCharacter(
  10677. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10678. {
  10679. front: {
  10680. height: math.unit(6, "feet"),
  10681. weight: math.unit(250, "lb"),
  10682. name: "Front",
  10683. image: {
  10684. source: "./media/characters/toto/front.svg",
  10685. extra: 527 / 479,
  10686. bottom: 0.05
  10687. }
  10688. },
  10689. },
  10690. [
  10691. {
  10692. name: "Micro",
  10693. height: math.unit(3, "feet")
  10694. },
  10695. {
  10696. name: "Normal",
  10697. height: math.unit(10, "feet")
  10698. },
  10699. {
  10700. name: "Macro",
  10701. height: math.unit(150, "feet"),
  10702. default: true
  10703. },
  10704. {
  10705. name: "Megamacro",
  10706. height: math.unit(1200, "feet")
  10707. },
  10708. ]
  10709. ))
  10710. characterMakers.push(() => makeCharacter(
  10711. { name: "King", species: ["lion"], tags: ["anthro"] },
  10712. {
  10713. back: {
  10714. height: math.unit(6, "feet"),
  10715. weight: math.unit(150, "lb"),
  10716. name: "Back",
  10717. image: {
  10718. source: "./media/characters/king/back.svg"
  10719. }
  10720. },
  10721. },
  10722. [
  10723. {
  10724. name: "Micro",
  10725. height: math.unit(2, "inches")
  10726. },
  10727. {
  10728. name: "Normal",
  10729. height: math.unit(8, "feet")
  10730. },
  10731. {
  10732. name: "Macro",
  10733. height: math.unit(200, "feet"),
  10734. default: true
  10735. },
  10736. {
  10737. name: "Megamacro",
  10738. height: math.unit(50, "miles")
  10739. },
  10740. ]
  10741. ))
  10742. characterMakers.push(() => makeCharacter(
  10743. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10744. {
  10745. anthro: {
  10746. height: math.unit(6 + 5 / 12, "feet"),
  10747. weight: math.unit(280, "lb"),
  10748. name: "Anthro",
  10749. image: {
  10750. source: "./media/characters/cordite/anthro.svg",
  10751. extra: 1986 / 1905,
  10752. bottom: 0.025
  10753. }
  10754. },
  10755. feral: {
  10756. height: math.unit(2, "feet"),
  10757. weight: math.unit(90, "lb"),
  10758. name: "Feral",
  10759. image: {
  10760. source: "./media/characters/cordite/feral.svg",
  10761. extra: 1260 / 755,
  10762. bottom: 0.05
  10763. }
  10764. },
  10765. },
  10766. [
  10767. {
  10768. name: "Normal",
  10769. height: math.unit(6 + 5 / 12, "feet"),
  10770. default: true
  10771. },
  10772. ]
  10773. ))
  10774. characterMakers.push(() => makeCharacter(
  10775. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10776. {
  10777. front: {
  10778. height: math.unit(6, "feet"),
  10779. weight: math.unit(150, "lb"),
  10780. name: "Front",
  10781. image: {
  10782. source: "./media/characters/pianostrong/front.svg",
  10783. extra: 6577 / 6254,
  10784. bottom: 0.02
  10785. }
  10786. },
  10787. side: {
  10788. height: math.unit(6, "feet"),
  10789. weight: math.unit(150, "lb"),
  10790. name: "Side",
  10791. image: {
  10792. source: "./media/characters/pianostrong/side.svg",
  10793. extra: 6106 / 5730
  10794. }
  10795. },
  10796. back: {
  10797. height: math.unit(6, "feet"),
  10798. weight: math.unit(150, "lb"),
  10799. name: "Back",
  10800. image: {
  10801. source: "./media/characters/pianostrong/back.svg",
  10802. extra: 6085 / 5733,
  10803. bottom: 0.01
  10804. }
  10805. },
  10806. },
  10807. [
  10808. {
  10809. name: "Macro",
  10810. height: math.unit(100, "feet")
  10811. },
  10812. {
  10813. name: "Macro+",
  10814. height: math.unit(300, "feet"),
  10815. default: true
  10816. },
  10817. {
  10818. name: "Macro++",
  10819. height: math.unit(1000, "feet")
  10820. },
  10821. ]
  10822. ))
  10823. characterMakers.push(() => makeCharacter(
  10824. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10825. {
  10826. front: {
  10827. height: math.unit(6, "feet"),
  10828. weight: math.unit(150, "lb"),
  10829. name: "Front",
  10830. image: {
  10831. source: "./media/characters/kona/front.svg",
  10832. extra: 2960 / 2629,
  10833. bottom: 0.005
  10834. }
  10835. },
  10836. },
  10837. [
  10838. {
  10839. name: "Normal",
  10840. height: math.unit(11 + 8 / 12, "feet")
  10841. },
  10842. {
  10843. name: "Macro",
  10844. height: math.unit(850, "feet"),
  10845. default: true
  10846. },
  10847. {
  10848. name: "Macro+",
  10849. height: math.unit(1.5, "km"),
  10850. default: true
  10851. },
  10852. {
  10853. name: "Megamacro",
  10854. height: math.unit(80, "miles")
  10855. },
  10856. {
  10857. name: "Gigamacro",
  10858. height: math.unit(3500, "miles")
  10859. },
  10860. ]
  10861. ))
  10862. characterMakers.push(() => makeCharacter(
  10863. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10864. {
  10865. side: {
  10866. height: math.unit(1.9, "meters"),
  10867. weight: math.unit(326, "kg"),
  10868. name: "Side",
  10869. image: {
  10870. source: "./media/characters/levi/side.svg",
  10871. extra: 1704 / 1334,
  10872. bottom: 0.02
  10873. }
  10874. },
  10875. },
  10876. [
  10877. {
  10878. name: "Normal",
  10879. height: math.unit(1.9, "meters"),
  10880. default: true
  10881. },
  10882. {
  10883. name: "Macro",
  10884. height: math.unit(20, "meters")
  10885. },
  10886. {
  10887. name: "Macro+",
  10888. height: math.unit(200, "meters")
  10889. },
  10890. {
  10891. name: "Megamacro",
  10892. height: math.unit(2, "km")
  10893. },
  10894. {
  10895. name: "Megamacro+",
  10896. height: math.unit(20, "km")
  10897. },
  10898. {
  10899. name: "Gigamacro",
  10900. height: math.unit(2500, "km")
  10901. },
  10902. {
  10903. name: "Gigamacro+",
  10904. height: math.unit(120000, "km")
  10905. },
  10906. {
  10907. name: "Teramacro",
  10908. height: math.unit(7.77e6, "km")
  10909. },
  10910. ]
  10911. ))
  10912. characterMakers.push(() => makeCharacter(
  10913. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10914. {
  10915. front: {
  10916. height: math.unit(6 + 4 / 12, "feet"),
  10917. weight: math.unit(188, "lb"),
  10918. name: "Front",
  10919. image: {
  10920. source: "./media/characters/bmc/front.svg",
  10921. extra: 1067 / 1022,
  10922. bottom: 0.047
  10923. }
  10924. },
  10925. },
  10926. [
  10927. {
  10928. name: "Human-sized",
  10929. height: math.unit(6 + 4 / 12, "feet")
  10930. },
  10931. {
  10932. name: "Small",
  10933. height: math.unit(250, "feet")
  10934. },
  10935. {
  10936. name: "Normal",
  10937. height: math.unit(1250, "feet"),
  10938. default: true
  10939. },
  10940. {
  10941. name: "Good Day",
  10942. height: math.unit(88, "miles")
  10943. },
  10944. {
  10945. name: "Largest Measured Size",
  10946. height: math.unit(11.2e6, "lightyears")
  10947. },
  10948. ]
  10949. ))
  10950. characterMakers.push(() => makeCharacter(
  10951. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10952. {
  10953. front: {
  10954. height: math.unit(20, "feet"),
  10955. weight: math.unit(2016, "kg"),
  10956. name: "Front",
  10957. image: {
  10958. source: "./media/characters/sven-the-kaiju/front.svg",
  10959. extra: 1479 / 1449,
  10960. bottom: 0.05
  10961. }
  10962. },
  10963. },
  10964. [
  10965. {
  10966. name: "Fairy",
  10967. height: math.unit(6, "inches")
  10968. },
  10969. {
  10970. name: "Normal",
  10971. height: math.unit(20, "feet"),
  10972. default: true
  10973. },
  10974. {
  10975. name: "Rampage",
  10976. height: math.unit(200, "feet")
  10977. },
  10978. {
  10979. name: "Archfey Forest Guardian",
  10980. height: math.unit(1, "mile")
  10981. },
  10982. ]
  10983. ))
  10984. characterMakers.push(() => makeCharacter(
  10985. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10986. {
  10987. front: {
  10988. height: math.unit(4, "meters"),
  10989. weight: math.unit(2, "tons"),
  10990. name: "Front",
  10991. image: {
  10992. source: "./media/characters/marik/front.svg",
  10993. extra: 1057 / 1003,
  10994. bottom: 0.08
  10995. }
  10996. },
  10997. },
  10998. [
  10999. {
  11000. name: "Normal",
  11001. height: math.unit(4, "meters"),
  11002. default: true
  11003. },
  11004. {
  11005. name: "Macro",
  11006. height: math.unit(20, "meters")
  11007. },
  11008. {
  11009. name: "Megamacro",
  11010. height: math.unit(50, "km")
  11011. },
  11012. {
  11013. name: "Gigamacro",
  11014. height: math.unit(100, "km")
  11015. },
  11016. {
  11017. name: "Alpha Macro",
  11018. height: math.unit(7.88e7, "yottameters")
  11019. },
  11020. ]
  11021. ))
  11022. characterMakers.push(() => makeCharacter(
  11023. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11024. {
  11025. front: {
  11026. height: math.unit(6, "feet"),
  11027. weight: math.unit(110, "lb"),
  11028. name: "Front",
  11029. image: {
  11030. source: "./media/characters/mel/front.svg",
  11031. extra: 736 / 617,
  11032. bottom: 0.017
  11033. }
  11034. },
  11035. },
  11036. [
  11037. {
  11038. name: "Pico",
  11039. height: math.unit(3, "pm")
  11040. },
  11041. {
  11042. name: "Nano",
  11043. height: math.unit(3, "nm")
  11044. },
  11045. {
  11046. name: "Micro",
  11047. height: math.unit(0.3, "mm"),
  11048. default: true
  11049. },
  11050. {
  11051. name: "Micro+",
  11052. height: math.unit(3, "mm")
  11053. },
  11054. {
  11055. name: "Normal",
  11056. height: math.unit(5 + 10.5 / 12, "feet")
  11057. },
  11058. ]
  11059. ))
  11060. characterMakers.push(() => makeCharacter(
  11061. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11062. {
  11063. kaiju: {
  11064. height: math.unit(1.75, "meters"),
  11065. weight: math.unit(55, "kg"),
  11066. name: "Kaiju",
  11067. image: {
  11068. source: "./media/characters/lykonous/kaiju.svg",
  11069. extra: 1055 / 946,
  11070. bottom: 0.135
  11071. }
  11072. },
  11073. },
  11074. [
  11075. {
  11076. name: "Normal",
  11077. height: math.unit(2.5, "meters"),
  11078. default: true
  11079. },
  11080. {
  11081. name: "Kaiju Dragon",
  11082. height: math.unit(60, "meters")
  11083. },
  11084. {
  11085. name: "Mega Kaiju",
  11086. height: math.unit(120, "km")
  11087. },
  11088. {
  11089. name: "Giga Kaiju",
  11090. height: math.unit(200, "megameters")
  11091. },
  11092. {
  11093. name: "Terra Kaiju",
  11094. height: math.unit(400, "gigameters")
  11095. },
  11096. {
  11097. name: "Kaiju Dragon God",
  11098. height: math.unit(13000, "exaparsecs")
  11099. },
  11100. ]
  11101. ))
  11102. characterMakers.push(() => makeCharacter(
  11103. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11104. {
  11105. front: {
  11106. height: math.unit(6, "feet"),
  11107. weight: math.unit(150, "lb"),
  11108. name: "Front",
  11109. image: {
  11110. source: "./media/characters/blü/front.svg",
  11111. extra: 1883 / 1564,
  11112. bottom: 0.031
  11113. }
  11114. },
  11115. },
  11116. [
  11117. {
  11118. name: "Normal",
  11119. height: math.unit(13, "feet"),
  11120. default: true
  11121. },
  11122. {
  11123. name: "Big Boi",
  11124. height: math.unit(150, "meters")
  11125. },
  11126. {
  11127. name: "Mini Stomper",
  11128. height: math.unit(300, "meters")
  11129. },
  11130. {
  11131. name: "Macro",
  11132. height: math.unit(1000, "meters")
  11133. },
  11134. {
  11135. name: "Megamacro",
  11136. height: math.unit(11000, "meters")
  11137. },
  11138. {
  11139. name: "Gigamacro",
  11140. height: math.unit(11000, "km")
  11141. },
  11142. {
  11143. name: "Teramacro",
  11144. height: math.unit(420000, "km")
  11145. },
  11146. {
  11147. name: "Examacro",
  11148. height: math.unit(120, "parsecs")
  11149. },
  11150. {
  11151. name: "God Tho",
  11152. height: math.unit(98000000000, "parsecs")
  11153. },
  11154. ]
  11155. ))
  11156. characterMakers.push(() => makeCharacter(
  11157. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11158. {
  11159. taurFront: {
  11160. height: math.unit(6, "feet"),
  11161. weight: math.unit(200, "lb"),
  11162. name: "Taur (Front)",
  11163. image: {
  11164. source: "./media/characters/scales/taur-front.svg",
  11165. extra: 1,
  11166. bottom: 0.05
  11167. }
  11168. },
  11169. taurBack: {
  11170. height: math.unit(6, "feet"),
  11171. weight: math.unit(200, "lb"),
  11172. name: "Taur (Back)",
  11173. image: {
  11174. source: "./media/characters/scales/taur-back.svg",
  11175. extra: 1,
  11176. bottom: 0.08
  11177. }
  11178. },
  11179. anthro: {
  11180. height: math.unit(6 * 7 / 12, "feet"),
  11181. weight: math.unit(100, "lb"),
  11182. name: "Anthro",
  11183. image: {
  11184. source: "./media/characters/scales/anthro.svg",
  11185. extra: 1,
  11186. bottom: 0.06
  11187. }
  11188. },
  11189. },
  11190. [
  11191. {
  11192. name: "Normal",
  11193. height: math.unit(12, "feet"),
  11194. default: true
  11195. },
  11196. ]
  11197. ))
  11198. characterMakers.push(() => makeCharacter(
  11199. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11200. {
  11201. front: {
  11202. height: math.unit(6, "feet"),
  11203. weight: math.unit(150, "lb"),
  11204. name: "Front",
  11205. image: {
  11206. source: "./media/characters/koragos/front.svg",
  11207. extra: 841 / 794,
  11208. bottom: 0.035
  11209. }
  11210. },
  11211. back: {
  11212. height: math.unit(6, "feet"),
  11213. weight: math.unit(150, "lb"),
  11214. name: "Back",
  11215. image: {
  11216. source: "./media/characters/koragos/back.svg",
  11217. extra: 841 / 810,
  11218. bottom: 0.022
  11219. }
  11220. },
  11221. },
  11222. [
  11223. {
  11224. name: "Normal",
  11225. height: math.unit(6 + 11 / 12, "feet"),
  11226. default: true
  11227. },
  11228. {
  11229. name: "Macro",
  11230. height: math.unit(490, "feet")
  11231. },
  11232. {
  11233. name: "Megamacro",
  11234. height: math.unit(10, "miles")
  11235. },
  11236. {
  11237. name: "Gigamacro",
  11238. height: math.unit(50, "miles")
  11239. },
  11240. ]
  11241. ))
  11242. characterMakers.push(() => makeCharacter(
  11243. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11244. {
  11245. front: {
  11246. height: math.unit(6, "feet"),
  11247. weight: math.unit(250, "lb"),
  11248. name: "Front",
  11249. image: {
  11250. source: "./media/characters/xylrem/front.svg",
  11251. extra: 3323 / 3050,
  11252. bottom: 0.065
  11253. }
  11254. },
  11255. },
  11256. [
  11257. {
  11258. name: "Micro",
  11259. height: math.unit(4, "feet")
  11260. },
  11261. {
  11262. name: "Normal",
  11263. height: math.unit(16, "feet"),
  11264. default: true
  11265. },
  11266. {
  11267. name: "Macro",
  11268. height: math.unit(2720, "feet")
  11269. },
  11270. {
  11271. name: "Megamacro",
  11272. height: math.unit(25000, "miles")
  11273. },
  11274. ]
  11275. ))
  11276. characterMakers.push(() => makeCharacter(
  11277. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11278. {
  11279. front: {
  11280. height: math.unit(8, "feet"),
  11281. weight: math.unit(250, "kg"),
  11282. name: "Front",
  11283. image: {
  11284. source: "./media/characters/ikideru/front.svg",
  11285. extra: 930 / 870,
  11286. bottom: 0.087
  11287. }
  11288. },
  11289. back: {
  11290. height: math.unit(8, "feet"),
  11291. weight: math.unit(250, "kg"),
  11292. name: "Back",
  11293. image: {
  11294. source: "./media/characters/ikideru/back.svg",
  11295. extra: 919 / 852,
  11296. bottom: 0.055
  11297. }
  11298. },
  11299. },
  11300. [
  11301. {
  11302. name: "Rare",
  11303. height: math.unit(8, "feet"),
  11304. default: true
  11305. },
  11306. {
  11307. name: "Playful Loom",
  11308. height: math.unit(80, "feet")
  11309. },
  11310. {
  11311. name: "City Leaner",
  11312. height: math.unit(230, "feet")
  11313. },
  11314. {
  11315. name: "Megamacro",
  11316. height: math.unit(2500, "feet")
  11317. },
  11318. {
  11319. name: "Gigamacro",
  11320. height: math.unit(26400, "feet")
  11321. },
  11322. {
  11323. name: "Tectonic Shifter",
  11324. height: math.unit(1.7, "megameters")
  11325. },
  11326. {
  11327. name: "Planet Carer",
  11328. height: math.unit(21, "megameters")
  11329. },
  11330. {
  11331. name: "God",
  11332. height: math.unit(11157.22, "parsecs")
  11333. },
  11334. ]
  11335. ))
  11336. characterMakers.push(() => makeCharacter(
  11337. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11338. {
  11339. front: {
  11340. height: math.unit(6, "feet"),
  11341. weight: math.unit(120, "lb"),
  11342. name: "Front",
  11343. image: {
  11344. source: "./media/characters/neo/front.svg"
  11345. }
  11346. },
  11347. },
  11348. [
  11349. {
  11350. name: "Micro",
  11351. height: math.unit(2, "inches"),
  11352. default: true
  11353. },
  11354. {
  11355. name: "Human Size",
  11356. height: math.unit(5 + 8 / 12, "feet")
  11357. },
  11358. ]
  11359. ))
  11360. characterMakers.push(() => makeCharacter(
  11361. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11362. {
  11363. front: {
  11364. height: math.unit(13 + 10 / 12, "feet"),
  11365. weight: math.unit(5320, "lb"),
  11366. name: "Front",
  11367. image: {
  11368. source: "./media/characters/chauncey-chantz/front.svg",
  11369. extra: 1587 / 1435,
  11370. bottom: 0.02
  11371. }
  11372. },
  11373. },
  11374. [
  11375. {
  11376. name: "Normal",
  11377. height: math.unit(13 + 10 / 12, "feet"),
  11378. default: true
  11379. },
  11380. {
  11381. name: "Macro",
  11382. height: math.unit(45, "feet")
  11383. },
  11384. {
  11385. name: "Megamacro",
  11386. height: math.unit(250, "miles")
  11387. },
  11388. {
  11389. name: "Planetary",
  11390. height: math.unit(10000, "miles")
  11391. },
  11392. {
  11393. name: "Galactic",
  11394. height: math.unit(40000, "parsecs")
  11395. },
  11396. {
  11397. name: "Universal",
  11398. height: math.unit(1, "yottameter")
  11399. },
  11400. ]
  11401. ))
  11402. characterMakers.push(() => makeCharacter(
  11403. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11404. {
  11405. front: {
  11406. height: math.unit(6, "feet"),
  11407. weight: math.unit(150, "lb"),
  11408. name: "Front",
  11409. image: {
  11410. source: "./media/characters/epifox/front.svg",
  11411. extra: 1,
  11412. bottom: 0.075
  11413. }
  11414. },
  11415. },
  11416. [
  11417. {
  11418. name: "Micro",
  11419. height: math.unit(6, "inches")
  11420. },
  11421. {
  11422. name: "Normal",
  11423. height: math.unit(12, "feet"),
  11424. default: true
  11425. },
  11426. {
  11427. name: "Macro",
  11428. height: math.unit(3810, "feet")
  11429. },
  11430. {
  11431. name: "Megamacro",
  11432. height: math.unit(500, "miles")
  11433. },
  11434. ]
  11435. ))
  11436. characterMakers.push(() => makeCharacter(
  11437. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11438. {
  11439. front: {
  11440. height: math.unit(1.8796, "m"),
  11441. weight: math.unit(230, "lb"),
  11442. name: "Front",
  11443. image: {
  11444. source: "./media/characters/colin-t/front.svg",
  11445. extra: 1272 / 1193,
  11446. bottom: 0.07
  11447. }
  11448. },
  11449. },
  11450. [
  11451. {
  11452. name: "Micro",
  11453. height: math.unit(0.571, "meters")
  11454. },
  11455. {
  11456. name: "Normal",
  11457. height: math.unit(1.8796, "meters"),
  11458. default: true
  11459. },
  11460. {
  11461. name: "Tall",
  11462. height: math.unit(4, "meters")
  11463. },
  11464. {
  11465. name: "Macro",
  11466. height: math.unit(67.241, "meters")
  11467. },
  11468. {
  11469. name: "Megamacro",
  11470. height: math.unit(371.856, "meters")
  11471. },
  11472. {
  11473. name: "Planetary",
  11474. height: math.unit(12631.5689, "km")
  11475. },
  11476. ]
  11477. ))
  11478. characterMakers.push(() => makeCharacter(
  11479. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11480. {
  11481. front: {
  11482. height: math.unit(1.85, "meters"),
  11483. weight: math.unit(80, "kg"),
  11484. name: "Front",
  11485. image: {
  11486. source: "./media/characters/matvei/front.svg",
  11487. extra: 614 / 594,
  11488. bottom: 0.01
  11489. }
  11490. },
  11491. },
  11492. [
  11493. {
  11494. name: "Normal",
  11495. height: math.unit(1.85, "meters"),
  11496. default: true
  11497. },
  11498. ]
  11499. ))
  11500. characterMakers.push(() => makeCharacter(
  11501. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11502. {
  11503. front: {
  11504. height: math.unit(5 + 9 / 12, "feet"),
  11505. weight: math.unit(70, "lb"),
  11506. name: "Front",
  11507. image: {
  11508. source: "./media/characters/quincy/front.svg",
  11509. extra: 3041 / 2751
  11510. }
  11511. },
  11512. back: {
  11513. height: math.unit(5 + 9 / 12, "feet"),
  11514. weight: math.unit(70, "lb"),
  11515. name: "Back",
  11516. image: {
  11517. source: "./media/characters/quincy/back.svg",
  11518. extra: 3041 / 2751
  11519. }
  11520. },
  11521. flying: {
  11522. height: math.unit(5 + 4 / 12, "feet"),
  11523. weight: math.unit(70, "lb"),
  11524. name: "Flying",
  11525. image: {
  11526. source: "./media/characters/quincy/flying.svg",
  11527. extra: 1044 / 930
  11528. }
  11529. },
  11530. },
  11531. [
  11532. {
  11533. name: "Micro",
  11534. height: math.unit(3, "cm")
  11535. },
  11536. {
  11537. name: "Normal",
  11538. height: math.unit(5 + 9 / 12, "feet")
  11539. },
  11540. {
  11541. name: "Macro",
  11542. height: math.unit(200, "meters"),
  11543. default: true
  11544. },
  11545. {
  11546. name: "Megamacro",
  11547. height: math.unit(1000, "meters")
  11548. },
  11549. ]
  11550. ))
  11551. characterMakers.push(() => makeCharacter(
  11552. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11553. {
  11554. front: {
  11555. height: math.unit(4 + 7 / 12, "feet"),
  11556. weight: math.unit(50, "lb"),
  11557. name: "Front",
  11558. image: {
  11559. source: "./media/characters/vanrel/front.svg",
  11560. extra: 1,
  11561. bottom: 0.02
  11562. }
  11563. },
  11564. frontAlt: {
  11565. height: math.unit(4 + 7 / 12, "feet"),
  11566. weight: math.unit(50, "lb"),
  11567. name: "Front-alt",
  11568. image: {
  11569. source: "./media/characters/vanrel/front-alt.svg",
  11570. extra: 1,
  11571. bottom: 15 / 1511
  11572. }
  11573. },
  11574. elemental: {
  11575. height: math.unit(3, "feet"),
  11576. weight: math.unit(50, "lb"),
  11577. name: "Elemental",
  11578. image: {
  11579. source: "./media/characters/vanrel/elemental.svg",
  11580. extra: 192.3 / 162.8,
  11581. bottom: 1.79 / 194.17
  11582. }
  11583. },
  11584. side: {
  11585. height: math.unit(4 + 7 / 12, "feet"),
  11586. weight: math.unit(50, "lb"),
  11587. name: "Side",
  11588. image: {
  11589. source: "./media/characters/vanrel/side.svg",
  11590. extra: 1,
  11591. bottom: 0.025
  11592. }
  11593. },
  11594. tome: {
  11595. height: math.unit(1.35, "feet"),
  11596. weight: math.unit(10, "lb"),
  11597. name: "Vanrel's Tome",
  11598. rename: true,
  11599. image: {
  11600. source: "./media/characters/vanrel/tome.svg"
  11601. }
  11602. },
  11603. beans: {
  11604. height: math.unit(0.89, "feet"),
  11605. name: "Beans",
  11606. image: {
  11607. source: "./media/characters/vanrel/beans.svg"
  11608. }
  11609. },
  11610. },
  11611. [
  11612. {
  11613. name: "Normal",
  11614. height: math.unit(4 + 7 / 12, "feet"),
  11615. default: true
  11616. },
  11617. ]
  11618. ))
  11619. characterMakers.push(() => makeCharacter(
  11620. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11621. {
  11622. front: {
  11623. height: math.unit(7 + 5 / 12, "feet"),
  11624. weight: math.unit(150, "lb"),
  11625. name: "Front",
  11626. image: {
  11627. source: "./media/characters/kuiper-vanrel/front.svg",
  11628. extra: 1118 / 1068,
  11629. bottom: 0.09
  11630. }
  11631. },
  11632. foot: {
  11633. height: math.unit(0.55, "meters"),
  11634. name: "Foot",
  11635. image: {
  11636. source: "./media/characters/kuiper-vanrel/foot.svg",
  11637. }
  11638. },
  11639. battle: {
  11640. height: math.unit(6.824, "feet"),
  11641. weight: math.unit(150, "lb"),
  11642. name: "Battle",
  11643. image: {
  11644. source: "./media/characters/kuiper-vanrel/battle.svg",
  11645. extra: 1466 / 1327,
  11646. bottom: 29 / 1492.5
  11647. }
  11648. },
  11649. battleAlt: {
  11650. height: math.unit(6.824, "feet"),
  11651. weight: math.unit(150, "lb"),
  11652. name: "Battle (Alt)",
  11653. image: {
  11654. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11655. extra: 2081 / 1965,
  11656. bottom: 40 / 2121
  11657. }
  11658. },
  11659. },
  11660. [
  11661. {
  11662. name: "Normal",
  11663. height: math.unit(7 + 5 / 12, "feet"),
  11664. default: true
  11665. },
  11666. ]
  11667. ))
  11668. characterMakers.push(() => makeCharacter(
  11669. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11670. {
  11671. front: {
  11672. height: math.unit(8 + 5 / 12, "feet"),
  11673. weight: math.unit(150, "lb"),
  11674. name: "Front",
  11675. image: {
  11676. source: "./media/characters/keset-vanrel/front.svg",
  11677. extra: 1150 / 1084,
  11678. bottom: 0.05
  11679. }
  11680. },
  11681. hand: {
  11682. height: math.unit(0.6, "meters"),
  11683. name: "Hand",
  11684. image: {
  11685. source: "./media/characters/keset-vanrel/hand.svg"
  11686. }
  11687. },
  11688. foot: {
  11689. height: math.unit(0.94978, "meters"),
  11690. name: "Foot",
  11691. image: {
  11692. source: "./media/characters/keset-vanrel/foot.svg"
  11693. }
  11694. },
  11695. battle: {
  11696. height: math.unit(7.408, "feet"),
  11697. weight: math.unit(150, "lb"),
  11698. name: "Battle",
  11699. image: {
  11700. source: "./media/characters/keset-vanrel/battle.svg",
  11701. extra: 1890 / 1386,
  11702. bottom: 73.28 / 1970
  11703. }
  11704. },
  11705. },
  11706. [
  11707. {
  11708. name: "Normal",
  11709. height: math.unit(8 + 5 / 12, "feet"),
  11710. default: true
  11711. },
  11712. ]
  11713. ))
  11714. characterMakers.push(() => makeCharacter(
  11715. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11716. {
  11717. front: {
  11718. height: math.unit(6, "feet"),
  11719. weight: math.unit(150, "lb"),
  11720. name: "Front",
  11721. image: {
  11722. source: "./media/characters/neos/front.svg",
  11723. extra: 1696 / 992,
  11724. bottom: 0.14
  11725. }
  11726. },
  11727. },
  11728. [
  11729. {
  11730. name: "Normal",
  11731. height: math.unit(54, "cm"),
  11732. default: true
  11733. },
  11734. {
  11735. name: "Macro",
  11736. height: math.unit(100, "m")
  11737. },
  11738. {
  11739. name: "Megamacro",
  11740. height: math.unit(10, "km")
  11741. },
  11742. {
  11743. name: "Megamacro+",
  11744. height: math.unit(100, "km")
  11745. },
  11746. {
  11747. name: "Gigamacro",
  11748. height: math.unit(100, "Mm")
  11749. },
  11750. {
  11751. name: "Teramacro",
  11752. height: math.unit(100, "Gm")
  11753. },
  11754. {
  11755. name: "Examacro",
  11756. height: math.unit(100, "Em")
  11757. },
  11758. {
  11759. name: "Godly",
  11760. height: math.unit(10000, "Ym")
  11761. },
  11762. {
  11763. name: "Beyond Godly",
  11764. height: math.unit(25, "multiverses")
  11765. },
  11766. ]
  11767. ))
  11768. characterMakers.push(() => makeCharacter(
  11769. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11770. {
  11771. feminine: {
  11772. height: math.unit(5, "feet"),
  11773. weight: math.unit(100, "lb"),
  11774. name: "Feminine",
  11775. image: {
  11776. source: "./media/characters/sammy-mouse/feminine.svg",
  11777. extra: 2526 / 2425,
  11778. bottom: 0.123
  11779. }
  11780. },
  11781. masculine: {
  11782. height: math.unit(5, "feet"),
  11783. weight: math.unit(100, "lb"),
  11784. name: "Masculine",
  11785. image: {
  11786. source: "./media/characters/sammy-mouse/masculine.svg",
  11787. extra: 2526 / 2425,
  11788. bottom: 0.123
  11789. }
  11790. },
  11791. },
  11792. [
  11793. {
  11794. name: "Micro",
  11795. height: math.unit(5, "inches")
  11796. },
  11797. {
  11798. name: "Normal",
  11799. height: math.unit(5, "feet"),
  11800. default: true
  11801. },
  11802. {
  11803. name: "Macro",
  11804. height: math.unit(60, "feet")
  11805. },
  11806. ]
  11807. ))
  11808. characterMakers.push(() => makeCharacter(
  11809. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11810. {
  11811. front: {
  11812. height: math.unit(4, "feet"),
  11813. weight: math.unit(50, "lb"),
  11814. name: "Front",
  11815. image: {
  11816. source: "./media/characters/kole/front.svg",
  11817. extra: 1423 / 1303,
  11818. bottom: 0.025
  11819. }
  11820. },
  11821. back: {
  11822. height: math.unit(4, "feet"),
  11823. weight: math.unit(50, "lb"),
  11824. name: "Back",
  11825. image: {
  11826. source: "./media/characters/kole/back.svg",
  11827. extra: 1426 / 1280,
  11828. bottom: 0.02
  11829. }
  11830. },
  11831. },
  11832. [
  11833. {
  11834. name: "Normal",
  11835. height: math.unit(4, "feet"),
  11836. default: true
  11837. },
  11838. ]
  11839. ))
  11840. characterMakers.push(() => makeCharacter(
  11841. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11842. {
  11843. front: {
  11844. height: math.unit(2 + 6 / 12, "feet"),
  11845. weight: math.unit(20, "lb"),
  11846. name: "Front",
  11847. image: {
  11848. source: "./media/characters/rufran/front.svg",
  11849. extra: 2041 / 1839,
  11850. bottom: 0.055
  11851. }
  11852. },
  11853. back: {
  11854. height: math.unit(2 + 6 / 12, "feet"),
  11855. weight: math.unit(20, "lb"),
  11856. name: "Back",
  11857. image: {
  11858. source: "./media/characters/rufran/back.svg",
  11859. extra: 2054 / 1839,
  11860. bottom: 0.01
  11861. }
  11862. },
  11863. hand: {
  11864. height: math.unit(0.2166, "meters"),
  11865. name: "Hand",
  11866. image: {
  11867. source: "./media/characters/rufran/hand.svg"
  11868. }
  11869. },
  11870. foot: {
  11871. height: math.unit(0.185, "meters"),
  11872. name: "Foot",
  11873. image: {
  11874. source: "./media/characters/rufran/foot.svg"
  11875. }
  11876. },
  11877. },
  11878. [
  11879. {
  11880. name: "Micro",
  11881. height: math.unit(1, "inch")
  11882. },
  11883. {
  11884. name: "Normal",
  11885. height: math.unit(2 + 6 / 12, "feet"),
  11886. default: true
  11887. },
  11888. {
  11889. name: "Big",
  11890. height: math.unit(60, "feet")
  11891. },
  11892. {
  11893. name: "Macro",
  11894. height: math.unit(325, "feet")
  11895. },
  11896. ]
  11897. ))
  11898. characterMakers.push(() => makeCharacter(
  11899. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11900. {
  11901. front: {
  11902. height: math.unit(0.3, "meters"),
  11903. weight: math.unit(3.5, "kg"),
  11904. name: "Front",
  11905. image: {
  11906. source: "./media/characters/chip/front.svg",
  11907. extra: 748 / 674
  11908. }
  11909. },
  11910. },
  11911. [
  11912. {
  11913. name: "Micro",
  11914. height: math.unit(1, "inch"),
  11915. default: true
  11916. },
  11917. ]
  11918. ))
  11919. characterMakers.push(() => makeCharacter(
  11920. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11921. {
  11922. side: {
  11923. height: math.unit(2.3, "meters"),
  11924. weight: math.unit(3500, "lb"),
  11925. name: "Side",
  11926. image: {
  11927. source: "./media/characters/torvid/side.svg",
  11928. extra: 1972 / 722,
  11929. bottom: 0.035
  11930. }
  11931. },
  11932. },
  11933. [
  11934. {
  11935. name: "Normal",
  11936. height: math.unit(2.3, "meters"),
  11937. default: true
  11938. },
  11939. ]
  11940. ))
  11941. characterMakers.push(() => makeCharacter(
  11942. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11943. {
  11944. front: {
  11945. height: math.unit(2, "meters"),
  11946. weight: math.unit(150.5, "kg"),
  11947. name: "Front",
  11948. image: {
  11949. source: "./media/characters/susan/front.svg",
  11950. extra: 693 / 635,
  11951. bottom: 0.05
  11952. }
  11953. },
  11954. },
  11955. [
  11956. {
  11957. name: "Megamacro",
  11958. height: math.unit(505, "miles"),
  11959. default: true
  11960. },
  11961. ]
  11962. ))
  11963. characterMakers.push(() => makeCharacter(
  11964. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11965. {
  11966. front: {
  11967. height: math.unit(6, "feet"),
  11968. weight: math.unit(150, "lb"),
  11969. name: "Front",
  11970. image: {
  11971. source: "./media/characters/raindrops/front.svg",
  11972. extra: 2655 / 2461,
  11973. bottom: 49 / 2705
  11974. }
  11975. },
  11976. back: {
  11977. height: math.unit(6, "feet"),
  11978. weight: math.unit(150, "lb"),
  11979. name: "Back",
  11980. image: {
  11981. source: "./media/characters/raindrops/back.svg",
  11982. extra: 2574 / 2400,
  11983. bottom: 65 / 2634
  11984. }
  11985. },
  11986. },
  11987. [
  11988. {
  11989. name: "Micro",
  11990. height: math.unit(6, "inches")
  11991. },
  11992. {
  11993. name: "Normal",
  11994. height: math.unit(6 + 2 / 12, "feet")
  11995. },
  11996. {
  11997. name: "Macro",
  11998. height: math.unit(131, "feet"),
  11999. default: true
  12000. },
  12001. {
  12002. name: "Megamacro",
  12003. height: math.unit(15, "miles")
  12004. },
  12005. {
  12006. name: "Gigamacro",
  12007. height: math.unit(4000, "miles")
  12008. },
  12009. {
  12010. name: "Teramacro",
  12011. height: math.unit(315000, "miles")
  12012. },
  12013. ]
  12014. ))
  12015. characterMakers.push(() => makeCharacter(
  12016. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12017. {
  12018. front: {
  12019. height: math.unit(2.794, "meters"),
  12020. weight: math.unit(325, "kg"),
  12021. name: "Front",
  12022. image: {
  12023. source: "./media/characters/tezwa/front.svg",
  12024. extra: 2083 / 1906,
  12025. bottom: 0.031
  12026. }
  12027. },
  12028. foot: {
  12029. height: math.unit(0.687, "meters"),
  12030. name: "Foot",
  12031. image: {
  12032. source: "./media/characters/tezwa/foot.svg"
  12033. }
  12034. },
  12035. },
  12036. [
  12037. {
  12038. name: "Normal",
  12039. height: math.unit(9 + 2 / 12, "feet"),
  12040. default: true
  12041. },
  12042. ]
  12043. ))
  12044. characterMakers.push(() => makeCharacter(
  12045. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12046. {
  12047. front: {
  12048. height: math.unit(58, "feet"),
  12049. weight: math.unit(89000, "lb"),
  12050. name: "Front",
  12051. image: {
  12052. source: "./media/characters/typhus/front.svg",
  12053. extra: 816 / 800,
  12054. bottom: 0.065
  12055. }
  12056. },
  12057. },
  12058. [
  12059. {
  12060. name: "Macro",
  12061. height: math.unit(58, "feet"),
  12062. default: true
  12063. },
  12064. ]
  12065. ))
  12066. characterMakers.push(() => makeCharacter(
  12067. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12068. {
  12069. front: {
  12070. height: math.unit(12, "feet"),
  12071. weight: math.unit(6, "tonnes"),
  12072. name: "Front",
  12073. image: {
  12074. source: "./media/characters/lyra-von-wulf/front.svg",
  12075. extra: 1,
  12076. bottom: 0.10
  12077. }
  12078. },
  12079. frontMecha: {
  12080. height: math.unit(12, "feet"),
  12081. weight: math.unit(12, "tonnes"),
  12082. name: "Front (Mecha)",
  12083. image: {
  12084. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12085. extra: 1,
  12086. bottom: 0.042
  12087. }
  12088. },
  12089. maw: {
  12090. height: math.unit(2.2, "feet"),
  12091. name: "Maw",
  12092. image: {
  12093. source: "./media/characters/lyra-von-wulf/maw.svg"
  12094. }
  12095. },
  12096. },
  12097. [
  12098. {
  12099. name: "Normal",
  12100. height: math.unit(12, "feet"),
  12101. default: true
  12102. },
  12103. {
  12104. name: "Classic",
  12105. height: math.unit(50, "feet")
  12106. },
  12107. {
  12108. name: "Macro",
  12109. height: math.unit(500, "feet")
  12110. },
  12111. {
  12112. name: "Megamacro",
  12113. height: math.unit(1, "mile")
  12114. },
  12115. {
  12116. name: "Gigamacro",
  12117. height: math.unit(400, "miles")
  12118. },
  12119. {
  12120. name: "Teramacro",
  12121. height: math.unit(22000, "miles")
  12122. },
  12123. {
  12124. name: "Solarmacro",
  12125. height: math.unit(8600000, "miles")
  12126. },
  12127. {
  12128. name: "Galactic",
  12129. height: math.unit(1057000, "lightyears")
  12130. },
  12131. ]
  12132. ))
  12133. characterMakers.push(() => makeCharacter(
  12134. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12135. {
  12136. front: {
  12137. height: math.unit(6 + 10 / 12, "feet"),
  12138. weight: math.unit(150, "lb"),
  12139. name: "Front",
  12140. image: {
  12141. source: "./media/characters/dixon/front.svg",
  12142. extra: 3361 / 3209,
  12143. bottom: 0.01
  12144. }
  12145. },
  12146. },
  12147. [
  12148. {
  12149. name: "Normal",
  12150. height: math.unit(6 + 10 / 12, "feet"),
  12151. default: true
  12152. },
  12153. {
  12154. name: "Big",
  12155. height: math.unit(12, "meters")
  12156. },
  12157. {
  12158. name: "Macro",
  12159. height: math.unit(500, "meters")
  12160. },
  12161. {
  12162. name: "Megamacro",
  12163. height: math.unit(2, "km")
  12164. },
  12165. ]
  12166. ))
  12167. characterMakers.push(() => makeCharacter(
  12168. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12169. {
  12170. front: {
  12171. height: math.unit(185, "cm"),
  12172. weight: math.unit(68, "kg"),
  12173. name: "Front",
  12174. image: {
  12175. source: "./media/characters/kauko/front.svg",
  12176. extra: 1455 / 1421,
  12177. bottom: 0.03
  12178. }
  12179. },
  12180. back: {
  12181. height: math.unit(185, "cm"),
  12182. weight: math.unit(68, "kg"),
  12183. name: "Back",
  12184. image: {
  12185. source: "./media/characters/kauko/back.svg",
  12186. extra: 1455 / 1421,
  12187. bottom: 0.004
  12188. }
  12189. },
  12190. },
  12191. [
  12192. {
  12193. name: "Normal",
  12194. height: math.unit(185, "cm"),
  12195. default: true
  12196. },
  12197. ]
  12198. ))
  12199. characterMakers.push(() => makeCharacter(
  12200. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12201. {
  12202. front: {
  12203. height: math.unit(6, "feet"),
  12204. weight: math.unit(150, "kg"),
  12205. name: "Front",
  12206. image: {
  12207. source: "./media/characters/varg/front.svg",
  12208. extra: 1108 / 1018,
  12209. bottom: 0.0375
  12210. }
  12211. },
  12212. },
  12213. [
  12214. {
  12215. name: "Normal",
  12216. height: math.unit(5, "meters")
  12217. },
  12218. {
  12219. name: "Macro",
  12220. height: math.unit(200, "meters")
  12221. },
  12222. {
  12223. name: "Megamacro",
  12224. height: math.unit(20, "kilometers")
  12225. },
  12226. {
  12227. name: "True Size",
  12228. height: math.unit(211, "km"),
  12229. default: true
  12230. },
  12231. {
  12232. name: "Gigamacro",
  12233. height: math.unit(1000, "km")
  12234. },
  12235. {
  12236. name: "Gigamacro+",
  12237. height: math.unit(8000, "km")
  12238. },
  12239. {
  12240. name: "Teramacro",
  12241. height: math.unit(1000000, "km")
  12242. },
  12243. ]
  12244. ))
  12245. characterMakers.push(() => makeCharacter(
  12246. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12247. {
  12248. front: {
  12249. height: math.unit(7 + 7 / 12, "feet"),
  12250. weight: math.unit(267, "lb"),
  12251. name: "Front",
  12252. image: {
  12253. source: "./media/characters/dayza/front.svg",
  12254. extra: 1262 / 1200,
  12255. bottom: 0.035
  12256. }
  12257. },
  12258. side: {
  12259. height: math.unit(7 + 7 / 12, "feet"),
  12260. weight: math.unit(267, "lb"),
  12261. name: "Side",
  12262. image: {
  12263. source: "./media/characters/dayza/side.svg",
  12264. extra: 1295 / 1245,
  12265. bottom: 0.05
  12266. }
  12267. },
  12268. back: {
  12269. height: math.unit(7 + 7 / 12, "feet"),
  12270. weight: math.unit(267, "lb"),
  12271. name: "Back",
  12272. image: {
  12273. source: "./media/characters/dayza/back.svg",
  12274. extra: 1241 / 1170
  12275. }
  12276. },
  12277. },
  12278. [
  12279. {
  12280. name: "Normal",
  12281. height: math.unit(7 + 7 / 12, "feet"),
  12282. default: true
  12283. },
  12284. {
  12285. name: "Macro",
  12286. height: math.unit(155, "feet")
  12287. },
  12288. ]
  12289. ))
  12290. characterMakers.push(() => makeCharacter(
  12291. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12292. {
  12293. front: {
  12294. height: math.unit(6 + 5 / 12, "feet"),
  12295. weight: math.unit(160, "lb"),
  12296. name: "Front",
  12297. image: {
  12298. source: "./media/characters/xanthos/front.svg",
  12299. extra: 1,
  12300. bottom: 0.04
  12301. }
  12302. },
  12303. back: {
  12304. height: math.unit(6 + 5 / 12, "feet"),
  12305. weight: math.unit(160, "lb"),
  12306. name: "Back",
  12307. image: {
  12308. source: "./media/characters/xanthos/back.svg",
  12309. extra: 1,
  12310. bottom: 0.03
  12311. }
  12312. },
  12313. hand: {
  12314. height: math.unit(0.928, "feet"),
  12315. name: "Hand",
  12316. image: {
  12317. source: "./media/characters/xanthos/hand.svg"
  12318. }
  12319. },
  12320. foot: {
  12321. height: math.unit(1.286, "feet"),
  12322. name: "Foot",
  12323. image: {
  12324. source: "./media/characters/xanthos/foot.svg"
  12325. }
  12326. },
  12327. },
  12328. [
  12329. {
  12330. name: "Normal",
  12331. height: math.unit(6 + 5 / 12, "feet"),
  12332. default: true
  12333. },
  12334. {
  12335. name: "Normal+",
  12336. height: math.unit(6, "meters")
  12337. },
  12338. {
  12339. name: "Macro",
  12340. height: math.unit(40, "feet")
  12341. },
  12342. {
  12343. name: "Macro+",
  12344. height: math.unit(200, "meters")
  12345. },
  12346. {
  12347. name: "Megamacro",
  12348. height: math.unit(20, "km")
  12349. },
  12350. {
  12351. name: "Megamacro+",
  12352. height: math.unit(100, "km")
  12353. },
  12354. ]
  12355. ))
  12356. characterMakers.push(() => makeCharacter(
  12357. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12358. {
  12359. front: {
  12360. height: math.unit(6 + 3 / 12, "feet"),
  12361. weight: math.unit(215, "lb"),
  12362. name: "Front",
  12363. image: {
  12364. source: "./media/characters/grynn/front.svg",
  12365. extra: 4627 / 4209,
  12366. bottom: 0.047
  12367. }
  12368. },
  12369. },
  12370. [
  12371. {
  12372. name: "Micro",
  12373. height: math.unit(6, "inches")
  12374. },
  12375. {
  12376. name: "Normal",
  12377. height: math.unit(6 + 3 / 12, "feet"),
  12378. default: true
  12379. },
  12380. {
  12381. name: "Big",
  12382. height: math.unit(104, "feet")
  12383. },
  12384. {
  12385. name: "Macro",
  12386. height: math.unit(944, "feet")
  12387. },
  12388. {
  12389. name: "Macro+",
  12390. height: math.unit(9480, "feet")
  12391. },
  12392. {
  12393. name: "Megamacro",
  12394. height: math.unit(78752, "feet")
  12395. },
  12396. {
  12397. name: "Megamacro+",
  12398. height: math.unit(630128, "feet")
  12399. },
  12400. {
  12401. name: "Megamacro++",
  12402. height: math.unit(3150695, "feet")
  12403. },
  12404. ]
  12405. ))
  12406. characterMakers.push(() => makeCharacter(
  12407. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12408. {
  12409. front: {
  12410. height: math.unit(7 + 5 / 12, "feet"),
  12411. weight: math.unit(450, "lb"),
  12412. name: "Front",
  12413. image: {
  12414. source: "./media/characters/mocha-aura/front.svg",
  12415. extra: 1907 / 1817,
  12416. bottom: 0.04
  12417. }
  12418. },
  12419. back: {
  12420. height: math.unit(7 + 5 / 12, "feet"),
  12421. weight: math.unit(450, "lb"),
  12422. name: "Back",
  12423. image: {
  12424. source: "./media/characters/mocha-aura/back.svg",
  12425. extra: 1900 / 1825,
  12426. bottom: 0.045
  12427. }
  12428. },
  12429. },
  12430. [
  12431. {
  12432. name: "Nano",
  12433. height: math.unit(1, "nm")
  12434. },
  12435. {
  12436. name: "Megamicro",
  12437. height: math.unit(1, "mm")
  12438. },
  12439. {
  12440. name: "Micro",
  12441. height: math.unit(3, "inches")
  12442. },
  12443. {
  12444. name: "Normal",
  12445. height: math.unit(7 + 5 / 12, "feet"),
  12446. default: true
  12447. },
  12448. {
  12449. name: "Macro",
  12450. height: math.unit(30, "feet")
  12451. },
  12452. {
  12453. name: "Megamacro",
  12454. height: math.unit(3500, "feet")
  12455. },
  12456. {
  12457. name: "Teramacro",
  12458. height: math.unit(500000, "miles")
  12459. },
  12460. {
  12461. name: "Petamacro",
  12462. height: math.unit(50000000000000000, "parsecs")
  12463. },
  12464. ]
  12465. ))
  12466. characterMakers.push(() => makeCharacter(
  12467. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12468. {
  12469. front: {
  12470. height: math.unit(6, "feet"),
  12471. weight: math.unit(150, "lb"),
  12472. name: "Front",
  12473. image: {
  12474. source: "./media/characters/ilisha-devya/front.svg",
  12475. extra: 1,
  12476. bottom: 0.175
  12477. }
  12478. },
  12479. back: {
  12480. height: math.unit(6, "feet"),
  12481. weight: math.unit(150, "lb"),
  12482. name: "Back",
  12483. image: {
  12484. source: "./media/characters/ilisha-devya/back.svg",
  12485. extra: 1,
  12486. bottom: 0.015
  12487. }
  12488. },
  12489. },
  12490. [
  12491. {
  12492. name: "Macro",
  12493. height: math.unit(500, "feet"),
  12494. default: true
  12495. },
  12496. {
  12497. name: "Megamacro",
  12498. height: math.unit(10, "miles")
  12499. },
  12500. {
  12501. name: "Gigamacro",
  12502. height: math.unit(100000, "miles")
  12503. },
  12504. {
  12505. name: "Examacro",
  12506. height: math.unit(1e9, "lightyears")
  12507. },
  12508. {
  12509. name: "Omniversal",
  12510. height: math.unit(1e33, "lightyears")
  12511. },
  12512. {
  12513. name: "Beyond Infinite",
  12514. height: math.unit(1e100, "lightyears")
  12515. },
  12516. ]
  12517. ))
  12518. characterMakers.push(() => makeCharacter(
  12519. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12520. {
  12521. Side: {
  12522. height: math.unit(6, "feet"),
  12523. weight: math.unit(150, "lb"),
  12524. name: "Side",
  12525. image: {
  12526. source: "./media/characters/mira/side.svg",
  12527. extra: 900 / 799,
  12528. bottom: 0.02
  12529. }
  12530. },
  12531. },
  12532. [
  12533. {
  12534. name: "Human Size",
  12535. height: math.unit(6, "feet")
  12536. },
  12537. {
  12538. name: "Macro",
  12539. height: math.unit(100, "feet"),
  12540. default: true
  12541. },
  12542. {
  12543. name: "Megamacro",
  12544. height: math.unit(10, "miles")
  12545. },
  12546. {
  12547. name: "Gigamacro",
  12548. height: math.unit(25000, "miles")
  12549. },
  12550. {
  12551. name: "Teramacro",
  12552. height: math.unit(300, "AU")
  12553. },
  12554. {
  12555. name: "Full Size",
  12556. height: math.unit(4.5e10, "lightyears")
  12557. },
  12558. ]
  12559. ))
  12560. characterMakers.push(() => makeCharacter(
  12561. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12562. {
  12563. front: {
  12564. height: math.unit(6, "feet"),
  12565. weight: math.unit(150, "lb"),
  12566. name: "Front",
  12567. image: {
  12568. source: "./media/characters/holly/front.svg",
  12569. extra: 639 / 606
  12570. }
  12571. },
  12572. back: {
  12573. height: math.unit(6, "feet"),
  12574. weight: math.unit(150, "lb"),
  12575. name: "Back",
  12576. image: {
  12577. source: "./media/characters/holly/back.svg",
  12578. extra: 623 / 598
  12579. }
  12580. },
  12581. frontWorking: {
  12582. height: math.unit(6, "feet"),
  12583. weight: math.unit(150, "lb"),
  12584. name: "Front (Working)",
  12585. image: {
  12586. source: "./media/characters/holly/front-working.svg",
  12587. extra: 607 / 577,
  12588. bottom: 0.048
  12589. }
  12590. },
  12591. },
  12592. [
  12593. {
  12594. name: "Normal",
  12595. height: math.unit(12 + 3 / 12, "feet"),
  12596. default: true
  12597. },
  12598. ]
  12599. ))
  12600. characterMakers.push(() => makeCharacter(
  12601. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12602. {
  12603. front: {
  12604. height: math.unit(6, "feet"),
  12605. weight: math.unit(150, "lb"),
  12606. name: "Front",
  12607. image: {
  12608. source: "./media/characters/porter/front.svg",
  12609. extra: 1,
  12610. bottom: 0.01
  12611. }
  12612. },
  12613. frontRobes: {
  12614. height: math.unit(6, "feet"),
  12615. weight: math.unit(150, "lb"),
  12616. name: "Front (Robes)",
  12617. image: {
  12618. source: "./media/characters/porter/front-robes.svg",
  12619. extra: 1.01,
  12620. bottom: 0.01
  12621. }
  12622. },
  12623. },
  12624. [
  12625. {
  12626. name: "Normal",
  12627. height: math.unit(11 + 9 / 12, "feet"),
  12628. default: true
  12629. },
  12630. ]
  12631. ))
  12632. characterMakers.push(() => makeCharacter(
  12633. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12634. {
  12635. legendary: {
  12636. height: math.unit(6, "feet"),
  12637. weight: math.unit(150, "lb"),
  12638. name: "Legendary",
  12639. image: {
  12640. source: "./media/characters/lucy/legendary.svg",
  12641. extra: 1355 / 1100,
  12642. bottom: 0.045
  12643. }
  12644. },
  12645. },
  12646. [
  12647. {
  12648. name: "Legendary",
  12649. height: math.unit(86882 * 2, "miles"),
  12650. default: true
  12651. },
  12652. ]
  12653. ))
  12654. characterMakers.push(() => makeCharacter(
  12655. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12656. {
  12657. front: {
  12658. height: math.unit(6, "feet"),
  12659. weight: math.unit(150, "lb"),
  12660. name: "Front",
  12661. image: {
  12662. source: "./media/characters/drusilla/front.svg",
  12663. extra: 678 / 635,
  12664. bottom: 0.03
  12665. }
  12666. },
  12667. back: {
  12668. height: math.unit(6, "feet"),
  12669. weight: math.unit(150, "lb"),
  12670. name: "Back",
  12671. image: {
  12672. source: "./media/characters/drusilla/back.svg",
  12673. extra: 678 / 635,
  12674. bottom: 0.005
  12675. }
  12676. },
  12677. },
  12678. [
  12679. {
  12680. name: "Macro",
  12681. height: math.unit(100, "feet")
  12682. },
  12683. {
  12684. name: "Canon Height",
  12685. height: math.unit(2000, "feet"),
  12686. default: true
  12687. },
  12688. ]
  12689. ))
  12690. characterMakers.push(() => makeCharacter(
  12691. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12692. {
  12693. front: {
  12694. height: math.unit(6, "feet"),
  12695. weight: math.unit(180, "lb"),
  12696. name: "Front",
  12697. image: {
  12698. source: "./media/characters/renard-thatch/front.svg",
  12699. extra: 2411 / 2275,
  12700. bottom: 0.01
  12701. }
  12702. },
  12703. frontPosing: {
  12704. height: math.unit(6, "feet"),
  12705. weight: math.unit(180, "lb"),
  12706. name: "Front (Posing)",
  12707. image: {
  12708. source: "./media/characters/renard-thatch/front-posing.svg",
  12709. extra: 2381 / 2261,
  12710. bottom: 0.01
  12711. }
  12712. },
  12713. back: {
  12714. height: math.unit(6, "feet"),
  12715. weight: math.unit(180, "lb"),
  12716. name: "Back",
  12717. image: {
  12718. source: "./media/characters/renard-thatch/back.svg",
  12719. extra: 2428 / 2288
  12720. }
  12721. },
  12722. },
  12723. [
  12724. {
  12725. name: "Micro",
  12726. height: math.unit(3, "inches")
  12727. },
  12728. {
  12729. name: "Default",
  12730. height: math.unit(6, "feet"),
  12731. default: true
  12732. },
  12733. {
  12734. name: "Macro",
  12735. height: math.unit(75, "feet")
  12736. },
  12737. ]
  12738. ))
  12739. characterMakers.push(() => makeCharacter(
  12740. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12741. {
  12742. front: {
  12743. height: math.unit(1450, "feet"),
  12744. weight: math.unit(1.21e6, "tons"),
  12745. name: "Front",
  12746. image: {
  12747. source: "./media/characters/sekvra/front.svg",
  12748. extra: 1,
  12749. bottom: 0.03
  12750. }
  12751. },
  12752. frontClothed: {
  12753. height: math.unit(1450, "feet"),
  12754. weight: math.unit(1.21e6, "tons"),
  12755. name: "Front (Clothed)",
  12756. image: {
  12757. source: "./media/characters/sekvra/front-clothed.svg",
  12758. extra: 1,
  12759. bottom: 0.03
  12760. }
  12761. },
  12762. side: {
  12763. height: math.unit(1450, "feet"),
  12764. weight: math.unit(1.21e6, "tons"),
  12765. name: "Side",
  12766. image: {
  12767. source: "./media/characters/sekvra/side.svg",
  12768. extra: 1,
  12769. bottom: 0.025
  12770. }
  12771. },
  12772. back: {
  12773. height: math.unit(1450, "feet"),
  12774. weight: math.unit(1.21e6, "tons"),
  12775. name: "Back",
  12776. image: {
  12777. source: "./media/characters/sekvra/back.svg",
  12778. extra: 1,
  12779. bottom: 0.005
  12780. }
  12781. },
  12782. },
  12783. [
  12784. {
  12785. name: "Macro",
  12786. height: math.unit(1450, "feet"),
  12787. default: true
  12788. },
  12789. {
  12790. name: "Megamacro",
  12791. height: math.unit(15000, "feet")
  12792. },
  12793. ]
  12794. ))
  12795. characterMakers.push(() => makeCharacter(
  12796. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12797. {
  12798. front: {
  12799. height: math.unit(6, "feet"),
  12800. weight: math.unit(150, "lb"),
  12801. name: "Front",
  12802. image: {
  12803. source: "./media/characters/carmine/front.svg",
  12804. extra: 1,
  12805. bottom: 0.035
  12806. }
  12807. },
  12808. frontArmor: {
  12809. height: math.unit(6, "feet"),
  12810. weight: math.unit(150, "lb"),
  12811. name: "Front (Armor)",
  12812. image: {
  12813. source: "./media/characters/carmine/front-armor.svg",
  12814. extra: 1,
  12815. bottom: 0.035
  12816. }
  12817. },
  12818. },
  12819. [
  12820. {
  12821. name: "Large",
  12822. height: math.unit(1, "mile")
  12823. },
  12824. {
  12825. name: "Huge",
  12826. height: math.unit(40, "miles"),
  12827. default: true
  12828. },
  12829. {
  12830. name: "Colossal",
  12831. height: math.unit(2500, "miles")
  12832. },
  12833. ]
  12834. ))
  12835. characterMakers.push(() => makeCharacter(
  12836. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12837. {
  12838. front: {
  12839. height: math.unit(6, "feet"),
  12840. weight: math.unit(150, "lb"),
  12841. name: "Front",
  12842. image: {
  12843. source: "./media/characters/elyssia/front.svg",
  12844. extra: 2201 / 2035,
  12845. bottom: 0.05
  12846. }
  12847. },
  12848. frontClothed: {
  12849. height: math.unit(6, "feet"),
  12850. weight: math.unit(150, "lb"),
  12851. name: "Front (Clothed)",
  12852. image: {
  12853. source: "./media/characters/elyssia/front-clothed.svg",
  12854. extra: 2201 / 2035,
  12855. bottom: 0.05
  12856. }
  12857. },
  12858. back: {
  12859. height: math.unit(6, "feet"),
  12860. weight: math.unit(150, "lb"),
  12861. name: "Back",
  12862. image: {
  12863. source: "./media/characters/elyssia/back.svg",
  12864. extra: 2201 / 2035,
  12865. bottom: 0.013
  12866. }
  12867. },
  12868. },
  12869. [
  12870. {
  12871. name: "Smaller",
  12872. height: math.unit(150, "feet")
  12873. },
  12874. {
  12875. name: "Standard",
  12876. height: math.unit(1400, "feet"),
  12877. default: true
  12878. },
  12879. {
  12880. name: "Distracted",
  12881. height: math.unit(15000, "feet")
  12882. },
  12883. ]
  12884. ))
  12885. characterMakers.push(() => makeCharacter(
  12886. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12887. {
  12888. front: {
  12889. height: math.unit(7 + 4 / 12, "feet"),
  12890. weight: math.unit(500, "lb"),
  12891. name: "Front",
  12892. image: {
  12893. source: "./media/characters/geno-maxwell/front.svg",
  12894. extra: 2207 / 2040,
  12895. bottom: 0.015
  12896. }
  12897. },
  12898. },
  12899. [
  12900. {
  12901. name: "Micro",
  12902. height: math.unit(3, "inches")
  12903. },
  12904. {
  12905. name: "Normal",
  12906. height: math.unit(7 + 4 / 12, "feet"),
  12907. default: true
  12908. },
  12909. {
  12910. name: "Macro",
  12911. height: math.unit(220, "feet")
  12912. },
  12913. {
  12914. name: "Megamacro",
  12915. height: math.unit(11, "miles")
  12916. },
  12917. ]
  12918. ))
  12919. characterMakers.push(() => makeCharacter(
  12920. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12921. {
  12922. front: {
  12923. height: math.unit(7 + 4 / 12, "feet"),
  12924. weight: math.unit(500, "lb"),
  12925. name: "Front",
  12926. image: {
  12927. source: "./media/characters/regena-maxwell/front.svg",
  12928. extra: 3115 / 2770,
  12929. bottom: 0.02
  12930. }
  12931. },
  12932. },
  12933. [
  12934. {
  12935. name: "Normal",
  12936. height: math.unit(7 + 4 / 12, "feet"),
  12937. default: true
  12938. },
  12939. {
  12940. name: "Macro",
  12941. height: math.unit(220, "feet")
  12942. },
  12943. {
  12944. name: "Megamacro",
  12945. height: math.unit(11, "miles")
  12946. },
  12947. ]
  12948. ))
  12949. characterMakers.push(() => makeCharacter(
  12950. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12951. {
  12952. front: {
  12953. height: math.unit(6, "feet"),
  12954. weight: math.unit(150, "lb"),
  12955. name: "Front",
  12956. image: {
  12957. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12958. extra: 860 / 690,
  12959. bottom: 0.03
  12960. }
  12961. },
  12962. },
  12963. [
  12964. {
  12965. name: "Normal",
  12966. height: math.unit(1.7, "meters"),
  12967. default: true
  12968. },
  12969. ]
  12970. ))
  12971. characterMakers.push(() => makeCharacter(
  12972. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12973. {
  12974. front: {
  12975. height: math.unit(6, "feet"),
  12976. weight: math.unit(150, "lb"),
  12977. name: "Front",
  12978. image: {
  12979. source: "./media/characters/quilly/front.svg",
  12980. extra: 890 / 776
  12981. }
  12982. },
  12983. },
  12984. [
  12985. {
  12986. name: "Gigamacro",
  12987. height: math.unit(404090, "miles"),
  12988. default: true
  12989. },
  12990. ]
  12991. ))
  12992. characterMakers.push(() => makeCharacter(
  12993. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12994. {
  12995. front: {
  12996. height: math.unit(7 + 8 / 12, "feet"),
  12997. weight: math.unit(350, "lb"),
  12998. name: "Front",
  12999. image: {
  13000. source: "./media/characters/tempest/front.svg",
  13001. extra: 1175 / 1086,
  13002. bottom: 0.02
  13003. }
  13004. },
  13005. },
  13006. [
  13007. {
  13008. name: "Normal",
  13009. height: math.unit(7 + 8 / 12, "feet"),
  13010. default: true
  13011. },
  13012. ]
  13013. ))
  13014. characterMakers.push(() => makeCharacter(
  13015. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13016. {
  13017. side: {
  13018. height: math.unit(4 + 5 / 12, "feet"),
  13019. weight: math.unit(80, "lb"),
  13020. name: "Side",
  13021. image: {
  13022. source: "./media/characters/rodger/side.svg",
  13023. extra: 1235 / 1118
  13024. }
  13025. },
  13026. },
  13027. [
  13028. {
  13029. name: "Micro",
  13030. height: math.unit(1, "inch")
  13031. },
  13032. {
  13033. name: "Normal",
  13034. height: math.unit(4 + 5 / 12, "feet"),
  13035. default: true
  13036. },
  13037. {
  13038. name: "Macro",
  13039. height: math.unit(120, "feet")
  13040. },
  13041. ]
  13042. ))
  13043. characterMakers.push(() => makeCharacter(
  13044. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13045. {
  13046. front: {
  13047. height: math.unit(6, "feet"),
  13048. weight: math.unit(150, "lb"),
  13049. name: "Front",
  13050. image: {
  13051. source: "./media/characters/danyel/front.svg",
  13052. extra: 1185 / 1123,
  13053. bottom: 0.05
  13054. }
  13055. },
  13056. },
  13057. [
  13058. {
  13059. name: "Shrunken",
  13060. height: math.unit(0.5, "mm")
  13061. },
  13062. {
  13063. name: "Micro",
  13064. height: math.unit(1, "mm"),
  13065. default: true
  13066. },
  13067. {
  13068. name: "Upsized",
  13069. height: math.unit(5 + 5 / 12, "feet")
  13070. },
  13071. ]
  13072. ))
  13073. characterMakers.push(() => makeCharacter(
  13074. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13075. {
  13076. front: {
  13077. height: math.unit(5 + 6 / 12, "feet"),
  13078. weight: math.unit(200, "lb"),
  13079. name: "Front",
  13080. image: {
  13081. source: "./media/characters/vivian-bijoux/front.svg",
  13082. extra: 1,
  13083. bottom: 0.072
  13084. }
  13085. },
  13086. },
  13087. [
  13088. {
  13089. name: "Normal",
  13090. height: math.unit(5 + 6 / 12, "feet"),
  13091. default: true
  13092. },
  13093. {
  13094. name: "Bad Dream",
  13095. height: math.unit(500, "feet")
  13096. },
  13097. {
  13098. name: "Nightmare",
  13099. height: math.unit(500, "miles")
  13100. },
  13101. ]
  13102. ))
  13103. characterMakers.push(() => makeCharacter(
  13104. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13105. {
  13106. front: {
  13107. height: math.unit(6 + 1 / 12, "feet"),
  13108. weight: math.unit(260, "lb"),
  13109. name: "Front",
  13110. image: {
  13111. source: "./media/characters/zeta/front.svg",
  13112. extra: 1968 / 1889,
  13113. bottom: 0.06
  13114. }
  13115. },
  13116. back: {
  13117. height: math.unit(6 + 1 / 12, "feet"),
  13118. weight: math.unit(260, "lb"),
  13119. name: "Back",
  13120. image: {
  13121. source: "./media/characters/zeta/back.svg",
  13122. extra: 1944 / 1858,
  13123. bottom: 0.03
  13124. }
  13125. },
  13126. hand: {
  13127. height: math.unit(1.112, "feet"),
  13128. name: "Hand",
  13129. image: {
  13130. source: "./media/characters/zeta/hand.svg"
  13131. }
  13132. },
  13133. foot: {
  13134. height: math.unit(1.48, "feet"),
  13135. name: "Foot",
  13136. image: {
  13137. source: "./media/characters/zeta/foot.svg"
  13138. }
  13139. },
  13140. },
  13141. [
  13142. {
  13143. name: "Micro",
  13144. height: math.unit(6, "inches")
  13145. },
  13146. {
  13147. name: "Normal",
  13148. height: math.unit(6 + 1 / 12, "feet"),
  13149. default: true
  13150. },
  13151. {
  13152. name: "Macro",
  13153. height: math.unit(20, "feet")
  13154. },
  13155. ]
  13156. ))
  13157. characterMakers.push(() => makeCharacter(
  13158. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13159. {
  13160. front: {
  13161. height: math.unit(6, "feet"),
  13162. weight: math.unit(150, "lb"),
  13163. name: "Front",
  13164. image: {
  13165. source: "./media/characters/jamie-larsen/front.svg",
  13166. extra: 962 / 933,
  13167. bottom: 0.02
  13168. }
  13169. },
  13170. back: {
  13171. height: math.unit(6, "feet"),
  13172. weight: math.unit(150, "lb"),
  13173. name: "Back",
  13174. image: {
  13175. source: "./media/characters/jamie-larsen/back.svg",
  13176. extra: 997 / 946
  13177. }
  13178. },
  13179. },
  13180. [
  13181. {
  13182. name: "Macro",
  13183. height: math.unit(28 + 7 / 12, "feet"),
  13184. default: true
  13185. },
  13186. {
  13187. name: "Macro+",
  13188. height: math.unit(180, "feet")
  13189. },
  13190. {
  13191. name: "Megamacro",
  13192. height: math.unit(10, "miles")
  13193. },
  13194. {
  13195. name: "Gigamacro",
  13196. height: math.unit(200000, "miles")
  13197. },
  13198. ]
  13199. ))
  13200. characterMakers.push(() => makeCharacter(
  13201. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13202. {
  13203. front: {
  13204. height: math.unit(6, "feet"),
  13205. weight: math.unit(120, "lb"),
  13206. name: "Front",
  13207. image: {
  13208. source: "./media/characters/vance/front.svg",
  13209. extra: 1980 / 1890,
  13210. bottom: 0.09
  13211. }
  13212. },
  13213. back: {
  13214. height: math.unit(6, "feet"),
  13215. weight: math.unit(120, "lb"),
  13216. name: "Back",
  13217. image: {
  13218. source: "./media/characters/vance/back.svg",
  13219. extra: 2081 / 1994,
  13220. bottom: 0.014
  13221. }
  13222. },
  13223. hand: {
  13224. height: math.unit(0.88, "feet"),
  13225. name: "Hand",
  13226. image: {
  13227. source: "./media/characters/vance/hand.svg"
  13228. }
  13229. },
  13230. foot: {
  13231. height: math.unit(0.64, "feet"),
  13232. name: "Foot",
  13233. image: {
  13234. source: "./media/characters/vance/foot.svg"
  13235. }
  13236. },
  13237. },
  13238. [
  13239. {
  13240. name: "Small",
  13241. height: math.unit(90, "feet"),
  13242. default: true
  13243. },
  13244. {
  13245. name: "Macro",
  13246. height: math.unit(100, "meters")
  13247. },
  13248. {
  13249. name: "Megamacro",
  13250. height: math.unit(15, "miles")
  13251. },
  13252. ]
  13253. ))
  13254. characterMakers.push(() => makeCharacter(
  13255. { name: "Xochitl", species: ["jaguar"], 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/xochitl/front.svg",
  13263. extra: 2297 / 2261,
  13264. bottom: 0.065
  13265. }
  13266. },
  13267. back: {
  13268. height: math.unit(6, "feet"),
  13269. weight: math.unit(180, "lb"),
  13270. name: "Back",
  13271. image: {
  13272. source: "./media/characters/xochitl/back.svg",
  13273. extra: 2386 / 2354,
  13274. bottom: 0.01
  13275. }
  13276. },
  13277. foot: {
  13278. height: math.unit(6 / 5 * 1.15, "feet"),
  13279. weight: math.unit(150, "lb"),
  13280. name: "Foot",
  13281. image: {
  13282. source: "./media/characters/xochitl/foot.svg"
  13283. }
  13284. },
  13285. },
  13286. [
  13287. {
  13288. name: "Macro",
  13289. height: math.unit(80, "feet")
  13290. },
  13291. {
  13292. name: "Macro+",
  13293. height: math.unit(400, "feet"),
  13294. default: true
  13295. },
  13296. {
  13297. name: "Gigamacro",
  13298. height: math.unit(80000, "miles")
  13299. },
  13300. {
  13301. name: "Gigamacro+",
  13302. height: math.unit(400000, "miles")
  13303. },
  13304. {
  13305. name: "Teramacro",
  13306. height: math.unit(300, "AU")
  13307. },
  13308. ]
  13309. ))
  13310. characterMakers.push(() => makeCharacter(
  13311. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13312. {
  13313. front: {
  13314. height: math.unit(6, "feet"),
  13315. weight: math.unit(150, "lb"),
  13316. name: "Front",
  13317. image: {
  13318. source: "./media/characters/vincent/front.svg",
  13319. extra: 1130 / 1080,
  13320. bottom: 0.055
  13321. }
  13322. },
  13323. beak: {
  13324. height: math.unit(6 * 0.1, "feet"),
  13325. name: "Beak",
  13326. image: {
  13327. source: "./media/characters/vincent/beak.svg"
  13328. }
  13329. },
  13330. hand: {
  13331. height: math.unit(6 * 0.85, "feet"),
  13332. weight: math.unit(150, "lb"),
  13333. name: "Hand",
  13334. image: {
  13335. source: "./media/characters/vincent/hand.svg"
  13336. }
  13337. },
  13338. foot: {
  13339. height: math.unit(6 * 0.19, "feet"),
  13340. weight: math.unit(150, "lb"),
  13341. name: "Foot",
  13342. image: {
  13343. source: "./media/characters/vincent/foot.svg"
  13344. }
  13345. },
  13346. },
  13347. [
  13348. {
  13349. name: "Base",
  13350. height: math.unit(6 + 5 / 12, "feet"),
  13351. default: true
  13352. },
  13353. {
  13354. name: "Macro",
  13355. height: math.unit(300, "feet")
  13356. },
  13357. {
  13358. name: "Megamacro",
  13359. height: math.unit(2, "miles")
  13360. },
  13361. {
  13362. name: "Gigamacro",
  13363. height: math.unit(1000, "miles")
  13364. },
  13365. ]
  13366. ))
  13367. characterMakers.push(() => makeCharacter(
  13368. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13369. {
  13370. front: {
  13371. height: math.unit(6 + 2 / 12, "feet"),
  13372. weight: math.unit(265, "lb"),
  13373. name: "Front",
  13374. image: {
  13375. source: "./media/characters/jay/front.svg",
  13376. extra: 1510 / 1430,
  13377. bottom: 0.042
  13378. }
  13379. },
  13380. back: {
  13381. height: math.unit(6 + 2 / 12, "feet"),
  13382. weight: math.unit(265, "lb"),
  13383. name: "Back",
  13384. image: {
  13385. source: "./media/characters/jay/back.svg",
  13386. extra: 1510 / 1430,
  13387. bottom: 0.025
  13388. }
  13389. },
  13390. clothed: {
  13391. height: math.unit(6 + 2 / 12, "feet"),
  13392. weight: math.unit(265, "lb"),
  13393. name: "Front (Clothed)",
  13394. image: {
  13395. source: "./media/characters/jay/clothed.svg",
  13396. extra: 744 / 699,
  13397. bottom: 0.043
  13398. }
  13399. },
  13400. head: {
  13401. height: math.unit(1.772, "feet"),
  13402. name: "Head",
  13403. image: {
  13404. source: "./media/characters/jay/head.svg"
  13405. }
  13406. },
  13407. sizeRay: {
  13408. height: math.unit(1.331, "feet"),
  13409. name: "Size Ray",
  13410. image: {
  13411. source: "./media/characters/jay/size-ray.svg"
  13412. }
  13413. },
  13414. },
  13415. [
  13416. {
  13417. name: "Micro",
  13418. height: math.unit(1, "inch")
  13419. },
  13420. {
  13421. name: "Normal",
  13422. height: math.unit(6 + 2 / 12, "feet"),
  13423. default: true
  13424. },
  13425. {
  13426. name: "Macro",
  13427. height: math.unit(1, "mile")
  13428. },
  13429. {
  13430. name: "Megamacro",
  13431. height: math.unit(100, "miles")
  13432. },
  13433. ]
  13434. ))
  13435. characterMakers.push(() => makeCharacter(
  13436. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13437. {
  13438. front: {
  13439. height: math.unit(2, "meters"),
  13440. weight: math.unit(500, "kg"),
  13441. name: "Front",
  13442. image: {
  13443. source: "./media/characters/coatl/front.svg",
  13444. extra: 3948 / 3500,
  13445. bottom: 0.082
  13446. }
  13447. },
  13448. },
  13449. [
  13450. {
  13451. name: "Normal",
  13452. height: math.unit(4, "meters")
  13453. },
  13454. {
  13455. name: "Macro",
  13456. height: math.unit(100, "meters"),
  13457. default: true
  13458. },
  13459. {
  13460. name: "Macro+",
  13461. height: math.unit(300, "meters")
  13462. },
  13463. {
  13464. name: "Megamacro",
  13465. height: math.unit(3, "gigameters")
  13466. },
  13467. {
  13468. name: "Megamacro+",
  13469. height: math.unit(300, "terameters")
  13470. },
  13471. {
  13472. name: "Megamacro++",
  13473. height: math.unit(3, "lightyears")
  13474. },
  13475. ]
  13476. ))
  13477. characterMakers.push(() => makeCharacter(
  13478. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13479. {
  13480. front: {
  13481. height: math.unit(6, "feet"),
  13482. weight: math.unit(50, "kg"),
  13483. name: "front",
  13484. image: {
  13485. source: "./media/characters/shiroryu/front.svg",
  13486. extra: 1990 / 1935
  13487. }
  13488. },
  13489. },
  13490. [
  13491. {
  13492. name: "Mortal Mingling",
  13493. height: math.unit(3, "meters")
  13494. },
  13495. {
  13496. name: "Kaiju-ish",
  13497. height: math.unit(250, "meters")
  13498. },
  13499. {
  13500. name: "Somewhat Godly",
  13501. height: math.unit(400, "km"),
  13502. default: true
  13503. },
  13504. {
  13505. name: "Planetary",
  13506. height: math.unit(300, "megameters")
  13507. },
  13508. {
  13509. name: "Galaxy-dwarfing",
  13510. height: math.unit(450, "kiloparsecs")
  13511. },
  13512. {
  13513. name: "Universe Eater",
  13514. height: math.unit(150, "gigaparsecs")
  13515. },
  13516. {
  13517. name: "Almost Immeasurable",
  13518. height: math.unit(1.3e266, "yottaparsecs")
  13519. },
  13520. ]
  13521. ))
  13522. characterMakers.push(() => makeCharacter(
  13523. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13524. {
  13525. front: {
  13526. height: math.unit(6, "feet"),
  13527. weight: math.unit(150, "lb"),
  13528. name: "Front",
  13529. image: {
  13530. source: "./media/characters/umeko/front.svg",
  13531. extra: 1,
  13532. bottom: 0.019
  13533. }
  13534. },
  13535. frontArmored: {
  13536. height: math.unit(6, "feet"),
  13537. weight: math.unit(150, "lb"),
  13538. name: "Front (Armored)",
  13539. image: {
  13540. source: "./media/characters/umeko/front-armored.svg",
  13541. extra: 1,
  13542. bottom: 0.021
  13543. }
  13544. },
  13545. },
  13546. [
  13547. {
  13548. name: "Macro",
  13549. height: math.unit(220, "feet"),
  13550. default: true
  13551. },
  13552. {
  13553. name: "Guardian Dragon",
  13554. height: math.unit(50, "miles")
  13555. },
  13556. {
  13557. name: "Cosmic",
  13558. height: math.unit(800000, "miles")
  13559. },
  13560. ]
  13561. ))
  13562. characterMakers.push(() => makeCharacter(
  13563. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13564. {
  13565. front: {
  13566. height: math.unit(6, "feet"),
  13567. weight: math.unit(150, "lb"),
  13568. name: "Front",
  13569. image: {
  13570. source: "./media/characters/cassidy/front.svg",
  13571. extra: 1,
  13572. bottom: 0.043
  13573. }
  13574. },
  13575. },
  13576. [
  13577. {
  13578. name: "Canon Height",
  13579. height: math.unit(120, "feet"),
  13580. default: true
  13581. },
  13582. {
  13583. name: "Macro+",
  13584. height: math.unit(400, "feet")
  13585. },
  13586. {
  13587. name: "Macro++",
  13588. height: math.unit(4000, "feet")
  13589. },
  13590. {
  13591. name: "Megamacro",
  13592. height: math.unit(3, "miles")
  13593. },
  13594. ]
  13595. ))
  13596. characterMakers.push(() => makeCharacter(
  13597. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13598. {
  13599. front: {
  13600. height: math.unit(6, "feet"),
  13601. weight: math.unit(150, "lb"),
  13602. name: "Front",
  13603. image: {
  13604. source: "./media/characters/isaac/front.svg",
  13605. extra: 896 / 815,
  13606. bottom: 0.11
  13607. }
  13608. },
  13609. },
  13610. [
  13611. {
  13612. name: "Human Size",
  13613. height: math.unit(8, "feet"),
  13614. default: true
  13615. },
  13616. {
  13617. name: "Macro",
  13618. height: math.unit(400, "feet")
  13619. },
  13620. {
  13621. name: "Megamacro",
  13622. height: math.unit(50, "miles")
  13623. },
  13624. {
  13625. name: "Canon Height",
  13626. height: math.unit(200, "AU")
  13627. },
  13628. ]
  13629. ))
  13630. characterMakers.push(() => makeCharacter(
  13631. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13632. {
  13633. front: {
  13634. height: math.unit(6, "feet"),
  13635. weight: math.unit(72, "kg"),
  13636. name: "Front",
  13637. image: {
  13638. source: "./media/characters/sleekit/front.svg",
  13639. extra: 4693 / 4487,
  13640. bottom: 0.012
  13641. }
  13642. },
  13643. },
  13644. [
  13645. {
  13646. name: "Minimum Height",
  13647. height: math.unit(10, "meters")
  13648. },
  13649. {
  13650. name: "Smaller",
  13651. height: math.unit(25, "meters")
  13652. },
  13653. {
  13654. name: "Larger",
  13655. height: math.unit(38, "meters"),
  13656. default: true
  13657. },
  13658. {
  13659. name: "Maximum height",
  13660. height: math.unit(100, "meters")
  13661. },
  13662. ]
  13663. ))
  13664. characterMakers.push(() => makeCharacter(
  13665. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13666. {
  13667. front: {
  13668. height: math.unit(6, "feet"),
  13669. weight: math.unit(150, "lb"),
  13670. name: "Front",
  13671. image: {
  13672. source: "./media/characters/nillia/front.svg",
  13673. extra: 2195 / 2037,
  13674. bottom: 0.005
  13675. }
  13676. },
  13677. back: {
  13678. height: math.unit(6, "feet"),
  13679. weight: math.unit(150, "lb"),
  13680. name: "Back",
  13681. image: {
  13682. source: "./media/characters/nillia/back.svg",
  13683. extra: 2195 / 2037,
  13684. bottom: 0.005
  13685. }
  13686. },
  13687. },
  13688. [
  13689. {
  13690. name: "Canon Height",
  13691. height: math.unit(489, "feet"),
  13692. default: true
  13693. }
  13694. ]
  13695. ))
  13696. characterMakers.push(() => makeCharacter(
  13697. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13698. {
  13699. front: {
  13700. height: math.unit(6, "feet"),
  13701. weight: math.unit(150, "lb"),
  13702. name: "Front",
  13703. image: {
  13704. source: "./media/characters/mesmyriza/front.svg",
  13705. extra: 2067 / 1784,
  13706. bottom: 0.035
  13707. }
  13708. },
  13709. foot: {
  13710. height: math.unit(6 / (250 / 35), "feet"),
  13711. name: "Foot",
  13712. image: {
  13713. source: "./media/characters/mesmyriza/foot.svg"
  13714. }
  13715. },
  13716. },
  13717. [
  13718. {
  13719. name: "Macro",
  13720. height: math.unit(457, "meters"),
  13721. default: true
  13722. },
  13723. {
  13724. name: "Megamacro",
  13725. height: math.unit(8, "megameters")
  13726. },
  13727. ]
  13728. ))
  13729. characterMakers.push(() => makeCharacter(
  13730. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13731. {
  13732. front: {
  13733. height: math.unit(6, "feet"),
  13734. weight: math.unit(250, "lb"),
  13735. name: "Front",
  13736. image: {
  13737. source: "./media/characters/saudade/front.svg",
  13738. extra: 1172 / 1139,
  13739. bottom: 0.035
  13740. }
  13741. },
  13742. },
  13743. [
  13744. {
  13745. name: "Micro",
  13746. height: math.unit(3, "inches")
  13747. },
  13748. {
  13749. name: "Normal",
  13750. height: math.unit(6, "feet"),
  13751. default: true
  13752. },
  13753. {
  13754. name: "Macro",
  13755. height: math.unit(50, "feet")
  13756. },
  13757. {
  13758. name: "Megamacro",
  13759. height: math.unit(2800, "feet")
  13760. },
  13761. ]
  13762. ))
  13763. characterMakers.push(() => makeCharacter(
  13764. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13765. {
  13766. front: {
  13767. height: math.unit(5 + 4 / 12, "feet"),
  13768. weight: math.unit(100, "lb"),
  13769. name: "Front",
  13770. image: {
  13771. source: "./media/characters/keireer/front.svg",
  13772. extra: 716 / 666,
  13773. bottom: 0.05
  13774. }
  13775. },
  13776. },
  13777. [
  13778. {
  13779. name: "Normal",
  13780. height: math.unit(5 + 4 / 12, "feet"),
  13781. default: true
  13782. },
  13783. ]
  13784. ))
  13785. characterMakers.push(() => makeCharacter(
  13786. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13787. {
  13788. front: {
  13789. height: math.unit(6, "feet"),
  13790. weight: math.unit(90, "kg"),
  13791. name: "Front",
  13792. image: {
  13793. source: "./media/characters/mirja/front.svg",
  13794. extra: 1789 / 1683,
  13795. bottom: 0.05
  13796. }
  13797. },
  13798. frontDressed: {
  13799. height: math.unit(6, "feet"),
  13800. weight: math.unit(90, "lb"),
  13801. name: "Front (Dressed)",
  13802. image: {
  13803. source: "./media/characters/mirja/front-dressed.svg",
  13804. extra: 1789 / 1683,
  13805. bottom: 0.05
  13806. }
  13807. },
  13808. back: {
  13809. height: math.unit(6, "feet"),
  13810. weight: math.unit(90, "lb"),
  13811. name: "Back",
  13812. image: {
  13813. source: "./media/characters/mirja/back.svg",
  13814. extra: 953 / 917,
  13815. bottom: 0.017
  13816. }
  13817. },
  13818. },
  13819. [
  13820. {
  13821. name: "\"Incognito\"",
  13822. height: math.unit(3, "meters")
  13823. },
  13824. {
  13825. name: "Strolling Size",
  13826. height: math.unit(15, "km")
  13827. },
  13828. {
  13829. name: "Larger Strolling Size",
  13830. height: math.unit(400, "km")
  13831. },
  13832. {
  13833. name: "Preferred Size",
  13834. height: math.unit(5000, "km")
  13835. },
  13836. {
  13837. name: "True Size",
  13838. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13839. default: true
  13840. },
  13841. ]
  13842. ))
  13843. characterMakers.push(() => makeCharacter(
  13844. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13845. {
  13846. front: {
  13847. height: math.unit(15, "feet"),
  13848. weight: math.unit(880, "kg"),
  13849. name: "Front",
  13850. image: {
  13851. source: "./media/characters/nightraver/front.svg",
  13852. extra: 2444 / 2160,
  13853. bottom: 0.027
  13854. }
  13855. },
  13856. back: {
  13857. height: math.unit(15, "feet"),
  13858. weight: math.unit(880, "kg"),
  13859. name: "Back",
  13860. image: {
  13861. source: "./media/characters/nightraver/back.svg",
  13862. extra: 2309 / 2180,
  13863. bottom: 0.005
  13864. }
  13865. },
  13866. sole: {
  13867. height: math.unit(2.878, "feet"),
  13868. name: "Sole",
  13869. image: {
  13870. source: "./media/characters/nightraver/sole.svg"
  13871. }
  13872. },
  13873. foot: {
  13874. height: math.unit(2.285, "feet"),
  13875. name: "Foot",
  13876. image: {
  13877. source: "./media/characters/nightraver/foot.svg"
  13878. }
  13879. },
  13880. maw: {
  13881. height: math.unit(2.67, "feet"),
  13882. name: "Maw",
  13883. image: {
  13884. source: "./media/characters/nightraver/maw.svg"
  13885. }
  13886. },
  13887. },
  13888. [
  13889. {
  13890. name: "Micro",
  13891. height: math.unit(1, "cm")
  13892. },
  13893. {
  13894. name: "Normal",
  13895. height: math.unit(15, "feet"),
  13896. default: true
  13897. },
  13898. {
  13899. name: "Macro",
  13900. height: math.unit(300, "feet")
  13901. },
  13902. {
  13903. name: "Megamacro",
  13904. height: math.unit(300, "miles")
  13905. },
  13906. {
  13907. name: "Gigamacro",
  13908. height: math.unit(10000, "miles")
  13909. },
  13910. ]
  13911. ))
  13912. characterMakers.push(() => makeCharacter(
  13913. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13914. {
  13915. side: {
  13916. height: math.unit(2, "inches"),
  13917. weight: math.unit(5, "grams"),
  13918. name: "Side",
  13919. image: {
  13920. source: "./media/characters/arc/side.svg"
  13921. }
  13922. },
  13923. },
  13924. [
  13925. {
  13926. name: "Micro",
  13927. height: math.unit(2, "inches"),
  13928. default: true
  13929. },
  13930. ]
  13931. ))
  13932. characterMakers.push(() => makeCharacter(
  13933. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13934. {
  13935. front: {
  13936. height: math.unit(1.1938, "meters"),
  13937. weight: math.unit(54, "kg"),
  13938. name: "Front",
  13939. image: {
  13940. source: "./media/characters/nebula-shahar/front.svg",
  13941. extra: 1642 / 1436,
  13942. bottom: 0.06
  13943. }
  13944. },
  13945. },
  13946. [
  13947. {
  13948. name: "Megamicro",
  13949. height: math.unit(0.3, "mm")
  13950. },
  13951. {
  13952. name: "Micro",
  13953. height: math.unit(3, "cm")
  13954. },
  13955. {
  13956. name: "Normal",
  13957. height: math.unit(138, "cm"),
  13958. default: true
  13959. },
  13960. {
  13961. name: "Macro",
  13962. height: math.unit(30, "m")
  13963. },
  13964. ]
  13965. ))
  13966. characterMakers.push(() => makeCharacter(
  13967. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13968. {
  13969. front: {
  13970. height: math.unit(5.24, "feet"),
  13971. weight: math.unit(150, "lb"),
  13972. name: "Front",
  13973. image: {
  13974. source: "./media/characters/shayla/front.svg",
  13975. extra: 1512 / 1414,
  13976. bottom: 0.01
  13977. }
  13978. },
  13979. back: {
  13980. height: math.unit(5.24, "feet"),
  13981. weight: math.unit(150, "lb"),
  13982. name: "Back",
  13983. image: {
  13984. source: "./media/characters/shayla/back.svg",
  13985. extra: 1512 / 1414
  13986. }
  13987. },
  13988. hand: {
  13989. height: math.unit(0.7781496062992126, "feet"),
  13990. name: "Hand",
  13991. image: {
  13992. source: "./media/characters/shayla/hand.svg"
  13993. }
  13994. },
  13995. foot: {
  13996. height: math.unit(1.4206036745406823, "feet"),
  13997. name: "Foot",
  13998. image: {
  13999. source: "./media/characters/shayla/foot.svg"
  14000. }
  14001. },
  14002. },
  14003. [
  14004. {
  14005. name: "Micro",
  14006. height: math.unit(0.32, "feet")
  14007. },
  14008. {
  14009. name: "Normal",
  14010. height: math.unit(5.24, "feet"),
  14011. default: true
  14012. },
  14013. {
  14014. name: "Macro",
  14015. height: math.unit(492.12, "feet")
  14016. },
  14017. {
  14018. name: "Megamacro",
  14019. height: math.unit(186.41, "miles")
  14020. },
  14021. ]
  14022. ))
  14023. characterMakers.push(() => makeCharacter(
  14024. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14025. {
  14026. front: {
  14027. height: math.unit(2.2, "m"),
  14028. weight: math.unit(120, "kg"),
  14029. name: "Front",
  14030. image: {
  14031. source: "./media/characters/pia-jr/front.svg",
  14032. extra: 1000 / 970,
  14033. bottom: 0.035
  14034. }
  14035. },
  14036. hand: {
  14037. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14038. name: "Hand",
  14039. image: {
  14040. source: "./media/characters/pia-jr/hand.svg"
  14041. }
  14042. },
  14043. paw: {
  14044. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14045. name: "Paw",
  14046. image: {
  14047. source: "./media/characters/pia-jr/paw.svg"
  14048. }
  14049. },
  14050. },
  14051. [
  14052. {
  14053. name: "Micro",
  14054. height: math.unit(1.2, "cm")
  14055. },
  14056. {
  14057. name: "Normal",
  14058. height: math.unit(2.2, "m"),
  14059. default: true
  14060. },
  14061. {
  14062. name: "Macro",
  14063. height: math.unit(180, "m")
  14064. },
  14065. {
  14066. name: "Megamacro",
  14067. height: math.unit(420, "km")
  14068. },
  14069. ]
  14070. ))
  14071. characterMakers.push(() => makeCharacter(
  14072. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14073. {
  14074. front: {
  14075. height: math.unit(2, "m"),
  14076. weight: math.unit(115, "kg"),
  14077. name: "Front",
  14078. image: {
  14079. source: "./media/characters/pia-sr/front.svg",
  14080. extra: 760 / 730,
  14081. bottom: 0.015
  14082. }
  14083. },
  14084. back: {
  14085. height: math.unit(2, "m"),
  14086. weight: math.unit(115, "kg"),
  14087. name: "Back",
  14088. image: {
  14089. source: "./media/characters/pia-sr/back.svg",
  14090. extra: 760 / 730,
  14091. bottom: 0.01
  14092. }
  14093. },
  14094. hand: {
  14095. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14096. name: "Hand",
  14097. image: {
  14098. source: "./media/characters/pia-sr/hand.svg"
  14099. }
  14100. },
  14101. foot: {
  14102. height: math.unit(1.83, "feet"),
  14103. name: "Foot",
  14104. image: {
  14105. source: "./media/characters/pia-sr/foot.svg"
  14106. }
  14107. },
  14108. },
  14109. [
  14110. {
  14111. name: "Micro",
  14112. height: math.unit(88, "mm")
  14113. },
  14114. {
  14115. name: "Normal",
  14116. height: math.unit(2, "m"),
  14117. default: true
  14118. },
  14119. {
  14120. name: "Macro",
  14121. height: math.unit(200, "m")
  14122. },
  14123. {
  14124. name: "Megamacro",
  14125. height: math.unit(420, "km")
  14126. },
  14127. ]
  14128. ))
  14129. characterMakers.push(() => makeCharacter(
  14130. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14131. {
  14132. front: {
  14133. height: math.unit(8 + 2 / 12, "feet"),
  14134. weight: math.unit(300, "lb"),
  14135. name: "Front",
  14136. image: {
  14137. source: "./media/characters/kibibyte/front.svg",
  14138. extra: 2221 / 2098,
  14139. bottom: 0.04
  14140. }
  14141. },
  14142. },
  14143. [
  14144. {
  14145. name: "Normal",
  14146. height: math.unit(8 + 2 / 12, "feet"),
  14147. default: true
  14148. },
  14149. {
  14150. name: "Socialable Macro",
  14151. height: math.unit(50, "feet")
  14152. },
  14153. {
  14154. name: "Macro",
  14155. height: math.unit(300, "feet")
  14156. },
  14157. {
  14158. name: "Megamacro",
  14159. height: math.unit(500, "miles")
  14160. },
  14161. ]
  14162. ))
  14163. characterMakers.push(() => makeCharacter(
  14164. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14165. {
  14166. front: {
  14167. height: math.unit(6, "feet"),
  14168. weight: math.unit(150, "lb"),
  14169. name: "Front",
  14170. image: {
  14171. source: "./media/characters/felix/front.svg",
  14172. extra: 762 / 722,
  14173. bottom: 0.02
  14174. }
  14175. },
  14176. frontClothed: {
  14177. height: math.unit(6, "feet"),
  14178. weight: math.unit(150, "lb"),
  14179. name: "Front (Clothed)",
  14180. image: {
  14181. source: "./media/characters/felix/front-clothed.svg",
  14182. extra: 762 / 722,
  14183. bottom: 0.02
  14184. }
  14185. },
  14186. },
  14187. [
  14188. {
  14189. name: "Normal",
  14190. height: math.unit(6 + 8 / 12, "feet"),
  14191. default: true
  14192. },
  14193. {
  14194. name: "Macro",
  14195. height: math.unit(2600, "feet")
  14196. },
  14197. {
  14198. name: "Megamacro",
  14199. height: math.unit(450, "miles")
  14200. },
  14201. ]
  14202. ))
  14203. characterMakers.push(() => makeCharacter(
  14204. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14205. {
  14206. front: {
  14207. height: math.unit(6 + 1 / 12, "feet"),
  14208. weight: math.unit(250, "lb"),
  14209. name: "Front",
  14210. image: {
  14211. source: "./media/characters/tobo/front.svg",
  14212. extra: 608 / 586,
  14213. bottom: 0.023
  14214. }
  14215. },
  14216. back: {
  14217. height: math.unit(6 + 1 / 12, "feet"),
  14218. weight: math.unit(250, "lb"),
  14219. name: "Back",
  14220. image: {
  14221. source: "./media/characters/tobo/back.svg",
  14222. extra: 608 / 586
  14223. }
  14224. },
  14225. },
  14226. [
  14227. {
  14228. name: "Nano",
  14229. height: math.unit(2, "nm")
  14230. },
  14231. {
  14232. name: "Megamicro",
  14233. height: math.unit(0.1, "mm")
  14234. },
  14235. {
  14236. name: "Micro",
  14237. height: math.unit(1, "inch"),
  14238. default: true
  14239. },
  14240. {
  14241. name: "Human-sized",
  14242. height: math.unit(6 + 1 / 12, "feet")
  14243. },
  14244. {
  14245. name: "Macro",
  14246. height: math.unit(250, "feet")
  14247. },
  14248. {
  14249. name: "Megamacro",
  14250. height: math.unit(75, "miles")
  14251. },
  14252. {
  14253. name: "Texas-sized",
  14254. height: math.unit(750, "miles")
  14255. },
  14256. {
  14257. name: "Teramacro",
  14258. height: math.unit(50000, "miles")
  14259. },
  14260. ]
  14261. ))
  14262. characterMakers.push(() => makeCharacter(
  14263. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14264. {
  14265. front: {
  14266. height: math.unit(6, "feet"),
  14267. weight: math.unit(269, "lb"),
  14268. name: "Front",
  14269. image: {
  14270. source: "./media/characters/danny-kapowsky/front.svg",
  14271. extra: 766 / 736,
  14272. bottom: 0.044
  14273. }
  14274. },
  14275. back: {
  14276. height: math.unit(6, "feet"),
  14277. weight: math.unit(269, "lb"),
  14278. name: "Back",
  14279. image: {
  14280. source: "./media/characters/danny-kapowsky/back.svg",
  14281. extra: 797 / 760,
  14282. bottom: 0.025
  14283. }
  14284. },
  14285. },
  14286. [
  14287. {
  14288. name: "Macro",
  14289. height: math.unit(150, "feet"),
  14290. default: true
  14291. },
  14292. {
  14293. name: "Macro+",
  14294. height: math.unit(200, "feet")
  14295. },
  14296. {
  14297. name: "Macro++",
  14298. height: math.unit(300, "feet")
  14299. },
  14300. {
  14301. name: "Macro+++",
  14302. height: math.unit(400, "feet")
  14303. },
  14304. ]
  14305. ))
  14306. characterMakers.push(() => makeCharacter(
  14307. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14308. {
  14309. side: {
  14310. height: math.unit(6, "feet"),
  14311. weight: math.unit(170, "lb"),
  14312. name: "Side",
  14313. image: {
  14314. source: "./media/characters/finn/side.svg",
  14315. extra: 1953 / 1807,
  14316. bottom: 0.057
  14317. }
  14318. },
  14319. },
  14320. [
  14321. {
  14322. name: "Megamacro",
  14323. height: math.unit(14445, "feet"),
  14324. default: true
  14325. },
  14326. ]
  14327. ))
  14328. characterMakers.push(() => makeCharacter(
  14329. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14330. {
  14331. front: {
  14332. height: math.unit(5 + 6 / 12, "feet"),
  14333. weight: math.unit(125, "lb"),
  14334. name: "Front",
  14335. image: {
  14336. source: "./media/characters/roy/front.svg",
  14337. extra: 1,
  14338. bottom: 0.11
  14339. }
  14340. },
  14341. },
  14342. [
  14343. {
  14344. name: "Micro",
  14345. height: math.unit(3, "inches"),
  14346. default: true
  14347. },
  14348. {
  14349. name: "Normal",
  14350. height: math.unit(5 + 6 / 12, "feet")
  14351. },
  14352. {
  14353. name: "Lesser Macro",
  14354. height: math.unit(60, "feet")
  14355. },
  14356. {
  14357. name: "Greater Macro",
  14358. height: math.unit(120, "feet")
  14359. },
  14360. ]
  14361. ))
  14362. characterMakers.push(() => makeCharacter(
  14363. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14364. {
  14365. front: {
  14366. height: math.unit(6, "feet"),
  14367. weight: math.unit(100, "lb"),
  14368. name: "Front",
  14369. image: {
  14370. source: "./media/characters/aevsivs/front.svg",
  14371. extra: 1,
  14372. bottom: 0.03
  14373. }
  14374. },
  14375. back: {
  14376. height: math.unit(6, "feet"),
  14377. weight: math.unit(100, "lb"),
  14378. name: "Back",
  14379. image: {
  14380. source: "./media/characters/aevsivs/back.svg"
  14381. }
  14382. },
  14383. },
  14384. [
  14385. {
  14386. name: "Micro",
  14387. height: math.unit(2, "inches"),
  14388. default: true
  14389. },
  14390. {
  14391. name: "Normal",
  14392. height: math.unit(5, "feet")
  14393. },
  14394. ]
  14395. ))
  14396. characterMakers.push(() => makeCharacter(
  14397. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14398. {
  14399. front: {
  14400. height: math.unit(5 + 7 / 12, "feet"),
  14401. weight: math.unit(159, "lb"),
  14402. name: "Front",
  14403. image: {
  14404. source: "./media/characters/hildegard/front.svg",
  14405. extra: 289 / 269,
  14406. bottom: 7.63 / 297.8
  14407. }
  14408. },
  14409. back: {
  14410. height: math.unit(5 + 7 / 12, "feet"),
  14411. weight: math.unit(159, "lb"),
  14412. name: "Back",
  14413. image: {
  14414. source: "./media/characters/hildegard/back.svg",
  14415. extra: 280 / 260,
  14416. bottom: 2.3 / 282
  14417. }
  14418. },
  14419. },
  14420. [
  14421. {
  14422. name: "Normal",
  14423. height: math.unit(5 + 7 / 12, "feet"),
  14424. default: true
  14425. },
  14426. ]
  14427. ))
  14428. characterMakers.push(() => makeCharacter(
  14429. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14430. {
  14431. bernard: {
  14432. height: math.unit(2 + 7 / 12, "feet"),
  14433. weight: math.unit(66, "lb"),
  14434. name: "Bernard",
  14435. rename: true,
  14436. image: {
  14437. source: "./media/characters/bernard-wilder/bernard.svg",
  14438. extra: 192 / 128,
  14439. bottom: 0.05
  14440. }
  14441. },
  14442. wilder: {
  14443. height: math.unit(5 + 8 / 12, "feet"),
  14444. weight: math.unit(143, "lb"),
  14445. name: "Wilder",
  14446. rename: true,
  14447. image: {
  14448. source: "./media/characters/bernard-wilder/wilder.svg",
  14449. extra: 361 / 312,
  14450. bottom: 0.02
  14451. }
  14452. },
  14453. },
  14454. [
  14455. {
  14456. name: "Normal",
  14457. height: math.unit(2 + 7 / 12, "feet"),
  14458. default: true
  14459. },
  14460. ]
  14461. ))
  14462. characterMakers.push(() => makeCharacter(
  14463. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14464. {
  14465. anthro: {
  14466. height: math.unit(6 + 1 / 12, "feet"),
  14467. weight: math.unit(155, "lb"),
  14468. name: "Anthro",
  14469. image: {
  14470. source: "./media/characters/hearth/anthro.svg",
  14471. extra: 260 / 250,
  14472. bottom: 0.02
  14473. }
  14474. },
  14475. feral: {
  14476. height: math.unit(3.78, "feet"),
  14477. weight: math.unit(35, "kg"),
  14478. name: "Feral",
  14479. image: {
  14480. source: "./media/characters/hearth/feral.svg",
  14481. extra: 153 / 135,
  14482. bottom: 0.03
  14483. }
  14484. },
  14485. },
  14486. [
  14487. {
  14488. name: "Normal",
  14489. height: math.unit(6 + 1 / 12, "feet"),
  14490. default: true
  14491. },
  14492. ]
  14493. ))
  14494. characterMakers.push(() => makeCharacter(
  14495. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14496. {
  14497. front: {
  14498. height: math.unit(6, "feet"),
  14499. weight: math.unit(182, "lb"),
  14500. name: "Front",
  14501. image: {
  14502. source: "./media/characters/ingrid/front.svg",
  14503. extra: 294 / 268,
  14504. bottom: 0.027
  14505. }
  14506. },
  14507. },
  14508. [
  14509. {
  14510. name: "Normal",
  14511. height: math.unit(6, "feet"),
  14512. default: true
  14513. },
  14514. ]
  14515. ))
  14516. characterMakers.push(() => makeCharacter(
  14517. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14518. {
  14519. eevee: {
  14520. height: math.unit(2 + 10 / 12, "feet"),
  14521. weight: math.unit(86, "lb"),
  14522. name: "Malgam",
  14523. image: {
  14524. source: "./media/characters/malgam/eevee.svg",
  14525. extra: 218 / 180,
  14526. bottom: 0.2
  14527. }
  14528. },
  14529. sylveon: {
  14530. height: math.unit(4, "feet"),
  14531. weight: math.unit(101, "lb"),
  14532. name: "Future Malgam",
  14533. rename: true,
  14534. image: {
  14535. source: "./media/characters/malgam/sylveon.svg",
  14536. extra: 371 / 325,
  14537. bottom: 0.015
  14538. }
  14539. },
  14540. gigantamax: {
  14541. height: math.unit(50, "feet"),
  14542. name: "Gigantamax Malgam",
  14543. rename: true,
  14544. image: {
  14545. source: "./media/characters/malgam/gigantamax.svg"
  14546. }
  14547. },
  14548. },
  14549. [
  14550. {
  14551. name: "Normal",
  14552. height: math.unit(2 + 10 / 12, "feet"),
  14553. default: true
  14554. },
  14555. ]
  14556. ))
  14557. characterMakers.push(() => makeCharacter(
  14558. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14559. {
  14560. front: {
  14561. height: math.unit(5 + 11 / 12, "feet"),
  14562. weight: math.unit(188, "lb"),
  14563. name: "Front",
  14564. image: {
  14565. source: "./media/characters/fleur/front.svg",
  14566. extra: 309 / 283,
  14567. bottom: 0.007
  14568. }
  14569. },
  14570. },
  14571. [
  14572. {
  14573. name: "Normal",
  14574. height: math.unit(5 + 11 / 12, "feet"),
  14575. default: true
  14576. },
  14577. ]
  14578. ))
  14579. characterMakers.push(() => makeCharacter(
  14580. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14581. {
  14582. front: {
  14583. height: math.unit(5 + 4 / 12, "feet"),
  14584. weight: math.unit(122, "lb"),
  14585. name: "Front",
  14586. image: {
  14587. source: "./media/characters/jude/front.svg",
  14588. extra: 288 / 273,
  14589. bottom: 0.03
  14590. }
  14591. },
  14592. },
  14593. [
  14594. {
  14595. name: "Normal",
  14596. height: math.unit(5 + 4 / 12, "feet"),
  14597. default: true
  14598. },
  14599. ]
  14600. ))
  14601. characterMakers.push(() => makeCharacter(
  14602. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14603. {
  14604. front: {
  14605. height: math.unit(5 + 11 / 12, "feet"),
  14606. weight: math.unit(190, "lb"),
  14607. name: "Front",
  14608. image: {
  14609. source: "./media/characters/seara/front.svg",
  14610. extra: 1,
  14611. bottom: 0.05
  14612. }
  14613. },
  14614. },
  14615. [
  14616. {
  14617. name: "Normal",
  14618. height: math.unit(5 + 11 / 12, "feet"),
  14619. default: true
  14620. },
  14621. ]
  14622. ))
  14623. characterMakers.push(() => makeCharacter(
  14624. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14625. {
  14626. front: {
  14627. height: math.unit(16 + 5 / 12, "feet"),
  14628. weight: math.unit(524, "lb"),
  14629. name: "Front",
  14630. image: {
  14631. source: "./media/characters/caspian/front.svg",
  14632. extra: 1,
  14633. bottom: 0.04
  14634. }
  14635. },
  14636. },
  14637. [
  14638. {
  14639. name: "Normal",
  14640. height: math.unit(16 + 5 / 12, "feet"),
  14641. default: true
  14642. },
  14643. ]
  14644. ))
  14645. characterMakers.push(() => makeCharacter(
  14646. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14647. {
  14648. front: {
  14649. height: math.unit(5 + 7 / 12, "feet"),
  14650. weight: math.unit(170, "lb"),
  14651. name: "Front",
  14652. image: {
  14653. source: "./media/characters/mika/front.svg",
  14654. extra: 1,
  14655. bottom: 0.016
  14656. }
  14657. },
  14658. },
  14659. [
  14660. {
  14661. name: "Normal",
  14662. height: math.unit(5 + 7 / 12, "feet"),
  14663. default: true
  14664. },
  14665. ]
  14666. ))
  14667. characterMakers.push(() => makeCharacter(
  14668. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14669. {
  14670. front: {
  14671. height: math.unit(6 + 2 / 12, "feet"),
  14672. weight: math.unit(268, "lb"),
  14673. name: "Front",
  14674. image: {
  14675. source: "./media/characters/sol/front.svg",
  14676. extra: 247 / 231,
  14677. bottom: 0.05
  14678. }
  14679. },
  14680. },
  14681. [
  14682. {
  14683. name: "Normal",
  14684. height: math.unit(6 + 2 / 12, "feet"),
  14685. default: true
  14686. },
  14687. ]
  14688. ))
  14689. characterMakers.push(() => makeCharacter(
  14690. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14691. {
  14692. buizel: {
  14693. height: math.unit(2 + 5 / 12, "feet"),
  14694. weight: math.unit(87, "lb"),
  14695. name: "Buizel",
  14696. image: {
  14697. source: "./media/characters/umiko/buizel.svg",
  14698. extra: 172 / 157,
  14699. bottom: 0.01
  14700. }
  14701. },
  14702. floatzel: {
  14703. height: math.unit(5 + 9 / 12, "feet"),
  14704. weight: math.unit(250, "lb"),
  14705. name: "Floatzel",
  14706. image: {
  14707. source: "./media/characters/umiko/floatzel.svg",
  14708. extra: 262 / 248
  14709. }
  14710. },
  14711. },
  14712. [
  14713. {
  14714. name: "Normal",
  14715. height: math.unit(2 + 5 / 12, "feet"),
  14716. default: true
  14717. },
  14718. ]
  14719. ))
  14720. characterMakers.push(() => makeCharacter(
  14721. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14722. {
  14723. front: {
  14724. height: math.unit(6 + 2 / 12, "feet"),
  14725. weight: math.unit(146, "lb"),
  14726. name: "Front",
  14727. image: {
  14728. source: "./media/characters/iliac/front.svg",
  14729. extra: 389 / 365,
  14730. bottom: 0.035
  14731. }
  14732. },
  14733. },
  14734. [
  14735. {
  14736. name: "Normal",
  14737. height: math.unit(6 + 2 / 12, "feet"),
  14738. default: true
  14739. },
  14740. ]
  14741. ))
  14742. characterMakers.push(() => makeCharacter(
  14743. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14744. {
  14745. front: {
  14746. height: math.unit(6, "feet"),
  14747. weight: math.unit(170, "lb"),
  14748. name: "Front",
  14749. image: {
  14750. source: "./media/characters/topaz/front.svg",
  14751. extra: 317 / 303,
  14752. bottom: 0.055
  14753. }
  14754. },
  14755. },
  14756. [
  14757. {
  14758. name: "Normal",
  14759. height: math.unit(6, "feet"),
  14760. default: true
  14761. },
  14762. ]
  14763. ))
  14764. characterMakers.push(() => makeCharacter(
  14765. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14766. {
  14767. front: {
  14768. height: math.unit(5 + 11 / 12, "feet"),
  14769. weight: math.unit(144, "lb"),
  14770. name: "Front",
  14771. image: {
  14772. source: "./media/characters/gabriel/front.svg",
  14773. extra: 285 / 262,
  14774. bottom: 0.004
  14775. }
  14776. },
  14777. },
  14778. [
  14779. {
  14780. name: "Normal",
  14781. height: math.unit(5 + 11 / 12, "feet"),
  14782. default: true
  14783. },
  14784. ]
  14785. ))
  14786. characterMakers.push(() => makeCharacter(
  14787. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14788. {
  14789. side: {
  14790. height: math.unit(6 + 5 / 12, "feet"),
  14791. weight: math.unit(300, "lb"),
  14792. name: "Side",
  14793. image: {
  14794. source: "./media/characters/tempest-suicune/side.svg",
  14795. extra: 195 / 154,
  14796. bottom: 0.04
  14797. }
  14798. },
  14799. },
  14800. [
  14801. {
  14802. name: "Normal",
  14803. height: math.unit(6 + 5 / 12, "feet"),
  14804. default: true
  14805. },
  14806. ]
  14807. ))
  14808. characterMakers.push(() => makeCharacter(
  14809. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14810. {
  14811. front: {
  14812. height: math.unit(7 + 2 / 12, "feet"),
  14813. weight: math.unit(322, "lb"),
  14814. name: "Front",
  14815. image: {
  14816. source: "./media/characters/vulcan/front.svg",
  14817. extra: 154 / 147,
  14818. bottom: 0.04
  14819. }
  14820. },
  14821. },
  14822. [
  14823. {
  14824. name: "Normal",
  14825. height: math.unit(7 + 2 / 12, "feet"),
  14826. default: true
  14827. },
  14828. ]
  14829. ))
  14830. characterMakers.push(() => makeCharacter(
  14831. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14832. {
  14833. front: {
  14834. height: math.unit(5 + 10 / 12, "feet"),
  14835. weight: math.unit(264, "lb"),
  14836. name: "Front",
  14837. image: {
  14838. source: "./media/characters/gault/front.svg",
  14839. extra: 161 / 140,
  14840. bottom: 0.028
  14841. }
  14842. },
  14843. },
  14844. [
  14845. {
  14846. name: "Normal",
  14847. height: math.unit(5 + 10 / 12, "feet"),
  14848. default: true
  14849. },
  14850. ]
  14851. ))
  14852. characterMakers.push(() => makeCharacter(
  14853. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14854. {
  14855. front: {
  14856. height: math.unit(6, "feet"),
  14857. weight: math.unit(150, "lb"),
  14858. name: "Front",
  14859. image: {
  14860. source: "./media/characters/shard/front.svg",
  14861. extra: 273 / 238,
  14862. bottom: 0.02
  14863. }
  14864. },
  14865. },
  14866. [
  14867. {
  14868. name: "Normal",
  14869. height: math.unit(3 + 6 / 12, "feet"),
  14870. default: true
  14871. },
  14872. ]
  14873. ))
  14874. characterMakers.push(() => makeCharacter(
  14875. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14876. {
  14877. front: {
  14878. height: math.unit(5 + 11 / 12, "feet"),
  14879. weight: math.unit(146, "lb"),
  14880. name: "Front",
  14881. image: {
  14882. source: "./media/characters/ashe/front.svg",
  14883. extra: 400 / 373,
  14884. bottom: 0.01
  14885. }
  14886. },
  14887. },
  14888. [
  14889. {
  14890. name: "Normal",
  14891. height: math.unit(5 + 11 / 12, "feet"),
  14892. default: true
  14893. },
  14894. ]
  14895. ))
  14896. characterMakers.push(() => makeCharacter(
  14897. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14898. {
  14899. front: {
  14900. height: math.unit(5 + 5 / 12, "feet"),
  14901. weight: math.unit(135, "lb"),
  14902. name: "Front",
  14903. image: {
  14904. source: "./media/characters/beatrix/front.svg",
  14905. extra: 392 / 379,
  14906. bottom: 0.01
  14907. }
  14908. },
  14909. },
  14910. [
  14911. {
  14912. name: "Normal",
  14913. height: math.unit(6, "feet"),
  14914. default: true
  14915. },
  14916. ]
  14917. ))
  14918. characterMakers.push(() => makeCharacter(
  14919. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14920. {
  14921. front: {
  14922. height: math.unit(6, "feet"),
  14923. weight: math.unit(150, "lb"),
  14924. name: "Front",
  14925. image: {
  14926. source: "./media/characters/ignatius/front.svg",
  14927. extra: 245 / 222,
  14928. bottom: 0.01
  14929. }
  14930. },
  14931. },
  14932. [
  14933. {
  14934. name: "Normal",
  14935. height: math.unit(5 + 5 / 12, "feet"),
  14936. default: true
  14937. },
  14938. ]
  14939. ))
  14940. characterMakers.push(() => makeCharacter(
  14941. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14942. {
  14943. front: {
  14944. height: math.unit(6 + 2 / 12, "feet"),
  14945. weight: math.unit(138, "lb"),
  14946. name: "Front",
  14947. image: {
  14948. source: "./media/characters/mei-li/front.svg",
  14949. extra: 237 / 229,
  14950. bottom: 0.03
  14951. }
  14952. },
  14953. },
  14954. [
  14955. {
  14956. name: "Normal",
  14957. height: math.unit(6 + 2 / 12, "feet"),
  14958. default: true
  14959. },
  14960. ]
  14961. ))
  14962. characterMakers.push(() => makeCharacter(
  14963. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14964. {
  14965. front: {
  14966. height: math.unit(2 + 4 / 12, "feet"),
  14967. weight: math.unit(62, "lb"),
  14968. name: "Front",
  14969. image: {
  14970. source: "./media/characters/puru/front.svg",
  14971. extra: 206 / 149,
  14972. bottom: 0.06
  14973. }
  14974. },
  14975. },
  14976. [
  14977. {
  14978. name: "Normal",
  14979. height: math.unit(2 + 4 / 12, "feet"),
  14980. default: true
  14981. },
  14982. ]
  14983. ))
  14984. characterMakers.push(() => makeCharacter(
  14985. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  14986. {
  14987. anthro: {
  14988. height: math.unit(5 + 8/12, "feet"),
  14989. weight: math.unit(200, "lb"),
  14990. energyNeed: math.unit(2000, "kcal"),
  14991. name: "Anthro",
  14992. image: {
  14993. source: "./media/characters/kee/anthro.svg",
  14994. extra: 3251/3184,
  14995. bottom: 250/3501
  14996. }
  14997. },
  14998. taur: {
  14999. height: math.unit(11, "feet"),
  15000. weight: math.unit(500, "lb"),
  15001. energyNeed: math.unit(5000, "kcal"),
  15002. name: "Taur",
  15003. image: {
  15004. source: "./media/characters/kee/taur.svg",
  15005. extra: 1362/1320,
  15006. bottom: 83/1445
  15007. }
  15008. },
  15009. },
  15010. [
  15011. {
  15012. name: "Normal",
  15013. height: math.unit(5 + 8/12, "feet"),
  15014. default: true
  15015. },
  15016. {
  15017. name: "Macro",
  15018. height: math.unit(35, "feet")
  15019. },
  15020. ]
  15021. ))
  15022. characterMakers.push(() => makeCharacter(
  15023. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15024. {
  15025. anthro: {
  15026. height: math.unit(7, "feet"),
  15027. weight: math.unit(190, "lb"),
  15028. name: "Anthro",
  15029. image: {
  15030. source: "./media/characters/cobalt-dracha/anthro.svg",
  15031. extra: 231 / 225,
  15032. bottom: 0.04
  15033. }
  15034. },
  15035. feral: {
  15036. height: math.unit(9 + 7 / 12, "feet"),
  15037. weight: math.unit(294, "lb"),
  15038. name: "Feral",
  15039. image: {
  15040. source: "./media/characters/cobalt-dracha/feral.svg",
  15041. extra: 692 / 633,
  15042. bottom: 0.05
  15043. }
  15044. },
  15045. },
  15046. [
  15047. {
  15048. name: "Normal",
  15049. height: math.unit(7, "feet"),
  15050. default: true
  15051. },
  15052. ]
  15053. ))
  15054. characterMakers.push(() => makeCharacter(
  15055. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15056. {
  15057. fallen: {
  15058. height: math.unit(11 + 8 / 12, "feet"),
  15059. weight: math.unit(485, "lb"),
  15060. name: "Java (Fallen)",
  15061. rename: true,
  15062. image: {
  15063. source: "./media/characters/java/fallen.svg",
  15064. extra: 226 / 208,
  15065. bottom: 0.005
  15066. }
  15067. },
  15068. godkin: {
  15069. height: math.unit(10 + 6 / 12, "feet"),
  15070. weight: math.unit(328, "lb"),
  15071. name: "Java (Godkin)",
  15072. rename: true,
  15073. image: {
  15074. source: "./media/characters/java/godkin.svg",
  15075. extra: 270 / 262,
  15076. bottom: 0.02
  15077. }
  15078. },
  15079. },
  15080. [
  15081. {
  15082. name: "Normal",
  15083. height: math.unit(11 + 8 / 12, "feet"),
  15084. default: true
  15085. },
  15086. ]
  15087. ))
  15088. characterMakers.push(() => makeCharacter(
  15089. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15090. {
  15091. front: {
  15092. height: math.unit(7 + 8 / 12, "feet"),
  15093. weight: math.unit(320, "lb"),
  15094. name: "Front",
  15095. image: {
  15096. source: "./media/characters/skoll/front.svg",
  15097. extra: 232 / 220,
  15098. bottom: 0.02
  15099. }
  15100. },
  15101. },
  15102. [
  15103. {
  15104. name: "Normal",
  15105. height: math.unit(7 + 8 / 12, "feet"),
  15106. default: true
  15107. },
  15108. ]
  15109. ))
  15110. characterMakers.push(() => makeCharacter(
  15111. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15112. {
  15113. front: {
  15114. height: math.unit(5 + 9 / 12, "feet"),
  15115. weight: math.unit(170, "lb"),
  15116. name: "Front",
  15117. image: {
  15118. source: "./media/characters/purna/front.svg",
  15119. extra: 239 / 229,
  15120. bottom: 0.01
  15121. }
  15122. },
  15123. },
  15124. [
  15125. {
  15126. name: "Normal",
  15127. height: math.unit(5 + 9 / 12, "feet"),
  15128. default: true
  15129. },
  15130. ]
  15131. ))
  15132. characterMakers.push(() => makeCharacter(
  15133. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15134. {
  15135. front: {
  15136. height: math.unit(5 + 9 / 12, "feet"),
  15137. weight: math.unit(142, "lb"),
  15138. name: "Front",
  15139. image: {
  15140. source: "./media/characters/kuva/front.svg",
  15141. extra: 281 / 271,
  15142. bottom: 0.006
  15143. }
  15144. },
  15145. },
  15146. [
  15147. {
  15148. name: "Normal",
  15149. height: math.unit(5 + 9 / 12, "feet"),
  15150. default: true
  15151. },
  15152. ]
  15153. ))
  15154. characterMakers.push(() => makeCharacter(
  15155. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15156. {
  15157. anthro: {
  15158. height: math.unit(9 + 2 / 12, "feet"),
  15159. weight: math.unit(270, "lb"),
  15160. name: "Anthro",
  15161. image: {
  15162. source: "./media/characters/embra/anthro.svg",
  15163. extra: 200 / 187,
  15164. bottom: 0.02
  15165. }
  15166. },
  15167. feral: {
  15168. height: math.unit(18 + 8 / 12, "feet"),
  15169. weight: math.unit(576, "lb"),
  15170. name: "Feral",
  15171. image: {
  15172. source: "./media/characters/embra/feral.svg",
  15173. extra: 152 / 137,
  15174. bottom: 0.037
  15175. }
  15176. },
  15177. },
  15178. [
  15179. {
  15180. name: "Normal",
  15181. height: math.unit(9 + 2 / 12, "feet"),
  15182. default: true
  15183. },
  15184. ]
  15185. ))
  15186. characterMakers.push(() => makeCharacter(
  15187. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15188. {
  15189. anthro: {
  15190. height: math.unit(10 + 9 / 12, "feet"),
  15191. weight: math.unit(224, "lb"),
  15192. name: "Anthro",
  15193. image: {
  15194. source: "./media/characters/grottos/anthro.svg",
  15195. extra: 350 / 332,
  15196. bottom: 0.045
  15197. }
  15198. },
  15199. feral: {
  15200. height: math.unit(20 + 7 / 12, "feet"),
  15201. weight: math.unit(629, "lb"),
  15202. name: "Feral",
  15203. image: {
  15204. source: "./media/characters/grottos/feral.svg",
  15205. extra: 207 / 190,
  15206. bottom: 0.05
  15207. }
  15208. },
  15209. },
  15210. [
  15211. {
  15212. name: "Normal",
  15213. height: math.unit(10 + 9 / 12, "feet"),
  15214. default: true
  15215. },
  15216. ]
  15217. ))
  15218. characterMakers.push(() => makeCharacter(
  15219. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15220. {
  15221. anthro: {
  15222. height: math.unit(9 + 6 / 12, "feet"),
  15223. weight: math.unit(298, "lb"),
  15224. name: "Anthro",
  15225. image: {
  15226. source: "./media/characters/frifna/anthro.svg",
  15227. extra: 282 / 269,
  15228. bottom: 0.015
  15229. }
  15230. },
  15231. feral: {
  15232. height: math.unit(16 + 2 / 12, "feet"),
  15233. weight: math.unit(624, "lb"),
  15234. name: "Feral",
  15235. image: {
  15236. source: "./media/characters/frifna/feral.svg"
  15237. }
  15238. },
  15239. },
  15240. [
  15241. {
  15242. name: "Normal",
  15243. height: math.unit(9 + 6 / 12, "feet"),
  15244. default: true
  15245. },
  15246. ]
  15247. ))
  15248. characterMakers.push(() => makeCharacter(
  15249. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15250. {
  15251. front: {
  15252. height: math.unit(6 + 2 / 12, "feet"),
  15253. weight: math.unit(168, "lb"),
  15254. name: "Front",
  15255. image: {
  15256. source: "./media/characters/elise/front.svg",
  15257. extra: 276 / 271
  15258. }
  15259. },
  15260. },
  15261. [
  15262. {
  15263. name: "Normal",
  15264. height: math.unit(6 + 2 / 12, "feet"),
  15265. default: true
  15266. },
  15267. ]
  15268. ))
  15269. characterMakers.push(() => makeCharacter(
  15270. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15271. {
  15272. front: {
  15273. height: math.unit(5 + 10 / 12, "feet"),
  15274. weight: math.unit(210, "lb"),
  15275. name: "Front",
  15276. image: {
  15277. source: "./media/characters/glade/front.svg",
  15278. extra: 258 / 247,
  15279. bottom: 0.008
  15280. }
  15281. },
  15282. },
  15283. [
  15284. {
  15285. name: "Normal",
  15286. height: math.unit(5 + 10 / 12, "feet"),
  15287. default: true
  15288. },
  15289. ]
  15290. ))
  15291. characterMakers.push(() => makeCharacter(
  15292. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15293. {
  15294. front: {
  15295. height: math.unit(5 + 10 / 12, "feet"),
  15296. weight: math.unit(129, "lb"),
  15297. name: "Front",
  15298. image: {
  15299. source: "./media/characters/rina/front.svg",
  15300. extra: 266 / 255,
  15301. bottom: 0.005
  15302. }
  15303. },
  15304. },
  15305. [
  15306. {
  15307. name: "Normal",
  15308. height: math.unit(5 + 10 / 12, "feet"),
  15309. default: true
  15310. },
  15311. ]
  15312. ))
  15313. characterMakers.push(() => makeCharacter(
  15314. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15315. {
  15316. front: {
  15317. height: math.unit(6 + 1 / 12, "feet"),
  15318. weight: math.unit(192, "lb"),
  15319. name: "Front",
  15320. image: {
  15321. source: "./media/characters/veronica/front.svg",
  15322. extra: 319 / 309,
  15323. bottom: 0.005
  15324. }
  15325. },
  15326. },
  15327. [
  15328. {
  15329. name: "Normal",
  15330. height: math.unit(6 + 1 / 12, "feet"),
  15331. default: true
  15332. },
  15333. ]
  15334. ))
  15335. characterMakers.push(() => makeCharacter(
  15336. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15337. {
  15338. front: {
  15339. height: math.unit(9 + 3 / 12, "feet"),
  15340. weight: math.unit(1100, "lb"),
  15341. name: "Front",
  15342. image: {
  15343. source: "./media/characters/braxton/front.svg",
  15344. extra: 1057 / 984,
  15345. bottom: 0.05
  15346. }
  15347. },
  15348. },
  15349. [
  15350. {
  15351. name: "Normal",
  15352. height: math.unit(9 + 3 / 12, "feet")
  15353. },
  15354. {
  15355. name: "Giant",
  15356. height: math.unit(300, "feet"),
  15357. default: true
  15358. },
  15359. {
  15360. name: "Macro",
  15361. height: math.unit(700, "feet")
  15362. },
  15363. {
  15364. name: "Megamacro",
  15365. height: math.unit(6000, "feet")
  15366. },
  15367. ]
  15368. ))
  15369. characterMakers.push(() => makeCharacter(
  15370. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15371. {
  15372. front: {
  15373. height: math.unit(6 + 7 / 12, "feet"),
  15374. weight: math.unit(150, "lb"),
  15375. name: "Front",
  15376. image: {
  15377. source: "./media/characters/blue-feyonics/front.svg",
  15378. extra: 1403 / 1306,
  15379. bottom: 0.047
  15380. }
  15381. },
  15382. },
  15383. [
  15384. {
  15385. name: "Normal",
  15386. height: math.unit(6 + 7 / 12, "feet"),
  15387. default: true
  15388. },
  15389. ]
  15390. ))
  15391. characterMakers.push(() => makeCharacter(
  15392. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15393. {
  15394. front: {
  15395. height: math.unit(1.8, "meters"),
  15396. weight: math.unit(60, "kg"),
  15397. name: "Front",
  15398. image: {
  15399. source: "./media/characters/maxwell/front.svg",
  15400. extra: 2060 / 1873
  15401. }
  15402. },
  15403. },
  15404. [
  15405. {
  15406. name: "Micro",
  15407. height: math.unit(1, "mm")
  15408. },
  15409. {
  15410. name: "Normal",
  15411. height: math.unit(1.8, "meter"),
  15412. default: true
  15413. },
  15414. {
  15415. name: "Macro",
  15416. height: math.unit(30, "meters")
  15417. },
  15418. {
  15419. name: "Megamacro",
  15420. height: math.unit(10, "km")
  15421. },
  15422. ]
  15423. ))
  15424. characterMakers.push(() => makeCharacter(
  15425. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15426. {
  15427. front: {
  15428. height: math.unit(6, "feet"),
  15429. weight: math.unit(150, "lb"),
  15430. name: "Front",
  15431. image: {
  15432. source: "./media/characters/jack/front.svg",
  15433. extra: 1754 / 1640,
  15434. bottom: 0.01
  15435. }
  15436. },
  15437. },
  15438. [
  15439. {
  15440. name: "Normal",
  15441. height: math.unit(80000, "feet"),
  15442. default: true
  15443. },
  15444. {
  15445. name: "Max size",
  15446. height: math.unit(10, "lightyears")
  15447. },
  15448. ]
  15449. ))
  15450. characterMakers.push(() => makeCharacter(
  15451. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15452. {
  15453. upright: {
  15454. height: math.unit(7, "feet"),
  15455. weight: math.unit(170, "lb"),
  15456. name: "Upright",
  15457. image: {
  15458. source: "./media/characters/cafat/upright.svg",
  15459. bottom: 0.01
  15460. }
  15461. },
  15462. uprightFull: {
  15463. height: math.unit(7, "feet"),
  15464. weight: math.unit(170, "lb"),
  15465. name: "Upright (Full)",
  15466. image: {
  15467. source: "./media/characters/cafat/upright-full.svg",
  15468. bottom: 0.01
  15469. }
  15470. },
  15471. side: {
  15472. height: math.unit(5, "feet"),
  15473. weight: math.unit(150, "lb"),
  15474. name: "Side",
  15475. image: {
  15476. source: "./media/characters/cafat/side.svg"
  15477. }
  15478. },
  15479. },
  15480. [
  15481. {
  15482. name: "Small",
  15483. height: math.unit(7, "feet"),
  15484. default: true
  15485. },
  15486. {
  15487. name: "Large",
  15488. height: math.unit(15.5, "feet")
  15489. },
  15490. ]
  15491. ))
  15492. characterMakers.push(() => makeCharacter(
  15493. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15494. {
  15495. front: {
  15496. height: math.unit(6, "feet"),
  15497. weight: math.unit(150, "lb"),
  15498. name: "Front",
  15499. image: {
  15500. source: "./media/characters/verin-raharra/front.svg",
  15501. extra: 5019 / 4835,
  15502. bottom: 0.023
  15503. }
  15504. },
  15505. },
  15506. [
  15507. {
  15508. name: "Normal",
  15509. height: math.unit(7 + 5 / 12, "feet"),
  15510. default: true
  15511. },
  15512. {
  15513. name: "Upsized",
  15514. height: math.unit(20, "feet")
  15515. },
  15516. ]
  15517. ))
  15518. characterMakers.push(() => makeCharacter(
  15519. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15520. {
  15521. front: {
  15522. height: math.unit(7, "feet"),
  15523. weight: math.unit(230, "lb"),
  15524. name: "Front",
  15525. image: {
  15526. source: "./media/characters/nakata/front.svg",
  15527. extra: 1.005,
  15528. bottom: 0.01
  15529. }
  15530. },
  15531. },
  15532. [
  15533. {
  15534. name: "Normal",
  15535. height: math.unit(7, "feet"),
  15536. default: true
  15537. },
  15538. {
  15539. name: "Big",
  15540. height: math.unit(14, "feet")
  15541. },
  15542. {
  15543. name: "Macro",
  15544. height: math.unit(400, "feet")
  15545. },
  15546. ]
  15547. ))
  15548. characterMakers.push(() => makeCharacter(
  15549. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15550. {
  15551. front: {
  15552. height: math.unit(4.91, "feet"),
  15553. weight: math.unit(100, "lb"),
  15554. name: "Front",
  15555. image: {
  15556. source: "./media/characters/lily/front.svg",
  15557. extra: 1585 / 1415,
  15558. bottom: 0.02
  15559. }
  15560. },
  15561. },
  15562. [
  15563. {
  15564. name: "Normal",
  15565. height: math.unit(4.91, "feet"),
  15566. default: true
  15567. },
  15568. ]
  15569. ))
  15570. characterMakers.push(() => makeCharacter(
  15571. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15572. {
  15573. laying: {
  15574. height: math.unit(4 + 4 / 12, "feet"),
  15575. weight: math.unit(600, "lb"),
  15576. name: "Laying",
  15577. image: {
  15578. source: "./media/characters/sheila/laying.svg",
  15579. extra: 1333 / 1265,
  15580. bottom: 0.16
  15581. }
  15582. },
  15583. },
  15584. [
  15585. {
  15586. name: "Normal",
  15587. height: math.unit(4 + 4 / 12, "feet"),
  15588. default: true
  15589. },
  15590. ]
  15591. ))
  15592. characterMakers.push(() => makeCharacter(
  15593. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15594. {
  15595. front: {
  15596. height: math.unit(6, "feet"),
  15597. weight: math.unit(190, "lb"),
  15598. name: "Front",
  15599. image: {
  15600. source: "./media/characters/sax/front.svg",
  15601. extra: 1187 / 973,
  15602. bottom: 0.042
  15603. }
  15604. },
  15605. },
  15606. [
  15607. {
  15608. name: "Micro",
  15609. height: math.unit(4, "inches"),
  15610. default: true
  15611. },
  15612. ]
  15613. ))
  15614. characterMakers.push(() => makeCharacter(
  15615. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15616. {
  15617. front: {
  15618. height: math.unit(6, "feet"),
  15619. weight: math.unit(150, "lb"),
  15620. name: "Front",
  15621. image: {
  15622. source: "./media/characters/pandora/front.svg",
  15623. extra: 2720 / 2556,
  15624. bottom: 0.015
  15625. }
  15626. },
  15627. back: {
  15628. height: math.unit(6, "feet"),
  15629. weight: math.unit(150, "lb"),
  15630. name: "Back",
  15631. image: {
  15632. source: "./media/characters/pandora/back.svg",
  15633. extra: 2720 / 2556,
  15634. bottom: 0.01
  15635. }
  15636. },
  15637. beans: {
  15638. height: math.unit(6 / 8, "feet"),
  15639. name: "Beans",
  15640. image: {
  15641. source: "./media/characters/pandora/beans.svg"
  15642. }
  15643. },
  15644. skirt: {
  15645. height: math.unit(6, "feet"),
  15646. weight: math.unit(150, "lb"),
  15647. name: "Skirt",
  15648. image: {
  15649. source: "./media/characters/pandora/skirt.svg",
  15650. extra: 1622 / 1525,
  15651. bottom: 0.015
  15652. }
  15653. },
  15654. hoodie: {
  15655. height: math.unit(6, "feet"),
  15656. weight: math.unit(150, "lb"),
  15657. name: "Hoodie",
  15658. image: {
  15659. source: "./media/characters/pandora/hoodie.svg",
  15660. extra: 1622 / 1525,
  15661. bottom: 0.015
  15662. }
  15663. },
  15664. casual: {
  15665. height: math.unit(6, "feet"),
  15666. weight: math.unit(150, "lb"),
  15667. name: "Casual",
  15668. image: {
  15669. source: "./media/characters/pandora/casual.svg",
  15670. extra: 1622 / 1525,
  15671. bottom: 0.015
  15672. }
  15673. },
  15674. },
  15675. [
  15676. {
  15677. name: "Normal",
  15678. height: math.unit(6, "feet")
  15679. },
  15680. {
  15681. name: "Big Steppy",
  15682. height: math.unit(1, "km"),
  15683. default: true
  15684. },
  15685. ]
  15686. ))
  15687. characterMakers.push(() => makeCharacter(
  15688. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15689. {
  15690. side: {
  15691. height: math.unit(10, "feet"),
  15692. weight: math.unit(800, "kg"),
  15693. name: "Side",
  15694. image: {
  15695. source: "./media/characters/venio-darcony/side.svg",
  15696. extra: 1373 / 1003,
  15697. bottom: 0.037
  15698. }
  15699. },
  15700. front: {
  15701. height: math.unit(19, "feet"),
  15702. weight: math.unit(800, "kg"),
  15703. name: "Front",
  15704. image: {
  15705. source: "./media/characters/venio-darcony/front.svg"
  15706. }
  15707. },
  15708. back: {
  15709. height: math.unit(19, "feet"),
  15710. weight: math.unit(800, "kg"),
  15711. name: "Back",
  15712. image: {
  15713. source: "./media/characters/venio-darcony/back.svg"
  15714. }
  15715. },
  15716. sideNsfw: {
  15717. height: math.unit(10, "feet"),
  15718. weight: math.unit(800, "kg"),
  15719. name: "Side (NSFW)",
  15720. image: {
  15721. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15722. extra: 1373 / 1003,
  15723. bottom: 0.037
  15724. }
  15725. },
  15726. frontNsfw: {
  15727. height: math.unit(19, "feet"),
  15728. weight: math.unit(800, "kg"),
  15729. name: "Front (NSFW)",
  15730. image: {
  15731. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15732. }
  15733. },
  15734. backNsfw: {
  15735. height: math.unit(19, "feet"),
  15736. weight: math.unit(800, "kg"),
  15737. name: "Back (NSFW)",
  15738. image: {
  15739. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15740. }
  15741. },
  15742. sideArmored: {
  15743. height: math.unit(10, "feet"),
  15744. weight: math.unit(800, "kg"),
  15745. name: "Side (Armored)",
  15746. image: {
  15747. source: "./media/characters/venio-darcony/side-armored.svg",
  15748. extra: 1373 / 1003,
  15749. bottom: 0.037
  15750. }
  15751. },
  15752. frontArmored: {
  15753. height: math.unit(19, "feet"),
  15754. weight: math.unit(900, "kg"),
  15755. name: "Front (Armored)",
  15756. image: {
  15757. source: "./media/characters/venio-darcony/front-armored.svg"
  15758. }
  15759. },
  15760. backArmored: {
  15761. height: math.unit(19, "feet"),
  15762. weight: math.unit(900, "kg"),
  15763. name: "Back (Armored)",
  15764. image: {
  15765. source: "./media/characters/venio-darcony/back-armored.svg"
  15766. }
  15767. },
  15768. sword: {
  15769. height: math.unit(10, "feet"),
  15770. weight: math.unit(50, "lb"),
  15771. name: "Sword",
  15772. image: {
  15773. source: "./media/characters/venio-darcony/sword.svg"
  15774. }
  15775. },
  15776. },
  15777. [
  15778. {
  15779. name: "Normal",
  15780. height: math.unit(10, "feet")
  15781. },
  15782. {
  15783. name: "Macro",
  15784. height: math.unit(130, "feet"),
  15785. default: true
  15786. },
  15787. {
  15788. name: "Macro+",
  15789. height: math.unit(240, "feet")
  15790. },
  15791. ]
  15792. ))
  15793. characterMakers.push(() => makeCharacter(
  15794. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15795. {
  15796. front: {
  15797. height: math.unit(6, "feet"),
  15798. weight: math.unit(150, "lb"),
  15799. name: "Front",
  15800. image: {
  15801. source: "./media/characters/veski/front.svg",
  15802. extra: 1299 / 1225,
  15803. bottom: 0.04
  15804. }
  15805. },
  15806. back: {
  15807. height: math.unit(6, "feet"),
  15808. weight: math.unit(150, "lb"),
  15809. name: "Back",
  15810. image: {
  15811. source: "./media/characters/veski/back.svg",
  15812. extra: 1299 / 1225,
  15813. bottom: 0.008
  15814. }
  15815. },
  15816. maw: {
  15817. height: math.unit(1.5 * 1.21, "feet"),
  15818. name: "Maw",
  15819. image: {
  15820. source: "./media/characters/veski/maw.svg"
  15821. }
  15822. },
  15823. },
  15824. [
  15825. {
  15826. name: "Macro",
  15827. height: math.unit(2, "km"),
  15828. default: true
  15829. },
  15830. ]
  15831. ))
  15832. characterMakers.push(() => makeCharacter(
  15833. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15834. {
  15835. front: {
  15836. height: math.unit(5 + 7 / 12, "feet"),
  15837. name: "Front",
  15838. image: {
  15839. source: "./media/characters/isabelle/front.svg",
  15840. extra: 2130 / 1976,
  15841. bottom: 0.05
  15842. }
  15843. },
  15844. },
  15845. [
  15846. {
  15847. name: "Supermicro",
  15848. height: math.unit(10, "micrometers")
  15849. },
  15850. {
  15851. name: "Micro",
  15852. height: math.unit(1, "inch")
  15853. },
  15854. {
  15855. name: "Tiny",
  15856. height: math.unit(5, "inches")
  15857. },
  15858. {
  15859. name: "Standard",
  15860. height: math.unit(5 + 7 / 12, "inches")
  15861. },
  15862. {
  15863. name: "Macro",
  15864. height: math.unit(80, "meters"),
  15865. default: true
  15866. },
  15867. {
  15868. name: "Megamacro",
  15869. height: math.unit(250, "meters")
  15870. },
  15871. {
  15872. name: "Gigamacro",
  15873. height: math.unit(5, "km")
  15874. },
  15875. {
  15876. name: "Cosmic",
  15877. height: math.unit(2.5e6, "miles")
  15878. },
  15879. ]
  15880. ))
  15881. characterMakers.push(() => makeCharacter(
  15882. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15883. {
  15884. front: {
  15885. height: math.unit(6, "feet"),
  15886. weight: math.unit(150, "lb"),
  15887. name: "Front",
  15888. image: {
  15889. source: "./media/characters/hanzo/front.svg",
  15890. extra: 374 / 344,
  15891. bottom: 0.02
  15892. }
  15893. },
  15894. },
  15895. [
  15896. {
  15897. name: "Normal",
  15898. height: math.unit(8, "feet"),
  15899. default: true
  15900. },
  15901. ]
  15902. ))
  15903. characterMakers.push(() => makeCharacter(
  15904. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15905. {
  15906. front: {
  15907. height: math.unit(7, "feet"),
  15908. weight: math.unit(130, "lb"),
  15909. name: "Front",
  15910. image: {
  15911. source: "./media/characters/anna/front.svg",
  15912. extra: 169 / 145,
  15913. bottom: 0.06
  15914. }
  15915. },
  15916. full: {
  15917. height: math.unit(4.96, "feet"),
  15918. weight: math.unit(220, "lb"),
  15919. name: "Full",
  15920. image: {
  15921. source: "./media/characters/anna/full.svg",
  15922. extra: 138 / 114,
  15923. bottom: 0.15
  15924. }
  15925. },
  15926. tongue: {
  15927. height: math.unit(2.53, "feet"),
  15928. name: "Tongue",
  15929. image: {
  15930. source: "./media/characters/anna/tongue.svg"
  15931. }
  15932. },
  15933. },
  15934. [
  15935. {
  15936. name: "Normal",
  15937. height: math.unit(7, "feet"),
  15938. default: true
  15939. },
  15940. ]
  15941. ))
  15942. characterMakers.push(() => makeCharacter(
  15943. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15944. {
  15945. front: {
  15946. height: math.unit(7, "feet"),
  15947. weight: math.unit(150, "lb"),
  15948. name: "Front",
  15949. image: {
  15950. source: "./media/characters/ian-corvid/front.svg",
  15951. extra: 150 / 142,
  15952. bottom: 0.02
  15953. }
  15954. },
  15955. back: {
  15956. height: math.unit(7, "feet"),
  15957. weight: math.unit(150, "lb"),
  15958. name: "Back",
  15959. image: {
  15960. source: "./media/characters/ian-corvid/back.svg",
  15961. extra: 150 / 143,
  15962. bottom: 0.01
  15963. }
  15964. },
  15965. stomping: {
  15966. height: math.unit(7, "feet"),
  15967. weight: math.unit(150, "lb"),
  15968. name: "Stomping",
  15969. image: {
  15970. source: "./media/characters/ian-corvid/stomping.svg",
  15971. extra: 76 / 72
  15972. }
  15973. },
  15974. sitting: {
  15975. height: math.unit(7 / 1.8, "feet"),
  15976. weight: math.unit(150, "lb"),
  15977. name: "Sitting",
  15978. image: {
  15979. source: "./media/characters/ian-corvid/sitting.svg",
  15980. extra: 1400 / 1269,
  15981. bottom: 0.15
  15982. }
  15983. },
  15984. },
  15985. [
  15986. {
  15987. name: "Tiny Microw",
  15988. height: math.unit(1, "inch")
  15989. },
  15990. {
  15991. name: "Microw",
  15992. height: math.unit(6, "inches")
  15993. },
  15994. {
  15995. name: "Crow",
  15996. height: math.unit(7 + 1 / 12, "feet"),
  15997. default: true
  15998. },
  15999. {
  16000. name: "Macrow",
  16001. height: math.unit(176, "feet")
  16002. },
  16003. ]
  16004. ))
  16005. characterMakers.push(() => makeCharacter(
  16006. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16007. {
  16008. front: {
  16009. height: math.unit(5 + 7 / 12, "feet"),
  16010. weight: math.unit(147, "lb"),
  16011. name: "Front",
  16012. image: {
  16013. source: "./media/characters/natalie-kellon/front.svg",
  16014. extra: 1214 / 1141,
  16015. bottom: 0.02
  16016. }
  16017. },
  16018. },
  16019. [
  16020. {
  16021. name: "Micro",
  16022. height: math.unit(1 / 16, "inch")
  16023. },
  16024. {
  16025. name: "Tiny",
  16026. height: math.unit(4, "inches")
  16027. },
  16028. {
  16029. name: "Normal",
  16030. height: math.unit(5 + 7 / 12, "feet"),
  16031. default: true
  16032. },
  16033. {
  16034. name: "Amazon",
  16035. height: math.unit(12, "feet")
  16036. },
  16037. {
  16038. name: "Giantess",
  16039. height: math.unit(160, "meters")
  16040. },
  16041. {
  16042. name: "Titaness",
  16043. height: math.unit(800, "meters")
  16044. },
  16045. ]
  16046. ))
  16047. characterMakers.push(() => makeCharacter(
  16048. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16049. {
  16050. front: {
  16051. height: math.unit(6, "feet"),
  16052. weight: math.unit(150, "lb"),
  16053. name: "Front",
  16054. image: {
  16055. source: "./media/characters/alluria/front.svg",
  16056. extra: 806 / 738,
  16057. bottom: 0.01
  16058. }
  16059. },
  16060. side: {
  16061. height: math.unit(6, "feet"),
  16062. weight: math.unit(150, "lb"),
  16063. name: "Side",
  16064. image: {
  16065. source: "./media/characters/alluria/side.svg",
  16066. extra: 800 / 750,
  16067. }
  16068. },
  16069. back: {
  16070. height: math.unit(6, "feet"),
  16071. weight: math.unit(150, "lb"),
  16072. name: "Back",
  16073. image: {
  16074. source: "./media/characters/alluria/back.svg",
  16075. extra: 806 / 738,
  16076. }
  16077. },
  16078. frontMaid: {
  16079. height: math.unit(6, "feet"),
  16080. weight: math.unit(150, "lb"),
  16081. name: "Front (Maid)",
  16082. image: {
  16083. source: "./media/characters/alluria/front-maid.svg",
  16084. extra: 806 / 738,
  16085. bottom: 0.01
  16086. }
  16087. },
  16088. sideMaid: {
  16089. height: math.unit(6, "feet"),
  16090. weight: math.unit(150, "lb"),
  16091. name: "Side (Maid)",
  16092. image: {
  16093. source: "./media/characters/alluria/side-maid.svg",
  16094. extra: 800 / 750,
  16095. bottom: 0.005
  16096. }
  16097. },
  16098. backMaid: {
  16099. height: math.unit(6, "feet"),
  16100. weight: math.unit(150, "lb"),
  16101. name: "Back (Maid)",
  16102. image: {
  16103. source: "./media/characters/alluria/back-maid.svg",
  16104. extra: 806 / 738,
  16105. }
  16106. },
  16107. },
  16108. [
  16109. {
  16110. name: "Micro",
  16111. height: math.unit(6, "inches"),
  16112. default: true
  16113. },
  16114. ]
  16115. ))
  16116. characterMakers.push(() => makeCharacter(
  16117. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16118. {
  16119. front: {
  16120. height: math.unit(6, "feet"),
  16121. weight: math.unit(150, "lb"),
  16122. name: "Front",
  16123. image: {
  16124. source: "./media/characters/kyle/front.svg",
  16125. extra: 1069 / 962,
  16126. bottom: 77.228 / 1727.45
  16127. }
  16128. },
  16129. },
  16130. [
  16131. {
  16132. name: "Macro",
  16133. height: math.unit(150, "feet"),
  16134. default: true
  16135. },
  16136. ]
  16137. ))
  16138. characterMakers.push(() => makeCharacter(
  16139. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16140. {
  16141. front: {
  16142. height: math.unit(6, "feet"),
  16143. weight: math.unit(300, "lb"),
  16144. name: "Front",
  16145. image: {
  16146. source: "./media/characters/duncan/front.svg",
  16147. extra: 1650 / 1482,
  16148. bottom: 0.05
  16149. }
  16150. },
  16151. },
  16152. [
  16153. {
  16154. name: "Macro",
  16155. height: math.unit(100, "feet"),
  16156. default: true
  16157. },
  16158. ]
  16159. ))
  16160. characterMakers.push(() => makeCharacter(
  16161. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16162. {
  16163. front: {
  16164. height: math.unit(5 + 4 / 12, "feet"),
  16165. weight: math.unit(220, "lb"),
  16166. name: "Front",
  16167. image: {
  16168. source: "./media/characters/memory/front.svg",
  16169. extra: 3641 / 3545,
  16170. bottom: 0.03
  16171. }
  16172. },
  16173. back: {
  16174. height: math.unit(5 + 4 / 12, "feet"),
  16175. weight: math.unit(220, "lb"),
  16176. name: "Back",
  16177. image: {
  16178. source: "./media/characters/memory/back.svg",
  16179. extra: 3641 / 3545,
  16180. bottom: 0.025
  16181. }
  16182. },
  16183. frontSkirt: {
  16184. height: math.unit(5 + 4 / 12, "feet"),
  16185. weight: math.unit(220, "lb"),
  16186. name: "Front (Skirt)",
  16187. image: {
  16188. source: "./media/characters/memory/front-skirt.svg",
  16189. extra: 3641 / 3545,
  16190. bottom: 0.03
  16191. }
  16192. },
  16193. frontDress: {
  16194. height: math.unit(5 + 4 / 12, "feet"),
  16195. weight: math.unit(220, "lb"),
  16196. name: "Front (Dress)",
  16197. image: {
  16198. source: "./media/characters/memory/front-dress.svg",
  16199. extra: 3641 / 3545,
  16200. bottom: 0.03
  16201. }
  16202. },
  16203. },
  16204. [
  16205. {
  16206. name: "Micro",
  16207. height: math.unit(6, "inches"),
  16208. default: true
  16209. },
  16210. {
  16211. name: "Normal",
  16212. height: math.unit(5 + 4 / 12, "feet")
  16213. },
  16214. ]
  16215. ))
  16216. characterMakers.push(() => makeCharacter(
  16217. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16218. {
  16219. front: {
  16220. height: math.unit(4 + 11 / 12, "feet"),
  16221. weight: math.unit(100, "lb"),
  16222. name: "Front",
  16223. image: {
  16224. source: "./media/characters/luno/front.svg",
  16225. extra: 1535 / 1487,
  16226. bottom: 0.03
  16227. }
  16228. },
  16229. },
  16230. [
  16231. {
  16232. name: "Micro",
  16233. height: math.unit(3, "inches")
  16234. },
  16235. {
  16236. name: "Normal",
  16237. height: math.unit(4 + 11 / 12, "feet"),
  16238. default: true
  16239. },
  16240. {
  16241. name: "Macro",
  16242. height: math.unit(300, "feet")
  16243. },
  16244. {
  16245. name: "Megamacro",
  16246. height: math.unit(700, "miles")
  16247. },
  16248. ]
  16249. ))
  16250. characterMakers.push(() => makeCharacter(
  16251. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16252. {
  16253. front: {
  16254. height: math.unit(6 + 2 / 12, "feet"),
  16255. weight: math.unit(170, "lb"),
  16256. name: "Front",
  16257. image: {
  16258. source: "./media/characters/jamesy/front.svg",
  16259. extra: 440 / 382,
  16260. bottom: 0.005
  16261. }
  16262. },
  16263. },
  16264. [
  16265. {
  16266. name: "Micro",
  16267. height: math.unit(3, "inches")
  16268. },
  16269. {
  16270. name: "Normal",
  16271. height: math.unit(6 + 2 / 12, "feet"),
  16272. default: true
  16273. },
  16274. {
  16275. name: "Macro",
  16276. height: math.unit(300, "feet")
  16277. },
  16278. {
  16279. name: "Megamacro",
  16280. height: math.unit(700, "miles")
  16281. },
  16282. ]
  16283. ))
  16284. characterMakers.push(() => makeCharacter(
  16285. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16286. {
  16287. front: {
  16288. height: math.unit(6, "feet"),
  16289. weight: math.unit(160, "lb"),
  16290. name: "Front",
  16291. image: {
  16292. source: "./media/characters/mark/front.svg",
  16293. extra: 3300 / 3100,
  16294. bottom: 136.42 / 3440.47
  16295. }
  16296. },
  16297. },
  16298. [
  16299. {
  16300. name: "Macro",
  16301. height: math.unit(120, "meters")
  16302. },
  16303. {
  16304. name: "Bigger Macro",
  16305. height: math.unit(350, "meters")
  16306. },
  16307. {
  16308. name: "Megamacro",
  16309. height: math.unit(8, "km"),
  16310. default: true
  16311. },
  16312. {
  16313. name: "Continental",
  16314. height: math.unit(4550, "km")
  16315. },
  16316. {
  16317. name: "Planetary",
  16318. height: math.unit(65000, "km")
  16319. },
  16320. ]
  16321. ))
  16322. characterMakers.push(() => makeCharacter(
  16323. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16324. {
  16325. front: {
  16326. height: math.unit(6, "feet"),
  16327. weight: math.unit(400, "lb"),
  16328. name: "Front",
  16329. image: {
  16330. source: "./media/characters/mac/front.svg",
  16331. extra: 1048 / 987.7,
  16332. bottom: 60 / 1107.6,
  16333. }
  16334. },
  16335. },
  16336. [
  16337. {
  16338. name: "Macro",
  16339. height: math.unit(500, "feet"),
  16340. default: true
  16341. },
  16342. ]
  16343. ))
  16344. characterMakers.push(() => makeCharacter(
  16345. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16346. {
  16347. front: {
  16348. height: math.unit(5 + 2 / 12, "feet"),
  16349. weight: math.unit(190, "lb"),
  16350. name: "Front",
  16351. image: {
  16352. source: "./media/characters/bari/front.svg",
  16353. extra: 3156 / 2880,
  16354. bottom: 0.03
  16355. }
  16356. },
  16357. back: {
  16358. height: math.unit(5 + 2 / 12, "feet"),
  16359. weight: math.unit(190, "lb"),
  16360. name: "Back",
  16361. image: {
  16362. source: "./media/characters/bari/back.svg",
  16363. extra: 3260 / 2834,
  16364. bottom: 0.025
  16365. }
  16366. },
  16367. frontPlush: {
  16368. height: math.unit(5 + 2 / 12, "feet"),
  16369. weight: math.unit(190, "lb"),
  16370. name: "Front (Plush)",
  16371. image: {
  16372. source: "./media/characters/bari/front-plush.svg",
  16373. extra: 1112 / 1061,
  16374. bottom: 0.002
  16375. }
  16376. },
  16377. },
  16378. [
  16379. {
  16380. name: "Micro",
  16381. height: math.unit(3, "inches")
  16382. },
  16383. {
  16384. name: "Normal",
  16385. height: math.unit(5 + 2 / 12, "feet"),
  16386. default: true
  16387. },
  16388. {
  16389. name: "Macro",
  16390. height: math.unit(20, "feet")
  16391. },
  16392. ]
  16393. ))
  16394. characterMakers.push(() => makeCharacter(
  16395. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16396. {
  16397. front: {
  16398. height: math.unit(6 + 1 / 12, "feet"),
  16399. weight: math.unit(275, "lb"),
  16400. name: "Front",
  16401. image: {
  16402. source: "./media/characters/hunter-misha-raven/front.svg"
  16403. }
  16404. },
  16405. },
  16406. [
  16407. {
  16408. name: "Mortal",
  16409. height: math.unit(6 + 1 / 12, "feet")
  16410. },
  16411. {
  16412. name: "Divine",
  16413. height: math.unit(1.12134e34, "parsecs"),
  16414. default: true
  16415. },
  16416. ]
  16417. ))
  16418. characterMakers.push(() => makeCharacter(
  16419. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16420. {
  16421. front: {
  16422. height: math.unit(6 + 3 / 12, "feet"),
  16423. weight: math.unit(220, "lb"),
  16424. name: "Front",
  16425. image: {
  16426. source: "./media/characters/max-calore/front.svg",
  16427. extra: 1700 / 1648,
  16428. bottom: 0.01
  16429. }
  16430. },
  16431. back: {
  16432. height: math.unit(6 + 3 / 12, "feet"),
  16433. weight: math.unit(220, "lb"),
  16434. name: "Back",
  16435. image: {
  16436. source: "./media/characters/max-calore/back.svg",
  16437. extra: 1700 / 1648,
  16438. bottom: 0.01
  16439. }
  16440. },
  16441. },
  16442. [
  16443. {
  16444. name: "Normal",
  16445. height: math.unit(6 + 3 / 12, "feet"),
  16446. default: true
  16447. },
  16448. ]
  16449. ))
  16450. characterMakers.push(() => makeCharacter(
  16451. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16452. {
  16453. side: {
  16454. height: math.unit(2 + 8 / 12, "feet"),
  16455. weight: math.unit(99, "lb"),
  16456. name: "Side",
  16457. image: {
  16458. source: "./media/characters/aspen/side.svg",
  16459. extra: 152 / 138,
  16460. bottom: 0.032
  16461. }
  16462. },
  16463. },
  16464. [
  16465. {
  16466. name: "Normal",
  16467. height: math.unit(2 + 8 / 12, "feet"),
  16468. default: true
  16469. },
  16470. ]
  16471. ))
  16472. characterMakers.push(() => makeCharacter(
  16473. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16474. {
  16475. side: {
  16476. height: math.unit(3 + 2 / 12, "feet"),
  16477. weight: math.unit(224, "lb"),
  16478. name: "Side",
  16479. image: {
  16480. source: "./media/characters/sheila-feral-wolf/side.svg",
  16481. extra: 179 / 166,
  16482. bottom: 0.03
  16483. }
  16484. },
  16485. },
  16486. [
  16487. {
  16488. name: "Normal",
  16489. height: math.unit(3 + 2 / 12, "feet"),
  16490. default: true
  16491. },
  16492. ]
  16493. ))
  16494. characterMakers.push(() => makeCharacter(
  16495. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16496. {
  16497. side: {
  16498. height: math.unit(1 + 9 / 12, "feet"),
  16499. weight: math.unit(38, "lb"),
  16500. name: "Side",
  16501. image: {
  16502. source: "./media/characters/michelle/side.svg",
  16503. extra: 147 / 136.7,
  16504. bottom: 0.03
  16505. }
  16506. },
  16507. },
  16508. [
  16509. {
  16510. name: "Normal",
  16511. height: math.unit(1 + 9 / 12, "feet"),
  16512. default: true
  16513. },
  16514. ]
  16515. ))
  16516. characterMakers.push(() => makeCharacter(
  16517. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16518. {
  16519. front: {
  16520. height: math.unit(1 + 1 / 12, "feet"),
  16521. weight: math.unit(18, "lb"),
  16522. name: "Front",
  16523. image: {
  16524. source: "./media/characters/nino/front.svg"
  16525. }
  16526. },
  16527. },
  16528. [
  16529. {
  16530. name: "Normal",
  16531. height: math.unit(1 + 1 / 12, "feet"),
  16532. default: true
  16533. },
  16534. ]
  16535. ))
  16536. characterMakers.push(() => makeCharacter(
  16537. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16538. {
  16539. front: {
  16540. height: math.unit(1, "feet"),
  16541. weight: math.unit(16, "lb"),
  16542. name: "Front",
  16543. image: {
  16544. source: "./media/characters/viola/front.svg"
  16545. }
  16546. },
  16547. },
  16548. [
  16549. {
  16550. name: "Normal",
  16551. height: math.unit(1, "feet"),
  16552. default: true
  16553. },
  16554. ]
  16555. ))
  16556. characterMakers.push(() => makeCharacter(
  16557. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16558. {
  16559. front: {
  16560. height: math.unit(6 + 5 / 12, "feet"),
  16561. weight: math.unit(580, "lb"),
  16562. name: "Front",
  16563. image: {
  16564. source: "./media/characters/atlas/front.svg",
  16565. extra: 298.5 / 290,
  16566. bottom: 0.015
  16567. }
  16568. },
  16569. },
  16570. [
  16571. {
  16572. name: "Normal",
  16573. height: math.unit(6 + 5 / 12, "feet"),
  16574. default: true
  16575. },
  16576. ]
  16577. ))
  16578. characterMakers.push(() => makeCharacter(
  16579. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16580. {
  16581. side: {
  16582. height: math.unit(1 + 10 / 12, "feet"),
  16583. weight: math.unit(25, "lb"),
  16584. name: "Side",
  16585. image: {
  16586. source: "./media/characters/davy/side.svg",
  16587. extra: 200 / 170,
  16588. bottom: 0.01
  16589. }
  16590. },
  16591. },
  16592. [
  16593. {
  16594. name: "Normal",
  16595. height: math.unit(1 + 10 / 12, "feet"),
  16596. default: true
  16597. },
  16598. ]
  16599. ))
  16600. characterMakers.push(() => makeCharacter(
  16601. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16602. {
  16603. side: {
  16604. height: math.unit(4 + 8 / 12, "feet"),
  16605. weight: math.unit(166, "lb"),
  16606. name: "Side",
  16607. image: {
  16608. source: "./media/characters/fiona/side.svg",
  16609. extra: 232 / 220,
  16610. bottom: 0.03
  16611. }
  16612. },
  16613. },
  16614. [
  16615. {
  16616. name: "Normal",
  16617. height: math.unit(4 + 8 / 12, "feet"),
  16618. default: true
  16619. },
  16620. ]
  16621. ))
  16622. characterMakers.push(() => makeCharacter(
  16623. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16624. {
  16625. front: {
  16626. height: math.unit(2, "feet"),
  16627. weight: math.unit(62, "lb"),
  16628. name: "Front",
  16629. image: {
  16630. source: "./media/characters/lyla/front.svg",
  16631. bottom: 0.1
  16632. }
  16633. },
  16634. },
  16635. [
  16636. {
  16637. name: "Normal",
  16638. height: math.unit(2, "feet"),
  16639. default: true
  16640. },
  16641. ]
  16642. ))
  16643. characterMakers.push(() => makeCharacter(
  16644. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16645. {
  16646. side: {
  16647. height: math.unit(1.8, "feet"),
  16648. weight: math.unit(44, "lb"),
  16649. name: "Side",
  16650. image: {
  16651. source: "./media/characters/perseus/side.svg",
  16652. bottom: 0.21
  16653. }
  16654. },
  16655. },
  16656. [
  16657. {
  16658. name: "Normal",
  16659. height: math.unit(1.8, "feet"),
  16660. default: true
  16661. },
  16662. ]
  16663. ))
  16664. characterMakers.push(() => makeCharacter(
  16665. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16666. {
  16667. side: {
  16668. height: math.unit(4 + 2 / 12, "feet"),
  16669. weight: math.unit(20, "lb"),
  16670. name: "Side",
  16671. image: {
  16672. source: "./media/characters/remus/side.svg"
  16673. }
  16674. },
  16675. },
  16676. [
  16677. {
  16678. name: "Normal",
  16679. height: math.unit(4 + 2 / 12, "feet"),
  16680. default: true
  16681. },
  16682. ]
  16683. ))
  16684. characterMakers.push(() => makeCharacter(
  16685. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16686. {
  16687. front: {
  16688. height: math.unit(4 + 11 / 12, "feet"),
  16689. weight: math.unit(114, "lb"),
  16690. name: "Front",
  16691. image: {
  16692. source: "./media/characters/raf/front.svg",
  16693. bottom: 20.5 / 1863
  16694. }
  16695. },
  16696. side: {
  16697. height: math.unit(4 + 11 / 12, "feet"),
  16698. weight: math.unit(114, "lb"),
  16699. name: "Side",
  16700. image: {
  16701. source: "./media/characters/raf/side.svg",
  16702. bottom: 22 / 1822
  16703. }
  16704. },
  16705. },
  16706. [
  16707. {
  16708. name: "Micro",
  16709. height: math.unit(2, "inches")
  16710. },
  16711. {
  16712. name: "Normal",
  16713. height: math.unit(4 + 11 / 12, "feet"),
  16714. default: true
  16715. },
  16716. {
  16717. name: "Macro",
  16718. height: math.unit(70, "feet")
  16719. },
  16720. ]
  16721. ))
  16722. characterMakers.push(() => makeCharacter(
  16723. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16724. {
  16725. front: {
  16726. height: math.unit(1.5, "meters"),
  16727. weight: math.unit(68, "kg"),
  16728. name: "Front",
  16729. image: {
  16730. source: "./media/characters/liam-einarr/front.svg",
  16731. extra: 2822 / 2666
  16732. }
  16733. },
  16734. back: {
  16735. height: math.unit(1.5, "meters"),
  16736. weight: math.unit(68, "kg"),
  16737. name: "Back",
  16738. image: {
  16739. source: "./media/characters/liam-einarr/back.svg",
  16740. extra: 2822 / 2666,
  16741. bottom: 0.015
  16742. }
  16743. },
  16744. },
  16745. [
  16746. {
  16747. name: "Normal",
  16748. height: math.unit(1.5, "meters"),
  16749. default: true
  16750. },
  16751. {
  16752. name: "Macro",
  16753. height: math.unit(150, "meters")
  16754. },
  16755. {
  16756. name: "Megamacro",
  16757. height: math.unit(35, "km")
  16758. },
  16759. ]
  16760. ))
  16761. characterMakers.push(() => makeCharacter(
  16762. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16763. {
  16764. front: {
  16765. height: math.unit(6, "feet"),
  16766. weight: math.unit(75, "kg"),
  16767. name: "Front",
  16768. image: {
  16769. source: "./media/characters/linda/front.svg",
  16770. extra: 930 / 874,
  16771. bottom: 0.004
  16772. }
  16773. },
  16774. },
  16775. [
  16776. {
  16777. name: "Normal",
  16778. height: math.unit(6, "feet"),
  16779. default: true
  16780. },
  16781. ]
  16782. ))
  16783. characterMakers.push(() => makeCharacter(
  16784. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16785. {
  16786. front: {
  16787. height: math.unit(6 + 8 / 12, "feet"),
  16788. weight: math.unit(220, "lb"),
  16789. name: "Front",
  16790. image: {
  16791. source: "./media/characters/caylex/front.svg",
  16792. extra: 821 / 772,
  16793. bottom: 0.07
  16794. }
  16795. },
  16796. back: {
  16797. height: math.unit(6 + 8 / 12, "feet"),
  16798. weight: math.unit(220, "lb"),
  16799. name: "Back",
  16800. image: {
  16801. source: "./media/characters/caylex/back.svg",
  16802. extra: 821 / 772,
  16803. bottom: 0.022
  16804. }
  16805. },
  16806. hand: {
  16807. height: math.unit(1.25, "feet"),
  16808. name: "Hand",
  16809. image: {
  16810. source: "./media/characters/caylex/hand.svg"
  16811. }
  16812. },
  16813. foot: {
  16814. height: math.unit(1.6, "feet"),
  16815. name: "Foot",
  16816. image: {
  16817. source: "./media/characters/caylex/foot.svg"
  16818. }
  16819. },
  16820. armored: {
  16821. height: math.unit(6 + 8 / 12, "feet"),
  16822. weight: math.unit(250, "lb"),
  16823. name: "Armored",
  16824. image: {
  16825. source: "./media/characters/caylex/armored.svg",
  16826. extra: 1420 / 1310,
  16827. bottom: 0.045
  16828. }
  16829. },
  16830. },
  16831. [
  16832. {
  16833. name: "Normal",
  16834. height: math.unit(6 + 8 / 12, "feet"),
  16835. default: true
  16836. },
  16837. {
  16838. name: "Normal+",
  16839. height: math.unit(12, "feet")
  16840. },
  16841. ]
  16842. ))
  16843. characterMakers.push(() => makeCharacter(
  16844. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16845. {
  16846. front: {
  16847. height: math.unit(7 + 6 / 12, "feet"),
  16848. weight: math.unit(288, "lb"),
  16849. name: "Front",
  16850. image: {
  16851. source: "./media/characters/alana/front.svg",
  16852. extra: 679 / 653,
  16853. bottom: 22.5 / 701
  16854. }
  16855. },
  16856. },
  16857. [
  16858. {
  16859. name: "Normal",
  16860. height: math.unit(7 + 6 / 12, "feet")
  16861. },
  16862. {
  16863. name: "Large",
  16864. height: math.unit(50, "feet")
  16865. },
  16866. {
  16867. name: "Macro",
  16868. height: math.unit(100, "feet"),
  16869. default: true
  16870. },
  16871. {
  16872. name: "Macro+",
  16873. height: math.unit(200, "feet")
  16874. },
  16875. ]
  16876. ))
  16877. characterMakers.push(() => makeCharacter(
  16878. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16879. {
  16880. front: {
  16881. height: math.unit(6 + 1 / 12, "feet"),
  16882. weight: math.unit(210, "lb"),
  16883. name: "Front",
  16884. image: {
  16885. source: "./media/characters/hasani/front.svg",
  16886. extra: 244 / 232,
  16887. bottom: 0.01
  16888. }
  16889. },
  16890. back: {
  16891. height: math.unit(6 + 1 / 12, "feet"),
  16892. weight: math.unit(210, "lb"),
  16893. name: "Back",
  16894. image: {
  16895. source: "./media/characters/hasani/back.svg",
  16896. extra: 244 / 232,
  16897. bottom: 0.01
  16898. }
  16899. },
  16900. },
  16901. [
  16902. {
  16903. name: "Normal",
  16904. height: math.unit(6 + 1 / 12, "feet")
  16905. },
  16906. {
  16907. name: "Macro",
  16908. height: math.unit(175, "feet"),
  16909. default: true
  16910. },
  16911. ]
  16912. ))
  16913. characterMakers.push(() => makeCharacter(
  16914. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16915. {
  16916. front: {
  16917. height: math.unit(1.82, "meters"),
  16918. weight: math.unit(140, "lb"),
  16919. name: "Front",
  16920. image: {
  16921. source: "./media/characters/nita/front.svg",
  16922. extra: 2473 / 2363,
  16923. bottom: 0.01
  16924. }
  16925. },
  16926. },
  16927. [
  16928. {
  16929. name: "Normal",
  16930. height: math.unit(1.82, "m")
  16931. },
  16932. {
  16933. name: "Macro",
  16934. height: math.unit(300, "m")
  16935. },
  16936. {
  16937. name: "Mistake Canon",
  16938. height: math.unit(0.5, "miles"),
  16939. default: true
  16940. },
  16941. {
  16942. name: "Big Mistake",
  16943. height: math.unit(13, "miles")
  16944. },
  16945. {
  16946. name: "Playing God",
  16947. height: math.unit(2450, "miles")
  16948. },
  16949. ]
  16950. ))
  16951. characterMakers.push(() => makeCharacter(
  16952. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16953. {
  16954. front: {
  16955. height: math.unit(4, "feet"),
  16956. weight: math.unit(120, "lb"),
  16957. name: "Front",
  16958. image: {
  16959. source: "./media/characters/shiriko/front.svg",
  16960. extra: 195 / 188
  16961. }
  16962. },
  16963. },
  16964. [
  16965. {
  16966. name: "Normal",
  16967. height: math.unit(4, "feet"),
  16968. default: true
  16969. },
  16970. ]
  16971. ))
  16972. characterMakers.push(() => makeCharacter(
  16973. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16974. {
  16975. front: {
  16976. height: math.unit(6, "feet"),
  16977. name: "front",
  16978. image: {
  16979. source: "./media/characters/deja/front.svg",
  16980. extra: 926 / 840,
  16981. bottom: 0.07
  16982. }
  16983. },
  16984. },
  16985. [
  16986. {
  16987. name: "Planck Length",
  16988. height: math.unit(1.6e-35, "meters")
  16989. },
  16990. {
  16991. name: "Normal",
  16992. height: math.unit(30.48, "meters"),
  16993. default: true
  16994. },
  16995. {
  16996. name: "Universal",
  16997. height: math.unit(8.8e26, "meters")
  16998. },
  16999. ]
  17000. ))
  17001. characterMakers.push(() => makeCharacter(
  17002. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17003. {
  17004. side: {
  17005. height: math.unit(8, "feet"),
  17006. weight: math.unit(6300, "lb"),
  17007. name: "Side",
  17008. image: {
  17009. source: "./media/characters/anima/side.svg",
  17010. bottom: 0.035
  17011. }
  17012. },
  17013. },
  17014. [
  17015. {
  17016. name: "Normal",
  17017. height: math.unit(8, "feet"),
  17018. default: true
  17019. },
  17020. ]
  17021. ))
  17022. characterMakers.push(() => makeCharacter(
  17023. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17024. {
  17025. front: {
  17026. height: math.unit(8, "feet"),
  17027. weight: math.unit(350, "lb"),
  17028. name: "Front",
  17029. image: {
  17030. source: "./media/characters/bianca/front.svg",
  17031. extra: 234 / 225,
  17032. bottom: 0.03
  17033. }
  17034. },
  17035. },
  17036. [
  17037. {
  17038. name: "Normal",
  17039. height: math.unit(8, "feet"),
  17040. default: true
  17041. },
  17042. ]
  17043. ))
  17044. characterMakers.push(() => makeCharacter(
  17045. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17046. {
  17047. front: {
  17048. height: math.unit(6, "feet"),
  17049. weight: math.unit(150, "lb"),
  17050. name: "Front",
  17051. image: {
  17052. source: "./media/characters/adinia/front.svg",
  17053. extra: 1845 / 1672,
  17054. bottom: 0.02
  17055. }
  17056. },
  17057. back: {
  17058. height: math.unit(6, "feet"),
  17059. weight: math.unit(150, "lb"),
  17060. name: "Back",
  17061. image: {
  17062. source: "./media/characters/adinia/back.svg",
  17063. extra: 1845 / 1672,
  17064. bottom: 0.002
  17065. }
  17066. },
  17067. },
  17068. [
  17069. {
  17070. name: "Normal",
  17071. height: math.unit(11 + 5 / 12, "feet"),
  17072. default: true
  17073. },
  17074. ]
  17075. ))
  17076. characterMakers.push(() => makeCharacter(
  17077. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17078. {
  17079. front: {
  17080. height: math.unit(3, "meters"),
  17081. weight: math.unit(200, "kg"),
  17082. name: "Front",
  17083. image: {
  17084. source: "./media/characters/lykasa/front.svg",
  17085. extra: 1076 / 976,
  17086. bottom: 0.06
  17087. }
  17088. },
  17089. },
  17090. [
  17091. {
  17092. name: "Normal",
  17093. height: math.unit(3, "meters")
  17094. },
  17095. {
  17096. name: "Kaiju",
  17097. height: math.unit(120, "meters"),
  17098. default: true
  17099. },
  17100. {
  17101. name: "Mega Kaiju",
  17102. height: math.unit(240, "km")
  17103. },
  17104. {
  17105. name: "Giga Kaiju",
  17106. height: math.unit(400, "megameters")
  17107. },
  17108. {
  17109. name: "Tera Kaiju",
  17110. height: math.unit(800, "gigameters")
  17111. },
  17112. {
  17113. name: "Kaiju Dragon Goddess",
  17114. height: math.unit(26, "zettaparsecs")
  17115. },
  17116. ]
  17117. ))
  17118. characterMakers.push(() => makeCharacter(
  17119. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17120. {
  17121. side: {
  17122. height: math.unit(283 / 124 * 6, "feet"),
  17123. weight: math.unit(35000, "lb"),
  17124. name: "Side",
  17125. image: {
  17126. source: "./media/characters/malfaren/side.svg",
  17127. extra: 2500 / 1010,
  17128. bottom: 0.01
  17129. }
  17130. },
  17131. front: {
  17132. height: math.unit(22.36, "feet"),
  17133. weight: math.unit(35000, "lb"),
  17134. name: "Front",
  17135. image: {
  17136. source: "./media/characters/malfaren/front.svg",
  17137. extra: 1631 / 1476,
  17138. bottom: 0.01
  17139. }
  17140. },
  17141. maw: {
  17142. height: math.unit(6.9, "feet"),
  17143. name: "Maw",
  17144. image: {
  17145. source: "./media/characters/malfaren/maw.svg"
  17146. }
  17147. },
  17148. },
  17149. [
  17150. {
  17151. name: "Big",
  17152. height: math.unit(283 / 162 * 6, "feet"),
  17153. },
  17154. {
  17155. name: "Bigger",
  17156. height: math.unit(283 / 124 * 6, "feet")
  17157. },
  17158. {
  17159. name: "Massive",
  17160. height: math.unit(283 / 92 * 6, "feet"),
  17161. default: true
  17162. },
  17163. {
  17164. name: "👀💦",
  17165. height: math.unit(283 / 73 * 6, "feet"),
  17166. },
  17167. ]
  17168. ))
  17169. characterMakers.push(() => makeCharacter(
  17170. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17171. {
  17172. front: {
  17173. height: math.unit(1.7, "m"),
  17174. weight: math.unit(70, "kg"),
  17175. name: "Front",
  17176. image: {
  17177. source: "./media/characters/kernel/front.svg",
  17178. extra: 222 / 210,
  17179. bottom: 0.007
  17180. }
  17181. },
  17182. },
  17183. [
  17184. {
  17185. name: "Nano",
  17186. height: math.unit(17, "micrometers")
  17187. },
  17188. {
  17189. name: "Micro",
  17190. height: math.unit(1.7, "mm")
  17191. },
  17192. {
  17193. name: "Small",
  17194. height: math.unit(1.7, "cm")
  17195. },
  17196. {
  17197. name: "Normal",
  17198. height: math.unit(1.7, "m"),
  17199. default: true
  17200. },
  17201. ]
  17202. ))
  17203. characterMakers.push(() => makeCharacter(
  17204. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17205. {
  17206. front: {
  17207. height: math.unit(1.75, "meters"),
  17208. weight: math.unit(65, "kg"),
  17209. name: "Front",
  17210. image: {
  17211. source: "./media/characters/jayne-folest/front.svg",
  17212. extra: 2115 / 2007,
  17213. bottom: 0.02
  17214. }
  17215. },
  17216. back: {
  17217. height: math.unit(1.75, "meters"),
  17218. weight: math.unit(65, "kg"),
  17219. name: "Back",
  17220. image: {
  17221. source: "./media/characters/jayne-folest/back.svg",
  17222. extra: 2115 / 2007,
  17223. bottom: 0.005
  17224. }
  17225. },
  17226. frontClothed: {
  17227. height: math.unit(1.75, "meters"),
  17228. weight: math.unit(65, "kg"),
  17229. name: "Front (Clothed)",
  17230. image: {
  17231. source: "./media/characters/jayne-folest/front-clothed.svg",
  17232. extra: 2115 / 2007,
  17233. bottom: 0.035
  17234. }
  17235. },
  17236. hand: {
  17237. height: math.unit(1 / 1.260, "feet"),
  17238. name: "Hand",
  17239. image: {
  17240. source: "./media/characters/jayne-folest/hand.svg"
  17241. }
  17242. },
  17243. foot: {
  17244. height: math.unit(1 / 0.918, "feet"),
  17245. name: "Foot",
  17246. image: {
  17247. source: "./media/characters/jayne-folest/foot.svg"
  17248. }
  17249. },
  17250. },
  17251. [
  17252. {
  17253. name: "Micro",
  17254. height: math.unit(4, "cm")
  17255. },
  17256. {
  17257. name: "Normal",
  17258. height: math.unit(1.75, "meters")
  17259. },
  17260. {
  17261. name: "Macro",
  17262. height: math.unit(47.5, "meters"),
  17263. default: true
  17264. },
  17265. ]
  17266. ))
  17267. characterMakers.push(() => makeCharacter(
  17268. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17269. {
  17270. front: {
  17271. height: math.unit(180, "cm"),
  17272. weight: math.unit(70, "kg"),
  17273. name: "Front",
  17274. image: {
  17275. source: "./media/characters/algier/front.svg",
  17276. extra: 596 / 572,
  17277. bottom: 0.04
  17278. }
  17279. },
  17280. back: {
  17281. height: math.unit(180, "cm"),
  17282. weight: math.unit(70, "kg"),
  17283. name: "Back",
  17284. image: {
  17285. source: "./media/characters/algier/back.svg",
  17286. extra: 596 / 572,
  17287. bottom: 0.025
  17288. }
  17289. },
  17290. frontdressed: {
  17291. height: math.unit(180, "cm"),
  17292. weight: math.unit(150, "kg"),
  17293. name: "Front-dressed",
  17294. image: {
  17295. source: "./media/characters/algier/front-dressed.svg",
  17296. extra: 596 / 572,
  17297. bottom: 0.038
  17298. }
  17299. },
  17300. },
  17301. [
  17302. {
  17303. name: "Micro",
  17304. height: math.unit(5, "cm")
  17305. },
  17306. {
  17307. name: "Normal",
  17308. height: math.unit(180, "cm"),
  17309. default: true
  17310. },
  17311. {
  17312. name: "Macro",
  17313. height: math.unit(64, "m")
  17314. },
  17315. ]
  17316. ))
  17317. characterMakers.push(() => makeCharacter(
  17318. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17319. {
  17320. upright: {
  17321. height: math.unit(7, "feet"),
  17322. weight: math.unit(300, "lb"),
  17323. name: "Upright",
  17324. image: {
  17325. source: "./media/characters/pretzel/upright.svg",
  17326. extra: 534 / 522,
  17327. bottom: 0.065
  17328. }
  17329. },
  17330. sprawling: {
  17331. height: math.unit(3.75, "feet"),
  17332. weight: math.unit(300, "lb"),
  17333. name: "Sprawling",
  17334. image: {
  17335. source: "./media/characters/pretzel/sprawling.svg",
  17336. extra: 314 / 281,
  17337. bottom: 0.1
  17338. }
  17339. },
  17340. tongue: {
  17341. height: math.unit(2, "feet"),
  17342. name: "Tongue",
  17343. image: {
  17344. source: "./media/characters/pretzel/tongue.svg"
  17345. }
  17346. },
  17347. },
  17348. [
  17349. {
  17350. name: "Normal",
  17351. height: math.unit(7, "feet"),
  17352. default: true
  17353. },
  17354. {
  17355. name: "Oversized",
  17356. height: math.unit(15, "feet")
  17357. },
  17358. {
  17359. name: "Huge",
  17360. height: math.unit(30, "feet")
  17361. },
  17362. {
  17363. name: "Macro",
  17364. height: math.unit(250, "feet")
  17365. },
  17366. ]
  17367. ))
  17368. characterMakers.push(() => makeCharacter(
  17369. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17370. {
  17371. sideFront: {
  17372. height: math.unit(5 + 2 / 12, "feet"),
  17373. weight: math.unit(120, "lb"),
  17374. name: "Front Side",
  17375. image: {
  17376. source: "./media/characters/roxi/side-front.svg",
  17377. extra: 2924 / 2717,
  17378. bottom: 0.08
  17379. }
  17380. },
  17381. sideBack: {
  17382. height: math.unit(5 + 2 / 12, "feet"),
  17383. weight: math.unit(120, "lb"),
  17384. name: "Back Side",
  17385. image: {
  17386. source: "./media/characters/roxi/side-back.svg",
  17387. extra: 2904 / 2693,
  17388. bottom: 0.06
  17389. }
  17390. },
  17391. front: {
  17392. height: math.unit(5 + 2 / 12, "feet"),
  17393. weight: math.unit(120, "lb"),
  17394. name: "Front",
  17395. image: {
  17396. source: "./media/characters/roxi/front.svg",
  17397. extra: 2028 / 1907,
  17398. bottom: 0.01
  17399. }
  17400. },
  17401. frontAlt: {
  17402. height: math.unit(5 + 2 / 12, "feet"),
  17403. weight: math.unit(120, "lb"),
  17404. name: "Front (Alt)",
  17405. image: {
  17406. source: "./media/characters/roxi/front-alt.svg",
  17407. extra: 1828 / 1798,
  17408. bottom: 0.01
  17409. }
  17410. },
  17411. sitting: {
  17412. height: math.unit(2.8, "feet"),
  17413. weight: math.unit(120, "lb"),
  17414. name: "Sitting",
  17415. image: {
  17416. source: "./media/characters/roxi/sitting.svg",
  17417. extra: 2660 / 2462,
  17418. bottom: 0.1
  17419. }
  17420. },
  17421. },
  17422. [
  17423. {
  17424. name: "Normal",
  17425. height: math.unit(5 + 2 / 12, "feet"),
  17426. default: true
  17427. },
  17428. ]
  17429. ))
  17430. characterMakers.push(() => makeCharacter(
  17431. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17432. {
  17433. side: {
  17434. height: math.unit(55, "feet"),
  17435. weight: math.unit(153, "tons"),
  17436. name: "Side",
  17437. image: {
  17438. source: "./media/characters/shadow/side.svg",
  17439. extra: 701 / 628,
  17440. bottom: 0.02
  17441. }
  17442. },
  17443. flying: {
  17444. height: math.unit(145, "feet"),
  17445. weight: math.unit(153, "tons"),
  17446. name: "Flying",
  17447. image: {
  17448. source: "./media/characters/shadow/flying.svg"
  17449. }
  17450. },
  17451. },
  17452. [
  17453. {
  17454. name: "Normal",
  17455. height: math.unit(55, "feet"),
  17456. default: true
  17457. },
  17458. ]
  17459. ))
  17460. characterMakers.push(() => makeCharacter(
  17461. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17462. {
  17463. front: {
  17464. height: math.unit(6, "feet"),
  17465. weight: math.unit(200, "lb"),
  17466. name: "Front",
  17467. image: {
  17468. source: "./media/characters/marcie/front.svg",
  17469. extra: 960 / 876,
  17470. bottom: 58 / 1017.87
  17471. }
  17472. },
  17473. },
  17474. [
  17475. {
  17476. name: "Macro",
  17477. height: math.unit(1, "mile"),
  17478. default: true
  17479. },
  17480. ]
  17481. ))
  17482. characterMakers.push(() => makeCharacter(
  17483. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17484. {
  17485. front: {
  17486. height: math.unit(7, "feet"),
  17487. weight: math.unit(200, "lb"),
  17488. name: "Front",
  17489. image: {
  17490. source: "./media/characters/kachina/front.svg",
  17491. extra: 1290.68 / 1119,
  17492. bottom: 36.5 / 1327.18
  17493. }
  17494. },
  17495. },
  17496. [
  17497. {
  17498. name: "Normal",
  17499. height: math.unit(7, "feet"),
  17500. default: true
  17501. },
  17502. ]
  17503. ))
  17504. characterMakers.push(() => makeCharacter(
  17505. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17506. {
  17507. looking: {
  17508. height: math.unit(2, "meters"),
  17509. weight: math.unit(300, "kg"),
  17510. name: "Looking",
  17511. image: {
  17512. source: "./media/characters/kash/looking.svg",
  17513. extra: 474 / 344,
  17514. bottom: 0.03
  17515. }
  17516. },
  17517. side: {
  17518. height: math.unit(2, "meters"),
  17519. weight: math.unit(300, "kg"),
  17520. name: "Side",
  17521. image: {
  17522. source: "./media/characters/kash/side.svg",
  17523. extra: 302 / 251,
  17524. bottom: 0.03
  17525. }
  17526. },
  17527. front: {
  17528. height: math.unit(2, "meters"),
  17529. weight: math.unit(300, "kg"),
  17530. name: "Front",
  17531. image: {
  17532. source: "./media/characters/kash/front.svg",
  17533. extra: 495 / 360,
  17534. bottom: 0.015
  17535. }
  17536. },
  17537. },
  17538. [
  17539. {
  17540. name: "Normal",
  17541. height: math.unit(2, "meters"),
  17542. default: true
  17543. },
  17544. {
  17545. name: "Big",
  17546. height: math.unit(3, "meters")
  17547. },
  17548. {
  17549. name: "Large",
  17550. height: math.unit(5, "meters")
  17551. },
  17552. ]
  17553. ))
  17554. characterMakers.push(() => makeCharacter(
  17555. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17556. {
  17557. feeding: {
  17558. height: math.unit(6.7, "feet"),
  17559. weight: math.unit(350, "lb"),
  17560. name: "Feeding",
  17561. image: {
  17562. source: "./media/characters/lalim/feeding.svg",
  17563. }
  17564. },
  17565. },
  17566. [
  17567. {
  17568. name: "Normal",
  17569. height: math.unit(6.7, "feet"),
  17570. default: true
  17571. },
  17572. ]
  17573. ))
  17574. characterMakers.push(() => makeCharacter(
  17575. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17576. {
  17577. front: {
  17578. height: math.unit(9.5, "feet"),
  17579. weight: math.unit(600, "lb"),
  17580. name: "Front",
  17581. image: {
  17582. source: "./media/characters/de'vout/front.svg",
  17583. extra: 1443 / 1328,
  17584. bottom: 0.025
  17585. }
  17586. },
  17587. back: {
  17588. height: math.unit(9.5, "feet"),
  17589. weight: math.unit(600, "lb"),
  17590. name: "Back",
  17591. image: {
  17592. source: "./media/characters/de'vout/back.svg",
  17593. extra: 1443 / 1328
  17594. }
  17595. },
  17596. frontDressed: {
  17597. height: math.unit(9.5, "feet"),
  17598. weight: math.unit(600, "lb"),
  17599. name: "Front (Dressed",
  17600. image: {
  17601. source: "./media/characters/de'vout/front-dressed.svg",
  17602. extra: 1443 / 1328,
  17603. bottom: 0.025
  17604. }
  17605. },
  17606. backDressed: {
  17607. height: math.unit(9.5, "feet"),
  17608. weight: math.unit(600, "lb"),
  17609. name: "Back (Dressed",
  17610. image: {
  17611. source: "./media/characters/de'vout/back-dressed.svg",
  17612. extra: 1443 / 1328
  17613. }
  17614. },
  17615. },
  17616. [
  17617. {
  17618. name: "Normal",
  17619. height: math.unit(9.5, "feet"),
  17620. default: true
  17621. },
  17622. ]
  17623. ))
  17624. characterMakers.push(() => makeCharacter(
  17625. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17626. {
  17627. front: {
  17628. height: math.unit(8, "feet"),
  17629. weight: math.unit(225, "lb"),
  17630. name: "Front",
  17631. image: {
  17632. source: "./media/characters/talana/front.svg",
  17633. extra: 1410 / 1300,
  17634. bottom: 0.015
  17635. }
  17636. },
  17637. frontDressed: {
  17638. height: math.unit(8, "feet"),
  17639. weight: math.unit(225, "lb"),
  17640. name: "Front (Dressed",
  17641. image: {
  17642. source: "./media/characters/talana/front-dressed.svg",
  17643. extra: 1410 / 1300,
  17644. bottom: 0.015
  17645. }
  17646. },
  17647. },
  17648. [
  17649. {
  17650. name: "Normal",
  17651. height: math.unit(8, "feet"),
  17652. default: true
  17653. },
  17654. ]
  17655. ))
  17656. characterMakers.push(() => makeCharacter(
  17657. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17658. {
  17659. side: {
  17660. height: math.unit(7.2, "feet"),
  17661. weight: math.unit(150, "lb"),
  17662. name: "Side",
  17663. image: {
  17664. source: "./media/characters/xeauvok/side.svg",
  17665. extra: 1975 / 1523,
  17666. bottom: 0.07
  17667. }
  17668. },
  17669. },
  17670. [
  17671. {
  17672. name: "Normal",
  17673. height: math.unit(7.2, "feet"),
  17674. default: true
  17675. },
  17676. ]
  17677. ))
  17678. characterMakers.push(() => makeCharacter(
  17679. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17680. {
  17681. side: {
  17682. height: math.unit(10, "feet"),
  17683. weight: math.unit(900, "kg"),
  17684. name: "Side",
  17685. image: {
  17686. source: "./media/characters/zara/side.svg",
  17687. extra: 504 / 498
  17688. }
  17689. },
  17690. },
  17691. [
  17692. {
  17693. name: "Normal",
  17694. height: math.unit(10, "feet"),
  17695. default: true
  17696. },
  17697. ]
  17698. ))
  17699. characterMakers.push(() => makeCharacter(
  17700. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17701. {
  17702. side: {
  17703. height: math.unit(6, "feet"),
  17704. weight: math.unit(150, "lb"),
  17705. name: "Side",
  17706. image: {
  17707. source: "./media/characters/richard-dragon/side.svg",
  17708. extra: 845 / 340,
  17709. bottom: 0.017
  17710. }
  17711. },
  17712. maw: {
  17713. height: math.unit(2.97, "feet"),
  17714. name: "Maw",
  17715. image: {
  17716. source: "./media/characters/richard-dragon/maw.svg"
  17717. }
  17718. },
  17719. },
  17720. [
  17721. ]
  17722. ))
  17723. characterMakers.push(() => makeCharacter(
  17724. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17725. {
  17726. front: {
  17727. height: math.unit(4, "feet"),
  17728. weight: math.unit(100, "lb"),
  17729. name: "Front",
  17730. image: {
  17731. source: "./media/characters/richard-smeargle/front.svg",
  17732. extra: 2952 / 2820,
  17733. bottom: 0.028
  17734. }
  17735. },
  17736. },
  17737. [
  17738. {
  17739. name: "Normal",
  17740. height: math.unit(4, "feet"),
  17741. default: true
  17742. },
  17743. {
  17744. name: "Dynamax",
  17745. height: math.unit(20, "meters")
  17746. },
  17747. ]
  17748. ))
  17749. characterMakers.push(() => makeCharacter(
  17750. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17751. {
  17752. front: {
  17753. height: math.unit(6, "feet"),
  17754. weight: math.unit(110, "lb"),
  17755. name: "Front",
  17756. image: {
  17757. source: "./media/characters/klay/front.svg",
  17758. extra: 962 / 883,
  17759. bottom: 0.04
  17760. }
  17761. },
  17762. back: {
  17763. height: math.unit(6, "feet"),
  17764. weight: math.unit(110, "lb"),
  17765. name: "Back",
  17766. image: {
  17767. source: "./media/characters/klay/back.svg",
  17768. extra: 962 / 883
  17769. }
  17770. },
  17771. beans: {
  17772. height: math.unit(1.15, "feet"),
  17773. name: "Beans",
  17774. image: {
  17775. source: "./media/characters/klay/beans.svg"
  17776. }
  17777. },
  17778. },
  17779. [
  17780. {
  17781. name: "Micro",
  17782. height: math.unit(6, "inches")
  17783. },
  17784. {
  17785. name: "Mini",
  17786. height: math.unit(3, "feet")
  17787. },
  17788. {
  17789. name: "Normal",
  17790. height: math.unit(6, "feet"),
  17791. default: true
  17792. },
  17793. {
  17794. name: "Big",
  17795. height: math.unit(25, "feet")
  17796. },
  17797. {
  17798. name: "Macro",
  17799. height: math.unit(100, "feet")
  17800. },
  17801. {
  17802. name: "Megamacro",
  17803. height: math.unit(400, "feet")
  17804. },
  17805. ]
  17806. ))
  17807. characterMakers.push(() => makeCharacter(
  17808. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17809. {
  17810. front: {
  17811. height: math.unit(6, "feet"),
  17812. weight: math.unit(160, "lb"),
  17813. name: "Front",
  17814. image: {
  17815. source: "./media/characters/marcus/front.svg",
  17816. extra: 734 / 676,
  17817. bottom: 0.03
  17818. }
  17819. },
  17820. },
  17821. [
  17822. {
  17823. name: "Little",
  17824. height: math.unit(6, "feet")
  17825. },
  17826. {
  17827. name: "Normal",
  17828. height: math.unit(110, "feet"),
  17829. default: true
  17830. },
  17831. {
  17832. name: "Macro",
  17833. height: math.unit(250, "feet")
  17834. },
  17835. {
  17836. name: "Megamacro",
  17837. height: math.unit(1000, "feet")
  17838. },
  17839. ]
  17840. ))
  17841. characterMakers.push(() => makeCharacter(
  17842. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17843. {
  17844. front: {
  17845. height: math.unit(7, "feet"),
  17846. weight: math.unit(275, "lb"),
  17847. name: "Front",
  17848. image: {
  17849. source: "./media/characters/claude-delroute/front.svg",
  17850. extra: 230 / 214,
  17851. bottom: 0.007
  17852. }
  17853. },
  17854. side: {
  17855. height: math.unit(7, "feet"),
  17856. weight: math.unit(275, "lb"),
  17857. name: "Side",
  17858. image: {
  17859. source: "./media/characters/claude-delroute/side.svg",
  17860. extra: 222 / 214,
  17861. bottom: 0.01
  17862. }
  17863. },
  17864. back: {
  17865. height: math.unit(7, "feet"),
  17866. weight: math.unit(275, "lb"),
  17867. name: "Back",
  17868. image: {
  17869. source: "./media/characters/claude-delroute/back.svg",
  17870. extra: 230 / 214,
  17871. bottom: 0.015
  17872. }
  17873. },
  17874. maw: {
  17875. height: math.unit(0.6407, "meters"),
  17876. name: "Maw",
  17877. image: {
  17878. source: "./media/characters/claude-delroute/maw.svg"
  17879. }
  17880. },
  17881. },
  17882. [
  17883. {
  17884. name: "Normal",
  17885. height: math.unit(7, "feet"),
  17886. default: true
  17887. },
  17888. {
  17889. name: "Lorge",
  17890. height: math.unit(20, "feet")
  17891. },
  17892. ]
  17893. ))
  17894. characterMakers.push(() => makeCharacter(
  17895. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17896. {
  17897. front: {
  17898. height: math.unit(8 + 4 / 12, "feet"),
  17899. weight: math.unit(600, "lb"),
  17900. name: "Front",
  17901. image: {
  17902. source: "./media/characters/dragonien/front.svg",
  17903. extra: 100 / 94,
  17904. bottom: 3.3 / 103.3445
  17905. }
  17906. },
  17907. back: {
  17908. height: math.unit(8 + 4 / 12, "feet"),
  17909. weight: math.unit(600, "lb"),
  17910. name: "Back",
  17911. image: {
  17912. source: "./media/characters/dragonien/back.svg",
  17913. extra: 776 / 746,
  17914. bottom: 6.4 / 782.0616
  17915. }
  17916. },
  17917. foot: {
  17918. height: math.unit(1.54, "feet"),
  17919. name: "Foot",
  17920. image: {
  17921. source: "./media/characters/dragonien/foot.svg",
  17922. }
  17923. },
  17924. },
  17925. [
  17926. {
  17927. name: "Normal",
  17928. height: math.unit(8 + 4 / 12, "feet"),
  17929. default: true
  17930. },
  17931. {
  17932. name: "Macro",
  17933. height: math.unit(200, "feet")
  17934. },
  17935. {
  17936. name: "Megamacro",
  17937. height: math.unit(1, "mile")
  17938. },
  17939. {
  17940. name: "Gigamacro",
  17941. height: math.unit(1000, "miles")
  17942. },
  17943. ]
  17944. ))
  17945. characterMakers.push(() => makeCharacter(
  17946. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17947. {
  17948. front: {
  17949. height: math.unit(5 + 2 / 12, "feet"),
  17950. weight: math.unit(110, "lb"),
  17951. name: "Front",
  17952. image: {
  17953. source: "./media/characters/desta/front.svg",
  17954. extra: 767 / 726,
  17955. bottom: 11.7 / 779
  17956. }
  17957. },
  17958. back: {
  17959. height: math.unit(5 + 2 / 12, "feet"),
  17960. weight: math.unit(110, "lb"),
  17961. name: "Back",
  17962. image: {
  17963. source: "./media/characters/desta/back.svg",
  17964. extra: 777 / 728,
  17965. bottom: 6 / 784
  17966. }
  17967. },
  17968. frontAlt: {
  17969. height: math.unit(5 + 2 / 12, "feet"),
  17970. weight: math.unit(110, "lb"),
  17971. name: "Front",
  17972. image: {
  17973. source: "./media/characters/desta/front-alt.svg",
  17974. extra: 1482 / 1417
  17975. }
  17976. },
  17977. side: {
  17978. height: math.unit(5 + 2 / 12, "feet"),
  17979. weight: math.unit(110, "lb"),
  17980. name: "Side",
  17981. image: {
  17982. source: "./media/characters/desta/side.svg",
  17983. extra: 2579 / 2491,
  17984. bottom: 0.053
  17985. }
  17986. },
  17987. },
  17988. [
  17989. {
  17990. name: "Micro",
  17991. height: math.unit(6, "inches")
  17992. },
  17993. {
  17994. name: "Normal",
  17995. height: math.unit(5 + 2 / 12, "feet"),
  17996. default: true
  17997. },
  17998. {
  17999. name: "Macro",
  18000. height: math.unit(62, "feet")
  18001. },
  18002. {
  18003. name: "Megamacro",
  18004. height: math.unit(1800, "feet")
  18005. },
  18006. ]
  18007. ))
  18008. characterMakers.push(() => makeCharacter(
  18009. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18010. {
  18011. front: {
  18012. height: math.unit(10, "feet"),
  18013. weight: math.unit(700, "lb"),
  18014. name: "Front",
  18015. image: {
  18016. source: "./media/characters/storm-alystar/front.svg",
  18017. extra: 2112 / 1898,
  18018. bottom: 0.034
  18019. }
  18020. },
  18021. },
  18022. [
  18023. {
  18024. name: "Micro",
  18025. height: math.unit(3.5, "inches")
  18026. },
  18027. {
  18028. name: "Normal",
  18029. height: math.unit(10, "feet"),
  18030. default: true
  18031. },
  18032. {
  18033. name: "Macro",
  18034. height: math.unit(400, "feet")
  18035. },
  18036. {
  18037. name: "Deific",
  18038. height: math.unit(60, "miles")
  18039. },
  18040. ]
  18041. ))
  18042. characterMakers.push(() => makeCharacter(
  18043. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18044. {
  18045. front: {
  18046. height: math.unit(2.35, "meters"),
  18047. weight: math.unit(119, "kg"),
  18048. name: "Front",
  18049. image: {
  18050. source: "./media/characters/ilia/front.svg",
  18051. extra: 1285 / 1255,
  18052. bottom: 0.06
  18053. }
  18054. },
  18055. },
  18056. [
  18057. {
  18058. name: "Normal",
  18059. height: math.unit(2.35, "meters")
  18060. },
  18061. {
  18062. name: "Macro",
  18063. height: math.unit(140, "meters"),
  18064. default: true
  18065. },
  18066. {
  18067. name: "Megamacro",
  18068. height: math.unit(100, "miles")
  18069. },
  18070. ]
  18071. ))
  18072. characterMakers.push(() => makeCharacter(
  18073. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18074. {
  18075. front: {
  18076. height: math.unit(6 + 5 / 12, "feet"),
  18077. weight: math.unit(190, "lb"),
  18078. name: "Front",
  18079. image: {
  18080. source: "./media/characters/kingdead/front.svg",
  18081. extra: 1228 / 1177
  18082. }
  18083. },
  18084. },
  18085. [
  18086. {
  18087. name: "Micro",
  18088. height: math.unit(7, "inches")
  18089. },
  18090. {
  18091. name: "Normal",
  18092. height: math.unit(6 + 5 / 12, "feet")
  18093. },
  18094. {
  18095. name: "Macro",
  18096. height: math.unit(150, "feet"),
  18097. default: true
  18098. },
  18099. {
  18100. name: "Megamacro",
  18101. height: math.unit(200, "miles")
  18102. },
  18103. ]
  18104. ))
  18105. characterMakers.push(() => makeCharacter(
  18106. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18107. {
  18108. front: {
  18109. height: math.unit(8, "feet"),
  18110. weight: math.unit(600, "lb"),
  18111. name: "Front",
  18112. image: {
  18113. source: "./media/characters/kyrehx/front.svg",
  18114. extra: 1195 / 1095,
  18115. bottom: 0.034
  18116. }
  18117. },
  18118. },
  18119. [
  18120. {
  18121. name: "Micro",
  18122. height: math.unit(2, "inches")
  18123. },
  18124. {
  18125. name: "Normal",
  18126. height: math.unit(8, "feet"),
  18127. default: true
  18128. },
  18129. {
  18130. name: "Macro",
  18131. height: math.unit(255, "feet")
  18132. },
  18133. ]
  18134. ))
  18135. characterMakers.push(() => makeCharacter(
  18136. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18137. {
  18138. front: {
  18139. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18140. weight: math.unit(184, "lb"),
  18141. name: "Front",
  18142. image: {
  18143. source: "./media/characters/xang/front.svg",
  18144. extra: 845 / 755
  18145. }
  18146. },
  18147. },
  18148. [
  18149. {
  18150. name: "Normal",
  18151. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18152. default: true
  18153. },
  18154. {
  18155. name: "Macro",
  18156. height: math.unit(0.935 * 146, "feet")
  18157. },
  18158. {
  18159. name: "Megamacro",
  18160. height: math.unit(0.935 * 3, "miles")
  18161. },
  18162. ]
  18163. ))
  18164. characterMakers.push(() => makeCharacter(
  18165. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18166. {
  18167. frontDressed: {
  18168. height: math.unit(5 + 7 / 12, "feet"),
  18169. weight: math.unit(140, "lb"),
  18170. name: "Front (Dressed)",
  18171. image: {
  18172. source: "./media/characters/doc-weardno/front-dressed.svg",
  18173. extra: 263 / 234
  18174. }
  18175. },
  18176. backDressed: {
  18177. height: math.unit(5 + 7 / 12, "feet"),
  18178. weight: math.unit(140, "lb"),
  18179. name: "Back (Dressed)",
  18180. image: {
  18181. source: "./media/characters/doc-weardno/back-dressed.svg",
  18182. extra: 266 / 238
  18183. }
  18184. },
  18185. front: {
  18186. height: math.unit(5 + 7 / 12, "feet"),
  18187. weight: math.unit(140, "lb"),
  18188. name: "Front",
  18189. image: {
  18190. source: "./media/characters/doc-weardno/front.svg",
  18191. extra: 254 / 233
  18192. }
  18193. },
  18194. },
  18195. [
  18196. {
  18197. name: "Micro",
  18198. height: math.unit(3, "inches")
  18199. },
  18200. {
  18201. name: "Normal",
  18202. height: math.unit(5 + 7 / 12, "feet"),
  18203. default: true
  18204. },
  18205. {
  18206. name: "Macro",
  18207. height: math.unit(25, "feet")
  18208. },
  18209. {
  18210. name: "Megamacro",
  18211. height: math.unit(2, "miles")
  18212. },
  18213. ]
  18214. ))
  18215. characterMakers.push(() => makeCharacter(
  18216. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18217. {
  18218. front: {
  18219. height: math.unit(6 + 2 / 12, "feet"),
  18220. weight: math.unit(153, "lb"),
  18221. name: "Front",
  18222. image: {
  18223. source: "./media/characters/seth-whilst/front.svg",
  18224. bottom: 0.07
  18225. }
  18226. },
  18227. },
  18228. [
  18229. {
  18230. name: "Micro",
  18231. height: math.unit(5, "inches")
  18232. },
  18233. {
  18234. name: "Normal",
  18235. height: math.unit(6 + 2 / 12, "feet"),
  18236. default: true
  18237. },
  18238. ]
  18239. ))
  18240. characterMakers.push(() => makeCharacter(
  18241. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18242. {
  18243. front: {
  18244. height: math.unit(3, "inches"),
  18245. weight: math.unit(8, "grams"),
  18246. name: "Front",
  18247. image: {
  18248. source: "./media/characters/pocket-jabari/front.svg",
  18249. extra: 1024 / 974,
  18250. bottom: 0.039
  18251. }
  18252. },
  18253. },
  18254. [
  18255. {
  18256. name: "Minimicro",
  18257. height: math.unit(8, "mm")
  18258. },
  18259. {
  18260. name: "Micro",
  18261. height: math.unit(3, "inches"),
  18262. default: true
  18263. },
  18264. {
  18265. name: "Normal",
  18266. height: math.unit(3, "feet")
  18267. },
  18268. ]
  18269. ))
  18270. characterMakers.push(() => makeCharacter(
  18271. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18272. {
  18273. front: {
  18274. height: math.unit(15, "feet"),
  18275. weight: math.unit(3280, "lb"),
  18276. name: "Front",
  18277. image: {
  18278. source: "./media/characters/sapphy/front.svg",
  18279. extra: 671 / 577,
  18280. bottom: 0.085
  18281. }
  18282. },
  18283. back: {
  18284. height: math.unit(15, "feet"),
  18285. weight: math.unit(3280, "lb"),
  18286. name: "Back",
  18287. image: {
  18288. source: "./media/characters/sapphy/back.svg",
  18289. extra: 631 / 607,
  18290. bottom: 0.045
  18291. }
  18292. },
  18293. },
  18294. [
  18295. {
  18296. name: "Normal",
  18297. height: math.unit(15, "feet")
  18298. },
  18299. {
  18300. name: "Casual Macro",
  18301. height: math.unit(120, "feet")
  18302. },
  18303. {
  18304. name: "Macro",
  18305. height: math.unit(2150, "feet"),
  18306. default: true
  18307. },
  18308. {
  18309. name: "Megamacro",
  18310. height: math.unit(8, "miles")
  18311. },
  18312. {
  18313. name: "Galaxy Mom",
  18314. height: math.unit(6, "megalightyears")
  18315. },
  18316. ]
  18317. ))
  18318. characterMakers.push(() => makeCharacter(
  18319. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18320. {
  18321. front: {
  18322. height: math.unit(6, "feet"),
  18323. weight: math.unit(170, "lb"),
  18324. name: "Front",
  18325. image: {
  18326. source: "./media/characters/kiro/front.svg",
  18327. extra: 1064 / 1012,
  18328. bottom: 0.052
  18329. }
  18330. },
  18331. },
  18332. [
  18333. {
  18334. name: "Micro",
  18335. height: math.unit(6, "inches")
  18336. },
  18337. {
  18338. name: "Normal",
  18339. height: math.unit(6, "feet"),
  18340. default: true
  18341. },
  18342. {
  18343. name: "Macro",
  18344. height: math.unit(72, "feet")
  18345. },
  18346. ]
  18347. ))
  18348. characterMakers.push(() => makeCharacter(
  18349. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18350. {
  18351. front: {
  18352. height: math.unit(5 + 9 / 12, "feet"),
  18353. weight: math.unit(175, "lb"),
  18354. name: "Front",
  18355. image: {
  18356. source: "./media/characters/irishfox/front.svg",
  18357. extra: 1912 / 1680,
  18358. bottom: 0.02
  18359. }
  18360. },
  18361. },
  18362. [
  18363. {
  18364. name: "Nano",
  18365. height: math.unit(1, "mm")
  18366. },
  18367. {
  18368. name: "Micro",
  18369. height: math.unit(2, "inches")
  18370. },
  18371. {
  18372. name: "Normal",
  18373. height: math.unit(5 + 9 / 12, "feet"),
  18374. default: true
  18375. },
  18376. {
  18377. name: "Macro",
  18378. height: math.unit(45, "feet")
  18379. },
  18380. ]
  18381. ))
  18382. characterMakers.push(() => makeCharacter(
  18383. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18384. {
  18385. front: {
  18386. height: math.unit(6 + 1 / 12, "feet"),
  18387. weight: math.unit(75, "lb"),
  18388. name: "Front",
  18389. image: {
  18390. source: "./media/characters/aronai-sieyes/front.svg",
  18391. extra: 1556 / 1480,
  18392. bottom: 0.015
  18393. }
  18394. },
  18395. side: {
  18396. height: math.unit(6 + 1 / 12, "feet"),
  18397. weight: math.unit(75, "lb"),
  18398. name: "Side",
  18399. image: {
  18400. source: "./media/characters/aronai-sieyes/side.svg",
  18401. extra: 1433 / 1390,
  18402. bottom: 0.0393
  18403. }
  18404. },
  18405. back: {
  18406. height: math.unit(6 + 1 / 12, "feet"),
  18407. weight: math.unit(75, "lb"),
  18408. name: "Back",
  18409. image: {
  18410. source: "./media/characters/aronai-sieyes/back.svg",
  18411. extra: 1544 / 1494,
  18412. bottom: 0.02
  18413. }
  18414. },
  18415. frontClothed: {
  18416. height: math.unit(6 + 1 / 12, "feet"),
  18417. weight: math.unit(75, "lb"),
  18418. name: "Front (Clothed)",
  18419. image: {
  18420. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18421. extra: 1582 / 1527
  18422. }
  18423. },
  18424. feral: {
  18425. height: math.unit(18, "feet"),
  18426. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18427. name: "Feral",
  18428. image: {
  18429. source: "./media/characters/aronai-sieyes/feral.svg",
  18430. extra: 1530 / 1240,
  18431. bottom: 0.035
  18432. }
  18433. },
  18434. },
  18435. [
  18436. {
  18437. name: "Micro",
  18438. height: math.unit(2, "inches")
  18439. },
  18440. {
  18441. name: "Normal",
  18442. height: math.unit(6 + 1 / 12, "feet"),
  18443. default: true
  18444. }
  18445. ]
  18446. ))
  18447. characterMakers.push(() => makeCharacter(
  18448. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18449. {
  18450. front: {
  18451. height: math.unit(12, "feet"),
  18452. weight: math.unit(410, "kg"),
  18453. name: "Front",
  18454. image: {
  18455. source: "./media/characters/xuna/front.svg",
  18456. extra: 2184 / 1980
  18457. }
  18458. },
  18459. side: {
  18460. height: math.unit(12, "feet"),
  18461. weight: math.unit(410, "kg"),
  18462. name: "Side",
  18463. image: {
  18464. source: "./media/characters/xuna/side.svg",
  18465. extra: 2184 / 1980
  18466. }
  18467. },
  18468. back: {
  18469. height: math.unit(12, "feet"),
  18470. weight: math.unit(410, "kg"),
  18471. name: "Back",
  18472. image: {
  18473. source: "./media/characters/xuna/back.svg",
  18474. extra: 2184 / 1980
  18475. }
  18476. },
  18477. },
  18478. [
  18479. {
  18480. name: "Nano glow",
  18481. height: math.unit(10, "nm")
  18482. },
  18483. {
  18484. name: "Micro floof",
  18485. height: math.unit(0.3, "m")
  18486. },
  18487. {
  18488. name: "Huggable softy boi",
  18489. height: math.unit(3.6576, "m"),
  18490. default: true
  18491. },
  18492. {
  18493. name: "Admirable floof",
  18494. height: math.unit(80, "meters")
  18495. },
  18496. {
  18497. name: "Gentle macro",
  18498. height: math.unit(300, "meters")
  18499. },
  18500. {
  18501. name: "Very careful floof",
  18502. height: math.unit(3200, "meters")
  18503. },
  18504. {
  18505. name: "The mega floof",
  18506. height: math.unit(36000, "meters")
  18507. },
  18508. {
  18509. name: "Giga-fur-Wicker",
  18510. height: math.unit(4800000, "meters")
  18511. },
  18512. {
  18513. name: "Licky world",
  18514. height: math.unit(20000000, "meters")
  18515. },
  18516. {
  18517. name: "Floofy cyan sun",
  18518. height: math.unit(1500000000, "meters")
  18519. },
  18520. {
  18521. name: "Milky Wicker",
  18522. height: math.unit(1000000000000000000000, "meters")
  18523. },
  18524. {
  18525. name: "The observing Wicker",
  18526. height: math.unit(999999999999999999999999999, "meters")
  18527. },
  18528. ]
  18529. ))
  18530. characterMakers.push(() => makeCharacter(
  18531. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18532. {
  18533. front: {
  18534. height: math.unit(5 + 9 / 12, "feet"),
  18535. weight: math.unit(150, "lb"),
  18536. name: "Front",
  18537. image: {
  18538. source: "./media/characters/arokha-sieyes/front.svg",
  18539. extra: 1425 / 1284,
  18540. bottom: 0.05
  18541. }
  18542. },
  18543. },
  18544. [
  18545. {
  18546. name: "Normal",
  18547. height: math.unit(5 + 9 / 12, "feet")
  18548. },
  18549. {
  18550. name: "Macro",
  18551. height: math.unit(30, "meters"),
  18552. default: true
  18553. },
  18554. ]
  18555. ))
  18556. characterMakers.push(() => makeCharacter(
  18557. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18558. {
  18559. front: {
  18560. height: math.unit(6, "feet"),
  18561. weight: math.unit(180, "lb"),
  18562. name: "Front",
  18563. image: {
  18564. source: "./media/characters/arokh-sieyes/front.svg",
  18565. extra: 1830 / 1769,
  18566. bottom: 0.01
  18567. }
  18568. },
  18569. },
  18570. [
  18571. {
  18572. name: "Normal",
  18573. height: math.unit(6, "feet")
  18574. },
  18575. {
  18576. name: "Macro",
  18577. height: math.unit(30, "meters"),
  18578. default: true
  18579. },
  18580. ]
  18581. ))
  18582. characterMakers.push(() => makeCharacter(
  18583. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18584. {
  18585. side: {
  18586. height: math.unit(13 + 1 / 12, "feet"),
  18587. weight: math.unit(8.5, "tonnes"),
  18588. name: "Side",
  18589. image: {
  18590. source: "./media/characters/goldeneye/side.svg",
  18591. extra: 1182 / 778,
  18592. bottom: 0.067
  18593. }
  18594. },
  18595. paw: {
  18596. height: math.unit(3.4, "feet"),
  18597. name: "Paw",
  18598. image: {
  18599. source: "./media/characters/goldeneye/paw.svg"
  18600. }
  18601. },
  18602. },
  18603. [
  18604. {
  18605. name: "Normal",
  18606. height: math.unit(13 + 1 / 12, "feet"),
  18607. default: true
  18608. },
  18609. ]
  18610. ))
  18611. characterMakers.push(() => makeCharacter(
  18612. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18613. {
  18614. front: {
  18615. height: math.unit(6 + 1 / 12, "feet"),
  18616. weight: math.unit(210, "lb"),
  18617. name: "Front",
  18618. image: {
  18619. source: "./media/characters/leonardo-lycheborne/front.svg",
  18620. extra: 390 / 365,
  18621. bottom: 0.032
  18622. }
  18623. },
  18624. side: {
  18625. height: math.unit(6 + 1 / 12, "feet"),
  18626. weight: math.unit(210, "lb"),
  18627. name: "Side",
  18628. image: {
  18629. source: "./media/characters/leonardo-lycheborne/side.svg",
  18630. extra: 390 / 365,
  18631. bottom: 0.005
  18632. }
  18633. },
  18634. back: {
  18635. height: math.unit(6 + 1 / 12, "feet"),
  18636. weight: math.unit(210, "lb"),
  18637. name: "Back",
  18638. image: {
  18639. source: "./media/characters/leonardo-lycheborne/back.svg",
  18640. extra: 392 / 366,
  18641. bottom: 0.01
  18642. }
  18643. },
  18644. hand: {
  18645. height: math.unit(1.08, "feet"),
  18646. name: "Hand",
  18647. image: {
  18648. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18649. }
  18650. },
  18651. foot: {
  18652. height: math.unit(1.32, "feet"),
  18653. name: "Foot",
  18654. image: {
  18655. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18656. }
  18657. },
  18658. were: {
  18659. height: math.unit(20, "feet"),
  18660. weight: math.unit(7800, "lb"),
  18661. name: "Were",
  18662. image: {
  18663. source: "./media/characters/leonardo-lycheborne/were.svg",
  18664. extra: 308 / 294,
  18665. bottom: 0.048
  18666. }
  18667. },
  18668. feral: {
  18669. height: math.unit(7.5, "feet"),
  18670. weight: math.unit(600, "lb"),
  18671. name: "Feral",
  18672. image: {
  18673. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18674. extra: 210 / 186,
  18675. bottom: 0.108
  18676. }
  18677. },
  18678. taur: {
  18679. height: math.unit(11, "feet"),
  18680. weight: math.unit(3300, "lb"),
  18681. name: "Taur",
  18682. image: {
  18683. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18684. extra: 320 / 303,
  18685. bottom: 0.025
  18686. }
  18687. },
  18688. barghest: {
  18689. height: math.unit(11, "feet"),
  18690. weight: math.unit(1300, "lb"),
  18691. name: "Barghest",
  18692. image: {
  18693. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18694. extra: 323 / 302,
  18695. bottom: 0.027
  18696. }
  18697. },
  18698. dick: {
  18699. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18700. name: "Dick",
  18701. image: {
  18702. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18703. }
  18704. },
  18705. dickWere: {
  18706. height: math.unit((20) / 3.8, "feet"),
  18707. name: "Dick (Were)",
  18708. image: {
  18709. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18710. }
  18711. },
  18712. },
  18713. [
  18714. {
  18715. name: "Normal",
  18716. height: math.unit(6 + 1 / 12, "feet"),
  18717. default: true
  18718. },
  18719. ]
  18720. ))
  18721. characterMakers.push(() => makeCharacter(
  18722. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18723. {
  18724. front: {
  18725. height: math.unit(10, "feet"),
  18726. weight: math.unit(350, "lb"),
  18727. name: "Front",
  18728. image: {
  18729. source: "./media/characters/jet/front.svg",
  18730. extra: 2050 / 1980,
  18731. bottom: 0.013
  18732. }
  18733. },
  18734. back: {
  18735. height: math.unit(10, "feet"),
  18736. weight: math.unit(350, "lb"),
  18737. name: "Back",
  18738. image: {
  18739. source: "./media/characters/jet/back.svg",
  18740. extra: 2050 / 1980,
  18741. bottom: 0.013
  18742. }
  18743. },
  18744. },
  18745. [
  18746. {
  18747. name: "Micro",
  18748. height: math.unit(6, "inches")
  18749. },
  18750. {
  18751. name: "Normal",
  18752. height: math.unit(10, "feet"),
  18753. default: true
  18754. },
  18755. {
  18756. name: "Macro",
  18757. height: math.unit(100, "feet")
  18758. },
  18759. ]
  18760. ))
  18761. characterMakers.push(() => makeCharacter(
  18762. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18763. {
  18764. front: {
  18765. height: math.unit(15, "feet"),
  18766. weight: math.unit(2800, "lb"),
  18767. name: "Front",
  18768. image: {
  18769. source: "./media/characters/tanarath/front.svg",
  18770. extra: 2392 / 2220,
  18771. bottom: 0.03
  18772. }
  18773. },
  18774. back: {
  18775. height: math.unit(15, "feet"),
  18776. weight: math.unit(2800, "lb"),
  18777. name: "Back",
  18778. image: {
  18779. source: "./media/characters/tanarath/back.svg",
  18780. extra: 2392 / 2220,
  18781. bottom: 0.03
  18782. }
  18783. },
  18784. },
  18785. [
  18786. {
  18787. name: "Normal",
  18788. height: math.unit(15, "feet"),
  18789. default: true
  18790. },
  18791. ]
  18792. ))
  18793. characterMakers.push(() => makeCharacter(
  18794. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18795. {
  18796. front: {
  18797. height: math.unit(7 + 1 / 12, "feet"),
  18798. weight: math.unit(175, "lb"),
  18799. name: "Front",
  18800. image: {
  18801. source: "./media/characters/patty-cattybatty/front.svg",
  18802. extra: 908 / 874,
  18803. bottom: 0.025
  18804. }
  18805. },
  18806. },
  18807. [
  18808. {
  18809. name: "Micro",
  18810. height: math.unit(1, "inch")
  18811. },
  18812. {
  18813. name: "Normal",
  18814. height: math.unit(7 + 1 / 12, "feet")
  18815. },
  18816. {
  18817. name: "Mini Macro",
  18818. height: math.unit(155, "feet")
  18819. },
  18820. {
  18821. name: "Macro",
  18822. height: math.unit(1077, "feet")
  18823. },
  18824. {
  18825. name: "Mega Macro",
  18826. height: math.unit(47650, "feet"),
  18827. default: true
  18828. },
  18829. {
  18830. name: "Giga Macro",
  18831. height: math.unit(440, "miles")
  18832. },
  18833. {
  18834. name: "Tera Macro",
  18835. height: math.unit(8700, "miles")
  18836. },
  18837. {
  18838. name: "Planetary Macro",
  18839. height: math.unit(32700, "miles")
  18840. },
  18841. {
  18842. name: "Solar Macro",
  18843. height: math.unit(550000, "miles")
  18844. },
  18845. {
  18846. name: "Celestial Macro",
  18847. height: math.unit(2.5, "AU")
  18848. },
  18849. ]
  18850. ))
  18851. characterMakers.push(() => makeCharacter(
  18852. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18853. {
  18854. front: {
  18855. height: math.unit(4 + 5 / 12, "feet"),
  18856. weight: math.unit(90, "lb"),
  18857. name: "Front",
  18858. image: {
  18859. source: "./media/characters/cappu/front.svg",
  18860. extra: 1247 / 1152,
  18861. bottom: 0.012
  18862. }
  18863. },
  18864. },
  18865. [
  18866. {
  18867. name: "Normal",
  18868. height: math.unit(4 + 5 / 12, "feet"),
  18869. default: true
  18870. },
  18871. ]
  18872. ))
  18873. characterMakers.push(() => makeCharacter(
  18874. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18875. {
  18876. frontDressed: {
  18877. height: math.unit(70, "cm"),
  18878. weight: math.unit(6, "kg"),
  18879. name: "Front (Dressed)",
  18880. image: {
  18881. source: "./media/characters/sebi/front-dressed.svg",
  18882. extra: 713.5 / 686.5,
  18883. bottom: 0.003
  18884. }
  18885. },
  18886. front: {
  18887. height: math.unit(70, "cm"),
  18888. weight: math.unit(5, "kg"),
  18889. name: "Front",
  18890. image: {
  18891. source: "./media/characters/sebi/front.svg",
  18892. extra: 713.5 / 686.5,
  18893. bottom: 0.003
  18894. }
  18895. }
  18896. },
  18897. [
  18898. {
  18899. name: "Normal",
  18900. height: math.unit(70, "cm"),
  18901. default: true
  18902. },
  18903. {
  18904. name: "Macro",
  18905. height: math.unit(8, "meters")
  18906. },
  18907. ]
  18908. ))
  18909. characterMakers.push(() => makeCharacter(
  18910. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18911. {
  18912. front: {
  18913. height: math.unit(6, "feet"),
  18914. weight: math.unit(150, "lb"),
  18915. name: "Front",
  18916. image: {
  18917. source: "./media/characters/typhek/front.svg",
  18918. extra: 1948 / 1929,
  18919. bottom: 0.025
  18920. }
  18921. },
  18922. side: {
  18923. height: math.unit(6, "feet"),
  18924. weight: math.unit(150, "lb"),
  18925. name: "Side",
  18926. image: {
  18927. source: "./media/characters/typhek/side.svg",
  18928. extra: 2034 / 2010,
  18929. bottom: 0.003
  18930. }
  18931. },
  18932. back: {
  18933. height: math.unit(6, "feet"),
  18934. weight: math.unit(150, "lb"),
  18935. name: "Back",
  18936. image: {
  18937. source: "./media/characters/typhek/back.svg",
  18938. extra: 2005 / 1978,
  18939. bottom: 0.004
  18940. }
  18941. },
  18942. palm: {
  18943. height: math.unit(1.2, "feet"),
  18944. name: "Palm",
  18945. image: {
  18946. source: "./media/characters/typhek/palm.svg"
  18947. }
  18948. },
  18949. fist: {
  18950. height: math.unit(1.1, "feet"),
  18951. name: "Fist",
  18952. image: {
  18953. source: "./media/characters/typhek/fist.svg"
  18954. }
  18955. },
  18956. foot: {
  18957. height: math.unit(1.57, "feet"),
  18958. name: "Foot",
  18959. image: {
  18960. source: "./media/characters/typhek/foot.svg"
  18961. }
  18962. },
  18963. sole: {
  18964. height: math.unit(2.05, "feet"),
  18965. name: "Sole",
  18966. image: {
  18967. source: "./media/characters/typhek/sole.svg"
  18968. }
  18969. },
  18970. },
  18971. [
  18972. {
  18973. name: "Macro",
  18974. height: math.unit(40, "stories"),
  18975. default: true
  18976. },
  18977. {
  18978. name: "Megamacro",
  18979. height: math.unit(1, "mile")
  18980. },
  18981. {
  18982. name: "Gigamacro",
  18983. height: math.unit(4000, "solarradii")
  18984. },
  18985. {
  18986. name: "Universal",
  18987. height: math.unit(1.1, "universes")
  18988. }
  18989. ]
  18990. ))
  18991. characterMakers.push(() => makeCharacter(
  18992. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18993. {
  18994. side: {
  18995. height: math.unit(5 + 7 / 12, "feet"),
  18996. weight: math.unit(150, "lb"),
  18997. name: "Side",
  18998. image: {
  18999. source: "./media/characters/kassy/side.svg",
  19000. extra: 1280 / 1225,
  19001. bottom: 0.002
  19002. }
  19003. },
  19004. front: {
  19005. height: math.unit(5 + 7 / 12, "feet"),
  19006. weight: math.unit(150, "lb"),
  19007. name: "Front",
  19008. image: {
  19009. source: "./media/characters/kassy/front.svg",
  19010. extra: 1280 / 1225,
  19011. bottom: 0.025
  19012. }
  19013. },
  19014. back: {
  19015. height: math.unit(5 + 7 / 12, "feet"),
  19016. weight: math.unit(150, "lb"),
  19017. name: "Back",
  19018. image: {
  19019. source: "./media/characters/kassy/back.svg",
  19020. extra: 1280 / 1225,
  19021. bottom: 0.002
  19022. }
  19023. },
  19024. foot: {
  19025. height: math.unit(1.266, "feet"),
  19026. name: "Foot",
  19027. image: {
  19028. source: "./media/characters/kassy/foot.svg"
  19029. }
  19030. },
  19031. },
  19032. [
  19033. {
  19034. name: "Normal",
  19035. height: math.unit(5 + 7 / 12, "feet")
  19036. },
  19037. {
  19038. name: "Macro",
  19039. height: math.unit(137, "feet"),
  19040. default: true
  19041. },
  19042. {
  19043. name: "Megamacro",
  19044. height: math.unit(1, "mile")
  19045. },
  19046. ]
  19047. ))
  19048. characterMakers.push(() => makeCharacter(
  19049. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19050. {
  19051. front: {
  19052. height: math.unit(6 + 1 / 12, "feet"),
  19053. weight: math.unit(200, "lb"),
  19054. name: "Front",
  19055. image: {
  19056. source: "./media/characters/neil/front.svg",
  19057. extra: 1326 / 1250,
  19058. bottom: 0.023
  19059. }
  19060. },
  19061. },
  19062. [
  19063. {
  19064. name: "Normal",
  19065. height: math.unit(6 + 1 / 12, "feet"),
  19066. default: true
  19067. },
  19068. {
  19069. name: "Macro",
  19070. height: math.unit(200, "feet")
  19071. },
  19072. ]
  19073. ))
  19074. characterMakers.push(() => makeCharacter(
  19075. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19076. {
  19077. front: {
  19078. height: math.unit(5 + 9 / 12, "feet"),
  19079. weight: math.unit(190, "lb"),
  19080. name: "Front",
  19081. image: {
  19082. source: "./media/characters/atticus/front.svg",
  19083. extra: 2934 / 2785,
  19084. bottom: 0.025
  19085. }
  19086. },
  19087. },
  19088. [
  19089. {
  19090. name: "Normal",
  19091. height: math.unit(5 + 9 / 12, "feet"),
  19092. default: true
  19093. },
  19094. {
  19095. name: "Macro",
  19096. height: math.unit(180, "feet")
  19097. },
  19098. ]
  19099. ))
  19100. characterMakers.push(() => makeCharacter(
  19101. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19102. {
  19103. side: {
  19104. height: math.unit(9, "feet"),
  19105. weight: math.unit(650, "lb"),
  19106. name: "Side",
  19107. image: {
  19108. source: "./media/characters/milo/side.svg",
  19109. extra: 2644 / 2310,
  19110. bottom: 0.032
  19111. }
  19112. },
  19113. },
  19114. [
  19115. {
  19116. name: "Normal",
  19117. height: math.unit(9, "feet"),
  19118. default: true
  19119. },
  19120. {
  19121. name: "Macro",
  19122. height: math.unit(300, "feet")
  19123. },
  19124. ]
  19125. ))
  19126. characterMakers.push(() => makeCharacter(
  19127. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19128. {
  19129. side: {
  19130. height: math.unit(8, "meters"),
  19131. weight: math.unit(90000, "kg"),
  19132. name: "Side",
  19133. image: {
  19134. source: "./media/characters/ijzer/side.svg",
  19135. extra: 2756 / 1600,
  19136. bottom: 0.01
  19137. }
  19138. },
  19139. },
  19140. [
  19141. {
  19142. name: "Small",
  19143. height: math.unit(3, "meters")
  19144. },
  19145. {
  19146. name: "Normal",
  19147. height: math.unit(8, "meters"),
  19148. default: true
  19149. },
  19150. {
  19151. name: "Normal+",
  19152. height: math.unit(10, "meters")
  19153. },
  19154. {
  19155. name: "Bigger",
  19156. height: math.unit(24, "meters")
  19157. },
  19158. {
  19159. name: "Huge",
  19160. height: math.unit(80, "meters")
  19161. },
  19162. ]
  19163. ))
  19164. characterMakers.push(() => makeCharacter(
  19165. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19166. {
  19167. front: {
  19168. height: math.unit(6 + 2 / 12, "feet"),
  19169. weight: math.unit(153, "lb"),
  19170. name: "Front",
  19171. image: {
  19172. source: "./media/characters/luca-cervicum/front.svg",
  19173. extra: 370 / 327,
  19174. bottom: 0.015
  19175. }
  19176. },
  19177. back: {
  19178. height: math.unit(6 + 2 / 12, "feet"),
  19179. weight: math.unit(153, "lb"),
  19180. name: "Back",
  19181. image: {
  19182. source: "./media/characters/luca-cervicum/back.svg",
  19183. extra: 367 / 333,
  19184. bottom: 0.005
  19185. }
  19186. },
  19187. frontGear: {
  19188. height: math.unit(6 + 2 / 12, "feet"),
  19189. weight: math.unit(173, "lb"),
  19190. name: "Front (Gear)",
  19191. image: {
  19192. source: "./media/characters/luca-cervicum/front-gear.svg",
  19193. extra: 377 / 333,
  19194. bottom: 0.006
  19195. }
  19196. },
  19197. },
  19198. [
  19199. {
  19200. name: "Normal",
  19201. height: math.unit(6 + 2 / 12, "feet"),
  19202. default: true
  19203. },
  19204. ]
  19205. ))
  19206. characterMakers.push(() => makeCharacter(
  19207. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19208. {
  19209. front: {
  19210. height: math.unit(6 + 1 / 12, "feet"),
  19211. weight: math.unit(304, "lb"),
  19212. name: "Front",
  19213. image: {
  19214. source: "./media/characters/oliver/front.svg",
  19215. extra: 157 / 143,
  19216. bottom: 0.08
  19217. }
  19218. },
  19219. },
  19220. [
  19221. {
  19222. name: "Normal",
  19223. height: math.unit(6 + 1 / 12, "feet"),
  19224. default: true
  19225. },
  19226. ]
  19227. ))
  19228. characterMakers.push(() => makeCharacter(
  19229. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19230. {
  19231. front: {
  19232. height: math.unit(5 + 7 / 12, "feet"),
  19233. weight: math.unit(140, "lb"),
  19234. name: "Front",
  19235. image: {
  19236. source: "./media/characters/shane/front.svg",
  19237. extra: 304 / 289,
  19238. bottom: 0.005
  19239. }
  19240. },
  19241. },
  19242. [
  19243. {
  19244. name: "Normal",
  19245. height: math.unit(5 + 7 / 12, "feet"),
  19246. default: true
  19247. },
  19248. ]
  19249. ))
  19250. characterMakers.push(() => makeCharacter(
  19251. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19252. {
  19253. front: {
  19254. height: math.unit(5 + 9 / 12, "feet"),
  19255. weight: math.unit(178, "lb"),
  19256. name: "Front",
  19257. image: {
  19258. source: "./media/characters/shin/front.svg",
  19259. extra: 159 / 151,
  19260. bottom: 0.015
  19261. }
  19262. },
  19263. },
  19264. [
  19265. {
  19266. name: "Normal",
  19267. height: math.unit(5 + 9 / 12, "feet"),
  19268. default: true
  19269. },
  19270. ]
  19271. ))
  19272. characterMakers.push(() => makeCharacter(
  19273. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19274. {
  19275. front: {
  19276. height: math.unit(5 + 10 / 12, "feet"),
  19277. weight: math.unit(168, "lb"),
  19278. name: "Front",
  19279. image: {
  19280. source: "./media/characters/xerxes/front.svg",
  19281. extra: 282 / 260,
  19282. bottom: 0.045
  19283. }
  19284. },
  19285. },
  19286. [
  19287. {
  19288. name: "Normal",
  19289. height: math.unit(5 + 10 / 12, "feet"),
  19290. default: true
  19291. },
  19292. ]
  19293. ))
  19294. characterMakers.push(() => makeCharacter(
  19295. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19296. {
  19297. front: {
  19298. height: math.unit(6 + 7 / 12, "feet"),
  19299. weight: math.unit(208, "lb"),
  19300. name: "Front",
  19301. image: {
  19302. source: "./media/characters/chaska/front.svg",
  19303. extra: 332 / 319,
  19304. bottom: 0.015
  19305. }
  19306. },
  19307. },
  19308. [
  19309. {
  19310. name: "Normal",
  19311. height: math.unit(6 + 7 / 12, "feet"),
  19312. default: true
  19313. },
  19314. ]
  19315. ))
  19316. characterMakers.push(() => makeCharacter(
  19317. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19318. {
  19319. front: {
  19320. height: math.unit(5 + 8 / 12, "feet"),
  19321. weight: math.unit(208, "lb"),
  19322. name: "Front",
  19323. image: {
  19324. source: "./media/characters/enuk/front.svg",
  19325. extra: 437 / 406,
  19326. bottom: 0.02
  19327. }
  19328. },
  19329. },
  19330. [
  19331. {
  19332. name: "Normal",
  19333. height: math.unit(5 + 8 / 12, "feet"),
  19334. default: true
  19335. },
  19336. ]
  19337. ))
  19338. characterMakers.push(() => makeCharacter(
  19339. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19340. {
  19341. front: {
  19342. height: math.unit(5 + 10 / 12, "feet"),
  19343. weight: math.unit(252, "lb"),
  19344. name: "Front",
  19345. image: {
  19346. source: "./media/characters/bruun/front.svg",
  19347. extra: 197 / 187,
  19348. bottom: 0.012
  19349. }
  19350. },
  19351. },
  19352. [
  19353. {
  19354. name: "Normal",
  19355. height: math.unit(5 + 10 / 12, "feet"),
  19356. default: true
  19357. },
  19358. ]
  19359. ))
  19360. characterMakers.push(() => makeCharacter(
  19361. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19362. {
  19363. front: {
  19364. height: math.unit(6 + 10 / 12, "feet"),
  19365. weight: math.unit(255, "lb"),
  19366. name: "Front",
  19367. image: {
  19368. source: "./media/characters/alexeev/front.svg",
  19369. extra: 213 / 200,
  19370. bottom: 0.05
  19371. }
  19372. },
  19373. },
  19374. [
  19375. {
  19376. name: "Normal",
  19377. height: math.unit(6 + 10 / 12, "feet"),
  19378. default: true
  19379. },
  19380. ]
  19381. ))
  19382. characterMakers.push(() => makeCharacter(
  19383. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19384. {
  19385. front: {
  19386. height: math.unit(2 + 8 / 12, "feet"),
  19387. weight: math.unit(22, "lb"),
  19388. name: "Front",
  19389. image: {
  19390. source: "./media/characters/evelyn/front.svg",
  19391. extra: 208 / 180
  19392. }
  19393. },
  19394. },
  19395. [
  19396. {
  19397. name: "Normal",
  19398. height: math.unit(2 + 8 / 12, "feet"),
  19399. default: true
  19400. },
  19401. ]
  19402. ))
  19403. characterMakers.push(() => makeCharacter(
  19404. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19405. {
  19406. front: {
  19407. height: math.unit(5 + 9 / 12, "feet"),
  19408. weight: math.unit(139, "lb"),
  19409. name: "Front",
  19410. image: {
  19411. source: "./media/characters/inca/front.svg",
  19412. extra: 294 / 291,
  19413. bottom: 0.03
  19414. }
  19415. },
  19416. },
  19417. [
  19418. {
  19419. name: "Normal",
  19420. height: math.unit(5 + 9 / 12, "feet"),
  19421. default: true
  19422. },
  19423. ]
  19424. ))
  19425. characterMakers.push(() => makeCharacter(
  19426. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19427. {
  19428. front: {
  19429. height: math.unit(5 + 1 / 12, "feet"),
  19430. weight: math.unit(84, "lb"),
  19431. name: "Front",
  19432. image: {
  19433. source: "./media/characters/magdalene/front.svg",
  19434. extra: 293 / 273
  19435. }
  19436. },
  19437. },
  19438. [
  19439. {
  19440. name: "Normal",
  19441. height: math.unit(5 + 1 / 12, "feet"),
  19442. default: true
  19443. },
  19444. ]
  19445. ))
  19446. characterMakers.push(() => makeCharacter(
  19447. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19448. {
  19449. front: {
  19450. height: math.unit(6 + 3 / 12, "feet"),
  19451. weight: math.unit(185, "lb"),
  19452. name: "Front",
  19453. image: {
  19454. source: "./media/characters/mera/front.svg",
  19455. extra: 291 / 277,
  19456. bottom: 0.03
  19457. }
  19458. },
  19459. },
  19460. [
  19461. {
  19462. name: "Normal",
  19463. height: math.unit(6 + 3 / 12, "feet"),
  19464. default: true
  19465. },
  19466. ]
  19467. ))
  19468. characterMakers.push(() => makeCharacter(
  19469. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19470. {
  19471. front: {
  19472. height: math.unit(6 + 7 / 12, "feet"),
  19473. weight: math.unit(160, "lb"),
  19474. name: "Front",
  19475. image: {
  19476. source: "./media/characters/ceres/front.svg",
  19477. extra: 1023 / 950,
  19478. bottom: 0.027
  19479. }
  19480. },
  19481. back: {
  19482. height: math.unit(6 + 7 / 12, "feet"),
  19483. weight: math.unit(160, "lb"),
  19484. name: "Back",
  19485. image: {
  19486. source: "./media/characters/ceres/back.svg",
  19487. extra: 1023 / 950
  19488. }
  19489. },
  19490. },
  19491. [
  19492. {
  19493. name: "Normal",
  19494. height: math.unit(6 + 7 / 12, "feet"),
  19495. default: true
  19496. },
  19497. ]
  19498. ))
  19499. characterMakers.push(() => makeCharacter(
  19500. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19501. {
  19502. front: {
  19503. height: math.unit(5 + 10 / 12, "feet"),
  19504. weight: math.unit(150, "lb"),
  19505. name: "Front",
  19506. image: {
  19507. source: "./media/characters/kris/front.svg",
  19508. extra: 885 / 803,
  19509. bottom: 0.03
  19510. }
  19511. },
  19512. },
  19513. [
  19514. {
  19515. name: "Normal",
  19516. height: math.unit(5 + 10 / 12, "feet"),
  19517. default: true
  19518. },
  19519. ]
  19520. ))
  19521. characterMakers.push(() => makeCharacter(
  19522. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19523. {
  19524. front: {
  19525. height: math.unit(7, "feet"),
  19526. weight: math.unit(120, "kg"),
  19527. name: "Front",
  19528. image: {
  19529. source: "./media/characters/taluthus/front.svg",
  19530. extra: 903 / 833,
  19531. bottom: 0.015
  19532. }
  19533. },
  19534. },
  19535. [
  19536. {
  19537. name: "Normal",
  19538. height: math.unit(7, "feet"),
  19539. default: true
  19540. },
  19541. {
  19542. name: "Macro",
  19543. height: math.unit(300, "feet")
  19544. },
  19545. ]
  19546. ))
  19547. characterMakers.push(() => makeCharacter(
  19548. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19549. {
  19550. front: {
  19551. height: math.unit(5 + 9 / 12, "feet"),
  19552. weight: math.unit(145, "lb"),
  19553. name: "Front",
  19554. image: {
  19555. source: "./media/characters/dawn/front.svg",
  19556. extra: 2094 / 2016,
  19557. bottom: 0.025
  19558. }
  19559. },
  19560. back: {
  19561. height: math.unit(5 + 9 / 12, "feet"),
  19562. weight: math.unit(160, "lb"),
  19563. name: "Back",
  19564. image: {
  19565. source: "./media/characters/dawn/back.svg",
  19566. extra: 2112 / 2080,
  19567. bottom: 0.005
  19568. }
  19569. },
  19570. },
  19571. [
  19572. {
  19573. name: "Normal",
  19574. height: math.unit(6 + 7 / 12, "feet"),
  19575. default: true
  19576. },
  19577. ]
  19578. ))
  19579. characterMakers.push(() => makeCharacter(
  19580. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19581. {
  19582. anthro: {
  19583. height: math.unit(8 + 3 / 12, "feet"),
  19584. weight: math.unit(450, "lb"),
  19585. name: "Anthro",
  19586. image: {
  19587. source: "./media/characters/arador/anthro.svg",
  19588. extra: 1835 / 1718,
  19589. bottom: 0.025
  19590. }
  19591. },
  19592. feral: {
  19593. height: math.unit(4, "feet"),
  19594. weight: math.unit(200, "lb"),
  19595. name: "Feral",
  19596. image: {
  19597. source: "./media/characters/arador/feral.svg",
  19598. extra: 1683 / 1514,
  19599. bottom: 0.07
  19600. }
  19601. },
  19602. },
  19603. [
  19604. {
  19605. name: "Normal",
  19606. height: math.unit(8 + 3 / 12, "feet")
  19607. },
  19608. {
  19609. name: "Macro",
  19610. height: math.unit(82.5, "feet"),
  19611. default: true
  19612. },
  19613. ]
  19614. ))
  19615. characterMakers.push(() => makeCharacter(
  19616. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19617. {
  19618. front: {
  19619. height: math.unit(5 + 10 / 12, "feet"),
  19620. weight: math.unit(125, "lb"),
  19621. name: "Front",
  19622. image: {
  19623. source: "./media/characters/dharsi/front.svg",
  19624. extra: 716 / 630,
  19625. bottom: 0.035
  19626. }
  19627. },
  19628. },
  19629. [
  19630. {
  19631. name: "Nano",
  19632. height: math.unit(100, "nm")
  19633. },
  19634. {
  19635. name: "Micro",
  19636. height: math.unit(2, "inches")
  19637. },
  19638. {
  19639. name: "Normal",
  19640. height: math.unit(5 + 10 / 12, "feet"),
  19641. default: true
  19642. },
  19643. {
  19644. name: "Macro",
  19645. height: math.unit(1000, "feet")
  19646. },
  19647. {
  19648. name: "Megamacro",
  19649. height: math.unit(10, "miles")
  19650. },
  19651. {
  19652. name: "Gigamacro",
  19653. height: math.unit(3000, "miles")
  19654. },
  19655. {
  19656. name: "Teramacro",
  19657. height: math.unit(500000, "miles")
  19658. },
  19659. {
  19660. name: "Teramacro+",
  19661. height: math.unit(30, "galaxies")
  19662. },
  19663. ]
  19664. ))
  19665. characterMakers.push(() => makeCharacter(
  19666. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19667. {
  19668. front: {
  19669. height: math.unit(6, "feet"),
  19670. weight: math.unit(150, "lb"),
  19671. name: "Front",
  19672. image: {
  19673. source: "./media/characters/deathy/front.svg",
  19674. extra: 1552 / 1463,
  19675. bottom: 0.025
  19676. }
  19677. },
  19678. side: {
  19679. height: math.unit(6, "feet"),
  19680. weight: math.unit(150, "lb"),
  19681. name: "Side",
  19682. image: {
  19683. source: "./media/characters/deathy/side.svg",
  19684. extra: 1604 / 1455,
  19685. bottom: 0.025
  19686. }
  19687. },
  19688. back: {
  19689. height: math.unit(6, "feet"),
  19690. weight: math.unit(150, "lb"),
  19691. name: "Back",
  19692. image: {
  19693. source: "./media/characters/deathy/back.svg",
  19694. extra: 1580 / 1463,
  19695. bottom: 0.005
  19696. }
  19697. },
  19698. },
  19699. [
  19700. {
  19701. name: "Micro",
  19702. height: math.unit(5, "millimeters")
  19703. },
  19704. {
  19705. name: "Normal",
  19706. height: math.unit(6 + 5 / 12, "feet"),
  19707. default: true
  19708. },
  19709. ]
  19710. ))
  19711. characterMakers.push(() => makeCharacter(
  19712. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19713. {
  19714. front: {
  19715. height: math.unit(16, "feet"),
  19716. weight: math.unit(4000, "lb"),
  19717. name: "Front",
  19718. image: {
  19719. source: "./media/characters/juniper/front.svg",
  19720. bottom: 0.04
  19721. }
  19722. },
  19723. },
  19724. [
  19725. {
  19726. name: "Normal",
  19727. height: math.unit(16, "feet"),
  19728. default: true
  19729. },
  19730. ]
  19731. ))
  19732. characterMakers.push(() => makeCharacter(
  19733. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19734. {
  19735. front: {
  19736. height: math.unit(6, "feet"),
  19737. weight: math.unit(150, "lb"),
  19738. name: "Front",
  19739. image: {
  19740. source: "./media/characters/hipster/front.svg",
  19741. extra: 1312 / 1209,
  19742. bottom: 0.025
  19743. }
  19744. },
  19745. back: {
  19746. height: math.unit(6, "feet"),
  19747. weight: math.unit(150, "lb"),
  19748. name: "Back",
  19749. image: {
  19750. source: "./media/characters/hipster/back.svg",
  19751. extra: 1281 / 1196,
  19752. bottom: 0.01
  19753. }
  19754. },
  19755. },
  19756. [
  19757. {
  19758. name: "Micro",
  19759. height: math.unit(1, "mm")
  19760. },
  19761. {
  19762. name: "Normal",
  19763. height: math.unit(4, "inches"),
  19764. default: true
  19765. },
  19766. {
  19767. name: "Macro",
  19768. height: math.unit(500, "feet")
  19769. },
  19770. {
  19771. name: "Megamacro",
  19772. height: math.unit(1000, "miles")
  19773. },
  19774. ]
  19775. ))
  19776. characterMakers.push(() => makeCharacter(
  19777. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19778. {
  19779. front: {
  19780. height: math.unit(6, "feet"),
  19781. weight: math.unit(150, "lb"),
  19782. name: "Front",
  19783. image: {
  19784. source: "./media/characters/tendirmuldr/front.svg",
  19785. extra: 1878 / 1772,
  19786. bottom: 0.015
  19787. }
  19788. },
  19789. },
  19790. [
  19791. {
  19792. name: "Megamacro",
  19793. height: math.unit(1500, "miles"),
  19794. default: true
  19795. },
  19796. ]
  19797. ))
  19798. characterMakers.push(() => makeCharacter(
  19799. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19800. {
  19801. front: {
  19802. height: math.unit(14, "feet"),
  19803. weight: math.unit(12000, "lb"),
  19804. name: "Front",
  19805. image: {
  19806. source: "./media/characters/mort/front.svg",
  19807. extra: 365 / 318,
  19808. bottom: 0.01
  19809. }
  19810. },
  19811. side: {
  19812. height: math.unit(14, "feet"),
  19813. weight: math.unit(12000, "lb"),
  19814. name: "Side",
  19815. image: {
  19816. source: "./media/characters/mort/side.svg",
  19817. extra: 365 / 318,
  19818. bottom: 0.052
  19819. },
  19820. default: true
  19821. },
  19822. back: {
  19823. height: math.unit(14, "feet"),
  19824. weight: math.unit(12000, "lb"),
  19825. name: "Back",
  19826. image: {
  19827. source: "./media/characters/mort/back.svg",
  19828. extra: 371 / 332,
  19829. bottom: 0.18
  19830. }
  19831. },
  19832. },
  19833. [
  19834. {
  19835. name: "Normal",
  19836. height: math.unit(14, "feet"),
  19837. default: true
  19838. },
  19839. ]
  19840. ))
  19841. characterMakers.push(() => makeCharacter(
  19842. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19843. {
  19844. front: {
  19845. height: math.unit(8, "feet"),
  19846. weight: math.unit(1, "ton"),
  19847. name: "Front",
  19848. image: {
  19849. source: "./media/characters/lycoa/front.svg",
  19850. extra: 1875 / 1789,
  19851. bottom: 0.022
  19852. }
  19853. },
  19854. back: {
  19855. height: math.unit(8, "feet"),
  19856. weight: math.unit(1, "ton"),
  19857. name: "Back",
  19858. image: {
  19859. source: "./media/characters/lycoa/back.svg",
  19860. extra: 1835 / 1781,
  19861. bottom: 0.03
  19862. }
  19863. },
  19864. head: {
  19865. height: math.unit(2.1, "feet"),
  19866. name: "Head",
  19867. image: {
  19868. source: "./media/characters/lycoa/head.svg"
  19869. }
  19870. },
  19871. tailmaw: {
  19872. height: math.unit(1.9, "feet"),
  19873. name: "Tailmaw",
  19874. image: {
  19875. source: "./media/characters/lycoa/tailmaw.svg"
  19876. }
  19877. },
  19878. tentacles: {
  19879. height: math.unit(2.1, "feet"),
  19880. name: "Tentacles",
  19881. image: {
  19882. source: "./media/characters/lycoa/tentacles.svg"
  19883. }
  19884. },
  19885. dick: {
  19886. height: math.unit(1.73, "feet"),
  19887. name: "Dick",
  19888. image: {
  19889. source: "./media/characters/lycoa/dick.svg"
  19890. }
  19891. },
  19892. },
  19893. [
  19894. {
  19895. name: "Normal",
  19896. height: math.unit(8, "feet"),
  19897. default: true
  19898. },
  19899. {
  19900. name: "Macro",
  19901. height: math.unit(30, "feet")
  19902. },
  19903. ]
  19904. ))
  19905. characterMakers.push(() => makeCharacter(
  19906. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19907. {
  19908. front: {
  19909. height: math.unit(4 + 2 / 12, "feet"),
  19910. weight: math.unit(70, "lb"),
  19911. name: "Front",
  19912. image: {
  19913. source: "./media/characters/naldara/front.svg",
  19914. extra: 841 / 720,
  19915. bottom: 0.04
  19916. }
  19917. },
  19918. naga: {
  19919. height: math.unit(23, "feet"),
  19920. weight: math.unit(15000, "kg"),
  19921. name: "Naga",
  19922. image: {
  19923. source: "./media/characters/naldara/naga.svg",
  19924. extra: 3290 / 2959,
  19925. bottom: 124 / 3432
  19926. }
  19927. },
  19928. },
  19929. [
  19930. {
  19931. name: "Normal",
  19932. height: math.unit(4 + 2 / 12, "feet"),
  19933. default: true
  19934. },
  19935. ]
  19936. ))
  19937. characterMakers.push(() => makeCharacter(
  19938. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19939. {
  19940. front: {
  19941. height: math.unit(13 + 7 / 12, "feet"),
  19942. weight: math.unit(1500, "lb"),
  19943. name: "Front",
  19944. image: {
  19945. source: "./media/characters/briar/front.svg",
  19946. extra: 626 / 596,
  19947. bottom: 0.08
  19948. }
  19949. },
  19950. },
  19951. [
  19952. {
  19953. name: "Normal",
  19954. height: math.unit(13 + 7 / 12, "feet"),
  19955. default: true
  19956. },
  19957. ]
  19958. ))
  19959. characterMakers.push(() => makeCharacter(
  19960. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19961. {
  19962. side: {
  19963. height: math.unit(10, "feet"),
  19964. weight: math.unit(500, "lb"),
  19965. name: "Side",
  19966. image: {
  19967. source: "./media/characters/vanguard/side.svg",
  19968. extra: 502 / 425,
  19969. bottom: 0.087
  19970. }
  19971. },
  19972. },
  19973. [
  19974. {
  19975. name: "Normal",
  19976. height: math.unit(10, "feet"),
  19977. default: true
  19978. },
  19979. ]
  19980. ))
  19981. characterMakers.push(() => makeCharacter(
  19982. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19983. {
  19984. front: {
  19985. height: math.unit(7.5, "feet"),
  19986. weight: math.unit(2, "lb"),
  19987. name: "Front",
  19988. image: {
  19989. source: "./media/characters/artemis/front.svg",
  19990. extra: 1192 / 1075,
  19991. bottom: 0.07
  19992. }
  19993. },
  19994. frontNsfw: {
  19995. height: math.unit(7.5, "feet"),
  19996. weight: math.unit(2, "lb"),
  19997. name: "Front (NSFW)",
  19998. image: {
  19999. source: "./media/characters/artemis/front-nsfw.svg",
  20000. extra: 1192 / 1075,
  20001. bottom: 0.07
  20002. }
  20003. },
  20004. frontNsfwer: {
  20005. height: math.unit(7.5, "feet"),
  20006. weight: math.unit(2, "lb"),
  20007. name: "Front (NSFW-er)",
  20008. image: {
  20009. source: "./media/characters/artemis/front-nsfwer.svg",
  20010. extra: 1192 / 1075,
  20011. bottom: 0.07
  20012. }
  20013. },
  20014. side: {
  20015. height: math.unit(7.5, "feet"),
  20016. weight: math.unit(2, "lb"),
  20017. name: "Side",
  20018. image: {
  20019. source: "./media/characters/artemis/side.svg",
  20020. extra: 1192 / 1075,
  20021. bottom: 0.07
  20022. }
  20023. },
  20024. sideNsfw: {
  20025. height: math.unit(7.5, "feet"),
  20026. weight: math.unit(2, "lb"),
  20027. name: "Side (NSFW)",
  20028. image: {
  20029. source: "./media/characters/artemis/side-nsfw.svg",
  20030. extra: 1192 / 1075,
  20031. bottom: 0.07
  20032. }
  20033. },
  20034. sideNsfwer: {
  20035. height: math.unit(7.5, "feet"),
  20036. weight: math.unit(2, "lb"),
  20037. name: "Side (NSFW-er)",
  20038. image: {
  20039. source: "./media/characters/artemis/side-nsfwer.svg",
  20040. extra: 1192 / 1075,
  20041. bottom: 0.07
  20042. }
  20043. },
  20044. maw: {
  20045. height: math.unit(1.1, "feet"),
  20046. name: "Maw",
  20047. image: {
  20048. source: "./media/characters/artemis/maw.svg"
  20049. }
  20050. },
  20051. stomach: {
  20052. height: math.unit(0.95, "feet"),
  20053. name: "Stomach",
  20054. image: {
  20055. source: "./media/characters/artemis/stomach.svg"
  20056. }
  20057. },
  20058. dickCanine: {
  20059. height: math.unit(1, "feet"),
  20060. name: "Dick (Canine)",
  20061. image: {
  20062. source: "./media/characters/artemis/dick-canine.svg"
  20063. }
  20064. },
  20065. dickEquine: {
  20066. height: math.unit(0.85, "feet"),
  20067. name: "Dick (Equine)",
  20068. image: {
  20069. source: "./media/characters/artemis/dick-equine.svg"
  20070. }
  20071. },
  20072. dickExotic: {
  20073. height: math.unit(0.85, "feet"),
  20074. name: "Dick (Exotic)",
  20075. image: {
  20076. source: "./media/characters/artemis/dick-exotic.svg"
  20077. }
  20078. },
  20079. },
  20080. [
  20081. {
  20082. name: "Normal",
  20083. height: math.unit(7.5, "feet"),
  20084. default: true
  20085. },
  20086. {
  20087. name: "Enlarged",
  20088. height: math.unit(12, "feet")
  20089. },
  20090. ]
  20091. ))
  20092. characterMakers.push(() => makeCharacter(
  20093. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20094. {
  20095. front: {
  20096. height: math.unit(5 + 3 / 12, "feet"),
  20097. weight: math.unit(160, "lb"),
  20098. name: "Front",
  20099. image: {
  20100. source: "./media/characters/kira/front.svg",
  20101. extra: 906 / 786,
  20102. bottom: 0.01
  20103. }
  20104. },
  20105. back: {
  20106. height: math.unit(5 + 3 / 12, "feet"),
  20107. weight: math.unit(160, "lb"),
  20108. name: "Back",
  20109. image: {
  20110. source: "./media/characters/kira/back.svg",
  20111. extra: 882 / 757,
  20112. bottom: 0.005
  20113. }
  20114. },
  20115. frontDressed: {
  20116. height: math.unit(5 + 3 / 12, "feet"),
  20117. weight: math.unit(160, "lb"),
  20118. name: "Front (Dressed)",
  20119. image: {
  20120. source: "./media/characters/kira/front-dressed.svg",
  20121. extra: 906 / 786,
  20122. bottom: 0.01
  20123. }
  20124. },
  20125. beans: {
  20126. height: math.unit(0.92, "feet"),
  20127. name: "Beans",
  20128. image: {
  20129. source: "./media/characters/kira/beans.svg"
  20130. }
  20131. },
  20132. },
  20133. [
  20134. {
  20135. name: "Normal",
  20136. height: math.unit(5 + 3 / 12, "feet"),
  20137. default: true
  20138. },
  20139. ]
  20140. ))
  20141. characterMakers.push(() => makeCharacter(
  20142. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20143. {
  20144. front: {
  20145. height: math.unit(5 + 4 / 12, "feet"),
  20146. weight: math.unit(145, "lb"),
  20147. name: "Front",
  20148. image: {
  20149. source: "./media/characters/scramble/front.svg",
  20150. extra: 763 / 727,
  20151. bottom: 0.05
  20152. }
  20153. },
  20154. back: {
  20155. height: math.unit(5 + 4 / 12, "feet"),
  20156. weight: math.unit(145, "lb"),
  20157. name: "Back",
  20158. image: {
  20159. source: "./media/characters/scramble/back.svg",
  20160. extra: 826 / 737,
  20161. bottom: 0.002
  20162. }
  20163. },
  20164. },
  20165. [
  20166. {
  20167. name: "Normal",
  20168. height: math.unit(5 + 4 / 12, "feet"),
  20169. default: true
  20170. },
  20171. ]
  20172. ))
  20173. characterMakers.push(() => makeCharacter(
  20174. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20175. {
  20176. side: {
  20177. height: math.unit(6 + 2 / 12, "feet"),
  20178. weight: math.unit(190, "lb"),
  20179. name: "Side",
  20180. image: {
  20181. source: "./media/characters/biscuit/side.svg",
  20182. extra: 858 / 791,
  20183. bottom: 0.044
  20184. }
  20185. },
  20186. },
  20187. [
  20188. {
  20189. name: "Normal",
  20190. height: math.unit(6 + 2 / 12, "feet"),
  20191. default: true
  20192. },
  20193. ]
  20194. ))
  20195. characterMakers.push(() => makeCharacter(
  20196. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20197. {
  20198. front: {
  20199. height: math.unit(5 + 2 / 12, "feet"),
  20200. weight: math.unit(120, "lb"),
  20201. name: "Front",
  20202. image: {
  20203. source: "./media/characters/poffin/front.svg",
  20204. extra: 786 / 680,
  20205. bottom: 0.005
  20206. }
  20207. },
  20208. },
  20209. [
  20210. {
  20211. name: "Normal",
  20212. height: math.unit(5 + 2 / 12, "feet"),
  20213. default: true
  20214. },
  20215. ]
  20216. ))
  20217. characterMakers.push(() => makeCharacter(
  20218. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20219. {
  20220. front: {
  20221. height: math.unit(6 + 3 / 12, "feet"),
  20222. weight: math.unit(519, "lb"),
  20223. name: "Front",
  20224. image: {
  20225. source: "./media/characters/dhari/front.svg",
  20226. extra: 1048 / 946,
  20227. bottom: 0.015
  20228. }
  20229. },
  20230. back: {
  20231. height: math.unit(6 + 3 / 12, "feet"),
  20232. weight: math.unit(519, "lb"),
  20233. name: "Back",
  20234. image: {
  20235. source: "./media/characters/dhari/back.svg",
  20236. extra: 1048 / 931,
  20237. bottom: 0.005
  20238. }
  20239. },
  20240. frontDressed: {
  20241. height: math.unit(6 + 3 / 12, "feet"),
  20242. weight: math.unit(519, "lb"),
  20243. name: "Front (Dressed)",
  20244. image: {
  20245. source: "./media/characters/dhari/front-dressed.svg",
  20246. extra: 1713 / 1546,
  20247. bottom: 0.02
  20248. }
  20249. },
  20250. backDressed: {
  20251. height: math.unit(6 + 3 / 12, "feet"),
  20252. weight: math.unit(519, "lb"),
  20253. name: "Back (Dressed)",
  20254. image: {
  20255. source: "./media/characters/dhari/back-dressed.svg",
  20256. extra: 1699 / 1537,
  20257. bottom: 0.01
  20258. }
  20259. },
  20260. maw: {
  20261. height: math.unit(0.95, "feet"),
  20262. name: "Maw",
  20263. image: {
  20264. source: "./media/characters/dhari/maw.svg"
  20265. }
  20266. },
  20267. wereFront: {
  20268. height: math.unit(12 + 8 / 12, "feet"),
  20269. weight: math.unit(4000, "lb"),
  20270. name: "Front (Were)",
  20271. image: {
  20272. source: "./media/characters/dhari/were-front.svg",
  20273. extra: 1065 / 969,
  20274. bottom: 0.015
  20275. }
  20276. },
  20277. wereBack: {
  20278. height: math.unit(12 + 8 / 12, "feet"),
  20279. weight: math.unit(4000, "lb"),
  20280. name: "Back (Were)",
  20281. image: {
  20282. source: "./media/characters/dhari/were-back.svg",
  20283. extra: 1065 / 969,
  20284. bottom: 0.012
  20285. }
  20286. },
  20287. wereMaw: {
  20288. height: math.unit(0.625, "meters"),
  20289. name: "Maw (Were)",
  20290. image: {
  20291. source: "./media/characters/dhari/were-maw.svg"
  20292. }
  20293. },
  20294. },
  20295. [
  20296. {
  20297. name: "Normal",
  20298. height: math.unit(6 + 3 / 12, "feet"),
  20299. default: true
  20300. },
  20301. ]
  20302. ))
  20303. characterMakers.push(() => makeCharacter(
  20304. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20305. {
  20306. anthro: {
  20307. height: math.unit(5 + 7 / 12, "feet"),
  20308. weight: math.unit(175, "lb"),
  20309. name: "Anthro",
  20310. image: {
  20311. source: "./media/characters/rena-dyne/anthro.svg",
  20312. extra: 1849 / 1785,
  20313. bottom: 0.005
  20314. }
  20315. },
  20316. taur: {
  20317. height: math.unit(15 + 6 / 12, "feet"),
  20318. weight: math.unit(8000, "lb"),
  20319. name: "Taur",
  20320. image: {
  20321. source: "./media/characters/rena-dyne/taur.svg",
  20322. extra: 2315 / 2234,
  20323. bottom: 0.033
  20324. }
  20325. },
  20326. },
  20327. [
  20328. {
  20329. name: "Normal",
  20330. height: math.unit(5 + 7 / 12, "feet"),
  20331. default: true
  20332. },
  20333. ]
  20334. ))
  20335. characterMakers.push(() => makeCharacter(
  20336. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20337. {
  20338. front: {
  20339. height: math.unit(8, "feet"),
  20340. weight: math.unit(600, "lb"),
  20341. name: "Front",
  20342. image: {
  20343. source: "./media/characters/weremeep/front.svg",
  20344. extra: 967 / 862,
  20345. bottom: 0.01
  20346. }
  20347. },
  20348. },
  20349. [
  20350. {
  20351. name: "Normal",
  20352. height: math.unit(8, "feet"),
  20353. default: true
  20354. },
  20355. {
  20356. name: "Lorg",
  20357. height: math.unit(12, "feet")
  20358. },
  20359. {
  20360. name: "Oh Lawd She Comin'",
  20361. height: math.unit(20, "feet")
  20362. },
  20363. ]
  20364. ))
  20365. characterMakers.push(() => makeCharacter(
  20366. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20367. {
  20368. front: {
  20369. height: math.unit(4, "feet"),
  20370. weight: math.unit(90, "lb"),
  20371. name: "Front",
  20372. image: {
  20373. source: "./media/characters/reza/front.svg",
  20374. extra: 1183 / 1111,
  20375. bottom: 0.017
  20376. }
  20377. },
  20378. back: {
  20379. height: math.unit(4, "feet"),
  20380. weight: math.unit(90, "lb"),
  20381. name: "Back",
  20382. image: {
  20383. source: "./media/characters/reza/back.svg",
  20384. extra: 1183 / 1111,
  20385. bottom: 0.01
  20386. }
  20387. },
  20388. drake: {
  20389. height: math.unit(30, "feet"),
  20390. weight: math.unit(246960, "lb"),
  20391. name: "Drake",
  20392. image: {
  20393. source: "./media/characters/reza/drake.svg",
  20394. extra: 2350 / 2024,
  20395. bottom: 60.7 / 2403
  20396. }
  20397. },
  20398. },
  20399. [
  20400. {
  20401. name: "Normal",
  20402. height: math.unit(4, "feet"),
  20403. default: true
  20404. },
  20405. ]
  20406. ))
  20407. characterMakers.push(() => makeCharacter(
  20408. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20409. {
  20410. side: {
  20411. height: math.unit(15, "feet"),
  20412. weight: math.unit(14, "tons"),
  20413. name: "Side",
  20414. image: {
  20415. source: "./media/characters/athea/side.svg",
  20416. extra: 960 / 540,
  20417. bottom: 0.003
  20418. }
  20419. },
  20420. sitting: {
  20421. height: math.unit(6 * 2.85, "feet"),
  20422. weight: math.unit(14, "tons"),
  20423. name: "Sitting",
  20424. image: {
  20425. source: "./media/characters/athea/sitting.svg",
  20426. extra: 621 / 581,
  20427. bottom: 0.075
  20428. }
  20429. },
  20430. maw: {
  20431. height: math.unit(7.59498031496063, "feet"),
  20432. name: "Maw",
  20433. image: {
  20434. source: "./media/characters/athea/maw.svg"
  20435. }
  20436. },
  20437. },
  20438. [
  20439. {
  20440. name: "Lap Cat",
  20441. height: math.unit(2.5, "feet")
  20442. },
  20443. {
  20444. name: "Minimacro",
  20445. height: math.unit(15, "feet"),
  20446. default: true
  20447. },
  20448. {
  20449. name: "Macro",
  20450. height: math.unit(120, "feet")
  20451. },
  20452. {
  20453. name: "Macro+",
  20454. height: math.unit(640, "feet")
  20455. },
  20456. {
  20457. name: "Colossus",
  20458. height: math.unit(2.2, "miles")
  20459. },
  20460. ]
  20461. ))
  20462. characterMakers.push(() => makeCharacter(
  20463. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20464. {
  20465. front: {
  20466. height: math.unit(8 + 8 / 12, "feet"),
  20467. weight: math.unit(130, "kg"),
  20468. name: "Front",
  20469. image: {
  20470. source: "./media/characters/seroko/front.svg",
  20471. extra: 1385 / 1280,
  20472. bottom: 0.025
  20473. }
  20474. },
  20475. back: {
  20476. height: math.unit(8 + 8 / 12, "feet"),
  20477. weight: math.unit(130, "kg"),
  20478. name: "Back",
  20479. image: {
  20480. source: "./media/characters/seroko/back.svg",
  20481. extra: 1369 / 1238,
  20482. bottom: 0.018
  20483. }
  20484. },
  20485. frontDressed: {
  20486. height: math.unit(8 + 8 / 12, "feet"),
  20487. weight: math.unit(130, "kg"),
  20488. name: "Front (Dressed)",
  20489. image: {
  20490. source: "./media/characters/seroko/front-dressed.svg",
  20491. extra: 1366 / 1275,
  20492. bottom: 0.03
  20493. }
  20494. },
  20495. },
  20496. [
  20497. {
  20498. name: "Normal",
  20499. height: math.unit(8 + 8 / 12, "feet"),
  20500. default: true
  20501. },
  20502. ]
  20503. ))
  20504. characterMakers.push(() => makeCharacter(
  20505. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20506. {
  20507. front: {
  20508. height: math.unit(5.5, "feet"),
  20509. weight: math.unit(160, "lb"),
  20510. name: "Front",
  20511. image: {
  20512. source: "./media/characters/quatzi/front.svg",
  20513. extra: 2346 / 2242,
  20514. bottom: 0.015
  20515. }
  20516. },
  20517. },
  20518. [
  20519. {
  20520. name: "Normal",
  20521. height: math.unit(5.5, "feet"),
  20522. default: true
  20523. },
  20524. {
  20525. name: "Big",
  20526. height: math.unit(7.7, "feet")
  20527. },
  20528. ]
  20529. ))
  20530. characterMakers.push(() => makeCharacter(
  20531. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20532. {
  20533. front: {
  20534. height: math.unit(5 + 11 / 12, "feet"),
  20535. weight: math.unit(180, "lb"),
  20536. name: "Front",
  20537. image: {
  20538. source: "./media/characters/sen/front.svg",
  20539. extra: 1321 / 1254,
  20540. bottom: 0.015
  20541. }
  20542. },
  20543. side: {
  20544. height: math.unit(5 + 11 / 12, "feet"),
  20545. weight: math.unit(180, "lb"),
  20546. name: "Side",
  20547. image: {
  20548. source: "./media/characters/sen/side.svg",
  20549. extra: 1321 / 1254,
  20550. bottom: 0.007
  20551. }
  20552. },
  20553. back: {
  20554. height: math.unit(5 + 11 / 12, "feet"),
  20555. weight: math.unit(180, "lb"),
  20556. name: "Back",
  20557. image: {
  20558. source: "./media/characters/sen/back.svg",
  20559. extra: 1321 / 1254
  20560. }
  20561. },
  20562. },
  20563. [
  20564. {
  20565. name: "Normal",
  20566. height: math.unit(5 + 11 / 12, "feet"),
  20567. default: true
  20568. },
  20569. ]
  20570. ))
  20571. characterMakers.push(() => makeCharacter(
  20572. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20573. {
  20574. front: {
  20575. height: math.unit(166.6, "cm"),
  20576. weight: math.unit(66.6, "kg"),
  20577. name: "Front",
  20578. image: {
  20579. source: "./media/characters/fruity/front.svg",
  20580. extra: 1510 / 1386,
  20581. bottom: 0.04
  20582. }
  20583. },
  20584. back: {
  20585. height: math.unit(166.6, "cm"),
  20586. weight: math.unit(66.6, "lb"),
  20587. name: "Back",
  20588. image: {
  20589. source: "./media/characters/fruity/back.svg",
  20590. extra: 1563 / 1435,
  20591. bottom: 0.005
  20592. }
  20593. },
  20594. },
  20595. [
  20596. {
  20597. name: "Normal",
  20598. height: math.unit(166.6, "cm"),
  20599. default: true
  20600. },
  20601. {
  20602. name: "Demonic",
  20603. height: math.unit(166.6, "feet")
  20604. },
  20605. ]
  20606. ))
  20607. characterMakers.push(() => makeCharacter(
  20608. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20609. {
  20610. side: {
  20611. height: math.unit(10, "feet"),
  20612. weight: math.unit(500, "lb"),
  20613. name: "Side",
  20614. image: {
  20615. source: "./media/characters/zost/side.svg",
  20616. extra: 966 / 880,
  20617. bottom: 0.075
  20618. }
  20619. },
  20620. mawFront: {
  20621. height: math.unit(1.08, "meters"),
  20622. name: "Maw (Front)",
  20623. image: {
  20624. source: "./media/characters/zost/maw-front.svg"
  20625. }
  20626. },
  20627. mawSide: {
  20628. height: math.unit(2.66, "feet"),
  20629. name: "Maw (Side)",
  20630. image: {
  20631. source: "./media/characters/zost/maw-side.svg"
  20632. }
  20633. },
  20634. },
  20635. [
  20636. {
  20637. name: "Normal",
  20638. height: math.unit(10, "feet"),
  20639. default: true
  20640. },
  20641. ]
  20642. ))
  20643. characterMakers.push(() => makeCharacter(
  20644. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20645. {
  20646. front: {
  20647. height: math.unit(5 + 4 / 12, "feet"),
  20648. weight: math.unit(120, "lb"),
  20649. name: "Front",
  20650. image: {
  20651. source: "./media/characters/luci/front.svg",
  20652. extra: 1985 / 1884,
  20653. bottom: 0.04
  20654. }
  20655. },
  20656. back: {
  20657. height: math.unit(5 + 4 / 12, "feet"),
  20658. weight: math.unit(120, "lb"),
  20659. name: "Back",
  20660. image: {
  20661. source: "./media/characters/luci/back.svg",
  20662. extra: 1892 / 1791,
  20663. bottom: 0.002
  20664. }
  20665. },
  20666. },
  20667. [
  20668. {
  20669. name: "Normal",
  20670. height: math.unit(5 + 4 / 12, "feet"),
  20671. default: true
  20672. },
  20673. ]
  20674. ))
  20675. characterMakers.push(() => makeCharacter(
  20676. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20677. {
  20678. front: {
  20679. height: math.unit(1500, "feet"),
  20680. weight: math.unit(3.8e6, "tons"),
  20681. name: "Front",
  20682. image: {
  20683. source: "./media/characters/2th/front.svg",
  20684. extra: 3489 / 3350,
  20685. bottom: 0.1
  20686. }
  20687. },
  20688. foot: {
  20689. height: math.unit(461, "feet"),
  20690. name: "Foot",
  20691. image: {
  20692. source: "./media/characters/2th/foot.svg"
  20693. }
  20694. },
  20695. },
  20696. [
  20697. {
  20698. name: "\"Micro\"",
  20699. height: math.unit(15 + 7 / 12, "feet")
  20700. },
  20701. {
  20702. name: "Normal",
  20703. height: math.unit(1500, "feet"),
  20704. default: true
  20705. },
  20706. {
  20707. name: "Macro",
  20708. height: math.unit(5000, "feet")
  20709. },
  20710. {
  20711. name: "Megamacro",
  20712. height: math.unit(15, "miles")
  20713. },
  20714. {
  20715. name: "Gigamacro",
  20716. height: math.unit(4000, "miles")
  20717. },
  20718. {
  20719. name: "Galactic",
  20720. height: math.unit(50, "AU")
  20721. },
  20722. ]
  20723. ))
  20724. characterMakers.push(() => makeCharacter(
  20725. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20726. {
  20727. front: {
  20728. height: math.unit(5 + 6 / 12, "feet"),
  20729. weight: math.unit(220, "lb"),
  20730. name: "Front",
  20731. image: {
  20732. source: "./media/characters/amethyst/front.svg",
  20733. extra: 2078 / 2040,
  20734. bottom: 0.045
  20735. }
  20736. },
  20737. back: {
  20738. height: math.unit(5 + 6 / 12, "feet"),
  20739. weight: math.unit(220, "lb"),
  20740. name: "Back",
  20741. image: {
  20742. source: "./media/characters/amethyst/back.svg",
  20743. extra: 2021 / 1989,
  20744. bottom: 0.02
  20745. }
  20746. },
  20747. },
  20748. [
  20749. {
  20750. name: "Normal",
  20751. height: math.unit(5 + 6 / 12, "feet"),
  20752. default: true
  20753. },
  20754. ]
  20755. ))
  20756. characterMakers.push(() => makeCharacter(
  20757. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20758. {
  20759. front: {
  20760. height: math.unit(4 + 11 / 12, "feet"),
  20761. weight: math.unit(120, "lb"),
  20762. name: "Front",
  20763. image: {
  20764. source: "./media/characters/yumi-akiyama/front.svg",
  20765. extra: 1327 / 1235,
  20766. bottom: 0.02
  20767. }
  20768. },
  20769. back: {
  20770. height: math.unit(4 + 11 / 12, "feet"),
  20771. weight: math.unit(120, "lb"),
  20772. name: "Back",
  20773. image: {
  20774. source: "./media/characters/yumi-akiyama/back.svg",
  20775. extra: 1287 / 1245,
  20776. bottom: 0.002
  20777. }
  20778. },
  20779. },
  20780. [
  20781. {
  20782. name: "Galactic",
  20783. height: math.unit(50, "galaxies"),
  20784. default: true
  20785. },
  20786. {
  20787. name: "Universal",
  20788. height: math.unit(100, "universes")
  20789. },
  20790. ]
  20791. ))
  20792. characterMakers.push(() => makeCharacter(
  20793. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20794. {
  20795. front: {
  20796. height: math.unit(8, "feet"),
  20797. weight: math.unit(500, "lb"),
  20798. name: "Front",
  20799. image: {
  20800. source: "./media/characters/rifter-yrmori/front.svg",
  20801. extra: 1180 / 1125,
  20802. bottom: 0.02
  20803. }
  20804. },
  20805. back: {
  20806. height: math.unit(8, "feet"),
  20807. weight: math.unit(500, "lb"),
  20808. name: "Back",
  20809. image: {
  20810. source: "./media/characters/rifter-yrmori/back.svg",
  20811. extra: 1190 / 1145,
  20812. bottom: 0.001
  20813. }
  20814. },
  20815. wings: {
  20816. height: math.unit(7.75, "feet"),
  20817. weight: math.unit(500, "lb"),
  20818. name: "Wings",
  20819. image: {
  20820. source: "./media/characters/rifter-yrmori/wings.svg",
  20821. extra: 1357 / 1285
  20822. }
  20823. },
  20824. maw: {
  20825. height: math.unit(0.8, "feet"),
  20826. name: "Maw",
  20827. image: {
  20828. source: "./media/characters/rifter-yrmori/maw.svg"
  20829. }
  20830. },
  20831. mawfront: {
  20832. height: math.unit(1.45, "feet"),
  20833. name: "Maw (Front)",
  20834. image: {
  20835. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20836. }
  20837. },
  20838. },
  20839. [
  20840. {
  20841. name: "Normal",
  20842. height: math.unit(8, "feet"),
  20843. default: true
  20844. },
  20845. {
  20846. name: "Macro",
  20847. height: math.unit(42, "meters")
  20848. },
  20849. ]
  20850. ))
  20851. characterMakers.push(() => makeCharacter(
  20852. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20853. {
  20854. were: {
  20855. height: math.unit(25 + 6 / 12, "feet"),
  20856. weight: math.unit(10000, "lb"),
  20857. name: "Were",
  20858. image: {
  20859. source: "./media/characters/tahajin/were.svg",
  20860. extra: 801 / 770,
  20861. bottom: 0.042
  20862. }
  20863. },
  20864. aquatic: {
  20865. height: math.unit(6 + 4 / 12, "feet"),
  20866. weight: math.unit(160, "lb"),
  20867. name: "Aquatic",
  20868. image: {
  20869. source: "./media/characters/tahajin/aquatic.svg",
  20870. extra: 572 / 542,
  20871. bottom: 0.04
  20872. }
  20873. },
  20874. chow: {
  20875. height: math.unit(8 + 11 / 12, "feet"),
  20876. weight: math.unit(450, "lb"),
  20877. name: "Chow",
  20878. image: {
  20879. source: "./media/characters/tahajin/chow.svg",
  20880. extra: 660 / 640,
  20881. bottom: 0.015
  20882. }
  20883. },
  20884. demiNaga: {
  20885. height: math.unit(6 + 8 / 12, "feet"),
  20886. weight: math.unit(300, "lb"),
  20887. name: "Demi Naga",
  20888. image: {
  20889. source: "./media/characters/tahajin/demi-naga.svg",
  20890. extra: 643 / 615,
  20891. bottom: 0.1
  20892. }
  20893. },
  20894. data: {
  20895. height: math.unit(5, "inches"),
  20896. weight: math.unit(0.1, "lb"),
  20897. name: "Data",
  20898. image: {
  20899. source: "./media/characters/tahajin/data.svg"
  20900. }
  20901. },
  20902. fluu: {
  20903. height: math.unit(5 + 7 / 12, "feet"),
  20904. weight: math.unit(140, "lb"),
  20905. name: "Fluu",
  20906. image: {
  20907. source: "./media/characters/tahajin/fluu.svg",
  20908. extra: 628 / 592,
  20909. bottom: 0.02
  20910. }
  20911. },
  20912. starWarrior: {
  20913. height: math.unit(4 + 5 / 12, "feet"),
  20914. weight: math.unit(50, "lb"),
  20915. name: "Star Warrior",
  20916. image: {
  20917. source: "./media/characters/tahajin/star-warrior.svg"
  20918. }
  20919. },
  20920. },
  20921. [
  20922. {
  20923. name: "Normal",
  20924. height: math.unit(25 + 6 / 12, "feet"),
  20925. default: true
  20926. },
  20927. ]
  20928. ))
  20929. characterMakers.push(() => makeCharacter(
  20930. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20931. {
  20932. front: {
  20933. height: math.unit(8, "feet"),
  20934. weight: math.unit(350, "lb"),
  20935. name: "Front",
  20936. image: {
  20937. source: "./media/characters/gabira/front.svg",
  20938. extra: 608 / 580,
  20939. bottom: 0.03
  20940. }
  20941. },
  20942. back: {
  20943. height: math.unit(8, "feet"),
  20944. weight: math.unit(350, "lb"),
  20945. name: "Back",
  20946. image: {
  20947. source: "./media/characters/gabira/back.svg",
  20948. extra: 608 / 580,
  20949. bottom: 0.03
  20950. }
  20951. },
  20952. },
  20953. [
  20954. {
  20955. name: "Normal",
  20956. height: math.unit(8, "feet"),
  20957. default: true
  20958. },
  20959. ]
  20960. ))
  20961. characterMakers.push(() => makeCharacter(
  20962. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20963. {
  20964. front: {
  20965. height: math.unit(5 + 3 / 12, "feet"),
  20966. weight: math.unit(137, "lb"),
  20967. name: "Front",
  20968. image: {
  20969. source: "./media/characters/sasha-katraine/front.svg",
  20970. bottom: 0.045
  20971. }
  20972. },
  20973. },
  20974. [
  20975. {
  20976. name: "Micro",
  20977. height: math.unit(5, "inches")
  20978. },
  20979. {
  20980. name: "Normal",
  20981. height: math.unit(5 + 3 / 12, "feet"),
  20982. default: true
  20983. },
  20984. ]
  20985. ))
  20986. characterMakers.push(() => makeCharacter(
  20987. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20988. {
  20989. side: {
  20990. height: math.unit(4, "inches"),
  20991. weight: math.unit(200, "grams"),
  20992. name: "Side",
  20993. image: {
  20994. source: "./media/characters/der/side.svg",
  20995. extra: 719 / 400,
  20996. bottom: 30.6 / 749.9187
  20997. }
  20998. },
  20999. },
  21000. [
  21001. {
  21002. name: "Micro",
  21003. height: math.unit(4, "inches"),
  21004. default: true
  21005. },
  21006. ]
  21007. ))
  21008. characterMakers.push(() => makeCharacter(
  21009. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21010. {
  21011. side: {
  21012. height: math.unit(30, "meters"),
  21013. weight: math.unit(700, "tonnes"),
  21014. name: "Side",
  21015. image: {
  21016. source: "./media/characters/fixerdragon/side.svg",
  21017. extra: (1293.0514 - 116.03) / 1106.86,
  21018. bottom: 116.03 / 1293.0514
  21019. }
  21020. },
  21021. },
  21022. [
  21023. {
  21024. name: "Planck",
  21025. height: math.unit(1.6e-35, "meters")
  21026. },
  21027. {
  21028. name: "Micro",
  21029. height: math.unit(0.4, "meters")
  21030. },
  21031. {
  21032. name: "Normal",
  21033. height: math.unit(30, "meters"),
  21034. default: true
  21035. },
  21036. {
  21037. name: "Megamacro",
  21038. height: math.unit(1.2, "megameters")
  21039. },
  21040. {
  21041. name: "Teramacro",
  21042. height: math.unit(130, "terameters")
  21043. },
  21044. {
  21045. name: "Yottamacro",
  21046. height: math.unit(6200, "yottameters")
  21047. },
  21048. ]
  21049. ));
  21050. characterMakers.push(() => makeCharacter(
  21051. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21052. {
  21053. front: {
  21054. height: math.unit(8, "feet"),
  21055. weight: math.unit(250, "lb"),
  21056. name: "Front",
  21057. image: {
  21058. source: "./media/characters/kite/front.svg",
  21059. extra: 2796 / 2659,
  21060. bottom: 0.002
  21061. }
  21062. },
  21063. },
  21064. [
  21065. {
  21066. name: "Normal",
  21067. height: math.unit(8, "feet"),
  21068. default: true
  21069. },
  21070. {
  21071. name: "Macro",
  21072. height: math.unit(360, "feet")
  21073. },
  21074. {
  21075. name: "Megamacro",
  21076. height: math.unit(1500, "feet")
  21077. },
  21078. ]
  21079. ))
  21080. characterMakers.push(() => makeCharacter(
  21081. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21082. {
  21083. front: {
  21084. height: math.unit(5 + 10 / 12, "feet"),
  21085. weight: math.unit(150, "lb"),
  21086. name: "Front",
  21087. image: {
  21088. source: "./media/characters/poojawa-vynar/front.svg",
  21089. extra: (1506.1547 - 55) / 1356.6,
  21090. bottom: 55 / 1506.1547
  21091. }
  21092. },
  21093. frontTailless: {
  21094. height: math.unit(5 + 10 / 12, "feet"),
  21095. weight: math.unit(150, "lb"),
  21096. name: "Front (Tailless)",
  21097. image: {
  21098. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21099. extra: (1506.1547 - 55) / 1356.6,
  21100. bottom: 55 / 1506.1547
  21101. }
  21102. },
  21103. },
  21104. [
  21105. {
  21106. name: "Normal",
  21107. height: math.unit(5 + 10 / 12, "feet"),
  21108. default: true
  21109. },
  21110. ]
  21111. ))
  21112. characterMakers.push(() => makeCharacter(
  21113. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21114. {
  21115. front: {
  21116. height: math.unit(293, "meters"),
  21117. weight: math.unit(70400, "tons"),
  21118. name: "Front",
  21119. image: {
  21120. source: "./media/characters/violette/front.svg",
  21121. extra: 1227 / 1180,
  21122. bottom: 0.005
  21123. }
  21124. },
  21125. back: {
  21126. height: math.unit(293, "meters"),
  21127. weight: math.unit(70400, "tons"),
  21128. name: "Back",
  21129. image: {
  21130. source: "./media/characters/violette/back.svg",
  21131. extra: 1227 / 1180,
  21132. bottom: 0.005
  21133. }
  21134. },
  21135. },
  21136. [
  21137. {
  21138. name: "Macro",
  21139. height: math.unit(293, "meters"),
  21140. default: true
  21141. },
  21142. ]
  21143. ))
  21144. characterMakers.push(() => makeCharacter(
  21145. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21146. {
  21147. front: {
  21148. height: math.unit(1050, "feet"),
  21149. weight: math.unit(200000, "tons"),
  21150. name: "Front",
  21151. image: {
  21152. source: "./media/characters/alessandra/front.svg",
  21153. extra: 960 / 912,
  21154. bottom: 0.06
  21155. }
  21156. },
  21157. },
  21158. [
  21159. {
  21160. name: "Macro",
  21161. height: math.unit(1050, "feet")
  21162. },
  21163. {
  21164. name: "Macro+",
  21165. height: math.unit(900, "meters"),
  21166. default: true
  21167. },
  21168. ]
  21169. ))
  21170. characterMakers.push(() => makeCharacter(
  21171. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21172. {
  21173. front: {
  21174. height: math.unit(5, "feet"),
  21175. weight: math.unit(187, "lb"),
  21176. name: "Front",
  21177. image: {
  21178. source: "./media/characters/person/front.svg",
  21179. extra: 3087 / 2945,
  21180. bottom: 91 / 3181
  21181. }
  21182. },
  21183. },
  21184. [
  21185. {
  21186. name: "Micro",
  21187. height: math.unit(3, "inches")
  21188. },
  21189. {
  21190. name: "Normal",
  21191. height: math.unit(5, "feet"),
  21192. default: true
  21193. },
  21194. {
  21195. name: "Macro",
  21196. height: math.unit(90, "feet")
  21197. },
  21198. {
  21199. name: "Max Size",
  21200. height: math.unit(280, "feet")
  21201. },
  21202. ]
  21203. ))
  21204. characterMakers.push(() => makeCharacter(
  21205. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21206. {
  21207. front: {
  21208. height: math.unit(4.5, "meters"),
  21209. weight: math.unit(3200, "lb"),
  21210. name: "Front",
  21211. image: {
  21212. source: "./media/characters/ty/front.svg",
  21213. extra: 1038 / 960,
  21214. bottom: 31.156 / 1068
  21215. }
  21216. },
  21217. back: {
  21218. height: math.unit(4.5, "meters"),
  21219. weight: math.unit(3200, "lb"),
  21220. name: "Back",
  21221. image: {
  21222. source: "./media/characters/ty/back.svg",
  21223. extra: 1044 / 966,
  21224. bottom: 7.48 / 1049
  21225. }
  21226. },
  21227. },
  21228. [
  21229. {
  21230. name: "Normal",
  21231. height: math.unit(4.5, "meters"),
  21232. default: true
  21233. },
  21234. ]
  21235. ))
  21236. characterMakers.push(() => makeCharacter(
  21237. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21238. {
  21239. front: {
  21240. height: math.unit(5 + 4 / 12, "feet"),
  21241. weight: math.unit(115, "lb"),
  21242. name: "Front",
  21243. image: {
  21244. source: "./media/characters/rocky/front.svg",
  21245. extra: 1012 / 975,
  21246. bottom: 54 / 1066
  21247. }
  21248. },
  21249. },
  21250. [
  21251. {
  21252. name: "Normal",
  21253. height: math.unit(5 + 4 / 12, "feet"),
  21254. default: true
  21255. },
  21256. ]
  21257. ))
  21258. characterMakers.push(() => makeCharacter(
  21259. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21260. {
  21261. upright: {
  21262. height: math.unit(6, "meters"),
  21263. weight: math.unit(4000, "kg"),
  21264. name: "Upright",
  21265. image: {
  21266. source: "./media/characters/ruin/upright.svg",
  21267. extra: 668 / 661,
  21268. bottom: 42 / 799.8396
  21269. }
  21270. },
  21271. },
  21272. [
  21273. {
  21274. name: "Normal",
  21275. height: math.unit(6, "meters"),
  21276. default: true
  21277. },
  21278. ]
  21279. ))
  21280. characterMakers.push(() => makeCharacter(
  21281. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21282. {
  21283. front: {
  21284. height: math.unit(5, "feet"),
  21285. weight: math.unit(106, "lb"),
  21286. name: "Front",
  21287. image: {
  21288. source: "./media/characters/robin/front.svg",
  21289. extra: 862 / 799,
  21290. bottom: 42.4 / 914.8856
  21291. }
  21292. },
  21293. },
  21294. [
  21295. {
  21296. name: "Normal",
  21297. height: math.unit(5, "feet"),
  21298. default: true
  21299. },
  21300. ]
  21301. ))
  21302. characterMakers.push(() => makeCharacter(
  21303. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21304. {
  21305. side: {
  21306. height: math.unit(3, "feet"),
  21307. weight: math.unit(225, "lb"),
  21308. name: "Side",
  21309. image: {
  21310. source: "./media/characters/saian/side.svg",
  21311. extra: 566 / 356,
  21312. bottom: 79.7 / 643
  21313. }
  21314. },
  21315. maw: {
  21316. height: math.unit(2.85, "feet"),
  21317. name: "Maw",
  21318. image: {
  21319. source: "./media/characters/saian/maw.svg"
  21320. }
  21321. },
  21322. },
  21323. [
  21324. {
  21325. name: "Normal",
  21326. height: math.unit(3, "feet"),
  21327. default: true
  21328. },
  21329. ]
  21330. ))
  21331. characterMakers.push(() => makeCharacter(
  21332. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21333. {
  21334. side: {
  21335. height: math.unit(8, "feet"),
  21336. weight: math.unit(300, "lb"),
  21337. name: "Side",
  21338. image: {
  21339. source: "./media/characters/equus-silvermane/side.svg",
  21340. extra: 2176 / 2050,
  21341. bottom: 65.7 / 2245
  21342. }
  21343. },
  21344. front: {
  21345. height: math.unit(8, "feet"),
  21346. weight: math.unit(300, "lb"),
  21347. name: "Front",
  21348. image: {
  21349. source: "./media/characters/equus-silvermane/front.svg",
  21350. extra: 4633 / 4400,
  21351. bottom: 71.3 / 4706.915
  21352. }
  21353. },
  21354. sideStepping: {
  21355. height: math.unit(8, "feet"),
  21356. weight: math.unit(300, "lb"),
  21357. name: "Side (Stepping)",
  21358. image: {
  21359. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21360. extra: 1968 / 1860,
  21361. bottom: 16.4 / 1989
  21362. }
  21363. },
  21364. },
  21365. [
  21366. {
  21367. name: "Normal",
  21368. height: math.unit(8, "feet")
  21369. },
  21370. {
  21371. name: "Minimacro",
  21372. height: math.unit(75, "feet"),
  21373. default: true
  21374. },
  21375. {
  21376. name: "Macro",
  21377. height: math.unit(150, "feet")
  21378. },
  21379. {
  21380. name: "Macro+",
  21381. height: math.unit(1000, "feet")
  21382. },
  21383. {
  21384. name: "Megamacro",
  21385. height: math.unit(1, "mile")
  21386. },
  21387. ]
  21388. ))
  21389. characterMakers.push(() => makeCharacter(
  21390. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21391. {
  21392. side: {
  21393. height: math.unit(20, "feet"),
  21394. weight: math.unit(30000, "kg"),
  21395. name: "Side",
  21396. image: {
  21397. source: "./media/characters/windar/side.svg",
  21398. extra: 1491 / 1248,
  21399. bottom: 82.56 / 1568
  21400. }
  21401. },
  21402. },
  21403. [
  21404. {
  21405. name: "Normal",
  21406. height: math.unit(20, "feet"),
  21407. default: true
  21408. },
  21409. ]
  21410. ))
  21411. characterMakers.push(() => makeCharacter(
  21412. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21413. {
  21414. side: {
  21415. height: math.unit(15.66, "feet"),
  21416. weight: math.unit(150, "lb"),
  21417. name: "Side",
  21418. image: {
  21419. source: "./media/characters/melody/side.svg",
  21420. extra: 1097 / 944,
  21421. bottom: 11.8 / 1109
  21422. }
  21423. },
  21424. sideOutfit: {
  21425. height: math.unit(15.66, "feet"),
  21426. weight: math.unit(150, "lb"),
  21427. name: "Side (Outfit)",
  21428. image: {
  21429. source: "./media/characters/melody/side-outfit.svg",
  21430. extra: 1097 / 944,
  21431. bottom: 11.8 / 1109
  21432. }
  21433. },
  21434. },
  21435. [
  21436. {
  21437. name: "Normal",
  21438. height: math.unit(15.66, "feet"),
  21439. default: true
  21440. },
  21441. ]
  21442. ))
  21443. characterMakers.push(() => makeCharacter(
  21444. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21445. {
  21446. front: {
  21447. height: math.unit(8, "feet"),
  21448. weight: math.unit(325, "lb"),
  21449. name: "Front",
  21450. image: {
  21451. source: "./media/characters/windera/front.svg",
  21452. extra: 3180 / 2845,
  21453. bottom: 178 / 3365
  21454. }
  21455. },
  21456. },
  21457. [
  21458. {
  21459. name: "Normal",
  21460. height: math.unit(8, "feet"),
  21461. default: true
  21462. },
  21463. ]
  21464. ))
  21465. characterMakers.push(() => makeCharacter(
  21466. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21467. {
  21468. front: {
  21469. height: math.unit(28.75, "feet"),
  21470. weight: math.unit(2000, "kg"),
  21471. name: "Front",
  21472. image: {
  21473. source: "./media/characters/sonear/front.svg",
  21474. extra: 1041.1 / 964.9,
  21475. bottom: 53.7 / 1096.6
  21476. }
  21477. },
  21478. },
  21479. [
  21480. {
  21481. name: "Normal",
  21482. height: math.unit(28.75, "feet"),
  21483. default: true
  21484. },
  21485. ]
  21486. ))
  21487. characterMakers.push(() => makeCharacter(
  21488. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21489. {
  21490. side: {
  21491. height: math.unit(25.5, "feet"),
  21492. weight: math.unit(23000, "kg"),
  21493. name: "Side",
  21494. image: {
  21495. source: "./media/characters/kanara/side.svg"
  21496. }
  21497. },
  21498. },
  21499. [
  21500. {
  21501. name: "Normal",
  21502. height: math.unit(25.5, "feet"),
  21503. default: true
  21504. },
  21505. ]
  21506. ))
  21507. characterMakers.push(() => makeCharacter(
  21508. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21509. {
  21510. side: {
  21511. height: math.unit(10, "feet"),
  21512. weight: math.unit(1000, "kg"),
  21513. name: "Side",
  21514. image: {
  21515. source: "./media/characters/ereus/side.svg",
  21516. extra: 1157 / 959,
  21517. bottom: 153 / 1312.5
  21518. }
  21519. },
  21520. },
  21521. [
  21522. {
  21523. name: "Normal",
  21524. height: math.unit(10, "feet"),
  21525. default: true
  21526. },
  21527. ]
  21528. ))
  21529. characterMakers.push(() => makeCharacter(
  21530. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21531. {
  21532. side: {
  21533. height: math.unit(4.5, "feet"),
  21534. weight: math.unit(500, "lb"),
  21535. name: "Side",
  21536. image: {
  21537. source: "./media/characters/e-ter/side.svg",
  21538. extra: 1550 / 1248,
  21539. bottom: 146 / 1694
  21540. }
  21541. },
  21542. },
  21543. [
  21544. {
  21545. name: "Normal",
  21546. height: math.unit(4.5, "feet"),
  21547. default: true
  21548. },
  21549. ]
  21550. ))
  21551. characterMakers.push(() => makeCharacter(
  21552. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21553. {
  21554. side: {
  21555. height: math.unit(9.7, "feet"),
  21556. weight: math.unit(4000, "kg"),
  21557. name: "Side",
  21558. image: {
  21559. source: "./media/characters/yamie/side.svg"
  21560. }
  21561. },
  21562. },
  21563. [
  21564. {
  21565. name: "Normal",
  21566. height: math.unit(9.7, "feet"),
  21567. default: true
  21568. },
  21569. ]
  21570. ))
  21571. characterMakers.push(() => makeCharacter(
  21572. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21573. {
  21574. front: {
  21575. height: math.unit(50, "feet"),
  21576. weight: math.unit(50000, "kg"),
  21577. name: "Front",
  21578. image: {
  21579. source: "./media/characters/anders/front.svg",
  21580. extra: 570 / 539,
  21581. bottom: 14.7 / 586.7
  21582. }
  21583. },
  21584. },
  21585. [
  21586. {
  21587. name: "Large",
  21588. height: math.unit(50, "feet")
  21589. },
  21590. {
  21591. name: "Macro",
  21592. height: math.unit(2000, "feet"),
  21593. default: true
  21594. },
  21595. {
  21596. name: "Megamacro",
  21597. height: math.unit(12, "miles")
  21598. },
  21599. ]
  21600. ))
  21601. characterMakers.push(() => makeCharacter(
  21602. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21603. {
  21604. front: {
  21605. height: math.unit(7 + 2 / 12, "feet"),
  21606. weight: math.unit(300, "lb"),
  21607. name: "Front",
  21608. image: {
  21609. source: "./media/characters/reban/front.svg",
  21610. extra: 516 / 487,
  21611. bottom: 42.82 / 558.356
  21612. }
  21613. },
  21614. dick: {
  21615. height: math.unit(7 / 5, "feet"),
  21616. name: "Dick",
  21617. image: {
  21618. source: "./media/characters/reban/dick.svg"
  21619. }
  21620. },
  21621. },
  21622. [
  21623. {
  21624. name: "Natural Height",
  21625. height: math.unit(7 + 2 / 12, "feet")
  21626. },
  21627. {
  21628. name: "Macro",
  21629. height: math.unit(500, "feet"),
  21630. default: true
  21631. },
  21632. {
  21633. name: "Canon Height",
  21634. height: math.unit(50, "AU")
  21635. },
  21636. ]
  21637. ))
  21638. characterMakers.push(() => makeCharacter(
  21639. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21640. {
  21641. front: {
  21642. height: math.unit(6, "feet"),
  21643. weight: math.unit(150, "lb"),
  21644. name: "Front",
  21645. image: {
  21646. source: "./media/characters/terrance-keayes/front.svg",
  21647. extra: 1.005,
  21648. bottom: 151 / 1615
  21649. }
  21650. },
  21651. side: {
  21652. height: math.unit(6, "feet"),
  21653. weight: math.unit(150, "lb"),
  21654. name: "Side",
  21655. image: {
  21656. source: "./media/characters/terrance-keayes/side.svg",
  21657. extra: 1.005,
  21658. bottom: 129.4 / 1544
  21659. }
  21660. },
  21661. back: {
  21662. height: math.unit(6, "feet"),
  21663. weight: math.unit(150, "lb"),
  21664. name: "Back",
  21665. image: {
  21666. source: "./media/characters/terrance-keayes/back.svg",
  21667. extra: 1.005,
  21668. bottom: 58.4 / 1557.3
  21669. }
  21670. },
  21671. dick: {
  21672. height: math.unit(6 * 0.208, "feet"),
  21673. name: "Dick",
  21674. image: {
  21675. source: "./media/characters/terrance-keayes/dick.svg"
  21676. }
  21677. },
  21678. },
  21679. [
  21680. {
  21681. name: "Canon Height",
  21682. height: math.unit(35, "miles"),
  21683. default: true
  21684. },
  21685. ]
  21686. ))
  21687. characterMakers.push(() => makeCharacter(
  21688. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21689. {
  21690. front: {
  21691. height: math.unit(6, "feet"),
  21692. weight: math.unit(150, "lb"),
  21693. name: "Front",
  21694. image: {
  21695. source: "./media/characters/ofelia/front.svg",
  21696. extra: 546 / 541,
  21697. bottom: 39 / 583
  21698. }
  21699. },
  21700. back: {
  21701. height: math.unit(6, "feet"),
  21702. weight: math.unit(150, "lb"),
  21703. name: "Back",
  21704. image: {
  21705. source: "./media/characters/ofelia/back.svg",
  21706. extra: 564 / 559.5,
  21707. bottom: 8.69 / 573.02
  21708. }
  21709. },
  21710. maw: {
  21711. height: math.unit(1, "feet"),
  21712. name: "Maw",
  21713. image: {
  21714. source: "./media/characters/ofelia/maw.svg"
  21715. }
  21716. },
  21717. foot: {
  21718. height: math.unit(1.949, "feet"),
  21719. name: "Foot",
  21720. image: {
  21721. source: "./media/characters/ofelia/foot.svg"
  21722. }
  21723. },
  21724. },
  21725. [
  21726. {
  21727. name: "Canon Height",
  21728. height: math.unit(2000, "miles"),
  21729. default: true
  21730. },
  21731. ]
  21732. ))
  21733. characterMakers.push(() => makeCharacter(
  21734. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21735. {
  21736. front: {
  21737. height: math.unit(6, "feet"),
  21738. weight: math.unit(150, "lb"),
  21739. name: "Front",
  21740. image: {
  21741. source: "./media/characters/samuel/front.svg",
  21742. extra: 265 / 258,
  21743. bottom: 2 / 266.1566
  21744. }
  21745. },
  21746. },
  21747. [
  21748. {
  21749. name: "Macro",
  21750. height: math.unit(100, "feet"),
  21751. default: true
  21752. },
  21753. {
  21754. name: "Full Size",
  21755. height: math.unit(1000, "miles")
  21756. },
  21757. ]
  21758. ))
  21759. characterMakers.push(() => makeCharacter(
  21760. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21761. {
  21762. front: {
  21763. height: math.unit(6, "feet"),
  21764. weight: math.unit(300, "lb"),
  21765. name: "Front",
  21766. image: {
  21767. source: "./media/characters/beishir-kiel/front.svg",
  21768. extra: 569 / 547,
  21769. bottom: 41.9 / 609
  21770. }
  21771. },
  21772. maw: {
  21773. height: math.unit(6 * 0.202, "feet"),
  21774. name: "Maw",
  21775. image: {
  21776. source: "./media/characters/beishir-kiel/maw.svg"
  21777. }
  21778. },
  21779. },
  21780. [
  21781. {
  21782. name: "Macro",
  21783. height: math.unit(300, "feet"),
  21784. default: true
  21785. },
  21786. ]
  21787. ))
  21788. characterMakers.push(() => makeCharacter(
  21789. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21790. {
  21791. front: {
  21792. height: math.unit(5 + 8 / 12, "feet"),
  21793. weight: math.unit(120, "lb"),
  21794. name: "Front",
  21795. image: {
  21796. source: "./media/characters/logan-grey/front.svg",
  21797. extra: 2539 / 2393,
  21798. bottom: 97.6 / 2636.37
  21799. }
  21800. },
  21801. frontAlt: {
  21802. height: math.unit(5 + 8 / 12, "feet"),
  21803. weight: math.unit(120, "lb"),
  21804. name: "Front (Alt)",
  21805. image: {
  21806. source: "./media/characters/logan-grey/front-alt.svg",
  21807. extra: 958 / 893,
  21808. bottom: 15 / 970.768
  21809. }
  21810. },
  21811. back: {
  21812. height: math.unit(5 + 8 / 12, "feet"),
  21813. weight: math.unit(120, "lb"),
  21814. name: "Back",
  21815. image: {
  21816. source: "./media/characters/logan-grey/back.svg",
  21817. extra: 958 / 893,
  21818. bottom: 2.1881 / 970.9788
  21819. }
  21820. },
  21821. dick: {
  21822. height: math.unit(1.437, "feet"),
  21823. name: "Dick",
  21824. image: {
  21825. source: "./media/characters/logan-grey/dick.svg"
  21826. }
  21827. },
  21828. },
  21829. [
  21830. {
  21831. name: "Normal",
  21832. height: math.unit(5 + 8 / 12, "feet")
  21833. },
  21834. {
  21835. name: "The 500 Foot Femboy",
  21836. height: math.unit(500, "feet"),
  21837. default: true
  21838. },
  21839. {
  21840. name: "Megmacro",
  21841. height: math.unit(20, "miles")
  21842. },
  21843. ]
  21844. ))
  21845. characterMakers.push(() => makeCharacter(
  21846. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21847. {
  21848. front: {
  21849. height: math.unit(8 + 2 / 12, "feet"),
  21850. weight: math.unit(275, "lb"),
  21851. name: "Front",
  21852. image: {
  21853. source: "./media/characters/draganta/front.svg",
  21854. extra: 1177 / 1135,
  21855. bottom: 33.46 / 1212.1
  21856. }
  21857. },
  21858. },
  21859. [
  21860. {
  21861. name: "Normal",
  21862. height: math.unit(8 + 6 / 12, "feet"),
  21863. default: true
  21864. },
  21865. {
  21866. name: "Macro",
  21867. height: math.unit(150, "feet")
  21868. },
  21869. {
  21870. name: "Megamacro",
  21871. height: math.unit(1000, "miles")
  21872. },
  21873. ]
  21874. ))
  21875. characterMakers.push(() => makeCharacter(
  21876. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21877. {
  21878. front: {
  21879. height: math.unit(1.72, "m"),
  21880. weight: math.unit(80, "lb"),
  21881. name: "Front",
  21882. image: {
  21883. source: "./media/characters/voski/front.svg",
  21884. extra: 2076.22 / 2022.4,
  21885. bottom: 102.7 / 2177.3866
  21886. }
  21887. },
  21888. frontNsfw: {
  21889. height: math.unit(1.72, "m"),
  21890. weight: math.unit(80, "lb"),
  21891. name: "Front (NSFW)",
  21892. image: {
  21893. source: "./media/characters/voski/front-nsfw.svg",
  21894. extra: 2076.22 / 2022.4,
  21895. bottom: 102.7 / 2177.3866
  21896. }
  21897. },
  21898. back: {
  21899. height: math.unit(1.72, "m"),
  21900. weight: math.unit(80, "lb"),
  21901. name: "Back",
  21902. image: {
  21903. source: "./media/characters/voski/back.svg",
  21904. extra: 2104 / 2051,
  21905. bottom: 10.45 / 2113.63
  21906. }
  21907. },
  21908. },
  21909. [
  21910. {
  21911. name: "Normal",
  21912. height: math.unit(1.72, "m")
  21913. },
  21914. {
  21915. name: "Macro",
  21916. height: math.unit(55, "m"),
  21917. default: true
  21918. },
  21919. {
  21920. name: "Macro+",
  21921. height: math.unit(300, "m")
  21922. },
  21923. {
  21924. name: "Macro++",
  21925. height: math.unit(700, "m")
  21926. },
  21927. {
  21928. name: "Macro+++",
  21929. height: math.unit(4500, "m")
  21930. },
  21931. {
  21932. name: "Macro++++",
  21933. height: math.unit(45, "km")
  21934. },
  21935. {
  21936. name: "Macro+++++",
  21937. height: math.unit(1220, "km")
  21938. },
  21939. ]
  21940. ))
  21941. characterMakers.push(() => makeCharacter(
  21942. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21943. {
  21944. front: {
  21945. height: math.unit(2.3, "m"),
  21946. weight: math.unit(304, "kg"),
  21947. name: "Front",
  21948. image: {
  21949. source: "./media/characters/icowom-lee/front.svg",
  21950. extra: 985 / 955,
  21951. bottom: 25.4 / 1012
  21952. }
  21953. },
  21954. fronttentacles: {
  21955. height: math.unit(2.3, "m"),
  21956. weight: math.unit(304, "kg"),
  21957. name: "Front-tentacles",
  21958. image: {
  21959. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21960. extra: 985 / 955,
  21961. bottom: 25.4 / 1012
  21962. }
  21963. },
  21964. back: {
  21965. height: math.unit(2.3, "m"),
  21966. weight: math.unit(304, "kg"),
  21967. name: "Back",
  21968. image: {
  21969. source: "./media/characters/icowom-lee/back.svg",
  21970. extra: 975 / 954,
  21971. bottom: 9.5 / 985
  21972. }
  21973. },
  21974. backtentacles: {
  21975. height: math.unit(2.3, "m"),
  21976. weight: math.unit(304, "kg"),
  21977. name: "Back-tentacles",
  21978. image: {
  21979. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21980. extra: 975 / 954,
  21981. bottom: 9.5 / 985
  21982. }
  21983. },
  21984. frontDressed: {
  21985. height: math.unit(2.3, "m"),
  21986. weight: math.unit(304, "kg"),
  21987. name: "Front (Dressed)",
  21988. image: {
  21989. source: "./media/characters/icowom-lee/front-dressed.svg",
  21990. extra: 3076 / 2933,
  21991. bottom: 51.4 / 3125.1889
  21992. }
  21993. },
  21994. rump: {
  21995. height: math.unit(0.776, "meters"),
  21996. name: "Rump",
  21997. image: {
  21998. source: "./media/characters/icowom-lee/rump.svg"
  21999. }
  22000. },
  22001. genitals: {
  22002. height: math.unit(0.78, "meters"),
  22003. name: "Genitals",
  22004. image: {
  22005. source: "./media/characters/icowom-lee/genitals.svg"
  22006. }
  22007. },
  22008. },
  22009. [
  22010. {
  22011. name: "Normal",
  22012. height: math.unit(2.3, "meters"),
  22013. default: true
  22014. },
  22015. {
  22016. name: "Macro",
  22017. height: math.unit(94, "meters"),
  22018. default: true
  22019. },
  22020. ]
  22021. ))
  22022. characterMakers.push(() => makeCharacter(
  22023. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22024. {
  22025. front: {
  22026. height: math.unit(22, "meters"),
  22027. weight: math.unit(21000, "kg"),
  22028. name: "Front",
  22029. image: {
  22030. source: "./media/characters/shock-diamond/front.svg",
  22031. extra: 2204 / 2053,
  22032. bottom: 65 / 2239.47
  22033. }
  22034. },
  22035. frontNude: {
  22036. height: math.unit(22, "meters"),
  22037. weight: math.unit(21000, "kg"),
  22038. name: "Front (Nude)",
  22039. image: {
  22040. source: "./media/characters/shock-diamond/front-nude.svg",
  22041. extra: 2514 / 2285,
  22042. bottom: 13 / 2527.56
  22043. }
  22044. },
  22045. },
  22046. [
  22047. {
  22048. name: "Normal",
  22049. height: math.unit(3, "meters")
  22050. },
  22051. {
  22052. name: "Macro",
  22053. height: math.unit(22, "meters"),
  22054. default: true
  22055. },
  22056. ]
  22057. ))
  22058. characterMakers.push(() => makeCharacter(
  22059. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22060. {
  22061. front: {
  22062. height: math.unit(5 + 4 / 12, "feet"),
  22063. weight: math.unit(120, "lb"),
  22064. name: "Front",
  22065. image: {
  22066. source: "./media/characters/rory/front.svg",
  22067. extra: 589 / 556,
  22068. bottom: 45.7 / 635.76
  22069. }
  22070. },
  22071. frontNude: {
  22072. height: math.unit(5 + 4 / 12, "feet"),
  22073. weight: math.unit(120, "lb"),
  22074. name: "Front (Nude)",
  22075. image: {
  22076. source: "./media/characters/rory/front-nude.svg",
  22077. extra: 589 / 556,
  22078. bottom: 45.7 / 635.76
  22079. }
  22080. },
  22081. side: {
  22082. height: math.unit(5 + 4 / 12, "feet"),
  22083. weight: math.unit(120, "lb"),
  22084. name: "Side",
  22085. image: {
  22086. source: "./media/characters/rory/side.svg",
  22087. extra: 597 / 564,
  22088. bottom: 55 / 653
  22089. }
  22090. },
  22091. back: {
  22092. height: math.unit(5 + 4 / 12, "feet"),
  22093. weight: math.unit(120, "lb"),
  22094. name: "Back",
  22095. image: {
  22096. source: "./media/characters/rory/back.svg",
  22097. extra: 620 / 585,
  22098. bottom: 8.86 / 630.43
  22099. }
  22100. },
  22101. dick: {
  22102. height: math.unit(0.86, "feet"),
  22103. name: "Dick",
  22104. image: {
  22105. source: "./media/characters/rory/dick.svg"
  22106. }
  22107. },
  22108. },
  22109. [
  22110. {
  22111. name: "Normal",
  22112. height: math.unit(5 + 4 / 12, "feet"),
  22113. default: true
  22114. },
  22115. {
  22116. name: "Macro",
  22117. height: math.unit(100, "feet")
  22118. },
  22119. {
  22120. name: "Macro+",
  22121. height: math.unit(140, "feet")
  22122. },
  22123. {
  22124. name: "Macro++",
  22125. height: math.unit(300, "feet")
  22126. },
  22127. ]
  22128. ))
  22129. characterMakers.push(() => makeCharacter(
  22130. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22131. {
  22132. front: {
  22133. height: math.unit(5 + 9 / 12, "feet"),
  22134. weight: math.unit(190, "lb"),
  22135. name: "Front",
  22136. image: {
  22137. source: "./media/characters/sprisk/front.svg",
  22138. extra: 1225 / 1180,
  22139. bottom: 42.7 / 1266.4
  22140. }
  22141. },
  22142. frontNsfw: {
  22143. height: math.unit(5 + 9 / 12, "feet"),
  22144. weight: math.unit(190, "lb"),
  22145. name: "Front (NSFW)",
  22146. image: {
  22147. source: "./media/characters/sprisk/front-nsfw.svg",
  22148. extra: 1225 / 1180,
  22149. bottom: 42.7 / 1266.4
  22150. }
  22151. },
  22152. back: {
  22153. height: math.unit(5 + 9 / 12, "feet"),
  22154. weight: math.unit(190, "lb"),
  22155. name: "Back",
  22156. image: {
  22157. source: "./media/characters/sprisk/back.svg",
  22158. extra: 1247 / 1200,
  22159. bottom: 5.6 / 1253.04
  22160. }
  22161. },
  22162. },
  22163. [
  22164. {
  22165. name: "Tiny",
  22166. height: math.unit(2, "inches")
  22167. },
  22168. {
  22169. name: "Normal",
  22170. height: math.unit(5 + 9 / 12, "feet"),
  22171. default: true
  22172. },
  22173. {
  22174. name: "Mini Macro",
  22175. height: math.unit(18, "feet")
  22176. },
  22177. {
  22178. name: "Macro",
  22179. height: math.unit(100, "feet")
  22180. },
  22181. {
  22182. name: "MACRO",
  22183. height: math.unit(50, "miles")
  22184. },
  22185. {
  22186. name: "M A C R O",
  22187. height: math.unit(300, "miles")
  22188. },
  22189. ]
  22190. ))
  22191. characterMakers.push(() => makeCharacter(
  22192. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22193. {
  22194. side: {
  22195. height: math.unit(15.6, "meters"),
  22196. weight: math.unit(700000, "kg"),
  22197. name: "Side",
  22198. image: {
  22199. source: "./media/characters/bunsen/side.svg",
  22200. extra: 1644 / 358
  22201. }
  22202. },
  22203. foot: {
  22204. height: math.unit(1.611 * 1644 / 358, "meter"),
  22205. name: "Foot",
  22206. image: {
  22207. source: "./media/characters/bunsen/foot.svg"
  22208. }
  22209. },
  22210. },
  22211. [
  22212. {
  22213. name: "Small",
  22214. height: math.unit(10, "feet")
  22215. },
  22216. {
  22217. name: "Normal",
  22218. height: math.unit(15.6, "meters"),
  22219. default: true
  22220. },
  22221. ]
  22222. ))
  22223. characterMakers.push(() => makeCharacter(
  22224. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22225. {
  22226. front: {
  22227. height: math.unit(4 + 11 / 12, "feet"),
  22228. weight: math.unit(140, "lb"),
  22229. name: "Front",
  22230. image: {
  22231. source: "./media/characters/sesh/front.svg",
  22232. extra: 3420 / 3231,
  22233. bottom: 72 / 3949.5
  22234. }
  22235. },
  22236. },
  22237. [
  22238. {
  22239. name: "Normal",
  22240. height: math.unit(4 + 11 / 12, "feet")
  22241. },
  22242. {
  22243. name: "Grown",
  22244. height: math.unit(15, "feet"),
  22245. default: true
  22246. },
  22247. {
  22248. name: "Macro",
  22249. height: math.unit(1500, "feet")
  22250. },
  22251. {
  22252. name: "Megamacro",
  22253. height: math.unit(30, "miles")
  22254. },
  22255. {
  22256. name: "Continental",
  22257. height: math.unit(3000, "miles")
  22258. },
  22259. {
  22260. name: "Gravity Mass",
  22261. height: math.unit(300000, "miles")
  22262. },
  22263. {
  22264. name: "Planet Buster",
  22265. height: math.unit(30000000, "miles")
  22266. },
  22267. {
  22268. name: "Big",
  22269. height: math.unit(3000000000, "miles")
  22270. },
  22271. ]
  22272. ))
  22273. characterMakers.push(() => makeCharacter(
  22274. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22275. {
  22276. front: {
  22277. height: math.unit(9, "feet"),
  22278. weight: math.unit(350, "lb"),
  22279. name: "Front",
  22280. image: {
  22281. source: "./media/characters/pepper/front.svg",
  22282. extra: 1448 / 1312,
  22283. bottom: 9.4 / 1457.88
  22284. }
  22285. },
  22286. back: {
  22287. height: math.unit(9, "feet"),
  22288. weight: math.unit(350, "lb"),
  22289. name: "Back",
  22290. image: {
  22291. source: "./media/characters/pepper/back.svg",
  22292. extra: 1423 / 1300,
  22293. bottom: 4.6 / 1429
  22294. }
  22295. },
  22296. maw: {
  22297. height: math.unit(0.932, "feet"),
  22298. name: "Maw",
  22299. image: {
  22300. source: "./media/characters/pepper/maw.svg"
  22301. }
  22302. },
  22303. },
  22304. [
  22305. {
  22306. name: "Normal",
  22307. height: math.unit(9, "feet"),
  22308. default: true
  22309. },
  22310. ]
  22311. ))
  22312. characterMakers.push(() => makeCharacter(
  22313. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22314. {
  22315. front: {
  22316. height: math.unit(6, "feet"),
  22317. weight: math.unit(150, "lb"),
  22318. name: "Front",
  22319. image: {
  22320. source: "./media/characters/maelstrom/front.svg",
  22321. extra: 2100 / 1883,
  22322. bottom: 94 / 2196.7
  22323. }
  22324. },
  22325. },
  22326. [
  22327. {
  22328. name: "Less Kaiju",
  22329. height: math.unit(200, "feet")
  22330. },
  22331. {
  22332. name: "Kaiju",
  22333. height: math.unit(400, "feet"),
  22334. default: true
  22335. },
  22336. {
  22337. name: "Kaiju-er",
  22338. height: math.unit(600, "feet")
  22339. },
  22340. ]
  22341. ))
  22342. characterMakers.push(() => makeCharacter(
  22343. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22344. {
  22345. front: {
  22346. height: math.unit(6 + 5 / 12, "feet"),
  22347. weight: math.unit(180, "lb"),
  22348. name: "Front",
  22349. image: {
  22350. source: "./media/characters/lexir/front.svg",
  22351. extra: 180 / 172,
  22352. bottom: 12 / 192
  22353. }
  22354. },
  22355. back: {
  22356. height: math.unit(6 + 5 / 12, "feet"),
  22357. weight: math.unit(180, "lb"),
  22358. name: "Back",
  22359. image: {
  22360. source: "./media/characters/lexir/back.svg",
  22361. extra: 183.84 / 175.5,
  22362. bottom: 3.1 / 187
  22363. }
  22364. },
  22365. },
  22366. [
  22367. {
  22368. name: "Very Smal",
  22369. height: math.unit(1, "nm")
  22370. },
  22371. {
  22372. name: "Normal",
  22373. height: math.unit(6 + 5 / 12, "feet"),
  22374. default: true
  22375. },
  22376. {
  22377. name: "Macro",
  22378. height: math.unit(1, "mile")
  22379. },
  22380. {
  22381. name: "Megamacro",
  22382. height: math.unit(50, "miles")
  22383. },
  22384. ]
  22385. ))
  22386. characterMakers.push(() => makeCharacter(
  22387. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22388. {
  22389. front: {
  22390. height: math.unit(1.5, "meters"),
  22391. weight: math.unit(100, "lb"),
  22392. name: "Front",
  22393. image: {
  22394. source: "./media/characters/maksio/front.svg",
  22395. extra: 1549 / 1531,
  22396. bottom: 123.7 / 1674.5429
  22397. }
  22398. },
  22399. back: {
  22400. height: math.unit(1.5, "meters"),
  22401. weight: math.unit(100, "lb"),
  22402. name: "Back",
  22403. image: {
  22404. source: "./media/characters/maksio/back.svg",
  22405. extra: 1541 / 1509,
  22406. bottom: 97 / 1639
  22407. }
  22408. },
  22409. hand: {
  22410. height: math.unit(0.621, "feet"),
  22411. name: "Hand",
  22412. image: {
  22413. source: "./media/characters/maksio/hand.svg"
  22414. }
  22415. },
  22416. foot: {
  22417. height: math.unit(1.611, "feet"),
  22418. name: "Foot",
  22419. image: {
  22420. source: "./media/characters/maksio/foot.svg"
  22421. }
  22422. },
  22423. },
  22424. [
  22425. {
  22426. name: "Shrunken",
  22427. height: math.unit(10, "cm")
  22428. },
  22429. {
  22430. name: "Normal",
  22431. height: math.unit(150, "cm"),
  22432. default: true
  22433. },
  22434. ]
  22435. ))
  22436. characterMakers.push(() => makeCharacter(
  22437. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22438. {
  22439. front: {
  22440. height: math.unit(100, "feet"),
  22441. name: "Front",
  22442. image: {
  22443. source: "./media/characters/erza-bear/front.svg",
  22444. extra: 2449 / 2390,
  22445. bottom: 46 / 2494
  22446. }
  22447. },
  22448. back: {
  22449. height: math.unit(100, "feet"),
  22450. name: "Back",
  22451. image: {
  22452. source: "./media/characters/erza-bear/back.svg",
  22453. extra: 2489 / 2430,
  22454. bottom: 85.4 / 2480
  22455. }
  22456. },
  22457. tail: {
  22458. height: math.unit(42, "feet"),
  22459. name: "Tail",
  22460. image: {
  22461. source: "./media/characters/erza-bear/tail.svg"
  22462. }
  22463. },
  22464. tongue: {
  22465. height: math.unit(8, "feet"),
  22466. name: "Tongue",
  22467. image: {
  22468. source: "./media/characters/erza-bear/tongue.svg"
  22469. }
  22470. },
  22471. dick: {
  22472. height: math.unit(10.5, "feet"),
  22473. name: "Dick",
  22474. image: {
  22475. source: "./media/characters/erza-bear/dick.svg"
  22476. }
  22477. },
  22478. dickVertical: {
  22479. height: math.unit(16.9, "feet"),
  22480. name: "Dick (Vertical)",
  22481. image: {
  22482. source: "./media/characters/erza-bear/dick-vertical.svg"
  22483. }
  22484. },
  22485. },
  22486. [
  22487. {
  22488. name: "Macro",
  22489. height: math.unit(100, "feet"),
  22490. default: true
  22491. },
  22492. ]
  22493. ))
  22494. characterMakers.push(() => makeCharacter(
  22495. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22496. {
  22497. front: {
  22498. height: math.unit(172, "cm"),
  22499. weight: math.unit(73, "kg"),
  22500. name: "Front",
  22501. image: {
  22502. source: "./media/characters/violet-flor/front.svg",
  22503. extra: 1530 / 1442,
  22504. bottom: 61.9 / 1588.8
  22505. }
  22506. },
  22507. back: {
  22508. height: math.unit(180, "cm"),
  22509. weight: math.unit(73, "kg"),
  22510. name: "Back",
  22511. image: {
  22512. source: "./media/characters/violet-flor/back.svg",
  22513. extra: 1692 / 1630,
  22514. bottom: 20 / 1712
  22515. }
  22516. },
  22517. },
  22518. [
  22519. {
  22520. name: "Normal",
  22521. height: math.unit(172, "cm"),
  22522. default: true
  22523. },
  22524. ]
  22525. ))
  22526. characterMakers.push(() => makeCharacter(
  22527. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22528. {
  22529. front: {
  22530. height: math.unit(6, "feet"),
  22531. weight: math.unit(220, "lb"),
  22532. name: "Front",
  22533. image: {
  22534. source: "./media/characters/lynn-rhea/front.svg",
  22535. extra: 310 / 273
  22536. }
  22537. },
  22538. back: {
  22539. height: math.unit(6, "feet"),
  22540. weight: math.unit(220, "lb"),
  22541. name: "Back",
  22542. image: {
  22543. source: "./media/characters/lynn-rhea/back.svg",
  22544. extra: 310 / 273
  22545. }
  22546. },
  22547. dicks: {
  22548. height: math.unit(0.9, "feet"),
  22549. name: "Dicks",
  22550. image: {
  22551. source: "./media/characters/lynn-rhea/dicks.svg"
  22552. }
  22553. },
  22554. slit: {
  22555. height: math.unit(0.4, "feet"),
  22556. name: "Slit",
  22557. image: {
  22558. source: "./media/characters/lynn-rhea/slit.svg"
  22559. }
  22560. },
  22561. },
  22562. [
  22563. {
  22564. name: "Micro",
  22565. height: math.unit(1, "inch")
  22566. },
  22567. {
  22568. name: "Macro",
  22569. height: math.unit(60, "feet"),
  22570. default: true
  22571. },
  22572. {
  22573. name: "Megamacro",
  22574. height: math.unit(2, "miles")
  22575. },
  22576. {
  22577. name: "Gigamacro",
  22578. height: math.unit(3, "earths")
  22579. },
  22580. {
  22581. name: "Galactic",
  22582. height: math.unit(0.8, "galaxies")
  22583. },
  22584. ]
  22585. ))
  22586. characterMakers.push(() => makeCharacter(
  22587. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22588. {
  22589. front: {
  22590. height: math.unit(1600, "feet"),
  22591. weight: math.unit(85758785169, "kg"),
  22592. name: "Front",
  22593. image: {
  22594. source: "./media/characters/valathos/front.svg",
  22595. extra: 1451 / 1339
  22596. }
  22597. },
  22598. },
  22599. [
  22600. {
  22601. name: "Macro",
  22602. height: math.unit(1600, "feet"),
  22603. default: true
  22604. },
  22605. ]
  22606. ))
  22607. characterMakers.push(() => makeCharacter(
  22608. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22609. {
  22610. front: {
  22611. height: math.unit(7 + 5 / 12, "feet"),
  22612. weight: math.unit(300, "lb"),
  22613. name: "Front",
  22614. image: {
  22615. source: "./media/characters/azula/front.svg",
  22616. extra: 3208 / 2880,
  22617. bottom: 80.2 / 3277
  22618. }
  22619. },
  22620. back: {
  22621. height: math.unit(7 + 5 / 12, "feet"),
  22622. weight: math.unit(300, "lb"),
  22623. name: "Back",
  22624. image: {
  22625. source: "./media/characters/azula/back.svg",
  22626. extra: 3169 / 2822,
  22627. bottom: 150.6 / 3321
  22628. }
  22629. },
  22630. },
  22631. [
  22632. {
  22633. name: "Normal",
  22634. height: math.unit(7 + 5 / 12, "feet"),
  22635. default: true
  22636. },
  22637. {
  22638. name: "Big",
  22639. height: math.unit(20, "feet")
  22640. },
  22641. ]
  22642. ))
  22643. characterMakers.push(() => makeCharacter(
  22644. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22645. {
  22646. front: {
  22647. height: math.unit(5 + 1 / 12, "feet"),
  22648. weight: math.unit(110, "lb"),
  22649. name: "Front",
  22650. image: {
  22651. source: "./media/characters/rupert/front.svg",
  22652. extra: 1549 / 1495,
  22653. bottom: 54.2 / 1604.4
  22654. }
  22655. },
  22656. },
  22657. [
  22658. {
  22659. name: "Normal",
  22660. height: math.unit(5 + 1 / 12, "feet"),
  22661. default: true
  22662. },
  22663. ]
  22664. ))
  22665. characterMakers.push(() => makeCharacter(
  22666. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22667. {
  22668. front: {
  22669. height: math.unit(8 + 4 / 12, "feet"),
  22670. weight: math.unit(350, "lb"),
  22671. name: "Front",
  22672. image: {
  22673. source: "./media/characters/sheera-castellar/front.svg",
  22674. extra: 1957 / 1894,
  22675. bottom: 26.97 / 1975.017
  22676. }
  22677. },
  22678. side: {
  22679. height: math.unit(8 + 4 / 12, "feet"),
  22680. weight: math.unit(350, "lb"),
  22681. name: "Side",
  22682. image: {
  22683. source: "./media/characters/sheera-castellar/side.svg",
  22684. extra: 1957 / 1894
  22685. }
  22686. },
  22687. back: {
  22688. height: math.unit(8 + 4 / 12, "feet"),
  22689. weight: math.unit(350, "lb"),
  22690. name: "Back",
  22691. image: {
  22692. source: "./media/characters/sheera-castellar/back.svg",
  22693. extra: 1957 / 1894
  22694. }
  22695. },
  22696. angled: {
  22697. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22698. weight: math.unit(350, "lb"),
  22699. name: "Angled",
  22700. image: {
  22701. source: "./media/characters/sheera-castellar/angled.svg",
  22702. extra: 1807 / 1707,
  22703. bottom: 68 / 1875
  22704. }
  22705. },
  22706. genitals: {
  22707. height: math.unit(2.2, "feet"),
  22708. name: "Genitals",
  22709. image: {
  22710. source: "./media/characters/sheera-castellar/genitals.svg"
  22711. }
  22712. },
  22713. taur: {
  22714. height: math.unit(10 + 6/12, "feet"),
  22715. name: "Taur",
  22716. image: {
  22717. source: "./media/characters/sheera-castellar/taur.svg",
  22718. extra: 2017/1909,
  22719. bottom: 185/2202
  22720. }
  22721. },
  22722. },
  22723. [
  22724. {
  22725. name: "Normal",
  22726. height: math.unit(8 + 4 / 12, "feet")
  22727. },
  22728. {
  22729. name: "Macro",
  22730. height: math.unit(150, "feet"),
  22731. default: true
  22732. },
  22733. {
  22734. name: "Macro+",
  22735. height: math.unit(800, "feet")
  22736. },
  22737. ]
  22738. ))
  22739. characterMakers.push(() => makeCharacter(
  22740. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22741. {
  22742. front: {
  22743. height: math.unit(6, "feet"),
  22744. weight: math.unit(150, "lb"),
  22745. name: "Front",
  22746. image: {
  22747. source: "./media/characters/jaipur/front.svg",
  22748. extra: 3860 / 3731,
  22749. bottom: 287 / 4140
  22750. }
  22751. },
  22752. back: {
  22753. height: math.unit(6, "feet"),
  22754. weight: math.unit(150, "lb"),
  22755. name: "Back",
  22756. image: {
  22757. source: "./media/characters/jaipur/back.svg",
  22758. extra: 4060 / 3930,
  22759. bottom: 151 / 4200
  22760. }
  22761. },
  22762. },
  22763. [
  22764. {
  22765. name: "Normal",
  22766. height: math.unit(1.85, "meters"),
  22767. default: true
  22768. },
  22769. {
  22770. name: "Macro",
  22771. height: math.unit(150, "meters")
  22772. },
  22773. {
  22774. name: "Macro+",
  22775. height: math.unit(0.5, "miles")
  22776. },
  22777. {
  22778. name: "Macro++",
  22779. height: math.unit(2.5, "miles")
  22780. },
  22781. {
  22782. name: "Macro+++",
  22783. height: math.unit(12, "miles")
  22784. },
  22785. {
  22786. name: "Macro++++",
  22787. height: math.unit(120, "miles")
  22788. },
  22789. {
  22790. name: "Macro+++++",
  22791. height: math.unit(1200, "miles")
  22792. },
  22793. ]
  22794. ))
  22795. characterMakers.push(() => makeCharacter(
  22796. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22797. {
  22798. front: {
  22799. height: math.unit(6, "feet"),
  22800. weight: math.unit(150, "lb"),
  22801. name: "Front",
  22802. image: {
  22803. source: "./media/characters/sheila-wolf/front.svg",
  22804. extra: 1931 / 1808,
  22805. bottom: 29.5 / 1960
  22806. }
  22807. },
  22808. dick: {
  22809. height: math.unit(1.464, "feet"),
  22810. name: "Dick",
  22811. image: {
  22812. source: "./media/characters/sheila-wolf/dick.svg"
  22813. }
  22814. },
  22815. muzzle: {
  22816. height: math.unit(0.513, "feet"),
  22817. name: "Muzzle",
  22818. image: {
  22819. source: "./media/characters/sheila-wolf/muzzle.svg"
  22820. }
  22821. },
  22822. },
  22823. [
  22824. {
  22825. name: "Macro",
  22826. height: math.unit(70, "feet"),
  22827. default: true
  22828. },
  22829. ]
  22830. ))
  22831. characterMakers.push(() => makeCharacter(
  22832. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22833. {
  22834. front: {
  22835. height: math.unit(32, "meters"),
  22836. weight: math.unit(300000, "kg"),
  22837. name: "Front",
  22838. image: {
  22839. source: "./media/characters/almor/front.svg",
  22840. extra: 1408 / 1322,
  22841. bottom: 94.6 / 1506.5
  22842. }
  22843. },
  22844. },
  22845. [
  22846. {
  22847. name: "Macro",
  22848. height: math.unit(32, "meters"),
  22849. default: true
  22850. },
  22851. ]
  22852. ))
  22853. characterMakers.push(() => makeCharacter(
  22854. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22855. {
  22856. front: {
  22857. height: math.unit(7, "feet"),
  22858. weight: math.unit(200, "lb"),
  22859. name: "Front",
  22860. image: {
  22861. source: "./media/characters/silver/front.svg",
  22862. extra: 472.1 / 450.5,
  22863. bottom: 26.5 / 499.424
  22864. }
  22865. },
  22866. },
  22867. [
  22868. {
  22869. name: "Normal",
  22870. height: math.unit(7, "feet"),
  22871. default: true
  22872. },
  22873. {
  22874. name: "Macro",
  22875. height: math.unit(800, "feet")
  22876. },
  22877. {
  22878. name: "Megamacro",
  22879. height: math.unit(250, "miles")
  22880. },
  22881. ]
  22882. ))
  22883. characterMakers.push(() => makeCharacter(
  22884. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22885. {
  22886. front: {
  22887. height: math.unit(6, "feet"),
  22888. weight: math.unit(150, "lb"),
  22889. name: "Front",
  22890. image: {
  22891. source: "./media/characters/pliskin/front.svg",
  22892. extra: 1469 / 1359,
  22893. bottom: 70 / 1540
  22894. }
  22895. },
  22896. },
  22897. [
  22898. {
  22899. name: "Micro",
  22900. height: math.unit(3, "inches")
  22901. },
  22902. {
  22903. name: "Normal",
  22904. height: math.unit(5 + 11 / 12, "feet"),
  22905. default: true
  22906. },
  22907. {
  22908. name: "Macro",
  22909. height: math.unit(120, "feet")
  22910. },
  22911. ]
  22912. ))
  22913. characterMakers.push(() => makeCharacter(
  22914. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22915. {
  22916. front: {
  22917. height: math.unit(6, "feet"),
  22918. weight: math.unit(150, "lb"),
  22919. name: "Front",
  22920. image: {
  22921. source: "./media/characters/sammy/front.svg",
  22922. extra: 1193 / 1089,
  22923. bottom: 30.5 / 1226
  22924. }
  22925. },
  22926. },
  22927. [
  22928. {
  22929. name: "Macro",
  22930. height: math.unit(1700, "feet"),
  22931. default: true
  22932. },
  22933. {
  22934. name: "Examacro",
  22935. height: math.unit(2.5e9, "lightyears")
  22936. },
  22937. ]
  22938. ))
  22939. characterMakers.push(() => makeCharacter(
  22940. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22941. {
  22942. front: {
  22943. height: math.unit(21, "meters"),
  22944. weight: math.unit(12, "tonnes"),
  22945. name: "Front",
  22946. image: {
  22947. source: "./media/characters/kuru/front.svg",
  22948. extra: 4301 / 3785,
  22949. bottom: 371.3 / 4691
  22950. }
  22951. },
  22952. },
  22953. [
  22954. {
  22955. name: "Macro",
  22956. height: math.unit(21, "meters"),
  22957. default: true
  22958. },
  22959. ]
  22960. ))
  22961. characterMakers.push(() => makeCharacter(
  22962. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22963. {
  22964. front: {
  22965. height: math.unit(23, "meters"),
  22966. weight: math.unit(12.2, "tonnes"),
  22967. name: "Front",
  22968. image: {
  22969. source: "./media/characters/rakka/front.svg",
  22970. extra: 4670 / 4169,
  22971. bottom: 301 / 4968.7
  22972. }
  22973. },
  22974. },
  22975. [
  22976. {
  22977. name: "Macro",
  22978. height: math.unit(23, "meters"),
  22979. default: true
  22980. },
  22981. ]
  22982. ))
  22983. characterMakers.push(() => makeCharacter(
  22984. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22985. {
  22986. front: {
  22987. height: math.unit(6, "feet"),
  22988. weight: math.unit(150, "lb"),
  22989. name: "Front",
  22990. image: {
  22991. source: "./media/characters/rhys-feline/front.svg",
  22992. extra: 2488 / 2308,
  22993. bottom: 35.67 / 2519.19
  22994. }
  22995. },
  22996. },
  22997. [
  22998. {
  22999. name: "Really Small",
  23000. height: math.unit(1, "nm")
  23001. },
  23002. {
  23003. name: "Micro",
  23004. height: math.unit(4, "inches")
  23005. },
  23006. {
  23007. name: "Normal",
  23008. height: math.unit(4 + 10 / 12, "feet"),
  23009. default: true
  23010. },
  23011. {
  23012. name: "Macro",
  23013. height: math.unit(100, "feet")
  23014. },
  23015. {
  23016. name: "Megamacto",
  23017. height: math.unit(50, "miles")
  23018. },
  23019. ]
  23020. ))
  23021. characterMakers.push(() => makeCharacter(
  23022. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23023. {
  23024. side: {
  23025. height: math.unit(30, "feet"),
  23026. weight: math.unit(35000, "kg"),
  23027. name: "Side",
  23028. image: {
  23029. source: "./media/characters/alydar/side.svg",
  23030. extra: 234 / 222,
  23031. bottom: 6.5 / 241
  23032. }
  23033. },
  23034. front: {
  23035. height: math.unit(30, "feet"),
  23036. weight: math.unit(35000, "kg"),
  23037. name: "Front",
  23038. image: {
  23039. source: "./media/characters/alydar/front.svg",
  23040. extra: 223.37 / 210.2,
  23041. bottom: 22.3 / 246.76
  23042. }
  23043. },
  23044. top: {
  23045. height: math.unit(64.54, "feet"),
  23046. weight: math.unit(35000, "kg"),
  23047. name: "Top",
  23048. image: {
  23049. source: "./media/characters/alydar/top.svg"
  23050. }
  23051. },
  23052. anthro: {
  23053. height: math.unit(30, "feet"),
  23054. weight: math.unit(9000, "kg"),
  23055. name: "Anthro",
  23056. image: {
  23057. source: "./media/characters/alydar/anthro.svg",
  23058. extra: 432 / 421,
  23059. bottom: 7.18 / 440
  23060. }
  23061. },
  23062. maw: {
  23063. height: math.unit(11.693, "feet"),
  23064. name: "Maw",
  23065. image: {
  23066. source: "./media/characters/alydar/maw.svg"
  23067. }
  23068. },
  23069. head: {
  23070. height: math.unit(11.693, "feet"),
  23071. name: "Head",
  23072. image: {
  23073. source: "./media/characters/alydar/head.svg"
  23074. }
  23075. },
  23076. headAlt: {
  23077. height: math.unit(12.861, "feet"),
  23078. name: "Head (Alt)",
  23079. image: {
  23080. source: "./media/characters/alydar/head-alt.svg"
  23081. }
  23082. },
  23083. wing: {
  23084. height: math.unit(20.712, "feet"),
  23085. name: "Wing",
  23086. image: {
  23087. source: "./media/characters/alydar/wing.svg"
  23088. }
  23089. },
  23090. wingFeather: {
  23091. height: math.unit(9.662, "feet"),
  23092. name: "Wing Feather",
  23093. image: {
  23094. source: "./media/characters/alydar/wing-feather.svg"
  23095. }
  23096. },
  23097. countourFeather: {
  23098. height: math.unit(4.154, "feet"),
  23099. name: "Contour Feather",
  23100. image: {
  23101. source: "./media/characters/alydar/contour-feather.svg"
  23102. }
  23103. },
  23104. },
  23105. [
  23106. {
  23107. name: "Diplomatic",
  23108. height: math.unit(13, "feet"),
  23109. default: true
  23110. },
  23111. {
  23112. name: "Small",
  23113. height: math.unit(30, "feet")
  23114. },
  23115. {
  23116. name: "Normal",
  23117. height: math.unit(95, "feet"),
  23118. default: true
  23119. },
  23120. {
  23121. name: "Large",
  23122. height: math.unit(285, "feet")
  23123. },
  23124. {
  23125. name: "Incomprehensible",
  23126. height: math.unit(450, "megameters")
  23127. },
  23128. ]
  23129. ))
  23130. characterMakers.push(() => makeCharacter(
  23131. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23132. {
  23133. side: {
  23134. height: math.unit(11, "feet"),
  23135. weight: math.unit(1750, "kg"),
  23136. name: "Side",
  23137. image: {
  23138. source: "./media/characters/selicia/side.svg",
  23139. extra: 440 / 396,
  23140. bottom: 24.8 / 465.979
  23141. }
  23142. },
  23143. maw: {
  23144. height: math.unit(4.665, "feet"),
  23145. name: "Maw",
  23146. image: {
  23147. source: "./media/characters/selicia/maw.svg"
  23148. }
  23149. },
  23150. },
  23151. [
  23152. {
  23153. name: "Normal",
  23154. height: math.unit(11, "feet"),
  23155. default: true
  23156. },
  23157. ]
  23158. ))
  23159. characterMakers.push(() => makeCharacter(
  23160. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  23161. {
  23162. side: {
  23163. height: math.unit(2 + 6 / 12, "feet"),
  23164. weight: math.unit(30, "lb"),
  23165. name: "Side",
  23166. image: {
  23167. source: "./media/characters/layla/side.svg",
  23168. extra: 244 / 188,
  23169. bottom: 18.2 / 262.1
  23170. }
  23171. },
  23172. back: {
  23173. height: math.unit(2 + 6 / 12, "feet"),
  23174. weight: math.unit(30, "lb"),
  23175. name: "Back",
  23176. image: {
  23177. source: "./media/characters/layla/back.svg",
  23178. extra: 308 / 241.5,
  23179. bottom: 8.9 / 316.8
  23180. }
  23181. },
  23182. cumming: {
  23183. height: math.unit(2 + 6 / 12, "feet"),
  23184. weight: math.unit(30, "lb"),
  23185. name: "Cumming",
  23186. image: {
  23187. source: "./media/characters/layla/cumming.svg",
  23188. extra: 342 / 279,
  23189. bottom: 595 / 938
  23190. }
  23191. },
  23192. dickFlaccid: {
  23193. height: math.unit(2.595, "feet"),
  23194. name: "Flaccid Genitals",
  23195. image: {
  23196. source: "./media/characters/layla/dick-flaccid.svg"
  23197. }
  23198. },
  23199. dickErect: {
  23200. height: math.unit(2.359, "feet"),
  23201. name: "Erect Genitals",
  23202. image: {
  23203. source: "./media/characters/layla/dick-erect.svg"
  23204. }
  23205. },
  23206. },
  23207. [
  23208. {
  23209. name: "Micro",
  23210. height: math.unit(1, "inch")
  23211. },
  23212. {
  23213. name: "Small",
  23214. height: math.unit(1, "foot")
  23215. },
  23216. {
  23217. name: "Normal",
  23218. height: math.unit(2 + 6 / 12, "feet"),
  23219. default: true
  23220. },
  23221. {
  23222. name: "Macro",
  23223. height: math.unit(200, "feet")
  23224. },
  23225. {
  23226. name: "Megamacro",
  23227. height: math.unit(1000, "miles")
  23228. },
  23229. {
  23230. name: "Planetary",
  23231. height: math.unit(8000, "miles")
  23232. },
  23233. {
  23234. name: "True Layla",
  23235. height: math.unit(200000 * 7, "multiverses")
  23236. },
  23237. ]
  23238. ))
  23239. characterMakers.push(() => makeCharacter(
  23240. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23241. {
  23242. back: {
  23243. height: math.unit(10.5, "feet"),
  23244. weight: math.unit(800, "lb"),
  23245. name: "Back",
  23246. image: {
  23247. source: "./media/characters/knox/back.svg",
  23248. extra: 1486 / 1089,
  23249. bottom: 107 / 1601.4
  23250. }
  23251. },
  23252. side: {
  23253. height: math.unit(10.5, "feet"),
  23254. weight: math.unit(800, "lb"),
  23255. name: "Side",
  23256. image: {
  23257. source: "./media/characters/knox/side.svg",
  23258. extra: 244 / 218,
  23259. bottom: 14 / 260
  23260. }
  23261. },
  23262. },
  23263. [
  23264. {
  23265. name: "Compact",
  23266. height: math.unit(10.5, "feet"),
  23267. default: true
  23268. },
  23269. {
  23270. name: "Dynamax",
  23271. height: math.unit(210, "feet")
  23272. },
  23273. {
  23274. name: "Full Macro",
  23275. height: math.unit(850, "feet")
  23276. },
  23277. ]
  23278. ))
  23279. characterMakers.push(() => makeCharacter(
  23280. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23281. {
  23282. front: {
  23283. height: math.unit(6, "feet"),
  23284. weight: math.unit(152, "lb"),
  23285. name: "Front",
  23286. image: {
  23287. source: "./media/characters/shin-pikachu/front.svg",
  23288. extra: 1574 / 1480,
  23289. bottom: 53.3 / 1626
  23290. }
  23291. },
  23292. hand: {
  23293. height: math.unit(1.055, "feet"),
  23294. name: "Hand",
  23295. image: {
  23296. source: "./media/characters/shin-pikachu/hand.svg"
  23297. }
  23298. },
  23299. foot: {
  23300. height: math.unit(1.1, "feet"),
  23301. name: "Foot",
  23302. image: {
  23303. source: "./media/characters/shin-pikachu/foot.svg"
  23304. }
  23305. },
  23306. collar: {
  23307. height: math.unit(0.386, "feet"),
  23308. name: "Collar",
  23309. image: {
  23310. source: "./media/characters/shin-pikachu/collar.svg"
  23311. }
  23312. },
  23313. },
  23314. [
  23315. {
  23316. name: "Smallest",
  23317. height: math.unit(0.5, "inches")
  23318. },
  23319. {
  23320. name: "Micro",
  23321. height: math.unit(6, "inches")
  23322. },
  23323. {
  23324. name: "Normal",
  23325. height: math.unit(6, "feet"),
  23326. default: true
  23327. },
  23328. {
  23329. name: "Macro",
  23330. height: math.unit(150, "feet")
  23331. },
  23332. ]
  23333. ))
  23334. characterMakers.push(() => makeCharacter(
  23335. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23336. {
  23337. front: {
  23338. height: math.unit(28, "feet"),
  23339. weight: math.unit(10500, "lb"),
  23340. name: "Front",
  23341. image: {
  23342. source: "./media/characters/kayda/front.svg",
  23343. extra: 1536 / 1428,
  23344. bottom: 68.7 / 1603
  23345. }
  23346. },
  23347. back: {
  23348. height: math.unit(28, "feet"),
  23349. weight: math.unit(10500, "lb"),
  23350. name: "Back",
  23351. image: {
  23352. source: "./media/characters/kayda/back.svg",
  23353. extra: 1557 / 1464,
  23354. bottom: 39.5 / 1597.49
  23355. }
  23356. },
  23357. dick: {
  23358. height: math.unit(3.858, "feet"),
  23359. name: "Dick",
  23360. image: {
  23361. source: "./media/characters/kayda/dick.svg"
  23362. }
  23363. },
  23364. },
  23365. [
  23366. {
  23367. name: "Macro",
  23368. height: math.unit(28, "feet"),
  23369. default: true
  23370. },
  23371. ]
  23372. ))
  23373. characterMakers.push(() => makeCharacter(
  23374. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23375. {
  23376. front: {
  23377. height: math.unit(10 + 11 / 12, "feet"),
  23378. weight: math.unit(1400, "lb"),
  23379. name: "Front",
  23380. image: {
  23381. source: "./media/characters/brian/front.svg",
  23382. extra: 737 / 692,
  23383. bottom: 55.4 / 785
  23384. }
  23385. },
  23386. },
  23387. [
  23388. {
  23389. name: "Normal",
  23390. height: math.unit(10 + 11 / 12, "feet"),
  23391. default: true
  23392. },
  23393. ]
  23394. ))
  23395. characterMakers.push(() => makeCharacter(
  23396. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23397. {
  23398. front: {
  23399. height: math.unit(5 + 8 / 12, "feet"),
  23400. weight: math.unit(140, "lb"),
  23401. name: "Front",
  23402. image: {
  23403. source: "./media/characters/khemri/front.svg",
  23404. extra: 4780 / 4059,
  23405. bottom: 80.1 / 4859.25
  23406. }
  23407. },
  23408. },
  23409. [
  23410. {
  23411. name: "Micro",
  23412. height: math.unit(6, "inches")
  23413. },
  23414. {
  23415. name: "Normal",
  23416. height: math.unit(5 + 8 / 12, "feet"),
  23417. default: true
  23418. },
  23419. ]
  23420. ))
  23421. characterMakers.push(() => makeCharacter(
  23422. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23423. {
  23424. front: {
  23425. height: math.unit(13, "feet"),
  23426. weight: math.unit(1700, "lb"),
  23427. name: "Front",
  23428. image: {
  23429. source: "./media/characters/felix-braveheart/front.svg",
  23430. extra: 1222 / 1157,
  23431. bottom: 53.2 / 1280
  23432. }
  23433. },
  23434. back: {
  23435. height: math.unit(13, "feet"),
  23436. weight: math.unit(1700, "lb"),
  23437. name: "Back",
  23438. image: {
  23439. source: "./media/characters/felix-braveheart/back.svg",
  23440. extra: 1277 / 1203,
  23441. bottom: 50.2 / 1327
  23442. }
  23443. },
  23444. feral: {
  23445. height: math.unit(6, "feet"),
  23446. weight: math.unit(400, "lb"),
  23447. name: "Feral",
  23448. image: {
  23449. source: "./media/characters/felix-braveheart/feral.svg",
  23450. extra: 682 / 625,
  23451. bottom: 6.9 / 688
  23452. }
  23453. },
  23454. },
  23455. [
  23456. {
  23457. name: "Normal",
  23458. height: math.unit(13, "feet"),
  23459. default: true
  23460. },
  23461. ]
  23462. ))
  23463. characterMakers.push(() => makeCharacter(
  23464. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23465. {
  23466. side: {
  23467. height: math.unit(5 + 11 / 12, "feet"),
  23468. weight: math.unit(1400, "lb"),
  23469. name: "Side",
  23470. image: {
  23471. source: "./media/characters/shadow-blade/side.svg",
  23472. extra: 1726 / 1267,
  23473. bottom: 58.4 / 1785
  23474. }
  23475. },
  23476. },
  23477. [
  23478. {
  23479. name: "Normal",
  23480. height: math.unit(5 + 11 / 12, "feet"),
  23481. default: true
  23482. },
  23483. ]
  23484. ))
  23485. characterMakers.push(() => makeCharacter(
  23486. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23487. {
  23488. front: {
  23489. height: math.unit(1 + 6 / 12, "feet"),
  23490. weight: math.unit(25, "lb"),
  23491. name: "Front",
  23492. image: {
  23493. source: "./media/characters/karla-halldor/front.svg",
  23494. extra: 1459 / 1383,
  23495. bottom: 12 / 1472
  23496. }
  23497. },
  23498. },
  23499. [
  23500. {
  23501. name: "Normal",
  23502. height: math.unit(1 + 6 / 12, "feet"),
  23503. default: true
  23504. },
  23505. ]
  23506. ))
  23507. characterMakers.push(() => makeCharacter(
  23508. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23509. {
  23510. front: {
  23511. height: math.unit(6 + 2 / 12, "feet"),
  23512. weight: math.unit(160, "lb"),
  23513. name: "Front",
  23514. image: {
  23515. source: "./media/characters/ariam/front.svg",
  23516. extra: 714 / 617,
  23517. bottom: 23.4 / 737,
  23518. }
  23519. },
  23520. squatting: {
  23521. height: math.unit(4.1, "feet"),
  23522. weight: math.unit(160, "lb"),
  23523. name: "Squatting",
  23524. image: {
  23525. source: "./media/characters/ariam/squatting.svg",
  23526. extra: 2617 / 2112,
  23527. bottom: 61.2 / 2681,
  23528. }
  23529. },
  23530. },
  23531. [
  23532. {
  23533. name: "Normal",
  23534. height: math.unit(6 + 2 / 12, "feet"),
  23535. default: true
  23536. },
  23537. {
  23538. name: "Normal+",
  23539. height: math.unit(4, "meters")
  23540. },
  23541. {
  23542. name: "Macro",
  23543. height: math.unit(50, "meters")
  23544. },
  23545. {
  23546. name: "Macro+",
  23547. height: math.unit(100, "meters")
  23548. },
  23549. {
  23550. name: "Megamacro",
  23551. height: math.unit(20, "km")
  23552. },
  23553. ]
  23554. ))
  23555. characterMakers.push(() => makeCharacter(
  23556. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23557. {
  23558. front: {
  23559. height: math.unit(1.67, "meters"),
  23560. weight: math.unit(140, "lb"),
  23561. name: "Front",
  23562. image: {
  23563. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23564. extra: 438 / 410,
  23565. bottom: 0.75 / 439
  23566. }
  23567. },
  23568. },
  23569. [
  23570. {
  23571. name: "Shrunken",
  23572. height: math.unit(7.6, "cm")
  23573. },
  23574. {
  23575. name: "Human Scale",
  23576. height: math.unit(1.67, "meters")
  23577. },
  23578. {
  23579. name: "Wolxi Scale",
  23580. height: math.unit(36.7, "meters"),
  23581. default: true
  23582. },
  23583. ]
  23584. ))
  23585. characterMakers.push(() => makeCharacter(
  23586. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23587. {
  23588. front: {
  23589. height: math.unit(1.73, "meters"),
  23590. weight: math.unit(240, "lb"),
  23591. name: "Front",
  23592. image: {
  23593. source: "./media/characters/izue-two-mothers/front.svg",
  23594. extra: 469 / 437,
  23595. bottom: 1.24 / 470.6
  23596. }
  23597. },
  23598. },
  23599. [
  23600. {
  23601. name: "Shrunken",
  23602. height: math.unit(7.86, "cm")
  23603. },
  23604. {
  23605. name: "Human Scale",
  23606. height: math.unit(1.73, "meters")
  23607. },
  23608. {
  23609. name: "Wolxi Scale",
  23610. height: math.unit(38, "meters"),
  23611. default: true
  23612. },
  23613. ]
  23614. ))
  23615. characterMakers.push(() => makeCharacter(
  23616. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23617. {
  23618. front: {
  23619. height: math.unit(1.55, "meters"),
  23620. weight: math.unit(120, "lb"),
  23621. name: "Front",
  23622. image: {
  23623. source: "./media/characters/teeku-love-shack/front.svg",
  23624. extra: 387 / 362,
  23625. bottom: 1.51 / 388
  23626. }
  23627. },
  23628. },
  23629. [
  23630. {
  23631. name: "Shrunken",
  23632. height: math.unit(7, "cm")
  23633. },
  23634. {
  23635. name: "Human Scale",
  23636. height: math.unit(1.55, "meters")
  23637. },
  23638. {
  23639. name: "Wolxi Scale",
  23640. height: math.unit(34.1, "meters"),
  23641. default: true
  23642. },
  23643. ]
  23644. ))
  23645. characterMakers.push(() => makeCharacter(
  23646. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23647. {
  23648. front: {
  23649. height: math.unit(1.83, "meters"),
  23650. weight: math.unit(135, "lb"),
  23651. name: "Front",
  23652. image: {
  23653. source: "./media/characters/dejma-the-red/front.svg",
  23654. extra: 480 / 458,
  23655. bottom: 1.8 / 482
  23656. }
  23657. },
  23658. },
  23659. [
  23660. {
  23661. name: "Shrunken",
  23662. height: math.unit(8.3, "cm")
  23663. },
  23664. {
  23665. name: "Human Scale",
  23666. height: math.unit(1.83, "meters")
  23667. },
  23668. {
  23669. name: "Wolxi Scale",
  23670. height: math.unit(40, "meters"),
  23671. default: true
  23672. },
  23673. ]
  23674. ))
  23675. characterMakers.push(() => makeCharacter(
  23676. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23677. {
  23678. front: {
  23679. height: math.unit(1.78, "meters"),
  23680. weight: math.unit(65, "kg"),
  23681. name: "Front",
  23682. image: {
  23683. source: "./media/characters/aki/front.svg",
  23684. extra: 452 / 415
  23685. }
  23686. },
  23687. frontNsfw: {
  23688. height: math.unit(1.78, "meters"),
  23689. weight: math.unit(65, "kg"),
  23690. name: "Front (NSFW)",
  23691. image: {
  23692. source: "./media/characters/aki/front-nsfw.svg",
  23693. extra: 452 / 415
  23694. }
  23695. },
  23696. back: {
  23697. height: math.unit(1.78, "meters"),
  23698. weight: math.unit(65, "kg"),
  23699. name: "Back",
  23700. image: {
  23701. source: "./media/characters/aki/back.svg",
  23702. extra: 452 / 415
  23703. }
  23704. },
  23705. rump: {
  23706. height: math.unit(2.05, "feet"),
  23707. name: "Rump",
  23708. image: {
  23709. source: "./media/characters/aki/rump.svg"
  23710. }
  23711. },
  23712. dick: {
  23713. height: math.unit(0.95, "feet"),
  23714. name: "Dick",
  23715. image: {
  23716. source: "./media/characters/aki/dick.svg"
  23717. }
  23718. },
  23719. },
  23720. [
  23721. {
  23722. name: "Micro",
  23723. height: math.unit(15, "cm")
  23724. },
  23725. {
  23726. name: "Normal",
  23727. height: math.unit(178, "cm"),
  23728. default: true
  23729. },
  23730. {
  23731. name: "Macro",
  23732. height: math.unit(214, "m")
  23733. },
  23734. {
  23735. name: "Macro+",
  23736. height: math.unit(534, "m")
  23737. },
  23738. ]
  23739. ))
  23740. characterMakers.push(() => makeCharacter(
  23741. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23742. {
  23743. front: {
  23744. height: math.unit(5 + 5 / 12, "feet"),
  23745. weight: math.unit(120, "lb"),
  23746. name: "Front",
  23747. image: {
  23748. source: "./media/characters/ari/front.svg",
  23749. extra: 714.5 / 682,
  23750. bottom: 8 / 722.5
  23751. }
  23752. },
  23753. },
  23754. [
  23755. {
  23756. name: "Normal",
  23757. height: math.unit(5 + 5 / 12, "feet")
  23758. },
  23759. {
  23760. name: "Macro",
  23761. height: math.unit(100, "feet"),
  23762. default: true
  23763. },
  23764. {
  23765. name: "Megamacro",
  23766. height: math.unit(100, "miles")
  23767. },
  23768. {
  23769. name: "Gigamacro",
  23770. height: math.unit(80000, "miles")
  23771. },
  23772. ]
  23773. ))
  23774. characterMakers.push(() => makeCharacter(
  23775. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23776. {
  23777. side: {
  23778. height: math.unit(9, "feet"),
  23779. weight: math.unit(400, "kg"),
  23780. name: "Side",
  23781. image: {
  23782. source: "./media/characters/bolt/side.svg",
  23783. extra: 1126 / 896,
  23784. bottom: 60 / 1187.3,
  23785. }
  23786. },
  23787. },
  23788. [
  23789. {
  23790. name: "Micro",
  23791. height: math.unit(5, "inches")
  23792. },
  23793. {
  23794. name: "Normal",
  23795. height: math.unit(9, "feet"),
  23796. default: true
  23797. },
  23798. {
  23799. name: "Macro",
  23800. height: math.unit(700, "feet")
  23801. },
  23802. {
  23803. name: "Max Size",
  23804. height: math.unit(1.52e22, "yottameters")
  23805. },
  23806. ]
  23807. ))
  23808. characterMakers.push(() => makeCharacter(
  23809. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23810. {
  23811. front: {
  23812. height: math.unit(4.53, "meters"),
  23813. weight: math.unit(3, "tons"),
  23814. name: "Front",
  23815. image: {
  23816. source: "./media/characters/draekon-sylviar/front.svg",
  23817. extra: 1228 / 1068,
  23818. bottom: 41 / 1270
  23819. }
  23820. },
  23821. tail: {
  23822. height: math.unit(1.772, "meter"),
  23823. name: "Tail",
  23824. image: {
  23825. source: "./media/characters/draekon-sylviar/tail.svg"
  23826. }
  23827. },
  23828. head: {
  23829. height: math.unit(1.331, "meter"),
  23830. name: "Head",
  23831. image: {
  23832. source: "./media/characters/draekon-sylviar/head.svg"
  23833. }
  23834. },
  23835. hand: {
  23836. height: math.unit(0.564, "meter"),
  23837. name: "Hand",
  23838. image: {
  23839. source: "./media/characters/draekon-sylviar/hand.svg"
  23840. }
  23841. },
  23842. foot: {
  23843. height: math.unit(0.621, "meter"),
  23844. name: "Foot",
  23845. image: {
  23846. source: "./media/characters/draekon-sylviar/foot.svg",
  23847. bottom: 32 / 324
  23848. }
  23849. },
  23850. dick: {
  23851. height: math.unit(61, "cm"),
  23852. name: "Dick",
  23853. image: {
  23854. source: "./media/characters/draekon-sylviar/dick.svg"
  23855. }
  23856. },
  23857. dickseparated: {
  23858. height: math.unit(61, "cm"),
  23859. name: "Dick-separated",
  23860. image: {
  23861. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23862. }
  23863. },
  23864. },
  23865. [
  23866. {
  23867. name: "Small",
  23868. height: math.unit(4.53 / 2, "meters"),
  23869. default: true
  23870. },
  23871. {
  23872. name: "Normal",
  23873. height: math.unit(4.53, "meters"),
  23874. default: true
  23875. },
  23876. {
  23877. name: "Large",
  23878. height: math.unit(4.53 * 2, "meters"),
  23879. },
  23880. ]
  23881. ))
  23882. characterMakers.push(() => makeCharacter(
  23883. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23884. {
  23885. front: {
  23886. height: math.unit(6 + 2 / 12, "feet"),
  23887. weight: math.unit(180, "lb"),
  23888. name: "Front",
  23889. image: {
  23890. source: "./media/characters/brawler/front.svg",
  23891. extra: 3301 / 3027,
  23892. bottom: 138 / 3439
  23893. }
  23894. },
  23895. },
  23896. [
  23897. {
  23898. name: "Normal",
  23899. height: math.unit(6 + 2 / 12, "feet"),
  23900. default: true
  23901. },
  23902. ]
  23903. ))
  23904. characterMakers.push(() => makeCharacter(
  23905. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23906. {
  23907. front: {
  23908. height: math.unit(11, "feet"),
  23909. weight: math.unit(1000, "lb"),
  23910. name: "Front",
  23911. image: {
  23912. source: "./media/characters/alex/front.svg",
  23913. bottom: 44.5 / 620
  23914. }
  23915. },
  23916. },
  23917. [
  23918. {
  23919. name: "Micro",
  23920. height: math.unit(5, "inches")
  23921. },
  23922. {
  23923. name: "Normal",
  23924. height: math.unit(11, "feet"),
  23925. default: true
  23926. },
  23927. {
  23928. name: "Macro",
  23929. height: math.unit(9.5e9, "feet")
  23930. },
  23931. {
  23932. name: "Max Size",
  23933. height: math.unit(1.4e283, "yottameters")
  23934. },
  23935. ]
  23936. ))
  23937. characterMakers.push(() => makeCharacter(
  23938. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23939. {
  23940. female: {
  23941. height: math.unit(29.9, "m"),
  23942. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23943. name: "Female",
  23944. image: {
  23945. source: "./media/characters/zenari/female.svg",
  23946. extra: 3281.6 / 3217,
  23947. bottom: 72.2 / 3353
  23948. }
  23949. },
  23950. male: {
  23951. height: math.unit(27.7, "m"),
  23952. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23953. name: "Male",
  23954. image: {
  23955. source: "./media/characters/zenari/male.svg",
  23956. extra: 3008 / 2991,
  23957. bottom: 54.6 / 3069
  23958. }
  23959. },
  23960. },
  23961. [
  23962. {
  23963. name: "Macro",
  23964. height: math.unit(29.7, "meters"),
  23965. default: true
  23966. },
  23967. ]
  23968. ))
  23969. characterMakers.push(() => makeCharacter(
  23970. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23971. {
  23972. female: {
  23973. height: math.unit(23.8, "m"),
  23974. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23975. name: "Female",
  23976. image: {
  23977. source: "./media/characters/mactarian/female.svg",
  23978. extra: 2662 / 2569,
  23979. bottom: 73 / 2736
  23980. }
  23981. },
  23982. male: {
  23983. height: math.unit(23.8, "m"),
  23984. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23985. name: "Male",
  23986. image: {
  23987. source: "./media/characters/mactarian/male.svg",
  23988. extra: 2673 / 2600,
  23989. bottom: 76 / 2750
  23990. }
  23991. },
  23992. },
  23993. [
  23994. {
  23995. name: "Macro",
  23996. height: math.unit(23.8, "meters"),
  23997. default: true
  23998. },
  23999. ]
  24000. ))
  24001. characterMakers.push(() => makeCharacter(
  24002. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24003. {
  24004. female: {
  24005. height: math.unit(19.3, "m"),
  24006. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24007. name: "Female",
  24008. image: {
  24009. source: "./media/characters/umok/female.svg",
  24010. extra: 2186 / 2078,
  24011. bottom: 87 / 2277
  24012. }
  24013. },
  24014. male: {
  24015. height: math.unit(19.5, "m"),
  24016. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24017. name: "Male",
  24018. image: {
  24019. source: "./media/characters/umok/male.svg",
  24020. extra: 2233 / 2140,
  24021. bottom: 24.4 / 2258
  24022. }
  24023. },
  24024. },
  24025. [
  24026. {
  24027. name: "Macro",
  24028. height: math.unit(19.3, "meters"),
  24029. default: true
  24030. },
  24031. ]
  24032. ))
  24033. characterMakers.push(() => makeCharacter(
  24034. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24035. {
  24036. female: {
  24037. height: math.unit(26.15, "m"),
  24038. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24039. name: "Female",
  24040. image: {
  24041. source: "./media/characters/joraxian/female.svg",
  24042. extra: 2912 / 2824,
  24043. bottom: 36 / 2956
  24044. }
  24045. },
  24046. male: {
  24047. height: math.unit(25.4, "m"),
  24048. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24049. name: "Male",
  24050. image: {
  24051. source: "./media/characters/joraxian/male.svg",
  24052. extra: 2877 / 2721,
  24053. bottom: 82 / 2967
  24054. }
  24055. },
  24056. },
  24057. [
  24058. {
  24059. name: "Macro",
  24060. height: math.unit(26.15, "meters"),
  24061. default: true
  24062. },
  24063. ]
  24064. ))
  24065. characterMakers.push(() => makeCharacter(
  24066. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24067. {
  24068. female: {
  24069. height: math.unit(21.6, "m"),
  24070. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24071. name: "Female",
  24072. image: {
  24073. source: "./media/characters/sthara/female.svg",
  24074. extra: 2516 / 2347,
  24075. bottom: 21.5 / 2537
  24076. }
  24077. },
  24078. male: {
  24079. height: math.unit(24, "m"),
  24080. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24081. name: "Male",
  24082. image: {
  24083. source: "./media/characters/sthara/male.svg",
  24084. extra: 2732 / 2607,
  24085. bottom: 23 / 2732
  24086. }
  24087. },
  24088. },
  24089. [
  24090. {
  24091. name: "Macro",
  24092. height: math.unit(21.6, "meters"),
  24093. default: true
  24094. },
  24095. ]
  24096. ))
  24097. characterMakers.push(() => makeCharacter(
  24098. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24099. {
  24100. front: {
  24101. height: math.unit(6 + 4 / 12, "feet"),
  24102. weight: math.unit(175, "lb"),
  24103. name: "Front",
  24104. image: {
  24105. source: "./media/characters/luka-bryzant/front.svg",
  24106. extra: 311 / 289,
  24107. bottom: 4 / 315
  24108. }
  24109. },
  24110. back: {
  24111. height: math.unit(6 + 4 / 12, "feet"),
  24112. weight: math.unit(175, "lb"),
  24113. name: "Back",
  24114. image: {
  24115. source: "./media/characters/luka-bryzant/back.svg",
  24116. extra: 311 / 289,
  24117. bottom: 3.8 / 313.7
  24118. }
  24119. },
  24120. },
  24121. [
  24122. {
  24123. name: "Micro",
  24124. height: math.unit(10, "inches")
  24125. },
  24126. {
  24127. name: "Normal",
  24128. height: math.unit(6 + 4 / 12, "feet"),
  24129. default: true
  24130. },
  24131. {
  24132. name: "Large",
  24133. height: math.unit(12, "feet")
  24134. },
  24135. ]
  24136. ))
  24137. characterMakers.push(() => makeCharacter(
  24138. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24139. {
  24140. front: {
  24141. height: math.unit(5 + 7 / 12, "feet"),
  24142. weight: math.unit(185, "lb"),
  24143. name: "Front",
  24144. image: {
  24145. source: "./media/characters/aman-aquila/front.svg",
  24146. extra: 1013 / 976,
  24147. bottom: 45.6 / 1057
  24148. }
  24149. },
  24150. side: {
  24151. height: math.unit(5 + 7 / 12, "feet"),
  24152. weight: math.unit(185, "lb"),
  24153. name: "Side",
  24154. image: {
  24155. source: "./media/characters/aman-aquila/side.svg",
  24156. extra: 1054 / 1011,
  24157. bottom: 15 / 1070
  24158. }
  24159. },
  24160. back: {
  24161. height: math.unit(5 + 7 / 12, "feet"),
  24162. weight: math.unit(185, "lb"),
  24163. name: "Back",
  24164. image: {
  24165. source: "./media/characters/aman-aquila/back.svg",
  24166. extra: 1026 / 970,
  24167. bottom: 12 / 1039
  24168. }
  24169. },
  24170. head: {
  24171. height: math.unit(1.211, "feet"),
  24172. name: "Head",
  24173. image: {
  24174. source: "./media/characters/aman-aquila/head.svg",
  24175. }
  24176. },
  24177. },
  24178. [
  24179. {
  24180. name: "Minimicro",
  24181. height: math.unit(0.057, "inches")
  24182. },
  24183. {
  24184. name: "Micro",
  24185. height: math.unit(7, "inches")
  24186. },
  24187. {
  24188. name: "Mini",
  24189. height: math.unit(3 + 7 / 12, "feet")
  24190. },
  24191. {
  24192. name: "Normal",
  24193. height: math.unit(5 + 7 / 12, "feet"),
  24194. default: true
  24195. },
  24196. {
  24197. name: "Macro",
  24198. height: math.unit(157 + 7 / 12, "feet")
  24199. },
  24200. {
  24201. name: "Megamacro",
  24202. height: math.unit(1557 + 7 / 12, "feet")
  24203. },
  24204. {
  24205. name: "Gigamacro",
  24206. height: math.unit(15557 + 7 / 12, "feet")
  24207. },
  24208. ]
  24209. ))
  24210. characterMakers.push(() => makeCharacter(
  24211. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24212. {
  24213. front: {
  24214. height: math.unit(3 + 2 / 12, "inches"),
  24215. weight: math.unit(0.3, "ounces"),
  24216. name: "Front",
  24217. image: {
  24218. source: "./media/characters/hiphae/front.svg",
  24219. extra: 1931 / 1683,
  24220. bottom: 24 / 1955
  24221. }
  24222. },
  24223. },
  24224. [
  24225. {
  24226. name: "Normal",
  24227. height: math.unit(3 + 1 / 2, "inches"),
  24228. default: true
  24229. },
  24230. ]
  24231. ))
  24232. characterMakers.push(() => makeCharacter(
  24233. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24234. {
  24235. front: {
  24236. height: math.unit(5 + 10 / 12, "feet"),
  24237. weight: math.unit(165, "lb"),
  24238. name: "Front",
  24239. image: {
  24240. source: "./media/characters/nicky/front.svg",
  24241. extra: 3144 / 2886,
  24242. bottom: 45.6 / 3192
  24243. }
  24244. },
  24245. back: {
  24246. height: math.unit(5 + 10 / 12, "feet"),
  24247. weight: math.unit(165, "lb"),
  24248. name: "Back",
  24249. image: {
  24250. source: "./media/characters/nicky/back.svg",
  24251. extra: 3055 / 2804,
  24252. bottom: 28.4 / 3087
  24253. }
  24254. },
  24255. frontclothed: {
  24256. height: math.unit(5 + 10 / 12, "feet"),
  24257. weight: math.unit(165, "lb"),
  24258. name: "Front-clothed",
  24259. image: {
  24260. source: "./media/characters/nicky/front-clothed.svg",
  24261. extra: 3184.9 / 2926.9,
  24262. bottom: 86.5 / 3239.9
  24263. }
  24264. },
  24265. foot: {
  24266. height: math.unit(1.16, "feet"),
  24267. name: "Foot",
  24268. image: {
  24269. source: "./media/characters/nicky/foot.svg"
  24270. }
  24271. },
  24272. feet: {
  24273. height: math.unit(1.34, "feet"),
  24274. name: "Feet",
  24275. image: {
  24276. source: "./media/characters/nicky/feet.svg"
  24277. }
  24278. },
  24279. maw: {
  24280. height: math.unit(0.9, "feet"),
  24281. name: "Maw",
  24282. image: {
  24283. source: "./media/characters/nicky/maw.svg"
  24284. }
  24285. },
  24286. },
  24287. [
  24288. {
  24289. name: "Normal",
  24290. height: math.unit(5 + 10 / 12, "feet"),
  24291. default: true
  24292. },
  24293. {
  24294. name: "Macro",
  24295. height: math.unit(60, "feet")
  24296. },
  24297. {
  24298. name: "Megamacro",
  24299. height: math.unit(1, "mile")
  24300. },
  24301. ]
  24302. ))
  24303. characterMakers.push(() => makeCharacter(
  24304. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24305. {
  24306. side: {
  24307. height: math.unit(10, "feet"),
  24308. weight: math.unit(600, "lb"),
  24309. name: "Side",
  24310. image: {
  24311. source: "./media/characters/blair/side.svg",
  24312. bottom: 16.6 / 475,
  24313. extra: 458 / 431
  24314. }
  24315. },
  24316. },
  24317. [
  24318. {
  24319. name: "Micro",
  24320. height: math.unit(8, "inches")
  24321. },
  24322. {
  24323. name: "Normal",
  24324. height: math.unit(10, "feet"),
  24325. default: true
  24326. },
  24327. {
  24328. name: "Macro",
  24329. height: math.unit(180, "feet")
  24330. },
  24331. ]
  24332. ))
  24333. characterMakers.push(() => makeCharacter(
  24334. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24335. {
  24336. front: {
  24337. height: math.unit(5 + 4 / 12, "feet"),
  24338. weight: math.unit(125, "lb"),
  24339. name: "Front",
  24340. image: {
  24341. source: "./media/characters/fisher/front.svg",
  24342. extra: 444 / 390,
  24343. bottom: 2 / 444.8
  24344. }
  24345. },
  24346. },
  24347. [
  24348. {
  24349. name: "Micro",
  24350. height: math.unit(4, "inches")
  24351. },
  24352. {
  24353. name: "Normal",
  24354. height: math.unit(5 + 4 / 12, "feet"),
  24355. default: true
  24356. },
  24357. {
  24358. name: "Macro",
  24359. height: math.unit(100, "feet")
  24360. },
  24361. ]
  24362. ))
  24363. characterMakers.push(() => makeCharacter(
  24364. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24365. {
  24366. front: {
  24367. height: math.unit(6.71, "feet"),
  24368. weight: math.unit(200, "lb"),
  24369. capacity: math.unit(1000000, "people"),
  24370. name: "Front",
  24371. image: {
  24372. source: "./media/characters/gliss/front.svg",
  24373. extra: 2347 / 2231,
  24374. bottom: 113 / 2462
  24375. }
  24376. },
  24377. hammerspaceSize: {
  24378. height: math.unit(6.71 * 717, "feet"),
  24379. weight: math.unit(200, "lb"),
  24380. capacity: math.unit(1000000, "people"),
  24381. name: "Hammerspace Size",
  24382. image: {
  24383. source: "./media/characters/gliss/front.svg",
  24384. extra: 2347 / 2231,
  24385. bottom: 113 / 2462
  24386. }
  24387. },
  24388. },
  24389. [
  24390. {
  24391. name: "Normal",
  24392. height: math.unit(6.71, "feet"),
  24393. default: true
  24394. },
  24395. ]
  24396. ))
  24397. characterMakers.push(() => makeCharacter(
  24398. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24399. {
  24400. side: {
  24401. height: math.unit(1.44, "m"),
  24402. weight: math.unit(80, "kg"),
  24403. name: "Side",
  24404. image: {
  24405. source: "./media/characters/dune-anderson/side.svg",
  24406. bottom: 49 / 1426
  24407. }
  24408. },
  24409. },
  24410. [
  24411. {
  24412. name: "Wolf-sized",
  24413. height: math.unit(1.44, "meters")
  24414. },
  24415. {
  24416. name: "Normal",
  24417. height: math.unit(5.05, "meters"),
  24418. default: true
  24419. },
  24420. {
  24421. name: "Big",
  24422. height: math.unit(14.4, "meters")
  24423. },
  24424. {
  24425. name: "Huge",
  24426. height: math.unit(144, "meters")
  24427. },
  24428. ]
  24429. ))
  24430. characterMakers.push(() => makeCharacter(
  24431. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24432. {
  24433. front: {
  24434. height: math.unit(7, "feet"),
  24435. weight: math.unit(425, "lb"),
  24436. name: "Front",
  24437. image: {
  24438. source: "./media/characters/hind/front.svg",
  24439. extra: 2091 / 1860,
  24440. bottom: 129 / 2220
  24441. }
  24442. },
  24443. back: {
  24444. height: math.unit(7, "feet"),
  24445. weight: math.unit(425, "lb"),
  24446. name: "Back",
  24447. image: {
  24448. source: "./media/characters/hind/back.svg",
  24449. extra: 2091 / 1860,
  24450. bottom: 24.6 / 2309
  24451. }
  24452. },
  24453. tail: {
  24454. height: math.unit(2.8, "feet"),
  24455. name: "Tail",
  24456. image: {
  24457. source: "./media/characters/hind/tail.svg"
  24458. }
  24459. },
  24460. head: {
  24461. height: math.unit(2.55, "feet"),
  24462. name: "Head",
  24463. image: {
  24464. source: "./media/characters/hind/head.svg"
  24465. }
  24466. },
  24467. },
  24468. [
  24469. {
  24470. name: "XS",
  24471. height: math.unit(0.7, "feet")
  24472. },
  24473. {
  24474. name: "Normal",
  24475. height: math.unit(7, "feet"),
  24476. default: true
  24477. },
  24478. {
  24479. name: "XL",
  24480. height: math.unit(70, "feet")
  24481. },
  24482. ]
  24483. ))
  24484. characterMakers.push(() => makeCharacter(
  24485. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24486. {
  24487. front: {
  24488. height: math.unit(6, "feet"),
  24489. weight: math.unit(150, "lb"),
  24490. name: "Front",
  24491. image: {
  24492. source: "./media/characters/dylan-skaven/front.svg",
  24493. extra: 2318 / 2063,
  24494. bottom: 93.4 / 2410
  24495. }
  24496. },
  24497. },
  24498. [
  24499. {
  24500. name: "Nano",
  24501. height: math.unit(1, "mm")
  24502. },
  24503. {
  24504. name: "Micro",
  24505. height: math.unit(1, "cm")
  24506. },
  24507. {
  24508. name: "Normal",
  24509. height: math.unit(2.1, "meters"),
  24510. default: true
  24511. },
  24512. ]
  24513. ))
  24514. characterMakers.push(() => makeCharacter(
  24515. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24516. {
  24517. front: {
  24518. height: math.unit(7 + 5 / 12, "feet"),
  24519. weight: math.unit(357, "lb"),
  24520. name: "Front",
  24521. image: {
  24522. source: "./media/characters/solex-draconov/front.svg",
  24523. extra: 1993 / 1865,
  24524. bottom: 117 / 2111
  24525. }
  24526. },
  24527. },
  24528. [
  24529. {
  24530. name: "Natural Height",
  24531. height: math.unit(7 + 5 / 12, "feet"),
  24532. default: true
  24533. },
  24534. {
  24535. name: "Macro",
  24536. height: math.unit(350, "feet")
  24537. },
  24538. {
  24539. name: "Macro+",
  24540. height: math.unit(1000, "feet")
  24541. },
  24542. {
  24543. name: "Megamacro",
  24544. height: math.unit(20, "km")
  24545. },
  24546. {
  24547. name: "Megamacro+",
  24548. height: math.unit(1000, "km")
  24549. },
  24550. {
  24551. name: "Gigamacro",
  24552. height: math.unit(2.5, "Gm")
  24553. },
  24554. {
  24555. name: "Teramacro",
  24556. height: math.unit(15, "Tm")
  24557. },
  24558. {
  24559. name: "Galactic",
  24560. height: math.unit(30, "Zm")
  24561. },
  24562. {
  24563. name: "Universal",
  24564. height: math.unit(21000, "Ym")
  24565. },
  24566. {
  24567. name: "Omniversal",
  24568. height: math.unit(9.861e50, "Ym")
  24569. },
  24570. {
  24571. name: "Existential",
  24572. height: math.unit(1e300, "meters")
  24573. },
  24574. ]
  24575. ))
  24576. characterMakers.push(() => makeCharacter(
  24577. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24578. {
  24579. side: {
  24580. height: math.unit(25, "feet"),
  24581. weight: math.unit(90000, "lb"),
  24582. name: "Side",
  24583. image: {
  24584. source: "./media/characters/mandarax/side.svg",
  24585. extra: 614 / 332,
  24586. bottom: 55 / 630
  24587. }
  24588. },
  24589. head: {
  24590. height: math.unit(11.4, "feet"),
  24591. name: "Head",
  24592. image: {
  24593. source: "./media/characters/mandarax/head.svg"
  24594. }
  24595. },
  24596. belly: {
  24597. height: math.unit(33, "feet"),
  24598. name: "Belly",
  24599. capacity: math.unit(500, "people"),
  24600. image: {
  24601. source: "./media/characters/mandarax/belly.svg"
  24602. }
  24603. },
  24604. dick: {
  24605. height: math.unit(8.46, "feet"),
  24606. name: "Dick",
  24607. image: {
  24608. source: "./media/characters/mandarax/dick.svg"
  24609. }
  24610. },
  24611. top: {
  24612. height: math.unit(28, "meters"),
  24613. name: "Top",
  24614. image: {
  24615. source: "./media/characters/mandarax/top.svg"
  24616. }
  24617. },
  24618. },
  24619. [
  24620. {
  24621. name: "Normal",
  24622. height: math.unit(25, "feet"),
  24623. default: true
  24624. },
  24625. ]
  24626. ))
  24627. characterMakers.push(() => makeCharacter(
  24628. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24629. {
  24630. front: {
  24631. height: math.unit(5, "feet"),
  24632. weight: math.unit(90, "lb"),
  24633. name: "Front",
  24634. image: {
  24635. source: "./media/characters/pixil/front.svg",
  24636. extra: 2000 / 1618,
  24637. bottom: 12.3 / 2011
  24638. }
  24639. },
  24640. },
  24641. [
  24642. {
  24643. name: "Normal",
  24644. height: math.unit(5, "feet"),
  24645. default: true
  24646. },
  24647. {
  24648. name: "Megamacro",
  24649. height: math.unit(10, "miles"),
  24650. },
  24651. ]
  24652. ))
  24653. characterMakers.push(() => makeCharacter(
  24654. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24655. {
  24656. front: {
  24657. height: math.unit(7 + 2 / 12, "feet"),
  24658. weight: math.unit(200, "lb"),
  24659. name: "Front",
  24660. image: {
  24661. source: "./media/characters/angel/front.svg",
  24662. extra: 1830 / 1737,
  24663. bottom: 22.6 / 1854,
  24664. }
  24665. },
  24666. },
  24667. [
  24668. {
  24669. name: "Normal",
  24670. height: math.unit(7 + 2 / 12, "feet"),
  24671. default: true
  24672. },
  24673. {
  24674. name: "Macro",
  24675. height: math.unit(1000, "feet")
  24676. },
  24677. {
  24678. name: "Megamacro",
  24679. height: math.unit(2, "miles")
  24680. },
  24681. {
  24682. name: "Gigamacro",
  24683. height: math.unit(20, "earths")
  24684. },
  24685. ]
  24686. ))
  24687. characterMakers.push(() => makeCharacter(
  24688. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24689. {
  24690. front: {
  24691. height: math.unit(5, "feet"),
  24692. weight: math.unit(180, "lb"),
  24693. name: "Front",
  24694. image: {
  24695. source: "./media/characters/mekana/front.svg",
  24696. extra: 1671 / 1605,
  24697. bottom: 3.5 / 1691
  24698. }
  24699. },
  24700. side: {
  24701. height: math.unit(5, "feet"),
  24702. weight: math.unit(180, "lb"),
  24703. name: "Side",
  24704. image: {
  24705. source: "./media/characters/mekana/side.svg",
  24706. extra: 1671 / 1605,
  24707. bottom: 3.5 / 1691
  24708. }
  24709. },
  24710. back: {
  24711. height: math.unit(5, "feet"),
  24712. weight: math.unit(180, "lb"),
  24713. name: "Back",
  24714. image: {
  24715. source: "./media/characters/mekana/back.svg",
  24716. extra: 1671 / 1605,
  24717. bottom: 3.5 / 1691
  24718. }
  24719. },
  24720. },
  24721. [
  24722. {
  24723. name: "Normal",
  24724. height: math.unit(5, "feet"),
  24725. default: true
  24726. },
  24727. ]
  24728. ))
  24729. characterMakers.push(() => makeCharacter(
  24730. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24731. {
  24732. front: {
  24733. height: math.unit(4 + 6 / 12, "feet"),
  24734. weight: math.unit(80, "lb"),
  24735. name: "Front",
  24736. image: {
  24737. source: "./media/characters/pixie/front.svg",
  24738. extra: 1924 / 1825,
  24739. bottom: 22.4 / 1946
  24740. }
  24741. },
  24742. },
  24743. [
  24744. {
  24745. name: "Normal",
  24746. height: math.unit(4 + 6 / 12, "feet"),
  24747. default: true
  24748. },
  24749. {
  24750. name: "Macro",
  24751. height: math.unit(40, "feet")
  24752. },
  24753. ]
  24754. ))
  24755. characterMakers.push(() => makeCharacter(
  24756. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24757. {
  24758. front: {
  24759. height: math.unit(2.1, "meters"),
  24760. weight: math.unit(200, "lb"),
  24761. name: "Front",
  24762. image: {
  24763. source: "./media/characters/the-lascivious/front.svg",
  24764. extra: 1 / 0.893,
  24765. bottom: 3.5 / 573.7
  24766. }
  24767. },
  24768. },
  24769. [
  24770. {
  24771. name: "Human Scale",
  24772. height: math.unit(2.1, "meters")
  24773. },
  24774. {
  24775. name: "Wolxi Scale",
  24776. height: math.unit(46.2, "m"),
  24777. default: true
  24778. },
  24779. {
  24780. name: "Boinker of Buildings",
  24781. height: math.unit(10, "km")
  24782. },
  24783. {
  24784. name: "Shagger of Skyscrapers",
  24785. height: math.unit(40, "km")
  24786. },
  24787. {
  24788. name: "Banger of Boroughs",
  24789. height: math.unit(4000, "km")
  24790. },
  24791. {
  24792. name: "Screwer of States",
  24793. height: math.unit(100000, "km")
  24794. },
  24795. {
  24796. name: "Pounder of Planets",
  24797. height: math.unit(2000000, "km")
  24798. },
  24799. ]
  24800. ))
  24801. characterMakers.push(() => makeCharacter(
  24802. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24803. {
  24804. front: {
  24805. height: math.unit(6, "feet"),
  24806. weight: math.unit(150, "lb"),
  24807. name: "Front",
  24808. image: {
  24809. source: "./media/characters/aj/front.svg",
  24810. extra: 2039 / 1562,
  24811. bottom: 40 / 2079
  24812. }
  24813. },
  24814. },
  24815. [
  24816. {
  24817. name: "Normal",
  24818. height: math.unit(11 + 6 / 12, "feet"),
  24819. default: true
  24820. },
  24821. {
  24822. name: "Megamacro",
  24823. height: math.unit(60, "megameters")
  24824. },
  24825. ]
  24826. ))
  24827. characterMakers.push(() => makeCharacter(
  24828. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24829. {
  24830. side: {
  24831. height: math.unit(31 + 8 / 12, "feet"),
  24832. weight: math.unit(75000, "kg"),
  24833. name: "Side",
  24834. image: {
  24835. source: "./media/characters/koros/side.svg",
  24836. extra: 1442 / 1297,
  24837. bottom: 122.7 / 1562
  24838. }
  24839. },
  24840. dicksKingsCrown: {
  24841. height: math.unit(6, "feet"),
  24842. name: "Dicks (King's Crown)",
  24843. image: {
  24844. source: "./media/characters/koros/dicks-kings-crown.svg"
  24845. }
  24846. },
  24847. dicksTailSet: {
  24848. height: math.unit(3, "feet"),
  24849. name: "Dicks (Tail Set)",
  24850. image: {
  24851. source: "./media/characters/koros/dicks-tail-set.svg"
  24852. }
  24853. },
  24854. dickCumming: {
  24855. height: math.unit(7.98, "feet"),
  24856. name: "Dick (Cumming)",
  24857. image: {
  24858. source: "./media/characters/koros/dick-cumming.svg"
  24859. }
  24860. },
  24861. dicksBack: {
  24862. height: math.unit(5.9, "feet"),
  24863. name: "Dicks (Back)",
  24864. image: {
  24865. source: "./media/characters/koros/dicks-back.svg"
  24866. }
  24867. },
  24868. dicksFront: {
  24869. height: math.unit(3.72, "feet"),
  24870. name: "Dicks (Front)",
  24871. image: {
  24872. source: "./media/characters/koros/dicks-front.svg"
  24873. }
  24874. },
  24875. dicksPeeking: {
  24876. height: math.unit(3.0, "feet"),
  24877. name: "Dicks (Peeking)",
  24878. image: {
  24879. source: "./media/characters/koros/dicks-peeking.svg"
  24880. }
  24881. },
  24882. eye: {
  24883. height: math.unit(1.7, "feet"),
  24884. name: "Eye",
  24885. image: {
  24886. source: "./media/characters/koros/eye.svg"
  24887. }
  24888. },
  24889. headFront: {
  24890. height: math.unit(11.69, "feet"),
  24891. name: "Head (Front)",
  24892. image: {
  24893. source: "./media/characters/koros/head-front.svg"
  24894. }
  24895. },
  24896. headSide: {
  24897. height: math.unit(14, "feet"),
  24898. name: "Head (Side)",
  24899. image: {
  24900. source: "./media/characters/koros/head-side.svg"
  24901. }
  24902. },
  24903. leg: {
  24904. height: math.unit(17, "feet"),
  24905. name: "Leg",
  24906. image: {
  24907. source: "./media/characters/koros/leg.svg"
  24908. }
  24909. },
  24910. mawSide: {
  24911. height: math.unit(12.8, "feet"),
  24912. name: "Maw (Side)",
  24913. image: {
  24914. source: "./media/characters/koros/maw-side.svg"
  24915. }
  24916. },
  24917. mawSpitting: {
  24918. height: math.unit(17, "feet"),
  24919. name: "Maw (Spitting)",
  24920. image: {
  24921. source: "./media/characters/koros/maw-spitting.svg"
  24922. }
  24923. },
  24924. slit: {
  24925. height: math.unit(2.8, "feet"),
  24926. name: "Slit",
  24927. image: {
  24928. source: "./media/characters/koros/slit.svg"
  24929. }
  24930. },
  24931. stomach: {
  24932. height: math.unit(6.8, "feet"),
  24933. capacity: math.unit(20, "people"),
  24934. name: "Stomach",
  24935. image: {
  24936. source: "./media/characters/koros/stomach.svg"
  24937. }
  24938. },
  24939. wingspanBottom: {
  24940. height: math.unit(114, "feet"),
  24941. name: "Wingspan (Bottom)",
  24942. image: {
  24943. source: "./media/characters/koros/wingspan-bottom.svg"
  24944. }
  24945. },
  24946. wingspanTop: {
  24947. height: math.unit(104, "feet"),
  24948. name: "Wingspan (Top)",
  24949. image: {
  24950. source: "./media/characters/koros/wingspan-top.svg"
  24951. }
  24952. },
  24953. },
  24954. [
  24955. {
  24956. name: "Normal",
  24957. height: math.unit(31 + 8 / 12, "feet"),
  24958. default: true
  24959. },
  24960. ]
  24961. ))
  24962. characterMakers.push(() => makeCharacter(
  24963. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24964. {
  24965. front: {
  24966. height: math.unit(18 + 5 / 12, "feet"),
  24967. weight: math.unit(3750, "kg"),
  24968. name: "Front",
  24969. image: {
  24970. source: "./media/characters/vexx/front.svg",
  24971. extra: 426 / 396,
  24972. bottom: 31.5 / 458
  24973. }
  24974. },
  24975. maw: {
  24976. height: math.unit(6, "feet"),
  24977. name: "Maw",
  24978. image: {
  24979. source: "./media/characters/vexx/maw.svg"
  24980. }
  24981. },
  24982. },
  24983. [
  24984. {
  24985. name: "Normal",
  24986. height: math.unit(18 + 5 / 12, "feet"),
  24987. default: true
  24988. },
  24989. ]
  24990. ))
  24991. characterMakers.push(() => makeCharacter(
  24992. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24993. {
  24994. front: {
  24995. height: math.unit(17 + 6 / 12, "feet"),
  24996. weight: math.unit(150, "lb"),
  24997. name: "Front",
  24998. image: {
  24999. source: "./media/characters/baadra/front.svg",
  25000. extra: 3137 / 2890,
  25001. bottom: 168.4 / 3305
  25002. }
  25003. },
  25004. back: {
  25005. height: math.unit(17 + 6 / 12, "feet"),
  25006. weight: math.unit(150, "lb"),
  25007. name: "Back",
  25008. image: {
  25009. source: "./media/characters/baadra/back.svg",
  25010. extra: 3142 / 2890,
  25011. bottom: 220 / 3371
  25012. }
  25013. },
  25014. head: {
  25015. height: math.unit(5.45, "feet"),
  25016. name: "Head",
  25017. image: {
  25018. source: "./media/characters/baadra/head.svg"
  25019. }
  25020. },
  25021. headAngry: {
  25022. height: math.unit(4.95, "feet"),
  25023. name: "Head (Angry)",
  25024. image: {
  25025. source: "./media/characters/baadra/head-angry.svg"
  25026. }
  25027. },
  25028. headOpen: {
  25029. height: math.unit(6, "feet"),
  25030. name: "Head (Open)",
  25031. image: {
  25032. source: "./media/characters/baadra/head-open.svg"
  25033. }
  25034. },
  25035. },
  25036. [
  25037. {
  25038. name: "Normal",
  25039. height: math.unit(17 + 6 / 12, "feet"),
  25040. default: true
  25041. },
  25042. ]
  25043. ))
  25044. characterMakers.push(() => makeCharacter(
  25045. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25046. {
  25047. front: {
  25048. height: math.unit(7 + 3 / 12, "feet"),
  25049. weight: math.unit(180, "lb"),
  25050. name: "Front",
  25051. image: {
  25052. source: "./media/characters/juri/front.svg",
  25053. extra: 1401 / 1237,
  25054. bottom: 18.5 / 1418
  25055. }
  25056. },
  25057. side: {
  25058. height: math.unit(7 + 3 / 12, "feet"),
  25059. weight: math.unit(180, "lb"),
  25060. name: "Side",
  25061. image: {
  25062. source: "./media/characters/juri/side.svg",
  25063. extra: 1424 / 1242,
  25064. bottom: 18.5 / 1447
  25065. }
  25066. },
  25067. sitting: {
  25068. height: math.unit(6, "feet"),
  25069. weight: math.unit(180, "lb"),
  25070. name: "Sitting",
  25071. image: {
  25072. source: "./media/characters/juri/sitting.svg",
  25073. extra: 1270 / 1143,
  25074. bottom: 100 / 1343
  25075. }
  25076. },
  25077. back: {
  25078. height: math.unit(7 + 3 / 12, "feet"),
  25079. weight: math.unit(180, "lb"),
  25080. name: "Back",
  25081. image: {
  25082. source: "./media/characters/juri/back.svg",
  25083. extra: 1377 / 1240,
  25084. bottom: 23.7 / 1405
  25085. }
  25086. },
  25087. maw: {
  25088. height: math.unit(2.8, "feet"),
  25089. name: "Maw",
  25090. image: {
  25091. source: "./media/characters/juri/maw.svg"
  25092. }
  25093. },
  25094. stomach: {
  25095. height: math.unit(0.89, "feet"),
  25096. capacity: math.unit(4, "liters"),
  25097. name: "Stomach",
  25098. image: {
  25099. source: "./media/characters/juri/stomach.svg"
  25100. }
  25101. },
  25102. },
  25103. [
  25104. {
  25105. name: "Normal",
  25106. height: math.unit(7 + 3 / 12, "feet"),
  25107. default: true
  25108. },
  25109. ]
  25110. ))
  25111. characterMakers.push(() => makeCharacter(
  25112. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25113. {
  25114. fox: {
  25115. height: math.unit(5 + 6 / 12, "feet"),
  25116. weight: math.unit(140, "lb"),
  25117. name: "Fox",
  25118. image: {
  25119. source: "./media/characters/maxene-sita/fox.svg",
  25120. extra: 146 / 138,
  25121. bottom: 2.1 / 148.19
  25122. }
  25123. },
  25124. foxLaying: {
  25125. height: math.unit(1.70, "feet"),
  25126. weight: math.unit(140, "lb"),
  25127. name: "Fox (Laying)",
  25128. image: {
  25129. source: "./media/characters/maxene-sita/fox-laying.svg",
  25130. extra: 910 / 572,
  25131. bottom: 71 / 981
  25132. }
  25133. },
  25134. kitsune: {
  25135. height: math.unit(10, "feet"),
  25136. weight: math.unit(800, "lb"),
  25137. name: "Kitsune",
  25138. image: {
  25139. source: "./media/characters/maxene-sita/kitsune.svg",
  25140. extra: 185 / 176,
  25141. bottom: 4.7 / 189.9
  25142. }
  25143. },
  25144. hellhound: {
  25145. height: math.unit(10, "feet"),
  25146. weight: math.unit(700, "lb"),
  25147. name: "Hellhound",
  25148. image: {
  25149. source: "./media/characters/maxene-sita/hellhound.svg",
  25150. extra: 1600 / 1545,
  25151. bottom: 81 / 1681
  25152. }
  25153. },
  25154. },
  25155. [
  25156. {
  25157. name: "Normal",
  25158. height: math.unit(5 + 6 / 12, "feet"),
  25159. default: true
  25160. },
  25161. ]
  25162. ))
  25163. characterMakers.push(() => makeCharacter(
  25164. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25165. {
  25166. front: {
  25167. height: math.unit(3 + 4 / 12, "feet"),
  25168. weight: math.unit(70, "lb"),
  25169. name: "Front",
  25170. image: {
  25171. source: "./media/characters/maia/front.svg",
  25172. extra: 227 / 219.5,
  25173. bottom: 40 / 267
  25174. }
  25175. },
  25176. back: {
  25177. height: math.unit(3 + 4 / 12, "feet"),
  25178. weight: math.unit(70, "lb"),
  25179. name: "Back",
  25180. image: {
  25181. source: "./media/characters/maia/back.svg",
  25182. extra: 237 / 225
  25183. }
  25184. },
  25185. },
  25186. [
  25187. {
  25188. name: "Normal",
  25189. height: math.unit(3 + 4 / 12, "feet"),
  25190. default: true
  25191. },
  25192. ]
  25193. ))
  25194. characterMakers.push(() => makeCharacter(
  25195. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25196. {
  25197. front: {
  25198. height: math.unit(5 + 10 / 12, "feet"),
  25199. weight: math.unit(197, "lb"),
  25200. name: "Front",
  25201. image: {
  25202. source: "./media/characters/jabaro/front.svg",
  25203. extra: 225 / 216,
  25204. bottom: 5.06 / 230
  25205. }
  25206. },
  25207. back: {
  25208. height: math.unit(5 + 10 / 12, "feet"),
  25209. weight: math.unit(197, "lb"),
  25210. name: "Back",
  25211. image: {
  25212. source: "./media/characters/jabaro/back.svg",
  25213. extra: 225 / 219,
  25214. bottom: 1.9 / 227
  25215. }
  25216. },
  25217. },
  25218. [
  25219. {
  25220. name: "Normal",
  25221. height: math.unit(5 + 10 / 12, "feet"),
  25222. default: true
  25223. },
  25224. ]
  25225. ))
  25226. characterMakers.push(() => makeCharacter(
  25227. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25228. {
  25229. front: {
  25230. height: math.unit(5 + 8 / 12, "feet"),
  25231. weight: math.unit(139, "lb"),
  25232. name: "Front",
  25233. image: {
  25234. source: "./media/characters/risa/front.svg",
  25235. extra: 270 / 260,
  25236. bottom: 11.2 / 282
  25237. }
  25238. },
  25239. back: {
  25240. height: math.unit(5 + 8 / 12, "feet"),
  25241. weight: math.unit(139, "lb"),
  25242. name: "Back",
  25243. image: {
  25244. source: "./media/characters/risa/back.svg",
  25245. extra: 264 / 255,
  25246. bottom: 4 / 268
  25247. }
  25248. },
  25249. },
  25250. [
  25251. {
  25252. name: "Normal",
  25253. height: math.unit(5 + 8 / 12, "feet"),
  25254. default: true
  25255. },
  25256. ]
  25257. ))
  25258. characterMakers.push(() => makeCharacter(
  25259. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25260. {
  25261. front: {
  25262. height: math.unit(2 + 11 / 12, "feet"),
  25263. weight: math.unit(30, "lb"),
  25264. name: "Front",
  25265. image: {
  25266. source: "./media/characters/weatley/front.svg",
  25267. bottom: 10.7 / 414,
  25268. extra: 403.5 / 362
  25269. }
  25270. },
  25271. back: {
  25272. height: math.unit(2 + 11 / 12, "feet"),
  25273. weight: math.unit(30, "lb"),
  25274. name: "Back",
  25275. image: {
  25276. source: "./media/characters/weatley/back.svg",
  25277. bottom: 10.7 / 414,
  25278. extra: 403.5 / 362
  25279. }
  25280. },
  25281. },
  25282. [
  25283. {
  25284. name: "Normal",
  25285. height: math.unit(2 + 11 / 12, "feet"),
  25286. default: true
  25287. },
  25288. ]
  25289. ))
  25290. characterMakers.push(() => makeCharacter(
  25291. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25292. {
  25293. front: {
  25294. height: math.unit(5 + 2 / 12, "feet"),
  25295. weight: math.unit(50, "kg"),
  25296. name: "Front",
  25297. image: {
  25298. source: "./media/characters/mercury-crescent/front.svg",
  25299. extra: 1088 / 1033,
  25300. bottom: 18.9 / 1109
  25301. }
  25302. },
  25303. },
  25304. [
  25305. {
  25306. name: "Normal",
  25307. height: math.unit(5 + 2 / 12, "feet"),
  25308. default: true
  25309. },
  25310. ]
  25311. ))
  25312. characterMakers.push(() => makeCharacter(
  25313. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25314. {
  25315. front: {
  25316. height: math.unit(2, "feet"),
  25317. weight: math.unit(15, "kg"),
  25318. name: "Front",
  25319. image: {
  25320. source: "./media/characters/diamond-jones/front.svg",
  25321. bottom: 16 / 568
  25322. }
  25323. },
  25324. },
  25325. [
  25326. {
  25327. name: "Normal",
  25328. height: math.unit(2, "feet"),
  25329. default: true
  25330. },
  25331. ]
  25332. ))
  25333. characterMakers.push(() => makeCharacter(
  25334. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25335. {
  25336. front: {
  25337. height: math.unit(3, "feet"),
  25338. weight: math.unit(30, "kg"),
  25339. name: "Front",
  25340. image: {
  25341. source: "./media/characters/sweet-bit/front.svg",
  25342. extra: 675 / 567,
  25343. bottom: 27.7 / 703
  25344. }
  25345. },
  25346. },
  25347. [
  25348. {
  25349. name: "Normal",
  25350. height: math.unit(3, "feet"),
  25351. default: true
  25352. },
  25353. ]
  25354. ))
  25355. characterMakers.push(() => makeCharacter(
  25356. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25357. {
  25358. side: {
  25359. height: math.unit(9.178, "feet"),
  25360. weight: math.unit(500, "lb"),
  25361. name: "Side",
  25362. image: {
  25363. source: "./media/characters/umbrazen/side.svg",
  25364. extra: 1730 / 1473,
  25365. bottom: 34.6 / 1765
  25366. }
  25367. },
  25368. },
  25369. [
  25370. {
  25371. name: "Normal",
  25372. height: math.unit(9.178, "feet"),
  25373. default: true
  25374. },
  25375. ]
  25376. ))
  25377. characterMakers.push(() => makeCharacter(
  25378. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25379. {
  25380. front: {
  25381. height: math.unit(10, "feet"),
  25382. weight: math.unit(750, "lb"),
  25383. name: "Front",
  25384. image: {
  25385. source: "./media/characters/arlist/front.svg",
  25386. extra: 961 / 778,
  25387. bottom: 6.2 / 986
  25388. }
  25389. },
  25390. },
  25391. [
  25392. {
  25393. name: "Normal",
  25394. height: math.unit(10, "feet"),
  25395. default: true
  25396. },
  25397. ]
  25398. ))
  25399. characterMakers.push(() => makeCharacter(
  25400. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25401. {
  25402. front: {
  25403. height: math.unit(5 + 1 / 12, "feet"),
  25404. weight: math.unit(110, "lb"),
  25405. name: "Front",
  25406. image: {
  25407. source: "./media/characters/aradel/front.svg",
  25408. extra: 324 / 303,
  25409. bottom: 3.6 / 329.4
  25410. }
  25411. },
  25412. },
  25413. [
  25414. {
  25415. name: "Normal",
  25416. height: math.unit(5 + 1 / 12, "feet"),
  25417. default: true
  25418. },
  25419. ]
  25420. ))
  25421. characterMakers.push(() => makeCharacter(
  25422. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25423. {
  25424. front: {
  25425. height: math.unit(3 + 8 / 12, "feet"),
  25426. weight: math.unit(50, "lb"),
  25427. name: "Front",
  25428. image: {
  25429. source: "./media/characters/serryn/front.svg",
  25430. extra: 1792 / 1656,
  25431. bottom: 43.5 / 1840
  25432. }
  25433. },
  25434. },
  25435. [
  25436. {
  25437. name: "Normal",
  25438. height: math.unit(3 + 8 / 12, "feet"),
  25439. default: true
  25440. },
  25441. ]
  25442. ))
  25443. characterMakers.push(() => makeCharacter(
  25444. { name: "Xavier Thyme" },
  25445. {
  25446. front: {
  25447. height: math.unit(7 + 10 / 12, "feet"),
  25448. weight: math.unit(255, "lb"),
  25449. name: "Front",
  25450. image: {
  25451. source: "./media/characters/xavier-thyme/front.svg",
  25452. extra: 3733 / 3642,
  25453. bottom: 131 / 3869
  25454. }
  25455. },
  25456. frontRaven: {
  25457. height: math.unit(7 + 10 / 12, "feet"),
  25458. weight: math.unit(255, "lb"),
  25459. name: "Front (Raven)",
  25460. image: {
  25461. source: "./media/characters/xavier-thyme/front-raven.svg",
  25462. extra: 4385 / 3642,
  25463. bottom: 131 / 4517
  25464. }
  25465. },
  25466. },
  25467. [
  25468. {
  25469. name: "Normal",
  25470. height: math.unit(7 + 10 / 12, "feet"),
  25471. default: true
  25472. },
  25473. ]
  25474. ))
  25475. characterMakers.push(() => makeCharacter(
  25476. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25477. {
  25478. front: {
  25479. height: math.unit(1.6, "m"),
  25480. weight: math.unit(50, "kg"),
  25481. name: "Front",
  25482. image: {
  25483. source: "./media/characters/kiki/front.svg",
  25484. extra: 4682 / 3610,
  25485. bottom: 115 / 4777
  25486. }
  25487. },
  25488. },
  25489. [
  25490. {
  25491. name: "Normal",
  25492. height: math.unit(1.6, "meters"),
  25493. default: true
  25494. },
  25495. ]
  25496. ))
  25497. characterMakers.push(() => makeCharacter(
  25498. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25499. {
  25500. front: {
  25501. height: math.unit(50, "m"),
  25502. weight: math.unit(500, "tonnes"),
  25503. name: "Front",
  25504. image: {
  25505. source: "./media/characters/ryoko/front.svg",
  25506. extra: 4632 / 3926,
  25507. bottom: 193 / 4823
  25508. }
  25509. },
  25510. },
  25511. [
  25512. {
  25513. name: "Normal",
  25514. height: math.unit(50, "meters"),
  25515. default: true
  25516. },
  25517. ]
  25518. ))
  25519. characterMakers.push(() => makeCharacter(
  25520. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25521. {
  25522. front: {
  25523. height: math.unit(30, "m"),
  25524. weight: math.unit(22, "tonnes"),
  25525. name: "Front",
  25526. image: {
  25527. source: "./media/characters/elio/front.svg",
  25528. extra: 4582 / 3720,
  25529. bottom: 236 / 4828
  25530. }
  25531. },
  25532. },
  25533. [
  25534. {
  25535. name: "Normal",
  25536. height: math.unit(30, "meters"),
  25537. default: true
  25538. },
  25539. ]
  25540. ))
  25541. characterMakers.push(() => makeCharacter(
  25542. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25543. {
  25544. front: {
  25545. height: math.unit(6 + 3 / 12, "feet"),
  25546. weight: math.unit(120, "lb"),
  25547. name: "Front",
  25548. image: {
  25549. source: "./media/characters/azura/front.svg",
  25550. extra: 1149 / 1135,
  25551. bottom: 45 / 1194
  25552. }
  25553. },
  25554. frontClothed: {
  25555. height: math.unit(6 + 3 / 12, "feet"),
  25556. weight: math.unit(120, "lb"),
  25557. name: "Front (Clothed)",
  25558. image: {
  25559. source: "./media/characters/azura/front-clothed.svg",
  25560. extra: 1149 / 1135,
  25561. bottom: 45 / 1194
  25562. }
  25563. },
  25564. },
  25565. [
  25566. {
  25567. name: "Normal",
  25568. height: math.unit(6 + 3 / 12, "feet"),
  25569. default: true
  25570. },
  25571. {
  25572. name: "Macro",
  25573. height: math.unit(20 + 6 / 12, "feet")
  25574. },
  25575. {
  25576. name: "Megamacro",
  25577. height: math.unit(12, "miles")
  25578. },
  25579. {
  25580. name: "Gigamacro",
  25581. height: math.unit(10000, "miles")
  25582. },
  25583. {
  25584. name: "Teramacro",
  25585. height: math.unit(900000, "miles")
  25586. },
  25587. ]
  25588. ))
  25589. characterMakers.push(() => makeCharacter(
  25590. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25591. {
  25592. front: {
  25593. height: math.unit(12, "feet"),
  25594. weight: math.unit(1, "ton"),
  25595. capacity: math.unit(660000, "gallons"),
  25596. name: "Front",
  25597. image: {
  25598. source: "./media/characters/zeus/front.svg",
  25599. extra: 5005 / 4717,
  25600. bottom: 363 / 5388
  25601. }
  25602. },
  25603. },
  25604. [
  25605. {
  25606. name: "Normal",
  25607. height: math.unit(12, "feet")
  25608. },
  25609. {
  25610. name: "Preferred Size",
  25611. height: math.unit(0.5, "miles"),
  25612. default: true
  25613. },
  25614. {
  25615. name: "Giga Horse",
  25616. height: math.unit(300, "miles")
  25617. },
  25618. {
  25619. name: "Riding Planets",
  25620. height: math.unit(30, "megameters")
  25621. },
  25622. {
  25623. name: "Cosmic Giant",
  25624. height: math.unit(3, "zettameters")
  25625. },
  25626. {
  25627. name: "Breeding God",
  25628. height: math.unit(9.92e22, "yottameters")
  25629. },
  25630. ]
  25631. ))
  25632. characterMakers.push(() => makeCharacter(
  25633. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25634. {
  25635. side: {
  25636. height: math.unit(9, "feet"),
  25637. weight: math.unit(1500, "kg"),
  25638. name: "Side",
  25639. image: {
  25640. source: "./media/characters/fang/side.svg",
  25641. extra: 924 / 866,
  25642. bottom: 47.5 / 972.3
  25643. }
  25644. },
  25645. },
  25646. [
  25647. {
  25648. name: "Normal",
  25649. height: math.unit(9, "feet"),
  25650. default: true
  25651. },
  25652. {
  25653. name: "Macro",
  25654. height: math.unit(75 + 6 / 12, "feet")
  25655. },
  25656. {
  25657. name: "Teramacro",
  25658. height: math.unit(50000, "miles")
  25659. },
  25660. ]
  25661. ))
  25662. characterMakers.push(() => makeCharacter(
  25663. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25664. {
  25665. front: {
  25666. height: math.unit(10, "feet"),
  25667. weight: math.unit(2, "tons"),
  25668. name: "Front",
  25669. image: {
  25670. source: "./media/characters/rekhit/front.svg",
  25671. extra: 2796 / 2590,
  25672. bottom: 225 / 3022
  25673. }
  25674. },
  25675. },
  25676. [
  25677. {
  25678. name: "Normal",
  25679. height: math.unit(10, "feet"),
  25680. default: true
  25681. },
  25682. {
  25683. name: "Macro",
  25684. height: math.unit(500, "feet")
  25685. },
  25686. ]
  25687. ))
  25688. characterMakers.push(() => makeCharacter(
  25689. { name: "Dahlia Verrick" },
  25690. {
  25691. front: {
  25692. height: math.unit(7 + 6.451 / 12, "feet"),
  25693. weight: math.unit(310, "lb"),
  25694. name: "Front",
  25695. image: {
  25696. source: "./media/characters/dahlia-verrick/front.svg",
  25697. extra: 1488 / 1365,
  25698. bottom: 6.2 / 1495
  25699. }
  25700. },
  25701. back: {
  25702. height: math.unit(7 + 6.451 / 12, "feet"),
  25703. weight: math.unit(310, "lb"),
  25704. name: "Back",
  25705. image: {
  25706. source: "./media/characters/dahlia-verrick/back.svg",
  25707. extra: 1472 / 1351,
  25708. bottom: 5.28 / 1477
  25709. }
  25710. },
  25711. frontBusiness: {
  25712. height: math.unit(7 + 6.451 / 12, "feet"),
  25713. weight: math.unit(200, "lb"),
  25714. name: "Front (Business)",
  25715. image: {
  25716. source: "./media/characters/dahlia-verrick/front-business.svg",
  25717. extra: 1478 / 1381,
  25718. bottom: 5.5 / 1484
  25719. }
  25720. },
  25721. frontCasual: {
  25722. height: math.unit(7 + 6.451 / 12, "feet"),
  25723. weight: math.unit(200, "lb"),
  25724. name: "Front (Casual)",
  25725. image: {
  25726. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25727. extra: 1478 / 1381,
  25728. bottom: 5.5 / 1484
  25729. }
  25730. },
  25731. },
  25732. [
  25733. {
  25734. name: "Travel-Sized",
  25735. height: math.unit(7.45, "inches")
  25736. },
  25737. {
  25738. name: "Normal",
  25739. height: math.unit(7 + 6.451 / 12, "feet"),
  25740. default: true
  25741. },
  25742. {
  25743. name: "Hitting the Town",
  25744. height: math.unit(37 + 8 / 12, "feet")
  25745. },
  25746. {
  25747. name: "Stomp in the Suburbs",
  25748. height: math.unit(964 + 9.728 / 12, "feet")
  25749. },
  25750. {
  25751. name: "Sit on the City",
  25752. height: math.unit(61747 + 10.592 / 12, "feet")
  25753. },
  25754. {
  25755. name: "Glomp the Globe",
  25756. height: math.unit(252919327 + 4.832 / 12, "feet")
  25757. },
  25758. ]
  25759. ))
  25760. characterMakers.push(() => makeCharacter(
  25761. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25762. {
  25763. front: {
  25764. height: math.unit(6 + 4 / 12, "feet"),
  25765. weight: math.unit(320, "lb"),
  25766. name: "Front",
  25767. image: {
  25768. source: "./media/characters/balina-mahigan/front.svg",
  25769. extra: 447 / 428,
  25770. bottom: 18 / 466
  25771. }
  25772. },
  25773. back: {
  25774. height: math.unit(6 + 4 / 12, "feet"),
  25775. weight: math.unit(320, "lb"),
  25776. name: "Back",
  25777. image: {
  25778. source: "./media/characters/balina-mahigan/back.svg",
  25779. extra: 445 / 428,
  25780. bottom: 4.07 / 448
  25781. }
  25782. },
  25783. arm: {
  25784. height: math.unit(1.88, "feet"),
  25785. name: "Arm",
  25786. image: {
  25787. source: "./media/characters/balina-mahigan/arm.svg"
  25788. }
  25789. },
  25790. backPort: {
  25791. height: math.unit(0.685, "feet"),
  25792. name: "Back Port",
  25793. image: {
  25794. source: "./media/characters/balina-mahigan/back-port.svg"
  25795. }
  25796. },
  25797. hoofpaw: {
  25798. height: math.unit(1.41, "feet"),
  25799. name: "Hoofpaw",
  25800. image: {
  25801. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25802. }
  25803. },
  25804. leftHandBack: {
  25805. height: math.unit(0.938, "feet"),
  25806. name: "Left Hand (Back)",
  25807. image: {
  25808. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25809. }
  25810. },
  25811. leftHandFront: {
  25812. height: math.unit(0.938, "feet"),
  25813. name: "Left Hand (Front)",
  25814. image: {
  25815. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25816. }
  25817. },
  25818. rightHandBack: {
  25819. height: math.unit(0.95, "feet"),
  25820. name: "Right Hand (Back)",
  25821. image: {
  25822. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25823. }
  25824. },
  25825. rightHandFront: {
  25826. height: math.unit(0.95, "feet"),
  25827. name: "Right Hand (Front)",
  25828. image: {
  25829. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25830. }
  25831. },
  25832. },
  25833. [
  25834. {
  25835. name: "Normal",
  25836. height: math.unit(6 + 4 / 12, "feet"),
  25837. default: true
  25838. },
  25839. ]
  25840. ))
  25841. characterMakers.push(() => makeCharacter(
  25842. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25843. {
  25844. front: {
  25845. height: math.unit(6, "feet"),
  25846. weight: math.unit(320, "lb"),
  25847. name: "Front",
  25848. image: {
  25849. source: "./media/characters/balina-mejeri/front.svg",
  25850. extra: 517 / 488,
  25851. bottom: 44.2 / 561
  25852. }
  25853. },
  25854. },
  25855. [
  25856. {
  25857. name: "Normal",
  25858. height: math.unit(6 + 4 / 12, "feet")
  25859. },
  25860. {
  25861. name: "Business",
  25862. height: math.unit(155, "feet"),
  25863. default: true
  25864. },
  25865. ]
  25866. ))
  25867. characterMakers.push(() => makeCharacter(
  25868. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25869. {
  25870. kneeling: {
  25871. height: math.unit(6 + 4 / 12, "feet"),
  25872. weight: math.unit(300 * 20, "lb"),
  25873. name: "Kneeling",
  25874. image: {
  25875. source: "./media/characters/balbarian/kneeling.svg",
  25876. extra: 922 / 862,
  25877. bottom: 42.4 / 965
  25878. }
  25879. },
  25880. },
  25881. [
  25882. {
  25883. name: "Normal",
  25884. height: math.unit(6 + 4 / 12, "feet")
  25885. },
  25886. {
  25887. name: "Treasured",
  25888. height: math.unit(18 + 9 / 12, "feet"),
  25889. default: true
  25890. },
  25891. {
  25892. name: "Macro",
  25893. height: math.unit(900, "feet")
  25894. },
  25895. ]
  25896. ))
  25897. characterMakers.push(() => makeCharacter(
  25898. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25899. {
  25900. front: {
  25901. height: math.unit(6 + 4 / 12, "feet"),
  25902. weight: math.unit(325, "lb"),
  25903. name: "Front",
  25904. image: {
  25905. source: "./media/characters/balina-amarini/front.svg",
  25906. extra: 415 / 403,
  25907. bottom: 19 / 433.4
  25908. }
  25909. },
  25910. back: {
  25911. height: math.unit(6 + 4 / 12, "feet"),
  25912. weight: math.unit(325, "lb"),
  25913. name: "Back",
  25914. image: {
  25915. source: "./media/characters/balina-amarini/back.svg",
  25916. extra: 415 / 403,
  25917. bottom: 13.5 / 432
  25918. }
  25919. },
  25920. overdrive: {
  25921. height: math.unit(6 + 4 / 12, "feet"),
  25922. weight: math.unit(400, "lb"),
  25923. name: "Overdrive",
  25924. image: {
  25925. source: "./media/characters/balina-amarini/overdrive.svg",
  25926. extra: 269 / 259,
  25927. bottom: 12 / 282
  25928. }
  25929. },
  25930. },
  25931. [
  25932. {
  25933. name: "Boom",
  25934. height: math.unit(9 + 10 / 12, "feet"),
  25935. default: true
  25936. },
  25937. {
  25938. name: "Macro",
  25939. height: math.unit(280, "feet")
  25940. },
  25941. ]
  25942. ))
  25943. characterMakers.push(() => makeCharacter(
  25944. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25945. {
  25946. goddess: {
  25947. height: math.unit(600, "feet"),
  25948. weight: math.unit(2000000, "tons"),
  25949. name: "Goddess",
  25950. image: {
  25951. source: "./media/characters/lady-kubwa/goddess.svg",
  25952. extra: 1240.5 / 1223,
  25953. bottom: 22 / 1263
  25954. }
  25955. },
  25956. goddesser: {
  25957. height: math.unit(900, "feet"),
  25958. weight: math.unit(20000000, "lb"),
  25959. name: "Goddess-er",
  25960. image: {
  25961. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25962. extra: 899 / 888,
  25963. bottom: 12.6 / 912
  25964. }
  25965. },
  25966. },
  25967. [
  25968. {
  25969. name: "Macro",
  25970. height: math.unit(600, "feet"),
  25971. default: true
  25972. },
  25973. {
  25974. name: "Megamacro",
  25975. height: math.unit(250, "miles")
  25976. },
  25977. ]
  25978. ))
  25979. characterMakers.push(() => makeCharacter(
  25980. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25981. {
  25982. front: {
  25983. height: math.unit(7 + 7 / 12, "feet"),
  25984. weight: math.unit(250, "lb"),
  25985. name: "Front",
  25986. image: {
  25987. source: "./media/characters/tala-grovehorn/front.svg",
  25988. extra: 2636 / 2525,
  25989. bottom: 147 / 2781
  25990. }
  25991. },
  25992. back: {
  25993. height: math.unit(7 + 7 / 12, "feet"),
  25994. weight: math.unit(250, "lb"),
  25995. name: "Back",
  25996. image: {
  25997. source: "./media/characters/tala-grovehorn/back.svg",
  25998. extra: 2635 / 2539,
  25999. bottom: 100 / 2732.8
  26000. }
  26001. },
  26002. mouth: {
  26003. height: math.unit(1.15, "feet"),
  26004. name: "Mouth",
  26005. image: {
  26006. source: "./media/characters/tala-grovehorn/mouth.svg"
  26007. }
  26008. },
  26009. dick: {
  26010. height: math.unit(2.36, "feet"),
  26011. name: "Dick",
  26012. image: {
  26013. source: "./media/characters/tala-grovehorn/dick.svg"
  26014. }
  26015. },
  26016. slit: {
  26017. height: math.unit(0.61, "feet"),
  26018. name: "Slit",
  26019. image: {
  26020. source: "./media/characters/tala-grovehorn/slit.svg"
  26021. }
  26022. },
  26023. },
  26024. [
  26025. ]
  26026. ))
  26027. characterMakers.push(() => makeCharacter(
  26028. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26029. {
  26030. front: {
  26031. height: math.unit(7 + 7 / 12, "feet"),
  26032. weight: math.unit(225, "lb"),
  26033. name: "Front",
  26034. image: {
  26035. source: "./media/characters/epona/front.svg",
  26036. extra: 2445 / 2290,
  26037. bottom: 251 / 2696
  26038. }
  26039. },
  26040. back: {
  26041. height: math.unit(7 + 7 / 12, "feet"),
  26042. weight: math.unit(225, "lb"),
  26043. name: "Back",
  26044. image: {
  26045. source: "./media/characters/epona/back.svg",
  26046. extra: 2546 / 2408,
  26047. bottom: 44 / 2589
  26048. }
  26049. },
  26050. genitals: {
  26051. height: math.unit(1.5, "feet"),
  26052. name: "Genitals",
  26053. image: {
  26054. source: "./media/characters/epona/genitals.svg"
  26055. }
  26056. },
  26057. },
  26058. [
  26059. {
  26060. name: "Normal",
  26061. height: math.unit(7 + 7 / 12, "feet"),
  26062. default: true
  26063. },
  26064. ]
  26065. ))
  26066. characterMakers.push(() => makeCharacter(
  26067. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26068. {
  26069. front: {
  26070. height: math.unit(7, "feet"),
  26071. weight: math.unit(518, "lb"),
  26072. name: "Front",
  26073. image: {
  26074. source: "./media/characters/avia-bloodbourn/front.svg",
  26075. extra: 1466 / 1350,
  26076. bottom: 65 / 1527
  26077. }
  26078. },
  26079. },
  26080. [
  26081. ]
  26082. ))
  26083. characterMakers.push(() => makeCharacter(
  26084. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26085. {
  26086. front: {
  26087. height: math.unit(9.35, "feet"),
  26088. weight: math.unit(600, "lb"),
  26089. name: "Front",
  26090. image: {
  26091. source: "./media/characters/amera/front.svg",
  26092. extra: 891 / 818,
  26093. bottom: 30 / 922.7
  26094. }
  26095. },
  26096. back: {
  26097. height: math.unit(9.35, "feet"),
  26098. weight: math.unit(600, "lb"),
  26099. name: "Back",
  26100. image: {
  26101. source: "./media/characters/amera/back.svg",
  26102. extra: 876 / 824,
  26103. bottom: 6.8 / 884
  26104. }
  26105. },
  26106. dick: {
  26107. height: math.unit(2.14, "feet"),
  26108. name: "Dick",
  26109. image: {
  26110. source: "./media/characters/amera/dick.svg"
  26111. }
  26112. },
  26113. },
  26114. [
  26115. {
  26116. name: "Normal",
  26117. height: math.unit(9.35, "feet"),
  26118. default: true
  26119. },
  26120. ]
  26121. ))
  26122. characterMakers.push(() => makeCharacter(
  26123. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26124. {
  26125. kneeling: {
  26126. height: math.unit(3 + 4 / 12, "feet"),
  26127. weight: math.unit(90, "lb"),
  26128. name: "Kneeling",
  26129. image: {
  26130. source: "./media/characters/rosewen/kneeling.svg",
  26131. extra: 1835 / 1571,
  26132. bottom: 27.7 / 1862
  26133. }
  26134. },
  26135. },
  26136. [
  26137. {
  26138. name: "Normal",
  26139. height: math.unit(3 + 4 / 12, "feet"),
  26140. default: true
  26141. },
  26142. ]
  26143. ))
  26144. characterMakers.push(() => makeCharacter(
  26145. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26146. {
  26147. front: {
  26148. height: math.unit(5 + 10 / 12, "feet"),
  26149. weight: math.unit(200, "lb"),
  26150. name: "Front",
  26151. image: {
  26152. source: "./media/characters/sabah/front.svg",
  26153. extra: 849 / 763,
  26154. bottom: 33.9 / 881
  26155. }
  26156. },
  26157. },
  26158. [
  26159. {
  26160. name: "Normal",
  26161. height: math.unit(5 + 10 / 12, "feet"),
  26162. default: true
  26163. },
  26164. ]
  26165. ))
  26166. characterMakers.push(() => makeCharacter(
  26167. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26168. {
  26169. front: {
  26170. height: math.unit(3 + 5 / 12, "feet"),
  26171. weight: math.unit(40, "kg"),
  26172. name: "Front",
  26173. image: {
  26174. source: "./media/characters/purple-flame/front.svg",
  26175. extra: 1577 / 1412,
  26176. bottom: 97 / 1694
  26177. }
  26178. },
  26179. frontDressed: {
  26180. height: math.unit(3 + 5 / 12, "feet"),
  26181. weight: math.unit(40, "kg"),
  26182. name: "Front (Dressed)",
  26183. image: {
  26184. source: "./media/characters/purple-flame/front-dressed.svg",
  26185. extra: 1577 / 1412,
  26186. bottom: 97 / 1694
  26187. }
  26188. },
  26189. headphones: {
  26190. height: math.unit(0.85, "feet"),
  26191. name: "Headphones",
  26192. image: {
  26193. source: "./media/characters/purple-flame/headphones.svg"
  26194. }
  26195. },
  26196. },
  26197. [
  26198. {
  26199. name: "Really Small",
  26200. height: math.unit(5, "cm")
  26201. },
  26202. {
  26203. name: "Micro",
  26204. height: math.unit(1 + 5 / 12, "feet")
  26205. },
  26206. {
  26207. name: "Normal",
  26208. height: math.unit(3 + 5 / 12, "feet"),
  26209. default: true
  26210. },
  26211. {
  26212. name: "Minimacro",
  26213. height: math.unit(125, "feet")
  26214. },
  26215. {
  26216. name: "Macro",
  26217. height: math.unit(0.5, "miles")
  26218. },
  26219. {
  26220. name: "Megamacro",
  26221. height: math.unit(50, "miles")
  26222. },
  26223. {
  26224. name: "Gigantic",
  26225. height: math.unit(750, "miles")
  26226. },
  26227. {
  26228. name: "Planetary",
  26229. height: math.unit(15000, "miles")
  26230. },
  26231. ]
  26232. ))
  26233. characterMakers.push(() => makeCharacter(
  26234. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26235. {
  26236. front: {
  26237. height: math.unit(14, "feet"),
  26238. weight: math.unit(959, "lb"),
  26239. name: "Front",
  26240. image: {
  26241. source: "./media/characters/arsenal/front.svg",
  26242. extra: 2357 / 2157,
  26243. bottom: 93 / 2458
  26244. }
  26245. },
  26246. },
  26247. [
  26248. {
  26249. name: "Normal",
  26250. height: math.unit(14, "feet"),
  26251. default: true
  26252. },
  26253. ]
  26254. ))
  26255. characterMakers.push(() => makeCharacter(
  26256. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26257. {
  26258. front: {
  26259. height: math.unit(6, "feet"),
  26260. weight: math.unit(150, "lb"),
  26261. name: "Front",
  26262. image: {
  26263. source: "./media/characters/adira/front.svg",
  26264. extra: 1078 / 1029,
  26265. bottom: 87 / 1166
  26266. }
  26267. },
  26268. },
  26269. [
  26270. {
  26271. name: "Micro",
  26272. height: math.unit(4, "inches"),
  26273. default: true
  26274. },
  26275. {
  26276. name: "Macro",
  26277. height: math.unit(50, "feet")
  26278. },
  26279. ]
  26280. ))
  26281. characterMakers.push(() => makeCharacter(
  26282. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26283. {
  26284. front: {
  26285. height: math.unit(16, "feet"),
  26286. weight: math.unit(1000, "lb"),
  26287. name: "Front",
  26288. image: {
  26289. source: "./media/characters/grim/front.svg",
  26290. extra: 622 / 614,
  26291. bottom: 18.1 / 642
  26292. }
  26293. },
  26294. back: {
  26295. height: math.unit(16, "feet"),
  26296. weight: math.unit(1000, "lb"),
  26297. name: "Back",
  26298. image: {
  26299. source: "./media/characters/grim/back.svg",
  26300. extra: 610.6 / 602,
  26301. bottom: 40.8 / 652
  26302. }
  26303. },
  26304. hunched: {
  26305. height: math.unit(9.75, "feet"),
  26306. weight: math.unit(1000, "lb"),
  26307. name: "Hunched",
  26308. image: {
  26309. source: "./media/characters/grim/hunched.svg",
  26310. extra: 304 / 297,
  26311. bottom: 35.4 / 394
  26312. }
  26313. },
  26314. },
  26315. [
  26316. {
  26317. name: "Normal",
  26318. height: math.unit(16, "feet"),
  26319. default: true
  26320. },
  26321. ]
  26322. ))
  26323. characterMakers.push(() => makeCharacter(
  26324. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26325. {
  26326. front: {
  26327. height: math.unit(2.3, "meters"),
  26328. weight: math.unit(300, "lb"),
  26329. name: "Front",
  26330. image: {
  26331. source: "./media/characters/sinja/front-sfw.svg",
  26332. extra: 1393 / 1294,
  26333. bottom: 70 / 1463
  26334. }
  26335. },
  26336. frontNsfw: {
  26337. height: math.unit(2.3, "meters"),
  26338. weight: math.unit(300, "lb"),
  26339. name: "Front (NSFW)",
  26340. image: {
  26341. source: "./media/characters/sinja/front-nsfw.svg",
  26342. extra: 1393 / 1294,
  26343. bottom: 70 / 1463
  26344. }
  26345. },
  26346. back: {
  26347. height: math.unit(2.3, "meters"),
  26348. weight: math.unit(300, "lb"),
  26349. name: "Back",
  26350. image: {
  26351. source: "./media/characters/sinja/back.svg",
  26352. extra: 1393 / 1294,
  26353. bottom: 70 / 1463
  26354. }
  26355. },
  26356. head: {
  26357. height: math.unit(1.771, "feet"),
  26358. name: "Head",
  26359. image: {
  26360. source: "./media/characters/sinja/head.svg"
  26361. }
  26362. },
  26363. slit: {
  26364. height: math.unit(0.8, "feet"),
  26365. name: "Slit",
  26366. image: {
  26367. source: "./media/characters/sinja/slit.svg"
  26368. }
  26369. },
  26370. },
  26371. [
  26372. {
  26373. name: "Normal",
  26374. height: math.unit(2.3, "meters")
  26375. },
  26376. {
  26377. name: "Macro",
  26378. height: math.unit(91, "meters"),
  26379. default: true
  26380. },
  26381. {
  26382. name: "Megamacro",
  26383. height: math.unit(91440, "meters")
  26384. },
  26385. {
  26386. name: "Gigamacro",
  26387. height: math.unit(60960000, "meters")
  26388. },
  26389. {
  26390. name: "Teramacro",
  26391. height: math.unit(9144000000, "meters")
  26392. },
  26393. ]
  26394. ))
  26395. characterMakers.push(() => makeCharacter(
  26396. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26397. {
  26398. front: {
  26399. height: math.unit(1.7, "meters"),
  26400. weight: math.unit(130, "lb"),
  26401. name: "Front",
  26402. image: {
  26403. source: "./media/characters/kyu/front.svg",
  26404. extra: 415 / 395,
  26405. bottom: 5 / 420
  26406. }
  26407. },
  26408. head: {
  26409. height: math.unit(1.75, "feet"),
  26410. name: "Head",
  26411. image: {
  26412. source: "./media/characters/kyu/head.svg"
  26413. }
  26414. },
  26415. foot: {
  26416. height: math.unit(0.81, "feet"),
  26417. name: "Foot",
  26418. image: {
  26419. source: "./media/characters/kyu/foot.svg"
  26420. }
  26421. },
  26422. },
  26423. [
  26424. {
  26425. name: "Normal",
  26426. height: math.unit(1.7, "meters")
  26427. },
  26428. {
  26429. name: "Macro",
  26430. height: math.unit(131, "feet"),
  26431. default: true
  26432. },
  26433. {
  26434. name: "Megamacro",
  26435. height: math.unit(91440, "meters")
  26436. },
  26437. {
  26438. name: "Gigamacro",
  26439. height: math.unit(60960000, "meters")
  26440. },
  26441. {
  26442. name: "Teramacro",
  26443. height: math.unit(9144000000, "meters")
  26444. },
  26445. ]
  26446. ))
  26447. characterMakers.push(() => makeCharacter(
  26448. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26449. {
  26450. front: {
  26451. height: math.unit(7 + 1 / 12, "feet"),
  26452. weight: math.unit(250, "lb"),
  26453. name: "Front",
  26454. image: {
  26455. source: "./media/characters/joey/front.svg",
  26456. extra: 1791 / 1537,
  26457. bottom: 28 / 1816
  26458. }
  26459. },
  26460. },
  26461. [
  26462. {
  26463. name: "Micro",
  26464. height: math.unit(3, "inches")
  26465. },
  26466. {
  26467. name: "Normal",
  26468. height: math.unit(7 + 1 / 12, "feet"),
  26469. default: true
  26470. },
  26471. ]
  26472. ))
  26473. characterMakers.push(() => makeCharacter(
  26474. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26475. {
  26476. front: {
  26477. height: math.unit(165, "cm"),
  26478. weight: math.unit(140, "lb"),
  26479. name: "Front",
  26480. image: {
  26481. source: "./media/characters/sam-evans/front.svg",
  26482. extra: 3417 / 3230,
  26483. bottom: 41.3 / 3417
  26484. }
  26485. },
  26486. frontSixTails: {
  26487. height: math.unit(165, "cm"),
  26488. weight: math.unit(140, "lb"),
  26489. name: "Front-six-tails",
  26490. image: {
  26491. source: "./media/characters/sam-evans/front-six-tails.svg",
  26492. extra: 3417 / 3230,
  26493. bottom: 41.3 / 3417
  26494. }
  26495. },
  26496. back: {
  26497. height: math.unit(165, "cm"),
  26498. weight: math.unit(140, "lb"),
  26499. name: "Back",
  26500. image: {
  26501. source: "./media/characters/sam-evans/back.svg",
  26502. extra: 3227 / 3032,
  26503. bottom: 6.8 / 3234
  26504. }
  26505. },
  26506. face: {
  26507. height: math.unit(0.68, "feet"),
  26508. name: "Face",
  26509. image: {
  26510. source: "./media/characters/sam-evans/face.svg"
  26511. }
  26512. },
  26513. },
  26514. [
  26515. {
  26516. name: "Normal",
  26517. height: math.unit(165, "cm"),
  26518. default: true
  26519. },
  26520. {
  26521. name: "Macro",
  26522. height: math.unit(100, "meters")
  26523. },
  26524. {
  26525. name: "Macro+",
  26526. height: math.unit(800, "meters")
  26527. },
  26528. {
  26529. name: "Macro++",
  26530. height: math.unit(3, "km")
  26531. },
  26532. {
  26533. name: "Macro+++",
  26534. height: math.unit(30, "km")
  26535. },
  26536. ]
  26537. ))
  26538. characterMakers.push(() => makeCharacter(
  26539. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26540. {
  26541. front: {
  26542. height: math.unit(10, "feet"),
  26543. weight: math.unit(750, "lb"),
  26544. name: "Front",
  26545. image: {
  26546. source: "./media/characters/juliet-a/front.svg",
  26547. extra: 1766 / 1720,
  26548. bottom: 43 / 1809
  26549. }
  26550. },
  26551. back: {
  26552. height: math.unit(10, "feet"),
  26553. weight: math.unit(750, "lb"),
  26554. name: "Back",
  26555. image: {
  26556. source: "./media/characters/juliet-a/back.svg",
  26557. extra: 1781 / 1734,
  26558. bottom: 35 / 1810,
  26559. }
  26560. },
  26561. },
  26562. [
  26563. {
  26564. name: "Normal",
  26565. height: math.unit(10, "feet"),
  26566. default: true
  26567. },
  26568. {
  26569. name: "Dragon Form",
  26570. height: math.unit(250, "feet")
  26571. },
  26572. {
  26573. name: "Macro",
  26574. height: math.unit(1000, "feet")
  26575. },
  26576. {
  26577. name: "Megamacro",
  26578. height: math.unit(10000, "feet")
  26579. }
  26580. ]
  26581. ))
  26582. characterMakers.push(() => makeCharacter(
  26583. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26584. {
  26585. regular: {
  26586. height: math.unit(7 + 3 / 12, "feet"),
  26587. weight: math.unit(260, "lb"),
  26588. name: "Regular",
  26589. image: {
  26590. source: "./media/characters/wild/regular.svg",
  26591. extra: 97.45 / 92,
  26592. bottom: 6.8 / 104.3
  26593. }
  26594. },
  26595. biggums: {
  26596. height: math.unit(8 + 6 / 12, "feet"),
  26597. weight: math.unit(425, "lb"),
  26598. name: "Biggums",
  26599. image: {
  26600. source: "./media/characters/wild/biggums.svg",
  26601. extra: 97.45 / 92,
  26602. bottom: 7.5 / 132.34
  26603. }
  26604. },
  26605. mawRegular: {
  26606. height: math.unit(1.24, "feet"),
  26607. name: "Maw (Regular)",
  26608. image: {
  26609. source: "./media/characters/wild/maw.svg"
  26610. }
  26611. },
  26612. mawBiggums: {
  26613. height: math.unit(1.47, "feet"),
  26614. name: "Maw (Biggums)",
  26615. image: {
  26616. source: "./media/characters/wild/maw.svg"
  26617. }
  26618. },
  26619. },
  26620. [
  26621. {
  26622. name: "Normal",
  26623. height: math.unit(7 + 3 / 12, "feet"),
  26624. default: true
  26625. },
  26626. ]
  26627. ))
  26628. characterMakers.push(() => makeCharacter(
  26629. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26630. {
  26631. front: {
  26632. height: math.unit(2.5, "meters"),
  26633. weight: math.unit(200, "kg"),
  26634. name: "Front",
  26635. image: {
  26636. source: "./media/characters/vidar/front.svg",
  26637. extra: 2994 / 2795,
  26638. bottom: 56 / 3061
  26639. }
  26640. },
  26641. back: {
  26642. height: math.unit(2.5, "meters"),
  26643. weight: math.unit(200, "kg"),
  26644. name: "Back",
  26645. image: {
  26646. source: "./media/characters/vidar/back.svg",
  26647. extra: 3131 / 2928,
  26648. bottom: 13.5 / 3141.5
  26649. }
  26650. },
  26651. feral: {
  26652. height: math.unit(2.5, "meters"),
  26653. weight: math.unit(2000, "kg"),
  26654. name: "Feral",
  26655. image: {
  26656. source: "./media/characters/vidar/feral.svg",
  26657. extra: 2790 / 1765,
  26658. bottom: 6 / 2796
  26659. }
  26660. },
  26661. },
  26662. [
  26663. {
  26664. name: "Normal",
  26665. height: math.unit(2.5, "meters"),
  26666. default: true
  26667. },
  26668. {
  26669. name: "Macro",
  26670. height: math.unit(100, "meters")
  26671. },
  26672. ]
  26673. ))
  26674. characterMakers.push(() => makeCharacter(
  26675. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26676. {
  26677. front: {
  26678. height: math.unit(5 + 9 / 12, "feet"),
  26679. weight: math.unit(120, "lb"),
  26680. name: "Front",
  26681. image: {
  26682. source: "./media/characters/ash/front.svg",
  26683. extra: 2189 / 1961,
  26684. bottom: 5.2 / 2194
  26685. }
  26686. },
  26687. },
  26688. [
  26689. {
  26690. name: "Normal",
  26691. height: math.unit(5 + 9 / 12, "feet"),
  26692. default: true
  26693. },
  26694. ]
  26695. ))
  26696. characterMakers.push(() => makeCharacter(
  26697. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26698. {
  26699. front: {
  26700. height: math.unit(9, "feet"),
  26701. weight: math.unit(10000, "lb"),
  26702. name: "Front",
  26703. image: {
  26704. source: "./media/characters/gygabite/front.svg",
  26705. bottom: 31.7 / 537.8,
  26706. extra: 505 / 370
  26707. }
  26708. },
  26709. },
  26710. [
  26711. {
  26712. name: "Normal",
  26713. height: math.unit(9, "feet"),
  26714. default: true
  26715. },
  26716. ]
  26717. ))
  26718. characterMakers.push(() => makeCharacter(
  26719. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26720. {
  26721. front: {
  26722. height: math.unit(12, "feet"),
  26723. weight: math.unit(35000, "lb"),
  26724. name: "Front",
  26725. image: {
  26726. source: "./media/characters/p0tat0/front.svg",
  26727. extra: 1065 / 921,
  26728. bottom: 55.7 / 1121.25
  26729. }
  26730. },
  26731. },
  26732. [
  26733. {
  26734. name: "Normal",
  26735. height: math.unit(12, "feet"),
  26736. default: true
  26737. },
  26738. ]
  26739. ))
  26740. characterMakers.push(() => makeCharacter(
  26741. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26742. {
  26743. side: {
  26744. height: math.unit(6.5, "feet"),
  26745. weight: math.unit(800, "lb"),
  26746. name: "Side",
  26747. image: {
  26748. source: "./media/characters/dusk/side.svg",
  26749. extra: 615 / 373,
  26750. bottom: 53 / 664
  26751. }
  26752. },
  26753. sitting: {
  26754. height: math.unit(7, "feet"),
  26755. weight: math.unit(800, "lb"),
  26756. name: "Sitting",
  26757. image: {
  26758. source: "./media/characters/dusk/sitting.svg",
  26759. extra: 753 / 425,
  26760. bottom: 33 / 774
  26761. }
  26762. },
  26763. head: {
  26764. height: math.unit(6.1, "feet"),
  26765. name: "Head",
  26766. image: {
  26767. source: "./media/characters/dusk/head.svg"
  26768. }
  26769. },
  26770. },
  26771. [
  26772. {
  26773. name: "Normal",
  26774. height: math.unit(7, "feet"),
  26775. default: true
  26776. },
  26777. ]
  26778. ))
  26779. characterMakers.push(() => makeCharacter(
  26780. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26781. {
  26782. front: {
  26783. height: math.unit(15, "feet"),
  26784. weight: math.unit(7000, "lb"),
  26785. name: "Front",
  26786. image: {
  26787. source: "./media/characters/jay-direwolf/front.svg",
  26788. extra: 1810 / 1732,
  26789. bottom: 66 / 1892
  26790. }
  26791. },
  26792. },
  26793. [
  26794. {
  26795. name: "Normal",
  26796. height: math.unit(15, "feet"),
  26797. default: true
  26798. },
  26799. ]
  26800. ))
  26801. characterMakers.push(() => makeCharacter(
  26802. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26803. {
  26804. front: {
  26805. height: math.unit(4 + 9 / 12, "feet"),
  26806. weight: math.unit(130, "lb"),
  26807. name: "Front",
  26808. image: {
  26809. source: "./media/characters/anchovie/front.svg",
  26810. extra: 382 / 350,
  26811. bottom: 25 / 409
  26812. }
  26813. },
  26814. back: {
  26815. height: math.unit(4 + 9 / 12, "feet"),
  26816. weight: math.unit(130, "lb"),
  26817. name: "Back",
  26818. image: {
  26819. source: "./media/characters/anchovie/back.svg",
  26820. extra: 385 / 352,
  26821. bottom: 16.6 / 402
  26822. }
  26823. },
  26824. frontDressed: {
  26825. height: math.unit(4 + 9 / 12, "feet"),
  26826. weight: math.unit(130, "lb"),
  26827. name: "Front (Dressed)",
  26828. image: {
  26829. source: "./media/characters/anchovie/front-dressed.svg",
  26830. extra: 382 / 350,
  26831. bottom: 25 / 409
  26832. }
  26833. },
  26834. backDressed: {
  26835. height: math.unit(4 + 9 / 12, "feet"),
  26836. weight: math.unit(130, "lb"),
  26837. name: "Back (Dressed)",
  26838. image: {
  26839. source: "./media/characters/anchovie/back-dressed.svg",
  26840. extra: 385 / 352,
  26841. bottom: 16.6 / 402
  26842. }
  26843. },
  26844. },
  26845. [
  26846. {
  26847. name: "Micro",
  26848. height: math.unit(6.4, "inches")
  26849. },
  26850. {
  26851. name: "Normal",
  26852. height: math.unit(4 + 9 / 12, "feet"),
  26853. default: true
  26854. },
  26855. ]
  26856. ))
  26857. characterMakers.push(() => makeCharacter(
  26858. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26859. {
  26860. front: {
  26861. height: math.unit(2, "meters"),
  26862. weight: math.unit(180, "lb"),
  26863. name: "Front",
  26864. image: {
  26865. source: "./media/characters/acidrenamon/front.svg",
  26866. extra: 987 / 890,
  26867. bottom: 22.8 / 1009
  26868. }
  26869. },
  26870. back: {
  26871. height: math.unit(2, "meters"),
  26872. weight: math.unit(180, "lb"),
  26873. name: "Back",
  26874. image: {
  26875. source: "./media/characters/acidrenamon/back.svg",
  26876. extra: 983 / 891,
  26877. bottom: 8.4 / 992
  26878. }
  26879. },
  26880. head: {
  26881. height: math.unit(1.92, "feet"),
  26882. name: "Head",
  26883. image: {
  26884. source: "./media/characters/acidrenamon/head.svg"
  26885. }
  26886. },
  26887. rump: {
  26888. height: math.unit(1.72, "feet"),
  26889. name: "Rump",
  26890. image: {
  26891. source: "./media/characters/acidrenamon/rump.svg"
  26892. }
  26893. },
  26894. tail: {
  26895. height: math.unit(4.2, "feet"),
  26896. name: "Tail",
  26897. image: {
  26898. source: "./media/characters/acidrenamon/tail.svg"
  26899. }
  26900. },
  26901. },
  26902. [
  26903. {
  26904. name: "Normal",
  26905. height: math.unit(2, "meters"),
  26906. default: true
  26907. },
  26908. {
  26909. name: "Minimacro",
  26910. height: math.unit(7, "meters")
  26911. },
  26912. {
  26913. name: "Macro",
  26914. height: math.unit(200, "meters")
  26915. },
  26916. {
  26917. name: "Gigamacro",
  26918. height: math.unit(0.2, "earths")
  26919. },
  26920. ]
  26921. ))
  26922. characterMakers.push(() => makeCharacter(
  26923. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26924. {
  26925. front: {
  26926. height: math.unit(6, "feet"),
  26927. weight: math.unit(150, "lb"),
  26928. name: "Front",
  26929. image: {
  26930. source: "./media/characters/kenzie-lee/front.svg",
  26931. extra: 1525 / 1465,
  26932. bottom: 45 / 1570
  26933. }
  26934. },
  26935. side: {
  26936. height: math.unit(6, "feet"),
  26937. weight: math.unit(150, "lb"),
  26938. name: "Side",
  26939. image: {
  26940. source: "./media/characters/kenzie-lee/side.svg",
  26941. extra: 5505 / 5383,
  26942. bottom: 60 / 5573
  26943. }
  26944. },
  26945. paw: {
  26946. height: math.unit(0.57, "feet"),
  26947. name: "Paw",
  26948. image: {
  26949. source: "./media/characters/kenzie-lee/paw.svg"
  26950. }
  26951. },
  26952. },
  26953. [
  26954. {
  26955. name: "Normal",
  26956. height: math.unit(152, "feet"),
  26957. default: true
  26958. },
  26959. {
  26960. name: "Megamacro",
  26961. height: math.unit(7, "miles")
  26962. },
  26963. {
  26964. name: "Gigamacro",
  26965. height: math.unit(8000, "miles")
  26966. },
  26967. ]
  26968. ))
  26969. characterMakers.push(() => makeCharacter(
  26970. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26971. {
  26972. side: {
  26973. height: math.unit(6, "feet"),
  26974. weight: math.unit(150, "lb"),
  26975. name: "Side",
  26976. image: {
  26977. source: "./media/characters/withers/side.svg",
  26978. extra: 1830 / 1728,
  26979. bottom: 96 / 1927
  26980. }
  26981. },
  26982. front: {
  26983. height: math.unit(6, "feet"),
  26984. weight: math.unit(150, "lb"),
  26985. name: "Front",
  26986. image: {
  26987. source: "./media/characters/withers/front.svg",
  26988. extra: 1514 / 1438,
  26989. bottom: 118 / 1632
  26990. }
  26991. },
  26992. },
  26993. [
  26994. {
  26995. name: "Macro",
  26996. height: math.unit(168, "feet"),
  26997. default: true
  26998. },
  26999. {
  27000. name: "Megamacro",
  27001. height: math.unit(15, "miles")
  27002. }
  27003. ]
  27004. ))
  27005. characterMakers.push(() => makeCharacter(
  27006. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27007. {
  27008. front: {
  27009. height: math.unit(6 + 7 / 12, "feet"),
  27010. weight: math.unit(250, "lb"),
  27011. name: "Front",
  27012. image: {
  27013. source: "./media/characters/nemoskii/front.svg",
  27014. extra: 2270 / 1734,
  27015. bottom: 86 / 2354
  27016. }
  27017. },
  27018. back: {
  27019. height: math.unit(6 + 7 / 12, "feet"),
  27020. weight: math.unit(250, "lb"),
  27021. name: "Back",
  27022. image: {
  27023. source: "./media/characters/nemoskii/back.svg",
  27024. extra: 1845 / 1788,
  27025. bottom: 10.5 / 1852
  27026. }
  27027. },
  27028. head: {
  27029. height: math.unit(1.31, "feet"),
  27030. name: "Head",
  27031. image: {
  27032. source: "./media/characters/nemoskii/head.svg"
  27033. }
  27034. },
  27035. },
  27036. [
  27037. {
  27038. name: "Micro",
  27039. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27040. },
  27041. {
  27042. name: "Normal",
  27043. height: math.unit(6 + 7 / 12, "feet"),
  27044. default: true
  27045. },
  27046. {
  27047. name: "Macro",
  27048. height: math.unit((6 + 7 / 12) * 150, "feet")
  27049. },
  27050. {
  27051. name: "Macro+",
  27052. height: math.unit((6 + 7 / 12) * 500, "feet")
  27053. },
  27054. {
  27055. name: "Megamacro",
  27056. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27057. },
  27058. ]
  27059. ))
  27060. characterMakers.push(() => makeCharacter(
  27061. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27062. {
  27063. front: {
  27064. height: math.unit(1, "mile"),
  27065. weight: math.unit(265261.9, "lb"),
  27066. name: "Front",
  27067. image: {
  27068. source: "./media/characters/shui/front.svg",
  27069. extra: 1633 / 1564,
  27070. bottom: 91.5 / 1726
  27071. }
  27072. },
  27073. },
  27074. [
  27075. {
  27076. name: "Macro",
  27077. height: math.unit(1, "mile"),
  27078. default: true
  27079. },
  27080. ]
  27081. ))
  27082. characterMakers.push(() => makeCharacter(
  27083. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27084. {
  27085. front: {
  27086. height: math.unit(12 + 6 / 12, "feet"),
  27087. weight: math.unit(1342, "lb"),
  27088. name: "Front",
  27089. image: {
  27090. source: "./media/characters/arokh-takakura/front.svg",
  27091. extra: 1089 / 1043,
  27092. bottom: 77.4 / 1176.7
  27093. }
  27094. },
  27095. back: {
  27096. height: math.unit(12 + 6 / 12, "feet"),
  27097. weight: math.unit(1342, "lb"),
  27098. name: "Back",
  27099. image: {
  27100. source: "./media/characters/arokh-takakura/back.svg",
  27101. extra: 1046 / 1019,
  27102. bottom: 102 / 1150
  27103. }
  27104. },
  27105. },
  27106. [
  27107. {
  27108. name: "Big",
  27109. height: math.unit(12 + 6 / 12, "feet"),
  27110. default: true
  27111. },
  27112. ]
  27113. ))
  27114. characterMakers.push(() => makeCharacter(
  27115. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27116. {
  27117. front: {
  27118. height: math.unit(5 + 6 / 12, "feet"),
  27119. weight: math.unit(150, "lb"),
  27120. name: "Front",
  27121. image: {
  27122. source: "./media/characters/theo/front.svg",
  27123. extra: 1184 / 1131,
  27124. bottom: 7.4 / 1191
  27125. }
  27126. },
  27127. },
  27128. [
  27129. {
  27130. name: "Micro",
  27131. height: math.unit(5, "inches")
  27132. },
  27133. {
  27134. name: "Normal",
  27135. height: math.unit(5 + 6 / 12, "feet"),
  27136. default: true
  27137. },
  27138. ]
  27139. ))
  27140. characterMakers.push(() => makeCharacter(
  27141. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27142. {
  27143. front: {
  27144. height: math.unit(5 + 9 / 12, "feet"),
  27145. weight: math.unit(130, "lb"),
  27146. name: "Front",
  27147. image: {
  27148. source: "./media/characters/cecelia-swift/front.svg",
  27149. extra: 502 / 484,
  27150. bottom: 23 / 523
  27151. }
  27152. },
  27153. back: {
  27154. height: math.unit(5 + 9 / 12, "feet"),
  27155. weight: math.unit(130, "lb"),
  27156. name: "Back",
  27157. image: {
  27158. source: "./media/characters/cecelia-swift/back.svg",
  27159. extra: 499 / 485,
  27160. bottom: 12 / 511
  27161. }
  27162. },
  27163. head: {
  27164. height: math.unit(0.90, "feet"),
  27165. name: "Head",
  27166. image: {
  27167. source: "./media/characters/cecelia-swift/head.svg"
  27168. }
  27169. },
  27170. rump: {
  27171. height: math.unit(1.75, "feet"),
  27172. name: "Rump",
  27173. image: {
  27174. source: "./media/characters/cecelia-swift/rump.svg"
  27175. }
  27176. },
  27177. },
  27178. [
  27179. {
  27180. name: "Normal",
  27181. height: math.unit(5 + 9 / 12, "feet"),
  27182. default: true
  27183. },
  27184. {
  27185. name: "Big",
  27186. height: math.unit(50, "feet")
  27187. },
  27188. {
  27189. name: "Macro",
  27190. height: math.unit(100, "feet")
  27191. },
  27192. {
  27193. name: "Macro+",
  27194. height: math.unit(500, "feet")
  27195. },
  27196. {
  27197. name: "Macro++",
  27198. height: math.unit(1000, "feet")
  27199. },
  27200. ]
  27201. ))
  27202. characterMakers.push(() => makeCharacter(
  27203. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27204. {
  27205. front: {
  27206. height: math.unit(6, "feet"),
  27207. weight: math.unit(150, "lb"),
  27208. name: "Front",
  27209. image: {
  27210. source: "./media/characters/kaunan/front.svg",
  27211. extra: 2890 / 2523,
  27212. bottom: 49 / 2939
  27213. }
  27214. },
  27215. },
  27216. [
  27217. {
  27218. name: "Macro",
  27219. height: math.unit(150, "feet"),
  27220. default: true
  27221. },
  27222. ]
  27223. ))
  27224. characterMakers.push(() => makeCharacter(
  27225. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27226. {
  27227. front: {
  27228. height: math.unit(175, "cm"),
  27229. weight: math.unit(60, "kg"),
  27230. name: "Front",
  27231. image: {
  27232. source: "./media/characters/fei/front.svg",
  27233. extra: 2581 / 2400,
  27234. bottom: 82.2 / 2663
  27235. }
  27236. },
  27237. },
  27238. [
  27239. {
  27240. name: "Mortal",
  27241. height: math.unit(175, "cm")
  27242. },
  27243. {
  27244. name: "Normal",
  27245. height: math.unit(3500, "m"),
  27246. default: true
  27247. },
  27248. {
  27249. name: "Stroll",
  27250. height: math.unit(17.5, "km")
  27251. },
  27252. {
  27253. name: "Showoff",
  27254. height: math.unit(175, "km")
  27255. },
  27256. ]
  27257. ))
  27258. characterMakers.push(() => makeCharacter(
  27259. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27260. {
  27261. front: {
  27262. height: math.unit(7, "feet"),
  27263. weight: math.unit(1000, "kg"),
  27264. name: "Front",
  27265. image: {
  27266. source: "./media/characters/edrax/front.svg",
  27267. extra: 2838 / 2550,
  27268. bottom: 130 / 2968
  27269. }
  27270. },
  27271. },
  27272. [
  27273. {
  27274. name: "Small",
  27275. height: math.unit(7, "feet")
  27276. },
  27277. {
  27278. name: "Normal",
  27279. height: math.unit(1500, "meters")
  27280. },
  27281. {
  27282. name: "Mega",
  27283. height: math.unit(12000000, "km"),
  27284. default: true
  27285. },
  27286. {
  27287. name: "Megamacro",
  27288. height: math.unit(10600000, "lightyears")
  27289. },
  27290. {
  27291. name: "Hypermacro",
  27292. height: math.unit(256, "yottameters")
  27293. },
  27294. ]
  27295. ))
  27296. characterMakers.push(() => makeCharacter(
  27297. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27298. {
  27299. front: {
  27300. height: math.unit(10, "feet"),
  27301. weight: math.unit(750, "lb"),
  27302. name: "Front",
  27303. image: {
  27304. source: "./media/characters/clove/front.svg",
  27305. extra: 2031 / 1860,
  27306. bottom: 47.8 / 2080
  27307. }
  27308. },
  27309. back: {
  27310. height: math.unit(10, "feet"),
  27311. weight: math.unit(750, "lb"),
  27312. name: "Back",
  27313. image: {
  27314. source: "./media/characters/clove/back.svg",
  27315. extra: 2025 / 1859,
  27316. bottom: 46 / 2071
  27317. }
  27318. },
  27319. },
  27320. [
  27321. {
  27322. name: "Normal",
  27323. height: math.unit(10, "feet"),
  27324. default: true
  27325. },
  27326. ]
  27327. ))
  27328. characterMakers.push(() => makeCharacter(
  27329. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27330. {
  27331. front: {
  27332. height: math.unit(4, "feet"),
  27333. weight: math.unit(50, "lb"),
  27334. name: "Front",
  27335. image: {
  27336. source: "./media/characters/alex-rabbit/front.svg",
  27337. extra: 507 / 458,
  27338. bottom: 18.5 / 527
  27339. }
  27340. },
  27341. back: {
  27342. height: math.unit(4, "feet"),
  27343. weight: math.unit(50, "lb"),
  27344. name: "Back",
  27345. image: {
  27346. source: "./media/characters/alex-rabbit/back.svg",
  27347. extra: 502 / 460,
  27348. bottom: 18.9 / 521
  27349. }
  27350. },
  27351. },
  27352. [
  27353. {
  27354. name: "Normal",
  27355. height: math.unit(4, "feet"),
  27356. default: true
  27357. },
  27358. ]
  27359. ))
  27360. characterMakers.push(() => makeCharacter(
  27361. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27362. {
  27363. front: {
  27364. height: math.unit(1 + 3 / 12, "feet"),
  27365. weight: math.unit(80, "lb"),
  27366. name: "Front",
  27367. image: {
  27368. source: "./media/characters/zander-rose/front.svg",
  27369. extra: 916 / 797,
  27370. bottom: 17 / 933
  27371. }
  27372. },
  27373. back: {
  27374. height: math.unit(1 + 3 / 12, "feet"),
  27375. weight: math.unit(80, "lb"),
  27376. name: "Back",
  27377. image: {
  27378. source: "./media/characters/zander-rose/back.svg",
  27379. extra: 903 / 779,
  27380. bottom: 31 / 934
  27381. }
  27382. },
  27383. },
  27384. [
  27385. {
  27386. name: "Normal",
  27387. height: math.unit(1 + 3 / 12, "feet"),
  27388. default: true
  27389. },
  27390. ]
  27391. ))
  27392. characterMakers.push(() => makeCharacter(
  27393. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27394. {
  27395. anthro: {
  27396. height: math.unit(6, "feet"),
  27397. weight: math.unit(150, "lb"),
  27398. name: "Anthro",
  27399. image: {
  27400. source: "./media/characters/razz/anthro.svg",
  27401. extra: 1437 / 1343,
  27402. bottom: 48 / 1485
  27403. }
  27404. },
  27405. feral: {
  27406. height: math.unit(6, "feet"),
  27407. weight: math.unit(150, "lb"),
  27408. name: "Feral",
  27409. image: {
  27410. source: "./media/characters/razz/feral.svg",
  27411. extra: 2569 / 1385,
  27412. bottom: 95 / 2664
  27413. }
  27414. },
  27415. },
  27416. [
  27417. {
  27418. name: "Normal",
  27419. height: math.unit(6, "feet"),
  27420. default: true
  27421. },
  27422. ]
  27423. ))
  27424. characterMakers.push(() => makeCharacter(
  27425. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27426. {
  27427. front: {
  27428. height: math.unit(9 + 4 / 12, "feet"),
  27429. weight: math.unit(500, "lb"),
  27430. name: "Front",
  27431. image: {
  27432. source: "./media/characters/morrigan/front.svg",
  27433. extra: 2707 / 2579,
  27434. bottom: 156 / 2863
  27435. }
  27436. },
  27437. },
  27438. [
  27439. {
  27440. name: "Normal",
  27441. height: math.unit(9 + 4 / 12, "feet"),
  27442. default: true
  27443. },
  27444. ]
  27445. ))
  27446. characterMakers.push(() => makeCharacter(
  27447. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27448. {
  27449. front: {
  27450. height: math.unit(5, "stories"),
  27451. weight: math.unit(4000, "lb"),
  27452. name: "Front",
  27453. image: {
  27454. source: "./media/characters/jenene/front.svg",
  27455. extra: 1780 / 1710,
  27456. bottom: 57 / 1837
  27457. }
  27458. },
  27459. },
  27460. [
  27461. {
  27462. name: "Normal",
  27463. height: math.unit(5, "stories"),
  27464. default: true
  27465. },
  27466. ]
  27467. ))
  27468. characterMakers.push(() => makeCharacter(
  27469. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27470. {
  27471. front: {
  27472. height: math.unit(6, "feet"),
  27473. weight: math.unit(150, "lb"),
  27474. name: "Front",
  27475. image: {
  27476. source: "./media/characters/vix-archaser/front.svg",
  27477. extra: 2767 / 2562,
  27478. bottom: 36 / 2803
  27479. }
  27480. },
  27481. },
  27482. [
  27483. {
  27484. name: "Micro",
  27485. height: math.unit(1, "foot")
  27486. },
  27487. {
  27488. name: "Normal",
  27489. height: math.unit(6 + 5 / 12, "feet")
  27490. },
  27491. {
  27492. name: "Minimacro",
  27493. height: math.unit(500, "feet")
  27494. },
  27495. {
  27496. name: "Macro",
  27497. height: math.unit(4, "miles")
  27498. },
  27499. {
  27500. name: "Megamacro",
  27501. height: math.unit(250, "miles"),
  27502. default: true
  27503. },
  27504. {
  27505. name: "Gigamacro",
  27506. height: math.unit(1, "universe")
  27507. },
  27508. {
  27509. name: "Endgame",
  27510. height: math.unit(100, "multiverses")
  27511. }
  27512. ]
  27513. ))
  27514. characterMakers.push(() => makeCharacter(
  27515. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27516. {
  27517. taurSfw: {
  27518. height: math.unit(10, "meters"),
  27519. weight: math.unit(17500, "kg"),
  27520. name: "Taur",
  27521. image: {
  27522. source: "./media/characters/faey/taur-sfw.svg",
  27523. extra: 1200 / 968,
  27524. bottom: 41 / 1241
  27525. }
  27526. },
  27527. chestmaw: {
  27528. height: math.unit(2.01, "meters"),
  27529. name: "Chestmaw",
  27530. image: {
  27531. source: "./media/characters/faey/chestmaw.svg"
  27532. }
  27533. },
  27534. foot: {
  27535. height: math.unit(2.43, "meters"),
  27536. name: "Foot",
  27537. image: {
  27538. source: "./media/characters/faey/foot.svg"
  27539. }
  27540. },
  27541. jaws: {
  27542. height: math.unit(1.66, "meters"),
  27543. name: "Jaws",
  27544. image: {
  27545. source: "./media/characters/faey/jaws.svg"
  27546. }
  27547. },
  27548. tongues: {
  27549. height: math.unit(2.01, "meters"),
  27550. name: "Tongues",
  27551. image: {
  27552. source: "./media/characters/faey/tongues.svg"
  27553. }
  27554. },
  27555. },
  27556. [
  27557. {
  27558. name: "Small",
  27559. height: math.unit(10, "meters"),
  27560. default: true
  27561. },
  27562. {
  27563. name: "Big",
  27564. height: math.unit(500000, "km")
  27565. },
  27566. ]
  27567. ))
  27568. characterMakers.push(() => makeCharacter(
  27569. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27570. {
  27571. front: {
  27572. height: math.unit(7, "feet"),
  27573. weight: math.unit(275, "lb"),
  27574. name: "Front",
  27575. image: {
  27576. source: "./media/characters/roku/front.svg",
  27577. extra: 903 / 878,
  27578. bottom: 37 / 940
  27579. }
  27580. },
  27581. },
  27582. [
  27583. {
  27584. name: "Normal",
  27585. height: math.unit(7, "feet"),
  27586. default: true
  27587. },
  27588. {
  27589. name: "Macro",
  27590. height: math.unit(500, "feet")
  27591. },
  27592. {
  27593. name: "Megamacro",
  27594. height: math.unit(200, "miles")
  27595. },
  27596. ]
  27597. ))
  27598. characterMakers.push(() => makeCharacter(
  27599. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27600. {
  27601. front: {
  27602. height: math.unit(6 + 2 / 12, "feet"),
  27603. weight: math.unit(150, "lb"),
  27604. name: "Front",
  27605. image: {
  27606. source: "./media/characters/lira/front.svg",
  27607. extra: 1727 / 1605,
  27608. bottom: 26 / 1753
  27609. }
  27610. },
  27611. back: {
  27612. height: math.unit(6 + 2 / 12, "feet"),
  27613. weight: math.unit(150, "lb"),
  27614. name: "Back",
  27615. image: {
  27616. source: "./media/characters/lira/back.svg",
  27617. extra: 1713/1621,
  27618. bottom: 20/1733
  27619. }
  27620. },
  27621. hand: {
  27622. height: math.unit(0.75, "feet"),
  27623. name: "Hand",
  27624. image: {
  27625. source: "./media/characters/lira/hand.svg"
  27626. }
  27627. },
  27628. maw: {
  27629. height: math.unit(0.65, "feet"),
  27630. name: "Maw",
  27631. image: {
  27632. source: "./media/characters/lira/maw.svg"
  27633. }
  27634. },
  27635. pawDigi: {
  27636. height: math.unit(1.6, "feet"),
  27637. name: "Paw Digi",
  27638. image: {
  27639. source: "./media/characters/lira/paw-digi.svg"
  27640. }
  27641. },
  27642. pawPlanti: {
  27643. height: math.unit(1.4, "feet"),
  27644. name: "Paw Planti",
  27645. image: {
  27646. source: "./media/characters/lira/paw-planti.svg"
  27647. }
  27648. },
  27649. },
  27650. [
  27651. {
  27652. name: "Normal",
  27653. height: math.unit(6 + 2 / 12, "feet"),
  27654. default: true
  27655. },
  27656. {
  27657. name: "Macro",
  27658. height: math.unit(100, "feet")
  27659. },
  27660. {
  27661. name: "Macro²",
  27662. height: math.unit(1600, "feet")
  27663. },
  27664. {
  27665. name: "Planetary",
  27666. height: math.unit(20, "earths")
  27667. },
  27668. ]
  27669. ))
  27670. characterMakers.push(() => makeCharacter(
  27671. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27672. {
  27673. front: {
  27674. height: math.unit(6, "feet"),
  27675. weight: math.unit(150, "lb"),
  27676. name: "Front",
  27677. image: {
  27678. source: "./media/characters/hadjet/front.svg",
  27679. extra: 1480 / 1346,
  27680. bottom: 26 / 1506
  27681. }
  27682. },
  27683. frontNsfw: {
  27684. height: math.unit(6, "feet"),
  27685. weight: math.unit(150, "lb"),
  27686. name: "Front (NSFW)",
  27687. image: {
  27688. source: "./media/characters/hadjet/front-nsfw.svg",
  27689. extra: 1440 / 1358,
  27690. bottom: 52 / 1492
  27691. }
  27692. },
  27693. },
  27694. [
  27695. {
  27696. name: "Macro",
  27697. height: math.unit(10, "stories"),
  27698. default: true
  27699. },
  27700. {
  27701. name: "Megamacro",
  27702. height: math.unit(1.5, "miles")
  27703. },
  27704. {
  27705. name: "Megamacro+",
  27706. height: math.unit(5, "miles")
  27707. },
  27708. ]
  27709. ))
  27710. characterMakers.push(() => makeCharacter(
  27711. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27712. {
  27713. side: {
  27714. height: math.unit(106, "feet"),
  27715. weight: math.unit(500, "tonnes"),
  27716. name: "Side",
  27717. image: {
  27718. source: "./media/characters/kodran/side.svg",
  27719. extra: 553 / 480,
  27720. bottom: 33 / 586
  27721. }
  27722. },
  27723. front: {
  27724. height: math.unit(132, "feet"),
  27725. weight: math.unit(500, "tonnes"),
  27726. name: "Front",
  27727. image: {
  27728. source: "./media/characters/kodran/front.svg",
  27729. extra: 667 / 643,
  27730. bottom: 42 / 709
  27731. }
  27732. },
  27733. flying: {
  27734. height: math.unit(350, "feet"),
  27735. weight: math.unit(500, "tonnes"),
  27736. name: "Flying",
  27737. image: {
  27738. source: "./media/characters/kodran/flying.svg"
  27739. }
  27740. },
  27741. foot: {
  27742. height: math.unit(33, "feet"),
  27743. name: "Foot",
  27744. image: {
  27745. source: "./media/characters/kodran/foot.svg"
  27746. }
  27747. },
  27748. footFront: {
  27749. height: math.unit(19, "feet"),
  27750. name: "Foot (Front)",
  27751. image: {
  27752. source: "./media/characters/kodran/foot-front.svg",
  27753. extra: 261 / 261,
  27754. bottom: 91 / 352
  27755. }
  27756. },
  27757. headFront: {
  27758. height: math.unit(53, "feet"),
  27759. name: "Head (Front)",
  27760. image: {
  27761. source: "./media/characters/kodran/head-front.svg"
  27762. }
  27763. },
  27764. headSide: {
  27765. height: math.unit(65, "feet"),
  27766. name: "Head (Side)",
  27767. image: {
  27768. source: "./media/characters/kodran/head-side.svg"
  27769. }
  27770. },
  27771. throat: {
  27772. height: math.unit(79, "feet"),
  27773. name: "Throat",
  27774. image: {
  27775. source: "./media/characters/kodran/throat.svg"
  27776. }
  27777. },
  27778. },
  27779. [
  27780. {
  27781. name: "Large",
  27782. height: math.unit(106, "feet"),
  27783. default: true
  27784. },
  27785. ]
  27786. ))
  27787. characterMakers.push(() => makeCharacter(
  27788. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27789. {
  27790. side: {
  27791. height: math.unit(11, "feet"),
  27792. weight: math.unit(150, "lb"),
  27793. name: "Side",
  27794. image: {
  27795. source: "./media/characters/pyxaron/side.svg",
  27796. extra: 305 / 195,
  27797. bottom: 17 / 322
  27798. }
  27799. },
  27800. },
  27801. [
  27802. {
  27803. name: "Normal",
  27804. height: math.unit(11, "feet"),
  27805. default: true
  27806. },
  27807. ]
  27808. ))
  27809. characterMakers.push(() => makeCharacter(
  27810. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27811. {
  27812. front: {
  27813. height: math.unit(6, "feet"),
  27814. weight: math.unit(150, "lb"),
  27815. name: "Front",
  27816. image: {
  27817. source: "./media/characters/meep/front.svg",
  27818. extra: 88 / 80,
  27819. bottom: 6 / 94
  27820. }
  27821. },
  27822. },
  27823. [
  27824. {
  27825. name: "Fun Sized",
  27826. height: math.unit(2, "inches"),
  27827. default: true
  27828. },
  27829. {
  27830. name: "Friend Sized",
  27831. height: math.unit(8, "inches")
  27832. },
  27833. ]
  27834. ))
  27835. characterMakers.push(() => makeCharacter(
  27836. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27837. {
  27838. front: {
  27839. height: math.unit(15, "feet"),
  27840. weight: math.unit(2500, "lb"),
  27841. name: "Front",
  27842. image: {
  27843. source: "./media/characters/holly-rabbit/front.svg",
  27844. extra: 1433 / 1233,
  27845. bottom: 125 / 1558
  27846. }
  27847. },
  27848. dick: {
  27849. height: math.unit(4.6, "feet"),
  27850. name: "Dick",
  27851. image: {
  27852. source: "./media/characters/holly-rabbit/dick.svg"
  27853. }
  27854. },
  27855. },
  27856. [
  27857. {
  27858. name: "Normal",
  27859. height: math.unit(15, "feet"),
  27860. default: true
  27861. },
  27862. {
  27863. name: "Macro",
  27864. height: math.unit(250, "feet")
  27865. },
  27866. {
  27867. name: "Macro+",
  27868. height: math.unit(2500, "feet")
  27869. },
  27870. ]
  27871. ))
  27872. characterMakers.push(() => makeCharacter(
  27873. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27874. {
  27875. front: {
  27876. height: math.unit(3.02, "meters"),
  27877. weight: math.unit(500, "kg"),
  27878. name: "Front",
  27879. image: {
  27880. source: "./media/characters/drena/front.svg",
  27881. extra: 282 / 243,
  27882. bottom: 8 / 290
  27883. }
  27884. },
  27885. side: {
  27886. height: math.unit(3.02, "meters"),
  27887. weight: math.unit(500, "kg"),
  27888. name: "Side",
  27889. image: {
  27890. source: "./media/characters/drena/side.svg",
  27891. extra: 280 / 245,
  27892. bottom: 10 / 290
  27893. }
  27894. },
  27895. back: {
  27896. height: math.unit(3.02, "meters"),
  27897. weight: math.unit(500, "kg"),
  27898. name: "Back",
  27899. image: {
  27900. source: "./media/characters/drena/back.svg",
  27901. extra: 278 / 243,
  27902. bottom: 2 / 280
  27903. }
  27904. },
  27905. foot: {
  27906. height: math.unit(0.75, "meters"),
  27907. name: "Foot",
  27908. image: {
  27909. source: "./media/characters/drena/foot.svg"
  27910. }
  27911. },
  27912. maw: {
  27913. height: math.unit(0.82, "meters"),
  27914. name: "Maw",
  27915. image: {
  27916. source: "./media/characters/drena/maw.svg"
  27917. }
  27918. },
  27919. rump: {
  27920. height: math.unit(0.93, "meters"),
  27921. name: "Rump",
  27922. image: {
  27923. source: "./media/characters/drena/rump.svg"
  27924. }
  27925. },
  27926. },
  27927. [
  27928. {
  27929. name: "Normal",
  27930. height: math.unit(3.02, "meters"),
  27931. default: true
  27932. },
  27933. ]
  27934. ))
  27935. characterMakers.push(() => makeCharacter(
  27936. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27937. {
  27938. front: {
  27939. height: math.unit(6 + 4 / 12, "feet"),
  27940. weight: math.unit(250, "lb"),
  27941. name: "Front",
  27942. image: {
  27943. source: "./media/characters/remmyzilla/front.svg",
  27944. extra: 4033 / 3588,
  27945. bottom: 123 / 4156
  27946. }
  27947. },
  27948. back: {
  27949. height: math.unit(6 + 4 / 12, "feet"),
  27950. weight: math.unit(250, "lb"),
  27951. name: "Back",
  27952. image: {
  27953. source: "./media/characters/remmyzilla/back.svg",
  27954. extra: 2687 / 2555,
  27955. bottom: 48 / 2735
  27956. }
  27957. },
  27958. frontFancy: {
  27959. height: math.unit(6 + 4 / 12, "feet"),
  27960. weight: math.unit(250, "lb"),
  27961. name: "Front (Fancy)",
  27962. image: {
  27963. source: "./media/characters/remmyzilla/front-fancy.svg",
  27964. extra: 4119 / 3419,
  27965. bottom: 237 / 4356
  27966. }
  27967. },
  27968. paw: {
  27969. height: math.unit(1.73, "feet"),
  27970. name: "Paw",
  27971. image: {
  27972. source: "./media/characters/remmyzilla/paw.svg"
  27973. }
  27974. },
  27975. maw: {
  27976. height: math.unit(1.73, "feet"),
  27977. name: "Maw",
  27978. image: {
  27979. source: "./media/characters/remmyzilla/maw.svg"
  27980. }
  27981. },
  27982. },
  27983. [
  27984. {
  27985. name: "Normal",
  27986. height: math.unit(6 + 4 / 12, "feet")
  27987. },
  27988. {
  27989. name: "Minimacro",
  27990. height: math.unit(12 + 8 / 12, "feet")
  27991. },
  27992. {
  27993. name: "Normal",
  27994. height: math.unit(640, "feet"),
  27995. default: true
  27996. },
  27997. {
  27998. name: "Megamacro",
  27999. height: math.unit(6400, "feet")
  28000. },
  28001. {
  28002. name: "Gigamacro",
  28003. height: math.unit(64000, "miles")
  28004. },
  28005. ]
  28006. ))
  28007. characterMakers.push(() => makeCharacter(
  28008. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28009. {
  28010. front: {
  28011. height: math.unit(2.5, "meters"),
  28012. weight: math.unit(300, "lb"),
  28013. name: "Front",
  28014. image: {
  28015. source: "./media/characters/lawrence/front.svg",
  28016. extra: 357 / 335,
  28017. bottom: 30 / 387
  28018. }
  28019. },
  28020. back: {
  28021. height: math.unit(2.5, "meters"),
  28022. weight: math.unit(300, "lb"),
  28023. name: "Back",
  28024. image: {
  28025. source: "./media/characters/lawrence/back.svg",
  28026. extra: 357 / 338,
  28027. bottom: 16 / 373
  28028. }
  28029. },
  28030. head: {
  28031. height: math.unit(0.9, "meter"),
  28032. name: "Head",
  28033. image: {
  28034. source: "./media/characters/lawrence/head.svg"
  28035. }
  28036. },
  28037. maw: {
  28038. height: math.unit(0.7, "meter"),
  28039. name: "Maw",
  28040. image: {
  28041. source: "./media/characters/lawrence/maw.svg"
  28042. }
  28043. },
  28044. footBottom: {
  28045. height: math.unit(0.5, "meter"),
  28046. name: "Foot (Bottom)",
  28047. image: {
  28048. source: "./media/characters/lawrence/foot-bottom.svg"
  28049. }
  28050. },
  28051. footTop: {
  28052. height: math.unit(0.5, "meter"),
  28053. name: "Foot (Top)",
  28054. image: {
  28055. source: "./media/characters/lawrence/foot-top.svg"
  28056. }
  28057. },
  28058. },
  28059. [
  28060. {
  28061. name: "Normal",
  28062. height: math.unit(2.5, "meters"),
  28063. default: true
  28064. },
  28065. {
  28066. name: "Macro",
  28067. height: math.unit(95, "meters")
  28068. },
  28069. {
  28070. name: "Megamacro",
  28071. height: math.unit(150, "km")
  28072. },
  28073. ]
  28074. ))
  28075. characterMakers.push(() => makeCharacter(
  28076. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28077. {
  28078. front: {
  28079. height: math.unit(4.2, "meters"),
  28080. name: "Front",
  28081. image: {
  28082. source: "./media/characters/sydney/front.svg",
  28083. extra: 1323 / 1277,
  28084. bottom: 111 / 1434
  28085. }
  28086. },
  28087. },
  28088. [
  28089. {
  28090. name: "Normal",
  28091. height: math.unit(4.2, "meters"),
  28092. default: true
  28093. },
  28094. ]
  28095. ))
  28096. characterMakers.push(() => makeCharacter(
  28097. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28098. {
  28099. back: {
  28100. height: math.unit(201, "feet"),
  28101. name: "Back",
  28102. image: {
  28103. source: "./media/characters/jessica/back.svg",
  28104. extra: 273 / 259,
  28105. bottom: 7 / 280
  28106. }
  28107. },
  28108. },
  28109. [
  28110. {
  28111. name: "Normal",
  28112. height: math.unit(201, "feet"),
  28113. default: true
  28114. },
  28115. {
  28116. name: "Megamacro",
  28117. height: math.unit(8, "miles")
  28118. },
  28119. ]
  28120. ))
  28121. characterMakers.push(() => makeCharacter(
  28122. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28123. {
  28124. side: {
  28125. height: math.unit(320, "cm"),
  28126. name: "Side",
  28127. image: {
  28128. source: "./media/characters/victoria/side.svg",
  28129. extra: 778 / 346,
  28130. bottom: 56 / 834
  28131. }
  28132. },
  28133. maw: {
  28134. height: math.unit(5.9, "feet"),
  28135. name: "Maw",
  28136. image: {
  28137. source: "./media/characters/victoria/maw.svg"
  28138. }
  28139. },
  28140. },
  28141. [
  28142. {
  28143. name: "Normal",
  28144. height: math.unit(320, "cm"),
  28145. default: true
  28146. },
  28147. ]
  28148. ))
  28149. characterMakers.push(() => makeCharacter(
  28150. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28151. {
  28152. front: {
  28153. height: math.unit(5 + 6 / 12, "feet"),
  28154. name: "Front",
  28155. image: {
  28156. source: "./media/characters/cat/front.svg",
  28157. extra: 1374 / 1257,
  28158. bottom: 59 / 1433
  28159. }
  28160. },
  28161. back: {
  28162. height: math.unit(5 + 6 / 12, "feet"),
  28163. name: "Back",
  28164. image: {
  28165. source: "./media/characters/cat/back.svg",
  28166. extra: 1337 / 1226,
  28167. bottom: 34 / 1371
  28168. }
  28169. },
  28170. taur: {
  28171. height: math.unit(7, "feet"),
  28172. name: "Taur",
  28173. image: {
  28174. source: "./media/characters/cat/taur.svg",
  28175. extra: 1345 / 1231,
  28176. bottom: 66 / 1411
  28177. }
  28178. },
  28179. lucario: {
  28180. height: math.unit(4, "feet"),
  28181. name: "Lucario",
  28182. image: {
  28183. source: "./media/characters/cat/lucario.svg",
  28184. extra: 1470 / 1318,
  28185. bottom: 65 / 1535
  28186. }
  28187. },
  28188. megaLucario: {
  28189. height: math.unit(4, "feet"),
  28190. name: "Mega Lucario",
  28191. image: {
  28192. source: "./media/characters/cat/mega-lucario.svg",
  28193. extra: 1515 / 1319,
  28194. bottom: 63 / 1578
  28195. }
  28196. },
  28197. nickit: {
  28198. height: math.unit(2, "feet"),
  28199. name: "Nickit",
  28200. image: {
  28201. source: "./media/characters/cat/nickit.svg",
  28202. extra: 1980 / 1585,
  28203. bottom: 102 / 2082
  28204. }
  28205. },
  28206. lopunnyFront: {
  28207. height: math.unit(5, "feet"),
  28208. name: "Lopunny (Front)",
  28209. image: {
  28210. source: "./media/characters/cat/lopunny-front.svg",
  28211. extra: 1782 / 1469,
  28212. bottom: 38 / 1820
  28213. }
  28214. },
  28215. lopunnyBack: {
  28216. height: math.unit(5, "feet"),
  28217. name: "Lopunny (Back)",
  28218. image: {
  28219. source: "./media/characters/cat/lopunny-back.svg",
  28220. extra: 1660 / 1490,
  28221. bottom: 25 / 1685
  28222. }
  28223. },
  28224. },
  28225. [
  28226. {
  28227. name: "Really small",
  28228. height: math.unit(1, "nm")
  28229. },
  28230. {
  28231. name: "Micro",
  28232. height: math.unit(5, "inches")
  28233. },
  28234. {
  28235. name: "Normal",
  28236. height: math.unit(5 + 6 / 12, "feet"),
  28237. default: true
  28238. },
  28239. {
  28240. name: "Macro",
  28241. height: math.unit(50, "feet")
  28242. },
  28243. {
  28244. name: "Macro+",
  28245. height: math.unit(150, "feet")
  28246. },
  28247. {
  28248. name: "Megamacro",
  28249. height: math.unit(100, "miles")
  28250. },
  28251. ]
  28252. ))
  28253. characterMakers.push(() => makeCharacter(
  28254. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28255. {
  28256. front: {
  28257. height: math.unit(63.4, "meters"),
  28258. weight: math.unit(3.28349e+6, "kilograms"),
  28259. name: "Front",
  28260. image: {
  28261. source: "./media/characters/kirina-violet/front.svg",
  28262. extra: 2812 / 2725,
  28263. bottom: 0 / 2812
  28264. }
  28265. },
  28266. back: {
  28267. height: math.unit(63.4, "meters"),
  28268. weight: math.unit(3.28349e+6, "kilograms"),
  28269. name: "Back",
  28270. image: {
  28271. source: "./media/characters/kirina-violet/back.svg",
  28272. extra: 2812 / 2725,
  28273. bottom: 0 / 2812
  28274. }
  28275. },
  28276. mouth: {
  28277. height: math.unit(4.35, "meters"),
  28278. name: "Mouth",
  28279. image: {
  28280. source: "./media/characters/kirina-violet/mouth.svg"
  28281. }
  28282. },
  28283. paw: {
  28284. height: math.unit(5.6, "meters"),
  28285. name: "Paw",
  28286. image: {
  28287. source: "./media/characters/kirina-violet/paw.svg"
  28288. }
  28289. },
  28290. tail: {
  28291. height: math.unit(18, "meters"),
  28292. name: "Tail",
  28293. image: {
  28294. source: "./media/characters/kirina-violet/tail.svg"
  28295. }
  28296. },
  28297. },
  28298. [
  28299. {
  28300. name: "Macro",
  28301. height: math.unit(63.4, "meters"),
  28302. default: true
  28303. },
  28304. ]
  28305. ))
  28306. characterMakers.push(() => makeCharacter(
  28307. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28308. {
  28309. front: {
  28310. height: math.unit(60, "feet"),
  28311. name: "Front",
  28312. image: {
  28313. source: "./media/characters/cat-gigachu/front.svg",
  28314. extra: 1024 / 780,
  28315. bottom: 23 / 1047
  28316. }
  28317. },
  28318. back: {
  28319. height: math.unit(60, "feet"),
  28320. name: "Back",
  28321. image: {
  28322. source: "./media/characters/cat-gigachu/back.svg",
  28323. extra: 1024 / 780,
  28324. bottom: 23 / 1047
  28325. }
  28326. },
  28327. },
  28328. [
  28329. {
  28330. name: "Dynamax",
  28331. height: math.unit(60, "feet"),
  28332. default: true
  28333. },
  28334. ]
  28335. ))
  28336. characterMakers.push(() => makeCharacter(
  28337. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28338. {
  28339. front: {
  28340. height: math.unit(6, "feet"),
  28341. weight: math.unit(150, "lb"),
  28342. name: "Front",
  28343. image: {
  28344. source: "./media/characters/sfaiyan/front.svg",
  28345. extra: 999 / 978,
  28346. bottom: 5 / 1004
  28347. }
  28348. },
  28349. },
  28350. [
  28351. {
  28352. name: "Normal",
  28353. height: math.unit(1.82, "meters")
  28354. },
  28355. {
  28356. name: "Giant",
  28357. height: math.unit(2.27, "km"),
  28358. default: true
  28359. },
  28360. ]
  28361. ))
  28362. characterMakers.push(() => makeCharacter(
  28363. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28364. {
  28365. front: {
  28366. height: math.unit(179, "cm"),
  28367. weight: math.unit(100, "kg"),
  28368. name: "Front",
  28369. image: {
  28370. source: "./media/characters/raunehkeli/front.svg",
  28371. extra: 1934 / 1926,
  28372. bottom: 0 / 1934
  28373. }
  28374. },
  28375. },
  28376. [
  28377. {
  28378. name: "Normal",
  28379. height: math.unit(179, "cm")
  28380. },
  28381. {
  28382. name: "Maximum",
  28383. height: math.unit(575, "meters"),
  28384. default: true
  28385. },
  28386. ]
  28387. ))
  28388. characterMakers.push(() => makeCharacter(
  28389. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28390. {
  28391. front: {
  28392. height: math.unit(6, "feet"),
  28393. weight: math.unit(150, "lb"),
  28394. name: "Front",
  28395. image: {
  28396. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28397. extra: 2625 / 2518,
  28398. bottom: 60 / 2685
  28399. }
  28400. },
  28401. },
  28402. [
  28403. {
  28404. name: "Normal",
  28405. height: math.unit(6 + 2 / 12, "feet")
  28406. },
  28407. {
  28408. name: "Macro",
  28409. height: math.unit(1180, "feet"),
  28410. default: true
  28411. },
  28412. ]
  28413. ))
  28414. characterMakers.push(() => makeCharacter(
  28415. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28416. {
  28417. front: {
  28418. height: math.unit(5 + 6 / 12, "feet"),
  28419. weight: math.unit(108, "lb"),
  28420. name: "Front",
  28421. image: {
  28422. source: "./media/characters/lilith-zott/front.svg",
  28423. extra: 2510 / 2238,
  28424. bottom: 100 / 2610
  28425. }
  28426. },
  28427. frontDressed: {
  28428. height: math.unit(5 + 6 / 12, "feet"),
  28429. weight: math.unit(108, "lb"),
  28430. name: "Front (Dressed)",
  28431. image: {
  28432. source: "./media/characters/lilith-zott/front-dressed.svg",
  28433. extra: 2510 / 2238,
  28434. bottom: 100 / 2610
  28435. }
  28436. },
  28437. },
  28438. [
  28439. {
  28440. name: "Normal",
  28441. height: math.unit(5 + 6 / 12, "feet")
  28442. },
  28443. {
  28444. name: "Macro",
  28445. height: math.unit(1030, "feet"),
  28446. default: true
  28447. },
  28448. ]
  28449. ))
  28450. characterMakers.push(() => makeCharacter(
  28451. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28452. {
  28453. front: {
  28454. height: math.unit(6, "feet"),
  28455. weight: math.unit(150, "lb"),
  28456. name: "Front",
  28457. image: {
  28458. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28459. extra: 2567 / 2435,
  28460. bottom: 39 / 2606
  28461. }
  28462. },
  28463. frontSuper: {
  28464. height: math.unit(6, "feet"),
  28465. name: "Front (Super)",
  28466. image: {
  28467. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28468. extra: 2567 / 2435,
  28469. bottom: 39 / 2606
  28470. }
  28471. },
  28472. },
  28473. [
  28474. {
  28475. name: "Normal",
  28476. height: math.unit(5 + 10 / 12, "feet")
  28477. },
  28478. {
  28479. name: "Macro",
  28480. height: math.unit(1100, "feet"),
  28481. default: true
  28482. },
  28483. ]
  28484. ))
  28485. characterMakers.push(() => makeCharacter(
  28486. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28487. {
  28488. front: {
  28489. height: math.unit(100, "miles"),
  28490. name: "Front",
  28491. image: {
  28492. source: "./media/characters/sona/front.svg",
  28493. extra: 2433 / 2201,
  28494. bottom: 53 / 2486
  28495. }
  28496. },
  28497. foot: {
  28498. height: math.unit(16.1, "miles"),
  28499. name: "Foot",
  28500. image: {
  28501. source: "./media/characters/sona/foot.svg"
  28502. }
  28503. },
  28504. },
  28505. [
  28506. {
  28507. name: "Macro",
  28508. height: math.unit(100, "miles"),
  28509. default: true
  28510. },
  28511. ]
  28512. ))
  28513. characterMakers.push(() => makeCharacter(
  28514. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28515. {
  28516. front: {
  28517. height: math.unit(6, "feet"),
  28518. weight: math.unit(150, "lb"),
  28519. name: "Front",
  28520. image: {
  28521. source: "./media/characters/bailey/front.svg",
  28522. extra: 1778 / 1724,
  28523. bottom: 30 / 1808
  28524. }
  28525. },
  28526. },
  28527. [
  28528. {
  28529. name: "Micro",
  28530. height: math.unit(4, "inches")
  28531. },
  28532. {
  28533. name: "Normal",
  28534. height: math.unit(5 + 5 / 12, "feet"),
  28535. default: true
  28536. },
  28537. {
  28538. name: "Macro",
  28539. height: math.unit(250, "feet")
  28540. },
  28541. {
  28542. name: "Megamacro",
  28543. height: math.unit(100, "miles")
  28544. },
  28545. ]
  28546. ))
  28547. characterMakers.push(() => makeCharacter(
  28548. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28549. {
  28550. front: {
  28551. height: math.unit(5 + 2 / 12, "feet"),
  28552. weight: math.unit(120, "lb"),
  28553. name: "Front",
  28554. image: {
  28555. source: "./media/characters/snaps/front.svg",
  28556. extra: 2370 / 2177,
  28557. bottom: 48 / 2418
  28558. }
  28559. },
  28560. back: {
  28561. height: math.unit(5 + 2 / 12, "feet"),
  28562. weight: math.unit(120, "lb"),
  28563. name: "Back",
  28564. image: {
  28565. source: "./media/characters/snaps/back.svg",
  28566. extra: 2408 / 2258,
  28567. bottom: 15 / 2423
  28568. }
  28569. },
  28570. },
  28571. [
  28572. {
  28573. name: "Micro",
  28574. height: math.unit(9, "inches")
  28575. },
  28576. {
  28577. name: "Normal",
  28578. height: math.unit(5 + 2 / 12, "feet"),
  28579. default: true
  28580. },
  28581. {
  28582. name: "Mini Macro",
  28583. height: math.unit(10, "feet")
  28584. },
  28585. ]
  28586. ))
  28587. characterMakers.push(() => makeCharacter(
  28588. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28589. {
  28590. front: {
  28591. height: math.unit(1.8, "meters"),
  28592. weight: math.unit(85, "kg"),
  28593. name: "Front",
  28594. image: {
  28595. source: "./media/characters/azteck/front.svg",
  28596. extra: 2815 / 2625,
  28597. bottom: 89 / 2904
  28598. }
  28599. },
  28600. back: {
  28601. height: math.unit(1.8, "meters"),
  28602. weight: math.unit(85, "kg"),
  28603. name: "Back",
  28604. image: {
  28605. source: "./media/characters/azteck/back.svg",
  28606. extra: 2856 / 2648,
  28607. bottom: 85 / 2941
  28608. }
  28609. },
  28610. frontDressed: {
  28611. height: math.unit(1.8, "meters"),
  28612. weight: math.unit(85, "kg"),
  28613. name: "Front (Dressed)",
  28614. image: {
  28615. source: "./media/characters/azteck/front-dressed.svg",
  28616. extra: 2147 / 2003,
  28617. bottom: 68 / 2215
  28618. }
  28619. },
  28620. head: {
  28621. height: math.unit(0.47, "meters"),
  28622. weight: math.unit(85, "kg"),
  28623. name: "Head",
  28624. image: {
  28625. source: "./media/characters/azteck/head.svg"
  28626. }
  28627. },
  28628. },
  28629. [
  28630. {
  28631. name: "Bite sized",
  28632. height: math.unit(16, "cm")
  28633. },
  28634. {
  28635. name: "Normal",
  28636. height: math.unit(1.8, "meters"),
  28637. default: true
  28638. },
  28639. ]
  28640. ))
  28641. characterMakers.push(() => makeCharacter(
  28642. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28643. {
  28644. front: {
  28645. height: math.unit(6, "feet"),
  28646. weight: math.unit(150, "lb"),
  28647. name: "Front",
  28648. image: {
  28649. source: "./media/characters/pidge/front.svg",
  28650. extra: 620 / 588,
  28651. bottom: 9 / 629
  28652. }
  28653. },
  28654. back: {
  28655. height: math.unit(6, "feet"),
  28656. weight: math.unit(150, "lb"),
  28657. name: "Back",
  28658. image: {
  28659. source: "./media/characters/pidge/back.svg",
  28660. extra: 620 / 588,
  28661. bottom: 9 / 629
  28662. }
  28663. },
  28664. },
  28665. [
  28666. {
  28667. name: "Macro",
  28668. height: math.unit(1, "mile"),
  28669. default: true
  28670. },
  28671. ]
  28672. ))
  28673. characterMakers.push(() => makeCharacter(
  28674. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28675. {
  28676. front: {
  28677. height: math.unit(6, "feet"),
  28678. weight: math.unit(150, "lb"),
  28679. name: "Front",
  28680. image: {
  28681. source: "./media/characters/en/front.svg",
  28682. extra: 1697 / 1563,
  28683. bottom: 103 / 1800
  28684. }
  28685. },
  28686. back: {
  28687. height: math.unit(6, "feet"),
  28688. weight: math.unit(150, "lb"),
  28689. name: "Back",
  28690. image: {
  28691. source: "./media/characters/en/back.svg",
  28692. extra: 1700 / 1570,
  28693. bottom: 51 / 1751
  28694. }
  28695. },
  28696. frontDressed: {
  28697. height: math.unit(6, "feet"),
  28698. weight: math.unit(150, "lb"),
  28699. name: "Front (Dressed)",
  28700. image: {
  28701. source: "./media/characters/en/front-dressed.svg",
  28702. extra: 1697 / 1563,
  28703. bottom: 103 / 1800
  28704. }
  28705. },
  28706. backDressed: {
  28707. height: math.unit(6, "feet"),
  28708. weight: math.unit(150, "lb"),
  28709. name: "Back (Dressed)",
  28710. image: {
  28711. source: "./media/characters/en/back-dressed.svg",
  28712. extra: 1700 / 1570,
  28713. bottom: 51 / 1751
  28714. }
  28715. },
  28716. },
  28717. [
  28718. {
  28719. name: "Macro",
  28720. height: math.unit(210, "feet"),
  28721. default: true
  28722. },
  28723. ]
  28724. ))
  28725. characterMakers.push(() => makeCharacter(
  28726. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28727. {
  28728. front: {
  28729. height: math.unit(6, "feet"),
  28730. weight: math.unit(150, "lb"),
  28731. name: "Front",
  28732. image: {
  28733. source: "./media/characters/haze-orris/front.svg",
  28734. extra: 3975 / 3525,
  28735. bottom: 137 / 4112
  28736. }
  28737. },
  28738. },
  28739. [
  28740. {
  28741. name: "Micro",
  28742. height: math.unit(150, "mm"),
  28743. default: true
  28744. },
  28745. ]
  28746. ))
  28747. characterMakers.push(() => makeCharacter(
  28748. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28749. {
  28750. front: {
  28751. height: math.unit(6, "feet"),
  28752. weight: math.unit(150, "lb"),
  28753. name: "Front",
  28754. image: {
  28755. source: "./media/characters/casselene-yaro/front.svg",
  28756. extra: 4721 / 4541,
  28757. bottom: 82 / 4803
  28758. }
  28759. },
  28760. back: {
  28761. height: math.unit(6, "feet"),
  28762. weight: math.unit(150, "lb"),
  28763. name: "Back",
  28764. image: {
  28765. source: "./media/characters/casselene-yaro/back.svg",
  28766. extra: 4569 / 4377,
  28767. bottom: 69 / 4638
  28768. }
  28769. },
  28770. frontDressed: {
  28771. height: math.unit(6, "feet"),
  28772. weight: math.unit(150, "lb"),
  28773. name: "Front-dressed",
  28774. image: {
  28775. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28776. extra: 4721 / 4541,
  28777. bottom: 82 / 4803
  28778. }
  28779. },
  28780. },
  28781. [
  28782. {
  28783. name: "Macro",
  28784. height: math.unit(190, "feet"),
  28785. default: true
  28786. },
  28787. ]
  28788. ))
  28789. characterMakers.push(() => makeCharacter(
  28790. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28791. {
  28792. front: {
  28793. height: math.unit(6, "feet"),
  28794. weight: math.unit(150, "lb"),
  28795. name: "Front",
  28796. image: {
  28797. source: "./media/characters/myra-rue-delore/front.svg",
  28798. extra: 1340 / 1308,
  28799. bottom: 67 / 1407
  28800. }
  28801. },
  28802. back: {
  28803. height: math.unit(6, "feet"),
  28804. weight: math.unit(150, "lb"),
  28805. name: "Back",
  28806. image: {
  28807. source: "./media/characters/myra-rue-delore/back.svg",
  28808. extra: 1341 / 1310,
  28809. bottom: 40 / 1381
  28810. }
  28811. },
  28812. frontDressed: {
  28813. height: math.unit(6, "feet"),
  28814. weight: math.unit(150, "lb"),
  28815. name: "Front (Dressed)",
  28816. image: {
  28817. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28818. extra: 1340 / 1308,
  28819. bottom: 67 / 1407
  28820. }
  28821. },
  28822. },
  28823. [
  28824. {
  28825. name: "Macro",
  28826. height: math.unit(150, "feet"),
  28827. default: true
  28828. },
  28829. ]
  28830. ))
  28831. characterMakers.push(() => makeCharacter(
  28832. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28833. {
  28834. front: {
  28835. height: math.unit(10, "feet"),
  28836. weight: math.unit(15015, "lb"),
  28837. name: "Front",
  28838. image: {
  28839. source: "./media/characters/fem!plat/front.svg",
  28840. extra: 2799 / 2604,
  28841. bottom: 149 / 2948
  28842. }
  28843. },
  28844. },
  28845. [
  28846. {
  28847. name: "Normal",
  28848. height: math.unit(10, "feet"),
  28849. default: true
  28850. },
  28851. {
  28852. name: "Macro",
  28853. height: math.unit(100, "feet")
  28854. },
  28855. {
  28856. name: "Megamacro",
  28857. height: math.unit(1000, "feet")
  28858. },
  28859. ]
  28860. ))
  28861. characterMakers.push(() => makeCharacter(
  28862. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28863. {
  28864. front: {
  28865. height: math.unit(15 + 5 / 12, "feet"),
  28866. weight: math.unit(4600, "lb"),
  28867. name: "Front",
  28868. image: {
  28869. source: "./media/characters/neapolitan-ananassa/front.svg",
  28870. extra: 2903 / 2736,
  28871. bottom: 0 / 2903
  28872. }
  28873. },
  28874. side: {
  28875. height: math.unit(15 + 5 / 12, "feet"),
  28876. weight: math.unit(4600, "lb"),
  28877. name: "Side",
  28878. image: {
  28879. source: "./media/characters/neapolitan-ananassa/side.svg",
  28880. extra: 2925 / 2719,
  28881. bottom: 0 / 2925
  28882. }
  28883. },
  28884. back: {
  28885. height: math.unit(15 + 5 / 12, "feet"),
  28886. weight: math.unit(4600, "lb"),
  28887. name: "Back",
  28888. image: {
  28889. source: "./media/characters/neapolitan-ananassa/back.svg",
  28890. extra: 2903 / 2736,
  28891. bottom: 0 / 2903
  28892. }
  28893. },
  28894. },
  28895. [
  28896. {
  28897. name: "Normal",
  28898. height: math.unit(15 + 5 / 12, "feet"),
  28899. default: true
  28900. },
  28901. {
  28902. name: "Post-Millenium",
  28903. height: math.unit(35 + 5 / 12, "feet")
  28904. },
  28905. {
  28906. name: "Post-Era",
  28907. height: math.unit(450 + 5 / 12, "feet")
  28908. },
  28909. ]
  28910. ))
  28911. characterMakers.push(() => makeCharacter(
  28912. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28913. {
  28914. front: {
  28915. height: math.unit(300, "meters"),
  28916. weight: math.unit(125000, "tonnes"),
  28917. name: "Front",
  28918. image: {
  28919. source: "./media/characters/pazuzu/front.svg",
  28920. extra: 877 / 794,
  28921. bottom: 47 / 924
  28922. }
  28923. },
  28924. },
  28925. [
  28926. {
  28927. name: "Macro",
  28928. height: math.unit(300, "meters"),
  28929. default: true
  28930. },
  28931. ]
  28932. ))
  28933. characterMakers.push(() => makeCharacter(
  28934. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28935. {
  28936. side: {
  28937. height: math.unit(10 + 7 / 12, "feet"),
  28938. weight: math.unit(2.5, "tons"),
  28939. name: "Side",
  28940. image: {
  28941. source: "./media/characters/aasha/side.svg",
  28942. extra: 1345 / 1245,
  28943. bottom: 111 / 1456
  28944. }
  28945. },
  28946. back: {
  28947. height: math.unit(10 + 7 / 12, "feet"),
  28948. weight: math.unit(2.5, "tons"),
  28949. name: "Back",
  28950. image: {
  28951. source: "./media/characters/aasha/back.svg",
  28952. extra: 1133 / 1057,
  28953. bottom: 257 / 1390
  28954. }
  28955. },
  28956. },
  28957. [
  28958. {
  28959. name: "Normal",
  28960. height: math.unit(10 + 7 / 12, "feet"),
  28961. default: true
  28962. },
  28963. ]
  28964. ))
  28965. characterMakers.push(() => makeCharacter(
  28966. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28967. {
  28968. front: {
  28969. height: math.unit(6 + 3 / 12, "feet"),
  28970. name: "Front",
  28971. image: {
  28972. source: "./media/characters/nevan/front.svg",
  28973. extra: 704 / 704,
  28974. bottom: 28 / 732
  28975. }
  28976. },
  28977. back: {
  28978. height: math.unit(6 + 3 / 12, "feet"),
  28979. name: "Back",
  28980. image: {
  28981. source: "./media/characters/nevan/back.svg",
  28982. extra: 714 / 714,
  28983. bottom: 21 / 735
  28984. }
  28985. },
  28986. frontFlaccid: {
  28987. height: math.unit(6 + 3 / 12, "feet"),
  28988. name: "Front (Flaccid)",
  28989. image: {
  28990. source: "./media/characters/nevan/front-flaccid.svg",
  28991. extra: 704 / 704,
  28992. bottom: 28 / 732
  28993. }
  28994. },
  28995. frontErect: {
  28996. height: math.unit(6 + 3 / 12, "feet"),
  28997. name: "Front (Erect)",
  28998. image: {
  28999. source: "./media/characters/nevan/front-erect.svg",
  29000. extra: 704 / 704,
  29001. bottom: 28 / 732
  29002. }
  29003. },
  29004. backFlaccid: {
  29005. height: math.unit(6 + 3 / 12, "feet"),
  29006. name: "Back (Flaccid)",
  29007. image: {
  29008. source: "./media/characters/nevan/back-flaccid.svg",
  29009. extra: 714 / 714,
  29010. bottom: 21 / 735
  29011. }
  29012. },
  29013. },
  29014. [
  29015. {
  29016. name: "Normal",
  29017. height: math.unit(6 + 3 / 12, "feet"),
  29018. default: true
  29019. },
  29020. ]
  29021. ))
  29022. characterMakers.push(() => makeCharacter(
  29023. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29024. {
  29025. front: {
  29026. height: math.unit(4, "feet"),
  29027. name: "Front",
  29028. image: {
  29029. source: "./media/characters/arhan/front.svg",
  29030. extra: 3368 / 3133,
  29031. bottom: 0 / 3368
  29032. }
  29033. },
  29034. side: {
  29035. height: math.unit(4, "feet"),
  29036. name: "Side",
  29037. image: {
  29038. source: "./media/characters/arhan/side.svg",
  29039. extra: 3347 / 3105,
  29040. bottom: 0 / 3347
  29041. }
  29042. },
  29043. tongue: {
  29044. height: math.unit(1.42, "feet"),
  29045. name: "Tongue",
  29046. image: {
  29047. source: "./media/characters/arhan/tongue.svg"
  29048. }
  29049. },
  29050. head: {
  29051. height: math.unit(0.85, "feet"),
  29052. name: "Head",
  29053. image: {
  29054. source: "./media/characters/arhan/head.svg"
  29055. }
  29056. },
  29057. },
  29058. [
  29059. {
  29060. name: "Normal",
  29061. height: math.unit(4, "feet"),
  29062. default: true
  29063. },
  29064. ]
  29065. ))
  29066. characterMakers.push(() => makeCharacter(
  29067. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29068. {
  29069. front: {
  29070. height: math.unit(5 + 7.5 / 12, "feet"),
  29071. weight: math.unit(120, "lb"),
  29072. name: "Front",
  29073. image: {
  29074. source: "./media/characters/digi-duncan/front.svg",
  29075. extra: 330 / 326,
  29076. bottom: 16 / 346
  29077. }
  29078. },
  29079. side: {
  29080. height: math.unit(5 + 7.5 / 12, "feet"),
  29081. weight: math.unit(120, "lb"),
  29082. name: "Side",
  29083. image: {
  29084. source: "./media/characters/digi-duncan/side.svg",
  29085. extra: 341 / 337,
  29086. bottom: 1 / 342
  29087. }
  29088. },
  29089. back: {
  29090. height: math.unit(5 + 7.5 / 12, "feet"),
  29091. weight: math.unit(120, "lb"),
  29092. name: "Back",
  29093. image: {
  29094. source: "./media/characters/digi-duncan/back.svg",
  29095. extra: 330 / 326,
  29096. bottom: 12 / 342
  29097. }
  29098. },
  29099. },
  29100. [
  29101. {
  29102. name: "Speck",
  29103. height: math.unit(0.25, "mm")
  29104. },
  29105. {
  29106. name: "Micro",
  29107. height: math.unit(5, "mm")
  29108. },
  29109. {
  29110. name: "Tiny",
  29111. height: math.unit(0.5, "inches"),
  29112. default: true
  29113. },
  29114. {
  29115. name: "Human",
  29116. height: math.unit(5 + 7.5 / 12, "feet")
  29117. },
  29118. {
  29119. name: "Minigiant",
  29120. height: math.unit(8 + 5.25, "feet")
  29121. },
  29122. {
  29123. name: "Giant",
  29124. height: math.unit(2000, "feet")
  29125. },
  29126. {
  29127. name: "Mega",
  29128. height: math.unit(371.1, "miles")
  29129. },
  29130. ]
  29131. ))
  29132. characterMakers.push(() => makeCharacter(
  29133. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29134. {
  29135. front: {
  29136. height: math.unit(2, "meters"),
  29137. weight: math.unit(350, "kg"),
  29138. name: "Front",
  29139. image: {
  29140. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29141. extra: 898 / 838,
  29142. bottom: 9 / 907
  29143. }
  29144. },
  29145. },
  29146. [
  29147. {
  29148. name: "Micro",
  29149. height: math.unit(8, "meters")
  29150. },
  29151. {
  29152. name: "Normal",
  29153. height: math.unit(50, "meters"),
  29154. default: true
  29155. },
  29156. {
  29157. name: "Macro",
  29158. height: math.unit(500, "meters")
  29159. },
  29160. ]
  29161. ))
  29162. characterMakers.push(() => makeCharacter(
  29163. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29164. {
  29165. front: {
  29166. height: math.unit(6 + 6 / 12, "feet"),
  29167. name: "Front",
  29168. image: {
  29169. source: "./media/characters/khardesh/front.svg",
  29170. extra: 888 / 797,
  29171. bottom: 25 / 913
  29172. }
  29173. },
  29174. },
  29175. [
  29176. {
  29177. name: "Normal",
  29178. height: math.unit(6 + 6 / 12, "feet"),
  29179. default: true
  29180. },
  29181. {
  29182. name: "Normal+",
  29183. height: math.unit(4, "meters")
  29184. },
  29185. {
  29186. name: "Macro",
  29187. height: math.unit(50, "meters")
  29188. },
  29189. {
  29190. name: "Macro+",
  29191. height: math.unit(100, "meters")
  29192. },
  29193. {
  29194. name: "Megamacro",
  29195. height: math.unit(20, "km")
  29196. },
  29197. ]
  29198. ))
  29199. characterMakers.push(() => makeCharacter(
  29200. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29201. {
  29202. front: {
  29203. height: math.unit(6, "feet"),
  29204. weight: math.unit(150, "lb"),
  29205. name: "Front",
  29206. image: {
  29207. source: "./media/characters/kosho/front.svg",
  29208. extra: 1847 / 1847,
  29209. bottom: 86 / 1933
  29210. }
  29211. },
  29212. },
  29213. [
  29214. {
  29215. name: "Second-stage micro",
  29216. height: math.unit(0.5, "inches")
  29217. },
  29218. {
  29219. name: "First-stage micro",
  29220. height: math.unit(6, "inches")
  29221. },
  29222. {
  29223. name: "Normal",
  29224. height: math.unit(6, "feet"),
  29225. default: true
  29226. },
  29227. {
  29228. name: "First-stage macro",
  29229. height: math.unit(72, "feet")
  29230. },
  29231. {
  29232. name: "Second-stage macro",
  29233. height: math.unit(864, "feet")
  29234. },
  29235. ]
  29236. ))
  29237. characterMakers.push(() => makeCharacter(
  29238. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29239. {
  29240. normal: {
  29241. height: math.unit(4 + 6 / 12, "feet"),
  29242. name: "Normal",
  29243. image: {
  29244. source: "./media/characters/hydra/normal.svg",
  29245. extra: 2833 / 2634,
  29246. bottom: 68 / 2901
  29247. }
  29248. },
  29249. smol: {
  29250. height: math.unit(0.705, "inches"),
  29251. name: "Smol",
  29252. image: {
  29253. source: "./media/characters/hydra/smol.svg",
  29254. extra: 2715 / 2540,
  29255. bottom: 0 / 2715
  29256. }
  29257. },
  29258. },
  29259. [
  29260. {
  29261. name: "Normal",
  29262. height: math.unit(4 + 6 / 12, "feet"),
  29263. default: true
  29264. }
  29265. ]
  29266. ))
  29267. characterMakers.push(() => makeCharacter(
  29268. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29269. {
  29270. front: {
  29271. height: math.unit(0.6, "cm"),
  29272. name: "Front",
  29273. image: {
  29274. source: "./media/characters/daz/front.svg",
  29275. extra: 1682 / 1164,
  29276. bottom: 42 / 1724
  29277. }
  29278. },
  29279. },
  29280. [
  29281. {
  29282. name: "Normal",
  29283. height: math.unit(0.6, "cm"),
  29284. default: true
  29285. },
  29286. ]
  29287. ))
  29288. characterMakers.push(() => makeCharacter(
  29289. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29290. {
  29291. front: {
  29292. height: math.unit(6, "feet"),
  29293. weight: math.unit(235, "lb"),
  29294. name: "Front",
  29295. image: {
  29296. source: "./media/characters/theo-pangolin/front.svg",
  29297. extra: 1996 / 1969,
  29298. bottom: 115 / 2111
  29299. }
  29300. },
  29301. back: {
  29302. height: math.unit(6, "feet"),
  29303. weight: math.unit(235, "lb"),
  29304. name: "Back",
  29305. image: {
  29306. source: "./media/characters/theo-pangolin/back.svg",
  29307. extra: 1979 / 1979,
  29308. bottom: 40 / 2019
  29309. }
  29310. },
  29311. feral: {
  29312. height: math.unit(2, "feet"),
  29313. weight: math.unit(30, "lb"),
  29314. name: "Feral",
  29315. image: {
  29316. source: "./media/characters/theo-pangolin/feral.svg",
  29317. extra: 803 / 791,
  29318. bottom: 181 / 984
  29319. }
  29320. },
  29321. footFive: {
  29322. height: math.unit(1.43, "feet"),
  29323. name: "Foot (Five Toes)",
  29324. image: {
  29325. source: "./media/characters/theo-pangolin/foot-five.svg"
  29326. }
  29327. },
  29328. footFour: {
  29329. height: math.unit(1.43, "feet"),
  29330. name: "Foot (Four Toes)",
  29331. image: {
  29332. source: "./media/characters/theo-pangolin/foot-four.svg"
  29333. }
  29334. },
  29335. handFour: {
  29336. height: math.unit(0.81, "feet"),
  29337. name: "Hand (Four Fingers)",
  29338. image: {
  29339. source: "./media/characters/theo-pangolin/hand-four.svg"
  29340. }
  29341. },
  29342. handThree: {
  29343. height: math.unit(0.81, "feet"),
  29344. name: "Hand (Three Fingers)",
  29345. image: {
  29346. source: "./media/characters/theo-pangolin/hand-three.svg"
  29347. }
  29348. },
  29349. headFront: {
  29350. height: math.unit(1.37, "feet"),
  29351. name: "Head (Front)",
  29352. image: {
  29353. source: "./media/characters/theo-pangolin/head-front.svg"
  29354. }
  29355. },
  29356. headSide: {
  29357. height: math.unit(1.43, "feet"),
  29358. name: "Head (Side)",
  29359. image: {
  29360. source: "./media/characters/theo-pangolin/head-side.svg"
  29361. }
  29362. },
  29363. tongue: {
  29364. height: math.unit(2.29, "feet"),
  29365. name: "Tongue",
  29366. image: {
  29367. source: "./media/characters/theo-pangolin/tongue.svg"
  29368. }
  29369. },
  29370. },
  29371. [
  29372. {
  29373. name: "Normal",
  29374. height: math.unit(6, "feet")
  29375. },
  29376. {
  29377. name: "Macro",
  29378. height: math.unit(400, "feet"),
  29379. default: true
  29380. },
  29381. ]
  29382. ))
  29383. characterMakers.push(() => makeCharacter(
  29384. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29385. {
  29386. front: {
  29387. height: math.unit(6, "inches"),
  29388. weight: math.unit(0.036, "kg"),
  29389. name: "Front",
  29390. image: {
  29391. source: "./media/characters/renée/front.svg",
  29392. extra: 900 / 886,
  29393. bottom: 8 / 908
  29394. }
  29395. },
  29396. },
  29397. [
  29398. {
  29399. name: "Nano",
  29400. height: math.unit(1, "nm")
  29401. },
  29402. {
  29403. name: "Micro",
  29404. height: math.unit(1, "mm")
  29405. },
  29406. {
  29407. name: "Normal",
  29408. height: math.unit(6, "inches")
  29409. },
  29410. {
  29411. name: "Macro",
  29412. height: math.unit(2000, "feet"),
  29413. default: true
  29414. },
  29415. {
  29416. name: "Megamacro",
  29417. height: math.unit(2, "km")
  29418. },
  29419. {
  29420. name: "Gigamacro",
  29421. height: math.unit(2000, "km")
  29422. },
  29423. {
  29424. name: "Teramacro",
  29425. height: math.unit(250000, "km")
  29426. },
  29427. ]
  29428. ))
  29429. characterMakers.push(() => makeCharacter(
  29430. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29431. {
  29432. front: {
  29433. height: math.unit(4, "meters"),
  29434. weight: math.unit(150, "kg"),
  29435. name: "Front",
  29436. image: {
  29437. source: "./media/characters/caledvwlch/front.svg",
  29438. extra: 1760 / 1551,
  29439. bottom: 28 / 1788
  29440. }
  29441. },
  29442. side: {
  29443. height: math.unit(4, "meters"),
  29444. weight: math.unit(150, "kg"),
  29445. name: "Side",
  29446. image: {
  29447. source: "./media/characters/caledvwlch/side.svg",
  29448. extra: 1605 / 1536,
  29449. bottom: 31 / 1636
  29450. }
  29451. },
  29452. back: {
  29453. height: math.unit(4, "meters"),
  29454. weight: math.unit(150, "kg"),
  29455. name: "Back",
  29456. image: {
  29457. source: "./media/characters/caledvwlch/back.svg",
  29458. extra: 1635 / 1565,
  29459. bottom: 27 / 1662
  29460. }
  29461. },
  29462. },
  29463. [
  29464. {
  29465. name: "\"Incognito\"",
  29466. height: math.unit(4, "meters")
  29467. },
  29468. {
  29469. name: "Small rampage",
  29470. height: math.unit(600, "meters")
  29471. },
  29472. {
  29473. name: "Mega",
  29474. height: math.unit(30, "km")
  29475. },
  29476. {
  29477. name: "Home-size",
  29478. height: math.unit(50, "km"),
  29479. default: true
  29480. },
  29481. {
  29482. name: "Giga",
  29483. height: math.unit(300, "km")
  29484. },
  29485. {
  29486. name: "Lounging",
  29487. height: math.unit(11000, "km")
  29488. },
  29489. {
  29490. name: "Planet snacking",
  29491. height: math.unit(2000000, "km")
  29492. },
  29493. ]
  29494. ))
  29495. characterMakers.push(() => makeCharacter(
  29496. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29497. {
  29498. front: {
  29499. height: math.unit(6, "feet"),
  29500. weight: math.unit(215, "lb"),
  29501. name: "Front",
  29502. image: {
  29503. source: "./media/characters/sapphire-svell/front.svg",
  29504. extra: 495 / 455,
  29505. bottom: 20 / 515
  29506. }
  29507. },
  29508. back: {
  29509. height: math.unit(6, "feet"),
  29510. weight: math.unit(216, "lb"),
  29511. name: "Back",
  29512. image: {
  29513. source: "./media/characters/sapphire-svell/back.svg",
  29514. extra: 497 / 477,
  29515. bottom: 7 / 504
  29516. }
  29517. },
  29518. maw: {
  29519. height: math.unit(1.57, "feet"),
  29520. name: "Maw",
  29521. image: {
  29522. source: "./media/characters/sapphire-svell/maw.svg"
  29523. }
  29524. },
  29525. foot: {
  29526. height: math.unit(1.07, "feet"),
  29527. name: "Foot",
  29528. image: {
  29529. source: "./media/characters/sapphire-svell/foot.svg"
  29530. }
  29531. },
  29532. toering: {
  29533. height: math.unit(1.7, "inch"),
  29534. name: "Toering",
  29535. image: {
  29536. source: "./media/characters/sapphire-svell/toering.svg"
  29537. }
  29538. },
  29539. },
  29540. [
  29541. {
  29542. name: "Normal",
  29543. height: math.unit(300, "feet"),
  29544. default: true
  29545. },
  29546. {
  29547. name: "Augmented",
  29548. height: math.unit(1250, "feet")
  29549. },
  29550. {
  29551. name: "Unleashed",
  29552. height: math.unit(3000, "feet")
  29553. },
  29554. ]
  29555. ))
  29556. characterMakers.push(() => makeCharacter(
  29557. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29558. {
  29559. side: {
  29560. height: math.unit(2 + 3 / 12, "feet"),
  29561. weight: math.unit(110, "lb"),
  29562. name: "Side",
  29563. image: {
  29564. source: "./media/characters/glitch-flux/side.svg",
  29565. extra: 997 / 805,
  29566. bottom: 20 / 1017
  29567. }
  29568. },
  29569. },
  29570. [
  29571. {
  29572. name: "Normal",
  29573. height: math.unit(2 + 3 / 12, "feet"),
  29574. default: true
  29575. },
  29576. ]
  29577. ))
  29578. characterMakers.push(() => makeCharacter(
  29579. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29580. {
  29581. front: {
  29582. height: math.unit(4, "meters"),
  29583. name: "Front",
  29584. image: {
  29585. source: "./media/characters/mid/front.svg",
  29586. extra: 507 / 476,
  29587. bottom: 17 / 524
  29588. }
  29589. },
  29590. back: {
  29591. height: math.unit(4, "meters"),
  29592. name: "Back",
  29593. image: {
  29594. source: "./media/characters/mid/back.svg",
  29595. extra: 519 / 487,
  29596. bottom: 7 / 526
  29597. }
  29598. },
  29599. stuck: {
  29600. height: math.unit(2.2, "meters"),
  29601. name: "Stuck",
  29602. image: {
  29603. source: "./media/characters/mid/stuck.svg",
  29604. extra: 1951 / 1869,
  29605. bottom: 88 / 2039
  29606. }
  29607. }
  29608. },
  29609. [
  29610. {
  29611. name: "Normal",
  29612. height: math.unit(4, "meters"),
  29613. default: true
  29614. },
  29615. {
  29616. name: "Big",
  29617. height: math.unit(10, "meters")
  29618. },
  29619. {
  29620. name: "Macro",
  29621. height: math.unit(800, "meters")
  29622. },
  29623. {
  29624. name: "Megamacro",
  29625. height: math.unit(100, "km")
  29626. },
  29627. {
  29628. name: "Overgrown",
  29629. height: math.unit(1, "parsec")
  29630. },
  29631. ]
  29632. ))
  29633. characterMakers.push(() => makeCharacter(
  29634. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29635. {
  29636. front: {
  29637. height: math.unit(2.5, "meters"),
  29638. weight: math.unit(225, "kg"),
  29639. name: "Front",
  29640. image: {
  29641. source: "./media/characters/iris/front.svg",
  29642. extra: 3348 / 3251,
  29643. bottom: 205 / 3553
  29644. }
  29645. },
  29646. maw: {
  29647. height: math.unit(0.56, "meter"),
  29648. name: "Maw",
  29649. image: {
  29650. source: "./media/characters/iris/maw.svg"
  29651. }
  29652. },
  29653. },
  29654. [
  29655. {
  29656. name: "Mewter cat",
  29657. height: math.unit(1.2, "meters")
  29658. },
  29659. {
  29660. name: "Minimacro",
  29661. height: math.unit(2.5, "meters"),
  29662. default: true
  29663. },
  29664. {
  29665. name: "Macro",
  29666. height: math.unit(180, "meters")
  29667. },
  29668. {
  29669. name: "Megamacro",
  29670. height: math.unit(2746, "meters")
  29671. },
  29672. ]
  29673. ))
  29674. characterMakers.push(() => makeCharacter(
  29675. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29676. {
  29677. front: {
  29678. height: math.unit(6, "feet"),
  29679. weight: math.unit(135, "lb"),
  29680. name: "Front",
  29681. image: {
  29682. source: "./media/characters/axel/front.svg",
  29683. extra: 908 / 908,
  29684. bottom: 58 / 966
  29685. }
  29686. },
  29687. side: {
  29688. height: math.unit(6, "feet"),
  29689. weight: math.unit(135, "lb"),
  29690. name: "Side",
  29691. image: {
  29692. source: "./media/characters/axel/side.svg",
  29693. extra: 958 / 958,
  29694. bottom: 11 / 969
  29695. }
  29696. },
  29697. back: {
  29698. height: math.unit(6, "feet"),
  29699. weight: math.unit(135, "lb"),
  29700. name: "Back",
  29701. image: {
  29702. source: "./media/characters/axel/back.svg",
  29703. extra: 887 / 887,
  29704. bottom: 34 / 921
  29705. }
  29706. },
  29707. head: {
  29708. height: math.unit(1.07, "feet"),
  29709. name: "Head",
  29710. image: {
  29711. source: "./media/characters/axel/head.svg"
  29712. }
  29713. },
  29714. beak: {
  29715. height: math.unit(1.4, "feet"),
  29716. name: "Beak",
  29717. image: {
  29718. source: "./media/characters/axel/beak.svg"
  29719. }
  29720. },
  29721. beakSide: {
  29722. height: math.unit(1.4, "feet"),
  29723. name: "Beak Side",
  29724. image: {
  29725. source: "./media/characters/axel/beak-side.svg"
  29726. }
  29727. },
  29728. sheath: {
  29729. height: math.unit(0.5, "feet"),
  29730. name: "Sheath",
  29731. image: {
  29732. source: "./media/characters/axel/sheath.svg"
  29733. }
  29734. },
  29735. dick: {
  29736. height: math.unit(0.98, "feet"),
  29737. name: "Dick",
  29738. image: {
  29739. source: "./media/characters/axel/dick.svg"
  29740. }
  29741. },
  29742. },
  29743. [
  29744. {
  29745. name: "Macro",
  29746. height: math.unit(68, "meters"),
  29747. default: true
  29748. },
  29749. ]
  29750. ))
  29751. characterMakers.push(() => makeCharacter(
  29752. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29753. {
  29754. front: {
  29755. height: math.unit(3.5, "meters"),
  29756. weight: math.unit(1200, "kg"),
  29757. name: "Front",
  29758. image: {
  29759. source: "./media/characters/joanna/front.svg",
  29760. extra: 1596 / 1488,
  29761. bottom: 29 / 1625
  29762. }
  29763. },
  29764. back: {
  29765. height: math.unit(3.5, "meters"),
  29766. weight: math.unit(1200, "kg"),
  29767. name: "Back",
  29768. image: {
  29769. source: "./media/characters/joanna/back.svg",
  29770. extra: 1594 / 1495,
  29771. bottom: 26 / 1620
  29772. }
  29773. },
  29774. frontShorts: {
  29775. height: math.unit(3.5, "meters"),
  29776. weight: math.unit(1200, "kg"),
  29777. name: "Front (Shorts)",
  29778. image: {
  29779. source: "./media/characters/joanna/front-shorts.svg",
  29780. extra: 1596 / 1488,
  29781. bottom: 29 / 1625
  29782. }
  29783. },
  29784. frontBiker: {
  29785. height: math.unit(3.5, "meters"),
  29786. weight: math.unit(1200, "kg"),
  29787. name: "Front (Biker)",
  29788. image: {
  29789. source: "./media/characters/joanna/front-biker.svg",
  29790. extra: 1596 / 1488,
  29791. bottom: 29 / 1625
  29792. }
  29793. },
  29794. backBiker: {
  29795. height: math.unit(3.5, "meters"),
  29796. weight: math.unit(1200, "kg"),
  29797. name: "Back (Biker)",
  29798. image: {
  29799. source: "./media/characters/joanna/back-biker.svg",
  29800. extra: 1594 / 1495,
  29801. bottom: 88 / 1682
  29802. }
  29803. },
  29804. bikeLeft: {
  29805. height: math.unit(2.4, "meters"),
  29806. weight: math.unit(1600, "kg"),
  29807. name: "Bike (Left)",
  29808. image: {
  29809. source: "./media/characters/joanna/bike-left.svg",
  29810. extra: 720 / 720,
  29811. bottom: 8 / 728
  29812. }
  29813. },
  29814. bikeRight: {
  29815. height: math.unit(2.4, "meters"),
  29816. weight: math.unit(1600, "kg"),
  29817. name: "Bike (Right)",
  29818. image: {
  29819. source: "./media/characters/joanna/bike-right.svg",
  29820. extra: 720 / 720,
  29821. bottom: 8 / 728
  29822. }
  29823. },
  29824. },
  29825. [
  29826. {
  29827. name: "Incognito",
  29828. height: math.unit(3.5, "meters")
  29829. },
  29830. {
  29831. name: "Casual Big",
  29832. height: math.unit(200, "meters")
  29833. },
  29834. {
  29835. name: "Macro",
  29836. height: math.unit(600, "meters")
  29837. },
  29838. {
  29839. name: "Original",
  29840. height: math.unit(20, "km"),
  29841. default: true
  29842. },
  29843. {
  29844. name: "Giga",
  29845. height: math.unit(400, "km")
  29846. },
  29847. {
  29848. name: "Lounging",
  29849. height: math.unit(1500, "km")
  29850. },
  29851. {
  29852. name: "Planetary",
  29853. height: math.unit(200000, "km")
  29854. },
  29855. ]
  29856. ))
  29857. characterMakers.push(() => makeCharacter(
  29858. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29859. {
  29860. front: {
  29861. height: math.unit(6, "feet"),
  29862. weight: math.unit(150, "lb"),
  29863. name: "Front",
  29864. image: {
  29865. source: "./media/characters/hugo-sigil/front.svg",
  29866. extra: 522 / 500,
  29867. bottom: 2 / 524
  29868. }
  29869. },
  29870. back: {
  29871. height: math.unit(6, "feet"),
  29872. weight: math.unit(150, "lb"),
  29873. name: "Back",
  29874. image: {
  29875. source: "./media/characters/hugo-sigil/back.svg",
  29876. extra: 519 / 495,
  29877. bottom: 5 / 524
  29878. }
  29879. },
  29880. maw: {
  29881. height: math.unit(1.4, "feet"),
  29882. weight: math.unit(150, "lb"),
  29883. name: "Maw",
  29884. image: {
  29885. source: "./media/characters/hugo-sigil/maw.svg"
  29886. }
  29887. },
  29888. feet: {
  29889. height: math.unit(1.56, "feet"),
  29890. weight: math.unit(150, "lb"),
  29891. name: "Feet",
  29892. image: {
  29893. source: "./media/characters/hugo-sigil/feet.svg",
  29894. extra: 177 / 177,
  29895. bottom: 12 / 189
  29896. }
  29897. },
  29898. },
  29899. [
  29900. {
  29901. name: "Normal",
  29902. height: math.unit(6, "feet")
  29903. },
  29904. {
  29905. name: "Macro",
  29906. height: math.unit(200, "feet"),
  29907. default: true
  29908. },
  29909. ]
  29910. ))
  29911. characterMakers.push(() => makeCharacter(
  29912. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29913. {
  29914. front: {
  29915. height: math.unit(6, "feet"),
  29916. weight: math.unit(150, "lb"),
  29917. name: "Front",
  29918. image: {
  29919. source: "./media/characters/peri/front.svg",
  29920. extra: 2354 / 2233,
  29921. bottom: 49 / 2403
  29922. }
  29923. },
  29924. },
  29925. [
  29926. {
  29927. name: "Really Small",
  29928. height: math.unit(1, "nm")
  29929. },
  29930. {
  29931. name: "Micro",
  29932. height: math.unit(4, "inches")
  29933. },
  29934. {
  29935. name: "Normal",
  29936. height: math.unit(7, "inches"),
  29937. default: true
  29938. },
  29939. {
  29940. name: "Macro",
  29941. height: math.unit(400, "feet")
  29942. },
  29943. {
  29944. name: "Megamacro",
  29945. height: math.unit(100, "miles")
  29946. },
  29947. ]
  29948. ))
  29949. characterMakers.push(() => makeCharacter(
  29950. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29951. {
  29952. frontSlim: {
  29953. height: math.unit(7, "feet"),
  29954. name: "Front (Slim)",
  29955. image: {
  29956. source: "./media/characters/issilora/front-slim.svg",
  29957. extra: 529 / 449,
  29958. bottom: 53 / 582
  29959. }
  29960. },
  29961. sideSlim: {
  29962. height: math.unit(7, "feet"),
  29963. name: "Side (Slim)",
  29964. image: {
  29965. source: "./media/characters/issilora/side-slim.svg",
  29966. extra: 570 / 480,
  29967. bottom: 30 / 600
  29968. }
  29969. },
  29970. backSlim: {
  29971. height: math.unit(7, "feet"),
  29972. name: "Back (Slim)",
  29973. image: {
  29974. source: "./media/characters/issilora/back-slim.svg",
  29975. extra: 537 / 455,
  29976. bottom: 46 / 583
  29977. }
  29978. },
  29979. frontBuff: {
  29980. height: math.unit(7, "feet"),
  29981. name: "Front (Buff)",
  29982. image: {
  29983. source: "./media/characters/issilora/front-buff.svg",
  29984. extra: 2310 / 2035,
  29985. bottom: 335 / 2645
  29986. }
  29987. },
  29988. head: {
  29989. height: math.unit(1.94, "feet"),
  29990. name: "Head",
  29991. image: {
  29992. source: "./media/characters/issilora/head.svg"
  29993. }
  29994. },
  29995. },
  29996. [
  29997. {
  29998. name: "Minimum",
  29999. height: math.unit(7, "feet")
  30000. },
  30001. {
  30002. name: "Comfortable",
  30003. height: math.unit(17, "feet")
  30004. },
  30005. {
  30006. name: "Fun Size",
  30007. height: math.unit(47, "feet")
  30008. },
  30009. {
  30010. name: "Natural Macro",
  30011. height: math.unit(137, "feet"),
  30012. default: true
  30013. },
  30014. {
  30015. name: "Maximum Kaiju",
  30016. height: math.unit(397, "feet")
  30017. },
  30018. ]
  30019. ))
  30020. characterMakers.push(() => makeCharacter(
  30021. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30022. {
  30023. front: {
  30024. height: math.unit(50 + 9/12, "feet"),
  30025. weight: math.unit(32.8, "tons"),
  30026. name: "Front",
  30027. image: {
  30028. source: "./media/characters/irb'iiritaahn/front.svg",
  30029. extra: 1878/1826,
  30030. bottom: 326/2204
  30031. }
  30032. },
  30033. back: {
  30034. height: math.unit(50 + 9/12, "feet"),
  30035. weight: math.unit(32.8, "tons"),
  30036. name: "Back",
  30037. image: {
  30038. source: "./media/characters/irb'iiritaahn/back.svg",
  30039. extra: 2052/2018,
  30040. bottom: 152/2204
  30041. }
  30042. },
  30043. head: {
  30044. height: math.unit(12.86, "feet"),
  30045. name: "Head",
  30046. image: {
  30047. source: "./media/characters/irb'iiritaahn/head.svg"
  30048. }
  30049. },
  30050. maw: {
  30051. height: math.unit(9.66, "feet"),
  30052. name: "Maw",
  30053. image: {
  30054. source: "./media/characters/irb'iiritaahn/maw.svg"
  30055. }
  30056. },
  30057. frontDick: {
  30058. height: math.unit(8.78461, "feet"),
  30059. name: "Front Dick",
  30060. image: {
  30061. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30062. }
  30063. },
  30064. rearDick: {
  30065. height: math.unit(8.78461, "feet"),
  30066. name: "Rear Dick",
  30067. image: {
  30068. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30069. }
  30070. },
  30071. rearDickUnfolded: {
  30072. height: math.unit(8.78, "feet"),
  30073. name: "Rear Dick (Unfolded)",
  30074. image: {
  30075. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30076. }
  30077. },
  30078. wings: {
  30079. height: math.unit(43, "feet"),
  30080. name: "Wings",
  30081. image: {
  30082. source: "./media/characters/irb'iiritaahn/wings.svg"
  30083. }
  30084. },
  30085. },
  30086. [
  30087. {
  30088. name: "Macro",
  30089. height: math.unit(50 + 9/12, "feet"),
  30090. default: true
  30091. },
  30092. ]
  30093. ))
  30094. characterMakers.push(() => makeCharacter(
  30095. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30096. {
  30097. front: {
  30098. height: math.unit(205, "cm"),
  30099. weight: math.unit(102, "kg"),
  30100. name: "Front",
  30101. image: {
  30102. source: "./media/characters/irbisgreif/front.svg",
  30103. extra: 785/706,
  30104. bottom: 13/798
  30105. }
  30106. },
  30107. back: {
  30108. height: math.unit(205, "cm"),
  30109. weight: math.unit(102, "kg"),
  30110. name: "Back",
  30111. image: {
  30112. source: "./media/characters/irbisgreif/back.svg",
  30113. extra: 713/701,
  30114. bottom: 26/739
  30115. }
  30116. },
  30117. frontDressed: {
  30118. height: math.unit(216, "cm"),
  30119. weight: math.unit(102, "kg"),
  30120. name: "Front-dressed",
  30121. image: {
  30122. source: "./media/characters/irbisgreif/front-dressed.svg",
  30123. extra: 902/776,
  30124. bottom: 14/916
  30125. }
  30126. },
  30127. sideDressed: {
  30128. height: math.unit(195, "cm"),
  30129. weight: math.unit(102, "kg"),
  30130. name: "Side-dressed",
  30131. image: {
  30132. source: "./media/characters/irbisgreif/side-dressed.svg",
  30133. extra: 788/688,
  30134. bottom: 21/809
  30135. }
  30136. },
  30137. backDressed: {
  30138. height: math.unit(216, "cm"),
  30139. weight: math.unit(102, "kg"),
  30140. name: "Back-dressed",
  30141. image: {
  30142. source: "./media/characters/irbisgreif/back-dressed.svg",
  30143. extra: 901/783,
  30144. bottom: 10/911
  30145. }
  30146. },
  30147. dick: {
  30148. height: math.unit(0.49, "feet"),
  30149. name: "Dick",
  30150. image: {
  30151. source: "./media/characters/irbisgreif/dick.svg"
  30152. }
  30153. },
  30154. wingTop: {
  30155. height: math.unit(1.93 , "feet"),
  30156. name: "Wing-top",
  30157. image: {
  30158. source: "./media/characters/irbisgreif/wing-top.svg"
  30159. }
  30160. },
  30161. wingBottom: {
  30162. height: math.unit(1.93 , "feet"),
  30163. name: "Wing-bottom",
  30164. image: {
  30165. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30166. }
  30167. },
  30168. },
  30169. [
  30170. {
  30171. name: "Normal",
  30172. height: math.unit(216, "cm"),
  30173. default: true
  30174. },
  30175. ]
  30176. ))
  30177. characterMakers.push(() => makeCharacter(
  30178. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30179. {
  30180. front: {
  30181. height: math.unit(6, "feet"),
  30182. weight: math.unit(150, "lb"),
  30183. name: "Front",
  30184. image: {
  30185. source: "./media/characters/pride/front.svg",
  30186. extra: 1299/1230,
  30187. bottom: 18/1317
  30188. }
  30189. },
  30190. },
  30191. [
  30192. {
  30193. name: "Normal",
  30194. height: math.unit(7, "feet")
  30195. },
  30196. {
  30197. name: "Mini-macro",
  30198. height: math.unit(11, "feet")
  30199. },
  30200. {
  30201. name: "Macro",
  30202. height: math.unit(15, "meters"),
  30203. default: true
  30204. },
  30205. {
  30206. name: "Macro+",
  30207. height: math.unit(40, "meters")
  30208. },
  30209. ]
  30210. ))
  30211. characterMakers.push(() => makeCharacter(
  30212. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30213. {
  30214. front: {
  30215. height: math.unit(4 + 2 / 12, "feet"),
  30216. weight: math.unit(95, "lb"),
  30217. name: "Front",
  30218. image: {
  30219. source: "./media/characters/vaelophis-nyx/front.svg",
  30220. extra: 2532/2330,
  30221. bottom: 0/2532
  30222. }
  30223. },
  30224. back: {
  30225. height: math.unit(4 + 2 / 12, "feet"),
  30226. weight: math.unit(95, "lb"),
  30227. name: "Back",
  30228. image: {
  30229. source: "./media/characters/vaelophis-nyx/back.svg",
  30230. extra: 2484/2361,
  30231. bottom: 0/2484
  30232. }
  30233. },
  30234. feralSide: {
  30235. height: math.unit(2 + 1/12, "feet"),
  30236. weight: math.unit(20, "lb"),
  30237. name: "Feral (Side)",
  30238. image: {
  30239. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30240. extra: 1721/1581,
  30241. bottom: 70/1791
  30242. }
  30243. },
  30244. feralLazing: {
  30245. height: math.unit(1.08, "feet"),
  30246. weight: math.unit(20, "lb"),
  30247. name: "Feral (Lazing)",
  30248. image: {
  30249. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30250. extra: 822/822,
  30251. bottom: 248/1070
  30252. }
  30253. },
  30254. ear: {
  30255. height: math.unit(0.416, "feet"),
  30256. name: "Ear",
  30257. image: {
  30258. source: "./media/characters/vaelophis-nyx/ear.svg"
  30259. }
  30260. },
  30261. eye: {
  30262. height: math.unit(0.0748, "feet"),
  30263. name: "Eye",
  30264. image: {
  30265. source: "./media/characters/vaelophis-nyx/eye.svg"
  30266. }
  30267. },
  30268. mouth: {
  30269. height: math.unit(0.378, "feet"),
  30270. name: "Mouth",
  30271. image: {
  30272. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30273. }
  30274. },
  30275. spade: {
  30276. height: math.unit(0.55, "feet"),
  30277. name: "Spade",
  30278. image: {
  30279. source: "./media/characters/vaelophis-nyx/spade.svg"
  30280. }
  30281. },
  30282. },
  30283. [
  30284. {
  30285. name: "Normal",
  30286. height: math.unit(4 + 2/12, "feet"),
  30287. default: true
  30288. },
  30289. ]
  30290. ))
  30291. characterMakers.push(() => makeCharacter(
  30292. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30293. {
  30294. front: {
  30295. height: math.unit(7, "feet"),
  30296. weight: math.unit(231, "lb"),
  30297. name: "Front",
  30298. image: {
  30299. source: "./media/characters/flux/front.svg",
  30300. extra: 919/871,
  30301. bottom: 0/919
  30302. }
  30303. },
  30304. back: {
  30305. height: math.unit(7, "feet"),
  30306. weight: math.unit(231, "lb"),
  30307. name: "Back",
  30308. image: {
  30309. source: "./media/characters/flux/back.svg",
  30310. extra: 1040/992,
  30311. bottom: 0/1040
  30312. }
  30313. },
  30314. frontDressed: {
  30315. height: math.unit(7, "feet"),
  30316. weight: math.unit(231, "lb"),
  30317. name: "Front (Dressed)",
  30318. image: {
  30319. source: "./media/characters/flux/front-dressed.svg",
  30320. extra: 919/871,
  30321. bottom: 0/919
  30322. }
  30323. },
  30324. feralSide: {
  30325. height: math.unit(5, "feet"),
  30326. weight: math.unit(150, "lb"),
  30327. name: "Feral (Side)",
  30328. image: {
  30329. source: "./media/characters/flux/feral-side.svg",
  30330. extra: 598/528,
  30331. bottom: 28/626
  30332. }
  30333. },
  30334. head: {
  30335. height: math.unit(1.585, "feet"),
  30336. name: "Head",
  30337. image: {
  30338. source: "./media/characters/flux/head.svg"
  30339. }
  30340. },
  30341. headSide: {
  30342. height: math.unit(1.74, "feet"),
  30343. name: "Head (Side)",
  30344. image: {
  30345. source: "./media/characters/flux/head-side.svg"
  30346. }
  30347. },
  30348. headSideFire: {
  30349. height: math.unit(1.76, "feet"),
  30350. name: "Head (Side, Fire)",
  30351. image: {
  30352. source: "./media/characters/flux/head-side-fire.svg"
  30353. }
  30354. },
  30355. },
  30356. [
  30357. {
  30358. name: "Normal",
  30359. height: math.unit(7, "feet"),
  30360. default: true
  30361. },
  30362. ]
  30363. ))
  30364. characterMakers.push(() => makeCharacter(
  30365. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30366. {
  30367. front: {
  30368. height: math.unit(9, "feet"),
  30369. weight: math.unit(1012, "lb"),
  30370. name: "Front",
  30371. image: {
  30372. source: "./media/characters/ulfra-lupae/front.svg",
  30373. extra: 1083/1011,
  30374. bottom: 67/1150
  30375. }
  30376. },
  30377. },
  30378. [
  30379. {
  30380. name: "Micro",
  30381. height: math.unit(6, "inches")
  30382. },
  30383. {
  30384. name: "Socializing",
  30385. height: math.unit(6 + 5/12, "feet")
  30386. },
  30387. {
  30388. name: "Normal",
  30389. height: math.unit(9, "feet"),
  30390. default: true
  30391. },
  30392. {
  30393. name: "Macro",
  30394. height: math.unit(150, "feet")
  30395. },
  30396. ]
  30397. ))
  30398. characterMakers.push(() => makeCharacter(
  30399. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30400. {
  30401. front: {
  30402. height: math.unit(5 + 2/12, "feet"),
  30403. weight: math.unit(120, "lb"),
  30404. name: "Front",
  30405. image: {
  30406. source: "./media/characters/timber/front.svg",
  30407. extra: 2814/2705,
  30408. bottom: 181/2995
  30409. }
  30410. },
  30411. },
  30412. [
  30413. {
  30414. name: "Normal",
  30415. height: math.unit(5 + 2/12, "feet"),
  30416. default: true
  30417. },
  30418. ]
  30419. ))
  30420. characterMakers.push(() => makeCharacter(
  30421. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30422. {
  30423. front: {
  30424. height: math.unit(5 + 7/12, "feet"),
  30425. weight: math.unit(220, "lb"),
  30426. name: "Front",
  30427. image: {
  30428. source: "./media/characters/nicki/front.svg",
  30429. extra: 453/419,
  30430. bottom: 7/460
  30431. }
  30432. },
  30433. frontAlt: {
  30434. height: math.unit(5 + 7/12, "feet"),
  30435. weight: math.unit(220, "lb"),
  30436. name: "Front-alt",
  30437. image: {
  30438. source: "./media/characters/nicki/front-alt.svg",
  30439. extra: 435/411,
  30440. bottom: 12/447
  30441. }
  30442. },
  30443. back: {
  30444. height: math.unit(5 + 7/12, "feet"),
  30445. weight: math.unit(220, "lb"),
  30446. name: "Back",
  30447. image: {
  30448. source: "./media/characters/nicki/back.svg",
  30449. extra: 440/413,
  30450. bottom: 19/459
  30451. }
  30452. },
  30453. taur: {
  30454. height: math.unit(7 + 6/12, "feet"),
  30455. weight: math.unit(700, "lb"),
  30456. name: "Taur",
  30457. image: {
  30458. source: "./media/characters/nicki/taur.svg",
  30459. extra: 975/773,
  30460. bottom: 0/975
  30461. }
  30462. },
  30463. frontNsfw: {
  30464. height: math.unit(5 + 7/12, "feet"),
  30465. weight: math.unit(220, "lb"),
  30466. name: "Front (NSFW)",
  30467. image: {
  30468. source: "./media/characters/nicki/front-nsfw.svg",
  30469. extra: 453/419,
  30470. bottom: 7/460
  30471. }
  30472. },
  30473. frontNsfwAlt: {
  30474. height: math.unit(5 + 7/12, "feet"),
  30475. weight: math.unit(220, "lb"),
  30476. name: "Front (Alt, NSFW)",
  30477. image: {
  30478. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30479. extra: 435/411,
  30480. bottom: 12/447
  30481. }
  30482. },
  30483. backNsfw: {
  30484. height: math.unit(5 + 7/12, "feet"),
  30485. weight: math.unit(220, "lb"),
  30486. name: "Back (NSFW)",
  30487. image: {
  30488. source: "./media/characters/nicki/back-nsfw.svg",
  30489. extra: 440/413,
  30490. bottom: 19/459
  30491. }
  30492. },
  30493. head: {
  30494. height: math.unit(2.1, "feet"),
  30495. name: "Head",
  30496. image: {
  30497. source: "./media/characters/nicki/head.svg"
  30498. }
  30499. },
  30500. paw: {
  30501. height: math.unit(1.88, "feet"),
  30502. name: "Paw",
  30503. image: {
  30504. source: "./media/characters/nicki/paw.svg"
  30505. }
  30506. },
  30507. },
  30508. [
  30509. {
  30510. name: "Normal",
  30511. height: math.unit(5 + 7/12, "feet"),
  30512. default: true
  30513. },
  30514. ]
  30515. ))
  30516. characterMakers.push(() => makeCharacter(
  30517. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30518. {
  30519. front: {
  30520. height: math.unit(7 + 10/12, "feet"),
  30521. weight: math.unit(3.5, "tons"),
  30522. name: "Front",
  30523. image: {
  30524. source: "./media/characters/lee/front.svg",
  30525. extra: 1773/1615,
  30526. bottom: 86/1859
  30527. }
  30528. },
  30529. hand: {
  30530. height: math.unit(1.78, "feet"),
  30531. name: "Hand",
  30532. image: {
  30533. source: "./media/characters/lee/hand.svg"
  30534. }
  30535. },
  30536. maw: {
  30537. height: math.unit(1.18, "feet"),
  30538. name: "Maw",
  30539. image: {
  30540. source: "./media/characters/lee/maw.svg"
  30541. }
  30542. },
  30543. },
  30544. [
  30545. {
  30546. name: "Normal",
  30547. height: math.unit(7 + 10/12, "feet"),
  30548. default: true
  30549. },
  30550. ]
  30551. ))
  30552. characterMakers.push(() => makeCharacter(
  30553. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30554. {
  30555. front: {
  30556. height: math.unit(9, "feet"),
  30557. name: "Front",
  30558. image: {
  30559. source: "./media/characters/guti/front.svg",
  30560. extra: 4551/4355,
  30561. bottom: 123/4674
  30562. }
  30563. },
  30564. tongue: {
  30565. height: math.unit(1, "feet"),
  30566. name: "Tongue",
  30567. image: {
  30568. source: "./media/characters/guti/tongue.svg"
  30569. }
  30570. },
  30571. paw: {
  30572. height: math.unit(1.18, "feet"),
  30573. name: "Paw",
  30574. image: {
  30575. source: "./media/characters/guti/paw.svg"
  30576. }
  30577. },
  30578. },
  30579. [
  30580. {
  30581. name: "Normal",
  30582. height: math.unit(9, "feet"),
  30583. default: true
  30584. },
  30585. ]
  30586. ))
  30587. characterMakers.push(() => makeCharacter(
  30588. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30589. {
  30590. side: {
  30591. height: math.unit(5, "meters"),
  30592. name: "Side",
  30593. image: {
  30594. source: "./media/characters/vesper/side.svg",
  30595. extra: 1605/1518,
  30596. bottom: 0/1605
  30597. }
  30598. },
  30599. },
  30600. [
  30601. {
  30602. name: "Small",
  30603. height: math.unit(5, "meters")
  30604. },
  30605. {
  30606. name: "Sage",
  30607. height: math.unit(100, "meters"),
  30608. default: true
  30609. },
  30610. {
  30611. name: "Fun Size",
  30612. height: math.unit(600, "meters")
  30613. },
  30614. {
  30615. name: "Goddess",
  30616. height: math.unit(20000, "km")
  30617. },
  30618. {
  30619. name: "Maximum",
  30620. height: math.unit(5, "galaxies")
  30621. },
  30622. ]
  30623. ))
  30624. characterMakers.push(() => makeCharacter(
  30625. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30626. {
  30627. front: {
  30628. height: math.unit(6 + 3/12, "feet"),
  30629. weight: math.unit(190, "lb"),
  30630. name: "Front",
  30631. image: {
  30632. source: "./media/characters/gawain/front.svg",
  30633. extra: 2222/2139,
  30634. bottom: 90/2312
  30635. }
  30636. },
  30637. back: {
  30638. height: math.unit(6 + 3/12, "feet"),
  30639. weight: math.unit(190, "lb"),
  30640. name: "Back",
  30641. image: {
  30642. source: "./media/characters/gawain/back.svg",
  30643. extra: 2199/2111,
  30644. bottom: 73/2272
  30645. }
  30646. },
  30647. },
  30648. [
  30649. {
  30650. name: "Normal",
  30651. height: math.unit(6 + 3/12, "feet"),
  30652. default: true
  30653. },
  30654. ]
  30655. ))
  30656. characterMakers.push(() => makeCharacter(
  30657. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30658. {
  30659. side: {
  30660. height: math.unit(3.5, "meters"),
  30661. weight: math.unit(16000, "lb"),
  30662. name: "Side",
  30663. image: {
  30664. source: "./media/characters/dascalti/side.svg",
  30665. extra: 392/273,
  30666. bottom: 47/439
  30667. }
  30668. },
  30669. breath: {
  30670. height: math.unit(7.4, "feet"),
  30671. name: "Breath",
  30672. image: {
  30673. source: "./media/characters/dascalti/breath.svg"
  30674. }
  30675. },
  30676. fed: {
  30677. height: math.unit(3.6, "meters"),
  30678. weight: math.unit(16000, "lb"),
  30679. name: "Fed",
  30680. image: {
  30681. source: "./media/characters/dascalti/fed.svg",
  30682. extra: 1419/820,
  30683. bottom: 95/1514
  30684. }
  30685. },
  30686. },
  30687. [
  30688. {
  30689. name: "Normal",
  30690. height: math.unit(3.5, "meters"),
  30691. default: true
  30692. },
  30693. ]
  30694. ))
  30695. characterMakers.push(() => makeCharacter(
  30696. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30697. {
  30698. front: {
  30699. height: math.unit(3 + 5/12, "feet"),
  30700. name: "Front",
  30701. image: {
  30702. source: "./media/characters/mauve/front.svg",
  30703. extra: 1126/1033,
  30704. bottom: 65/1191
  30705. }
  30706. },
  30707. side: {
  30708. height: math.unit(3 + 5/12, "feet"),
  30709. name: "Side",
  30710. image: {
  30711. source: "./media/characters/mauve/side.svg",
  30712. extra: 1089/1001,
  30713. bottom: 29/1118
  30714. }
  30715. },
  30716. back: {
  30717. height: math.unit(3 + 5/12, "feet"),
  30718. name: "Back",
  30719. image: {
  30720. source: "./media/characters/mauve/back.svg",
  30721. extra: 1173/1053,
  30722. bottom: 109/1282
  30723. }
  30724. },
  30725. },
  30726. [
  30727. {
  30728. name: "Normal",
  30729. height: math.unit(3 + 5/12, "feet"),
  30730. default: true
  30731. },
  30732. ]
  30733. ))
  30734. characterMakers.push(() => makeCharacter(
  30735. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30736. {
  30737. front: {
  30738. height: math.unit(6 + 3/12, "feet"),
  30739. weight: math.unit(430, "lb"),
  30740. name: "Front",
  30741. image: {
  30742. source: "./media/characters/carlos/front.svg",
  30743. extra: 1964/1913,
  30744. bottom: 70/2034
  30745. }
  30746. },
  30747. },
  30748. [
  30749. {
  30750. name: "Normal",
  30751. height: math.unit(6 + 3/12, "feet"),
  30752. default: true
  30753. },
  30754. ]
  30755. ))
  30756. characterMakers.push(() => makeCharacter(
  30757. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30758. {
  30759. back: {
  30760. height: math.unit(5 + 10/12, "feet"),
  30761. weight: math.unit(200, "lb"),
  30762. name: "Back",
  30763. image: {
  30764. source: "./media/characters/jax/back.svg",
  30765. extra: 764/739,
  30766. bottom: 25/789
  30767. }
  30768. },
  30769. },
  30770. [
  30771. {
  30772. name: "Normal",
  30773. height: math.unit(5 + 10/12, "feet"),
  30774. default: true
  30775. },
  30776. ]
  30777. ))
  30778. characterMakers.push(() => makeCharacter(
  30779. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30780. {
  30781. front: {
  30782. height: math.unit(8, "feet"),
  30783. weight: math.unit(250, "lb"),
  30784. name: "Front",
  30785. image: {
  30786. source: "./media/characters/eikthynir/front.svg",
  30787. extra: 1332/1166,
  30788. bottom: 82/1414
  30789. }
  30790. },
  30791. back: {
  30792. height: math.unit(8, "feet"),
  30793. weight: math.unit(250, "lb"),
  30794. name: "Back",
  30795. image: {
  30796. source: "./media/characters/eikthynir/back.svg",
  30797. extra: 1342/1190,
  30798. bottom: 19/1361
  30799. }
  30800. },
  30801. dick: {
  30802. height: math.unit(2.35, "feet"),
  30803. name: "Dick",
  30804. image: {
  30805. source: "./media/characters/eikthynir/dick.svg"
  30806. }
  30807. },
  30808. },
  30809. [
  30810. {
  30811. name: "Normal",
  30812. height: math.unit(8, "feet"),
  30813. default: true
  30814. },
  30815. ]
  30816. ))
  30817. characterMakers.push(() => makeCharacter(
  30818. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30819. {
  30820. front: {
  30821. height: math.unit(99, "meters"),
  30822. weight: math.unit(13000, "tons"),
  30823. name: "Front",
  30824. image: {
  30825. source: "./media/characters/zlmos/front.svg",
  30826. extra: 2202/1992,
  30827. bottom: 315/2517
  30828. }
  30829. },
  30830. },
  30831. [
  30832. {
  30833. name: "Macro",
  30834. height: math.unit(99, "meters"),
  30835. default: true
  30836. },
  30837. ]
  30838. ))
  30839. characterMakers.push(() => makeCharacter(
  30840. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30841. {
  30842. front: {
  30843. height: math.unit(6 + 5/12, "feet"),
  30844. name: "Front",
  30845. image: {
  30846. source: "./media/characters/purri/front.svg",
  30847. extra: 1698/1610,
  30848. bottom: 32/1730
  30849. }
  30850. },
  30851. frontAlt: {
  30852. height: math.unit(6 + 5/12, "feet"),
  30853. name: "Front (Alt)",
  30854. image: {
  30855. source: "./media/characters/purri/front-alt.svg",
  30856. extra: 450/420,
  30857. bottom: 26/476
  30858. }
  30859. },
  30860. boots: {
  30861. height: math.unit(5.5, "feet"),
  30862. name: "Boots",
  30863. image: {
  30864. source: "./media/characters/purri/boots.svg",
  30865. extra: 905/853,
  30866. bottom: 18/923
  30867. }
  30868. },
  30869. lying: {
  30870. height: math.unit(2, "feet"),
  30871. name: "Lying",
  30872. image: {
  30873. source: "./media/characters/purri/lying.svg",
  30874. extra: 940/843,
  30875. bottom: 146/1086
  30876. }
  30877. },
  30878. devious: {
  30879. height: math.unit(1.77, "feet"),
  30880. name: "Devious",
  30881. image: {
  30882. source: "./media/characters/purri/devious.svg",
  30883. extra: 1440/1155,
  30884. bottom: 147/1587
  30885. }
  30886. },
  30887. bean: {
  30888. height: math.unit(1.94, "feet"),
  30889. name: "Bean",
  30890. image: {
  30891. source: "./media/characters/purri/bean.svg"
  30892. }
  30893. },
  30894. },
  30895. [
  30896. {
  30897. name: "Micro",
  30898. height: math.unit(1, "mm")
  30899. },
  30900. {
  30901. name: "Normal",
  30902. height: math.unit(6 + 5/12, "feet"),
  30903. default: true
  30904. },
  30905. {
  30906. name: "Macro :3c",
  30907. height: math.unit(2, "miles")
  30908. },
  30909. ]
  30910. ))
  30911. characterMakers.push(() => makeCharacter(
  30912. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30913. {
  30914. front: {
  30915. height: math.unit(6 + 2/12, "feet"),
  30916. weight: math.unit(250, "lb"),
  30917. name: "Front",
  30918. image: {
  30919. source: "./media/characters/moonlight/front.svg",
  30920. extra: 1044/908,
  30921. bottom: 56/1100
  30922. }
  30923. },
  30924. feral: {
  30925. height: math.unit(3 + 1/12, "feet"),
  30926. weight: math.unit(50, "kg"),
  30927. name: "Feral",
  30928. image: {
  30929. source: "./media/characters/moonlight/feral.svg",
  30930. extra: 3705/2791,
  30931. bottom: 145/3850
  30932. }
  30933. },
  30934. paw: {
  30935. height: math.unit(1, "feet"),
  30936. name: "Paw",
  30937. image: {
  30938. source: "./media/characters/moonlight/paw.svg"
  30939. }
  30940. },
  30941. paws: {
  30942. height: math.unit(0.98, "feet"),
  30943. name: "Paws",
  30944. image: {
  30945. source: "./media/characters/moonlight/paws.svg",
  30946. extra: 939/939,
  30947. bottom: 50/989
  30948. }
  30949. },
  30950. mouth: {
  30951. height: math.unit(0.48, "feet"),
  30952. name: "Mouth",
  30953. image: {
  30954. source: "./media/characters/moonlight/mouth.svg"
  30955. }
  30956. },
  30957. dick: {
  30958. height: math.unit(1.46, "feet"),
  30959. name: "Dick",
  30960. image: {
  30961. source: "./media/characters/moonlight/dick.svg"
  30962. }
  30963. },
  30964. },
  30965. [
  30966. {
  30967. name: "Normal",
  30968. height: math.unit(6 + 2/12, "feet"),
  30969. default: true
  30970. },
  30971. {
  30972. name: "Macro",
  30973. height: math.unit(300, "feet")
  30974. },
  30975. {
  30976. name: "Macro+",
  30977. height: math.unit(1, "mile")
  30978. },
  30979. {
  30980. name: "Mt. Moon",
  30981. height: math.unit(5, "miles")
  30982. },
  30983. {
  30984. name: "Megamacro",
  30985. height: math.unit(15, "miles")
  30986. },
  30987. ]
  30988. ))
  30989. characterMakers.push(() => makeCharacter(
  30990. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30991. {
  30992. back: {
  30993. height: math.unit(6, "feet"),
  30994. weight: math.unit(150, "lb"),
  30995. name: "Back",
  30996. image: {
  30997. source: "./media/characters/sylen/back.svg",
  30998. extra: 1335/1273,
  30999. bottom: 107/1442
  31000. }
  31001. },
  31002. },
  31003. [
  31004. {
  31005. name: "Normal",
  31006. height: math.unit(5 + 5/12, "feet")
  31007. },
  31008. {
  31009. name: "Megamacro",
  31010. height: math.unit(3, "miles"),
  31011. default: true
  31012. },
  31013. ]
  31014. ))
  31015. characterMakers.push(() => makeCharacter(
  31016. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31017. {
  31018. front: {
  31019. height: math.unit(6, "feet"),
  31020. weight: math.unit(190, "lb"),
  31021. name: "Front",
  31022. image: {
  31023. source: "./media/characters/huttser/front.svg",
  31024. extra: 1152/1058,
  31025. bottom: 23/1175
  31026. }
  31027. },
  31028. side: {
  31029. height: math.unit(6, "feet"),
  31030. weight: math.unit(190, "lb"),
  31031. name: "Side",
  31032. image: {
  31033. source: "./media/characters/huttser/side.svg",
  31034. extra: 1174/1065,
  31035. bottom: 18/1192
  31036. }
  31037. },
  31038. back: {
  31039. height: math.unit(6, "feet"),
  31040. weight: math.unit(190, "lb"),
  31041. name: "Back",
  31042. image: {
  31043. source: "./media/characters/huttser/back.svg",
  31044. extra: 1158/1056,
  31045. bottom: 12/1170
  31046. }
  31047. },
  31048. },
  31049. [
  31050. ]
  31051. ))
  31052. characterMakers.push(() => makeCharacter(
  31053. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31054. {
  31055. side: {
  31056. height: math.unit(12 + 9/12, "feet"),
  31057. weight: math.unit(15000, "lb"),
  31058. name: "Side",
  31059. image: {
  31060. source: "./media/characters/faan/side.svg",
  31061. extra: 2747/2697,
  31062. bottom: 0/2747
  31063. }
  31064. },
  31065. front: {
  31066. height: math.unit(12 + 9/12, "feet"),
  31067. weight: math.unit(15000, "lb"),
  31068. name: "Front",
  31069. image: {
  31070. source: "./media/characters/faan/front.svg",
  31071. extra: 607/571,
  31072. bottom: 24/631
  31073. }
  31074. },
  31075. head: {
  31076. height: math.unit(2.85, "feet"),
  31077. name: "Head",
  31078. image: {
  31079. source: "./media/characters/faan/head.svg"
  31080. }
  31081. },
  31082. headAlt: {
  31083. height: math.unit(3.13, "feet"),
  31084. name: "Head-alt",
  31085. image: {
  31086. source: "./media/characters/faan/head-alt.svg"
  31087. }
  31088. },
  31089. },
  31090. [
  31091. {
  31092. name: "Normal",
  31093. height: math.unit(12 + 9/12, "feet"),
  31094. default: true
  31095. },
  31096. ]
  31097. ))
  31098. characterMakers.push(() => makeCharacter(
  31099. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31100. {
  31101. front: {
  31102. height: math.unit(6, "feet"),
  31103. weight: math.unit(300, "lb"),
  31104. name: "Front",
  31105. image: {
  31106. source: "./media/characters/tanio/front.svg",
  31107. extra: 711/673,
  31108. bottom: 25/736
  31109. }
  31110. },
  31111. },
  31112. [
  31113. {
  31114. name: "Normal",
  31115. height: math.unit(6, "feet"),
  31116. default: true
  31117. },
  31118. ]
  31119. ))
  31120. characterMakers.push(() => makeCharacter(
  31121. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31122. {
  31123. front: {
  31124. height: math.unit(3, "inches"),
  31125. name: "Front",
  31126. image: {
  31127. source: "./media/characters/noboru/front.svg",
  31128. extra: 1039/932,
  31129. bottom: 18/1057
  31130. }
  31131. },
  31132. },
  31133. [
  31134. {
  31135. name: "Micro",
  31136. height: math.unit(3, "inches"),
  31137. default: true
  31138. },
  31139. ]
  31140. ))
  31141. characterMakers.push(() => makeCharacter(
  31142. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31143. {
  31144. front: {
  31145. height: math.unit(1.85, "meters"),
  31146. weight: math.unit(80, "kg"),
  31147. name: "Front",
  31148. image: {
  31149. source: "./media/characters/daniel-barrett/front.svg",
  31150. extra: 355/337,
  31151. bottom: 9/364
  31152. }
  31153. },
  31154. },
  31155. [
  31156. {
  31157. name: "Pico",
  31158. height: math.unit(0.0433, "mm")
  31159. },
  31160. {
  31161. name: "Nano",
  31162. height: math.unit(1.5, "mm")
  31163. },
  31164. {
  31165. name: "Micro",
  31166. height: math.unit(5.3, "cm"),
  31167. default: true
  31168. },
  31169. {
  31170. name: "Normal",
  31171. height: math.unit(1.85, "meters")
  31172. },
  31173. {
  31174. name: "Macro",
  31175. height: math.unit(64.7, "meters")
  31176. },
  31177. {
  31178. name: "Megamacro",
  31179. height: math.unit(2.26, "km")
  31180. },
  31181. {
  31182. name: "Gigamacro",
  31183. height: math.unit(79, "km")
  31184. },
  31185. {
  31186. name: "Teramacro",
  31187. height: math.unit(2765, "km")
  31188. },
  31189. {
  31190. name: "Petamacro",
  31191. height: math.unit(96678, "km")
  31192. },
  31193. ]
  31194. ))
  31195. characterMakers.push(() => makeCharacter(
  31196. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31197. {
  31198. front: {
  31199. height: math.unit(30, "meters"),
  31200. weight: math.unit(400, "tons"),
  31201. name: "Front",
  31202. image: {
  31203. source: "./media/characters/zeel/front.svg",
  31204. extra: 2599/2599,
  31205. bottom: 226/2825
  31206. }
  31207. },
  31208. },
  31209. [
  31210. {
  31211. name: "Macro",
  31212. height: math.unit(30, "meters"),
  31213. default: true
  31214. },
  31215. ]
  31216. ))
  31217. characterMakers.push(() => makeCharacter(
  31218. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31219. {
  31220. front: {
  31221. height: math.unit(6 + 7/12, "feet"),
  31222. weight: math.unit(210, "lb"),
  31223. name: "Front",
  31224. image: {
  31225. source: "./media/characters/tarn/front.svg",
  31226. extra: 3517/3220,
  31227. bottom: 91/3608
  31228. }
  31229. },
  31230. back: {
  31231. height: math.unit(6 + 7/12, "feet"),
  31232. weight: math.unit(210, "lb"),
  31233. name: "Back",
  31234. image: {
  31235. source: "./media/characters/tarn/back.svg",
  31236. extra: 3566/3241,
  31237. bottom: 34/3600
  31238. }
  31239. },
  31240. dick: {
  31241. height: math.unit(1.65, "feet"),
  31242. name: "Dick",
  31243. image: {
  31244. source: "./media/characters/tarn/dick.svg"
  31245. }
  31246. },
  31247. paw: {
  31248. height: math.unit(1.80, "feet"),
  31249. name: "Paw",
  31250. image: {
  31251. source: "./media/characters/tarn/paw.svg"
  31252. }
  31253. },
  31254. tongue: {
  31255. height: math.unit(0.97, "feet"),
  31256. name: "Tongue",
  31257. image: {
  31258. source: "./media/characters/tarn/tongue.svg"
  31259. }
  31260. },
  31261. },
  31262. [
  31263. {
  31264. name: "Micro",
  31265. height: math.unit(4, "inches")
  31266. },
  31267. {
  31268. name: "Normal",
  31269. height: math.unit(6 + 7/12, "feet"),
  31270. default: true
  31271. },
  31272. {
  31273. name: "Macro",
  31274. height: math.unit(300, "feet")
  31275. },
  31276. ]
  31277. ))
  31278. characterMakers.push(() => makeCharacter(
  31279. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31280. {
  31281. front: {
  31282. height: math.unit(5 + 7/12, "feet"),
  31283. weight: math.unit(80, "kg"),
  31284. name: "Front",
  31285. image: {
  31286. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31287. extra: 3023/2865,
  31288. bottom: 33/3056
  31289. }
  31290. },
  31291. back: {
  31292. height: math.unit(5 + 7/12, "feet"),
  31293. weight: math.unit(80, "kg"),
  31294. name: "Back",
  31295. image: {
  31296. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31297. extra: 3020/2886,
  31298. bottom: 30/3050
  31299. }
  31300. },
  31301. dick: {
  31302. height: math.unit(0.98, "feet"),
  31303. name: "Dick",
  31304. image: {
  31305. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31306. }
  31307. },
  31308. anatomy: {
  31309. height: math.unit(2.86, "feet"),
  31310. name: "Anatomy",
  31311. image: {
  31312. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31313. }
  31314. },
  31315. },
  31316. [
  31317. {
  31318. name: "Really Small",
  31319. height: math.unit(2, "inches")
  31320. },
  31321. {
  31322. name: "Micro",
  31323. height: math.unit(5.583, "inches")
  31324. },
  31325. {
  31326. name: "Normal",
  31327. height: math.unit(5 + 7/12, "feet"),
  31328. default: true
  31329. },
  31330. {
  31331. name: "Macro",
  31332. height: math.unit(67, "feet")
  31333. },
  31334. {
  31335. name: "Megamacro",
  31336. height: math.unit(134, "feet")
  31337. },
  31338. ]
  31339. ))
  31340. characterMakers.push(() => makeCharacter(
  31341. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31342. {
  31343. front: {
  31344. height: math.unit(9, "feet"),
  31345. weight: math.unit(120, "lb"),
  31346. name: "Front",
  31347. image: {
  31348. source: "./media/characters/sally/front.svg",
  31349. extra: 1506/1349,
  31350. bottom: 66/1572
  31351. }
  31352. },
  31353. },
  31354. [
  31355. {
  31356. name: "Normal",
  31357. height: math.unit(9, "feet"),
  31358. default: true
  31359. },
  31360. ]
  31361. ))
  31362. characterMakers.push(() => makeCharacter(
  31363. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31364. {
  31365. front: {
  31366. height: math.unit(8, "feet"),
  31367. weight: math.unit(900, "lb"),
  31368. name: "Front",
  31369. image: {
  31370. source: "./media/characters/owen/front.svg",
  31371. extra: 1761/1657,
  31372. bottom: 74/1835
  31373. }
  31374. },
  31375. side: {
  31376. height: math.unit(8, "feet"),
  31377. weight: math.unit(900, "lb"),
  31378. name: "Side",
  31379. image: {
  31380. source: "./media/characters/owen/side.svg",
  31381. extra: 1797/1734,
  31382. bottom: 30/1827
  31383. }
  31384. },
  31385. back: {
  31386. height: math.unit(8, "feet"),
  31387. weight: math.unit(900, "lb"),
  31388. name: "Back",
  31389. image: {
  31390. source: "./media/characters/owen/back.svg",
  31391. extra: 1796/1706,
  31392. bottom: 59/1855
  31393. }
  31394. },
  31395. maw: {
  31396. height: math.unit(1.76, "feet"),
  31397. name: "Maw",
  31398. image: {
  31399. source: "./media/characters/owen/maw.svg"
  31400. }
  31401. },
  31402. },
  31403. [
  31404. {
  31405. name: "Normal",
  31406. height: math.unit(8, "feet"),
  31407. default: true
  31408. },
  31409. ]
  31410. ))
  31411. characterMakers.push(() => makeCharacter(
  31412. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31413. {
  31414. front: {
  31415. height: math.unit(4, "feet"),
  31416. weight: math.unit(400, "lb"),
  31417. name: "Front",
  31418. image: {
  31419. source: "./media/characters/ryth/front.svg",
  31420. extra: 876/691,
  31421. bottom: 25/901
  31422. }
  31423. },
  31424. goia: {
  31425. height: math.unit(12, "feet"),
  31426. weight: math.unit(10800, "lb"),
  31427. name: "Goia",
  31428. image: {
  31429. source: "./media/characters/ryth/goia.svg",
  31430. extra: 3450/3198,
  31431. bottom: 61/3511
  31432. }
  31433. },
  31434. },
  31435. [
  31436. {
  31437. name: "Normal",
  31438. height: math.unit(4, "feet"),
  31439. default: true
  31440. },
  31441. ]
  31442. ))
  31443. characterMakers.push(() => makeCharacter(
  31444. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31445. {
  31446. front: {
  31447. height: math.unit(7, "feet"),
  31448. weight: math.unit(180, "lb"),
  31449. name: "Front",
  31450. image: {
  31451. source: "./media/characters/necrolance/front.svg",
  31452. extra: 1062/947,
  31453. bottom: 41/1103
  31454. }
  31455. },
  31456. back: {
  31457. height: math.unit(7, "feet"),
  31458. weight: math.unit(180, "lb"),
  31459. name: "Back",
  31460. image: {
  31461. source: "./media/characters/necrolance/back.svg",
  31462. extra: 1045/984,
  31463. bottom: 14/1059
  31464. }
  31465. },
  31466. wing: {
  31467. height: math.unit(2.67, "feet"),
  31468. name: "Wing",
  31469. image: {
  31470. source: "./media/characters/necrolance/wing.svg"
  31471. }
  31472. },
  31473. },
  31474. [
  31475. {
  31476. name: "Normal",
  31477. height: math.unit(7, "feet"),
  31478. default: true
  31479. },
  31480. ]
  31481. ))
  31482. characterMakers.push(() => makeCharacter(
  31483. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31484. {
  31485. front: {
  31486. height: math.unit(76, "meters"),
  31487. weight: math.unit(30000, "tons"),
  31488. name: "Front",
  31489. image: {
  31490. source: "./media/characters/tyler/front.svg",
  31491. extra: 1640/1640,
  31492. bottom: 114/1754
  31493. }
  31494. },
  31495. },
  31496. [
  31497. {
  31498. name: "Macro",
  31499. height: math.unit(76, "meters"),
  31500. default: true
  31501. },
  31502. ]
  31503. ))
  31504. characterMakers.push(() => makeCharacter(
  31505. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31506. {
  31507. front: {
  31508. height: math.unit(4 + 11/12, "feet"),
  31509. weight: math.unit(132, "lb"),
  31510. name: "Front",
  31511. image: {
  31512. source: "./media/characters/icey/front.svg",
  31513. extra: 2750/2550,
  31514. bottom: 33/2783
  31515. }
  31516. },
  31517. back: {
  31518. height: math.unit(4 + 11/12, "feet"),
  31519. weight: math.unit(132, "lb"),
  31520. name: "Back",
  31521. image: {
  31522. source: "./media/characters/icey/back.svg",
  31523. extra: 2624/2481,
  31524. bottom: 35/2659
  31525. }
  31526. },
  31527. },
  31528. [
  31529. {
  31530. name: "Normal",
  31531. height: math.unit(4 + 11/12, "feet"),
  31532. default: true
  31533. },
  31534. ]
  31535. ))
  31536. characterMakers.push(() => makeCharacter(
  31537. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31538. {
  31539. front: {
  31540. height: math.unit(100, "feet"),
  31541. weight: math.unit(0, "lb"),
  31542. name: "Front",
  31543. image: {
  31544. source: "./media/characters/smile/front.svg",
  31545. extra: 2983/2912,
  31546. bottom: 162/3145
  31547. }
  31548. },
  31549. back: {
  31550. height: math.unit(100, "feet"),
  31551. weight: math.unit(0, "lb"),
  31552. name: "Back",
  31553. image: {
  31554. source: "./media/characters/smile/back.svg",
  31555. extra: 3143/3031,
  31556. bottom: 91/3234
  31557. }
  31558. },
  31559. head: {
  31560. height: math.unit(26.3, "feet"),
  31561. weight: math.unit(0, "lb"),
  31562. name: "Head",
  31563. image: {
  31564. source: "./media/characters/smile/head.svg"
  31565. }
  31566. },
  31567. collar: {
  31568. height: math.unit(5.3, "feet"),
  31569. weight: math.unit(0, "lb"),
  31570. name: "Collar",
  31571. image: {
  31572. source: "./media/characters/smile/collar.svg"
  31573. }
  31574. },
  31575. },
  31576. [
  31577. {
  31578. name: "Macro",
  31579. height: math.unit(100, "feet"),
  31580. default: true
  31581. },
  31582. ]
  31583. ))
  31584. characterMakers.push(() => makeCharacter(
  31585. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31586. {
  31587. dragon: {
  31588. height: math.unit(26, "feet"),
  31589. weight: math.unit(36, "tons"),
  31590. name: "Dragon",
  31591. image: {
  31592. source: "./media/characters/arimphae/dragon.svg",
  31593. extra: 1574/983,
  31594. bottom: 357/1931
  31595. }
  31596. },
  31597. drake: {
  31598. height: math.unit(9, "feet"),
  31599. weight: math.unit(1.5, "tons"),
  31600. name: "Drake",
  31601. image: {
  31602. source: "./media/characters/arimphae/drake.svg",
  31603. extra: 1120/925,
  31604. bottom: 435/1555
  31605. }
  31606. },
  31607. },
  31608. [
  31609. {
  31610. name: "Small",
  31611. height: math.unit(26*5/9, "feet")
  31612. },
  31613. {
  31614. name: "Normal",
  31615. height: math.unit(26, "feet"),
  31616. default: true
  31617. },
  31618. ]
  31619. ))
  31620. characterMakers.push(() => makeCharacter(
  31621. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31622. {
  31623. front: {
  31624. height: math.unit(8 + 9/12, "feet"),
  31625. name: "Front",
  31626. image: {
  31627. source: "./media/characters/xander/front.svg",
  31628. extra: 848/673,
  31629. bottom: 62/910
  31630. }
  31631. },
  31632. },
  31633. [
  31634. {
  31635. name: "Normal",
  31636. height: math.unit(8 + 9/12, "feet"),
  31637. default: true
  31638. },
  31639. {
  31640. name: "Gaze Grabber",
  31641. height: math.unit(13 + 8/12, "feet")
  31642. },
  31643. {
  31644. name: "Jaw Dropper",
  31645. height: math.unit(27, "feet")
  31646. },
  31647. {
  31648. name: "Show Stopper",
  31649. height: math.unit(136, "feet")
  31650. },
  31651. {
  31652. name: "Superstar",
  31653. height: math.unit(1.9e6, "miles")
  31654. },
  31655. ]
  31656. ))
  31657. characterMakers.push(() => makeCharacter(
  31658. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31659. {
  31660. side: {
  31661. height: math.unit(2100, "feet"),
  31662. name: "Side",
  31663. image: {
  31664. source: "./media/characters/osiris/side.svg",
  31665. extra: 1105/939,
  31666. bottom: 167/1272
  31667. }
  31668. },
  31669. },
  31670. [
  31671. {
  31672. name: "Macro",
  31673. height: math.unit(2100, "feet"),
  31674. default: true
  31675. },
  31676. ]
  31677. ))
  31678. characterMakers.push(() => makeCharacter(
  31679. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31680. {
  31681. front: {
  31682. height: math.unit(6 + 8/12, "feet"),
  31683. weight: math.unit(225, "lb"),
  31684. name: "Front",
  31685. image: {
  31686. source: "./media/characters/rhys-londe/front.svg",
  31687. extra: 2258/2141,
  31688. bottom: 188/2446
  31689. }
  31690. },
  31691. back: {
  31692. height: math.unit(6 + 8/12, "feet"),
  31693. weight: math.unit(225, "lb"),
  31694. name: "Back",
  31695. image: {
  31696. source: "./media/characters/rhys-londe/back.svg",
  31697. extra: 2237/2137,
  31698. bottom: 63/2300
  31699. }
  31700. },
  31701. frontNsfw: {
  31702. height: math.unit(6 + 8/12, "feet"),
  31703. weight: math.unit(225, "lb"),
  31704. name: "Front (NSFW)",
  31705. image: {
  31706. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31707. extra: 2258/2141,
  31708. bottom: 188/2446
  31709. }
  31710. },
  31711. backNsfw: {
  31712. height: math.unit(6 + 8/12, "feet"),
  31713. weight: math.unit(225, "lb"),
  31714. name: "Back (NSFW)",
  31715. image: {
  31716. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31717. extra: 2237/2137,
  31718. bottom: 63/2300
  31719. }
  31720. },
  31721. dick: {
  31722. height: math.unit(30, "inches"),
  31723. name: "Dick",
  31724. image: {
  31725. source: "./media/characters/rhys-londe/dick.svg"
  31726. }
  31727. },
  31728. maw: {
  31729. height: math.unit(1.6, "feet"),
  31730. name: "Maw",
  31731. image: {
  31732. source: "./media/characters/rhys-londe/maw.svg"
  31733. }
  31734. },
  31735. },
  31736. [
  31737. {
  31738. name: "Normal",
  31739. height: math.unit(6 + 8/12, "feet"),
  31740. default: true
  31741. },
  31742. ]
  31743. ))
  31744. characterMakers.push(() => makeCharacter(
  31745. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31746. {
  31747. front: {
  31748. height: math.unit(3 + 10/12, "feet"),
  31749. weight: math.unit(90, "lb"),
  31750. name: "Front",
  31751. image: {
  31752. source: "./media/characters/taivas-ensim/front.svg",
  31753. extra: 1327/1216,
  31754. bottom: 96/1423
  31755. }
  31756. },
  31757. back: {
  31758. height: math.unit(3 + 10/12, "feet"),
  31759. weight: math.unit(90, "lb"),
  31760. name: "Back",
  31761. image: {
  31762. source: "./media/characters/taivas-ensim/back.svg",
  31763. extra: 1355/1247,
  31764. bottom: 11/1366
  31765. }
  31766. },
  31767. frontNsfw: {
  31768. height: math.unit(3 + 10/12, "feet"),
  31769. weight: math.unit(90, "lb"),
  31770. name: "Front (NSFW)",
  31771. image: {
  31772. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31773. extra: 1327/1216,
  31774. bottom: 96/1423
  31775. }
  31776. },
  31777. backNsfw: {
  31778. height: math.unit(3 + 10/12, "feet"),
  31779. weight: math.unit(90, "lb"),
  31780. name: "Back (NSFW)",
  31781. image: {
  31782. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31783. extra: 1355/1247,
  31784. bottom: 11/1366
  31785. }
  31786. },
  31787. },
  31788. [
  31789. {
  31790. name: "Normal",
  31791. height: math.unit(3 + 10/12, "feet"),
  31792. default: true
  31793. },
  31794. ]
  31795. ))
  31796. characterMakers.push(() => makeCharacter(
  31797. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31798. {
  31799. front: {
  31800. height: math.unit(9 + 6/12, "feet"),
  31801. weight: math.unit(940, "lb"),
  31802. name: "Front",
  31803. image: {
  31804. source: "./media/characters/byliss/front.svg",
  31805. extra: 1327/1290,
  31806. bottom: 82/1409
  31807. }
  31808. },
  31809. back: {
  31810. height: math.unit(9 + 6/12, "feet"),
  31811. weight: math.unit(940, "lb"),
  31812. name: "Back",
  31813. image: {
  31814. source: "./media/characters/byliss/back.svg",
  31815. extra: 1376/1349,
  31816. bottom: 9/1385
  31817. }
  31818. },
  31819. frontNsfw: {
  31820. height: math.unit(9 + 6/12, "feet"),
  31821. weight: math.unit(940, "lb"),
  31822. name: "Front (NSFW)",
  31823. image: {
  31824. source: "./media/characters/byliss/front-nsfw.svg",
  31825. extra: 1327/1290,
  31826. bottom: 82/1409
  31827. }
  31828. },
  31829. backNsfw: {
  31830. height: math.unit(9 + 6/12, "feet"),
  31831. weight: math.unit(940, "lb"),
  31832. name: "Back (NSFW)",
  31833. image: {
  31834. source: "./media/characters/byliss/back-nsfw.svg",
  31835. extra: 1376/1349,
  31836. bottom: 9/1385
  31837. }
  31838. },
  31839. },
  31840. [
  31841. {
  31842. name: "Normal",
  31843. height: math.unit(9 + 6/12, "feet"),
  31844. default: true
  31845. },
  31846. ]
  31847. ))
  31848. characterMakers.push(() => makeCharacter(
  31849. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31850. {
  31851. front: {
  31852. height: math.unit(5 + 2/12, "feet"),
  31853. weight: math.unit(200, "lb"),
  31854. name: "Front",
  31855. image: {
  31856. source: "./media/characters/noraly/front.svg",
  31857. extra: 4985/4773,
  31858. bottom: 150/5135
  31859. }
  31860. },
  31861. full: {
  31862. height: math.unit(5 + 2/12, "feet"),
  31863. weight: math.unit(164, "lb"),
  31864. name: "Full",
  31865. image: {
  31866. source: "./media/characters/noraly/full.svg",
  31867. extra: 1114/1059,
  31868. bottom: 35/1149
  31869. }
  31870. },
  31871. fuller: {
  31872. height: math.unit(5 + 2/12, "feet"),
  31873. weight: math.unit(230, "lb"),
  31874. name: "Fuller",
  31875. image: {
  31876. source: "./media/characters/noraly/fuller.svg",
  31877. extra: 1114/1059,
  31878. bottom: 35/1149
  31879. }
  31880. },
  31881. fullest: {
  31882. height: math.unit(5 + 2/12, "feet"),
  31883. weight: math.unit(300, "lb"),
  31884. name: "Fullest",
  31885. image: {
  31886. source: "./media/characters/noraly/fullest.svg",
  31887. extra: 1114/1059,
  31888. bottom: 35/1149
  31889. }
  31890. },
  31891. },
  31892. [
  31893. {
  31894. name: "Normal",
  31895. height: math.unit(5 + 2/12, "feet"),
  31896. default: true
  31897. },
  31898. ]
  31899. ))
  31900. characterMakers.push(() => makeCharacter(
  31901. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31902. {
  31903. front: {
  31904. height: math.unit(5 + 2/12, "feet"),
  31905. weight: math.unit(210, "lb"),
  31906. name: "Front",
  31907. image: {
  31908. source: "./media/characters/pera/front.svg",
  31909. extra: 1560/1531,
  31910. bottom: 165/1725
  31911. }
  31912. },
  31913. back: {
  31914. height: math.unit(5 + 2/12, "feet"),
  31915. weight: math.unit(210, "lb"),
  31916. name: "Back",
  31917. image: {
  31918. source: "./media/characters/pera/back.svg",
  31919. extra: 1523/1493,
  31920. bottom: 152/1675
  31921. }
  31922. },
  31923. dick: {
  31924. height: math.unit(2.4, "feet"),
  31925. name: "Dick",
  31926. image: {
  31927. source: "./media/characters/pera/dick.svg"
  31928. }
  31929. },
  31930. },
  31931. [
  31932. {
  31933. name: "Normal",
  31934. height: math.unit(5 + 2/12, "feet"),
  31935. default: true
  31936. },
  31937. ]
  31938. ))
  31939. characterMakers.push(() => makeCharacter(
  31940. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  31941. {
  31942. front: {
  31943. height: math.unit(12, "feet"),
  31944. weight: math.unit(3200, "lb"),
  31945. name: "Front",
  31946. image: {
  31947. source: "./media/characters/julian/front.svg",
  31948. extra: 2962/2701,
  31949. bottom: 184/3146
  31950. }
  31951. },
  31952. maw: {
  31953. height: math.unit(5.35, "feet"),
  31954. name: "Maw",
  31955. image: {
  31956. source: "./media/characters/julian/maw.svg"
  31957. }
  31958. },
  31959. paw: {
  31960. height: math.unit(3.07, "feet"),
  31961. name: "Paw",
  31962. image: {
  31963. source: "./media/characters/julian/paw.svg"
  31964. }
  31965. },
  31966. },
  31967. [
  31968. {
  31969. name: "Default",
  31970. height: math.unit(12, "feet"),
  31971. default: true
  31972. },
  31973. {
  31974. name: "Big",
  31975. height: math.unit(50, "feet")
  31976. },
  31977. {
  31978. name: "Really Big",
  31979. height: math.unit(1, "mile")
  31980. },
  31981. {
  31982. name: "Extremely Big",
  31983. height: math.unit(100, "miles")
  31984. },
  31985. {
  31986. name: "Planet Hugger",
  31987. height: math.unit(200, "megameters")
  31988. },
  31989. {
  31990. name: "Unreasonably Big",
  31991. height: math.unit(1e300, "meters")
  31992. },
  31993. ]
  31994. ))
  31995. characterMakers.push(() => makeCharacter(
  31996. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  31997. {
  31998. solgooleo: {
  31999. height: math.unit(4, "meters"),
  32000. weight: math.unit(6000*1.5, "kg"),
  32001. volume: math.unit(6000, "liters"),
  32002. name: "Solgooleo",
  32003. image: {
  32004. source: "./media/characters/pi/solgooleo.svg",
  32005. extra: 388/331,
  32006. bottom: 29/417
  32007. }
  32008. },
  32009. },
  32010. [
  32011. {
  32012. name: "Normal",
  32013. height: math.unit(4, "meters"),
  32014. default: true
  32015. },
  32016. ]
  32017. ))
  32018. characterMakers.push(() => makeCharacter(
  32019. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32020. {
  32021. front: {
  32022. height: math.unit(8 + 2/12, "feet"),
  32023. weight: math.unit(4, "tons"),
  32024. name: "Front",
  32025. image: {
  32026. source: "./media/characters/shaun/front.svg",
  32027. extra: 1550/1505,
  32028. bottom: 353/1903
  32029. }
  32030. },
  32031. },
  32032. [
  32033. {
  32034. name: "Lorg",
  32035. height: math.unit(8 + 2/12, "feet"),
  32036. default: true
  32037. },
  32038. ]
  32039. ))
  32040. characterMakers.push(() => makeCharacter(
  32041. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32042. {
  32043. front: {
  32044. height: math.unit(7, "feet"),
  32045. name: "Front",
  32046. image: {
  32047. source: "./media/characters/sini/front.svg",
  32048. extra: 726/678,
  32049. bottom: 35/761
  32050. }
  32051. },
  32052. back: {
  32053. height: math.unit(7, "feet"),
  32054. name: "Back",
  32055. image: {
  32056. source: "./media/characters/sini/back.svg",
  32057. extra: 743/701,
  32058. bottom: 12/755
  32059. }
  32060. },
  32061. mawAnthro: {
  32062. height: math.unit(2.14, "feet"),
  32063. name: "Maw (Anthro)",
  32064. image: {
  32065. source: "./media/characters/sini/maw-anthro.svg"
  32066. }
  32067. },
  32068. dick: {
  32069. height: math.unit(1.45, "feet"),
  32070. name: "Dick (Anthro)",
  32071. image: {
  32072. source: "./media/characters/sini/dick-anthro.svg"
  32073. }
  32074. },
  32075. feral: {
  32076. height: math.unit(13, "feet"),
  32077. name: "Feral",
  32078. image: {
  32079. source: "./media/characters/sini/feral.svg",
  32080. extra: 814/605,
  32081. bottom: 11/825
  32082. }
  32083. },
  32084. mawFeral: {
  32085. height: math.unit(4.6, "feet"),
  32086. name: "Maw-feral",
  32087. image: {
  32088. source: "./media/characters/sini/maw-feral.svg"
  32089. }
  32090. },
  32091. footFeral: {
  32092. height: math.unit(4.2, "feet"),
  32093. name: "Foot-feral",
  32094. image: {
  32095. source: "./media/characters/sini/foot-feral.svg"
  32096. }
  32097. },
  32098. },
  32099. [
  32100. {
  32101. name: "Normal",
  32102. height: math.unit(7, "feet"),
  32103. default: true
  32104. },
  32105. ]
  32106. ))
  32107. characterMakers.push(() => makeCharacter(
  32108. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32109. {
  32110. side: {
  32111. height: math.unit(13, "meters"),
  32112. weight: math.unit(9072, "kg"),
  32113. name: "Side",
  32114. image: {
  32115. source: "./media/characters/raylldo/side.svg",
  32116. extra: 403/344,
  32117. bottom: 42/445
  32118. }
  32119. },
  32120. leaping: {
  32121. height: math.unit(12.3, "meters"),
  32122. weight: math.unit(9072, "kg"),
  32123. name: "Leaping",
  32124. image: {
  32125. source: "./media/characters/raylldo/leaping.svg",
  32126. extra: 470/249,
  32127. bottom: 13/483
  32128. }
  32129. },
  32130. flying: {
  32131. height: math.unit(18, "meters"),
  32132. weight: math.unit(9072, "kg"),
  32133. name: "Flying",
  32134. image: {
  32135. source: "./media/characters/raylldo/flying.svg"
  32136. }
  32137. },
  32138. head: {
  32139. height: math.unit(5.85, "meters"),
  32140. name: "Head",
  32141. image: {
  32142. source: "./media/characters/raylldo/head.svg"
  32143. }
  32144. },
  32145. maw: {
  32146. height: math.unit(5.32, "meters"),
  32147. name: "Maw",
  32148. image: {
  32149. source: "./media/characters/raylldo/maw.svg"
  32150. }
  32151. },
  32152. eye: {
  32153. height: math.unit(0.54, "meters"),
  32154. name: "Eye",
  32155. image: {
  32156. source: "./media/characters/raylldo/eye.svg"
  32157. }
  32158. },
  32159. },
  32160. [
  32161. {
  32162. name: "Normal",
  32163. height: math.unit(13, "meters"),
  32164. default: true
  32165. },
  32166. ]
  32167. ))
  32168. characterMakers.push(() => makeCharacter(
  32169. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32170. {
  32171. anthroFront: {
  32172. height: math.unit(9, "feet"),
  32173. weight: math.unit(600, "lb"),
  32174. name: "Anthro (Front)",
  32175. image: {
  32176. source: "./media/characters/glint/anthro-front.svg",
  32177. extra: 1097/1018,
  32178. bottom: 28/1125
  32179. }
  32180. },
  32181. anthroBack: {
  32182. height: math.unit(9, "feet"),
  32183. weight: math.unit(600, "lb"),
  32184. name: "Anthro (Back)",
  32185. image: {
  32186. source: "./media/characters/glint/anthro-back.svg",
  32187. extra: 1154/997,
  32188. bottom: 36/1190
  32189. }
  32190. },
  32191. feral: {
  32192. height: math.unit(11, "feet"),
  32193. weight: math.unit(50000, "lb"),
  32194. name: "Feral",
  32195. image: {
  32196. source: "./media/characters/glint/feral.svg",
  32197. extra: 3035/1585,
  32198. bottom: 1169/4204
  32199. }
  32200. },
  32201. dickAnthro: {
  32202. height: math.unit(0.7, "meters"),
  32203. name: "Dick (Anthro)",
  32204. image: {
  32205. source: "./media/characters/glint/dick-anthro.svg"
  32206. }
  32207. },
  32208. dickFeral: {
  32209. height: math.unit(2.65, "meters"),
  32210. name: "Dick (Feral)",
  32211. image: {
  32212. source: "./media/characters/glint/dick-feral.svg"
  32213. }
  32214. },
  32215. slitHidden: {
  32216. height: math.unit(5.85, "meters"),
  32217. name: "Slit (Hidden)",
  32218. image: {
  32219. source: "./media/characters/glint/slit-hidden.svg"
  32220. }
  32221. },
  32222. slitErect: {
  32223. height: math.unit(5.85, "meters"),
  32224. name: "Slit (Erect)",
  32225. image: {
  32226. source: "./media/characters/glint/slit-erect.svg"
  32227. }
  32228. },
  32229. mawAnthro: {
  32230. height: math.unit(0.63, "meters"),
  32231. name: "Maw (Anthro)",
  32232. image: {
  32233. source: "./media/characters/glint/maw.svg"
  32234. }
  32235. },
  32236. mawFeral: {
  32237. height: math.unit(2.89, "meters"),
  32238. name: "Maw (Feral)",
  32239. image: {
  32240. source: "./media/characters/glint/maw.svg"
  32241. }
  32242. },
  32243. },
  32244. [
  32245. {
  32246. name: "Normal",
  32247. height: math.unit(9, "feet"),
  32248. default: true
  32249. },
  32250. ]
  32251. ))
  32252. characterMakers.push(() => makeCharacter(
  32253. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32254. {
  32255. side: {
  32256. height: math.unit(15, "feet"),
  32257. weight: math.unit(5000, "kg"),
  32258. name: "Side",
  32259. image: {
  32260. source: "./media/characters/kairne/side.svg",
  32261. extra: 979/811,
  32262. bottom: 13/992
  32263. }
  32264. },
  32265. front: {
  32266. height: math.unit(15, "feet"),
  32267. weight: math.unit(5000, "kg"),
  32268. name: "Front",
  32269. image: {
  32270. source: "./media/characters/kairne/front.svg",
  32271. extra: 908/814,
  32272. bottom: 26/934
  32273. }
  32274. },
  32275. sideNsfw: {
  32276. height: math.unit(15, "feet"),
  32277. weight: math.unit(5000, "kg"),
  32278. name: "Side (NSFW)",
  32279. image: {
  32280. source: "./media/characters/kairne/side-nsfw.svg",
  32281. extra: 979/811,
  32282. bottom: 13/992
  32283. }
  32284. },
  32285. frontNsfw: {
  32286. height: math.unit(15, "feet"),
  32287. weight: math.unit(5000, "kg"),
  32288. name: "Front (NSFW)",
  32289. image: {
  32290. source: "./media/characters/kairne/front-nsfw.svg",
  32291. extra: 908/814,
  32292. bottom: 26/934
  32293. }
  32294. },
  32295. dickCaged: {
  32296. height: math.unit(0.65, "meters"),
  32297. name: "Dick-caged",
  32298. image: {
  32299. source: "./media/characters/kairne/dick-caged.svg"
  32300. }
  32301. },
  32302. dick: {
  32303. height: math.unit(0.79, "meters"),
  32304. name: "Dick",
  32305. image: {
  32306. source: "./media/characters/kairne/dick.svg"
  32307. }
  32308. },
  32309. genitals: {
  32310. height: math.unit(1.29, "meters"),
  32311. name: "Genitals",
  32312. image: {
  32313. source: "./media/characters/kairne/genitals.svg"
  32314. }
  32315. },
  32316. maw: {
  32317. height: math.unit(1.73, "meters"),
  32318. name: "Maw",
  32319. image: {
  32320. source: "./media/characters/kairne/maw.svg"
  32321. }
  32322. },
  32323. },
  32324. [
  32325. {
  32326. name: "Normal",
  32327. height: math.unit(15, "feet"),
  32328. default: true
  32329. },
  32330. ]
  32331. ))
  32332. characterMakers.push(() => makeCharacter(
  32333. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32334. {
  32335. front: {
  32336. height: math.unit(5 + 8/12, "feet"),
  32337. weight: math.unit(139, "lb"),
  32338. name: "Front",
  32339. image: {
  32340. source: "./media/characters/biscuit-jackal/front.svg",
  32341. extra: 2106/1961,
  32342. bottom: 58/2164
  32343. }
  32344. },
  32345. back: {
  32346. height: math.unit(5 + 8/12, "feet"),
  32347. weight: math.unit(139, "lb"),
  32348. name: "Back",
  32349. image: {
  32350. source: "./media/characters/biscuit-jackal/back.svg",
  32351. extra: 2132/1976,
  32352. bottom: 57/2189
  32353. }
  32354. },
  32355. werejackal: {
  32356. height: math.unit(6 + 3/12, "feet"),
  32357. weight: math.unit(188, "lb"),
  32358. name: "Werejackal",
  32359. image: {
  32360. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32361. extra: 2373/2178,
  32362. bottom: 53/2426
  32363. }
  32364. },
  32365. },
  32366. [
  32367. {
  32368. name: "Normal",
  32369. height: math.unit(5 + 8/12, "feet"),
  32370. default: true
  32371. },
  32372. ]
  32373. ))
  32374. characterMakers.push(() => makeCharacter(
  32375. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32376. {
  32377. front: {
  32378. height: math.unit(140, "cm"),
  32379. weight: math.unit(45, "kg"),
  32380. name: "Front",
  32381. image: {
  32382. source: "./media/characters/tayra-white/front.svg",
  32383. extra: 2229/2192,
  32384. bottom: 75/2304
  32385. }
  32386. },
  32387. },
  32388. [
  32389. {
  32390. name: "Normal",
  32391. height: math.unit(140, "cm"),
  32392. default: true
  32393. },
  32394. ]
  32395. ))
  32396. characterMakers.push(() => makeCharacter(
  32397. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32398. {
  32399. front: {
  32400. height: math.unit(4 + 5/12, "feet"),
  32401. name: "Front",
  32402. image: {
  32403. source: "./media/characters/scoop/front.svg",
  32404. extra: 1257/1136,
  32405. bottom: 69/1326
  32406. }
  32407. },
  32408. back: {
  32409. height: math.unit(4 + 5/12, "feet"),
  32410. name: "Back",
  32411. image: {
  32412. source: "./media/characters/scoop/back.svg",
  32413. extra: 1321/1152,
  32414. bottom: 32/1353
  32415. }
  32416. },
  32417. maw: {
  32418. height: math.unit(0.68, "feet"),
  32419. name: "Maw",
  32420. image: {
  32421. source: "./media/characters/scoop/maw.svg"
  32422. }
  32423. },
  32424. },
  32425. [
  32426. {
  32427. name: "Really Small",
  32428. height: math.unit(1, "mm")
  32429. },
  32430. {
  32431. name: "Micro",
  32432. height: math.unit(1, "inch")
  32433. },
  32434. {
  32435. name: "Normal",
  32436. height: math.unit(4 + 5/12, "feet"),
  32437. default: true
  32438. },
  32439. {
  32440. name: "Macro",
  32441. height: math.unit(200, "feet")
  32442. },
  32443. {
  32444. name: "Megamacro",
  32445. height: math.unit(3240, "feet")
  32446. },
  32447. {
  32448. name: "Teramacro",
  32449. height: math.unit(2500, "miles")
  32450. },
  32451. ]
  32452. ))
  32453. characterMakers.push(() => makeCharacter(
  32454. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32455. {
  32456. front: {
  32457. height: math.unit(15 + 7/12, "feet"),
  32458. name: "Front",
  32459. image: {
  32460. source: "./media/characters/saphinara/front.svg",
  32461. extra: 604/546,
  32462. bottom: 19/623
  32463. }
  32464. },
  32465. side: {
  32466. height: math.unit(15 + 7/12, "feet"),
  32467. name: "Side",
  32468. image: {
  32469. source: "./media/characters/saphinara/side.svg",
  32470. extra: 605/547,
  32471. bottom: 6/611
  32472. }
  32473. },
  32474. back: {
  32475. height: math.unit(15 + 7/12, "feet"),
  32476. name: "Back",
  32477. image: {
  32478. source: "./media/characters/saphinara/back.svg",
  32479. extra: 591/531,
  32480. bottom: 13/604
  32481. }
  32482. },
  32483. frontTail: {
  32484. height: math.unit(15 + 7/12, "feet"),
  32485. name: "Front (Full Tail)",
  32486. image: {
  32487. source: "./media/characters/saphinara/front-tail.svg",
  32488. extra: 748/547,
  32489. bottom: 66/814
  32490. }
  32491. },
  32492. },
  32493. [
  32494. {
  32495. name: "Normal",
  32496. height: math.unit(15 + 7/12, "feet"),
  32497. default: true
  32498. },
  32499. {
  32500. name: "Angry",
  32501. height: math.unit(30 + 6/12, "feet")
  32502. },
  32503. {
  32504. name: "Enraged",
  32505. height: math.unit(102 + 1/12, "feet")
  32506. },
  32507. ]
  32508. ))
  32509. characterMakers.push(() => makeCharacter(
  32510. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32511. {
  32512. front: {
  32513. height: math.unit(6 + 8/12, "feet"),
  32514. weight: math.unit(300, "lb"),
  32515. name: "Front",
  32516. image: {
  32517. source: "./media/characters/jrain/front.svg",
  32518. extra: 3039/2865,
  32519. bottom: 399/3438
  32520. }
  32521. },
  32522. back: {
  32523. height: math.unit(6 + 8/12, "feet"),
  32524. weight: math.unit(300, "lb"),
  32525. name: "Back",
  32526. image: {
  32527. source: "./media/characters/jrain/back.svg",
  32528. extra: 3089/2938,
  32529. bottom: 172/3261
  32530. }
  32531. },
  32532. head: {
  32533. height: math.unit(2.14, "feet"),
  32534. name: "Head",
  32535. image: {
  32536. source: "./media/characters/jrain/head.svg"
  32537. }
  32538. },
  32539. maw: {
  32540. height: math.unit(1.77, "feet"),
  32541. name: "Maw",
  32542. image: {
  32543. source: "./media/characters/jrain/maw.svg"
  32544. }
  32545. },
  32546. leftHand: {
  32547. height: math.unit(1.1, "feet"),
  32548. name: "Left Hand",
  32549. image: {
  32550. source: "./media/characters/jrain/left-hand.svg"
  32551. }
  32552. },
  32553. rightHand: {
  32554. height: math.unit(1.1, "feet"),
  32555. name: "Right Hand",
  32556. image: {
  32557. source: "./media/characters/jrain/right-hand.svg"
  32558. }
  32559. },
  32560. eye: {
  32561. height: math.unit(0.35, "feet"),
  32562. name: "Eye",
  32563. image: {
  32564. source: "./media/characters/jrain/eye.svg"
  32565. }
  32566. },
  32567. },
  32568. [
  32569. {
  32570. name: "Normal",
  32571. height: math.unit(6 + 8/12, "feet"),
  32572. default: true
  32573. },
  32574. {
  32575. name: "Casually Large",
  32576. height: math.unit(25, "feet")
  32577. },
  32578. {
  32579. name: "Giant",
  32580. height: math.unit(100, "feet")
  32581. },
  32582. {
  32583. name: "Kaiju",
  32584. height: math.unit(300, "feet")
  32585. },
  32586. ]
  32587. ))
  32588. characterMakers.push(() => makeCharacter(
  32589. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32590. {
  32591. dragon: {
  32592. height: math.unit(5, "meters"),
  32593. name: "Dragon",
  32594. image: {
  32595. source: "./media/characters/sabrina/dragon.svg",
  32596. extra: 3670 / 2365,
  32597. bottom: 333 / 4003
  32598. }
  32599. },
  32600. gryphon: {
  32601. height: math.unit(3, "meters"),
  32602. name: "Gryphon",
  32603. image: {
  32604. source: "./media/characters/sabrina/gryphon.svg",
  32605. extra: 1576 / 945,
  32606. bottom: 71 / 1647
  32607. }
  32608. },
  32609. snake: {
  32610. height: math.unit(12, "meters"),
  32611. name: "Snake",
  32612. image: {
  32613. source: "./media/characters/sabrina/snake.svg",
  32614. extra: 1758 / 1320,
  32615. bottom: 186 / 1944
  32616. }
  32617. },
  32618. collar: {
  32619. height: math.unit(1.86, "meters"),
  32620. name: "Collar",
  32621. image: {
  32622. source: "./media/characters/sabrina/collar.svg"
  32623. }
  32624. },
  32625. eye: {
  32626. height: math.unit(0.53, "meters"),
  32627. name: "Eye",
  32628. image: {
  32629. source: "./media/characters/sabrina/eye.svg"
  32630. }
  32631. },
  32632. foot: {
  32633. height: math.unit(1.86, "meters"),
  32634. name: "Foot",
  32635. image: {
  32636. source: "./media/characters/sabrina/foot.svg"
  32637. }
  32638. },
  32639. hand: {
  32640. height: math.unit(1.32, "meters"),
  32641. name: "Hand",
  32642. image: {
  32643. source: "./media/characters/sabrina/hand.svg"
  32644. }
  32645. },
  32646. head: {
  32647. height: math.unit(2.44, "meters"),
  32648. name: "Head",
  32649. image: {
  32650. source: "./media/characters/sabrina/head.svg"
  32651. }
  32652. },
  32653. headAngry: {
  32654. height: math.unit(2.44, "meters"),
  32655. name: "Head (Angry))",
  32656. image: {
  32657. source: "./media/characters/sabrina/head-angry.svg"
  32658. }
  32659. },
  32660. maw: {
  32661. height: math.unit(1.65, "meters"),
  32662. name: "Maw",
  32663. image: {
  32664. source: "./media/characters/sabrina/maw.svg"
  32665. }
  32666. },
  32667. spikes: {
  32668. height: math.unit(1.69, "meters"),
  32669. name: "Spikes",
  32670. image: {
  32671. source: "./media/characters/sabrina/spikes.svg"
  32672. }
  32673. },
  32674. stomach: {
  32675. height: math.unit(1.15, "meters"),
  32676. name: "Stomach",
  32677. image: {
  32678. source: "./media/characters/sabrina/stomach.svg"
  32679. }
  32680. },
  32681. tongue: {
  32682. height: math.unit(1.27, "meters"),
  32683. name: "Tongue",
  32684. image: {
  32685. source: "./media/characters/sabrina/tongue.svg"
  32686. }
  32687. },
  32688. wingDorsal: {
  32689. height: math.unit(4.85, "meters"),
  32690. name: "Wing (Dorsal)",
  32691. image: {
  32692. source: "./media/characters/sabrina/wing-dorsal.svg"
  32693. }
  32694. },
  32695. wingVentral: {
  32696. height: math.unit(4.85, "meters"),
  32697. name: "Wing (Ventral)",
  32698. image: {
  32699. source: "./media/characters/sabrina/wing-ventral.svg"
  32700. }
  32701. },
  32702. },
  32703. [
  32704. {
  32705. name: "Normal",
  32706. height: math.unit(5, "meters"),
  32707. default: true
  32708. },
  32709. ]
  32710. ))
  32711. characterMakers.push(() => makeCharacter(
  32712. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32713. {
  32714. frontMaid: {
  32715. height: math.unit(5 + 5/12, "feet"),
  32716. weight: math.unit(130, "lb"),
  32717. name: "Front (Maid)",
  32718. image: {
  32719. source: "./media/characters/midnight-tales/front-maid.svg",
  32720. extra: 489/454,
  32721. bottom: 61/550
  32722. }
  32723. },
  32724. frontFormal: {
  32725. height: math.unit(5 + 5/12, "feet"),
  32726. weight: math.unit(130, "lb"),
  32727. name: "Front (Formal)",
  32728. image: {
  32729. source: "./media/characters/midnight-tales/front-formal.svg",
  32730. extra: 489/454,
  32731. bottom: 61/550
  32732. }
  32733. },
  32734. back: {
  32735. height: math.unit(5 + 5/12, "feet"),
  32736. weight: math.unit(130, "lb"),
  32737. name: "Back",
  32738. image: {
  32739. source: "./media/characters/midnight-tales/back.svg",
  32740. extra: 498/456,
  32741. bottom: 33/531
  32742. }
  32743. },
  32744. frontBeast: {
  32745. height: math.unit(40, "feet"),
  32746. weight: math.unit(64000, "lb"),
  32747. name: "Front (Beast)",
  32748. image: {
  32749. source: "./media/characters/midnight-tales/front-beast.svg",
  32750. extra: 927/860,
  32751. bottom: 53/980
  32752. }
  32753. },
  32754. backBeast: {
  32755. height: math.unit(40, "feet"),
  32756. weight: math.unit(64000, "lb"),
  32757. name: "Back (Beast)",
  32758. image: {
  32759. source: "./media/characters/midnight-tales/back-beast.svg",
  32760. extra: 929/855,
  32761. bottom: 16/945
  32762. }
  32763. },
  32764. footBeast: {
  32765. height: math.unit(6.7, "feet"),
  32766. name: "Foot (Beast)",
  32767. image: {
  32768. source: "./media/characters/midnight-tales/foot-beast.svg"
  32769. }
  32770. },
  32771. headBeast: {
  32772. height: math.unit(8, "feet"),
  32773. name: "Head (Beast)",
  32774. image: {
  32775. source: "./media/characters/midnight-tales/head-beast.svg"
  32776. }
  32777. },
  32778. },
  32779. [
  32780. {
  32781. name: "Normal",
  32782. height: math.unit(5 + 5 / 12, "feet"),
  32783. default: true
  32784. },
  32785. {
  32786. name: "Macro",
  32787. height: math.unit(25, "feet")
  32788. },
  32789. ]
  32790. ))
  32791. characterMakers.push(() => makeCharacter(
  32792. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32793. {
  32794. front: {
  32795. height: math.unit(5 + 10/12, "feet"),
  32796. name: "Front",
  32797. image: {
  32798. source: "./media/characters/argon/front.svg",
  32799. extra: 2009/1935,
  32800. bottom: 118/2127
  32801. }
  32802. },
  32803. back: {
  32804. height: math.unit(5 + 10/12, "feet"),
  32805. name: "Back",
  32806. image: {
  32807. source: "./media/characters/argon/back.svg",
  32808. extra: 2047/1992,
  32809. bottom: 20/2067
  32810. }
  32811. },
  32812. frontDressed: {
  32813. height: math.unit(5 + 10/12, "feet"),
  32814. name: "Front (Dressed)",
  32815. image: {
  32816. source: "./media/characters/argon/front-dressed.svg",
  32817. extra: 2009/1935,
  32818. bottom: 118/2127
  32819. }
  32820. },
  32821. },
  32822. [
  32823. {
  32824. name: "Normal",
  32825. height: math.unit(5 + 10/12, "feet"),
  32826. default: true
  32827. },
  32828. ]
  32829. ))
  32830. characterMakers.push(() => makeCharacter(
  32831. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32832. {
  32833. front: {
  32834. height: math.unit(8 + 6/12, "feet"),
  32835. weight: math.unit(1150, "lb"),
  32836. name: "Front",
  32837. image: {
  32838. source: "./media/characters/kichi/front.svg",
  32839. extra: 1267/1164,
  32840. bottom: 61/1328
  32841. }
  32842. },
  32843. back: {
  32844. height: math.unit(8 + 6/12, "feet"),
  32845. weight: math.unit(1150, "lb"),
  32846. name: "Back",
  32847. image: {
  32848. source: "./media/characters/kichi/back.svg",
  32849. extra: 1273/1166,
  32850. bottom: 33/1306
  32851. }
  32852. },
  32853. },
  32854. [
  32855. {
  32856. name: "Normal",
  32857. height: math.unit(8 + 6/12, "feet"),
  32858. default: true
  32859. },
  32860. ]
  32861. ))
  32862. characterMakers.push(() => makeCharacter(
  32863. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32864. {
  32865. front: {
  32866. height: math.unit(6, "feet"),
  32867. weight: math.unit(210, "lb"),
  32868. name: "Front",
  32869. image: {
  32870. source: "./media/characters/manetel-greyscale/front.svg",
  32871. extra: 350/312,
  32872. bottom: 8/358
  32873. }
  32874. },
  32875. },
  32876. [
  32877. {
  32878. name: "Micro",
  32879. height: math.unit(2, "inches")
  32880. },
  32881. {
  32882. name: "Normal",
  32883. height: math.unit(6, "feet"),
  32884. default: true
  32885. },
  32886. {
  32887. name: "Minimacro",
  32888. height: math.unit(17, "feet")
  32889. },
  32890. {
  32891. name: "Macro",
  32892. height: math.unit(117, "feet")
  32893. },
  32894. ]
  32895. ))
  32896. characterMakers.push(() => makeCharacter(
  32897. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32898. {
  32899. side: {
  32900. height: math.unit(5 + 1/12, "feet"),
  32901. weight: math.unit(418, "lb"),
  32902. name: "Side",
  32903. image: {
  32904. source: "./media/characters/softpurr/side.svg",
  32905. extra: 1993/1945,
  32906. bottom: 134/2127
  32907. }
  32908. },
  32909. front: {
  32910. height: math.unit(5 + 1/12, "feet"),
  32911. weight: math.unit(418, "lb"),
  32912. name: "Front",
  32913. image: {
  32914. source: "./media/characters/softpurr/front.svg",
  32915. extra: 1950/1856,
  32916. bottom: 174/2124
  32917. }
  32918. },
  32919. paw: {
  32920. height: math.unit(1, "feet"),
  32921. name: "Paw",
  32922. image: {
  32923. source: "./media/characters/softpurr/paw.svg"
  32924. }
  32925. },
  32926. },
  32927. [
  32928. {
  32929. name: "Normal",
  32930. height: math.unit(5 + 1/12, "feet"),
  32931. default: true
  32932. },
  32933. ]
  32934. ))
  32935. characterMakers.push(() => makeCharacter(
  32936. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  32937. {
  32938. front: {
  32939. height: math.unit(260, "meters"),
  32940. name: "Front",
  32941. image: {
  32942. source: "./media/characters/anahita/front.svg",
  32943. extra: 665/635,
  32944. bottom: 89/754
  32945. }
  32946. },
  32947. },
  32948. [
  32949. {
  32950. name: "Macro",
  32951. height: math.unit(260, "meters"),
  32952. default: true
  32953. },
  32954. ]
  32955. ))
  32956. characterMakers.push(() => makeCharacter(
  32957. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  32958. {
  32959. front: {
  32960. height: math.unit(4 + 10/12, "feet"),
  32961. weight: math.unit(160, "lb"),
  32962. name: "Front",
  32963. image: {
  32964. source: "./media/characters/chip-mouse/front.svg",
  32965. extra: 3528/3408,
  32966. bottom: 0/3528
  32967. }
  32968. },
  32969. frontNsfw: {
  32970. height: math.unit(4 + 10/12, "feet"),
  32971. weight: math.unit(160, "lb"),
  32972. name: "Front (NSFW)",
  32973. image: {
  32974. source: "./media/characters/chip-mouse/front-nsfw.svg",
  32975. extra: 3528/3408,
  32976. bottom: 0/3528
  32977. }
  32978. },
  32979. },
  32980. [
  32981. {
  32982. name: "Normal",
  32983. height: math.unit(4 + 10/12, "feet"),
  32984. default: true
  32985. },
  32986. ]
  32987. ))
  32988. characterMakers.push(() => makeCharacter(
  32989. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  32990. {
  32991. side: {
  32992. height: math.unit(10, "feet"),
  32993. weight: math.unit(14000, "lb"),
  32994. name: "Side",
  32995. image: {
  32996. source: "./media/characters/kremm/side.svg",
  32997. extra: 1390/1053,
  32998. bottom: 90/1480
  32999. }
  33000. },
  33001. gut: {
  33002. height: math.unit(5.8, "feet"),
  33003. name: "Gut",
  33004. image: {
  33005. source: "./media/characters/kremm/gut.svg"
  33006. }
  33007. },
  33008. ass: {
  33009. height: math.unit(6.1, "feet"),
  33010. name: "Ass",
  33011. image: {
  33012. source: "./media/characters/kremm/ass.svg"
  33013. }
  33014. },
  33015. jaws: {
  33016. height: math.unit(2.2, "feet"),
  33017. name: "Jaws",
  33018. image: {
  33019. source: "./media/characters/kremm/jaws.svg"
  33020. }
  33021. },
  33022. dick: {
  33023. height: math.unit(4.26, "feet"),
  33024. name: "Dick",
  33025. image: {
  33026. source: "./media/characters/kremm/dick.svg"
  33027. }
  33028. },
  33029. },
  33030. [
  33031. {
  33032. name: "Normal",
  33033. height: math.unit(10, "feet"),
  33034. default: true
  33035. },
  33036. ]
  33037. ))
  33038. characterMakers.push(() => makeCharacter(
  33039. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33040. {
  33041. front: {
  33042. height: math.unit(30, "stories"),
  33043. name: "Front",
  33044. image: {
  33045. source: "./media/characters/kai/front.svg",
  33046. extra: 1892/1718,
  33047. bottom: 162/2054
  33048. }
  33049. },
  33050. },
  33051. [
  33052. {
  33053. name: "Macro",
  33054. height: math.unit(30, "stories"),
  33055. default: true
  33056. },
  33057. ]
  33058. ))
  33059. characterMakers.push(() => makeCharacter(
  33060. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33061. {
  33062. front: {
  33063. height: math.unit(6 + 4/12, "feet"),
  33064. weight: math.unit(145, "lb"),
  33065. name: "Front",
  33066. image: {
  33067. source: "./media/characters/sykes/front.svg",
  33068. extra: 1321 / 1187,
  33069. bottom: 66 / 1387
  33070. }
  33071. },
  33072. back: {
  33073. height: math.unit(6 + 4/12, "feet"),
  33074. weight: math.unit(145, "lb"),
  33075. name: "Back",
  33076. image: {
  33077. source: "./media/characters/sykes/back.svg",
  33078. extra: 1326/1181,
  33079. bottom: 31/1357
  33080. }
  33081. },
  33082. handBack: {
  33083. height: math.unit(0.9, "feet"),
  33084. name: "Hand (Back)",
  33085. image: {
  33086. source: "./media/characters/sykes/hand-back.svg"
  33087. }
  33088. },
  33089. handFront: {
  33090. height: math.unit(0.839, "feet"),
  33091. name: "Hand (Front)",
  33092. image: {
  33093. source: "./media/characters/sykes/hand-front.svg"
  33094. }
  33095. },
  33096. leftFoot: {
  33097. height: math.unit(1.2, "feet"),
  33098. name: "Foot (Left)",
  33099. image: {
  33100. source: "./media/characters/sykes/foot-left.svg"
  33101. }
  33102. },
  33103. rightFoot: {
  33104. height: math.unit(1.2, "feet"),
  33105. name: "Foot (Right)",
  33106. image: {
  33107. source: "./media/characters/sykes/foot-right.svg"
  33108. }
  33109. },
  33110. maw: {
  33111. height: math.unit(1.93, "feet"),
  33112. name: "Maw",
  33113. image: {
  33114. source: "./media/characters/sykes/maw.svg"
  33115. }
  33116. },
  33117. teeth: {
  33118. height: math.unit(0.51, "feet"),
  33119. name: "Teeth",
  33120. image: {
  33121. source: "./media/characters/sykes/teeth.svg"
  33122. }
  33123. },
  33124. tongue: {
  33125. height: math.unit(2.13, "feet"),
  33126. name: "Tongue",
  33127. image: {
  33128. source: "./media/characters/sykes/tongue.svg"
  33129. }
  33130. },
  33131. uvula: {
  33132. height: math.unit(0.16, "feet"),
  33133. name: "Uvula",
  33134. image: {
  33135. source: "./media/characters/sykes/uvula.svg"
  33136. }
  33137. },
  33138. collar: {
  33139. height: math.unit(0.287, "feet"),
  33140. name: "Collar",
  33141. image: {
  33142. source: "./media/characters/sykes/collar.svg"
  33143. }
  33144. },
  33145. },
  33146. [
  33147. {
  33148. name: "Shrunken",
  33149. height: math.unit(5, "inches")
  33150. },
  33151. {
  33152. name: "Normal",
  33153. height: math.unit(6 + 4 / 12, "feet"),
  33154. default: true
  33155. },
  33156. {
  33157. name: "Big",
  33158. height: math.unit(15, "feet")
  33159. },
  33160. ]
  33161. ))
  33162. characterMakers.push(() => makeCharacter(
  33163. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33164. {
  33165. front: {
  33166. height: math.unit(5 + 8/12, "feet"),
  33167. weight: math.unit(190, "lb"),
  33168. name: "Front",
  33169. image: {
  33170. source: "./media/characters/oven-otter/front.svg",
  33171. extra: 1809/1740,
  33172. bottom: 181/1990
  33173. }
  33174. },
  33175. back: {
  33176. height: math.unit(5 + 8/12, "feet"),
  33177. weight: math.unit(190, "lb"),
  33178. name: "Back",
  33179. image: {
  33180. source: "./media/characters/oven-otter/back.svg",
  33181. extra: 1709/1635,
  33182. bottom: 118/1827
  33183. }
  33184. },
  33185. hand: {
  33186. height: math.unit(1.07, "feet"),
  33187. name: "Hand",
  33188. image: {
  33189. source: "./media/characters/oven-otter/hand.svg"
  33190. }
  33191. },
  33192. beans: {
  33193. height: math.unit(1.74, "feet"),
  33194. name: "Beans",
  33195. image: {
  33196. source: "./media/characters/oven-otter/beans.svg"
  33197. }
  33198. },
  33199. },
  33200. [
  33201. {
  33202. name: "Micro",
  33203. height: math.unit(0.5, "inches")
  33204. },
  33205. {
  33206. name: "Normal",
  33207. height: math.unit(5 + 8/12, "feet"),
  33208. default: true
  33209. },
  33210. {
  33211. name: "Macro",
  33212. height: math.unit(250, "feet")
  33213. },
  33214. {
  33215. name: "Really High",
  33216. height: math.unit(420, "feet")
  33217. },
  33218. ]
  33219. ))
  33220. characterMakers.push(() => makeCharacter(
  33221. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33222. {
  33223. front: {
  33224. height: math.unit(5, "meters"),
  33225. weight: math.unit(292000000000000, "kg"),
  33226. name: "Front",
  33227. image: {
  33228. source: "./media/characters/devourer/front.svg",
  33229. extra: 1800/1733,
  33230. bottom: 211/2011
  33231. }
  33232. },
  33233. maw: {
  33234. height: math.unit(1.1, "meter"),
  33235. name: "Maw",
  33236. image: {
  33237. source: "./media/characters/devourer/maw.svg"
  33238. }
  33239. },
  33240. },
  33241. [
  33242. {
  33243. name: "Small",
  33244. height: math.unit(3, "meters")
  33245. },
  33246. {
  33247. name: "Large",
  33248. height: math.unit(5, "meters"),
  33249. default: true
  33250. },
  33251. ]
  33252. ))
  33253. characterMakers.push(() => makeCharacter(
  33254. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33255. {
  33256. front: {
  33257. height: math.unit(6, "feet"),
  33258. weight: math.unit(400, "lb"),
  33259. name: "Front",
  33260. image: {
  33261. source: "./media/characters/ellarby/front.svg",
  33262. extra: 1909/1763,
  33263. bottom: 80/1989
  33264. }
  33265. },
  33266. back: {
  33267. height: math.unit(6, "feet"),
  33268. weight: math.unit(400, "lb"),
  33269. name: "Back",
  33270. image: {
  33271. source: "./media/characters/ellarby/back.svg",
  33272. extra: 1914/1784,
  33273. bottom: 172/2086
  33274. }
  33275. },
  33276. },
  33277. [
  33278. {
  33279. name: "Mischief",
  33280. height: math.unit(18, "inches")
  33281. },
  33282. {
  33283. name: "Trouble",
  33284. height: math.unit(12, "feet")
  33285. },
  33286. {
  33287. name: "Havoc",
  33288. height: math.unit(200, "feet"),
  33289. default: true
  33290. },
  33291. {
  33292. name: "Pandemonium",
  33293. height: math.unit(1, "mile")
  33294. },
  33295. {
  33296. name: "Catastrophe",
  33297. height: math.unit(100, "miles")
  33298. },
  33299. ]
  33300. ))
  33301. characterMakers.push(() => makeCharacter(
  33302. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33303. {
  33304. front: {
  33305. height: math.unit(4.7, "meters"),
  33306. weight: math.unit(6500, "kg"),
  33307. name: "Front",
  33308. image: {
  33309. source: "./media/characters/vex/front.svg",
  33310. extra: 1288/1140,
  33311. bottom: 100/1388
  33312. }
  33313. },
  33314. },
  33315. [
  33316. {
  33317. name: "Normal",
  33318. height: math.unit(4.7, "meters"),
  33319. default: true
  33320. },
  33321. ]
  33322. ))
  33323. characterMakers.push(() => makeCharacter(
  33324. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33325. {
  33326. normal: {
  33327. height: math.unit(6, "feet"),
  33328. weight: math.unit(350, "lb"),
  33329. name: "Normal",
  33330. image: {
  33331. source: "./media/characters/teshy/normal.svg",
  33332. extra: 1795/1735,
  33333. bottom: 16/1811
  33334. }
  33335. },
  33336. monsterFront: {
  33337. height: math.unit(12, "feet"),
  33338. weight: math.unit(4700, "lb"),
  33339. name: "Monster (Front)",
  33340. image: {
  33341. source: "./media/characters/teshy/monster-front.svg",
  33342. extra: 2042/2034,
  33343. bottom: 128/2170
  33344. }
  33345. },
  33346. monsterSide: {
  33347. height: math.unit(12, "feet"),
  33348. weight: math.unit(4700, "lb"),
  33349. name: "Monster (Side)",
  33350. image: {
  33351. source: "./media/characters/teshy/monster-side.svg",
  33352. extra: 2067/2056,
  33353. bottom: 70/2137
  33354. }
  33355. },
  33356. monsterBack: {
  33357. height: math.unit(12, "feet"),
  33358. weight: math.unit(4700, "lb"),
  33359. name: "Monster (Back)",
  33360. image: {
  33361. source: "./media/characters/teshy/monster-back.svg",
  33362. extra: 1921/1914,
  33363. bottom: 171/2092
  33364. }
  33365. },
  33366. },
  33367. [
  33368. {
  33369. name: "Normal",
  33370. height: math.unit(6, "feet"),
  33371. default: true
  33372. },
  33373. ]
  33374. ))
  33375. characterMakers.push(() => makeCharacter(
  33376. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33377. {
  33378. front: {
  33379. height: math.unit(6, "feet"),
  33380. name: "Front",
  33381. image: {
  33382. source: "./media/characters/ramey/front.svg",
  33383. extra: 790/787,
  33384. bottom: 27/817
  33385. }
  33386. },
  33387. },
  33388. [
  33389. {
  33390. name: "Normal",
  33391. height: math.unit(6, "feet"),
  33392. default: true
  33393. },
  33394. ]
  33395. ))
  33396. characterMakers.push(() => makeCharacter(
  33397. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33398. {
  33399. front: {
  33400. height: math.unit(5 + 5/12, "feet"),
  33401. weight: math.unit(120, "lb"),
  33402. name: "Front",
  33403. image: {
  33404. source: "./media/characters/phirae/front.svg",
  33405. extra: 2491/2436,
  33406. bottom: 38/2529
  33407. }
  33408. },
  33409. },
  33410. [
  33411. {
  33412. name: "Normal",
  33413. height: math.unit(5 + 5/12, "feet"),
  33414. default: true
  33415. },
  33416. ]
  33417. ))
  33418. characterMakers.push(() => makeCharacter(
  33419. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33420. {
  33421. front: {
  33422. height: math.unit(6, "feet"),
  33423. weight: math.unit(150, "lb"),
  33424. name: "Front",
  33425. image: {
  33426. source: "./media/characters/stagglas/front.svg",
  33427. extra: 962/882,
  33428. bottom: 53/1015
  33429. }
  33430. },
  33431. },
  33432. [
  33433. {
  33434. name: "Normal",
  33435. height: math.unit(5 + 3/12, "feet"),
  33436. default: true
  33437. },
  33438. ]
  33439. ))
  33440. characterMakers.push(() => makeCharacter(
  33441. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33442. {
  33443. front: {
  33444. height: math.unit(5 + 4/12, "feet"),
  33445. weight: math.unit(145, "lb"),
  33446. name: "Front",
  33447. image: {
  33448. source: "./media/characters/starra/front.svg",
  33449. extra: 1790/1691,
  33450. bottom: 91/1881
  33451. }
  33452. },
  33453. },
  33454. [
  33455. {
  33456. name: "Normal",
  33457. height: math.unit(5 + 4/12, "feet"),
  33458. default: true
  33459. },
  33460. ]
  33461. ))
  33462. characterMakers.push(() => makeCharacter(
  33463. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33464. {
  33465. front: {
  33466. height: math.unit(2.2, "meters"),
  33467. name: "Front",
  33468. image: {
  33469. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33470. extra: 1194/1005,
  33471. bottom: 25/1219
  33472. }
  33473. },
  33474. },
  33475. [
  33476. {
  33477. name: "Normal",
  33478. height: math.unit(2.2, "meters"),
  33479. default: true
  33480. },
  33481. ]
  33482. ))
  33483. characterMakers.push(() => makeCharacter(
  33484. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33485. {
  33486. side: {
  33487. height: math.unit(8 + 2/12, "feet"),
  33488. weight: math.unit(1240, "lb"),
  33489. name: "Side",
  33490. image: {
  33491. source: "./media/characters/mika-valentine/side.svg",
  33492. extra: 2670/2501,
  33493. bottom: 250/2920
  33494. }
  33495. },
  33496. },
  33497. [
  33498. {
  33499. name: "Normal",
  33500. height: math.unit(8 + 2/12, "feet"),
  33501. default: true
  33502. },
  33503. ]
  33504. ))
  33505. characterMakers.push(() => makeCharacter(
  33506. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33507. {
  33508. front: {
  33509. height: math.unit(7 + 2/12, "feet"),
  33510. name: "Front",
  33511. image: {
  33512. source: "./media/characters/xoltol/front.svg",
  33513. extra: 2212/2124,
  33514. bottom: 84/2296
  33515. }
  33516. },
  33517. side: {
  33518. height: math.unit(7 + 2/12, "feet"),
  33519. name: "Side",
  33520. image: {
  33521. source: "./media/characters/xoltol/side.svg",
  33522. extra: 2273/2197,
  33523. bottom: 26/2299
  33524. }
  33525. },
  33526. hand: {
  33527. height: math.unit(2.5, "feet"),
  33528. name: "Hand",
  33529. image: {
  33530. source: "./media/characters/xoltol/hand.svg"
  33531. }
  33532. },
  33533. },
  33534. [
  33535. {
  33536. name: "Small-ish",
  33537. height: math.unit(5 + 11/12, "feet")
  33538. },
  33539. {
  33540. name: "Normal",
  33541. height: math.unit(7 + 2/12, "feet")
  33542. },
  33543. {
  33544. name: "\"Macro\"",
  33545. height: math.unit(14 + 9/12, "feet"),
  33546. default: true
  33547. },
  33548. {
  33549. name: "Alternate Height",
  33550. height: math.unit(20, "feet")
  33551. },
  33552. {
  33553. name: "Actually Macro",
  33554. height: math.unit(100, "feet")
  33555. },
  33556. ]
  33557. ))
  33558. characterMakers.push(() => makeCharacter(
  33559. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33560. {
  33561. front: {
  33562. height: math.unit(5 + 2/12, "feet"),
  33563. name: "Front",
  33564. image: {
  33565. source: "./media/characters/kotetsu-redwood/front.svg",
  33566. extra: 1053/942,
  33567. bottom: 60/1113
  33568. }
  33569. },
  33570. },
  33571. [
  33572. {
  33573. name: "Normal",
  33574. height: math.unit(5 + 2/12, "feet"),
  33575. default: true
  33576. },
  33577. ]
  33578. ))
  33579. characterMakers.push(() => makeCharacter(
  33580. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33581. {
  33582. front: {
  33583. height: math.unit(2.4, "meters"),
  33584. weight: math.unit(125, "kg"),
  33585. name: "Front",
  33586. image: {
  33587. source: "./media/characters/lilith/front.svg",
  33588. extra: 1590/1513,
  33589. bottom: 203/1793
  33590. }
  33591. },
  33592. },
  33593. [
  33594. {
  33595. name: "Humanoid",
  33596. height: math.unit(2.4, "meters")
  33597. },
  33598. {
  33599. name: "Normal",
  33600. height: math.unit(6, "meters"),
  33601. default: true
  33602. },
  33603. {
  33604. name: "Largest",
  33605. height: math.unit(55, "meters")
  33606. },
  33607. ]
  33608. ))
  33609. characterMakers.push(() => makeCharacter(
  33610. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33611. {
  33612. front: {
  33613. height: math.unit(8 + 4/12, "feet"),
  33614. weight: math.unit(535, "lb"),
  33615. name: "Front",
  33616. image: {
  33617. source: "./media/characters/beh'kah-bolger/front.svg",
  33618. extra: 1660/1603,
  33619. bottom: 37/1697
  33620. }
  33621. },
  33622. },
  33623. [
  33624. {
  33625. name: "Normal",
  33626. height: math.unit(8 + 4/12, "feet"),
  33627. default: true
  33628. },
  33629. {
  33630. name: "Kaiju",
  33631. height: math.unit(250, "feet")
  33632. },
  33633. {
  33634. name: "Still Growing",
  33635. height: math.unit(10, "miles")
  33636. },
  33637. {
  33638. name: "Continental",
  33639. height: math.unit(5000, "miles")
  33640. },
  33641. {
  33642. name: "Final Form",
  33643. height: math.unit(2500000, "miles")
  33644. },
  33645. ]
  33646. ))
  33647. characterMakers.push(() => makeCharacter(
  33648. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33649. {
  33650. front: {
  33651. height: math.unit(7 + 2/12, "feet"),
  33652. weight: math.unit(230, "kg"),
  33653. name: "Front",
  33654. image: {
  33655. source: "./media/characters/tatyana-milewska/front.svg",
  33656. extra: 1199/1150,
  33657. bottom: 86/1285
  33658. }
  33659. },
  33660. },
  33661. [
  33662. {
  33663. name: "Normal",
  33664. height: math.unit(7 + 2/12, "feet"),
  33665. default: true
  33666. },
  33667. {
  33668. name: "Big",
  33669. height: math.unit(12, "feet")
  33670. },
  33671. {
  33672. name: "Minimacro",
  33673. height: math.unit(20, "feet")
  33674. },
  33675. {
  33676. name: "Macro",
  33677. height: math.unit(120, "feet")
  33678. },
  33679. ]
  33680. ))
  33681. characterMakers.push(() => makeCharacter(
  33682. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33683. {
  33684. front: {
  33685. height: math.unit(7 + 8/12, "feet"),
  33686. weight: math.unit(152, "kg"),
  33687. name: "Front",
  33688. image: {
  33689. source: "./media/characters/helen-arri/front.svg",
  33690. extra: 440/423,
  33691. bottom: 14/454
  33692. }
  33693. },
  33694. back: {
  33695. height: math.unit(7 + 8/12, "feet"),
  33696. weight: math.unit(152, "kg"),
  33697. name: "Back",
  33698. image: {
  33699. source: "./media/characters/helen-arri/back.svg",
  33700. extra: 443/426,
  33701. bottom: 8/451
  33702. }
  33703. },
  33704. },
  33705. [
  33706. {
  33707. name: "Normal",
  33708. height: math.unit(7 + 8/12, "feet"),
  33709. default: true
  33710. },
  33711. {
  33712. name: "Big",
  33713. height: math.unit(14, "feet")
  33714. },
  33715. {
  33716. name: "Minimacro",
  33717. height: math.unit(24, "feet")
  33718. },
  33719. {
  33720. name: "Macro",
  33721. height: math.unit(140, "feet")
  33722. },
  33723. ]
  33724. ))
  33725. characterMakers.push(() => makeCharacter(
  33726. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33727. {
  33728. front: {
  33729. height: math.unit(6, "meters"),
  33730. name: "Front",
  33731. image: {
  33732. source: "./media/characters/ehanu-rehu/front.svg",
  33733. extra: 1800/1800,
  33734. bottom: 59/1859
  33735. }
  33736. },
  33737. },
  33738. [
  33739. {
  33740. name: "Normal",
  33741. height: math.unit(6, "meters"),
  33742. default: true
  33743. },
  33744. ]
  33745. ))
  33746. characterMakers.push(() => makeCharacter(
  33747. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33748. {
  33749. front: {
  33750. height: math.unit(7 + 3/12, "feet"),
  33751. name: "Front",
  33752. image: {
  33753. source: "./media/characters/renholder/front.svg",
  33754. extra: 3096/2960,
  33755. bottom: 250/3346
  33756. }
  33757. },
  33758. },
  33759. [
  33760. {
  33761. name: "Normal Bat",
  33762. height: math.unit(7 + 3/12, "feet"),
  33763. default: true
  33764. },
  33765. {
  33766. name: "Slightly Tall Bat",
  33767. height: math.unit(100, "feet")
  33768. },
  33769. {
  33770. name: "Big Bat",
  33771. height: math.unit(1000, "feet")
  33772. },
  33773. {
  33774. name: "City-Sized Bat",
  33775. height: math.unit(200000, "feet")
  33776. },
  33777. {
  33778. name: "Bigger Bat",
  33779. height: math.unit(10000, "miles")
  33780. },
  33781. {
  33782. name: "Solar Sized Bat",
  33783. height: math.unit(100, "AU")
  33784. },
  33785. {
  33786. name: "Galactic Bat",
  33787. height: math.unit(200000, "lightyears")
  33788. },
  33789. {
  33790. name: "Universally Known Bat",
  33791. height: math.unit(1, "universe")
  33792. },
  33793. ]
  33794. ))
  33795. characterMakers.push(() => makeCharacter(
  33796. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33797. {
  33798. front: {
  33799. height: math.unit(6 + 11/12, "feet"),
  33800. weight: math.unit(250, "lb"),
  33801. name: "Front",
  33802. image: {
  33803. source: "./media/characters/cookiecat/front.svg",
  33804. extra: 893/827,
  33805. bottom: 14/907
  33806. }
  33807. },
  33808. },
  33809. [
  33810. {
  33811. name: "Micro",
  33812. height: math.unit(3, "inches")
  33813. },
  33814. {
  33815. name: "Normal",
  33816. height: math.unit(6 + 11/12, "feet"),
  33817. default: true
  33818. },
  33819. {
  33820. name: "Macro",
  33821. height: math.unit(100, "feet")
  33822. },
  33823. {
  33824. name: "Macro+",
  33825. height: math.unit(404, "feet")
  33826. },
  33827. {
  33828. name: "Megamacro",
  33829. height: math.unit(165, "miles")
  33830. },
  33831. {
  33832. name: "Planetary",
  33833. height: math.unit(4600, "miles")
  33834. },
  33835. ]
  33836. ))
  33837. characterMakers.push(() => makeCharacter(
  33838. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33839. {
  33840. front: {
  33841. height: math.unit(10 + 3/12, "feet"),
  33842. weight: math.unit(1500, "lb"),
  33843. name: "Front",
  33844. image: {
  33845. source: "./media/characters/tux-kusanagi/front.svg",
  33846. extra: 944/840,
  33847. bottom: 39/983
  33848. }
  33849. },
  33850. back: {
  33851. height: math.unit(10 + 3/12, "feet"),
  33852. weight: math.unit(1500, "lb"),
  33853. name: "Back",
  33854. image: {
  33855. source: "./media/characters/tux-kusanagi/back.svg",
  33856. extra: 941/842,
  33857. bottom: 28/969
  33858. }
  33859. },
  33860. rump: {
  33861. height: math.unit(5.25, "feet"),
  33862. name: "Rump",
  33863. image: {
  33864. source: "./media/characters/tux-kusanagi/rump.svg"
  33865. }
  33866. },
  33867. beak: {
  33868. height: math.unit(1.54, "feet"),
  33869. name: "Beak",
  33870. image: {
  33871. source: "./media/characters/tux-kusanagi/beak.svg"
  33872. }
  33873. },
  33874. },
  33875. [
  33876. {
  33877. name: "Normal",
  33878. height: math.unit(10 + 3/12, "feet"),
  33879. default: true
  33880. },
  33881. ]
  33882. ))
  33883. characterMakers.push(() => makeCharacter(
  33884. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  33885. {
  33886. front: {
  33887. height: math.unit(58, "feet"),
  33888. weight: math.unit(200, "tons"),
  33889. name: "Front",
  33890. image: {
  33891. source: "./media/characters/uzarmazari/front.svg",
  33892. extra: 1575/1455,
  33893. bottom: 152/1727
  33894. }
  33895. },
  33896. back: {
  33897. height: math.unit(58, "feet"),
  33898. weight: math.unit(200, "tons"),
  33899. name: "Back",
  33900. image: {
  33901. source: "./media/characters/uzarmazari/back.svg",
  33902. extra: 1585/1510,
  33903. bottom: 157/1742
  33904. }
  33905. },
  33906. head: {
  33907. height: math.unit(26, "feet"),
  33908. name: "Head",
  33909. image: {
  33910. source: "./media/characters/uzarmazari/head.svg"
  33911. }
  33912. },
  33913. },
  33914. [
  33915. {
  33916. name: "Normal",
  33917. height: math.unit(58, "feet"),
  33918. default: true
  33919. },
  33920. ]
  33921. ))
  33922. characterMakers.push(() => makeCharacter(
  33923. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  33924. {
  33925. side: {
  33926. height: math.unit(15, "feet"),
  33927. name: "Side",
  33928. image: {
  33929. source: "./media/characters/akitu/side.svg",
  33930. extra: 1421/1321,
  33931. bottom: 157/1578
  33932. }
  33933. },
  33934. front: {
  33935. height: math.unit(15, "feet"),
  33936. name: "Front",
  33937. image: {
  33938. source: "./media/characters/akitu/front.svg",
  33939. extra: 1435/1326,
  33940. bottom: 232/1667
  33941. }
  33942. },
  33943. },
  33944. [
  33945. {
  33946. name: "Normal",
  33947. height: math.unit(15, "feet"),
  33948. default: true
  33949. },
  33950. ]
  33951. ))
  33952. characterMakers.push(() => makeCharacter(
  33953. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  33954. {
  33955. front: {
  33956. height: math.unit(10 + 8/12, "feet"),
  33957. name: "Front",
  33958. image: {
  33959. source: "./media/characters/azalie-croixland/front.svg",
  33960. extra: 1972/1856,
  33961. bottom: 31/2003
  33962. }
  33963. },
  33964. },
  33965. [
  33966. {
  33967. name: "Original Height",
  33968. height: math.unit(5 + 4/12, "feet")
  33969. },
  33970. {
  33971. name: "Normal Height",
  33972. height: math.unit(10 + 8/12, "feet"),
  33973. default: true
  33974. },
  33975. ]
  33976. ))
  33977. characterMakers.push(() => makeCharacter(
  33978. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  33979. {
  33980. side: {
  33981. height: math.unit(7 + 1/12, "feet"),
  33982. weight: math.unit(245, "lb"),
  33983. name: "Side",
  33984. image: {
  33985. source: "./media/characters/kavus-kazian/side.svg",
  33986. extra: 349/342,
  33987. bottom: 15/364
  33988. }
  33989. },
  33990. },
  33991. [
  33992. {
  33993. name: "Normal",
  33994. height: math.unit(7 + 1/12, "feet"),
  33995. default: true
  33996. },
  33997. ]
  33998. ))
  33999. characterMakers.push(() => makeCharacter(
  34000. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34001. {
  34002. normal: {
  34003. height: math.unit(5 + 11/12, "feet"),
  34004. name: "Normal",
  34005. image: {
  34006. source: "./media/characters/moonlight-rose/normal.svg",
  34007. extra: 1979/1835,
  34008. bottom: 14/1993
  34009. }
  34010. },
  34011. demon: {
  34012. height: math.unit(5, "km"),
  34013. name: "Demon",
  34014. image: {
  34015. source: "./media/characters/moonlight-rose/demon.svg",
  34016. extra: 986/916,
  34017. bottom: 28/1014
  34018. }
  34019. },
  34020. },
  34021. [
  34022. {
  34023. name: "\"Natural\" height",
  34024. height: math.unit(5 + 11/12, "feet")
  34025. },
  34026. {
  34027. name: "Comfortable Size",
  34028. height: math.unit(40, "meters")
  34029. },
  34030. {
  34031. name: "Common Size",
  34032. height: math.unit(50, "km"),
  34033. default: true
  34034. },
  34035. {
  34036. name: "Demonic",
  34037. height: math.unit(1.24415e+21, "meters")
  34038. },
  34039. ]
  34040. ))
  34041. characterMakers.push(() => makeCharacter(
  34042. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34043. {
  34044. front: {
  34045. height: math.unit(16, "feet"),
  34046. weight: math.unit(610, "kg"),
  34047. name: "Front",
  34048. image: {
  34049. source: "./media/characters/huckle/front.svg",
  34050. extra: 1731/1625,
  34051. bottom: 33/1764
  34052. }
  34053. },
  34054. back: {
  34055. height: math.unit(16, "feet"),
  34056. weight: math.unit(610, "kg"),
  34057. name: "Back",
  34058. image: {
  34059. source: "./media/characters/huckle/back.svg",
  34060. extra: 1738/1651,
  34061. bottom: 37/1775
  34062. }
  34063. },
  34064. laughing: {
  34065. height: math.unit(3.75, "feet"),
  34066. name: "Laughing",
  34067. image: {
  34068. source: "./media/characters/huckle/laughing.svg"
  34069. }
  34070. },
  34071. angry: {
  34072. height: math.unit(4.15, "feet"),
  34073. name: "Angry",
  34074. image: {
  34075. source: "./media/characters/huckle/angry.svg"
  34076. }
  34077. },
  34078. },
  34079. [
  34080. {
  34081. name: "Normal",
  34082. height: math.unit(16, "feet"),
  34083. default: true
  34084. },
  34085. {
  34086. name: "Mini Macro",
  34087. height: math.unit(463, "feet")
  34088. },
  34089. {
  34090. name: "Macro",
  34091. height: math.unit(1680, "meters")
  34092. },
  34093. {
  34094. name: "Mega Macro",
  34095. height: math.unit(175, "km")
  34096. },
  34097. {
  34098. name: "Terra Macro",
  34099. height: math.unit(32, "gigameters")
  34100. },
  34101. {
  34102. name: "Multiverse+",
  34103. height: math.unit(2.56e23, "yottameters")
  34104. },
  34105. ]
  34106. ))
  34107. characterMakers.push(() => makeCharacter(
  34108. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34109. {
  34110. front: {
  34111. height: math.unit(6 + 9/12, "feet"),
  34112. weight: math.unit(280, "lb"),
  34113. name: "Front",
  34114. image: {
  34115. source: "./media/characters/candy/front.svg",
  34116. extra: 234/217,
  34117. bottom: 11/245
  34118. }
  34119. },
  34120. },
  34121. [
  34122. {
  34123. name: "Really Small",
  34124. height: math.unit(0.1, "nm")
  34125. },
  34126. {
  34127. name: "Micro",
  34128. height: math.unit(2, "inches")
  34129. },
  34130. {
  34131. name: "Normal",
  34132. height: math.unit(6 + 9/12, "feet"),
  34133. default: true
  34134. },
  34135. {
  34136. name: "Small Macro",
  34137. height: math.unit(69, "feet")
  34138. },
  34139. {
  34140. name: "Macro",
  34141. height: math.unit(160, "feet")
  34142. },
  34143. {
  34144. name: "Megamacro",
  34145. height: math.unit(22000, "miles")
  34146. },
  34147. {
  34148. name: "Gigamacro",
  34149. height: math.unit(50000, "miles")
  34150. },
  34151. ]
  34152. ))
  34153. characterMakers.push(() => makeCharacter(
  34154. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34155. {
  34156. front: {
  34157. height: math.unit(4, "feet"),
  34158. weight: math.unit(90, "lb"),
  34159. name: "Front",
  34160. image: {
  34161. source: "./media/characters/joey-mcdonald/front.svg",
  34162. extra: 1059/852,
  34163. bottom: 33/1092
  34164. }
  34165. },
  34166. back: {
  34167. height: math.unit(4, "feet"),
  34168. weight: math.unit(90, "lb"),
  34169. name: "Back",
  34170. image: {
  34171. source: "./media/characters/joey-mcdonald/back.svg",
  34172. extra: 1077/879,
  34173. bottom: 5/1082
  34174. }
  34175. },
  34176. },
  34177. [
  34178. {
  34179. name: "Normal",
  34180. height: math.unit(4, "feet"),
  34181. default: true
  34182. },
  34183. ]
  34184. ))
  34185. characterMakers.push(() => makeCharacter(
  34186. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34187. {
  34188. front: {
  34189. height: math.unit(12 + 6/12, "feet"),
  34190. name: "Front",
  34191. image: {
  34192. source: "./media/characters/kass-lockheed/front.svg",
  34193. extra: 354/343,
  34194. bottom: 9/363
  34195. }
  34196. },
  34197. back: {
  34198. height: math.unit(12 + 6/12, "feet"),
  34199. name: "Back",
  34200. image: {
  34201. source: "./media/characters/kass-lockheed/back.svg",
  34202. extra: 364/352,
  34203. bottom: 3/367
  34204. }
  34205. },
  34206. dick: {
  34207. height: math.unit(3.12, "feet"),
  34208. name: "Dick",
  34209. image: {
  34210. source: "./media/characters/kass-lockheed/dick.svg"
  34211. }
  34212. },
  34213. head: {
  34214. height: math.unit(2.6, "feet"),
  34215. name: "Head",
  34216. image: {
  34217. source: "./media/characters/kass-lockheed/head.svg"
  34218. }
  34219. },
  34220. bleh: {
  34221. height: math.unit(2.85, "feet"),
  34222. name: "Bleh",
  34223. image: {
  34224. source: "./media/characters/kass-lockheed/bleh.svg"
  34225. }
  34226. },
  34227. smug: {
  34228. height: math.unit(2.85, "feet"),
  34229. name: "Smug",
  34230. image: {
  34231. source: "./media/characters/kass-lockheed/smug.svg"
  34232. }
  34233. },
  34234. },
  34235. [
  34236. {
  34237. name: "Normal",
  34238. height: math.unit(12 + 6/12, "feet"),
  34239. default: true
  34240. },
  34241. ]
  34242. ))
  34243. characterMakers.push(() => makeCharacter(
  34244. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34245. {
  34246. front: {
  34247. height: math.unit(6 + 2/12, "feet"),
  34248. name: "Front",
  34249. image: {
  34250. source: "./media/characters/taylor/front.svg",
  34251. extra: 639/495,
  34252. bottom: 12/651
  34253. }
  34254. },
  34255. },
  34256. [
  34257. {
  34258. name: "Normal",
  34259. height: math.unit(6 + 2/12, "feet"),
  34260. default: true
  34261. },
  34262. {
  34263. name: "Big",
  34264. height: math.unit(15, "feet")
  34265. },
  34266. {
  34267. name: "Lorg",
  34268. height: math.unit(80, "feet")
  34269. },
  34270. {
  34271. name: "Too Lorg",
  34272. height: math.unit(120, "feet")
  34273. },
  34274. ]
  34275. ))
  34276. characterMakers.push(() => makeCharacter(
  34277. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34278. {
  34279. front: {
  34280. height: math.unit(15, "feet"),
  34281. name: "Front",
  34282. image: {
  34283. source: "./media/characters/kaizer/front.svg",
  34284. extra: 1612/1436,
  34285. bottom: 43/1655
  34286. }
  34287. },
  34288. },
  34289. [
  34290. {
  34291. name: "Normal",
  34292. height: math.unit(15, "feet"),
  34293. default: true
  34294. },
  34295. ]
  34296. ))
  34297. characterMakers.push(() => makeCharacter(
  34298. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34299. {
  34300. front: {
  34301. height: math.unit(2, "feet"),
  34302. weight: math.unit(30, "lb"),
  34303. name: "Front",
  34304. image: {
  34305. source: "./media/characters/sandy/front.svg",
  34306. extra: 1439/1307,
  34307. bottom: 194/1633
  34308. }
  34309. },
  34310. },
  34311. [
  34312. {
  34313. name: "Normal",
  34314. height: math.unit(2, "feet"),
  34315. default: true
  34316. },
  34317. ]
  34318. ))
  34319. characterMakers.push(() => makeCharacter(
  34320. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34321. {
  34322. front: {
  34323. height: math.unit(3, "feet"),
  34324. name: "Front",
  34325. image: {
  34326. source: "./media/characters/mellvi/front.svg",
  34327. extra: 1831/1630,
  34328. bottom: 58/1889
  34329. }
  34330. },
  34331. },
  34332. [
  34333. {
  34334. name: "Normal",
  34335. height: math.unit(3, "feet"),
  34336. default: true
  34337. },
  34338. ]
  34339. ))
  34340. characterMakers.push(() => makeCharacter(
  34341. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34342. {
  34343. front: {
  34344. height: math.unit(5 + 11/12, "feet"),
  34345. weight: math.unit(200, "lb"),
  34346. name: "Front",
  34347. image: {
  34348. source: "./media/characters/shirou/front.svg",
  34349. extra: 2491/2383,
  34350. bottom: 189/2680
  34351. }
  34352. },
  34353. back: {
  34354. height: math.unit(5 + 11/12, "feet"),
  34355. weight: math.unit(200, "lb"),
  34356. name: "Back",
  34357. image: {
  34358. source: "./media/characters/shirou/back.svg",
  34359. extra: 2554/2450,
  34360. bottom: 76/2630
  34361. }
  34362. },
  34363. },
  34364. [
  34365. {
  34366. name: "Normal",
  34367. height: math.unit(5 + 11/12, "feet"),
  34368. default: true
  34369. },
  34370. ]
  34371. ))
  34372. characterMakers.push(() => makeCharacter(
  34373. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34374. {
  34375. front: {
  34376. height: math.unit(6 + 3/12, "feet"),
  34377. weight: math.unit(177, "lb"),
  34378. name: "Front",
  34379. image: {
  34380. source: "./media/characters/noryu/front.svg",
  34381. extra: 973/885,
  34382. bottom: 10/983
  34383. }
  34384. },
  34385. },
  34386. [
  34387. {
  34388. name: "Normal",
  34389. height: math.unit(6 + 3/12, "feet"),
  34390. default: true
  34391. },
  34392. ]
  34393. ))
  34394. characterMakers.push(() => makeCharacter(
  34395. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34396. {
  34397. front: {
  34398. height: math.unit(5 + 6/12, "feet"),
  34399. weight: math.unit(170, "lb"),
  34400. name: "Front",
  34401. image: {
  34402. source: "./media/characters/mevolas-rubenido/front.svg",
  34403. extra: 2109/1901,
  34404. bottom: 96/2205
  34405. }
  34406. },
  34407. },
  34408. [
  34409. {
  34410. name: "Normal",
  34411. height: math.unit(5 + 6/12, "feet"),
  34412. default: true
  34413. },
  34414. ]
  34415. ))
  34416. characterMakers.push(() => makeCharacter(
  34417. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34418. {
  34419. front: {
  34420. height: math.unit(100, "feet"),
  34421. name: "Front",
  34422. image: {
  34423. source: "./media/characters/dee/front.svg",
  34424. extra: 2153/2036,
  34425. bottom: 59/2212
  34426. }
  34427. },
  34428. back: {
  34429. height: math.unit(100, "feet"),
  34430. name: "Back",
  34431. image: {
  34432. source: "./media/characters/dee/back.svg",
  34433. extra: 2183/2058,
  34434. bottom: 75/2258
  34435. }
  34436. },
  34437. foot: {
  34438. height: math.unit(19.43, "feet"),
  34439. name: "Foot",
  34440. image: {
  34441. source: "./media/characters/dee/foot.svg"
  34442. }
  34443. },
  34444. hoof: {
  34445. height: math.unit(20.6, "feet"),
  34446. name: "Hoof",
  34447. image: {
  34448. source: "./media/characters/dee/hoof.svg"
  34449. }
  34450. },
  34451. },
  34452. [
  34453. {
  34454. name: "Macro",
  34455. height: math.unit(100, "feet"),
  34456. default: true
  34457. },
  34458. ]
  34459. ))
  34460. characterMakers.push(() => makeCharacter(
  34461. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34462. {
  34463. front: {
  34464. height: math.unit(5 + 6/12, "feet"),
  34465. name: "Front",
  34466. image: {
  34467. source: "./media/characters/teh/front.svg",
  34468. extra: 1002/847,
  34469. bottom: 62/1064
  34470. }
  34471. },
  34472. },
  34473. [
  34474. {
  34475. name: "Normal",
  34476. height: math.unit(5 + 6/12, "feet"),
  34477. default: true
  34478. },
  34479. ]
  34480. ))
  34481. characterMakers.push(() => makeCharacter(
  34482. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34483. {
  34484. side: {
  34485. height: math.unit(6 + 1/12, "feet"),
  34486. weight: math.unit(204, "lb"),
  34487. name: "Side",
  34488. image: {
  34489. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34490. extra: 974/775,
  34491. bottom: 169/1143
  34492. }
  34493. },
  34494. sitting: {
  34495. height: math.unit(6 + 2/12, "feet"),
  34496. weight: math.unit(204, "lb"),
  34497. name: "Sitting",
  34498. image: {
  34499. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34500. extra: 1175/964,
  34501. bottom: 378/1553
  34502. }
  34503. },
  34504. },
  34505. [
  34506. {
  34507. name: "Normal",
  34508. height: math.unit(6 + 1/12, "feet"),
  34509. default: true
  34510. },
  34511. ]
  34512. ))
  34513. characterMakers.push(() => makeCharacter(
  34514. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34515. {
  34516. front: {
  34517. height: math.unit(6, "inches"),
  34518. name: "Front",
  34519. image: {
  34520. source: "./media/characters/tululi/front.svg",
  34521. extra: 1997/1876,
  34522. bottom: 20/2017
  34523. }
  34524. },
  34525. },
  34526. [
  34527. {
  34528. name: "Normal",
  34529. height: math.unit(6, "inches"),
  34530. default: true
  34531. },
  34532. ]
  34533. ))
  34534. characterMakers.push(() => makeCharacter(
  34535. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34536. {
  34537. front: {
  34538. height: math.unit(4 + 1/12, "feet"),
  34539. name: "Front",
  34540. image: {
  34541. source: "./media/characters/star/front.svg",
  34542. extra: 1493/1189,
  34543. bottom: 48/1541
  34544. }
  34545. },
  34546. },
  34547. [
  34548. {
  34549. name: "Normal",
  34550. height: math.unit(4 + 1/12, "feet"),
  34551. default: true
  34552. },
  34553. ]
  34554. ))
  34555. characterMakers.push(() => makeCharacter(
  34556. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34557. {
  34558. front: {
  34559. height: math.unit(6 + 3/12, "feet"),
  34560. name: "Front",
  34561. image: {
  34562. source: "./media/characters/comet/front.svg",
  34563. extra: 1681/1462,
  34564. bottom: 26/1707
  34565. }
  34566. },
  34567. },
  34568. [
  34569. {
  34570. name: "Normal",
  34571. height: math.unit(6 + 3/12, "feet"),
  34572. default: true
  34573. },
  34574. ]
  34575. ))
  34576. characterMakers.push(() => makeCharacter(
  34577. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34578. {
  34579. front: {
  34580. height: math.unit(950, "feet"),
  34581. name: "Front",
  34582. image: {
  34583. source: "./media/characters/vortex/front.svg",
  34584. extra: 1497/1434,
  34585. bottom: 56/1553
  34586. }
  34587. },
  34588. maw: {
  34589. height: math.unit(285, "feet"),
  34590. name: "Maw",
  34591. image: {
  34592. source: "./media/characters/vortex/maw.svg"
  34593. }
  34594. },
  34595. },
  34596. [
  34597. {
  34598. name: "Macro",
  34599. height: math.unit(950, "feet"),
  34600. default: true
  34601. },
  34602. ]
  34603. ))
  34604. characterMakers.push(() => makeCharacter(
  34605. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34606. {
  34607. front: {
  34608. height: math.unit(600, "feet"),
  34609. weight: math.unit(0.02, "grams"),
  34610. name: "Front",
  34611. image: {
  34612. source: "./media/characters/doodle/front.svg",
  34613. extra: 1578/1413,
  34614. bottom: 37/1615
  34615. }
  34616. },
  34617. },
  34618. [
  34619. {
  34620. name: "Macro",
  34621. height: math.unit(600, "feet"),
  34622. default: true
  34623. },
  34624. ]
  34625. ))
  34626. characterMakers.push(() => makeCharacter(
  34627. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34628. {
  34629. front: {
  34630. height: math.unit(6 + 6/12, "feet"),
  34631. name: "Front",
  34632. image: {
  34633. source: "./media/characters/jai/front.svg",
  34634. extra: 1645/1534,
  34635. bottom: 115/1760
  34636. }
  34637. },
  34638. },
  34639. [
  34640. {
  34641. name: "Normal",
  34642. height: math.unit(6 + 6/12, "feet"),
  34643. default: true
  34644. },
  34645. ]
  34646. ))
  34647. characterMakers.push(() => makeCharacter(
  34648. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34649. {
  34650. front: {
  34651. height: math.unit(6 + 8/12, "feet"),
  34652. name: "Front",
  34653. image: {
  34654. source: "./media/characters/pixel/front.svg",
  34655. extra: 1900/1735,
  34656. bottom: 63/1963
  34657. }
  34658. },
  34659. },
  34660. [
  34661. {
  34662. name: "Normal",
  34663. height: math.unit(6 + 8/12, "feet"),
  34664. default: true
  34665. },
  34666. ]
  34667. ))
  34668. characterMakers.push(() => makeCharacter(
  34669. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34670. {
  34671. front: {
  34672. height: math.unit(4 + 11/12, "feet"),
  34673. weight: math.unit(111, "lb"),
  34674. name: "Front",
  34675. image: {
  34676. source: "./media/characters/rhett/front.svg",
  34677. extra: 1682/1586,
  34678. bottom: 92/1774
  34679. }
  34680. },
  34681. },
  34682. [
  34683. {
  34684. name: "Mini",
  34685. height: math.unit(1 + 1/12, "feet")
  34686. },
  34687. {
  34688. name: "Normal",
  34689. height: math.unit(4 + 11/12, "feet"),
  34690. default: true
  34691. },
  34692. ]
  34693. ))
  34694. characterMakers.push(() => makeCharacter(
  34695. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34696. {
  34697. front: {
  34698. height: math.unit(3 + 3/12, "feet"),
  34699. name: "Front",
  34700. image: {
  34701. source: "./media/characters/penny/front.svg",
  34702. extra: 1406/1311,
  34703. bottom: 26/1432
  34704. }
  34705. },
  34706. },
  34707. [
  34708. {
  34709. name: "Normal",
  34710. height: math.unit(3 + 3/12, "feet"),
  34711. default: true
  34712. },
  34713. ]
  34714. ))
  34715. characterMakers.push(() => makeCharacter(
  34716. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34717. {
  34718. front: {
  34719. height: math.unit(4 + 11/12, "feet"),
  34720. name: "Front",
  34721. image: {
  34722. source: "./media/characters/monty/front.svg",
  34723. extra: 1479/1209,
  34724. bottom: 0/1479
  34725. }
  34726. },
  34727. },
  34728. [
  34729. {
  34730. name: "Normal",
  34731. height: math.unit(4 + 11/12, "feet"),
  34732. default: true
  34733. },
  34734. ]
  34735. ))
  34736. characterMakers.push(() => makeCharacter(
  34737. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34738. {
  34739. front: {
  34740. height: math.unit(8 + 4/12, "feet"),
  34741. name: "Front",
  34742. image: {
  34743. source: "./media/characters/sterling/front.svg",
  34744. extra: 1420/1236,
  34745. bottom: 27/1447
  34746. }
  34747. },
  34748. },
  34749. [
  34750. {
  34751. name: "Normal",
  34752. height: math.unit(8 + 4/12, "feet"),
  34753. default: true
  34754. },
  34755. ]
  34756. ))
  34757. characterMakers.push(() => makeCharacter(
  34758. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34759. {
  34760. front: {
  34761. height: math.unit(15, "feet"),
  34762. name: "Front",
  34763. image: {
  34764. source: "./media/characters/marble/front.svg",
  34765. extra: 973/937,
  34766. bottom: 32/1005
  34767. }
  34768. },
  34769. },
  34770. [
  34771. {
  34772. name: "Normal",
  34773. height: math.unit(15, "feet"),
  34774. default: true
  34775. },
  34776. ]
  34777. ))
  34778. characterMakers.push(() => makeCharacter(
  34779. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34780. {
  34781. front: {
  34782. height: math.unit(3, "inches"),
  34783. name: "Front",
  34784. image: {
  34785. source: "./media/characters/powder/front.svg",
  34786. extra: 1504/1334,
  34787. bottom: 518/2022
  34788. }
  34789. },
  34790. },
  34791. [
  34792. {
  34793. name: "Normal",
  34794. height: math.unit(3, "inches"),
  34795. default: true
  34796. },
  34797. ]
  34798. ))
  34799. characterMakers.push(() => makeCharacter(
  34800. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  34801. {
  34802. front: {
  34803. height: math.unit(4 + 5/12, "feet"),
  34804. name: "Front",
  34805. image: {
  34806. source: "./media/characters/joey-raccoon/front.svg",
  34807. extra: 1273/1197,
  34808. bottom: 0/1273
  34809. }
  34810. },
  34811. },
  34812. [
  34813. {
  34814. name: "Normal",
  34815. height: math.unit(4 + 5/12, "feet"),
  34816. default: true
  34817. },
  34818. ]
  34819. ))
  34820. characterMakers.push(() => makeCharacter(
  34821. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  34822. {
  34823. front: {
  34824. height: math.unit(8 + 4/12, "feet"),
  34825. name: "Front",
  34826. image: {
  34827. source: "./media/characters/vick/front.svg",
  34828. extra: 2187/2118,
  34829. bottom: 47/2234
  34830. }
  34831. },
  34832. },
  34833. [
  34834. {
  34835. name: "Normal",
  34836. height: math.unit(8 + 4/12, "feet"),
  34837. default: true
  34838. },
  34839. ]
  34840. ))
  34841. characterMakers.push(() => makeCharacter(
  34842. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  34843. {
  34844. front: {
  34845. height: math.unit(5 + 5/12, "feet"),
  34846. name: "Front",
  34847. image: {
  34848. source: "./media/characters/mitsy/front.svg",
  34849. extra: 1842/1695,
  34850. bottom: 0/1842
  34851. }
  34852. },
  34853. },
  34854. [
  34855. {
  34856. name: "Normal",
  34857. height: math.unit(5 + 5/12, "feet"),
  34858. default: true
  34859. },
  34860. ]
  34861. ))
  34862. characterMakers.push(() => makeCharacter(
  34863. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  34864. {
  34865. front: {
  34866. height: math.unit(6 + 3/12, "feet"),
  34867. name: "Front",
  34868. image: {
  34869. source: "./media/characters/silvy/front.svg",
  34870. extra: 1995/1836,
  34871. bottom: 225/2220
  34872. }
  34873. },
  34874. },
  34875. [
  34876. {
  34877. name: "Normal",
  34878. height: math.unit(6 + 3/12, "feet"),
  34879. default: true
  34880. },
  34881. ]
  34882. ))
  34883. characterMakers.push(() => makeCharacter(
  34884. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  34885. {
  34886. front: {
  34887. height: math.unit(3 + 8/12, "feet"),
  34888. name: "Front",
  34889. image: {
  34890. source: "./media/characters/rodney/front.svg",
  34891. extra: 1956/1747,
  34892. bottom: 31/1987
  34893. }
  34894. },
  34895. frontDressed: {
  34896. height: math.unit(2.9, "feet"),
  34897. name: "Front (Dressed)",
  34898. image: {
  34899. source: "./media/characters/rodney/front-dressed.svg",
  34900. extra: 1382/1241,
  34901. bottom: 385/1767
  34902. }
  34903. },
  34904. },
  34905. [
  34906. {
  34907. name: "Normal",
  34908. height: math.unit(3 + 8/12, "feet"),
  34909. default: true
  34910. },
  34911. ]
  34912. ))
  34913. characterMakers.push(() => makeCharacter(
  34914. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  34915. {
  34916. front: {
  34917. height: math.unit(5 + 9/12, "feet"),
  34918. weight: math.unit(194, "lbs"),
  34919. name: "Front",
  34920. image: {
  34921. source: "./media/characters/zakail-sudekai/front.svg",
  34922. extra: 2696/2533,
  34923. bottom: 248/2944
  34924. }
  34925. },
  34926. maw: {
  34927. height: math.unit(1.35, "feet"),
  34928. name: "Maw",
  34929. image: {
  34930. source: "./media/characters/zakail-sudekai/maw.svg"
  34931. }
  34932. },
  34933. },
  34934. [
  34935. {
  34936. name: "Normal",
  34937. height: math.unit(5 + 9/12, "feet"),
  34938. default: true
  34939. },
  34940. ]
  34941. ))
  34942. characterMakers.push(() => makeCharacter(
  34943. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  34944. {
  34945. front: {
  34946. height: math.unit(8 + 4/12, "feet"),
  34947. weight: math.unit(1200, "lb"),
  34948. name: "Front",
  34949. image: {
  34950. source: "./media/characters/eleanor/front.svg",
  34951. extra: 1226/1192,
  34952. bottom: 52/1278
  34953. }
  34954. },
  34955. back: {
  34956. height: math.unit(8 + 4/12, "feet"),
  34957. weight: math.unit(1200, "lb"),
  34958. name: "Back",
  34959. image: {
  34960. source: "./media/characters/eleanor/back.svg",
  34961. extra: 1242/1184,
  34962. bottom: 60/1302
  34963. }
  34964. },
  34965. head: {
  34966. height: math.unit(2.62, "feet"),
  34967. name: "Head",
  34968. image: {
  34969. source: "./media/characters/eleanor/head.svg"
  34970. }
  34971. },
  34972. },
  34973. [
  34974. {
  34975. name: "Normal",
  34976. height: math.unit(8 + 4/12, "feet"),
  34977. default: true
  34978. },
  34979. ]
  34980. ))
  34981. characterMakers.push(() => makeCharacter(
  34982. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  34983. {
  34984. front: {
  34985. height: math.unit(8 + 4/12, "feet"),
  34986. weight: math.unit(750, "lb"),
  34987. name: "Front",
  34988. image: {
  34989. source: "./media/characters/tanya/front.svg",
  34990. extra: 1749/1615,
  34991. bottom: 33/1782
  34992. }
  34993. },
  34994. },
  34995. [
  34996. {
  34997. name: "Normal",
  34998. height: math.unit(8 + 4/12, "feet"),
  34999. default: true
  35000. },
  35001. ]
  35002. ))
  35003. characterMakers.push(() => makeCharacter(
  35004. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35005. {
  35006. front: {
  35007. height: math.unit(5, "feet"),
  35008. weight: math.unit(225, "lb"),
  35009. name: "Front",
  35010. image: {
  35011. source: "./media/characters/cindy/front.svg",
  35012. extra: 1320/1250,
  35013. bottom: 42/1362
  35014. }
  35015. },
  35016. frontDressed: {
  35017. height: math.unit(5, "feet"),
  35018. weight: math.unit(225, "lb"),
  35019. name: "Front (Dressed)",
  35020. image: {
  35021. source: "./media/characters/cindy/front-dressed.svg",
  35022. extra: 1320/1250,
  35023. bottom: 42/1362
  35024. }
  35025. },
  35026. back: {
  35027. height: math.unit(5, "feet"),
  35028. weight: math.unit(225, "lb"),
  35029. name: "Back",
  35030. image: {
  35031. source: "./media/characters/cindy/back.svg",
  35032. extra: 1384/1346,
  35033. bottom: 14/1398
  35034. }
  35035. },
  35036. },
  35037. [
  35038. {
  35039. name: "Normal",
  35040. height: math.unit(5, "feet"),
  35041. default: true
  35042. },
  35043. ]
  35044. ))
  35045. characterMakers.push(() => makeCharacter(
  35046. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35047. {
  35048. front: {
  35049. height: math.unit(6 + 9/12, "feet"),
  35050. weight: math.unit(440, "lb"),
  35051. name: "Front",
  35052. image: {
  35053. source: "./media/characters/wilbur-owen/front.svg",
  35054. extra: 1575/1448,
  35055. bottom: 72/1647
  35056. }
  35057. },
  35058. back: {
  35059. height: math.unit(6 + 9/12, "feet"),
  35060. weight: math.unit(440, "lb"),
  35061. name: "Back",
  35062. image: {
  35063. source: "./media/characters/wilbur-owen/back.svg",
  35064. extra: 1578/1445,
  35065. bottom: 36/1614
  35066. }
  35067. },
  35068. },
  35069. [
  35070. {
  35071. name: "Normal",
  35072. height: math.unit(6 + 9/12, "feet"),
  35073. default: true
  35074. },
  35075. ]
  35076. ))
  35077. characterMakers.push(() => makeCharacter(
  35078. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35079. {
  35080. front: {
  35081. height: math.unit(6 + 5/12, "feet"),
  35082. weight: math.unit(650, "lb"),
  35083. name: "Front",
  35084. image: {
  35085. source: "./media/characters/keegan/front.svg",
  35086. extra: 2387/2198,
  35087. bottom: 33/2420
  35088. }
  35089. },
  35090. side: {
  35091. height: math.unit(6 + 5/12, "feet"),
  35092. weight: math.unit(650, "lb"),
  35093. name: "Side",
  35094. image: {
  35095. source: "./media/characters/keegan/side.svg",
  35096. extra: 2390/2202,
  35097. bottom: 47/2437
  35098. }
  35099. },
  35100. back: {
  35101. height: math.unit(6 + 5/12, "feet"),
  35102. weight: math.unit(650, "lb"),
  35103. name: "Back",
  35104. image: {
  35105. source: "./media/characters/keegan/back.svg",
  35106. extra: 2418/2268,
  35107. bottom: 15/2433
  35108. }
  35109. },
  35110. frontSfw: {
  35111. height: math.unit(6 + 5/12, "feet"),
  35112. weight: math.unit(650, "lb"),
  35113. name: "Front (SFW)",
  35114. image: {
  35115. source: "./media/characters/keegan/front-sfw.svg",
  35116. extra: 2387/2198,
  35117. bottom: 33/2420
  35118. }
  35119. },
  35120. beans: {
  35121. height: math.unit(1.85, "feet"),
  35122. name: "Beans",
  35123. image: {
  35124. source: "./media/characters/keegan/beans.svg"
  35125. }
  35126. },
  35127. },
  35128. [
  35129. {
  35130. name: "Normal",
  35131. height: math.unit(6 + 5/12, "feet"),
  35132. default: true
  35133. },
  35134. ]
  35135. ))
  35136. characterMakers.push(() => makeCharacter(
  35137. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35138. {
  35139. front: {
  35140. height: math.unit(9, "feet"),
  35141. name: "Front",
  35142. image: {
  35143. source: "./media/characters/colton/front.svg",
  35144. extra: 1589/1326,
  35145. bottom: 139/1728
  35146. }
  35147. },
  35148. },
  35149. [
  35150. {
  35151. name: "Normal",
  35152. height: math.unit(9, "feet"),
  35153. default: true
  35154. },
  35155. ]
  35156. ))
  35157. characterMakers.push(() => makeCharacter(
  35158. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35159. {
  35160. front: {
  35161. height: math.unit(2 + 9/12, "feet"),
  35162. name: "Front",
  35163. image: {
  35164. source: "./media/characters/bora/front.svg",
  35165. extra: 1265/1250,
  35166. bottom: 24/1289
  35167. }
  35168. },
  35169. },
  35170. [
  35171. {
  35172. name: "Normal",
  35173. height: math.unit(2 + 9/12, "feet"),
  35174. default: true
  35175. },
  35176. ]
  35177. ))
  35178. characterMakers.push(() => makeCharacter(
  35179. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35180. {
  35181. front: {
  35182. height: math.unit(8, "feet"),
  35183. name: "Front",
  35184. image: {
  35185. source: "./media/characters/myu-myu/front.svg",
  35186. extra: 1949/1857,
  35187. bottom: 90/2039
  35188. }
  35189. },
  35190. },
  35191. [
  35192. {
  35193. name: "Normal",
  35194. height: math.unit(8, "feet"),
  35195. default: true
  35196. },
  35197. {
  35198. name: "Big",
  35199. height: math.unit(15, "feet")
  35200. },
  35201. {
  35202. name: "BIG",
  35203. height: math.unit(25, "feet")
  35204. },
  35205. ]
  35206. ))
  35207. characterMakers.push(() => makeCharacter(
  35208. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35209. {
  35210. side: {
  35211. height: math.unit(7 + 5/12, "feet"),
  35212. weight: math.unit(2800, "lb"),
  35213. name: "Side",
  35214. image: {
  35215. source: "./media/characters/haloren/side.svg",
  35216. extra: 1793/409,
  35217. bottom: 59/1852
  35218. }
  35219. },
  35220. frontPaw: {
  35221. height: math.unit(2.36, "feet"),
  35222. name: "Front paw",
  35223. image: {
  35224. source: "./media/characters/haloren/front-paw.svg"
  35225. }
  35226. },
  35227. hindPaw: {
  35228. height: math.unit(3.18, "feet"),
  35229. name: "Hind paw",
  35230. image: {
  35231. source: "./media/characters/haloren/hind-paw.svg"
  35232. }
  35233. },
  35234. maw: {
  35235. height: math.unit(5.05, "feet"),
  35236. name: "Maw",
  35237. image: {
  35238. source: "./media/characters/haloren/maw.svg"
  35239. }
  35240. },
  35241. dick: {
  35242. height: math.unit(2.90, "feet"),
  35243. name: "Dick",
  35244. image: {
  35245. source: "./media/characters/haloren/dick.svg"
  35246. }
  35247. },
  35248. },
  35249. [
  35250. {
  35251. name: "Normal",
  35252. height: math.unit(7 + 5/12, "feet"),
  35253. default: true
  35254. },
  35255. {
  35256. name: "Enhanced",
  35257. height: math.unit(14 + 3/12, "feet")
  35258. },
  35259. ]
  35260. ))
  35261. characterMakers.push(() => makeCharacter(
  35262. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35263. {
  35264. front: {
  35265. height: math.unit(171, "cm"),
  35266. name: "Front",
  35267. image: {
  35268. source: "./media/characters/kimmy/front.svg",
  35269. extra: 1491/1435,
  35270. bottom: 53/1544
  35271. }
  35272. },
  35273. },
  35274. [
  35275. {
  35276. name: "Small",
  35277. height: math.unit(9, "cm")
  35278. },
  35279. {
  35280. name: "Normal",
  35281. height: math.unit(171, "cm"),
  35282. default: true
  35283. },
  35284. ]
  35285. ))
  35286. characterMakers.push(() => makeCharacter(
  35287. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35288. {
  35289. front: {
  35290. height: math.unit(8, "feet"),
  35291. weight: math.unit(300, "lb"),
  35292. name: "Front",
  35293. image: {
  35294. source: "./media/characters/galeboomer/front.svg",
  35295. extra: 4651/4415,
  35296. bottom: 162/4813
  35297. }
  35298. },
  35299. back: {
  35300. height: math.unit(8, "feet"),
  35301. weight: math.unit(300, "lb"),
  35302. name: "Back",
  35303. image: {
  35304. source: "./media/characters/galeboomer/back.svg",
  35305. extra: 4544/4314,
  35306. bottom: 16/4560
  35307. }
  35308. },
  35309. frontAlt: {
  35310. height: math.unit(8, "feet"),
  35311. weight: math.unit(300, "lb"),
  35312. name: "Front (Alt)",
  35313. image: {
  35314. source: "./media/characters/galeboomer/front-alt.svg",
  35315. extra: 4458/4228,
  35316. bottom: 68/4526
  35317. }
  35318. },
  35319. maw: {
  35320. height: math.unit(1.2, "feet"),
  35321. name: "Maw",
  35322. image: {
  35323. source: "./media/characters/galeboomer/maw.svg"
  35324. }
  35325. },
  35326. },
  35327. [
  35328. {
  35329. name: "Normal",
  35330. height: math.unit(8, "feet"),
  35331. default: true
  35332. },
  35333. ]
  35334. ))
  35335. characterMakers.push(() => makeCharacter(
  35336. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35337. {
  35338. front: {
  35339. height: math.unit(5 + 9/12, "feet"),
  35340. weight: math.unit(120, "lb"),
  35341. name: "Front",
  35342. image: {
  35343. source: "./media/characters/chyr/front.svg",
  35344. extra: 1323/1254,
  35345. bottom: 63/1386
  35346. }
  35347. },
  35348. back: {
  35349. height: math.unit(5 + 9/12, "feet"),
  35350. weight: math.unit(120, "lb"),
  35351. name: "Back",
  35352. image: {
  35353. source: "./media/characters/chyr/back.svg",
  35354. extra: 1323/1252,
  35355. bottom: 48/1371
  35356. }
  35357. },
  35358. },
  35359. [
  35360. {
  35361. name: "Normal",
  35362. height: math.unit(5 + 9/12, "feet"),
  35363. default: true
  35364. },
  35365. ]
  35366. ))
  35367. characterMakers.push(() => makeCharacter(
  35368. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35369. {
  35370. front: {
  35371. height: math.unit(7, "feet"),
  35372. weight: math.unit(310, "lb"),
  35373. name: "Front",
  35374. image: {
  35375. source: "./media/characters/solarus/front.svg",
  35376. extra: 2415/2021,
  35377. bottom: 103/2518
  35378. }
  35379. },
  35380. back: {
  35381. height: math.unit(7, "feet"),
  35382. weight: math.unit(310, "lb"),
  35383. name: "Back",
  35384. image: {
  35385. source: "./media/characters/solarus/back.svg",
  35386. extra: 2463/2089,
  35387. bottom: 79/2542
  35388. }
  35389. },
  35390. },
  35391. [
  35392. {
  35393. name: "Normal",
  35394. height: math.unit(7, "feet"),
  35395. default: true
  35396. },
  35397. ]
  35398. ))
  35399. characterMakers.push(() => makeCharacter(
  35400. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35401. {
  35402. front: {
  35403. height: math.unit(16, "feet"),
  35404. name: "Front",
  35405. image: {
  35406. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35407. extra: 1844/1780,
  35408. bottom: 58/1902
  35409. }
  35410. },
  35411. },
  35412. [
  35413. {
  35414. name: "Normal",
  35415. height: math.unit(16, "feet"),
  35416. default: true
  35417. },
  35418. ]
  35419. ))
  35420. //characters
  35421. function makeCharacters() {
  35422. const results = [];
  35423. characterMakers.forEach(character => {
  35424. results.push(character());
  35425. });
  35426. return results;
  35427. }