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.
 
 
 

38091 wiersze
957 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. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound", "demon"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf"]
  569. },
  570. "meerkat": {
  571. name: "Meerkat",
  572. parents: ["mammal"]
  573. },
  574. "human": {
  575. name: "Human",
  576. parents: ["mammal"]
  577. },
  578. "geth": {
  579. name: "Geth",
  580. parents: ["android"]
  581. },
  582. "husky": {
  583. name: "Husky",
  584. parents: ["dog"]
  585. },
  586. "long-eared-bat": {
  587. name: "Long Eared Bat",
  588. parents: ["bat"]
  589. },
  590. "lizard": {
  591. name: "Lizard",
  592. parents: ["reptile"]
  593. },
  594. "salamander": {
  595. name: "Salamander",
  596. parents: ["lizard"]
  597. },
  598. "chameleon": {
  599. name: "Chameleon",
  600. parents: ["lizard"]
  601. },
  602. "gecko": {
  603. name: "Gecko",
  604. parents: ["lizard"]
  605. },
  606. "kobold": {
  607. name: "Kobold",
  608. parents: ["reptile"]
  609. },
  610. "charizard": {
  611. name: "Charizard",
  612. parents: ["pokemon"]
  613. },
  614. "lugia": {
  615. name: "Lugia",
  616. parents: ["pokemon"]
  617. },
  618. "cerberus": {
  619. name: "Cerberus",
  620. parents: ["dog"]
  621. },
  622. "tyrantrum": {
  623. name: "Tyrantrum",
  624. parents: ["pokemon"]
  625. },
  626. "lemur": {
  627. name: "Lemur",
  628. parents: ["mammal"]
  629. },
  630. "kelpie": {
  631. name: "Kelpie",
  632. parents: ["horse", "monster"]
  633. },
  634. "labrador": {
  635. name: "Labrador",
  636. parents: ["dog"]
  637. },
  638. "sylveon": {
  639. name: "Sylveon",
  640. parents: ["eeveelution"]
  641. },
  642. "eeveelution": {
  643. name: "Eeveelution",
  644. parents: ["pokemon"]
  645. },
  646. "polar-bear": {
  647. name: "Polar Bear",
  648. parents: ["bear"]
  649. },
  650. "bear": {
  651. name: "Bear",
  652. parents: ["mammal"]
  653. },
  654. "absol": {
  655. name: "Absol",
  656. parents: ["pokemon"]
  657. },
  658. "wolver": {
  659. name: "Wolver",
  660. parents: ["mammal"]
  661. },
  662. "rottweiler": {
  663. name: "Rottweiler",
  664. parents: ["dog"]
  665. },
  666. "zebra": {
  667. name: "Zebra",
  668. parents: ["horse"]
  669. },
  670. "yoshi": {
  671. name: "Yoshi",
  672. parents: ["lizard"]
  673. },
  674. "lynx": {
  675. name: "Lynx",
  676. parents: ["cat"]
  677. },
  678. "unknown": {
  679. name: "Unknown",
  680. parents: []
  681. },
  682. "thylacine": {
  683. name: "Thylacine",
  684. parents: ["mammal"]
  685. },
  686. "gabumon": {
  687. name: "Gabumon",
  688. parents: ["digimon"]
  689. },
  690. "border-collie": {
  691. name: "Border Collie",
  692. parents: ["dog"]
  693. },
  694. "imp": {
  695. name: "Imp",
  696. parents: ["demon"]
  697. },
  698. "kangaroo": {
  699. name: "Kangaroo",
  700. parents: ["mammal"]
  701. },
  702. "renamon": {
  703. name: "Renamon",
  704. parents: ["digimon"]
  705. },
  706. "candy-orca-dragon": {
  707. name: "Candy Orca Dragon",
  708. parents: ["fish", "dragon", "candy"]
  709. },
  710. "sabertooth-tiger": {
  711. name: "Sabertooth Tiger",
  712. parents: ["cat"]
  713. },
  714. "espurr": {
  715. name: "Espurr",
  716. parents: ["pokemon"]
  717. },
  718. "otter": {
  719. name: "Otter",
  720. parents: ["mammal"]
  721. },
  722. "elemental": {
  723. name: "Elemental",
  724. parents: ["mammal"]
  725. },
  726. "mew": {
  727. name: "Mew",
  728. parents: ["pokemon"]
  729. },
  730. "goodra": {
  731. name: "Goodra",
  732. parents: ["pokemon"]
  733. },
  734. "fairy": {
  735. name: "Fairy",
  736. parents: ["magical"]
  737. },
  738. "typhlosion": {
  739. name: "Typhlosion",
  740. parents: ["pokemon"]
  741. },
  742. "magical": {
  743. name: "Magical",
  744. parents: []
  745. },
  746. "xenomorph": {
  747. name: "Xenomorph",
  748. parents: ["monster", "alien"]
  749. },
  750. "charr": {
  751. name: "Charr",
  752. parents: ["cat"]
  753. },
  754. "siberian-husky": {
  755. name: "Siberian Husky",
  756. parents: ["husky"]
  757. },
  758. "alligator": {
  759. name: "Alligator",
  760. parents: ["reptile"]
  761. },
  762. "bernese-mountain-dog": {
  763. name: "Bernese Mountain Dog",
  764. parents: ["dog"]
  765. },
  766. "reshiram": {
  767. name: "Reshiram",
  768. parents: ["pokemon"]
  769. },
  770. "grizzly-bear": {
  771. name: "Grizzly Bear",
  772. parents: ["bear"]
  773. },
  774. "water-monitor": {
  775. name: "Water Monitor",
  776. parents: ["lizard"]
  777. },
  778. "banchofossa": {
  779. name: "Banchofossa",
  780. parents: ["mammal"]
  781. },
  782. "kirin": {
  783. name: "Kirin",
  784. parents: ["monster"]
  785. },
  786. "quilava": {
  787. name: "Quilava",
  788. parents: ["pokemon"]
  789. },
  790. "seviper": {
  791. name: "Seviper",
  792. parents: ["pokemon"]
  793. },
  794. "flying-fox": {
  795. name: "Flying Fox",
  796. parents: ["bat"]
  797. },
  798. "keynain": {
  799. name: "Keynain",
  800. parents: ["avian"]
  801. },
  802. "lucario": {
  803. name: "Lucario",
  804. parents: ["pokemon"]
  805. },
  806. "siamese-cat": {
  807. name: "Siamese Cat",
  808. parents: ["cat"]
  809. },
  810. "spider": {
  811. name: "Spider",
  812. parents: ["insect"]
  813. },
  814. "samurott": {
  815. name: "Samurott",
  816. parents: ["pokemon"]
  817. },
  818. "megalodon": {
  819. name: "Megalodon",
  820. parents: ["shark"]
  821. },
  822. "unicorn": {
  823. name: "Unicorn",
  824. parents: ["horse"]
  825. },
  826. "greninja": {
  827. name: "Greninja",
  828. parents: ["pokemon"]
  829. },
  830. "water-dragon": {
  831. name: "Water Dragon",
  832. parents: ["dragon"]
  833. },
  834. "cross-fox": {
  835. name: "Cross Fox",
  836. parents: ["fox"]
  837. },
  838. "synth": {
  839. name: "Synth",
  840. parents: ["machine"]
  841. },
  842. "construct": {
  843. name: "Construct",
  844. parents: []
  845. },
  846. "mexican-wolf": {
  847. name: "Mexican Wolf",
  848. parents: ["wolf"]
  849. },
  850. "leopard": {
  851. name: "Leopard",
  852. parents: ["cat"]
  853. },
  854. "pig": {
  855. name: "Pig",
  856. parents: ["mammal"]
  857. },
  858. "ampharos": {
  859. name: "Ampharos",
  860. parents: ["pokemon"]
  861. },
  862. "orca": {
  863. name: "Orca",
  864. parents: ["fish"]
  865. },
  866. "lycanroc": {
  867. name: "Lycanroc",
  868. parents: ["pokemon"]
  869. },
  870. "surkanu": {
  871. name: "Surkanu",
  872. parents: ["monster"]
  873. },
  874. "seal": {
  875. name: "Seal",
  876. parents: ["mammal"]
  877. },
  878. "keldeo": {
  879. name: "Keldeo",
  880. parents: ["pokemon"]
  881. },
  882. "great-dane": {
  883. name: "Great Dane",
  884. parents: ["dog"]
  885. },
  886. "black-backed-jackal": {
  887. name: "Black Backed Jackal",
  888. parents: ["jackal"]
  889. },
  890. "sheep": {
  891. name: "Sheep",
  892. parents: ["mammal"]
  893. },
  894. "leopard-seal": {
  895. name: "Leopard Seal",
  896. parents: ["seal"]
  897. },
  898. "zoroark": {
  899. name: "Zoroark",
  900. parents: ["pokemon"]
  901. },
  902. "maned-wolf": {
  903. name: "Maned Wolf",
  904. parents: ["canine"]
  905. },
  906. "dracha": {
  907. name: "Dracha",
  908. parents: ["dragon"]
  909. },
  910. "wolxi": {
  911. name: "Wolxi",
  912. parents: ["mammal", "alien"]
  913. },
  914. "dratini": {
  915. name: "Dratini",
  916. parents: ["pokemon", "dragon"]
  917. },
  918. "skaven": {
  919. name: "Skaven",
  920. parents: ["rat"]
  921. },
  922. "mongoose": {
  923. name: "Mongoose",
  924. parents: ["mammal"]
  925. },
  926. "lopunny": {
  927. name: "Lopunny",
  928. parents: ["pokemon", "rabbit"]
  929. },
  930. "feraligatr": {
  931. name: "Feraligatr",
  932. parents: ["pokemon", "alligator"]
  933. },
  934. "houndoom": {
  935. name: "Houndoom",
  936. parents: ["pokemon", "dog"]
  937. },
  938. "protogen": {
  939. name: "Protogen",
  940. parents: ["machine"]
  941. },
  942. "saint-bernard": {
  943. name: "Saint Bernard",
  944. parents: ["dog"]
  945. },
  946. "crow": {
  947. name: "Crow",
  948. parents: ["corvid"]
  949. },
  950. "delphox": {
  951. name: "Delphox",
  952. parents: ["pokemon", "fox"]
  953. },
  954. "moose": {
  955. name: "Moose",
  956. parents: ["mammal"]
  957. },
  958. "joraxian": {
  959. name: "Joraxian",
  960. parents: ["monster", "canine", "demon"]
  961. },
  962. "nimbat": {
  963. name: "Nimbat",
  964. parents: ["mammal"]
  965. },
  966. "aardwolf": {
  967. name: "Aardwolf",
  968. parents: ["canine"]
  969. },
  970. "fluudrani": {
  971. name: "Fluudrani",
  972. parents: ["animal"]
  973. },
  974. "arcanine": {
  975. name: "Arcanine",
  976. parents: ["pokemon", "dog"]
  977. },
  978. "inteleon": {
  979. name: "Inteleon",
  980. parents: ["pokemon", "fish"]
  981. },
  982. "ninetales": {
  983. name: "Ninetales",
  984. parents: ["pokemon", "kitsune"]
  985. },
  986. "tigrex": {
  987. name: "Tigrex",
  988. parents: ["tiger"]
  989. },
  990. "zorua": {
  991. name: "Zorua",
  992. parents: ["pokemon", "fox"]
  993. },
  994. "vulpix": {
  995. name: "Vulpix",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "barghest": {
  999. name: "Barghest",
  1000. parents: ["monster"]
  1001. },
  1002. "gray-wolf": {
  1003. name: "Gray Wolf",
  1004. parents: ["wolf"]
  1005. },
  1006. "ruppells-fox": {
  1007. name: "Rüppell's Fox",
  1008. parents: ["fox"]
  1009. },
  1010. "bull-terrier": {
  1011. name: "Bull Terrier",
  1012. parents: ["dog"]
  1013. },
  1014. "european-honey-buzzard": {
  1015. name: "European Honey Buzzard",
  1016. parents: ["avian"]
  1017. },
  1018. "t-rex": {
  1019. name: "T Rex",
  1020. parents: ["dinosaur"]
  1021. },
  1022. "mactarian": {
  1023. name: "Mactarian",
  1024. parents: ["shark", "monster"]
  1025. },
  1026. "mewtwo-y": {
  1027. name: "Mewtwo Y",
  1028. parents: ["mewtwo"]
  1029. },
  1030. "mewtwo": {
  1031. name: "Mewtwo",
  1032. parents: ["pokemon"]
  1033. },
  1034. "mew": {
  1035. name: "Mew",
  1036. parents: ["pokemon"]
  1037. },
  1038. "eevee": {
  1039. name: "Eevee",
  1040. parents: ["eeveelution"]
  1041. },
  1042. "mienshao": {
  1043. name: "Mienshao",
  1044. parents: ["pokemon"]
  1045. },
  1046. "sugar-glider": {
  1047. name: "Sugar Glider",
  1048. parents: ["opossum"]
  1049. },
  1050. "spectral-bat": {
  1051. name: "Spectral Bat",
  1052. parents: ["bat"]
  1053. },
  1054. "scolipede": {
  1055. name: "Scolipede",
  1056. parents: ["pokemon", "insect"]
  1057. },
  1058. "jackalope": {
  1059. name: "Jackalope",
  1060. parents: ["rabbit", "antelope"]
  1061. },
  1062. "caracal": {
  1063. name: "Caracal",
  1064. parents: ["cat"]
  1065. },
  1066. "stoat": {
  1067. name: "Stoat",
  1068. parents: ["mammal"]
  1069. },
  1070. "african-golden-cat": {
  1071. name: "African Golden Cat",
  1072. parents: ["cat"]
  1073. },
  1074. "gigantosaurus": {
  1075. name: "Gigantosaurus",
  1076. parents: ["dinosaur"]
  1077. },
  1078. "zorgoia": {
  1079. name: "Zorgoia",
  1080. parents: ["mammal"]
  1081. },
  1082. "monitor-lizard": {
  1083. name: "Monitor Lizard",
  1084. parents: ["lizard"]
  1085. },
  1086. "ziralkia": {
  1087. name: "Ziralkia",
  1088. parents: ["mammal"]
  1089. },
  1090. "kiiasi": {
  1091. name: "Kiiasi",
  1092. parents: ["animal"]
  1093. },
  1094. "synx": {
  1095. name: "Synx",
  1096. parents: ["monster"]
  1097. },
  1098. "panther": {
  1099. name: "Panther",
  1100. parents: ["cat"]
  1101. },
  1102. "azumarill": {
  1103. name: "Azumarill",
  1104. parents: ["pokemon"]
  1105. },
  1106. "river-snaptail": {
  1107. name: "River Snaptail",
  1108. parents: ["otter", "crocodile"]
  1109. },
  1110. "great-blue-heron": {
  1111. name: "Great Blue Heron",
  1112. parents: ["avian"]
  1113. },
  1114. "smeargle": {
  1115. name: "Smeargle",
  1116. parents: ["pokemon"]
  1117. },
  1118. "vendeilen": {
  1119. name: "Vendeilen",
  1120. parents: ["monster"]
  1121. },
  1122. "ventura": {
  1123. name: "Ventura",
  1124. parents: ["canine"]
  1125. },
  1126. "clouded-leopard": {
  1127. name: "Clouded Leopard",
  1128. parents: ["leopard"]
  1129. },
  1130. "argonian": {
  1131. name: "Argonian",
  1132. parents: ["lizard"]
  1133. },
  1134. "salazzle": {
  1135. name: "Salazzle",
  1136. parents: ["pokemon", "lizard"]
  1137. },
  1138. "je-stoff-drachen": {
  1139. name: "Je-Stoff Drachen",
  1140. parents: ["dragon"]
  1141. },
  1142. "finnish-spitz-dog": {
  1143. name: "Finnish Spitz Dog",
  1144. parents: ["dog"]
  1145. },
  1146. "gray-fox": {
  1147. name: "Gray Fox",
  1148. parents: ["fox"]
  1149. },
  1150. "opossum": {
  1151. name: "opossum",
  1152. parents: ["mammal"]
  1153. },
  1154. "antelope": {
  1155. name: "Antelope",
  1156. parents: ["mammal"]
  1157. },
  1158. "weavile": {
  1159. name: "Weavile",
  1160. parents: ["pokemon"]
  1161. },
  1162. "pikachu": {
  1163. name: "Pikachu",
  1164. parents: ["pokemon", "mouse"]
  1165. },
  1166. "grovyle": {
  1167. name: "Grovyle",
  1168. parents: ["pokemon", "plant"]
  1169. },
  1170. "sthara": {
  1171. name: "Sthara",
  1172. parents: ["snow-leopard", "reptile"]
  1173. },
  1174. "star-warrior": {
  1175. name: "Star Warrior",
  1176. parents: ["magical"]
  1177. },
  1178. "dragonoid": {
  1179. name: "Dragonoid",
  1180. parents: ["dragon"]
  1181. },
  1182. "suicune": {
  1183. name: "Suicune",
  1184. parents: ["pokemon"]
  1185. },
  1186. "vole": {
  1187. name: "Vole",
  1188. parents: ["mammal"]
  1189. },
  1190. "blaziken": {
  1191. name: "Blaziken",
  1192. parents: ["pokemon", "avian"]
  1193. },
  1194. "buizel": {
  1195. name: "Buizel",
  1196. parents: ["pokemon", "fish"]
  1197. },
  1198. "floatzel": {
  1199. name: "Floatzel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "umok": {
  1203. name: "Umok",
  1204. parents: ["avian"]
  1205. },
  1206. "sea-monster": {
  1207. name: "Sea Monster",
  1208. parents: ["monster", "fish"]
  1209. },
  1210. "egyptian-vulture": {
  1211. name: "Egyptian Vulture",
  1212. parents: ["avian"]
  1213. },
  1214. "doberman": {
  1215. name: "Doberman",
  1216. parents: ["dog"]
  1217. },
  1218. "zangoose": {
  1219. name: "Zangoose",
  1220. parents: ["pokemon", "mongoose"]
  1221. },
  1222. "mongoose": {
  1223. name: "Mongoose",
  1224. parents: ["mammal"]
  1225. },
  1226. "wickerbeast": {
  1227. name: "Wickerbeast",
  1228. parents: ["monster"]
  1229. },
  1230. "zenari": {
  1231. name: "Zenari",
  1232. parents: ["lizard"]
  1233. },
  1234. "plant": {
  1235. name: "Plant",
  1236. parents: []
  1237. },
  1238. "raskatox": {
  1239. name: "Raskatox",
  1240. parents: ["raccoon", "skunk", "cat", "fox"]
  1241. },
  1242. "mikromare": {
  1243. name: "mikromare",
  1244. parents: ["alien"]
  1245. },
  1246. "alien": {
  1247. name: "Alien",
  1248. parents: ["animal"]
  1249. },
  1250. "deity": {
  1251. name: "Deity",
  1252. parents: []
  1253. },
  1254. "skarlan": {
  1255. name: "Skarlan",
  1256. parents: ["slug", "dragon"]
  1257. },
  1258. "slug": {
  1259. name: "Slug",
  1260. parents: ["mollusk"]
  1261. },
  1262. "mollusk": {
  1263. name: "Mollusk",
  1264. parents: ["animal"]
  1265. },
  1266. "chimera": {
  1267. name: "Chimera",
  1268. parents: ["monster"]
  1269. },
  1270. "gestalt": {
  1271. name: "Gestalt",
  1272. parents: ["construct"]
  1273. },
  1274. "mimic": {
  1275. name: "Mimic",
  1276. parents: ["monster"]
  1277. },
  1278. "calico-rat": {
  1279. name: "Calico Rat",
  1280. parents: ["rat"]
  1281. },
  1282. "panda": {
  1283. name: "Panda",
  1284. parents: ["mammal"]
  1285. },
  1286. "oni": {
  1287. name: "Oni",
  1288. parents: ["monster"]
  1289. },
  1290. "pegasus": {
  1291. name: "Pegasus",
  1292. parents: ["horse"]
  1293. },
  1294. "vulpera": {
  1295. name: "Vulpera",
  1296. parents: ["fennec-fox"]
  1297. },
  1298. "ceratosaurus": {
  1299. name: "Ceratosaurus",
  1300. parents: ["dinosaur"]
  1301. },
  1302. "nykur": {
  1303. name: "Nykur",
  1304. parents: ["horse", "monster"]
  1305. },
  1306. "giraffe": {
  1307. name: "Giraffe",
  1308. parents: ["mammal"]
  1309. },
  1310. "tauren": {
  1311. name: "Tauren",
  1312. parents: ["cow"]
  1313. },
  1314. "draconi": {
  1315. name: "Draconi",
  1316. parents: ["alien", "cat", "cyborg"]
  1317. },
  1318. "dire-wolf": {
  1319. name: "Dire Wolf",
  1320. parents: ["wolf"]
  1321. },
  1322. "ferromorph": {
  1323. name: "Ferromorph",
  1324. parents: ["construct"]
  1325. },
  1326. "meowth": {
  1327. name: "Meowth",
  1328. parents: ["cat", "pokemon"]
  1329. },
  1330. "pavodragon": {
  1331. name: "Pavodragon",
  1332. parents: ["dragon"]
  1333. },
  1334. "aaltranae": {
  1335. name: "Aaltranae",
  1336. parents: ["dragon"]
  1337. },
  1338. "cyborg": {
  1339. name: "Cyborg",
  1340. parents: ["machine"]
  1341. },
  1342. "draptor": {
  1343. name: "Draptor",
  1344. parents: ["dragon"]
  1345. },
  1346. "candy": {
  1347. name: "Candy",
  1348. parents: []
  1349. },
  1350. "drenath": {
  1351. name: "Drenath",
  1352. parents: ["dragon", "snake", "rabbit"]
  1353. },
  1354. "coyju": {
  1355. name: "Coyju",
  1356. parents: ["coyote", "kaiju"]
  1357. },
  1358. "kaiju": {
  1359. name: "Kaiju",
  1360. parents: ["monster"]
  1361. },
  1362. "nickit": {
  1363. name: "Nickit",
  1364. parents: ["pokemon", "cat"]
  1365. },
  1366. "lopunny": {
  1367. name: "Lopunny",
  1368. parents: ["pokemon", "rabbit"]
  1369. },
  1370. "korean-jindo-dog": {
  1371. name: "Korean Jindo Dog",
  1372. parents: ["dog"]
  1373. },
  1374. "naga": {
  1375. name: "Naga",
  1376. parents: ["snake", "monster"]
  1377. },
  1378. "undead": {
  1379. name: "Undead",
  1380. parents: ["monster"]
  1381. },
  1382. "whale": {
  1383. name: "Whale",
  1384. parents: ["fish"]
  1385. },
  1386. "gelato-bee": {
  1387. name: "Gelato Bee",
  1388. parents: ["bee"]
  1389. },
  1390. "bee": {
  1391. name: "Bee",
  1392. parents: ["insect"]
  1393. },
  1394. "gardevoir": {
  1395. name: "Gardevoir",
  1396. parents: ["pokemon"]
  1397. },
  1398. "ant": {
  1399. name: "Ant",
  1400. parents: ["insect"]
  1401. },
  1402. "frog": {
  1403. name: "Frog",
  1404. parents: ["amphibian"]
  1405. },
  1406. "amphibian": {
  1407. name: "Amphibian",
  1408. parents: ["animal"]
  1409. },
  1410. "pangolin": {
  1411. name: "Pangolin",
  1412. parents: ["mammal"]
  1413. },
  1414. "uragi'viidorn": {
  1415. name: "Uragi'viidorn",
  1416. parents: ["avian", "bear"]
  1417. },
  1418. "gryphdelphais": {
  1419. name: "Gryphdelphais",
  1420. parents: ["dolphin", "gryphon"]
  1421. },
  1422. "plush": {
  1423. name: "Plush",
  1424. parents: ["construct"]
  1425. },
  1426. "draiger": {
  1427. name: "Draiger",
  1428. parents: ["dragon","tiger"]
  1429. },
  1430. "foxsky": {
  1431. name: "Foxsky",
  1432. parents: ["fox", "husky"]
  1433. },
  1434. "umbreon": {
  1435. name: "Umbreon",
  1436. parents: ["eeveelution"]
  1437. },
  1438. "slime-dragon": {
  1439. name: "Slime Dragon",
  1440. parents: ["dragon"]
  1441. },
  1442. "enderman": {
  1443. name: "Enderman",
  1444. parents: ["monster"]
  1445. },
  1446. "gremlin": {
  1447. name: "Gremlin",
  1448. parents: ["monster"]
  1449. },
  1450. "dragonsune": {
  1451. name: "Dragonsune",
  1452. parents: ["dragon", "kitsune"]
  1453. },
  1454. "ghost": {
  1455. name: "Ghost",
  1456. parents: ["supernatural"]
  1457. },
  1458. "false-vampire-bat": {
  1459. name: "False Vampire Bat",
  1460. parents: ["bat"]
  1461. },
  1462. "succubus": {
  1463. name: "Succubus",
  1464. parents: ["demon"]
  1465. },
  1466. "mia": {
  1467. name: "Mia",
  1468. parents: ["canine"]
  1469. },
  1470. "rainbow": {
  1471. name: "Rainbow",
  1472. parents: ["monster"]
  1473. },
  1474. "solgaleo": {
  1475. name: "Solgaleo",
  1476. parents: ["pokemon"]
  1477. },
  1478. "lucent-nargacuga": {
  1479. name: "Lucent Nargacuga",
  1480. parents: ["monster-hunter"]
  1481. },
  1482. "monster-hunter": {
  1483. name: "Monster Hunter",
  1484. parents: ["monster"]
  1485. },
  1486. "leviathan": {
  1487. "name": "Leviathan",
  1488. "url": "sea-monster"
  1489. },
  1490. "bull": {
  1491. name: "Bull",
  1492. parents: ["mammal"]
  1493. },
  1494. "tanuki": {
  1495. name: "Tanuki",
  1496. parents: ["monster"]
  1497. },
  1498. "chakat": {
  1499. name: "Chakat",
  1500. parents: ["cat"]
  1501. },
  1502. "hydra": {
  1503. name: "Hydra",
  1504. parents: ["monster"]
  1505. },
  1506. "zigzagoon": {
  1507. name: "Zigzagoon",
  1508. parents: ["raccoon", "pokemon"]
  1509. },
  1510. "vulture": {
  1511. name: "Vulture",
  1512. parents: ["avian"]
  1513. },
  1514. "eastern-dragon": {
  1515. name: "Eastern Dragon",
  1516. parents: ["dragon"]
  1517. },
  1518. "gryffon": {
  1519. name: "Gryffon",
  1520. parents: ["phoenix", "red-panda"]
  1521. },
  1522. "amtsvane": {
  1523. name: "Amtsvane",
  1524. parents: ["reptile"]
  1525. },
  1526. "kigavi": {
  1527. name: "Kigavi",
  1528. parents: ["avian"]
  1529. },
  1530. "turian": {
  1531. name: "Turian",
  1532. parents: ["avian"]
  1533. },
  1534. "zeraora": {
  1535. name: "Zeraora",
  1536. parents: ["pokemon"]
  1537. },
  1538. "sandshrew": {
  1539. name: "Sandshrew",
  1540. parents: ["pokemon", "pangolin"]
  1541. },
  1542. "valais-blacknose-sheep": {
  1543. name: "Valais Blacknose Sheep",
  1544. parents: ["sheep"]
  1545. },
  1546. "novaleit": {
  1547. name: "Novaleit",
  1548. parents: ["mammal"]
  1549. },
  1550. "dunnoh": {
  1551. name: "Dunnoh",
  1552. parents: ["mammal"]
  1553. },
  1554. "lunaral-dragon": {
  1555. name: "Lunaral Dragon",
  1556. parents: ["dragon"]
  1557. },
  1558. "arctic-wolf": {
  1559. name: "Arctic Wolf",
  1560. parents: ["wolf"]
  1561. },
  1562. "donkey": {
  1563. name: "Donkey",
  1564. parents: ["horse"]
  1565. },
  1566. "chinchilla": {
  1567. name: "Chinchilla",
  1568. parents: ["rodent"]
  1569. },
  1570. "felkin": {
  1571. name: "Felkin",
  1572. parents: ["dragon"]
  1573. },
  1574. "tykeriel": {
  1575. name: "Tykeriel",
  1576. parents: ["avian"]
  1577. },
  1578. "folf": {
  1579. name: "Folf",
  1580. parents: ["fox", "wolf"]
  1581. },
  1582. "pooltoy": {
  1583. name: "Pooltoy",
  1584. parents: ["construct"]
  1585. },
  1586. "demi": {
  1587. name: "Demi",
  1588. parents: ["human"]
  1589. },
  1590. "stegosaurus": {
  1591. name: "Stegosaurus",
  1592. parents: ["dinosaur"]
  1593. },
  1594. "computer-virus": {
  1595. name: "Computer Virus",
  1596. parents: ["program"]
  1597. },
  1598. "program": {
  1599. name: "Program",
  1600. parents: ["construct"]
  1601. },
  1602. "space-springhare": {
  1603. name: "Space Springhare",
  1604. parents: ["rabbit"]
  1605. },
  1606. "river-drake": {
  1607. name: "River Drake",
  1608. parents: ["dragon"]
  1609. },
  1610. "djinn": {
  1611. "name": "Djinn",
  1612. "url": "supernatural"
  1613. },
  1614. "supernatural": {
  1615. name: "Supernatural",
  1616. parents: ["monster"]
  1617. },
  1618. "grasshopper-mouse": {
  1619. name: "Grasshopper Mouse",
  1620. parents: ["mouse"]
  1621. },
  1622. "somali-cat": {
  1623. name: "Somali Cat",
  1624. parents: ["cat"]
  1625. },
  1626. "minccino": {
  1627. name: "Minccino",
  1628. parents: ["pokemon", "chinchilla"]
  1629. },
  1630. }
  1631. //species
  1632. function getSpeciesInfo(speciesList) {
  1633. let result = new Set();
  1634. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1635. result.add(entry)
  1636. });
  1637. return Array.from(result);
  1638. };
  1639. function getSpeciesInfoHelper(species) {
  1640. if (!speciesData[species]) {
  1641. console.warn(species + " doesn't exist");
  1642. return [];
  1643. }
  1644. if (speciesData[species].parents) {
  1645. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1646. } else {
  1647. return [species];
  1648. }
  1649. }
  1650. characterMakers.push(() => makeCharacter(
  1651. {
  1652. name: "Fen",
  1653. species: ["crux"],
  1654. description: {
  1655. title: "Bio",
  1656. text: "Very furry. Sheds on everything."
  1657. },
  1658. tags: [
  1659. "anthro",
  1660. "goo"
  1661. ]
  1662. },
  1663. {
  1664. back: {
  1665. height: math.unit(2.2428, "meter"),
  1666. weight: math.unit(124.738, "kg"),
  1667. name: "Back",
  1668. image: {
  1669. source: "./media/characters/fen/back.svg",
  1670. extra: 2024 / 1867,
  1671. bottom: 13 / 2037
  1672. },
  1673. info: {
  1674. description: {
  1675. mode: "append",
  1676. text: "\n\nHe is not currently looking at you."
  1677. }
  1678. }
  1679. },
  1680. full: {
  1681. height: math.unit(1.34, "meter"),
  1682. weight: math.unit(225, "kg"),
  1683. name: "Full",
  1684. image: {
  1685. source: "./media/characters/fen/full.svg"
  1686. },
  1687. info: {
  1688. description: {
  1689. mode: "append",
  1690. text: "\n\nMunch."
  1691. }
  1692. }
  1693. },
  1694. kneeling: {
  1695. height: math.unit(5.4, "feet"),
  1696. weight: math.unit(124.738, "kg"),
  1697. name: "Kneeling",
  1698. image: {
  1699. source: "./media/characters/fen/kneeling.svg",
  1700. extra: 563 / 507
  1701. }
  1702. },
  1703. goo: {
  1704. height: math.unit(2.8, "feet"),
  1705. weight: math.unit(125, "kg"),
  1706. capacity: math.unit(1, "people"),
  1707. name: "Goo",
  1708. image: {
  1709. source: "./media/characters/fen/goo.svg",
  1710. bottom: 116 / 613
  1711. }
  1712. },
  1713. lounging: {
  1714. height: math.unit(6.5, "feet"),
  1715. weight: math.unit(125, "kg"),
  1716. name: "Lounging",
  1717. image: {
  1718. source: "./media/characters/fen/lounging.svg"
  1719. }
  1720. },
  1721. },
  1722. [
  1723. {
  1724. name: "Normal",
  1725. height: math.unit(2.2428, "meter")
  1726. },
  1727. {
  1728. name: "Big",
  1729. height: math.unit(12, "feet")
  1730. },
  1731. {
  1732. name: "Minimacro",
  1733. height: math.unit(40, "feet"),
  1734. default: true,
  1735. info: {
  1736. description: {
  1737. mode: "append",
  1738. text: "\n\nTOO DAMN BIG"
  1739. }
  1740. }
  1741. },
  1742. {
  1743. name: "Macro",
  1744. height: math.unit(100, "feet"),
  1745. info: {
  1746. description: {
  1747. mode: "append",
  1748. text: "\n\nTOO DAMN BIG"
  1749. }
  1750. }
  1751. },
  1752. {
  1753. name: "Macro+",
  1754. height: math.unit(300, "feet")
  1755. },
  1756. {
  1757. name: "Megamacro",
  1758. height: math.unit(2, "miles")
  1759. }
  1760. ]
  1761. ))
  1762. characterMakers.push(() => makeCharacter(
  1763. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1764. {
  1765. front: {
  1766. height: math.unit(183, "cm"),
  1767. weight: math.unit(80, "kg"),
  1768. name: "Front",
  1769. image: {
  1770. source: "./media/characters/sofia-fluttertail/front.svg",
  1771. bottom: 0.01,
  1772. extra: 2154 / 2081
  1773. }
  1774. },
  1775. frontAlt: {
  1776. height: math.unit(183, "cm"),
  1777. weight: math.unit(80, "kg"),
  1778. name: "Front (alt)",
  1779. image: {
  1780. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1781. }
  1782. },
  1783. back: {
  1784. height: math.unit(183, "cm"),
  1785. weight: math.unit(80, "kg"),
  1786. name: "Back",
  1787. image: {
  1788. source: "./media/characters/sofia-fluttertail/back.svg"
  1789. }
  1790. },
  1791. kneeling: {
  1792. height: math.unit(125, "cm"),
  1793. weight: math.unit(80, "kg"),
  1794. name: "Kneeling",
  1795. image: {
  1796. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1797. extra: 1033 / 977,
  1798. bottom: 23.7 / 1057
  1799. }
  1800. },
  1801. maw: {
  1802. height: math.unit(183 / 5, "cm"),
  1803. name: "Maw",
  1804. image: {
  1805. source: "./media/characters/sofia-fluttertail/maw.svg"
  1806. }
  1807. },
  1808. mawcloseup: {
  1809. height: math.unit(183 / 5 * 0.41, "cm"),
  1810. name: "Maw (Closeup)",
  1811. image: {
  1812. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1813. }
  1814. },
  1815. paws: {
  1816. height: math.unit(1.17, "feet"),
  1817. name: "Paws",
  1818. image: {
  1819. source: "./media/characters/sofia-fluttertail/paws.svg",
  1820. extra: 851 / 851,
  1821. bottom: 17 / 868
  1822. }
  1823. },
  1824. },
  1825. [
  1826. {
  1827. name: "Normal",
  1828. height: math.unit(1.83, "meter")
  1829. },
  1830. {
  1831. name: "Size Thief",
  1832. height: math.unit(18, "feet")
  1833. },
  1834. {
  1835. name: "50 Foot Collie",
  1836. height: math.unit(50, "feet")
  1837. },
  1838. {
  1839. name: "Macro",
  1840. height: math.unit(96, "feet"),
  1841. default: true
  1842. },
  1843. {
  1844. name: "Megamerger",
  1845. height: math.unit(650, "feet")
  1846. },
  1847. ]
  1848. ))
  1849. characterMakers.push(() => makeCharacter(
  1850. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1851. {
  1852. front: {
  1853. height: math.unit(7, "feet"),
  1854. weight: math.unit(100, "kg"),
  1855. name: "Front",
  1856. image: {
  1857. source: "./media/characters/march/front.svg",
  1858. extra: 1,
  1859. bottom: 0.015
  1860. }
  1861. },
  1862. foot: {
  1863. height: math.unit(0.9, "feet"),
  1864. name: "Foot",
  1865. image: {
  1866. source: "./media/characters/march/foot.svg"
  1867. }
  1868. },
  1869. },
  1870. [
  1871. {
  1872. name: "Normal",
  1873. height: math.unit(7.9, "feet")
  1874. },
  1875. {
  1876. name: "Macro",
  1877. height: math.unit(220, "meters")
  1878. },
  1879. {
  1880. name: "Megamacro",
  1881. height: math.unit(2.98, "km"),
  1882. default: true
  1883. },
  1884. {
  1885. name: "Gigamacro",
  1886. height: math.unit(15963, "km")
  1887. },
  1888. {
  1889. name: "Teramacro",
  1890. height: math.unit(2980000000, "km")
  1891. },
  1892. {
  1893. name: "Examacro",
  1894. height: math.unit(250, "parsecs")
  1895. },
  1896. ]
  1897. ))
  1898. characterMakers.push(() => makeCharacter(
  1899. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1900. {
  1901. front: {
  1902. height: math.unit(6, "feet"),
  1903. weight: math.unit(60, "kg"),
  1904. name: "Front",
  1905. image: {
  1906. source: "./media/characters/noir/front.svg",
  1907. extra: 1,
  1908. bottom: 0.032
  1909. }
  1910. },
  1911. },
  1912. [
  1913. {
  1914. name: "Normal",
  1915. height: math.unit(6.6, "feet")
  1916. },
  1917. {
  1918. name: "Macro",
  1919. height: math.unit(500, "feet")
  1920. },
  1921. {
  1922. name: "Megamacro",
  1923. height: math.unit(2.5, "km"),
  1924. default: true
  1925. },
  1926. {
  1927. name: "Gigamacro",
  1928. height: math.unit(22500, "km")
  1929. },
  1930. {
  1931. name: "Teramacro",
  1932. height: math.unit(2500000000, "km")
  1933. },
  1934. {
  1935. name: "Examacro",
  1936. height: math.unit(200, "parsecs")
  1937. },
  1938. ]
  1939. ))
  1940. characterMakers.push(() => makeCharacter(
  1941. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1942. {
  1943. front: {
  1944. height: math.unit(7, "feet"),
  1945. weight: math.unit(100, "kg"),
  1946. name: "Front",
  1947. image: {
  1948. source: "./media/characters/okuri/front.svg",
  1949. extra: 1,
  1950. bottom: 0.037
  1951. }
  1952. },
  1953. back: {
  1954. height: math.unit(7, "feet"),
  1955. weight: math.unit(100, "kg"),
  1956. name: "Back",
  1957. image: {
  1958. source: "./media/characters/okuri/back.svg",
  1959. extra: 1,
  1960. bottom: 0.007
  1961. }
  1962. },
  1963. },
  1964. [
  1965. {
  1966. name: "Megamacro",
  1967. height: math.unit(100, "miles"),
  1968. default: true
  1969. },
  1970. ]
  1971. ))
  1972. characterMakers.push(() => makeCharacter(
  1973. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1974. {
  1975. front: {
  1976. height: math.unit(7, "feet"),
  1977. weight: math.unit(100, "kg"),
  1978. name: "Front",
  1979. image: {
  1980. source: "./media/characters/manny/front.svg",
  1981. extra: 1,
  1982. bottom: 0.06
  1983. }
  1984. },
  1985. back: {
  1986. height: math.unit(7, "feet"),
  1987. weight: math.unit(100, "kg"),
  1988. name: "Back",
  1989. image: {
  1990. source: "./media/characters/manny/back.svg",
  1991. extra: 1,
  1992. bottom: 0.014
  1993. }
  1994. },
  1995. },
  1996. [
  1997. {
  1998. name: "Normal",
  1999. height: math.unit(7, "feet"),
  2000. },
  2001. {
  2002. name: "Macro",
  2003. height: math.unit(78, "feet"),
  2004. default: true
  2005. },
  2006. {
  2007. name: "Macro+",
  2008. height: math.unit(300, "meters")
  2009. },
  2010. {
  2011. name: "Macro++",
  2012. height: math.unit(2400, "meters")
  2013. },
  2014. {
  2015. name: "Megamacro",
  2016. height: math.unit(5167, "meters")
  2017. },
  2018. {
  2019. name: "Gigamacro",
  2020. height: math.unit(41769, "miles")
  2021. },
  2022. ]
  2023. ))
  2024. characterMakers.push(() => makeCharacter(
  2025. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2026. {
  2027. front: {
  2028. height: math.unit(7, "feet"),
  2029. weight: math.unit(100, "kg"),
  2030. name: "Front",
  2031. image: {
  2032. source: "./media/characters/adake/front-1.svg"
  2033. }
  2034. },
  2035. frontAlt: {
  2036. height: math.unit(7, "feet"),
  2037. weight: math.unit(100, "kg"),
  2038. name: "Front (Alt)",
  2039. image: {
  2040. source: "./media/characters/adake/front-2.svg",
  2041. extra: 1,
  2042. bottom: 0.01
  2043. }
  2044. },
  2045. back: {
  2046. height: math.unit(7, "feet"),
  2047. weight: math.unit(100, "kg"),
  2048. name: "Back",
  2049. image: {
  2050. source: "./media/characters/adake/back.svg",
  2051. }
  2052. },
  2053. kneel: {
  2054. height: math.unit(5.385, "feet"),
  2055. weight: math.unit(100, "kg"),
  2056. name: "Kneeling",
  2057. image: {
  2058. source: "./media/characters/adake/kneel.svg",
  2059. bottom: 0.052
  2060. }
  2061. },
  2062. },
  2063. [
  2064. {
  2065. name: "Normal",
  2066. height: math.unit(7, "feet"),
  2067. },
  2068. {
  2069. name: "Macro",
  2070. height: math.unit(78, "feet"),
  2071. default: true
  2072. },
  2073. {
  2074. name: "Macro+",
  2075. height: math.unit(300, "meters")
  2076. },
  2077. {
  2078. name: "Macro++",
  2079. height: math.unit(2400, "meters")
  2080. },
  2081. {
  2082. name: "Megamacro",
  2083. height: math.unit(5167, "meters")
  2084. },
  2085. {
  2086. name: "Gigamacro",
  2087. height: math.unit(41769, "miles")
  2088. },
  2089. ]
  2090. ))
  2091. characterMakers.push(() => makeCharacter(
  2092. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2093. {
  2094. front: {
  2095. height: math.unit(1.65, "meters"),
  2096. weight: math.unit(50, "kg"),
  2097. name: "Front",
  2098. image: {
  2099. source: "./media/characters/elijah/front.svg",
  2100. extra: 858 / 830,
  2101. bottom: 95.5 / 953.8559
  2102. }
  2103. },
  2104. back: {
  2105. height: math.unit(1.65, "meters"),
  2106. weight: math.unit(50, "kg"),
  2107. name: "Back",
  2108. image: {
  2109. source: "./media/characters/elijah/back.svg",
  2110. extra: 895 / 850,
  2111. bottom: 5.3 / 897.956
  2112. }
  2113. },
  2114. frontNsfw: {
  2115. height: math.unit(1.65, "meters"),
  2116. weight: math.unit(50, "kg"),
  2117. name: "Front (NSFW)",
  2118. image: {
  2119. source: "./media/characters/elijah/front-nsfw.svg",
  2120. extra: 858 / 830,
  2121. bottom: 95.5 / 953.8559
  2122. }
  2123. },
  2124. backNsfw: {
  2125. height: math.unit(1.65, "meters"),
  2126. weight: math.unit(50, "kg"),
  2127. name: "Back (NSFW)",
  2128. image: {
  2129. source: "./media/characters/elijah/back-nsfw.svg",
  2130. extra: 895 / 850,
  2131. bottom: 5.3 / 897.956
  2132. }
  2133. },
  2134. dick: {
  2135. height: math.unit(1, "feet"),
  2136. name: "Dick",
  2137. image: {
  2138. source: "./media/characters/elijah/dick.svg"
  2139. }
  2140. },
  2141. beakOpen: {
  2142. height: math.unit(1.25, "feet"),
  2143. name: "Beak (Open)",
  2144. image: {
  2145. source: "./media/characters/elijah/beak-open.svg"
  2146. }
  2147. },
  2148. beakShut: {
  2149. height: math.unit(1.25, "feet"),
  2150. name: "Beak (Shut)",
  2151. image: {
  2152. source: "./media/characters/elijah/beak-shut.svg"
  2153. }
  2154. },
  2155. footFlexing: {
  2156. height: math.unit(1.61, "feet"),
  2157. name: "Foot (Flexing)",
  2158. image: {
  2159. source: "./media/characters/elijah/foot-flexing.svg"
  2160. }
  2161. },
  2162. footStepping: {
  2163. height: math.unit(1.44, "feet"),
  2164. name: "Foot (Stepping)",
  2165. image: {
  2166. source: "./media/characters/elijah/foot-stepping.svg"
  2167. }
  2168. },
  2169. plantigradeLeg: {
  2170. height: math.unit(2.34, "feet"),
  2171. name: "Plantigrade Leg",
  2172. image: {
  2173. source: "./media/characters/elijah/plantigrade-leg.svg"
  2174. }
  2175. },
  2176. plantigradeFootLeft: {
  2177. height: math.unit(0.9, "feet"),
  2178. name: "Plantigrade Foot (Left)",
  2179. image: {
  2180. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2181. }
  2182. },
  2183. plantigradeFootRight: {
  2184. height: math.unit(0.9, "feet"),
  2185. name: "Plantigrade Foot (Right)",
  2186. image: {
  2187. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2188. }
  2189. },
  2190. },
  2191. [
  2192. {
  2193. name: "Normal",
  2194. height: math.unit(1.65, "meters")
  2195. },
  2196. {
  2197. name: "Macro",
  2198. height: math.unit(55, "meters"),
  2199. default: true
  2200. },
  2201. {
  2202. name: "Macro+",
  2203. height: math.unit(105, "meters")
  2204. },
  2205. ]
  2206. ))
  2207. characterMakers.push(() => makeCharacter(
  2208. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2209. {
  2210. front: {
  2211. height: math.unit(11, "feet"),
  2212. weight: math.unit(320, "kg"),
  2213. name: "Front",
  2214. image: {
  2215. source: "./media/characters/rai/front.svg",
  2216. extra: 1802/1696,
  2217. bottom: 68/1870
  2218. }
  2219. },
  2220. frontDressed: {
  2221. height: math.unit(11, "feet"),
  2222. weight: math.unit(320, "kg"),
  2223. name: "Front (Dressed)",
  2224. image: {
  2225. source: "./media/characters/rai/front-dressed.svg",
  2226. extra: 1802/1696,
  2227. bottom: 68/1870
  2228. }
  2229. },
  2230. side: {
  2231. height: math.unit(11, "feet"),
  2232. weight: math.unit(320, "kg"),
  2233. name: "Side",
  2234. image: {
  2235. source: "./media/characters/rai/side.svg",
  2236. extra: 1789/1710,
  2237. bottom: 115/1904
  2238. }
  2239. },
  2240. back: {
  2241. height: math.unit(11, "feet"),
  2242. weight: math.unit(320, "kg"),
  2243. name: "Back",
  2244. image: {
  2245. source: "./media/characters/rai/back.svg",
  2246. extra: 1770/1707,
  2247. bottom: 28/1798
  2248. }
  2249. },
  2250. feral: {
  2251. height: math.unit(11, "feet"),
  2252. weight: math.unit(640, "kg"),
  2253. name: "Feral",
  2254. image: {
  2255. source: "./media/characters/rai/feral.svg",
  2256. extra: 1035/642,
  2257. bottom: 86/1121
  2258. }
  2259. },
  2260. dragon: {
  2261. height: math.unit(23, "feet"),
  2262. weight: math.unit(50000, "lb"),
  2263. name: "Dragon",
  2264. image: {
  2265. source: "./media/characters/rai/dragon.svg",
  2266. extra: 2498 / 2030,
  2267. bottom: 85.2 / 2584
  2268. }
  2269. },
  2270. maw: {
  2271. height: math.unit(6 / 3.81416, "feet"),
  2272. name: "Maw",
  2273. image: {
  2274. source: "./media/characters/rai/maw.svg"
  2275. }
  2276. },
  2277. },
  2278. [
  2279. {
  2280. name: "Normal",
  2281. height: math.unit(11, "feet")
  2282. },
  2283. {
  2284. name: "Macro",
  2285. height: math.unit(302, "feet"),
  2286. default: true
  2287. },
  2288. ]
  2289. ))
  2290. characterMakers.push(() => makeCharacter(
  2291. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2292. {
  2293. frontDressed: {
  2294. height: math.unit(216, "feet"),
  2295. weight: math.unit(7000000, "lb"),
  2296. name: "Front (Dressed)",
  2297. image: {
  2298. source: "./media/characters/jazzy/front-dressed.svg",
  2299. extra: 2738 / 2651,
  2300. bottom: 41.8 / 2786
  2301. }
  2302. },
  2303. backDressed: {
  2304. height: math.unit(216, "feet"),
  2305. weight: math.unit(7000000, "lb"),
  2306. name: "Back (Dressed)",
  2307. image: {
  2308. source: "./media/characters/jazzy/back-dressed.svg",
  2309. extra: 2775 / 2673,
  2310. bottom: 36.8 / 2817
  2311. }
  2312. },
  2313. front: {
  2314. height: math.unit(216, "feet"),
  2315. weight: math.unit(7000000, "lb"),
  2316. name: "Front",
  2317. image: {
  2318. source: "./media/characters/jazzy/front.svg",
  2319. extra: 2738 / 2651,
  2320. bottom: 41.8 / 2786
  2321. }
  2322. },
  2323. back: {
  2324. height: math.unit(216, "feet"),
  2325. weight: math.unit(7000000, "lb"),
  2326. name: "Back",
  2327. image: {
  2328. source: "./media/characters/jazzy/back.svg",
  2329. extra: 2775 / 2673,
  2330. bottom: 36.8 / 2817
  2331. }
  2332. },
  2333. maw: {
  2334. height: math.unit(20, "feet"),
  2335. name: "Maw",
  2336. image: {
  2337. source: "./media/characters/jazzy/maw.svg"
  2338. }
  2339. },
  2340. paws: {
  2341. height: math.unit(27.5, "feet"),
  2342. name: "Paws",
  2343. image: {
  2344. source: "./media/characters/jazzy/paws.svg"
  2345. }
  2346. },
  2347. eye: {
  2348. height: math.unit(4.4, "feet"),
  2349. name: "Eye",
  2350. image: {
  2351. source: "./media/characters/jazzy/eye.svg"
  2352. }
  2353. },
  2354. droneOffense: {
  2355. height: math.unit(9.5, "inches"),
  2356. name: "Drone (Offense)",
  2357. image: {
  2358. source: "./media/characters/jazzy/drone-offense.svg"
  2359. }
  2360. },
  2361. droneRecon: {
  2362. height: math.unit(9.5, "inches"),
  2363. name: "Drone (Recon)",
  2364. image: {
  2365. source: "./media/characters/jazzy/drone-recon.svg"
  2366. }
  2367. },
  2368. droneDefense: {
  2369. height: math.unit(9.5, "inches"),
  2370. name: "Drone (Defense)",
  2371. image: {
  2372. source: "./media/characters/jazzy/drone-defense.svg"
  2373. }
  2374. },
  2375. },
  2376. [
  2377. {
  2378. name: "Macro",
  2379. height: math.unit(216, "feet"),
  2380. default: true
  2381. },
  2382. ]
  2383. ))
  2384. characterMakers.push(() => makeCharacter(
  2385. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2386. {
  2387. front: {
  2388. height: math.unit(9 + 6/12, "feet"),
  2389. weight: math.unit(700, "lb"),
  2390. name: "Front",
  2391. image: {
  2392. source: "./media/characters/flamm/front.svg",
  2393. extra: 1751/1632,
  2394. bottom: 46/1797
  2395. }
  2396. },
  2397. buff: {
  2398. height: math.unit(9 + 6/12, "feet"),
  2399. weight: math.unit(950, "lb"),
  2400. name: "Buff",
  2401. image: {
  2402. source: "./media/characters/flamm/buff.svg",
  2403. extra: 3018/2874,
  2404. bottom: 221/3239
  2405. }
  2406. },
  2407. },
  2408. [
  2409. {
  2410. name: "Normal",
  2411. height: math.unit(9.5, "feet")
  2412. },
  2413. {
  2414. name: "Macro",
  2415. height: math.unit(200, "feet"),
  2416. default: true
  2417. },
  2418. ]
  2419. ))
  2420. characterMakers.push(() => makeCharacter(
  2421. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2422. {
  2423. front: {
  2424. height: math.unit(5 + 3/12, "feet"),
  2425. weight: math.unit(60, "kg"),
  2426. name: "Front",
  2427. image: {
  2428. source: "./media/characters/zephiro/front.svg",
  2429. extra: 2309 / 2162,
  2430. bottom: 0.069
  2431. }
  2432. },
  2433. side: {
  2434. height: math.unit(5 + 3/12, "feet"),
  2435. weight: math.unit(60, "kg"),
  2436. name: "Side",
  2437. image: {
  2438. source: "./media/characters/zephiro/side.svg",
  2439. extra: 2403 / 2279,
  2440. bottom: 0.015
  2441. }
  2442. },
  2443. back: {
  2444. height: math.unit(5 + 3/12, "feet"),
  2445. weight: math.unit(60, "kg"),
  2446. name: "Back",
  2447. image: {
  2448. source: "./media/characters/zephiro/back.svg",
  2449. extra: 2373 / 2244,
  2450. bottom: 0.013
  2451. }
  2452. },
  2453. hand: {
  2454. height: math.unit(0.68, "feet"),
  2455. name: "Hand",
  2456. image: {
  2457. source: "./media/characters/zephiro/hand.svg"
  2458. }
  2459. },
  2460. paw: {
  2461. height: math.unit(1, "feet"),
  2462. name: "Paw",
  2463. image: {
  2464. source: "./media/characters/zephiro/paw.svg"
  2465. }
  2466. },
  2467. beans: {
  2468. height: math.unit(0.93, "feet"),
  2469. name: "Beans",
  2470. image: {
  2471. source: "./media/characters/zephiro/beans.svg"
  2472. }
  2473. },
  2474. },
  2475. [
  2476. {
  2477. name: "Micro",
  2478. height: math.unit(3, "inches")
  2479. },
  2480. {
  2481. name: "Normal",
  2482. height: math.unit(5 + 3 / 12, "feet"),
  2483. default: true
  2484. },
  2485. {
  2486. name: "Macro",
  2487. height: math.unit(118, "feet")
  2488. },
  2489. ]
  2490. ))
  2491. characterMakers.push(() => makeCharacter(
  2492. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2493. {
  2494. front: {
  2495. height: math.unit(5, "feet"),
  2496. weight: math.unit(90, "kg"),
  2497. name: "Front",
  2498. image: {
  2499. source: "./media/characters/fory/front.svg",
  2500. extra: 2862 / 2674,
  2501. bottom: 180 / 3043.8
  2502. }
  2503. },
  2504. back: {
  2505. height: math.unit(5, "feet"),
  2506. weight: math.unit(90, "kg"),
  2507. name: "Back",
  2508. image: {
  2509. source: "./media/characters/fory/back.svg",
  2510. extra: 2962 / 2791,
  2511. bottom: 106 / 3071.8
  2512. }
  2513. },
  2514. foot: {
  2515. height: math.unit(2.14, "feet"),
  2516. name: "Foot",
  2517. image: {
  2518. source: "./media/characters/fory/foot.svg"
  2519. }
  2520. },
  2521. },
  2522. [
  2523. {
  2524. name: "Normal",
  2525. height: math.unit(5, "feet")
  2526. },
  2527. {
  2528. name: "Macro",
  2529. height: math.unit(50, "feet"),
  2530. default: true
  2531. },
  2532. {
  2533. name: "Megamacro",
  2534. height: math.unit(10, "miles")
  2535. },
  2536. {
  2537. name: "Gigamacro",
  2538. height: math.unit(5, "earths")
  2539. },
  2540. ]
  2541. ))
  2542. characterMakers.push(() => makeCharacter(
  2543. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2544. {
  2545. front: {
  2546. height: math.unit(7, "feet"),
  2547. weight: math.unit(90, "kg"),
  2548. name: "Front",
  2549. image: {
  2550. source: "./media/characters/kurrikage/front.svg",
  2551. extra: 1,
  2552. bottom: 0.035
  2553. }
  2554. },
  2555. back: {
  2556. height: math.unit(7, "feet"),
  2557. weight: math.unit(90, "lb"),
  2558. name: "Back",
  2559. image: {
  2560. source: "./media/characters/kurrikage/back.svg"
  2561. }
  2562. },
  2563. paw: {
  2564. height: math.unit(1.5, "feet"),
  2565. name: "Paw",
  2566. image: {
  2567. source: "./media/characters/kurrikage/paw.svg"
  2568. }
  2569. },
  2570. staff: {
  2571. height: math.unit(6.7, "feet"),
  2572. name: "Staff",
  2573. image: {
  2574. source: "./media/characters/kurrikage/staff.svg"
  2575. }
  2576. },
  2577. peek: {
  2578. height: math.unit(1.05, "feet"),
  2579. name: "Peeking",
  2580. image: {
  2581. source: "./media/characters/kurrikage/peek.svg",
  2582. bottom: 0.08
  2583. }
  2584. },
  2585. },
  2586. [
  2587. {
  2588. name: "Normal",
  2589. height: math.unit(12, "feet"),
  2590. default: true
  2591. },
  2592. {
  2593. name: "Big",
  2594. height: math.unit(20, "feet")
  2595. },
  2596. {
  2597. name: "Macro",
  2598. height: math.unit(500, "feet")
  2599. },
  2600. {
  2601. name: "Megamacro",
  2602. height: math.unit(20, "miles")
  2603. },
  2604. ]
  2605. ))
  2606. characterMakers.push(() => makeCharacter(
  2607. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2608. {
  2609. front: {
  2610. height: math.unit(6, "feet"),
  2611. weight: math.unit(75, "kg"),
  2612. name: "Front",
  2613. image: {
  2614. source: "./media/characters/shingo/front.svg",
  2615. extra: 706/681,
  2616. bottom: 11/717
  2617. }
  2618. },
  2619. frontAlt: {
  2620. height: math.unit(6, "feet"),
  2621. weight: math.unit(75, "kg"),
  2622. name: "Front (Alt)",
  2623. image: {
  2624. source: "./media/characters/shingo/front-alt.svg",
  2625. extra: 3511 / 3338,
  2626. bottom: 0.005
  2627. }
  2628. },
  2629. paw: {
  2630. height: math.unit(1, "feet"),
  2631. name: "Paw",
  2632. image: {
  2633. source: "./media/characters/shingo/paw.svg"
  2634. }
  2635. },
  2636. },
  2637. [
  2638. {
  2639. name: "Micro",
  2640. height: math.unit(4, "inches")
  2641. },
  2642. {
  2643. name: "Normal",
  2644. height: math.unit(6, "feet"),
  2645. default: true
  2646. },
  2647. {
  2648. name: "Macro",
  2649. height: math.unit(108, "feet")
  2650. },
  2651. {
  2652. name: "Macro+",
  2653. height: math.unit(1500, "feet")
  2654. },
  2655. ]
  2656. ))
  2657. characterMakers.push(() => makeCharacter(
  2658. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2659. {
  2660. side: {
  2661. height: math.unit(6, "feet"),
  2662. weight: math.unit(75, "kg"),
  2663. name: "Side",
  2664. image: {
  2665. source: "./media/characters/aigey/side.svg"
  2666. }
  2667. },
  2668. },
  2669. [
  2670. {
  2671. name: "Macro",
  2672. height: math.unit(200, "feet"),
  2673. default: true
  2674. },
  2675. {
  2676. name: "Megamacro",
  2677. height: math.unit(100, "miles")
  2678. },
  2679. ]
  2680. )
  2681. )
  2682. characterMakers.push(() => makeCharacter(
  2683. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2684. {
  2685. front: {
  2686. height: math.unit(5 + 5 / 12, "feet"),
  2687. weight: math.unit(75, "kg"),
  2688. name: "Front",
  2689. image: {
  2690. source: "./media/characters/natasha/front.svg",
  2691. extra: 859 / 824,
  2692. bottom: 23 / 879.6
  2693. }
  2694. },
  2695. frontNsfw: {
  2696. height: math.unit(5 + 5 / 12, "feet"),
  2697. weight: math.unit(75, "kg"),
  2698. name: "Front (NSFW)",
  2699. image: {
  2700. source: "./media/characters/natasha/front-nsfw.svg",
  2701. extra: 859 / 824,
  2702. bottom: 23 / 879.6
  2703. }
  2704. },
  2705. frontErect: {
  2706. height: math.unit(5 + 5 / 12, "feet"),
  2707. weight: math.unit(75, "kg"),
  2708. name: "Front (Erect)",
  2709. image: {
  2710. source: "./media/characters/natasha/front-erect.svg",
  2711. extra: 859 / 824,
  2712. bottom: 23 / 879.6
  2713. }
  2714. },
  2715. back: {
  2716. height: math.unit(5 + 5 / 12, "feet"),
  2717. weight: math.unit(75, "kg"),
  2718. name: "Back",
  2719. image: {
  2720. source: "./media/characters/natasha/back.svg",
  2721. extra: 887.9 / 852.6,
  2722. bottom: 9.7 / 896.4
  2723. }
  2724. },
  2725. backAlt: {
  2726. height: math.unit(5 + 5 / 12, "feet"),
  2727. weight: math.unit(75, "kg"),
  2728. name: "Back (Alt)",
  2729. image: {
  2730. source: "./media/characters/natasha/back-alt.svg",
  2731. extra: 1236.7 / 1192,
  2732. bottom: 22.3 / 1258.2
  2733. }
  2734. },
  2735. dick: {
  2736. height: math.unit(1.772, "feet"),
  2737. name: "Dick",
  2738. image: {
  2739. source: "./media/characters/natasha/dick.svg"
  2740. }
  2741. },
  2742. paw: {
  2743. height: math.unit(0.250, "meters"),
  2744. name: "Paw",
  2745. image: {
  2746. source: "./media/characters/natasha/paw.svg"
  2747. }
  2748. },
  2749. },
  2750. [
  2751. {
  2752. name: "Normal",
  2753. height: math.unit(5 + 5 / 12, "feet")
  2754. },
  2755. {
  2756. name: "Large",
  2757. height: math.unit(12, "feet")
  2758. },
  2759. {
  2760. name: "Macro",
  2761. height: math.unit(100, "feet"),
  2762. default: true
  2763. },
  2764. {
  2765. name: "Macro+",
  2766. height: math.unit(260, "feet")
  2767. },
  2768. {
  2769. name: "Macro++",
  2770. height: math.unit(1, "mile")
  2771. },
  2772. ]
  2773. ))
  2774. characterMakers.push(() => makeCharacter(
  2775. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2776. {
  2777. front: {
  2778. height: math.unit(6, "feet"),
  2779. weight: math.unit(75, "kg"),
  2780. name: "Front",
  2781. image: {
  2782. source: "./media/characters/malik/front.svg"
  2783. }
  2784. },
  2785. side: {
  2786. height: math.unit(6, "feet"),
  2787. weight: math.unit(75, "kg"),
  2788. name: "Side",
  2789. image: {
  2790. source: "./media/characters/malik/side.svg",
  2791. extra: 1.1539
  2792. }
  2793. },
  2794. back: {
  2795. height: math.unit(6, "feet"),
  2796. weight: math.unit(75, "kg"),
  2797. name: "Back",
  2798. image: {
  2799. source: "./media/characters/malik/back.svg"
  2800. }
  2801. },
  2802. },
  2803. [
  2804. {
  2805. name: "Macro",
  2806. height: math.unit(156, "feet"),
  2807. default: true
  2808. },
  2809. {
  2810. name: "Macro+",
  2811. height: math.unit(1188, "feet")
  2812. },
  2813. ]
  2814. ))
  2815. characterMakers.push(() => makeCharacter(
  2816. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2817. {
  2818. front: {
  2819. height: math.unit(6, "feet"),
  2820. weight: math.unit(75, "kg"),
  2821. name: "Front",
  2822. image: {
  2823. source: "./media/characters/sefer/front.svg",
  2824. extra: 848 / 659,
  2825. bottom: 28.3 / 876.442
  2826. }
  2827. },
  2828. back: {
  2829. height: math.unit(6, "feet"),
  2830. weight: math.unit(75, "kg"),
  2831. name: "Back",
  2832. image: {
  2833. source: "./media/characters/sefer/back.svg",
  2834. extra: 864 / 695,
  2835. bottom: 10 / 871
  2836. }
  2837. },
  2838. frontDressed: {
  2839. height: math.unit(6, "feet"),
  2840. weight: math.unit(75, "kg"),
  2841. name: "Front (Dressed)",
  2842. image: {
  2843. source: "./media/characters/sefer/front-dressed.svg",
  2844. extra: 839 / 653,
  2845. bottom: 37.6 / 878
  2846. }
  2847. },
  2848. },
  2849. [
  2850. {
  2851. name: "Normal",
  2852. height: math.unit(6, "feet"),
  2853. default: true
  2854. },
  2855. ]
  2856. ))
  2857. characterMakers.push(() => makeCharacter(
  2858. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2859. {
  2860. body: {
  2861. height: math.unit(2.2428, "meter"),
  2862. weight: math.unit(124.738, "kg"),
  2863. name: "Body",
  2864. image: {
  2865. extra: 1225 / 1050,
  2866. source: "./media/characters/north/front.svg"
  2867. }
  2868. }
  2869. },
  2870. [
  2871. {
  2872. name: "Micro",
  2873. height: math.unit(4, "inches")
  2874. },
  2875. {
  2876. name: "Macro",
  2877. height: math.unit(63, "meters")
  2878. },
  2879. {
  2880. name: "Megamacro",
  2881. height: math.unit(101, "miles"),
  2882. default: true
  2883. }
  2884. ]
  2885. ))
  2886. characterMakers.push(() => makeCharacter(
  2887. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2888. {
  2889. angled: {
  2890. height: math.unit(4, "meter"),
  2891. weight: math.unit(150, "kg"),
  2892. name: "Angled",
  2893. image: {
  2894. source: "./media/characters/talan/angled-sfw.svg",
  2895. bottom: 29 / 3734
  2896. }
  2897. },
  2898. angledNsfw: {
  2899. height: math.unit(4, "meter"),
  2900. weight: math.unit(150, "kg"),
  2901. name: "Angled (NSFW)",
  2902. image: {
  2903. source: "./media/characters/talan/angled-nsfw.svg",
  2904. bottom: 29 / 3734
  2905. }
  2906. },
  2907. frontNsfw: {
  2908. height: math.unit(4, "meter"),
  2909. weight: math.unit(150, "kg"),
  2910. name: "Front (NSFW)",
  2911. image: {
  2912. source: "./media/characters/talan/front-nsfw.svg",
  2913. bottom: 29 / 3734
  2914. }
  2915. },
  2916. sideNsfw: {
  2917. height: math.unit(4, "meter"),
  2918. weight: math.unit(150, "kg"),
  2919. name: "Side (NSFW)",
  2920. image: {
  2921. source: "./media/characters/talan/side-nsfw.svg",
  2922. bottom: 29 / 3734
  2923. }
  2924. },
  2925. back: {
  2926. height: math.unit(4, "meter"),
  2927. weight: math.unit(150, "kg"),
  2928. name: "Back",
  2929. image: {
  2930. source: "./media/characters/talan/back.svg"
  2931. }
  2932. },
  2933. dickBottom: {
  2934. height: math.unit(0.621, "meter"),
  2935. name: "Dick (Bottom)",
  2936. image: {
  2937. source: "./media/characters/talan/dick-bottom.svg"
  2938. }
  2939. },
  2940. dickTop: {
  2941. height: math.unit(0.621, "meter"),
  2942. name: "Dick (Top)",
  2943. image: {
  2944. source: "./media/characters/talan/dick-top.svg"
  2945. }
  2946. },
  2947. dickSide: {
  2948. height: math.unit(0.305, "meter"),
  2949. name: "Dick (Side)",
  2950. image: {
  2951. source: "./media/characters/talan/dick-side.svg"
  2952. }
  2953. },
  2954. dickFront: {
  2955. height: math.unit(0.305, "meter"),
  2956. name: "Dick (Front)",
  2957. image: {
  2958. source: "./media/characters/talan/dick-front.svg"
  2959. }
  2960. },
  2961. },
  2962. [
  2963. {
  2964. name: "Normal",
  2965. height: math.unit(4, "meters")
  2966. },
  2967. {
  2968. name: "Macro",
  2969. height: math.unit(100, "meters")
  2970. },
  2971. {
  2972. name: "Megamacro",
  2973. height: math.unit(2, "miles"),
  2974. default: true
  2975. },
  2976. {
  2977. name: "Gigamacro",
  2978. height: math.unit(5000, "miles")
  2979. },
  2980. {
  2981. name: "Teramacro",
  2982. height: math.unit(100, "parsecs")
  2983. }
  2984. ]
  2985. ))
  2986. characterMakers.push(() => makeCharacter(
  2987. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2988. {
  2989. front: {
  2990. height: math.unit(2, "meter"),
  2991. weight: math.unit(90, "kg"),
  2992. name: "Front",
  2993. image: {
  2994. source: "./media/characters/gael'rathus/front.svg"
  2995. }
  2996. },
  2997. frontAlt: {
  2998. height: math.unit(2, "meter"),
  2999. weight: math.unit(90, "kg"),
  3000. name: "Front (alt)",
  3001. image: {
  3002. source: "./media/characters/gael'rathus/front-alt.svg"
  3003. }
  3004. },
  3005. frontAlt2: {
  3006. height: math.unit(2, "meter"),
  3007. weight: math.unit(90, "kg"),
  3008. name: "Front (alt 2)",
  3009. image: {
  3010. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3011. }
  3012. }
  3013. },
  3014. [
  3015. {
  3016. name: "Normal",
  3017. height: math.unit(9, "feet"),
  3018. default: true
  3019. },
  3020. {
  3021. name: "Large",
  3022. height: math.unit(25, "feet")
  3023. },
  3024. {
  3025. name: "Macro",
  3026. height: math.unit(0.25, "miles")
  3027. },
  3028. {
  3029. name: "Megamacro",
  3030. height: math.unit(10, "miles")
  3031. }
  3032. ]
  3033. ))
  3034. characterMakers.push(() => makeCharacter(
  3035. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3036. {
  3037. side: {
  3038. height: math.unit(2, "meter"),
  3039. weight: math.unit(140, "kg"),
  3040. name: "Side",
  3041. image: {
  3042. source: "./media/characters/sosha/side.svg",
  3043. bottom: 0.042
  3044. }
  3045. },
  3046. },
  3047. [
  3048. {
  3049. name: "Normal",
  3050. height: math.unit(12, "feet"),
  3051. default: true
  3052. }
  3053. ]
  3054. ))
  3055. characterMakers.push(() => makeCharacter(
  3056. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3057. {
  3058. side: {
  3059. height: math.unit(5 + 5 / 12, "feet"),
  3060. weight: math.unit(170, "kg"),
  3061. name: "Side",
  3062. image: {
  3063. source: "./media/characters/runnola/side.svg",
  3064. extra: 741 / 448,
  3065. bottom: 0.05
  3066. }
  3067. },
  3068. },
  3069. [
  3070. {
  3071. name: "Small",
  3072. height: math.unit(3, "feet")
  3073. },
  3074. {
  3075. name: "Normal",
  3076. height: math.unit(5 + 5 / 12, "feet"),
  3077. default: true
  3078. },
  3079. {
  3080. name: "Big",
  3081. height: math.unit(10, "feet")
  3082. },
  3083. ]
  3084. ))
  3085. characterMakers.push(() => makeCharacter(
  3086. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3087. {
  3088. front: {
  3089. height: math.unit(2, "meter"),
  3090. weight: math.unit(50, "kg"),
  3091. name: "Front",
  3092. image: {
  3093. source: "./media/characters/kurribird/front.svg",
  3094. bottom: 0.015
  3095. }
  3096. },
  3097. frontAlt: {
  3098. height: math.unit(1.5, "meter"),
  3099. weight: math.unit(50, "kg"),
  3100. name: "Front (Alt)",
  3101. image: {
  3102. source: "./media/characters/kurribird/front-alt.svg",
  3103. extra: 1.45
  3104. }
  3105. },
  3106. },
  3107. [
  3108. {
  3109. name: "Normal",
  3110. height: math.unit(7, "feet")
  3111. },
  3112. {
  3113. name: "Big",
  3114. height: math.unit(12, "feet"),
  3115. default: true
  3116. },
  3117. {
  3118. name: "Macro",
  3119. height: math.unit(1500, "feet")
  3120. },
  3121. {
  3122. name: "Megamacro",
  3123. height: math.unit(2, "miles")
  3124. }
  3125. ]
  3126. ))
  3127. characterMakers.push(() => makeCharacter(
  3128. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3129. {
  3130. front: {
  3131. height: math.unit(2, "meter"),
  3132. weight: math.unit(80, "kg"),
  3133. name: "Front",
  3134. image: {
  3135. source: "./media/characters/elbial/front.svg",
  3136. extra: 1643 / 1556,
  3137. bottom: 60.2 / 1696
  3138. }
  3139. },
  3140. side: {
  3141. height: math.unit(2, "meter"),
  3142. weight: math.unit(80, "kg"),
  3143. name: "Side",
  3144. image: {
  3145. source: "./media/characters/elbial/side.svg",
  3146. extra: 1630 / 1565,
  3147. bottom: 71.5 / 1697
  3148. }
  3149. },
  3150. back: {
  3151. height: math.unit(2, "meter"),
  3152. weight: math.unit(80, "kg"),
  3153. name: "Back",
  3154. image: {
  3155. source: "./media/characters/elbial/back.svg",
  3156. extra: 1668 / 1595,
  3157. bottom: 5.6 / 1672
  3158. }
  3159. },
  3160. frontDressed: {
  3161. height: math.unit(2, "meter"),
  3162. weight: math.unit(80, "kg"),
  3163. name: "Front (Dressed)",
  3164. image: {
  3165. source: "./media/characters/elbial/front-dressed.svg",
  3166. extra: 1653 / 1584,
  3167. bottom: 57 / 1708
  3168. }
  3169. },
  3170. genitals: {
  3171. height: math.unit(2 / 3.367, "meter"),
  3172. name: "Genitals",
  3173. image: {
  3174. source: "./media/characters/elbial/genitals.svg"
  3175. }
  3176. },
  3177. },
  3178. [
  3179. {
  3180. name: "Large",
  3181. height: math.unit(100, "feet")
  3182. },
  3183. {
  3184. name: "Macro",
  3185. height: math.unit(500, "feet"),
  3186. default: true
  3187. },
  3188. {
  3189. name: "Megamacro",
  3190. height: math.unit(10, "miles")
  3191. },
  3192. {
  3193. name: "Gigamacro",
  3194. height: math.unit(25000, "miles")
  3195. },
  3196. {
  3197. name: "Full-Size",
  3198. height: math.unit(8000000, "gigaparsecs")
  3199. }
  3200. ]
  3201. ))
  3202. characterMakers.push(() => makeCharacter(
  3203. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3204. {
  3205. front: {
  3206. height: math.unit(2, "meter"),
  3207. weight: math.unit(60, "kg"),
  3208. name: "Front",
  3209. image: {
  3210. source: "./media/characters/noah/front.svg"
  3211. }
  3212. },
  3213. talons: {
  3214. height: math.unit(0.315, "meter"),
  3215. name: "Talons",
  3216. image: {
  3217. source: "./media/characters/noah/talons.svg"
  3218. }
  3219. }
  3220. },
  3221. [
  3222. {
  3223. name: "Large",
  3224. height: math.unit(50, "feet")
  3225. },
  3226. {
  3227. name: "Macro",
  3228. height: math.unit(750, "feet"),
  3229. default: true
  3230. },
  3231. {
  3232. name: "Megamacro",
  3233. height: math.unit(50, "miles")
  3234. },
  3235. {
  3236. name: "Gigamacro",
  3237. height: math.unit(100000, "miles")
  3238. },
  3239. {
  3240. name: "Full-Size",
  3241. height: math.unit(3000000000, "miles")
  3242. }
  3243. ]
  3244. ))
  3245. characterMakers.push(() => makeCharacter(
  3246. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3247. {
  3248. front: {
  3249. height: math.unit(2, "meter"),
  3250. weight: math.unit(80, "kg"),
  3251. name: "Front",
  3252. image: {
  3253. source: "./media/characters/natalya/front.svg"
  3254. }
  3255. },
  3256. back: {
  3257. height: math.unit(2, "meter"),
  3258. weight: math.unit(80, "kg"),
  3259. name: "Back",
  3260. image: {
  3261. source: "./media/characters/natalya/back.svg"
  3262. }
  3263. }
  3264. },
  3265. [
  3266. {
  3267. name: "Normal",
  3268. height: math.unit(150, "feet"),
  3269. default: true
  3270. },
  3271. {
  3272. name: "Megamacro",
  3273. height: math.unit(5, "miles")
  3274. },
  3275. {
  3276. name: "Full-Size",
  3277. height: math.unit(600, "kiloparsecs")
  3278. }
  3279. ]
  3280. ))
  3281. characterMakers.push(() => makeCharacter(
  3282. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3283. {
  3284. front: {
  3285. height: math.unit(2, "meter"),
  3286. weight: math.unit(50, "kg"),
  3287. name: "Front",
  3288. image: {
  3289. source: "./media/characters/erestrebah/front.svg",
  3290. extra: 208 / 193,
  3291. bottom: 0.055
  3292. }
  3293. },
  3294. back: {
  3295. height: math.unit(2, "meter"),
  3296. weight: math.unit(50, "kg"),
  3297. name: "Back",
  3298. image: {
  3299. source: "./media/characters/erestrebah/back.svg",
  3300. extra: 1.3
  3301. }
  3302. }
  3303. },
  3304. [
  3305. {
  3306. name: "Normal",
  3307. height: math.unit(10, "feet")
  3308. },
  3309. {
  3310. name: "Large",
  3311. height: math.unit(50, "feet"),
  3312. default: true
  3313. },
  3314. {
  3315. name: "Macro",
  3316. height: math.unit(300, "feet")
  3317. },
  3318. {
  3319. name: "Macro+",
  3320. height: math.unit(750, "feet")
  3321. },
  3322. {
  3323. name: "Megamacro",
  3324. height: math.unit(3, "miles")
  3325. }
  3326. ]
  3327. ))
  3328. characterMakers.push(() => makeCharacter(
  3329. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3330. {
  3331. front: {
  3332. height: math.unit(2, "meter"),
  3333. weight: math.unit(80, "kg"),
  3334. name: "Front",
  3335. image: {
  3336. source: "./media/characters/jennifer/front.svg",
  3337. bottom: 0.11,
  3338. extra: 1.16
  3339. }
  3340. },
  3341. frontAlt: {
  3342. height: math.unit(2, "meter"),
  3343. weight: math.unit(80, "kg"),
  3344. name: "Front (Alt)",
  3345. image: {
  3346. source: "./media/characters/jennifer/front-alt.svg"
  3347. }
  3348. }
  3349. },
  3350. [
  3351. {
  3352. name: "Canon Height",
  3353. height: math.unit(120, "feet"),
  3354. default: true
  3355. },
  3356. {
  3357. name: "Macro+",
  3358. height: math.unit(300, "feet")
  3359. },
  3360. {
  3361. name: "Megamacro",
  3362. height: math.unit(20000, "feet")
  3363. }
  3364. ]
  3365. ))
  3366. characterMakers.push(() => makeCharacter(
  3367. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3368. {
  3369. front: {
  3370. height: math.unit(2, "meter"),
  3371. weight: math.unit(50, "kg"),
  3372. name: "Front",
  3373. image: {
  3374. source: "./media/characters/kalista/front.svg",
  3375. extra: 1947 / 1700,
  3376. bottom: 76.6 / 1412.98
  3377. }
  3378. },
  3379. back: {
  3380. height: math.unit(2, "meter"),
  3381. weight: math.unit(50, "kg"),
  3382. name: "Back",
  3383. image: {
  3384. source: "./media/characters/kalista/back.svg",
  3385. extra: 1366 / 1156,
  3386. bottom: 33.9 / 1362.78
  3387. }
  3388. }
  3389. },
  3390. [
  3391. {
  3392. name: "Uncomfortably Small",
  3393. height: math.unit(10, "feet")
  3394. },
  3395. {
  3396. name: "Small",
  3397. height: math.unit(30, "feet")
  3398. },
  3399. {
  3400. name: "Macro",
  3401. height: math.unit(100, "feet"),
  3402. default: true
  3403. },
  3404. {
  3405. name: "Macro+",
  3406. height: math.unit(2000, "feet")
  3407. },
  3408. {
  3409. name: "True Form",
  3410. height: math.unit(8924, "miles")
  3411. }
  3412. ]
  3413. ))
  3414. characterMakers.push(() => makeCharacter(
  3415. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3416. {
  3417. front: {
  3418. height: math.unit(2, "meter"),
  3419. weight: math.unit(120, "kg"),
  3420. name: "Front",
  3421. image: {
  3422. source: "./media/characters/ggv/front.svg"
  3423. }
  3424. },
  3425. side: {
  3426. height: math.unit(2, "meter"),
  3427. weight: math.unit(120, "kg"),
  3428. name: "Side",
  3429. image: {
  3430. source: "./media/characters/ggv/side.svg"
  3431. }
  3432. }
  3433. },
  3434. [
  3435. {
  3436. name: "Extremely Puny",
  3437. height: math.unit(9 + 5 / 12, "feet")
  3438. },
  3439. {
  3440. name: "Horribly Small",
  3441. height: math.unit(47.7, "miles"),
  3442. default: true
  3443. },
  3444. {
  3445. name: "Reasonably Sized",
  3446. height: math.unit(25000, "parsecs")
  3447. },
  3448. {
  3449. name: "Slightly Uncompressed",
  3450. height: math.unit(7.77e31, "parsecs")
  3451. },
  3452. {
  3453. name: "Omniversal",
  3454. height: math.unit(1e300, "meters")
  3455. },
  3456. ]
  3457. ))
  3458. characterMakers.push(() => makeCharacter(
  3459. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3460. {
  3461. front: {
  3462. height: math.unit(2, "meter"),
  3463. weight: math.unit(75, "lb"),
  3464. name: "Front",
  3465. image: {
  3466. source: "./media/characters/napalm/front.svg"
  3467. }
  3468. },
  3469. back: {
  3470. height: math.unit(2, "meter"),
  3471. weight: math.unit(75, "lb"),
  3472. name: "Back",
  3473. image: {
  3474. source: "./media/characters/napalm/back.svg"
  3475. }
  3476. }
  3477. },
  3478. [
  3479. {
  3480. name: "Standard",
  3481. height: math.unit(55, "feet"),
  3482. default: true
  3483. }
  3484. ]
  3485. ))
  3486. characterMakers.push(() => makeCharacter(
  3487. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3488. {
  3489. front: {
  3490. height: math.unit(7 + 5 / 6, "feet"),
  3491. weight: math.unit(325, "lb"),
  3492. name: "Front",
  3493. image: {
  3494. source: "./media/characters/asana/front.svg",
  3495. extra: 1133 / 1060,
  3496. bottom: 15.2 / 1148.6
  3497. }
  3498. },
  3499. back: {
  3500. height: math.unit(7 + 5 / 6, "feet"),
  3501. weight: math.unit(325, "lb"),
  3502. name: "Back",
  3503. image: {
  3504. source: "./media/characters/asana/back.svg",
  3505. extra: 1114 / 1043,
  3506. bottom: 5 / 1120
  3507. }
  3508. },
  3509. dressedDark: {
  3510. height: math.unit(7 + 5 / 6, "feet"),
  3511. weight: math.unit(325, "lb"),
  3512. name: "Dressed (Dark)",
  3513. image: {
  3514. source: "./media/characters/asana/dressed-dark.svg",
  3515. extra: 1133 / 1060,
  3516. bottom: 15.2 / 1148.6
  3517. }
  3518. },
  3519. dressedLight: {
  3520. height: math.unit(7 + 5 / 6, "feet"),
  3521. weight: math.unit(325, "lb"),
  3522. name: "Dressed (Light)",
  3523. image: {
  3524. source: "./media/characters/asana/dressed-light.svg",
  3525. extra: 1133 / 1060,
  3526. bottom: 15.2 / 1148.6
  3527. }
  3528. },
  3529. },
  3530. [
  3531. {
  3532. name: "Standard",
  3533. height: math.unit(7 + 5 / 6, "feet"),
  3534. default: true
  3535. },
  3536. {
  3537. name: "Large",
  3538. height: math.unit(10, "meters")
  3539. },
  3540. {
  3541. name: "Macro",
  3542. height: math.unit(2500, "meters")
  3543. },
  3544. {
  3545. name: "Megamacro",
  3546. height: math.unit(5e6, "meters")
  3547. },
  3548. {
  3549. name: "Examacro",
  3550. height: math.unit(5e12, "lightyears")
  3551. },
  3552. {
  3553. name: "Max Size",
  3554. height: math.unit(1e31, "lightyears")
  3555. }
  3556. ]
  3557. ))
  3558. characterMakers.push(() => makeCharacter(
  3559. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3560. {
  3561. front: {
  3562. height: math.unit(2, "meter"),
  3563. weight: math.unit(60, "kg"),
  3564. name: "Front",
  3565. image: {
  3566. source: "./media/characters/ebony/front.svg",
  3567. bottom: 0.03,
  3568. extra: 1045 / 810 + 0.03
  3569. }
  3570. },
  3571. side: {
  3572. height: math.unit(2, "meter"),
  3573. weight: math.unit(60, "kg"),
  3574. name: "Side",
  3575. image: {
  3576. source: "./media/characters/ebony/side.svg",
  3577. bottom: 0.03,
  3578. extra: 1045 / 810 + 0.03
  3579. }
  3580. },
  3581. back: {
  3582. height: math.unit(2, "meter"),
  3583. weight: math.unit(60, "kg"),
  3584. name: "Back",
  3585. image: {
  3586. source: "./media/characters/ebony/back.svg",
  3587. bottom: 0.01,
  3588. extra: 1045 / 810 + 0.01
  3589. }
  3590. },
  3591. },
  3592. [
  3593. // TODO check why I did this lol
  3594. {
  3595. name: "Standard",
  3596. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3597. default: true
  3598. },
  3599. {
  3600. name: "Macro",
  3601. height: math.unit(200, "feet")
  3602. },
  3603. {
  3604. name: "Gigamacro",
  3605. height: math.unit(13000, "km")
  3606. }
  3607. ]
  3608. ))
  3609. characterMakers.push(() => makeCharacter(
  3610. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3611. {
  3612. front: {
  3613. height: math.unit(6, "feet"),
  3614. weight: math.unit(175, "lb"),
  3615. name: "Front",
  3616. image: {
  3617. source: "./media/characters/mountain/front.svg",
  3618. extra: 972 / 955,
  3619. bottom: 64 / 1036.6
  3620. }
  3621. },
  3622. back: {
  3623. height: math.unit(6, "feet"),
  3624. weight: math.unit(175, "lb"),
  3625. name: "Back",
  3626. image: {
  3627. source: "./media/characters/mountain/back.svg",
  3628. extra: 970 / 950,
  3629. bottom: 28.25 / 999
  3630. }
  3631. },
  3632. },
  3633. [
  3634. {
  3635. name: "Large",
  3636. height: math.unit(20, "meters")
  3637. },
  3638. {
  3639. name: "Macro",
  3640. height: math.unit(300, "meters")
  3641. },
  3642. {
  3643. name: "Gigamacro",
  3644. height: math.unit(10000, "km"),
  3645. default: true
  3646. },
  3647. {
  3648. name: "Examacro",
  3649. height: math.unit(10e9, "lightyears")
  3650. }
  3651. ]
  3652. ))
  3653. characterMakers.push(() => makeCharacter(
  3654. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3655. {
  3656. front: {
  3657. height: math.unit(8, "feet"),
  3658. weight: math.unit(500, "lb"),
  3659. name: "Front",
  3660. image: {
  3661. source: "./media/characters/rick/front.svg"
  3662. }
  3663. }
  3664. },
  3665. [
  3666. {
  3667. name: "Normal",
  3668. height: math.unit(8, "feet"),
  3669. default: true
  3670. },
  3671. {
  3672. name: "Macro",
  3673. height: math.unit(5, "km")
  3674. }
  3675. ]
  3676. ))
  3677. characterMakers.push(() => makeCharacter(
  3678. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3679. {
  3680. front: {
  3681. height: math.unit(8, "feet"),
  3682. weight: math.unit(120, "lb"),
  3683. name: "Front",
  3684. image: {
  3685. source: "./media/characters/ona/front.svg"
  3686. }
  3687. },
  3688. frontAlt: {
  3689. height: math.unit(8, "feet"),
  3690. weight: math.unit(120, "lb"),
  3691. name: "Front (Alt)",
  3692. image: {
  3693. source: "./media/characters/ona/front-alt.svg"
  3694. }
  3695. },
  3696. back: {
  3697. height: math.unit(8, "feet"),
  3698. weight: math.unit(120, "lb"),
  3699. name: "Back",
  3700. image: {
  3701. source: "./media/characters/ona/back.svg"
  3702. }
  3703. },
  3704. foot: {
  3705. height: math.unit(1.1, "feet"),
  3706. name: "Foot",
  3707. image: {
  3708. source: "./media/characters/ona/foot.svg"
  3709. }
  3710. }
  3711. },
  3712. [
  3713. {
  3714. name: "Megamacro",
  3715. height: math.unit(70, "km"),
  3716. default: true
  3717. },
  3718. {
  3719. name: "Gigamacro",
  3720. height: math.unit(681818, "miles")
  3721. },
  3722. {
  3723. name: "Examacro",
  3724. height: math.unit(3800000, "lightyears")
  3725. },
  3726. ]
  3727. ))
  3728. characterMakers.push(() => makeCharacter(
  3729. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3730. {
  3731. front: {
  3732. height: math.unit(12, "feet"),
  3733. weight: math.unit(3000, "lb"),
  3734. name: "Front",
  3735. image: {
  3736. source: "./media/characters/mech/front.svg",
  3737. extra: 2900 / 2770,
  3738. bottom: 110 / 3010
  3739. }
  3740. },
  3741. back: {
  3742. height: math.unit(12, "feet"),
  3743. weight: math.unit(3000, "lb"),
  3744. name: "Back",
  3745. image: {
  3746. source: "./media/characters/mech/back.svg",
  3747. extra: 3011 / 2890,
  3748. bottom: 94 / 3105
  3749. }
  3750. },
  3751. maw: {
  3752. height: math.unit(3.07, "feet"),
  3753. name: "Maw",
  3754. image: {
  3755. source: "./media/characters/mech/maw.svg"
  3756. }
  3757. },
  3758. head: {
  3759. height: math.unit(2.82, "feet"),
  3760. name: "Head",
  3761. image: {
  3762. source: "./media/characters/mech/head.svg"
  3763. }
  3764. },
  3765. dick: {
  3766. height: math.unit(1.43, "feet"),
  3767. name: "Dick",
  3768. image: {
  3769. source: "./media/characters/mech/dick.svg"
  3770. }
  3771. },
  3772. },
  3773. [
  3774. {
  3775. name: "Normal",
  3776. height: math.unit(12, "feet")
  3777. },
  3778. {
  3779. name: "Macro",
  3780. height: math.unit(300, "feet"),
  3781. default: true
  3782. },
  3783. {
  3784. name: "Macro+",
  3785. height: math.unit(1500, "feet")
  3786. },
  3787. ]
  3788. ))
  3789. characterMakers.push(() => makeCharacter(
  3790. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3791. {
  3792. front: {
  3793. height: math.unit(1.3, "meter"),
  3794. weight: math.unit(30, "kg"),
  3795. name: "Front",
  3796. image: {
  3797. source: "./media/characters/gregory/front.svg",
  3798. }
  3799. }
  3800. },
  3801. [
  3802. {
  3803. name: "Normal",
  3804. height: math.unit(1.3, "meter"),
  3805. default: true
  3806. },
  3807. {
  3808. name: "Macro",
  3809. height: math.unit(20, "meter")
  3810. }
  3811. ]
  3812. ))
  3813. characterMakers.push(() => makeCharacter(
  3814. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3815. {
  3816. front: {
  3817. height: math.unit(2.8, "meter"),
  3818. weight: math.unit(200, "kg"),
  3819. name: "Front",
  3820. image: {
  3821. source: "./media/characters/elory/front.svg",
  3822. }
  3823. }
  3824. },
  3825. [
  3826. {
  3827. name: "Normal",
  3828. height: math.unit(2.8, "meter"),
  3829. default: true
  3830. },
  3831. {
  3832. name: "Macro",
  3833. height: math.unit(38, "meter")
  3834. }
  3835. ]
  3836. ))
  3837. characterMakers.push(() => makeCharacter(
  3838. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3839. {
  3840. front: {
  3841. height: math.unit(470, "feet"),
  3842. weight: math.unit(924, "tons"),
  3843. name: "Front",
  3844. image: {
  3845. source: "./media/characters/angelpatamon/front.svg",
  3846. }
  3847. }
  3848. },
  3849. [
  3850. {
  3851. name: "Normal",
  3852. height: math.unit(470, "feet"),
  3853. default: true
  3854. },
  3855. {
  3856. name: "Deity Size I",
  3857. height: math.unit(28651.2, "km")
  3858. },
  3859. {
  3860. name: "Deity Size II",
  3861. height: math.unit(171907.2, "km")
  3862. }
  3863. ]
  3864. ))
  3865. characterMakers.push(() => makeCharacter(
  3866. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3867. {
  3868. side: {
  3869. height: math.unit(7.2, "meter"),
  3870. weight: math.unit(8.2, "tons"),
  3871. name: "Side",
  3872. image: {
  3873. source: "./media/characters/cryae/side.svg",
  3874. extra: 3500 / 1500
  3875. }
  3876. }
  3877. },
  3878. [
  3879. {
  3880. name: "Normal",
  3881. height: math.unit(7.2, "meter"),
  3882. default: true
  3883. }
  3884. ]
  3885. ))
  3886. characterMakers.push(() => makeCharacter(
  3887. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3888. {
  3889. front: {
  3890. height: math.unit(6, "feet"),
  3891. weight: math.unit(175, "lb"),
  3892. name: "Front",
  3893. image: {
  3894. source: "./media/characters/xera/front.svg",
  3895. extra: 2377 / 1972,
  3896. bottom: 75.5 / 2452
  3897. }
  3898. },
  3899. side: {
  3900. height: math.unit(6, "feet"),
  3901. weight: math.unit(175, "lb"),
  3902. name: "Side",
  3903. image: {
  3904. source: "./media/characters/xera/side.svg",
  3905. extra: 2345 / 2019,
  3906. bottom: 39.7 / 2384
  3907. }
  3908. },
  3909. back: {
  3910. height: math.unit(6, "feet"),
  3911. weight: math.unit(175, "lb"),
  3912. name: "Back",
  3913. image: {
  3914. source: "./media/characters/xera/back.svg",
  3915. extra: 2095 / 1984,
  3916. bottom: 67 / 2166
  3917. }
  3918. },
  3919. },
  3920. [
  3921. {
  3922. name: "Small",
  3923. height: math.unit(10, "feet")
  3924. },
  3925. {
  3926. name: "Macro",
  3927. height: math.unit(500, "meters"),
  3928. default: true
  3929. },
  3930. {
  3931. name: "Macro+",
  3932. height: math.unit(10, "km")
  3933. },
  3934. {
  3935. name: "Gigamacro",
  3936. height: math.unit(25000, "km")
  3937. },
  3938. {
  3939. name: "Teramacro",
  3940. height: math.unit(3e6, "km")
  3941. }
  3942. ]
  3943. ))
  3944. characterMakers.push(() => makeCharacter(
  3945. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3946. {
  3947. front: {
  3948. height: math.unit(6, "feet"),
  3949. weight: math.unit(175, "lb"),
  3950. name: "Front",
  3951. image: {
  3952. source: "./media/characters/nebula/front.svg",
  3953. extra: 2566 / 2362,
  3954. bottom: 81 / 2644
  3955. }
  3956. }
  3957. },
  3958. [
  3959. {
  3960. name: "Small",
  3961. height: math.unit(4.5, "meters")
  3962. },
  3963. {
  3964. name: "Macro",
  3965. height: math.unit(1500, "meters"),
  3966. default: true
  3967. },
  3968. {
  3969. name: "Megamacro",
  3970. height: math.unit(150, "km")
  3971. },
  3972. {
  3973. name: "Gigamacro",
  3974. height: math.unit(27000, "km")
  3975. }
  3976. ]
  3977. ))
  3978. characterMakers.push(() => makeCharacter(
  3979. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3980. {
  3981. front: {
  3982. height: math.unit(6, "feet"),
  3983. weight: math.unit(225, "lb"),
  3984. name: "Front",
  3985. image: {
  3986. source: "./media/characters/abysgar/front.svg"
  3987. }
  3988. }
  3989. },
  3990. [
  3991. {
  3992. name: "Small",
  3993. height: math.unit(4.5, "meters")
  3994. },
  3995. {
  3996. name: "Macro",
  3997. height: math.unit(1250, "meters"),
  3998. default: true
  3999. },
  4000. {
  4001. name: "Megamacro",
  4002. height: math.unit(125, "km")
  4003. },
  4004. {
  4005. name: "Gigamacro",
  4006. height: math.unit(26000, "km")
  4007. }
  4008. ]
  4009. ))
  4010. characterMakers.push(() => makeCharacter(
  4011. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4012. {
  4013. front: {
  4014. height: math.unit(6, "feet"),
  4015. weight: math.unit(180, "lb"),
  4016. name: "Front",
  4017. image: {
  4018. source: "./media/characters/yakuz/front.svg"
  4019. }
  4020. }
  4021. },
  4022. [
  4023. {
  4024. name: "Small",
  4025. height: math.unit(5, "meters")
  4026. },
  4027. {
  4028. name: "Macro",
  4029. height: math.unit(1500, "meters"),
  4030. default: true
  4031. },
  4032. {
  4033. name: "Megamacro",
  4034. height: math.unit(200, "km")
  4035. },
  4036. {
  4037. name: "Gigamacro",
  4038. height: math.unit(100000, "km")
  4039. }
  4040. ]
  4041. ))
  4042. characterMakers.push(() => makeCharacter(
  4043. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4044. {
  4045. front: {
  4046. height: math.unit(6, "feet"),
  4047. weight: math.unit(175, "lb"),
  4048. name: "Front",
  4049. image: {
  4050. source: "./media/characters/mirova/front.svg",
  4051. extra: 3334 / 3071,
  4052. bottom: 42 / 3375.6
  4053. }
  4054. }
  4055. },
  4056. [
  4057. {
  4058. name: "Small",
  4059. height: math.unit(5, "meters")
  4060. },
  4061. {
  4062. name: "Macro",
  4063. height: math.unit(900, "meters"),
  4064. default: true
  4065. },
  4066. {
  4067. name: "Megamacro",
  4068. height: math.unit(135, "km")
  4069. },
  4070. {
  4071. name: "Gigamacro",
  4072. height: math.unit(20000, "km")
  4073. }
  4074. ]
  4075. ))
  4076. characterMakers.push(() => makeCharacter(
  4077. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4078. {
  4079. side: {
  4080. height: math.unit(28.35, "feet"),
  4081. weight: math.unit(99.75, "tons"),
  4082. name: "Side",
  4083. image: {
  4084. source: "./media/characters/asana-mech/side.svg",
  4085. extra: 923 / 699,
  4086. bottom: 50 / 975
  4087. }
  4088. },
  4089. chaingun: {
  4090. height: math.unit(7, "feet"),
  4091. weight: math.unit(2400, "lb"),
  4092. name: "Chaingun",
  4093. image: {
  4094. source: "./media/characters/asana-mech/chaingun.svg"
  4095. }
  4096. },
  4097. laser: {
  4098. height: math.unit(7.12, "feet"),
  4099. weight: math.unit(2000, "lb"),
  4100. name: "Laser",
  4101. image: {
  4102. source: "./media/characters/asana-mech/laser.svg"
  4103. }
  4104. },
  4105. },
  4106. [
  4107. {
  4108. name: "Normal",
  4109. height: math.unit(28.35, "feet"),
  4110. default: true
  4111. },
  4112. {
  4113. name: "Macro",
  4114. height: math.unit(2500, "feet")
  4115. },
  4116. {
  4117. name: "Megamacro",
  4118. height: math.unit(25, "miles")
  4119. },
  4120. {
  4121. name: "Examacro",
  4122. height: math.unit(6e8, "lightyears")
  4123. },
  4124. ]
  4125. ))
  4126. characterMakers.push(() => makeCharacter(
  4127. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4128. {
  4129. front: {
  4130. height: math.unit(5, "meters"),
  4131. weight: math.unit(1000, "kg"),
  4132. name: "Front",
  4133. image: {
  4134. source: "./media/characters/asche/front.svg",
  4135. extra: 1258 / 1190,
  4136. bottom: 47 / 1305
  4137. }
  4138. },
  4139. frontUnderwear: {
  4140. height: math.unit(5, "meters"),
  4141. weight: math.unit(1000, "kg"),
  4142. name: "Front (Underwear)",
  4143. image: {
  4144. source: "./media/characters/asche/front-underwear.svg",
  4145. extra: 1258 / 1190,
  4146. bottom: 47 / 1305
  4147. }
  4148. },
  4149. frontDressed: {
  4150. height: math.unit(5, "meters"),
  4151. weight: math.unit(1000, "kg"),
  4152. name: "Front (Dressed)",
  4153. image: {
  4154. source: "./media/characters/asche/front-dressed.svg",
  4155. extra: 1258 / 1190,
  4156. bottom: 47 / 1305
  4157. }
  4158. },
  4159. frontArmor: {
  4160. height: math.unit(5, "meters"),
  4161. weight: math.unit(1000, "kg"),
  4162. name: "Front (Armored)",
  4163. image: {
  4164. source: "./media/characters/asche/front-armored.svg",
  4165. extra: 1374 / 1308,
  4166. bottom: 23 / 1397
  4167. }
  4168. },
  4169. mp724: {
  4170. height: math.unit(0.96, "meters"),
  4171. weight: math.unit(38, "kg"),
  4172. name: "H&K MP724",
  4173. image: {
  4174. source: "./media/characters/asche/h&k-mp724.svg"
  4175. }
  4176. },
  4177. side: {
  4178. height: math.unit(5, "meters"),
  4179. weight: math.unit(1000, "kg"),
  4180. name: "Side",
  4181. image: {
  4182. source: "./media/characters/asche/side.svg",
  4183. extra: 1717 / 1609,
  4184. bottom: 0.005
  4185. }
  4186. },
  4187. back: {
  4188. height: math.unit(5, "meters"),
  4189. weight: math.unit(1000, "kg"),
  4190. name: "Back",
  4191. image: {
  4192. source: "./media/characters/asche/back.svg",
  4193. extra: 1570 / 1501
  4194. }
  4195. },
  4196. },
  4197. [
  4198. {
  4199. name: "DEFCON 5",
  4200. height: math.unit(5, "meters")
  4201. },
  4202. {
  4203. name: "DEFCON 4",
  4204. height: math.unit(500, "meters"),
  4205. default: true
  4206. },
  4207. {
  4208. name: "DEFCON 3",
  4209. height: math.unit(5, "km")
  4210. },
  4211. {
  4212. name: "DEFCON 2",
  4213. height: math.unit(500, "km")
  4214. },
  4215. {
  4216. name: "DEFCON 1",
  4217. height: math.unit(500000, "km")
  4218. },
  4219. {
  4220. name: "DEFCON 0",
  4221. height: math.unit(3, "gigaparsecs")
  4222. },
  4223. ]
  4224. ))
  4225. characterMakers.push(() => makeCharacter(
  4226. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4227. {
  4228. front: {
  4229. height: math.unit(2, "meters"),
  4230. weight: math.unit(76, "kg"),
  4231. name: "Front",
  4232. image: {
  4233. source: "./media/characters/gale/front.svg"
  4234. }
  4235. },
  4236. frontAlt1: {
  4237. height: math.unit(2, "meters"),
  4238. weight: math.unit(76, "kg"),
  4239. name: "Front (Alt 1)",
  4240. image: {
  4241. source: "./media/characters/gale/front-alt-1.svg"
  4242. }
  4243. },
  4244. frontAlt2: {
  4245. height: math.unit(2, "meters"),
  4246. weight: math.unit(76, "kg"),
  4247. name: "Front (Alt 2)",
  4248. image: {
  4249. source: "./media/characters/gale/front-alt-2.svg"
  4250. }
  4251. },
  4252. },
  4253. [
  4254. {
  4255. name: "Normal",
  4256. height: math.unit(7, "feet")
  4257. },
  4258. {
  4259. name: "Macro",
  4260. height: math.unit(150, "feet"),
  4261. default: true
  4262. },
  4263. {
  4264. name: "Macro+",
  4265. height: math.unit(300, "feet")
  4266. },
  4267. ]
  4268. ))
  4269. characterMakers.push(() => makeCharacter(
  4270. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4271. {
  4272. front: {
  4273. height: math.unit(2, "meters"),
  4274. weight: math.unit(76, "kg"),
  4275. name: "Front",
  4276. image: {
  4277. source: "./media/characters/draylen/front.svg"
  4278. }
  4279. }
  4280. },
  4281. [
  4282. {
  4283. name: "Macro",
  4284. height: math.unit(150, "feet"),
  4285. default: true
  4286. }
  4287. ]
  4288. ))
  4289. characterMakers.push(() => makeCharacter(
  4290. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4291. {
  4292. front: {
  4293. height: math.unit(7 + 9 / 12, "feet"),
  4294. weight: math.unit(379, "lbs"),
  4295. name: "Front",
  4296. image: {
  4297. source: "./media/characters/chez/front.svg"
  4298. }
  4299. },
  4300. side: {
  4301. height: math.unit(7 + 9 / 12, "feet"),
  4302. weight: math.unit(379, "lbs"),
  4303. name: "Side",
  4304. image: {
  4305. source: "./media/characters/chez/side.svg"
  4306. }
  4307. }
  4308. },
  4309. [
  4310. {
  4311. name: "Normal",
  4312. height: math.unit(7 + 9 / 12, "feet"),
  4313. default: true
  4314. },
  4315. {
  4316. name: "God King",
  4317. height: math.unit(9750000, "meters")
  4318. }
  4319. ]
  4320. ))
  4321. characterMakers.push(() => makeCharacter(
  4322. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4323. {
  4324. front: {
  4325. height: math.unit(6, "feet"),
  4326. weight: math.unit(275, "lbs"),
  4327. name: "Front",
  4328. image: {
  4329. source: "./media/characters/kaylum/front.svg",
  4330. bottom: 0.01,
  4331. extra: 1166 / 1031
  4332. }
  4333. },
  4334. frontWingless: {
  4335. height: math.unit(6, "feet"),
  4336. weight: math.unit(275, "lbs"),
  4337. name: "Front (Wingless)",
  4338. image: {
  4339. source: "./media/characters/kaylum/front-wingless.svg",
  4340. bottom: 0.01,
  4341. extra: 1117 / 1031
  4342. }
  4343. }
  4344. },
  4345. [
  4346. {
  4347. name: "Normal",
  4348. height: math.unit(3.05, "meters")
  4349. },
  4350. {
  4351. name: "Master",
  4352. height: math.unit(5.5, "meters")
  4353. },
  4354. {
  4355. name: "Rampage",
  4356. height: math.unit(19, "meters")
  4357. },
  4358. {
  4359. name: "Macro Lite",
  4360. height: math.unit(37, "meters")
  4361. },
  4362. {
  4363. name: "Hyper Predator",
  4364. height: math.unit(61, "meters")
  4365. },
  4366. {
  4367. name: "Macro",
  4368. height: math.unit(138, "meters"),
  4369. default: true
  4370. }
  4371. ]
  4372. ))
  4373. characterMakers.push(() => makeCharacter(
  4374. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4375. {
  4376. front: {
  4377. height: math.unit(6, "feet"),
  4378. weight: math.unit(150, "lbs"),
  4379. name: "Front",
  4380. image: {
  4381. source: "./media/characters/geta/front.svg"
  4382. }
  4383. }
  4384. },
  4385. [
  4386. {
  4387. name: "Micro",
  4388. height: math.unit(3, "inches"),
  4389. default: true
  4390. },
  4391. {
  4392. name: "Normal",
  4393. height: math.unit(5 + 5 / 12, "feet")
  4394. }
  4395. ]
  4396. ))
  4397. characterMakers.push(() => makeCharacter(
  4398. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4399. {
  4400. front: {
  4401. height: math.unit(6, "feet"),
  4402. weight: math.unit(300, "lbs"),
  4403. name: "Front",
  4404. image: {
  4405. source: "./media/characters/tyrnn/front.svg"
  4406. }
  4407. }
  4408. },
  4409. [
  4410. {
  4411. name: "Main Height",
  4412. height: math.unit(355, "feet"),
  4413. default: true
  4414. },
  4415. {
  4416. name: "Fave. Height",
  4417. height: math.unit(2400, "feet")
  4418. }
  4419. ]
  4420. ))
  4421. characterMakers.push(() => makeCharacter(
  4422. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4423. {
  4424. front: {
  4425. height: math.unit(6, "feet"),
  4426. weight: math.unit(300, "lbs"),
  4427. name: "Front",
  4428. image: {
  4429. source: "./media/characters/appledectomy/front.svg"
  4430. }
  4431. }
  4432. },
  4433. [
  4434. {
  4435. name: "Macro",
  4436. height: math.unit(2500, "feet")
  4437. },
  4438. {
  4439. name: "Megamacro",
  4440. height: math.unit(50, "miles"),
  4441. default: true
  4442. },
  4443. {
  4444. name: "Gigamacro",
  4445. height: math.unit(5000, "miles")
  4446. },
  4447. {
  4448. name: "Teramacro",
  4449. height: math.unit(250000, "miles")
  4450. },
  4451. ]
  4452. ))
  4453. characterMakers.push(() => makeCharacter(
  4454. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4455. {
  4456. front: {
  4457. height: math.unit(6, "feet"),
  4458. weight: math.unit(200, "lbs"),
  4459. name: "Front",
  4460. image: {
  4461. source: "./media/characters/vulpes/front.svg",
  4462. extra: 573 / 543,
  4463. bottom: 0.033
  4464. }
  4465. },
  4466. side: {
  4467. height: math.unit(6, "feet"),
  4468. weight: math.unit(200, "lbs"),
  4469. name: "Side",
  4470. image: {
  4471. source: "./media/characters/vulpes/side.svg",
  4472. extra: 577 / 549,
  4473. bottom: 11 / 588
  4474. }
  4475. },
  4476. back: {
  4477. height: math.unit(6, "feet"),
  4478. weight: math.unit(200, "lbs"),
  4479. name: "Back",
  4480. image: {
  4481. source: "./media/characters/vulpes/back.svg",
  4482. extra: 573 / 549,
  4483. bottom: 20 / 593
  4484. }
  4485. },
  4486. feet: {
  4487. height: math.unit(1.276, "feet"),
  4488. name: "Feet",
  4489. image: {
  4490. source: "./media/characters/vulpes/feet.svg"
  4491. }
  4492. },
  4493. maw: {
  4494. height: math.unit(1.18, "feet"),
  4495. name: "Maw",
  4496. image: {
  4497. source: "./media/characters/vulpes/maw.svg"
  4498. }
  4499. },
  4500. },
  4501. [
  4502. {
  4503. name: "Micro",
  4504. height: math.unit(2, "inches")
  4505. },
  4506. {
  4507. name: "Normal",
  4508. height: math.unit(6.3, "feet")
  4509. },
  4510. {
  4511. name: "Macro",
  4512. height: math.unit(850, "feet")
  4513. },
  4514. {
  4515. name: "Megamacro",
  4516. height: math.unit(7500, "feet"),
  4517. default: true
  4518. },
  4519. {
  4520. name: "Gigamacro",
  4521. height: math.unit(570000, "miles")
  4522. }
  4523. ]
  4524. ))
  4525. characterMakers.push(() => makeCharacter(
  4526. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4527. {
  4528. front: {
  4529. height: math.unit(6, "feet"),
  4530. weight: math.unit(210, "lbs"),
  4531. name: "Front",
  4532. image: {
  4533. source: "./media/characters/rain-fallen/front.svg"
  4534. }
  4535. },
  4536. side: {
  4537. height: math.unit(6, "feet"),
  4538. weight: math.unit(210, "lbs"),
  4539. name: "Side",
  4540. image: {
  4541. source: "./media/characters/rain-fallen/side.svg"
  4542. }
  4543. },
  4544. back: {
  4545. height: math.unit(6, "feet"),
  4546. weight: math.unit(210, "lbs"),
  4547. name: "Back",
  4548. image: {
  4549. source: "./media/characters/rain-fallen/back.svg"
  4550. }
  4551. },
  4552. feral: {
  4553. height: math.unit(9, "feet"),
  4554. weight: math.unit(700, "lbs"),
  4555. name: "Feral",
  4556. image: {
  4557. source: "./media/characters/rain-fallen/feral.svg"
  4558. }
  4559. },
  4560. },
  4561. [
  4562. {
  4563. name: "Meddling with Mortals",
  4564. height: math.unit(8 + 8/12, "feet")
  4565. },
  4566. {
  4567. name: "Normal",
  4568. height: math.unit(5, "meter")
  4569. },
  4570. {
  4571. name: "Macro",
  4572. height: math.unit(150, "meter"),
  4573. default: true
  4574. },
  4575. {
  4576. name: "Megamacro",
  4577. height: math.unit(278e6, "meter")
  4578. },
  4579. {
  4580. name: "Gigamacro",
  4581. height: math.unit(2e9, "meter")
  4582. },
  4583. {
  4584. name: "Teramacro",
  4585. height: math.unit(8e12, "meter")
  4586. },
  4587. {
  4588. name: "Devourer",
  4589. height: math.unit(14, "zettameters")
  4590. },
  4591. {
  4592. name: "Scarlet King",
  4593. height: math.unit(18, "yottameters")
  4594. },
  4595. {
  4596. name: "Void",
  4597. height: math.unit(1e88, "yottameters")
  4598. }
  4599. ]
  4600. ))
  4601. characterMakers.push(() => makeCharacter(
  4602. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4603. {
  4604. standing: {
  4605. height: math.unit(6, "feet"),
  4606. weight: math.unit(180, "lbs"),
  4607. name: "Standing",
  4608. image: {
  4609. source: "./media/characters/zaakira/standing.svg",
  4610. extra: 1599/1504,
  4611. bottom: 39/1638
  4612. }
  4613. },
  4614. laying: {
  4615. height: math.unit(3, "feet"),
  4616. weight: math.unit(180, "lbs"),
  4617. name: "Laying",
  4618. image: {
  4619. source: "./media/characters/zaakira/laying.svg"
  4620. }
  4621. },
  4622. },
  4623. [
  4624. {
  4625. name: "Normal",
  4626. height: math.unit(12, "feet")
  4627. },
  4628. {
  4629. name: "Macro",
  4630. height: math.unit(279, "feet"),
  4631. default: true
  4632. }
  4633. ]
  4634. ))
  4635. characterMakers.push(() => makeCharacter(
  4636. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4637. {
  4638. femSfw: {
  4639. height: math.unit(8, "feet"),
  4640. weight: math.unit(350, "lb"),
  4641. name: "Fem",
  4642. image: {
  4643. source: "./media/characters/sigvald/fem-sfw.svg",
  4644. extra: 182 / 164,
  4645. bottom: 8.7 / 190.5
  4646. }
  4647. },
  4648. femNsfw: {
  4649. height: math.unit(8, "feet"),
  4650. weight: math.unit(350, "lb"),
  4651. name: "Fem (NSFW)",
  4652. image: {
  4653. source: "./media/characters/sigvald/fem-nsfw.svg",
  4654. extra: 182 / 164,
  4655. bottom: 8.7 / 190.5
  4656. }
  4657. },
  4658. maleNsfw: {
  4659. height: math.unit(8, "feet"),
  4660. weight: math.unit(350, "lb"),
  4661. name: "Male (NSFW)",
  4662. image: {
  4663. source: "./media/characters/sigvald/male-nsfw.svg",
  4664. extra: 182 / 164,
  4665. bottom: 8.7 / 190.5
  4666. }
  4667. },
  4668. hermNsfw: {
  4669. height: math.unit(8, "feet"),
  4670. weight: math.unit(350, "lb"),
  4671. name: "Herm (NSFW)",
  4672. image: {
  4673. source: "./media/characters/sigvald/herm-nsfw.svg",
  4674. extra: 182 / 164,
  4675. bottom: 8.7 / 190.5
  4676. }
  4677. },
  4678. dick: {
  4679. height: math.unit(2.36, "feet"),
  4680. name: "Dick",
  4681. image: {
  4682. source: "./media/characters/sigvald/dick.svg"
  4683. }
  4684. },
  4685. eye: {
  4686. height: math.unit(0.31, "feet"),
  4687. name: "Eye",
  4688. image: {
  4689. source: "./media/characters/sigvald/eye.svg"
  4690. }
  4691. },
  4692. mouth: {
  4693. height: math.unit(0.92, "feet"),
  4694. name: "Mouth",
  4695. image: {
  4696. source: "./media/characters/sigvald/mouth.svg"
  4697. }
  4698. },
  4699. paws: {
  4700. height: math.unit(2.2, "feet"),
  4701. name: "Paws",
  4702. image: {
  4703. source: "./media/characters/sigvald/paws.svg"
  4704. }
  4705. }
  4706. },
  4707. [
  4708. {
  4709. name: "Normal",
  4710. height: math.unit(8, "feet")
  4711. },
  4712. {
  4713. name: "Large",
  4714. height: math.unit(12, "feet")
  4715. },
  4716. {
  4717. name: "Larger",
  4718. height: math.unit(20, "feet")
  4719. },
  4720. {
  4721. name: "Macro",
  4722. height: math.unit(150, "feet")
  4723. },
  4724. {
  4725. name: "Macro+",
  4726. height: math.unit(200, "feet"),
  4727. default: true
  4728. },
  4729. ]
  4730. ))
  4731. characterMakers.push(() => makeCharacter(
  4732. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4733. {
  4734. side: {
  4735. height: math.unit(12, "feet"),
  4736. weight: math.unit(2000, "kg"),
  4737. name: "Side",
  4738. image: {
  4739. source: "./media/characters/scott/side.svg",
  4740. extra: 754 / 724,
  4741. bottom: 0.069
  4742. }
  4743. },
  4744. upright: {
  4745. height: math.unit(12, "feet"),
  4746. weight: math.unit(2000, "kg"),
  4747. name: "Upright",
  4748. image: {
  4749. source: "./media/characters/scott/upright.svg",
  4750. extra: 3881 / 3722,
  4751. bottom: 0.05
  4752. }
  4753. },
  4754. },
  4755. [
  4756. {
  4757. name: "Normal",
  4758. height: math.unit(12, "feet"),
  4759. default: true
  4760. },
  4761. ]
  4762. ))
  4763. characterMakers.push(() => makeCharacter(
  4764. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4765. {
  4766. side: {
  4767. height: math.unit(8, "meters"),
  4768. weight: math.unit(84755, "lbs"),
  4769. name: "Side",
  4770. image: {
  4771. source: "./media/characters/tobias/side.svg",
  4772. extra: 1474 / 1096,
  4773. bottom: 38.9 / 1513.1235
  4774. }
  4775. },
  4776. },
  4777. [
  4778. {
  4779. name: "Normal",
  4780. height: math.unit(8, "meters"),
  4781. default: true
  4782. },
  4783. ]
  4784. ))
  4785. characterMakers.push(() => makeCharacter(
  4786. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4787. {
  4788. front: {
  4789. height: math.unit(5.5, "feet"),
  4790. weight: math.unit(400, "lbs"),
  4791. name: "Front",
  4792. image: {
  4793. source: "./media/characters/kieran/front.svg",
  4794. extra: 2694 / 2364,
  4795. bottom: 217 / 2908
  4796. }
  4797. },
  4798. side: {
  4799. height: math.unit(5.5, "feet"),
  4800. weight: math.unit(400, "lbs"),
  4801. name: "Side",
  4802. image: {
  4803. source: "./media/characters/kieran/side.svg",
  4804. extra: 875 / 777,
  4805. bottom: 84.6 / 959
  4806. }
  4807. },
  4808. },
  4809. [
  4810. {
  4811. name: "Normal",
  4812. height: math.unit(5.5, "feet"),
  4813. default: true
  4814. },
  4815. ]
  4816. ))
  4817. characterMakers.push(() => makeCharacter(
  4818. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4819. {
  4820. side: {
  4821. height: math.unit(2, "meters"),
  4822. weight: math.unit(70, "kg"),
  4823. name: "Side",
  4824. image: {
  4825. source: "./media/characters/sanya/side.svg",
  4826. bottom: 0.02,
  4827. extra: 1.02
  4828. }
  4829. },
  4830. },
  4831. [
  4832. {
  4833. name: "Small",
  4834. height: math.unit(2, "meters")
  4835. },
  4836. {
  4837. name: "Normal",
  4838. height: math.unit(3, "meters")
  4839. },
  4840. {
  4841. name: "Macro",
  4842. height: math.unit(16, "meters"),
  4843. default: true
  4844. },
  4845. ]
  4846. ))
  4847. characterMakers.push(() => makeCharacter(
  4848. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4849. {
  4850. front: {
  4851. height: math.unit(2, "meters"),
  4852. weight: math.unit(120, "kg"),
  4853. name: "Front",
  4854. image: {
  4855. source: "./media/characters/miranda/front.svg",
  4856. extra: 195 / 185,
  4857. bottom: 10.9 / 206.5
  4858. }
  4859. },
  4860. back: {
  4861. height: math.unit(2, "meters"),
  4862. weight: math.unit(120, "kg"),
  4863. name: "Back",
  4864. image: {
  4865. source: "./media/characters/miranda/back.svg",
  4866. extra: 201 / 193,
  4867. bottom: 2.3 / 203.7
  4868. }
  4869. },
  4870. },
  4871. [
  4872. {
  4873. name: "Normal",
  4874. height: math.unit(10, "feet"),
  4875. default: true
  4876. }
  4877. ]
  4878. ))
  4879. characterMakers.push(() => makeCharacter(
  4880. { name: "James", species: ["deer"], tags: ["anthro"] },
  4881. {
  4882. side: {
  4883. height: math.unit(2, "meters"),
  4884. weight: math.unit(100, "kg"),
  4885. name: "Front",
  4886. image: {
  4887. source: "./media/characters/james/front.svg",
  4888. extra: 10 / 8.5
  4889. }
  4890. },
  4891. },
  4892. [
  4893. {
  4894. name: "Normal",
  4895. height: math.unit(8.5, "feet"),
  4896. default: true
  4897. }
  4898. ]
  4899. ))
  4900. characterMakers.push(() => makeCharacter(
  4901. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4902. {
  4903. side: {
  4904. height: math.unit(9.5, "feet"),
  4905. weight: math.unit(2500, "lbs"),
  4906. name: "Side",
  4907. image: {
  4908. source: "./media/characters/heather/side.svg"
  4909. }
  4910. },
  4911. },
  4912. [
  4913. {
  4914. name: "Normal",
  4915. height: math.unit(9.5, "feet"),
  4916. default: true
  4917. }
  4918. ]
  4919. ))
  4920. characterMakers.push(() => makeCharacter(
  4921. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4922. {
  4923. side: {
  4924. height: math.unit(6.5, "feet"),
  4925. weight: math.unit(400, "lbs"),
  4926. name: "Side",
  4927. image: {
  4928. source: "./media/characters/lukas/side.svg",
  4929. extra: 7.25 / 6.5
  4930. }
  4931. },
  4932. },
  4933. [
  4934. {
  4935. name: "Normal",
  4936. height: math.unit(6.5, "feet"),
  4937. default: true
  4938. }
  4939. ]
  4940. ))
  4941. characterMakers.push(() => makeCharacter(
  4942. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4943. {
  4944. side: {
  4945. height: math.unit(5, "feet"),
  4946. weight: math.unit(3000, "lbs"),
  4947. name: "Side",
  4948. image: {
  4949. source: "./media/characters/louise/side.svg"
  4950. }
  4951. },
  4952. },
  4953. [
  4954. {
  4955. name: "Normal",
  4956. height: math.unit(5, "feet"),
  4957. default: true
  4958. }
  4959. ]
  4960. ))
  4961. characterMakers.push(() => makeCharacter(
  4962. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4963. {
  4964. side: {
  4965. height: math.unit(6, "feet"),
  4966. weight: math.unit(150, "lbs"),
  4967. name: "Side",
  4968. image: {
  4969. source: "./media/characters/ramona/side.svg"
  4970. }
  4971. },
  4972. },
  4973. [
  4974. {
  4975. name: "Normal",
  4976. height: math.unit(5.3, "meters"),
  4977. default: true
  4978. },
  4979. {
  4980. name: "Macro",
  4981. height: math.unit(20, "stories")
  4982. },
  4983. {
  4984. name: "Macro+",
  4985. height: math.unit(50, "stories")
  4986. },
  4987. ]
  4988. ))
  4989. characterMakers.push(() => makeCharacter(
  4990. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4991. {
  4992. standing: {
  4993. height: math.unit(5.75, "feet"),
  4994. weight: math.unit(160, "lbs"),
  4995. name: "Standing",
  4996. image: {
  4997. source: "./media/characters/deerpuff/standing.svg",
  4998. extra: 682 / 624
  4999. }
  5000. },
  5001. sitting: {
  5002. height: math.unit(5.75 / 1.79, "feet"),
  5003. weight: math.unit(160, "lbs"),
  5004. name: "Sitting",
  5005. image: {
  5006. source: "./media/characters/deerpuff/sitting.svg",
  5007. bottom: 44 / 400,
  5008. extra: 1
  5009. }
  5010. },
  5011. taurLaying: {
  5012. height: math.unit(6, "feet"),
  5013. weight: math.unit(400, "lbs"),
  5014. name: "Taur (Laying)",
  5015. image: {
  5016. source: "./media/characters/deerpuff/taur-laying.svg"
  5017. }
  5018. },
  5019. },
  5020. [
  5021. {
  5022. name: "Puffball",
  5023. height: math.unit(6, "inches")
  5024. },
  5025. {
  5026. name: "Normalpuff",
  5027. height: math.unit(5.75, "feet")
  5028. },
  5029. {
  5030. name: "Macropuff",
  5031. height: math.unit(1500, "feet"),
  5032. default: true
  5033. },
  5034. {
  5035. name: "Megapuff",
  5036. height: math.unit(500, "miles")
  5037. },
  5038. {
  5039. name: "Gigapuff",
  5040. height: math.unit(250000, "miles")
  5041. },
  5042. {
  5043. name: "Omegapuff",
  5044. height: math.unit(1000, "lightyears")
  5045. },
  5046. ]
  5047. ))
  5048. characterMakers.push(() => makeCharacter(
  5049. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5050. {
  5051. stomping: {
  5052. height: math.unit(6, "feet"),
  5053. weight: math.unit(170, "lbs"),
  5054. name: "Stomping",
  5055. image: {
  5056. source: "./media/characters/vivian/stomping.svg"
  5057. }
  5058. },
  5059. sitting: {
  5060. height: math.unit(6 / 1.75, "feet"),
  5061. weight: math.unit(170, "lbs"),
  5062. name: "Sitting",
  5063. image: {
  5064. source: "./media/characters/vivian/sitting.svg",
  5065. bottom: 1 / 6.4,
  5066. extra: 1,
  5067. }
  5068. },
  5069. },
  5070. [
  5071. {
  5072. name: "Normal",
  5073. height: math.unit(7, "feet"),
  5074. default: true
  5075. },
  5076. {
  5077. name: "Macro",
  5078. height: math.unit(10, "stories")
  5079. },
  5080. {
  5081. name: "Macro+",
  5082. height: math.unit(30, "stories")
  5083. },
  5084. {
  5085. name: "Megamacro",
  5086. height: math.unit(10, "miles")
  5087. },
  5088. {
  5089. name: "Megamacro+",
  5090. height: math.unit(2750000, "meters")
  5091. },
  5092. ]
  5093. ))
  5094. characterMakers.push(() => makeCharacter(
  5095. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5096. {
  5097. front: {
  5098. height: math.unit(6, "feet"),
  5099. weight: math.unit(160, "lbs"),
  5100. name: "Front",
  5101. image: {
  5102. source: "./media/characters/prince/front.svg",
  5103. extra: 3400 / 3000
  5104. }
  5105. },
  5106. jumping: {
  5107. height: math.unit(6, "feet"),
  5108. weight: math.unit(160, "lbs"),
  5109. name: "Jumping",
  5110. image: {
  5111. source: "./media/characters/prince/jump.svg",
  5112. extra: 2555 / 2134
  5113. }
  5114. },
  5115. },
  5116. [
  5117. {
  5118. name: "Normal",
  5119. height: math.unit(7.75, "feet"),
  5120. default: true
  5121. },
  5122. {
  5123. name: "Not cute",
  5124. height: math.unit(17, "feet")
  5125. },
  5126. {
  5127. name: "I said NOT",
  5128. height: math.unit(91, "feet")
  5129. },
  5130. {
  5131. name: "Please stop",
  5132. height: math.unit(560, "feet")
  5133. },
  5134. {
  5135. name: "What have you done",
  5136. height: math.unit(2200, "feet")
  5137. },
  5138. {
  5139. name: "Deer God",
  5140. height: math.unit(3.6, "miles")
  5141. },
  5142. ]
  5143. ))
  5144. characterMakers.push(() => makeCharacter(
  5145. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5146. {
  5147. standing: {
  5148. height: math.unit(6, "feet"),
  5149. weight: math.unit(300, "lbs"),
  5150. name: "Standing",
  5151. image: {
  5152. source: "./media/characters/psymon/standing.svg",
  5153. extra: 1888 / 1810,
  5154. bottom: 0.05
  5155. }
  5156. },
  5157. slithering: {
  5158. height: math.unit(6, "feet"),
  5159. weight: math.unit(300, "lbs"),
  5160. name: "Slithering",
  5161. image: {
  5162. source: "./media/characters/psymon/slithering.svg",
  5163. extra: 1330 / 1224
  5164. }
  5165. },
  5166. slitheringAlt: {
  5167. height: math.unit(6, "feet"),
  5168. weight: math.unit(300, "lbs"),
  5169. name: "Slithering (Alt)",
  5170. image: {
  5171. source: "./media/characters/psymon/slithering-alt.svg",
  5172. extra: 1330 / 1224
  5173. }
  5174. },
  5175. },
  5176. [
  5177. {
  5178. name: "Normal",
  5179. height: math.unit(11.25, "feet"),
  5180. default: true
  5181. },
  5182. {
  5183. name: "Large",
  5184. height: math.unit(27, "feet")
  5185. },
  5186. {
  5187. name: "Giant",
  5188. height: math.unit(87, "feet")
  5189. },
  5190. {
  5191. name: "Macro",
  5192. height: math.unit(365, "feet")
  5193. },
  5194. {
  5195. name: "Megamacro",
  5196. height: math.unit(3, "miles")
  5197. },
  5198. {
  5199. name: "World Serpent",
  5200. height: math.unit(8000, "miles")
  5201. },
  5202. ]
  5203. ))
  5204. characterMakers.push(() => makeCharacter(
  5205. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5206. {
  5207. front: {
  5208. height: math.unit(6, "feet"),
  5209. weight: math.unit(180, "lbs"),
  5210. name: "Front",
  5211. image: {
  5212. source: "./media/characters/daimos/front.svg",
  5213. extra: 4160 / 3897,
  5214. bottom: 0.021
  5215. }
  5216. }
  5217. },
  5218. [
  5219. {
  5220. name: "Normal",
  5221. height: math.unit(8, "feet"),
  5222. default: true
  5223. },
  5224. {
  5225. name: "Big Dog",
  5226. height: math.unit(22, "feet")
  5227. },
  5228. {
  5229. name: "Macro",
  5230. height: math.unit(127, "feet")
  5231. },
  5232. {
  5233. name: "Megamacro",
  5234. height: math.unit(3600, "feet")
  5235. },
  5236. ]
  5237. ))
  5238. characterMakers.push(() => makeCharacter(
  5239. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5240. {
  5241. side: {
  5242. height: math.unit(6, "feet"),
  5243. weight: math.unit(180, "lbs"),
  5244. name: "Side",
  5245. image: {
  5246. source: "./media/characters/blake/side.svg",
  5247. extra: 1212 / 1120,
  5248. bottom: 0.05
  5249. }
  5250. },
  5251. crouched: {
  5252. height: math.unit(6 * 0.57, "feet"),
  5253. weight: math.unit(180, "lbs"),
  5254. name: "Crouched",
  5255. image: {
  5256. source: "./media/characters/blake/crouched.svg",
  5257. extra: 840 / 587,
  5258. bottom: 0.04
  5259. }
  5260. },
  5261. bent: {
  5262. height: math.unit(6 * 0.75, "feet"),
  5263. weight: math.unit(180, "lbs"),
  5264. name: "Bent",
  5265. image: {
  5266. source: "./media/characters/blake/bent.svg",
  5267. extra: 592 / 544,
  5268. bottom: 0.035
  5269. }
  5270. },
  5271. },
  5272. [
  5273. {
  5274. name: "Normal",
  5275. height: math.unit(8 + 1 / 6, "feet"),
  5276. default: true
  5277. },
  5278. {
  5279. name: "Big Backside",
  5280. height: math.unit(37, "feet")
  5281. },
  5282. {
  5283. name: "Subway Shredder",
  5284. height: math.unit(72, "feet")
  5285. },
  5286. {
  5287. name: "City Carver",
  5288. height: math.unit(1675, "feet")
  5289. },
  5290. {
  5291. name: "Tectonic Tweaker",
  5292. height: math.unit(2300, "miles")
  5293. },
  5294. ]
  5295. ))
  5296. characterMakers.push(() => makeCharacter(
  5297. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5298. {
  5299. front: {
  5300. height: math.unit(6, "feet"),
  5301. weight: math.unit(180, "lbs"),
  5302. name: "Front",
  5303. image: {
  5304. source: "./media/characters/guisetto/front.svg",
  5305. extra: 856 / 817,
  5306. bottom: 0.06
  5307. }
  5308. },
  5309. airborne: {
  5310. height: math.unit(6, "feet"),
  5311. weight: math.unit(180, "lbs"),
  5312. name: "Airborne",
  5313. image: {
  5314. source: "./media/characters/guisetto/airborne.svg",
  5315. extra: 584 / 525
  5316. }
  5317. },
  5318. },
  5319. [
  5320. {
  5321. name: "Normal",
  5322. height: math.unit(10 + 11 / 12, "feet"),
  5323. default: true
  5324. },
  5325. {
  5326. name: "Large",
  5327. height: math.unit(35, "feet")
  5328. },
  5329. {
  5330. name: "Macro",
  5331. height: math.unit(475, "feet")
  5332. },
  5333. ]
  5334. ))
  5335. characterMakers.push(() => makeCharacter(
  5336. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5337. {
  5338. front: {
  5339. height: math.unit(6, "feet"),
  5340. weight: math.unit(180, "lbs"),
  5341. name: "Front",
  5342. image: {
  5343. source: "./media/characters/luxor/front.svg",
  5344. extra: 2940 / 2152
  5345. }
  5346. },
  5347. back: {
  5348. height: math.unit(6, "feet"),
  5349. weight: math.unit(180, "lbs"),
  5350. name: "Back",
  5351. image: {
  5352. source: "./media/characters/luxor/back.svg",
  5353. extra: 1083 / 960
  5354. }
  5355. },
  5356. },
  5357. [
  5358. {
  5359. name: "Normal",
  5360. height: math.unit(5 + 5 / 6, "feet"),
  5361. default: true
  5362. },
  5363. {
  5364. name: "Lamp",
  5365. height: math.unit(50, "feet")
  5366. },
  5367. {
  5368. name: "Lämp",
  5369. height: math.unit(300, "feet")
  5370. },
  5371. {
  5372. name: "The sun is a lamp",
  5373. height: math.unit(250000, "miles")
  5374. },
  5375. ]
  5376. ))
  5377. characterMakers.push(() => makeCharacter(
  5378. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5379. {
  5380. front: {
  5381. height: math.unit(6, "feet"),
  5382. weight: math.unit(50, "lbs"),
  5383. name: "Front",
  5384. image: {
  5385. source: "./media/characters/huoyan/front.svg"
  5386. }
  5387. },
  5388. side: {
  5389. height: math.unit(6, "feet"),
  5390. weight: math.unit(180, "lbs"),
  5391. name: "Side",
  5392. image: {
  5393. source: "./media/characters/huoyan/side.svg"
  5394. }
  5395. },
  5396. },
  5397. [
  5398. {
  5399. name: "Chef",
  5400. height: math.unit(9, "feet")
  5401. },
  5402. {
  5403. name: "Normal",
  5404. height: math.unit(65, "feet"),
  5405. default: true
  5406. },
  5407. {
  5408. name: "Macro",
  5409. height: math.unit(780, "feet")
  5410. },
  5411. {
  5412. name: "Flaming Mountain",
  5413. height: math.unit(4.8, "miles")
  5414. },
  5415. {
  5416. name: "Celestial",
  5417. height: math.unit(765000, "miles")
  5418. },
  5419. ]
  5420. ))
  5421. characterMakers.push(() => makeCharacter(
  5422. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5423. {
  5424. front: {
  5425. height: math.unit(5 + 3 / 4, "feet"),
  5426. weight: math.unit(120, "lbs"),
  5427. name: "Front",
  5428. image: {
  5429. source: "./media/characters/tails/front.svg"
  5430. }
  5431. }
  5432. },
  5433. [
  5434. {
  5435. name: "Normal",
  5436. height: math.unit(5 + 3 / 4, "feet"),
  5437. default: true
  5438. }
  5439. ]
  5440. ))
  5441. characterMakers.push(() => makeCharacter(
  5442. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5443. {
  5444. front: {
  5445. height: math.unit(4, "feet"),
  5446. weight: math.unit(50, "lbs"),
  5447. name: "Front",
  5448. image: {
  5449. source: "./media/characters/rainy/front.svg"
  5450. }
  5451. }
  5452. },
  5453. [
  5454. {
  5455. name: "Macro",
  5456. height: math.unit(800, "feet"),
  5457. default: true
  5458. }
  5459. ]
  5460. ))
  5461. characterMakers.push(() => makeCharacter(
  5462. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5463. {
  5464. front: {
  5465. height: math.unit(6, "feet"),
  5466. weight: math.unit(150, "lbs"),
  5467. name: "Front",
  5468. image: {
  5469. source: "./media/characters/rainier/front.svg"
  5470. }
  5471. }
  5472. },
  5473. [
  5474. {
  5475. name: "Micro",
  5476. height: math.unit(2, "mm"),
  5477. default: true
  5478. }
  5479. ]
  5480. ))
  5481. characterMakers.push(() => makeCharacter(
  5482. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5483. {
  5484. front: {
  5485. height: math.unit(8 + 4/12, "feet"),
  5486. name: "Front",
  5487. image: {
  5488. source: "./media/characters/andy-renard/front.svg",
  5489. extra: 1839/1726,
  5490. bottom: 134/1973
  5491. }
  5492. },
  5493. back: {
  5494. height: math.unit(8 + 4/12, "feet"),
  5495. name: "Back",
  5496. image: {
  5497. source: "./media/characters/andy-renard/back.svg",
  5498. extra: 1838/1710,
  5499. bottom: 105/1943
  5500. }
  5501. },
  5502. },
  5503. [
  5504. {
  5505. name: "Tall",
  5506. height: math.unit(8 + 4/12, "feet")
  5507. },
  5508. {
  5509. name: "Mini Macro",
  5510. height: math.unit(15, "feet"),
  5511. default: true
  5512. },
  5513. {
  5514. name: "Macro",
  5515. height: math.unit(100, "feet")
  5516. },
  5517. {
  5518. name: "Mega Macro",
  5519. height: math.unit(1000, "feet")
  5520. },
  5521. {
  5522. name: "Giga Macro",
  5523. height: math.unit(10, "miles")
  5524. },
  5525. {
  5526. name: "God Macro",
  5527. height: math.unit(1, "multiverse")
  5528. },
  5529. ]
  5530. ))
  5531. characterMakers.push(() => makeCharacter(
  5532. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5533. {
  5534. front: {
  5535. height: math.unit(6, "feet"),
  5536. weight: math.unit(210, "lbs"),
  5537. name: "Front",
  5538. image: {
  5539. source: "./media/characters/cimmaron/front-sfw.svg",
  5540. extra: 701 / 676,
  5541. bottom: 0.046
  5542. }
  5543. },
  5544. back: {
  5545. height: math.unit(6, "feet"),
  5546. weight: math.unit(210, "lbs"),
  5547. name: "Back",
  5548. image: {
  5549. source: "./media/characters/cimmaron/back-sfw.svg",
  5550. extra: 701 / 676,
  5551. bottom: 0.046
  5552. }
  5553. },
  5554. frontNsfw: {
  5555. height: math.unit(6, "feet"),
  5556. weight: math.unit(210, "lbs"),
  5557. name: "Front (NSFW)",
  5558. image: {
  5559. source: "./media/characters/cimmaron/front-nsfw.svg",
  5560. extra: 701 / 676,
  5561. bottom: 0.046
  5562. }
  5563. },
  5564. backNsfw: {
  5565. height: math.unit(6, "feet"),
  5566. weight: math.unit(210, "lbs"),
  5567. name: "Back (NSFW)",
  5568. image: {
  5569. source: "./media/characters/cimmaron/back-nsfw.svg",
  5570. extra: 701 / 676,
  5571. bottom: 0.046
  5572. }
  5573. },
  5574. dick: {
  5575. height: math.unit(1.714, "feet"),
  5576. name: "Dick",
  5577. image: {
  5578. source: "./media/characters/cimmaron/dick.svg"
  5579. }
  5580. },
  5581. },
  5582. [
  5583. {
  5584. name: "Normal",
  5585. height: math.unit(6, "feet"),
  5586. default: true
  5587. },
  5588. {
  5589. name: "Macro Mayor",
  5590. height: math.unit(350, "meters")
  5591. },
  5592. ]
  5593. ))
  5594. characterMakers.push(() => makeCharacter(
  5595. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5596. {
  5597. front: {
  5598. height: math.unit(6, "feet"),
  5599. weight: math.unit(200, "lbs"),
  5600. name: "Front",
  5601. image: {
  5602. source: "./media/characters/akari/front.svg",
  5603. extra: 962 / 901,
  5604. bottom: 0.04
  5605. }
  5606. }
  5607. },
  5608. [
  5609. {
  5610. name: "Micro",
  5611. height: math.unit(5, "inches"),
  5612. default: true
  5613. },
  5614. {
  5615. name: "Normal",
  5616. height: math.unit(7, "feet")
  5617. },
  5618. ]
  5619. ))
  5620. characterMakers.push(() => makeCharacter(
  5621. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5622. {
  5623. front: {
  5624. height: math.unit(6, "feet"),
  5625. weight: math.unit(140, "lbs"),
  5626. name: "Front",
  5627. image: {
  5628. source: "./media/characters/cynosura/front.svg",
  5629. extra: 896 / 847
  5630. }
  5631. },
  5632. back: {
  5633. height: math.unit(6, "feet"),
  5634. weight: math.unit(140, "lbs"),
  5635. name: "Back",
  5636. image: {
  5637. source: "./media/characters/cynosura/back.svg",
  5638. extra: 1365 / 1250
  5639. }
  5640. },
  5641. },
  5642. [
  5643. {
  5644. name: "Micro",
  5645. height: math.unit(4, "inches")
  5646. },
  5647. {
  5648. name: "Normal",
  5649. height: math.unit(5.75, "feet"),
  5650. default: true
  5651. },
  5652. {
  5653. name: "Tall",
  5654. height: math.unit(10, "feet")
  5655. },
  5656. {
  5657. name: "Big",
  5658. height: math.unit(20, "feet")
  5659. },
  5660. {
  5661. name: "Macro",
  5662. height: math.unit(50, "feet")
  5663. },
  5664. ]
  5665. ))
  5666. characterMakers.push(() => makeCharacter(
  5667. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5668. {
  5669. front: {
  5670. height: math.unit(13 + 2/12, "feet"),
  5671. weight: math.unit(800, "kg"),
  5672. name: "Front",
  5673. image: {
  5674. source: "./media/characters/gin/front.svg",
  5675. extra: 1312/1191,
  5676. bottom: 45/1357
  5677. }
  5678. },
  5679. mouth: {
  5680. height: math.unit(2.39 * 1.8, "feet"),
  5681. name: "Mouth",
  5682. image: {
  5683. source: "./media/characters/gin/mouth.svg"
  5684. }
  5685. },
  5686. hand: {
  5687. height: math.unit(1.57 * 2.19, "feet"),
  5688. name: "Hand",
  5689. image: {
  5690. source: "./media/characters/gin/hand.svg"
  5691. }
  5692. },
  5693. foot: {
  5694. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5695. name: "Foot",
  5696. image: {
  5697. source: "./media/characters/gin/foot.svg"
  5698. }
  5699. },
  5700. sole: {
  5701. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5702. name: "Sole",
  5703. image: {
  5704. source: "./media/characters/gin/sole.svg"
  5705. }
  5706. },
  5707. },
  5708. [
  5709. {
  5710. name: "Very Small",
  5711. height: math.unit(13 + 2 / 12, "feet")
  5712. },
  5713. {
  5714. name: "Micro",
  5715. height: math.unit(600, "miles")
  5716. },
  5717. {
  5718. name: "Regular",
  5719. height: math.unit(20, "earths"),
  5720. default: true
  5721. },
  5722. {
  5723. name: "Macro",
  5724. height: math.unit(2.2, "solarradii")
  5725. },
  5726. {
  5727. name: "Teramacro",
  5728. height: math.unit(1.2, "galaxies")
  5729. },
  5730. {
  5731. name: "Omegamacro",
  5732. height: math.unit(200, "universes")
  5733. },
  5734. ]
  5735. ))
  5736. characterMakers.push(() => makeCharacter(
  5737. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5738. {
  5739. front: {
  5740. height: math.unit(6 + 1 / 6, "feet"),
  5741. weight: math.unit(178, "lbs"),
  5742. name: "Front",
  5743. image: {
  5744. source: "./media/characters/guy/front.svg"
  5745. }
  5746. }
  5747. },
  5748. [
  5749. {
  5750. name: "Normal",
  5751. height: math.unit(6 + 1 / 6, "feet"),
  5752. default: true
  5753. },
  5754. {
  5755. name: "Large",
  5756. height: math.unit(25 + 7 / 12, "feet")
  5757. },
  5758. {
  5759. name: "Macro",
  5760. height: math.unit(60 + 9 / 12, "feet")
  5761. },
  5762. {
  5763. name: "Macro+",
  5764. height: math.unit(246, "feet")
  5765. },
  5766. {
  5767. name: "Macro++",
  5768. height: math.unit(878, "feet")
  5769. }
  5770. ]
  5771. ))
  5772. characterMakers.push(() => makeCharacter(
  5773. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5774. {
  5775. front: {
  5776. height: math.unit(9, "feet"),
  5777. weight: math.unit(800, "lbs"),
  5778. name: "Front",
  5779. image: {
  5780. source: "./media/characters/tiberius/front.svg",
  5781. extra: 2295 / 2071
  5782. }
  5783. },
  5784. back: {
  5785. height: math.unit(9, "feet"),
  5786. weight: math.unit(800, "lbs"),
  5787. name: "Back",
  5788. image: {
  5789. source: "./media/characters/tiberius/back.svg",
  5790. extra: 2373 / 2160
  5791. }
  5792. },
  5793. },
  5794. [
  5795. {
  5796. name: "Normal",
  5797. height: math.unit(9, "feet"),
  5798. default: true
  5799. }
  5800. ]
  5801. ))
  5802. characterMakers.push(() => makeCharacter(
  5803. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5804. {
  5805. front: {
  5806. height: math.unit(6, "feet"),
  5807. weight: math.unit(600, "lbs"),
  5808. name: "Front",
  5809. image: {
  5810. source: "./media/characters/surgo/front.svg",
  5811. extra: 3591 / 2227
  5812. }
  5813. },
  5814. back: {
  5815. height: math.unit(6, "feet"),
  5816. weight: math.unit(600, "lbs"),
  5817. name: "Back",
  5818. image: {
  5819. source: "./media/characters/surgo/back.svg",
  5820. extra: 3557 / 2228
  5821. }
  5822. },
  5823. laying: {
  5824. height: math.unit(6 * 0.85, "feet"),
  5825. weight: math.unit(600, "lbs"),
  5826. name: "Laying",
  5827. image: {
  5828. source: "./media/characters/surgo/laying.svg"
  5829. }
  5830. },
  5831. },
  5832. [
  5833. {
  5834. name: "Normal",
  5835. height: math.unit(6, "feet"),
  5836. default: true
  5837. }
  5838. ]
  5839. ))
  5840. characterMakers.push(() => makeCharacter(
  5841. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5842. {
  5843. side: {
  5844. height: math.unit(6, "feet"),
  5845. weight: math.unit(150, "lbs"),
  5846. name: "Side",
  5847. image: {
  5848. source: "./media/characters/cibus/side.svg",
  5849. extra: 800 / 400
  5850. }
  5851. },
  5852. },
  5853. [
  5854. {
  5855. name: "Normal",
  5856. height: math.unit(6, "feet"),
  5857. default: true
  5858. }
  5859. ]
  5860. ))
  5861. characterMakers.push(() => makeCharacter(
  5862. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5863. {
  5864. front: {
  5865. height: math.unit(6, "feet"),
  5866. weight: math.unit(240, "lbs"),
  5867. name: "Front",
  5868. image: {
  5869. source: "./media/characters/nibbles/front.svg"
  5870. }
  5871. },
  5872. side: {
  5873. height: math.unit(6, "feet"),
  5874. weight: math.unit(240, "lbs"),
  5875. name: "Side",
  5876. image: {
  5877. source: "./media/characters/nibbles/side.svg"
  5878. }
  5879. },
  5880. },
  5881. [
  5882. {
  5883. name: "Normal",
  5884. height: math.unit(9, "feet"),
  5885. default: true
  5886. }
  5887. ]
  5888. ))
  5889. characterMakers.push(() => makeCharacter(
  5890. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5891. {
  5892. side: {
  5893. height: math.unit(5 + 1 / 6, "feet"),
  5894. weight: math.unit(130, "lbs"),
  5895. name: "Side",
  5896. image: {
  5897. source: "./media/characters/rikky/side.svg",
  5898. extra: 851 / 801
  5899. }
  5900. },
  5901. },
  5902. [
  5903. {
  5904. name: "Normal",
  5905. height: math.unit(5 + 1 / 6, "feet")
  5906. },
  5907. {
  5908. name: "Macro",
  5909. height: math.unit(152, "feet"),
  5910. default: true
  5911. },
  5912. {
  5913. name: "Megamacro",
  5914. height: math.unit(7, "miles")
  5915. }
  5916. ]
  5917. ))
  5918. characterMakers.push(() => makeCharacter(
  5919. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5920. {
  5921. side: {
  5922. height: math.unit(370, "cm"),
  5923. weight: math.unit(350, "lbs"),
  5924. name: "Side",
  5925. image: {
  5926. source: "./media/characters/malfressa/side.svg"
  5927. }
  5928. },
  5929. walking: {
  5930. height: math.unit(370, "cm"),
  5931. weight: math.unit(350, "lbs"),
  5932. name: "Walking",
  5933. image: {
  5934. source: "./media/characters/malfressa/walking.svg"
  5935. }
  5936. },
  5937. feral: {
  5938. height: math.unit(2500, "cm"),
  5939. weight: math.unit(100000, "lbs"),
  5940. name: "Feral",
  5941. image: {
  5942. source: "./media/characters/malfressa/feral.svg",
  5943. extra: 2108 / 837,
  5944. bottom: 0.02
  5945. }
  5946. },
  5947. },
  5948. [
  5949. {
  5950. name: "Normal",
  5951. height: math.unit(370, "cm")
  5952. },
  5953. {
  5954. name: "Macro",
  5955. height: math.unit(300, "meters"),
  5956. default: true
  5957. }
  5958. ]
  5959. ))
  5960. characterMakers.push(() => makeCharacter(
  5961. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5962. {
  5963. front: {
  5964. height: math.unit(6, "feet"),
  5965. weight: math.unit(60, "kg"),
  5966. name: "Front",
  5967. image: {
  5968. source: "./media/characters/jaro/front.svg"
  5969. }
  5970. },
  5971. back: {
  5972. height: math.unit(6, "feet"),
  5973. weight: math.unit(60, "kg"),
  5974. name: "Back",
  5975. image: {
  5976. source: "./media/characters/jaro/back.svg"
  5977. }
  5978. },
  5979. },
  5980. [
  5981. {
  5982. name: "Micro",
  5983. height: math.unit(7, "inches")
  5984. },
  5985. {
  5986. name: "Normal",
  5987. height: math.unit(5.5, "feet"),
  5988. default: true
  5989. },
  5990. {
  5991. name: "Minimacro",
  5992. height: math.unit(20, "feet")
  5993. },
  5994. {
  5995. name: "Macro",
  5996. height: math.unit(200, "meters")
  5997. }
  5998. ]
  5999. ))
  6000. characterMakers.push(() => makeCharacter(
  6001. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6002. {
  6003. front: {
  6004. height: math.unit(6, "feet"),
  6005. weight: math.unit(195, "lb"),
  6006. name: "Front",
  6007. image: {
  6008. source: "./media/characters/rogue/front.svg"
  6009. }
  6010. },
  6011. },
  6012. [
  6013. {
  6014. name: "Macro",
  6015. height: math.unit(90, "feet"),
  6016. default: true
  6017. },
  6018. ]
  6019. ))
  6020. characterMakers.push(() => makeCharacter(
  6021. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6022. {
  6023. front: {
  6024. height: math.unit(5 + 8 / 12, "feet"),
  6025. weight: math.unit(140, "lb"),
  6026. name: "Front",
  6027. image: {
  6028. source: "./media/characters/piper/front.svg",
  6029. extra: 3948/3655,
  6030. bottom: 0/3948
  6031. }
  6032. },
  6033. },
  6034. [
  6035. {
  6036. name: "Micro",
  6037. height: math.unit(2, "inches")
  6038. },
  6039. {
  6040. name: "Normal",
  6041. height: math.unit(5 + 8 / 12, "feet")
  6042. },
  6043. {
  6044. name: "Macro",
  6045. height: math.unit(250, "feet"),
  6046. default: true
  6047. },
  6048. {
  6049. name: "Megamacro",
  6050. height: math.unit(7, "miles")
  6051. },
  6052. ]
  6053. ))
  6054. characterMakers.push(() => makeCharacter(
  6055. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6056. {
  6057. front: {
  6058. height: math.unit(6, "feet"),
  6059. weight: math.unit(220, "lb"),
  6060. name: "Front",
  6061. image: {
  6062. source: "./media/characters/gemini/front.svg"
  6063. }
  6064. },
  6065. back: {
  6066. height: math.unit(6, "feet"),
  6067. weight: math.unit(220, "lb"),
  6068. name: "Back",
  6069. image: {
  6070. source: "./media/characters/gemini/back.svg"
  6071. }
  6072. },
  6073. kneeling: {
  6074. height: math.unit(6 / 1.5, "feet"),
  6075. weight: math.unit(220, "lb"),
  6076. name: "Kneeling",
  6077. image: {
  6078. source: "./media/characters/gemini/kneeling.svg",
  6079. bottom: 0.02
  6080. }
  6081. },
  6082. },
  6083. [
  6084. {
  6085. name: "Macro",
  6086. height: math.unit(300, "meters"),
  6087. default: true
  6088. },
  6089. {
  6090. name: "Megamacro",
  6091. height: math.unit(6900, "meters")
  6092. },
  6093. ]
  6094. ))
  6095. characterMakers.push(() => makeCharacter(
  6096. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6097. {
  6098. anthro: {
  6099. height: math.unit(2.35, "meters"),
  6100. weight: math.unit(73, "kg"),
  6101. name: "Anthro",
  6102. image: {
  6103. source: "./media/characters/alicia/anthro.svg",
  6104. extra: 2571 / 2385,
  6105. bottom: 75 / 2648
  6106. }
  6107. },
  6108. paw: {
  6109. height: math.unit(1.32, "feet"),
  6110. name: "Paw",
  6111. image: {
  6112. source: "./media/characters/alicia/paw.svg"
  6113. }
  6114. },
  6115. feral: {
  6116. height: math.unit(1.69, "meters"),
  6117. weight: math.unit(73, "kg"),
  6118. name: "Feral",
  6119. image: {
  6120. source: "./media/characters/alicia/feral.svg",
  6121. extra: 2123 / 1715,
  6122. bottom: 222 / 2349
  6123. }
  6124. },
  6125. },
  6126. [
  6127. {
  6128. name: "Normal",
  6129. height: math.unit(2.35, "meters")
  6130. },
  6131. {
  6132. name: "Macro",
  6133. height: math.unit(60, "meters"),
  6134. default: true
  6135. },
  6136. {
  6137. name: "Megamacro",
  6138. height: math.unit(10000, "kilometers")
  6139. },
  6140. ]
  6141. ))
  6142. characterMakers.push(() => makeCharacter(
  6143. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6144. {
  6145. front: {
  6146. height: math.unit(7, "feet"),
  6147. weight: math.unit(250, "lbs"),
  6148. name: "Front",
  6149. image: {
  6150. source: "./media/characters/archy/front.svg"
  6151. }
  6152. }
  6153. },
  6154. [
  6155. {
  6156. name: "Micro",
  6157. height: math.unit(1, "inch")
  6158. },
  6159. {
  6160. name: "Shorty",
  6161. height: math.unit(5, "feet")
  6162. },
  6163. {
  6164. name: "Normal",
  6165. height: math.unit(7, "feet")
  6166. },
  6167. {
  6168. name: "Macro",
  6169. height: math.unit(600, "meters"),
  6170. default: true
  6171. },
  6172. {
  6173. name: "Megamacro",
  6174. height: math.unit(1, "mile")
  6175. },
  6176. ]
  6177. ))
  6178. characterMakers.push(() => makeCharacter(
  6179. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6180. {
  6181. front: {
  6182. height: math.unit(1.65, "meters"),
  6183. weight: math.unit(74, "kg"),
  6184. name: "Front",
  6185. image: {
  6186. source: "./media/characters/berri/front.svg",
  6187. extra: 857 / 837,
  6188. bottom: 18 / 877
  6189. }
  6190. },
  6191. bum: {
  6192. height: math.unit(1.46, "feet"),
  6193. name: "Bum",
  6194. image: {
  6195. source: "./media/characters/berri/bum.svg"
  6196. }
  6197. },
  6198. mouth: {
  6199. height: math.unit(0.44, "feet"),
  6200. name: "Mouth",
  6201. image: {
  6202. source: "./media/characters/berri/mouth.svg"
  6203. }
  6204. },
  6205. paw: {
  6206. height: math.unit(0.826, "feet"),
  6207. name: "Paw",
  6208. image: {
  6209. source: "./media/characters/berri/paw.svg"
  6210. }
  6211. },
  6212. },
  6213. [
  6214. {
  6215. name: "Normal",
  6216. height: math.unit(1.65, "meters")
  6217. },
  6218. {
  6219. name: "Macro",
  6220. height: math.unit(60, "m"),
  6221. default: true
  6222. },
  6223. {
  6224. name: "Megamacro",
  6225. height: math.unit(9.213, "km")
  6226. },
  6227. {
  6228. name: "Planet Eater",
  6229. height: math.unit(489, "megameters")
  6230. },
  6231. {
  6232. name: "Teramacro",
  6233. height: math.unit(2471635000000, "meters")
  6234. },
  6235. {
  6236. name: "Examacro",
  6237. height: math.unit(8.0624e+26, "meters")
  6238. }
  6239. ]
  6240. ))
  6241. characterMakers.push(() => makeCharacter(
  6242. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6243. {
  6244. front: {
  6245. height: math.unit(1.72, "meters"),
  6246. weight: math.unit(68, "kg"),
  6247. name: "Front",
  6248. image: {
  6249. source: "./media/characters/lexi/front.svg"
  6250. }
  6251. }
  6252. },
  6253. [
  6254. {
  6255. name: "Very Smol",
  6256. height: math.unit(10, "mm")
  6257. },
  6258. {
  6259. name: "Micro",
  6260. height: math.unit(6.8, "cm"),
  6261. default: true
  6262. },
  6263. {
  6264. name: "Normal",
  6265. height: math.unit(1.72, "m")
  6266. }
  6267. ]
  6268. ))
  6269. characterMakers.push(() => makeCharacter(
  6270. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6271. {
  6272. front: {
  6273. height: math.unit(1.69, "meters"),
  6274. weight: math.unit(68, "kg"),
  6275. name: "Front",
  6276. image: {
  6277. source: "./media/characters/martin/front.svg",
  6278. extra: 596 / 581
  6279. }
  6280. }
  6281. },
  6282. [
  6283. {
  6284. name: "Micro",
  6285. height: math.unit(6.85, "cm"),
  6286. default: true
  6287. },
  6288. {
  6289. name: "Normal",
  6290. height: math.unit(1.69, "m")
  6291. }
  6292. ]
  6293. ))
  6294. characterMakers.push(() => makeCharacter(
  6295. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6296. {
  6297. front: {
  6298. height: math.unit(1.69, "meters"),
  6299. weight: math.unit(68, "kg"),
  6300. name: "Front",
  6301. image: {
  6302. source: "./media/characters/juno/front.svg"
  6303. }
  6304. }
  6305. },
  6306. [
  6307. {
  6308. name: "Micro",
  6309. height: math.unit(7, "cm")
  6310. },
  6311. {
  6312. name: "Normal",
  6313. height: math.unit(1.89, "m")
  6314. },
  6315. {
  6316. name: "Macro",
  6317. height: math.unit(353, "meters"),
  6318. default: true
  6319. }
  6320. ]
  6321. ))
  6322. characterMakers.push(() => makeCharacter(
  6323. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6324. {
  6325. front: {
  6326. height: math.unit(1.93, "meters"),
  6327. weight: math.unit(83, "kg"),
  6328. name: "Front",
  6329. image: {
  6330. source: "./media/characters/samantha/front.svg"
  6331. }
  6332. },
  6333. frontClothed: {
  6334. height: math.unit(1.93, "meters"),
  6335. weight: math.unit(83, "kg"),
  6336. name: "Front (Clothed)",
  6337. image: {
  6338. source: "./media/characters/samantha/front-clothed.svg"
  6339. }
  6340. },
  6341. back: {
  6342. height: math.unit(1.93, "meters"),
  6343. weight: math.unit(83, "kg"),
  6344. name: "Back",
  6345. image: {
  6346. source: "./media/characters/samantha/back.svg"
  6347. }
  6348. },
  6349. },
  6350. [
  6351. {
  6352. name: "Normal",
  6353. height: math.unit(1.93, "m")
  6354. },
  6355. {
  6356. name: "Macro",
  6357. height: math.unit(74, "meters"),
  6358. default: true
  6359. },
  6360. {
  6361. name: "Macro+",
  6362. height: math.unit(223, "meters"),
  6363. },
  6364. {
  6365. name: "Megamacro",
  6366. height: math.unit(8381, "meters"),
  6367. },
  6368. {
  6369. name: "Megamacro+",
  6370. height: math.unit(12000, "kilometers")
  6371. },
  6372. ]
  6373. ))
  6374. characterMakers.push(() => makeCharacter(
  6375. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6376. {
  6377. front: {
  6378. height: math.unit(1.92, "meters"),
  6379. weight: math.unit(80, "kg"),
  6380. name: "Front",
  6381. image: {
  6382. source: "./media/characters/dr-clay/front.svg"
  6383. }
  6384. },
  6385. frontClothed: {
  6386. height: math.unit(1.92, "meters"),
  6387. weight: math.unit(80, "kg"),
  6388. name: "Front (Clothed)",
  6389. image: {
  6390. source: "./media/characters/dr-clay/front-clothed.svg"
  6391. }
  6392. }
  6393. },
  6394. [
  6395. {
  6396. name: "Normal",
  6397. height: math.unit(1.92, "m")
  6398. },
  6399. {
  6400. name: "Macro",
  6401. height: math.unit(214, "meters"),
  6402. default: true
  6403. },
  6404. {
  6405. name: "Macro+",
  6406. height: math.unit(12.237, "meters"),
  6407. },
  6408. {
  6409. name: "Megamacro",
  6410. height: math.unit(557, "megameters"),
  6411. },
  6412. {
  6413. name: "Unimaginable",
  6414. height: math.unit(120e9, "lightyears")
  6415. },
  6416. ]
  6417. ))
  6418. characterMakers.push(() => makeCharacter(
  6419. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6420. {
  6421. front: {
  6422. height: math.unit(2, "meters"),
  6423. weight: math.unit(80, "kg"),
  6424. name: "Front",
  6425. image: {
  6426. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6427. }
  6428. }
  6429. },
  6430. [
  6431. {
  6432. name: "Teramacro",
  6433. height: math.unit(500000, "lightyears"),
  6434. default: true
  6435. },
  6436. ]
  6437. ))
  6438. characterMakers.push(() => makeCharacter(
  6439. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6440. {
  6441. front: {
  6442. height: math.unit(2, "meters"),
  6443. weight: math.unit(150, "kg"),
  6444. name: "Front",
  6445. image: {
  6446. source: "./media/characters/vemus/front.svg",
  6447. extra: 1074/936,
  6448. bottom: 23/1097
  6449. }
  6450. }
  6451. },
  6452. [
  6453. {
  6454. name: "Normal",
  6455. height: math.unit(3.75, "meters"),
  6456. default: true
  6457. },
  6458. {
  6459. name: "Big",
  6460. height: math.unit(8, "meters")
  6461. },
  6462. {
  6463. name: "Macro",
  6464. height: math.unit(100, "meters")
  6465. },
  6466. {
  6467. name: "Macro+",
  6468. height: math.unit(1500, "meters")
  6469. },
  6470. {
  6471. name: "Stellar",
  6472. height: math.unit(14e8, "meters")
  6473. },
  6474. ]
  6475. ))
  6476. characterMakers.push(() => makeCharacter(
  6477. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6478. {
  6479. front: {
  6480. height: math.unit(2, "meters"),
  6481. weight: math.unit(70, "kg"),
  6482. name: "Front",
  6483. image: {
  6484. source: "./media/characters/beherit/front.svg",
  6485. extra: 1408 / 1242
  6486. }
  6487. }
  6488. },
  6489. [
  6490. {
  6491. name: "Normal",
  6492. height: math.unit(6, "feet")
  6493. },
  6494. {
  6495. name: "Lorg",
  6496. height: math.unit(25, "feet"),
  6497. default: true
  6498. },
  6499. {
  6500. name: "Lorger",
  6501. height: math.unit(75, "feet")
  6502. },
  6503. {
  6504. name: "Macro",
  6505. height: math.unit(200, "meters")
  6506. },
  6507. ]
  6508. ))
  6509. characterMakers.push(() => makeCharacter(
  6510. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6511. {
  6512. front: {
  6513. height: math.unit(2, "meters"),
  6514. weight: math.unit(150, "kg"),
  6515. name: "Front",
  6516. image: {
  6517. source: "./media/characters/everett/front.svg",
  6518. extra: 2038 / 1737,
  6519. bottom: 0.03
  6520. }
  6521. },
  6522. paw: {
  6523. height: math.unit(2 / 3.6, "meters"),
  6524. name: "Paw",
  6525. image: {
  6526. source: "./media/characters/everett/paw.svg"
  6527. }
  6528. },
  6529. },
  6530. [
  6531. {
  6532. name: "Normal",
  6533. height: math.unit(15, "feet"),
  6534. default: true
  6535. },
  6536. {
  6537. name: "Lorg",
  6538. height: math.unit(70, "feet"),
  6539. default: true
  6540. },
  6541. {
  6542. name: "Lorger",
  6543. height: math.unit(250, "feet")
  6544. },
  6545. {
  6546. name: "Macro",
  6547. height: math.unit(500, "meters")
  6548. },
  6549. ]
  6550. ))
  6551. characterMakers.push(() => makeCharacter(
  6552. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6553. {
  6554. front: {
  6555. height: math.unit(2, "meters"),
  6556. weight: math.unit(86, "kg"),
  6557. name: "Front",
  6558. image: {
  6559. source: "./media/characters/rose/front.svg",
  6560. extra: 1785/1636,
  6561. bottom: 30/1815
  6562. }
  6563. },
  6564. frontSporty: {
  6565. height: math.unit(2, "meters"),
  6566. weight: math.unit(86, "kg"),
  6567. name: "Front (Sporty)",
  6568. image: {
  6569. source: "./media/characters/rose/front-sporty.svg",
  6570. extra: 350/335,
  6571. bottom: 10/360
  6572. }
  6573. },
  6574. frontAlt: {
  6575. height: math.unit(1.6, "meters"),
  6576. weight: math.unit(86, "kg"),
  6577. name: "Front (Alt)",
  6578. image: {
  6579. source: "./media/characters/rose/front-alt.svg",
  6580. extra: 299/283,
  6581. bottom: 3/302
  6582. }
  6583. },
  6584. plush: {
  6585. height: math.unit(2, "meters"),
  6586. weight: math.unit(86/3, "kg"),
  6587. name: "Plush",
  6588. image: {
  6589. source: "./media/characters/rose/plush.svg",
  6590. extra: 361/337,
  6591. bottom: 11/372
  6592. }
  6593. },
  6594. },
  6595. [
  6596. {
  6597. name: "True Micro",
  6598. height: math.unit(9, "cm")
  6599. },
  6600. {
  6601. name: "Micro",
  6602. height: math.unit(16, "cm")
  6603. },
  6604. {
  6605. name: "Normal",
  6606. height: math.unit(1.85, "meters"),
  6607. default: true
  6608. },
  6609. {
  6610. name: "Mini-Macro",
  6611. height: math.unit(5, "meters")
  6612. },
  6613. {
  6614. name: "Macro",
  6615. height: math.unit(15, "meters")
  6616. },
  6617. {
  6618. name: "True Macro",
  6619. height: math.unit(40, "meters")
  6620. },
  6621. {
  6622. name: "City Scale",
  6623. height: math.unit(1, "km")
  6624. },
  6625. ]
  6626. ))
  6627. characterMakers.push(() => makeCharacter(
  6628. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6629. {
  6630. front: {
  6631. height: math.unit(2, "meters"),
  6632. weight: math.unit(350, "lbs"),
  6633. name: "Front",
  6634. image: {
  6635. source: "./media/characters/regal/front.svg"
  6636. }
  6637. },
  6638. back: {
  6639. height: math.unit(2, "meters"),
  6640. weight: math.unit(350, "lbs"),
  6641. name: "Back",
  6642. image: {
  6643. source: "./media/characters/regal/back.svg"
  6644. }
  6645. },
  6646. },
  6647. [
  6648. {
  6649. name: "Macro",
  6650. height: math.unit(350, "feet"),
  6651. default: true
  6652. }
  6653. ]
  6654. ))
  6655. characterMakers.push(() => makeCharacter(
  6656. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6657. {
  6658. front: {
  6659. height: math.unit(4 + 11 / 12, "feet"),
  6660. weight: math.unit(100, "lbs"),
  6661. name: "Front",
  6662. image: {
  6663. source: "./media/characters/opal/front.svg"
  6664. }
  6665. },
  6666. frontAlt: {
  6667. height: math.unit(4 + 11 / 12, "feet"),
  6668. weight: math.unit(100, "lbs"),
  6669. name: "Front (Alt)",
  6670. image: {
  6671. source: "./media/characters/opal/front-alt.svg"
  6672. }
  6673. },
  6674. },
  6675. [
  6676. {
  6677. name: "Small",
  6678. height: math.unit(4 + 11 / 12, "feet")
  6679. },
  6680. {
  6681. name: "Normal",
  6682. height: math.unit(20, "feet"),
  6683. default: true
  6684. },
  6685. {
  6686. name: "Macro",
  6687. height: math.unit(120, "feet")
  6688. },
  6689. {
  6690. name: "Megamacro",
  6691. height: math.unit(80, "miles")
  6692. },
  6693. {
  6694. name: "True Size",
  6695. height: math.unit(100000, "lightyears")
  6696. },
  6697. ]
  6698. ))
  6699. characterMakers.push(() => makeCharacter(
  6700. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6701. {
  6702. front: {
  6703. height: math.unit(6, "feet"),
  6704. weight: math.unit(200, "lbs"),
  6705. name: "Front",
  6706. image: {
  6707. source: "./media/characters/vector-wuff/front.svg"
  6708. }
  6709. }
  6710. },
  6711. [
  6712. {
  6713. name: "Normal",
  6714. height: math.unit(2.8, "meters")
  6715. },
  6716. {
  6717. name: "Macro",
  6718. height: math.unit(450, "meters"),
  6719. default: true
  6720. },
  6721. {
  6722. name: "Megamacro",
  6723. height: math.unit(15, "kilometers")
  6724. }
  6725. ]
  6726. ))
  6727. characterMakers.push(() => makeCharacter(
  6728. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6729. {
  6730. front: {
  6731. height: math.unit(6, "feet"),
  6732. weight: math.unit(256, "lbs"),
  6733. name: "Front",
  6734. image: {
  6735. source: "./media/characters/dannik/front.svg"
  6736. }
  6737. }
  6738. },
  6739. [
  6740. {
  6741. name: "Macro",
  6742. height: math.unit(69.57, "meters"),
  6743. default: true
  6744. },
  6745. ]
  6746. ))
  6747. characterMakers.push(() => makeCharacter(
  6748. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6749. {
  6750. front: {
  6751. height: math.unit(6, "feet"),
  6752. weight: math.unit(120, "lbs"),
  6753. name: "Front",
  6754. image: {
  6755. source: "./media/characters/azura-saharah/front.svg"
  6756. }
  6757. },
  6758. back: {
  6759. height: math.unit(6, "feet"),
  6760. weight: math.unit(120, "lbs"),
  6761. name: "Back",
  6762. image: {
  6763. source: "./media/characters/azura-saharah/back.svg"
  6764. }
  6765. },
  6766. },
  6767. [
  6768. {
  6769. name: "Macro",
  6770. height: math.unit(100, "feet"),
  6771. default: true
  6772. },
  6773. ]
  6774. ))
  6775. characterMakers.push(() => makeCharacter(
  6776. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6777. {
  6778. side: {
  6779. height: math.unit(5 + 4 / 12, "feet"),
  6780. weight: math.unit(163, "lbs"),
  6781. name: "Side",
  6782. image: {
  6783. source: "./media/characters/kennedy/side.svg"
  6784. }
  6785. }
  6786. },
  6787. [
  6788. {
  6789. name: "Standard Doggo",
  6790. height: math.unit(5 + 4 / 12, "feet")
  6791. },
  6792. {
  6793. name: "Big Doggo",
  6794. height: math.unit(25 + 3 / 12, "feet"),
  6795. default: true
  6796. },
  6797. ]
  6798. ))
  6799. characterMakers.push(() => makeCharacter(
  6800. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6801. {
  6802. front: {
  6803. height: math.unit(6, "feet"),
  6804. weight: math.unit(90, "lbs"),
  6805. name: "Front",
  6806. image: {
  6807. source: "./media/characters/odi-lunar/front.svg"
  6808. }
  6809. }
  6810. },
  6811. [
  6812. {
  6813. name: "Micro",
  6814. height: math.unit(3, "inches"),
  6815. default: true
  6816. },
  6817. {
  6818. name: "Normal",
  6819. height: math.unit(5.5, "feet")
  6820. }
  6821. ]
  6822. ))
  6823. characterMakers.push(() => makeCharacter(
  6824. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6825. {
  6826. back: {
  6827. height: math.unit(6, "feet"),
  6828. weight: math.unit(220, "lbs"),
  6829. name: "Back",
  6830. image: {
  6831. source: "./media/characters/mandake/back.svg"
  6832. }
  6833. }
  6834. },
  6835. [
  6836. {
  6837. name: "Normal",
  6838. height: math.unit(7, "feet"),
  6839. default: true
  6840. },
  6841. {
  6842. name: "Macro",
  6843. height: math.unit(78, "feet")
  6844. },
  6845. {
  6846. name: "Macro+",
  6847. height: math.unit(300, "meters")
  6848. },
  6849. {
  6850. name: "Macro++",
  6851. height: math.unit(2400, "feet")
  6852. },
  6853. {
  6854. name: "Megamacro",
  6855. height: math.unit(5167, "meters")
  6856. },
  6857. {
  6858. name: "Gigamacro",
  6859. height: math.unit(41769, "miles")
  6860. },
  6861. ]
  6862. ))
  6863. characterMakers.push(() => makeCharacter(
  6864. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6865. {
  6866. front: {
  6867. height: math.unit(6, "feet"),
  6868. weight: math.unit(120, "lbs"),
  6869. name: "Front",
  6870. image: {
  6871. source: "./media/characters/yozey/front.svg"
  6872. }
  6873. },
  6874. frontAlt: {
  6875. height: math.unit(6, "feet"),
  6876. weight: math.unit(120, "lbs"),
  6877. name: "Front (Alt)",
  6878. image: {
  6879. source: "./media/characters/yozey/front-alt.svg"
  6880. }
  6881. },
  6882. side: {
  6883. height: math.unit(6, "feet"),
  6884. weight: math.unit(120, "lbs"),
  6885. name: "Side",
  6886. image: {
  6887. source: "./media/characters/yozey/side.svg"
  6888. }
  6889. },
  6890. },
  6891. [
  6892. {
  6893. name: "Micro",
  6894. height: math.unit(3, "inches"),
  6895. default: true
  6896. },
  6897. {
  6898. name: "Normal",
  6899. height: math.unit(6, "feet")
  6900. }
  6901. ]
  6902. ))
  6903. characterMakers.push(() => makeCharacter(
  6904. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6905. {
  6906. front: {
  6907. height: math.unit(6, "feet"),
  6908. weight: math.unit(103, "lbs"),
  6909. name: "Front",
  6910. image: {
  6911. source: "./media/characters/valeska-voss/front.svg"
  6912. }
  6913. }
  6914. },
  6915. [
  6916. {
  6917. name: "Mini-Sized Sub",
  6918. height: math.unit(3.1, "inches")
  6919. },
  6920. {
  6921. name: "Mid-Sized Sub",
  6922. height: math.unit(6.2, "inches")
  6923. },
  6924. {
  6925. name: "Full-Sized Sub",
  6926. height: math.unit(9.3, "inches")
  6927. },
  6928. {
  6929. name: "Normal",
  6930. height: math.unit(5 + 2 / 12, "foot"),
  6931. default: true
  6932. },
  6933. ]
  6934. ))
  6935. characterMakers.push(() => makeCharacter(
  6936. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6937. {
  6938. front: {
  6939. height: math.unit(6, "feet"),
  6940. weight: math.unit(160, "lbs"),
  6941. name: "Front",
  6942. image: {
  6943. source: "./media/characters/gene-zeta/front.svg",
  6944. extra: 3006 / 2826,
  6945. bottom: 182 / 3188
  6946. }
  6947. }
  6948. },
  6949. [
  6950. {
  6951. name: "Micro",
  6952. height: math.unit(6, "inches")
  6953. },
  6954. {
  6955. name: "Normal",
  6956. height: math.unit(5 + 11 / 12, "foot"),
  6957. default: true
  6958. },
  6959. {
  6960. name: "Macro",
  6961. height: math.unit(140, "feet")
  6962. },
  6963. {
  6964. name: "Supercharged",
  6965. height: math.unit(2500, "feet")
  6966. },
  6967. ]
  6968. ))
  6969. characterMakers.push(() => makeCharacter(
  6970. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6971. {
  6972. front: {
  6973. height: math.unit(6, "feet"),
  6974. weight: math.unit(350, "lbs"),
  6975. name: "Front",
  6976. image: {
  6977. source: "./media/characters/razinox/front.svg",
  6978. extra: 1686 / 1548,
  6979. bottom: 28.2 / 1868
  6980. }
  6981. },
  6982. back: {
  6983. height: math.unit(6, "feet"),
  6984. weight: math.unit(350, "lbs"),
  6985. name: "Back",
  6986. image: {
  6987. source: "./media/characters/razinox/back.svg",
  6988. extra: 1660 / 1590,
  6989. bottom: 15 / 1665
  6990. }
  6991. },
  6992. },
  6993. [
  6994. {
  6995. name: "Normal",
  6996. height: math.unit(10 + 8 / 12, "foot")
  6997. },
  6998. {
  6999. name: "Minimacro",
  7000. height: math.unit(15, "foot")
  7001. },
  7002. {
  7003. name: "Macro",
  7004. height: math.unit(60, "foot"),
  7005. default: true
  7006. },
  7007. {
  7008. name: "Megamacro",
  7009. height: math.unit(5, "miles")
  7010. },
  7011. {
  7012. name: "Gigamacro",
  7013. height: math.unit(6000, "miles")
  7014. },
  7015. ]
  7016. ))
  7017. characterMakers.push(() => makeCharacter(
  7018. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7019. {
  7020. front: {
  7021. height: math.unit(6, "feet"),
  7022. weight: math.unit(150, "lbs"),
  7023. name: "Front",
  7024. image: {
  7025. source: "./media/characters/cobalt/front.svg"
  7026. }
  7027. }
  7028. },
  7029. [
  7030. {
  7031. name: "Normal",
  7032. height: math.unit(8 + 1 / 12, "foot")
  7033. },
  7034. {
  7035. name: "Macro",
  7036. height: math.unit(111, "foot"),
  7037. default: true
  7038. },
  7039. {
  7040. name: "Supracosmic",
  7041. height: math.unit(1e42, "feet")
  7042. },
  7043. ]
  7044. ))
  7045. characterMakers.push(() => makeCharacter(
  7046. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7047. {
  7048. front: {
  7049. height: math.unit(6, "feet"),
  7050. weight: math.unit(140, "lbs"),
  7051. name: "Front",
  7052. image: {
  7053. source: "./media/characters/amanda/front.svg"
  7054. }
  7055. }
  7056. },
  7057. [
  7058. {
  7059. name: "Micro",
  7060. height: math.unit(5, "inches"),
  7061. default: true
  7062. },
  7063. ]
  7064. ))
  7065. characterMakers.push(() => makeCharacter(
  7066. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7067. {
  7068. front: {
  7069. height: math.unit(2.75, "meters"),
  7070. weight: math.unit(1200, "lb"),
  7071. name: "Front",
  7072. image: {
  7073. source: "./media/characters/teal/front.svg",
  7074. extra: 2463 / 2320,
  7075. bottom: 166 / 2629
  7076. }
  7077. },
  7078. back: {
  7079. height: math.unit(2.75, "meters"),
  7080. weight: math.unit(1200, "lb"),
  7081. name: "Back",
  7082. image: {
  7083. source: "./media/characters/teal/back.svg",
  7084. extra: 2580 / 2489,
  7085. bottom: 151 / 2731
  7086. }
  7087. },
  7088. sitting: {
  7089. height: math.unit(1.9, "meters"),
  7090. weight: math.unit(1200, "lb"),
  7091. name: "Sitting",
  7092. image: {
  7093. source: "./media/characters/teal/sitting.svg",
  7094. extra: 623 / 590,
  7095. bottom: 121 / 744
  7096. }
  7097. },
  7098. standing: {
  7099. height: math.unit(2.75, "meters"),
  7100. weight: math.unit(1200, "lb"),
  7101. name: "Standing",
  7102. image: {
  7103. source: "./media/characters/teal/standing.svg",
  7104. extra: 923 / 893,
  7105. bottom: 60 / 983
  7106. }
  7107. },
  7108. stretching: {
  7109. height: math.unit(3.65, "meters"),
  7110. weight: math.unit(1200, "lb"),
  7111. name: "Stretching",
  7112. image: {
  7113. source: "./media/characters/teal/stretching.svg",
  7114. extra: 1276 / 1244,
  7115. bottom: 0 / 1276
  7116. }
  7117. },
  7118. legged: {
  7119. height: math.unit(1.3, "meters"),
  7120. weight: math.unit(100, "lb"),
  7121. name: "Legged",
  7122. image: {
  7123. source: "./media/characters/teal/legged.svg",
  7124. extra: 462 / 437,
  7125. bottom: 24 / 486
  7126. }
  7127. },
  7128. naga: {
  7129. height: math.unit(5.4, "meters"),
  7130. weight: math.unit(4000, "lb"),
  7131. name: "Naga",
  7132. image: {
  7133. source: "./media/characters/teal/naga.svg",
  7134. extra: 1902 / 1858,
  7135. bottom: 0 / 1902
  7136. }
  7137. },
  7138. hand: {
  7139. height: math.unit(0.52, "meters"),
  7140. name: "Hand",
  7141. image: {
  7142. source: "./media/characters/teal/hand.svg"
  7143. }
  7144. },
  7145. maw: {
  7146. height: math.unit(0.43, "meters"),
  7147. name: "Maw",
  7148. image: {
  7149. source: "./media/characters/teal/maw.svg"
  7150. }
  7151. },
  7152. slit: {
  7153. height: math.unit(0.25, "meters"),
  7154. name: "Slit",
  7155. image: {
  7156. source: "./media/characters/teal/slit.svg"
  7157. }
  7158. },
  7159. },
  7160. [
  7161. {
  7162. name: "Normal",
  7163. height: math.unit(2.75, "meters"),
  7164. default: true
  7165. },
  7166. {
  7167. name: "Macro",
  7168. height: math.unit(300, "feet")
  7169. },
  7170. {
  7171. name: "Macro+",
  7172. height: math.unit(2000, "feet")
  7173. },
  7174. ]
  7175. ))
  7176. characterMakers.push(() => makeCharacter(
  7177. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7178. {
  7179. frontCat: {
  7180. height: math.unit(6, "feet"),
  7181. weight: math.unit(180, "lbs"),
  7182. name: "Front (Cat)",
  7183. image: {
  7184. source: "./media/characters/ravin-amulet/front-cat.svg"
  7185. }
  7186. },
  7187. frontCatAlt: {
  7188. height: math.unit(6, "feet"),
  7189. weight: math.unit(180, "lbs"),
  7190. name: "Front (Alt, Cat)",
  7191. image: {
  7192. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7193. }
  7194. },
  7195. frontWerewolf: {
  7196. height: math.unit(6 * 1.2, "feet"),
  7197. weight: math.unit(225, "lbs"),
  7198. name: "Front (Werewolf)",
  7199. image: {
  7200. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7201. }
  7202. },
  7203. backWerewolf: {
  7204. height: math.unit(6 * 1.2, "feet"),
  7205. weight: math.unit(225, "lbs"),
  7206. name: "Back (Werewolf)",
  7207. image: {
  7208. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7209. }
  7210. },
  7211. },
  7212. [
  7213. {
  7214. name: "Nano",
  7215. height: math.unit(1, "micrometer")
  7216. },
  7217. {
  7218. name: "Micro",
  7219. height: math.unit(1, "inch")
  7220. },
  7221. {
  7222. name: "Normal",
  7223. height: math.unit(6, "feet"),
  7224. default: true
  7225. },
  7226. {
  7227. name: "Macro",
  7228. height: math.unit(60, "feet")
  7229. }
  7230. ]
  7231. ))
  7232. characterMakers.push(() => makeCharacter(
  7233. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7234. {
  7235. front: {
  7236. height: math.unit(6, "feet"),
  7237. weight: math.unit(165, "lbs"),
  7238. name: "Front",
  7239. image: {
  7240. source: "./media/characters/fluoresce/front.svg"
  7241. }
  7242. }
  7243. },
  7244. [
  7245. {
  7246. name: "Micro",
  7247. height: math.unit(6, "cm")
  7248. },
  7249. {
  7250. name: "Normal",
  7251. height: math.unit(5 + 7 / 12, "feet"),
  7252. default: true
  7253. },
  7254. {
  7255. name: "Macro",
  7256. height: math.unit(56, "feet")
  7257. },
  7258. {
  7259. name: "Megamacro",
  7260. height: math.unit(1.9, "miles")
  7261. },
  7262. ]
  7263. ))
  7264. characterMakers.push(() => makeCharacter(
  7265. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7266. {
  7267. front: {
  7268. height: math.unit(9 + 6 / 12, "feet"),
  7269. weight: math.unit(523, "lbs"),
  7270. name: "Side",
  7271. image: {
  7272. source: "./media/characters/aurora/side.svg"
  7273. }
  7274. }
  7275. },
  7276. [
  7277. {
  7278. name: "Normal",
  7279. height: math.unit(9 + 6 / 12, "feet")
  7280. },
  7281. {
  7282. name: "Macro",
  7283. height: math.unit(96, "feet"),
  7284. default: true
  7285. },
  7286. {
  7287. name: "Macro+",
  7288. height: math.unit(243, "feet")
  7289. },
  7290. ]
  7291. ))
  7292. characterMakers.push(() => makeCharacter(
  7293. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7294. {
  7295. front: {
  7296. height: math.unit(194, "cm"),
  7297. weight: math.unit(90, "kg"),
  7298. name: "Front",
  7299. image: {
  7300. source: "./media/characters/ranek/front.svg"
  7301. }
  7302. },
  7303. side: {
  7304. height: math.unit(194, "cm"),
  7305. weight: math.unit(90, "kg"),
  7306. name: "Side",
  7307. image: {
  7308. source: "./media/characters/ranek/side.svg"
  7309. }
  7310. },
  7311. back: {
  7312. height: math.unit(194, "cm"),
  7313. weight: math.unit(90, "kg"),
  7314. name: "Back",
  7315. image: {
  7316. source: "./media/characters/ranek/back.svg"
  7317. }
  7318. },
  7319. feral: {
  7320. height: math.unit(30, "cm"),
  7321. weight: math.unit(1.6, "lbs"),
  7322. name: "Feral",
  7323. image: {
  7324. source: "./media/characters/ranek/feral.svg"
  7325. }
  7326. },
  7327. },
  7328. [
  7329. {
  7330. name: "Normal",
  7331. height: math.unit(194, "cm"),
  7332. default: true
  7333. },
  7334. {
  7335. name: "Macro",
  7336. height: math.unit(100, "meters")
  7337. },
  7338. ]
  7339. ))
  7340. characterMakers.push(() => makeCharacter(
  7341. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7342. {
  7343. front: {
  7344. height: math.unit(5 + 6 / 12, "feet"),
  7345. weight: math.unit(153, "lbs"),
  7346. name: "Front",
  7347. image: {
  7348. source: "./media/characters/andrew-cooper/front.svg"
  7349. }
  7350. },
  7351. },
  7352. [
  7353. {
  7354. name: "Nano",
  7355. height: math.unit(1, "mm")
  7356. },
  7357. {
  7358. name: "Micro",
  7359. height: math.unit(2, "inches")
  7360. },
  7361. {
  7362. name: "Normal",
  7363. height: math.unit(5 + 6 / 12, "feet"),
  7364. default: true
  7365. }
  7366. ]
  7367. ))
  7368. characterMakers.push(() => makeCharacter(
  7369. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7370. {
  7371. front: {
  7372. height: math.unit(6, "feet"),
  7373. weight: math.unit(180, "lbs"),
  7374. name: "Front",
  7375. image: {
  7376. source: "./media/characters/akane-sato/front.svg",
  7377. extra: 1219 / 1140
  7378. }
  7379. },
  7380. back: {
  7381. height: math.unit(6, "feet"),
  7382. weight: math.unit(180, "lbs"),
  7383. name: "Back",
  7384. image: {
  7385. source: "./media/characters/akane-sato/back.svg",
  7386. extra: 1219 / 1170
  7387. }
  7388. },
  7389. },
  7390. [
  7391. {
  7392. name: "Normal",
  7393. height: math.unit(2.5, "meters")
  7394. },
  7395. {
  7396. name: "Macro",
  7397. height: math.unit(250, "meters"),
  7398. default: true
  7399. },
  7400. {
  7401. name: "Megamacro",
  7402. height: math.unit(25, "km")
  7403. },
  7404. ]
  7405. ))
  7406. characterMakers.push(() => makeCharacter(
  7407. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7408. {
  7409. front: {
  7410. height: math.unit(6, "feet"),
  7411. weight: math.unit(65, "kg"),
  7412. name: "Front",
  7413. image: {
  7414. source: "./media/characters/rook/front.svg",
  7415. extra: 960 / 950
  7416. }
  7417. }
  7418. },
  7419. [
  7420. {
  7421. name: "Normal",
  7422. height: math.unit(8.8, "feet")
  7423. },
  7424. {
  7425. name: "Macro",
  7426. height: math.unit(88, "feet"),
  7427. default: true
  7428. },
  7429. {
  7430. name: "Megamacro",
  7431. height: math.unit(8, "miles")
  7432. },
  7433. ]
  7434. ))
  7435. characterMakers.push(() => makeCharacter(
  7436. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7437. {
  7438. front: {
  7439. height: math.unit(12 + 2 / 12, "feet"),
  7440. weight: math.unit(808, "lbs"),
  7441. name: "Front",
  7442. image: {
  7443. source: "./media/characters/prodigy/front.svg"
  7444. }
  7445. }
  7446. },
  7447. [
  7448. {
  7449. name: "Normal",
  7450. height: math.unit(12 + 2 / 12, "feet"),
  7451. default: true
  7452. },
  7453. {
  7454. name: "Macro",
  7455. height: math.unit(143, "feet")
  7456. },
  7457. {
  7458. name: "Macro+",
  7459. height: math.unit(400, "feet")
  7460. },
  7461. ]
  7462. ))
  7463. characterMakers.push(() => makeCharacter(
  7464. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7465. {
  7466. front: {
  7467. height: math.unit(6, "feet"),
  7468. weight: math.unit(225, "lbs"),
  7469. name: "Front",
  7470. image: {
  7471. source: "./media/characters/daniel/front.svg"
  7472. }
  7473. },
  7474. leaning: {
  7475. height: math.unit(6, "feet"),
  7476. weight: math.unit(225, "lbs"),
  7477. name: "Leaning",
  7478. image: {
  7479. source: "./media/characters/daniel/leaning.svg"
  7480. }
  7481. },
  7482. },
  7483. [
  7484. {
  7485. name: "Macro",
  7486. height: math.unit(1000, "feet"),
  7487. default: true
  7488. },
  7489. ]
  7490. ))
  7491. characterMakers.push(() => makeCharacter(
  7492. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7493. {
  7494. front: {
  7495. height: math.unit(6, "feet"),
  7496. weight: math.unit(88, "lbs"),
  7497. name: "Front",
  7498. image: {
  7499. source: "./media/characters/chiros/front.svg",
  7500. extra: 306 / 226
  7501. }
  7502. },
  7503. side: {
  7504. height: math.unit(6, "feet"),
  7505. weight: math.unit(88, "lbs"),
  7506. name: "Side",
  7507. image: {
  7508. source: "./media/characters/chiros/side.svg",
  7509. extra: 306 / 226
  7510. }
  7511. },
  7512. },
  7513. [
  7514. {
  7515. name: "Normal",
  7516. height: math.unit(6, "cm"),
  7517. default: true
  7518. },
  7519. ]
  7520. ))
  7521. characterMakers.push(() => makeCharacter(
  7522. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7523. {
  7524. front: {
  7525. height: math.unit(6, "feet"),
  7526. weight: math.unit(100, "lbs"),
  7527. name: "Front",
  7528. image: {
  7529. source: "./media/characters/selka/front.svg",
  7530. extra: 947 / 887
  7531. }
  7532. }
  7533. },
  7534. [
  7535. {
  7536. name: "Normal",
  7537. height: math.unit(5, "cm"),
  7538. default: true
  7539. },
  7540. ]
  7541. ))
  7542. characterMakers.push(() => makeCharacter(
  7543. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7544. {
  7545. front: {
  7546. height: math.unit(8 + 3 / 12, "feet"),
  7547. weight: math.unit(424, "lbs"),
  7548. name: "Front",
  7549. image: {
  7550. source: "./media/characters/verin/front.svg",
  7551. extra: 1845 / 1550
  7552. }
  7553. },
  7554. frontArmored: {
  7555. height: math.unit(8 + 3 / 12, "feet"),
  7556. weight: math.unit(424, "lbs"),
  7557. name: "Front (Armored)",
  7558. image: {
  7559. source: "./media/characters/verin/front-armor.svg",
  7560. extra: 1845 / 1550,
  7561. bottom: 0.01
  7562. }
  7563. },
  7564. back: {
  7565. height: math.unit(8 + 3 / 12, "feet"),
  7566. weight: math.unit(424, "lbs"),
  7567. name: "Back",
  7568. image: {
  7569. source: "./media/characters/verin/back.svg",
  7570. bottom: 0.1,
  7571. extra: 1
  7572. }
  7573. },
  7574. foot: {
  7575. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7576. name: "Foot",
  7577. image: {
  7578. source: "./media/characters/verin/foot.svg"
  7579. }
  7580. },
  7581. },
  7582. [
  7583. {
  7584. name: "Normal",
  7585. height: math.unit(8 + 3 / 12, "feet")
  7586. },
  7587. {
  7588. name: "Minimacro",
  7589. height: math.unit(21, "feet"),
  7590. default: true
  7591. },
  7592. {
  7593. name: "Macro",
  7594. height: math.unit(626, "feet")
  7595. },
  7596. ]
  7597. ))
  7598. characterMakers.push(() => makeCharacter(
  7599. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7600. {
  7601. front: {
  7602. height: math.unit(2.718, "meters"),
  7603. weight: math.unit(150, "lbs"),
  7604. name: "Front",
  7605. image: {
  7606. source: "./media/characters/sovrim-terraquian/front.svg"
  7607. }
  7608. },
  7609. back: {
  7610. height: math.unit(2.718, "meters"),
  7611. weight: math.unit(150, "lbs"),
  7612. name: "Back",
  7613. image: {
  7614. source: "./media/characters/sovrim-terraquian/back.svg"
  7615. }
  7616. }
  7617. },
  7618. [
  7619. {
  7620. name: "Micro",
  7621. height: math.unit(2, "inches")
  7622. },
  7623. {
  7624. name: "Small",
  7625. height: math.unit(1, "meter")
  7626. },
  7627. {
  7628. name: "Normal",
  7629. height: math.unit(Math.E, "meters"),
  7630. default: true
  7631. },
  7632. {
  7633. name: "Macro",
  7634. height: math.unit(20, "meters")
  7635. },
  7636. {
  7637. name: "Macro+",
  7638. height: math.unit(400, "meters")
  7639. },
  7640. ]
  7641. ))
  7642. characterMakers.push(() => makeCharacter(
  7643. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7644. {
  7645. front: {
  7646. height: math.unit(7, "feet"),
  7647. weight: math.unit(489, "lbs"),
  7648. name: "Front",
  7649. image: {
  7650. source: "./media/characters/reece-silvermane/front.svg",
  7651. bottom: 0.02,
  7652. extra: 1
  7653. }
  7654. },
  7655. },
  7656. [
  7657. {
  7658. name: "Macro",
  7659. height: math.unit(1.5, "miles"),
  7660. default: true
  7661. },
  7662. ]
  7663. ))
  7664. characterMakers.push(() => makeCharacter(
  7665. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7666. {
  7667. front: {
  7668. height: math.unit(6, "feet"),
  7669. weight: math.unit(78, "kg"),
  7670. name: "Front",
  7671. image: {
  7672. source: "./media/characters/kane/front.svg",
  7673. extra: 978 / 899
  7674. }
  7675. },
  7676. },
  7677. [
  7678. {
  7679. name: "Normal",
  7680. height: math.unit(2.1, "m"),
  7681. },
  7682. {
  7683. name: "Macro",
  7684. height: math.unit(1, "km"),
  7685. default: true
  7686. },
  7687. ]
  7688. ))
  7689. characterMakers.push(() => makeCharacter(
  7690. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7691. {
  7692. front: {
  7693. height: math.unit(6, "feet"),
  7694. weight: math.unit(200, "kg"),
  7695. name: "Front",
  7696. image: {
  7697. source: "./media/characters/tegon/front.svg",
  7698. bottom: 0.01,
  7699. extra: 1
  7700. }
  7701. },
  7702. },
  7703. [
  7704. {
  7705. name: "Micro",
  7706. height: math.unit(1, "inch")
  7707. },
  7708. {
  7709. name: "Normal",
  7710. height: math.unit(6 + 3 / 12, "feet"),
  7711. default: true
  7712. },
  7713. {
  7714. name: "Macro",
  7715. height: math.unit(300, "feet")
  7716. },
  7717. {
  7718. name: "Megamacro",
  7719. height: math.unit(69, "miles")
  7720. },
  7721. ]
  7722. ))
  7723. characterMakers.push(() => makeCharacter(
  7724. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7725. {
  7726. side: {
  7727. height: math.unit(6, "feet"),
  7728. weight: math.unit(2304, "lbs"),
  7729. name: "Side",
  7730. image: {
  7731. source: "./media/characters/arcturax/side.svg",
  7732. extra: 790 / 376,
  7733. bottom: 0.01
  7734. }
  7735. },
  7736. },
  7737. [
  7738. {
  7739. name: "Micro",
  7740. height: math.unit(2, "inch")
  7741. },
  7742. {
  7743. name: "Normal",
  7744. height: math.unit(6, "feet")
  7745. },
  7746. {
  7747. name: "Macro",
  7748. height: math.unit(39, "feet"),
  7749. default: true
  7750. },
  7751. {
  7752. name: "Megamacro",
  7753. height: math.unit(7, "miles")
  7754. },
  7755. ]
  7756. ))
  7757. characterMakers.push(() => makeCharacter(
  7758. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7759. {
  7760. front: {
  7761. height: math.unit(6, "feet"),
  7762. weight: math.unit(50, "lbs"),
  7763. name: "Front",
  7764. image: {
  7765. source: "./media/characters/sentri/front.svg",
  7766. extra: 1750 / 1570,
  7767. bottom: 0.025
  7768. }
  7769. },
  7770. frontAlt: {
  7771. height: math.unit(6, "feet"),
  7772. weight: math.unit(50, "lbs"),
  7773. name: "Front (Alt)",
  7774. image: {
  7775. source: "./media/characters/sentri/front-alt.svg",
  7776. extra: 1750 / 1570,
  7777. bottom: 0.025
  7778. }
  7779. },
  7780. },
  7781. [
  7782. {
  7783. name: "Normal",
  7784. height: math.unit(15, "feet"),
  7785. default: true
  7786. },
  7787. {
  7788. name: "Macro",
  7789. height: math.unit(2500, "feet")
  7790. }
  7791. ]
  7792. ))
  7793. characterMakers.push(() => makeCharacter(
  7794. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7795. {
  7796. front: {
  7797. height: math.unit(5 + 8 / 12, "feet"),
  7798. weight: math.unit(130, "lbs"),
  7799. name: "Front",
  7800. image: {
  7801. source: "./media/characters/corvin/front.svg",
  7802. extra: 1803 / 1629
  7803. }
  7804. },
  7805. frontShirt: {
  7806. height: math.unit(5 + 8 / 12, "feet"),
  7807. weight: math.unit(130, "lbs"),
  7808. name: "Front (Shirt)",
  7809. image: {
  7810. source: "./media/characters/corvin/front-shirt.svg",
  7811. extra: 1803 / 1629
  7812. }
  7813. },
  7814. frontPoncho: {
  7815. height: math.unit(5 + 8 / 12, "feet"),
  7816. weight: math.unit(130, "lbs"),
  7817. name: "Front (Poncho)",
  7818. image: {
  7819. source: "./media/characters/corvin/front-poncho.svg",
  7820. extra: 1803 / 1629
  7821. }
  7822. },
  7823. side: {
  7824. height: math.unit(5 + 8 / 12, "feet"),
  7825. weight: math.unit(130, "lbs"),
  7826. name: "Side",
  7827. image: {
  7828. source: "./media/characters/corvin/side.svg",
  7829. extra: 1012 / 945
  7830. }
  7831. },
  7832. back: {
  7833. height: math.unit(5 + 8 / 12, "feet"),
  7834. weight: math.unit(130, "lbs"),
  7835. name: "Back",
  7836. image: {
  7837. source: "./media/characters/corvin/back.svg",
  7838. extra: 1803 / 1629
  7839. }
  7840. },
  7841. },
  7842. [
  7843. {
  7844. name: "Micro",
  7845. height: math.unit(3, "inches")
  7846. },
  7847. {
  7848. name: "Normal",
  7849. height: math.unit(5 + 8 / 12, "feet")
  7850. },
  7851. {
  7852. name: "Macro",
  7853. height: math.unit(300, "feet"),
  7854. default: true
  7855. },
  7856. {
  7857. name: "Megamacro",
  7858. height: math.unit(500, "miles")
  7859. }
  7860. ]
  7861. ))
  7862. characterMakers.push(() => makeCharacter(
  7863. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7864. {
  7865. front: {
  7866. height: math.unit(6, "feet"),
  7867. weight: math.unit(135, "lbs"),
  7868. name: "Front",
  7869. image: {
  7870. source: "./media/characters/q/front.svg",
  7871. extra: 854 / 752,
  7872. bottom: 0.005
  7873. }
  7874. },
  7875. back: {
  7876. height: math.unit(6, "feet"),
  7877. weight: math.unit(130, "lbs"),
  7878. name: "Back",
  7879. image: {
  7880. source: "./media/characters/q/back.svg",
  7881. extra: 854 / 752
  7882. }
  7883. },
  7884. },
  7885. [
  7886. {
  7887. name: "Macro",
  7888. height: math.unit(90, "feet"),
  7889. default: true
  7890. },
  7891. {
  7892. name: "Extra Macro",
  7893. height: math.unit(300, "feet"),
  7894. },
  7895. {
  7896. name: "BIG WALF",
  7897. height: math.unit(750, "feet"),
  7898. },
  7899. ]
  7900. ))
  7901. characterMakers.push(() => makeCharacter(
  7902. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7903. {
  7904. front: {
  7905. height: math.unit(6, "feet"),
  7906. weight: math.unit(150, "lbs"),
  7907. name: "Front",
  7908. image: {
  7909. source: "./media/characters/carley/front.svg",
  7910. extra: 3927 / 3540,
  7911. bottom: 29.2 / 735
  7912. }
  7913. }
  7914. },
  7915. [
  7916. {
  7917. name: "Normal",
  7918. height: math.unit(6 + 3 / 12, "feet")
  7919. },
  7920. {
  7921. name: "Macro",
  7922. height: math.unit(185, "feet"),
  7923. default: true
  7924. },
  7925. {
  7926. name: "Megamacro",
  7927. height: math.unit(8, "miles"),
  7928. },
  7929. ]
  7930. ))
  7931. characterMakers.push(() => makeCharacter(
  7932. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7933. {
  7934. front: {
  7935. height: math.unit(3, "feet"),
  7936. weight: math.unit(28, "lbs"),
  7937. name: "Front",
  7938. image: {
  7939. source: "./media/characters/citrine/front.svg"
  7940. }
  7941. }
  7942. },
  7943. [
  7944. {
  7945. name: "Normal",
  7946. height: math.unit(3, "feet"),
  7947. default: true
  7948. }
  7949. ]
  7950. ))
  7951. characterMakers.push(() => makeCharacter(
  7952. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7953. {
  7954. front: {
  7955. height: math.unit(14, "feet"),
  7956. weight: math.unit(1450, "kg"),
  7957. capacity: math.unit(15, "people"),
  7958. name: "Front",
  7959. image: {
  7960. source: "./media/characters/aura-starwind/front.svg",
  7961. extra: 1455 / 1335
  7962. }
  7963. },
  7964. side: {
  7965. height: math.unit(14, "feet"),
  7966. weight: math.unit(1450, "kg"),
  7967. capacity: math.unit(15, "people"),
  7968. name: "Side",
  7969. image: {
  7970. source: "./media/characters/aura-starwind/side.svg",
  7971. extra: 1654 / 1497
  7972. }
  7973. },
  7974. taur: {
  7975. height: math.unit(18, "feet"),
  7976. weight: math.unit(5500, "kg"),
  7977. capacity: math.unit(50, "people"),
  7978. name: "Taur",
  7979. image: {
  7980. source: "./media/characters/aura-starwind/taur.svg",
  7981. extra: 1760 / 1650
  7982. }
  7983. },
  7984. feral: {
  7985. height: math.unit(46, "feet"),
  7986. weight: math.unit(25000, "kg"),
  7987. capacity: math.unit(120, "people"),
  7988. name: "Feral",
  7989. image: {
  7990. source: "./media/characters/aura-starwind/feral.svg"
  7991. }
  7992. },
  7993. },
  7994. [
  7995. {
  7996. name: "Normal",
  7997. height: math.unit(14, "feet"),
  7998. default: true
  7999. },
  8000. {
  8001. name: "Macro",
  8002. height: math.unit(50, "meters")
  8003. },
  8004. {
  8005. name: "Megamacro",
  8006. height: math.unit(5000, "meters")
  8007. },
  8008. {
  8009. name: "Gigamacro",
  8010. height: math.unit(100000, "kilometers")
  8011. },
  8012. ]
  8013. ))
  8014. characterMakers.push(() => makeCharacter(
  8015. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8016. {
  8017. front: {
  8018. height: math.unit(2 + 7 / 12, "feet"),
  8019. weight: math.unit(32, "lbs"),
  8020. name: "Front",
  8021. image: {
  8022. source: "./media/characters/rivet/front.svg",
  8023. extra: 1716 / 1658,
  8024. bottom: 0.03
  8025. }
  8026. },
  8027. foot: {
  8028. height: math.unit(0.551, "feet"),
  8029. name: "Rivet's Foot",
  8030. image: {
  8031. source: "./media/characters/rivet/foot.svg"
  8032. },
  8033. rename: true
  8034. }
  8035. },
  8036. [
  8037. {
  8038. name: "Micro",
  8039. height: math.unit(1.5, "inches"),
  8040. },
  8041. {
  8042. name: "Normal",
  8043. height: math.unit(2 + 7 / 12, "feet"),
  8044. default: true
  8045. },
  8046. {
  8047. name: "Macro",
  8048. height: math.unit(85, "feet")
  8049. },
  8050. {
  8051. name: "Megamacro",
  8052. height: math.unit(2.2, "km")
  8053. }
  8054. ]
  8055. ))
  8056. characterMakers.push(() => makeCharacter(
  8057. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8058. {
  8059. front: {
  8060. height: math.unit(5 + 9 / 12, "feet"),
  8061. weight: math.unit(150, "lbs"),
  8062. name: "Front",
  8063. image: {
  8064. source: "./media/characters/coffee/front.svg",
  8065. extra: 3666 / 3032,
  8066. bottom: 0.04
  8067. }
  8068. },
  8069. foot: {
  8070. height: math.unit(1.29, "feet"),
  8071. name: "Foot",
  8072. image: {
  8073. source: "./media/characters/coffee/foot.svg"
  8074. }
  8075. },
  8076. },
  8077. [
  8078. {
  8079. name: "Micro",
  8080. height: math.unit(2, "inches"),
  8081. },
  8082. {
  8083. name: "Normal",
  8084. height: math.unit(5 + 9 / 12, "feet"),
  8085. default: true
  8086. },
  8087. {
  8088. name: "Macro",
  8089. height: math.unit(800, "feet")
  8090. },
  8091. {
  8092. name: "Megamacro",
  8093. height: math.unit(25, "miles")
  8094. }
  8095. ]
  8096. ))
  8097. characterMakers.push(() => makeCharacter(
  8098. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8099. {
  8100. front: {
  8101. height: math.unit(6, "feet"),
  8102. weight: math.unit(200, "lbs"),
  8103. name: "Front",
  8104. image: {
  8105. source: "./media/characters/chari-gal/front.svg",
  8106. extra: 1568 / 1385,
  8107. bottom: 0.047
  8108. }
  8109. },
  8110. gigantamax: {
  8111. height: math.unit(6 * 16, "feet"),
  8112. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8113. name: "Gigantamax",
  8114. image: {
  8115. source: "./media/characters/chari-gal/gigantamax.svg",
  8116. extra: 1124 / 888,
  8117. bottom: 0.03
  8118. }
  8119. },
  8120. },
  8121. [
  8122. {
  8123. name: "Normal",
  8124. height: math.unit(5 + 7 / 12, "feet")
  8125. },
  8126. {
  8127. name: "Macro",
  8128. height: math.unit(200, "feet"),
  8129. default: true
  8130. }
  8131. ]
  8132. ))
  8133. characterMakers.push(() => makeCharacter(
  8134. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8135. {
  8136. front: {
  8137. height: math.unit(6, "feet"),
  8138. weight: math.unit(150, "lbs"),
  8139. name: "Front",
  8140. image: {
  8141. source: "./media/characters/nova/front.svg",
  8142. extra: 5000 / 4722,
  8143. bottom: 0.02
  8144. }
  8145. }
  8146. },
  8147. [
  8148. {
  8149. name: "Micro-",
  8150. height: math.unit(0.8, "inches")
  8151. },
  8152. {
  8153. name: "Micro",
  8154. height: math.unit(2, "inches"),
  8155. default: true
  8156. },
  8157. ]
  8158. ))
  8159. characterMakers.push(() => makeCharacter(
  8160. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8161. {
  8162. front: {
  8163. height: math.unit(3 + 1 / 12, "feet"),
  8164. weight: math.unit(21.7, "lbs"),
  8165. name: "Front",
  8166. image: {
  8167. source: "./media/characters/argent/front.svg",
  8168. extra: 1471 / 1331,
  8169. bottom: 100.8 / 1575.5
  8170. }
  8171. }
  8172. },
  8173. [
  8174. {
  8175. name: "Micro",
  8176. height: math.unit(2, "inches")
  8177. },
  8178. {
  8179. name: "Normal",
  8180. height: math.unit(3 + 1 / 12, "feet"),
  8181. default: true
  8182. },
  8183. {
  8184. name: "Macro",
  8185. height: math.unit(120, "feet")
  8186. },
  8187. ]
  8188. ))
  8189. characterMakers.push(() => makeCharacter(
  8190. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8191. {
  8192. lamp: {
  8193. height: math.unit(7 * 1559 / 989, "feet"),
  8194. name: "Magic Lamp",
  8195. image: {
  8196. source: "./media/characters/mira-al-cul/lamp.svg",
  8197. extra: 1617 / 1559
  8198. }
  8199. },
  8200. front: {
  8201. height: math.unit(7, "feet"),
  8202. name: "Front",
  8203. image: {
  8204. source: "./media/characters/mira-al-cul/front.svg",
  8205. extra: 1044 / 990
  8206. }
  8207. },
  8208. },
  8209. [
  8210. {
  8211. name: "Heavily Restricted",
  8212. height: math.unit(7 * 1559 / 989, "feet")
  8213. },
  8214. {
  8215. name: "Freshly Freed",
  8216. height: math.unit(50 * 1559 / 989, "feet")
  8217. },
  8218. {
  8219. name: "World Encompassing",
  8220. height: math.unit(10000 * 1559 / 989, "miles")
  8221. },
  8222. {
  8223. name: "Galactic",
  8224. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8225. },
  8226. {
  8227. name: "Palmed Universe",
  8228. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8229. default: true
  8230. },
  8231. {
  8232. name: "Multiversal Matriarch",
  8233. height: math.unit(8.87e10, "yottameters")
  8234. },
  8235. {
  8236. name: "Void Mother",
  8237. height: math.unit(3.14e110, "yottaparsecs")
  8238. },
  8239. {
  8240. name: "Toying with Transcendence",
  8241. height: math.unit(1e307, "meters")
  8242. },
  8243. ]
  8244. ))
  8245. characterMakers.push(() => makeCharacter(
  8246. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8247. {
  8248. front: {
  8249. height: math.unit(17 + 1 / 12, "feet"),
  8250. weight: math.unit(476.2 * 5, "lbs"),
  8251. name: "Front",
  8252. image: {
  8253. source: "./media/characters/kuro-shi-uchū/front.svg",
  8254. extra: 2329 / 1835,
  8255. bottom: 0.02
  8256. }
  8257. },
  8258. },
  8259. [
  8260. {
  8261. name: "Micro",
  8262. height: math.unit(2, "inches")
  8263. },
  8264. {
  8265. name: "Normal",
  8266. height: math.unit(12, "meters")
  8267. },
  8268. {
  8269. name: "Planetary",
  8270. height: math.unit(0.00929, "AU"),
  8271. default: true
  8272. },
  8273. {
  8274. name: "Universal",
  8275. height: math.unit(20, "gigaparsecs")
  8276. },
  8277. ]
  8278. ))
  8279. characterMakers.push(() => makeCharacter(
  8280. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8281. {
  8282. front: {
  8283. height: math.unit(5 + 2 / 12, "feet"),
  8284. weight: math.unit(120, "lbs"),
  8285. name: "Front",
  8286. image: {
  8287. source: "./media/characters/katherine/front.svg",
  8288. extra: 2075 / 1969
  8289. }
  8290. },
  8291. dress: {
  8292. height: math.unit(5 + 2 / 12, "feet"),
  8293. weight: math.unit(120, "lbs"),
  8294. name: "Dress",
  8295. image: {
  8296. source: "./media/characters/katherine/dress.svg",
  8297. extra: 2258 / 2064
  8298. }
  8299. },
  8300. },
  8301. [
  8302. {
  8303. name: "Micro",
  8304. height: math.unit(1, "inches"),
  8305. default: true
  8306. },
  8307. {
  8308. name: "Normal",
  8309. height: math.unit(5 + 2 / 12, "feet")
  8310. },
  8311. {
  8312. name: "Macro",
  8313. height: math.unit(100, "meters")
  8314. },
  8315. {
  8316. name: "Megamacro",
  8317. height: math.unit(80, "miles")
  8318. },
  8319. ]
  8320. ))
  8321. characterMakers.push(() => makeCharacter(
  8322. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8323. {
  8324. front: {
  8325. height: math.unit(7 + 8 / 12, "feet"),
  8326. weight: math.unit(250, "lbs"),
  8327. name: "Front",
  8328. image: {
  8329. source: "./media/characters/yevis/front.svg",
  8330. extra: 1938 / 1755
  8331. }
  8332. }
  8333. },
  8334. [
  8335. {
  8336. name: "Mortal",
  8337. height: math.unit(7 + 8 / 12, "feet")
  8338. },
  8339. {
  8340. name: "Battle",
  8341. height: math.unit(25 + 11 / 12, "feet")
  8342. },
  8343. {
  8344. name: "Wrath",
  8345. height: math.unit(1654 + 11 / 12, "feet")
  8346. },
  8347. {
  8348. name: "Planet Destroyer",
  8349. height: math.unit(12000, "miles")
  8350. },
  8351. {
  8352. name: "Galaxy Conqueror",
  8353. height: math.unit(1.45, "zettameters"),
  8354. default: true
  8355. },
  8356. {
  8357. name: "Universal War",
  8358. height: math.unit(184, "gigaparsecs")
  8359. },
  8360. {
  8361. name: "Eternity War",
  8362. height: math.unit(1.98e55, "yottaparsecs")
  8363. },
  8364. ]
  8365. ))
  8366. characterMakers.push(() => makeCharacter(
  8367. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8368. {
  8369. front: {
  8370. height: math.unit(5 + 8 / 12, "feet"),
  8371. weight: math.unit(63, "kg"),
  8372. name: "Front",
  8373. image: {
  8374. source: "./media/characters/xavier/front.svg",
  8375. extra: 944 / 883
  8376. }
  8377. },
  8378. frontStretch: {
  8379. height: math.unit(5 + 8 / 12, "feet"),
  8380. weight: math.unit(63, "kg"),
  8381. name: "Stretching",
  8382. image: {
  8383. source: "./media/characters/xavier/front-stretch.svg",
  8384. extra: 962 / 820
  8385. }
  8386. },
  8387. },
  8388. [
  8389. {
  8390. name: "Normal",
  8391. height: math.unit(5 + 8 / 12, "feet")
  8392. },
  8393. {
  8394. name: "Macro",
  8395. height: math.unit(100, "meters"),
  8396. default: true
  8397. },
  8398. {
  8399. name: "McLargeHuge",
  8400. height: math.unit(10, "miles")
  8401. },
  8402. ]
  8403. ))
  8404. characterMakers.push(() => makeCharacter(
  8405. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8406. {
  8407. front: {
  8408. height: math.unit(5 + 5 / 12, "feet"),
  8409. weight: math.unit(150, "lb"),
  8410. name: "Front",
  8411. image: {
  8412. source: "./media/characters/joshii/front.svg",
  8413. extra: 765 / 653,
  8414. bottom: 51 / 816
  8415. }
  8416. },
  8417. foot: {
  8418. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8419. name: "Foot",
  8420. image: {
  8421. source: "./media/characters/joshii/foot.svg"
  8422. }
  8423. },
  8424. },
  8425. [
  8426. {
  8427. name: "Micro",
  8428. height: math.unit(2, "inches"),
  8429. default: true
  8430. },
  8431. {
  8432. name: "Normal",
  8433. height: math.unit(5 + 5 / 12, "feet")
  8434. },
  8435. {
  8436. name: "Macro",
  8437. height: math.unit(785, "feet")
  8438. },
  8439. {
  8440. name: "Megamacro",
  8441. height: math.unit(24.5, "miles")
  8442. },
  8443. ]
  8444. ))
  8445. characterMakers.push(() => makeCharacter(
  8446. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8447. {
  8448. front: {
  8449. height: math.unit(6, "feet"),
  8450. weight: math.unit(150, "lb"),
  8451. name: "Front",
  8452. image: {
  8453. source: "./media/characters/goddess-elizabeth/front.svg",
  8454. extra: 1800 / 1525,
  8455. bottom: 0.005
  8456. }
  8457. },
  8458. foot: {
  8459. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8460. name: "Foot",
  8461. image: {
  8462. source: "./media/characters/goddess-elizabeth/foot.svg"
  8463. }
  8464. },
  8465. mouth: {
  8466. height: math.unit(6, "feet"),
  8467. name: "Mouth",
  8468. image: {
  8469. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8470. }
  8471. },
  8472. },
  8473. [
  8474. {
  8475. name: "Micro",
  8476. height: math.unit(12, "feet")
  8477. },
  8478. {
  8479. name: "Normal",
  8480. height: math.unit(80, "miles"),
  8481. default: true
  8482. },
  8483. {
  8484. name: "Macro",
  8485. height: math.unit(15000, "parsecs")
  8486. },
  8487. ]
  8488. ))
  8489. characterMakers.push(() => makeCharacter(
  8490. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8491. {
  8492. front: {
  8493. height: math.unit(5 + 9 / 12, "feet"),
  8494. weight: math.unit(144, "lb"),
  8495. name: "Front",
  8496. image: {
  8497. source: "./media/characters/kara/front.svg"
  8498. }
  8499. },
  8500. feet: {
  8501. height: math.unit(6 / 6.765, "feet"),
  8502. name: "Kara's Feet",
  8503. rename: true,
  8504. image: {
  8505. source: "./media/characters/kara/feet.svg"
  8506. }
  8507. },
  8508. },
  8509. [
  8510. {
  8511. name: "Normal",
  8512. height: math.unit(5 + 9 / 12, "feet")
  8513. },
  8514. {
  8515. name: "Macro",
  8516. height: math.unit(174, "feet"),
  8517. default: true
  8518. },
  8519. ]
  8520. ))
  8521. characterMakers.push(() => makeCharacter(
  8522. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8523. {
  8524. front: {
  8525. height: math.unit(18, "feet"),
  8526. weight: math.unit(4050, "lb"),
  8527. name: "Front",
  8528. image: {
  8529. source: "./media/characters/tyrone/front.svg",
  8530. extra: 2405 / 2270,
  8531. bottom: 182 / 2587
  8532. }
  8533. },
  8534. },
  8535. [
  8536. {
  8537. name: "Normal",
  8538. height: math.unit(18, "feet"),
  8539. default: true
  8540. },
  8541. {
  8542. name: "Macro",
  8543. height: math.unit(300, "feet")
  8544. },
  8545. {
  8546. name: "Megamacro",
  8547. height: math.unit(15, "km")
  8548. },
  8549. {
  8550. name: "Gigamacro",
  8551. height: math.unit(500, "km")
  8552. },
  8553. {
  8554. name: "Teramacro",
  8555. height: math.unit(0.5, "gigameters")
  8556. },
  8557. {
  8558. name: "Omnimacro",
  8559. height: math.unit(1e252, "yottauniverse")
  8560. },
  8561. ]
  8562. ))
  8563. characterMakers.push(() => makeCharacter(
  8564. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8565. {
  8566. front: {
  8567. height: math.unit(7 + 8 / 12, "feet"),
  8568. weight: math.unit(120, "lb"),
  8569. name: "Front",
  8570. image: {
  8571. source: "./media/characters/danny/front.svg",
  8572. extra: 1490 / 1350
  8573. }
  8574. },
  8575. back: {
  8576. height: math.unit(7 + 8 / 12, "feet"),
  8577. weight: math.unit(120, "lb"),
  8578. name: "Back",
  8579. image: {
  8580. source: "./media/characters/danny/back.svg",
  8581. extra: 1490 / 1350
  8582. }
  8583. },
  8584. },
  8585. [
  8586. {
  8587. name: "Normal",
  8588. height: math.unit(7 + 8 / 12, "feet"),
  8589. default: true
  8590. },
  8591. ]
  8592. ))
  8593. characterMakers.push(() => makeCharacter(
  8594. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8595. {
  8596. front: {
  8597. height: math.unit(3.5, "inches"),
  8598. weight: math.unit(19, "grams"),
  8599. name: "Front",
  8600. image: {
  8601. source: "./media/characters/mallow/front.svg",
  8602. extra: 471 / 431
  8603. }
  8604. },
  8605. back: {
  8606. height: math.unit(3.5, "inches"),
  8607. weight: math.unit(19, "grams"),
  8608. name: "Back",
  8609. image: {
  8610. source: "./media/characters/mallow/back.svg",
  8611. extra: 471 / 431
  8612. }
  8613. },
  8614. },
  8615. [
  8616. {
  8617. name: "Normal",
  8618. height: math.unit(3.5, "inches"),
  8619. default: true
  8620. },
  8621. ]
  8622. ))
  8623. characterMakers.push(() => makeCharacter(
  8624. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8625. {
  8626. front: {
  8627. height: math.unit(9, "feet"),
  8628. weight: math.unit(230, "kg"),
  8629. name: "Front",
  8630. image: {
  8631. source: "./media/characters/starry-aqua/front.svg"
  8632. }
  8633. },
  8634. back: {
  8635. height: math.unit(9, "feet"),
  8636. weight: math.unit(230, "kg"),
  8637. name: "Back",
  8638. image: {
  8639. source: "./media/characters/starry-aqua/back.svg"
  8640. }
  8641. },
  8642. hand: {
  8643. height: math.unit(9 * 0.1168, "feet"),
  8644. name: "Hand",
  8645. image: {
  8646. source: "./media/characters/starry-aqua/hand.svg"
  8647. }
  8648. },
  8649. foot: {
  8650. height: math.unit(9 * 0.18, "feet"),
  8651. name: "Foot",
  8652. image: {
  8653. source: "./media/characters/starry-aqua/foot.svg"
  8654. }
  8655. }
  8656. },
  8657. [
  8658. {
  8659. name: "Micro",
  8660. height: math.unit(3, "inches")
  8661. },
  8662. {
  8663. name: "Normal",
  8664. height: math.unit(9, "feet")
  8665. },
  8666. {
  8667. name: "Macro",
  8668. height: math.unit(300, "feet"),
  8669. default: true
  8670. },
  8671. {
  8672. name: "Megamacro",
  8673. height: math.unit(3200, "feet")
  8674. }
  8675. ]
  8676. ))
  8677. characterMakers.push(() => makeCharacter(
  8678. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8679. {
  8680. front: {
  8681. height: math.unit(6, "feet"),
  8682. weight: math.unit(230, "lb"),
  8683. name: "Front",
  8684. image: {
  8685. source: "./media/characters/luka/front.svg",
  8686. extra: 1,
  8687. bottom: 0.025
  8688. }
  8689. },
  8690. },
  8691. [
  8692. {
  8693. name: "Normal",
  8694. height: math.unit(12 + 8 / 12, "feet"),
  8695. default: true
  8696. },
  8697. {
  8698. name: "Minimacro",
  8699. height: math.unit(20, "feet")
  8700. },
  8701. {
  8702. name: "Macro",
  8703. height: math.unit(250, "feet")
  8704. },
  8705. {
  8706. name: "Megamacro",
  8707. height: math.unit(5, "miles")
  8708. },
  8709. {
  8710. name: "Gigamacro",
  8711. height: math.unit(8000, "miles")
  8712. },
  8713. ]
  8714. ))
  8715. characterMakers.push(() => makeCharacter(
  8716. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8717. {
  8718. front: {
  8719. height: math.unit(6, "feet"),
  8720. weight: math.unit(150, "lb"),
  8721. name: "Front",
  8722. image: {
  8723. source: "./media/characters/natalie-nightring/front.svg",
  8724. extra: 1,
  8725. bottom: 0.06
  8726. }
  8727. },
  8728. },
  8729. [
  8730. {
  8731. name: "Uh Oh",
  8732. height: math.unit(0.1, "mm")
  8733. },
  8734. {
  8735. name: "Small",
  8736. height: math.unit(3, "inches")
  8737. },
  8738. {
  8739. name: "Human Scale",
  8740. height: math.unit(6, "feet")
  8741. },
  8742. {
  8743. name: "Librarian",
  8744. height: math.unit(50, "feet"),
  8745. default: true
  8746. },
  8747. {
  8748. name: "Immense",
  8749. height: math.unit(200, "miles")
  8750. },
  8751. ]
  8752. ))
  8753. characterMakers.push(() => makeCharacter(
  8754. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8755. {
  8756. front: {
  8757. height: math.unit(6, "feet"),
  8758. weight: math.unit(180, "lbs"),
  8759. name: "Front",
  8760. image: {
  8761. source: "./media/characters/danni-rosie/front.svg",
  8762. extra: 1260 / 1128,
  8763. bottom: 0.022
  8764. }
  8765. },
  8766. },
  8767. [
  8768. {
  8769. name: "Micro",
  8770. height: math.unit(2, "inches"),
  8771. default: true
  8772. },
  8773. ]
  8774. ))
  8775. characterMakers.push(() => makeCharacter(
  8776. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8777. {
  8778. front: {
  8779. height: math.unit(5 + 9 / 12, "feet"),
  8780. weight: math.unit(220, "lb"),
  8781. name: "Front",
  8782. image: {
  8783. source: "./media/characters/samantha-kruse/front.svg",
  8784. extra: (985 / 935),
  8785. bottom: 0.03
  8786. }
  8787. },
  8788. frontUndressed: {
  8789. height: math.unit(5 + 9 / 12, "feet"),
  8790. weight: math.unit(220, "lb"),
  8791. name: "Front (Undressed)",
  8792. image: {
  8793. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8794. extra: (973 / 923),
  8795. bottom: 0.025
  8796. }
  8797. },
  8798. fat: {
  8799. height: math.unit(5 + 9 / 12, "feet"),
  8800. weight: math.unit(900, "lb"),
  8801. name: "Front (Fat)",
  8802. image: {
  8803. source: "./media/characters/samantha-kruse/fat.svg",
  8804. extra: 2688 / 2561
  8805. }
  8806. },
  8807. },
  8808. [
  8809. {
  8810. name: "Normal",
  8811. height: math.unit(5 + 9 / 12, "feet"),
  8812. default: true
  8813. }
  8814. ]
  8815. ))
  8816. characterMakers.push(() => makeCharacter(
  8817. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8818. {
  8819. back: {
  8820. height: math.unit(5 + 4 / 12, "feet"),
  8821. weight: math.unit(4963, "lb"),
  8822. name: "Back",
  8823. image: {
  8824. source: "./media/characters/amelia-rosie/back.svg",
  8825. extra: 1113 / 963,
  8826. bottom: 0.01
  8827. }
  8828. },
  8829. },
  8830. [
  8831. {
  8832. name: "Level 0",
  8833. height: math.unit(5 + 4 / 12, "feet")
  8834. },
  8835. {
  8836. name: "Level 1",
  8837. height: math.unit(164597, "feet"),
  8838. default: true
  8839. },
  8840. {
  8841. name: "Level 2",
  8842. height: math.unit(956243, "miles")
  8843. },
  8844. {
  8845. name: "Level 3",
  8846. height: math.unit(29421709423, "miles")
  8847. },
  8848. {
  8849. name: "Level 4",
  8850. height: math.unit(154, "lightyears")
  8851. },
  8852. {
  8853. name: "Level 5",
  8854. height: math.unit(4738272, "lightyears")
  8855. },
  8856. {
  8857. name: "Level 6",
  8858. height: math.unit(145787152896, "lightyears")
  8859. },
  8860. ]
  8861. ))
  8862. characterMakers.push(() => makeCharacter(
  8863. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8864. {
  8865. front: {
  8866. height: math.unit(5 + 11 / 12, "feet"),
  8867. weight: math.unit(65, "kg"),
  8868. name: "Front",
  8869. image: {
  8870. source: "./media/characters/rook-kitara/front.svg",
  8871. extra: 1347 / 1274,
  8872. bottom: 0.005
  8873. }
  8874. },
  8875. },
  8876. [
  8877. {
  8878. name: "Totally Unfair",
  8879. height: math.unit(1.8, "mm")
  8880. },
  8881. {
  8882. name: "Lap Rookie",
  8883. height: math.unit(1.4, "feet")
  8884. },
  8885. {
  8886. name: "Normal",
  8887. height: math.unit(5 + 11 / 12, "feet"),
  8888. default: true
  8889. },
  8890. {
  8891. name: "How Did This Happen",
  8892. height: math.unit(80, "miles")
  8893. }
  8894. ]
  8895. ))
  8896. characterMakers.push(() => makeCharacter(
  8897. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8898. {
  8899. front: {
  8900. height: math.unit(7, "feet"),
  8901. weight: math.unit(300, "lb"),
  8902. name: "Front",
  8903. image: {
  8904. source: "./media/characters/pisces/front.svg",
  8905. extra: 2255 / 2115,
  8906. bottom: 0.03
  8907. }
  8908. },
  8909. back: {
  8910. height: math.unit(7, "feet"),
  8911. weight: math.unit(300, "lb"),
  8912. name: "Back",
  8913. image: {
  8914. source: "./media/characters/pisces/back.svg",
  8915. extra: 2146 / 2055,
  8916. bottom: 0.04
  8917. }
  8918. },
  8919. },
  8920. [
  8921. {
  8922. name: "Normal",
  8923. height: math.unit(7, "feet"),
  8924. default: true
  8925. },
  8926. {
  8927. name: "Swimming Pool",
  8928. height: math.unit(12.2, "meters")
  8929. },
  8930. {
  8931. name: "Olympic Swimming Pool",
  8932. height: math.unit(56.3, "meters")
  8933. },
  8934. {
  8935. name: "Lake Superior",
  8936. height: math.unit(93900, "meters")
  8937. },
  8938. {
  8939. name: "Mediterranean Sea",
  8940. height: math.unit(644457, "meters")
  8941. },
  8942. {
  8943. name: "World's Oceans",
  8944. height: math.unit(4567491, "meters")
  8945. },
  8946. ]
  8947. ))
  8948. characterMakers.push(() => makeCharacter(
  8949. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8950. {
  8951. front: {
  8952. height: math.unit(2.3, "meters"),
  8953. weight: math.unit(120, "kg"),
  8954. name: "Front",
  8955. image: {
  8956. source: "./media/characters/zelas/front.svg"
  8957. }
  8958. },
  8959. side: {
  8960. height: math.unit(2.3, "meters"),
  8961. weight: math.unit(120, "kg"),
  8962. name: "Side",
  8963. image: {
  8964. source: "./media/characters/zelas/side.svg"
  8965. }
  8966. },
  8967. back: {
  8968. height: math.unit(2.3, "meters"),
  8969. weight: math.unit(120, "kg"),
  8970. name: "Back",
  8971. image: {
  8972. source: "./media/characters/zelas/back.svg"
  8973. }
  8974. },
  8975. foot: {
  8976. height: math.unit(1.116, "feet"),
  8977. name: "Foot",
  8978. image: {
  8979. source: "./media/characters/zelas/foot.svg"
  8980. }
  8981. },
  8982. },
  8983. [
  8984. {
  8985. name: "Normal",
  8986. height: math.unit(2.3, "meters")
  8987. },
  8988. {
  8989. name: "Macro",
  8990. height: math.unit(30, "meters"),
  8991. default: true
  8992. },
  8993. ]
  8994. ))
  8995. characterMakers.push(() => makeCharacter(
  8996. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8997. {
  8998. front: {
  8999. height: math.unit(1, "inch"),
  9000. weight: math.unit(0.21, "grams"),
  9001. name: "Front",
  9002. image: {
  9003. source: "./media/characters/talbot/front.svg",
  9004. extra: 594 / 544
  9005. }
  9006. },
  9007. },
  9008. [
  9009. {
  9010. name: "Micro",
  9011. height: math.unit(1, "inch"),
  9012. default: true
  9013. },
  9014. ]
  9015. ))
  9016. characterMakers.push(() => makeCharacter(
  9017. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9018. {
  9019. front: {
  9020. height: math.unit(3 + 3 / 12, "feet"),
  9021. weight: math.unit(51.8, "lb"),
  9022. name: "Front",
  9023. image: {
  9024. source: "./media/characters/fliss/front.svg",
  9025. extra: 840 / 640
  9026. }
  9027. },
  9028. },
  9029. [
  9030. {
  9031. name: "Teeny Tiny",
  9032. height: math.unit(1, "mm")
  9033. },
  9034. {
  9035. name: "Small",
  9036. height: math.unit(1, "inch"),
  9037. default: true
  9038. },
  9039. {
  9040. name: "Standard Sylveon",
  9041. height: math.unit(3 + 3 / 12, "feet")
  9042. },
  9043. {
  9044. name: "Large Nuisance",
  9045. height: math.unit(33, "feet")
  9046. },
  9047. {
  9048. name: "City Filler",
  9049. height: math.unit(3000, "feet")
  9050. },
  9051. {
  9052. name: "New Horizon",
  9053. height: math.unit(6000, "miles")
  9054. },
  9055. ]
  9056. ))
  9057. characterMakers.push(() => makeCharacter(
  9058. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9059. {
  9060. front: {
  9061. height: math.unit(5, "cm"),
  9062. weight: math.unit(1.94, "g"),
  9063. name: "Front",
  9064. image: {
  9065. source: "./media/characters/fleta/front.svg",
  9066. extra: 835 / 803
  9067. }
  9068. },
  9069. back: {
  9070. height: math.unit(5, "cm"),
  9071. weight: math.unit(1.94, "g"),
  9072. name: "Back",
  9073. image: {
  9074. source: "./media/characters/fleta/back.svg",
  9075. extra: 835 / 803
  9076. }
  9077. },
  9078. },
  9079. [
  9080. {
  9081. name: "Micro",
  9082. height: math.unit(5, "cm"),
  9083. default: true
  9084. },
  9085. ]
  9086. ))
  9087. characterMakers.push(() => makeCharacter(
  9088. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9089. {
  9090. front: {
  9091. height: math.unit(6, "feet"),
  9092. weight: math.unit(225, "lb"),
  9093. name: "Front",
  9094. image: {
  9095. source: "./media/characters/dominic/front.svg",
  9096. extra: 1770 / 1620,
  9097. bottom: 0.025
  9098. }
  9099. },
  9100. back: {
  9101. height: math.unit(6, "feet"),
  9102. weight: math.unit(225, "lb"),
  9103. name: "Back",
  9104. image: {
  9105. source: "./media/characters/dominic/back.svg",
  9106. extra: 1745 / 1620,
  9107. bottom: 0.065
  9108. }
  9109. },
  9110. },
  9111. [
  9112. {
  9113. name: "Nano",
  9114. height: math.unit(0.1, "mm")
  9115. },
  9116. {
  9117. name: "Micro-",
  9118. height: math.unit(1, "mm")
  9119. },
  9120. {
  9121. name: "Micro",
  9122. height: math.unit(4, "inches")
  9123. },
  9124. {
  9125. name: "Normal",
  9126. height: math.unit(6 + 4 / 12, "feet"),
  9127. default: true
  9128. },
  9129. {
  9130. name: "Macro",
  9131. height: math.unit(115, "feet")
  9132. },
  9133. {
  9134. name: "Macro+",
  9135. height: math.unit(955, "feet")
  9136. },
  9137. {
  9138. name: "Megamacro",
  9139. height: math.unit(8990, "feet")
  9140. },
  9141. {
  9142. name: "Gigmacro",
  9143. height: math.unit(9310, "miles")
  9144. },
  9145. {
  9146. name: "Teramacro",
  9147. height: math.unit(1567005010, "miles")
  9148. },
  9149. {
  9150. name: "Examacro",
  9151. height: math.unit(1425, "parsecs")
  9152. },
  9153. ]
  9154. ))
  9155. characterMakers.push(() => makeCharacter(
  9156. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9157. {
  9158. front: {
  9159. height: math.unit(400, "feet"),
  9160. weight: math.unit(44444444, "lb"),
  9161. name: "Front",
  9162. image: {
  9163. source: "./media/characters/major-colonel/front.svg"
  9164. }
  9165. },
  9166. back: {
  9167. height: math.unit(400, "feet"),
  9168. weight: math.unit(44444444, "lb"),
  9169. name: "Back",
  9170. image: {
  9171. source: "./media/characters/major-colonel/back.svg"
  9172. }
  9173. },
  9174. },
  9175. [
  9176. {
  9177. name: "Macro",
  9178. height: math.unit(400, "feet"),
  9179. default: true
  9180. },
  9181. ]
  9182. ))
  9183. characterMakers.push(() => makeCharacter(
  9184. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9185. {
  9186. catFront: {
  9187. height: math.unit(6, "feet"),
  9188. weight: math.unit(120, "lb"),
  9189. name: "Front (Cat Side)",
  9190. image: {
  9191. source: "./media/characters/axel-lycan/cat-front.svg",
  9192. extra: 430 / 402,
  9193. bottom: 43 / 472.35
  9194. }
  9195. },
  9196. catBack: {
  9197. height: math.unit(6, "feet"),
  9198. weight: math.unit(120, "lb"),
  9199. name: "Back (Cat Side)",
  9200. image: {
  9201. source: "./media/characters/axel-lycan/cat-back.svg",
  9202. extra: 447 / 419,
  9203. bottom: 23.3 / 469
  9204. }
  9205. },
  9206. wolfFront: {
  9207. height: math.unit(6, "feet"),
  9208. weight: math.unit(120, "lb"),
  9209. name: "Front (Wolf Side)",
  9210. image: {
  9211. source: "./media/characters/axel-lycan/wolf-front.svg",
  9212. extra: 485 / 456,
  9213. bottom: 19 / 504
  9214. }
  9215. },
  9216. wolfBack: {
  9217. height: math.unit(6, "feet"),
  9218. weight: math.unit(120, "lb"),
  9219. name: "Back (Wolf Side)",
  9220. image: {
  9221. source: "./media/characters/axel-lycan/wolf-back.svg",
  9222. extra: 475 / 438,
  9223. bottom: 39.2 / 514
  9224. }
  9225. },
  9226. },
  9227. [
  9228. {
  9229. name: "Macro",
  9230. height: math.unit(1, "km"),
  9231. default: true
  9232. },
  9233. ]
  9234. ))
  9235. characterMakers.push(() => makeCharacter(
  9236. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9237. {
  9238. front: {
  9239. height: math.unit(5 + 9 / 12, "feet"),
  9240. weight: math.unit(175, "lb"),
  9241. name: "Front",
  9242. image: {
  9243. source: "./media/characters/vanrel-hyena/front.svg",
  9244. extra: 1086 / 1010,
  9245. bottom: 0.04
  9246. }
  9247. },
  9248. },
  9249. [
  9250. {
  9251. name: "Normal",
  9252. height: math.unit(5 + 9 / 12, "feet"),
  9253. default: true
  9254. },
  9255. ]
  9256. ))
  9257. characterMakers.push(() => makeCharacter(
  9258. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9259. {
  9260. front: {
  9261. height: math.unit(6, "feet"),
  9262. weight: math.unit(103, "lb"),
  9263. name: "Front",
  9264. image: {
  9265. source: "./media/characters/abbott-absol/front.svg",
  9266. extra: 2010 / 1842
  9267. }
  9268. },
  9269. },
  9270. [
  9271. {
  9272. name: "Megamicro",
  9273. height: math.unit(0.1, "mm")
  9274. },
  9275. {
  9276. name: "Micro",
  9277. height: math.unit(1, "inch")
  9278. },
  9279. {
  9280. name: "Normal",
  9281. height: math.unit(6, "feet"),
  9282. default: true
  9283. },
  9284. ]
  9285. ))
  9286. characterMakers.push(() => makeCharacter(
  9287. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9288. {
  9289. front: {
  9290. height: math.unit(6, "feet"),
  9291. weight: math.unit(264, "lb"),
  9292. name: "Front",
  9293. image: {
  9294. source: "./media/characters/hector/front.svg",
  9295. extra: 2280 / 2130,
  9296. bottom: 0.07
  9297. }
  9298. },
  9299. },
  9300. [
  9301. {
  9302. name: "Normal",
  9303. height: math.unit(12.25, "foot"),
  9304. default: true
  9305. },
  9306. {
  9307. name: "Macro",
  9308. height: math.unit(160, "feet")
  9309. },
  9310. ]
  9311. ))
  9312. characterMakers.push(() => makeCharacter(
  9313. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9314. {
  9315. front: {
  9316. height: math.unit(6, "feet"),
  9317. weight: math.unit(150, "lb"),
  9318. name: "Front",
  9319. image: {
  9320. source: "./media/characters/sal/front.svg",
  9321. extra: 1846 / 1699,
  9322. bottom: 0.04
  9323. }
  9324. },
  9325. },
  9326. [
  9327. {
  9328. name: "Megamacro",
  9329. height: math.unit(10, "miles"),
  9330. default: true
  9331. },
  9332. ]
  9333. ))
  9334. characterMakers.push(() => makeCharacter(
  9335. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9336. {
  9337. front: {
  9338. height: math.unit(3, "meters"),
  9339. weight: math.unit(450, "kg"),
  9340. name: "front",
  9341. image: {
  9342. source: "./media/characters/ranger/front.svg",
  9343. extra: 2401 / 2243,
  9344. bottom: 0.05
  9345. }
  9346. },
  9347. },
  9348. [
  9349. {
  9350. name: "Normal",
  9351. height: math.unit(3, "meters"),
  9352. default: true
  9353. },
  9354. ]
  9355. ))
  9356. characterMakers.push(() => makeCharacter(
  9357. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9358. {
  9359. front: {
  9360. height: math.unit(14, "feet"),
  9361. weight: math.unit(800, "kg"),
  9362. name: "Front",
  9363. image: {
  9364. source: "./media/characters/theresa/front.svg",
  9365. extra: 3575 / 3346,
  9366. bottom: 0.03
  9367. }
  9368. },
  9369. },
  9370. [
  9371. {
  9372. name: "Normal",
  9373. height: math.unit(14, "feet"),
  9374. default: true
  9375. },
  9376. ]
  9377. ))
  9378. characterMakers.push(() => makeCharacter(
  9379. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9380. {
  9381. front: {
  9382. height: math.unit(6, "feet"),
  9383. weight: math.unit(3, "kg"),
  9384. name: "Front",
  9385. image: {
  9386. source: "./media/characters/ine/front.svg",
  9387. extra: 678 / 539,
  9388. bottom: 0.023
  9389. }
  9390. },
  9391. },
  9392. [
  9393. {
  9394. name: "Normal",
  9395. height: math.unit(2.265, "feet"),
  9396. default: true
  9397. },
  9398. ]
  9399. ))
  9400. characterMakers.push(() => makeCharacter(
  9401. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9402. {
  9403. front: {
  9404. height: math.unit(5, "feet"),
  9405. weight: math.unit(30, "kg"),
  9406. name: "Front",
  9407. image: {
  9408. source: "./media/characters/vial/front.svg",
  9409. extra: 1365 / 1277,
  9410. bottom: 0.04
  9411. }
  9412. },
  9413. },
  9414. [
  9415. {
  9416. name: "Normal",
  9417. height: math.unit(5, "feet"),
  9418. default: true
  9419. },
  9420. ]
  9421. ))
  9422. characterMakers.push(() => makeCharacter(
  9423. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9424. {
  9425. side: {
  9426. height: math.unit(3.4, "meters"),
  9427. weight: math.unit(1000, "lb"),
  9428. name: "Side",
  9429. image: {
  9430. source: "./media/characters/rovoska/side.svg",
  9431. extra: 4403 / 1515
  9432. }
  9433. },
  9434. },
  9435. [
  9436. {
  9437. name: "Normal",
  9438. height: math.unit(3.4, "meters"),
  9439. default: true
  9440. },
  9441. ]
  9442. ))
  9443. characterMakers.push(() => makeCharacter(
  9444. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9445. {
  9446. front: {
  9447. height: math.unit(8, "feet"),
  9448. weight: math.unit(315, "lb"),
  9449. name: "Front",
  9450. image: {
  9451. source: "./media/characters/gunner-rotthbauer/front.svg"
  9452. }
  9453. },
  9454. back: {
  9455. height: math.unit(8, "feet"),
  9456. weight: math.unit(315, "lb"),
  9457. name: "Back",
  9458. image: {
  9459. source: "./media/characters/gunner-rotthbauer/back.svg"
  9460. }
  9461. },
  9462. },
  9463. [
  9464. {
  9465. name: "Micro",
  9466. height: math.unit(3.5, "inches")
  9467. },
  9468. {
  9469. name: "Normal",
  9470. height: math.unit(8, "feet"),
  9471. default: true
  9472. },
  9473. {
  9474. name: "Macro",
  9475. height: math.unit(250, "feet")
  9476. },
  9477. {
  9478. name: "Megamacro",
  9479. height: math.unit(1, "AU")
  9480. },
  9481. ]
  9482. ))
  9483. characterMakers.push(() => makeCharacter(
  9484. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9485. {
  9486. front: {
  9487. height: math.unit(5 + 5 / 12, "feet"),
  9488. weight: math.unit(140, "lb"),
  9489. name: "Front",
  9490. image: {
  9491. source: "./media/characters/allatia/front.svg",
  9492. extra: 1227 / 1180,
  9493. bottom: 0.027
  9494. }
  9495. },
  9496. },
  9497. [
  9498. {
  9499. name: "Normal",
  9500. height: math.unit(5 + 5 / 12, "feet")
  9501. },
  9502. {
  9503. name: "Macro",
  9504. height: math.unit(250, "feet"),
  9505. default: true
  9506. },
  9507. {
  9508. name: "Megamacro",
  9509. height: math.unit(8, "miles")
  9510. }
  9511. ]
  9512. ))
  9513. characterMakers.push(() => makeCharacter(
  9514. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9515. {
  9516. front: {
  9517. height: math.unit(6, "feet"),
  9518. weight: math.unit(120, "lb"),
  9519. name: "Front",
  9520. image: {
  9521. source: "./media/characters/tene/front.svg",
  9522. extra: 1728 / 1578,
  9523. bottom: 0.022
  9524. }
  9525. },
  9526. stomping: {
  9527. height: math.unit(2.025, "meters"),
  9528. weight: math.unit(120, "lb"),
  9529. name: "Stomping",
  9530. image: {
  9531. source: "./media/characters/tene/stomping.svg",
  9532. extra: 938 / 873,
  9533. bottom: 0.01
  9534. }
  9535. },
  9536. sitting: {
  9537. height: math.unit(1, "meter"),
  9538. weight: math.unit(120, "lb"),
  9539. name: "Sitting",
  9540. image: {
  9541. source: "./media/characters/tene/sitting.svg",
  9542. extra: 437 / 415,
  9543. bottom: 0.1
  9544. }
  9545. },
  9546. feral: {
  9547. height: math.unit(3.9, "feet"),
  9548. weight: math.unit(250, "lb"),
  9549. name: "Feral",
  9550. image: {
  9551. source: "./media/characters/tene/feral.svg",
  9552. extra: 717 / 458,
  9553. bottom: 0.179
  9554. }
  9555. },
  9556. },
  9557. [
  9558. {
  9559. name: "Normal",
  9560. height: math.unit(6, "feet")
  9561. },
  9562. {
  9563. name: "Macro",
  9564. height: math.unit(300, "feet"),
  9565. default: true
  9566. },
  9567. {
  9568. name: "Megamacro",
  9569. height: math.unit(5, "miles")
  9570. },
  9571. ]
  9572. ))
  9573. characterMakers.push(() => makeCharacter(
  9574. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9575. {
  9576. side: {
  9577. height: math.unit(6, "feet"),
  9578. name: "Side",
  9579. image: {
  9580. source: "./media/characters/evander/side.svg",
  9581. extra: 877 / 477
  9582. }
  9583. },
  9584. },
  9585. [
  9586. {
  9587. name: "Normal",
  9588. height: math.unit(0.83, "meters"),
  9589. default: true
  9590. },
  9591. ]
  9592. ))
  9593. characterMakers.push(() => makeCharacter(
  9594. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9595. {
  9596. front: {
  9597. height: math.unit(12, "feet"),
  9598. weight: math.unit(1000, "lb"),
  9599. name: "Front",
  9600. image: {
  9601. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9602. extra: 1762 / 1611
  9603. }
  9604. },
  9605. back: {
  9606. height: math.unit(12, "feet"),
  9607. weight: math.unit(1000, "lb"),
  9608. name: "Back",
  9609. image: {
  9610. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9611. extra: 1762 / 1611
  9612. }
  9613. },
  9614. },
  9615. [
  9616. {
  9617. name: "Normal",
  9618. height: math.unit(12, "feet"),
  9619. default: true
  9620. },
  9621. {
  9622. name: "Kaiju",
  9623. height: math.unit(150, "feet")
  9624. },
  9625. ]
  9626. ))
  9627. characterMakers.push(() => makeCharacter(
  9628. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9629. {
  9630. front: {
  9631. height: math.unit(6, "feet"),
  9632. weight: math.unit(150, "lb"),
  9633. name: "Front",
  9634. image: {
  9635. source: "./media/characters/zero-alurus/front.svg"
  9636. }
  9637. },
  9638. back: {
  9639. height: math.unit(6, "feet"),
  9640. weight: math.unit(150, "lb"),
  9641. name: "Back",
  9642. image: {
  9643. source: "./media/characters/zero-alurus/back.svg"
  9644. }
  9645. },
  9646. },
  9647. [
  9648. {
  9649. name: "Normal",
  9650. height: math.unit(5 + 10 / 12, "feet")
  9651. },
  9652. {
  9653. name: "Macro",
  9654. height: math.unit(60, "feet"),
  9655. default: true
  9656. },
  9657. {
  9658. name: "Macro+",
  9659. height: math.unit(450, "feet")
  9660. },
  9661. ]
  9662. ))
  9663. characterMakers.push(() => makeCharacter(
  9664. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9665. {
  9666. front: {
  9667. height: math.unit(6, "feet"),
  9668. weight: math.unit(200, "lb"),
  9669. name: "Front",
  9670. image: {
  9671. source: "./media/characters/mega-shi/front.svg",
  9672. extra: 1279 / 1250,
  9673. bottom: 0.02
  9674. }
  9675. },
  9676. back: {
  9677. height: math.unit(6, "feet"),
  9678. weight: math.unit(200, "lb"),
  9679. name: "Back",
  9680. image: {
  9681. source: "./media/characters/mega-shi/back.svg",
  9682. extra: 1279 / 1250,
  9683. bottom: 0.02
  9684. }
  9685. },
  9686. },
  9687. [
  9688. {
  9689. name: "Micro",
  9690. height: math.unit(16 + 6 / 12, "feet")
  9691. },
  9692. {
  9693. name: "Third Dimension",
  9694. height: math.unit(40, "meters")
  9695. },
  9696. {
  9697. name: "Normal",
  9698. height: math.unit(660, "feet"),
  9699. default: true
  9700. },
  9701. {
  9702. name: "Megamacro",
  9703. height: math.unit(10, "miles")
  9704. },
  9705. {
  9706. name: "Planetary Launch",
  9707. height: math.unit(500, "miles")
  9708. },
  9709. {
  9710. name: "Interstellar",
  9711. height: math.unit(1e9, "miles")
  9712. },
  9713. {
  9714. name: "Leaving the Universe",
  9715. height: math.unit(1, "gigaparsec")
  9716. },
  9717. {
  9718. name: "Travelling Universes",
  9719. height: math.unit(30e15, "parsecs")
  9720. },
  9721. ]
  9722. ))
  9723. characterMakers.push(() => makeCharacter(
  9724. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9725. {
  9726. front: {
  9727. height: math.unit(6, "feet"),
  9728. weight: math.unit(150, "lb"),
  9729. name: "Front",
  9730. image: {
  9731. source: "./media/characters/odyssey/front.svg",
  9732. extra: 1782 / 1582,
  9733. bottom: 0.01
  9734. }
  9735. },
  9736. side: {
  9737. height: math.unit(5.7, "feet"),
  9738. weight: math.unit(140, "lb"),
  9739. name: "Side",
  9740. image: {
  9741. source: "./media/characters/odyssey/side.svg",
  9742. extra: 6462 / 5700
  9743. }
  9744. },
  9745. },
  9746. [
  9747. {
  9748. name: "Normal",
  9749. height: math.unit(5 + 4 / 12, "feet")
  9750. },
  9751. {
  9752. name: "Macro",
  9753. height: math.unit(1, "km")
  9754. },
  9755. {
  9756. name: "Megamacro",
  9757. height: math.unit(3000, "km")
  9758. },
  9759. {
  9760. name: "Gigamacro",
  9761. height: math.unit(1, "AU"),
  9762. default: true
  9763. },
  9764. {
  9765. name: "Omniversal",
  9766. height: math.unit(100e14, "lightyears")
  9767. },
  9768. ]
  9769. ))
  9770. characterMakers.push(() => makeCharacter(
  9771. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9772. {
  9773. front: {
  9774. height: math.unit(6, "feet"),
  9775. weight: math.unit(300, "lb"),
  9776. name: "Front",
  9777. image: {
  9778. source: "./media/characters/mekuto/front.svg",
  9779. extra: 921 / 832,
  9780. bottom: 0.03
  9781. }
  9782. },
  9783. hand: {
  9784. height: math.unit(6 / 10.24, "feet"),
  9785. name: "Hand",
  9786. image: {
  9787. source: "./media/characters/mekuto/hand.svg"
  9788. }
  9789. },
  9790. foot: {
  9791. height: math.unit(6 / 5.05, "feet"),
  9792. name: "Foot",
  9793. image: {
  9794. source: "./media/characters/mekuto/foot.svg"
  9795. }
  9796. },
  9797. },
  9798. [
  9799. {
  9800. name: "Minimicro",
  9801. height: math.unit(0.2, "inches")
  9802. },
  9803. {
  9804. name: "Micro",
  9805. height: math.unit(1.5, "inches")
  9806. },
  9807. {
  9808. name: "Normal",
  9809. height: math.unit(5 + 11 / 12, "feet"),
  9810. default: true
  9811. },
  9812. {
  9813. name: "Minimacro",
  9814. height: math.unit(17 + 9 / 12, "feet")
  9815. },
  9816. {
  9817. name: "Macro",
  9818. height: math.unit(177.5, "feet")
  9819. },
  9820. {
  9821. name: "Megamacro",
  9822. height: math.unit(152, "miles")
  9823. },
  9824. ]
  9825. ))
  9826. characterMakers.push(() => makeCharacter(
  9827. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9828. {
  9829. front: {
  9830. height: math.unit(6.5, "inches"),
  9831. weight: math.unit(13, "oz"),
  9832. name: "Front",
  9833. image: {
  9834. source: "./media/characters/dafydd-tomos/front.svg",
  9835. extra: 2990 / 2603,
  9836. bottom: 0.03
  9837. }
  9838. },
  9839. },
  9840. [
  9841. {
  9842. name: "Micro",
  9843. height: math.unit(6.5, "inches"),
  9844. default: true
  9845. },
  9846. ]
  9847. ))
  9848. characterMakers.push(() => makeCharacter(
  9849. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9850. {
  9851. front: {
  9852. height: math.unit(6, "feet"),
  9853. weight: math.unit(150, "lb"),
  9854. name: "Front",
  9855. image: {
  9856. source: "./media/characters/splinter/front.svg",
  9857. extra: 2990 / 2882,
  9858. bottom: 0.04
  9859. }
  9860. },
  9861. back: {
  9862. height: math.unit(6, "feet"),
  9863. weight: math.unit(150, "lb"),
  9864. name: "Back",
  9865. image: {
  9866. source: "./media/characters/splinter/back.svg",
  9867. extra: 2990 / 2882,
  9868. bottom: 0.04
  9869. }
  9870. },
  9871. },
  9872. [
  9873. {
  9874. name: "Normal",
  9875. height: math.unit(6, "feet")
  9876. },
  9877. {
  9878. name: "Macro",
  9879. height: math.unit(230, "meters"),
  9880. default: true
  9881. },
  9882. ]
  9883. ))
  9884. characterMakers.push(() => makeCharacter(
  9885. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9886. {
  9887. front: {
  9888. height: math.unit(4 + 10 / 12, "feet"),
  9889. weight: math.unit(480, "lb"),
  9890. name: "Front",
  9891. image: {
  9892. source: "./media/characters/snow-gabumon/front.svg",
  9893. extra: 1140 / 963,
  9894. bottom: 0.058
  9895. }
  9896. },
  9897. back: {
  9898. height: math.unit(4 + 10 / 12, "feet"),
  9899. weight: math.unit(480, "lb"),
  9900. name: "Back",
  9901. image: {
  9902. source: "./media/characters/snow-gabumon/back.svg",
  9903. extra: 1115 / 962,
  9904. bottom: 0.041
  9905. }
  9906. },
  9907. frontUndresed: {
  9908. height: math.unit(4 + 10 / 12, "feet"),
  9909. weight: math.unit(480, "lb"),
  9910. name: "Front (Undressed)",
  9911. image: {
  9912. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9913. extra: 1061 / 960,
  9914. bottom: 0.045
  9915. }
  9916. },
  9917. },
  9918. [
  9919. {
  9920. name: "Micro",
  9921. height: math.unit(1, "inch")
  9922. },
  9923. {
  9924. name: "Normal",
  9925. height: math.unit(4 + 10 / 12, "feet"),
  9926. default: true
  9927. },
  9928. {
  9929. name: "Macro",
  9930. height: math.unit(200, "feet")
  9931. },
  9932. {
  9933. name: "Megamacro",
  9934. height: math.unit(120, "miles")
  9935. },
  9936. {
  9937. name: "Gigamacro",
  9938. height: math.unit(9800, "miles")
  9939. },
  9940. ]
  9941. ))
  9942. characterMakers.push(() => makeCharacter(
  9943. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9944. {
  9945. front: {
  9946. height: math.unit(1.7, "meters"),
  9947. weight: math.unit(140, "lb"),
  9948. name: "Front",
  9949. image: {
  9950. source: "./media/characters/moody/front.svg",
  9951. extra: 3226 / 3007,
  9952. bottom: 0.087
  9953. }
  9954. },
  9955. },
  9956. [
  9957. {
  9958. name: "Micro",
  9959. height: math.unit(1, "mm")
  9960. },
  9961. {
  9962. name: "Normal",
  9963. height: math.unit(1.7, "meters"),
  9964. default: true
  9965. },
  9966. {
  9967. name: "Macro",
  9968. height: math.unit(80, "meters")
  9969. },
  9970. {
  9971. name: "Macro+",
  9972. height: math.unit(500, "meters")
  9973. },
  9974. ]
  9975. ))
  9976. characterMakers.push(() => makeCharacter(
  9977. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9978. {
  9979. front: {
  9980. height: math.unit(6, "feet"),
  9981. weight: math.unit(150, "lb"),
  9982. name: "Front",
  9983. image: {
  9984. source: "./media/characters/zyas/front.svg",
  9985. extra: 1180 / 1120,
  9986. bottom: 0.045
  9987. }
  9988. },
  9989. },
  9990. [
  9991. {
  9992. name: "Normal",
  9993. height: math.unit(10, "feet"),
  9994. default: true
  9995. },
  9996. {
  9997. name: "Macro",
  9998. height: math.unit(500, "feet")
  9999. },
  10000. {
  10001. name: "Megamacro",
  10002. height: math.unit(5, "miles")
  10003. },
  10004. {
  10005. name: "Teramacro",
  10006. height: math.unit(150000, "miles")
  10007. },
  10008. ]
  10009. ))
  10010. characterMakers.push(() => makeCharacter(
  10011. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10012. {
  10013. front: {
  10014. height: math.unit(6, "feet"),
  10015. weight: math.unit(150, "lb"),
  10016. name: "Front",
  10017. image: {
  10018. source: "./media/characters/cuon/front.svg",
  10019. extra: 1390 / 1320,
  10020. bottom: 0.008
  10021. }
  10022. },
  10023. },
  10024. [
  10025. {
  10026. name: "Micro",
  10027. height: math.unit(3, "inches")
  10028. },
  10029. {
  10030. name: "Normal",
  10031. height: math.unit(18 + 9 / 12, "feet"),
  10032. default: true
  10033. },
  10034. {
  10035. name: "Macro",
  10036. height: math.unit(360, "feet")
  10037. },
  10038. {
  10039. name: "Megamacro",
  10040. height: math.unit(360, "miles")
  10041. },
  10042. ]
  10043. ))
  10044. characterMakers.push(() => makeCharacter(
  10045. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10046. {
  10047. front: {
  10048. height: math.unit(2.4, "meters"),
  10049. weight: math.unit(70, "kg"),
  10050. name: "Front",
  10051. image: {
  10052. source: "./media/characters/nyanuxk/front.svg",
  10053. extra: 1172 / 1084,
  10054. bottom: 0.065
  10055. }
  10056. },
  10057. side: {
  10058. height: math.unit(2.4, "meters"),
  10059. weight: math.unit(70, "kg"),
  10060. name: "Side",
  10061. image: {
  10062. source: "./media/characters/nyanuxk/side.svg",
  10063. extra: 1190 / 1132,
  10064. bottom: 0.007
  10065. }
  10066. },
  10067. back: {
  10068. height: math.unit(2.4, "meters"),
  10069. weight: math.unit(70, "kg"),
  10070. name: "Back",
  10071. image: {
  10072. source: "./media/characters/nyanuxk/back.svg",
  10073. extra: 1200 / 1141,
  10074. bottom: 0.015
  10075. }
  10076. },
  10077. foot: {
  10078. height: math.unit(0.52, "meters"),
  10079. name: "Foot",
  10080. image: {
  10081. source: "./media/characters/nyanuxk/foot.svg"
  10082. }
  10083. },
  10084. },
  10085. [
  10086. {
  10087. name: "Micro",
  10088. height: math.unit(2, "cm")
  10089. },
  10090. {
  10091. name: "Normal",
  10092. height: math.unit(2.4, "meters"),
  10093. default: true
  10094. },
  10095. {
  10096. name: "Smaller Macro",
  10097. height: math.unit(120, "meters")
  10098. },
  10099. {
  10100. name: "Bigger Macro",
  10101. height: math.unit(1.2, "km")
  10102. },
  10103. {
  10104. name: "Megamacro",
  10105. height: math.unit(15, "kilometers")
  10106. },
  10107. {
  10108. name: "Gigamacro",
  10109. height: math.unit(2000, "km")
  10110. },
  10111. {
  10112. name: "Teramacro",
  10113. height: math.unit(500000, "km")
  10114. },
  10115. ]
  10116. ))
  10117. characterMakers.push(() => makeCharacter(
  10118. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10119. {
  10120. side: {
  10121. height: math.unit(6, "feet"),
  10122. name: "Side",
  10123. image: {
  10124. source: "./media/characters/ailbhe/side.svg",
  10125. extra: 757 / 464,
  10126. bottom: 0.041
  10127. }
  10128. },
  10129. },
  10130. [
  10131. {
  10132. name: "Normal",
  10133. height: math.unit(1.07, "meters"),
  10134. default: true
  10135. },
  10136. ]
  10137. ))
  10138. characterMakers.push(() => makeCharacter(
  10139. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10140. {
  10141. front: {
  10142. height: math.unit(6, "feet"),
  10143. weight: math.unit(120, "kg"),
  10144. name: "Front",
  10145. image: {
  10146. source: "./media/characters/zevulfius/front.svg",
  10147. extra: 965 / 903
  10148. }
  10149. },
  10150. side: {
  10151. height: math.unit(6, "feet"),
  10152. weight: math.unit(120, "kg"),
  10153. name: "Side",
  10154. image: {
  10155. source: "./media/characters/zevulfius/side.svg",
  10156. extra: 939 / 900
  10157. }
  10158. },
  10159. back: {
  10160. height: math.unit(6, "feet"),
  10161. weight: math.unit(120, "kg"),
  10162. name: "Back",
  10163. image: {
  10164. source: "./media/characters/zevulfius/back.svg",
  10165. extra: 918 / 854,
  10166. bottom: 0.005
  10167. }
  10168. },
  10169. foot: {
  10170. height: math.unit(6 / 3.72, "feet"),
  10171. name: "Foot",
  10172. image: {
  10173. source: "./media/characters/zevulfius/foot.svg"
  10174. }
  10175. },
  10176. },
  10177. [
  10178. {
  10179. name: "Macro",
  10180. height: math.unit(750, "meters")
  10181. },
  10182. {
  10183. name: "Megamacro",
  10184. height: math.unit(20, "km"),
  10185. default: true
  10186. },
  10187. {
  10188. name: "Gigamacro",
  10189. height: math.unit(2000, "km")
  10190. },
  10191. {
  10192. name: "Teramacro",
  10193. height: math.unit(250000, "km")
  10194. },
  10195. ]
  10196. ))
  10197. characterMakers.push(() => makeCharacter(
  10198. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10199. {
  10200. front: {
  10201. height: math.unit(100, "feet"),
  10202. weight: math.unit(350, "kg"),
  10203. name: "Front",
  10204. image: {
  10205. source: "./media/characters/rikes/front.svg",
  10206. extra: 1565 / 1483,
  10207. bottom: 0.017
  10208. }
  10209. },
  10210. },
  10211. [
  10212. {
  10213. name: "Macro",
  10214. height: math.unit(100, "feet"),
  10215. default: true
  10216. },
  10217. ]
  10218. ))
  10219. characterMakers.push(() => makeCharacter(
  10220. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10221. {
  10222. anthro: {
  10223. height: math.unit(8, "feet"),
  10224. weight: math.unit(120, "kg"),
  10225. name: "Anthro",
  10226. image: {
  10227. source: "./media/characters/adam-silver-mane/anthro.svg",
  10228. extra: 5743 / 5339,
  10229. bottom: 0.07
  10230. }
  10231. },
  10232. taur: {
  10233. height: math.unit(16, "feet"),
  10234. weight: math.unit(1500, "kg"),
  10235. name: "Taur",
  10236. image: {
  10237. source: "./media/characters/adam-silver-mane/taur.svg",
  10238. extra: 1713 / 1571,
  10239. bottom: 0.01
  10240. }
  10241. },
  10242. },
  10243. [
  10244. {
  10245. name: "Normal",
  10246. height: math.unit(8, "feet")
  10247. },
  10248. {
  10249. name: "Minimacro",
  10250. height: math.unit(80, "feet")
  10251. },
  10252. {
  10253. name: "Macro",
  10254. height: math.unit(800, "feet"),
  10255. default: true
  10256. },
  10257. {
  10258. name: "Megamacro",
  10259. height: math.unit(8000, "feet")
  10260. },
  10261. {
  10262. name: "Gigamacro",
  10263. height: math.unit(800, "miles")
  10264. },
  10265. {
  10266. name: "Teramacro",
  10267. height: math.unit(80000, "miles")
  10268. },
  10269. {
  10270. name: "Celestial",
  10271. height: math.unit(8e6, "miles")
  10272. },
  10273. {
  10274. name: "Star Dragon",
  10275. height: math.unit(800000, "parsecs")
  10276. },
  10277. {
  10278. name: "Godly",
  10279. height: math.unit(800, "teraparsecs")
  10280. },
  10281. ]
  10282. ))
  10283. characterMakers.push(() => makeCharacter(
  10284. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10285. {
  10286. front: {
  10287. height: math.unit(6, "feet"),
  10288. weight: math.unit(150, "lb"),
  10289. name: "Front",
  10290. image: {
  10291. source: "./media/characters/ky'owin/front.svg",
  10292. extra: 3888 / 3068,
  10293. bottom: 0.015
  10294. }
  10295. },
  10296. },
  10297. [
  10298. {
  10299. name: "Normal",
  10300. height: math.unit(6 + 8 / 12, "feet")
  10301. },
  10302. {
  10303. name: "Large",
  10304. height: math.unit(68, "feet")
  10305. },
  10306. {
  10307. name: "Macro",
  10308. height: math.unit(132, "feet")
  10309. },
  10310. {
  10311. name: "Macro+",
  10312. height: math.unit(340, "feet")
  10313. },
  10314. {
  10315. name: "Macro++",
  10316. height: math.unit(680, "feet"),
  10317. default: true
  10318. },
  10319. {
  10320. name: "Megamacro",
  10321. height: math.unit(1, "mile")
  10322. },
  10323. {
  10324. name: "Megamacro+",
  10325. height: math.unit(10, "miles")
  10326. },
  10327. ]
  10328. ))
  10329. characterMakers.push(() => makeCharacter(
  10330. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10331. {
  10332. front: {
  10333. height: math.unit(4, "feet"),
  10334. weight: math.unit(50, "lb"),
  10335. name: "Front",
  10336. image: {
  10337. source: "./media/characters/mal/front.svg",
  10338. extra: 785 / 724,
  10339. bottom: 0.07
  10340. }
  10341. },
  10342. },
  10343. [
  10344. {
  10345. name: "Micro",
  10346. height: math.unit(4, "inches")
  10347. },
  10348. {
  10349. name: "Normal",
  10350. height: math.unit(4, "feet"),
  10351. default: true
  10352. },
  10353. {
  10354. name: "Macro",
  10355. height: math.unit(200, "feet")
  10356. },
  10357. ]
  10358. ))
  10359. characterMakers.push(() => makeCharacter(
  10360. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10361. {
  10362. front: {
  10363. height: math.unit(6, "feet"),
  10364. weight: math.unit(150, "lb"),
  10365. name: "Front",
  10366. image: {
  10367. source: "./media/characters/jordan-deware/front.svg",
  10368. extra: 1191 / 1012
  10369. }
  10370. },
  10371. },
  10372. [
  10373. {
  10374. name: "Nano",
  10375. height: math.unit(0.01, "mm")
  10376. },
  10377. {
  10378. name: "Minimicro",
  10379. height: math.unit(1, "mm")
  10380. },
  10381. {
  10382. name: "Micro",
  10383. height: math.unit(0.5, "inches")
  10384. },
  10385. {
  10386. name: "Normal",
  10387. height: math.unit(4, "feet"),
  10388. default: true
  10389. },
  10390. {
  10391. name: "Minimacro",
  10392. height: math.unit(40, "meters")
  10393. },
  10394. {
  10395. name: "Small Macro",
  10396. height: math.unit(400, "meters")
  10397. },
  10398. {
  10399. name: "Macro",
  10400. height: math.unit(4, "miles")
  10401. },
  10402. {
  10403. name: "Megamacro",
  10404. height: math.unit(40, "miles")
  10405. },
  10406. {
  10407. name: "Megamacro+",
  10408. height: math.unit(400, "miles")
  10409. },
  10410. {
  10411. name: "Gigamacro",
  10412. height: math.unit(400000, "miles")
  10413. },
  10414. ]
  10415. ))
  10416. characterMakers.push(() => makeCharacter(
  10417. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10418. {
  10419. side: {
  10420. height: math.unit(6, "feet"),
  10421. weight: math.unit(150, "lb"),
  10422. name: "Side",
  10423. image: {
  10424. source: "./media/characters/kimiko/side.svg",
  10425. extra: 600 / 358
  10426. }
  10427. },
  10428. },
  10429. [
  10430. {
  10431. name: "Normal",
  10432. height: math.unit(15, "feet"),
  10433. default: true
  10434. },
  10435. {
  10436. name: "Macro",
  10437. height: math.unit(220, "feet")
  10438. },
  10439. {
  10440. name: "Macro+",
  10441. height: math.unit(1450, "feet")
  10442. },
  10443. {
  10444. name: "Megamacro",
  10445. height: math.unit(11500, "feet")
  10446. },
  10447. {
  10448. name: "Gigamacro",
  10449. height: math.unit(9500, "miles")
  10450. },
  10451. {
  10452. name: "Teramacro",
  10453. height: math.unit(2208005005, "miles")
  10454. },
  10455. {
  10456. name: "Examacro",
  10457. height: math.unit(2750, "parsecs")
  10458. },
  10459. {
  10460. name: "Zettamacro",
  10461. height: math.unit(101500, "parsecs")
  10462. },
  10463. ]
  10464. ))
  10465. characterMakers.push(() => makeCharacter(
  10466. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10467. {
  10468. front: {
  10469. height: math.unit(6, "feet"),
  10470. weight: math.unit(70, "kg"),
  10471. name: "Front",
  10472. image: {
  10473. source: "./media/characters/andrew-sleepy/front.svg"
  10474. }
  10475. },
  10476. side: {
  10477. height: math.unit(6, "feet"),
  10478. weight: math.unit(70, "kg"),
  10479. name: "Side",
  10480. image: {
  10481. source: "./media/characters/andrew-sleepy/side.svg"
  10482. }
  10483. },
  10484. },
  10485. [
  10486. {
  10487. name: "Micro",
  10488. height: math.unit(1, "mm"),
  10489. default: true
  10490. },
  10491. ]
  10492. ))
  10493. characterMakers.push(() => makeCharacter(
  10494. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10495. {
  10496. front: {
  10497. height: math.unit(6, "feet"),
  10498. weight: math.unit(150, "lb"),
  10499. name: "Front",
  10500. image: {
  10501. source: "./media/characters/judio/front.svg",
  10502. extra: 1258 / 1110
  10503. }
  10504. },
  10505. },
  10506. [
  10507. {
  10508. name: "Normal",
  10509. height: math.unit(5 + 6 / 12, "feet")
  10510. },
  10511. {
  10512. name: "Macro",
  10513. height: math.unit(1000, "feet"),
  10514. default: true
  10515. },
  10516. {
  10517. name: "Megamacro",
  10518. height: math.unit(10, "miles")
  10519. },
  10520. ]
  10521. ))
  10522. characterMakers.push(() => makeCharacter(
  10523. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10524. {
  10525. front: {
  10526. height: math.unit(6, "feet"),
  10527. weight: math.unit(68, "kg"),
  10528. name: "Front",
  10529. image: {
  10530. source: "./media/characters/nomaxice/front.svg",
  10531. extra: 1498 / 1073,
  10532. bottom: 0.075
  10533. }
  10534. },
  10535. foot: {
  10536. height: math.unit(1.1, "feet"),
  10537. name: "Foot",
  10538. image: {
  10539. source: "./media/characters/nomaxice/foot.svg"
  10540. }
  10541. },
  10542. },
  10543. [
  10544. {
  10545. name: "Micro",
  10546. height: math.unit(8, "cm")
  10547. },
  10548. {
  10549. name: "Norm",
  10550. height: math.unit(1.82, "m")
  10551. },
  10552. {
  10553. name: "Norm+",
  10554. height: math.unit(8.8, "feet")
  10555. },
  10556. {
  10557. name: "Big",
  10558. height: math.unit(8, "meters"),
  10559. default: true
  10560. },
  10561. {
  10562. name: "Macro",
  10563. height: math.unit(18, "meters")
  10564. },
  10565. {
  10566. name: "Macro+",
  10567. height: math.unit(88, "meters")
  10568. },
  10569. ]
  10570. ))
  10571. characterMakers.push(() => makeCharacter(
  10572. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10573. {
  10574. front: {
  10575. height: math.unit(12, "feet"),
  10576. weight: math.unit(1.5, "tons"),
  10577. name: "Front",
  10578. image: {
  10579. source: "./media/characters/dydros/front.svg",
  10580. extra: 863 / 800,
  10581. bottom: 0.015
  10582. }
  10583. },
  10584. back: {
  10585. height: math.unit(12, "feet"),
  10586. weight: math.unit(1.5, "tons"),
  10587. name: "Back",
  10588. image: {
  10589. source: "./media/characters/dydros/back.svg",
  10590. extra: 900 / 843,
  10591. bottom: 0.005
  10592. }
  10593. },
  10594. },
  10595. [
  10596. {
  10597. name: "Normal",
  10598. height: math.unit(12, "feet"),
  10599. default: true
  10600. },
  10601. ]
  10602. ))
  10603. characterMakers.push(() => makeCharacter(
  10604. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10605. {
  10606. front: {
  10607. height: math.unit(6, "feet"),
  10608. weight: math.unit(100, "kg"),
  10609. name: "Front",
  10610. image: {
  10611. source: "./media/characters/riggi/front.svg",
  10612. extra: 5787 / 5303
  10613. }
  10614. },
  10615. hyper: {
  10616. height: math.unit(6 * 5 / 3, "feet"),
  10617. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10618. name: "Hyper",
  10619. image: {
  10620. source: "./media/characters/riggi/hyper.svg",
  10621. extra: 3595 / 3485
  10622. }
  10623. },
  10624. },
  10625. [
  10626. {
  10627. name: "Small Macro",
  10628. height: math.unit(50, "feet")
  10629. },
  10630. {
  10631. name: "Default",
  10632. height: math.unit(200, "feet"),
  10633. default: true
  10634. },
  10635. {
  10636. name: "Loom",
  10637. height: math.unit(10000, "feet")
  10638. },
  10639. {
  10640. name: "Cruising Altitude",
  10641. height: math.unit(30000, "feet")
  10642. },
  10643. {
  10644. name: "Megamacro",
  10645. height: math.unit(100, "miles")
  10646. },
  10647. {
  10648. name: "Continent Sized",
  10649. height: math.unit(2800, "miles")
  10650. },
  10651. {
  10652. name: "Earth Sized",
  10653. height: math.unit(8000, "miles")
  10654. },
  10655. ]
  10656. ))
  10657. characterMakers.push(() => makeCharacter(
  10658. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10659. {
  10660. front: {
  10661. height: math.unit(6, "feet"),
  10662. weight: math.unit(250, "lb"),
  10663. name: "Front",
  10664. image: {
  10665. source: "./media/characters/alexi/front.svg",
  10666. extra: 3483 / 3291,
  10667. bottom: 0.04
  10668. }
  10669. },
  10670. back: {
  10671. height: math.unit(6, "feet"),
  10672. weight: math.unit(250, "lb"),
  10673. name: "Back",
  10674. image: {
  10675. source: "./media/characters/alexi/back.svg",
  10676. extra: 3533 / 3356,
  10677. bottom: 0.021
  10678. }
  10679. },
  10680. frontTransforming: {
  10681. height: math.unit(8.58, "feet"),
  10682. weight: math.unit(1300, "lb"),
  10683. name: "Transforming",
  10684. image: {
  10685. source: "./media/characters/alexi/front-transforming.svg",
  10686. extra: 437 / 409,
  10687. bottom: 19 / 458.66
  10688. }
  10689. },
  10690. frontTransformed: {
  10691. height: math.unit(12.5, "feet"),
  10692. weight: math.unit(4000, "lb"),
  10693. name: "Transformed",
  10694. image: {
  10695. source: "./media/characters/alexi/front-transformed.svg",
  10696. extra: 639 / 614,
  10697. bottom: 30.55 / 671
  10698. }
  10699. },
  10700. },
  10701. [
  10702. {
  10703. name: "Normal",
  10704. height: math.unit(14, "feet"),
  10705. default: true
  10706. },
  10707. {
  10708. name: "Minimacro",
  10709. height: math.unit(30, "meters")
  10710. },
  10711. {
  10712. name: "Macro",
  10713. height: math.unit(500, "meters")
  10714. },
  10715. {
  10716. name: "Megamacro",
  10717. height: math.unit(9000, "km")
  10718. },
  10719. {
  10720. name: "Teramacro",
  10721. height: math.unit(384000, "km")
  10722. },
  10723. ]
  10724. ))
  10725. characterMakers.push(() => makeCharacter(
  10726. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10727. {
  10728. front: {
  10729. height: math.unit(6, "feet"),
  10730. weight: math.unit(150, "lb"),
  10731. name: "Front",
  10732. image: {
  10733. source: "./media/characters/kayroo/front.svg",
  10734. extra: 1153 / 1038,
  10735. bottom: 0.06
  10736. }
  10737. },
  10738. foot: {
  10739. height: math.unit(6, "feet"),
  10740. weight: math.unit(150, "lb"),
  10741. name: "Foot",
  10742. image: {
  10743. source: "./media/characters/kayroo/foot.svg"
  10744. }
  10745. },
  10746. },
  10747. [
  10748. {
  10749. name: "Normal",
  10750. height: math.unit(8, "feet"),
  10751. default: true
  10752. },
  10753. {
  10754. name: "Minimacro",
  10755. height: math.unit(250, "feet")
  10756. },
  10757. {
  10758. name: "Macro",
  10759. height: math.unit(2800, "feet")
  10760. },
  10761. {
  10762. name: "Megamacro",
  10763. height: math.unit(5200, "feet")
  10764. },
  10765. {
  10766. name: "Gigamacro",
  10767. height: math.unit(27000, "feet")
  10768. },
  10769. {
  10770. name: "Omega",
  10771. height: math.unit(45000, "feet")
  10772. },
  10773. ]
  10774. ))
  10775. characterMakers.push(() => makeCharacter(
  10776. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10777. {
  10778. front: {
  10779. height: math.unit(18, "feet"),
  10780. weight: math.unit(5800, "lb"),
  10781. name: "Front",
  10782. image: {
  10783. source: "./media/characters/rhys/front.svg",
  10784. extra: 3386 / 3090,
  10785. bottom: 0.07
  10786. }
  10787. },
  10788. },
  10789. [
  10790. {
  10791. name: "Normal",
  10792. height: math.unit(18, "feet"),
  10793. default: true
  10794. },
  10795. {
  10796. name: "Working Size",
  10797. height: math.unit(200, "feet")
  10798. },
  10799. {
  10800. name: "Demolition Size",
  10801. height: math.unit(2000, "feet")
  10802. },
  10803. {
  10804. name: "Maximum Licensed Size",
  10805. height: math.unit(5, "miles")
  10806. },
  10807. {
  10808. name: "Maximum Observed Size",
  10809. height: math.unit(10, "yottameters")
  10810. },
  10811. ]
  10812. ))
  10813. characterMakers.push(() => makeCharacter(
  10814. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10815. {
  10816. front: {
  10817. height: math.unit(6, "feet"),
  10818. weight: math.unit(250, "lb"),
  10819. name: "Front",
  10820. image: {
  10821. source: "./media/characters/toto/front.svg",
  10822. extra: 527 / 479,
  10823. bottom: 0.05
  10824. }
  10825. },
  10826. },
  10827. [
  10828. {
  10829. name: "Micro",
  10830. height: math.unit(3, "feet")
  10831. },
  10832. {
  10833. name: "Normal",
  10834. height: math.unit(10, "feet")
  10835. },
  10836. {
  10837. name: "Macro",
  10838. height: math.unit(150, "feet"),
  10839. default: true
  10840. },
  10841. {
  10842. name: "Megamacro",
  10843. height: math.unit(1200, "feet")
  10844. },
  10845. ]
  10846. ))
  10847. characterMakers.push(() => makeCharacter(
  10848. { name: "King", species: ["lion"], tags: ["anthro"] },
  10849. {
  10850. back: {
  10851. height: math.unit(6, "feet"),
  10852. weight: math.unit(150, "lb"),
  10853. name: "Back",
  10854. image: {
  10855. source: "./media/characters/king/back.svg"
  10856. }
  10857. },
  10858. },
  10859. [
  10860. {
  10861. name: "Micro",
  10862. height: math.unit(2, "inches")
  10863. },
  10864. {
  10865. name: "Normal",
  10866. height: math.unit(8, "feet")
  10867. },
  10868. {
  10869. name: "Macro",
  10870. height: math.unit(200, "feet"),
  10871. default: true
  10872. },
  10873. {
  10874. name: "Megamacro",
  10875. height: math.unit(50, "miles")
  10876. },
  10877. ]
  10878. ))
  10879. characterMakers.push(() => makeCharacter(
  10880. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10881. {
  10882. anthro: {
  10883. height: math.unit(6 + 5 / 12, "feet"),
  10884. weight: math.unit(280, "lb"),
  10885. name: "Anthro",
  10886. image: {
  10887. source: "./media/characters/cordite/anthro.svg",
  10888. extra: 1986 / 1905,
  10889. bottom: 0.025
  10890. }
  10891. },
  10892. feral: {
  10893. height: math.unit(2, "feet"),
  10894. weight: math.unit(90, "lb"),
  10895. name: "Feral",
  10896. image: {
  10897. source: "./media/characters/cordite/feral.svg",
  10898. extra: 1260 / 755,
  10899. bottom: 0.05
  10900. }
  10901. },
  10902. },
  10903. [
  10904. {
  10905. name: "Normal",
  10906. height: math.unit(6 + 5 / 12, "feet"),
  10907. default: true
  10908. },
  10909. ]
  10910. ))
  10911. characterMakers.push(() => makeCharacter(
  10912. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10913. {
  10914. front: {
  10915. height: math.unit(6, "feet"),
  10916. weight: math.unit(150, "lb"),
  10917. name: "Front",
  10918. image: {
  10919. source: "./media/characters/pianostrong/front.svg",
  10920. extra: 6577 / 6254,
  10921. bottom: 0.02
  10922. }
  10923. },
  10924. side: {
  10925. height: math.unit(6, "feet"),
  10926. weight: math.unit(150, "lb"),
  10927. name: "Side",
  10928. image: {
  10929. source: "./media/characters/pianostrong/side.svg",
  10930. extra: 6106 / 5730
  10931. }
  10932. },
  10933. back: {
  10934. height: math.unit(6, "feet"),
  10935. weight: math.unit(150, "lb"),
  10936. name: "Back",
  10937. image: {
  10938. source: "./media/characters/pianostrong/back.svg",
  10939. extra: 6085 / 5733,
  10940. bottom: 0.01
  10941. }
  10942. },
  10943. },
  10944. [
  10945. {
  10946. name: "Macro",
  10947. height: math.unit(100, "feet")
  10948. },
  10949. {
  10950. name: "Macro+",
  10951. height: math.unit(300, "feet"),
  10952. default: true
  10953. },
  10954. {
  10955. name: "Macro++",
  10956. height: math.unit(1000, "feet")
  10957. },
  10958. ]
  10959. ))
  10960. characterMakers.push(() => makeCharacter(
  10961. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10962. {
  10963. front: {
  10964. height: math.unit(6, "feet"),
  10965. weight: math.unit(150, "lb"),
  10966. name: "Front",
  10967. image: {
  10968. source: "./media/characters/kona/front.svg",
  10969. extra: 2960 / 2629,
  10970. bottom: 0.005
  10971. }
  10972. },
  10973. },
  10974. [
  10975. {
  10976. name: "Normal",
  10977. height: math.unit(11 + 8 / 12, "feet")
  10978. },
  10979. {
  10980. name: "Macro",
  10981. height: math.unit(850, "feet"),
  10982. default: true
  10983. },
  10984. {
  10985. name: "Macro+",
  10986. height: math.unit(1.5, "km"),
  10987. default: true
  10988. },
  10989. {
  10990. name: "Megamacro",
  10991. height: math.unit(80, "miles")
  10992. },
  10993. {
  10994. name: "Gigamacro",
  10995. height: math.unit(3500, "miles")
  10996. },
  10997. ]
  10998. ))
  10999. characterMakers.push(() => makeCharacter(
  11000. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11001. {
  11002. side: {
  11003. height: math.unit(1.9, "meters"),
  11004. weight: math.unit(326, "kg"),
  11005. name: "Side",
  11006. image: {
  11007. source: "./media/characters/levi/side.svg",
  11008. extra: 1704 / 1334,
  11009. bottom: 0.02
  11010. }
  11011. },
  11012. },
  11013. [
  11014. {
  11015. name: "Normal",
  11016. height: math.unit(1.9, "meters"),
  11017. default: true
  11018. },
  11019. {
  11020. name: "Macro",
  11021. height: math.unit(20, "meters")
  11022. },
  11023. {
  11024. name: "Macro+",
  11025. height: math.unit(200, "meters")
  11026. },
  11027. {
  11028. name: "Megamacro",
  11029. height: math.unit(2, "km")
  11030. },
  11031. {
  11032. name: "Megamacro+",
  11033. height: math.unit(20, "km")
  11034. },
  11035. {
  11036. name: "Gigamacro",
  11037. height: math.unit(2500, "km")
  11038. },
  11039. {
  11040. name: "Gigamacro+",
  11041. height: math.unit(120000, "km")
  11042. },
  11043. {
  11044. name: "Teramacro",
  11045. height: math.unit(7.77e6, "km")
  11046. },
  11047. ]
  11048. ))
  11049. characterMakers.push(() => makeCharacter(
  11050. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11051. {
  11052. front: {
  11053. height: math.unit(6 + 4 / 12, "feet"),
  11054. weight: math.unit(188, "lb"),
  11055. name: "Front",
  11056. image: {
  11057. source: "./media/characters/bmc/front.svg",
  11058. extra: 1067 / 1022,
  11059. bottom: 0.047
  11060. }
  11061. },
  11062. },
  11063. [
  11064. {
  11065. name: "Human-sized",
  11066. height: math.unit(6 + 4 / 12, "feet")
  11067. },
  11068. {
  11069. name: "Small",
  11070. height: math.unit(250, "feet")
  11071. },
  11072. {
  11073. name: "Normal",
  11074. height: math.unit(1250, "feet"),
  11075. default: true
  11076. },
  11077. {
  11078. name: "Good Day",
  11079. height: math.unit(88, "miles")
  11080. },
  11081. {
  11082. name: "Largest Measured Size",
  11083. height: math.unit(11.2e6, "lightyears")
  11084. },
  11085. ]
  11086. ))
  11087. characterMakers.push(() => makeCharacter(
  11088. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11089. {
  11090. front: {
  11091. height: math.unit(20, "feet"),
  11092. weight: math.unit(2016, "kg"),
  11093. name: "Front",
  11094. image: {
  11095. source: "./media/characters/sven-the-kaiju/front.svg",
  11096. extra: 1277/1250,
  11097. bottom: 35/1312
  11098. }
  11099. },
  11100. mouth: {
  11101. height: math.unit(1.85, "feet"),
  11102. name: "Mouth",
  11103. image: {
  11104. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11105. }
  11106. },
  11107. },
  11108. [
  11109. {
  11110. name: "Fairy",
  11111. height: math.unit(6, "inches")
  11112. },
  11113. {
  11114. name: "Normal",
  11115. height: math.unit(20, "feet"),
  11116. default: true
  11117. },
  11118. {
  11119. name: "Rampage",
  11120. height: math.unit(200, "feet")
  11121. },
  11122. {
  11123. name: "Archfey Forest Guardian",
  11124. height: math.unit(1, "mile")
  11125. },
  11126. ]
  11127. ))
  11128. characterMakers.push(() => makeCharacter(
  11129. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11130. {
  11131. front: {
  11132. height: math.unit(4, "meters"),
  11133. weight: math.unit(2, "tons"),
  11134. name: "Front",
  11135. image: {
  11136. source: "./media/characters/marik/front.svg",
  11137. extra: 1057 / 1003,
  11138. bottom: 0.08
  11139. }
  11140. },
  11141. },
  11142. [
  11143. {
  11144. name: "Normal",
  11145. height: math.unit(4, "meters"),
  11146. default: true
  11147. },
  11148. {
  11149. name: "Macro",
  11150. height: math.unit(20, "meters")
  11151. },
  11152. {
  11153. name: "Megamacro",
  11154. height: math.unit(50, "km")
  11155. },
  11156. {
  11157. name: "Gigamacro",
  11158. height: math.unit(100, "km")
  11159. },
  11160. {
  11161. name: "Alpha Macro",
  11162. height: math.unit(7.88e7, "yottameters")
  11163. },
  11164. ]
  11165. ))
  11166. characterMakers.push(() => makeCharacter(
  11167. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11168. {
  11169. front: {
  11170. height: math.unit(6, "feet"),
  11171. weight: math.unit(110, "lb"),
  11172. name: "Front",
  11173. image: {
  11174. source: "./media/characters/mel/front.svg",
  11175. extra: 736 / 617,
  11176. bottom: 0.017
  11177. }
  11178. },
  11179. },
  11180. [
  11181. {
  11182. name: "Pico",
  11183. height: math.unit(3, "pm")
  11184. },
  11185. {
  11186. name: "Nano",
  11187. height: math.unit(3, "nm")
  11188. },
  11189. {
  11190. name: "Micro",
  11191. height: math.unit(0.3, "mm"),
  11192. default: true
  11193. },
  11194. {
  11195. name: "Micro+",
  11196. height: math.unit(3, "mm")
  11197. },
  11198. {
  11199. name: "Normal",
  11200. height: math.unit(5 + 10.5 / 12, "feet")
  11201. },
  11202. ]
  11203. ))
  11204. characterMakers.push(() => makeCharacter(
  11205. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11206. {
  11207. kaiju: {
  11208. height: math.unit(1.75, "meters"),
  11209. weight: math.unit(55, "kg"),
  11210. name: "Kaiju",
  11211. image: {
  11212. source: "./media/characters/lykonous/kaiju.svg",
  11213. extra: 1055 / 946,
  11214. bottom: 0.135
  11215. }
  11216. },
  11217. },
  11218. [
  11219. {
  11220. name: "Normal",
  11221. height: math.unit(2.5, "meters"),
  11222. default: true
  11223. },
  11224. {
  11225. name: "Kaiju Dragon",
  11226. height: math.unit(60, "meters")
  11227. },
  11228. {
  11229. name: "Mega Kaiju",
  11230. height: math.unit(120, "km")
  11231. },
  11232. {
  11233. name: "Giga Kaiju",
  11234. height: math.unit(200, "megameters")
  11235. },
  11236. {
  11237. name: "Terra Kaiju",
  11238. height: math.unit(400, "gigameters")
  11239. },
  11240. {
  11241. name: "Kaiju Dragon God",
  11242. height: math.unit(13000, "exaparsecs")
  11243. },
  11244. ]
  11245. ))
  11246. characterMakers.push(() => makeCharacter(
  11247. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11248. {
  11249. front: {
  11250. height: math.unit(6, "feet"),
  11251. weight: math.unit(150, "lb"),
  11252. name: "Front",
  11253. image: {
  11254. source: "./media/characters/blü/front.svg",
  11255. extra: 1883 / 1564,
  11256. bottom: 0.031
  11257. }
  11258. },
  11259. },
  11260. [
  11261. {
  11262. name: "Normal",
  11263. height: math.unit(13, "feet"),
  11264. default: true
  11265. },
  11266. {
  11267. name: "Big Boi",
  11268. height: math.unit(150, "meters")
  11269. },
  11270. {
  11271. name: "Mini Stomper",
  11272. height: math.unit(300, "meters")
  11273. },
  11274. {
  11275. name: "Macro",
  11276. height: math.unit(1000, "meters")
  11277. },
  11278. {
  11279. name: "Megamacro",
  11280. height: math.unit(11000, "meters")
  11281. },
  11282. {
  11283. name: "Gigamacro",
  11284. height: math.unit(11000, "km")
  11285. },
  11286. {
  11287. name: "Teramacro",
  11288. height: math.unit(420000, "km")
  11289. },
  11290. {
  11291. name: "Examacro",
  11292. height: math.unit(120, "parsecs")
  11293. },
  11294. {
  11295. name: "God Tho",
  11296. height: math.unit(98000000000, "parsecs")
  11297. },
  11298. ]
  11299. ))
  11300. characterMakers.push(() => makeCharacter(
  11301. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11302. {
  11303. taurFront: {
  11304. height: math.unit(6, "feet"),
  11305. weight: math.unit(200, "lb"),
  11306. name: "Taur (Front)",
  11307. image: {
  11308. source: "./media/characters/scales/taur-front.svg",
  11309. extra: 1,
  11310. bottom: 0.05
  11311. }
  11312. },
  11313. taurBack: {
  11314. height: math.unit(6, "feet"),
  11315. weight: math.unit(200, "lb"),
  11316. name: "Taur (Back)",
  11317. image: {
  11318. source: "./media/characters/scales/taur-back.svg",
  11319. extra: 1,
  11320. bottom: 0.08
  11321. }
  11322. },
  11323. anthro: {
  11324. height: math.unit(6 * 7 / 12, "feet"),
  11325. weight: math.unit(100, "lb"),
  11326. name: "Anthro",
  11327. image: {
  11328. source: "./media/characters/scales/anthro.svg",
  11329. extra: 1,
  11330. bottom: 0.06
  11331. }
  11332. },
  11333. },
  11334. [
  11335. {
  11336. name: "Normal",
  11337. height: math.unit(12, "feet"),
  11338. default: true
  11339. },
  11340. ]
  11341. ))
  11342. characterMakers.push(() => makeCharacter(
  11343. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11344. {
  11345. front: {
  11346. height: math.unit(6, "feet"),
  11347. weight: math.unit(150, "lb"),
  11348. name: "Front",
  11349. image: {
  11350. source: "./media/characters/koragos/front.svg",
  11351. extra: 841 / 794,
  11352. bottom: 0.035
  11353. }
  11354. },
  11355. back: {
  11356. height: math.unit(6, "feet"),
  11357. weight: math.unit(150, "lb"),
  11358. name: "Back",
  11359. image: {
  11360. source: "./media/characters/koragos/back.svg",
  11361. extra: 841 / 810,
  11362. bottom: 0.022
  11363. }
  11364. },
  11365. },
  11366. [
  11367. {
  11368. name: "Normal",
  11369. height: math.unit(6 + 11 / 12, "feet"),
  11370. default: true
  11371. },
  11372. {
  11373. name: "Macro",
  11374. height: math.unit(490, "feet")
  11375. },
  11376. {
  11377. name: "Megamacro",
  11378. height: math.unit(10, "miles")
  11379. },
  11380. {
  11381. name: "Gigamacro",
  11382. height: math.unit(50, "miles")
  11383. },
  11384. ]
  11385. ))
  11386. characterMakers.push(() => makeCharacter(
  11387. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11388. {
  11389. front: {
  11390. height: math.unit(6, "feet"),
  11391. weight: math.unit(250, "lb"),
  11392. name: "Front",
  11393. image: {
  11394. source: "./media/characters/xylrem/front.svg",
  11395. extra: 3323 / 3050,
  11396. bottom: 0.065
  11397. }
  11398. },
  11399. },
  11400. [
  11401. {
  11402. name: "Micro",
  11403. height: math.unit(4, "feet")
  11404. },
  11405. {
  11406. name: "Normal",
  11407. height: math.unit(16, "feet"),
  11408. default: true
  11409. },
  11410. {
  11411. name: "Macro",
  11412. height: math.unit(2720, "feet")
  11413. },
  11414. {
  11415. name: "Megamacro",
  11416. height: math.unit(25000, "miles")
  11417. },
  11418. ]
  11419. ))
  11420. characterMakers.push(() => makeCharacter(
  11421. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11422. {
  11423. front: {
  11424. height: math.unit(8, "feet"),
  11425. weight: math.unit(250, "kg"),
  11426. name: "Front",
  11427. image: {
  11428. source: "./media/characters/ikideru/front.svg",
  11429. extra: 930 / 870,
  11430. bottom: 0.087
  11431. }
  11432. },
  11433. back: {
  11434. height: math.unit(8, "feet"),
  11435. weight: math.unit(250, "kg"),
  11436. name: "Back",
  11437. image: {
  11438. source: "./media/characters/ikideru/back.svg",
  11439. extra: 919 / 852,
  11440. bottom: 0.055
  11441. }
  11442. },
  11443. },
  11444. [
  11445. {
  11446. name: "Rare",
  11447. height: math.unit(8, "feet"),
  11448. default: true
  11449. },
  11450. {
  11451. name: "Playful Loom",
  11452. height: math.unit(80, "feet")
  11453. },
  11454. {
  11455. name: "City Leaner",
  11456. height: math.unit(230, "feet")
  11457. },
  11458. {
  11459. name: "Megamacro",
  11460. height: math.unit(2500, "feet")
  11461. },
  11462. {
  11463. name: "Gigamacro",
  11464. height: math.unit(26400, "feet")
  11465. },
  11466. {
  11467. name: "Tectonic Shifter",
  11468. height: math.unit(1.7, "megameters")
  11469. },
  11470. {
  11471. name: "Planet Carer",
  11472. height: math.unit(21, "megameters")
  11473. },
  11474. {
  11475. name: "God",
  11476. height: math.unit(11157.22, "parsecs")
  11477. },
  11478. ]
  11479. ))
  11480. characterMakers.push(() => makeCharacter(
  11481. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11482. {
  11483. front: {
  11484. height: math.unit(6, "feet"),
  11485. weight: math.unit(120, "lb"),
  11486. name: "Front",
  11487. image: {
  11488. source: "./media/characters/neo/front.svg"
  11489. }
  11490. },
  11491. },
  11492. [
  11493. {
  11494. name: "Micro",
  11495. height: math.unit(2, "inches"),
  11496. default: true
  11497. },
  11498. {
  11499. name: "Human Size",
  11500. height: math.unit(5 + 8 / 12, "feet")
  11501. },
  11502. ]
  11503. ))
  11504. characterMakers.push(() => makeCharacter(
  11505. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11506. {
  11507. front: {
  11508. height: math.unit(13 + 10 / 12, "feet"),
  11509. weight: math.unit(5320, "lb"),
  11510. name: "Front",
  11511. image: {
  11512. source: "./media/characters/chauncey-chantz/front.svg",
  11513. extra: 1587 / 1435,
  11514. bottom: 0.02
  11515. }
  11516. },
  11517. },
  11518. [
  11519. {
  11520. name: "Normal",
  11521. height: math.unit(13 + 10 / 12, "feet"),
  11522. default: true
  11523. },
  11524. {
  11525. name: "Macro",
  11526. height: math.unit(45, "feet")
  11527. },
  11528. {
  11529. name: "Megamacro",
  11530. height: math.unit(250, "miles")
  11531. },
  11532. {
  11533. name: "Planetary",
  11534. height: math.unit(10000, "miles")
  11535. },
  11536. {
  11537. name: "Galactic",
  11538. height: math.unit(40000, "parsecs")
  11539. },
  11540. {
  11541. name: "Universal",
  11542. height: math.unit(1, "yottameter")
  11543. },
  11544. ]
  11545. ))
  11546. characterMakers.push(() => makeCharacter(
  11547. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11548. {
  11549. front: {
  11550. height: math.unit(6, "feet"),
  11551. weight: math.unit(150, "lb"),
  11552. name: "Front",
  11553. image: {
  11554. source: "./media/characters/epifox/front.svg",
  11555. extra: 1,
  11556. bottom: 0.075
  11557. }
  11558. },
  11559. },
  11560. [
  11561. {
  11562. name: "Micro",
  11563. height: math.unit(6, "inches")
  11564. },
  11565. {
  11566. name: "Normal",
  11567. height: math.unit(12, "feet"),
  11568. default: true
  11569. },
  11570. {
  11571. name: "Macro",
  11572. height: math.unit(3810, "feet")
  11573. },
  11574. {
  11575. name: "Megamacro",
  11576. height: math.unit(500, "miles")
  11577. },
  11578. ]
  11579. ))
  11580. characterMakers.push(() => makeCharacter(
  11581. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11582. {
  11583. front: {
  11584. height: math.unit(1.8796, "m"),
  11585. weight: math.unit(230, "lb"),
  11586. name: "Front",
  11587. image: {
  11588. source: "./media/characters/colin-t/front.svg",
  11589. extra: 1272 / 1193,
  11590. bottom: 0.07
  11591. }
  11592. },
  11593. },
  11594. [
  11595. {
  11596. name: "Micro",
  11597. height: math.unit(0.571, "meters")
  11598. },
  11599. {
  11600. name: "Normal",
  11601. height: math.unit(1.8796, "meters"),
  11602. default: true
  11603. },
  11604. {
  11605. name: "Tall",
  11606. height: math.unit(4, "meters")
  11607. },
  11608. {
  11609. name: "Macro",
  11610. height: math.unit(67.241, "meters")
  11611. },
  11612. {
  11613. name: "Megamacro",
  11614. height: math.unit(371.856, "meters")
  11615. },
  11616. {
  11617. name: "Planetary",
  11618. height: math.unit(12631.5689, "km")
  11619. },
  11620. ]
  11621. ))
  11622. characterMakers.push(() => makeCharacter(
  11623. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11624. {
  11625. front: {
  11626. height: math.unit(1.85, "meters"),
  11627. weight: math.unit(80, "kg"),
  11628. name: "Front",
  11629. image: {
  11630. source: "./media/characters/matvei/front.svg",
  11631. extra: 614 / 594,
  11632. bottom: 0.01
  11633. }
  11634. },
  11635. },
  11636. [
  11637. {
  11638. name: "Normal",
  11639. height: math.unit(1.85, "meters"),
  11640. default: true
  11641. },
  11642. ]
  11643. ))
  11644. characterMakers.push(() => makeCharacter(
  11645. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11646. {
  11647. front: {
  11648. height: math.unit(5 + 9 / 12, "feet"),
  11649. weight: math.unit(70, "lb"),
  11650. name: "Front",
  11651. image: {
  11652. source: "./media/characters/quincy/front.svg",
  11653. extra: 3041 / 2751
  11654. }
  11655. },
  11656. back: {
  11657. height: math.unit(5 + 9 / 12, "feet"),
  11658. weight: math.unit(70, "lb"),
  11659. name: "Back",
  11660. image: {
  11661. source: "./media/characters/quincy/back.svg",
  11662. extra: 3041 / 2751
  11663. }
  11664. },
  11665. flying: {
  11666. height: math.unit(5 + 4 / 12, "feet"),
  11667. weight: math.unit(70, "lb"),
  11668. name: "Flying",
  11669. image: {
  11670. source: "./media/characters/quincy/flying.svg",
  11671. extra: 1044 / 930
  11672. }
  11673. },
  11674. },
  11675. [
  11676. {
  11677. name: "Micro",
  11678. height: math.unit(3, "cm")
  11679. },
  11680. {
  11681. name: "Normal",
  11682. height: math.unit(5 + 9 / 12, "feet")
  11683. },
  11684. {
  11685. name: "Macro",
  11686. height: math.unit(200, "meters"),
  11687. default: true
  11688. },
  11689. {
  11690. name: "Megamacro",
  11691. height: math.unit(1000, "meters")
  11692. },
  11693. ]
  11694. ))
  11695. characterMakers.push(() => makeCharacter(
  11696. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11697. {
  11698. front: {
  11699. height: math.unit(4 + 7 / 12, "feet"),
  11700. weight: math.unit(50, "lb"),
  11701. name: "Front",
  11702. image: {
  11703. source: "./media/characters/vanrel/front.svg",
  11704. extra: 1,
  11705. bottom: 0.02
  11706. }
  11707. },
  11708. frontAlt: {
  11709. height: math.unit(4 + 7 / 12, "feet"),
  11710. weight: math.unit(50, "lb"),
  11711. name: "Front-alt",
  11712. image: {
  11713. source: "./media/characters/vanrel/front-alt.svg",
  11714. extra: 1,
  11715. bottom: 15 / 1511
  11716. }
  11717. },
  11718. elemental: {
  11719. height: math.unit(3, "feet"),
  11720. weight: math.unit(50, "lb"),
  11721. name: "Elemental",
  11722. image: {
  11723. source: "./media/characters/vanrel/elemental.svg",
  11724. extra: 192.3 / 162.8,
  11725. bottom: 1.79 / 194.17
  11726. }
  11727. },
  11728. side: {
  11729. height: math.unit(4 + 7 / 12, "feet"),
  11730. weight: math.unit(50, "lb"),
  11731. name: "Side",
  11732. image: {
  11733. source: "./media/characters/vanrel/side.svg",
  11734. extra: 1,
  11735. bottom: 0.025
  11736. }
  11737. },
  11738. tome: {
  11739. height: math.unit(1.35, "feet"),
  11740. weight: math.unit(10, "lb"),
  11741. name: "Vanrel's Tome",
  11742. rename: true,
  11743. image: {
  11744. source: "./media/characters/vanrel/tome.svg"
  11745. }
  11746. },
  11747. beans: {
  11748. height: math.unit(0.89, "feet"),
  11749. name: "Beans",
  11750. image: {
  11751. source: "./media/characters/vanrel/beans.svg"
  11752. }
  11753. },
  11754. },
  11755. [
  11756. {
  11757. name: "Normal",
  11758. height: math.unit(4 + 7 / 12, "feet"),
  11759. default: true
  11760. },
  11761. ]
  11762. ))
  11763. characterMakers.push(() => makeCharacter(
  11764. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11765. {
  11766. front: {
  11767. height: math.unit(7 + 5 / 12, "feet"),
  11768. weight: math.unit(150, "lb"),
  11769. name: "Front",
  11770. image: {
  11771. source: "./media/characters/kuiper-vanrel/front.svg",
  11772. extra: 1118 / 1068,
  11773. bottom: 0.09
  11774. }
  11775. },
  11776. foot: {
  11777. height: math.unit(0.55, "meters"),
  11778. name: "Foot",
  11779. image: {
  11780. source: "./media/characters/kuiper-vanrel/foot.svg",
  11781. }
  11782. },
  11783. battle: {
  11784. height: math.unit(6.824, "feet"),
  11785. weight: math.unit(150, "lb"),
  11786. name: "Battle",
  11787. image: {
  11788. source: "./media/characters/kuiper-vanrel/battle.svg",
  11789. extra: 1466 / 1327,
  11790. bottom: 29 / 1492.5
  11791. }
  11792. },
  11793. battleAlt: {
  11794. height: math.unit(6.824, "feet"),
  11795. weight: math.unit(150, "lb"),
  11796. name: "Battle (Alt)",
  11797. image: {
  11798. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11799. extra: 2081 / 1965,
  11800. bottom: 40 / 2121
  11801. }
  11802. },
  11803. },
  11804. [
  11805. {
  11806. name: "Normal",
  11807. height: math.unit(7 + 5 / 12, "feet"),
  11808. default: true
  11809. },
  11810. ]
  11811. ))
  11812. characterMakers.push(() => makeCharacter(
  11813. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11814. {
  11815. front: {
  11816. height: math.unit(8 + 5 / 12, "feet"),
  11817. weight: math.unit(150, "lb"),
  11818. name: "Front",
  11819. image: {
  11820. source: "./media/characters/keset-vanrel/front.svg",
  11821. extra: 1150 / 1084,
  11822. bottom: 0.05
  11823. }
  11824. },
  11825. hand: {
  11826. height: math.unit(0.6, "meters"),
  11827. name: "Hand",
  11828. image: {
  11829. source: "./media/characters/keset-vanrel/hand.svg"
  11830. }
  11831. },
  11832. foot: {
  11833. height: math.unit(0.94978, "meters"),
  11834. name: "Foot",
  11835. image: {
  11836. source: "./media/characters/keset-vanrel/foot.svg"
  11837. }
  11838. },
  11839. battle: {
  11840. height: math.unit(7.408, "feet"),
  11841. weight: math.unit(150, "lb"),
  11842. name: "Battle",
  11843. image: {
  11844. source: "./media/characters/keset-vanrel/battle.svg",
  11845. extra: 1890 / 1386,
  11846. bottom: 73.28 / 1970
  11847. }
  11848. },
  11849. },
  11850. [
  11851. {
  11852. name: "Normal",
  11853. height: math.unit(8 + 5 / 12, "feet"),
  11854. default: true
  11855. },
  11856. ]
  11857. ))
  11858. characterMakers.push(() => makeCharacter(
  11859. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11860. {
  11861. front: {
  11862. height: math.unit(6, "feet"),
  11863. weight: math.unit(150, "lb"),
  11864. name: "Front",
  11865. image: {
  11866. source: "./media/characters/neos/front.svg",
  11867. extra: 1696 / 992,
  11868. bottom: 0.14
  11869. }
  11870. },
  11871. },
  11872. [
  11873. {
  11874. name: "Normal",
  11875. height: math.unit(54, "cm"),
  11876. default: true
  11877. },
  11878. {
  11879. name: "Macro",
  11880. height: math.unit(100, "m")
  11881. },
  11882. {
  11883. name: "Megamacro",
  11884. height: math.unit(10, "km")
  11885. },
  11886. {
  11887. name: "Megamacro+",
  11888. height: math.unit(100, "km")
  11889. },
  11890. {
  11891. name: "Gigamacro",
  11892. height: math.unit(100, "Mm")
  11893. },
  11894. {
  11895. name: "Teramacro",
  11896. height: math.unit(100, "Gm")
  11897. },
  11898. {
  11899. name: "Examacro",
  11900. height: math.unit(100, "Em")
  11901. },
  11902. {
  11903. name: "Godly",
  11904. height: math.unit(10000, "Ym")
  11905. },
  11906. {
  11907. name: "Beyond Godly",
  11908. height: math.unit(25, "multiverses")
  11909. },
  11910. ]
  11911. ))
  11912. characterMakers.push(() => makeCharacter(
  11913. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11914. {
  11915. feminine: {
  11916. height: math.unit(5, "feet"),
  11917. weight: math.unit(100, "lb"),
  11918. name: "Feminine",
  11919. image: {
  11920. source: "./media/characters/sammy-mouse/feminine.svg",
  11921. extra: 2526 / 2425,
  11922. bottom: 0.123
  11923. }
  11924. },
  11925. masculine: {
  11926. height: math.unit(5, "feet"),
  11927. weight: math.unit(100, "lb"),
  11928. name: "Masculine",
  11929. image: {
  11930. source: "./media/characters/sammy-mouse/masculine.svg",
  11931. extra: 2526 / 2425,
  11932. bottom: 0.123
  11933. }
  11934. },
  11935. },
  11936. [
  11937. {
  11938. name: "Micro",
  11939. height: math.unit(5, "inches")
  11940. },
  11941. {
  11942. name: "Normal",
  11943. height: math.unit(5, "feet"),
  11944. default: true
  11945. },
  11946. {
  11947. name: "Macro",
  11948. height: math.unit(60, "feet")
  11949. },
  11950. ]
  11951. ))
  11952. characterMakers.push(() => makeCharacter(
  11953. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11954. {
  11955. front: {
  11956. height: math.unit(4, "feet"),
  11957. weight: math.unit(50, "lb"),
  11958. name: "Front",
  11959. image: {
  11960. source: "./media/characters/kole/front.svg",
  11961. extra: 1423 / 1303,
  11962. bottom: 0.025
  11963. }
  11964. },
  11965. back: {
  11966. height: math.unit(4, "feet"),
  11967. weight: math.unit(50, "lb"),
  11968. name: "Back",
  11969. image: {
  11970. source: "./media/characters/kole/back.svg",
  11971. extra: 1426 / 1280,
  11972. bottom: 0.02
  11973. }
  11974. },
  11975. },
  11976. [
  11977. {
  11978. name: "Normal",
  11979. height: math.unit(4, "feet"),
  11980. default: true
  11981. },
  11982. ]
  11983. ))
  11984. characterMakers.push(() => makeCharacter(
  11985. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11986. {
  11987. front: {
  11988. height: math.unit(2 + 6 / 12, "feet"),
  11989. weight: math.unit(20, "lb"),
  11990. name: "Front",
  11991. image: {
  11992. source: "./media/characters/rufran/front.svg",
  11993. extra: 2041 / 1839,
  11994. bottom: 0.055
  11995. }
  11996. },
  11997. back: {
  11998. height: math.unit(2 + 6 / 12, "feet"),
  11999. weight: math.unit(20, "lb"),
  12000. name: "Back",
  12001. image: {
  12002. source: "./media/characters/rufran/back.svg",
  12003. extra: 2054 / 1839,
  12004. bottom: 0.01
  12005. }
  12006. },
  12007. hand: {
  12008. height: math.unit(0.2166, "meters"),
  12009. name: "Hand",
  12010. image: {
  12011. source: "./media/characters/rufran/hand.svg"
  12012. }
  12013. },
  12014. foot: {
  12015. height: math.unit(0.185, "meters"),
  12016. name: "Foot",
  12017. image: {
  12018. source: "./media/characters/rufran/foot.svg"
  12019. }
  12020. },
  12021. },
  12022. [
  12023. {
  12024. name: "Micro",
  12025. height: math.unit(1, "inch")
  12026. },
  12027. {
  12028. name: "Normal",
  12029. height: math.unit(2 + 6 / 12, "feet"),
  12030. default: true
  12031. },
  12032. {
  12033. name: "Big",
  12034. height: math.unit(60, "feet")
  12035. },
  12036. {
  12037. name: "Macro",
  12038. height: math.unit(325, "feet")
  12039. },
  12040. ]
  12041. ))
  12042. characterMakers.push(() => makeCharacter(
  12043. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12044. {
  12045. front: {
  12046. height: math.unit(0.3, "meters"),
  12047. weight: math.unit(3.5, "kg"),
  12048. name: "Front",
  12049. image: {
  12050. source: "./media/characters/chip/front.svg",
  12051. extra: 748 / 674
  12052. }
  12053. },
  12054. },
  12055. [
  12056. {
  12057. name: "Micro",
  12058. height: math.unit(1, "inch"),
  12059. default: true
  12060. },
  12061. ]
  12062. ))
  12063. characterMakers.push(() => makeCharacter(
  12064. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12065. {
  12066. side: {
  12067. height: math.unit(2.3, "meters"),
  12068. weight: math.unit(3500, "lb"),
  12069. name: "Side",
  12070. image: {
  12071. source: "./media/characters/torvid/side.svg",
  12072. extra: 1972 / 722,
  12073. bottom: 0.035
  12074. }
  12075. },
  12076. },
  12077. [
  12078. {
  12079. name: "Normal",
  12080. height: math.unit(2.3, "meters"),
  12081. default: true
  12082. },
  12083. ]
  12084. ))
  12085. characterMakers.push(() => makeCharacter(
  12086. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12087. {
  12088. front: {
  12089. height: math.unit(2, "meters"),
  12090. weight: math.unit(150.5, "kg"),
  12091. name: "Front",
  12092. image: {
  12093. source: "./media/characters/susan/front.svg",
  12094. extra: 693 / 635,
  12095. bottom: 0.05
  12096. }
  12097. },
  12098. },
  12099. [
  12100. {
  12101. name: "Megamacro",
  12102. height: math.unit(505, "miles"),
  12103. default: true
  12104. },
  12105. ]
  12106. ))
  12107. characterMakers.push(() => makeCharacter(
  12108. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12109. {
  12110. front: {
  12111. height: math.unit(6, "feet"),
  12112. weight: math.unit(150, "lb"),
  12113. name: "Front",
  12114. image: {
  12115. source: "./media/characters/raindrops/front.svg",
  12116. extra: 2655 / 2461,
  12117. bottom: 49 / 2705
  12118. }
  12119. },
  12120. back: {
  12121. height: math.unit(6, "feet"),
  12122. weight: math.unit(150, "lb"),
  12123. name: "Back",
  12124. image: {
  12125. source: "./media/characters/raindrops/back.svg",
  12126. extra: 2574 / 2400,
  12127. bottom: 65 / 2634
  12128. }
  12129. },
  12130. },
  12131. [
  12132. {
  12133. name: "Micro",
  12134. height: math.unit(6, "inches")
  12135. },
  12136. {
  12137. name: "Normal",
  12138. height: math.unit(6 + 2 / 12, "feet")
  12139. },
  12140. {
  12141. name: "Macro",
  12142. height: math.unit(131, "feet"),
  12143. default: true
  12144. },
  12145. {
  12146. name: "Megamacro",
  12147. height: math.unit(15, "miles")
  12148. },
  12149. {
  12150. name: "Gigamacro",
  12151. height: math.unit(4000, "miles")
  12152. },
  12153. {
  12154. name: "Teramacro",
  12155. height: math.unit(315000, "miles")
  12156. },
  12157. ]
  12158. ))
  12159. characterMakers.push(() => makeCharacter(
  12160. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12161. {
  12162. front: {
  12163. height: math.unit(2.794, "meters"),
  12164. weight: math.unit(325, "kg"),
  12165. name: "Front",
  12166. image: {
  12167. source: "./media/characters/tezwa/front.svg",
  12168. extra: 2083 / 1906,
  12169. bottom: 0.031
  12170. }
  12171. },
  12172. foot: {
  12173. height: math.unit(0.687, "meters"),
  12174. name: "Foot",
  12175. image: {
  12176. source: "./media/characters/tezwa/foot.svg"
  12177. }
  12178. },
  12179. },
  12180. [
  12181. {
  12182. name: "Normal",
  12183. height: math.unit(9 + 2 / 12, "feet"),
  12184. default: true
  12185. },
  12186. ]
  12187. ))
  12188. characterMakers.push(() => makeCharacter(
  12189. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12190. {
  12191. front: {
  12192. height: math.unit(58, "feet"),
  12193. weight: math.unit(89000, "lb"),
  12194. name: "Front",
  12195. image: {
  12196. source: "./media/characters/typhus/front.svg",
  12197. extra: 816 / 800,
  12198. bottom: 0.065
  12199. }
  12200. },
  12201. },
  12202. [
  12203. {
  12204. name: "Macro",
  12205. height: math.unit(58, "feet"),
  12206. default: true
  12207. },
  12208. ]
  12209. ))
  12210. characterMakers.push(() => makeCharacter(
  12211. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12212. {
  12213. front: {
  12214. height: math.unit(12, "feet"),
  12215. weight: math.unit(6, "tonnes"),
  12216. name: "Front",
  12217. image: {
  12218. source: "./media/characters/lyra-von-wulf/front.svg",
  12219. extra: 1,
  12220. bottom: 0.10
  12221. }
  12222. },
  12223. frontMecha: {
  12224. height: math.unit(12, "feet"),
  12225. weight: math.unit(12, "tonnes"),
  12226. name: "Front (Mecha)",
  12227. image: {
  12228. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12229. extra: 1,
  12230. bottom: 0.042
  12231. }
  12232. },
  12233. maw: {
  12234. height: math.unit(2.2, "feet"),
  12235. name: "Maw",
  12236. image: {
  12237. source: "./media/characters/lyra-von-wulf/maw.svg"
  12238. }
  12239. },
  12240. },
  12241. [
  12242. {
  12243. name: "Normal",
  12244. height: math.unit(12, "feet"),
  12245. default: true
  12246. },
  12247. {
  12248. name: "Classic",
  12249. height: math.unit(50, "feet")
  12250. },
  12251. {
  12252. name: "Macro",
  12253. height: math.unit(500, "feet")
  12254. },
  12255. {
  12256. name: "Megamacro",
  12257. height: math.unit(1, "mile")
  12258. },
  12259. {
  12260. name: "Gigamacro",
  12261. height: math.unit(400, "miles")
  12262. },
  12263. {
  12264. name: "Teramacro",
  12265. height: math.unit(22000, "miles")
  12266. },
  12267. {
  12268. name: "Solarmacro",
  12269. height: math.unit(8600000, "miles")
  12270. },
  12271. {
  12272. name: "Galactic",
  12273. height: math.unit(1057000, "lightyears")
  12274. },
  12275. ]
  12276. ))
  12277. characterMakers.push(() => makeCharacter(
  12278. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12279. {
  12280. front: {
  12281. height: math.unit(6 + 10 / 12, "feet"),
  12282. weight: math.unit(150, "lb"),
  12283. name: "Front",
  12284. image: {
  12285. source: "./media/characters/dixon/front.svg",
  12286. extra: 3361 / 3209,
  12287. bottom: 0.01
  12288. }
  12289. },
  12290. },
  12291. [
  12292. {
  12293. name: "Normal",
  12294. height: math.unit(6 + 10 / 12, "feet"),
  12295. default: true
  12296. },
  12297. {
  12298. name: "Big",
  12299. height: math.unit(12, "meters")
  12300. },
  12301. {
  12302. name: "Macro",
  12303. height: math.unit(500, "meters")
  12304. },
  12305. {
  12306. name: "Megamacro",
  12307. height: math.unit(2, "km")
  12308. },
  12309. ]
  12310. ))
  12311. characterMakers.push(() => makeCharacter(
  12312. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12313. {
  12314. front: {
  12315. height: math.unit(185, "cm"),
  12316. weight: math.unit(68, "kg"),
  12317. name: "Front",
  12318. image: {
  12319. source: "./media/characters/kauko/front.svg",
  12320. extra: 1455 / 1421,
  12321. bottom: 0.03
  12322. }
  12323. },
  12324. back: {
  12325. height: math.unit(185, "cm"),
  12326. weight: math.unit(68, "kg"),
  12327. name: "Back",
  12328. image: {
  12329. source: "./media/characters/kauko/back.svg",
  12330. extra: 1455 / 1421,
  12331. bottom: 0.004
  12332. }
  12333. },
  12334. },
  12335. [
  12336. {
  12337. name: "Normal",
  12338. height: math.unit(185, "cm"),
  12339. default: true
  12340. },
  12341. ]
  12342. ))
  12343. characterMakers.push(() => makeCharacter(
  12344. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12345. {
  12346. front: {
  12347. height: math.unit(6, "feet"),
  12348. weight: math.unit(150, "kg"),
  12349. name: "Front",
  12350. image: {
  12351. source: "./media/characters/varg/front.svg",
  12352. extra: 1108 / 1018,
  12353. bottom: 0.0375
  12354. }
  12355. },
  12356. },
  12357. [
  12358. {
  12359. name: "Normal",
  12360. height: math.unit(5, "meters")
  12361. },
  12362. {
  12363. name: "Macro",
  12364. height: math.unit(200, "meters")
  12365. },
  12366. {
  12367. name: "Megamacro",
  12368. height: math.unit(20, "kilometers")
  12369. },
  12370. {
  12371. name: "True Size",
  12372. height: math.unit(211, "km"),
  12373. default: true
  12374. },
  12375. {
  12376. name: "Gigamacro",
  12377. height: math.unit(1000, "km")
  12378. },
  12379. {
  12380. name: "Gigamacro+",
  12381. height: math.unit(8000, "km")
  12382. },
  12383. {
  12384. name: "Teramacro",
  12385. height: math.unit(1000000, "km")
  12386. },
  12387. ]
  12388. ))
  12389. characterMakers.push(() => makeCharacter(
  12390. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12391. {
  12392. front: {
  12393. height: math.unit(7 + 7 / 12, "feet"),
  12394. weight: math.unit(267, "lb"),
  12395. name: "Front",
  12396. image: {
  12397. source: "./media/characters/dayza/front.svg",
  12398. extra: 1262 / 1200,
  12399. bottom: 0.035
  12400. }
  12401. },
  12402. side: {
  12403. height: math.unit(7 + 7 / 12, "feet"),
  12404. weight: math.unit(267, "lb"),
  12405. name: "Side",
  12406. image: {
  12407. source: "./media/characters/dayza/side.svg",
  12408. extra: 1295 / 1245,
  12409. bottom: 0.05
  12410. }
  12411. },
  12412. back: {
  12413. height: math.unit(7 + 7 / 12, "feet"),
  12414. weight: math.unit(267, "lb"),
  12415. name: "Back",
  12416. image: {
  12417. source: "./media/characters/dayza/back.svg",
  12418. extra: 1241 / 1170
  12419. }
  12420. },
  12421. },
  12422. [
  12423. {
  12424. name: "Normal",
  12425. height: math.unit(7 + 7 / 12, "feet"),
  12426. default: true
  12427. },
  12428. {
  12429. name: "Macro",
  12430. height: math.unit(155, "feet")
  12431. },
  12432. ]
  12433. ))
  12434. characterMakers.push(() => makeCharacter(
  12435. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12436. {
  12437. front: {
  12438. height: math.unit(6 + 5 / 12, "feet"),
  12439. weight: math.unit(160, "lb"),
  12440. name: "Front",
  12441. image: {
  12442. source: "./media/characters/xanthos/front.svg",
  12443. extra: 1,
  12444. bottom: 0.04
  12445. }
  12446. },
  12447. back: {
  12448. height: math.unit(6 + 5 / 12, "feet"),
  12449. weight: math.unit(160, "lb"),
  12450. name: "Back",
  12451. image: {
  12452. source: "./media/characters/xanthos/back.svg",
  12453. extra: 1,
  12454. bottom: 0.03
  12455. }
  12456. },
  12457. hand: {
  12458. height: math.unit(0.928, "feet"),
  12459. name: "Hand",
  12460. image: {
  12461. source: "./media/characters/xanthos/hand.svg"
  12462. }
  12463. },
  12464. foot: {
  12465. height: math.unit(1.286, "feet"),
  12466. name: "Foot",
  12467. image: {
  12468. source: "./media/characters/xanthos/foot.svg"
  12469. }
  12470. },
  12471. },
  12472. [
  12473. {
  12474. name: "Normal",
  12475. height: math.unit(6 + 5 / 12, "feet"),
  12476. default: true
  12477. },
  12478. {
  12479. name: "Normal+",
  12480. height: math.unit(6, "meters")
  12481. },
  12482. {
  12483. name: "Macro",
  12484. height: math.unit(40, "feet")
  12485. },
  12486. {
  12487. name: "Macro+",
  12488. height: math.unit(200, "meters")
  12489. },
  12490. {
  12491. name: "Megamacro",
  12492. height: math.unit(20, "km")
  12493. },
  12494. {
  12495. name: "Megamacro+",
  12496. height: math.unit(100, "km")
  12497. },
  12498. ]
  12499. ))
  12500. characterMakers.push(() => makeCharacter(
  12501. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12502. {
  12503. front: {
  12504. height: math.unit(6 + 3 / 12, "feet"),
  12505. weight: math.unit(215, "lb"),
  12506. name: "Front",
  12507. image: {
  12508. source: "./media/characters/grynn/front.svg",
  12509. extra: 4627 / 4209,
  12510. bottom: 0.047
  12511. }
  12512. },
  12513. },
  12514. [
  12515. {
  12516. name: "Micro",
  12517. height: math.unit(6, "inches")
  12518. },
  12519. {
  12520. name: "Normal",
  12521. height: math.unit(6 + 3 / 12, "feet"),
  12522. default: true
  12523. },
  12524. {
  12525. name: "Big",
  12526. height: math.unit(104, "feet")
  12527. },
  12528. {
  12529. name: "Macro",
  12530. height: math.unit(944, "feet")
  12531. },
  12532. {
  12533. name: "Macro+",
  12534. height: math.unit(9480, "feet")
  12535. },
  12536. {
  12537. name: "Megamacro",
  12538. height: math.unit(78752, "feet")
  12539. },
  12540. {
  12541. name: "Megamacro+",
  12542. height: math.unit(630128, "feet")
  12543. },
  12544. {
  12545. name: "Megamacro++",
  12546. height: math.unit(3150695, "feet")
  12547. },
  12548. ]
  12549. ))
  12550. characterMakers.push(() => makeCharacter(
  12551. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12552. {
  12553. front: {
  12554. height: math.unit(7 + 5 / 12, "feet"),
  12555. weight: math.unit(450, "lb"),
  12556. name: "Front",
  12557. image: {
  12558. source: "./media/characters/mocha-aura/front.svg",
  12559. extra: 1907 / 1817,
  12560. bottom: 0.04
  12561. }
  12562. },
  12563. back: {
  12564. height: math.unit(7 + 5 / 12, "feet"),
  12565. weight: math.unit(450, "lb"),
  12566. name: "Back",
  12567. image: {
  12568. source: "./media/characters/mocha-aura/back.svg",
  12569. extra: 1900 / 1825,
  12570. bottom: 0.045
  12571. }
  12572. },
  12573. },
  12574. [
  12575. {
  12576. name: "Nano",
  12577. height: math.unit(1, "nm")
  12578. },
  12579. {
  12580. name: "Megamicro",
  12581. height: math.unit(1, "mm")
  12582. },
  12583. {
  12584. name: "Micro",
  12585. height: math.unit(3, "inches")
  12586. },
  12587. {
  12588. name: "Normal",
  12589. height: math.unit(7 + 5 / 12, "feet"),
  12590. default: true
  12591. },
  12592. {
  12593. name: "Macro",
  12594. height: math.unit(30, "feet")
  12595. },
  12596. {
  12597. name: "Megamacro",
  12598. height: math.unit(3500, "feet")
  12599. },
  12600. {
  12601. name: "Teramacro",
  12602. height: math.unit(500000, "miles")
  12603. },
  12604. {
  12605. name: "Petamacro",
  12606. height: math.unit(50000000000000000, "parsecs")
  12607. },
  12608. ]
  12609. ))
  12610. characterMakers.push(() => makeCharacter(
  12611. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12612. {
  12613. front: {
  12614. height: math.unit(6, "feet"),
  12615. weight: math.unit(150, "lb"),
  12616. name: "Front",
  12617. image: {
  12618. source: "./media/characters/ilisha-devya/front.svg",
  12619. extra: 1,
  12620. bottom: 0.175
  12621. }
  12622. },
  12623. back: {
  12624. height: math.unit(6, "feet"),
  12625. weight: math.unit(150, "lb"),
  12626. name: "Back",
  12627. image: {
  12628. source: "./media/characters/ilisha-devya/back.svg",
  12629. extra: 1,
  12630. bottom: 0.015
  12631. }
  12632. },
  12633. },
  12634. [
  12635. {
  12636. name: "Macro",
  12637. height: math.unit(500, "feet"),
  12638. default: true
  12639. },
  12640. {
  12641. name: "Megamacro",
  12642. height: math.unit(10, "miles")
  12643. },
  12644. {
  12645. name: "Gigamacro",
  12646. height: math.unit(100000, "miles")
  12647. },
  12648. {
  12649. name: "Examacro",
  12650. height: math.unit(1e9, "lightyears")
  12651. },
  12652. {
  12653. name: "Omniversal",
  12654. height: math.unit(1e33, "lightyears")
  12655. },
  12656. {
  12657. name: "Beyond Infinite",
  12658. height: math.unit(1e100, "lightyears")
  12659. },
  12660. ]
  12661. ))
  12662. characterMakers.push(() => makeCharacter(
  12663. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12664. {
  12665. Side: {
  12666. height: math.unit(6, "feet"),
  12667. weight: math.unit(150, "lb"),
  12668. name: "Side",
  12669. image: {
  12670. source: "./media/characters/mira/side.svg",
  12671. extra: 900 / 799,
  12672. bottom: 0.02
  12673. }
  12674. },
  12675. },
  12676. [
  12677. {
  12678. name: "Human Size",
  12679. height: math.unit(6, "feet")
  12680. },
  12681. {
  12682. name: "Macro",
  12683. height: math.unit(100, "feet"),
  12684. default: true
  12685. },
  12686. {
  12687. name: "Megamacro",
  12688. height: math.unit(10, "miles")
  12689. },
  12690. {
  12691. name: "Gigamacro",
  12692. height: math.unit(25000, "miles")
  12693. },
  12694. {
  12695. name: "Teramacro",
  12696. height: math.unit(300, "AU")
  12697. },
  12698. {
  12699. name: "Full Size",
  12700. height: math.unit(4.5e10, "lightyears")
  12701. },
  12702. ]
  12703. ))
  12704. characterMakers.push(() => makeCharacter(
  12705. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12706. {
  12707. front: {
  12708. height: math.unit(6, "feet"),
  12709. weight: math.unit(150, "lb"),
  12710. name: "Front",
  12711. image: {
  12712. source: "./media/characters/holly/front.svg",
  12713. extra: 639 / 606
  12714. }
  12715. },
  12716. back: {
  12717. height: math.unit(6, "feet"),
  12718. weight: math.unit(150, "lb"),
  12719. name: "Back",
  12720. image: {
  12721. source: "./media/characters/holly/back.svg",
  12722. extra: 623 / 598
  12723. }
  12724. },
  12725. frontWorking: {
  12726. height: math.unit(6, "feet"),
  12727. weight: math.unit(150, "lb"),
  12728. name: "Front (Working)",
  12729. image: {
  12730. source: "./media/characters/holly/front-working.svg",
  12731. extra: 607 / 577,
  12732. bottom: 0.048
  12733. }
  12734. },
  12735. },
  12736. [
  12737. {
  12738. name: "Normal",
  12739. height: math.unit(12 + 3 / 12, "feet"),
  12740. default: true
  12741. },
  12742. ]
  12743. ))
  12744. characterMakers.push(() => makeCharacter(
  12745. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12746. {
  12747. front: {
  12748. height: math.unit(6, "feet"),
  12749. weight: math.unit(150, "lb"),
  12750. name: "Front",
  12751. image: {
  12752. source: "./media/characters/porter/front.svg",
  12753. extra: 1,
  12754. bottom: 0.01
  12755. }
  12756. },
  12757. frontRobes: {
  12758. height: math.unit(6, "feet"),
  12759. weight: math.unit(150, "lb"),
  12760. name: "Front (Robes)",
  12761. image: {
  12762. source: "./media/characters/porter/front-robes.svg",
  12763. extra: 1.01,
  12764. bottom: 0.01
  12765. }
  12766. },
  12767. },
  12768. [
  12769. {
  12770. name: "Normal",
  12771. height: math.unit(11 + 9 / 12, "feet"),
  12772. default: true
  12773. },
  12774. ]
  12775. ))
  12776. characterMakers.push(() => makeCharacter(
  12777. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12778. {
  12779. legendary: {
  12780. height: math.unit(6, "feet"),
  12781. weight: math.unit(150, "lb"),
  12782. name: "Legendary",
  12783. image: {
  12784. source: "./media/characters/lucy/legendary.svg",
  12785. extra: 1355 / 1100,
  12786. bottom: 0.045
  12787. }
  12788. },
  12789. },
  12790. [
  12791. {
  12792. name: "Legendary",
  12793. height: math.unit(86882 * 2, "miles"),
  12794. default: true
  12795. },
  12796. ]
  12797. ))
  12798. characterMakers.push(() => makeCharacter(
  12799. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12800. {
  12801. front: {
  12802. height: math.unit(6, "feet"),
  12803. weight: math.unit(150, "lb"),
  12804. name: "Front",
  12805. image: {
  12806. source: "./media/characters/drusilla/front.svg",
  12807. extra: 678 / 635,
  12808. bottom: 0.03
  12809. }
  12810. },
  12811. back: {
  12812. height: math.unit(6, "feet"),
  12813. weight: math.unit(150, "lb"),
  12814. name: "Back",
  12815. image: {
  12816. source: "./media/characters/drusilla/back.svg",
  12817. extra: 678 / 635,
  12818. bottom: 0.005
  12819. }
  12820. },
  12821. },
  12822. [
  12823. {
  12824. name: "Macro",
  12825. height: math.unit(100, "feet")
  12826. },
  12827. {
  12828. name: "Canon Height",
  12829. height: math.unit(2000, "feet"),
  12830. default: true
  12831. },
  12832. ]
  12833. ))
  12834. characterMakers.push(() => makeCharacter(
  12835. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12836. {
  12837. front: {
  12838. height: math.unit(6, "feet"),
  12839. weight: math.unit(180, "lb"),
  12840. name: "Front",
  12841. image: {
  12842. source: "./media/characters/renard-thatch/front.svg",
  12843. extra: 2411 / 2275,
  12844. bottom: 0.01
  12845. }
  12846. },
  12847. frontPosing: {
  12848. height: math.unit(6, "feet"),
  12849. weight: math.unit(180, "lb"),
  12850. name: "Front (Posing)",
  12851. image: {
  12852. source: "./media/characters/renard-thatch/front-posing.svg",
  12853. extra: 2381 / 2261,
  12854. bottom: 0.01
  12855. }
  12856. },
  12857. back: {
  12858. height: math.unit(6, "feet"),
  12859. weight: math.unit(180, "lb"),
  12860. name: "Back",
  12861. image: {
  12862. source: "./media/characters/renard-thatch/back.svg",
  12863. extra: 2428 / 2288
  12864. }
  12865. },
  12866. },
  12867. [
  12868. {
  12869. name: "Micro",
  12870. height: math.unit(3, "inches")
  12871. },
  12872. {
  12873. name: "Default",
  12874. height: math.unit(6, "feet"),
  12875. default: true
  12876. },
  12877. {
  12878. name: "Macro",
  12879. height: math.unit(75, "feet")
  12880. },
  12881. ]
  12882. ))
  12883. characterMakers.push(() => makeCharacter(
  12884. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12885. {
  12886. front: {
  12887. height: math.unit(1450, "feet"),
  12888. weight: math.unit(1.21e6, "tons"),
  12889. name: "Front",
  12890. image: {
  12891. source: "./media/characters/sekvra/front.svg",
  12892. extra: 1,
  12893. bottom: 0.03
  12894. }
  12895. },
  12896. frontClothed: {
  12897. height: math.unit(1450, "feet"),
  12898. weight: math.unit(1.21e6, "tons"),
  12899. name: "Front (Clothed)",
  12900. image: {
  12901. source: "./media/characters/sekvra/front-clothed.svg",
  12902. extra: 1,
  12903. bottom: 0.03
  12904. }
  12905. },
  12906. side: {
  12907. height: math.unit(1450, "feet"),
  12908. weight: math.unit(1.21e6, "tons"),
  12909. name: "Side",
  12910. image: {
  12911. source: "./media/characters/sekvra/side.svg",
  12912. extra: 1,
  12913. bottom: 0.025
  12914. }
  12915. },
  12916. back: {
  12917. height: math.unit(1450, "feet"),
  12918. weight: math.unit(1.21e6, "tons"),
  12919. name: "Back",
  12920. image: {
  12921. source: "./media/characters/sekvra/back.svg",
  12922. extra: 1,
  12923. bottom: 0.005
  12924. }
  12925. },
  12926. },
  12927. [
  12928. {
  12929. name: "Macro",
  12930. height: math.unit(1450, "feet"),
  12931. default: true
  12932. },
  12933. {
  12934. name: "Megamacro",
  12935. height: math.unit(15000, "feet")
  12936. },
  12937. ]
  12938. ))
  12939. characterMakers.push(() => makeCharacter(
  12940. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12941. {
  12942. front: {
  12943. height: math.unit(6, "feet"),
  12944. weight: math.unit(150, "lb"),
  12945. name: "Front",
  12946. image: {
  12947. source: "./media/characters/carmine/front.svg",
  12948. extra: 1,
  12949. bottom: 0.035
  12950. }
  12951. },
  12952. frontArmor: {
  12953. height: math.unit(6, "feet"),
  12954. weight: math.unit(150, "lb"),
  12955. name: "Front (Armor)",
  12956. image: {
  12957. source: "./media/characters/carmine/front-armor.svg",
  12958. extra: 1,
  12959. bottom: 0.035
  12960. }
  12961. },
  12962. },
  12963. [
  12964. {
  12965. name: "Large",
  12966. height: math.unit(1, "mile")
  12967. },
  12968. {
  12969. name: "Huge",
  12970. height: math.unit(40, "miles"),
  12971. default: true
  12972. },
  12973. {
  12974. name: "Colossal",
  12975. height: math.unit(2500, "miles")
  12976. },
  12977. ]
  12978. ))
  12979. characterMakers.push(() => makeCharacter(
  12980. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12981. {
  12982. front: {
  12983. height: math.unit(6, "feet"),
  12984. weight: math.unit(150, "lb"),
  12985. name: "Front",
  12986. image: {
  12987. source: "./media/characters/elyssia/front.svg",
  12988. extra: 2201 / 2035,
  12989. bottom: 0.05
  12990. }
  12991. },
  12992. frontClothed: {
  12993. height: math.unit(6, "feet"),
  12994. weight: math.unit(150, "lb"),
  12995. name: "Front (Clothed)",
  12996. image: {
  12997. source: "./media/characters/elyssia/front-clothed.svg",
  12998. extra: 2201 / 2035,
  12999. bottom: 0.05
  13000. }
  13001. },
  13002. back: {
  13003. height: math.unit(6, "feet"),
  13004. weight: math.unit(150, "lb"),
  13005. name: "Back",
  13006. image: {
  13007. source: "./media/characters/elyssia/back.svg",
  13008. extra: 2201 / 2035,
  13009. bottom: 0.013
  13010. }
  13011. },
  13012. },
  13013. [
  13014. {
  13015. name: "Smaller",
  13016. height: math.unit(150, "feet")
  13017. },
  13018. {
  13019. name: "Standard",
  13020. height: math.unit(1400, "feet"),
  13021. default: true
  13022. },
  13023. {
  13024. name: "Distracted",
  13025. height: math.unit(15000, "feet")
  13026. },
  13027. ]
  13028. ))
  13029. characterMakers.push(() => makeCharacter(
  13030. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13031. {
  13032. front: {
  13033. height: math.unit(7 + 4 / 12, "feet"),
  13034. weight: math.unit(500, "lb"),
  13035. name: "Front",
  13036. image: {
  13037. source: "./media/characters/geno-maxwell/front.svg",
  13038. extra: 2207 / 2040,
  13039. bottom: 0.015
  13040. }
  13041. },
  13042. },
  13043. [
  13044. {
  13045. name: "Micro",
  13046. height: math.unit(3, "inches")
  13047. },
  13048. {
  13049. name: "Normal",
  13050. height: math.unit(7 + 4 / 12, "feet"),
  13051. default: true
  13052. },
  13053. {
  13054. name: "Macro",
  13055. height: math.unit(220, "feet")
  13056. },
  13057. {
  13058. name: "Megamacro",
  13059. height: math.unit(11, "miles")
  13060. },
  13061. ]
  13062. ))
  13063. characterMakers.push(() => makeCharacter(
  13064. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13065. {
  13066. front: {
  13067. height: math.unit(7 + 4 / 12, "feet"),
  13068. weight: math.unit(500, "lb"),
  13069. name: "Front",
  13070. image: {
  13071. source: "./media/characters/regena-maxwell/front.svg",
  13072. extra: 3115 / 2770,
  13073. bottom: 0.02
  13074. }
  13075. },
  13076. },
  13077. [
  13078. {
  13079. name: "Normal",
  13080. height: math.unit(7 + 4 / 12, "feet"),
  13081. default: true
  13082. },
  13083. {
  13084. name: "Macro",
  13085. height: math.unit(220, "feet")
  13086. },
  13087. {
  13088. name: "Megamacro",
  13089. height: math.unit(11, "miles")
  13090. },
  13091. ]
  13092. ))
  13093. characterMakers.push(() => makeCharacter(
  13094. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13095. {
  13096. front: {
  13097. height: math.unit(6, "feet"),
  13098. weight: math.unit(150, "lb"),
  13099. name: "Front",
  13100. image: {
  13101. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13102. extra: 860 / 690,
  13103. bottom: 0.03
  13104. }
  13105. },
  13106. },
  13107. [
  13108. {
  13109. name: "Normal",
  13110. height: math.unit(1.7, "meters"),
  13111. default: true
  13112. },
  13113. ]
  13114. ))
  13115. characterMakers.push(() => makeCharacter(
  13116. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13117. {
  13118. front: {
  13119. height: math.unit(6, "feet"),
  13120. weight: math.unit(150, "lb"),
  13121. name: "Front",
  13122. image: {
  13123. source: "./media/characters/quilly/front.svg",
  13124. extra: 890 / 776
  13125. }
  13126. },
  13127. },
  13128. [
  13129. {
  13130. name: "Gigamacro",
  13131. height: math.unit(404090, "miles"),
  13132. default: true
  13133. },
  13134. ]
  13135. ))
  13136. characterMakers.push(() => makeCharacter(
  13137. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13138. {
  13139. front: {
  13140. height: math.unit(7 + 8 / 12, "feet"),
  13141. weight: math.unit(350, "lb"),
  13142. name: "Front",
  13143. image: {
  13144. source: "./media/characters/tempest/front.svg",
  13145. extra: 1175 / 1086,
  13146. bottom: 0.02
  13147. }
  13148. },
  13149. },
  13150. [
  13151. {
  13152. name: "Normal",
  13153. height: math.unit(7 + 8 / 12, "feet"),
  13154. default: true
  13155. },
  13156. ]
  13157. ))
  13158. characterMakers.push(() => makeCharacter(
  13159. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13160. {
  13161. side: {
  13162. height: math.unit(4 + 5 / 12, "feet"),
  13163. weight: math.unit(80, "lb"),
  13164. name: "Side",
  13165. image: {
  13166. source: "./media/characters/rodger/side.svg",
  13167. extra: 1235 / 1118
  13168. }
  13169. },
  13170. },
  13171. [
  13172. {
  13173. name: "Micro",
  13174. height: math.unit(1, "inch")
  13175. },
  13176. {
  13177. name: "Normal",
  13178. height: math.unit(4 + 5 / 12, "feet"),
  13179. default: true
  13180. },
  13181. {
  13182. name: "Macro",
  13183. height: math.unit(120, "feet")
  13184. },
  13185. ]
  13186. ))
  13187. characterMakers.push(() => makeCharacter(
  13188. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13189. {
  13190. front: {
  13191. height: math.unit(6, "feet"),
  13192. weight: math.unit(150, "lb"),
  13193. name: "Front",
  13194. image: {
  13195. source: "./media/characters/danyel/front.svg",
  13196. extra: 1185 / 1123,
  13197. bottom: 0.05
  13198. }
  13199. },
  13200. },
  13201. [
  13202. {
  13203. name: "Shrunken",
  13204. height: math.unit(0.5, "mm")
  13205. },
  13206. {
  13207. name: "Micro",
  13208. height: math.unit(1, "mm"),
  13209. default: true
  13210. },
  13211. {
  13212. name: "Upsized",
  13213. height: math.unit(5 + 5 / 12, "feet")
  13214. },
  13215. ]
  13216. ))
  13217. characterMakers.push(() => makeCharacter(
  13218. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13219. {
  13220. front: {
  13221. height: math.unit(5 + 6 / 12, "feet"),
  13222. weight: math.unit(200, "lb"),
  13223. name: "Front",
  13224. image: {
  13225. source: "./media/characters/vivian-bijoux/front.svg",
  13226. extra: 1,
  13227. bottom: 0.072
  13228. }
  13229. },
  13230. },
  13231. [
  13232. {
  13233. name: "Normal",
  13234. height: math.unit(5 + 6 / 12, "feet"),
  13235. default: true
  13236. },
  13237. {
  13238. name: "Bad Dream",
  13239. height: math.unit(500, "feet")
  13240. },
  13241. {
  13242. name: "Nightmare",
  13243. height: math.unit(500, "miles")
  13244. },
  13245. ]
  13246. ))
  13247. characterMakers.push(() => makeCharacter(
  13248. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13249. {
  13250. front: {
  13251. height: math.unit(6 + 1 / 12, "feet"),
  13252. weight: math.unit(260, "lb"),
  13253. name: "Front",
  13254. image: {
  13255. source: "./media/characters/zeta/front.svg",
  13256. extra: 1968 / 1889,
  13257. bottom: 0.06
  13258. }
  13259. },
  13260. back: {
  13261. height: math.unit(6 + 1 / 12, "feet"),
  13262. weight: math.unit(260, "lb"),
  13263. name: "Back",
  13264. image: {
  13265. source: "./media/characters/zeta/back.svg",
  13266. extra: 1944 / 1858,
  13267. bottom: 0.03
  13268. }
  13269. },
  13270. hand: {
  13271. height: math.unit(1.112, "feet"),
  13272. name: "Hand",
  13273. image: {
  13274. source: "./media/characters/zeta/hand.svg"
  13275. }
  13276. },
  13277. foot: {
  13278. height: math.unit(1.48, "feet"),
  13279. name: "Foot",
  13280. image: {
  13281. source: "./media/characters/zeta/foot.svg"
  13282. }
  13283. },
  13284. },
  13285. [
  13286. {
  13287. name: "Micro",
  13288. height: math.unit(6, "inches")
  13289. },
  13290. {
  13291. name: "Normal",
  13292. height: math.unit(6 + 1 / 12, "feet"),
  13293. default: true
  13294. },
  13295. {
  13296. name: "Macro",
  13297. height: math.unit(20, "feet")
  13298. },
  13299. ]
  13300. ))
  13301. characterMakers.push(() => makeCharacter(
  13302. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13303. {
  13304. front: {
  13305. height: math.unit(6, "feet"),
  13306. weight: math.unit(150, "lb"),
  13307. name: "Front",
  13308. image: {
  13309. source: "./media/characters/jamie-larsen/front.svg",
  13310. extra: 962 / 933,
  13311. bottom: 0.02
  13312. }
  13313. },
  13314. back: {
  13315. height: math.unit(6, "feet"),
  13316. weight: math.unit(150, "lb"),
  13317. name: "Back",
  13318. image: {
  13319. source: "./media/characters/jamie-larsen/back.svg",
  13320. extra: 997 / 946
  13321. }
  13322. },
  13323. },
  13324. [
  13325. {
  13326. name: "Macro",
  13327. height: math.unit(28 + 7 / 12, "feet"),
  13328. default: true
  13329. },
  13330. {
  13331. name: "Macro+",
  13332. height: math.unit(180, "feet")
  13333. },
  13334. {
  13335. name: "Megamacro",
  13336. height: math.unit(10, "miles")
  13337. },
  13338. {
  13339. name: "Gigamacro",
  13340. height: math.unit(200000, "miles")
  13341. },
  13342. ]
  13343. ))
  13344. characterMakers.push(() => makeCharacter(
  13345. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13346. {
  13347. front: {
  13348. height: math.unit(6, "feet"),
  13349. weight: math.unit(120, "lb"),
  13350. name: "Front",
  13351. image: {
  13352. source: "./media/characters/vance/front.svg",
  13353. extra: 1980 / 1890,
  13354. bottom: 0.09
  13355. }
  13356. },
  13357. back: {
  13358. height: math.unit(6, "feet"),
  13359. weight: math.unit(120, "lb"),
  13360. name: "Back",
  13361. image: {
  13362. source: "./media/characters/vance/back.svg",
  13363. extra: 2081 / 1994,
  13364. bottom: 0.014
  13365. }
  13366. },
  13367. hand: {
  13368. height: math.unit(0.88, "feet"),
  13369. name: "Hand",
  13370. image: {
  13371. source: "./media/characters/vance/hand.svg"
  13372. }
  13373. },
  13374. foot: {
  13375. height: math.unit(0.64, "feet"),
  13376. name: "Foot",
  13377. image: {
  13378. source: "./media/characters/vance/foot.svg"
  13379. }
  13380. },
  13381. },
  13382. [
  13383. {
  13384. name: "Small",
  13385. height: math.unit(90, "feet"),
  13386. default: true
  13387. },
  13388. {
  13389. name: "Macro",
  13390. height: math.unit(100, "meters")
  13391. },
  13392. {
  13393. name: "Megamacro",
  13394. height: math.unit(15, "miles")
  13395. },
  13396. ]
  13397. ))
  13398. characterMakers.push(() => makeCharacter(
  13399. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13400. {
  13401. front: {
  13402. height: math.unit(6, "feet"),
  13403. weight: math.unit(180, "lb"),
  13404. name: "Front",
  13405. image: {
  13406. source: "./media/characters/xochitl/front.svg",
  13407. extra: 2297 / 2261,
  13408. bottom: 0.065
  13409. }
  13410. },
  13411. back: {
  13412. height: math.unit(6, "feet"),
  13413. weight: math.unit(180, "lb"),
  13414. name: "Back",
  13415. image: {
  13416. source: "./media/characters/xochitl/back.svg",
  13417. extra: 2386 / 2354,
  13418. bottom: 0.01
  13419. }
  13420. },
  13421. foot: {
  13422. height: math.unit(6 / 5 * 1.15, "feet"),
  13423. weight: math.unit(150, "lb"),
  13424. name: "Foot",
  13425. image: {
  13426. source: "./media/characters/xochitl/foot.svg"
  13427. }
  13428. },
  13429. },
  13430. [
  13431. {
  13432. name: "Macro",
  13433. height: math.unit(80, "feet")
  13434. },
  13435. {
  13436. name: "Macro+",
  13437. height: math.unit(400, "feet"),
  13438. default: true
  13439. },
  13440. {
  13441. name: "Gigamacro",
  13442. height: math.unit(80000, "miles")
  13443. },
  13444. {
  13445. name: "Gigamacro+",
  13446. height: math.unit(400000, "miles")
  13447. },
  13448. {
  13449. name: "Teramacro",
  13450. height: math.unit(300, "AU")
  13451. },
  13452. ]
  13453. ))
  13454. characterMakers.push(() => makeCharacter(
  13455. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13456. {
  13457. front: {
  13458. height: math.unit(6, "feet"),
  13459. weight: math.unit(150, "lb"),
  13460. name: "Front",
  13461. image: {
  13462. source: "./media/characters/vincent/front.svg",
  13463. extra: 1130 / 1080,
  13464. bottom: 0.055
  13465. }
  13466. },
  13467. beak: {
  13468. height: math.unit(6 * 0.1, "feet"),
  13469. name: "Beak",
  13470. image: {
  13471. source: "./media/characters/vincent/beak.svg"
  13472. }
  13473. },
  13474. hand: {
  13475. height: math.unit(6 * 0.85, "feet"),
  13476. weight: math.unit(150, "lb"),
  13477. name: "Hand",
  13478. image: {
  13479. source: "./media/characters/vincent/hand.svg"
  13480. }
  13481. },
  13482. foot: {
  13483. height: math.unit(6 * 0.19, "feet"),
  13484. weight: math.unit(150, "lb"),
  13485. name: "Foot",
  13486. image: {
  13487. source: "./media/characters/vincent/foot.svg"
  13488. }
  13489. },
  13490. },
  13491. [
  13492. {
  13493. name: "Base",
  13494. height: math.unit(6 + 5 / 12, "feet"),
  13495. default: true
  13496. },
  13497. {
  13498. name: "Macro",
  13499. height: math.unit(300, "feet")
  13500. },
  13501. {
  13502. name: "Megamacro",
  13503. height: math.unit(2, "miles")
  13504. },
  13505. {
  13506. name: "Gigamacro",
  13507. height: math.unit(1000, "miles")
  13508. },
  13509. ]
  13510. ))
  13511. characterMakers.push(() => makeCharacter(
  13512. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13513. {
  13514. front: {
  13515. height: math.unit(2, "meters"),
  13516. weight: math.unit(500, "kg"),
  13517. name: "Front",
  13518. image: {
  13519. source: "./media/characters/coatl/front.svg",
  13520. extra: 3948 / 3500,
  13521. bottom: 0.082
  13522. }
  13523. },
  13524. },
  13525. [
  13526. {
  13527. name: "Normal",
  13528. height: math.unit(4, "meters")
  13529. },
  13530. {
  13531. name: "Macro",
  13532. height: math.unit(100, "meters"),
  13533. default: true
  13534. },
  13535. {
  13536. name: "Macro+",
  13537. height: math.unit(300, "meters")
  13538. },
  13539. {
  13540. name: "Megamacro",
  13541. height: math.unit(3, "gigameters")
  13542. },
  13543. {
  13544. name: "Megamacro+",
  13545. height: math.unit(300, "terameters")
  13546. },
  13547. {
  13548. name: "Megamacro++",
  13549. height: math.unit(3, "lightyears")
  13550. },
  13551. ]
  13552. ))
  13553. characterMakers.push(() => makeCharacter(
  13554. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13555. {
  13556. front: {
  13557. height: math.unit(6, "feet"),
  13558. weight: math.unit(50, "kg"),
  13559. name: "front",
  13560. image: {
  13561. source: "./media/characters/shiroryu/front.svg",
  13562. extra: 1990 / 1935
  13563. }
  13564. },
  13565. },
  13566. [
  13567. {
  13568. name: "Mortal Mingling",
  13569. height: math.unit(3, "meters")
  13570. },
  13571. {
  13572. name: "Kaiju-ish",
  13573. height: math.unit(250, "meters")
  13574. },
  13575. {
  13576. name: "Somewhat Godly",
  13577. height: math.unit(400, "km"),
  13578. default: true
  13579. },
  13580. {
  13581. name: "Planetary",
  13582. height: math.unit(300, "megameters")
  13583. },
  13584. {
  13585. name: "Galaxy-dwarfing",
  13586. height: math.unit(450, "kiloparsecs")
  13587. },
  13588. {
  13589. name: "Universe Eater",
  13590. height: math.unit(150, "gigaparsecs")
  13591. },
  13592. {
  13593. name: "Almost Immeasurable",
  13594. height: math.unit(1.3e266, "yottaparsecs")
  13595. },
  13596. ]
  13597. ))
  13598. characterMakers.push(() => makeCharacter(
  13599. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13600. {
  13601. front: {
  13602. height: math.unit(6, "feet"),
  13603. weight: math.unit(150, "lb"),
  13604. name: "Front",
  13605. image: {
  13606. source: "./media/characters/umeko/front.svg",
  13607. extra: 1,
  13608. bottom: 0.019
  13609. }
  13610. },
  13611. frontArmored: {
  13612. height: math.unit(6, "feet"),
  13613. weight: math.unit(150, "lb"),
  13614. name: "Front (Armored)",
  13615. image: {
  13616. source: "./media/characters/umeko/front-armored.svg",
  13617. extra: 1,
  13618. bottom: 0.021
  13619. }
  13620. },
  13621. },
  13622. [
  13623. {
  13624. name: "Macro",
  13625. height: math.unit(220, "feet"),
  13626. default: true
  13627. },
  13628. {
  13629. name: "Guardian Dragon",
  13630. height: math.unit(50, "miles")
  13631. },
  13632. {
  13633. name: "Cosmic",
  13634. height: math.unit(800000, "miles")
  13635. },
  13636. ]
  13637. ))
  13638. characterMakers.push(() => makeCharacter(
  13639. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13640. {
  13641. front: {
  13642. height: math.unit(6, "feet"),
  13643. weight: math.unit(150, "lb"),
  13644. name: "Front",
  13645. image: {
  13646. source: "./media/characters/cassidy/front.svg",
  13647. extra: 1,
  13648. bottom: 0.043
  13649. }
  13650. },
  13651. },
  13652. [
  13653. {
  13654. name: "Canon Height",
  13655. height: math.unit(120, "feet"),
  13656. default: true
  13657. },
  13658. {
  13659. name: "Macro+",
  13660. height: math.unit(400, "feet")
  13661. },
  13662. {
  13663. name: "Macro++",
  13664. height: math.unit(4000, "feet")
  13665. },
  13666. {
  13667. name: "Megamacro",
  13668. height: math.unit(3, "miles")
  13669. },
  13670. ]
  13671. ))
  13672. characterMakers.push(() => makeCharacter(
  13673. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13674. {
  13675. front: {
  13676. height: math.unit(6, "feet"),
  13677. weight: math.unit(150, "lb"),
  13678. name: "Front",
  13679. image: {
  13680. source: "./media/characters/isaac/front.svg",
  13681. extra: 896 / 815,
  13682. bottom: 0.11
  13683. }
  13684. },
  13685. },
  13686. [
  13687. {
  13688. name: "Human Size",
  13689. height: math.unit(8, "feet"),
  13690. default: true
  13691. },
  13692. {
  13693. name: "Macro",
  13694. height: math.unit(400, "feet")
  13695. },
  13696. {
  13697. name: "Megamacro",
  13698. height: math.unit(50, "miles")
  13699. },
  13700. {
  13701. name: "Canon Height",
  13702. height: math.unit(200, "AU")
  13703. },
  13704. ]
  13705. ))
  13706. characterMakers.push(() => makeCharacter(
  13707. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13708. {
  13709. front: {
  13710. height: math.unit(6, "feet"),
  13711. weight: math.unit(72, "kg"),
  13712. name: "Front",
  13713. image: {
  13714. source: "./media/characters/sleekit/front.svg",
  13715. extra: 4693 / 4487,
  13716. bottom: 0.012
  13717. }
  13718. },
  13719. },
  13720. [
  13721. {
  13722. name: "Minimum Height",
  13723. height: math.unit(10, "meters")
  13724. },
  13725. {
  13726. name: "Smaller",
  13727. height: math.unit(25, "meters")
  13728. },
  13729. {
  13730. name: "Larger",
  13731. height: math.unit(38, "meters"),
  13732. default: true
  13733. },
  13734. {
  13735. name: "Maximum height",
  13736. height: math.unit(100, "meters")
  13737. },
  13738. ]
  13739. ))
  13740. characterMakers.push(() => makeCharacter(
  13741. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13742. {
  13743. front: {
  13744. height: math.unit(6, "feet"),
  13745. weight: math.unit(150, "lb"),
  13746. name: "Front",
  13747. image: {
  13748. source: "./media/characters/nillia/front.svg",
  13749. extra: 2195 / 2037,
  13750. bottom: 0.005
  13751. }
  13752. },
  13753. back: {
  13754. height: math.unit(6, "feet"),
  13755. weight: math.unit(150, "lb"),
  13756. name: "Back",
  13757. image: {
  13758. source: "./media/characters/nillia/back.svg",
  13759. extra: 2195 / 2037,
  13760. bottom: 0.005
  13761. }
  13762. },
  13763. },
  13764. [
  13765. {
  13766. name: "Canon Height",
  13767. height: math.unit(489, "feet"),
  13768. default: true
  13769. }
  13770. ]
  13771. ))
  13772. characterMakers.push(() => makeCharacter(
  13773. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13774. {
  13775. front: {
  13776. height: math.unit(6, "feet"),
  13777. weight: math.unit(150, "lb"),
  13778. name: "Front",
  13779. image: {
  13780. source: "./media/characters/mesmyriza/front.svg",
  13781. extra: 2067 / 1784,
  13782. bottom: 0.035
  13783. }
  13784. },
  13785. foot: {
  13786. height: math.unit(6 / (250 / 35), "feet"),
  13787. name: "Foot",
  13788. image: {
  13789. source: "./media/characters/mesmyriza/foot.svg"
  13790. }
  13791. },
  13792. },
  13793. [
  13794. {
  13795. name: "Macro",
  13796. height: math.unit(457, "meters"),
  13797. default: true
  13798. },
  13799. {
  13800. name: "Megamacro",
  13801. height: math.unit(8, "megameters")
  13802. },
  13803. ]
  13804. ))
  13805. characterMakers.push(() => makeCharacter(
  13806. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13807. {
  13808. front: {
  13809. height: math.unit(6, "feet"),
  13810. weight: math.unit(250, "lb"),
  13811. name: "Front",
  13812. image: {
  13813. source: "./media/characters/saudade/front.svg",
  13814. extra: 1172 / 1139,
  13815. bottom: 0.035
  13816. }
  13817. },
  13818. },
  13819. [
  13820. {
  13821. name: "Micro",
  13822. height: math.unit(3, "inches")
  13823. },
  13824. {
  13825. name: "Normal",
  13826. height: math.unit(6, "feet"),
  13827. default: true
  13828. },
  13829. {
  13830. name: "Macro",
  13831. height: math.unit(50, "feet")
  13832. },
  13833. {
  13834. name: "Megamacro",
  13835. height: math.unit(2800, "feet")
  13836. },
  13837. ]
  13838. ))
  13839. characterMakers.push(() => makeCharacter(
  13840. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13841. {
  13842. front: {
  13843. height: math.unit(5 + 4 / 12, "feet"),
  13844. weight: math.unit(100, "lb"),
  13845. name: "Front",
  13846. image: {
  13847. source: "./media/characters/keireer/front.svg",
  13848. extra: 716 / 666,
  13849. bottom: 0.05
  13850. }
  13851. },
  13852. },
  13853. [
  13854. {
  13855. name: "Normal",
  13856. height: math.unit(5 + 4 / 12, "feet"),
  13857. default: true
  13858. },
  13859. ]
  13860. ))
  13861. characterMakers.push(() => makeCharacter(
  13862. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13863. {
  13864. front: {
  13865. height: math.unit(6, "feet"),
  13866. weight: math.unit(90, "kg"),
  13867. name: "Front",
  13868. image: {
  13869. source: "./media/characters/mirja/front.svg",
  13870. extra: 1789 / 1683,
  13871. bottom: 0.05
  13872. }
  13873. },
  13874. frontDressed: {
  13875. height: math.unit(6, "feet"),
  13876. weight: math.unit(90, "lb"),
  13877. name: "Front (Dressed)",
  13878. image: {
  13879. source: "./media/characters/mirja/front-dressed.svg",
  13880. extra: 1789 / 1683,
  13881. bottom: 0.05
  13882. }
  13883. },
  13884. back: {
  13885. height: math.unit(6, "feet"),
  13886. weight: math.unit(90, "lb"),
  13887. name: "Back",
  13888. image: {
  13889. source: "./media/characters/mirja/back.svg",
  13890. extra: 953 / 917,
  13891. bottom: 0.017
  13892. }
  13893. },
  13894. },
  13895. [
  13896. {
  13897. name: "\"Incognito\"",
  13898. height: math.unit(3, "meters")
  13899. },
  13900. {
  13901. name: "Strolling Size",
  13902. height: math.unit(15, "km")
  13903. },
  13904. {
  13905. name: "Larger Strolling Size",
  13906. height: math.unit(400, "km")
  13907. },
  13908. {
  13909. name: "Preferred Size",
  13910. height: math.unit(5000, "km")
  13911. },
  13912. {
  13913. name: "True Size",
  13914. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13915. default: true
  13916. },
  13917. ]
  13918. ))
  13919. characterMakers.push(() => makeCharacter(
  13920. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13921. {
  13922. front: {
  13923. height: math.unit(15, "feet"),
  13924. weight: math.unit(880, "kg"),
  13925. name: "Front",
  13926. image: {
  13927. source: "./media/characters/nightraver/front.svg",
  13928. extra: 2444 / 2160,
  13929. bottom: 0.027
  13930. }
  13931. },
  13932. back: {
  13933. height: math.unit(15, "feet"),
  13934. weight: math.unit(880, "kg"),
  13935. name: "Back",
  13936. image: {
  13937. source: "./media/characters/nightraver/back.svg",
  13938. extra: 2309 / 2180,
  13939. bottom: 0.005
  13940. }
  13941. },
  13942. sole: {
  13943. height: math.unit(2.878, "feet"),
  13944. name: "Sole",
  13945. image: {
  13946. source: "./media/characters/nightraver/sole.svg"
  13947. }
  13948. },
  13949. foot: {
  13950. height: math.unit(2.285, "feet"),
  13951. name: "Foot",
  13952. image: {
  13953. source: "./media/characters/nightraver/foot.svg"
  13954. }
  13955. },
  13956. maw: {
  13957. height: math.unit(2.67, "feet"),
  13958. name: "Maw",
  13959. image: {
  13960. source: "./media/characters/nightraver/maw.svg"
  13961. }
  13962. },
  13963. },
  13964. [
  13965. {
  13966. name: "Micro",
  13967. height: math.unit(1, "cm")
  13968. },
  13969. {
  13970. name: "Normal",
  13971. height: math.unit(15, "feet"),
  13972. default: true
  13973. },
  13974. {
  13975. name: "Macro",
  13976. height: math.unit(300, "feet")
  13977. },
  13978. {
  13979. name: "Megamacro",
  13980. height: math.unit(300, "miles")
  13981. },
  13982. {
  13983. name: "Gigamacro",
  13984. height: math.unit(10000, "miles")
  13985. },
  13986. ]
  13987. ))
  13988. characterMakers.push(() => makeCharacter(
  13989. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13990. {
  13991. side: {
  13992. height: math.unit(2, "inches"),
  13993. weight: math.unit(5, "grams"),
  13994. name: "Side",
  13995. image: {
  13996. source: "./media/characters/arc/side.svg"
  13997. }
  13998. },
  13999. },
  14000. [
  14001. {
  14002. name: "Micro",
  14003. height: math.unit(2, "inches"),
  14004. default: true
  14005. },
  14006. ]
  14007. ))
  14008. characterMakers.push(() => makeCharacter(
  14009. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14010. {
  14011. front: {
  14012. height: math.unit(1.1938, "meters"),
  14013. weight: math.unit(54, "kg"),
  14014. name: "Front",
  14015. image: {
  14016. source: "./media/characters/nebula-shahar/front.svg",
  14017. extra: 1642 / 1436,
  14018. bottom: 0.06
  14019. }
  14020. },
  14021. },
  14022. [
  14023. {
  14024. name: "Megamicro",
  14025. height: math.unit(0.3, "mm")
  14026. },
  14027. {
  14028. name: "Micro",
  14029. height: math.unit(3, "cm")
  14030. },
  14031. {
  14032. name: "Normal",
  14033. height: math.unit(138, "cm"),
  14034. default: true
  14035. },
  14036. {
  14037. name: "Macro",
  14038. height: math.unit(30, "m")
  14039. },
  14040. ]
  14041. ))
  14042. characterMakers.push(() => makeCharacter(
  14043. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14044. {
  14045. front: {
  14046. height: math.unit(5.24, "feet"),
  14047. weight: math.unit(150, "lb"),
  14048. name: "Front",
  14049. image: {
  14050. source: "./media/characters/shayla/front.svg",
  14051. extra: 1512 / 1414,
  14052. bottom: 0.01
  14053. }
  14054. },
  14055. back: {
  14056. height: math.unit(5.24, "feet"),
  14057. weight: math.unit(150, "lb"),
  14058. name: "Back",
  14059. image: {
  14060. source: "./media/characters/shayla/back.svg",
  14061. extra: 1512 / 1414
  14062. }
  14063. },
  14064. hand: {
  14065. height: math.unit(0.7781496062992126, "feet"),
  14066. name: "Hand",
  14067. image: {
  14068. source: "./media/characters/shayla/hand.svg"
  14069. }
  14070. },
  14071. foot: {
  14072. height: math.unit(1.4206036745406823, "feet"),
  14073. name: "Foot",
  14074. image: {
  14075. source: "./media/characters/shayla/foot.svg"
  14076. }
  14077. },
  14078. },
  14079. [
  14080. {
  14081. name: "Micro",
  14082. height: math.unit(0.32, "feet")
  14083. },
  14084. {
  14085. name: "Normal",
  14086. height: math.unit(5.24, "feet"),
  14087. default: true
  14088. },
  14089. {
  14090. name: "Macro",
  14091. height: math.unit(492.12, "feet")
  14092. },
  14093. {
  14094. name: "Megamacro",
  14095. height: math.unit(186.41, "miles")
  14096. },
  14097. ]
  14098. ))
  14099. characterMakers.push(() => makeCharacter(
  14100. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14101. {
  14102. front: {
  14103. height: math.unit(2.2, "m"),
  14104. weight: math.unit(120, "kg"),
  14105. name: "Front",
  14106. image: {
  14107. source: "./media/characters/pia-jr/front.svg",
  14108. extra: 1000 / 970,
  14109. bottom: 0.035
  14110. }
  14111. },
  14112. hand: {
  14113. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14114. name: "Hand",
  14115. image: {
  14116. source: "./media/characters/pia-jr/hand.svg"
  14117. }
  14118. },
  14119. paw: {
  14120. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14121. name: "Paw",
  14122. image: {
  14123. source: "./media/characters/pia-jr/paw.svg"
  14124. }
  14125. },
  14126. },
  14127. [
  14128. {
  14129. name: "Micro",
  14130. height: math.unit(1.2, "cm")
  14131. },
  14132. {
  14133. name: "Normal",
  14134. height: math.unit(2.2, "m"),
  14135. default: true
  14136. },
  14137. {
  14138. name: "Macro",
  14139. height: math.unit(180, "m")
  14140. },
  14141. {
  14142. name: "Megamacro",
  14143. height: math.unit(420, "km")
  14144. },
  14145. ]
  14146. ))
  14147. characterMakers.push(() => makeCharacter(
  14148. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14149. {
  14150. front: {
  14151. height: math.unit(2, "m"),
  14152. weight: math.unit(115, "kg"),
  14153. name: "Front",
  14154. image: {
  14155. source: "./media/characters/pia-sr/front.svg",
  14156. extra: 760 / 730,
  14157. bottom: 0.015
  14158. }
  14159. },
  14160. back: {
  14161. height: math.unit(2, "m"),
  14162. weight: math.unit(115, "kg"),
  14163. name: "Back",
  14164. image: {
  14165. source: "./media/characters/pia-sr/back.svg",
  14166. extra: 760 / 730,
  14167. bottom: 0.01
  14168. }
  14169. },
  14170. hand: {
  14171. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14172. name: "Hand",
  14173. image: {
  14174. source: "./media/characters/pia-sr/hand.svg"
  14175. }
  14176. },
  14177. foot: {
  14178. height: math.unit(1.83, "feet"),
  14179. name: "Foot",
  14180. image: {
  14181. source: "./media/characters/pia-sr/foot.svg"
  14182. }
  14183. },
  14184. },
  14185. [
  14186. {
  14187. name: "Micro",
  14188. height: math.unit(88, "mm")
  14189. },
  14190. {
  14191. name: "Normal",
  14192. height: math.unit(2, "m"),
  14193. default: true
  14194. },
  14195. {
  14196. name: "Macro",
  14197. height: math.unit(200, "m")
  14198. },
  14199. {
  14200. name: "Megamacro",
  14201. height: math.unit(420, "km")
  14202. },
  14203. ]
  14204. ))
  14205. characterMakers.push(() => makeCharacter(
  14206. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14207. {
  14208. front: {
  14209. height: math.unit(8 + 2 / 12, "feet"),
  14210. weight: math.unit(300, "lb"),
  14211. name: "Front",
  14212. image: {
  14213. source: "./media/characters/kibibyte/front.svg",
  14214. extra: 2221 / 2098,
  14215. bottom: 0.04
  14216. }
  14217. },
  14218. },
  14219. [
  14220. {
  14221. name: "Normal",
  14222. height: math.unit(8 + 2 / 12, "feet"),
  14223. default: true
  14224. },
  14225. {
  14226. name: "Socialable Macro",
  14227. height: math.unit(50, "feet")
  14228. },
  14229. {
  14230. name: "Macro",
  14231. height: math.unit(300, "feet")
  14232. },
  14233. {
  14234. name: "Megamacro",
  14235. height: math.unit(500, "miles")
  14236. },
  14237. ]
  14238. ))
  14239. characterMakers.push(() => makeCharacter(
  14240. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14241. {
  14242. front: {
  14243. height: math.unit(6, "feet"),
  14244. weight: math.unit(150, "lb"),
  14245. name: "Front",
  14246. image: {
  14247. source: "./media/characters/felix/front.svg",
  14248. extra: 762 / 722,
  14249. bottom: 0.02
  14250. }
  14251. },
  14252. frontClothed: {
  14253. height: math.unit(6, "feet"),
  14254. weight: math.unit(150, "lb"),
  14255. name: "Front (Clothed)",
  14256. image: {
  14257. source: "./media/characters/felix/front-clothed.svg",
  14258. extra: 762 / 722,
  14259. bottom: 0.02
  14260. }
  14261. },
  14262. },
  14263. [
  14264. {
  14265. name: "Normal",
  14266. height: math.unit(6 + 8 / 12, "feet"),
  14267. default: true
  14268. },
  14269. {
  14270. name: "Macro",
  14271. height: math.unit(2600, "feet")
  14272. },
  14273. {
  14274. name: "Megamacro",
  14275. height: math.unit(450, "miles")
  14276. },
  14277. ]
  14278. ))
  14279. characterMakers.push(() => makeCharacter(
  14280. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14281. {
  14282. front: {
  14283. height: math.unit(6 + 1 / 12, "feet"),
  14284. weight: math.unit(250, "lb"),
  14285. name: "Front",
  14286. image: {
  14287. source: "./media/characters/tobo/front.svg",
  14288. extra: 608 / 586,
  14289. bottom: 0.023
  14290. }
  14291. },
  14292. back: {
  14293. height: math.unit(6 + 1 / 12, "feet"),
  14294. weight: math.unit(250, "lb"),
  14295. name: "Back",
  14296. image: {
  14297. source: "./media/characters/tobo/back.svg",
  14298. extra: 608 / 586
  14299. }
  14300. },
  14301. },
  14302. [
  14303. {
  14304. name: "Nano",
  14305. height: math.unit(2, "nm")
  14306. },
  14307. {
  14308. name: "Megamicro",
  14309. height: math.unit(0.1, "mm")
  14310. },
  14311. {
  14312. name: "Micro",
  14313. height: math.unit(1, "inch"),
  14314. default: true
  14315. },
  14316. {
  14317. name: "Human-sized",
  14318. height: math.unit(6 + 1 / 12, "feet")
  14319. },
  14320. {
  14321. name: "Macro",
  14322. height: math.unit(250, "feet")
  14323. },
  14324. {
  14325. name: "Megamacro",
  14326. height: math.unit(75, "miles")
  14327. },
  14328. {
  14329. name: "Texas-sized",
  14330. height: math.unit(750, "miles")
  14331. },
  14332. {
  14333. name: "Teramacro",
  14334. height: math.unit(50000, "miles")
  14335. },
  14336. ]
  14337. ))
  14338. characterMakers.push(() => makeCharacter(
  14339. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14340. {
  14341. front: {
  14342. height: math.unit(6, "feet"),
  14343. weight: math.unit(269, "lb"),
  14344. name: "Front",
  14345. image: {
  14346. source: "./media/characters/danny-kapowsky/front.svg",
  14347. extra: 766 / 736,
  14348. bottom: 0.044
  14349. }
  14350. },
  14351. back: {
  14352. height: math.unit(6, "feet"),
  14353. weight: math.unit(269, "lb"),
  14354. name: "Back",
  14355. image: {
  14356. source: "./media/characters/danny-kapowsky/back.svg",
  14357. extra: 797 / 760,
  14358. bottom: 0.025
  14359. }
  14360. },
  14361. },
  14362. [
  14363. {
  14364. name: "Macro",
  14365. height: math.unit(150, "feet"),
  14366. default: true
  14367. },
  14368. {
  14369. name: "Macro+",
  14370. height: math.unit(200, "feet")
  14371. },
  14372. {
  14373. name: "Macro++",
  14374. height: math.unit(300, "feet")
  14375. },
  14376. {
  14377. name: "Macro+++",
  14378. height: math.unit(400, "feet")
  14379. },
  14380. ]
  14381. ))
  14382. characterMakers.push(() => makeCharacter(
  14383. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14384. {
  14385. side: {
  14386. height: math.unit(6, "feet"),
  14387. weight: math.unit(170, "lb"),
  14388. name: "Side",
  14389. image: {
  14390. source: "./media/characters/finn/side.svg",
  14391. extra: 1953 / 1807,
  14392. bottom: 0.057
  14393. }
  14394. },
  14395. },
  14396. [
  14397. {
  14398. name: "Megamacro",
  14399. height: math.unit(14445, "feet"),
  14400. default: true
  14401. },
  14402. ]
  14403. ))
  14404. characterMakers.push(() => makeCharacter(
  14405. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14406. {
  14407. front: {
  14408. height: math.unit(5 + 6 / 12, "feet"),
  14409. weight: math.unit(125, "lb"),
  14410. name: "Front",
  14411. image: {
  14412. source: "./media/characters/roy/front.svg",
  14413. extra: 1,
  14414. bottom: 0.11
  14415. }
  14416. },
  14417. },
  14418. [
  14419. {
  14420. name: "Micro",
  14421. height: math.unit(3, "inches"),
  14422. default: true
  14423. },
  14424. {
  14425. name: "Normal",
  14426. height: math.unit(5 + 6 / 12, "feet")
  14427. },
  14428. {
  14429. name: "Lesser Macro",
  14430. height: math.unit(60, "feet")
  14431. },
  14432. {
  14433. name: "Greater Macro",
  14434. height: math.unit(120, "feet")
  14435. },
  14436. ]
  14437. ))
  14438. characterMakers.push(() => makeCharacter(
  14439. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14440. {
  14441. front: {
  14442. height: math.unit(6, "feet"),
  14443. weight: math.unit(100, "lb"),
  14444. name: "Front",
  14445. image: {
  14446. source: "./media/characters/aevsivs/front.svg",
  14447. extra: 1,
  14448. bottom: 0.03
  14449. }
  14450. },
  14451. back: {
  14452. height: math.unit(6, "feet"),
  14453. weight: math.unit(100, "lb"),
  14454. name: "Back",
  14455. image: {
  14456. source: "./media/characters/aevsivs/back.svg"
  14457. }
  14458. },
  14459. },
  14460. [
  14461. {
  14462. name: "Micro",
  14463. height: math.unit(2, "inches"),
  14464. default: true
  14465. },
  14466. {
  14467. name: "Normal",
  14468. height: math.unit(5, "feet")
  14469. },
  14470. ]
  14471. ))
  14472. characterMakers.push(() => makeCharacter(
  14473. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14474. {
  14475. front: {
  14476. height: math.unit(5 + 7 / 12, "feet"),
  14477. weight: math.unit(159, "lb"),
  14478. name: "Front",
  14479. image: {
  14480. source: "./media/characters/hildegard/front.svg",
  14481. extra: 289 / 269,
  14482. bottom: 7.63 / 297.8
  14483. }
  14484. },
  14485. back: {
  14486. height: math.unit(5 + 7 / 12, "feet"),
  14487. weight: math.unit(159, "lb"),
  14488. name: "Back",
  14489. image: {
  14490. source: "./media/characters/hildegard/back.svg",
  14491. extra: 280 / 260,
  14492. bottom: 2.3 / 282
  14493. }
  14494. },
  14495. },
  14496. [
  14497. {
  14498. name: "Normal",
  14499. height: math.unit(5 + 7 / 12, "feet"),
  14500. default: true
  14501. },
  14502. ]
  14503. ))
  14504. characterMakers.push(() => makeCharacter(
  14505. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14506. {
  14507. bernard: {
  14508. height: math.unit(2 + 7 / 12, "feet"),
  14509. weight: math.unit(66, "lb"),
  14510. name: "Bernard",
  14511. rename: true,
  14512. image: {
  14513. source: "./media/characters/bernard-wilder/bernard.svg",
  14514. extra: 192 / 128,
  14515. bottom: 0.05
  14516. }
  14517. },
  14518. wilder: {
  14519. height: math.unit(5 + 8 / 12, "feet"),
  14520. weight: math.unit(143, "lb"),
  14521. name: "Wilder",
  14522. rename: true,
  14523. image: {
  14524. source: "./media/characters/bernard-wilder/wilder.svg",
  14525. extra: 361 / 312,
  14526. bottom: 0.02
  14527. }
  14528. },
  14529. },
  14530. [
  14531. {
  14532. name: "Normal",
  14533. height: math.unit(2 + 7 / 12, "feet"),
  14534. default: true
  14535. },
  14536. ]
  14537. ))
  14538. characterMakers.push(() => makeCharacter(
  14539. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14540. {
  14541. anthro: {
  14542. height: math.unit(6 + 1 / 12, "feet"),
  14543. weight: math.unit(155, "lb"),
  14544. name: "Anthro",
  14545. image: {
  14546. source: "./media/characters/hearth/anthro.svg",
  14547. extra: 260 / 250,
  14548. bottom: 0.02
  14549. }
  14550. },
  14551. feral: {
  14552. height: math.unit(3.78, "feet"),
  14553. weight: math.unit(35, "kg"),
  14554. name: "Feral",
  14555. image: {
  14556. source: "./media/characters/hearth/feral.svg",
  14557. extra: 153 / 135,
  14558. bottom: 0.03
  14559. }
  14560. },
  14561. },
  14562. [
  14563. {
  14564. name: "Normal",
  14565. height: math.unit(6 + 1 / 12, "feet"),
  14566. default: true
  14567. },
  14568. ]
  14569. ))
  14570. characterMakers.push(() => makeCharacter(
  14571. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14572. {
  14573. front: {
  14574. height: math.unit(6, "feet"),
  14575. weight: math.unit(182, "lb"),
  14576. name: "Front",
  14577. image: {
  14578. source: "./media/characters/ingrid/front.svg",
  14579. extra: 294 / 268,
  14580. bottom: 0.027
  14581. }
  14582. },
  14583. },
  14584. [
  14585. {
  14586. name: "Normal",
  14587. height: math.unit(6, "feet"),
  14588. default: true
  14589. },
  14590. ]
  14591. ))
  14592. characterMakers.push(() => makeCharacter(
  14593. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14594. {
  14595. eevee: {
  14596. height: math.unit(2 + 10 / 12, "feet"),
  14597. weight: math.unit(86, "lb"),
  14598. name: "Malgam",
  14599. image: {
  14600. source: "./media/characters/malgam/eevee.svg",
  14601. extra: 218 / 180,
  14602. bottom: 0.2
  14603. }
  14604. },
  14605. sylveon: {
  14606. height: math.unit(4, "feet"),
  14607. weight: math.unit(101, "lb"),
  14608. name: "Future Malgam",
  14609. rename: true,
  14610. image: {
  14611. source: "./media/characters/malgam/sylveon.svg",
  14612. extra: 371 / 325,
  14613. bottom: 0.015
  14614. }
  14615. },
  14616. gigantamax: {
  14617. height: math.unit(50, "feet"),
  14618. name: "Gigantamax Malgam",
  14619. rename: true,
  14620. image: {
  14621. source: "./media/characters/malgam/gigantamax.svg"
  14622. }
  14623. },
  14624. },
  14625. [
  14626. {
  14627. name: "Normal",
  14628. height: math.unit(2 + 10 / 12, "feet"),
  14629. default: true
  14630. },
  14631. ]
  14632. ))
  14633. characterMakers.push(() => makeCharacter(
  14634. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14635. {
  14636. front: {
  14637. height: math.unit(5 + 11 / 12, "feet"),
  14638. weight: math.unit(188, "lb"),
  14639. name: "Front",
  14640. image: {
  14641. source: "./media/characters/fleur/front.svg",
  14642. extra: 309 / 283,
  14643. bottom: 0.007
  14644. }
  14645. },
  14646. },
  14647. [
  14648. {
  14649. name: "Normal",
  14650. height: math.unit(5 + 11 / 12, "feet"),
  14651. default: true
  14652. },
  14653. ]
  14654. ))
  14655. characterMakers.push(() => makeCharacter(
  14656. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14657. {
  14658. front: {
  14659. height: math.unit(5 + 4 / 12, "feet"),
  14660. weight: math.unit(122, "lb"),
  14661. name: "Front",
  14662. image: {
  14663. source: "./media/characters/jude/front.svg",
  14664. extra: 288 / 273,
  14665. bottom: 0.03
  14666. }
  14667. },
  14668. },
  14669. [
  14670. {
  14671. name: "Normal",
  14672. height: math.unit(5 + 4 / 12, "feet"),
  14673. default: true
  14674. },
  14675. ]
  14676. ))
  14677. characterMakers.push(() => makeCharacter(
  14678. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14679. {
  14680. front: {
  14681. height: math.unit(5 + 11 / 12, "feet"),
  14682. weight: math.unit(190, "lb"),
  14683. name: "Front",
  14684. image: {
  14685. source: "./media/characters/seara/front.svg",
  14686. extra: 1,
  14687. bottom: 0.05
  14688. }
  14689. },
  14690. },
  14691. [
  14692. {
  14693. name: "Normal",
  14694. height: math.unit(5 + 11 / 12, "feet"),
  14695. default: true
  14696. },
  14697. ]
  14698. ))
  14699. characterMakers.push(() => makeCharacter(
  14700. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14701. {
  14702. front: {
  14703. height: math.unit(16 + 5 / 12, "feet"),
  14704. weight: math.unit(524, "lb"),
  14705. name: "Front",
  14706. image: {
  14707. source: "./media/characters/caspian/front.svg",
  14708. extra: 1,
  14709. bottom: 0.04
  14710. }
  14711. },
  14712. },
  14713. [
  14714. {
  14715. name: "Normal",
  14716. height: math.unit(16 + 5 / 12, "feet"),
  14717. default: true
  14718. },
  14719. ]
  14720. ))
  14721. characterMakers.push(() => makeCharacter(
  14722. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14723. {
  14724. front: {
  14725. height: math.unit(5 + 7 / 12, "feet"),
  14726. weight: math.unit(170, "lb"),
  14727. name: "Front",
  14728. image: {
  14729. source: "./media/characters/mika/front.svg",
  14730. extra: 1,
  14731. bottom: 0.016
  14732. }
  14733. },
  14734. },
  14735. [
  14736. {
  14737. name: "Normal",
  14738. height: math.unit(5 + 7 / 12, "feet"),
  14739. default: true
  14740. },
  14741. ]
  14742. ))
  14743. characterMakers.push(() => makeCharacter(
  14744. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14745. {
  14746. front: {
  14747. height: math.unit(6 + 2 / 12, "feet"),
  14748. weight: math.unit(268, "lb"),
  14749. name: "Front",
  14750. image: {
  14751. source: "./media/characters/sol/front.svg",
  14752. extra: 247 / 231,
  14753. bottom: 0.05
  14754. }
  14755. },
  14756. },
  14757. [
  14758. {
  14759. name: "Normal",
  14760. height: math.unit(6 + 2 / 12, "feet"),
  14761. default: true
  14762. },
  14763. ]
  14764. ))
  14765. characterMakers.push(() => makeCharacter(
  14766. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14767. {
  14768. buizel: {
  14769. height: math.unit(2 + 5 / 12, "feet"),
  14770. weight: math.unit(87, "lb"),
  14771. name: "Buizel",
  14772. image: {
  14773. source: "./media/characters/umiko/buizel.svg",
  14774. extra: 172 / 157,
  14775. bottom: 0.01
  14776. }
  14777. },
  14778. floatzel: {
  14779. height: math.unit(5 + 9 / 12, "feet"),
  14780. weight: math.unit(250, "lb"),
  14781. name: "Floatzel",
  14782. image: {
  14783. source: "./media/characters/umiko/floatzel.svg",
  14784. extra: 262 / 248
  14785. }
  14786. },
  14787. },
  14788. [
  14789. {
  14790. name: "Normal",
  14791. height: math.unit(2 + 5 / 12, "feet"),
  14792. default: true
  14793. },
  14794. ]
  14795. ))
  14796. characterMakers.push(() => makeCharacter(
  14797. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14798. {
  14799. front: {
  14800. height: math.unit(6 + 2 / 12, "feet"),
  14801. weight: math.unit(146, "lb"),
  14802. name: "Front",
  14803. image: {
  14804. source: "./media/characters/iliac/front.svg",
  14805. extra: 389 / 365,
  14806. bottom: 0.035
  14807. }
  14808. },
  14809. },
  14810. [
  14811. {
  14812. name: "Normal",
  14813. height: math.unit(6 + 2 / 12, "feet"),
  14814. default: true
  14815. },
  14816. ]
  14817. ))
  14818. characterMakers.push(() => makeCharacter(
  14819. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14820. {
  14821. front: {
  14822. height: math.unit(6, "feet"),
  14823. weight: math.unit(170, "lb"),
  14824. name: "Front",
  14825. image: {
  14826. source: "./media/characters/topaz/front.svg",
  14827. extra: 317 / 303,
  14828. bottom: 0.055
  14829. }
  14830. },
  14831. },
  14832. [
  14833. {
  14834. name: "Normal",
  14835. height: math.unit(6, "feet"),
  14836. default: true
  14837. },
  14838. ]
  14839. ))
  14840. characterMakers.push(() => makeCharacter(
  14841. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14842. {
  14843. front: {
  14844. height: math.unit(5 + 11 / 12, "feet"),
  14845. weight: math.unit(144, "lb"),
  14846. name: "Front",
  14847. image: {
  14848. source: "./media/characters/gabriel/front.svg",
  14849. extra: 285 / 262,
  14850. bottom: 0.004
  14851. }
  14852. },
  14853. },
  14854. [
  14855. {
  14856. name: "Normal",
  14857. height: math.unit(5 + 11 / 12, "feet"),
  14858. default: true
  14859. },
  14860. ]
  14861. ))
  14862. characterMakers.push(() => makeCharacter(
  14863. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14864. {
  14865. side: {
  14866. height: math.unit(6 + 5 / 12, "feet"),
  14867. weight: math.unit(300, "lb"),
  14868. name: "Side",
  14869. image: {
  14870. source: "./media/characters/tempest-suicune/side.svg",
  14871. extra: 195 / 154,
  14872. bottom: 0.04
  14873. }
  14874. },
  14875. },
  14876. [
  14877. {
  14878. name: "Normal",
  14879. height: math.unit(6 + 5 / 12, "feet"),
  14880. default: true
  14881. },
  14882. ]
  14883. ))
  14884. characterMakers.push(() => makeCharacter(
  14885. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14886. {
  14887. front: {
  14888. height: math.unit(7 + 2 / 12, "feet"),
  14889. weight: math.unit(322, "lb"),
  14890. name: "Front",
  14891. image: {
  14892. source: "./media/characters/vulcan/front.svg",
  14893. extra: 154 / 147,
  14894. bottom: 0.04
  14895. }
  14896. },
  14897. },
  14898. [
  14899. {
  14900. name: "Normal",
  14901. height: math.unit(7 + 2 / 12, "feet"),
  14902. default: true
  14903. },
  14904. ]
  14905. ))
  14906. characterMakers.push(() => makeCharacter(
  14907. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14908. {
  14909. front: {
  14910. height: math.unit(5 + 10 / 12, "feet"),
  14911. weight: math.unit(264, "lb"),
  14912. name: "Front",
  14913. image: {
  14914. source: "./media/characters/gault/front.svg",
  14915. extra: 161 / 140,
  14916. bottom: 0.028
  14917. }
  14918. },
  14919. },
  14920. [
  14921. {
  14922. name: "Normal",
  14923. height: math.unit(5 + 10 / 12, "feet"),
  14924. default: true
  14925. },
  14926. ]
  14927. ))
  14928. characterMakers.push(() => makeCharacter(
  14929. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14930. {
  14931. front: {
  14932. height: math.unit(6, "feet"),
  14933. weight: math.unit(150, "lb"),
  14934. name: "Front",
  14935. image: {
  14936. source: "./media/characters/shard/front.svg",
  14937. extra: 273 / 238,
  14938. bottom: 0.02
  14939. }
  14940. },
  14941. },
  14942. [
  14943. {
  14944. name: "Normal",
  14945. height: math.unit(3 + 6 / 12, "feet"),
  14946. default: true
  14947. },
  14948. ]
  14949. ))
  14950. characterMakers.push(() => makeCharacter(
  14951. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14952. {
  14953. front: {
  14954. height: math.unit(5 + 11 / 12, "feet"),
  14955. weight: math.unit(146, "lb"),
  14956. name: "Front",
  14957. image: {
  14958. source: "./media/characters/ashe/front.svg",
  14959. extra: 400 / 373,
  14960. bottom: 0.01
  14961. }
  14962. },
  14963. },
  14964. [
  14965. {
  14966. name: "Normal",
  14967. height: math.unit(5 + 11 / 12, "feet"),
  14968. default: true
  14969. },
  14970. ]
  14971. ))
  14972. characterMakers.push(() => makeCharacter(
  14973. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14974. {
  14975. front: {
  14976. height: math.unit(5 + 5 / 12, "feet"),
  14977. weight: math.unit(135, "lb"),
  14978. name: "Front",
  14979. image: {
  14980. source: "./media/characters/beatrix/front.svg",
  14981. extra: 392 / 379,
  14982. bottom: 0.01
  14983. }
  14984. },
  14985. },
  14986. [
  14987. {
  14988. name: "Normal",
  14989. height: math.unit(6, "feet"),
  14990. default: true
  14991. },
  14992. ]
  14993. ))
  14994. characterMakers.push(() => makeCharacter(
  14995. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14996. {
  14997. front: {
  14998. height: math.unit(6, "feet"),
  14999. weight: math.unit(150, "lb"),
  15000. name: "Front",
  15001. image: {
  15002. source: "./media/characters/ignatius/front.svg",
  15003. extra: 245 / 222,
  15004. bottom: 0.01
  15005. }
  15006. },
  15007. },
  15008. [
  15009. {
  15010. name: "Normal",
  15011. height: math.unit(5 + 5 / 12, "feet"),
  15012. default: true
  15013. },
  15014. ]
  15015. ))
  15016. characterMakers.push(() => makeCharacter(
  15017. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15018. {
  15019. front: {
  15020. height: math.unit(6 + 2 / 12, "feet"),
  15021. weight: math.unit(138, "lb"),
  15022. name: "Front",
  15023. image: {
  15024. source: "./media/characters/mei-li/front.svg",
  15025. extra: 237 / 229,
  15026. bottom: 0.03
  15027. }
  15028. },
  15029. },
  15030. [
  15031. {
  15032. name: "Normal",
  15033. height: math.unit(6 + 2 / 12, "feet"),
  15034. default: true
  15035. },
  15036. ]
  15037. ))
  15038. characterMakers.push(() => makeCharacter(
  15039. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15040. {
  15041. front: {
  15042. height: math.unit(2 + 4 / 12, "feet"),
  15043. weight: math.unit(62, "lb"),
  15044. name: "Front",
  15045. image: {
  15046. source: "./media/characters/puru/front.svg",
  15047. extra: 206 / 149,
  15048. bottom: 0.06
  15049. }
  15050. },
  15051. },
  15052. [
  15053. {
  15054. name: "Normal",
  15055. height: math.unit(2 + 4 / 12, "feet"),
  15056. default: true
  15057. },
  15058. ]
  15059. ))
  15060. characterMakers.push(() => makeCharacter(
  15061. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15062. {
  15063. anthro: {
  15064. height: math.unit(5 + 8/12, "feet"),
  15065. weight: math.unit(200, "lb"),
  15066. energyNeed: math.unit(2000, "kcal"),
  15067. name: "Anthro",
  15068. image: {
  15069. source: "./media/characters/kee/anthro.svg",
  15070. extra: 3251/3184,
  15071. bottom: 250/3501
  15072. }
  15073. },
  15074. taur: {
  15075. height: math.unit(11, "feet"),
  15076. weight: math.unit(500, "lb"),
  15077. energyNeed: math.unit(5000, "kcal"),
  15078. name: "Taur",
  15079. image: {
  15080. source: "./media/characters/kee/taur.svg",
  15081. extra: 1362/1320,
  15082. bottom: 83/1445
  15083. }
  15084. },
  15085. },
  15086. [
  15087. {
  15088. name: "Normal",
  15089. height: math.unit(5 + 8/12, "feet"),
  15090. default: true
  15091. },
  15092. {
  15093. name: "Macro",
  15094. height: math.unit(35, "feet")
  15095. },
  15096. ]
  15097. ))
  15098. characterMakers.push(() => makeCharacter(
  15099. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15100. {
  15101. anthro: {
  15102. height: math.unit(7, "feet"),
  15103. weight: math.unit(190, "lb"),
  15104. name: "Anthro",
  15105. image: {
  15106. source: "./media/characters/cobalt-dracha/anthro.svg",
  15107. extra: 231 / 225,
  15108. bottom: 0.04
  15109. }
  15110. },
  15111. feral: {
  15112. height: math.unit(9 + 7 / 12, "feet"),
  15113. weight: math.unit(294, "lb"),
  15114. name: "Feral",
  15115. image: {
  15116. source: "./media/characters/cobalt-dracha/feral.svg",
  15117. extra: 692 / 633,
  15118. bottom: 0.05
  15119. }
  15120. },
  15121. },
  15122. [
  15123. {
  15124. name: "Normal",
  15125. height: math.unit(7, "feet"),
  15126. default: true
  15127. },
  15128. ]
  15129. ))
  15130. characterMakers.push(() => makeCharacter(
  15131. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15132. {
  15133. fallen: {
  15134. height: math.unit(11 + 8 / 12, "feet"),
  15135. weight: math.unit(485, "lb"),
  15136. name: "Java (Fallen)",
  15137. rename: true,
  15138. image: {
  15139. source: "./media/characters/java/fallen.svg",
  15140. extra: 226 / 208,
  15141. bottom: 0.005
  15142. }
  15143. },
  15144. godkin: {
  15145. height: math.unit(10 + 6 / 12, "feet"),
  15146. weight: math.unit(328, "lb"),
  15147. name: "Java (Godkin)",
  15148. rename: true,
  15149. image: {
  15150. source: "./media/characters/java/godkin.svg",
  15151. extra: 270 / 262,
  15152. bottom: 0.02
  15153. }
  15154. },
  15155. },
  15156. [
  15157. {
  15158. name: "Normal",
  15159. height: math.unit(11 + 8 / 12, "feet"),
  15160. default: true
  15161. },
  15162. ]
  15163. ))
  15164. characterMakers.push(() => makeCharacter(
  15165. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15166. {
  15167. front: {
  15168. height: math.unit(7 + 8 / 12, "feet"),
  15169. weight: math.unit(320, "lb"),
  15170. name: "Front",
  15171. image: {
  15172. source: "./media/characters/skoll/front.svg",
  15173. extra: 232 / 220,
  15174. bottom: 0.02
  15175. }
  15176. },
  15177. },
  15178. [
  15179. {
  15180. name: "Normal",
  15181. height: math.unit(7 + 8 / 12, "feet"),
  15182. default: true
  15183. },
  15184. ]
  15185. ))
  15186. characterMakers.push(() => makeCharacter(
  15187. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15188. {
  15189. front: {
  15190. height: math.unit(5 + 9 / 12, "feet"),
  15191. weight: math.unit(170, "lb"),
  15192. name: "Front",
  15193. image: {
  15194. source: "./media/characters/purna/front.svg",
  15195. extra: 239 / 229,
  15196. bottom: 0.01
  15197. }
  15198. },
  15199. },
  15200. [
  15201. {
  15202. name: "Normal",
  15203. height: math.unit(5 + 9 / 12, "feet"),
  15204. default: true
  15205. },
  15206. ]
  15207. ))
  15208. characterMakers.push(() => makeCharacter(
  15209. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15210. {
  15211. front: {
  15212. height: math.unit(5 + 9 / 12, "feet"),
  15213. weight: math.unit(142, "lb"),
  15214. name: "Front",
  15215. image: {
  15216. source: "./media/characters/kuva/front.svg",
  15217. extra: 281 / 271,
  15218. bottom: 0.006
  15219. }
  15220. },
  15221. },
  15222. [
  15223. {
  15224. name: "Normal",
  15225. height: math.unit(5 + 9 / 12, "feet"),
  15226. default: true
  15227. },
  15228. ]
  15229. ))
  15230. characterMakers.push(() => makeCharacter(
  15231. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15232. {
  15233. anthro: {
  15234. height: math.unit(9 + 2 / 12, "feet"),
  15235. weight: math.unit(270, "lb"),
  15236. name: "Anthro",
  15237. image: {
  15238. source: "./media/characters/embra/anthro.svg",
  15239. extra: 200 / 187,
  15240. bottom: 0.02
  15241. }
  15242. },
  15243. feral: {
  15244. height: math.unit(18 + 8 / 12, "feet"),
  15245. weight: math.unit(576, "lb"),
  15246. name: "Feral",
  15247. image: {
  15248. source: "./media/characters/embra/feral.svg",
  15249. extra: 152 / 137,
  15250. bottom: 0.037
  15251. }
  15252. },
  15253. },
  15254. [
  15255. {
  15256. name: "Normal",
  15257. height: math.unit(9 + 2 / 12, "feet"),
  15258. default: true
  15259. },
  15260. ]
  15261. ))
  15262. characterMakers.push(() => makeCharacter(
  15263. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15264. {
  15265. anthro: {
  15266. height: math.unit(10 + 9 / 12, "feet"),
  15267. weight: math.unit(224, "lb"),
  15268. name: "Anthro",
  15269. image: {
  15270. source: "./media/characters/grottos/anthro.svg",
  15271. extra: 350 / 332,
  15272. bottom: 0.045
  15273. }
  15274. },
  15275. feral: {
  15276. height: math.unit(20 + 7 / 12, "feet"),
  15277. weight: math.unit(629, "lb"),
  15278. name: "Feral",
  15279. image: {
  15280. source: "./media/characters/grottos/feral.svg",
  15281. extra: 207 / 190,
  15282. bottom: 0.05
  15283. }
  15284. },
  15285. },
  15286. [
  15287. {
  15288. name: "Normal",
  15289. height: math.unit(10 + 9 / 12, "feet"),
  15290. default: true
  15291. },
  15292. ]
  15293. ))
  15294. characterMakers.push(() => makeCharacter(
  15295. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15296. {
  15297. anthro: {
  15298. height: math.unit(9 + 6 / 12, "feet"),
  15299. weight: math.unit(298, "lb"),
  15300. name: "Anthro",
  15301. image: {
  15302. source: "./media/characters/frifna/anthro.svg",
  15303. extra: 282 / 269,
  15304. bottom: 0.015
  15305. }
  15306. },
  15307. feral: {
  15308. height: math.unit(16 + 2 / 12, "feet"),
  15309. weight: math.unit(624, "lb"),
  15310. name: "Feral",
  15311. image: {
  15312. source: "./media/characters/frifna/feral.svg"
  15313. }
  15314. },
  15315. },
  15316. [
  15317. {
  15318. name: "Normal",
  15319. height: math.unit(9 + 6 / 12, "feet"),
  15320. default: true
  15321. },
  15322. ]
  15323. ))
  15324. characterMakers.push(() => makeCharacter(
  15325. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15326. {
  15327. front: {
  15328. height: math.unit(6 + 2 / 12, "feet"),
  15329. weight: math.unit(168, "lb"),
  15330. name: "Front",
  15331. image: {
  15332. source: "./media/characters/elise/front.svg",
  15333. extra: 276 / 271
  15334. }
  15335. },
  15336. },
  15337. [
  15338. {
  15339. name: "Normal",
  15340. height: math.unit(6 + 2 / 12, "feet"),
  15341. default: true
  15342. },
  15343. ]
  15344. ))
  15345. characterMakers.push(() => makeCharacter(
  15346. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15347. {
  15348. front: {
  15349. height: math.unit(5 + 10 / 12, "feet"),
  15350. weight: math.unit(210, "lb"),
  15351. name: "Front",
  15352. image: {
  15353. source: "./media/characters/glade/front.svg",
  15354. extra: 258 / 247,
  15355. bottom: 0.008
  15356. }
  15357. },
  15358. },
  15359. [
  15360. {
  15361. name: "Normal",
  15362. height: math.unit(5 + 10 / 12, "feet"),
  15363. default: true
  15364. },
  15365. ]
  15366. ))
  15367. characterMakers.push(() => makeCharacter(
  15368. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15369. {
  15370. front: {
  15371. height: math.unit(5 + 10 / 12, "feet"),
  15372. weight: math.unit(129, "lb"),
  15373. name: "Front",
  15374. image: {
  15375. source: "./media/characters/rina/front.svg",
  15376. extra: 266 / 255,
  15377. bottom: 0.005
  15378. }
  15379. },
  15380. },
  15381. [
  15382. {
  15383. name: "Normal",
  15384. height: math.unit(5 + 10 / 12, "feet"),
  15385. default: true
  15386. },
  15387. ]
  15388. ))
  15389. characterMakers.push(() => makeCharacter(
  15390. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15391. {
  15392. front: {
  15393. height: math.unit(6 + 1 / 12, "feet"),
  15394. weight: math.unit(192, "lb"),
  15395. name: "Front",
  15396. image: {
  15397. source: "./media/characters/veronica/front.svg",
  15398. extra: 319 / 309,
  15399. bottom: 0.005
  15400. }
  15401. },
  15402. },
  15403. [
  15404. {
  15405. name: "Normal",
  15406. height: math.unit(6 + 1 / 12, "feet"),
  15407. default: true
  15408. },
  15409. ]
  15410. ))
  15411. characterMakers.push(() => makeCharacter(
  15412. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15413. {
  15414. front: {
  15415. height: math.unit(9 + 3 / 12, "feet"),
  15416. weight: math.unit(1100, "lb"),
  15417. name: "Front",
  15418. image: {
  15419. source: "./media/characters/braxton/front.svg",
  15420. extra: 1057 / 984,
  15421. bottom: 0.05
  15422. }
  15423. },
  15424. },
  15425. [
  15426. {
  15427. name: "Normal",
  15428. height: math.unit(9 + 3 / 12, "feet")
  15429. },
  15430. {
  15431. name: "Giant",
  15432. height: math.unit(300, "feet"),
  15433. default: true
  15434. },
  15435. {
  15436. name: "Macro",
  15437. height: math.unit(700, "feet")
  15438. },
  15439. {
  15440. name: "Megamacro",
  15441. height: math.unit(6000, "feet")
  15442. },
  15443. ]
  15444. ))
  15445. characterMakers.push(() => makeCharacter(
  15446. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15447. {
  15448. front: {
  15449. height: math.unit(6 + 7 / 12, "feet"),
  15450. weight: math.unit(150, "lb"),
  15451. name: "Front",
  15452. image: {
  15453. source: "./media/characters/blue-feyonics/front.svg",
  15454. extra: 1403 / 1306,
  15455. bottom: 0.047
  15456. }
  15457. },
  15458. },
  15459. [
  15460. {
  15461. name: "Normal",
  15462. height: math.unit(6 + 7 / 12, "feet"),
  15463. default: true
  15464. },
  15465. ]
  15466. ))
  15467. characterMakers.push(() => makeCharacter(
  15468. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15469. {
  15470. front: {
  15471. height: math.unit(1.8, "meters"),
  15472. weight: math.unit(60, "kg"),
  15473. name: "Front",
  15474. image: {
  15475. source: "./media/characters/maxwell/front.svg",
  15476. extra: 2060 / 1873
  15477. }
  15478. },
  15479. },
  15480. [
  15481. {
  15482. name: "Micro",
  15483. height: math.unit(1, "mm")
  15484. },
  15485. {
  15486. name: "Normal",
  15487. height: math.unit(1.8, "meter"),
  15488. default: true
  15489. },
  15490. {
  15491. name: "Macro",
  15492. height: math.unit(30, "meters")
  15493. },
  15494. {
  15495. name: "Megamacro",
  15496. height: math.unit(10, "km")
  15497. },
  15498. ]
  15499. ))
  15500. characterMakers.push(() => makeCharacter(
  15501. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15502. {
  15503. front: {
  15504. height: math.unit(6, "feet"),
  15505. weight: math.unit(150, "lb"),
  15506. name: "Front",
  15507. image: {
  15508. source: "./media/characters/jack/front.svg",
  15509. extra: 1754 / 1640,
  15510. bottom: 0.01
  15511. }
  15512. },
  15513. },
  15514. [
  15515. {
  15516. name: "Normal",
  15517. height: math.unit(80000, "feet"),
  15518. default: true
  15519. },
  15520. {
  15521. name: "Max size",
  15522. height: math.unit(10, "lightyears")
  15523. },
  15524. ]
  15525. ))
  15526. characterMakers.push(() => makeCharacter(
  15527. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15528. {
  15529. upright: {
  15530. height: math.unit(7, "feet"),
  15531. weight: math.unit(170, "lb"),
  15532. name: "Upright",
  15533. image: {
  15534. source: "./media/characters/cafat/upright.svg",
  15535. bottom: 0.01
  15536. }
  15537. },
  15538. uprightFull: {
  15539. height: math.unit(7, "feet"),
  15540. weight: math.unit(170, "lb"),
  15541. name: "Upright (Full)",
  15542. image: {
  15543. source: "./media/characters/cafat/upright-full.svg",
  15544. bottom: 0.01
  15545. }
  15546. },
  15547. side: {
  15548. height: math.unit(5, "feet"),
  15549. weight: math.unit(150, "lb"),
  15550. name: "Side",
  15551. image: {
  15552. source: "./media/characters/cafat/side.svg"
  15553. }
  15554. },
  15555. },
  15556. [
  15557. {
  15558. name: "Small",
  15559. height: math.unit(7, "feet"),
  15560. default: true
  15561. },
  15562. {
  15563. name: "Large",
  15564. height: math.unit(15.5, "feet")
  15565. },
  15566. ]
  15567. ))
  15568. characterMakers.push(() => makeCharacter(
  15569. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15570. {
  15571. front: {
  15572. height: math.unit(6, "feet"),
  15573. weight: math.unit(150, "lb"),
  15574. name: "Front",
  15575. image: {
  15576. source: "./media/characters/verin-raharra/front.svg",
  15577. extra: 5019 / 4835,
  15578. bottom: 0.023
  15579. }
  15580. },
  15581. },
  15582. [
  15583. {
  15584. name: "Normal",
  15585. height: math.unit(7 + 5 / 12, "feet"),
  15586. default: true
  15587. },
  15588. {
  15589. name: "Upsized",
  15590. height: math.unit(20, "feet")
  15591. },
  15592. ]
  15593. ))
  15594. characterMakers.push(() => makeCharacter(
  15595. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15596. {
  15597. front: {
  15598. height: math.unit(7, "feet"),
  15599. weight: math.unit(230, "lb"),
  15600. name: "Front",
  15601. image: {
  15602. source: "./media/characters/nakata/front.svg",
  15603. extra: 1.005,
  15604. bottom: 0.01
  15605. }
  15606. },
  15607. },
  15608. [
  15609. {
  15610. name: "Normal",
  15611. height: math.unit(7, "feet"),
  15612. default: true
  15613. },
  15614. {
  15615. name: "Big",
  15616. height: math.unit(14, "feet")
  15617. },
  15618. {
  15619. name: "Macro",
  15620. height: math.unit(400, "feet")
  15621. },
  15622. ]
  15623. ))
  15624. characterMakers.push(() => makeCharacter(
  15625. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15626. {
  15627. front: {
  15628. height: math.unit(4.91, "feet"),
  15629. weight: math.unit(100, "lb"),
  15630. name: "Front",
  15631. image: {
  15632. source: "./media/characters/lily/front.svg",
  15633. extra: 1585 / 1415,
  15634. bottom: 0.02
  15635. }
  15636. },
  15637. },
  15638. [
  15639. {
  15640. name: "Normal",
  15641. height: math.unit(4.91, "feet"),
  15642. default: true
  15643. },
  15644. ]
  15645. ))
  15646. characterMakers.push(() => makeCharacter(
  15647. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15648. {
  15649. laying: {
  15650. height: math.unit(4 + 4 / 12, "feet"),
  15651. weight: math.unit(600, "lb"),
  15652. name: "Laying",
  15653. image: {
  15654. source: "./media/characters/sheila/laying.svg",
  15655. extra: 1333 / 1265,
  15656. bottom: 0.16
  15657. }
  15658. },
  15659. },
  15660. [
  15661. {
  15662. name: "Normal",
  15663. height: math.unit(4 + 4 / 12, "feet"),
  15664. default: true
  15665. },
  15666. ]
  15667. ))
  15668. characterMakers.push(() => makeCharacter(
  15669. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15670. {
  15671. front: {
  15672. height: math.unit(6, "feet"),
  15673. weight: math.unit(190, "lb"),
  15674. name: "Front",
  15675. image: {
  15676. source: "./media/characters/sax/front.svg",
  15677. extra: 1187 / 973,
  15678. bottom: 0.042
  15679. }
  15680. },
  15681. },
  15682. [
  15683. {
  15684. name: "Micro",
  15685. height: math.unit(4, "inches"),
  15686. default: true
  15687. },
  15688. ]
  15689. ))
  15690. characterMakers.push(() => makeCharacter(
  15691. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15692. {
  15693. front: {
  15694. height: math.unit(6, "feet"),
  15695. weight: math.unit(150, "lb"),
  15696. name: "Front",
  15697. image: {
  15698. source: "./media/characters/pandora/front.svg",
  15699. extra: 2720 / 2556,
  15700. bottom: 0.015
  15701. }
  15702. },
  15703. back: {
  15704. height: math.unit(6, "feet"),
  15705. weight: math.unit(150, "lb"),
  15706. name: "Back",
  15707. image: {
  15708. source: "./media/characters/pandora/back.svg",
  15709. extra: 2720 / 2556,
  15710. bottom: 0.01
  15711. }
  15712. },
  15713. beans: {
  15714. height: math.unit(6 / 8, "feet"),
  15715. name: "Beans",
  15716. image: {
  15717. source: "./media/characters/pandora/beans.svg"
  15718. }
  15719. },
  15720. skirt: {
  15721. height: math.unit(6, "feet"),
  15722. weight: math.unit(150, "lb"),
  15723. name: "Skirt",
  15724. image: {
  15725. source: "./media/characters/pandora/skirt.svg",
  15726. extra: 1622 / 1525,
  15727. bottom: 0.015
  15728. }
  15729. },
  15730. hoodie: {
  15731. height: math.unit(6, "feet"),
  15732. weight: math.unit(150, "lb"),
  15733. name: "Hoodie",
  15734. image: {
  15735. source: "./media/characters/pandora/hoodie.svg",
  15736. extra: 1622 / 1525,
  15737. bottom: 0.015
  15738. }
  15739. },
  15740. casual: {
  15741. height: math.unit(6, "feet"),
  15742. weight: math.unit(150, "lb"),
  15743. name: "Casual",
  15744. image: {
  15745. source: "./media/characters/pandora/casual.svg",
  15746. extra: 1622 / 1525,
  15747. bottom: 0.015
  15748. }
  15749. },
  15750. },
  15751. [
  15752. {
  15753. name: "Normal",
  15754. height: math.unit(6, "feet")
  15755. },
  15756. {
  15757. name: "Big Steppy",
  15758. height: math.unit(1, "km"),
  15759. default: true
  15760. },
  15761. ]
  15762. ))
  15763. characterMakers.push(() => makeCharacter(
  15764. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15765. {
  15766. side: {
  15767. height: math.unit(10, "feet"),
  15768. weight: math.unit(800, "kg"),
  15769. name: "Side",
  15770. image: {
  15771. source: "./media/characters/venio-darcony/side.svg",
  15772. extra: 1373 / 1003,
  15773. bottom: 0.037
  15774. }
  15775. },
  15776. front: {
  15777. height: math.unit(19, "feet"),
  15778. weight: math.unit(800, "kg"),
  15779. name: "Front",
  15780. image: {
  15781. source: "./media/characters/venio-darcony/front.svg"
  15782. }
  15783. },
  15784. back: {
  15785. height: math.unit(19, "feet"),
  15786. weight: math.unit(800, "kg"),
  15787. name: "Back",
  15788. image: {
  15789. source: "./media/characters/venio-darcony/back.svg"
  15790. }
  15791. },
  15792. sideNsfw: {
  15793. height: math.unit(10, "feet"),
  15794. weight: math.unit(800, "kg"),
  15795. name: "Side (NSFW)",
  15796. image: {
  15797. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15798. extra: 1373 / 1003,
  15799. bottom: 0.037
  15800. }
  15801. },
  15802. frontNsfw: {
  15803. height: math.unit(19, "feet"),
  15804. weight: math.unit(800, "kg"),
  15805. name: "Front (NSFW)",
  15806. image: {
  15807. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15808. }
  15809. },
  15810. backNsfw: {
  15811. height: math.unit(19, "feet"),
  15812. weight: math.unit(800, "kg"),
  15813. name: "Back (NSFW)",
  15814. image: {
  15815. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15816. }
  15817. },
  15818. sideArmored: {
  15819. height: math.unit(10, "feet"),
  15820. weight: math.unit(800, "kg"),
  15821. name: "Side (Armored)",
  15822. image: {
  15823. source: "./media/characters/venio-darcony/side-armored.svg",
  15824. extra: 1373 / 1003,
  15825. bottom: 0.037
  15826. }
  15827. },
  15828. frontArmored: {
  15829. height: math.unit(19, "feet"),
  15830. weight: math.unit(900, "kg"),
  15831. name: "Front (Armored)",
  15832. image: {
  15833. source: "./media/characters/venio-darcony/front-armored.svg"
  15834. }
  15835. },
  15836. backArmored: {
  15837. height: math.unit(19, "feet"),
  15838. weight: math.unit(900, "kg"),
  15839. name: "Back (Armored)",
  15840. image: {
  15841. source: "./media/characters/venio-darcony/back-armored.svg"
  15842. }
  15843. },
  15844. sword: {
  15845. height: math.unit(10, "feet"),
  15846. weight: math.unit(50, "lb"),
  15847. name: "Sword",
  15848. image: {
  15849. source: "./media/characters/venio-darcony/sword.svg"
  15850. }
  15851. },
  15852. },
  15853. [
  15854. {
  15855. name: "Normal",
  15856. height: math.unit(10, "feet")
  15857. },
  15858. {
  15859. name: "Macro",
  15860. height: math.unit(130, "feet"),
  15861. default: true
  15862. },
  15863. {
  15864. name: "Macro+",
  15865. height: math.unit(240, "feet")
  15866. },
  15867. ]
  15868. ))
  15869. characterMakers.push(() => makeCharacter(
  15870. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15871. {
  15872. front: {
  15873. height: math.unit(6, "feet"),
  15874. weight: math.unit(150, "lb"),
  15875. name: "Front",
  15876. image: {
  15877. source: "./media/characters/veski/front.svg",
  15878. extra: 1299 / 1225,
  15879. bottom: 0.04
  15880. }
  15881. },
  15882. back: {
  15883. height: math.unit(6, "feet"),
  15884. weight: math.unit(150, "lb"),
  15885. name: "Back",
  15886. image: {
  15887. source: "./media/characters/veski/back.svg",
  15888. extra: 1299 / 1225,
  15889. bottom: 0.008
  15890. }
  15891. },
  15892. maw: {
  15893. height: math.unit(1.5 * 1.21, "feet"),
  15894. name: "Maw",
  15895. image: {
  15896. source: "./media/characters/veski/maw.svg"
  15897. }
  15898. },
  15899. },
  15900. [
  15901. {
  15902. name: "Macro",
  15903. height: math.unit(2, "km"),
  15904. default: true
  15905. },
  15906. ]
  15907. ))
  15908. characterMakers.push(() => makeCharacter(
  15909. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15910. {
  15911. front: {
  15912. height: math.unit(5 + 7 / 12, "feet"),
  15913. name: "Front",
  15914. image: {
  15915. source: "./media/characters/isabelle/front.svg",
  15916. extra: 2130 / 1976,
  15917. bottom: 0.05
  15918. }
  15919. },
  15920. },
  15921. [
  15922. {
  15923. name: "Supermicro",
  15924. height: math.unit(10, "micrometers")
  15925. },
  15926. {
  15927. name: "Micro",
  15928. height: math.unit(1, "inch")
  15929. },
  15930. {
  15931. name: "Tiny",
  15932. height: math.unit(5, "inches")
  15933. },
  15934. {
  15935. name: "Standard",
  15936. height: math.unit(5 + 7 / 12, "inches")
  15937. },
  15938. {
  15939. name: "Macro",
  15940. height: math.unit(80, "meters"),
  15941. default: true
  15942. },
  15943. {
  15944. name: "Megamacro",
  15945. height: math.unit(250, "meters")
  15946. },
  15947. {
  15948. name: "Gigamacro",
  15949. height: math.unit(5, "km")
  15950. },
  15951. {
  15952. name: "Cosmic",
  15953. height: math.unit(2.5e6, "miles")
  15954. },
  15955. ]
  15956. ))
  15957. characterMakers.push(() => makeCharacter(
  15958. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15959. {
  15960. front: {
  15961. height: math.unit(6, "feet"),
  15962. weight: math.unit(150, "lb"),
  15963. name: "Front",
  15964. image: {
  15965. source: "./media/characters/hanzo/front.svg",
  15966. extra: 374 / 344,
  15967. bottom: 0.02
  15968. }
  15969. },
  15970. },
  15971. [
  15972. {
  15973. name: "Normal",
  15974. height: math.unit(8, "feet"),
  15975. default: true
  15976. },
  15977. ]
  15978. ))
  15979. characterMakers.push(() => makeCharacter(
  15980. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15981. {
  15982. front: {
  15983. height: math.unit(7, "feet"),
  15984. weight: math.unit(130, "lb"),
  15985. name: "Front",
  15986. image: {
  15987. source: "./media/characters/anna/front.svg",
  15988. extra: 169 / 145,
  15989. bottom: 0.06
  15990. }
  15991. },
  15992. full: {
  15993. height: math.unit(4.96, "feet"),
  15994. weight: math.unit(220, "lb"),
  15995. name: "Full",
  15996. image: {
  15997. source: "./media/characters/anna/full.svg",
  15998. extra: 138 / 114,
  15999. bottom: 0.15
  16000. }
  16001. },
  16002. tongue: {
  16003. height: math.unit(2.53, "feet"),
  16004. name: "Tongue",
  16005. image: {
  16006. source: "./media/characters/anna/tongue.svg"
  16007. }
  16008. },
  16009. },
  16010. [
  16011. {
  16012. name: "Normal",
  16013. height: math.unit(7, "feet"),
  16014. default: true
  16015. },
  16016. ]
  16017. ))
  16018. characterMakers.push(() => makeCharacter(
  16019. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16020. {
  16021. front: {
  16022. height: math.unit(7, "feet"),
  16023. weight: math.unit(150, "lb"),
  16024. name: "Front",
  16025. image: {
  16026. source: "./media/characters/ian-corvid/front.svg",
  16027. extra: 150 / 142,
  16028. bottom: 0.02
  16029. }
  16030. },
  16031. back: {
  16032. height: math.unit(7, "feet"),
  16033. weight: math.unit(150, "lb"),
  16034. name: "Back",
  16035. image: {
  16036. source: "./media/characters/ian-corvid/back.svg",
  16037. extra: 150 / 143,
  16038. bottom: 0.01
  16039. }
  16040. },
  16041. stomping: {
  16042. height: math.unit(7, "feet"),
  16043. weight: math.unit(150, "lb"),
  16044. name: "Stomping",
  16045. image: {
  16046. source: "./media/characters/ian-corvid/stomping.svg",
  16047. extra: 76 / 72
  16048. }
  16049. },
  16050. sitting: {
  16051. height: math.unit(7 / 1.8, "feet"),
  16052. weight: math.unit(150, "lb"),
  16053. name: "Sitting",
  16054. image: {
  16055. source: "./media/characters/ian-corvid/sitting.svg",
  16056. extra: 1400 / 1269,
  16057. bottom: 0.15
  16058. }
  16059. },
  16060. },
  16061. [
  16062. {
  16063. name: "Tiny Microw",
  16064. height: math.unit(1, "inch")
  16065. },
  16066. {
  16067. name: "Microw",
  16068. height: math.unit(6, "inches")
  16069. },
  16070. {
  16071. name: "Crow",
  16072. height: math.unit(7 + 1 / 12, "feet"),
  16073. default: true
  16074. },
  16075. {
  16076. name: "Macrow",
  16077. height: math.unit(176, "feet")
  16078. },
  16079. ]
  16080. ))
  16081. characterMakers.push(() => makeCharacter(
  16082. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16083. {
  16084. front: {
  16085. height: math.unit(5 + 7 / 12, "feet"),
  16086. weight: math.unit(147, "lb"),
  16087. name: "Front",
  16088. image: {
  16089. source: "./media/characters/natalie-kellon/front.svg",
  16090. extra: 1214 / 1141,
  16091. bottom: 0.02
  16092. }
  16093. },
  16094. },
  16095. [
  16096. {
  16097. name: "Micro",
  16098. height: math.unit(1 / 16, "inch")
  16099. },
  16100. {
  16101. name: "Tiny",
  16102. height: math.unit(4, "inches")
  16103. },
  16104. {
  16105. name: "Normal",
  16106. height: math.unit(5 + 7 / 12, "feet"),
  16107. default: true
  16108. },
  16109. {
  16110. name: "Amazon",
  16111. height: math.unit(12, "feet")
  16112. },
  16113. {
  16114. name: "Giantess",
  16115. height: math.unit(160, "meters")
  16116. },
  16117. {
  16118. name: "Titaness",
  16119. height: math.unit(800, "meters")
  16120. },
  16121. ]
  16122. ))
  16123. characterMakers.push(() => makeCharacter(
  16124. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16125. {
  16126. front: {
  16127. height: math.unit(6, "feet"),
  16128. weight: math.unit(150, "lb"),
  16129. name: "Front",
  16130. image: {
  16131. source: "./media/characters/alluria/front.svg",
  16132. extra: 806 / 738,
  16133. bottom: 0.01
  16134. }
  16135. },
  16136. side: {
  16137. height: math.unit(6, "feet"),
  16138. weight: math.unit(150, "lb"),
  16139. name: "Side",
  16140. image: {
  16141. source: "./media/characters/alluria/side.svg",
  16142. extra: 800 / 750,
  16143. }
  16144. },
  16145. back: {
  16146. height: math.unit(6, "feet"),
  16147. weight: math.unit(150, "lb"),
  16148. name: "Back",
  16149. image: {
  16150. source: "./media/characters/alluria/back.svg",
  16151. extra: 806 / 738,
  16152. }
  16153. },
  16154. frontMaid: {
  16155. height: math.unit(6, "feet"),
  16156. weight: math.unit(150, "lb"),
  16157. name: "Front (Maid)",
  16158. image: {
  16159. source: "./media/characters/alluria/front-maid.svg",
  16160. extra: 806 / 738,
  16161. bottom: 0.01
  16162. }
  16163. },
  16164. sideMaid: {
  16165. height: math.unit(6, "feet"),
  16166. weight: math.unit(150, "lb"),
  16167. name: "Side (Maid)",
  16168. image: {
  16169. source: "./media/characters/alluria/side-maid.svg",
  16170. extra: 800 / 750,
  16171. bottom: 0.005
  16172. }
  16173. },
  16174. backMaid: {
  16175. height: math.unit(6, "feet"),
  16176. weight: math.unit(150, "lb"),
  16177. name: "Back (Maid)",
  16178. image: {
  16179. source: "./media/characters/alluria/back-maid.svg",
  16180. extra: 806 / 738,
  16181. }
  16182. },
  16183. },
  16184. [
  16185. {
  16186. name: "Micro",
  16187. height: math.unit(6, "inches"),
  16188. default: true
  16189. },
  16190. ]
  16191. ))
  16192. characterMakers.push(() => makeCharacter(
  16193. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16194. {
  16195. front: {
  16196. height: math.unit(6, "feet"),
  16197. weight: math.unit(150, "lb"),
  16198. name: "Front",
  16199. image: {
  16200. source: "./media/characters/kyle/front.svg",
  16201. extra: 1069 / 962,
  16202. bottom: 77.228 / 1727.45
  16203. }
  16204. },
  16205. },
  16206. [
  16207. {
  16208. name: "Macro",
  16209. height: math.unit(150, "feet"),
  16210. default: true
  16211. },
  16212. ]
  16213. ))
  16214. characterMakers.push(() => makeCharacter(
  16215. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16216. {
  16217. front: {
  16218. height: math.unit(6, "feet"),
  16219. weight: math.unit(300, "lb"),
  16220. name: "Front",
  16221. image: {
  16222. source: "./media/characters/duncan/front.svg",
  16223. extra: 1650 / 1482,
  16224. bottom: 0.05
  16225. }
  16226. },
  16227. },
  16228. [
  16229. {
  16230. name: "Macro",
  16231. height: math.unit(100, "feet"),
  16232. default: true
  16233. },
  16234. ]
  16235. ))
  16236. characterMakers.push(() => makeCharacter(
  16237. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16238. {
  16239. front: {
  16240. height: math.unit(5 + 4 / 12, "feet"),
  16241. weight: math.unit(220, "lb"),
  16242. name: "Front",
  16243. image: {
  16244. source: "./media/characters/memory/front.svg",
  16245. extra: 3641 / 3545,
  16246. bottom: 0.03
  16247. }
  16248. },
  16249. back: {
  16250. height: math.unit(5 + 4 / 12, "feet"),
  16251. weight: math.unit(220, "lb"),
  16252. name: "Back",
  16253. image: {
  16254. source: "./media/characters/memory/back.svg",
  16255. extra: 3641 / 3545,
  16256. bottom: 0.025
  16257. }
  16258. },
  16259. frontSkirt: {
  16260. height: math.unit(5 + 4 / 12, "feet"),
  16261. weight: math.unit(220, "lb"),
  16262. name: "Front (Skirt)",
  16263. image: {
  16264. source: "./media/characters/memory/front-skirt.svg",
  16265. extra: 3641 / 3545,
  16266. bottom: 0.03
  16267. }
  16268. },
  16269. frontDress: {
  16270. height: math.unit(5 + 4 / 12, "feet"),
  16271. weight: math.unit(220, "lb"),
  16272. name: "Front (Dress)",
  16273. image: {
  16274. source: "./media/characters/memory/front-dress.svg",
  16275. extra: 3641 / 3545,
  16276. bottom: 0.03
  16277. }
  16278. },
  16279. },
  16280. [
  16281. {
  16282. name: "Micro",
  16283. height: math.unit(6, "inches"),
  16284. default: true
  16285. },
  16286. {
  16287. name: "Normal",
  16288. height: math.unit(5 + 4 / 12, "feet")
  16289. },
  16290. ]
  16291. ))
  16292. characterMakers.push(() => makeCharacter(
  16293. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16294. {
  16295. front: {
  16296. height: math.unit(4 + 11 / 12, "feet"),
  16297. weight: math.unit(100, "lb"),
  16298. name: "Front",
  16299. image: {
  16300. source: "./media/characters/luno/front.svg",
  16301. extra: 1535 / 1487,
  16302. bottom: 0.03
  16303. }
  16304. },
  16305. },
  16306. [
  16307. {
  16308. name: "Micro",
  16309. height: math.unit(3, "inches")
  16310. },
  16311. {
  16312. name: "Normal",
  16313. height: math.unit(4 + 11 / 12, "feet"),
  16314. default: true
  16315. },
  16316. {
  16317. name: "Macro",
  16318. height: math.unit(300, "feet")
  16319. },
  16320. {
  16321. name: "Megamacro",
  16322. height: math.unit(700, "miles")
  16323. },
  16324. ]
  16325. ))
  16326. characterMakers.push(() => makeCharacter(
  16327. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16328. {
  16329. front: {
  16330. height: math.unit(6 + 2 / 12, "feet"),
  16331. weight: math.unit(170, "lb"),
  16332. name: "Front",
  16333. image: {
  16334. source: "./media/characters/jamesy/front.svg",
  16335. extra: 440 / 382,
  16336. bottom: 0.005
  16337. }
  16338. },
  16339. },
  16340. [
  16341. {
  16342. name: "Micro",
  16343. height: math.unit(3, "inches")
  16344. },
  16345. {
  16346. name: "Normal",
  16347. height: math.unit(6 + 2 / 12, "feet"),
  16348. default: true
  16349. },
  16350. {
  16351. name: "Macro",
  16352. height: math.unit(300, "feet")
  16353. },
  16354. {
  16355. name: "Megamacro",
  16356. height: math.unit(700, "miles")
  16357. },
  16358. ]
  16359. ))
  16360. characterMakers.push(() => makeCharacter(
  16361. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16362. {
  16363. front: {
  16364. height: math.unit(6, "feet"),
  16365. weight: math.unit(160, "lb"),
  16366. name: "Front",
  16367. image: {
  16368. source: "./media/characters/mark/front.svg",
  16369. extra: 3300 / 3100,
  16370. bottom: 136.42 / 3440.47
  16371. }
  16372. },
  16373. },
  16374. [
  16375. {
  16376. name: "Macro",
  16377. height: math.unit(120, "meters")
  16378. },
  16379. {
  16380. name: "Bigger Macro",
  16381. height: math.unit(350, "meters")
  16382. },
  16383. {
  16384. name: "Megamacro",
  16385. height: math.unit(8, "km"),
  16386. default: true
  16387. },
  16388. {
  16389. name: "Continental",
  16390. height: math.unit(4550, "km")
  16391. },
  16392. {
  16393. name: "Planetary",
  16394. height: math.unit(65000, "km")
  16395. },
  16396. ]
  16397. ))
  16398. characterMakers.push(() => makeCharacter(
  16399. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16400. {
  16401. front: {
  16402. height: math.unit(6, "feet"),
  16403. weight: math.unit(400, "lb"),
  16404. name: "Front",
  16405. image: {
  16406. source: "./media/characters/mac/front.svg",
  16407. extra: 1048 / 987.7,
  16408. bottom: 60 / 1107.6,
  16409. }
  16410. },
  16411. },
  16412. [
  16413. {
  16414. name: "Macro",
  16415. height: math.unit(500, "feet"),
  16416. default: true
  16417. },
  16418. ]
  16419. ))
  16420. characterMakers.push(() => makeCharacter(
  16421. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16422. {
  16423. front: {
  16424. height: math.unit(5 + 2 / 12, "feet"),
  16425. weight: math.unit(190, "lb"),
  16426. name: "Front",
  16427. image: {
  16428. source: "./media/characters/bari/front.svg",
  16429. extra: 3156 / 2880,
  16430. bottom: 0.03
  16431. }
  16432. },
  16433. back: {
  16434. height: math.unit(5 + 2 / 12, "feet"),
  16435. weight: math.unit(190, "lb"),
  16436. name: "Back",
  16437. image: {
  16438. source: "./media/characters/bari/back.svg",
  16439. extra: 3260 / 2834,
  16440. bottom: 0.025
  16441. }
  16442. },
  16443. frontPlush: {
  16444. height: math.unit(5 + 2 / 12, "feet"),
  16445. weight: math.unit(190, "lb"),
  16446. name: "Front (Plush)",
  16447. image: {
  16448. source: "./media/characters/bari/front-plush.svg",
  16449. extra: 1112 / 1061,
  16450. bottom: 0.002
  16451. }
  16452. },
  16453. },
  16454. [
  16455. {
  16456. name: "Micro",
  16457. height: math.unit(3, "inches")
  16458. },
  16459. {
  16460. name: "Normal",
  16461. height: math.unit(5 + 2 / 12, "feet"),
  16462. default: true
  16463. },
  16464. {
  16465. name: "Macro",
  16466. height: math.unit(20, "feet")
  16467. },
  16468. ]
  16469. ))
  16470. characterMakers.push(() => makeCharacter(
  16471. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16472. {
  16473. front: {
  16474. height: math.unit(6 + 1 / 12, "feet"),
  16475. weight: math.unit(275, "lb"),
  16476. name: "Front",
  16477. image: {
  16478. source: "./media/characters/hunter-misha-raven/front.svg"
  16479. }
  16480. },
  16481. },
  16482. [
  16483. {
  16484. name: "Mortal",
  16485. height: math.unit(6 + 1 / 12, "feet")
  16486. },
  16487. {
  16488. name: "Divine",
  16489. height: math.unit(1.12134e34, "parsecs"),
  16490. default: true
  16491. },
  16492. ]
  16493. ))
  16494. characterMakers.push(() => makeCharacter(
  16495. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16496. {
  16497. front: {
  16498. height: math.unit(6 + 3 / 12, "feet"),
  16499. weight: math.unit(220, "lb"),
  16500. name: "Front",
  16501. image: {
  16502. source: "./media/characters/max-calore/front.svg",
  16503. extra: 1700 / 1648,
  16504. bottom: 0.01
  16505. }
  16506. },
  16507. back: {
  16508. height: math.unit(6 + 3 / 12, "feet"),
  16509. weight: math.unit(220, "lb"),
  16510. name: "Back",
  16511. image: {
  16512. source: "./media/characters/max-calore/back.svg",
  16513. extra: 1700 / 1648,
  16514. bottom: 0.01
  16515. }
  16516. },
  16517. },
  16518. [
  16519. {
  16520. name: "Normal",
  16521. height: math.unit(6 + 3 / 12, "feet"),
  16522. default: true
  16523. },
  16524. ]
  16525. ))
  16526. characterMakers.push(() => makeCharacter(
  16527. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16528. {
  16529. side: {
  16530. height: math.unit(2 + 8 / 12, "feet"),
  16531. weight: math.unit(99, "lb"),
  16532. name: "Side",
  16533. image: {
  16534. source: "./media/characters/aspen/side.svg",
  16535. extra: 152 / 138,
  16536. bottom: 0.032
  16537. }
  16538. },
  16539. },
  16540. [
  16541. {
  16542. name: "Normal",
  16543. height: math.unit(2 + 8 / 12, "feet"),
  16544. default: true
  16545. },
  16546. ]
  16547. ))
  16548. characterMakers.push(() => makeCharacter(
  16549. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16550. {
  16551. side: {
  16552. height: math.unit(3 + 2 / 12, "feet"),
  16553. weight: math.unit(224, "lb"),
  16554. name: "Side",
  16555. image: {
  16556. source: "./media/characters/sheila-feral-wolf/side.svg",
  16557. extra: 179 / 166,
  16558. bottom: 0.03
  16559. }
  16560. },
  16561. },
  16562. [
  16563. {
  16564. name: "Normal",
  16565. height: math.unit(3 + 2 / 12, "feet"),
  16566. default: true
  16567. },
  16568. ]
  16569. ))
  16570. characterMakers.push(() => makeCharacter(
  16571. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16572. {
  16573. side: {
  16574. height: math.unit(1 + 9 / 12, "feet"),
  16575. weight: math.unit(38, "lb"),
  16576. name: "Side",
  16577. image: {
  16578. source: "./media/characters/michelle/side.svg",
  16579. extra: 147 / 136.7,
  16580. bottom: 0.03
  16581. }
  16582. },
  16583. },
  16584. [
  16585. {
  16586. name: "Normal",
  16587. height: math.unit(1 + 9 / 12, "feet"),
  16588. default: true
  16589. },
  16590. ]
  16591. ))
  16592. characterMakers.push(() => makeCharacter(
  16593. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16594. {
  16595. front: {
  16596. height: math.unit(1 + 1 / 12, "feet"),
  16597. weight: math.unit(18, "lb"),
  16598. name: "Front",
  16599. image: {
  16600. source: "./media/characters/nino/front.svg"
  16601. }
  16602. },
  16603. },
  16604. [
  16605. {
  16606. name: "Normal",
  16607. height: math.unit(1 + 1 / 12, "feet"),
  16608. default: true
  16609. },
  16610. ]
  16611. ))
  16612. characterMakers.push(() => makeCharacter(
  16613. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16614. {
  16615. front: {
  16616. height: math.unit(1, "feet"),
  16617. weight: math.unit(16, "lb"),
  16618. name: "Front",
  16619. image: {
  16620. source: "./media/characters/viola/front.svg"
  16621. }
  16622. },
  16623. },
  16624. [
  16625. {
  16626. name: "Normal",
  16627. height: math.unit(1, "feet"),
  16628. default: true
  16629. },
  16630. ]
  16631. ))
  16632. characterMakers.push(() => makeCharacter(
  16633. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16634. {
  16635. front: {
  16636. height: math.unit(6 + 5 / 12, "feet"),
  16637. weight: math.unit(580, "lb"),
  16638. name: "Front",
  16639. image: {
  16640. source: "./media/characters/atlas/front.svg",
  16641. extra: 298.5 / 290,
  16642. bottom: 0.015
  16643. }
  16644. },
  16645. },
  16646. [
  16647. {
  16648. name: "Normal",
  16649. height: math.unit(6 + 5 / 12, "feet"),
  16650. default: true
  16651. },
  16652. ]
  16653. ))
  16654. characterMakers.push(() => makeCharacter(
  16655. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16656. {
  16657. side: {
  16658. height: math.unit(1 + 10 / 12, "feet"),
  16659. weight: math.unit(25, "lb"),
  16660. name: "Side",
  16661. image: {
  16662. source: "./media/characters/davy/side.svg",
  16663. extra: 200 / 170,
  16664. bottom: 0.01
  16665. }
  16666. },
  16667. },
  16668. [
  16669. {
  16670. name: "Normal",
  16671. height: math.unit(1 + 10 / 12, "feet"),
  16672. default: true
  16673. },
  16674. ]
  16675. ))
  16676. characterMakers.push(() => makeCharacter(
  16677. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16678. {
  16679. side: {
  16680. height: math.unit(4 + 8 / 12, "feet"),
  16681. weight: math.unit(166, "lb"),
  16682. name: "Side",
  16683. image: {
  16684. source: "./media/characters/fiona/side.svg",
  16685. extra: 232 / 220,
  16686. bottom: 0.03
  16687. }
  16688. },
  16689. },
  16690. [
  16691. {
  16692. name: "Normal",
  16693. height: math.unit(4 + 8 / 12, "feet"),
  16694. default: true
  16695. },
  16696. ]
  16697. ))
  16698. characterMakers.push(() => makeCharacter(
  16699. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16700. {
  16701. front: {
  16702. height: math.unit(2, "feet"),
  16703. weight: math.unit(62, "lb"),
  16704. name: "Front",
  16705. image: {
  16706. source: "./media/characters/lyla/front.svg",
  16707. bottom: 0.1
  16708. }
  16709. },
  16710. },
  16711. [
  16712. {
  16713. name: "Normal",
  16714. height: math.unit(2, "feet"),
  16715. default: true
  16716. },
  16717. ]
  16718. ))
  16719. characterMakers.push(() => makeCharacter(
  16720. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16721. {
  16722. side: {
  16723. height: math.unit(1.8, "feet"),
  16724. weight: math.unit(44, "lb"),
  16725. name: "Side",
  16726. image: {
  16727. source: "./media/characters/perseus/side.svg",
  16728. bottom: 0.21
  16729. }
  16730. },
  16731. },
  16732. [
  16733. {
  16734. name: "Normal",
  16735. height: math.unit(1.8, "feet"),
  16736. default: true
  16737. },
  16738. ]
  16739. ))
  16740. characterMakers.push(() => makeCharacter(
  16741. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16742. {
  16743. side: {
  16744. height: math.unit(4 + 2 / 12, "feet"),
  16745. weight: math.unit(20, "lb"),
  16746. name: "Side",
  16747. image: {
  16748. source: "./media/characters/remus/side.svg"
  16749. }
  16750. },
  16751. },
  16752. [
  16753. {
  16754. name: "Normal",
  16755. height: math.unit(4 + 2 / 12, "feet"),
  16756. default: true
  16757. },
  16758. ]
  16759. ))
  16760. characterMakers.push(() => makeCharacter(
  16761. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16762. {
  16763. front: {
  16764. height: math.unit(4 + 11 / 12, "feet"),
  16765. weight: math.unit(114, "lb"),
  16766. name: "Front",
  16767. image: {
  16768. source: "./media/characters/raf/front.svg",
  16769. bottom: 20.5 / 1863
  16770. }
  16771. },
  16772. side: {
  16773. height: math.unit(4 + 11 / 12, "feet"),
  16774. weight: math.unit(114, "lb"),
  16775. name: "Side",
  16776. image: {
  16777. source: "./media/characters/raf/side.svg",
  16778. bottom: 22 / 1822
  16779. }
  16780. },
  16781. },
  16782. [
  16783. {
  16784. name: "Micro",
  16785. height: math.unit(2, "inches")
  16786. },
  16787. {
  16788. name: "Normal",
  16789. height: math.unit(4 + 11 / 12, "feet"),
  16790. default: true
  16791. },
  16792. {
  16793. name: "Macro",
  16794. height: math.unit(70, "feet")
  16795. },
  16796. ]
  16797. ))
  16798. characterMakers.push(() => makeCharacter(
  16799. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16800. {
  16801. front: {
  16802. height: math.unit(1.5, "meters"),
  16803. weight: math.unit(68, "kg"),
  16804. name: "Front",
  16805. image: {
  16806. source: "./media/characters/liam-einarr/front.svg",
  16807. extra: 2822 / 2666
  16808. }
  16809. },
  16810. back: {
  16811. height: math.unit(1.5, "meters"),
  16812. weight: math.unit(68, "kg"),
  16813. name: "Back",
  16814. image: {
  16815. source: "./media/characters/liam-einarr/back.svg",
  16816. extra: 2822 / 2666,
  16817. bottom: 0.015
  16818. }
  16819. },
  16820. },
  16821. [
  16822. {
  16823. name: "Normal",
  16824. height: math.unit(1.5, "meters"),
  16825. default: true
  16826. },
  16827. {
  16828. name: "Macro",
  16829. height: math.unit(150, "meters")
  16830. },
  16831. {
  16832. name: "Megamacro",
  16833. height: math.unit(35, "km")
  16834. },
  16835. ]
  16836. ))
  16837. characterMakers.push(() => makeCharacter(
  16838. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16839. {
  16840. front: {
  16841. height: math.unit(6, "feet"),
  16842. weight: math.unit(75, "kg"),
  16843. name: "Front",
  16844. image: {
  16845. source: "./media/characters/linda/front.svg",
  16846. extra: 930 / 874,
  16847. bottom: 0.004
  16848. }
  16849. },
  16850. },
  16851. [
  16852. {
  16853. name: "Normal",
  16854. height: math.unit(6, "feet"),
  16855. default: true
  16856. },
  16857. ]
  16858. ))
  16859. characterMakers.push(() => makeCharacter(
  16860. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16861. {
  16862. front: {
  16863. height: math.unit(6 + 8 / 12, "feet"),
  16864. weight: math.unit(220, "lb"),
  16865. name: "Front",
  16866. image: {
  16867. source: "./media/characters/caylex/front.svg",
  16868. extra: 821 / 772,
  16869. bottom: 0.07
  16870. }
  16871. },
  16872. back: {
  16873. height: math.unit(6 + 8 / 12, "feet"),
  16874. weight: math.unit(220, "lb"),
  16875. name: "Back",
  16876. image: {
  16877. source: "./media/characters/caylex/back.svg",
  16878. extra: 821 / 772,
  16879. bottom: 0.022
  16880. }
  16881. },
  16882. hand: {
  16883. height: math.unit(1.25, "feet"),
  16884. name: "Hand",
  16885. image: {
  16886. source: "./media/characters/caylex/hand.svg"
  16887. }
  16888. },
  16889. foot: {
  16890. height: math.unit(1.6, "feet"),
  16891. name: "Foot",
  16892. image: {
  16893. source: "./media/characters/caylex/foot.svg"
  16894. }
  16895. },
  16896. armored: {
  16897. height: math.unit(6 + 8 / 12, "feet"),
  16898. weight: math.unit(250, "lb"),
  16899. name: "Armored",
  16900. image: {
  16901. source: "./media/characters/caylex/armored.svg",
  16902. extra: 1420 / 1310,
  16903. bottom: 0.045
  16904. }
  16905. },
  16906. },
  16907. [
  16908. {
  16909. name: "Normal",
  16910. height: math.unit(6 + 8 / 12, "feet"),
  16911. default: true
  16912. },
  16913. {
  16914. name: "Normal+",
  16915. height: math.unit(12, "feet")
  16916. },
  16917. ]
  16918. ))
  16919. characterMakers.push(() => makeCharacter(
  16920. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16921. {
  16922. front: {
  16923. height: math.unit(7 + 6 / 12, "feet"),
  16924. weight: math.unit(288, "lb"),
  16925. name: "Front",
  16926. image: {
  16927. source: "./media/characters/alana/front.svg",
  16928. extra: 679 / 653,
  16929. bottom: 22.5 / 701
  16930. }
  16931. },
  16932. },
  16933. [
  16934. {
  16935. name: "Normal",
  16936. height: math.unit(7 + 6 / 12, "feet")
  16937. },
  16938. {
  16939. name: "Large",
  16940. height: math.unit(50, "feet")
  16941. },
  16942. {
  16943. name: "Macro",
  16944. height: math.unit(100, "feet"),
  16945. default: true
  16946. },
  16947. {
  16948. name: "Macro+",
  16949. height: math.unit(200, "feet")
  16950. },
  16951. ]
  16952. ))
  16953. characterMakers.push(() => makeCharacter(
  16954. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16955. {
  16956. front: {
  16957. height: math.unit(6 + 1 / 12, "feet"),
  16958. weight: math.unit(210, "lb"),
  16959. name: "Front",
  16960. image: {
  16961. source: "./media/characters/hasani/front.svg",
  16962. extra: 244 / 232,
  16963. bottom: 0.01
  16964. }
  16965. },
  16966. back: {
  16967. height: math.unit(6 + 1 / 12, "feet"),
  16968. weight: math.unit(210, "lb"),
  16969. name: "Back",
  16970. image: {
  16971. source: "./media/characters/hasani/back.svg",
  16972. extra: 244 / 232,
  16973. bottom: 0.01
  16974. }
  16975. },
  16976. },
  16977. [
  16978. {
  16979. name: "Normal",
  16980. height: math.unit(6 + 1 / 12, "feet")
  16981. },
  16982. {
  16983. name: "Macro",
  16984. height: math.unit(175, "feet"),
  16985. default: true
  16986. },
  16987. ]
  16988. ))
  16989. characterMakers.push(() => makeCharacter(
  16990. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16991. {
  16992. front: {
  16993. height: math.unit(1.82, "meters"),
  16994. weight: math.unit(140, "lb"),
  16995. name: "Front",
  16996. image: {
  16997. source: "./media/characters/nita/front.svg",
  16998. extra: 2473 / 2363,
  16999. bottom: 0.01
  17000. }
  17001. },
  17002. },
  17003. [
  17004. {
  17005. name: "Normal",
  17006. height: math.unit(1.82, "m")
  17007. },
  17008. {
  17009. name: "Macro",
  17010. height: math.unit(300, "m")
  17011. },
  17012. {
  17013. name: "Mistake Canon",
  17014. height: math.unit(0.5, "miles"),
  17015. default: true
  17016. },
  17017. {
  17018. name: "Big Mistake",
  17019. height: math.unit(13, "miles")
  17020. },
  17021. {
  17022. name: "Playing God",
  17023. height: math.unit(2450, "miles")
  17024. },
  17025. ]
  17026. ))
  17027. characterMakers.push(() => makeCharacter(
  17028. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17029. {
  17030. front: {
  17031. height: math.unit(4, "feet"),
  17032. weight: math.unit(120, "lb"),
  17033. name: "Front",
  17034. image: {
  17035. source: "./media/characters/shiriko/front.svg",
  17036. extra: 195 / 188
  17037. }
  17038. },
  17039. },
  17040. [
  17041. {
  17042. name: "Normal",
  17043. height: math.unit(4, "feet"),
  17044. default: true
  17045. },
  17046. ]
  17047. ))
  17048. characterMakers.push(() => makeCharacter(
  17049. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17050. {
  17051. front: {
  17052. height: math.unit(6, "feet"),
  17053. name: "front",
  17054. image: {
  17055. source: "./media/characters/deja/front.svg",
  17056. extra: 926 / 840,
  17057. bottom: 0.07
  17058. }
  17059. },
  17060. },
  17061. [
  17062. {
  17063. name: "Planck Length",
  17064. height: math.unit(1.6e-35, "meters")
  17065. },
  17066. {
  17067. name: "Normal",
  17068. height: math.unit(30.48, "meters"),
  17069. default: true
  17070. },
  17071. {
  17072. name: "Universal",
  17073. height: math.unit(8.8e26, "meters")
  17074. },
  17075. ]
  17076. ))
  17077. characterMakers.push(() => makeCharacter(
  17078. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17079. {
  17080. side: {
  17081. height: math.unit(8, "feet"),
  17082. weight: math.unit(6300, "lb"),
  17083. name: "Side",
  17084. image: {
  17085. source: "./media/characters/anima/side.svg",
  17086. bottom: 0.035
  17087. }
  17088. },
  17089. },
  17090. [
  17091. {
  17092. name: "Normal",
  17093. height: math.unit(8, "feet"),
  17094. default: true
  17095. },
  17096. ]
  17097. ))
  17098. characterMakers.push(() => makeCharacter(
  17099. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17100. {
  17101. front: {
  17102. height: math.unit(8, "feet"),
  17103. weight: math.unit(350, "lb"),
  17104. name: "Front",
  17105. image: {
  17106. source: "./media/characters/bianca/front.svg",
  17107. extra: 234 / 225,
  17108. bottom: 0.03
  17109. }
  17110. },
  17111. },
  17112. [
  17113. {
  17114. name: "Normal",
  17115. height: math.unit(8, "feet"),
  17116. default: true
  17117. },
  17118. ]
  17119. ))
  17120. characterMakers.push(() => makeCharacter(
  17121. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17122. {
  17123. front: {
  17124. height: math.unit(6, "feet"),
  17125. weight: math.unit(150, "lb"),
  17126. name: "Front",
  17127. image: {
  17128. source: "./media/characters/adinia/front.svg",
  17129. extra: 1845 / 1672,
  17130. bottom: 0.02
  17131. }
  17132. },
  17133. back: {
  17134. height: math.unit(6, "feet"),
  17135. weight: math.unit(150, "lb"),
  17136. name: "Back",
  17137. image: {
  17138. source: "./media/characters/adinia/back.svg",
  17139. extra: 1845 / 1672,
  17140. bottom: 0.002
  17141. }
  17142. },
  17143. },
  17144. [
  17145. {
  17146. name: "Normal",
  17147. height: math.unit(11 + 5 / 12, "feet"),
  17148. default: true
  17149. },
  17150. ]
  17151. ))
  17152. characterMakers.push(() => makeCharacter(
  17153. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17154. {
  17155. front: {
  17156. height: math.unit(3, "meters"),
  17157. weight: math.unit(200, "kg"),
  17158. name: "Front",
  17159. image: {
  17160. source: "./media/characters/lykasa/front.svg",
  17161. extra: 1076 / 976,
  17162. bottom: 0.06
  17163. }
  17164. },
  17165. },
  17166. [
  17167. {
  17168. name: "Normal",
  17169. height: math.unit(3, "meters")
  17170. },
  17171. {
  17172. name: "Kaiju",
  17173. height: math.unit(120, "meters"),
  17174. default: true
  17175. },
  17176. {
  17177. name: "Mega Kaiju",
  17178. height: math.unit(240, "km")
  17179. },
  17180. {
  17181. name: "Giga Kaiju",
  17182. height: math.unit(400, "megameters")
  17183. },
  17184. {
  17185. name: "Tera Kaiju",
  17186. height: math.unit(800, "gigameters")
  17187. },
  17188. {
  17189. name: "Kaiju Dragon Goddess",
  17190. height: math.unit(26, "zettaparsecs")
  17191. },
  17192. ]
  17193. ))
  17194. characterMakers.push(() => makeCharacter(
  17195. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17196. {
  17197. side: {
  17198. height: math.unit(283 / 124 * 6, "feet"),
  17199. weight: math.unit(35000, "lb"),
  17200. name: "Side",
  17201. image: {
  17202. source: "./media/characters/malfaren/side.svg",
  17203. extra: 2500 / 1010,
  17204. bottom: 0.01
  17205. }
  17206. },
  17207. front: {
  17208. height: math.unit(22.36, "feet"),
  17209. weight: math.unit(35000, "lb"),
  17210. name: "Front",
  17211. image: {
  17212. source: "./media/characters/malfaren/front.svg",
  17213. extra: 1631 / 1476,
  17214. bottom: 0.01
  17215. }
  17216. },
  17217. maw: {
  17218. height: math.unit(6.9, "feet"),
  17219. name: "Maw",
  17220. image: {
  17221. source: "./media/characters/malfaren/maw.svg"
  17222. }
  17223. },
  17224. },
  17225. [
  17226. {
  17227. name: "Big",
  17228. height: math.unit(283 / 162 * 6, "feet"),
  17229. },
  17230. {
  17231. name: "Bigger",
  17232. height: math.unit(283 / 124 * 6, "feet")
  17233. },
  17234. {
  17235. name: "Massive",
  17236. height: math.unit(283 / 92 * 6, "feet"),
  17237. default: true
  17238. },
  17239. {
  17240. name: "👀💦",
  17241. height: math.unit(283 / 73 * 6, "feet"),
  17242. },
  17243. ]
  17244. ))
  17245. characterMakers.push(() => makeCharacter(
  17246. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17247. {
  17248. front: {
  17249. height: math.unit(1.7, "m"),
  17250. weight: math.unit(70, "kg"),
  17251. name: "Front",
  17252. image: {
  17253. source: "./media/characters/kernel/front.svg",
  17254. extra: 222 / 210,
  17255. bottom: 0.007
  17256. }
  17257. },
  17258. },
  17259. [
  17260. {
  17261. name: "Nano",
  17262. height: math.unit(17, "micrometers")
  17263. },
  17264. {
  17265. name: "Micro",
  17266. height: math.unit(1.7, "mm")
  17267. },
  17268. {
  17269. name: "Small",
  17270. height: math.unit(1.7, "cm")
  17271. },
  17272. {
  17273. name: "Normal",
  17274. height: math.unit(1.7, "m"),
  17275. default: true
  17276. },
  17277. ]
  17278. ))
  17279. characterMakers.push(() => makeCharacter(
  17280. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17281. {
  17282. front: {
  17283. height: math.unit(1.75, "meters"),
  17284. weight: math.unit(65, "kg"),
  17285. name: "Front",
  17286. image: {
  17287. source: "./media/characters/jayne-folest/front.svg",
  17288. extra: 2115 / 2007,
  17289. bottom: 0.02
  17290. }
  17291. },
  17292. back: {
  17293. height: math.unit(1.75, "meters"),
  17294. weight: math.unit(65, "kg"),
  17295. name: "Back",
  17296. image: {
  17297. source: "./media/characters/jayne-folest/back.svg",
  17298. extra: 2115 / 2007,
  17299. bottom: 0.005
  17300. }
  17301. },
  17302. frontClothed: {
  17303. height: math.unit(1.75, "meters"),
  17304. weight: math.unit(65, "kg"),
  17305. name: "Front (Clothed)",
  17306. image: {
  17307. source: "./media/characters/jayne-folest/front-clothed.svg",
  17308. extra: 2115 / 2007,
  17309. bottom: 0.035
  17310. }
  17311. },
  17312. hand: {
  17313. height: math.unit(1 / 1.260, "feet"),
  17314. name: "Hand",
  17315. image: {
  17316. source: "./media/characters/jayne-folest/hand.svg"
  17317. }
  17318. },
  17319. foot: {
  17320. height: math.unit(1 / 0.918, "feet"),
  17321. name: "Foot",
  17322. image: {
  17323. source: "./media/characters/jayne-folest/foot.svg"
  17324. }
  17325. },
  17326. },
  17327. [
  17328. {
  17329. name: "Micro",
  17330. height: math.unit(4, "cm")
  17331. },
  17332. {
  17333. name: "Normal",
  17334. height: math.unit(1.75, "meters")
  17335. },
  17336. {
  17337. name: "Macro",
  17338. height: math.unit(47.5, "meters"),
  17339. default: true
  17340. },
  17341. ]
  17342. ))
  17343. characterMakers.push(() => makeCharacter(
  17344. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17345. {
  17346. front: {
  17347. height: math.unit(180, "cm"),
  17348. weight: math.unit(70, "kg"),
  17349. name: "Front",
  17350. image: {
  17351. source: "./media/characters/algier/front.svg",
  17352. extra: 596 / 572,
  17353. bottom: 0.04
  17354. }
  17355. },
  17356. back: {
  17357. height: math.unit(180, "cm"),
  17358. weight: math.unit(70, "kg"),
  17359. name: "Back",
  17360. image: {
  17361. source: "./media/characters/algier/back.svg",
  17362. extra: 596 / 572,
  17363. bottom: 0.025
  17364. }
  17365. },
  17366. frontdressed: {
  17367. height: math.unit(180, "cm"),
  17368. weight: math.unit(150, "kg"),
  17369. name: "Front-dressed",
  17370. image: {
  17371. source: "./media/characters/algier/front-dressed.svg",
  17372. extra: 596 / 572,
  17373. bottom: 0.038
  17374. }
  17375. },
  17376. },
  17377. [
  17378. {
  17379. name: "Micro",
  17380. height: math.unit(5, "cm")
  17381. },
  17382. {
  17383. name: "Normal",
  17384. height: math.unit(180, "cm"),
  17385. default: true
  17386. },
  17387. {
  17388. name: "Macro",
  17389. height: math.unit(64, "m")
  17390. },
  17391. ]
  17392. ))
  17393. characterMakers.push(() => makeCharacter(
  17394. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17395. {
  17396. upright: {
  17397. height: math.unit(7, "feet"),
  17398. weight: math.unit(300, "lb"),
  17399. name: "Upright",
  17400. image: {
  17401. source: "./media/characters/pretzel/upright.svg",
  17402. extra: 534 / 522,
  17403. bottom: 0.065
  17404. }
  17405. },
  17406. sprawling: {
  17407. height: math.unit(3.75, "feet"),
  17408. weight: math.unit(300, "lb"),
  17409. name: "Sprawling",
  17410. image: {
  17411. source: "./media/characters/pretzel/sprawling.svg",
  17412. extra: 314 / 281,
  17413. bottom: 0.1
  17414. }
  17415. },
  17416. tongue: {
  17417. height: math.unit(2, "feet"),
  17418. name: "Tongue",
  17419. image: {
  17420. source: "./media/characters/pretzel/tongue.svg"
  17421. }
  17422. },
  17423. },
  17424. [
  17425. {
  17426. name: "Normal",
  17427. height: math.unit(7, "feet"),
  17428. default: true
  17429. },
  17430. {
  17431. name: "Oversized",
  17432. height: math.unit(15, "feet")
  17433. },
  17434. {
  17435. name: "Huge",
  17436. height: math.unit(30, "feet")
  17437. },
  17438. {
  17439. name: "Macro",
  17440. height: math.unit(250, "feet")
  17441. },
  17442. ]
  17443. ))
  17444. characterMakers.push(() => makeCharacter(
  17445. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17446. {
  17447. sideFront: {
  17448. height: math.unit(5 + 2 / 12, "feet"),
  17449. weight: math.unit(120, "lb"),
  17450. name: "Front Side",
  17451. image: {
  17452. source: "./media/characters/roxi/side-front.svg",
  17453. extra: 2924 / 2717,
  17454. bottom: 0.08
  17455. }
  17456. },
  17457. sideBack: {
  17458. height: math.unit(5 + 2 / 12, "feet"),
  17459. weight: math.unit(120, "lb"),
  17460. name: "Back Side",
  17461. image: {
  17462. source: "./media/characters/roxi/side-back.svg",
  17463. extra: 2904 / 2693,
  17464. bottom: 0.06
  17465. }
  17466. },
  17467. front: {
  17468. height: math.unit(5 + 2 / 12, "feet"),
  17469. weight: math.unit(120, "lb"),
  17470. name: "Front",
  17471. image: {
  17472. source: "./media/characters/roxi/front.svg",
  17473. extra: 2028 / 1907,
  17474. bottom: 0.01
  17475. }
  17476. },
  17477. frontAlt: {
  17478. height: math.unit(5 + 2 / 12, "feet"),
  17479. weight: math.unit(120, "lb"),
  17480. name: "Front (Alt)",
  17481. image: {
  17482. source: "./media/characters/roxi/front-alt.svg",
  17483. extra: 1828 / 1798,
  17484. bottom: 0.01
  17485. }
  17486. },
  17487. sitting: {
  17488. height: math.unit(2.8, "feet"),
  17489. weight: math.unit(120, "lb"),
  17490. name: "Sitting",
  17491. image: {
  17492. source: "./media/characters/roxi/sitting.svg",
  17493. extra: 2660 / 2462,
  17494. bottom: 0.1
  17495. }
  17496. },
  17497. },
  17498. [
  17499. {
  17500. name: "Normal",
  17501. height: math.unit(5 + 2 / 12, "feet"),
  17502. default: true
  17503. },
  17504. ]
  17505. ))
  17506. characterMakers.push(() => makeCharacter(
  17507. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17508. {
  17509. side: {
  17510. height: math.unit(55, "feet"),
  17511. weight: math.unit(153, "tons"),
  17512. name: "Side",
  17513. image: {
  17514. source: "./media/characters/shadow/side.svg",
  17515. extra: 701 / 628,
  17516. bottom: 0.02
  17517. }
  17518. },
  17519. flying: {
  17520. height: math.unit(145, "feet"),
  17521. weight: math.unit(153, "tons"),
  17522. name: "Flying",
  17523. image: {
  17524. source: "./media/characters/shadow/flying.svg"
  17525. }
  17526. },
  17527. },
  17528. [
  17529. {
  17530. name: "Normal",
  17531. height: math.unit(55, "feet"),
  17532. default: true
  17533. },
  17534. ]
  17535. ))
  17536. characterMakers.push(() => makeCharacter(
  17537. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17538. {
  17539. front: {
  17540. height: math.unit(6, "feet"),
  17541. weight: math.unit(200, "lb"),
  17542. name: "Front",
  17543. image: {
  17544. source: "./media/characters/marcie/front.svg",
  17545. extra: 960 / 876,
  17546. bottom: 58 / 1017.87
  17547. }
  17548. },
  17549. },
  17550. [
  17551. {
  17552. name: "Macro",
  17553. height: math.unit(1, "mile"),
  17554. default: true
  17555. },
  17556. ]
  17557. ))
  17558. characterMakers.push(() => makeCharacter(
  17559. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17560. {
  17561. front: {
  17562. height: math.unit(7, "feet"),
  17563. weight: math.unit(200, "lb"),
  17564. name: "Front",
  17565. image: {
  17566. source: "./media/characters/kachina/front.svg",
  17567. extra: 1290.68 / 1119,
  17568. bottom: 36.5 / 1327.18
  17569. }
  17570. },
  17571. },
  17572. [
  17573. {
  17574. name: "Normal",
  17575. height: math.unit(7, "feet"),
  17576. default: true
  17577. },
  17578. ]
  17579. ))
  17580. characterMakers.push(() => makeCharacter(
  17581. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17582. {
  17583. looking: {
  17584. height: math.unit(2, "meters"),
  17585. weight: math.unit(300, "kg"),
  17586. name: "Looking",
  17587. image: {
  17588. source: "./media/characters/kash/looking.svg",
  17589. extra: 474 / 344,
  17590. bottom: 0.03
  17591. }
  17592. },
  17593. side: {
  17594. height: math.unit(2, "meters"),
  17595. weight: math.unit(300, "kg"),
  17596. name: "Side",
  17597. image: {
  17598. source: "./media/characters/kash/side.svg",
  17599. extra: 302 / 251,
  17600. bottom: 0.03
  17601. }
  17602. },
  17603. front: {
  17604. height: math.unit(2, "meters"),
  17605. weight: math.unit(300, "kg"),
  17606. name: "Front",
  17607. image: {
  17608. source: "./media/characters/kash/front.svg",
  17609. extra: 495 / 360,
  17610. bottom: 0.015
  17611. }
  17612. },
  17613. },
  17614. [
  17615. {
  17616. name: "Normal",
  17617. height: math.unit(2, "meters"),
  17618. default: true
  17619. },
  17620. {
  17621. name: "Big",
  17622. height: math.unit(3, "meters")
  17623. },
  17624. {
  17625. name: "Large",
  17626. height: math.unit(5, "meters")
  17627. },
  17628. ]
  17629. ))
  17630. characterMakers.push(() => makeCharacter(
  17631. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17632. {
  17633. feeding: {
  17634. height: math.unit(6.7, "feet"),
  17635. weight: math.unit(350, "lb"),
  17636. name: "Feeding",
  17637. image: {
  17638. source: "./media/characters/lalim/feeding.svg",
  17639. }
  17640. },
  17641. },
  17642. [
  17643. {
  17644. name: "Normal",
  17645. height: math.unit(6.7, "feet"),
  17646. default: true
  17647. },
  17648. ]
  17649. ))
  17650. characterMakers.push(() => makeCharacter(
  17651. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17652. {
  17653. front: {
  17654. height: math.unit(9.5, "feet"),
  17655. weight: math.unit(600, "lb"),
  17656. name: "Front",
  17657. image: {
  17658. source: "./media/characters/de'vout/front.svg",
  17659. extra: 1443 / 1328,
  17660. bottom: 0.025
  17661. }
  17662. },
  17663. back: {
  17664. height: math.unit(9.5, "feet"),
  17665. weight: math.unit(600, "lb"),
  17666. name: "Back",
  17667. image: {
  17668. source: "./media/characters/de'vout/back.svg",
  17669. extra: 1443 / 1328
  17670. }
  17671. },
  17672. frontDressed: {
  17673. height: math.unit(9.5, "feet"),
  17674. weight: math.unit(600, "lb"),
  17675. name: "Front (Dressed",
  17676. image: {
  17677. source: "./media/characters/de'vout/front-dressed.svg",
  17678. extra: 1443 / 1328,
  17679. bottom: 0.025
  17680. }
  17681. },
  17682. backDressed: {
  17683. height: math.unit(9.5, "feet"),
  17684. weight: math.unit(600, "lb"),
  17685. name: "Back (Dressed",
  17686. image: {
  17687. source: "./media/characters/de'vout/back-dressed.svg",
  17688. extra: 1443 / 1328
  17689. }
  17690. },
  17691. },
  17692. [
  17693. {
  17694. name: "Normal",
  17695. height: math.unit(9.5, "feet"),
  17696. default: true
  17697. },
  17698. ]
  17699. ))
  17700. characterMakers.push(() => makeCharacter(
  17701. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17702. {
  17703. front: {
  17704. height: math.unit(8, "feet"),
  17705. weight: math.unit(225, "lb"),
  17706. name: "Front",
  17707. image: {
  17708. source: "./media/characters/talana/front.svg",
  17709. extra: 1410 / 1300,
  17710. bottom: 0.015
  17711. }
  17712. },
  17713. frontDressed: {
  17714. height: math.unit(8, "feet"),
  17715. weight: math.unit(225, "lb"),
  17716. name: "Front (Dressed",
  17717. image: {
  17718. source: "./media/characters/talana/front-dressed.svg",
  17719. extra: 1410 / 1300,
  17720. bottom: 0.015
  17721. }
  17722. },
  17723. },
  17724. [
  17725. {
  17726. name: "Normal",
  17727. height: math.unit(8, "feet"),
  17728. default: true
  17729. },
  17730. ]
  17731. ))
  17732. characterMakers.push(() => makeCharacter(
  17733. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17734. {
  17735. side: {
  17736. height: math.unit(7.2, "feet"),
  17737. weight: math.unit(150, "lb"),
  17738. name: "Side",
  17739. image: {
  17740. source: "./media/characters/xeauvok/side.svg",
  17741. extra: 1975 / 1523,
  17742. bottom: 0.07
  17743. }
  17744. },
  17745. },
  17746. [
  17747. {
  17748. name: "Normal",
  17749. height: math.unit(7.2, "feet"),
  17750. default: true
  17751. },
  17752. ]
  17753. ))
  17754. characterMakers.push(() => makeCharacter(
  17755. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17756. {
  17757. side: {
  17758. height: math.unit(10, "feet"),
  17759. weight: math.unit(900, "kg"),
  17760. name: "Side",
  17761. image: {
  17762. source: "./media/characters/zara/side.svg",
  17763. extra: 504 / 498
  17764. }
  17765. },
  17766. },
  17767. [
  17768. {
  17769. name: "Normal",
  17770. height: math.unit(10, "feet"),
  17771. default: true
  17772. },
  17773. ]
  17774. ))
  17775. characterMakers.push(() => makeCharacter(
  17776. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17777. {
  17778. side: {
  17779. height: math.unit(6, "feet"),
  17780. weight: math.unit(150, "lb"),
  17781. name: "Side",
  17782. image: {
  17783. source: "./media/characters/richard-dragon/side.svg",
  17784. extra: 845 / 340,
  17785. bottom: 0.017
  17786. }
  17787. },
  17788. maw: {
  17789. height: math.unit(2.97, "feet"),
  17790. name: "Maw",
  17791. image: {
  17792. source: "./media/characters/richard-dragon/maw.svg"
  17793. }
  17794. },
  17795. },
  17796. [
  17797. ]
  17798. ))
  17799. characterMakers.push(() => makeCharacter(
  17800. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17801. {
  17802. front: {
  17803. height: math.unit(4, "feet"),
  17804. weight: math.unit(100, "lb"),
  17805. name: "Front",
  17806. image: {
  17807. source: "./media/characters/richard-smeargle/front.svg",
  17808. extra: 2952 / 2820,
  17809. bottom: 0.028
  17810. }
  17811. },
  17812. },
  17813. [
  17814. {
  17815. name: "Normal",
  17816. height: math.unit(4, "feet"),
  17817. default: true
  17818. },
  17819. {
  17820. name: "Dynamax",
  17821. height: math.unit(20, "meters")
  17822. },
  17823. ]
  17824. ))
  17825. characterMakers.push(() => makeCharacter(
  17826. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17827. {
  17828. front: {
  17829. height: math.unit(6, "feet"),
  17830. weight: math.unit(110, "lb"),
  17831. name: "Front",
  17832. image: {
  17833. source: "./media/characters/klay/front.svg",
  17834. extra: 962 / 883,
  17835. bottom: 0.04
  17836. }
  17837. },
  17838. back: {
  17839. height: math.unit(6, "feet"),
  17840. weight: math.unit(110, "lb"),
  17841. name: "Back",
  17842. image: {
  17843. source: "./media/characters/klay/back.svg",
  17844. extra: 962 / 883
  17845. }
  17846. },
  17847. beans: {
  17848. height: math.unit(1.15, "feet"),
  17849. name: "Beans",
  17850. image: {
  17851. source: "./media/characters/klay/beans.svg"
  17852. }
  17853. },
  17854. },
  17855. [
  17856. {
  17857. name: "Micro",
  17858. height: math.unit(6, "inches")
  17859. },
  17860. {
  17861. name: "Mini",
  17862. height: math.unit(3, "feet")
  17863. },
  17864. {
  17865. name: "Normal",
  17866. height: math.unit(6, "feet"),
  17867. default: true
  17868. },
  17869. {
  17870. name: "Big",
  17871. height: math.unit(25, "feet")
  17872. },
  17873. {
  17874. name: "Macro",
  17875. height: math.unit(100, "feet")
  17876. },
  17877. {
  17878. name: "Megamacro",
  17879. height: math.unit(400, "feet")
  17880. },
  17881. ]
  17882. ))
  17883. characterMakers.push(() => makeCharacter(
  17884. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17885. {
  17886. front: {
  17887. height: math.unit(6, "feet"),
  17888. weight: math.unit(160, "lb"),
  17889. name: "Front",
  17890. image: {
  17891. source: "./media/characters/marcus/front.svg",
  17892. extra: 734 / 676,
  17893. bottom: 0.03
  17894. }
  17895. },
  17896. },
  17897. [
  17898. {
  17899. name: "Little",
  17900. height: math.unit(6, "feet")
  17901. },
  17902. {
  17903. name: "Normal",
  17904. height: math.unit(110, "feet"),
  17905. default: true
  17906. },
  17907. {
  17908. name: "Macro",
  17909. height: math.unit(250, "feet")
  17910. },
  17911. {
  17912. name: "Megamacro",
  17913. height: math.unit(1000, "feet")
  17914. },
  17915. ]
  17916. ))
  17917. characterMakers.push(() => makeCharacter(
  17918. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17919. {
  17920. front: {
  17921. height: math.unit(7, "feet"),
  17922. weight: math.unit(275, "lb"),
  17923. name: "Front",
  17924. image: {
  17925. source: "./media/characters/claude-delroute/front.svg",
  17926. extra: 230 / 214,
  17927. bottom: 0.007
  17928. }
  17929. },
  17930. side: {
  17931. height: math.unit(7, "feet"),
  17932. weight: math.unit(275, "lb"),
  17933. name: "Side",
  17934. image: {
  17935. source: "./media/characters/claude-delroute/side.svg",
  17936. extra: 222 / 214,
  17937. bottom: 0.01
  17938. }
  17939. },
  17940. back: {
  17941. height: math.unit(7, "feet"),
  17942. weight: math.unit(275, "lb"),
  17943. name: "Back",
  17944. image: {
  17945. source: "./media/characters/claude-delroute/back.svg",
  17946. extra: 230 / 214,
  17947. bottom: 0.015
  17948. }
  17949. },
  17950. maw: {
  17951. height: math.unit(0.6407, "meters"),
  17952. name: "Maw",
  17953. image: {
  17954. source: "./media/characters/claude-delroute/maw.svg"
  17955. }
  17956. },
  17957. },
  17958. [
  17959. {
  17960. name: "Normal",
  17961. height: math.unit(7, "feet"),
  17962. default: true
  17963. },
  17964. {
  17965. name: "Lorge",
  17966. height: math.unit(20, "feet")
  17967. },
  17968. ]
  17969. ))
  17970. characterMakers.push(() => makeCharacter(
  17971. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17972. {
  17973. front: {
  17974. height: math.unit(8 + 4 / 12, "feet"),
  17975. weight: math.unit(600, "lb"),
  17976. name: "Front",
  17977. image: {
  17978. source: "./media/characters/dragonien/front.svg",
  17979. extra: 100 / 94,
  17980. bottom: 3.3 / 103.3445
  17981. }
  17982. },
  17983. back: {
  17984. height: math.unit(8 + 4 / 12, "feet"),
  17985. weight: math.unit(600, "lb"),
  17986. name: "Back",
  17987. image: {
  17988. source: "./media/characters/dragonien/back.svg",
  17989. extra: 776 / 746,
  17990. bottom: 6.4 / 782.0616
  17991. }
  17992. },
  17993. foot: {
  17994. height: math.unit(1.54, "feet"),
  17995. name: "Foot",
  17996. image: {
  17997. source: "./media/characters/dragonien/foot.svg",
  17998. }
  17999. },
  18000. },
  18001. [
  18002. {
  18003. name: "Normal",
  18004. height: math.unit(8 + 4 / 12, "feet"),
  18005. default: true
  18006. },
  18007. {
  18008. name: "Macro",
  18009. height: math.unit(200, "feet")
  18010. },
  18011. {
  18012. name: "Megamacro",
  18013. height: math.unit(1, "mile")
  18014. },
  18015. {
  18016. name: "Gigamacro",
  18017. height: math.unit(1000, "miles")
  18018. },
  18019. ]
  18020. ))
  18021. characterMakers.push(() => makeCharacter(
  18022. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18023. {
  18024. front: {
  18025. height: math.unit(5 + 2 / 12, "feet"),
  18026. weight: math.unit(110, "lb"),
  18027. name: "Front",
  18028. image: {
  18029. source: "./media/characters/desta/front.svg",
  18030. extra: 767 / 726,
  18031. bottom: 11.7 / 779
  18032. }
  18033. },
  18034. back: {
  18035. height: math.unit(5 + 2 / 12, "feet"),
  18036. weight: math.unit(110, "lb"),
  18037. name: "Back",
  18038. image: {
  18039. source: "./media/characters/desta/back.svg",
  18040. extra: 777 / 728,
  18041. bottom: 6 / 784
  18042. }
  18043. },
  18044. frontAlt: {
  18045. height: math.unit(5 + 2 / 12, "feet"),
  18046. weight: math.unit(110, "lb"),
  18047. name: "Front",
  18048. image: {
  18049. source: "./media/characters/desta/front-alt.svg",
  18050. extra: 1482 / 1417
  18051. }
  18052. },
  18053. side: {
  18054. height: math.unit(5 + 2 / 12, "feet"),
  18055. weight: math.unit(110, "lb"),
  18056. name: "Side",
  18057. image: {
  18058. source: "./media/characters/desta/side.svg",
  18059. extra: 2579 / 2491,
  18060. bottom: 0.053
  18061. }
  18062. },
  18063. },
  18064. [
  18065. {
  18066. name: "Micro",
  18067. height: math.unit(6, "inches")
  18068. },
  18069. {
  18070. name: "Normal",
  18071. height: math.unit(5 + 2 / 12, "feet"),
  18072. default: true
  18073. },
  18074. {
  18075. name: "Macro",
  18076. height: math.unit(62, "feet")
  18077. },
  18078. {
  18079. name: "Megamacro",
  18080. height: math.unit(1800, "feet")
  18081. },
  18082. ]
  18083. ))
  18084. characterMakers.push(() => makeCharacter(
  18085. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18086. {
  18087. front: {
  18088. height: math.unit(10, "feet"),
  18089. weight: math.unit(700, "lb"),
  18090. name: "Front",
  18091. image: {
  18092. source: "./media/characters/storm-alystar/front.svg",
  18093. extra: 2112 / 1898,
  18094. bottom: 0.034
  18095. }
  18096. },
  18097. },
  18098. [
  18099. {
  18100. name: "Micro",
  18101. height: math.unit(3.5, "inches")
  18102. },
  18103. {
  18104. name: "Normal",
  18105. height: math.unit(10, "feet"),
  18106. default: true
  18107. },
  18108. {
  18109. name: "Macro",
  18110. height: math.unit(400, "feet")
  18111. },
  18112. {
  18113. name: "Deific",
  18114. height: math.unit(60, "miles")
  18115. },
  18116. ]
  18117. ))
  18118. characterMakers.push(() => makeCharacter(
  18119. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18120. {
  18121. front: {
  18122. height: math.unit(2.35, "meters"),
  18123. weight: math.unit(119, "kg"),
  18124. name: "Front",
  18125. image: {
  18126. source: "./media/characters/ilia/front.svg",
  18127. extra: 1285 / 1255,
  18128. bottom: 0.06
  18129. }
  18130. },
  18131. },
  18132. [
  18133. {
  18134. name: "Normal",
  18135. height: math.unit(2.35, "meters")
  18136. },
  18137. {
  18138. name: "Macro",
  18139. height: math.unit(140, "meters"),
  18140. default: true
  18141. },
  18142. {
  18143. name: "Megamacro",
  18144. height: math.unit(100, "miles")
  18145. },
  18146. ]
  18147. ))
  18148. characterMakers.push(() => makeCharacter(
  18149. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18150. {
  18151. front: {
  18152. height: math.unit(6 + 5 / 12, "feet"),
  18153. weight: math.unit(190, "lb"),
  18154. name: "Front",
  18155. image: {
  18156. source: "./media/characters/kingdead/front.svg",
  18157. extra: 1228 / 1177
  18158. }
  18159. },
  18160. },
  18161. [
  18162. {
  18163. name: "Micro",
  18164. height: math.unit(7, "inches")
  18165. },
  18166. {
  18167. name: "Normal",
  18168. height: math.unit(6 + 5 / 12, "feet")
  18169. },
  18170. {
  18171. name: "Macro",
  18172. height: math.unit(150, "feet"),
  18173. default: true
  18174. },
  18175. {
  18176. name: "Megamacro",
  18177. height: math.unit(200, "miles")
  18178. },
  18179. ]
  18180. ))
  18181. characterMakers.push(() => makeCharacter(
  18182. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18183. {
  18184. front: {
  18185. height: math.unit(8, "feet"),
  18186. weight: math.unit(600, "lb"),
  18187. name: "Front",
  18188. image: {
  18189. source: "./media/characters/kyrehx/front.svg",
  18190. extra: 1195 / 1095,
  18191. bottom: 0.034
  18192. }
  18193. },
  18194. },
  18195. [
  18196. {
  18197. name: "Micro",
  18198. height: math.unit(2, "inches")
  18199. },
  18200. {
  18201. name: "Normal",
  18202. height: math.unit(8, "feet"),
  18203. default: true
  18204. },
  18205. {
  18206. name: "Macro",
  18207. height: math.unit(255, "feet")
  18208. },
  18209. ]
  18210. ))
  18211. characterMakers.push(() => makeCharacter(
  18212. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18213. {
  18214. front: {
  18215. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18216. weight: math.unit(184, "lb"),
  18217. name: "Front",
  18218. image: {
  18219. source: "./media/characters/xang/front.svg",
  18220. extra: 845 / 755
  18221. }
  18222. },
  18223. },
  18224. [
  18225. {
  18226. name: "Normal",
  18227. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18228. default: true
  18229. },
  18230. {
  18231. name: "Macro",
  18232. height: math.unit(0.935 * 146, "feet")
  18233. },
  18234. {
  18235. name: "Megamacro",
  18236. height: math.unit(0.935 * 3, "miles")
  18237. },
  18238. ]
  18239. ))
  18240. characterMakers.push(() => makeCharacter(
  18241. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18242. {
  18243. frontDressed: {
  18244. height: math.unit(5 + 7 / 12, "feet"),
  18245. weight: math.unit(140, "lb"),
  18246. name: "Front (Dressed)",
  18247. image: {
  18248. source: "./media/characters/doc-weardno/front-dressed.svg",
  18249. extra: 263 / 234
  18250. }
  18251. },
  18252. backDressed: {
  18253. height: math.unit(5 + 7 / 12, "feet"),
  18254. weight: math.unit(140, "lb"),
  18255. name: "Back (Dressed)",
  18256. image: {
  18257. source: "./media/characters/doc-weardno/back-dressed.svg",
  18258. extra: 266 / 238
  18259. }
  18260. },
  18261. front: {
  18262. height: math.unit(5 + 7 / 12, "feet"),
  18263. weight: math.unit(140, "lb"),
  18264. name: "Front",
  18265. image: {
  18266. source: "./media/characters/doc-weardno/front.svg",
  18267. extra: 254 / 233
  18268. }
  18269. },
  18270. },
  18271. [
  18272. {
  18273. name: "Micro",
  18274. height: math.unit(3, "inches")
  18275. },
  18276. {
  18277. name: "Normal",
  18278. height: math.unit(5 + 7 / 12, "feet"),
  18279. default: true
  18280. },
  18281. {
  18282. name: "Macro",
  18283. height: math.unit(25, "feet")
  18284. },
  18285. {
  18286. name: "Megamacro",
  18287. height: math.unit(2, "miles")
  18288. },
  18289. ]
  18290. ))
  18291. characterMakers.push(() => makeCharacter(
  18292. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18293. {
  18294. front: {
  18295. height: math.unit(6 + 2 / 12, "feet"),
  18296. weight: math.unit(153, "lb"),
  18297. name: "Front",
  18298. image: {
  18299. source: "./media/characters/seth-whilst/front.svg",
  18300. bottom: 0.07
  18301. }
  18302. },
  18303. },
  18304. [
  18305. {
  18306. name: "Micro",
  18307. height: math.unit(5, "inches")
  18308. },
  18309. {
  18310. name: "Normal",
  18311. height: math.unit(6 + 2 / 12, "feet"),
  18312. default: true
  18313. },
  18314. ]
  18315. ))
  18316. characterMakers.push(() => makeCharacter(
  18317. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18318. {
  18319. front: {
  18320. height: math.unit(3, "inches"),
  18321. weight: math.unit(8, "grams"),
  18322. name: "Front",
  18323. image: {
  18324. source: "./media/characters/pocket-jabari/front.svg",
  18325. extra: 1024 / 974,
  18326. bottom: 0.039
  18327. }
  18328. },
  18329. },
  18330. [
  18331. {
  18332. name: "Minimicro",
  18333. height: math.unit(8, "mm")
  18334. },
  18335. {
  18336. name: "Micro",
  18337. height: math.unit(3, "inches"),
  18338. default: true
  18339. },
  18340. {
  18341. name: "Normal",
  18342. height: math.unit(3, "feet")
  18343. },
  18344. ]
  18345. ))
  18346. characterMakers.push(() => makeCharacter(
  18347. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18348. {
  18349. front: {
  18350. height: math.unit(15, "feet"),
  18351. weight: math.unit(3280, "lb"),
  18352. name: "Front",
  18353. image: {
  18354. source: "./media/characters/sapphy/front.svg",
  18355. extra: 671 / 577,
  18356. bottom: 0.085
  18357. }
  18358. },
  18359. back: {
  18360. height: math.unit(15, "feet"),
  18361. weight: math.unit(3280, "lb"),
  18362. name: "Back",
  18363. image: {
  18364. source: "./media/characters/sapphy/back.svg",
  18365. extra: 631 / 607,
  18366. bottom: 0.045
  18367. }
  18368. },
  18369. },
  18370. [
  18371. {
  18372. name: "Normal",
  18373. height: math.unit(15, "feet")
  18374. },
  18375. {
  18376. name: "Casual Macro",
  18377. height: math.unit(120, "feet")
  18378. },
  18379. {
  18380. name: "Macro",
  18381. height: math.unit(2150, "feet"),
  18382. default: true
  18383. },
  18384. {
  18385. name: "Megamacro",
  18386. height: math.unit(8, "miles")
  18387. },
  18388. {
  18389. name: "Galaxy Mom",
  18390. height: math.unit(6, "megalightyears")
  18391. },
  18392. ]
  18393. ))
  18394. characterMakers.push(() => makeCharacter(
  18395. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18396. {
  18397. front: {
  18398. height: math.unit(6, "feet"),
  18399. weight: math.unit(170, "lb"),
  18400. name: "Front",
  18401. image: {
  18402. source: "./media/characters/kiro/front.svg",
  18403. extra: 1064 / 1012,
  18404. bottom: 0.052
  18405. }
  18406. },
  18407. },
  18408. [
  18409. {
  18410. name: "Micro",
  18411. height: math.unit(6, "inches")
  18412. },
  18413. {
  18414. name: "Normal",
  18415. height: math.unit(6, "feet"),
  18416. default: true
  18417. },
  18418. {
  18419. name: "Macro",
  18420. height: math.unit(72, "feet")
  18421. },
  18422. ]
  18423. ))
  18424. characterMakers.push(() => makeCharacter(
  18425. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18426. {
  18427. front: {
  18428. height: math.unit(5 + 9 / 12, "feet"),
  18429. weight: math.unit(175, "lb"),
  18430. name: "Front",
  18431. image: {
  18432. source: "./media/characters/irishfox/front.svg",
  18433. extra: 1912 / 1680,
  18434. bottom: 0.02
  18435. }
  18436. },
  18437. },
  18438. [
  18439. {
  18440. name: "Nano",
  18441. height: math.unit(1, "mm")
  18442. },
  18443. {
  18444. name: "Micro",
  18445. height: math.unit(2, "inches")
  18446. },
  18447. {
  18448. name: "Normal",
  18449. height: math.unit(5 + 9 / 12, "feet"),
  18450. default: true
  18451. },
  18452. {
  18453. name: "Macro",
  18454. height: math.unit(45, "feet")
  18455. },
  18456. ]
  18457. ))
  18458. characterMakers.push(() => makeCharacter(
  18459. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18460. {
  18461. front: {
  18462. height: math.unit(6 + 1 / 12, "feet"),
  18463. weight: math.unit(75, "lb"),
  18464. name: "Front",
  18465. image: {
  18466. source: "./media/characters/aronai-sieyes/front.svg",
  18467. extra: 1556 / 1480,
  18468. bottom: 0.015
  18469. }
  18470. },
  18471. side: {
  18472. height: math.unit(6 + 1 / 12, "feet"),
  18473. weight: math.unit(75, "lb"),
  18474. name: "Side",
  18475. image: {
  18476. source: "./media/characters/aronai-sieyes/side.svg",
  18477. extra: 1433 / 1390,
  18478. bottom: 0.0393
  18479. }
  18480. },
  18481. back: {
  18482. height: math.unit(6 + 1 / 12, "feet"),
  18483. weight: math.unit(75, "lb"),
  18484. name: "Back",
  18485. image: {
  18486. source: "./media/characters/aronai-sieyes/back.svg",
  18487. extra: 1544 / 1494,
  18488. bottom: 0.02
  18489. }
  18490. },
  18491. frontClothed: {
  18492. height: math.unit(6 + 1 / 12, "feet"),
  18493. weight: math.unit(75, "lb"),
  18494. name: "Front (Clothed)",
  18495. image: {
  18496. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18497. extra: 1582 / 1527
  18498. }
  18499. },
  18500. feral: {
  18501. height: math.unit(18, "feet"),
  18502. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18503. name: "Feral",
  18504. image: {
  18505. source: "./media/characters/aronai-sieyes/feral.svg",
  18506. extra: 1530 / 1240,
  18507. bottom: 0.035
  18508. }
  18509. },
  18510. },
  18511. [
  18512. {
  18513. name: "Micro",
  18514. height: math.unit(2, "inches")
  18515. },
  18516. {
  18517. name: "Normal",
  18518. height: math.unit(6 + 1 / 12, "feet"),
  18519. default: true
  18520. }
  18521. ]
  18522. ))
  18523. characterMakers.push(() => makeCharacter(
  18524. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18525. {
  18526. front: {
  18527. height: math.unit(12, "feet"),
  18528. weight: math.unit(410, "kg"),
  18529. name: "Front",
  18530. image: {
  18531. source: "./media/characters/xuna/front.svg",
  18532. extra: 2184 / 1980
  18533. }
  18534. },
  18535. side: {
  18536. height: math.unit(12, "feet"),
  18537. weight: math.unit(410, "kg"),
  18538. name: "Side",
  18539. image: {
  18540. source: "./media/characters/xuna/side.svg",
  18541. extra: 2184 / 1980
  18542. }
  18543. },
  18544. back: {
  18545. height: math.unit(12, "feet"),
  18546. weight: math.unit(410, "kg"),
  18547. name: "Back",
  18548. image: {
  18549. source: "./media/characters/xuna/back.svg",
  18550. extra: 2184 / 1980
  18551. }
  18552. },
  18553. },
  18554. [
  18555. {
  18556. name: "Nano glow",
  18557. height: math.unit(10, "nm")
  18558. },
  18559. {
  18560. name: "Micro floof",
  18561. height: math.unit(0.3, "m")
  18562. },
  18563. {
  18564. name: "Huggable softy boi",
  18565. height: math.unit(3.6576, "m"),
  18566. default: true
  18567. },
  18568. {
  18569. name: "Admirable floof",
  18570. height: math.unit(80, "meters")
  18571. },
  18572. {
  18573. name: "Gentle macro",
  18574. height: math.unit(300, "meters")
  18575. },
  18576. {
  18577. name: "Very careful floof",
  18578. height: math.unit(3200, "meters")
  18579. },
  18580. {
  18581. name: "The mega floof",
  18582. height: math.unit(36000, "meters")
  18583. },
  18584. {
  18585. name: "Giga-fur-Wicker",
  18586. height: math.unit(4800000, "meters")
  18587. },
  18588. {
  18589. name: "Licky world",
  18590. height: math.unit(20000000, "meters")
  18591. },
  18592. {
  18593. name: "Floofy cyan sun",
  18594. height: math.unit(1500000000, "meters")
  18595. },
  18596. {
  18597. name: "Milky Wicker",
  18598. height: math.unit(1000000000000000000000, "meters")
  18599. },
  18600. {
  18601. name: "The observing Wicker",
  18602. height: math.unit(999999999999999999999999999, "meters")
  18603. },
  18604. ]
  18605. ))
  18606. characterMakers.push(() => makeCharacter(
  18607. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18608. {
  18609. front: {
  18610. height: math.unit(5 + 9 / 12, "feet"),
  18611. weight: math.unit(150, "lb"),
  18612. name: "Front",
  18613. image: {
  18614. source: "./media/characters/arokha-sieyes/front.svg",
  18615. extra: 1425 / 1284,
  18616. bottom: 0.05
  18617. }
  18618. },
  18619. },
  18620. [
  18621. {
  18622. name: "Normal",
  18623. height: math.unit(5 + 9 / 12, "feet")
  18624. },
  18625. {
  18626. name: "Macro",
  18627. height: math.unit(30, "meters"),
  18628. default: true
  18629. },
  18630. ]
  18631. ))
  18632. characterMakers.push(() => makeCharacter(
  18633. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18634. {
  18635. front: {
  18636. height: math.unit(6, "feet"),
  18637. weight: math.unit(180, "lb"),
  18638. name: "Front",
  18639. image: {
  18640. source: "./media/characters/arokh-sieyes/front.svg",
  18641. extra: 1830 / 1769,
  18642. bottom: 0.01
  18643. }
  18644. },
  18645. },
  18646. [
  18647. {
  18648. name: "Normal",
  18649. height: math.unit(6, "feet")
  18650. },
  18651. {
  18652. name: "Macro",
  18653. height: math.unit(30, "meters"),
  18654. default: true
  18655. },
  18656. ]
  18657. ))
  18658. characterMakers.push(() => makeCharacter(
  18659. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18660. {
  18661. side: {
  18662. height: math.unit(13 + 1 / 12, "feet"),
  18663. weight: math.unit(8.5, "tonnes"),
  18664. name: "Side",
  18665. image: {
  18666. source: "./media/characters/goldeneye/side.svg",
  18667. extra: 1182 / 778,
  18668. bottom: 0.067
  18669. }
  18670. },
  18671. paw: {
  18672. height: math.unit(3.4, "feet"),
  18673. name: "Paw",
  18674. image: {
  18675. source: "./media/characters/goldeneye/paw.svg"
  18676. }
  18677. },
  18678. },
  18679. [
  18680. {
  18681. name: "Normal",
  18682. height: math.unit(13 + 1 / 12, "feet"),
  18683. default: true
  18684. },
  18685. ]
  18686. ))
  18687. characterMakers.push(() => makeCharacter(
  18688. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18689. {
  18690. front: {
  18691. height: math.unit(6 + 1 / 12, "feet"),
  18692. weight: math.unit(210, "lb"),
  18693. name: "Front",
  18694. image: {
  18695. source: "./media/characters/leonardo-lycheborne/front.svg",
  18696. extra: 390 / 365,
  18697. bottom: 0.032
  18698. }
  18699. },
  18700. side: {
  18701. height: math.unit(6 + 1 / 12, "feet"),
  18702. weight: math.unit(210, "lb"),
  18703. name: "Side",
  18704. image: {
  18705. source: "./media/characters/leonardo-lycheborne/side.svg",
  18706. extra: 390 / 365,
  18707. bottom: 0.005
  18708. }
  18709. },
  18710. back: {
  18711. height: math.unit(6 + 1 / 12, "feet"),
  18712. weight: math.unit(210, "lb"),
  18713. name: "Back",
  18714. image: {
  18715. source: "./media/characters/leonardo-lycheborne/back.svg",
  18716. extra: 392 / 366,
  18717. bottom: 0.01
  18718. }
  18719. },
  18720. hand: {
  18721. height: math.unit(1.08, "feet"),
  18722. name: "Hand",
  18723. image: {
  18724. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18725. }
  18726. },
  18727. foot: {
  18728. height: math.unit(1.32, "feet"),
  18729. name: "Foot",
  18730. image: {
  18731. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18732. }
  18733. },
  18734. were: {
  18735. height: math.unit(20, "feet"),
  18736. weight: math.unit(7800, "lb"),
  18737. name: "Were",
  18738. image: {
  18739. source: "./media/characters/leonardo-lycheborne/were.svg",
  18740. extra: 308 / 294,
  18741. bottom: 0.048
  18742. }
  18743. },
  18744. feral: {
  18745. height: math.unit(7.5, "feet"),
  18746. weight: math.unit(600, "lb"),
  18747. name: "Feral",
  18748. image: {
  18749. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18750. extra: 210 / 186,
  18751. bottom: 0.108
  18752. }
  18753. },
  18754. taur: {
  18755. height: math.unit(11, "feet"),
  18756. weight: math.unit(3300, "lb"),
  18757. name: "Taur",
  18758. image: {
  18759. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18760. extra: 320 / 303,
  18761. bottom: 0.025
  18762. }
  18763. },
  18764. barghest: {
  18765. height: math.unit(11, "feet"),
  18766. weight: math.unit(1300, "lb"),
  18767. name: "Barghest",
  18768. image: {
  18769. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18770. extra: 323 / 302,
  18771. bottom: 0.027
  18772. }
  18773. },
  18774. dick: {
  18775. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18776. name: "Dick",
  18777. image: {
  18778. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18779. }
  18780. },
  18781. dickWere: {
  18782. height: math.unit((20) / 3.8, "feet"),
  18783. name: "Dick (Were)",
  18784. image: {
  18785. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18786. }
  18787. },
  18788. },
  18789. [
  18790. {
  18791. name: "Normal",
  18792. height: math.unit(6 + 1 / 12, "feet"),
  18793. default: true
  18794. },
  18795. ]
  18796. ))
  18797. characterMakers.push(() => makeCharacter(
  18798. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18799. {
  18800. front: {
  18801. height: math.unit(10, "feet"),
  18802. weight: math.unit(350, "lb"),
  18803. name: "Front",
  18804. image: {
  18805. source: "./media/characters/jet/front.svg",
  18806. extra: 2050 / 1980,
  18807. bottom: 0.013
  18808. }
  18809. },
  18810. back: {
  18811. height: math.unit(10, "feet"),
  18812. weight: math.unit(350, "lb"),
  18813. name: "Back",
  18814. image: {
  18815. source: "./media/characters/jet/back.svg",
  18816. extra: 2050 / 1980,
  18817. bottom: 0.013
  18818. }
  18819. },
  18820. },
  18821. [
  18822. {
  18823. name: "Micro",
  18824. height: math.unit(6, "inches")
  18825. },
  18826. {
  18827. name: "Normal",
  18828. height: math.unit(10, "feet"),
  18829. default: true
  18830. },
  18831. {
  18832. name: "Macro",
  18833. height: math.unit(100, "feet")
  18834. },
  18835. ]
  18836. ))
  18837. characterMakers.push(() => makeCharacter(
  18838. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18839. {
  18840. front: {
  18841. height: math.unit(15, "feet"),
  18842. weight: math.unit(2800, "lb"),
  18843. name: "Front",
  18844. image: {
  18845. source: "./media/characters/tanarath/front.svg",
  18846. extra: 2392 / 2220,
  18847. bottom: 0.03
  18848. }
  18849. },
  18850. back: {
  18851. height: math.unit(15, "feet"),
  18852. weight: math.unit(2800, "lb"),
  18853. name: "Back",
  18854. image: {
  18855. source: "./media/characters/tanarath/back.svg",
  18856. extra: 2392 / 2220,
  18857. bottom: 0.03
  18858. }
  18859. },
  18860. },
  18861. [
  18862. {
  18863. name: "Normal",
  18864. height: math.unit(15, "feet"),
  18865. default: true
  18866. },
  18867. ]
  18868. ))
  18869. characterMakers.push(() => makeCharacter(
  18870. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18871. {
  18872. front: {
  18873. height: math.unit(7 + 1 / 12, "feet"),
  18874. weight: math.unit(175, "lb"),
  18875. name: "Front",
  18876. image: {
  18877. source: "./media/characters/patty-cattybatty/front.svg",
  18878. extra: 908 / 874,
  18879. bottom: 0.025
  18880. }
  18881. },
  18882. },
  18883. [
  18884. {
  18885. name: "Micro",
  18886. height: math.unit(1, "inch")
  18887. },
  18888. {
  18889. name: "Normal",
  18890. height: math.unit(7 + 1 / 12, "feet")
  18891. },
  18892. {
  18893. name: "Mini Macro",
  18894. height: math.unit(155, "feet")
  18895. },
  18896. {
  18897. name: "Macro",
  18898. height: math.unit(1077, "feet")
  18899. },
  18900. {
  18901. name: "Mega Macro",
  18902. height: math.unit(47650, "feet"),
  18903. default: true
  18904. },
  18905. {
  18906. name: "Giga Macro",
  18907. height: math.unit(440, "miles")
  18908. },
  18909. {
  18910. name: "Tera Macro",
  18911. height: math.unit(8700, "miles")
  18912. },
  18913. {
  18914. name: "Planetary Macro",
  18915. height: math.unit(32700, "miles")
  18916. },
  18917. {
  18918. name: "Solar Macro",
  18919. height: math.unit(550000, "miles")
  18920. },
  18921. {
  18922. name: "Celestial Macro",
  18923. height: math.unit(2.5, "AU")
  18924. },
  18925. ]
  18926. ))
  18927. characterMakers.push(() => makeCharacter(
  18928. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18929. {
  18930. front: {
  18931. height: math.unit(4 + 5 / 12, "feet"),
  18932. weight: math.unit(90, "lb"),
  18933. name: "Front",
  18934. image: {
  18935. source: "./media/characters/cappu/front.svg",
  18936. extra: 1247 / 1152,
  18937. bottom: 0.012
  18938. }
  18939. },
  18940. },
  18941. [
  18942. {
  18943. name: "Normal",
  18944. height: math.unit(4 + 5 / 12, "feet"),
  18945. default: true
  18946. },
  18947. ]
  18948. ))
  18949. characterMakers.push(() => makeCharacter(
  18950. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18951. {
  18952. frontDressed: {
  18953. height: math.unit(70, "cm"),
  18954. weight: math.unit(6, "kg"),
  18955. name: "Front (Dressed)",
  18956. image: {
  18957. source: "./media/characters/sebi/front-dressed.svg",
  18958. extra: 713.5 / 686.5,
  18959. bottom: 0.003
  18960. }
  18961. },
  18962. front: {
  18963. height: math.unit(70, "cm"),
  18964. weight: math.unit(5, "kg"),
  18965. name: "Front",
  18966. image: {
  18967. source: "./media/characters/sebi/front.svg",
  18968. extra: 713.5 / 686.5,
  18969. bottom: 0.003
  18970. }
  18971. }
  18972. },
  18973. [
  18974. {
  18975. name: "Normal",
  18976. height: math.unit(70, "cm"),
  18977. default: true
  18978. },
  18979. {
  18980. name: "Macro",
  18981. height: math.unit(8, "meters")
  18982. },
  18983. ]
  18984. ))
  18985. characterMakers.push(() => makeCharacter(
  18986. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18987. {
  18988. front: {
  18989. height: math.unit(6, "feet"),
  18990. weight: math.unit(150, "lb"),
  18991. name: "Front",
  18992. image: {
  18993. source: "./media/characters/typhek/front.svg",
  18994. extra: 1948 / 1929,
  18995. bottom: 0.025
  18996. }
  18997. },
  18998. side: {
  18999. height: math.unit(6, "feet"),
  19000. weight: math.unit(150, "lb"),
  19001. name: "Side",
  19002. image: {
  19003. source: "./media/characters/typhek/side.svg",
  19004. extra: 2034 / 2010,
  19005. bottom: 0.003
  19006. }
  19007. },
  19008. back: {
  19009. height: math.unit(6, "feet"),
  19010. weight: math.unit(150, "lb"),
  19011. name: "Back",
  19012. image: {
  19013. source: "./media/characters/typhek/back.svg",
  19014. extra: 2005 / 1978,
  19015. bottom: 0.004
  19016. }
  19017. },
  19018. palm: {
  19019. height: math.unit(1.2, "feet"),
  19020. name: "Palm",
  19021. image: {
  19022. source: "./media/characters/typhek/palm.svg"
  19023. }
  19024. },
  19025. fist: {
  19026. height: math.unit(1.1, "feet"),
  19027. name: "Fist",
  19028. image: {
  19029. source: "./media/characters/typhek/fist.svg"
  19030. }
  19031. },
  19032. foot: {
  19033. height: math.unit(1.57, "feet"),
  19034. name: "Foot",
  19035. image: {
  19036. source: "./media/characters/typhek/foot.svg"
  19037. }
  19038. },
  19039. sole: {
  19040. height: math.unit(2.05, "feet"),
  19041. name: "Sole",
  19042. image: {
  19043. source: "./media/characters/typhek/sole.svg"
  19044. }
  19045. },
  19046. },
  19047. [
  19048. {
  19049. name: "Macro",
  19050. height: math.unit(40, "stories"),
  19051. default: true
  19052. },
  19053. {
  19054. name: "Megamacro",
  19055. height: math.unit(1, "mile")
  19056. },
  19057. {
  19058. name: "Gigamacro",
  19059. height: math.unit(4000, "solarradii")
  19060. },
  19061. {
  19062. name: "Universal",
  19063. height: math.unit(1.1, "universes")
  19064. }
  19065. ]
  19066. ))
  19067. characterMakers.push(() => makeCharacter(
  19068. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19069. {
  19070. side: {
  19071. height: math.unit(5 + 7 / 12, "feet"),
  19072. weight: math.unit(150, "lb"),
  19073. name: "Side",
  19074. image: {
  19075. source: "./media/characters/kassy/side.svg",
  19076. extra: 1280 / 1225,
  19077. bottom: 0.002
  19078. }
  19079. },
  19080. front: {
  19081. height: math.unit(5 + 7 / 12, "feet"),
  19082. weight: math.unit(150, "lb"),
  19083. name: "Front",
  19084. image: {
  19085. source: "./media/characters/kassy/front.svg",
  19086. extra: 1280 / 1225,
  19087. bottom: 0.025
  19088. }
  19089. },
  19090. back: {
  19091. height: math.unit(5 + 7 / 12, "feet"),
  19092. weight: math.unit(150, "lb"),
  19093. name: "Back",
  19094. image: {
  19095. source: "./media/characters/kassy/back.svg",
  19096. extra: 1280 / 1225,
  19097. bottom: 0.002
  19098. }
  19099. },
  19100. foot: {
  19101. height: math.unit(1.266, "feet"),
  19102. name: "Foot",
  19103. image: {
  19104. source: "./media/characters/kassy/foot.svg"
  19105. }
  19106. },
  19107. },
  19108. [
  19109. {
  19110. name: "Normal",
  19111. height: math.unit(5 + 7 / 12, "feet")
  19112. },
  19113. {
  19114. name: "Macro",
  19115. height: math.unit(137, "feet"),
  19116. default: true
  19117. },
  19118. {
  19119. name: "Megamacro",
  19120. height: math.unit(1, "mile")
  19121. },
  19122. ]
  19123. ))
  19124. characterMakers.push(() => makeCharacter(
  19125. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19126. {
  19127. front: {
  19128. height: math.unit(6 + 1 / 12, "feet"),
  19129. weight: math.unit(200, "lb"),
  19130. name: "Front",
  19131. image: {
  19132. source: "./media/characters/neil/front.svg",
  19133. extra: 1326 / 1250,
  19134. bottom: 0.023
  19135. }
  19136. },
  19137. },
  19138. [
  19139. {
  19140. name: "Normal",
  19141. height: math.unit(6 + 1 / 12, "feet"),
  19142. default: true
  19143. },
  19144. {
  19145. name: "Macro",
  19146. height: math.unit(200, "feet")
  19147. },
  19148. ]
  19149. ))
  19150. characterMakers.push(() => makeCharacter(
  19151. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19152. {
  19153. front: {
  19154. height: math.unit(5 + 9 / 12, "feet"),
  19155. weight: math.unit(190, "lb"),
  19156. name: "Front",
  19157. image: {
  19158. source: "./media/characters/atticus/front.svg",
  19159. extra: 2934 / 2785,
  19160. bottom: 0.025
  19161. }
  19162. },
  19163. },
  19164. [
  19165. {
  19166. name: "Normal",
  19167. height: math.unit(5 + 9 / 12, "feet"),
  19168. default: true
  19169. },
  19170. {
  19171. name: "Macro",
  19172. height: math.unit(180, "feet")
  19173. },
  19174. ]
  19175. ))
  19176. characterMakers.push(() => makeCharacter(
  19177. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19178. {
  19179. side: {
  19180. height: math.unit(9, "feet"),
  19181. weight: math.unit(650, "lb"),
  19182. name: "Side",
  19183. image: {
  19184. source: "./media/characters/milo/side.svg",
  19185. extra: 2644 / 2310,
  19186. bottom: 0.032
  19187. }
  19188. },
  19189. },
  19190. [
  19191. {
  19192. name: "Normal",
  19193. height: math.unit(9, "feet"),
  19194. default: true
  19195. },
  19196. {
  19197. name: "Macro",
  19198. height: math.unit(300, "feet")
  19199. },
  19200. ]
  19201. ))
  19202. characterMakers.push(() => makeCharacter(
  19203. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19204. {
  19205. side: {
  19206. height: math.unit(8, "meters"),
  19207. weight: math.unit(90000, "kg"),
  19208. name: "Side",
  19209. image: {
  19210. source: "./media/characters/ijzer/side.svg",
  19211. extra: 2756 / 1600,
  19212. bottom: 0.01
  19213. }
  19214. },
  19215. },
  19216. [
  19217. {
  19218. name: "Small",
  19219. height: math.unit(3, "meters")
  19220. },
  19221. {
  19222. name: "Normal",
  19223. height: math.unit(8, "meters"),
  19224. default: true
  19225. },
  19226. {
  19227. name: "Normal+",
  19228. height: math.unit(10, "meters")
  19229. },
  19230. {
  19231. name: "Bigger",
  19232. height: math.unit(24, "meters")
  19233. },
  19234. {
  19235. name: "Huge",
  19236. height: math.unit(80, "meters")
  19237. },
  19238. ]
  19239. ))
  19240. characterMakers.push(() => makeCharacter(
  19241. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19242. {
  19243. front: {
  19244. height: math.unit(6 + 2 / 12, "feet"),
  19245. weight: math.unit(153, "lb"),
  19246. name: "Front",
  19247. image: {
  19248. source: "./media/characters/luca-cervicum/front.svg",
  19249. extra: 370 / 327,
  19250. bottom: 0.015
  19251. }
  19252. },
  19253. back: {
  19254. height: math.unit(6 + 2 / 12, "feet"),
  19255. weight: math.unit(153, "lb"),
  19256. name: "Back",
  19257. image: {
  19258. source: "./media/characters/luca-cervicum/back.svg",
  19259. extra: 367 / 333,
  19260. bottom: 0.005
  19261. }
  19262. },
  19263. frontGear: {
  19264. height: math.unit(6 + 2 / 12, "feet"),
  19265. weight: math.unit(173, "lb"),
  19266. name: "Front (Gear)",
  19267. image: {
  19268. source: "./media/characters/luca-cervicum/front-gear.svg",
  19269. extra: 377 / 333,
  19270. bottom: 0.006
  19271. }
  19272. },
  19273. },
  19274. [
  19275. {
  19276. name: "Normal",
  19277. height: math.unit(6 + 2 / 12, "feet"),
  19278. default: true
  19279. },
  19280. ]
  19281. ))
  19282. characterMakers.push(() => makeCharacter(
  19283. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19284. {
  19285. front: {
  19286. height: math.unit(6 + 1 / 12, "feet"),
  19287. weight: math.unit(304, "lb"),
  19288. name: "Front",
  19289. image: {
  19290. source: "./media/characters/oliver/front.svg",
  19291. extra: 157 / 143,
  19292. bottom: 0.08
  19293. }
  19294. },
  19295. },
  19296. [
  19297. {
  19298. name: "Normal",
  19299. height: math.unit(6 + 1 / 12, "feet"),
  19300. default: true
  19301. },
  19302. ]
  19303. ))
  19304. characterMakers.push(() => makeCharacter(
  19305. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19306. {
  19307. front: {
  19308. height: math.unit(5 + 7 / 12, "feet"),
  19309. weight: math.unit(140, "lb"),
  19310. name: "Front",
  19311. image: {
  19312. source: "./media/characters/shane/front.svg",
  19313. extra: 304 / 289,
  19314. bottom: 0.005
  19315. }
  19316. },
  19317. },
  19318. [
  19319. {
  19320. name: "Normal",
  19321. height: math.unit(5 + 7 / 12, "feet"),
  19322. default: true
  19323. },
  19324. ]
  19325. ))
  19326. characterMakers.push(() => makeCharacter(
  19327. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19328. {
  19329. front: {
  19330. height: math.unit(5 + 9 / 12, "feet"),
  19331. weight: math.unit(178, "lb"),
  19332. name: "Front",
  19333. image: {
  19334. source: "./media/characters/shin/front.svg",
  19335. extra: 159 / 151,
  19336. bottom: 0.015
  19337. }
  19338. },
  19339. },
  19340. [
  19341. {
  19342. name: "Normal",
  19343. height: math.unit(5 + 9 / 12, "feet"),
  19344. default: true
  19345. },
  19346. ]
  19347. ))
  19348. characterMakers.push(() => makeCharacter(
  19349. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19350. {
  19351. front: {
  19352. height: math.unit(5 + 10 / 12, "feet"),
  19353. weight: math.unit(168, "lb"),
  19354. name: "Front",
  19355. image: {
  19356. source: "./media/characters/xerxes/front.svg",
  19357. extra: 282 / 260,
  19358. bottom: 0.045
  19359. }
  19360. },
  19361. },
  19362. [
  19363. {
  19364. name: "Normal",
  19365. height: math.unit(5 + 10 / 12, "feet"),
  19366. default: true
  19367. },
  19368. ]
  19369. ))
  19370. characterMakers.push(() => makeCharacter(
  19371. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19372. {
  19373. front: {
  19374. height: math.unit(6 + 7 / 12, "feet"),
  19375. weight: math.unit(208, "lb"),
  19376. name: "Front",
  19377. image: {
  19378. source: "./media/characters/chaska/front.svg",
  19379. extra: 332 / 319,
  19380. bottom: 0.015
  19381. }
  19382. },
  19383. },
  19384. [
  19385. {
  19386. name: "Normal",
  19387. height: math.unit(6 + 7 / 12, "feet"),
  19388. default: true
  19389. },
  19390. ]
  19391. ))
  19392. characterMakers.push(() => makeCharacter(
  19393. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19394. {
  19395. front: {
  19396. height: math.unit(5 + 8 / 12, "feet"),
  19397. weight: math.unit(208, "lb"),
  19398. name: "Front",
  19399. image: {
  19400. source: "./media/characters/enuk/front.svg",
  19401. extra: 437 / 406,
  19402. bottom: 0.02
  19403. }
  19404. },
  19405. },
  19406. [
  19407. {
  19408. name: "Normal",
  19409. height: math.unit(5 + 8 / 12, "feet"),
  19410. default: true
  19411. },
  19412. ]
  19413. ))
  19414. characterMakers.push(() => makeCharacter(
  19415. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19416. {
  19417. front: {
  19418. height: math.unit(5 + 10 / 12, "feet"),
  19419. weight: math.unit(252, "lb"),
  19420. name: "Front",
  19421. image: {
  19422. source: "./media/characters/bruun/front.svg",
  19423. extra: 197 / 187,
  19424. bottom: 0.012
  19425. }
  19426. },
  19427. },
  19428. [
  19429. {
  19430. name: "Normal",
  19431. height: math.unit(5 + 10 / 12, "feet"),
  19432. default: true
  19433. },
  19434. ]
  19435. ))
  19436. characterMakers.push(() => makeCharacter(
  19437. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19438. {
  19439. front: {
  19440. height: math.unit(6 + 10 / 12, "feet"),
  19441. weight: math.unit(255, "lb"),
  19442. name: "Front",
  19443. image: {
  19444. source: "./media/characters/alexeev/front.svg",
  19445. extra: 213 / 200,
  19446. bottom: 0.05
  19447. }
  19448. },
  19449. },
  19450. [
  19451. {
  19452. name: "Normal",
  19453. height: math.unit(6 + 10 / 12, "feet"),
  19454. default: true
  19455. },
  19456. ]
  19457. ))
  19458. characterMakers.push(() => makeCharacter(
  19459. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19460. {
  19461. front: {
  19462. height: math.unit(2 + 8 / 12, "feet"),
  19463. weight: math.unit(22, "lb"),
  19464. name: "Front",
  19465. image: {
  19466. source: "./media/characters/evelyn/front.svg",
  19467. extra: 208 / 180
  19468. }
  19469. },
  19470. },
  19471. [
  19472. {
  19473. name: "Normal",
  19474. height: math.unit(2 + 8 / 12, "feet"),
  19475. default: true
  19476. },
  19477. ]
  19478. ))
  19479. characterMakers.push(() => makeCharacter(
  19480. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19481. {
  19482. front: {
  19483. height: math.unit(5 + 9 / 12, "feet"),
  19484. weight: math.unit(139, "lb"),
  19485. name: "Front",
  19486. image: {
  19487. source: "./media/characters/inca/front.svg",
  19488. extra: 294 / 291,
  19489. bottom: 0.03
  19490. }
  19491. },
  19492. },
  19493. [
  19494. {
  19495. name: "Normal",
  19496. height: math.unit(5 + 9 / 12, "feet"),
  19497. default: true
  19498. },
  19499. ]
  19500. ))
  19501. characterMakers.push(() => makeCharacter(
  19502. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19503. {
  19504. front: {
  19505. height: math.unit(5 + 1 / 12, "feet"),
  19506. weight: math.unit(84, "lb"),
  19507. name: "Front",
  19508. image: {
  19509. source: "./media/characters/magdalene/front.svg",
  19510. extra: 293 / 273
  19511. }
  19512. },
  19513. },
  19514. [
  19515. {
  19516. name: "Normal",
  19517. height: math.unit(5 + 1 / 12, "feet"),
  19518. default: true
  19519. },
  19520. ]
  19521. ))
  19522. characterMakers.push(() => makeCharacter(
  19523. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19524. {
  19525. front: {
  19526. height: math.unit(6 + 3 / 12, "feet"),
  19527. weight: math.unit(185, "lb"),
  19528. name: "Front",
  19529. image: {
  19530. source: "./media/characters/mera/front.svg",
  19531. extra: 291 / 277,
  19532. bottom: 0.03
  19533. }
  19534. },
  19535. },
  19536. [
  19537. {
  19538. name: "Normal",
  19539. height: math.unit(6 + 3 / 12, "feet"),
  19540. default: true
  19541. },
  19542. ]
  19543. ))
  19544. characterMakers.push(() => makeCharacter(
  19545. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19546. {
  19547. front: {
  19548. height: math.unit(6 + 7 / 12, "feet"),
  19549. weight: math.unit(160, "lb"),
  19550. name: "Front",
  19551. image: {
  19552. source: "./media/characters/ceres/front.svg",
  19553. extra: 1023 / 950,
  19554. bottom: 0.027
  19555. }
  19556. },
  19557. back: {
  19558. height: math.unit(6 + 7 / 12, "feet"),
  19559. weight: math.unit(160, "lb"),
  19560. name: "Back",
  19561. image: {
  19562. source: "./media/characters/ceres/back.svg",
  19563. extra: 1023 / 950
  19564. }
  19565. },
  19566. },
  19567. [
  19568. {
  19569. name: "Normal",
  19570. height: math.unit(6 + 7 / 12, "feet"),
  19571. default: true
  19572. },
  19573. ]
  19574. ))
  19575. characterMakers.push(() => makeCharacter(
  19576. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19577. {
  19578. front: {
  19579. height: math.unit(5 + 10 / 12, "feet"),
  19580. weight: math.unit(150, "lb"),
  19581. name: "Front",
  19582. image: {
  19583. source: "./media/characters/kris/front.svg",
  19584. extra: 885 / 803,
  19585. bottom: 0.03
  19586. }
  19587. },
  19588. },
  19589. [
  19590. {
  19591. name: "Normal",
  19592. height: math.unit(5 + 10 / 12, "feet"),
  19593. default: true
  19594. },
  19595. ]
  19596. ))
  19597. characterMakers.push(() => makeCharacter(
  19598. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19599. {
  19600. front: {
  19601. height: math.unit(7, "feet"),
  19602. weight: math.unit(120, "kg"),
  19603. name: "Front",
  19604. image: {
  19605. source: "./media/characters/taluthus/front.svg",
  19606. extra: 903 / 833,
  19607. bottom: 0.015
  19608. }
  19609. },
  19610. },
  19611. [
  19612. {
  19613. name: "Normal",
  19614. height: math.unit(7, "feet"),
  19615. default: true
  19616. },
  19617. {
  19618. name: "Macro",
  19619. height: math.unit(300, "feet")
  19620. },
  19621. ]
  19622. ))
  19623. characterMakers.push(() => makeCharacter(
  19624. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19625. {
  19626. front: {
  19627. height: math.unit(5 + 9 / 12, "feet"),
  19628. weight: math.unit(145, "lb"),
  19629. name: "Front",
  19630. image: {
  19631. source: "./media/characters/dawn/front.svg",
  19632. extra: 2094 / 2016,
  19633. bottom: 0.025
  19634. }
  19635. },
  19636. back: {
  19637. height: math.unit(5 + 9 / 12, "feet"),
  19638. weight: math.unit(160, "lb"),
  19639. name: "Back",
  19640. image: {
  19641. source: "./media/characters/dawn/back.svg",
  19642. extra: 2112 / 2080,
  19643. bottom: 0.005
  19644. }
  19645. },
  19646. },
  19647. [
  19648. {
  19649. name: "Normal",
  19650. height: math.unit(6 + 7 / 12, "feet"),
  19651. default: true
  19652. },
  19653. ]
  19654. ))
  19655. characterMakers.push(() => makeCharacter(
  19656. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19657. {
  19658. anthro: {
  19659. height: math.unit(8 + 3 / 12, "feet"),
  19660. weight: math.unit(450, "lb"),
  19661. name: "Anthro",
  19662. image: {
  19663. source: "./media/characters/arador/anthro.svg",
  19664. extra: 1835 / 1718,
  19665. bottom: 0.025
  19666. }
  19667. },
  19668. feral: {
  19669. height: math.unit(4, "feet"),
  19670. weight: math.unit(200, "lb"),
  19671. name: "Feral",
  19672. image: {
  19673. source: "./media/characters/arador/feral.svg",
  19674. extra: 1683 / 1514,
  19675. bottom: 0.07
  19676. }
  19677. },
  19678. },
  19679. [
  19680. {
  19681. name: "Normal",
  19682. height: math.unit(8 + 3 / 12, "feet")
  19683. },
  19684. {
  19685. name: "Macro",
  19686. height: math.unit(82.5, "feet"),
  19687. default: true
  19688. },
  19689. ]
  19690. ))
  19691. characterMakers.push(() => makeCharacter(
  19692. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19693. {
  19694. front: {
  19695. height: math.unit(5 + 10 / 12, "feet"),
  19696. weight: math.unit(125, "lb"),
  19697. name: "Front",
  19698. image: {
  19699. source: "./media/characters/dharsi/front.svg",
  19700. extra: 716 / 630,
  19701. bottom: 0.035
  19702. }
  19703. },
  19704. },
  19705. [
  19706. {
  19707. name: "Nano",
  19708. height: math.unit(100, "nm")
  19709. },
  19710. {
  19711. name: "Micro",
  19712. height: math.unit(2, "inches")
  19713. },
  19714. {
  19715. name: "Normal",
  19716. height: math.unit(5 + 10 / 12, "feet"),
  19717. default: true
  19718. },
  19719. {
  19720. name: "Macro",
  19721. height: math.unit(1000, "feet")
  19722. },
  19723. {
  19724. name: "Megamacro",
  19725. height: math.unit(10, "miles")
  19726. },
  19727. {
  19728. name: "Gigamacro",
  19729. height: math.unit(3000, "miles")
  19730. },
  19731. {
  19732. name: "Teramacro",
  19733. height: math.unit(500000, "miles")
  19734. },
  19735. {
  19736. name: "Teramacro+",
  19737. height: math.unit(30, "galaxies")
  19738. },
  19739. ]
  19740. ))
  19741. characterMakers.push(() => makeCharacter(
  19742. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19743. {
  19744. front: {
  19745. height: math.unit(6, "feet"),
  19746. weight: math.unit(150, "lb"),
  19747. name: "Front",
  19748. image: {
  19749. source: "./media/characters/deathy/front.svg",
  19750. extra: 1552 / 1463,
  19751. bottom: 0.025
  19752. }
  19753. },
  19754. side: {
  19755. height: math.unit(6, "feet"),
  19756. weight: math.unit(150, "lb"),
  19757. name: "Side",
  19758. image: {
  19759. source: "./media/characters/deathy/side.svg",
  19760. extra: 1604 / 1455,
  19761. bottom: 0.025
  19762. }
  19763. },
  19764. back: {
  19765. height: math.unit(6, "feet"),
  19766. weight: math.unit(150, "lb"),
  19767. name: "Back",
  19768. image: {
  19769. source: "./media/characters/deathy/back.svg",
  19770. extra: 1580 / 1463,
  19771. bottom: 0.005
  19772. }
  19773. },
  19774. },
  19775. [
  19776. {
  19777. name: "Micro",
  19778. height: math.unit(5, "millimeters")
  19779. },
  19780. {
  19781. name: "Normal",
  19782. height: math.unit(6 + 5 / 12, "feet"),
  19783. default: true
  19784. },
  19785. ]
  19786. ))
  19787. characterMakers.push(() => makeCharacter(
  19788. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19789. {
  19790. front: {
  19791. height: math.unit(16, "feet"),
  19792. weight: math.unit(4000, "lb"),
  19793. name: "Front",
  19794. image: {
  19795. source: "./media/characters/juniper/front.svg",
  19796. bottom: 0.04
  19797. }
  19798. },
  19799. },
  19800. [
  19801. {
  19802. name: "Normal",
  19803. height: math.unit(16, "feet"),
  19804. default: true
  19805. },
  19806. ]
  19807. ))
  19808. characterMakers.push(() => makeCharacter(
  19809. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19810. {
  19811. front: {
  19812. height: math.unit(6, "feet"),
  19813. weight: math.unit(150, "lb"),
  19814. name: "Front",
  19815. image: {
  19816. source: "./media/characters/hipster/front.svg",
  19817. extra: 1312 / 1209,
  19818. bottom: 0.025
  19819. }
  19820. },
  19821. back: {
  19822. height: math.unit(6, "feet"),
  19823. weight: math.unit(150, "lb"),
  19824. name: "Back",
  19825. image: {
  19826. source: "./media/characters/hipster/back.svg",
  19827. extra: 1281 / 1196,
  19828. bottom: 0.01
  19829. }
  19830. },
  19831. },
  19832. [
  19833. {
  19834. name: "Micro",
  19835. height: math.unit(1, "mm")
  19836. },
  19837. {
  19838. name: "Normal",
  19839. height: math.unit(4, "inches"),
  19840. default: true
  19841. },
  19842. {
  19843. name: "Macro",
  19844. height: math.unit(500, "feet")
  19845. },
  19846. {
  19847. name: "Megamacro",
  19848. height: math.unit(1000, "miles")
  19849. },
  19850. ]
  19851. ))
  19852. characterMakers.push(() => makeCharacter(
  19853. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19854. {
  19855. front: {
  19856. height: math.unit(6, "feet"),
  19857. weight: math.unit(150, "lb"),
  19858. name: "Front",
  19859. image: {
  19860. source: "./media/characters/tendirmuldr/front.svg",
  19861. extra: 1878 / 1772,
  19862. bottom: 0.015
  19863. }
  19864. },
  19865. },
  19866. [
  19867. {
  19868. name: "Megamacro",
  19869. height: math.unit(1500, "miles"),
  19870. default: true
  19871. },
  19872. ]
  19873. ))
  19874. characterMakers.push(() => makeCharacter(
  19875. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19876. {
  19877. front: {
  19878. height: math.unit(14, "feet"),
  19879. weight: math.unit(12000, "lb"),
  19880. name: "Front",
  19881. image: {
  19882. source: "./media/characters/mort/front.svg",
  19883. extra: 365 / 318,
  19884. bottom: 0.01
  19885. }
  19886. },
  19887. side: {
  19888. height: math.unit(14, "feet"),
  19889. weight: math.unit(12000, "lb"),
  19890. name: "Side",
  19891. image: {
  19892. source: "./media/characters/mort/side.svg",
  19893. extra: 365 / 318,
  19894. bottom: 0.052
  19895. },
  19896. default: true
  19897. },
  19898. back: {
  19899. height: math.unit(14, "feet"),
  19900. weight: math.unit(12000, "lb"),
  19901. name: "Back",
  19902. image: {
  19903. source: "./media/characters/mort/back.svg",
  19904. extra: 371 / 332,
  19905. bottom: 0.18
  19906. }
  19907. },
  19908. },
  19909. [
  19910. {
  19911. name: "Normal",
  19912. height: math.unit(14, "feet"),
  19913. default: true
  19914. },
  19915. ]
  19916. ))
  19917. characterMakers.push(() => makeCharacter(
  19918. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19919. {
  19920. front: {
  19921. height: math.unit(8, "feet"),
  19922. weight: math.unit(1, "ton"),
  19923. name: "Front",
  19924. image: {
  19925. source: "./media/characters/lycoa/front.svg",
  19926. extra: 1875 / 1789,
  19927. bottom: 0.022
  19928. }
  19929. },
  19930. back: {
  19931. height: math.unit(8, "feet"),
  19932. weight: math.unit(1, "ton"),
  19933. name: "Back",
  19934. image: {
  19935. source: "./media/characters/lycoa/back.svg",
  19936. extra: 1835 / 1781,
  19937. bottom: 0.03
  19938. }
  19939. },
  19940. head: {
  19941. height: math.unit(2.1, "feet"),
  19942. name: "Head",
  19943. image: {
  19944. source: "./media/characters/lycoa/head.svg"
  19945. }
  19946. },
  19947. tailmaw: {
  19948. height: math.unit(1.9, "feet"),
  19949. name: "Tailmaw",
  19950. image: {
  19951. source: "./media/characters/lycoa/tailmaw.svg"
  19952. }
  19953. },
  19954. tentacles: {
  19955. height: math.unit(2.1, "feet"),
  19956. name: "Tentacles",
  19957. image: {
  19958. source: "./media/characters/lycoa/tentacles.svg"
  19959. }
  19960. },
  19961. dick: {
  19962. height: math.unit(1.73, "feet"),
  19963. name: "Dick",
  19964. image: {
  19965. source: "./media/characters/lycoa/dick.svg"
  19966. }
  19967. },
  19968. },
  19969. [
  19970. {
  19971. name: "Normal",
  19972. height: math.unit(8, "feet"),
  19973. default: true
  19974. },
  19975. {
  19976. name: "Macro",
  19977. height: math.unit(30, "feet")
  19978. },
  19979. ]
  19980. ))
  19981. characterMakers.push(() => makeCharacter(
  19982. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19983. {
  19984. front: {
  19985. height: math.unit(4 + 2 / 12, "feet"),
  19986. weight: math.unit(70, "lb"),
  19987. name: "Front",
  19988. image: {
  19989. source: "./media/characters/naldara/front.svg",
  19990. extra: 841 / 720,
  19991. bottom: 0.04
  19992. }
  19993. },
  19994. naga: {
  19995. height: math.unit(23, "feet"),
  19996. weight: math.unit(15000, "kg"),
  19997. name: "Naga",
  19998. image: {
  19999. source: "./media/characters/naldara/naga.svg",
  20000. extra: 3290 / 2959,
  20001. bottom: 124 / 3432
  20002. }
  20003. },
  20004. },
  20005. [
  20006. {
  20007. name: "Normal",
  20008. height: math.unit(4 + 2 / 12, "feet"),
  20009. default: true
  20010. },
  20011. ]
  20012. ))
  20013. characterMakers.push(() => makeCharacter(
  20014. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20015. {
  20016. front: {
  20017. height: math.unit(13 + 7 / 12, "feet"),
  20018. weight: math.unit(1500, "lb"),
  20019. name: "Front",
  20020. image: {
  20021. source: "./media/characters/briar/front.svg",
  20022. extra: 626 / 596,
  20023. bottom: 0.08
  20024. }
  20025. },
  20026. },
  20027. [
  20028. {
  20029. name: "Normal",
  20030. height: math.unit(13 + 7 / 12, "feet"),
  20031. default: true
  20032. },
  20033. ]
  20034. ))
  20035. characterMakers.push(() => makeCharacter(
  20036. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20037. {
  20038. side: {
  20039. height: math.unit(10, "feet"),
  20040. weight: math.unit(500, "lb"),
  20041. name: "Side",
  20042. image: {
  20043. source: "./media/characters/vanguard/side.svg",
  20044. extra: 502 / 425,
  20045. bottom: 0.087
  20046. }
  20047. },
  20048. },
  20049. [
  20050. {
  20051. name: "Normal",
  20052. height: math.unit(10, "feet"),
  20053. default: true
  20054. },
  20055. ]
  20056. ))
  20057. characterMakers.push(() => makeCharacter(
  20058. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20059. {
  20060. front: {
  20061. height: math.unit(7.5, "feet"),
  20062. weight: math.unit(2, "lb"),
  20063. name: "Front",
  20064. image: {
  20065. source: "./media/characters/artemis/front.svg",
  20066. extra: 1192 / 1075,
  20067. bottom: 0.07
  20068. }
  20069. },
  20070. frontNsfw: {
  20071. height: math.unit(7.5, "feet"),
  20072. weight: math.unit(2, "lb"),
  20073. name: "Front (NSFW)",
  20074. image: {
  20075. source: "./media/characters/artemis/front-nsfw.svg",
  20076. extra: 1192 / 1075,
  20077. bottom: 0.07
  20078. }
  20079. },
  20080. frontNsfwer: {
  20081. height: math.unit(7.5, "feet"),
  20082. weight: math.unit(2, "lb"),
  20083. name: "Front (NSFW-er)",
  20084. image: {
  20085. source: "./media/characters/artemis/front-nsfwer.svg",
  20086. extra: 1192 / 1075,
  20087. bottom: 0.07
  20088. }
  20089. },
  20090. side: {
  20091. height: math.unit(7.5, "feet"),
  20092. weight: math.unit(2, "lb"),
  20093. name: "Side",
  20094. image: {
  20095. source: "./media/characters/artemis/side.svg",
  20096. extra: 1192 / 1075,
  20097. bottom: 0.07
  20098. }
  20099. },
  20100. sideNsfw: {
  20101. height: math.unit(7.5, "feet"),
  20102. weight: math.unit(2, "lb"),
  20103. name: "Side (NSFW)",
  20104. image: {
  20105. source: "./media/characters/artemis/side-nsfw.svg",
  20106. extra: 1192 / 1075,
  20107. bottom: 0.07
  20108. }
  20109. },
  20110. sideNsfwer: {
  20111. height: math.unit(7.5, "feet"),
  20112. weight: math.unit(2, "lb"),
  20113. name: "Side (NSFW-er)",
  20114. image: {
  20115. source: "./media/characters/artemis/side-nsfwer.svg",
  20116. extra: 1192 / 1075,
  20117. bottom: 0.07
  20118. }
  20119. },
  20120. maw: {
  20121. height: math.unit(1.1, "feet"),
  20122. name: "Maw",
  20123. image: {
  20124. source: "./media/characters/artemis/maw.svg"
  20125. }
  20126. },
  20127. stomach: {
  20128. height: math.unit(0.95, "feet"),
  20129. name: "Stomach",
  20130. image: {
  20131. source: "./media/characters/artemis/stomach.svg"
  20132. }
  20133. },
  20134. dickCanine: {
  20135. height: math.unit(1, "feet"),
  20136. name: "Dick (Canine)",
  20137. image: {
  20138. source: "./media/characters/artemis/dick-canine.svg"
  20139. }
  20140. },
  20141. dickEquine: {
  20142. height: math.unit(0.85, "feet"),
  20143. name: "Dick (Equine)",
  20144. image: {
  20145. source: "./media/characters/artemis/dick-equine.svg"
  20146. }
  20147. },
  20148. dickExotic: {
  20149. height: math.unit(0.85, "feet"),
  20150. name: "Dick (Exotic)",
  20151. image: {
  20152. source: "./media/characters/artemis/dick-exotic.svg"
  20153. }
  20154. },
  20155. },
  20156. [
  20157. {
  20158. name: "Normal",
  20159. height: math.unit(7.5, "feet"),
  20160. default: true
  20161. },
  20162. {
  20163. name: "Enlarged",
  20164. height: math.unit(12, "feet")
  20165. },
  20166. ]
  20167. ))
  20168. characterMakers.push(() => makeCharacter(
  20169. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20170. {
  20171. front: {
  20172. height: math.unit(5 + 3 / 12, "feet"),
  20173. weight: math.unit(160, "lb"),
  20174. name: "Front",
  20175. image: {
  20176. source: "./media/characters/kira/front.svg",
  20177. extra: 906 / 786,
  20178. bottom: 0.01
  20179. }
  20180. },
  20181. back: {
  20182. height: math.unit(5 + 3 / 12, "feet"),
  20183. weight: math.unit(160, "lb"),
  20184. name: "Back",
  20185. image: {
  20186. source: "./media/characters/kira/back.svg",
  20187. extra: 882 / 757,
  20188. bottom: 0.005
  20189. }
  20190. },
  20191. frontDressed: {
  20192. height: math.unit(5 + 3 / 12, "feet"),
  20193. weight: math.unit(160, "lb"),
  20194. name: "Front (Dressed)",
  20195. image: {
  20196. source: "./media/characters/kira/front-dressed.svg",
  20197. extra: 906 / 786,
  20198. bottom: 0.01
  20199. }
  20200. },
  20201. beans: {
  20202. height: math.unit(0.92, "feet"),
  20203. name: "Beans",
  20204. image: {
  20205. source: "./media/characters/kira/beans.svg"
  20206. }
  20207. },
  20208. },
  20209. [
  20210. {
  20211. name: "Normal",
  20212. height: math.unit(5 + 3 / 12, "feet"),
  20213. default: true
  20214. },
  20215. ]
  20216. ))
  20217. characterMakers.push(() => makeCharacter(
  20218. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20219. {
  20220. front: {
  20221. height: math.unit(5 + 4 / 12, "feet"),
  20222. weight: math.unit(145, "lb"),
  20223. name: "Front",
  20224. image: {
  20225. source: "./media/characters/scramble/front.svg",
  20226. extra: 763 / 727,
  20227. bottom: 0.05
  20228. }
  20229. },
  20230. back: {
  20231. height: math.unit(5 + 4 / 12, "feet"),
  20232. weight: math.unit(145, "lb"),
  20233. name: "Back",
  20234. image: {
  20235. source: "./media/characters/scramble/back.svg",
  20236. extra: 826 / 737,
  20237. bottom: 0.002
  20238. }
  20239. },
  20240. },
  20241. [
  20242. {
  20243. name: "Normal",
  20244. height: math.unit(5 + 4 / 12, "feet"),
  20245. default: true
  20246. },
  20247. ]
  20248. ))
  20249. characterMakers.push(() => makeCharacter(
  20250. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20251. {
  20252. side: {
  20253. height: math.unit(6 + 2 / 12, "feet"),
  20254. weight: math.unit(190, "lb"),
  20255. name: "Side",
  20256. image: {
  20257. source: "./media/characters/biscuit/side.svg",
  20258. extra: 858 / 791,
  20259. bottom: 0.044
  20260. }
  20261. },
  20262. },
  20263. [
  20264. {
  20265. name: "Normal",
  20266. height: math.unit(6 + 2 / 12, "feet"),
  20267. default: true
  20268. },
  20269. ]
  20270. ))
  20271. characterMakers.push(() => makeCharacter(
  20272. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20273. {
  20274. front: {
  20275. height: math.unit(5 + 2 / 12, "feet"),
  20276. weight: math.unit(120, "lb"),
  20277. name: "Front",
  20278. image: {
  20279. source: "./media/characters/poffin/front.svg",
  20280. extra: 786 / 680,
  20281. bottom: 0.005
  20282. }
  20283. },
  20284. },
  20285. [
  20286. {
  20287. name: "Normal",
  20288. height: math.unit(5 + 2 / 12, "feet"),
  20289. default: true
  20290. },
  20291. ]
  20292. ))
  20293. characterMakers.push(() => makeCharacter(
  20294. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20295. {
  20296. front: {
  20297. height: math.unit(6 + 3 / 12, "feet"),
  20298. weight: math.unit(519, "lb"),
  20299. name: "Front",
  20300. image: {
  20301. source: "./media/characters/dhari/front.svg",
  20302. extra: 1048 / 946,
  20303. bottom: 0.015
  20304. }
  20305. },
  20306. back: {
  20307. height: math.unit(6 + 3 / 12, "feet"),
  20308. weight: math.unit(519, "lb"),
  20309. name: "Back",
  20310. image: {
  20311. source: "./media/characters/dhari/back.svg",
  20312. extra: 1048 / 931,
  20313. bottom: 0.005
  20314. }
  20315. },
  20316. frontDressed: {
  20317. height: math.unit(6 + 3 / 12, "feet"),
  20318. weight: math.unit(519, "lb"),
  20319. name: "Front (Dressed)",
  20320. image: {
  20321. source: "./media/characters/dhari/front-dressed.svg",
  20322. extra: 1713 / 1546,
  20323. bottom: 0.02
  20324. }
  20325. },
  20326. backDressed: {
  20327. height: math.unit(6 + 3 / 12, "feet"),
  20328. weight: math.unit(519, "lb"),
  20329. name: "Back (Dressed)",
  20330. image: {
  20331. source: "./media/characters/dhari/back-dressed.svg",
  20332. extra: 1699 / 1537,
  20333. bottom: 0.01
  20334. }
  20335. },
  20336. maw: {
  20337. height: math.unit(0.95, "feet"),
  20338. name: "Maw",
  20339. image: {
  20340. source: "./media/characters/dhari/maw.svg"
  20341. }
  20342. },
  20343. wereFront: {
  20344. height: math.unit(12 + 8 / 12, "feet"),
  20345. weight: math.unit(4000, "lb"),
  20346. name: "Front (Were)",
  20347. image: {
  20348. source: "./media/characters/dhari/were-front.svg",
  20349. extra: 1065 / 969,
  20350. bottom: 0.015
  20351. }
  20352. },
  20353. wereBack: {
  20354. height: math.unit(12 + 8 / 12, "feet"),
  20355. weight: math.unit(4000, "lb"),
  20356. name: "Back (Were)",
  20357. image: {
  20358. source: "./media/characters/dhari/were-back.svg",
  20359. extra: 1065 / 969,
  20360. bottom: 0.012
  20361. }
  20362. },
  20363. wereMaw: {
  20364. height: math.unit(0.625, "meters"),
  20365. name: "Maw (Were)",
  20366. image: {
  20367. source: "./media/characters/dhari/were-maw.svg"
  20368. }
  20369. },
  20370. },
  20371. [
  20372. {
  20373. name: "Normal",
  20374. height: math.unit(6 + 3 / 12, "feet"),
  20375. default: true
  20376. },
  20377. ]
  20378. ))
  20379. characterMakers.push(() => makeCharacter(
  20380. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20381. {
  20382. anthro: {
  20383. height: math.unit(5 + 7 / 12, "feet"),
  20384. weight: math.unit(175, "lb"),
  20385. name: "Anthro",
  20386. image: {
  20387. source: "./media/characters/rena-dyne/anthro.svg",
  20388. extra: 1849 / 1785,
  20389. bottom: 0.005
  20390. }
  20391. },
  20392. taur: {
  20393. height: math.unit(15 + 6 / 12, "feet"),
  20394. weight: math.unit(8000, "lb"),
  20395. name: "Taur",
  20396. image: {
  20397. source: "./media/characters/rena-dyne/taur.svg",
  20398. extra: 2315 / 2234,
  20399. bottom: 0.033
  20400. }
  20401. },
  20402. },
  20403. [
  20404. {
  20405. name: "Normal",
  20406. height: math.unit(5 + 7 / 12, "feet"),
  20407. default: true
  20408. },
  20409. ]
  20410. ))
  20411. characterMakers.push(() => makeCharacter(
  20412. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20413. {
  20414. front: {
  20415. height: math.unit(8, "feet"),
  20416. weight: math.unit(600, "lb"),
  20417. name: "Front",
  20418. image: {
  20419. source: "./media/characters/weremeep/front.svg",
  20420. extra: 967 / 862,
  20421. bottom: 0.01
  20422. }
  20423. },
  20424. },
  20425. [
  20426. {
  20427. name: "Normal",
  20428. height: math.unit(8, "feet"),
  20429. default: true
  20430. },
  20431. {
  20432. name: "Lorg",
  20433. height: math.unit(12, "feet")
  20434. },
  20435. {
  20436. name: "Oh Lawd She Comin'",
  20437. height: math.unit(20, "feet")
  20438. },
  20439. ]
  20440. ))
  20441. characterMakers.push(() => makeCharacter(
  20442. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20443. {
  20444. front: {
  20445. height: math.unit(4, "feet"),
  20446. weight: math.unit(90, "lb"),
  20447. name: "Front",
  20448. image: {
  20449. source: "./media/characters/reza/front.svg",
  20450. extra: 1183 / 1111,
  20451. bottom: 0.017
  20452. }
  20453. },
  20454. back: {
  20455. height: math.unit(4, "feet"),
  20456. weight: math.unit(90, "lb"),
  20457. name: "Back",
  20458. image: {
  20459. source: "./media/characters/reza/back.svg",
  20460. extra: 1183 / 1111,
  20461. bottom: 0.01
  20462. }
  20463. },
  20464. drake: {
  20465. height: math.unit(30, "feet"),
  20466. weight: math.unit(246960, "lb"),
  20467. name: "Drake",
  20468. image: {
  20469. source: "./media/characters/reza/drake.svg",
  20470. extra: 2350 / 2024,
  20471. bottom: 60.7 / 2403
  20472. }
  20473. },
  20474. },
  20475. [
  20476. {
  20477. name: "Normal",
  20478. height: math.unit(4, "feet"),
  20479. default: true
  20480. },
  20481. ]
  20482. ))
  20483. characterMakers.push(() => makeCharacter(
  20484. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20485. {
  20486. side: {
  20487. height: math.unit(15, "feet"),
  20488. weight: math.unit(14, "tons"),
  20489. name: "Side",
  20490. image: {
  20491. source: "./media/characters/athea/side.svg",
  20492. extra: 960 / 540,
  20493. bottom: 0.003
  20494. }
  20495. },
  20496. sitting: {
  20497. height: math.unit(6 * 2.85, "feet"),
  20498. weight: math.unit(14, "tons"),
  20499. name: "Sitting",
  20500. image: {
  20501. source: "./media/characters/athea/sitting.svg",
  20502. extra: 621 / 581,
  20503. bottom: 0.075
  20504. }
  20505. },
  20506. maw: {
  20507. height: math.unit(7.59498031496063, "feet"),
  20508. name: "Maw",
  20509. image: {
  20510. source: "./media/characters/athea/maw.svg"
  20511. }
  20512. },
  20513. },
  20514. [
  20515. {
  20516. name: "Lap Cat",
  20517. height: math.unit(2.5, "feet")
  20518. },
  20519. {
  20520. name: "Minimacro",
  20521. height: math.unit(15, "feet"),
  20522. default: true
  20523. },
  20524. {
  20525. name: "Macro",
  20526. height: math.unit(120, "feet")
  20527. },
  20528. {
  20529. name: "Macro+",
  20530. height: math.unit(640, "feet")
  20531. },
  20532. {
  20533. name: "Colossus",
  20534. height: math.unit(2.2, "miles")
  20535. },
  20536. ]
  20537. ))
  20538. characterMakers.push(() => makeCharacter(
  20539. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20540. {
  20541. front: {
  20542. height: math.unit(8 + 8 / 12, "feet"),
  20543. weight: math.unit(130, "kg"),
  20544. name: "Front",
  20545. image: {
  20546. source: "./media/characters/seroko/front.svg",
  20547. extra: 1385 / 1280,
  20548. bottom: 0.025
  20549. }
  20550. },
  20551. back: {
  20552. height: math.unit(8 + 8 / 12, "feet"),
  20553. weight: math.unit(130, "kg"),
  20554. name: "Back",
  20555. image: {
  20556. source: "./media/characters/seroko/back.svg",
  20557. extra: 1369 / 1238,
  20558. bottom: 0.018
  20559. }
  20560. },
  20561. frontDressed: {
  20562. height: math.unit(8 + 8 / 12, "feet"),
  20563. weight: math.unit(130, "kg"),
  20564. name: "Front (Dressed)",
  20565. image: {
  20566. source: "./media/characters/seroko/front-dressed.svg",
  20567. extra: 1366 / 1275,
  20568. bottom: 0.03
  20569. }
  20570. },
  20571. },
  20572. [
  20573. {
  20574. name: "Normal",
  20575. height: math.unit(8 + 8 / 12, "feet"),
  20576. default: true
  20577. },
  20578. ]
  20579. ))
  20580. characterMakers.push(() => makeCharacter(
  20581. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20582. {
  20583. front: {
  20584. height: math.unit(5.5, "feet"),
  20585. weight: math.unit(160, "lb"),
  20586. name: "Front",
  20587. image: {
  20588. source: "./media/characters/quatzi/front.svg",
  20589. extra: 2346 / 2242,
  20590. bottom: 0.015
  20591. }
  20592. },
  20593. },
  20594. [
  20595. {
  20596. name: "Normal",
  20597. height: math.unit(5.5, "feet"),
  20598. default: true
  20599. },
  20600. {
  20601. name: "Big",
  20602. height: math.unit(7.7, "feet")
  20603. },
  20604. ]
  20605. ))
  20606. characterMakers.push(() => makeCharacter(
  20607. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20608. {
  20609. front: {
  20610. height: math.unit(5 + 11 / 12, "feet"),
  20611. weight: math.unit(180, "lb"),
  20612. name: "Front",
  20613. image: {
  20614. source: "./media/characters/sen/front.svg",
  20615. extra: 1321 / 1254,
  20616. bottom: 0.015
  20617. }
  20618. },
  20619. side: {
  20620. height: math.unit(5 + 11 / 12, "feet"),
  20621. weight: math.unit(180, "lb"),
  20622. name: "Side",
  20623. image: {
  20624. source: "./media/characters/sen/side.svg",
  20625. extra: 1321 / 1254,
  20626. bottom: 0.007
  20627. }
  20628. },
  20629. back: {
  20630. height: math.unit(5 + 11 / 12, "feet"),
  20631. weight: math.unit(180, "lb"),
  20632. name: "Back",
  20633. image: {
  20634. source: "./media/characters/sen/back.svg",
  20635. extra: 1321 / 1254
  20636. }
  20637. },
  20638. },
  20639. [
  20640. {
  20641. name: "Normal",
  20642. height: math.unit(5 + 11 / 12, "feet"),
  20643. default: true
  20644. },
  20645. ]
  20646. ))
  20647. characterMakers.push(() => makeCharacter(
  20648. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20649. {
  20650. front: {
  20651. height: math.unit(166.6, "cm"),
  20652. weight: math.unit(66.6, "kg"),
  20653. name: "Front",
  20654. image: {
  20655. source: "./media/characters/fruity/front.svg",
  20656. extra: 1510 / 1386,
  20657. bottom: 0.04
  20658. }
  20659. },
  20660. back: {
  20661. height: math.unit(166.6, "cm"),
  20662. weight: math.unit(66.6, "lb"),
  20663. name: "Back",
  20664. image: {
  20665. source: "./media/characters/fruity/back.svg",
  20666. extra: 1563 / 1435,
  20667. bottom: 0.005
  20668. }
  20669. },
  20670. },
  20671. [
  20672. {
  20673. name: "Normal",
  20674. height: math.unit(166.6, "cm"),
  20675. default: true
  20676. },
  20677. {
  20678. name: "Demonic",
  20679. height: math.unit(166.6, "feet")
  20680. },
  20681. ]
  20682. ))
  20683. characterMakers.push(() => makeCharacter(
  20684. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20685. {
  20686. side: {
  20687. height: math.unit(10, "feet"),
  20688. weight: math.unit(500, "lb"),
  20689. name: "Side",
  20690. image: {
  20691. source: "./media/characters/zost/side.svg",
  20692. extra: 966 / 880,
  20693. bottom: 0.075
  20694. }
  20695. },
  20696. mawFront: {
  20697. height: math.unit(1.08, "meters"),
  20698. name: "Maw (Front)",
  20699. image: {
  20700. source: "./media/characters/zost/maw-front.svg"
  20701. }
  20702. },
  20703. mawSide: {
  20704. height: math.unit(2.66, "feet"),
  20705. name: "Maw (Side)",
  20706. image: {
  20707. source: "./media/characters/zost/maw-side.svg"
  20708. }
  20709. },
  20710. },
  20711. [
  20712. {
  20713. name: "Normal",
  20714. height: math.unit(10, "feet"),
  20715. default: true
  20716. },
  20717. ]
  20718. ))
  20719. characterMakers.push(() => makeCharacter(
  20720. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20721. {
  20722. front: {
  20723. height: math.unit(5 + 4 / 12, "feet"),
  20724. weight: math.unit(120, "lb"),
  20725. name: "Front",
  20726. image: {
  20727. source: "./media/characters/luci/front.svg",
  20728. extra: 1985 / 1884,
  20729. bottom: 0.04
  20730. }
  20731. },
  20732. back: {
  20733. height: math.unit(5 + 4 / 12, "feet"),
  20734. weight: math.unit(120, "lb"),
  20735. name: "Back",
  20736. image: {
  20737. source: "./media/characters/luci/back.svg",
  20738. extra: 1892 / 1791,
  20739. bottom: 0.002
  20740. }
  20741. },
  20742. },
  20743. [
  20744. {
  20745. name: "Normal",
  20746. height: math.unit(5 + 4 / 12, "feet"),
  20747. default: true
  20748. },
  20749. ]
  20750. ))
  20751. characterMakers.push(() => makeCharacter(
  20752. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20753. {
  20754. front: {
  20755. height: math.unit(1500, "feet"),
  20756. weight: math.unit(3.8e6, "tons"),
  20757. name: "Front",
  20758. image: {
  20759. source: "./media/characters/2th/front.svg",
  20760. extra: 3489 / 3350,
  20761. bottom: 0.1
  20762. }
  20763. },
  20764. foot: {
  20765. height: math.unit(461, "feet"),
  20766. name: "Foot",
  20767. image: {
  20768. source: "./media/characters/2th/foot.svg"
  20769. }
  20770. },
  20771. },
  20772. [
  20773. {
  20774. name: "\"Micro\"",
  20775. height: math.unit(15 + 7 / 12, "feet")
  20776. },
  20777. {
  20778. name: "Normal",
  20779. height: math.unit(1500, "feet"),
  20780. default: true
  20781. },
  20782. {
  20783. name: "Macro",
  20784. height: math.unit(5000, "feet")
  20785. },
  20786. {
  20787. name: "Megamacro",
  20788. height: math.unit(15, "miles")
  20789. },
  20790. {
  20791. name: "Gigamacro",
  20792. height: math.unit(4000, "miles")
  20793. },
  20794. {
  20795. name: "Galactic",
  20796. height: math.unit(50, "AU")
  20797. },
  20798. ]
  20799. ))
  20800. characterMakers.push(() => makeCharacter(
  20801. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20802. {
  20803. front: {
  20804. height: math.unit(5 + 6 / 12, "feet"),
  20805. weight: math.unit(220, "lb"),
  20806. name: "Front",
  20807. image: {
  20808. source: "./media/characters/amethyst/front.svg",
  20809. extra: 2078 / 2040,
  20810. bottom: 0.045
  20811. }
  20812. },
  20813. back: {
  20814. height: math.unit(5 + 6 / 12, "feet"),
  20815. weight: math.unit(220, "lb"),
  20816. name: "Back",
  20817. image: {
  20818. source: "./media/characters/amethyst/back.svg",
  20819. extra: 2021 / 1989,
  20820. bottom: 0.02
  20821. }
  20822. },
  20823. },
  20824. [
  20825. {
  20826. name: "Normal",
  20827. height: math.unit(5 + 6 / 12, "feet"),
  20828. default: true
  20829. },
  20830. ]
  20831. ))
  20832. characterMakers.push(() => makeCharacter(
  20833. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20834. {
  20835. front: {
  20836. height: math.unit(4 + 11 / 12, "feet"),
  20837. weight: math.unit(120, "lb"),
  20838. name: "Front",
  20839. image: {
  20840. source: "./media/characters/yumi-akiyama/front.svg",
  20841. extra: 1327 / 1235,
  20842. bottom: 0.02
  20843. }
  20844. },
  20845. back: {
  20846. height: math.unit(4 + 11 / 12, "feet"),
  20847. weight: math.unit(120, "lb"),
  20848. name: "Back",
  20849. image: {
  20850. source: "./media/characters/yumi-akiyama/back.svg",
  20851. extra: 1287 / 1245,
  20852. bottom: 0.002
  20853. }
  20854. },
  20855. },
  20856. [
  20857. {
  20858. name: "Galactic",
  20859. height: math.unit(50, "galaxies"),
  20860. default: true
  20861. },
  20862. {
  20863. name: "Universal",
  20864. height: math.unit(100, "universes")
  20865. },
  20866. ]
  20867. ))
  20868. characterMakers.push(() => makeCharacter(
  20869. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20870. {
  20871. front: {
  20872. height: math.unit(8, "feet"),
  20873. weight: math.unit(500, "lb"),
  20874. name: "Front",
  20875. image: {
  20876. source: "./media/characters/rifter-yrmori/front.svg",
  20877. extra: 1180 / 1125,
  20878. bottom: 0.02
  20879. }
  20880. },
  20881. back: {
  20882. height: math.unit(8, "feet"),
  20883. weight: math.unit(500, "lb"),
  20884. name: "Back",
  20885. image: {
  20886. source: "./media/characters/rifter-yrmori/back.svg",
  20887. extra: 1190 / 1145,
  20888. bottom: 0.001
  20889. }
  20890. },
  20891. wings: {
  20892. height: math.unit(7.75, "feet"),
  20893. weight: math.unit(500, "lb"),
  20894. name: "Wings",
  20895. image: {
  20896. source: "./media/characters/rifter-yrmori/wings.svg",
  20897. extra: 1357 / 1285
  20898. }
  20899. },
  20900. maw: {
  20901. height: math.unit(0.8, "feet"),
  20902. name: "Maw",
  20903. image: {
  20904. source: "./media/characters/rifter-yrmori/maw.svg"
  20905. }
  20906. },
  20907. mawfront: {
  20908. height: math.unit(1.45, "feet"),
  20909. name: "Maw (Front)",
  20910. image: {
  20911. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20912. }
  20913. },
  20914. },
  20915. [
  20916. {
  20917. name: "Normal",
  20918. height: math.unit(8, "feet"),
  20919. default: true
  20920. },
  20921. {
  20922. name: "Macro",
  20923. height: math.unit(42, "meters")
  20924. },
  20925. ]
  20926. ))
  20927. characterMakers.push(() => makeCharacter(
  20928. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  20929. {
  20930. were: {
  20931. height: math.unit(25 + 6 / 12, "feet"),
  20932. weight: math.unit(10000, "lb"),
  20933. name: "Were",
  20934. image: {
  20935. source: "./media/characters/tahajin/were.svg",
  20936. extra: 801 / 770,
  20937. bottom: 0.042
  20938. }
  20939. },
  20940. aquatic: {
  20941. height: math.unit(6 + 4 / 12, "feet"),
  20942. weight: math.unit(160, "lb"),
  20943. name: "Aquatic",
  20944. image: {
  20945. source: "./media/characters/tahajin/aquatic.svg",
  20946. extra: 572 / 542,
  20947. bottom: 0.04
  20948. }
  20949. },
  20950. chow: {
  20951. height: math.unit(8 + 11 / 12, "feet"),
  20952. weight: math.unit(450, "lb"),
  20953. name: "Chow",
  20954. image: {
  20955. source: "./media/characters/tahajin/chow.svg",
  20956. extra: 660 / 640,
  20957. bottom: 0.015
  20958. }
  20959. },
  20960. demiNaga: {
  20961. height: math.unit(6 + 8 / 12, "feet"),
  20962. weight: math.unit(300, "lb"),
  20963. name: "Demi Naga",
  20964. image: {
  20965. source: "./media/characters/tahajin/demi-naga.svg",
  20966. extra: 643 / 615,
  20967. bottom: 0.1
  20968. }
  20969. },
  20970. data: {
  20971. height: math.unit(5, "inches"),
  20972. weight: math.unit(0.1, "lb"),
  20973. name: "Data",
  20974. image: {
  20975. source: "./media/characters/tahajin/data.svg"
  20976. }
  20977. },
  20978. fluu: {
  20979. height: math.unit(5 + 7 / 12, "feet"),
  20980. weight: math.unit(140, "lb"),
  20981. name: "Fluu",
  20982. image: {
  20983. source: "./media/characters/tahajin/fluu.svg",
  20984. extra: 628 / 592,
  20985. bottom: 0.02
  20986. }
  20987. },
  20988. starWarrior: {
  20989. height: math.unit(4 + 5 / 12, "feet"),
  20990. weight: math.unit(50, "lb"),
  20991. name: "Star Warrior",
  20992. image: {
  20993. source: "./media/characters/tahajin/star-warrior.svg"
  20994. }
  20995. },
  20996. },
  20997. [
  20998. {
  20999. name: "Normal",
  21000. height: math.unit(25 + 6 / 12, "feet"),
  21001. default: true
  21002. },
  21003. ]
  21004. ))
  21005. characterMakers.push(() => makeCharacter(
  21006. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21007. {
  21008. front: {
  21009. height: math.unit(8, "feet"),
  21010. weight: math.unit(350, "lb"),
  21011. name: "Front",
  21012. image: {
  21013. source: "./media/characters/gabira/front.svg",
  21014. extra: 608 / 580,
  21015. bottom: 0.03
  21016. }
  21017. },
  21018. back: {
  21019. height: math.unit(8, "feet"),
  21020. weight: math.unit(350, "lb"),
  21021. name: "Back",
  21022. image: {
  21023. source: "./media/characters/gabira/back.svg",
  21024. extra: 608 / 580,
  21025. bottom: 0.03
  21026. }
  21027. },
  21028. },
  21029. [
  21030. {
  21031. name: "Normal",
  21032. height: math.unit(8, "feet"),
  21033. default: true
  21034. },
  21035. ]
  21036. ))
  21037. characterMakers.push(() => makeCharacter(
  21038. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21039. {
  21040. front: {
  21041. height: math.unit(5 + 3 / 12, "feet"),
  21042. weight: math.unit(137, "lb"),
  21043. name: "Front",
  21044. image: {
  21045. source: "./media/characters/sasha-katraine/front.svg",
  21046. bottom: 0.045
  21047. }
  21048. },
  21049. },
  21050. [
  21051. {
  21052. name: "Micro",
  21053. height: math.unit(5, "inches")
  21054. },
  21055. {
  21056. name: "Normal",
  21057. height: math.unit(5 + 3 / 12, "feet"),
  21058. default: true
  21059. },
  21060. ]
  21061. ))
  21062. characterMakers.push(() => makeCharacter(
  21063. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21064. {
  21065. side: {
  21066. height: math.unit(4, "inches"),
  21067. weight: math.unit(200, "grams"),
  21068. name: "Side",
  21069. image: {
  21070. source: "./media/characters/der/side.svg",
  21071. extra: 719 / 400,
  21072. bottom: 30.6 / 749.9187
  21073. }
  21074. },
  21075. },
  21076. [
  21077. {
  21078. name: "Micro",
  21079. height: math.unit(4, "inches"),
  21080. default: true
  21081. },
  21082. ]
  21083. ))
  21084. characterMakers.push(() => makeCharacter(
  21085. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21086. {
  21087. side: {
  21088. height: math.unit(30, "meters"),
  21089. weight: math.unit(700, "tonnes"),
  21090. name: "Side",
  21091. image: {
  21092. source: "./media/characters/fixerdragon/side.svg",
  21093. extra: (1293.0514 - 116.03) / 1106.86,
  21094. bottom: 116.03 / 1293.0514
  21095. }
  21096. },
  21097. },
  21098. [
  21099. {
  21100. name: "Planck",
  21101. height: math.unit(1.6e-35, "meters")
  21102. },
  21103. {
  21104. name: "Micro",
  21105. height: math.unit(0.4, "meters")
  21106. },
  21107. {
  21108. name: "Normal",
  21109. height: math.unit(30, "meters"),
  21110. default: true
  21111. },
  21112. {
  21113. name: "Megamacro",
  21114. height: math.unit(1.2, "megameters")
  21115. },
  21116. {
  21117. name: "Teramacro",
  21118. height: math.unit(130, "terameters")
  21119. },
  21120. {
  21121. name: "Yottamacro",
  21122. height: math.unit(6200, "yottameters")
  21123. },
  21124. ]
  21125. ));
  21126. characterMakers.push(() => makeCharacter(
  21127. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21128. {
  21129. front: {
  21130. height: math.unit(8, "feet"),
  21131. weight: math.unit(250, "lb"),
  21132. name: "Front",
  21133. image: {
  21134. source: "./media/characters/kite/front.svg",
  21135. extra: 2796 / 2659,
  21136. bottom: 0.002
  21137. }
  21138. },
  21139. },
  21140. [
  21141. {
  21142. name: "Normal",
  21143. height: math.unit(8, "feet"),
  21144. default: true
  21145. },
  21146. {
  21147. name: "Macro",
  21148. height: math.unit(360, "feet")
  21149. },
  21150. {
  21151. name: "Megamacro",
  21152. height: math.unit(1500, "feet")
  21153. },
  21154. ]
  21155. ))
  21156. characterMakers.push(() => makeCharacter(
  21157. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21158. {
  21159. front: {
  21160. height: math.unit(5 + 10 / 12, "feet"),
  21161. weight: math.unit(150, "lb"),
  21162. name: "Front",
  21163. image: {
  21164. source: "./media/characters/poojawa-vynar/front.svg",
  21165. extra: (1506.1547 - 55) / 1356.6,
  21166. bottom: 55 / 1506.1547
  21167. }
  21168. },
  21169. frontTailless: {
  21170. height: math.unit(5 + 10 / 12, "feet"),
  21171. weight: math.unit(150, "lb"),
  21172. name: "Front (Tailless)",
  21173. image: {
  21174. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21175. extra: (1506.1547 - 55) / 1356.6,
  21176. bottom: 55 / 1506.1547
  21177. }
  21178. },
  21179. },
  21180. [
  21181. {
  21182. name: "Normal",
  21183. height: math.unit(5 + 10 / 12, "feet"),
  21184. default: true
  21185. },
  21186. ]
  21187. ))
  21188. characterMakers.push(() => makeCharacter(
  21189. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21190. {
  21191. front: {
  21192. height: math.unit(293, "meters"),
  21193. weight: math.unit(70400, "tons"),
  21194. name: "Front",
  21195. image: {
  21196. source: "./media/characters/violette/front.svg",
  21197. extra: 1227 / 1180,
  21198. bottom: 0.005
  21199. }
  21200. },
  21201. back: {
  21202. height: math.unit(293, "meters"),
  21203. weight: math.unit(70400, "tons"),
  21204. name: "Back",
  21205. image: {
  21206. source: "./media/characters/violette/back.svg",
  21207. extra: 1227 / 1180,
  21208. bottom: 0.005
  21209. }
  21210. },
  21211. },
  21212. [
  21213. {
  21214. name: "Macro",
  21215. height: math.unit(293, "meters"),
  21216. default: true
  21217. },
  21218. ]
  21219. ))
  21220. characterMakers.push(() => makeCharacter(
  21221. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21222. {
  21223. front: {
  21224. height: math.unit(1050, "feet"),
  21225. weight: math.unit(200000, "tons"),
  21226. name: "Front",
  21227. image: {
  21228. source: "./media/characters/alessandra/front.svg",
  21229. extra: 960 / 912,
  21230. bottom: 0.06
  21231. }
  21232. },
  21233. },
  21234. [
  21235. {
  21236. name: "Macro",
  21237. height: math.unit(1050, "feet")
  21238. },
  21239. {
  21240. name: "Macro+",
  21241. height: math.unit(900, "meters"),
  21242. default: true
  21243. },
  21244. ]
  21245. ))
  21246. characterMakers.push(() => makeCharacter(
  21247. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21248. {
  21249. front: {
  21250. height: math.unit(5, "feet"),
  21251. weight: math.unit(187, "lb"),
  21252. name: "Front",
  21253. image: {
  21254. source: "./media/characters/person/front.svg",
  21255. extra: 3087 / 2945,
  21256. bottom: 91 / 3181
  21257. }
  21258. },
  21259. },
  21260. [
  21261. {
  21262. name: "Micro",
  21263. height: math.unit(3, "inches")
  21264. },
  21265. {
  21266. name: "Normal",
  21267. height: math.unit(5, "feet"),
  21268. default: true
  21269. },
  21270. {
  21271. name: "Macro",
  21272. height: math.unit(90, "feet")
  21273. },
  21274. {
  21275. name: "Max Size",
  21276. height: math.unit(280, "feet")
  21277. },
  21278. ]
  21279. ))
  21280. characterMakers.push(() => makeCharacter(
  21281. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21282. {
  21283. front: {
  21284. height: math.unit(4.5, "meters"),
  21285. weight: math.unit(3200, "lb"),
  21286. name: "Front",
  21287. image: {
  21288. source: "./media/characters/ty/front.svg",
  21289. extra: 1038 / 960,
  21290. bottom: 31.156 / 1068
  21291. }
  21292. },
  21293. back: {
  21294. height: math.unit(4.5, "meters"),
  21295. weight: math.unit(3200, "lb"),
  21296. name: "Back",
  21297. image: {
  21298. source: "./media/characters/ty/back.svg",
  21299. extra: 1044 / 966,
  21300. bottom: 7.48 / 1049
  21301. }
  21302. },
  21303. },
  21304. [
  21305. {
  21306. name: "Normal",
  21307. height: math.unit(4.5, "meters"),
  21308. default: true
  21309. },
  21310. ]
  21311. ))
  21312. characterMakers.push(() => makeCharacter(
  21313. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21314. {
  21315. front: {
  21316. height: math.unit(5 + 4 / 12, "feet"),
  21317. weight: math.unit(115, "lb"),
  21318. name: "Front",
  21319. image: {
  21320. source: "./media/characters/rocky/front.svg",
  21321. extra: 1012 / 975,
  21322. bottom: 54 / 1066
  21323. }
  21324. },
  21325. },
  21326. [
  21327. {
  21328. name: "Normal",
  21329. height: math.unit(5 + 4 / 12, "feet"),
  21330. default: true
  21331. },
  21332. ]
  21333. ))
  21334. characterMakers.push(() => makeCharacter(
  21335. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21336. {
  21337. upright: {
  21338. height: math.unit(6, "meters"),
  21339. weight: math.unit(4000, "kg"),
  21340. name: "Upright",
  21341. image: {
  21342. source: "./media/characters/ruin/upright.svg",
  21343. extra: 668 / 661,
  21344. bottom: 42 / 799.8396
  21345. }
  21346. },
  21347. },
  21348. [
  21349. {
  21350. name: "Normal",
  21351. height: math.unit(6, "meters"),
  21352. default: true
  21353. },
  21354. ]
  21355. ))
  21356. characterMakers.push(() => makeCharacter(
  21357. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21358. {
  21359. front: {
  21360. height: math.unit(5, "feet"),
  21361. weight: math.unit(106, "lb"),
  21362. name: "Front",
  21363. image: {
  21364. source: "./media/characters/robin/front.svg",
  21365. extra: 862 / 799,
  21366. bottom: 42.4 / 914.8856
  21367. }
  21368. },
  21369. },
  21370. [
  21371. {
  21372. name: "Normal",
  21373. height: math.unit(5, "feet"),
  21374. default: true
  21375. },
  21376. ]
  21377. ))
  21378. characterMakers.push(() => makeCharacter(
  21379. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21380. {
  21381. side: {
  21382. height: math.unit(3, "feet"),
  21383. weight: math.unit(225, "lb"),
  21384. name: "Side",
  21385. image: {
  21386. source: "./media/characters/saian/side.svg",
  21387. extra: 566 / 356,
  21388. bottom: 79.7 / 643
  21389. }
  21390. },
  21391. maw: {
  21392. height: math.unit(2.85, "feet"),
  21393. name: "Maw",
  21394. image: {
  21395. source: "./media/characters/saian/maw.svg"
  21396. }
  21397. },
  21398. },
  21399. [
  21400. {
  21401. name: "Normal",
  21402. height: math.unit(3, "feet"),
  21403. default: true
  21404. },
  21405. ]
  21406. ))
  21407. characterMakers.push(() => makeCharacter(
  21408. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21409. {
  21410. side: {
  21411. height: math.unit(8, "feet"),
  21412. weight: math.unit(300, "lb"),
  21413. name: "Side",
  21414. image: {
  21415. source: "./media/characters/equus-silvermane/side.svg",
  21416. extra: 2176 / 2050,
  21417. bottom: 65.7 / 2245
  21418. }
  21419. },
  21420. front: {
  21421. height: math.unit(8, "feet"),
  21422. weight: math.unit(300, "lb"),
  21423. name: "Front",
  21424. image: {
  21425. source: "./media/characters/equus-silvermane/front.svg",
  21426. extra: 4633 / 4400,
  21427. bottom: 71.3 / 4706.915
  21428. }
  21429. },
  21430. sideStepping: {
  21431. height: math.unit(8, "feet"),
  21432. weight: math.unit(300, "lb"),
  21433. name: "Side (Stepping)",
  21434. image: {
  21435. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21436. extra: 1968 / 1860,
  21437. bottom: 16.4 / 1989
  21438. }
  21439. },
  21440. },
  21441. [
  21442. {
  21443. name: "Normal",
  21444. height: math.unit(8, "feet")
  21445. },
  21446. {
  21447. name: "Minimacro",
  21448. height: math.unit(75, "feet"),
  21449. default: true
  21450. },
  21451. {
  21452. name: "Macro",
  21453. height: math.unit(150, "feet")
  21454. },
  21455. {
  21456. name: "Macro+",
  21457. height: math.unit(1000, "feet")
  21458. },
  21459. {
  21460. name: "Megamacro",
  21461. height: math.unit(1, "mile")
  21462. },
  21463. ]
  21464. ))
  21465. characterMakers.push(() => makeCharacter(
  21466. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21467. {
  21468. side: {
  21469. height: math.unit(20, "feet"),
  21470. weight: math.unit(30000, "kg"),
  21471. name: "Side",
  21472. image: {
  21473. source: "./media/characters/windar/side.svg",
  21474. extra: 1491 / 1248,
  21475. bottom: 82.56 / 1568
  21476. }
  21477. },
  21478. },
  21479. [
  21480. {
  21481. name: "Normal",
  21482. height: math.unit(20, "feet"),
  21483. default: true
  21484. },
  21485. ]
  21486. ))
  21487. characterMakers.push(() => makeCharacter(
  21488. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21489. {
  21490. side: {
  21491. height: math.unit(15.66, "feet"),
  21492. weight: math.unit(150, "lb"),
  21493. name: "Side",
  21494. image: {
  21495. source: "./media/characters/melody/side.svg",
  21496. extra: 1097 / 944,
  21497. bottom: 11.8 / 1109
  21498. }
  21499. },
  21500. sideOutfit: {
  21501. height: math.unit(15.66, "feet"),
  21502. weight: math.unit(150, "lb"),
  21503. name: "Side (Outfit)",
  21504. image: {
  21505. source: "./media/characters/melody/side-outfit.svg",
  21506. extra: 1097 / 944,
  21507. bottom: 11.8 / 1109
  21508. }
  21509. },
  21510. },
  21511. [
  21512. {
  21513. name: "Normal",
  21514. height: math.unit(15.66, "feet"),
  21515. default: true
  21516. },
  21517. ]
  21518. ))
  21519. characterMakers.push(() => makeCharacter(
  21520. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21521. {
  21522. front: {
  21523. height: math.unit(8, "feet"),
  21524. weight: math.unit(325, "lb"),
  21525. name: "Front",
  21526. image: {
  21527. source: "./media/characters/windera/front.svg",
  21528. extra: 3180 / 2845,
  21529. bottom: 178 / 3365
  21530. }
  21531. },
  21532. },
  21533. [
  21534. {
  21535. name: "Normal",
  21536. height: math.unit(8, "feet"),
  21537. default: true
  21538. },
  21539. ]
  21540. ))
  21541. characterMakers.push(() => makeCharacter(
  21542. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21543. {
  21544. front: {
  21545. height: math.unit(28.75, "feet"),
  21546. weight: math.unit(2000, "kg"),
  21547. name: "Front",
  21548. image: {
  21549. source: "./media/characters/sonear/front.svg",
  21550. extra: 1041.1 / 964.9,
  21551. bottom: 53.7 / 1096.6
  21552. }
  21553. },
  21554. },
  21555. [
  21556. {
  21557. name: "Normal",
  21558. height: math.unit(28.75, "feet"),
  21559. default: true
  21560. },
  21561. ]
  21562. ))
  21563. characterMakers.push(() => makeCharacter(
  21564. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21565. {
  21566. side: {
  21567. height: math.unit(25.5, "feet"),
  21568. weight: math.unit(23000, "kg"),
  21569. name: "Side",
  21570. image: {
  21571. source: "./media/characters/kanara/side.svg"
  21572. }
  21573. },
  21574. },
  21575. [
  21576. {
  21577. name: "Normal",
  21578. height: math.unit(25.5, "feet"),
  21579. default: true
  21580. },
  21581. ]
  21582. ))
  21583. characterMakers.push(() => makeCharacter(
  21584. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21585. {
  21586. side: {
  21587. height: math.unit(10, "feet"),
  21588. weight: math.unit(1000, "kg"),
  21589. name: "Side",
  21590. image: {
  21591. source: "./media/characters/ereus/side.svg",
  21592. extra: 1157 / 959,
  21593. bottom: 153 / 1312.5
  21594. }
  21595. },
  21596. },
  21597. [
  21598. {
  21599. name: "Normal",
  21600. height: math.unit(10, "feet"),
  21601. default: true
  21602. },
  21603. ]
  21604. ))
  21605. characterMakers.push(() => makeCharacter(
  21606. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21607. {
  21608. side: {
  21609. height: math.unit(4.5, "feet"),
  21610. weight: math.unit(500, "lb"),
  21611. name: "Side",
  21612. image: {
  21613. source: "./media/characters/e-ter/side.svg",
  21614. extra: 1550 / 1248,
  21615. bottom: 146 / 1694
  21616. }
  21617. },
  21618. },
  21619. [
  21620. {
  21621. name: "Normal",
  21622. height: math.unit(4.5, "feet"),
  21623. default: true
  21624. },
  21625. ]
  21626. ))
  21627. characterMakers.push(() => makeCharacter(
  21628. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21629. {
  21630. side: {
  21631. height: math.unit(9.7, "feet"),
  21632. weight: math.unit(4000, "kg"),
  21633. name: "Side",
  21634. image: {
  21635. source: "./media/characters/yamie/side.svg"
  21636. }
  21637. },
  21638. },
  21639. [
  21640. {
  21641. name: "Normal",
  21642. height: math.unit(9.7, "feet"),
  21643. default: true
  21644. },
  21645. ]
  21646. ))
  21647. characterMakers.push(() => makeCharacter(
  21648. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21649. {
  21650. front: {
  21651. height: math.unit(50, "feet"),
  21652. weight: math.unit(50000, "kg"),
  21653. name: "Front",
  21654. image: {
  21655. source: "./media/characters/anders/front.svg",
  21656. extra: 570 / 539,
  21657. bottom: 14.7 / 586.7
  21658. }
  21659. },
  21660. },
  21661. [
  21662. {
  21663. name: "Large",
  21664. height: math.unit(50, "feet")
  21665. },
  21666. {
  21667. name: "Macro",
  21668. height: math.unit(2000, "feet"),
  21669. default: true
  21670. },
  21671. {
  21672. name: "Megamacro",
  21673. height: math.unit(12, "miles")
  21674. },
  21675. ]
  21676. ))
  21677. characterMakers.push(() => makeCharacter(
  21678. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21679. {
  21680. front: {
  21681. height: math.unit(7 + 2 / 12, "feet"),
  21682. weight: math.unit(300, "lb"),
  21683. name: "Front",
  21684. image: {
  21685. source: "./media/characters/reban/front.svg",
  21686. extra: 516 / 487,
  21687. bottom: 42.82 / 558.356
  21688. }
  21689. },
  21690. dick: {
  21691. height: math.unit(7 / 5, "feet"),
  21692. name: "Dick",
  21693. image: {
  21694. source: "./media/characters/reban/dick.svg"
  21695. }
  21696. },
  21697. },
  21698. [
  21699. {
  21700. name: "Natural Height",
  21701. height: math.unit(7 + 2 / 12, "feet")
  21702. },
  21703. {
  21704. name: "Macro",
  21705. height: math.unit(500, "feet"),
  21706. default: true
  21707. },
  21708. {
  21709. name: "Canon Height",
  21710. height: math.unit(50, "AU")
  21711. },
  21712. ]
  21713. ))
  21714. characterMakers.push(() => makeCharacter(
  21715. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21716. {
  21717. front: {
  21718. height: math.unit(6, "feet"),
  21719. weight: math.unit(150, "lb"),
  21720. name: "Front",
  21721. image: {
  21722. source: "./media/characters/terrance-keayes/front.svg",
  21723. extra: 1.005,
  21724. bottom: 151 / 1615
  21725. }
  21726. },
  21727. side: {
  21728. height: math.unit(6, "feet"),
  21729. weight: math.unit(150, "lb"),
  21730. name: "Side",
  21731. image: {
  21732. source: "./media/characters/terrance-keayes/side.svg",
  21733. extra: 1.005,
  21734. bottom: 129.4 / 1544
  21735. }
  21736. },
  21737. back: {
  21738. height: math.unit(6, "feet"),
  21739. weight: math.unit(150, "lb"),
  21740. name: "Back",
  21741. image: {
  21742. source: "./media/characters/terrance-keayes/back.svg",
  21743. extra: 1.005,
  21744. bottom: 58.4 / 1557.3
  21745. }
  21746. },
  21747. dick: {
  21748. height: math.unit(6 * 0.208, "feet"),
  21749. name: "Dick",
  21750. image: {
  21751. source: "./media/characters/terrance-keayes/dick.svg"
  21752. }
  21753. },
  21754. },
  21755. [
  21756. {
  21757. name: "Canon Height",
  21758. height: math.unit(35, "miles"),
  21759. default: true
  21760. },
  21761. ]
  21762. ))
  21763. characterMakers.push(() => makeCharacter(
  21764. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21765. {
  21766. front: {
  21767. height: math.unit(6, "feet"),
  21768. weight: math.unit(150, "lb"),
  21769. name: "Front",
  21770. image: {
  21771. source: "./media/characters/ofelia/front.svg",
  21772. extra: 546 / 541,
  21773. bottom: 39 / 583
  21774. }
  21775. },
  21776. back: {
  21777. height: math.unit(6, "feet"),
  21778. weight: math.unit(150, "lb"),
  21779. name: "Back",
  21780. image: {
  21781. source: "./media/characters/ofelia/back.svg",
  21782. extra: 564 / 559.5,
  21783. bottom: 8.69 / 573.02
  21784. }
  21785. },
  21786. maw: {
  21787. height: math.unit(1, "feet"),
  21788. name: "Maw",
  21789. image: {
  21790. source: "./media/characters/ofelia/maw.svg"
  21791. }
  21792. },
  21793. foot: {
  21794. height: math.unit(1.949, "feet"),
  21795. name: "Foot",
  21796. image: {
  21797. source: "./media/characters/ofelia/foot.svg"
  21798. }
  21799. },
  21800. },
  21801. [
  21802. {
  21803. name: "Canon Height",
  21804. height: math.unit(2000, "miles"),
  21805. default: true
  21806. },
  21807. ]
  21808. ))
  21809. characterMakers.push(() => makeCharacter(
  21810. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21811. {
  21812. front: {
  21813. height: math.unit(6, "feet"),
  21814. weight: math.unit(150, "lb"),
  21815. name: "Front",
  21816. image: {
  21817. source: "./media/characters/samuel/front.svg",
  21818. extra: 265 / 258,
  21819. bottom: 2 / 266.1566
  21820. }
  21821. },
  21822. },
  21823. [
  21824. {
  21825. name: "Macro",
  21826. height: math.unit(100, "feet"),
  21827. default: true
  21828. },
  21829. {
  21830. name: "Full Size",
  21831. height: math.unit(1000, "miles")
  21832. },
  21833. ]
  21834. ))
  21835. characterMakers.push(() => makeCharacter(
  21836. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21837. {
  21838. front: {
  21839. height: math.unit(6, "feet"),
  21840. weight: math.unit(300, "lb"),
  21841. name: "Front",
  21842. image: {
  21843. source: "./media/characters/beishir-kiel/front.svg",
  21844. extra: 569 / 547,
  21845. bottom: 41.9 / 609
  21846. }
  21847. },
  21848. maw: {
  21849. height: math.unit(6 * 0.202, "feet"),
  21850. name: "Maw",
  21851. image: {
  21852. source: "./media/characters/beishir-kiel/maw.svg"
  21853. }
  21854. },
  21855. },
  21856. [
  21857. {
  21858. name: "Macro",
  21859. height: math.unit(300, "feet"),
  21860. default: true
  21861. },
  21862. ]
  21863. ))
  21864. characterMakers.push(() => makeCharacter(
  21865. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21866. {
  21867. front: {
  21868. height: math.unit(5 + 8 / 12, "feet"),
  21869. weight: math.unit(120, "lb"),
  21870. name: "Front",
  21871. image: {
  21872. source: "./media/characters/logan-grey/front.svg",
  21873. extra: 2539 / 2393,
  21874. bottom: 97.6 / 2636.37
  21875. }
  21876. },
  21877. frontAlt: {
  21878. height: math.unit(5 + 8 / 12, "feet"),
  21879. weight: math.unit(120, "lb"),
  21880. name: "Front (Alt)",
  21881. image: {
  21882. source: "./media/characters/logan-grey/front-alt.svg",
  21883. extra: 958 / 893,
  21884. bottom: 15 / 970.768
  21885. }
  21886. },
  21887. back: {
  21888. height: math.unit(5 + 8 / 12, "feet"),
  21889. weight: math.unit(120, "lb"),
  21890. name: "Back",
  21891. image: {
  21892. source: "./media/characters/logan-grey/back.svg",
  21893. extra: 958 / 893,
  21894. bottom: 2.1881 / 970.9788
  21895. }
  21896. },
  21897. dick: {
  21898. height: math.unit(1.437, "feet"),
  21899. name: "Dick",
  21900. image: {
  21901. source: "./media/characters/logan-grey/dick.svg"
  21902. }
  21903. },
  21904. },
  21905. [
  21906. {
  21907. name: "Normal",
  21908. height: math.unit(5 + 8 / 12, "feet")
  21909. },
  21910. {
  21911. name: "The 500 Foot Femboy",
  21912. height: math.unit(500, "feet"),
  21913. default: true
  21914. },
  21915. {
  21916. name: "Megmacro",
  21917. height: math.unit(20, "miles")
  21918. },
  21919. ]
  21920. ))
  21921. characterMakers.push(() => makeCharacter(
  21922. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21923. {
  21924. front: {
  21925. height: math.unit(8 + 2 / 12, "feet"),
  21926. weight: math.unit(275, "lb"),
  21927. name: "Front",
  21928. image: {
  21929. source: "./media/characters/draganta/front.svg",
  21930. extra: 1177 / 1135,
  21931. bottom: 33.46 / 1212.1
  21932. }
  21933. },
  21934. },
  21935. [
  21936. {
  21937. name: "Normal",
  21938. height: math.unit(8 + 6 / 12, "feet"),
  21939. default: true
  21940. },
  21941. {
  21942. name: "Macro",
  21943. height: math.unit(150, "feet")
  21944. },
  21945. {
  21946. name: "Megamacro",
  21947. height: math.unit(1000, "miles")
  21948. },
  21949. ]
  21950. ))
  21951. characterMakers.push(() => makeCharacter(
  21952. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21953. {
  21954. front: {
  21955. height: math.unit(1.72, "m"),
  21956. weight: math.unit(80, "lb"),
  21957. name: "Front",
  21958. image: {
  21959. source: "./media/characters/voski/front.svg",
  21960. extra: 2076.22 / 2022.4,
  21961. bottom: 102.7 / 2177.3866
  21962. }
  21963. },
  21964. frontNsfw: {
  21965. height: math.unit(1.72, "m"),
  21966. weight: math.unit(80, "lb"),
  21967. name: "Front (NSFW)",
  21968. image: {
  21969. source: "./media/characters/voski/front-nsfw.svg",
  21970. extra: 2076.22 / 2022.4,
  21971. bottom: 102.7 / 2177.3866
  21972. }
  21973. },
  21974. back: {
  21975. height: math.unit(1.72, "m"),
  21976. weight: math.unit(80, "lb"),
  21977. name: "Back",
  21978. image: {
  21979. source: "./media/characters/voski/back.svg",
  21980. extra: 2104 / 2051,
  21981. bottom: 10.45 / 2113.63
  21982. }
  21983. },
  21984. },
  21985. [
  21986. {
  21987. name: "Normal",
  21988. height: math.unit(1.72, "m")
  21989. },
  21990. {
  21991. name: "Macro",
  21992. height: math.unit(55, "m"),
  21993. default: true
  21994. },
  21995. {
  21996. name: "Macro+",
  21997. height: math.unit(300, "m")
  21998. },
  21999. {
  22000. name: "Macro++",
  22001. height: math.unit(700, "m")
  22002. },
  22003. {
  22004. name: "Macro+++",
  22005. height: math.unit(4500, "m")
  22006. },
  22007. {
  22008. name: "Macro++++",
  22009. height: math.unit(45, "km")
  22010. },
  22011. {
  22012. name: "Macro+++++",
  22013. height: math.unit(1220, "km")
  22014. },
  22015. ]
  22016. ))
  22017. characterMakers.push(() => makeCharacter(
  22018. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22019. {
  22020. front: {
  22021. height: math.unit(2.3, "m"),
  22022. weight: math.unit(304, "kg"),
  22023. name: "Front",
  22024. image: {
  22025. source: "./media/characters/icowom-lee/front.svg",
  22026. extra: 985 / 955,
  22027. bottom: 25.4 / 1012
  22028. }
  22029. },
  22030. fronttentacles: {
  22031. height: math.unit(2.3, "m"),
  22032. weight: math.unit(304, "kg"),
  22033. name: "Front-tentacles",
  22034. image: {
  22035. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22036. extra: 985 / 955,
  22037. bottom: 25.4 / 1012
  22038. }
  22039. },
  22040. back: {
  22041. height: math.unit(2.3, "m"),
  22042. weight: math.unit(304, "kg"),
  22043. name: "Back",
  22044. image: {
  22045. source: "./media/characters/icowom-lee/back.svg",
  22046. extra: 975 / 954,
  22047. bottom: 9.5 / 985
  22048. }
  22049. },
  22050. backtentacles: {
  22051. height: math.unit(2.3, "m"),
  22052. weight: math.unit(304, "kg"),
  22053. name: "Back-tentacles",
  22054. image: {
  22055. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22056. extra: 975 / 954,
  22057. bottom: 9.5 / 985
  22058. }
  22059. },
  22060. frontDressed: {
  22061. height: math.unit(2.3, "m"),
  22062. weight: math.unit(304, "kg"),
  22063. name: "Front (Dressed)",
  22064. image: {
  22065. source: "./media/characters/icowom-lee/front-dressed.svg",
  22066. extra: 3076 / 2933,
  22067. bottom: 51.4 / 3125.1889
  22068. }
  22069. },
  22070. rump: {
  22071. height: math.unit(0.776, "meters"),
  22072. name: "Rump",
  22073. image: {
  22074. source: "./media/characters/icowom-lee/rump.svg"
  22075. }
  22076. },
  22077. genitals: {
  22078. height: math.unit(0.78, "meters"),
  22079. name: "Genitals",
  22080. image: {
  22081. source: "./media/characters/icowom-lee/genitals.svg"
  22082. }
  22083. },
  22084. },
  22085. [
  22086. {
  22087. name: "Normal",
  22088. height: math.unit(2.3, "meters"),
  22089. default: true
  22090. },
  22091. {
  22092. name: "Macro",
  22093. height: math.unit(94, "meters"),
  22094. default: true
  22095. },
  22096. ]
  22097. ))
  22098. characterMakers.push(() => makeCharacter(
  22099. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22100. {
  22101. front: {
  22102. height: math.unit(22, "meters"),
  22103. weight: math.unit(21000, "kg"),
  22104. name: "Front",
  22105. image: {
  22106. source: "./media/characters/shock-diamond/front.svg",
  22107. extra: 2204 / 2053,
  22108. bottom: 65 / 2239.47
  22109. }
  22110. },
  22111. frontNude: {
  22112. height: math.unit(22, "meters"),
  22113. weight: math.unit(21000, "kg"),
  22114. name: "Front (Nude)",
  22115. image: {
  22116. source: "./media/characters/shock-diamond/front-nude.svg",
  22117. extra: 2514 / 2285,
  22118. bottom: 13 / 2527.56
  22119. }
  22120. },
  22121. },
  22122. [
  22123. {
  22124. name: "Normal",
  22125. height: math.unit(3, "meters")
  22126. },
  22127. {
  22128. name: "Macro",
  22129. height: math.unit(22, "meters"),
  22130. default: true
  22131. },
  22132. ]
  22133. ))
  22134. characterMakers.push(() => makeCharacter(
  22135. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22136. {
  22137. front: {
  22138. height: math.unit(5 + 4 / 12, "feet"),
  22139. weight: math.unit(120, "lb"),
  22140. name: "Front",
  22141. image: {
  22142. source: "./media/characters/rory/front.svg",
  22143. extra: 589 / 556,
  22144. bottom: 45.7 / 635.76
  22145. }
  22146. },
  22147. frontNude: {
  22148. height: math.unit(5 + 4 / 12, "feet"),
  22149. weight: math.unit(120, "lb"),
  22150. name: "Front (Nude)",
  22151. image: {
  22152. source: "./media/characters/rory/front-nude.svg",
  22153. extra: 589 / 556,
  22154. bottom: 45.7 / 635.76
  22155. }
  22156. },
  22157. side: {
  22158. height: math.unit(5 + 4 / 12, "feet"),
  22159. weight: math.unit(120, "lb"),
  22160. name: "Side",
  22161. image: {
  22162. source: "./media/characters/rory/side.svg",
  22163. extra: 597 / 564,
  22164. bottom: 55 / 653
  22165. }
  22166. },
  22167. back: {
  22168. height: math.unit(5 + 4 / 12, "feet"),
  22169. weight: math.unit(120, "lb"),
  22170. name: "Back",
  22171. image: {
  22172. source: "./media/characters/rory/back.svg",
  22173. extra: 620 / 585,
  22174. bottom: 8.86 / 630.43
  22175. }
  22176. },
  22177. dick: {
  22178. height: math.unit(0.86, "feet"),
  22179. name: "Dick",
  22180. image: {
  22181. source: "./media/characters/rory/dick.svg"
  22182. }
  22183. },
  22184. },
  22185. [
  22186. {
  22187. name: "Normal",
  22188. height: math.unit(5 + 4 / 12, "feet"),
  22189. default: true
  22190. },
  22191. {
  22192. name: "Macro",
  22193. height: math.unit(100, "feet")
  22194. },
  22195. {
  22196. name: "Macro+",
  22197. height: math.unit(140, "feet")
  22198. },
  22199. {
  22200. name: "Macro++",
  22201. height: math.unit(300, "feet")
  22202. },
  22203. ]
  22204. ))
  22205. characterMakers.push(() => makeCharacter(
  22206. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22207. {
  22208. front: {
  22209. height: math.unit(5 + 9 / 12, "feet"),
  22210. weight: math.unit(190, "lb"),
  22211. name: "Front",
  22212. image: {
  22213. source: "./media/characters/sprisk/front.svg",
  22214. extra: 1225 / 1180,
  22215. bottom: 42.7 / 1266.4
  22216. }
  22217. },
  22218. frontNsfw: {
  22219. height: math.unit(5 + 9 / 12, "feet"),
  22220. weight: math.unit(190, "lb"),
  22221. name: "Front (NSFW)",
  22222. image: {
  22223. source: "./media/characters/sprisk/front-nsfw.svg",
  22224. extra: 1225 / 1180,
  22225. bottom: 42.7 / 1266.4
  22226. }
  22227. },
  22228. back: {
  22229. height: math.unit(5 + 9 / 12, "feet"),
  22230. weight: math.unit(190, "lb"),
  22231. name: "Back",
  22232. image: {
  22233. source: "./media/characters/sprisk/back.svg",
  22234. extra: 1247 / 1200,
  22235. bottom: 5.6 / 1253.04
  22236. }
  22237. },
  22238. },
  22239. [
  22240. {
  22241. name: "Tiny",
  22242. height: math.unit(2, "inches")
  22243. },
  22244. {
  22245. name: "Normal",
  22246. height: math.unit(5 + 9 / 12, "feet"),
  22247. default: true
  22248. },
  22249. {
  22250. name: "Mini Macro",
  22251. height: math.unit(18, "feet")
  22252. },
  22253. {
  22254. name: "Macro",
  22255. height: math.unit(100, "feet")
  22256. },
  22257. {
  22258. name: "MACRO",
  22259. height: math.unit(50, "miles")
  22260. },
  22261. {
  22262. name: "M A C R O",
  22263. height: math.unit(300, "miles")
  22264. },
  22265. ]
  22266. ))
  22267. characterMakers.push(() => makeCharacter(
  22268. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22269. {
  22270. side: {
  22271. height: math.unit(15.6, "meters"),
  22272. weight: math.unit(700000, "kg"),
  22273. name: "Side",
  22274. image: {
  22275. source: "./media/characters/bunsen/side.svg",
  22276. extra: 1644 / 358
  22277. }
  22278. },
  22279. foot: {
  22280. height: math.unit(1.611 * 1644 / 358, "meter"),
  22281. name: "Foot",
  22282. image: {
  22283. source: "./media/characters/bunsen/foot.svg"
  22284. }
  22285. },
  22286. },
  22287. [
  22288. {
  22289. name: "Small",
  22290. height: math.unit(10, "feet")
  22291. },
  22292. {
  22293. name: "Normal",
  22294. height: math.unit(15.6, "meters"),
  22295. default: true
  22296. },
  22297. ]
  22298. ))
  22299. characterMakers.push(() => makeCharacter(
  22300. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22301. {
  22302. front: {
  22303. height: math.unit(4 + 11 / 12, "feet"),
  22304. weight: math.unit(140, "lb"),
  22305. name: "Front",
  22306. image: {
  22307. source: "./media/characters/sesh/front.svg",
  22308. extra: 3420 / 3231,
  22309. bottom: 72 / 3949.5
  22310. }
  22311. },
  22312. },
  22313. [
  22314. {
  22315. name: "Normal",
  22316. height: math.unit(4 + 11 / 12, "feet")
  22317. },
  22318. {
  22319. name: "Grown",
  22320. height: math.unit(15, "feet"),
  22321. default: true
  22322. },
  22323. {
  22324. name: "Macro",
  22325. height: math.unit(1500, "feet")
  22326. },
  22327. {
  22328. name: "Megamacro",
  22329. height: math.unit(30, "miles")
  22330. },
  22331. {
  22332. name: "Continental",
  22333. height: math.unit(3000, "miles")
  22334. },
  22335. {
  22336. name: "Gravity Mass",
  22337. height: math.unit(300000, "miles")
  22338. },
  22339. {
  22340. name: "Planet Buster",
  22341. height: math.unit(30000000, "miles")
  22342. },
  22343. {
  22344. name: "Big",
  22345. height: math.unit(3000000000, "miles")
  22346. },
  22347. ]
  22348. ))
  22349. characterMakers.push(() => makeCharacter(
  22350. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22351. {
  22352. front: {
  22353. height: math.unit(9, "feet"),
  22354. weight: math.unit(350, "lb"),
  22355. name: "Front",
  22356. image: {
  22357. source: "./media/characters/pepper/front.svg",
  22358. extra: 1448 / 1312,
  22359. bottom: 9.4 / 1457.88
  22360. }
  22361. },
  22362. back: {
  22363. height: math.unit(9, "feet"),
  22364. weight: math.unit(350, "lb"),
  22365. name: "Back",
  22366. image: {
  22367. source: "./media/characters/pepper/back.svg",
  22368. extra: 1423 / 1300,
  22369. bottom: 4.6 / 1429
  22370. }
  22371. },
  22372. maw: {
  22373. height: math.unit(0.932, "feet"),
  22374. name: "Maw",
  22375. image: {
  22376. source: "./media/characters/pepper/maw.svg"
  22377. }
  22378. },
  22379. },
  22380. [
  22381. {
  22382. name: "Normal",
  22383. height: math.unit(9, "feet"),
  22384. default: true
  22385. },
  22386. ]
  22387. ))
  22388. characterMakers.push(() => makeCharacter(
  22389. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22390. {
  22391. front: {
  22392. height: math.unit(6, "feet"),
  22393. weight: math.unit(150, "lb"),
  22394. name: "Front",
  22395. image: {
  22396. source: "./media/characters/maelstrom/front.svg",
  22397. extra: 2100 / 1883,
  22398. bottom: 94 / 2196.7
  22399. }
  22400. },
  22401. },
  22402. [
  22403. {
  22404. name: "Less Kaiju",
  22405. height: math.unit(200, "feet")
  22406. },
  22407. {
  22408. name: "Kaiju",
  22409. height: math.unit(400, "feet"),
  22410. default: true
  22411. },
  22412. {
  22413. name: "Kaiju-er",
  22414. height: math.unit(600, "feet")
  22415. },
  22416. ]
  22417. ))
  22418. characterMakers.push(() => makeCharacter(
  22419. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22420. {
  22421. front: {
  22422. height: math.unit(6 + 5 / 12, "feet"),
  22423. weight: math.unit(180, "lb"),
  22424. name: "Front",
  22425. image: {
  22426. source: "./media/characters/lexir/front.svg",
  22427. extra: 180 / 172,
  22428. bottom: 12 / 192
  22429. }
  22430. },
  22431. back: {
  22432. height: math.unit(6 + 5 / 12, "feet"),
  22433. weight: math.unit(180, "lb"),
  22434. name: "Back",
  22435. image: {
  22436. source: "./media/characters/lexir/back.svg",
  22437. extra: 183.84 / 175.5,
  22438. bottom: 3.1 / 187
  22439. }
  22440. },
  22441. },
  22442. [
  22443. {
  22444. name: "Very Smal",
  22445. height: math.unit(1, "nm")
  22446. },
  22447. {
  22448. name: "Normal",
  22449. height: math.unit(6 + 5 / 12, "feet"),
  22450. default: true
  22451. },
  22452. {
  22453. name: "Macro",
  22454. height: math.unit(1, "mile")
  22455. },
  22456. {
  22457. name: "Megamacro",
  22458. height: math.unit(50, "miles")
  22459. },
  22460. ]
  22461. ))
  22462. characterMakers.push(() => makeCharacter(
  22463. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22464. {
  22465. front: {
  22466. height: math.unit(1.5, "meters"),
  22467. weight: math.unit(100, "lb"),
  22468. name: "Front",
  22469. image: {
  22470. source: "./media/characters/maksio/front.svg",
  22471. extra: 1549 / 1531,
  22472. bottom: 123.7 / 1674.5429
  22473. }
  22474. },
  22475. back: {
  22476. height: math.unit(1.5, "meters"),
  22477. weight: math.unit(100, "lb"),
  22478. name: "Back",
  22479. image: {
  22480. source: "./media/characters/maksio/back.svg",
  22481. extra: 1541 / 1509,
  22482. bottom: 97 / 1639
  22483. }
  22484. },
  22485. hand: {
  22486. height: math.unit(0.621, "feet"),
  22487. name: "Hand",
  22488. image: {
  22489. source: "./media/characters/maksio/hand.svg"
  22490. }
  22491. },
  22492. foot: {
  22493. height: math.unit(1.611, "feet"),
  22494. name: "Foot",
  22495. image: {
  22496. source: "./media/characters/maksio/foot.svg"
  22497. }
  22498. },
  22499. },
  22500. [
  22501. {
  22502. name: "Shrunken",
  22503. height: math.unit(10, "cm")
  22504. },
  22505. {
  22506. name: "Normal",
  22507. height: math.unit(150, "cm"),
  22508. default: true
  22509. },
  22510. ]
  22511. ))
  22512. characterMakers.push(() => makeCharacter(
  22513. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22514. {
  22515. front: {
  22516. height: math.unit(100, "feet"),
  22517. name: "Front",
  22518. image: {
  22519. source: "./media/characters/erza-bear/front.svg",
  22520. extra: 2449 / 2390,
  22521. bottom: 46 / 2494
  22522. }
  22523. },
  22524. back: {
  22525. height: math.unit(100, "feet"),
  22526. name: "Back",
  22527. image: {
  22528. source: "./media/characters/erza-bear/back.svg",
  22529. extra: 2489 / 2430,
  22530. bottom: 85.4 / 2480
  22531. }
  22532. },
  22533. tail: {
  22534. height: math.unit(42, "feet"),
  22535. name: "Tail",
  22536. image: {
  22537. source: "./media/characters/erza-bear/tail.svg"
  22538. }
  22539. },
  22540. tongue: {
  22541. height: math.unit(8, "feet"),
  22542. name: "Tongue",
  22543. image: {
  22544. source: "./media/characters/erza-bear/tongue.svg"
  22545. }
  22546. },
  22547. dick: {
  22548. height: math.unit(10.5, "feet"),
  22549. name: "Dick",
  22550. image: {
  22551. source: "./media/characters/erza-bear/dick.svg"
  22552. }
  22553. },
  22554. dickVertical: {
  22555. height: math.unit(16.9, "feet"),
  22556. name: "Dick (Vertical)",
  22557. image: {
  22558. source: "./media/characters/erza-bear/dick-vertical.svg"
  22559. }
  22560. },
  22561. },
  22562. [
  22563. {
  22564. name: "Macro",
  22565. height: math.unit(100, "feet"),
  22566. default: true
  22567. },
  22568. ]
  22569. ))
  22570. characterMakers.push(() => makeCharacter(
  22571. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22572. {
  22573. front: {
  22574. height: math.unit(172, "cm"),
  22575. weight: math.unit(73, "kg"),
  22576. name: "Front",
  22577. image: {
  22578. source: "./media/characters/violet-flor/front.svg",
  22579. extra: 1530 / 1442,
  22580. bottom: 61.9 / 1588.8
  22581. }
  22582. },
  22583. back: {
  22584. height: math.unit(180, "cm"),
  22585. weight: math.unit(73, "kg"),
  22586. name: "Back",
  22587. image: {
  22588. source: "./media/characters/violet-flor/back.svg",
  22589. extra: 1692 / 1630,
  22590. bottom: 20 / 1712
  22591. }
  22592. },
  22593. },
  22594. [
  22595. {
  22596. name: "Normal",
  22597. height: math.unit(172, "cm"),
  22598. default: true
  22599. },
  22600. ]
  22601. ))
  22602. characterMakers.push(() => makeCharacter(
  22603. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22604. {
  22605. front: {
  22606. height: math.unit(6, "feet"),
  22607. weight: math.unit(220, "lb"),
  22608. name: "Front",
  22609. image: {
  22610. source: "./media/characters/lynn-rhea/front.svg",
  22611. extra: 310 / 273
  22612. }
  22613. },
  22614. back: {
  22615. height: math.unit(6, "feet"),
  22616. weight: math.unit(220, "lb"),
  22617. name: "Back",
  22618. image: {
  22619. source: "./media/characters/lynn-rhea/back.svg",
  22620. extra: 310 / 273
  22621. }
  22622. },
  22623. dicks: {
  22624. height: math.unit(0.9, "feet"),
  22625. name: "Dicks",
  22626. image: {
  22627. source: "./media/characters/lynn-rhea/dicks.svg"
  22628. }
  22629. },
  22630. slit: {
  22631. height: math.unit(0.4, "feet"),
  22632. name: "Slit",
  22633. image: {
  22634. source: "./media/characters/lynn-rhea/slit.svg"
  22635. }
  22636. },
  22637. },
  22638. [
  22639. {
  22640. name: "Micro",
  22641. height: math.unit(1, "inch")
  22642. },
  22643. {
  22644. name: "Macro",
  22645. height: math.unit(60, "feet"),
  22646. default: true
  22647. },
  22648. {
  22649. name: "Megamacro",
  22650. height: math.unit(2, "miles")
  22651. },
  22652. {
  22653. name: "Gigamacro",
  22654. height: math.unit(3, "earths")
  22655. },
  22656. {
  22657. name: "Galactic",
  22658. height: math.unit(0.8, "galaxies")
  22659. },
  22660. ]
  22661. ))
  22662. characterMakers.push(() => makeCharacter(
  22663. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22664. {
  22665. front: {
  22666. height: math.unit(1600, "feet"),
  22667. weight: math.unit(85758785169, "kg"),
  22668. name: "Front",
  22669. image: {
  22670. source: "./media/characters/valathos/front.svg",
  22671. extra: 1451 / 1339
  22672. }
  22673. },
  22674. },
  22675. [
  22676. {
  22677. name: "Macro",
  22678. height: math.unit(1600, "feet"),
  22679. default: true
  22680. },
  22681. ]
  22682. ))
  22683. characterMakers.push(() => makeCharacter(
  22684. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22685. {
  22686. front: {
  22687. height: math.unit(7 + 5 / 12, "feet"),
  22688. weight: math.unit(300, "lb"),
  22689. name: "Front",
  22690. image: {
  22691. source: "./media/characters/azula/front.svg",
  22692. extra: 3208 / 2880,
  22693. bottom: 80.2 / 3277
  22694. }
  22695. },
  22696. back: {
  22697. height: math.unit(7 + 5 / 12, "feet"),
  22698. weight: math.unit(300, "lb"),
  22699. name: "Back",
  22700. image: {
  22701. source: "./media/characters/azula/back.svg",
  22702. extra: 3169 / 2822,
  22703. bottom: 150.6 / 3321
  22704. }
  22705. },
  22706. },
  22707. [
  22708. {
  22709. name: "Normal",
  22710. height: math.unit(7 + 5 / 12, "feet"),
  22711. default: true
  22712. },
  22713. {
  22714. name: "Big",
  22715. height: math.unit(20, "feet")
  22716. },
  22717. ]
  22718. ))
  22719. characterMakers.push(() => makeCharacter(
  22720. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22721. {
  22722. front: {
  22723. height: math.unit(5 + 1 / 12, "feet"),
  22724. weight: math.unit(110, "lb"),
  22725. name: "Front",
  22726. image: {
  22727. source: "./media/characters/rupert/front.svg",
  22728. extra: 1549 / 1495,
  22729. bottom: 54.2 / 1604.4
  22730. }
  22731. },
  22732. },
  22733. [
  22734. {
  22735. name: "Normal",
  22736. height: math.unit(5 + 1 / 12, "feet"),
  22737. default: true
  22738. },
  22739. ]
  22740. ))
  22741. characterMakers.push(() => makeCharacter(
  22742. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22743. {
  22744. front: {
  22745. height: math.unit(8 + 4 / 12, "feet"),
  22746. weight: math.unit(350, "lb"),
  22747. name: "Front",
  22748. image: {
  22749. source: "./media/characters/sheera-castellar/front.svg",
  22750. extra: 1957 / 1894,
  22751. bottom: 26.97 / 1975.017
  22752. }
  22753. },
  22754. side: {
  22755. height: math.unit(8 + 4 / 12, "feet"),
  22756. weight: math.unit(350, "lb"),
  22757. name: "Side",
  22758. image: {
  22759. source: "./media/characters/sheera-castellar/side.svg",
  22760. extra: 1957 / 1894
  22761. }
  22762. },
  22763. back: {
  22764. height: math.unit(8 + 4 / 12, "feet"),
  22765. weight: math.unit(350, "lb"),
  22766. name: "Back",
  22767. image: {
  22768. source: "./media/characters/sheera-castellar/back.svg",
  22769. extra: 1957 / 1894
  22770. }
  22771. },
  22772. angled: {
  22773. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22774. weight: math.unit(350, "lb"),
  22775. name: "Angled",
  22776. image: {
  22777. source: "./media/characters/sheera-castellar/angled.svg",
  22778. extra: 1807 / 1707,
  22779. bottom: 68 / 1875
  22780. }
  22781. },
  22782. genitals: {
  22783. height: math.unit(2.2, "feet"),
  22784. name: "Genitals",
  22785. image: {
  22786. source: "./media/characters/sheera-castellar/genitals.svg"
  22787. }
  22788. },
  22789. taur: {
  22790. height: math.unit(10 + 6/12, "feet"),
  22791. name: "Taur",
  22792. image: {
  22793. source: "./media/characters/sheera-castellar/taur.svg",
  22794. extra: 2017/1909,
  22795. bottom: 185/2202
  22796. }
  22797. },
  22798. },
  22799. [
  22800. {
  22801. name: "Normal",
  22802. height: math.unit(8 + 4 / 12, "feet")
  22803. },
  22804. {
  22805. name: "Macro",
  22806. height: math.unit(150, "feet"),
  22807. default: true
  22808. },
  22809. {
  22810. name: "Macro+",
  22811. height: math.unit(800, "feet")
  22812. },
  22813. ]
  22814. ))
  22815. characterMakers.push(() => makeCharacter(
  22816. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22817. {
  22818. front: {
  22819. height: math.unit(6, "feet"),
  22820. weight: math.unit(150, "lb"),
  22821. name: "Front",
  22822. image: {
  22823. source: "./media/characters/jaipur/front.svg",
  22824. extra: 3860 / 3731,
  22825. bottom: 287 / 4140
  22826. }
  22827. },
  22828. back: {
  22829. height: math.unit(6, "feet"),
  22830. weight: math.unit(150, "lb"),
  22831. name: "Back",
  22832. image: {
  22833. source: "./media/characters/jaipur/back.svg",
  22834. extra: 4060 / 3930,
  22835. bottom: 151 / 4200
  22836. }
  22837. },
  22838. },
  22839. [
  22840. {
  22841. name: "Normal",
  22842. height: math.unit(1.85, "meters"),
  22843. default: true
  22844. },
  22845. {
  22846. name: "Macro",
  22847. height: math.unit(150, "meters")
  22848. },
  22849. {
  22850. name: "Macro+",
  22851. height: math.unit(0.5, "miles")
  22852. },
  22853. {
  22854. name: "Macro++",
  22855. height: math.unit(2.5, "miles")
  22856. },
  22857. {
  22858. name: "Macro+++",
  22859. height: math.unit(12, "miles")
  22860. },
  22861. {
  22862. name: "Macro++++",
  22863. height: math.unit(120, "miles")
  22864. },
  22865. {
  22866. name: "Macro+++++",
  22867. height: math.unit(1200, "miles")
  22868. },
  22869. ]
  22870. ))
  22871. characterMakers.push(() => makeCharacter(
  22872. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22873. {
  22874. front: {
  22875. height: math.unit(6, "feet"),
  22876. weight: math.unit(150, "lb"),
  22877. name: "Front",
  22878. image: {
  22879. source: "./media/characters/sheila-wolf/front.svg",
  22880. extra: 1931 / 1808,
  22881. bottom: 29.5 / 1960
  22882. }
  22883. },
  22884. dick: {
  22885. height: math.unit(1.464, "feet"),
  22886. name: "Dick",
  22887. image: {
  22888. source: "./media/characters/sheila-wolf/dick.svg"
  22889. }
  22890. },
  22891. muzzle: {
  22892. height: math.unit(0.513, "feet"),
  22893. name: "Muzzle",
  22894. image: {
  22895. source: "./media/characters/sheila-wolf/muzzle.svg"
  22896. }
  22897. },
  22898. },
  22899. [
  22900. {
  22901. name: "Macro",
  22902. height: math.unit(70, "feet"),
  22903. default: true
  22904. },
  22905. ]
  22906. ))
  22907. characterMakers.push(() => makeCharacter(
  22908. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22909. {
  22910. front: {
  22911. height: math.unit(32, "meters"),
  22912. weight: math.unit(300000, "kg"),
  22913. name: "Front",
  22914. image: {
  22915. source: "./media/characters/almor/front.svg",
  22916. extra: 1408 / 1322,
  22917. bottom: 94.6 / 1506.5
  22918. }
  22919. },
  22920. },
  22921. [
  22922. {
  22923. name: "Macro",
  22924. height: math.unit(32, "meters"),
  22925. default: true
  22926. },
  22927. ]
  22928. ))
  22929. characterMakers.push(() => makeCharacter(
  22930. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22931. {
  22932. front: {
  22933. height: math.unit(7, "feet"),
  22934. weight: math.unit(200, "lb"),
  22935. name: "Front",
  22936. image: {
  22937. source: "./media/characters/silver/front.svg",
  22938. extra: 472.1 / 450.5,
  22939. bottom: 26.5 / 499.424
  22940. }
  22941. },
  22942. },
  22943. [
  22944. {
  22945. name: "Normal",
  22946. height: math.unit(7, "feet"),
  22947. default: true
  22948. },
  22949. {
  22950. name: "Macro",
  22951. height: math.unit(800, "feet")
  22952. },
  22953. {
  22954. name: "Megamacro",
  22955. height: math.unit(250, "miles")
  22956. },
  22957. ]
  22958. ))
  22959. characterMakers.push(() => makeCharacter(
  22960. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22961. {
  22962. front: {
  22963. height: math.unit(6, "feet"),
  22964. weight: math.unit(150, "lb"),
  22965. name: "Front",
  22966. image: {
  22967. source: "./media/characters/pliskin/front.svg",
  22968. extra: 1469 / 1359,
  22969. bottom: 70 / 1540
  22970. }
  22971. },
  22972. },
  22973. [
  22974. {
  22975. name: "Micro",
  22976. height: math.unit(3, "inches")
  22977. },
  22978. {
  22979. name: "Normal",
  22980. height: math.unit(5 + 11 / 12, "feet"),
  22981. default: true
  22982. },
  22983. {
  22984. name: "Macro",
  22985. height: math.unit(120, "feet")
  22986. },
  22987. ]
  22988. ))
  22989. characterMakers.push(() => makeCharacter(
  22990. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22991. {
  22992. front: {
  22993. height: math.unit(6, "feet"),
  22994. weight: math.unit(150, "lb"),
  22995. name: "Front",
  22996. image: {
  22997. source: "./media/characters/sammy/front.svg",
  22998. extra: 1193 / 1089,
  22999. bottom: 30.5 / 1226
  23000. }
  23001. },
  23002. },
  23003. [
  23004. {
  23005. name: "Macro",
  23006. height: math.unit(1700, "feet"),
  23007. default: true
  23008. },
  23009. {
  23010. name: "Examacro",
  23011. height: math.unit(2.5e9, "lightyears")
  23012. },
  23013. ]
  23014. ))
  23015. characterMakers.push(() => makeCharacter(
  23016. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23017. {
  23018. front: {
  23019. height: math.unit(21, "meters"),
  23020. weight: math.unit(12, "tonnes"),
  23021. name: "Front",
  23022. image: {
  23023. source: "./media/characters/kuru/front.svg",
  23024. extra: 4301 / 3785,
  23025. bottom: 371.3 / 4691
  23026. }
  23027. },
  23028. },
  23029. [
  23030. {
  23031. name: "Macro",
  23032. height: math.unit(21, "meters"),
  23033. default: true
  23034. },
  23035. ]
  23036. ))
  23037. characterMakers.push(() => makeCharacter(
  23038. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23039. {
  23040. front: {
  23041. height: math.unit(23, "meters"),
  23042. weight: math.unit(12.2, "tonnes"),
  23043. name: "Front",
  23044. image: {
  23045. source: "./media/characters/rakka/front.svg",
  23046. extra: 4670 / 4169,
  23047. bottom: 301 / 4968.7
  23048. }
  23049. },
  23050. },
  23051. [
  23052. {
  23053. name: "Macro",
  23054. height: math.unit(23, "meters"),
  23055. default: true
  23056. },
  23057. ]
  23058. ))
  23059. characterMakers.push(() => makeCharacter(
  23060. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23061. {
  23062. front: {
  23063. height: math.unit(6, "feet"),
  23064. weight: math.unit(150, "lb"),
  23065. name: "Front",
  23066. image: {
  23067. source: "./media/characters/rhys-feline/front.svg",
  23068. extra: 2488 / 2308,
  23069. bottom: 35.67 / 2519.19
  23070. }
  23071. },
  23072. },
  23073. [
  23074. {
  23075. name: "Really Small",
  23076. height: math.unit(1, "nm")
  23077. },
  23078. {
  23079. name: "Micro",
  23080. height: math.unit(4, "inches")
  23081. },
  23082. {
  23083. name: "Normal",
  23084. height: math.unit(4 + 10 / 12, "feet"),
  23085. default: true
  23086. },
  23087. {
  23088. name: "Macro",
  23089. height: math.unit(100, "feet")
  23090. },
  23091. {
  23092. name: "Megamacto",
  23093. height: math.unit(50, "miles")
  23094. },
  23095. ]
  23096. ))
  23097. characterMakers.push(() => makeCharacter(
  23098. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23099. {
  23100. side: {
  23101. height: math.unit(30, "feet"),
  23102. weight: math.unit(35000, "kg"),
  23103. name: "Side",
  23104. image: {
  23105. source: "./media/characters/alydar/side.svg",
  23106. extra: 234 / 222,
  23107. bottom: 6.5 / 241
  23108. }
  23109. },
  23110. front: {
  23111. height: math.unit(30, "feet"),
  23112. weight: math.unit(35000, "kg"),
  23113. name: "Front",
  23114. image: {
  23115. source: "./media/characters/alydar/front.svg",
  23116. extra: 223.37 / 210.2,
  23117. bottom: 22.3 / 246.76
  23118. }
  23119. },
  23120. top: {
  23121. height: math.unit(64.54, "feet"),
  23122. weight: math.unit(35000, "kg"),
  23123. name: "Top",
  23124. image: {
  23125. source: "./media/characters/alydar/top.svg"
  23126. }
  23127. },
  23128. anthro: {
  23129. height: math.unit(30, "feet"),
  23130. weight: math.unit(9000, "kg"),
  23131. name: "Anthro",
  23132. image: {
  23133. source: "./media/characters/alydar/anthro.svg",
  23134. extra: 432 / 421,
  23135. bottom: 7.18 / 440
  23136. }
  23137. },
  23138. maw: {
  23139. height: math.unit(11.693, "feet"),
  23140. name: "Maw",
  23141. image: {
  23142. source: "./media/characters/alydar/maw.svg"
  23143. }
  23144. },
  23145. head: {
  23146. height: math.unit(11.693, "feet"),
  23147. name: "Head",
  23148. image: {
  23149. source: "./media/characters/alydar/head.svg"
  23150. }
  23151. },
  23152. headAlt: {
  23153. height: math.unit(12.861, "feet"),
  23154. name: "Head (Alt)",
  23155. image: {
  23156. source: "./media/characters/alydar/head-alt.svg"
  23157. }
  23158. },
  23159. wing: {
  23160. height: math.unit(20.712, "feet"),
  23161. name: "Wing",
  23162. image: {
  23163. source: "./media/characters/alydar/wing.svg"
  23164. }
  23165. },
  23166. wingFeather: {
  23167. height: math.unit(9.662, "feet"),
  23168. name: "Wing Feather",
  23169. image: {
  23170. source: "./media/characters/alydar/wing-feather.svg"
  23171. }
  23172. },
  23173. countourFeather: {
  23174. height: math.unit(4.154, "feet"),
  23175. name: "Contour Feather",
  23176. image: {
  23177. source: "./media/characters/alydar/contour-feather.svg"
  23178. }
  23179. },
  23180. },
  23181. [
  23182. {
  23183. name: "Diplomatic",
  23184. height: math.unit(13, "feet"),
  23185. default: true
  23186. },
  23187. {
  23188. name: "Small",
  23189. height: math.unit(30, "feet")
  23190. },
  23191. {
  23192. name: "Normal",
  23193. height: math.unit(95, "feet"),
  23194. default: true
  23195. },
  23196. {
  23197. name: "Large",
  23198. height: math.unit(285, "feet")
  23199. },
  23200. {
  23201. name: "Incomprehensible",
  23202. height: math.unit(450, "megameters")
  23203. },
  23204. ]
  23205. ))
  23206. characterMakers.push(() => makeCharacter(
  23207. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23208. {
  23209. side: {
  23210. height: math.unit(11, "feet"),
  23211. weight: math.unit(1750, "kg"),
  23212. name: "Side",
  23213. image: {
  23214. source: "./media/characters/selicia/side.svg",
  23215. extra: 440 / 396,
  23216. bottom: 24.8 / 465.979
  23217. }
  23218. },
  23219. maw: {
  23220. height: math.unit(4.665, "feet"),
  23221. name: "Maw",
  23222. image: {
  23223. source: "./media/characters/selicia/maw.svg"
  23224. }
  23225. },
  23226. },
  23227. [
  23228. {
  23229. name: "Normal",
  23230. height: math.unit(11, "feet"),
  23231. default: true
  23232. },
  23233. ]
  23234. ))
  23235. characterMakers.push(() => makeCharacter(
  23236. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23237. {
  23238. side: {
  23239. height: math.unit(2 + 6 / 12, "feet"),
  23240. weight: math.unit(30, "lb"),
  23241. name: "Side",
  23242. image: {
  23243. source: "./media/characters/layla/side.svg",
  23244. extra: 244 / 188,
  23245. bottom: 18.2 / 262.1
  23246. }
  23247. },
  23248. back: {
  23249. height: math.unit(2 + 6 / 12, "feet"),
  23250. weight: math.unit(30, "lb"),
  23251. name: "Back",
  23252. image: {
  23253. source: "./media/characters/layla/back.svg",
  23254. extra: 308 / 241.5,
  23255. bottom: 8.9 / 316.8
  23256. }
  23257. },
  23258. cumming: {
  23259. height: math.unit(2 + 6 / 12, "feet"),
  23260. weight: math.unit(30, "lb"),
  23261. name: "Cumming",
  23262. image: {
  23263. source: "./media/characters/layla/cumming.svg",
  23264. extra: 342 / 279,
  23265. bottom: 595 / 938
  23266. }
  23267. },
  23268. dickFlaccid: {
  23269. height: math.unit(2.595, "feet"),
  23270. name: "Flaccid Genitals",
  23271. image: {
  23272. source: "./media/characters/layla/dick-flaccid.svg"
  23273. }
  23274. },
  23275. dickErect: {
  23276. height: math.unit(2.359, "feet"),
  23277. name: "Erect Genitals",
  23278. image: {
  23279. source: "./media/characters/layla/dick-erect.svg"
  23280. }
  23281. },
  23282. dragon: {
  23283. height: math.unit(40, "feet"),
  23284. name: "Dragon",
  23285. image: {
  23286. source: "./media/characters/layla/dragon.svg",
  23287. extra: 610/535,
  23288. bottom: 367/977
  23289. }
  23290. },
  23291. taur: {
  23292. height: math.unit(30, "feet"),
  23293. name: "Taur",
  23294. image: {
  23295. source: "./media/characters/layla/taur.svg",
  23296. extra: 1268/1199,
  23297. bottom: 112/1380
  23298. }
  23299. },
  23300. },
  23301. [
  23302. {
  23303. name: "Micro",
  23304. height: math.unit(1, "inch")
  23305. },
  23306. {
  23307. name: "Small",
  23308. height: math.unit(1, "foot")
  23309. },
  23310. {
  23311. name: "Normal",
  23312. height: math.unit(2 + 6 / 12, "feet"),
  23313. default: true
  23314. },
  23315. {
  23316. name: "Macro",
  23317. height: math.unit(200, "feet")
  23318. },
  23319. {
  23320. name: "Megamacro",
  23321. height: math.unit(1000, "miles")
  23322. },
  23323. {
  23324. name: "Planetary",
  23325. height: math.unit(8000, "miles")
  23326. },
  23327. {
  23328. name: "True Layla",
  23329. height: math.unit(200000 * 7, "multiverses")
  23330. },
  23331. ]
  23332. ))
  23333. characterMakers.push(() => makeCharacter(
  23334. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23335. {
  23336. back: {
  23337. height: math.unit(10.5, "feet"),
  23338. weight: math.unit(800, "lb"),
  23339. name: "Back",
  23340. image: {
  23341. source: "./media/characters/knox/back.svg",
  23342. extra: 1486 / 1089,
  23343. bottom: 107 / 1601.4
  23344. }
  23345. },
  23346. side: {
  23347. height: math.unit(10.5, "feet"),
  23348. weight: math.unit(800, "lb"),
  23349. name: "Side",
  23350. image: {
  23351. source: "./media/characters/knox/side.svg",
  23352. extra: 244 / 218,
  23353. bottom: 14 / 260
  23354. }
  23355. },
  23356. },
  23357. [
  23358. {
  23359. name: "Compact",
  23360. height: math.unit(10.5, "feet"),
  23361. default: true
  23362. },
  23363. {
  23364. name: "Dynamax",
  23365. height: math.unit(210, "feet")
  23366. },
  23367. {
  23368. name: "Full Macro",
  23369. height: math.unit(850, "feet")
  23370. },
  23371. ]
  23372. ))
  23373. characterMakers.push(() => makeCharacter(
  23374. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23375. {
  23376. front: {
  23377. height: math.unit(6, "feet"),
  23378. weight: math.unit(152, "lb"),
  23379. name: "Front",
  23380. image: {
  23381. source: "./media/characters/shin-pikachu/front.svg",
  23382. extra: 1854/1602,
  23383. bottom: 166/2020
  23384. }
  23385. },
  23386. hand: {
  23387. height: math.unit(1.055, "feet"),
  23388. name: "Hand",
  23389. image: {
  23390. source: "./media/characters/shin-pikachu/hand.svg"
  23391. }
  23392. },
  23393. foot: {
  23394. height: math.unit(1.1, "feet"),
  23395. name: "Foot",
  23396. image: {
  23397. source: "./media/characters/shin-pikachu/foot.svg"
  23398. }
  23399. },
  23400. collar: {
  23401. height: math.unit(0.386, "feet"),
  23402. name: "Collar",
  23403. image: {
  23404. source: "./media/characters/shin-pikachu/collar.svg"
  23405. }
  23406. },
  23407. },
  23408. [
  23409. {
  23410. name: "Smallest",
  23411. height: math.unit(0.5, "inches")
  23412. },
  23413. {
  23414. name: "Micro",
  23415. height: math.unit(6, "inches")
  23416. },
  23417. {
  23418. name: "Normal",
  23419. height: math.unit(6, "feet"),
  23420. default: true
  23421. },
  23422. {
  23423. name: "Macro",
  23424. height: math.unit(150, "feet")
  23425. },
  23426. ]
  23427. ))
  23428. characterMakers.push(() => makeCharacter(
  23429. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23430. {
  23431. front: {
  23432. height: math.unit(28, "feet"),
  23433. weight: math.unit(10500, "lb"),
  23434. name: "Front",
  23435. image: {
  23436. source: "./media/characters/kayda/front.svg",
  23437. extra: 1536 / 1428,
  23438. bottom: 68.7 / 1603
  23439. }
  23440. },
  23441. back: {
  23442. height: math.unit(28, "feet"),
  23443. weight: math.unit(10500, "lb"),
  23444. name: "Back",
  23445. image: {
  23446. source: "./media/characters/kayda/back.svg",
  23447. extra: 1557 / 1464,
  23448. bottom: 39.5 / 1597.49
  23449. }
  23450. },
  23451. dick: {
  23452. height: math.unit(3.858, "feet"),
  23453. name: "Dick",
  23454. image: {
  23455. source: "./media/characters/kayda/dick.svg"
  23456. }
  23457. },
  23458. },
  23459. [
  23460. {
  23461. name: "Macro",
  23462. height: math.unit(28, "feet"),
  23463. default: true
  23464. },
  23465. ]
  23466. ))
  23467. characterMakers.push(() => makeCharacter(
  23468. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23469. {
  23470. front: {
  23471. height: math.unit(10 + 11 / 12, "feet"),
  23472. weight: math.unit(1400, "lb"),
  23473. name: "Front",
  23474. image: {
  23475. source: "./media/characters/brian/front.svg",
  23476. extra: 737 / 692,
  23477. bottom: 55.4 / 785
  23478. }
  23479. },
  23480. },
  23481. [
  23482. {
  23483. name: "Normal",
  23484. height: math.unit(10 + 11 / 12, "feet"),
  23485. default: true
  23486. },
  23487. ]
  23488. ))
  23489. characterMakers.push(() => makeCharacter(
  23490. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23491. {
  23492. front: {
  23493. height: math.unit(5 + 8 / 12, "feet"),
  23494. weight: math.unit(140, "lb"),
  23495. name: "Front",
  23496. image: {
  23497. source: "./media/characters/khemri/front.svg",
  23498. extra: 4780 / 4059,
  23499. bottom: 80.1 / 4859.25
  23500. }
  23501. },
  23502. },
  23503. [
  23504. {
  23505. name: "Micro",
  23506. height: math.unit(6, "inches")
  23507. },
  23508. {
  23509. name: "Normal",
  23510. height: math.unit(5 + 8 / 12, "feet"),
  23511. default: true
  23512. },
  23513. ]
  23514. ))
  23515. characterMakers.push(() => makeCharacter(
  23516. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23517. {
  23518. front: {
  23519. height: math.unit(13, "feet"),
  23520. weight: math.unit(1700, "lb"),
  23521. name: "Front",
  23522. image: {
  23523. source: "./media/characters/felix-braveheart/front.svg",
  23524. extra: 1222 / 1157,
  23525. bottom: 53.2 / 1280
  23526. }
  23527. },
  23528. back: {
  23529. height: math.unit(13, "feet"),
  23530. weight: math.unit(1700, "lb"),
  23531. name: "Back",
  23532. image: {
  23533. source: "./media/characters/felix-braveheart/back.svg",
  23534. extra: 1277 / 1203,
  23535. bottom: 50.2 / 1327
  23536. }
  23537. },
  23538. feral: {
  23539. height: math.unit(6, "feet"),
  23540. weight: math.unit(400, "lb"),
  23541. name: "Feral",
  23542. image: {
  23543. source: "./media/characters/felix-braveheart/feral.svg",
  23544. extra: 682 / 625,
  23545. bottom: 6.9 / 688
  23546. }
  23547. },
  23548. },
  23549. [
  23550. {
  23551. name: "Normal",
  23552. height: math.unit(13, "feet"),
  23553. default: true
  23554. },
  23555. ]
  23556. ))
  23557. characterMakers.push(() => makeCharacter(
  23558. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23559. {
  23560. side: {
  23561. height: math.unit(5 + 11 / 12, "feet"),
  23562. weight: math.unit(1400, "lb"),
  23563. name: "Side",
  23564. image: {
  23565. source: "./media/characters/shadow-blade/side.svg",
  23566. extra: 1726 / 1267,
  23567. bottom: 58.4 / 1785
  23568. }
  23569. },
  23570. },
  23571. [
  23572. {
  23573. name: "Normal",
  23574. height: math.unit(5 + 11 / 12, "feet"),
  23575. default: true
  23576. },
  23577. ]
  23578. ))
  23579. characterMakers.push(() => makeCharacter(
  23580. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23581. {
  23582. front: {
  23583. height: math.unit(1 + 6 / 12, "feet"),
  23584. weight: math.unit(25, "lb"),
  23585. name: "Front",
  23586. image: {
  23587. source: "./media/characters/karla-halldor/front.svg",
  23588. extra: 1459 / 1383,
  23589. bottom: 12 / 1472
  23590. }
  23591. },
  23592. },
  23593. [
  23594. {
  23595. name: "Normal",
  23596. height: math.unit(1 + 6 / 12, "feet"),
  23597. default: true
  23598. },
  23599. ]
  23600. ))
  23601. characterMakers.push(() => makeCharacter(
  23602. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23603. {
  23604. front: {
  23605. height: math.unit(6 + 2 / 12, "feet"),
  23606. weight: math.unit(160, "lb"),
  23607. name: "Front",
  23608. image: {
  23609. source: "./media/characters/ariam/front.svg",
  23610. extra: 714 / 617,
  23611. bottom: 23.4 / 737,
  23612. }
  23613. },
  23614. squatting: {
  23615. height: math.unit(4.1, "feet"),
  23616. weight: math.unit(160, "lb"),
  23617. name: "Squatting",
  23618. image: {
  23619. source: "./media/characters/ariam/squatting.svg",
  23620. extra: 2617 / 2112,
  23621. bottom: 61.2 / 2681,
  23622. }
  23623. },
  23624. },
  23625. [
  23626. {
  23627. name: "Normal",
  23628. height: math.unit(6 + 2 / 12, "feet"),
  23629. default: true
  23630. },
  23631. {
  23632. name: "Normal+",
  23633. height: math.unit(4, "meters")
  23634. },
  23635. {
  23636. name: "Macro",
  23637. height: math.unit(50, "meters")
  23638. },
  23639. {
  23640. name: "Macro+",
  23641. height: math.unit(100, "meters")
  23642. },
  23643. {
  23644. name: "Megamacro",
  23645. height: math.unit(20, "km")
  23646. },
  23647. ]
  23648. ))
  23649. characterMakers.push(() => makeCharacter(
  23650. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23651. {
  23652. front: {
  23653. height: math.unit(1.67, "meters"),
  23654. weight: math.unit(140, "lb"),
  23655. name: "Front",
  23656. image: {
  23657. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23658. extra: 438 / 410,
  23659. bottom: 0.75 / 439
  23660. }
  23661. },
  23662. },
  23663. [
  23664. {
  23665. name: "Shrunken",
  23666. height: math.unit(7.6, "cm")
  23667. },
  23668. {
  23669. name: "Human Scale",
  23670. height: math.unit(1.67, "meters")
  23671. },
  23672. {
  23673. name: "Wolxi Scale",
  23674. height: math.unit(36.7, "meters"),
  23675. default: true
  23676. },
  23677. ]
  23678. ))
  23679. characterMakers.push(() => makeCharacter(
  23680. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23681. {
  23682. front: {
  23683. height: math.unit(1.73, "meters"),
  23684. weight: math.unit(240, "lb"),
  23685. name: "Front",
  23686. image: {
  23687. source: "./media/characters/izue-two-mothers/front.svg",
  23688. extra: 469 / 437,
  23689. bottom: 1.24 / 470.6
  23690. }
  23691. },
  23692. },
  23693. [
  23694. {
  23695. name: "Shrunken",
  23696. height: math.unit(7.86, "cm")
  23697. },
  23698. {
  23699. name: "Human Scale",
  23700. height: math.unit(1.73, "meters")
  23701. },
  23702. {
  23703. name: "Wolxi Scale",
  23704. height: math.unit(38, "meters"),
  23705. default: true
  23706. },
  23707. ]
  23708. ))
  23709. characterMakers.push(() => makeCharacter(
  23710. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23711. {
  23712. front: {
  23713. height: math.unit(1.55, "meters"),
  23714. weight: math.unit(120, "lb"),
  23715. name: "Front",
  23716. image: {
  23717. source: "./media/characters/teeku-love-shack/front.svg",
  23718. extra: 387 / 362,
  23719. bottom: 1.51 / 388
  23720. }
  23721. },
  23722. },
  23723. [
  23724. {
  23725. name: "Shrunken",
  23726. height: math.unit(7, "cm")
  23727. },
  23728. {
  23729. name: "Human Scale",
  23730. height: math.unit(1.55, "meters")
  23731. },
  23732. {
  23733. name: "Wolxi Scale",
  23734. height: math.unit(34.1, "meters"),
  23735. default: true
  23736. },
  23737. ]
  23738. ))
  23739. characterMakers.push(() => makeCharacter(
  23740. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23741. {
  23742. front: {
  23743. height: math.unit(1.83, "meters"),
  23744. weight: math.unit(135, "lb"),
  23745. name: "Front",
  23746. image: {
  23747. source: "./media/characters/dejma-the-red/front.svg",
  23748. extra: 480 / 458,
  23749. bottom: 1.8 / 482
  23750. }
  23751. },
  23752. },
  23753. [
  23754. {
  23755. name: "Shrunken",
  23756. height: math.unit(8.3, "cm")
  23757. },
  23758. {
  23759. name: "Human Scale",
  23760. height: math.unit(1.83, "meters")
  23761. },
  23762. {
  23763. name: "Wolxi Scale",
  23764. height: math.unit(40, "meters"),
  23765. default: true
  23766. },
  23767. ]
  23768. ))
  23769. characterMakers.push(() => makeCharacter(
  23770. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23771. {
  23772. front: {
  23773. height: math.unit(1.78, "meters"),
  23774. weight: math.unit(65, "kg"),
  23775. name: "Front",
  23776. image: {
  23777. source: "./media/characters/aki/front.svg",
  23778. extra: 452 / 415
  23779. }
  23780. },
  23781. frontNsfw: {
  23782. height: math.unit(1.78, "meters"),
  23783. weight: math.unit(65, "kg"),
  23784. name: "Front (NSFW)",
  23785. image: {
  23786. source: "./media/characters/aki/front-nsfw.svg",
  23787. extra: 452 / 415
  23788. }
  23789. },
  23790. back: {
  23791. height: math.unit(1.78, "meters"),
  23792. weight: math.unit(65, "kg"),
  23793. name: "Back",
  23794. image: {
  23795. source: "./media/characters/aki/back.svg",
  23796. extra: 452 / 415
  23797. }
  23798. },
  23799. rump: {
  23800. height: math.unit(2.05, "feet"),
  23801. name: "Rump",
  23802. image: {
  23803. source: "./media/characters/aki/rump.svg"
  23804. }
  23805. },
  23806. dick: {
  23807. height: math.unit(0.95, "feet"),
  23808. name: "Dick",
  23809. image: {
  23810. source: "./media/characters/aki/dick.svg"
  23811. }
  23812. },
  23813. },
  23814. [
  23815. {
  23816. name: "Micro",
  23817. height: math.unit(15, "cm")
  23818. },
  23819. {
  23820. name: "Normal",
  23821. height: math.unit(178, "cm"),
  23822. default: true
  23823. },
  23824. {
  23825. name: "Macro",
  23826. height: math.unit(214, "m")
  23827. },
  23828. {
  23829. name: "Macro+",
  23830. height: math.unit(534, "m")
  23831. },
  23832. ]
  23833. ))
  23834. characterMakers.push(() => makeCharacter(
  23835. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23836. {
  23837. front: {
  23838. height: math.unit(5 + 5 / 12, "feet"),
  23839. weight: math.unit(120, "lb"),
  23840. name: "Front",
  23841. image: {
  23842. source: "./media/characters/ari/front.svg",
  23843. extra: 714.5 / 682,
  23844. bottom: 8 / 722.5
  23845. }
  23846. },
  23847. },
  23848. [
  23849. {
  23850. name: "Normal",
  23851. height: math.unit(5 + 5 / 12, "feet")
  23852. },
  23853. {
  23854. name: "Macro",
  23855. height: math.unit(100, "feet"),
  23856. default: true
  23857. },
  23858. {
  23859. name: "Megamacro",
  23860. height: math.unit(100, "miles")
  23861. },
  23862. {
  23863. name: "Gigamacro",
  23864. height: math.unit(80000, "miles")
  23865. },
  23866. ]
  23867. ))
  23868. characterMakers.push(() => makeCharacter(
  23869. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23870. {
  23871. side: {
  23872. height: math.unit(9, "feet"),
  23873. weight: math.unit(400, "kg"),
  23874. name: "Side",
  23875. image: {
  23876. source: "./media/characters/bolt/side.svg",
  23877. extra: 1126 / 896,
  23878. bottom: 60 / 1187.3,
  23879. }
  23880. },
  23881. },
  23882. [
  23883. {
  23884. name: "Micro",
  23885. height: math.unit(5, "inches")
  23886. },
  23887. {
  23888. name: "Normal",
  23889. height: math.unit(9, "feet"),
  23890. default: true
  23891. },
  23892. {
  23893. name: "Macro",
  23894. height: math.unit(700, "feet")
  23895. },
  23896. {
  23897. name: "Max Size",
  23898. height: math.unit(1.52e22, "yottameters")
  23899. },
  23900. ]
  23901. ))
  23902. characterMakers.push(() => makeCharacter(
  23903. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23904. {
  23905. front: {
  23906. height: math.unit(4.53, "meters"),
  23907. weight: math.unit(3, "tons"),
  23908. name: "Front",
  23909. image: {
  23910. source: "./media/characters/draekon-sylviar/front.svg",
  23911. extra: 1228 / 1068,
  23912. bottom: 41 / 1270
  23913. }
  23914. },
  23915. tail: {
  23916. height: math.unit(1.772, "meter"),
  23917. name: "Tail",
  23918. image: {
  23919. source: "./media/characters/draekon-sylviar/tail.svg"
  23920. }
  23921. },
  23922. head: {
  23923. height: math.unit(1.331, "meter"),
  23924. name: "Head",
  23925. image: {
  23926. source: "./media/characters/draekon-sylviar/head.svg"
  23927. }
  23928. },
  23929. hand: {
  23930. height: math.unit(0.564, "meter"),
  23931. name: "Hand",
  23932. image: {
  23933. source: "./media/characters/draekon-sylviar/hand.svg"
  23934. }
  23935. },
  23936. foot: {
  23937. height: math.unit(0.621, "meter"),
  23938. name: "Foot",
  23939. image: {
  23940. source: "./media/characters/draekon-sylviar/foot.svg",
  23941. bottom: 32 / 324
  23942. }
  23943. },
  23944. dick: {
  23945. height: math.unit(61, "cm"),
  23946. name: "Dick",
  23947. image: {
  23948. source: "./media/characters/draekon-sylviar/dick.svg"
  23949. }
  23950. },
  23951. dickseparated: {
  23952. height: math.unit(61, "cm"),
  23953. name: "Dick-separated",
  23954. image: {
  23955. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23956. }
  23957. },
  23958. },
  23959. [
  23960. {
  23961. name: "Small",
  23962. height: math.unit(4.53 / 2, "meters"),
  23963. default: true
  23964. },
  23965. {
  23966. name: "Normal",
  23967. height: math.unit(4.53, "meters"),
  23968. default: true
  23969. },
  23970. {
  23971. name: "Large",
  23972. height: math.unit(4.53 * 2, "meters"),
  23973. },
  23974. ]
  23975. ))
  23976. characterMakers.push(() => makeCharacter(
  23977. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23978. {
  23979. front: {
  23980. height: math.unit(6 + 2 / 12, "feet"),
  23981. weight: math.unit(180, "lb"),
  23982. name: "Front",
  23983. image: {
  23984. source: "./media/characters/brawler/front.svg",
  23985. extra: 3301 / 3027,
  23986. bottom: 138 / 3439
  23987. }
  23988. },
  23989. },
  23990. [
  23991. {
  23992. name: "Normal",
  23993. height: math.unit(6 + 2 / 12, "feet"),
  23994. default: true
  23995. },
  23996. ]
  23997. ))
  23998. characterMakers.push(() => makeCharacter(
  23999. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24000. {
  24001. front: {
  24002. height: math.unit(11, "feet"),
  24003. weight: math.unit(1000, "lb"),
  24004. name: "Front",
  24005. image: {
  24006. source: "./media/characters/alex/front.svg",
  24007. bottom: 44.5 / 620
  24008. }
  24009. },
  24010. },
  24011. [
  24012. {
  24013. name: "Micro",
  24014. height: math.unit(5, "inches")
  24015. },
  24016. {
  24017. name: "Normal",
  24018. height: math.unit(11, "feet"),
  24019. default: true
  24020. },
  24021. {
  24022. name: "Macro",
  24023. height: math.unit(9.5e9, "feet")
  24024. },
  24025. {
  24026. name: "Max Size",
  24027. height: math.unit(1.4e283, "yottameters")
  24028. },
  24029. ]
  24030. ))
  24031. characterMakers.push(() => makeCharacter(
  24032. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24033. {
  24034. female: {
  24035. height: math.unit(29.9, "m"),
  24036. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24037. name: "Female",
  24038. image: {
  24039. source: "./media/characters/zenari/female.svg",
  24040. extra: 3281.6 / 3217,
  24041. bottom: 72.2 / 3353
  24042. }
  24043. },
  24044. male: {
  24045. height: math.unit(27.7, "m"),
  24046. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24047. name: "Male",
  24048. image: {
  24049. source: "./media/characters/zenari/male.svg",
  24050. extra: 3008 / 2991,
  24051. bottom: 54.6 / 3069
  24052. }
  24053. },
  24054. },
  24055. [
  24056. {
  24057. name: "Macro",
  24058. height: math.unit(29.7, "meters"),
  24059. default: true
  24060. },
  24061. ]
  24062. ))
  24063. characterMakers.push(() => makeCharacter(
  24064. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24065. {
  24066. female: {
  24067. height: math.unit(23.8, "m"),
  24068. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24069. name: "Female",
  24070. image: {
  24071. source: "./media/characters/mactarian/female.svg",
  24072. extra: 2662 / 2569,
  24073. bottom: 73 / 2736
  24074. }
  24075. },
  24076. male: {
  24077. height: math.unit(23.8, "m"),
  24078. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24079. name: "Male",
  24080. image: {
  24081. source: "./media/characters/mactarian/male.svg",
  24082. extra: 2673 / 2600,
  24083. bottom: 76 / 2750
  24084. }
  24085. },
  24086. },
  24087. [
  24088. {
  24089. name: "Macro",
  24090. height: math.unit(23.8, "meters"),
  24091. default: true
  24092. },
  24093. ]
  24094. ))
  24095. characterMakers.push(() => makeCharacter(
  24096. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24097. {
  24098. female: {
  24099. height: math.unit(19.3, "m"),
  24100. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24101. name: "Female",
  24102. image: {
  24103. source: "./media/characters/umok/female.svg",
  24104. extra: 2186 / 2078,
  24105. bottom: 87 / 2277
  24106. }
  24107. },
  24108. male: {
  24109. height: math.unit(19.5, "m"),
  24110. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24111. name: "Male",
  24112. image: {
  24113. source: "./media/characters/umok/male.svg",
  24114. extra: 2233 / 2140,
  24115. bottom: 24.4 / 2258
  24116. }
  24117. },
  24118. },
  24119. [
  24120. {
  24121. name: "Macro",
  24122. height: math.unit(19.3, "meters"),
  24123. default: true
  24124. },
  24125. ]
  24126. ))
  24127. characterMakers.push(() => makeCharacter(
  24128. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24129. {
  24130. female: {
  24131. height: math.unit(26.15, "m"),
  24132. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24133. name: "Female",
  24134. image: {
  24135. source: "./media/characters/joraxian/female.svg",
  24136. extra: 2912 / 2824,
  24137. bottom: 36 / 2956
  24138. }
  24139. },
  24140. male: {
  24141. height: math.unit(25.4, "m"),
  24142. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24143. name: "Male",
  24144. image: {
  24145. source: "./media/characters/joraxian/male.svg",
  24146. extra: 2877 / 2721,
  24147. bottom: 82 / 2967
  24148. }
  24149. },
  24150. },
  24151. [
  24152. {
  24153. name: "Macro",
  24154. height: math.unit(26.15, "meters"),
  24155. default: true
  24156. },
  24157. ]
  24158. ))
  24159. characterMakers.push(() => makeCharacter(
  24160. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24161. {
  24162. female: {
  24163. height: math.unit(21.6, "m"),
  24164. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24165. name: "Female",
  24166. image: {
  24167. source: "./media/characters/sthara/female.svg",
  24168. extra: 2516 / 2347,
  24169. bottom: 21.5 / 2537
  24170. }
  24171. },
  24172. male: {
  24173. height: math.unit(24, "m"),
  24174. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24175. name: "Male",
  24176. image: {
  24177. source: "./media/characters/sthara/male.svg",
  24178. extra: 2732 / 2607,
  24179. bottom: 23 / 2732
  24180. }
  24181. },
  24182. },
  24183. [
  24184. {
  24185. name: "Macro",
  24186. height: math.unit(21.6, "meters"),
  24187. default: true
  24188. },
  24189. ]
  24190. ))
  24191. characterMakers.push(() => makeCharacter(
  24192. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24193. {
  24194. front: {
  24195. height: math.unit(6 + 4 / 12, "feet"),
  24196. weight: math.unit(175, "lb"),
  24197. name: "Front",
  24198. image: {
  24199. source: "./media/characters/luka-bryzant/front.svg",
  24200. extra: 311 / 289,
  24201. bottom: 4 / 315
  24202. }
  24203. },
  24204. back: {
  24205. height: math.unit(6 + 4 / 12, "feet"),
  24206. weight: math.unit(175, "lb"),
  24207. name: "Back",
  24208. image: {
  24209. source: "./media/characters/luka-bryzant/back.svg",
  24210. extra: 311 / 289,
  24211. bottom: 3.8 / 313.7
  24212. }
  24213. },
  24214. },
  24215. [
  24216. {
  24217. name: "Micro",
  24218. height: math.unit(10, "inches")
  24219. },
  24220. {
  24221. name: "Normal",
  24222. height: math.unit(6 + 4 / 12, "feet"),
  24223. default: true
  24224. },
  24225. {
  24226. name: "Large",
  24227. height: math.unit(12, "feet")
  24228. },
  24229. ]
  24230. ))
  24231. characterMakers.push(() => makeCharacter(
  24232. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24233. {
  24234. front: {
  24235. height: math.unit(5 + 7 / 12, "feet"),
  24236. weight: math.unit(185, "lb"),
  24237. name: "Front",
  24238. image: {
  24239. source: "./media/characters/aman-aquila/front.svg",
  24240. extra: 1013 / 976,
  24241. bottom: 45.6 / 1057
  24242. }
  24243. },
  24244. side: {
  24245. height: math.unit(5 + 7 / 12, "feet"),
  24246. weight: math.unit(185, "lb"),
  24247. name: "Side",
  24248. image: {
  24249. source: "./media/characters/aman-aquila/side.svg",
  24250. extra: 1054 / 1011,
  24251. bottom: 15 / 1070
  24252. }
  24253. },
  24254. back: {
  24255. height: math.unit(5 + 7 / 12, "feet"),
  24256. weight: math.unit(185, "lb"),
  24257. name: "Back",
  24258. image: {
  24259. source: "./media/characters/aman-aquila/back.svg",
  24260. extra: 1026 / 970,
  24261. bottom: 12 / 1039
  24262. }
  24263. },
  24264. head: {
  24265. height: math.unit(1.211, "feet"),
  24266. name: "Head",
  24267. image: {
  24268. source: "./media/characters/aman-aquila/head.svg",
  24269. }
  24270. },
  24271. },
  24272. [
  24273. {
  24274. name: "Minimicro",
  24275. height: math.unit(0.057, "inches")
  24276. },
  24277. {
  24278. name: "Micro",
  24279. height: math.unit(7, "inches")
  24280. },
  24281. {
  24282. name: "Mini",
  24283. height: math.unit(3 + 7 / 12, "feet")
  24284. },
  24285. {
  24286. name: "Normal",
  24287. height: math.unit(5 + 7 / 12, "feet"),
  24288. default: true
  24289. },
  24290. {
  24291. name: "Macro",
  24292. height: math.unit(157 + 7 / 12, "feet")
  24293. },
  24294. {
  24295. name: "Megamacro",
  24296. height: math.unit(1557 + 7 / 12, "feet")
  24297. },
  24298. {
  24299. name: "Gigamacro",
  24300. height: math.unit(15557 + 7 / 12, "feet")
  24301. },
  24302. ]
  24303. ))
  24304. characterMakers.push(() => makeCharacter(
  24305. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24306. {
  24307. front: {
  24308. height: math.unit(3 + 2 / 12, "inches"),
  24309. weight: math.unit(0.3, "ounces"),
  24310. name: "Front",
  24311. image: {
  24312. source: "./media/characters/hiphae/front.svg",
  24313. extra: 1931 / 1683,
  24314. bottom: 24 / 1955
  24315. }
  24316. },
  24317. },
  24318. [
  24319. {
  24320. name: "Normal",
  24321. height: math.unit(3 + 1 / 2, "inches"),
  24322. default: true
  24323. },
  24324. ]
  24325. ))
  24326. characterMakers.push(() => makeCharacter(
  24327. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24328. {
  24329. front: {
  24330. height: math.unit(5 + 10 / 12, "feet"),
  24331. weight: math.unit(165, "lb"),
  24332. name: "Front",
  24333. image: {
  24334. source: "./media/characters/nicky/front.svg",
  24335. extra: 3144 / 2886,
  24336. bottom: 45.6 / 3192
  24337. }
  24338. },
  24339. back: {
  24340. height: math.unit(5 + 10 / 12, "feet"),
  24341. weight: math.unit(165, "lb"),
  24342. name: "Back",
  24343. image: {
  24344. source: "./media/characters/nicky/back.svg",
  24345. extra: 3055 / 2804,
  24346. bottom: 28.4 / 3087
  24347. }
  24348. },
  24349. frontclothed: {
  24350. height: math.unit(5 + 10 / 12, "feet"),
  24351. weight: math.unit(165, "lb"),
  24352. name: "Front-clothed",
  24353. image: {
  24354. source: "./media/characters/nicky/front-clothed.svg",
  24355. extra: 3184.9 / 2926.9,
  24356. bottom: 86.5 / 3239.9
  24357. }
  24358. },
  24359. foot: {
  24360. height: math.unit(1.16, "feet"),
  24361. name: "Foot",
  24362. image: {
  24363. source: "./media/characters/nicky/foot.svg"
  24364. }
  24365. },
  24366. feet: {
  24367. height: math.unit(1.34, "feet"),
  24368. name: "Feet",
  24369. image: {
  24370. source: "./media/characters/nicky/feet.svg"
  24371. }
  24372. },
  24373. maw: {
  24374. height: math.unit(0.9, "feet"),
  24375. name: "Maw",
  24376. image: {
  24377. source: "./media/characters/nicky/maw.svg"
  24378. }
  24379. },
  24380. },
  24381. [
  24382. {
  24383. name: "Normal",
  24384. height: math.unit(5 + 10 / 12, "feet"),
  24385. default: true
  24386. },
  24387. {
  24388. name: "Macro",
  24389. height: math.unit(60, "feet")
  24390. },
  24391. {
  24392. name: "Megamacro",
  24393. height: math.unit(1, "mile")
  24394. },
  24395. ]
  24396. ))
  24397. characterMakers.push(() => makeCharacter(
  24398. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24399. {
  24400. side: {
  24401. height: math.unit(10, "feet"),
  24402. weight: math.unit(600, "lb"),
  24403. name: "Side",
  24404. image: {
  24405. source: "./media/characters/blair/side.svg",
  24406. bottom: 16.6 / 475,
  24407. extra: 458 / 431
  24408. }
  24409. },
  24410. },
  24411. [
  24412. {
  24413. name: "Micro",
  24414. height: math.unit(8, "inches")
  24415. },
  24416. {
  24417. name: "Normal",
  24418. height: math.unit(10, "feet"),
  24419. default: true
  24420. },
  24421. {
  24422. name: "Macro",
  24423. height: math.unit(180, "feet")
  24424. },
  24425. ]
  24426. ))
  24427. characterMakers.push(() => makeCharacter(
  24428. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24429. {
  24430. front: {
  24431. height: math.unit(5 + 4 / 12, "feet"),
  24432. weight: math.unit(125, "lb"),
  24433. name: "Front",
  24434. image: {
  24435. source: "./media/characters/fisher/front.svg",
  24436. extra: 444 / 390,
  24437. bottom: 2 / 444.8
  24438. }
  24439. },
  24440. },
  24441. [
  24442. {
  24443. name: "Micro",
  24444. height: math.unit(4, "inches")
  24445. },
  24446. {
  24447. name: "Normal",
  24448. height: math.unit(5 + 4 / 12, "feet"),
  24449. default: true
  24450. },
  24451. {
  24452. name: "Macro",
  24453. height: math.unit(100, "feet")
  24454. },
  24455. ]
  24456. ))
  24457. characterMakers.push(() => makeCharacter(
  24458. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24459. {
  24460. front: {
  24461. height: math.unit(6.71, "feet"),
  24462. weight: math.unit(200, "lb"),
  24463. capacity: math.unit(1000000, "people"),
  24464. name: "Front",
  24465. image: {
  24466. source: "./media/characters/gliss/front.svg",
  24467. extra: 2347 / 2231,
  24468. bottom: 113 / 2462
  24469. }
  24470. },
  24471. hammerspaceSize: {
  24472. height: math.unit(6.71 * 717, "feet"),
  24473. weight: math.unit(200, "lb"),
  24474. capacity: math.unit(1000000, "people"),
  24475. name: "Hammerspace Size",
  24476. image: {
  24477. source: "./media/characters/gliss/front.svg",
  24478. extra: 2347 / 2231,
  24479. bottom: 113 / 2462
  24480. }
  24481. },
  24482. },
  24483. [
  24484. {
  24485. name: "Normal",
  24486. height: math.unit(6.71, "feet"),
  24487. default: true
  24488. },
  24489. ]
  24490. ))
  24491. characterMakers.push(() => makeCharacter(
  24492. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24493. {
  24494. side: {
  24495. height: math.unit(1.44, "m"),
  24496. weight: math.unit(80, "kg"),
  24497. name: "Side",
  24498. image: {
  24499. source: "./media/characters/dune-anderson/side.svg",
  24500. bottom: 49 / 1426
  24501. }
  24502. },
  24503. },
  24504. [
  24505. {
  24506. name: "Wolf-sized",
  24507. height: math.unit(1.44, "meters")
  24508. },
  24509. {
  24510. name: "Normal",
  24511. height: math.unit(5.05, "meters"),
  24512. default: true
  24513. },
  24514. {
  24515. name: "Big",
  24516. height: math.unit(14.4, "meters")
  24517. },
  24518. {
  24519. name: "Huge",
  24520. height: math.unit(144, "meters")
  24521. },
  24522. ]
  24523. ))
  24524. characterMakers.push(() => makeCharacter(
  24525. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24526. {
  24527. front: {
  24528. height: math.unit(7, "feet"),
  24529. weight: math.unit(425, "lb"),
  24530. name: "Front",
  24531. image: {
  24532. source: "./media/characters/hind/front.svg",
  24533. extra: 2091 / 1860,
  24534. bottom: 129 / 2220
  24535. }
  24536. },
  24537. back: {
  24538. height: math.unit(7, "feet"),
  24539. weight: math.unit(425, "lb"),
  24540. name: "Back",
  24541. image: {
  24542. source: "./media/characters/hind/back.svg",
  24543. extra: 2091 / 1860,
  24544. bottom: 24.6 / 2309
  24545. }
  24546. },
  24547. tail: {
  24548. height: math.unit(2.8, "feet"),
  24549. name: "Tail",
  24550. image: {
  24551. source: "./media/characters/hind/tail.svg"
  24552. }
  24553. },
  24554. head: {
  24555. height: math.unit(2.55, "feet"),
  24556. name: "Head",
  24557. image: {
  24558. source: "./media/characters/hind/head.svg"
  24559. }
  24560. },
  24561. },
  24562. [
  24563. {
  24564. name: "XS",
  24565. height: math.unit(0.7, "feet")
  24566. },
  24567. {
  24568. name: "Normal",
  24569. height: math.unit(7, "feet"),
  24570. default: true
  24571. },
  24572. {
  24573. name: "XL",
  24574. height: math.unit(70, "feet")
  24575. },
  24576. ]
  24577. ))
  24578. characterMakers.push(() => makeCharacter(
  24579. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24580. {
  24581. front: {
  24582. height: math.unit(6, "feet"),
  24583. weight: math.unit(150, "lb"),
  24584. name: "Front",
  24585. image: {
  24586. source: "./media/characters/dylan-skaven/front.svg",
  24587. extra: 2318 / 2063,
  24588. bottom: 93.4 / 2410
  24589. }
  24590. },
  24591. },
  24592. [
  24593. {
  24594. name: "Nano",
  24595. height: math.unit(1, "mm")
  24596. },
  24597. {
  24598. name: "Micro",
  24599. height: math.unit(1, "cm")
  24600. },
  24601. {
  24602. name: "Normal",
  24603. height: math.unit(2.1, "meters"),
  24604. default: true
  24605. },
  24606. ]
  24607. ))
  24608. characterMakers.push(() => makeCharacter(
  24609. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24610. {
  24611. front: {
  24612. height: math.unit(7 + 5 / 12, "feet"),
  24613. weight: math.unit(357, "lb"),
  24614. name: "Front",
  24615. image: {
  24616. source: "./media/characters/solex-draconov/front.svg",
  24617. extra: 1993 / 1865,
  24618. bottom: 117 / 2111
  24619. }
  24620. },
  24621. },
  24622. [
  24623. {
  24624. name: "Natural Height",
  24625. height: math.unit(7 + 5 / 12, "feet"),
  24626. default: true
  24627. },
  24628. {
  24629. name: "Macro",
  24630. height: math.unit(350, "feet")
  24631. },
  24632. {
  24633. name: "Macro+",
  24634. height: math.unit(1000, "feet")
  24635. },
  24636. {
  24637. name: "Megamacro",
  24638. height: math.unit(20, "km")
  24639. },
  24640. {
  24641. name: "Megamacro+",
  24642. height: math.unit(1000, "km")
  24643. },
  24644. {
  24645. name: "Gigamacro",
  24646. height: math.unit(2.5, "Gm")
  24647. },
  24648. {
  24649. name: "Teramacro",
  24650. height: math.unit(15, "Tm")
  24651. },
  24652. {
  24653. name: "Galactic",
  24654. height: math.unit(30, "Zm")
  24655. },
  24656. {
  24657. name: "Universal",
  24658. height: math.unit(21000, "Ym")
  24659. },
  24660. {
  24661. name: "Omniversal",
  24662. height: math.unit(9.861e50, "Ym")
  24663. },
  24664. {
  24665. name: "Existential",
  24666. height: math.unit(1e300, "meters")
  24667. },
  24668. ]
  24669. ))
  24670. characterMakers.push(() => makeCharacter(
  24671. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24672. {
  24673. side: {
  24674. height: math.unit(25, "feet"),
  24675. weight: math.unit(90000, "lb"),
  24676. name: "Side",
  24677. image: {
  24678. source: "./media/characters/mandarax/side.svg",
  24679. extra: 614 / 332,
  24680. bottom: 55 / 630
  24681. }
  24682. },
  24683. head: {
  24684. height: math.unit(11.4, "feet"),
  24685. name: "Head",
  24686. image: {
  24687. source: "./media/characters/mandarax/head.svg"
  24688. }
  24689. },
  24690. belly: {
  24691. height: math.unit(33, "feet"),
  24692. name: "Belly",
  24693. capacity: math.unit(500, "people"),
  24694. image: {
  24695. source: "./media/characters/mandarax/belly.svg"
  24696. }
  24697. },
  24698. dick: {
  24699. height: math.unit(8.46, "feet"),
  24700. name: "Dick",
  24701. image: {
  24702. source: "./media/characters/mandarax/dick.svg"
  24703. }
  24704. },
  24705. top: {
  24706. height: math.unit(28, "meters"),
  24707. name: "Top",
  24708. image: {
  24709. source: "./media/characters/mandarax/top.svg"
  24710. }
  24711. },
  24712. },
  24713. [
  24714. {
  24715. name: "Normal",
  24716. height: math.unit(25, "feet"),
  24717. default: true
  24718. },
  24719. ]
  24720. ))
  24721. characterMakers.push(() => makeCharacter(
  24722. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24723. {
  24724. front: {
  24725. height: math.unit(5, "feet"),
  24726. weight: math.unit(90, "lb"),
  24727. name: "Front",
  24728. image: {
  24729. source: "./media/characters/pixil/front.svg",
  24730. extra: 2000 / 1618,
  24731. bottom: 12.3 / 2011
  24732. }
  24733. },
  24734. },
  24735. [
  24736. {
  24737. name: "Normal",
  24738. height: math.unit(5, "feet"),
  24739. default: true
  24740. },
  24741. {
  24742. name: "Megamacro",
  24743. height: math.unit(10, "miles"),
  24744. },
  24745. ]
  24746. ))
  24747. characterMakers.push(() => makeCharacter(
  24748. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24749. {
  24750. front: {
  24751. height: math.unit(7 + 2 / 12, "feet"),
  24752. weight: math.unit(200, "lb"),
  24753. name: "Front",
  24754. image: {
  24755. source: "./media/characters/angel/front.svg",
  24756. extra: 1830 / 1737,
  24757. bottom: 22.6 / 1854,
  24758. }
  24759. },
  24760. },
  24761. [
  24762. {
  24763. name: "Normal",
  24764. height: math.unit(7 + 2 / 12, "feet"),
  24765. default: true
  24766. },
  24767. {
  24768. name: "Macro",
  24769. height: math.unit(1000, "feet")
  24770. },
  24771. {
  24772. name: "Megamacro",
  24773. height: math.unit(2, "miles")
  24774. },
  24775. {
  24776. name: "Gigamacro",
  24777. height: math.unit(20, "earths")
  24778. },
  24779. ]
  24780. ))
  24781. characterMakers.push(() => makeCharacter(
  24782. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24783. {
  24784. front: {
  24785. height: math.unit(5, "feet"),
  24786. weight: math.unit(180, "lb"),
  24787. name: "Front",
  24788. image: {
  24789. source: "./media/characters/mekana/front.svg",
  24790. extra: 1671 / 1605,
  24791. bottom: 3.5 / 1691
  24792. }
  24793. },
  24794. side: {
  24795. height: math.unit(5, "feet"),
  24796. weight: math.unit(180, "lb"),
  24797. name: "Side",
  24798. image: {
  24799. source: "./media/characters/mekana/side.svg",
  24800. extra: 1671 / 1605,
  24801. bottom: 3.5 / 1691
  24802. }
  24803. },
  24804. back: {
  24805. height: math.unit(5, "feet"),
  24806. weight: math.unit(180, "lb"),
  24807. name: "Back",
  24808. image: {
  24809. source: "./media/characters/mekana/back.svg",
  24810. extra: 1671 / 1605,
  24811. bottom: 3.5 / 1691
  24812. }
  24813. },
  24814. },
  24815. [
  24816. {
  24817. name: "Normal",
  24818. height: math.unit(5, "feet"),
  24819. default: true
  24820. },
  24821. ]
  24822. ))
  24823. characterMakers.push(() => makeCharacter(
  24824. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24825. {
  24826. front: {
  24827. height: math.unit(4 + 6 / 12, "feet"),
  24828. weight: math.unit(80, "lb"),
  24829. name: "Front",
  24830. image: {
  24831. source: "./media/characters/pixie/front.svg",
  24832. extra: 1924 / 1825,
  24833. bottom: 22.4 / 1946
  24834. }
  24835. },
  24836. },
  24837. [
  24838. {
  24839. name: "Normal",
  24840. height: math.unit(4 + 6 / 12, "feet"),
  24841. default: true
  24842. },
  24843. {
  24844. name: "Macro",
  24845. height: math.unit(40, "feet")
  24846. },
  24847. ]
  24848. ))
  24849. characterMakers.push(() => makeCharacter(
  24850. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24851. {
  24852. front: {
  24853. height: math.unit(2.1, "meters"),
  24854. weight: math.unit(200, "lb"),
  24855. name: "Front",
  24856. image: {
  24857. source: "./media/characters/the-lascivious/front.svg",
  24858. extra: 1 / 0.893,
  24859. bottom: 3.5 / 573.7
  24860. }
  24861. },
  24862. },
  24863. [
  24864. {
  24865. name: "Human Scale",
  24866. height: math.unit(2.1, "meters")
  24867. },
  24868. {
  24869. name: "Wolxi Scale",
  24870. height: math.unit(46.2, "m"),
  24871. default: true
  24872. },
  24873. {
  24874. name: "Boinker of Buildings",
  24875. height: math.unit(10, "km")
  24876. },
  24877. {
  24878. name: "Shagger of Skyscrapers",
  24879. height: math.unit(40, "km")
  24880. },
  24881. {
  24882. name: "Banger of Boroughs",
  24883. height: math.unit(4000, "km")
  24884. },
  24885. {
  24886. name: "Screwer of States",
  24887. height: math.unit(100000, "km")
  24888. },
  24889. {
  24890. name: "Pounder of Planets",
  24891. height: math.unit(2000000, "km")
  24892. },
  24893. ]
  24894. ))
  24895. characterMakers.push(() => makeCharacter(
  24896. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24897. {
  24898. front: {
  24899. height: math.unit(6, "feet"),
  24900. weight: math.unit(150, "lb"),
  24901. name: "Front",
  24902. image: {
  24903. source: "./media/characters/aj/front.svg",
  24904. extra: 2039 / 1562,
  24905. bottom: 40 / 2079
  24906. }
  24907. },
  24908. },
  24909. [
  24910. {
  24911. name: "Normal",
  24912. height: math.unit(11 + 6 / 12, "feet"),
  24913. default: true
  24914. },
  24915. {
  24916. name: "Megamacro",
  24917. height: math.unit(60, "megameters")
  24918. },
  24919. ]
  24920. ))
  24921. characterMakers.push(() => makeCharacter(
  24922. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24923. {
  24924. side: {
  24925. height: math.unit(31 + 8 / 12, "feet"),
  24926. weight: math.unit(75000, "kg"),
  24927. name: "Side",
  24928. image: {
  24929. source: "./media/characters/koros/side.svg",
  24930. extra: 1442 / 1297,
  24931. bottom: 122.7 / 1562
  24932. }
  24933. },
  24934. dicksKingsCrown: {
  24935. height: math.unit(6, "feet"),
  24936. name: "Dicks (King's Crown)",
  24937. image: {
  24938. source: "./media/characters/koros/dicks-kings-crown.svg"
  24939. }
  24940. },
  24941. dicksTailSet: {
  24942. height: math.unit(3, "feet"),
  24943. name: "Dicks (Tail Set)",
  24944. image: {
  24945. source: "./media/characters/koros/dicks-tail-set.svg"
  24946. }
  24947. },
  24948. dickCumming: {
  24949. height: math.unit(7.98, "feet"),
  24950. name: "Dick (Cumming)",
  24951. image: {
  24952. source: "./media/characters/koros/dick-cumming.svg"
  24953. }
  24954. },
  24955. dicksBack: {
  24956. height: math.unit(5.9, "feet"),
  24957. name: "Dicks (Back)",
  24958. image: {
  24959. source: "./media/characters/koros/dicks-back.svg"
  24960. }
  24961. },
  24962. dicksFront: {
  24963. height: math.unit(3.72, "feet"),
  24964. name: "Dicks (Front)",
  24965. image: {
  24966. source: "./media/characters/koros/dicks-front.svg"
  24967. }
  24968. },
  24969. dicksPeeking: {
  24970. height: math.unit(3.0, "feet"),
  24971. name: "Dicks (Peeking)",
  24972. image: {
  24973. source: "./media/characters/koros/dicks-peeking.svg"
  24974. }
  24975. },
  24976. eye: {
  24977. height: math.unit(1.7, "feet"),
  24978. name: "Eye",
  24979. image: {
  24980. source: "./media/characters/koros/eye.svg"
  24981. }
  24982. },
  24983. headFront: {
  24984. height: math.unit(11.69, "feet"),
  24985. name: "Head (Front)",
  24986. image: {
  24987. source: "./media/characters/koros/head-front.svg"
  24988. }
  24989. },
  24990. headSide: {
  24991. height: math.unit(14, "feet"),
  24992. name: "Head (Side)",
  24993. image: {
  24994. source: "./media/characters/koros/head-side.svg"
  24995. }
  24996. },
  24997. leg: {
  24998. height: math.unit(17, "feet"),
  24999. name: "Leg",
  25000. image: {
  25001. source: "./media/characters/koros/leg.svg"
  25002. }
  25003. },
  25004. mawSide: {
  25005. height: math.unit(12.8, "feet"),
  25006. name: "Maw (Side)",
  25007. image: {
  25008. source: "./media/characters/koros/maw-side.svg"
  25009. }
  25010. },
  25011. mawSpitting: {
  25012. height: math.unit(17, "feet"),
  25013. name: "Maw (Spitting)",
  25014. image: {
  25015. source: "./media/characters/koros/maw-spitting.svg"
  25016. }
  25017. },
  25018. slit: {
  25019. height: math.unit(2.8, "feet"),
  25020. name: "Slit",
  25021. image: {
  25022. source: "./media/characters/koros/slit.svg"
  25023. }
  25024. },
  25025. stomach: {
  25026. height: math.unit(6.8, "feet"),
  25027. capacity: math.unit(20, "people"),
  25028. name: "Stomach",
  25029. image: {
  25030. source: "./media/characters/koros/stomach.svg"
  25031. }
  25032. },
  25033. wingspanBottom: {
  25034. height: math.unit(114, "feet"),
  25035. name: "Wingspan (Bottom)",
  25036. image: {
  25037. source: "./media/characters/koros/wingspan-bottom.svg"
  25038. }
  25039. },
  25040. wingspanTop: {
  25041. height: math.unit(104, "feet"),
  25042. name: "Wingspan (Top)",
  25043. image: {
  25044. source: "./media/characters/koros/wingspan-top.svg"
  25045. }
  25046. },
  25047. },
  25048. [
  25049. {
  25050. name: "Normal",
  25051. height: math.unit(31 + 8 / 12, "feet"),
  25052. default: true
  25053. },
  25054. ]
  25055. ))
  25056. characterMakers.push(() => makeCharacter(
  25057. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25058. {
  25059. front: {
  25060. height: math.unit(18 + 5 / 12, "feet"),
  25061. weight: math.unit(3750, "kg"),
  25062. name: "Front",
  25063. image: {
  25064. source: "./media/characters/vexx/front.svg",
  25065. extra: 426 / 396,
  25066. bottom: 31.5 / 458
  25067. }
  25068. },
  25069. maw: {
  25070. height: math.unit(6, "feet"),
  25071. name: "Maw",
  25072. image: {
  25073. source: "./media/characters/vexx/maw.svg"
  25074. }
  25075. },
  25076. },
  25077. [
  25078. {
  25079. name: "Normal",
  25080. height: math.unit(18 + 5 / 12, "feet"),
  25081. default: true
  25082. },
  25083. ]
  25084. ))
  25085. characterMakers.push(() => makeCharacter(
  25086. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25087. {
  25088. front: {
  25089. height: math.unit(17 + 6 / 12, "feet"),
  25090. weight: math.unit(150, "lb"),
  25091. name: "Front",
  25092. image: {
  25093. source: "./media/characters/baadra/front.svg",
  25094. extra: 3137 / 2890,
  25095. bottom: 168.4 / 3305
  25096. }
  25097. },
  25098. back: {
  25099. height: math.unit(17 + 6 / 12, "feet"),
  25100. weight: math.unit(150, "lb"),
  25101. name: "Back",
  25102. image: {
  25103. source: "./media/characters/baadra/back.svg",
  25104. extra: 3142 / 2890,
  25105. bottom: 220 / 3371
  25106. }
  25107. },
  25108. head: {
  25109. height: math.unit(5.45, "feet"),
  25110. name: "Head",
  25111. image: {
  25112. source: "./media/characters/baadra/head.svg"
  25113. }
  25114. },
  25115. headAngry: {
  25116. height: math.unit(4.95, "feet"),
  25117. name: "Head (Angry)",
  25118. image: {
  25119. source: "./media/characters/baadra/head-angry.svg"
  25120. }
  25121. },
  25122. headOpen: {
  25123. height: math.unit(6, "feet"),
  25124. name: "Head (Open)",
  25125. image: {
  25126. source: "./media/characters/baadra/head-open.svg"
  25127. }
  25128. },
  25129. },
  25130. [
  25131. {
  25132. name: "Normal",
  25133. height: math.unit(17 + 6 / 12, "feet"),
  25134. default: true
  25135. },
  25136. ]
  25137. ))
  25138. characterMakers.push(() => makeCharacter(
  25139. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25140. {
  25141. front: {
  25142. height: math.unit(7 + 3 / 12, "feet"),
  25143. weight: math.unit(180, "lb"),
  25144. name: "Front",
  25145. image: {
  25146. source: "./media/characters/juri/front.svg",
  25147. extra: 1401 / 1237,
  25148. bottom: 18.5 / 1418
  25149. }
  25150. },
  25151. side: {
  25152. height: math.unit(7 + 3 / 12, "feet"),
  25153. weight: math.unit(180, "lb"),
  25154. name: "Side",
  25155. image: {
  25156. source: "./media/characters/juri/side.svg",
  25157. extra: 1424 / 1242,
  25158. bottom: 18.5 / 1447
  25159. }
  25160. },
  25161. sitting: {
  25162. height: math.unit(6, "feet"),
  25163. weight: math.unit(180, "lb"),
  25164. name: "Sitting",
  25165. image: {
  25166. source: "./media/characters/juri/sitting.svg",
  25167. extra: 1270 / 1143,
  25168. bottom: 100 / 1343
  25169. }
  25170. },
  25171. back: {
  25172. height: math.unit(7 + 3 / 12, "feet"),
  25173. weight: math.unit(180, "lb"),
  25174. name: "Back",
  25175. image: {
  25176. source: "./media/characters/juri/back.svg",
  25177. extra: 1377 / 1240,
  25178. bottom: 23.7 / 1405
  25179. }
  25180. },
  25181. maw: {
  25182. height: math.unit(2.8, "feet"),
  25183. name: "Maw",
  25184. image: {
  25185. source: "./media/characters/juri/maw.svg"
  25186. }
  25187. },
  25188. stomach: {
  25189. height: math.unit(0.89, "feet"),
  25190. capacity: math.unit(4, "liters"),
  25191. name: "Stomach",
  25192. image: {
  25193. source: "./media/characters/juri/stomach.svg"
  25194. }
  25195. },
  25196. },
  25197. [
  25198. {
  25199. name: "Normal",
  25200. height: math.unit(7 + 3 / 12, "feet"),
  25201. default: true
  25202. },
  25203. ]
  25204. ))
  25205. characterMakers.push(() => makeCharacter(
  25206. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25207. {
  25208. fox: {
  25209. height: math.unit(5 + 6 / 12, "feet"),
  25210. weight: math.unit(140, "lb"),
  25211. name: "Fox",
  25212. image: {
  25213. source: "./media/characters/maxene-sita/fox.svg",
  25214. extra: 146 / 138,
  25215. bottom: 2.1 / 148.19
  25216. }
  25217. },
  25218. foxLaying: {
  25219. height: math.unit(1.70, "feet"),
  25220. weight: math.unit(140, "lb"),
  25221. name: "Fox (Laying)",
  25222. image: {
  25223. source: "./media/characters/maxene-sita/fox-laying.svg",
  25224. extra: 910 / 572,
  25225. bottom: 71 / 981
  25226. }
  25227. },
  25228. kitsune: {
  25229. height: math.unit(10, "feet"),
  25230. weight: math.unit(800, "lb"),
  25231. name: "Kitsune",
  25232. image: {
  25233. source: "./media/characters/maxene-sita/kitsune.svg",
  25234. extra: 185 / 176,
  25235. bottom: 4.7 / 189.9
  25236. }
  25237. },
  25238. hellhound: {
  25239. height: math.unit(10, "feet"),
  25240. weight: math.unit(700, "lb"),
  25241. name: "Hellhound",
  25242. image: {
  25243. source: "./media/characters/maxene-sita/hellhound.svg",
  25244. extra: 1600 / 1545,
  25245. bottom: 81 / 1681
  25246. }
  25247. },
  25248. },
  25249. [
  25250. {
  25251. name: "Normal",
  25252. height: math.unit(5 + 6 / 12, "feet"),
  25253. default: true
  25254. },
  25255. ]
  25256. ))
  25257. characterMakers.push(() => makeCharacter(
  25258. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25259. {
  25260. front: {
  25261. height: math.unit(3 + 4 / 12, "feet"),
  25262. weight: math.unit(70, "lb"),
  25263. name: "Front",
  25264. image: {
  25265. source: "./media/characters/maia/front.svg",
  25266. extra: 227 / 219.5,
  25267. bottom: 40 / 267
  25268. }
  25269. },
  25270. back: {
  25271. height: math.unit(3 + 4 / 12, "feet"),
  25272. weight: math.unit(70, "lb"),
  25273. name: "Back",
  25274. image: {
  25275. source: "./media/characters/maia/back.svg",
  25276. extra: 237 / 225
  25277. }
  25278. },
  25279. },
  25280. [
  25281. {
  25282. name: "Normal",
  25283. height: math.unit(3 + 4 / 12, "feet"),
  25284. default: true
  25285. },
  25286. ]
  25287. ))
  25288. characterMakers.push(() => makeCharacter(
  25289. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25290. {
  25291. front: {
  25292. height: math.unit(5 + 10 / 12, "feet"),
  25293. weight: math.unit(197, "lb"),
  25294. name: "Front",
  25295. image: {
  25296. source: "./media/characters/jabaro/front.svg",
  25297. extra: 225 / 216,
  25298. bottom: 5.06 / 230
  25299. }
  25300. },
  25301. back: {
  25302. height: math.unit(5 + 10 / 12, "feet"),
  25303. weight: math.unit(197, "lb"),
  25304. name: "Back",
  25305. image: {
  25306. source: "./media/characters/jabaro/back.svg",
  25307. extra: 225 / 219,
  25308. bottom: 1.9 / 227
  25309. }
  25310. },
  25311. },
  25312. [
  25313. {
  25314. name: "Normal",
  25315. height: math.unit(5 + 10 / 12, "feet"),
  25316. default: true
  25317. },
  25318. ]
  25319. ))
  25320. characterMakers.push(() => makeCharacter(
  25321. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25322. {
  25323. front: {
  25324. height: math.unit(5 + 8 / 12, "feet"),
  25325. weight: math.unit(139, "lb"),
  25326. name: "Front",
  25327. image: {
  25328. source: "./media/characters/risa/front.svg",
  25329. extra: 270 / 260,
  25330. bottom: 11.2 / 282
  25331. }
  25332. },
  25333. back: {
  25334. height: math.unit(5 + 8 / 12, "feet"),
  25335. weight: math.unit(139, "lb"),
  25336. name: "Back",
  25337. image: {
  25338. source: "./media/characters/risa/back.svg",
  25339. extra: 264 / 255,
  25340. bottom: 4 / 268
  25341. }
  25342. },
  25343. },
  25344. [
  25345. {
  25346. name: "Normal",
  25347. height: math.unit(5 + 8 / 12, "feet"),
  25348. default: true
  25349. },
  25350. ]
  25351. ))
  25352. characterMakers.push(() => makeCharacter(
  25353. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25354. {
  25355. front: {
  25356. height: math.unit(2 + 11 / 12, "feet"),
  25357. weight: math.unit(30, "lb"),
  25358. name: "Front",
  25359. image: {
  25360. source: "./media/characters/weatley/front.svg",
  25361. bottom: 10.7 / 414,
  25362. extra: 403.5 / 362
  25363. }
  25364. },
  25365. back: {
  25366. height: math.unit(2 + 11 / 12, "feet"),
  25367. weight: math.unit(30, "lb"),
  25368. name: "Back",
  25369. image: {
  25370. source: "./media/characters/weatley/back.svg",
  25371. bottom: 10.7 / 414,
  25372. extra: 403.5 / 362
  25373. }
  25374. },
  25375. },
  25376. [
  25377. {
  25378. name: "Normal",
  25379. height: math.unit(2 + 11 / 12, "feet"),
  25380. default: true
  25381. },
  25382. ]
  25383. ))
  25384. characterMakers.push(() => makeCharacter(
  25385. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25386. {
  25387. front: {
  25388. height: math.unit(5 + 2 / 12, "feet"),
  25389. weight: math.unit(50, "kg"),
  25390. name: "Front",
  25391. image: {
  25392. source: "./media/characters/mercury-crescent/front.svg",
  25393. extra: 1088 / 1033,
  25394. bottom: 18.9 / 1109
  25395. }
  25396. },
  25397. },
  25398. [
  25399. {
  25400. name: "Normal",
  25401. height: math.unit(5 + 2 / 12, "feet"),
  25402. default: true
  25403. },
  25404. ]
  25405. ))
  25406. characterMakers.push(() => makeCharacter(
  25407. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25408. {
  25409. front: {
  25410. height: math.unit(2, "feet"),
  25411. weight: math.unit(15, "kg"),
  25412. name: "Front",
  25413. image: {
  25414. source: "./media/characters/diamond-jones/front.svg",
  25415. bottom: 16 / 568
  25416. }
  25417. },
  25418. },
  25419. [
  25420. {
  25421. name: "Normal",
  25422. height: math.unit(2, "feet"),
  25423. default: true
  25424. },
  25425. ]
  25426. ))
  25427. characterMakers.push(() => makeCharacter(
  25428. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25429. {
  25430. front: {
  25431. height: math.unit(3, "feet"),
  25432. weight: math.unit(30, "kg"),
  25433. name: "Front",
  25434. image: {
  25435. source: "./media/characters/sweet-bit/front.svg",
  25436. extra: 675 / 567,
  25437. bottom: 27.7 / 703
  25438. }
  25439. },
  25440. },
  25441. [
  25442. {
  25443. name: "Normal",
  25444. height: math.unit(3, "feet"),
  25445. default: true
  25446. },
  25447. ]
  25448. ))
  25449. characterMakers.push(() => makeCharacter(
  25450. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25451. {
  25452. side: {
  25453. height: math.unit(9.178, "feet"),
  25454. weight: math.unit(500, "lb"),
  25455. name: "Side",
  25456. image: {
  25457. source: "./media/characters/umbrazen/side.svg",
  25458. extra: 1730 / 1473,
  25459. bottom: 34.6 / 1765
  25460. }
  25461. },
  25462. },
  25463. [
  25464. {
  25465. name: "Normal",
  25466. height: math.unit(9.178, "feet"),
  25467. default: true
  25468. },
  25469. ]
  25470. ))
  25471. characterMakers.push(() => makeCharacter(
  25472. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25473. {
  25474. front: {
  25475. height: math.unit(10, "feet"),
  25476. weight: math.unit(750, "lb"),
  25477. name: "Front",
  25478. image: {
  25479. source: "./media/characters/arlist/front.svg",
  25480. extra: 961 / 778,
  25481. bottom: 6.2 / 986
  25482. }
  25483. },
  25484. },
  25485. [
  25486. {
  25487. name: "Normal",
  25488. height: math.unit(10, "feet"),
  25489. default: true
  25490. },
  25491. ]
  25492. ))
  25493. characterMakers.push(() => makeCharacter(
  25494. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25495. {
  25496. front: {
  25497. height: math.unit(5 + 1 / 12, "feet"),
  25498. weight: math.unit(110, "lb"),
  25499. name: "Front",
  25500. image: {
  25501. source: "./media/characters/aradel/front.svg",
  25502. extra: 324 / 303,
  25503. bottom: 3.6 / 329.4
  25504. }
  25505. },
  25506. },
  25507. [
  25508. {
  25509. name: "Normal",
  25510. height: math.unit(5 + 1 / 12, "feet"),
  25511. default: true
  25512. },
  25513. ]
  25514. ))
  25515. characterMakers.push(() => makeCharacter(
  25516. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25517. {
  25518. front: {
  25519. height: math.unit(3 + 8 / 12, "feet"),
  25520. weight: math.unit(50, "lb"),
  25521. name: "Front",
  25522. image: {
  25523. source: "./media/characters/serryn/front.svg",
  25524. extra: 1792 / 1656,
  25525. bottom: 43.5 / 1840
  25526. }
  25527. },
  25528. },
  25529. [
  25530. {
  25531. name: "Normal",
  25532. height: math.unit(3 + 8 / 12, "feet"),
  25533. default: true
  25534. },
  25535. ]
  25536. ))
  25537. characterMakers.push(() => makeCharacter(
  25538. { name: "Xavier Thyme" },
  25539. {
  25540. front: {
  25541. height: math.unit(7 + 10 / 12, "feet"),
  25542. weight: math.unit(255, "lb"),
  25543. name: "Front",
  25544. image: {
  25545. source: "./media/characters/xavier-thyme/front.svg",
  25546. extra: 3733 / 3642,
  25547. bottom: 131 / 3869
  25548. }
  25549. },
  25550. frontRaven: {
  25551. height: math.unit(7 + 10 / 12, "feet"),
  25552. weight: math.unit(255, "lb"),
  25553. name: "Front (Raven)",
  25554. image: {
  25555. source: "./media/characters/xavier-thyme/front-raven.svg",
  25556. extra: 4385 / 3642,
  25557. bottom: 131 / 4517
  25558. }
  25559. },
  25560. },
  25561. [
  25562. {
  25563. name: "Normal",
  25564. height: math.unit(7 + 10 / 12, "feet"),
  25565. default: true
  25566. },
  25567. ]
  25568. ))
  25569. characterMakers.push(() => makeCharacter(
  25570. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25571. {
  25572. front: {
  25573. height: math.unit(1.6, "m"),
  25574. weight: math.unit(50, "kg"),
  25575. name: "Front",
  25576. image: {
  25577. source: "./media/characters/kiki/front.svg",
  25578. extra: 4682 / 3610,
  25579. bottom: 115 / 4777
  25580. }
  25581. },
  25582. },
  25583. [
  25584. {
  25585. name: "Normal",
  25586. height: math.unit(1.6, "meters"),
  25587. default: true
  25588. },
  25589. ]
  25590. ))
  25591. characterMakers.push(() => makeCharacter(
  25592. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25593. {
  25594. front: {
  25595. height: math.unit(50, "m"),
  25596. weight: math.unit(500, "tonnes"),
  25597. name: "Front",
  25598. image: {
  25599. source: "./media/characters/ryoko/front.svg",
  25600. extra: 4632 / 3926,
  25601. bottom: 193 / 4823
  25602. }
  25603. },
  25604. },
  25605. [
  25606. {
  25607. name: "Normal",
  25608. height: math.unit(50, "meters"),
  25609. default: true
  25610. },
  25611. ]
  25612. ))
  25613. characterMakers.push(() => makeCharacter(
  25614. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25615. {
  25616. front: {
  25617. height: math.unit(30, "m"),
  25618. weight: math.unit(22, "tonnes"),
  25619. name: "Front",
  25620. image: {
  25621. source: "./media/characters/elio/front.svg",
  25622. extra: 4582 / 3720,
  25623. bottom: 236 / 4828
  25624. }
  25625. },
  25626. },
  25627. [
  25628. {
  25629. name: "Normal",
  25630. height: math.unit(30, "meters"),
  25631. default: true
  25632. },
  25633. ]
  25634. ))
  25635. characterMakers.push(() => makeCharacter(
  25636. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25637. {
  25638. front: {
  25639. height: math.unit(6 + 3 / 12, "feet"),
  25640. weight: math.unit(120, "lb"),
  25641. name: "Front",
  25642. image: {
  25643. source: "./media/characters/azura/front.svg",
  25644. extra: 1149 / 1135,
  25645. bottom: 45 / 1194
  25646. }
  25647. },
  25648. frontClothed: {
  25649. height: math.unit(6 + 3 / 12, "feet"),
  25650. weight: math.unit(120, "lb"),
  25651. name: "Front (Clothed)",
  25652. image: {
  25653. source: "./media/characters/azura/front-clothed.svg",
  25654. extra: 1149 / 1135,
  25655. bottom: 45 / 1194
  25656. }
  25657. },
  25658. },
  25659. [
  25660. {
  25661. name: "Normal",
  25662. height: math.unit(6 + 3 / 12, "feet"),
  25663. default: true
  25664. },
  25665. {
  25666. name: "Macro",
  25667. height: math.unit(20 + 6 / 12, "feet")
  25668. },
  25669. {
  25670. name: "Megamacro",
  25671. height: math.unit(12, "miles")
  25672. },
  25673. {
  25674. name: "Gigamacro",
  25675. height: math.unit(10000, "miles")
  25676. },
  25677. {
  25678. name: "Teramacro",
  25679. height: math.unit(900000, "miles")
  25680. },
  25681. ]
  25682. ))
  25683. characterMakers.push(() => makeCharacter(
  25684. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25685. {
  25686. front: {
  25687. height: math.unit(12, "feet"),
  25688. weight: math.unit(1, "ton"),
  25689. capacity: math.unit(660000, "gallons"),
  25690. name: "Front",
  25691. image: {
  25692. source: "./media/characters/zeus/front.svg",
  25693. extra: 5005 / 4717,
  25694. bottom: 363 / 5388
  25695. }
  25696. },
  25697. },
  25698. [
  25699. {
  25700. name: "Normal",
  25701. height: math.unit(12, "feet")
  25702. },
  25703. {
  25704. name: "Preferred Size",
  25705. height: math.unit(0.5, "miles"),
  25706. default: true
  25707. },
  25708. {
  25709. name: "Giga Horse",
  25710. height: math.unit(300, "miles")
  25711. },
  25712. {
  25713. name: "Riding Planets",
  25714. height: math.unit(30, "megameters")
  25715. },
  25716. {
  25717. name: "Cosmic Giant",
  25718. height: math.unit(3, "zettameters")
  25719. },
  25720. {
  25721. name: "Breeding God",
  25722. height: math.unit(9.92e22, "yottameters")
  25723. },
  25724. ]
  25725. ))
  25726. characterMakers.push(() => makeCharacter(
  25727. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25728. {
  25729. side: {
  25730. height: math.unit(9, "feet"),
  25731. weight: math.unit(1500, "kg"),
  25732. name: "Side",
  25733. image: {
  25734. source: "./media/characters/fang/side.svg",
  25735. extra: 924 / 866,
  25736. bottom: 47.5 / 972.3
  25737. }
  25738. },
  25739. },
  25740. [
  25741. {
  25742. name: "Normal",
  25743. height: math.unit(9, "feet"),
  25744. default: true
  25745. },
  25746. {
  25747. name: "Macro",
  25748. height: math.unit(75 + 6 / 12, "feet")
  25749. },
  25750. {
  25751. name: "Teramacro",
  25752. height: math.unit(50000, "miles")
  25753. },
  25754. ]
  25755. ))
  25756. characterMakers.push(() => makeCharacter(
  25757. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25758. {
  25759. front: {
  25760. height: math.unit(10, "feet"),
  25761. weight: math.unit(2, "tons"),
  25762. name: "Front",
  25763. image: {
  25764. source: "./media/characters/rekhit/front.svg",
  25765. extra: 2796 / 2590,
  25766. bottom: 225 / 3022
  25767. }
  25768. },
  25769. },
  25770. [
  25771. {
  25772. name: "Normal",
  25773. height: math.unit(10, "feet"),
  25774. default: true
  25775. },
  25776. {
  25777. name: "Macro",
  25778. height: math.unit(500, "feet")
  25779. },
  25780. ]
  25781. ))
  25782. characterMakers.push(() => makeCharacter(
  25783. { name: "Dahlia Verrick" },
  25784. {
  25785. front: {
  25786. height: math.unit(7 + 6.451 / 12, "feet"),
  25787. weight: math.unit(310, "lb"),
  25788. name: "Front",
  25789. image: {
  25790. source: "./media/characters/dahlia-verrick/front.svg",
  25791. extra: 1488 / 1365,
  25792. bottom: 6.2 / 1495
  25793. }
  25794. },
  25795. back: {
  25796. height: math.unit(7 + 6.451 / 12, "feet"),
  25797. weight: math.unit(310, "lb"),
  25798. name: "Back",
  25799. image: {
  25800. source: "./media/characters/dahlia-verrick/back.svg",
  25801. extra: 1472 / 1351,
  25802. bottom: 5.28 / 1477
  25803. }
  25804. },
  25805. frontBusiness: {
  25806. height: math.unit(7 + 6.451 / 12, "feet"),
  25807. weight: math.unit(200, "lb"),
  25808. name: "Front (Business)",
  25809. image: {
  25810. source: "./media/characters/dahlia-verrick/front-business.svg",
  25811. extra: 1478 / 1381,
  25812. bottom: 5.5 / 1484
  25813. }
  25814. },
  25815. frontCasual: {
  25816. height: math.unit(7 + 6.451 / 12, "feet"),
  25817. weight: math.unit(200, "lb"),
  25818. name: "Front (Casual)",
  25819. image: {
  25820. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25821. extra: 1478 / 1381,
  25822. bottom: 5.5 / 1484
  25823. }
  25824. },
  25825. },
  25826. [
  25827. {
  25828. name: "Travel-Sized",
  25829. height: math.unit(7.45, "inches")
  25830. },
  25831. {
  25832. name: "Normal",
  25833. height: math.unit(7 + 6.451 / 12, "feet"),
  25834. default: true
  25835. },
  25836. {
  25837. name: "Hitting the Town",
  25838. height: math.unit(37 + 8 / 12, "feet")
  25839. },
  25840. {
  25841. name: "Stomp in the Suburbs",
  25842. height: math.unit(964 + 9.728 / 12, "feet")
  25843. },
  25844. {
  25845. name: "Sit on the City",
  25846. height: math.unit(61747 + 10.592 / 12, "feet")
  25847. },
  25848. {
  25849. name: "Glomp the Globe",
  25850. height: math.unit(252919327 + 4.832 / 12, "feet")
  25851. },
  25852. ]
  25853. ))
  25854. characterMakers.push(() => makeCharacter(
  25855. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25856. {
  25857. front: {
  25858. height: math.unit(6 + 4 / 12, "feet"),
  25859. weight: math.unit(320, "lb"),
  25860. name: "Front",
  25861. image: {
  25862. source: "./media/characters/balina-mahigan/front.svg",
  25863. extra: 447 / 428,
  25864. bottom: 18 / 466
  25865. }
  25866. },
  25867. back: {
  25868. height: math.unit(6 + 4 / 12, "feet"),
  25869. weight: math.unit(320, "lb"),
  25870. name: "Back",
  25871. image: {
  25872. source: "./media/characters/balina-mahigan/back.svg",
  25873. extra: 445 / 428,
  25874. bottom: 4.07 / 448
  25875. }
  25876. },
  25877. arm: {
  25878. height: math.unit(1.88, "feet"),
  25879. name: "Arm",
  25880. image: {
  25881. source: "./media/characters/balina-mahigan/arm.svg"
  25882. }
  25883. },
  25884. backPort: {
  25885. height: math.unit(0.685, "feet"),
  25886. name: "Back Port",
  25887. image: {
  25888. source: "./media/characters/balina-mahigan/back-port.svg"
  25889. }
  25890. },
  25891. hoofpaw: {
  25892. height: math.unit(1.41, "feet"),
  25893. name: "Hoofpaw",
  25894. image: {
  25895. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25896. }
  25897. },
  25898. leftHandBack: {
  25899. height: math.unit(0.938, "feet"),
  25900. name: "Left Hand (Back)",
  25901. image: {
  25902. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25903. }
  25904. },
  25905. leftHandFront: {
  25906. height: math.unit(0.938, "feet"),
  25907. name: "Left Hand (Front)",
  25908. image: {
  25909. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25910. }
  25911. },
  25912. rightHandBack: {
  25913. height: math.unit(0.95, "feet"),
  25914. name: "Right Hand (Back)",
  25915. image: {
  25916. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25917. }
  25918. },
  25919. rightHandFront: {
  25920. height: math.unit(0.95, "feet"),
  25921. name: "Right Hand (Front)",
  25922. image: {
  25923. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25924. }
  25925. },
  25926. },
  25927. [
  25928. {
  25929. name: "Normal",
  25930. height: math.unit(6 + 4 / 12, "feet"),
  25931. default: true
  25932. },
  25933. ]
  25934. ))
  25935. characterMakers.push(() => makeCharacter(
  25936. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25937. {
  25938. front: {
  25939. height: math.unit(6, "feet"),
  25940. weight: math.unit(320, "lb"),
  25941. name: "Front",
  25942. image: {
  25943. source: "./media/characters/balina-mejeri/front.svg",
  25944. extra: 517 / 488,
  25945. bottom: 44.2 / 561
  25946. }
  25947. },
  25948. },
  25949. [
  25950. {
  25951. name: "Normal",
  25952. height: math.unit(6 + 4 / 12, "feet")
  25953. },
  25954. {
  25955. name: "Business",
  25956. height: math.unit(155, "feet"),
  25957. default: true
  25958. },
  25959. ]
  25960. ))
  25961. characterMakers.push(() => makeCharacter(
  25962. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25963. {
  25964. kneeling: {
  25965. height: math.unit(6 + 4 / 12, "feet"),
  25966. weight: math.unit(300 * 20, "lb"),
  25967. name: "Kneeling",
  25968. image: {
  25969. source: "./media/characters/balbarian/kneeling.svg",
  25970. extra: 922 / 862,
  25971. bottom: 42.4 / 965
  25972. }
  25973. },
  25974. },
  25975. [
  25976. {
  25977. name: "Normal",
  25978. height: math.unit(6 + 4 / 12, "feet")
  25979. },
  25980. {
  25981. name: "Treasured",
  25982. height: math.unit(18 + 9 / 12, "feet"),
  25983. default: true
  25984. },
  25985. {
  25986. name: "Macro",
  25987. height: math.unit(900, "feet")
  25988. },
  25989. ]
  25990. ))
  25991. characterMakers.push(() => makeCharacter(
  25992. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25993. {
  25994. front: {
  25995. height: math.unit(6 + 4 / 12, "feet"),
  25996. weight: math.unit(325, "lb"),
  25997. name: "Front",
  25998. image: {
  25999. source: "./media/characters/balina-amarini/front.svg",
  26000. extra: 415 / 403,
  26001. bottom: 19 / 433.4
  26002. }
  26003. },
  26004. back: {
  26005. height: math.unit(6 + 4 / 12, "feet"),
  26006. weight: math.unit(325, "lb"),
  26007. name: "Back",
  26008. image: {
  26009. source: "./media/characters/balina-amarini/back.svg",
  26010. extra: 415 / 403,
  26011. bottom: 13.5 / 432
  26012. }
  26013. },
  26014. overdrive: {
  26015. height: math.unit(6 + 4 / 12, "feet"),
  26016. weight: math.unit(400, "lb"),
  26017. name: "Overdrive",
  26018. image: {
  26019. source: "./media/characters/balina-amarini/overdrive.svg",
  26020. extra: 269 / 259,
  26021. bottom: 12 / 282
  26022. }
  26023. },
  26024. },
  26025. [
  26026. {
  26027. name: "Boom",
  26028. height: math.unit(9 + 10 / 12, "feet"),
  26029. default: true
  26030. },
  26031. {
  26032. name: "Macro",
  26033. height: math.unit(280, "feet")
  26034. },
  26035. ]
  26036. ))
  26037. characterMakers.push(() => makeCharacter(
  26038. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26039. {
  26040. goddess: {
  26041. height: math.unit(600, "feet"),
  26042. weight: math.unit(2000000, "tons"),
  26043. name: "Goddess",
  26044. image: {
  26045. source: "./media/characters/lady-kubwa/goddess.svg",
  26046. extra: 1240.5 / 1223,
  26047. bottom: 22 / 1263
  26048. }
  26049. },
  26050. goddesser: {
  26051. height: math.unit(900, "feet"),
  26052. weight: math.unit(20000000, "lb"),
  26053. name: "Goddess-er",
  26054. image: {
  26055. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26056. extra: 899 / 888,
  26057. bottom: 12.6 / 912
  26058. }
  26059. },
  26060. },
  26061. [
  26062. {
  26063. name: "Macro",
  26064. height: math.unit(600, "feet"),
  26065. default: true
  26066. },
  26067. {
  26068. name: "Megamacro",
  26069. height: math.unit(250, "miles")
  26070. },
  26071. ]
  26072. ))
  26073. characterMakers.push(() => makeCharacter(
  26074. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26075. {
  26076. front: {
  26077. height: math.unit(7 + 7 / 12, "feet"),
  26078. weight: math.unit(250, "lb"),
  26079. name: "Front",
  26080. image: {
  26081. source: "./media/characters/tala-grovehorn/front.svg",
  26082. extra: 2636 / 2525,
  26083. bottom: 147 / 2781
  26084. }
  26085. },
  26086. back: {
  26087. height: math.unit(7 + 7 / 12, "feet"),
  26088. weight: math.unit(250, "lb"),
  26089. name: "Back",
  26090. image: {
  26091. source: "./media/characters/tala-grovehorn/back.svg",
  26092. extra: 2635 / 2539,
  26093. bottom: 100 / 2732.8
  26094. }
  26095. },
  26096. mouth: {
  26097. height: math.unit(1.15, "feet"),
  26098. name: "Mouth",
  26099. image: {
  26100. source: "./media/characters/tala-grovehorn/mouth.svg"
  26101. }
  26102. },
  26103. dick: {
  26104. height: math.unit(2.36, "feet"),
  26105. name: "Dick",
  26106. image: {
  26107. source: "./media/characters/tala-grovehorn/dick.svg"
  26108. }
  26109. },
  26110. slit: {
  26111. height: math.unit(0.61, "feet"),
  26112. name: "Slit",
  26113. image: {
  26114. source: "./media/characters/tala-grovehorn/slit.svg"
  26115. }
  26116. },
  26117. },
  26118. [
  26119. ]
  26120. ))
  26121. characterMakers.push(() => makeCharacter(
  26122. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26123. {
  26124. front: {
  26125. height: math.unit(7 + 7 / 12, "feet"),
  26126. weight: math.unit(225, "lb"),
  26127. name: "Front",
  26128. image: {
  26129. source: "./media/characters/epona/front.svg",
  26130. extra: 2445 / 2290,
  26131. bottom: 251 / 2696
  26132. }
  26133. },
  26134. back: {
  26135. height: math.unit(7 + 7 / 12, "feet"),
  26136. weight: math.unit(225, "lb"),
  26137. name: "Back",
  26138. image: {
  26139. source: "./media/characters/epona/back.svg",
  26140. extra: 2546 / 2408,
  26141. bottom: 44 / 2589
  26142. }
  26143. },
  26144. genitals: {
  26145. height: math.unit(1.5, "feet"),
  26146. name: "Genitals",
  26147. image: {
  26148. source: "./media/characters/epona/genitals.svg"
  26149. }
  26150. },
  26151. },
  26152. [
  26153. {
  26154. name: "Normal",
  26155. height: math.unit(7 + 7 / 12, "feet"),
  26156. default: true
  26157. },
  26158. ]
  26159. ))
  26160. characterMakers.push(() => makeCharacter(
  26161. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26162. {
  26163. front: {
  26164. height: math.unit(7, "feet"),
  26165. weight: math.unit(518, "lb"),
  26166. name: "Front",
  26167. image: {
  26168. source: "./media/characters/avia-bloodbourn/front.svg",
  26169. extra: 1466 / 1350,
  26170. bottom: 65 / 1527
  26171. }
  26172. },
  26173. },
  26174. [
  26175. ]
  26176. ))
  26177. characterMakers.push(() => makeCharacter(
  26178. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26179. {
  26180. front: {
  26181. height: math.unit(9.35, "feet"),
  26182. weight: math.unit(600, "lb"),
  26183. name: "Front",
  26184. image: {
  26185. source: "./media/characters/amera/front.svg",
  26186. extra: 891 / 818,
  26187. bottom: 30 / 922.7
  26188. }
  26189. },
  26190. back: {
  26191. height: math.unit(9.35, "feet"),
  26192. weight: math.unit(600, "lb"),
  26193. name: "Back",
  26194. image: {
  26195. source: "./media/characters/amera/back.svg",
  26196. extra: 876 / 824,
  26197. bottom: 6.8 / 884
  26198. }
  26199. },
  26200. dick: {
  26201. height: math.unit(2.14, "feet"),
  26202. name: "Dick",
  26203. image: {
  26204. source: "./media/characters/amera/dick.svg"
  26205. }
  26206. },
  26207. },
  26208. [
  26209. {
  26210. name: "Normal",
  26211. height: math.unit(9.35, "feet"),
  26212. default: true
  26213. },
  26214. ]
  26215. ))
  26216. characterMakers.push(() => makeCharacter(
  26217. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26218. {
  26219. kneeling: {
  26220. height: math.unit(3 + 4 / 12, "feet"),
  26221. weight: math.unit(90, "lb"),
  26222. name: "Kneeling",
  26223. image: {
  26224. source: "./media/characters/rosewen/kneeling.svg",
  26225. extra: 1835 / 1571,
  26226. bottom: 27.7 / 1862
  26227. }
  26228. },
  26229. },
  26230. [
  26231. {
  26232. name: "Normal",
  26233. height: math.unit(3 + 4 / 12, "feet"),
  26234. default: true
  26235. },
  26236. ]
  26237. ))
  26238. characterMakers.push(() => makeCharacter(
  26239. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26240. {
  26241. front: {
  26242. height: math.unit(5 + 10 / 12, "feet"),
  26243. weight: math.unit(200, "lb"),
  26244. name: "Front",
  26245. image: {
  26246. source: "./media/characters/sabah/front.svg",
  26247. extra: 849 / 763,
  26248. bottom: 33.9 / 881
  26249. }
  26250. },
  26251. },
  26252. [
  26253. {
  26254. name: "Normal",
  26255. height: math.unit(5 + 10 / 12, "feet"),
  26256. default: true
  26257. },
  26258. ]
  26259. ))
  26260. characterMakers.push(() => makeCharacter(
  26261. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26262. {
  26263. front: {
  26264. height: math.unit(3 + 5 / 12, "feet"),
  26265. weight: math.unit(40, "kg"),
  26266. name: "Front",
  26267. image: {
  26268. source: "./media/characters/purple-flame/front.svg",
  26269. extra: 1577 / 1412,
  26270. bottom: 97 / 1694
  26271. }
  26272. },
  26273. frontDressed: {
  26274. height: math.unit(3 + 5 / 12, "feet"),
  26275. weight: math.unit(40, "kg"),
  26276. name: "Front (Dressed)",
  26277. image: {
  26278. source: "./media/characters/purple-flame/front-dressed.svg",
  26279. extra: 1577 / 1412,
  26280. bottom: 97 / 1694
  26281. }
  26282. },
  26283. headphones: {
  26284. height: math.unit(0.85, "feet"),
  26285. name: "Headphones",
  26286. image: {
  26287. source: "./media/characters/purple-flame/headphones.svg"
  26288. }
  26289. },
  26290. },
  26291. [
  26292. {
  26293. name: "Really Small",
  26294. height: math.unit(5, "cm")
  26295. },
  26296. {
  26297. name: "Micro",
  26298. height: math.unit(1 + 5 / 12, "feet")
  26299. },
  26300. {
  26301. name: "Normal",
  26302. height: math.unit(3 + 5 / 12, "feet"),
  26303. default: true
  26304. },
  26305. {
  26306. name: "Minimacro",
  26307. height: math.unit(125, "feet")
  26308. },
  26309. {
  26310. name: "Macro",
  26311. height: math.unit(0.5, "miles")
  26312. },
  26313. {
  26314. name: "Megamacro",
  26315. height: math.unit(50, "miles")
  26316. },
  26317. {
  26318. name: "Gigantic",
  26319. height: math.unit(750, "miles")
  26320. },
  26321. {
  26322. name: "Planetary",
  26323. height: math.unit(15000, "miles")
  26324. },
  26325. ]
  26326. ))
  26327. characterMakers.push(() => makeCharacter(
  26328. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26329. {
  26330. front: {
  26331. height: math.unit(14, "feet"),
  26332. weight: math.unit(959, "lb"),
  26333. name: "Front",
  26334. image: {
  26335. source: "./media/characters/arsenal/front.svg",
  26336. extra: 2357 / 2157,
  26337. bottom: 93 / 2458
  26338. }
  26339. },
  26340. },
  26341. [
  26342. {
  26343. name: "Normal",
  26344. height: math.unit(14, "feet"),
  26345. default: true
  26346. },
  26347. ]
  26348. ))
  26349. characterMakers.push(() => makeCharacter(
  26350. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26351. {
  26352. front: {
  26353. height: math.unit(6, "feet"),
  26354. weight: math.unit(150, "lb"),
  26355. name: "Front",
  26356. image: {
  26357. source: "./media/characters/adira/front.svg",
  26358. extra: 1078 / 1029,
  26359. bottom: 87 / 1166
  26360. }
  26361. },
  26362. },
  26363. [
  26364. {
  26365. name: "Micro",
  26366. height: math.unit(4, "inches"),
  26367. default: true
  26368. },
  26369. {
  26370. name: "Macro",
  26371. height: math.unit(50, "feet")
  26372. },
  26373. ]
  26374. ))
  26375. characterMakers.push(() => makeCharacter(
  26376. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26377. {
  26378. front: {
  26379. height: math.unit(16, "feet"),
  26380. weight: math.unit(1000, "lb"),
  26381. name: "Front",
  26382. image: {
  26383. source: "./media/characters/grim/front.svg",
  26384. extra: 622 / 614,
  26385. bottom: 18.1 / 642
  26386. }
  26387. },
  26388. back: {
  26389. height: math.unit(16, "feet"),
  26390. weight: math.unit(1000, "lb"),
  26391. name: "Back",
  26392. image: {
  26393. source: "./media/characters/grim/back.svg",
  26394. extra: 610.6 / 602,
  26395. bottom: 40.8 / 652
  26396. }
  26397. },
  26398. hunched: {
  26399. height: math.unit(9.75, "feet"),
  26400. weight: math.unit(1000, "lb"),
  26401. name: "Hunched",
  26402. image: {
  26403. source: "./media/characters/grim/hunched.svg",
  26404. extra: 304 / 297,
  26405. bottom: 35.4 / 394
  26406. }
  26407. },
  26408. },
  26409. [
  26410. {
  26411. name: "Normal",
  26412. height: math.unit(16, "feet"),
  26413. default: true
  26414. },
  26415. ]
  26416. ))
  26417. characterMakers.push(() => makeCharacter(
  26418. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26419. {
  26420. front: {
  26421. height: math.unit(2.3, "meters"),
  26422. weight: math.unit(300, "lb"),
  26423. name: "Front",
  26424. image: {
  26425. source: "./media/characters/sinja/front-sfw.svg",
  26426. extra: 1393 / 1294,
  26427. bottom: 70 / 1463
  26428. }
  26429. },
  26430. frontNsfw: {
  26431. height: math.unit(2.3, "meters"),
  26432. weight: math.unit(300, "lb"),
  26433. name: "Front (NSFW)",
  26434. image: {
  26435. source: "./media/characters/sinja/front-nsfw.svg",
  26436. extra: 1393 / 1294,
  26437. bottom: 70 / 1463
  26438. }
  26439. },
  26440. back: {
  26441. height: math.unit(2.3, "meters"),
  26442. weight: math.unit(300, "lb"),
  26443. name: "Back",
  26444. image: {
  26445. source: "./media/characters/sinja/back.svg",
  26446. extra: 1393 / 1294,
  26447. bottom: 70 / 1463
  26448. }
  26449. },
  26450. head: {
  26451. height: math.unit(1.771, "feet"),
  26452. name: "Head",
  26453. image: {
  26454. source: "./media/characters/sinja/head.svg"
  26455. }
  26456. },
  26457. slit: {
  26458. height: math.unit(0.8, "feet"),
  26459. name: "Slit",
  26460. image: {
  26461. source: "./media/characters/sinja/slit.svg"
  26462. }
  26463. },
  26464. },
  26465. [
  26466. {
  26467. name: "Normal",
  26468. height: math.unit(2.3, "meters")
  26469. },
  26470. {
  26471. name: "Macro",
  26472. height: math.unit(91, "meters"),
  26473. default: true
  26474. },
  26475. {
  26476. name: "Megamacro",
  26477. height: math.unit(91440, "meters")
  26478. },
  26479. {
  26480. name: "Gigamacro",
  26481. height: math.unit(60960000, "meters")
  26482. },
  26483. {
  26484. name: "Teramacro",
  26485. height: math.unit(9144000000, "meters")
  26486. },
  26487. ]
  26488. ))
  26489. characterMakers.push(() => makeCharacter(
  26490. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26491. {
  26492. front: {
  26493. height: math.unit(1.7, "meters"),
  26494. weight: math.unit(130, "lb"),
  26495. name: "Front",
  26496. image: {
  26497. source: "./media/characters/kyu/front.svg",
  26498. extra: 415 / 395,
  26499. bottom: 5 / 420
  26500. }
  26501. },
  26502. head: {
  26503. height: math.unit(1.75, "feet"),
  26504. name: "Head",
  26505. image: {
  26506. source: "./media/characters/kyu/head.svg"
  26507. }
  26508. },
  26509. foot: {
  26510. height: math.unit(0.81, "feet"),
  26511. name: "Foot",
  26512. image: {
  26513. source: "./media/characters/kyu/foot.svg"
  26514. }
  26515. },
  26516. },
  26517. [
  26518. {
  26519. name: "Normal",
  26520. height: math.unit(1.7, "meters")
  26521. },
  26522. {
  26523. name: "Macro",
  26524. height: math.unit(131, "feet"),
  26525. default: true
  26526. },
  26527. {
  26528. name: "Megamacro",
  26529. height: math.unit(91440, "meters")
  26530. },
  26531. {
  26532. name: "Gigamacro",
  26533. height: math.unit(60960000, "meters")
  26534. },
  26535. {
  26536. name: "Teramacro",
  26537. height: math.unit(9144000000, "meters")
  26538. },
  26539. ]
  26540. ))
  26541. characterMakers.push(() => makeCharacter(
  26542. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26543. {
  26544. front: {
  26545. height: math.unit(7 + 1 / 12, "feet"),
  26546. weight: math.unit(250, "lb"),
  26547. name: "Front",
  26548. image: {
  26549. source: "./media/characters/joey/front.svg",
  26550. extra: 1791 / 1537,
  26551. bottom: 28 / 1816
  26552. }
  26553. },
  26554. },
  26555. [
  26556. {
  26557. name: "Micro",
  26558. height: math.unit(3, "inches")
  26559. },
  26560. {
  26561. name: "Normal",
  26562. height: math.unit(7 + 1 / 12, "feet"),
  26563. default: true
  26564. },
  26565. ]
  26566. ))
  26567. characterMakers.push(() => makeCharacter(
  26568. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26569. {
  26570. front: {
  26571. height: math.unit(165, "cm"),
  26572. weight: math.unit(140, "lb"),
  26573. name: "Front",
  26574. image: {
  26575. source: "./media/characters/sam-evans/front.svg",
  26576. extra: 3417 / 3230,
  26577. bottom: 41.3 / 3417
  26578. }
  26579. },
  26580. frontSixTails: {
  26581. height: math.unit(165, "cm"),
  26582. weight: math.unit(140, "lb"),
  26583. name: "Front-six-tails",
  26584. image: {
  26585. source: "./media/characters/sam-evans/front-six-tails.svg",
  26586. extra: 3417 / 3230,
  26587. bottom: 41.3 / 3417
  26588. }
  26589. },
  26590. back: {
  26591. height: math.unit(165, "cm"),
  26592. weight: math.unit(140, "lb"),
  26593. name: "Back",
  26594. image: {
  26595. source: "./media/characters/sam-evans/back.svg",
  26596. extra: 3227 / 3032,
  26597. bottom: 6.8 / 3234
  26598. }
  26599. },
  26600. face: {
  26601. height: math.unit(0.68, "feet"),
  26602. name: "Face",
  26603. image: {
  26604. source: "./media/characters/sam-evans/face.svg"
  26605. }
  26606. },
  26607. },
  26608. [
  26609. {
  26610. name: "Normal",
  26611. height: math.unit(165, "cm"),
  26612. default: true
  26613. },
  26614. {
  26615. name: "Macro",
  26616. height: math.unit(100, "meters")
  26617. },
  26618. {
  26619. name: "Macro+",
  26620. height: math.unit(800, "meters")
  26621. },
  26622. {
  26623. name: "Macro++",
  26624. height: math.unit(3, "km")
  26625. },
  26626. {
  26627. name: "Macro+++",
  26628. height: math.unit(30, "km")
  26629. },
  26630. ]
  26631. ))
  26632. characterMakers.push(() => makeCharacter(
  26633. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26634. {
  26635. front: {
  26636. height: math.unit(10, "feet"),
  26637. weight: math.unit(750, "lb"),
  26638. name: "Front",
  26639. image: {
  26640. source: "./media/characters/juliet-a/front.svg",
  26641. extra: 1766 / 1720,
  26642. bottom: 43 / 1809
  26643. }
  26644. },
  26645. back: {
  26646. height: math.unit(10, "feet"),
  26647. weight: math.unit(750, "lb"),
  26648. name: "Back",
  26649. image: {
  26650. source: "./media/characters/juliet-a/back.svg",
  26651. extra: 1781 / 1734,
  26652. bottom: 35 / 1810,
  26653. }
  26654. },
  26655. },
  26656. [
  26657. {
  26658. name: "Normal",
  26659. height: math.unit(10, "feet"),
  26660. default: true
  26661. },
  26662. {
  26663. name: "Dragon Form",
  26664. height: math.unit(250, "feet")
  26665. },
  26666. {
  26667. name: "Macro",
  26668. height: math.unit(1000, "feet")
  26669. },
  26670. {
  26671. name: "Megamacro",
  26672. height: math.unit(10000, "feet")
  26673. }
  26674. ]
  26675. ))
  26676. characterMakers.push(() => makeCharacter(
  26677. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26678. {
  26679. regular: {
  26680. height: math.unit(7 + 3 / 12, "feet"),
  26681. weight: math.unit(260, "lb"),
  26682. name: "Regular",
  26683. image: {
  26684. source: "./media/characters/wild/regular.svg",
  26685. extra: 97.45 / 92,
  26686. bottom: 6.8 / 104.3
  26687. }
  26688. },
  26689. biggums: {
  26690. height: math.unit(8 + 6 / 12, "feet"),
  26691. weight: math.unit(425, "lb"),
  26692. name: "Biggums",
  26693. image: {
  26694. source: "./media/characters/wild/biggums.svg",
  26695. extra: 97.45 / 92,
  26696. bottom: 7.5 / 132.34
  26697. }
  26698. },
  26699. mawRegular: {
  26700. height: math.unit(1.24, "feet"),
  26701. name: "Maw (Regular)",
  26702. image: {
  26703. source: "./media/characters/wild/maw.svg"
  26704. }
  26705. },
  26706. mawBiggums: {
  26707. height: math.unit(1.47, "feet"),
  26708. name: "Maw (Biggums)",
  26709. image: {
  26710. source: "./media/characters/wild/maw.svg"
  26711. }
  26712. },
  26713. },
  26714. [
  26715. {
  26716. name: "Normal",
  26717. height: math.unit(7 + 3 / 12, "feet"),
  26718. default: true
  26719. },
  26720. ]
  26721. ))
  26722. characterMakers.push(() => makeCharacter(
  26723. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26724. {
  26725. front: {
  26726. height: math.unit(2.5, "meters"),
  26727. weight: math.unit(200, "kg"),
  26728. name: "Front",
  26729. image: {
  26730. source: "./media/characters/vidar/front.svg",
  26731. extra: 2994 / 2795,
  26732. bottom: 56 / 3061
  26733. }
  26734. },
  26735. back: {
  26736. height: math.unit(2.5, "meters"),
  26737. weight: math.unit(200, "kg"),
  26738. name: "Back",
  26739. image: {
  26740. source: "./media/characters/vidar/back.svg",
  26741. extra: 3131 / 2928,
  26742. bottom: 13.5 / 3141.5
  26743. }
  26744. },
  26745. feral: {
  26746. height: math.unit(2.5, "meters"),
  26747. weight: math.unit(2000, "kg"),
  26748. name: "Feral",
  26749. image: {
  26750. source: "./media/characters/vidar/feral.svg",
  26751. extra: 2790 / 1765,
  26752. bottom: 6 / 2796
  26753. }
  26754. },
  26755. },
  26756. [
  26757. {
  26758. name: "Normal",
  26759. height: math.unit(2.5, "meters"),
  26760. default: true
  26761. },
  26762. {
  26763. name: "Macro",
  26764. height: math.unit(100, "meters")
  26765. },
  26766. ]
  26767. ))
  26768. characterMakers.push(() => makeCharacter(
  26769. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26770. {
  26771. front: {
  26772. height: math.unit(5 + 9 / 12, "feet"),
  26773. weight: math.unit(120, "lb"),
  26774. name: "Front",
  26775. image: {
  26776. source: "./media/characters/ash/front.svg",
  26777. extra: 2189 / 1961,
  26778. bottom: 5.2 / 2194
  26779. }
  26780. },
  26781. },
  26782. [
  26783. {
  26784. name: "Normal",
  26785. height: math.unit(5 + 9 / 12, "feet"),
  26786. default: true
  26787. },
  26788. ]
  26789. ))
  26790. characterMakers.push(() => makeCharacter(
  26791. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26792. {
  26793. front: {
  26794. height: math.unit(9, "feet"),
  26795. weight: math.unit(10000, "lb"),
  26796. name: "Front",
  26797. image: {
  26798. source: "./media/characters/gygabite/front.svg",
  26799. bottom: 31.7 / 537.8,
  26800. extra: 505 / 370
  26801. }
  26802. },
  26803. },
  26804. [
  26805. {
  26806. name: "Normal",
  26807. height: math.unit(9, "feet"),
  26808. default: true
  26809. },
  26810. ]
  26811. ))
  26812. characterMakers.push(() => makeCharacter(
  26813. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26814. {
  26815. front: {
  26816. height: math.unit(12, "feet"),
  26817. weight: math.unit(35000, "lb"),
  26818. name: "Front",
  26819. image: {
  26820. source: "./media/characters/p0tat0/front.svg",
  26821. extra: 1065 / 921,
  26822. bottom: 55.7 / 1121.25
  26823. }
  26824. },
  26825. },
  26826. [
  26827. {
  26828. name: "Normal",
  26829. height: math.unit(12, "feet"),
  26830. default: true
  26831. },
  26832. ]
  26833. ))
  26834. characterMakers.push(() => makeCharacter(
  26835. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26836. {
  26837. side: {
  26838. height: math.unit(6.5, "feet"),
  26839. weight: math.unit(800, "lb"),
  26840. name: "Side",
  26841. image: {
  26842. source: "./media/characters/dusk/side.svg",
  26843. extra: 615 / 373,
  26844. bottom: 53 / 664
  26845. }
  26846. },
  26847. sitting: {
  26848. height: math.unit(7, "feet"),
  26849. weight: math.unit(800, "lb"),
  26850. name: "Sitting",
  26851. image: {
  26852. source: "./media/characters/dusk/sitting.svg",
  26853. extra: 753 / 425,
  26854. bottom: 33 / 774
  26855. }
  26856. },
  26857. head: {
  26858. height: math.unit(6.1, "feet"),
  26859. name: "Head",
  26860. image: {
  26861. source: "./media/characters/dusk/head.svg"
  26862. }
  26863. },
  26864. },
  26865. [
  26866. {
  26867. name: "Normal",
  26868. height: math.unit(7, "feet"),
  26869. default: true
  26870. },
  26871. ]
  26872. ))
  26873. characterMakers.push(() => makeCharacter(
  26874. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26875. {
  26876. front: {
  26877. height: math.unit(15, "feet"),
  26878. weight: math.unit(7000, "lb"),
  26879. name: "Front",
  26880. image: {
  26881. source: "./media/characters/jay-direwolf/front.svg",
  26882. extra: 1810 / 1732,
  26883. bottom: 66 / 1892
  26884. }
  26885. },
  26886. },
  26887. [
  26888. {
  26889. name: "Normal",
  26890. height: math.unit(15, "feet"),
  26891. default: true
  26892. },
  26893. ]
  26894. ))
  26895. characterMakers.push(() => makeCharacter(
  26896. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26897. {
  26898. front: {
  26899. height: math.unit(4 + 9 / 12, "feet"),
  26900. weight: math.unit(130, "lb"),
  26901. name: "Front",
  26902. image: {
  26903. source: "./media/characters/anchovie/front.svg",
  26904. extra: 382 / 350,
  26905. bottom: 25 / 409
  26906. }
  26907. },
  26908. back: {
  26909. height: math.unit(4 + 9 / 12, "feet"),
  26910. weight: math.unit(130, "lb"),
  26911. name: "Back",
  26912. image: {
  26913. source: "./media/characters/anchovie/back.svg",
  26914. extra: 385 / 352,
  26915. bottom: 16.6 / 402
  26916. }
  26917. },
  26918. frontDressed: {
  26919. height: math.unit(4 + 9 / 12, "feet"),
  26920. weight: math.unit(130, "lb"),
  26921. name: "Front (Dressed)",
  26922. image: {
  26923. source: "./media/characters/anchovie/front-dressed.svg",
  26924. extra: 382 / 350,
  26925. bottom: 25 / 409
  26926. }
  26927. },
  26928. backDressed: {
  26929. height: math.unit(4 + 9 / 12, "feet"),
  26930. weight: math.unit(130, "lb"),
  26931. name: "Back (Dressed)",
  26932. image: {
  26933. source: "./media/characters/anchovie/back-dressed.svg",
  26934. extra: 385 / 352,
  26935. bottom: 16.6 / 402
  26936. }
  26937. },
  26938. },
  26939. [
  26940. {
  26941. name: "Micro",
  26942. height: math.unit(6.4, "inches")
  26943. },
  26944. {
  26945. name: "Normal",
  26946. height: math.unit(4 + 9 / 12, "feet"),
  26947. default: true
  26948. },
  26949. ]
  26950. ))
  26951. characterMakers.push(() => makeCharacter(
  26952. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26953. {
  26954. front: {
  26955. height: math.unit(2, "meters"),
  26956. weight: math.unit(180, "lb"),
  26957. name: "Front",
  26958. image: {
  26959. source: "./media/characters/acidrenamon/front.svg",
  26960. extra: 987 / 890,
  26961. bottom: 22.8 / 1009
  26962. }
  26963. },
  26964. back: {
  26965. height: math.unit(2, "meters"),
  26966. weight: math.unit(180, "lb"),
  26967. name: "Back",
  26968. image: {
  26969. source: "./media/characters/acidrenamon/back.svg",
  26970. extra: 983 / 891,
  26971. bottom: 8.4 / 992
  26972. }
  26973. },
  26974. head: {
  26975. height: math.unit(1.92, "feet"),
  26976. name: "Head",
  26977. image: {
  26978. source: "./media/characters/acidrenamon/head.svg"
  26979. }
  26980. },
  26981. rump: {
  26982. height: math.unit(1.72, "feet"),
  26983. name: "Rump",
  26984. image: {
  26985. source: "./media/characters/acidrenamon/rump.svg"
  26986. }
  26987. },
  26988. tail: {
  26989. height: math.unit(4.2, "feet"),
  26990. name: "Tail",
  26991. image: {
  26992. source: "./media/characters/acidrenamon/tail.svg"
  26993. }
  26994. },
  26995. },
  26996. [
  26997. {
  26998. name: "Normal",
  26999. height: math.unit(2, "meters"),
  27000. default: true
  27001. },
  27002. {
  27003. name: "Minimacro",
  27004. height: math.unit(7, "meters")
  27005. },
  27006. {
  27007. name: "Macro",
  27008. height: math.unit(200, "meters")
  27009. },
  27010. {
  27011. name: "Gigamacro",
  27012. height: math.unit(0.2, "earths")
  27013. },
  27014. ]
  27015. ))
  27016. characterMakers.push(() => makeCharacter(
  27017. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27018. {
  27019. front: {
  27020. height: math.unit(6, "feet"),
  27021. weight: math.unit(150, "lb"),
  27022. name: "Front",
  27023. image: {
  27024. source: "./media/characters/kenzie-lee/front.svg",
  27025. extra: 1525 / 1465,
  27026. bottom: 45 / 1570
  27027. }
  27028. },
  27029. side: {
  27030. height: math.unit(6, "feet"),
  27031. weight: math.unit(150, "lb"),
  27032. name: "Side",
  27033. image: {
  27034. source: "./media/characters/kenzie-lee/side.svg",
  27035. extra: 5505 / 5383,
  27036. bottom: 60 / 5573
  27037. }
  27038. },
  27039. paw: {
  27040. height: math.unit(0.57, "feet"),
  27041. name: "Paw",
  27042. image: {
  27043. source: "./media/characters/kenzie-lee/paw.svg"
  27044. }
  27045. },
  27046. },
  27047. [
  27048. {
  27049. name: "Normal",
  27050. height: math.unit(152, "feet"),
  27051. default: true
  27052. },
  27053. {
  27054. name: "Megamacro",
  27055. height: math.unit(7, "miles")
  27056. },
  27057. {
  27058. name: "Gigamacro",
  27059. height: math.unit(8000, "miles")
  27060. },
  27061. ]
  27062. ))
  27063. characterMakers.push(() => makeCharacter(
  27064. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27065. {
  27066. side: {
  27067. height: math.unit(6, "feet"),
  27068. weight: math.unit(150, "lb"),
  27069. name: "Side",
  27070. image: {
  27071. source: "./media/characters/withers/side.svg",
  27072. extra: 1830 / 1728,
  27073. bottom: 96 / 1927
  27074. }
  27075. },
  27076. front: {
  27077. height: math.unit(6, "feet"),
  27078. weight: math.unit(150, "lb"),
  27079. name: "Front",
  27080. image: {
  27081. source: "./media/characters/withers/front.svg",
  27082. extra: 1514 / 1438,
  27083. bottom: 118 / 1632
  27084. }
  27085. },
  27086. },
  27087. [
  27088. {
  27089. name: "Macro",
  27090. height: math.unit(168, "feet"),
  27091. default: true
  27092. },
  27093. {
  27094. name: "Megamacro",
  27095. height: math.unit(15, "miles")
  27096. }
  27097. ]
  27098. ))
  27099. characterMakers.push(() => makeCharacter(
  27100. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27101. {
  27102. front: {
  27103. height: math.unit(6 + 7 / 12, "feet"),
  27104. weight: math.unit(250, "lb"),
  27105. name: "Front",
  27106. image: {
  27107. source: "./media/characters/nemoskii/front.svg",
  27108. extra: 2270 / 1734,
  27109. bottom: 86 / 2354
  27110. }
  27111. },
  27112. back: {
  27113. height: math.unit(6 + 7 / 12, "feet"),
  27114. weight: math.unit(250, "lb"),
  27115. name: "Back",
  27116. image: {
  27117. source: "./media/characters/nemoskii/back.svg",
  27118. extra: 1845 / 1788,
  27119. bottom: 10.5 / 1852
  27120. }
  27121. },
  27122. head: {
  27123. height: math.unit(1.31, "feet"),
  27124. name: "Head",
  27125. image: {
  27126. source: "./media/characters/nemoskii/head.svg"
  27127. }
  27128. },
  27129. },
  27130. [
  27131. {
  27132. name: "Micro",
  27133. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27134. },
  27135. {
  27136. name: "Normal",
  27137. height: math.unit(6 + 7 / 12, "feet"),
  27138. default: true
  27139. },
  27140. {
  27141. name: "Macro",
  27142. height: math.unit((6 + 7 / 12) * 150, "feet")
  27143. },
  27144. {
  27145. name: "Macro+",
  27146. height: math.unit((6 + 7 / 12) * 500, "feet")
  27147. },
  27148. {
  27149. name: "Megamacro",
  27150. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27151. },
  27152. ]
  27153. ))
  27154. characterMakers.push(() => makeCharacter(
  27155. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27156. {
  27157. front: {
  27158. height: math.unit(1, "mile"),
  27159. weight: math.unit(265261.9, "lb"),
  27160. name: "Front",
  27161. image: {
  27162. source: "./media/characters/shui/front.svg",
  27163. extra: 1633 / 1564,
  27164. bottom: 91.5 / 1726
  27165. }
  27166. },
  27167. },
  27168. [
  27169. {
  27170. name: "Macro",
  27171. height: math.unit(1, "mile"),
  27172. default: true
  27173. },
  27174. ]
  27175. ))
  27176. characterMakers.push(() => makeCharacter(
  27177. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27178. {
  27179. front: {
  27180. height: math.unit(12 + 6 / 12, "feet"),
  27181. weight: math.unit(1342, "lb"),
  27182. name: "Front",
  27183. image: {
  27184. source: "./media/characters/arokh-takakura/front.svg",
  27185. extra: 1089 / 1043,
  27186. bottom: 77.4 / 1176.7
  27187. }
  27188. },
  27189. back: {
  27190. height: math.unit(12 + 6 / 12, "feet"),
  27191. weight: math.unit(1342, "lb"),
  27192. name: "Back",
  27193. image: {
  27194. source: "./media/characters/arokh-takakura/back.svg",
  27195. extra: 1046 / 1019,
  27196. bottom: 102 / 1150
  27197. }
  27198. },
  27199. },
  27200. [
  27201. {
  27202. name: "Big",
  27203. height: math.unit(12 + 6 / 12, "feet"),
  27204. default: true
  27205. },
  27206. ]
  27207. ))
  27208. characterMakers.push(() => makeCharacter(
  27209. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27210. {
  27211. front: {
  27212. height: math.unit(5 + 6 / 12, "feet"),
  27213. weight: math.unit(150, "lb"),
  27214. name: "Front",
  27215. image: {
  27216. source: "./media/characters/theo/front.svg",
  27217. extra: 1184 / 1131,
  27218. bottom: 7.4 / 1191
  27219. }
  27220. },
  27221. },
  27222. [
  27223. {
  27224. name: "Micro",
  27225. height: math.unit(5, "inches")
  27226. },
  27227. {
  27228. name: "Normal",
  27229. height: math.unit(5 + 6 / 12, "feet"),
  27230. default: true
  27231. },
  27232. ]
  27233. ))
  27234. characterMakers.push(() => makeCharacter(
  27235. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27236. {
  27237. front: {
  27238. height: math.unit(5 + 9 / 12, "feet"),
  27239. weight: math.unit(130, "lb"),
  27240. name: "Front",
  27241. image: {
  27242. source: "./media/characters/cecelia-swift/front.svg",
  27243. extra: 502 / 484,
  27244. bottom: 23 / 523
  27245. }
  27246. },
  27247. back: {
  27248. height: math.unit(5 + 9 / 12, "feet"),
  27249. weight: math.unit(130, "lb"),
  27250. name: "Back",
  27251. image: {
  27252. source: "./media/characters/cecelia-swift/back.svg",
  27253. extra: 499 / 485,
  27254. bottom: 12 / 511
  27255. }
  27256. },
  27257. head: {
  27258. height: math.unit(0.90, "feet"),
  27259. name: "Head",
  27260. image: {
  27261. source: "./media/characters/cecelia-swift/head.svg"
  27262. }
  27263. },
  27264. rump: {
  27265. height: math.unit(1.75, "feet"),
  27266. name: "Rump",
  27267. image: {
  27268. source: "./media/characters/cecelia-swift/rump.svg"
  27269. }
  27270. },
  27271. },
  27272. [
  27273. {
  27274. name: "Normal",
  27275. height: math.unit(5 + 9 / 12, "feet"),
  27276. default: true
  27277. },
  27278. {
  27279. name: "Big",
  27280. height: math.unit(50, "feet")
  27281. },
  27282. {
  27283. name: "Macro",
  27284. height: math.unit(100, "feet")
  27285. },
  27286. {
  27287. name: "Macro+",
  27288. height: math.unit(500, "feet")
  27289. },
  27290. {
  27291. name: "Macro++",
  27292. height: math.unit(1000, "feet")
  27293. },
  27294. ]
  27295. ))
  27296. characterMakers.push(() => makeCharacter(
  27297. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27298. {
  27299. front: {
  27300. height: math.unit(6, "feet"),
  27301. weight: math.unit(150, "lb"),
  27302. name: "Front",
  27303. image: {
  27304. source: "./media/characters/kaunan/front.svg",
  27305. extra: 2890 / 2523,
  27306. bottom: 49 / 2939
  27307. }
  27308. },
  27309. },
  27310. [
  27311. {
  27312. name: "Macro",
  27313. height: math.unit(150, "feet"),
  27314. default: true
  27315. },
  27316. ]
  27317. ))
  27318. characterMakers.push(() => makeCharacter(
  27319. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27320. {
  27321. front: {
  27322. height: math.unit(175, "cm"),
  27323. weight: math.unit(60, "kg"),
  27324. name: "Front",
  27325. image: {
  27326. source: "./media/characters/fei/front.svg",
  27327. extra: 2581 / 2400,
  27328. bottom: 82.2 / 2663
  27329. }
  27330. },
  27331. },
  27332. [
  27333. {
  27334. name: "Mortal",
  27335. height: math.unit(175, "cm")
  27336. },
  27337. {
  27338. name: "Normal",
  27339. height: math.unit(3500, "m"),
  27340. default: true
  27341. },
  27342. {
  27343. name: "Stroll",
  27344. height: math.unit(17.5, "km")
  27345. },
  27346. {
  27347. name: "Showoff",
  27348. height: math.unit(175, "km")
  27349. },
  27350. ]
  27351. ))
  27352. characterMakers.push(() => makeCharacter(
  27353. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27354. {
  27355. front: {
  27356. height: math.unit(7, "feet"),
  27357. weight: math.unit(1000, "kg"),
  27358. name: "Front",
  27359. image: {
  27360. source: "./media/characters/edrax/front.svg",
  27361. extra: 2838 / 2550,
  27362. bottom: 130 / 2968
  27363. }
  27364. },
  27365. },
  27366. [
  27367. {
  27368. name: "Small",
  27369. height: math.unit(7, "feet")
  27370. },
  27371. {
  27372. name: "Normal",
  27373. height: math.unit(1500, "meters")
  27374. },
  27375. {
  27376. name: "Mega",
  27377. height: math.unit(12000000, "km"),
  27378. default: true
  27379. },
  27380. {
  27381. name: "Megamacro",
  27382. height: math.unit(10600000, "lightyears")
  27383. },
  27384. {
  27385. name: "Hypermacro",
  27386. height: math.unit(256, "yottameters")
  27387. },
  27388. ]
  27389. ))
  27390. characterMakers.push(() => makeCharacter(
  27391. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27392. {
  27393. front: {
  27394. height: math.unit(10, "feet"),
  27395. weight: math.unit(750, "lb"),
  27396. name: "Front",
  27397. image: {
  27398. source: "./media/characters/clove/front.svg",
  27399. extra: 2031 / 1860,
  27400. bottom: 47.8 / 2080
  27401. }
  27402. },
  27403. back: {
  27404. height: math.unit(10, "feet"),
  27405. weight: math.unit(750, "lb"),
  27406. name: "Back",
  27407. image: {
  27408. source: "./media/characters/clove/back.svg",
  27409. extra: 2025 / 1859,
  27410. bottom: 46 / 2071
  27411. }
  27412. },
  27413. },
  27414. [
  27415. {
  27416. name: "Normal",
  27417. height: math.unit(10, "feet"),
  27418. default: true
  27419. },
  27420. ]
  27421. ))
  27422. characterMakers.push(() => makeCharacter(
  27423. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27424. {
  27425. front: {
  27426. height: math.unit(4, "feet"),
  27427. weight: math.unit(50, "lb"),
  27428. name: "Front",
  27429. image: {
  27430. source: "./media/characters/alex-rabbit/front.svg",
  27431. extra: 507 / 458,
  27432. bottom: 18.5 / 527
  27433. }
  27434. },
  27435. back: {
  27436. height: math.unit(4, "feet"),
  27437. weight: math.unit(50, "lb"),
  27438. name: "Back",
  27439. image: {
  27440. source: "./media/characters/alex-rabbit/back.svg",
  27441. extra: 502 / 460,
  27442. bottom: 18.9 / 521
  27443. }
  27444. },
  27445. },
  27446. [
  27447. {
  27448. name: "Normal",
  27449. height: math.unit(4, "feet"),
  27450. default: true
  27451. },
  27452. ]
  27453. ))
  27454. characterMakers.push(() => makeCharacter(
  27455. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27456. {
  27457. front: {
  27458. height: math.unit(1 + 3 / 12, "feet"),
  27459. weight: math.unit(80, "lb"),
  27460. name: "Front",
  27461. image: {
  27462. source: "./media/characters/zander-rose/front.svg",
  27463. extra: 916 / 797,
  27464. bottom: 17 / 933
  27465. }
  27466. },
  27467. back: {
  27468. height: math.unit(1 + 3 / 12, "feet"),
  27469. weight: math.unit(80, "lb"),
  27470. name: "Back",
  27471. image: {
  27472. source: "./media/characters/zander-rose/back.svg",
  27473. extra: 903 / 779,
  27474. bottom: 31 / 934
  27475. }
  27476. },
  27477. },
  27478. [
  27479. {
  27480. name: "Normal",
  27481. height: math.unit(1 + 3 / 12, "feet"),
  27482. default: true
  27483. },
  27484. ]
  27485. ))
  27486. characterMakers.push(() => makeCharacter(
  27487. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27488. {
  27489. anthro: {
  27490. height: math.unit(6, "feet"),
  27491. weight: math.unit(150, "lb"),
  27492. name: "Anthro",
  27493. image: {
  27494. source: "./media/characters/razz/anthro.svg",
  27495. extra: 1437 / 1343,
  27496. bottom: 48 / 1485
  27497. }
  27498. },
  27499. feral: {
  27500. height: math.unit(6, "feet"),
  27501. weight: math.unit(150, "lb"),
  27502. name: "Feral",
  27503. image: {
  27504. source: "./media/characters/razz/feral.svg",
  27505. extra: 2569 / 1385,
  27506. bottom: 95 / 2664
  27507. }
  27508. },
  27509. },
  27510. [
  27511. {
  27512. name: "Normal",
  27513. height: math.unit(6, "feet"),
  27514. default: true
  27515. },
  27516. ]
  27517. ))
  27518. characterMakers.push(() => makeCharacter(
  27519. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27520. {
  27521. front: {
  27522. height: math.unit(9 + 4 / 12, "feet"),
  27523. weight: math.unit(500, "lb"),
  27524. name: "Front",
  27525. image: {
  27526. source: "./media/characters/morrigan/front.svg",
  27527. extra: 2707 / 2579,
  27528. bottom: 156 / 2863
  27529. }
  27530. },
  27531. },
  27532. [
  27533. {
  27534. name: "Normal",
  27535. height: math.unit(9 + 4 / 12, "feet"),
  27536. default: true
  27537. },
  27538. ]
  27539. ))
  27540. characterMakers.push(() => makeCharacter(
  27541. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27542. {
  27543. front: {
  27544. height: math.unit(5, "stories"),
  27545. weight: math.unit(4000, "lb"),
  27546. name: "Front",
  27547. image: {
  27548. source: "./media/characters/jenene/front.svg",
  27549. extra: 1780 / 1710,
  27550. bottom: 57 / 1837
  27551. }
  27552. },
  27553. },
  27554. [
  27555. {
  27556. name: "Normal",
  27557. height: math.unit(5, "stories"),
  27558. default: true
  27559. },
  27560. ]
  27561. ))
  27562. characterMakers.push(() => makeCharacter(
  27563. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27564. {
  27565. front: {
  27566. height: math.unit(6, "feet"),
  27567. weight: math.unit(150, "lb"),
  27568. name: "Front",
  27569. image: {
  27570. source: "./media/characters/vix-archaser/front.svg",
  27571. extra: 2767 / 2562,
  27572. bottom: 36 / 2803
  27573. }
  27574. },
  27575. },
  27576. [
  27577. {
  27578. name: "Micro",
  27579. height: math.unit(1, "foot")
  27580. },
  27581. {
  27582. name: "Normal",
  27583. height: math.unit(6 + 5 / 12, "feet")
  27584. },
  27585. {
  27586. name: "Minimacro",
  27587. height: math.unit(500, "feet")
  27588. },
  27589. {
  27590. name: "Macro",
  27591. height: math.unit(4, "miles")
  27592. },
  27593. {
  27594. name: "Megamacro",
  27595. height: math.unit(250, "miles"),
  27596. default: true
  27597. },
  27598. {
  27599. name: "Gigamacro",
  27600. height: math.unit(1, "universe")
  27601. },
  27602. {
  27603. name: "Endgame",
  27604. height: math.unit(100, "multiverses")
  27605. }
  27606. ]
  27607. ))
  27608. characterMakers.push(() => makeCharacter(
  27609. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27610. {
  27611. taurSfw: {
  27612. height: math.unit(10, "meters"),
  27613. weight: math.unit(17500, "kg"),
  27614. name: "Taur",
  27615. image: {
  27616. source: "./media/characters/faey/taur-sfw.svg",
  27617. extra: 1200 / 968,
  27618. bottom: 41 / 1241
  27619. }
  27620. },
  27621. chestmaw: {
  27622. height: math.unit(2.01, "meters"),
  27623. name: "Chestmaw",
  27624. image: {
  27625. source: "./media/characters/faey/chestmaw.svg"
  27626. }
  27627. },
  27628. foot: {
  27629. height: math.unit(2.43, "meters"),
  27630. name: "Foot",
  27631. image: {
  27632. source: "./media/characters/faey/foot.svg"
  27633. }
  27634. },
  27635. jaws: {
  27636. height: math.unit(1.66, "meters"),
  27637. name: "Jaws",
  27638. image: {
  27639. source: "./media/characters/faey/jaws.svg"
  27640. }
  27641. },
  27642. tongues: {
  27643. height: math.unit(2.01, "meters"),
  27644. name: "Tongues",
  27645. image: {
  27646. source: "./media/characters/faey/tongues.svg"
  27647. }
  27648. },
  27649. },
  27650. [
  27651. {
  27652. name: "Small",
  27653. height: math.unit(10, "meters"),
  27654. default: true
  27655. },
  27656. {
  27657. name: "Big",
  27658. height: math.unit(500000, "km")
  27659. },
  27660. ]
  27661. ))
  27662. characterMakers.push(() => makeCharacter(
  27663. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27664. {
  27665. front: {
  27666. height: math.unit(7, "feet"),
  27667. weight: math.unit(275, "lb"),
  27668. name: "Front",
  27669. image: {
  27670. source: "./media/characters/roku/front.svg",
  27671. extra: 903 / 878,
  27672. bottom: 37 / 940
  27673. }
  27674. },
  27675. },
  27676. [
  27677. {
  27678. name: "Normal",
  27679. height: math.unit(7, "feet"),
  27680. default: true
  27681. },
  27682. {
  27683. name: "Macro",
  27684. height: math.unit(500, "feet")
  27685. },
  27686. {
  27687. name: "Megamacro",
  27688. height: math.unit(200, "miles")
  27689. },
  27690. ]
  27691. ))
  27692. characterMakers.push(() => makeCharacter(
  27693. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27694. {
  27695. front: {
  27696. height: math.unit(6 + 2 / 12, "feet"),
  27697. weight: math.unit(150, "lb"),
  27698. name: "Front",
  27699. image: {
  27700. source: "./media/characters/lira/front.svg",
  27701. extra: 1727 / 1605,
  27702. bottom: 26 / 1753
  27703. }
  27704. },
  27705. back: {
  27706. height: math.unit(6 + 2 / 12, "feet"),
  27707. weight: math.unit(150, "lb"),
  27708. name: "Back",
  27709. image: {
  27710. source: "./media/characters/lira/back.svg",
  27711. extra: 1713/1621,
  27712. bottom: 20/1733
  27713. }
  27714. },
  27715. hand: {
  27716. height: math.unit(0.75, "feet"),
  27717. name: "Hand",
  27718. image: {
  27719. source: "./media/characters/lira/hand.svg"
  27720. }
  27721. },
  27722. maw: {
  27723. height: math.unit(0.65, "feet"),
  27724. name: "Maw",
  27725. image: {
  27726. source: "./media/characters/lira/maw.svg"
  27727. }
  27728. },
  27729. pawDigi: {
  27730. height: math.unit(1.6, "feet"),
  27731. name: "Paw Digi",
  27732. image: {
  27733. source: "./media/characters/lira/paw-digi.svg"
  27734. }
  27735. },
  27736. pawPlanti: {
  27737. height: math.unit(1.4, "feet"),
  27738. name: "Paw Planti",
  27739. image: {
  27740. source: "./media/characters/lira/paw-planti.svg"
  27741. }
  27742. },
  27743. },
  27744. [
  27745. {
  27746. name: "Normal",
  27747. height: math.unit(6 + 2 / 12, "feet"),
  27748. default: true
  27749. },
  27750. {
  27751. name: "Macro",
  27752. height: math.unit(100, "feet")
  27753. },
  27754. {
  27755. name: "Macro²",
  27756. height: math.unit(1600, "feet")
  27757. },
  27758. {
  27759. name: "Planetary",
  27760. height: math.unit(20, "earths")
  27761. },
  27762. ]
  27763. ))
  27764. characterMakers.push(() => makeCharacter(
  27765. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27766. {
  27767. front: {
  27768. height: math.unit(6, "feet"),
  27769. weight: math.unit(150, "lb"),
  27770. name: "Front",
  27771. image: {
  27772. source: "./media/characters/hadjet/front.svg",
  27773. extra: 1480 / 1346,
  27774. bottom: 26 / 1506
  27775. }
  27776. },
  27777. frontNsfw: {
  27778. height: math.unit(6, "feet"),
  27779. weight: math.unit(150, "lb"),
  27780. name: "Front (NSFW)",
  27781. image: {
  27782. source: "./media/characters/hadjet/front-nsfw.svg",
  27783. extra: 1440 / 1358,
  27784. bottom: 52 / 1492
  27785. }
  27786. },
  27787. },
  27788. [
  27789. {
  27790. name: "Macro",
  27791. height: math.unit(10, "stories"),
  27792. default: true
  27793. },
  27794. {
  27795. name: "Megamacro",
  27796. height: math.unit(1.5, "miles")
  27797. },
  27798. {
  27799. name: "Megamacro+",
  27800. height: math.unit(5, "miles")
  27801. },
  27802. ]
  27803. ))
  27804. characterMakers.push(() => makeCharacter(
  27805. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27806. {
  27807. side: {
  27808. height: math.unit(106, "feet"),
  27809. weight: math.unit(500, "tonnes"),
  27810. name: "Side",
  27811. image: {
  27812. source: "./media/characters/kodran/side.svg",
  27813. extra: 553 / 480,
  27814. bottom: 33 / 586
  27815. }
  27816. },
  27817. front: {
  27818. height: math.unit(132, "feet"),
  27819. weight: math.unit(500, "tonnes"),
  27820. name: "Front",
  27821. image: {
  27822. source: "./media/characters/kodran/front.svg",
  27823. extra: 667 / 643,
  27824. bottom: 42 / 709
  27825. }
  27826. },
  27827. flying: {
  27828. height: math.unit(350, "feet"),
  27829. weight: math.unit(500, "tonnes"),
  27830. name: "Flying",
  27831. image: {
  27832. source: "./media/characters/kodran/flying.svg"
  27833. }
  27834. },
  27835. foot: {
  27836. height: math.unit(33, "feet"),
  27837. name: "Foot",
  27838. image: {
  27839. source: "./media/characters/kodran/foot.svg"
  27840. }
  27841. },
  27842. footFront: {
  27843. height: math.unit(19, "feet"),
  27844. name: "Foot (Front)",
  27845. image: {
  27846. source: "./media/characters/kodran/foot-front.svg",
  27847. extra: 261 / 261,
  27848. bottom: 91 / 352
  27849. }
  27850. },
  27851. headFront: {
  27852. height: math.unit(53, "feet"),
  27853. name: "Head (Front)",
  27854. image: {
  27855. source: "./media/characters/kodran/head-front.svg"
  27856. }
  27857. },
  27858. headSide: {
  27859. height: math.unit(65, "feet"),
  27860. name: "Head (Side)",
  27861. image: {
  27862. source: "./media/characters/kodran/head-side.svg"
  27863. }
  27864. },
  27865. throat: {
  27866. height: math.unit(79, "feet"),
  27867. name: "Throat",
  27868. image: {
  27869. source: "./media/characters/kodran/throat.svg"
  27870. }
  27871. },
  27872. },
  27873. [
  27874. {
  27875. name: "Large",
  27876. height: math.unit(106, "feet"),
  27877. default: true
  27878. },
  27879. ]
  27880. ))
  27881. characterMakers.push(() => makeCharacter(
  27882. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27883. {
  27884. side: {
  27885. height: math.unit(11, "feet"),
  27886. weight: math.unit(150, "lb"),
  27887. name: "Side",
  27888. image: {
  27889. source: "./media/characters/pyxaron/side.svg",
  27890. extra: 305 / 195,
  27891. bottom: 17 / 322
  27892. }
  27893. },
  27894. },
  27895. [
  27896. {
  27897. name: "Normal",
  27898. height: math.unit(11, "feet"),
  27899. default: true
  27900. },
  27901. ]
  27902. ))
  27903. characterMakers.push(() => makeCharacter(
  27904. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27905. {
  27906. front: {
  27907. height: math.unit(6, "feet"),
  27908. weight: math.unit(150, "lb"),
  27909. name: "Front",
  27910. image: {
  27911. source: "./media/characters/meep/front.svg",
  27912. extra: 88 / 80,
  27913. bottom: 6 / 94
  27914. }
  27915. },
  27916. },
  27917. [
  27918. {
  27919. name: "Fun Sized",
  27920. height: math.unit(2, "inches"),
  27921. default: true
  27922. },
  27923. {
  27924. name: "Friend Sized",
  27925. height: math.unit(8, "inches")
  27926. },
  27927. ]
  27928. ))
  27929. characterMakers.push(() => makeCharacter(
  27930. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27931. {
  27932. front: {
  27933. height: math.unit(15, "feet"),
  27934. weight: math.unit(2500, "lb"),
  27935. name: "Front",
  27936. image: {
  27937. source: "./media/characters/holly-rabbit/front.svg",
  27938. extra: 1433 / 1233,
  27939. bottom: 125 / 1558
  27940. }
  27941. },
  27942. dick: {
  27943. height: math.unit(4.6, "feet"),
  27944. name: "Dick",
  27945. image: {
  27946. source: "./media/characters/holly-rabbit/dick.svg"
  27947. }
  27948. },
  27949. },
  27950. [
  27951. {
  27952. name: "Normal",
  27953. height: math.unit(15, "feet"),
  27954. default: true
  27955. },
  27956. {
  27957. name: "Macro",
  27958. height: math.unit(250, "feet")
  27959. },
  27960. {
  27961. name: "Macro+",
  27962. height: math.unit(2500, "feet")
  27963. },
  27964. ]
  27965. ))
  27966. characterMakers.push(() => makeCharacter(
  27967. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27968. {
  27969. front: {
  27970. height: math.unit(3.02, "meters"),
  27971. weight: math.unit(500, "kg"),
  27972. name: "Front",
  27973. image: {
  27974. source: "./media/characters/drena/front.svg",
  27975. extra: 282 / 243,
  27976. bottom: 8 / 290
  27977. }
  27978. },
  27979. side: {
  27980. height: math.unit(3.02, "meters"),
  27981. weight: math.unit(500, "kg"),
  27982. name: "Side",
  27983. image: {
  27984. source: "./media/characters/drena/side.svg",
  27985. extra: 280 / 245,
  27986. bottom: 10 / 290
  27987. }
  27988. },
  27989. back: {
  27990. height: math.unit(3.02, "meters"),
  27991. weight: math.unit(500, "kg"),
  27992. name: "Back",
  27993. image: {
  27994. source: "./media/characters/drena/back.svg",
  27995. extra: 278 / 243,
  27996. bottom: 2 / 280
  27997. }
  27998. },
  27999. foot: {
  28000. height: math.unit(0.75, "meters"),
  28001. name: "Foot",
  28002. image: {
  28003. source: "./media/characters/drena/foot.svg"
  28004. }
  28005. },
  28006. maw: {
  28007. height: math.unit(0.82, "meters"),
  28008. name: "Maw",
  28009. image: {
  28010. source: "./media/characters/drena/maw.svg"
  28011. }
  28012. },
  28013. rump: {
  28014. height: math.unit(0.93, "meters"),
  28015. name: "Rump",
  28016. image: {
  28017. source: "./media/characters/drena/rump.svg"
  28018. }
  28019. },
  28020. },
  28021. [
  28022. {
  28023. name: "Normal",
  28024. height: math.unit(3.02, "meters"),
  28025. default: true
  28026. },
  28027. ]
  28028. ))
  28029. characterMakers.push(() => makeCharacter(
  28030. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28031. {
  28032. front: {
  28033. height: math.unit(6 + 4 / 12, "feet"),
  28034. weight: math.unit(250, "lb"),
  28035. name: "Front",
  28036. image: {
  28037. source: "./media/characters/remmyzilla/front.svg",
  28038. extra: 4033 / 3588,
  28039. bottom: 123 / 4156
  28040. }
  28041. },
  28042. back: {
  28043. height: math.unit(6 + 4 / 12, "feet"),
  28044. weight: math.unit(250, "lb"),
  28045. name: "Back",
  28046. image: {
  28047. source: "./media/characters/remmyzilla/back.svg",
  28048. extra: 2687 / 2555,
  28049. bottom: 48 / 2735
  28050. }
  28051. },
  28052. frontFancy: {
  28053. height: math.unit(6 + 4 / 12, "feet"),
  28054. weight: math.unit(250, "lb"),
  28055. name: "Front (Fancy)",
  28056. image: {
  28057. source: "./media/characters/remmyzilla/front-fancy.svg",
  28058. extra: 4119 / 3419,
  28059. bottom: 237 / 4356
  28060. }
  28061. },
  28062. paw: {
  28063. height: math.unit(1.73, "feet"),
  28064. name: "Paw",
  28065. image: {
  28066. source: "./media/characters/remmyzilla/paw.svg"
  28067. }
  28068. },
  28069. maw: {
  28070. height: math.unit(1.73, "feet"),
  28071. name: "Maw",
  28072. image: {
  28073. source: "./media/characters/remmyzilla/maw.svg"
  28074. }
  28075. },
  28076. },
  28077. [
  28078. {
  28079. name: "Normal",
  28080. height: math.unit(6 + 4 / 12, "feet")
  28081. },
  28082. {
  28083. name: "Minimacro",
  28084. height: math.unit(12 + 8 / 12, "feet")
  28085. },
  28086. {
  28087. name: "Normal",
  28088. height: math.unit(640, "feet"),
  28089. default: true
  28090. },
  28091. {
  28092. name: "Megamacro",
  28093. height: math.unit(6400, "feet")
  28094. },
  28095. {
  28096. name: "Gigamacro",
  28097. height: math.unit(64000, "miles")
  28098. },
  28099. ]
  28100. ))
  28101. characterMakers.push(() => makeCharacter(
  28102. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28103. {
  28104. front: {
  28105. height: math.unit(2.5, "meters"),
  28106. weight: math.unit(300, "lb"),
  28107. name: "Front",
  28108. image: {
  28109. source: "./media/characters/lawrence/front.svg",
  28110. extra: 357 / 335,
  28111. bottom: 30 / 387
  28112. }
  28113. },
  28114. back: {
  28115. height: math.unit(2.5, "meters"),
  28116. weight: math.unit(300, "lb"),
  28117. name: "Back",
  28118. image: {
  28119. source: "./media/characters/lawrence/back.svg",
  28120. extra: 357 / 338,
  28121. bottom: 16 / 373
  28122. }
  28123. },
  28124. head: {
  28125. height: math.unit(0.9, "meter"),
  28126. name: "Head",
  28127. image: {
  28128. source: "./media/characters/lawrence/head.svg"
  28129. }
  28130. },
  28131. maw: {
  28132. height: math.unit(0.7, "meter"),
  28133. name: "Maw",
  28134. image: {
  28135. source: "./media/characters/lawrence/maw.svg"
  28136. }
  28137. },
  28138. footBottom: {
  28139. height: math.unit(0.5, "meter"),
  28140. name: "Foot (Bottom)",
  28141. image: {
  28142. source: "./media/characters/lawrence/foot-bottom.svg"
  28143. }
  28144. },
  28145. footTop: {
  28146. height: math.unit(0.5, "meter"),
  28147. name: "Foot (Top)",
  28148. image: {
  28149. source: "./media/characters/lawrence/foot-top.svg"
  28150. }
  28151. },
  28152. },
  28153. [
  28154. {
  28155. name: "Normal",
  28156. height: math.unit(2.5, "meters"),
  28157. default: true
  28158. },
  28159. {
  28160. name: "Macro",
  28161. height: math.unit(95, "meters")
  28162. },
  28163. {
  28164. name: "Megamacro",
  28165. height: math.unit(150, "km")
  28166. },
  28167. ]
  28168. ))
  28169. characterMakers.push(() => makeCharacter(
  28170. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28171. {
  28172. front: {
  28173. height: math.unit(4.2, "meters"),
  28174. name: "Front",
  28175. image: {
  28176. source: "./media/characters/sydney/front.svg",
  28177. extra: 1323 / 1277,
  28178. bottom: 111 / 1434
  28179. }
  28180. },
  28181. },
  28182. [
  28183. {
  28184. name: "Normal",
  28185. height: math.unit(4.2, "meters"),
  28186. default: true
  28187. },
  28188. ]
  28189. ))
  28190. characterMakers.push(() => makeCharacter(
  28191. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28192. {
  28193. back: {
  28194. height: math.unit(201, "feet"),
  28195. name: "Back",
  28196. image: {
  28197. source: "./media/characters/jessica/back.svg",
  28198. extra: 273 / 259,
  28199. bottom: 7 / 280
  28200. }
  28201. },
  28202. },
  28203. [
  28204. {
  28205. name: "Normal",
  28206. height: math.unit(201, "feet"),
  28207. default: true
  28208. },
  28209. {
  28210. name: "Megamacro",
  28211. height: math.unit(8, "miles")
  28212. },
  28213. ]
  28214. ))
  28215. characterMakers.push(() => makeCharacter(
  28216. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28217. {
  28218. side: {
  28219. height: math.unit(320, "cm"),
  28220. name: "Side",
  28221. image: {
  28222. source: "./media/characters/victoria/side.svg",
  28223. extra: 778 / 346,
  28224. bottom: 56 / 834
  28225. }
  28226. },
  28227. maw: {
  28228. height: math.unit(5.9, "feet"),
  28229. name: "Maw",
  28230. image: {
  28231. source: "./media/characters/victoria/maw.svg"
  28232. }
  28233. },
  28234. },
  28235. [
  28236. {
  28237. name: "Normal",
  28238. height: math.unit(320, "cm"),
  28239. default: true
  28240. },
  28241. ]
  28242. ))
  28243. characterMakers.push(() => makeCharacter(
  28244. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28245. {
  28246. front: {
  28247. height: math.unit(5 + 6 / 12, "feet"),
  28248. name: "Front",
  28249. image: {
  28250. source: "./media/characters/cat/front.svg",
  28251. extra: 1374 / 1257,
  28252. bottom: 59 / 1433
  28253. }
  28254. },
  28255. back: {
  28256. height: math.unit(5 + 6 / 12, "feet"),
  28257. name: "Back",
  28258. image: {
  28259. source: "./media/characters/cat/back.svg",
  28260. extra: 1337 / 1226,
  28261. bottom: 34 / 1371
  28262. }
  28263. },
  28264. taur: {
  28265. height: math.unit(7, "feet"),
  28266. name: "Taur",
  28267. image: {
  28268. source: "./media/characters/cat/taur.svg",
  28269. extra: 1345 / 1231,
  28270. bottom: 66 / 1411
  28271. }
  28272. },
  28273. lucario: {
  28274. height: math.unit(4, "feet"),
  28275. name: "Lucario",
  28276. image: {
  28277. source: "./media/characters/cat/lucario.svg",
  28278. extra: 1470 / 1318,
  28279. bottom: 65 / 1535
  28280. }
  28281. },
  28282. megaLucario: {
  28283. height: math.unit(4, "feet"),
  28284. name: "Mega Lucario",
  28285. image: {
  28286. source: "./media/characters/cat/mega-lucario.svg",
  28287. extra: 1515 / 1319,
  28288. bottom: 63 / 1578
  28289. }
  28290. },
  28291. nickit: {
  28292. height: math.unit(2, "feet"),
  28293. name: "Nickit",
  28294. image: {
  28295. source: "./media/characters/cat/nickit.svg",
  28296. extra: 1980 / 1585,
  28297. bottom: 102 / 2082
  28298. }
  28299. },
  28300. lopunnyFront: {
  28301. height: math.unit(5, "feet"),
  28302. name: "Lopunny (Front)",
  28303. image: {
  28304. source: "./media/characters/cat/lopunny-front.svg",
  28305. extra: 1782 / 1469,
  28306. bottom: 38 / 1820
  28307. }
  28308. },
  28309. lopunnyBack: {
  28310. height: math.unit(5, "feet"),
  28311. name: "Lopunny (Back)",
  28312. image: {
  28313. source: "./media/characters/cat/lopunny-back.svg",
  28314. extra: 1660 / 1490,
  28315. bottom: 25 / 1685
  28316. }
  28317. },
  28318. },
  28319. [
  28320. {
  28321. name: "Really small",
  28322. height: math.unit(1, "nm")
  28323. },
  28324. {
  28325. name: "Micro",
  28326. height: math.unit(5, "inches")
  28327. },
  28328. {
  28329. name: "Normal",
  28330. height: math.unit(5 + 6 / 12, "feet"),
  28331. default: true
  28332. },
  28333. {
  28334. name: "Macro",
  28335. height: math.unit(50, "feet")
  28336. },
  28337. {
  28338. name: "Macro+",
  28339. height: math.unit(150, "feet")
  28340. },
  28341. {
  28342. name: "Megamacro",
  28343. height: math.unit(100, "miles")
  28344. },
  28345. ]
  28346. ))
  28347. characterMakers.push(() => makeCharacter(
  28348. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28349. {
  28350. front: {
  28351. height: math.unit(63.4, "meters"),
  28352. weight: math.unit(3.28349e+6, "kilograms"),
  28353. name: "Front",
  28354. image: {
  28355. source: "./media/characters/kirina-violet/front.svg",
  28356. extra: 2812 / 2725,
  28357. bottom: 0 / 2812
  28358. }
  28359. },
  28360. back: {
  28361. height: math.unit(63.4, "meters"),
  28362. weight: math.unit(3.28349e+6, "kilograms"),
  28363. name: "Back",
  28364. image: {
  28365. source: "./media/characters/kirina-violet/back.svg",
  28366. extra: 2812 / 2725,
  28367. bottom: 0 / 2812
  28368. }
  28369. },
  28370. mouth: {
  28371. height: math.unit(4.35, "meters"),
  28372. name: "Mouth",
  28373. image: {
  28374. source: "./media/characters/kirina-violet/mouth.svg"
  28375. }
  28376. },
  28377. paw: {
  28378. height: math.unit(5.6, "meters"),
  28379. name: "Paw",
  28380. image: {
  28381. source: "./media/characters/kirina-violet/paw.svg"
  28382. }
  28383. },
  28384. tail: {
  28385. height: math.unit(18, "meters"),
  28386. name: "Tail",
  28387. image: {
  28388. source: "./media/characters/kirina-violet/tail.svg"
  28389. }
  28390. },
  28391. },
  28392. [
  28393. {
  28394. name: "Macro",
  28395. height: math.unit(63.4, "meters"),
  28396. default: true
  28397. },
  28398. ]
  28399. ))
  28400. characterMakers.push(() => makeCharacter(
  28401. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28402. {
  28403. front: {
  28404. height: math.unit(75, "feet"),
  28405. name: "Front",
  28406. image: {
  28407. source: "./media/characters/cat-gigachu/front.svg",
  28408. extra: 1239/1027,
  28409. bottom: 32/1271
  28410. }
  28411. },
  28412. back: {
  28413. height: math.unit(75, "feet"),
  28414. name: "Back",
  28415. image: {
  28416. source: "./media/characters/cat-gigachu/back.svg",
  28417. extra: 1229/1030,
  28418. bottom: 9/1238
  28419. }
  28420. },
  28421. },
  28422. [
  28423. {
  28424. name: "Dynamax",
  28425. height: math.unit(75, "feet"),
  28426. default: true
  28427. },
  28428. ]
  28429. ))
  28430. characterMakers.push(() => makeCharacter(
  28431. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28432. {
  28433. front: {
  28434. height: math.unit(6, "feet"),
  28435. weight: math.unit(150, "lb"),
  28436. name: "Front",
  28437. image: {
  28438. source: "./media/characters/sfaiyan/front.svg",
  28439. extra: 999 / 978,
  28440. bottom: 5 / 1004
  28441. }
  28442. },
  28443. },
  28444. [
  28445. {
  28446. name: "Normal",
  28447. height: math.unit(1.82, "meters")
  28448. },
  28449. {
  28450. name: "Giant",
  28451. height: math.unit(2.27, "km"),
  28452. default: true
  28453. },
  28454. ]
  28455. ))
  28456. characterMakers.push(() => makeCharacter(
  28457. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28458. {
  28459. front: {
  28460. height: math.unit(179, "cm"),
  28461. weight: math.unit(100, "kg"),
  28462. name: "Front",
  28463. image: {
  28464. source: "./media/characters/raunehkeli/front.svg",
  28465. extra: 1934 / 1926,
  28466. bottom: 0 / 1934
  28467. }
  28468. },
  28469. },
  28470. [
  28471. {
  28472. name: "Normal",
  28473. height: math.unit(179, "cm")
  28474. },
  28475. {
  28476. name: "Maximum",
  28477. height: math.unit(575, "meters"),
  28478. default: true
  28479. },
  28480. ]
  28481. ))
  28482. characterMakers.push(() => makeCharacter(
  28483. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28484. {
  28485. front: {
  28486. height: math.unit(6, "feet"),
  28487. weight: math.unit(150, "lb"),
  28488. name: "Front",
  28489. image: {
  28490. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28491. extra: 2625 / 2518,
  28492. bottom: 60 / 2685
  28493. }
  28494. },
  28495. },
  28496. [
  28497. {
  28498. name: "Normal",
  28499. height: math.unit(6 + 2 / 12, "feet")
  28500. },
  28501. {
  28502. name: "Macro",
  28503. height: math.unit(1180, "feet"),
  28504. default: true
  28505. },
  28506. ]
  28507. ))
  28508. characterMakers.push(() => makeCharacter(
  28509. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28510. {
  28511. front: {
  28512. height: math.unit(5 + 6 / 12, "feet"),
  28513. weight: math.unit(108, "lb"),
  28514. name: "Front",
  28515. image: {
  28516. source: "./media/characters/lilith-zott/front.svg",
  28517. extra: 2510 / 2238,
  28518. bottom: 100 / 2610
  28519. }
  28520. },
  28521. frontDressed: {
  28522. height: math.unit(5 + 6 / 12, "feet"),
  28523. weight: math.unit(108, "lb"),
  28524. name: "Front (Dressed)",
  28525. image: {
  28526. source: "./media/characters/lilith-zott/front-dressed.svg",
  28527. extra: 2510 / 2238,
  28528. bottom: 100 / 2610
  28529. }
  28530. },
  28531. },
  28532. [
  28533. {
  28534. name: "Normal",
  28535. height: math.unit(5 + 6 / 12, "feet")
  28536. },
  28537. {
  28538. name: "Macro",
  28539. height: math.unit(1030, "feet"),
  28540. default: true
  28541. },
  28542. ]
  28543. ))
  28544. characterMakers.push(() => makeCharacter(
  28545. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28546. {
  28547. front: {
  28548. height: math.unit(6, "feet"),
  28549. weight: math.unit(150, "lb"),
  28550. name: "Front",
  28551. image: {
  28552. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28553. extra: 2567 / 2435,
  28554. bottom: 39 / 2606
  28555. }
  28556. },
  28557. frontSuper: {
  28558. height: math.unit(6, "feet"),
  28559. name: "Front (Super)",
  28560. image: {
  28561. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28562. extra: 2567 / 2435,
  28563. bottom: 39 / 2606
  28564. }
  28565. },
  28566. },
  28567. [
  28568. {
  28569. name: "Normal",
  28570. height: math.unit(5 + 10 / 12, "feet")
  28571. },
  28572. {
  28573. name: "Macro",
  28574. height: math.unit(1100, "feet"),
  28575. default: true
  28576. },
  28577. ]
  28578. ))
  28579. characterMakers.push(() => makeCharacter(
  28580. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28581. {
  28582. front: {
  28583. height: math.unit(100, "miles"),
  28584. name: "Front",
  28585. image: {
  28586. source: "./media/characters/sona/front.svg",
  28587. extra: 2433 / 2201,
  28588. bottom: 53 / 2486
  28589. }
  28590. },
  28591. foot: {
  28592. height: math.unit(16.1, "miles"),
  28593. name: "Foot",
  28594. image: {
  28595. source: "./media/characters/sona/foot.svg"
  28596. }
  28597. },
  28598. },
  28599. [
  28600. {
  28601. name: "Macro",
  28602. height: math.unit(100, "miles"),
  28603. default: true
  28604. },
  28605. ]
  28606. ))
  28607. characterMakers.push(() => makeCharacter(
  28608. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28609. {
  28610. front: {
  28611. height: math.unit(6, "feet"),
  28612. weight: math.unit(150, "lb"),
  28613. name: "Front",
  28614. image: {
  28615. source: "./media/characters/bailey/front.svg",
  28616. extra: 1778 / 1724,
  28617. bottom: 30 / 1808
  28618. }
  28619. },
  28620. },
  28621. [
  28622. {
  28623. name: "Micro",
  28624. height: math.unit(4, "inches")
  28625. },
  28626. {
  28627. name: "Normal",
  28628. height: math.unit(5 + 5 / 12, "feet"),
  28629. default: true
  28630. },
  28631. {
  28632. name: "Macro",
  28633. height: math.unit(250, "feet")
  28634. },
  28635. {
  28636. name: "Megamacro",
  28637. height: math.unit(100, "miles")
  28638. },
  28639. ]
  28640. ))
  28641. characterMakers.push(() => makeCharacter(
  28642. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28643. {
  28644. front: {
  28645. height: math.unit(5 + 2 / 12, "feet"),
  28646. weight: math.unit(120, "lb"),
  28647. name: "Front",
  28648. image: {
  28649. source: "./media/characters/snaps/front.svg",
  28650. extra: 2370 / 2177,
  28651. bottom: 48 / 2418
  28652. }
  28653. },
  28654. back: {
  28655. height: math.unit(5 + 2 / 12, "feet"),
  28656. weight: math.unit(120, "lb"),
  28657. name: "Back",
  28658. image: {
  28659. source: "./media/characters/snaps/back.svg",
  28660. extra: 2408 / 2258,
  28661. bottom: 15 / 2423
  28662. }
  28663. },
  28664. },
  28665. [
  28666. {
  28667. name: "Micro",
  28668. height: math.unit(9, "inches")
  28669. },
  28670. {
  28671. name: "Normal",
  28672. height: math.unit(5 + 2 / 12, "feet"),
  28673. default: true
  28674. },
  28675. {
  28676. name: "Mini Macro",
  28677. height: math.unit(10, "feet")
  28678. },
  28679. ]
  28680. ))
  28681. characterMakers.push(() => makeCharacter(
  28682. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28683. {
  28684. front: {
  28685. height: math.unit(1.8, "meters"),
  28686. weight: math.unit(85, "kg"),
  28687. name: "Front",
  28688. image: {
  28689. source: "./media/characters/azteck/front.svg",
  28690. extra: 2815 / 2625,
  28691. bottom: 89 / 2904
  28692. }
  28693. },
  28694. back: {
  28695. height: math.unit(1.8, "meters"),
  28696. weight: math.unit(85, "kg"),
  28697. name: "Back",
  28698. image: {
  28699. source: "./media/characters/azteck/back.svg",
  28700. extra: 2856 / 2648,
  28701. bottom: 85 / 2941
  28702. }
  28703. },
  28704. frontDressed: {
  28705. height: math.unit(1.8, "meters"),
  28706. weight: math.unit(85, "kg"),
  28707. name: "Front (Dressed)",
  28708. image: {
  28709. source: "./media/characters/azteck/front-dressed.svg",
  28710. extra: 2147 / 2003,
  28711. bottom: 68 / 2215
  28712. }
  28713. },
  28714. head: {
  28715. height: math.unit(0.47, "meters"),
  28716. weight: math.unit(85, "kg"),
  28717. name: "Head",
  28718. image: {
  28719. source: "./media/characters/azteck/head.svg"
  28720. }
  28721. },
  28722. },
  28723. [
  28724. {
  28725. name: "Bite sized",
  28726. height: math.unit(16, "cm")
  28727. },
  28728. {
  28729. name: "Normal",
  28730. height: math.unit(1.8, "meters"),
  28731. default: true
  28732. },
  28733. ]
  28734. ))
  28735. characterMakers.push(() => makeCharacter(
  28736. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28737. {
  28738. front: {
  28739. height: math.unit(6, "feet"),
  28740. weight: math.unit(150, "lb"),
  28741. name: "Front",
  28742. image: {
  28743. source: "./media/characters/pidge/front.svg",
  28744. extra: 620 / 588,
  28745. bottom: 9 / 629
  28746. }
  28747. },
  28748. back: {
  28749. height: math.unit(6, "feet"),
  28750. weight: math.unit(150, "lb"),
  28751. name: "Back",
  28752. image: {
  28753. source: "./media/characters/pidge/back.svg",
  28754. extra: 620 / 588,
  28755. bottom: 9 / 629
  28756. }
  28757. },
  28758. },
  28759. [
  28760. {
  28761. name: "Macro",
  28762. height: math.unit(1, "mile"),
  28763. default: true
  28764. },
  28765. ]
  28766. ))
  28767. characterMakers.push(() => makeCharacter(
  28768. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28769. {
  28770. front: {
  28771. height: math.unit(6, "feet"),
  28772. weight: math.unit(150, "lb"),
  28773. name: "Front",
  28774. image: {
  28775. source: "./media/characters/en/front.svg",
  28776. extra: 1697 / 1563,
  28777. bottom: 103 / 1800
  28778. }
  28779. },
  28780. back: {
  28781. height: math.unit(6, "feet"),
  28782. weight: math.unit(150, "lb"),
  28783. name: "Back",
  28784. image: {
  28785. source: "./media/characters/en/back.svg",
  28786. extra: 1700 / 1570,
  28787. bottom: 51 / 1751
  28788. }
  28789. },
  28790. frontDressed: {
  28791. height: math.unit(6, "feet"),
  28792. weight: math.unit(150, "lb"),
  28793. name: "Front (Dressed)",
  28794. image: {
  28795. source: "./media/characters/en/front-dressed.svg",
  28796. extra: 1697 / 1563,
  28797. bottom: 103 / 1800
  28798. }
  28799. },
  28800. backDressed: {
  28801. height: math.unit(6, "feet"),
  28802. weight: math.unit(150, "lb"),
  28803. name: "Back (Dressed)",
  28804. image: {
  28805. source: "./media/characters/en/back-dressed.svg",
  28806. extra: 1700 / 1570,
  28807. bottom: 51 / 1751
  28808. }
  28809. },
  28810. },
  28811. [
  28812. {
  28813. name: "Macro",
  28814. height: math.unit(210, "feet"),
  28815. default: true
  28816. },
  28817. ]
  28818. ))
  28819. characterMakers.push(() => makeCharacter(
  28820. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28821. {
  28822. front: {
  28823. height: math.unit(6, "feet"),
  28824. weight: math.unit(150, "lb"),
  28825. name: "Front",
  28826. image: {
  28827. source: "./media/characters/haze-orris/front.svg",
  28828. extra: 3975 / 3525,
  28829. bottom: 137 / 4112
  28830. }
  28831. },
  28832. },
  28833. [
  28834. {
  28835. name: "Micro",
  28836. height: math.unit(150, "mm"),
  28837. default: true
  28838. },
  28839. ]
  28840. ))
  28841. characterMakers.push(() => makeCharacter(
  28842. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28843. {
  28844. front: {
  28845. height: math.unit(6, "feet"),
  28846. weight: math.unit(150, "lb"),
  28847. name: "Front",
  28848. image: {
  28849. source: "./media/characters/casselene-yaro/front.svg",
  28850. extra: 4721 / 4541,
  28851. bottom: 82 / 4803
  28852. }
  28853. },
  28854. back: {
  28855. height: math.unit(6, "feet"),
  28856. weight: math.unit(150, "lb"),
  28857. name: "Back",
  28858. image: {
  28859. source: "./media/characters/casselene-yaro/back.svg",
  28860. extra: 4569 / 4377,
  28861. bottom: 69 / 4638
  28862. }
  28863. },
  28864. frontDressed: {
  28865. height: math.unit(6, "feet"),
  28866. weight: math.unit(150, "lb"),
  28867. name: "Front-dressed",
  28868. image: {
  28869. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28870. extra: 4721 / 4541,
  28871. bottom: 82 / 4803
  28872. }
  28873. },
  28874. },
  28875. [
  28876. {
  28877. name: "Macro",
  28878. height: math.unit(190, "feet"),
  28879. default: true
  28880. },
  28881. ]
  28882. ))
  28883. characterMakers.push(() => makeCharacter(
  28884. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28885. {
  28886. front: {
  28887. height: math.unit(6, "feet"),
  28888. weight: math.unit(150, "lb"),
  28889. name: "Front",
  28890. image: {
  28891. source: "./media/characters/myra-rue-delore/front.svg",
  28892. extra: 1340 / 1308,
  28893. bottom: 67 / 1407
  28894. }
  28895. },
  28896. back: {
  28897. height: math.unit(6, "feet"),
  28898. weight: math.unit(150, "lb"),
  28899. name: "Back",
  28900. image: {
  28901. source: "./media/characters/myra-rue-delore/back.svg",
  28902. extra: 1341 / 1310,
  28903. bottom: 40 / 1381
  28904. }
  28905. },
  28906. frontDressed: {
  28907. height: math.unit(6, "feet"),
  28908. weight: math.unit(150, "lb"),
  28909. name: "Front (Dressed)",
  28910. image: {
  28911. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28912. extra: 1340 / 1308,
  28913. bottom: 67 / 1407
  28914. }
  28915. },
  28916. },
  28917. [
  28918. {
  28919. name: "Macro",
  28920. height: math.unit(150, "feet"),
  28921. default: true
  28922. },
  28923. ]
  28924. ))
  28925. characterMakers.push(() => makeCharacter(
  28926. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28927. {
  28928. front: {
  28929. height: math.unit(10, "feet"),
  28930. weight: math.unit(15015, "lb"),
  28931. name: "Front",
  28932. image: {
  28933. source: "./media/characters/fem!plat/front.svg",
  28934. extra: 2799 / 2604,
  28935. bottom: 149 / 2948
  28936. }
  28937. },
  28938. },
  28939. [
  28940. {
  28941. name: "Normal",
  28942. height: math.unit(10, "feet"),
  28943. default: true
  28944. },
  28945. {
  28946. name: "Macro",
  28947. height: math.unit(100, "feet")
  28948. },
  28949. {
  28950. name: "Megamacro",
  28951. height: math.unit(1000, "feet")
  28952. },
  28953. ]
  28954. ))
  28955. characterMakers.push(() => makeCharacter(
  28956. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28957. {
  28958. front: {
  28959. height: math.unit(15 + 5 / 12, "feet"),
  28960. weight: math.unit(4600, "lb"),
  28961. name: "Front",
  28962. image: {
  28963. source: "./media/characters/neapolitan-ananassa/front.svg",
  28964. extra: 2903 / 2736,
  28965. bottom: 0 / 2903
  28966. }
  28967. },
  28968. side: {
  28969. height: math.unit(15 + 5 / 12, "feet"),
  28970. weight: math.unit(4600, "lb"),
  28971. name: "Side",
  28972. image: {
  28973. source: "./media/characters/neapolitan-ananassa/side.svg",
  28974. extra: 2925 / 2719,
  28975. bottom: 0 / 2925
  28976. }
  28977. },
  28978. back: {
  28979. height: math.unit(15 + 5 / 12, "feet"),
  28980. weight: math.unit(4600, "lb"),
  28981. name: "Back",
  28982. image: {
  28983. source: "./media/characters/neapolitan-ananassa/back.svg",
  28984. extra: 2903 / 2736,
  28985. bottom: 0 / 2903
  28986. }
  28987. },
  28988. },
  28989. [
  28990. {
  28991. name: "Normal",
  28992. height: math.unit(15 + 5 / 12, "feet"),
  28993. default: true
  28994. },
  28995. {
  28996. name: "Post-Millenium",
  28997. height: math.unit(35 + 5 / 12, "feet")
  28998. },
  28999. {
  29000. name: "Post-Era",
  29001. height: math.unit(450 + 5 / 12, "feet")
  29002. },
  29003. ]
  29004. ))
  29005. characterMakers.push(() => makeCharacter(
  29006. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29007. {
  29008. front: {
  29009. height: math.unit(300, "meters"),
  29010. weight: math.unit(125000, "tonnes"),
  29011. name: "Front",
  29012. image: {
  29013. source: "./media/characters/pazuzu/front.svg",
  29014. extra: 877 / 794,
  29015. bottom: 47 / 924
  29016. }
  29017. },
  29018. },
  29019. [
  29020. {
  29021. name: "Macro",
  29022. height: math.unit(300, "meters"),
  29023. default: true
  29024. },
  29025. ]
  29026. ))
  29027. characterMakers.push(() => makeCharacter(
  29028. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29029. {
  29030. side: {
  29031. height: math.unit(10 + 7 / 12, "feet"),
  29032. weight: math.unit(2.5, "tons"),
  29033. name: "Side",
  29034. image: {
  29035. source: "./media/characters/aasha/side.svg",
  29036. extra: 1345 / 1245,
  29037. bottom: 111 / 1456
  29038. }
  29039. },
  29040. back: {
  29041. height: math.unit(10 + 7 / 12, "feet"),
  29042. weight: math.unit(2.5, "tons"),
  29043. name: "Back",
  29044. image: {
  29045. source: "./media/characters/aasha/back.svg",
  29046. extra: 1133 / 1057,
  29047. bottom: 257 / 1390
  29048. }
  29049. },
  29050. },
  29051. [
  29052. {
  29053. name: "Normal",
  29054. height: math.unit(10 + 7 / 12, "feet"),
  29055. default: true
  29056. },
  29057. ]
  29058. ))
  29059. characterMakers.push(() => makeCharacter(
  29060. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29061. {
  29062. front: {
  29063. height: math.unit(6 + 3 / 12, "feet"),
  29064. name: "Front",
  29065. image: {
  29066. source: "./media/characters/nevan/front.svg",
  29067. extra: 704 / 704,
  29068. bottom: 28 / 732
  29069. }
  29070. },
  29071. back: {
  29072. height: math.unit(6 + 3 / 12, "feet"),
  29073. name: "Back",
  29074. image: {
  29075. source: "./media/characters/nevan/back.svg",
  29076. extra: 714 / 714,
  29077. bottom: 21 / 735
  29078. }
  29079. },
  29080. frontFlaccid: {
  29081. height: math.unit(6 + 3 / 12, "feet"),
  29082. name: "Front (Flaccid)",
  29083. image: {
  29084. source: "./media/characters/nevan/front-flaccid.svg",
  29085. extra: 704 / 704,
  29086. bottom: 28 / 732
  29087. }
  29088. },
  29089. frontErect: {
  29090. height: math.unit(6 + 3 / 12, "feet"),
  29091. name: "Front (Erect)",
  29092. image: {
  29093. source: "./media/characters/nevan/front-erect.svg",
  29094. extra: 704 / 704,
  29095. bottom: 28 / 732
  29096. }
  29097. },
  29098. backFlaccid: {
  29099. height: math.unit(6 + 3 / 12, "feet"),
  29100. name: "Back (Flaccid)",
  29101. image: {
  29102. source: "./media/characters/nevan/back-flaccid.svg",
  29103. extra: 714 / 714,
  29104. bottom: 21 / 735
  29105. }
  29106. },
  29107. },
  29108. [
  29109. {
  29110. name: "Normal",
  29111. height: math.unit(6 + 3 / 12, "feet"),
  29112. default: true
  29113. },
  29114. ]
  29115. ))
  29116. characterMakers.push(() => makeCharacter(
  29117. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29118. {
  29119. front: {
  29120. height: math.unit(4, "feet"),
  29121. name: "Front",
  29122. image: {
  29123. source: "./media/characters/arhan/front.svg",
  29124. extra: 3368 / 3133,
  29125. bottom: 0 / 3368
  29126. }
  29127. },
  29128. side: {
  29129. height: math.unit(4, "feet"),
  29130. name: "Side",
  29131. image: {
  29132. source: "./media/characters/arhan/side.svg",
  29133. extra: 3347 / 3105,
  29134. bottom: 0 / 3347
  29135. }
  29136. },
  29137. tongue: {
  29138. height: math.unit(1.42, "feet"),
  29139. name: "Tongue",
  29140. image: {
  29141. source: "./media/characters/arhan/tongue.svg"
  29142. }
  29143. },
  29144. head: {
  29145. height: math.unit(0.85, "feet"),
  29146. name: "Head",
  29147. image: {
  29148. source: "./media/characters/arhan/head.svg"
  29149. }
  29150. },
  29151. },
  29152. [
  29153. {
  29154. name: "Normal",
  29155. height: math.unit(4, "feet"),
  29156. default: true
  29157. },
  29158. ]
  29159. ))
  29160. characterMakers.push(() => makeCharacter(
  29161. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29162. {
  29163. front: {
  29164. height: math.unit(5 + 7.5 / 12, "feet"),
  29165. weight: math.unit(120, "lb"),
  29166. name: "Front",
  29167. image: {
  29168. source: "./media/characters/digi-duncan/front.svg",
  29169. extra: 330 / 326,
  29170. bottom: 16 / 346
  29171. }
  29172. },
  29173. side: {
  29174. height: math.unit(5 + 7.5 / 12, "feet"),
  29175. weight: math.unit(120, "lb"),
  29176. name: "Side",
  29177. image: {
  29178. source: "./media/characters/digi-duncan/side.svg",
  29179. extra: 341 / 337,
  29180. bottom: 1 / 342
  29181. }
  29182. },
  29183. back: {
  29184. height: math.unit(5 + 7.5 / 12, "feet"),
  29185. weight: math.unit(120, "lb"),
  29186. name: "Back",
  29187. image: {
  29188. source: "./media/characters/digi-duncan/back.svg",
  29189. extra: 330 / 326,
  29190. bottom: 12 / 342
  29191. }
  29192. },
  29193. },
  29194. [
  29195. {
  29196. name: "Speck",
  29197. height: math.unit(0.25, "mm")
  29198. },
  29199. {
  29200. name: "Micro",
  29201. height: math.unit(5, "mm")
  29202. },
  29203. {
  29204. name: "Tiny",
  29205. height: math.unit(0.5, "inches"),
  29206. default: true
  29207. },
  29208. {
  29209. name: "Human",
  29210. height: math.unit(5 + 7.5 / 12, "feet")
  29211. },
  29212. {
  29213. name: "Minigiant",
  29214. height: math.unit(8 + 5.25, "feet")
  29215. },
  29216. {
  29217. name: "Giant",
  29218. height: math.unit(2000, "feet")
  29219. },
  29220. {
  29221. name: "Mega",
  29222. height: math.unit(371.1, "miles")
  29223. },
  29224. ]
  29225. ))
  29226. characterMakers.push(() => makeCharacter(
  29227. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29228. {
  29229. front: {
  29230. height: math.unit(2, "meters"),
  29231. weight: math.unit(350, "kg"),
  29232. name: "Front",
  29233. image: {
  29234. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29235. extra: 898 / 838,
  29236. bottom: 9 / 907
  29237. }
  29238. },
  29239. },
  29240. [
  29241. {
  29242. name: "Micro",
  29243. height: math.unit(8, "meters")
  29244. },
  29245. {
  29246. name: "Normal",
  29247. height: math.unit(50, "meters"),
  29248. default: true
  29249. },
  29250. {
  29251. name: "Macro",
  29252. height: math.unit(500, "meters")
  29253. },
  29254. ]
  29255. ))
  29256. characterMakers.push(() => makeCharacter(
  29257. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29258. {
  29259. front: {
  29260. height: math.unit(6 + 6 / 12, "feet"),
  29261. name: "Front",
  29262. image: {
  29263. source: "./media/characters/khardesh/front.svg",
  29264. extra: 888 / 797,
  29265. bottom: 25 / 913
  29266. }
  29267. },
  29268. },
  29269. [
  29270. {
  29271. name: "Normal",
  29272. height: math.unit(6 + 6 / 12, "feet"),
  29273. default: true
  29274. },
  29275. {
  29276. name: "Normal+",
  29277. height: math.unit(4, "meters")
  29278. },
  29279. {
  29280. name: "Macro",
  29281. height: math.unit(50, "meters")
  29282. },
  29283. {
  29284. name: "Macro+",
  29285. height: math.unit(100, "meters")
  29286. },
  29287. {
  29288. name: "Megamacro",
  29289. height: math.unit(20, "km")
  29290. },
  29291. ]
  29292. ))
  29293. characterMakers.push(() => makeCharacter(
  29294. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29295. {
  29296. front: {
  29297. height: math.unit(6, "feet"),
  29298. weight: math.unit(150, "lb"),
  29299. name: "Front",
  29300. image: {
  29301. source: "./media/characters/kosho/front.svg",
  29302. extra: 1847 / 1847,
  29303. bottom: 86 / 1933
  29304. }
  29305. },
  29306. },
  29307. [
  29308. {
  29309. name: "Second-stage micro",
  29310. height: math.unit(0.5, "inches")
  29311. },
  29312. {
  29313. name: "First-stage micro",
  29314. height: math.unit(6, "inches")
  29315. },
  29316. {
  29317. name: "Normal",
  29318. height: math.unit(6, "feet"),
  29319. default: true
  29320. },
  29321. {
  29322. name: "First-stage macro",
  29323. height: math.unit(72, "feet")
  29324. },
  29325. {
  29326. name: "Second-stage macro",
  29327. height: math.unit(864, "feet")
  29328. },
  29329. ]
  29330. ))
  29331. characterMakers.push(() => makeCharacter(
  29332. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29333. {
  29334. normal: {
  29335. height: math.unit(4 + 6 / 12, "feet"),
  29336. name: "Normal",
  29337. image: {
  29338. source: "./media/characters/hydra/normal.svg",
  29339. extra: 2833 / 2634,
  29340. bottom: 68 / 2901
  29341. }
  29342. },
  29343. smol: {
  29344. height: math.unit(0.705, "inches"),
  29345. name: "Smol",
  29346. image: {
  29347. source: "./media/characters/hydra/smol.svg",
  29348. extra: 2715 / 2540,
  29349. bottom: 0 / 2715
  29350. }
  29351. },
  29352. },
  29353. [
  29354. {
  29355. name: "Normal",
  29356. height: math.unit(4 + 6 / 12, "feet"),
  29357. default: true
  29358. }
  29359. ]
  29360. ))
  29361. characterMakers.push(() => makeCharacter(
  29362. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29363. {
  29364. front: {
  29365. height: math.unit(0.6, "cm"),
  29366. name: "Front",
  29367. image: {
  29368. source: "./media/characters/daz/front.svg",
  29369. extra: 1682 / 1164,
  29370. bottom: 42 / 1724
  29371. }
  29372. },
  29373. },
  29374. [
  29375. {
  29376. name: "Normal",
  29377. height: math.unit(0.6, "cm"),
  29378. default: true
  29379. },
  29380. ]
  29381. ))
  29382. characterMakers.push(() => makeCharacter(
  29383. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29384. {
  29385. front: {
  29386. height: math.unit(6, "feet"),
  29387. weight: math.unit(235, "lb"),
  29388. name: "Front",
  29389. image: {
  29390. source: "./media/characters/theo-pangolin/front.svg",
  29391. extra: 1996 / 1969,
  29392. bottom: 115 / 2111
  29393. }
  29394. },
  29395. back: {
  29396. height: math.unit(6, "feet"),
  29397. weight: math.unit(235, "lb"),
  29398. name: "Back",
  29399. image: {
  29400. source: "./media/characters/theo-pangolin/back.svg",
  29401. extra: 1979 / 1979,
  29402. bottom: 40 / 2019
  29403. }
  29404. },
  29405. feral: {
  29406. height: math.unit(2, "feet"),
  29407. weight: math.unit(30, "lb"),
  29408. name: "Feral",
  29409. image: {
  29410. source: "./media/characters/theo-pangolin/feral.svg",
  29411. extra: 803 / 791,
  29412. bottom: 181 / 984
  29413. }
  29414. },
  29415. footFive: {
  29416. height: math.unit(1.43, "feet"),
  29417. name: "Foot (Five Toes)",
  29418. image: {
  29419. source: "./media/characters/theo-pangolin/foot-five.svg"
  29420. }
  29421. },
  29422. footFour: {
  29423. height: math.unit(1.43, "feet"),
  29424. name: "Foot (Four Toes)",
  29425. image: {
  29426. source: "./media/characters/theo-pangolin/foot-four.svg"
  29427. }
  29428. },
  29429. handFour: {
  29430. height: math.unit(0.81, "feet"),
  29431. name: "Hand (Four Fingers)",
  29432. image: {
  29433. source: "./media/characters/theo-pangolin/hand-four.svg"
  29434. }
  29435. },
  29436. handThree: {
  29437. height: math.unit(0.81, "feet"),
  29438. name: "Hand (Three Fingers)",
  29439. image: {
  29440. source: "./media/characters/theo-pangolin/hand-three.svg"
  29441. }
  29442. },
  29443. headFront: {
  29444. height: math.unit(1.37, "feet"),
  29445. name: "Head (Front)",
  29446. image: {
  29447. source: "./media/characters/theo-pangolin/head-front.svg"
  29448. }
  29449. },
  29450. headSide: {
  29451. height: math.unit(1.43, "feet"),
  29452. name: "Head (Side)",
  29453. image: {
  29454. source: "./media/characters/theo-pangolin/head-side.svg"
  29455. }
  29456. },
  29457. tongue: {
  29458. height: math.unit(2.29, "feet"),
  29459. name: "Tongue",
  29460. image: {
  29461. source: "./media/characters/theo-pangolin/tongue.svg"
  29462. }
  29463. },
  29464. },
  29465. [
  29466. {
  29467. name: "Normal",
  29468. height: math.unit(6, "feet")
  29469. },
  29470. {
  29471. name: "Macro",
  29472. height: math.unit(400, "feet"),
  29473. default: true
  29474. },
  29475. ]
  29476. ))
  29477. characterMakers.push(() => makeCharacter(
  29478. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29479. {
  29480. front: {
  29481. height: math.unit(6, "inches"),
  29482. weight: math.unit(0.036, "kg"),
  29483. name: "Front",
  29484. image: {
  29485. source: "./media/characters/renée/front.svg",
  29486. extra: 900 / 886,
  29487. bottom: 8 / 908
  29488. }
  29489. },
  29490. },
  29491. [
  29492. {
  29493. name: "Nano",
  29494. height: math.unit(1, "nm")
  29495. },
  29496. {
  29497. name: "Micro",
  29498. height: math.unit(1, "mm")
  29499. },
  29500. {
  29501. name: "Normal",
  29502. height: math.unit(6, "inches")
  29503. },
  29504. {
  29505. name: "Macro",
  29506. height: math.unit(2000, "feet"),
  29507. default: true
  29508. },
  29509. {
  29510. name: "Megamacro",
  29511. height: math.unit(2, "km")
  29512. },
  29513. {
  29514. name: "Gigamacro",
  29515. height: math.unit(2000, "km")
  29516. },
  29517. {
  29518. name: "Teramacro",
  29519. height: math.unit(250000, "km")
  29520. },
  29521. ]
  29522. ))
  29523. characterMakers.push(() => makeCharacter(
  29524. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29525. {
  29526. front: {
  29527. height: math.unit(4, "meters"),
  29528. weight: math.unit(150, "kg"),
  29529. name: "Front",
  29530. image: {
  29531. source: "./media/characters/caledvwlch/front.svg",
  29532. extra: 1760 / 1551,
  29533. bottom: 28 / 1788
  29534. }
  29535. },
  29536. side: {
  29537. height: math.unit(4, "meters"),
  29538. weight: math.unit(150, "kg"),
  29539. name: "Side",
  29540. image: {
  29541. source: "./media/characters/caledvwlch/side.svg",
  29542. extra: 1605 / 1536,
  29543. bottom: 31 / 1636
  29544. }
  29545. },
  29546. back: {
  29547. height: math.unit(4, "meters"),
  29548. weight: math.unit(150, "kg"),
  29549. name: "Back",
  29550. image: {
  29551. source: "./media/characters/caledvwlch/back.svg",
  29552. extra: 1635 / 1565,
  29553. bottom: 27 / 1662
  29554. }
  29555. },
  29556. },
  29557. [
  29558. {
  29559. name: "\"Incognito\"",
  29560. height: math.unit(4, "meters")
  29561. },
  29562. {
  29563. name: "Small rampage",
  29564. height: math.unit(600, "meters")
  29565. },
  29566. {
  29567. name: "Mega",
  29568. height: math.unit(30, "km")
  29569. },
  29570. {
  29571. name: "Home-size",
  29572. height: math.unit(50, "km"),
  29573. default: true
  29574. },
  29575. {
  29576. name: "Giga",
  29577. height: math.unit(300, "km")
  29578. },
  29579. {
  29580. name: "Lounging",
  29581. height: math.unit(11000, "km")
  29582. },
  29583. {
  29584. name: "Planet snacking",
  29585. height: math.unit(2000000, "km")
  29586. },
  29587. ]
  29588. ))
  29589. characterMakers.push(() => makeCharacter(
  29590. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29591. {
  29592. front: {
  29593. height: math.unit(6, "feet"),
  29594. weight: math.unit(215, "lb"),
  29595. name: "Front",
  29596. image: {
  29597. source: "./media/characters/sapphire-svell/front.svg",
  29598. extra: 495 / 455,
  29599. bottom: 20 / 515
  29600. }
  29601. },
  29602. back: {
  29603. height: math.unit(6, "feet"),
  29604. weight: math.unit(216, "lb"),
  29605. name: "Back",
  29606. image: {
  29607. source: "./media/characters/sapphire-svell/back.svg",
  29608. extra: 497 / 477,
  29609. bottom: 7 / 504
  29610. }
  29611. },
  29612. maw: {
  29613. height: math.unit(1.57, "feet"),
  29614. name: "Maw",
  29615. image: {
  29616. source: "./media/characters/sapphire-svell/maw.svg"
  29617. }
  29618. },
  29619. foot: {
  29620. height: math.unit(1.07, "feet"),
  29621. name: "Foot",
  29622. image: {
  29623. source: "./media/characters/sapphire-svell/foot.svg"
  29624. }
  29625. },
  29626. toering: {
  29627. height: math.unit(1.7, "inch"),
  29628. name: "Toering",
  29629. image: {
  29630. source: "./media/characters/sapphire-svell/toering.svg"
  29631. }
  29632. },
  29633. },
  29634. [
  29635. {
  29636. name: "Normal",
  29637. height: math.unit(300, "feet"),
  29638. default: true
  29639. },
  29640. {
  29641. name: "Augmented",
  29642. height: math.unit(1250, "feet")
  29643. },
  29644. {
  29645. name: "Unleashed",
  29646. height: math.unit(3000, "feet")
  29647. },
  29648. ]
  29649. ))
  29650. characterMakers.push(() => makeCharacter(
  29651. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29652. {
  29653. side: {
  29654. height: math.unit(2 + 3 / 12, "feet"),
  29655. weight: math.unit(110, "lb"),
  29656. name: "Side",
  29657. image: {
  29658. source: "./media/characters/glitch-flux/side.svg",
  29659. extra: 997 / 805,
  29660. bottom: 20 / 1017
  29661. }
  29662. },
  29663. },
  29664. [
  29665. {
  29666. name: "Normal",
  29667. height: math.unit(2 + 3 / 12, "feet"),
  29668. default: true
  29669. },
  29670. ]
  29671. ))
  29672. characterMakers.push(() => makeCharacter(
  29673. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29674. {
  29675. front: {
  29676. height: math.unit(4, "meters"),
  29677. name: "Front",
  29678. image: {
  29679. source: "./media/characters/mid/front.svg",
  29680. extra: 507 / 476,
  29681. bottom: 17 / 524
  29682. }
  29683. },
  29684. back: {
  29685. height: math.unit(4, "meters"),
  29686. name: "Back",
  29687. image: {
  29688. source: "./media/characters/mid/back.svg",
  29689. extra: 519 / 487,
  29690. bottom: 7 / 526
  29691. }
  29692. },
  29693. stuck: {
  29694. height: math.unit(2.2, "meters"),
  29695. name: "Stuck",
  29696. image: {
  29697. source: "./media/characters/mid/stuck.svg",
  29698. extra: 1951 / 1869,
  29699. bottom: 88 / 2039
  29700. }
  29701. }
  29702. },
  29703. [
  29704. {
  29705. name: "Normal",
  29706. height: math.unit(4, "meters"),
  29707. default: true
  29708. },
  29709. {
  29710. name: "Big",
  29711. height: math.unit(10, "meters")
  29712. },
  29713. {
  29714. name: "Macro",
  29715. height: math.unit(800, "meters")
  29716. },
  29717. {
  29718. name: "Megamacro",
  29719. height: math.unit(100, "km")
  29720. },
  29721. {
  29722. name: "Overgrown",
  29723. height: math.unit(1, "parsec")
  29724. },
  29725. ]
  29726. ))
  29727. characterMakers.push(() => makeCharacter(
  29728. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29729. {
  29730. front: {
  29731. height: math.unit(2.5, "meters"),
  29732. weight: math.unit(225, "kg"),
  29733. name: "Front",
  29734. image: {
  29735. source: "./media/characters/iris/front.svg",
  29736. extra: 3348 / 3251,
  29737. bottom: 205 / 3553
  29738. }
  29739. },
  29740. maw: {
  29741. height: math.unit(0.56, "meter"),
  29742. name: "Maw",
  29743. image: {
  29744. source: "./media/characters/iris/maw.svg"
  29745. }
  29746. },
  29747. },
  29748. [
  29749. {
  29750. name: "Mewter cat",
  29751. height: math.unit(1.2, "meters")
  29752. },
  29753. {
  29754. name: "Minimacro",
  29755. height: math.unit(2.5, "meters"),
  29756. default: true
  29757. },
  29758. {
  29759. name: "Macro",
  29760. height: math.unit(180, "meters")
  29761. },
  29762. {
  29763. name: "Megamacro",
  29764. height: math.unit(2746, "meters")
  29765. },
  29766. ]
  29767. ))
  29768. characterMakers.push(() => makeCharacter(
  29769. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29770. {
  29771. front: {
  29772. height: math.unit(6, "feet"),
  29773. weight: math.unit(135, "lb"),
  29774. name: "Front",
  29775. image: {
  29776. source: "./media/characters/axel/front.svg",
  29777. extra: 908 / 908,
  29778. bottom: 58 / 966
  29779. }
  29780. },
  29781. side: {
  29782. height: math.unit(6, "feet"),
  29783. weight: math.unit(135, "lb"),
  29784. name: "Side",
  29785. image: {
  29786. source: "./media/characters/axel/side.svg",
  29787. extra: 958 / 958,
  29788. bottom: 11 / 969
  29789. }
  29790. },
  29791. back: {
  29792. height: math.unit(6, "feet"),
  29793. weight: math.unit(135, "lb"),
  29794. name: "Back",
  29795. image: {
  29796. source: "./media/characters/axel/back.svg",
  29797. extra: 887 / 887,
  29798. bottom: 34 / 921
  29799. }
  29800. },
  29801. head: {
  29802. height: math.unit(1.07, "feet"),
  29803. name: "Head",
  29804. image: {
  29805. source: "./media/characters/axel/head.svg"
  29806. }
  29807. },
  29808. beak: {
  29809. height: math.unit(1.4, "feet"),
  29810. name: "Beak",
  29811. image: {
  29812. source: "./media/characters/axel/beak.svg"
  29813. }
  29814. },
  29815. beakSide: {
  29816. height: math.unit(1.4, "feet"),
  29817. name: "Beak Side",
  29818. image: {
  29819. source: "./media/characters/axel/beak-side.svg"
  29820. }
  29821. },
  29822. sheath: {
  29823. height: math.unit(0.5, "feet"),
  29824. name: "Sheath",
  29825. image: {
  29826. source: "./media/characters/axel/sheath.svg"
  29827. }
  29828. },
  29829. dick: {
  29830. height: math.unit(0.98, "feet"),
  29831. name: "Dick",
  29832. image: {
  29833. source: "./media/characters/axel/dick.svg"
  29834. }
  29835. },
  29836. },
  29837. [
  29838. {
  29839. name: "Macro",
  29840. height: math.unit(68, "meters"),
  29841. default: true
  29842. },
  29843. ]
  29844. ))
  29845. characterMakers.push(() => makeCharacter(
  29846. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29847. {
  29848. front: {
  29849. height: math.unit(3.5, "meters"),
  29850. weight: math.unit(1200, "kg"),
  29851. name: "Front",
  29852. image: {
  29853. source: "./media/characters/joanna/front.svg",
  29854. extra: 1596 / 1488,
  29855. bottom: 29 / 1625
  29856. }
  29857. },
  29858. back: {
  29859. height: math.unit(3.5, "meters"),
  29860. weight: math.unit(1200, "kg"),
  29861. name: "Back",
  29862. image: {
  29863. source: "./media/characters/joanna/back.svg",
  29864. extra: 1594 / 1495,
  29865. bottom: 26 / 1620
  29866. }
  29867. },
  29868. frontShorts: {
  29869. height: math.unit(3.5, "meters"),
  29870. weight: math.unit(1200, "kg"),
  29871. name: "Front (Shorts)",
  29872. image: {
  29873. source: "./media/characters/joanna/front-shorts.svg",
  29874. extra: 1596 / 1488,
  29875. bottom: 29 / 1625
  29876. }
  29877. },
  29878. frontBiker: {
  29879. height: math.unit(3.5, "meters"),
  29880. weight: math.unit(1200, "kg"),
  29881. name: "Front (Biker)",
  29882. image: {
  29883. source: "./media/characters/joanna/front-biker.svg",
  29884. extra: 1596 / 1488,
  29885. bottom: 29 / 1625
  29886. }
  29887. },
  29888. backBiker: {
  29889. height: math.unit(3.5, "meters"),
  29890. weight: math.unit(1200, "kg"),
  29891. name: "Back (Biker)",
  29892. image: {
  29893. source: "./media/characters/joanna/back-biker.svg",
  29894. extra: 1594 / 1495,
  29895. bottom: 88 / 1682
  29896. }
  29897. },
  29898. bikeLeft: {
  29899. height: math.unit(2.4, "meters"),
  29900. weight: math.unit(1600, "kg"),
  29901. name: "Bike (Left)",
  29902. image: {
  29903. source: "./media/characters/joanna/bike-left.svg",
  29904. extra: 720 / 720,
  29905. bottom: 8 / 728
  29906. }
  29907. },
  29908. bikeRight: {
  29909. height: math.unit(2.4, "meters"),
  29910. weight: math.unit(1600, "kg"),
  29911. name: "Bike (Right)",
  29912. image: {
  29913. source: "./media/characters/joanna/bike-right.svg",
  29914. extra: 720 / 720,
  29915. bottom: 8 / 728
  29916. }
  29917. },
  29918. },
  29919. [
  29920. {
  29921. name: "Incognito",
  29922. height: math.unit(3.5, "meters")
  29923. },
  29924. {
  29925. name: "Casual Big",
  29926. height: math.unit(200, "meters")
  29927. },
  29928. {
  29929. name: "Macro",
  29930. height: math.unit(600, "meters")
  29931. },
  29932. {
  29933. name: "Original",
  29934. height: math.unit(20, "km"),
  29935. default: true
  29936. },
  29937. {
  29938. name: "Giga",
  29939. height: math.unit(400, "km")
  29940. },
  29941. {
  29942. name: "Lounging",
  29943. height: math.unit(1500, "km")
  29944. },
  29945. {
  29946. name: "Planetary",
  29947. height: math.unit(200000, "km")
  29948. },
  29949. ]
  29950. ))
  29951. characterMakers.push(() => makeCharacter(
  29952. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29953. {
  29954. front: {
  29955. height: math.unit(6, "feet"),
  29956. weight: math.unit(150, "lb"),
  29957. name: "Front",
  29958. image: {
  29959. source: "./media/characters/hugo-sigil/front.svg",
  29960. extra: 522 / 500,
  29961. bottom: 2 / 524
  29962. }
  29963. },
  29964. back: {
  29965. height: math.unit(6, "feet"),
  29966. weight: math.unit(150, "lb"),
  29967. name: "Back",
  29968. image: {
  29969. source: "./media/characters/hugo-sigil/back.svg",
  29970. extra: 519 / 495,
  29971. bottom: 5 / 524
  29972. }
  29973. },
  29974. maw: {
  29975. height: math.unit(1.4, "feet"),
  29976. weight: math.unit(150, "lb"),
  29977. name: "Maw",
  29978. image: {
  29979. source: "./media/characters/hugo-sigil/maw.svg"
  29980. }
  29981. },
  29982. feet: {
  29983. height: math.unit(1.56, "feet"),
  29984. weight: math.unit(150, "lb"),
  29985. name: "Feet",
  29986. image: {
  29987. source: "./media/characters/hugo-sigil/feet.svg",
  29988. extra: 177 / 177,
  29989. bottom: 12 / 189
  29990. }
  29991. },
  29992. },
  29993. [
  29994. {
  29995. name: "Normal",
  29996. height: math.unit(6, "feet")
  29997. },
  29998. {
  29999. name: "Macro",
  30000. height: math.unit(200, "feet"),
  30001. default: true
  30002. },
  30003. ]
  30004. ))
  30005. characterMakers.push(() => makeCharacter(
  30006. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30007. {
  30008. front: {
  30009. height: math.unit(6, "feet"),
  30010. weight: math.unit(150, "lb"),
  30011. name: "Front",
  30012. image: {
  30013. source: "./media/characters/peri/front.svg",
  30014. extra: 2354 / 2233,
  30015. bottom: 49 / 2403
  30016. }
  30017. },
  30018. },
  30019. [
  30020. {
  30021. name: "Really Small",
  30022. height: math.unit(1, "nm")
  30023. },
  30024. {
  30025. name: "Micro",
  30026. height: math.unit(4, "inches")
  30027. },
  30028. {
  30029. name: "Normal",
  30030. height: math.unit(7, "inches"),
  30031. default: true
  30032. },
  30033. {
  30034. name: "Macro",
  30035. height: math.unit(400, "feet")
  30036. },
  30037. {
  30038. name: "Megamacro",
  30039. height: math.unit(100, "miles")
  30040. },
  30041. ]
  30042. ))
  30043. characterMakers.push(() => makeCharacter(
  30044. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30045. {
  30046. frontSlim: {
  30047. height: math.unit(7, "feet"),
  30048. name: "Front (Slim)",
  30049. image: {
  30050. source: "./media/characters/issilora/front-slim.svg",
  30051. extra: 529 / 449,
  30052. bottom: 53 / 582
  30053. }
  30054. },
  30055. sideSlim: {
  30056. height: math.unit(7, "feet"),
  30057. name: "Side (Slim)",
  30058. image: {
  30059. source: "./media/characters/issilora/side-slim.svg",
  30060. extra: 570 / 480,
  30061. bottom: 30 / 600
  30062. }
  30063. },
  30064. backSlim: {
  30065. height: math.unit(7, "feet"),
  30066. name: "Back (Slim)",
  30067. image: {
  30068. source: "./media/characters/issilora/back-slim.svg",
  30069. extra: 537 / 455,
  30070. bottom: 46 / 583
  30071. }
  30072. },
  30073. frontBuff: {
  30074. height: math.unit(7, "feet"),
  30075. name: "Front (Buff)",
  30076. image: {
  30077. source: "./media/characters/issilora/front-buff.svg",
  30078. extra: 2310 / 2035,
  30079. bottom: 335 / 2645
  30080. }
  30081. },
  30082. head: {
  30083. height: math.unit(1.94, "feet"),
  30084. name: "Head",
  30085. image: {
  30086. source: "./media/characters/issilora/head.svg"
  30087. }
  30088. },
  30089. },
  30090. [
  30091. {
  30092. name: "Minimum",
  30093. height: math.unit(7, "feet")
  30094. },
  30095. {
  30096. name: "Comfortable",
  30097. height: math.unit(17, "feet")
  30098. },
  30099. {
  30100. name: "Fun Size",
  30101. height: math.unit(47, "feet")
  30102. },
  30103. {
  30104. name: "Natural Macro",
  30105. height: math.unit(137, "feet"),
  30106. default: true
  30107. },
  30108. {
  30109. name: "Maximum Kaiju",
  30110. height: math.unit(397, "feet")
  30111. },
  30112. ]
  30113. ))
  30114. characterMakers.push(() => makeCharacter(
  30115. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30116. {
  30117. front: {
  30118. height: math.unit(50 + 9/12, "feet"),
  30119. weight: math.unit(32.8, "tons"),
  30120. name: "Front",
  30121. image: {
  30122. source: "./media/characters/irb'iiritaahn/front.svg",
  30123. extra: 1878/1826,
  30124. bottom: 326/2204
  30125. }
  30126. },
  30127. back: {
  30128. height: math.unit(50 + 9/12, "feet"),
  30129. weight: math.unit(32.8, "tons"),
  30130. name: "Back",
  30131. image: {
  30132. source: "./media/characters/irb'iiritaahn/back.svg",
  30133. extra: 2052/2018,
  30134. bottom: 152/2204
  30135. }
  30136. },
  30137. head: {
  30138. height: math.unit(12.86, "feet"),
  30139. name: "Head",
  30140. image: {
  30141. source: "./media/characters/irb'iiritaahn/head.svg"
  30142. }
  30143. },
  30144. maw: {
  30145. height: math.unit(9.66, "feet"),
  30146. name: "Maw",
  30147. image: {
  30148. source: "./media/characters/irb'iiritaahn/maw.svg"
  30149. }
  30150. },
  30151. frontDick: {
  30152. height: math.unit(8.78461, "feet"),
  30153. name: "Front Dick",
  30154. image: {
  30155. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30156. }
  30157. },
  30158. rearDick: {
  30159. height: math.unit(8.78461, "feet"),
  30160. name: "Rear Dick",
  30161. image: {
  30162. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30163. }
  30164. },
  30165. rearDickUnfolded: {
  30166. height: math.unit(8.78, "feet"),
  30167. name: "Rear Dick (Unfolded)",
  30168. image: {
  30169. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30170. }
  30171. },
  30172. wings: {
  30173. height: math.unit(43, "feet"),
  30174. name: "Wings",
  30175. image: {
  30176. source: "./media/characters/irb'iiritaahn/wings.svg"
  30177. }
  30178. },
  30179. },
  30180. [
  30181. {
  30182. name: "Macro",
  30183. height: math.unit(50 + 9/12, "feet"),
  30184. default: true
  30185. },
  30186. ]
  30187. ))
  30188. characterMakers.push(() => makeCharacter(
  30189. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30190. {
  30191. front: {
  30192. height: math.unit(205, "cm"),
  30193. weight: math.unit(102, "kg"),
  30194. name: "Front",
  30195. image: {
  30196. source: "./media/characters/irbisgreif/front.svg",
  30197. extra: 785/706,
  30198. bottom: 13/798
  30199. }
  30200. },
  30201. back: {
  30202. height: math.unit(205, "cm"),
  30203. weight: math.unit(102, "kg"),
  30204. name: "Back",
  30205. image: {
  30206. source: "./media/characters/irbisgreif/back.svg",
  30207. extra: 713/701,
  30208. bottom: 26/739
  30209. }
  30210. },
  30211. frontDressed: {
  30212. height: math.unit(216, "cm"),
  30213. weight: math.unit(102, "kg"),
  30214. name: "Front-dressed",
  30215. image: {
  30216. source: "./media/characters/irbisgreif/front-dressed.svg",
  30217. extra: 902/776,
  30218. bottom: 14/916
  30219. }
  30220. },
  30221. sideDressed: {
  30222. height: math.unit(195, "cm"),
  30223. weight: math.unit(102, "kg"),
  30224. name: "Side-dressed",
  30225. image: {
  30226. source: "./media/characters/irbisgreif/side-dressed.svg",
  30227. extra: 788/688,
  30228. bottom: 21/809
  30229. }
  30230. },
  30231. backDressed: {
  30232. height: math.unit(216, "cm"),
  30233. weight: math.unit(102, "kg"),
  30234. name: "Back-dressed",
  30235. image: {
  30236. source: "./media/characters/irbisgreif/back-dressed.svg",
  30237. extra: 901/783,
  30238. bottom: 10/911
  30239. }
  30240. },
  30241. dick: {
  30242. height: math.unit(0.49, "feet"),
  30243. name: "Dick",
  30244. image: {
  30245. source: "./media/characters/irbisgreif/dick.svg"
  30246. }
  30247. },
  30248. wingTop: {
  30249. height: math.unit(1.93 , "feet"),
  30250. name: "Wing-top",
  30251. image: {
  30252. source: "./media/characters/irbisgreif/wing-top.svg"
  30253. }
  30254. },
  30255. wingBottom: {
  30256. height: math.unit(1.93 , "feet"),
  30257. name: "Wing-bottom",
  30258. image: {
  30259. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30260. }
  30261. },
  30262. },
  30263. [
  30264. {
  30265. name: "Normal",
  30266. height: math.unit(216, "cm"),
  30267. default: true
  30268. },
  30269. ]
  30270. ))
  30271. characterMakers.push(() => makeCharacter(
  30272. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30273. {
  30274. front: {
  30275. height: math.unit(6, "feet"),
  30276. weight: math.unit(150, "lb"),
  30277. name: "Front",
  30278. image: {
  30279. source: "./media/characters/pride/front.svg",
  30280. extra: 1299/1230,
  30281. bottom: 18/1317
  30282. }
  30283. },
  30284. },
  30285. [
  30286. {
  30287. name: "Normal",
  30288. height: math.unit(7, "feet")
  30289. },
  30290. {
  30291. name: "Mini-macro",
  30292. height: math.unit(11, "feet")
  30293. },
  30294. {
  30295. name: "Macro",
  30296. height: math.unit(15, "meters"),
  30297. default: true
  30298. },
  30299. {
  30300. name: "Macro+",
  30301. height: math.unit(40, "meters")
  30302. },
  30303. ]
  30304. ))
  30305. characterMakers.push(() => makeCharacter(
  30306. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30307. {
  30308. front: {
  30309. height: math.unit(4 + 2 / 12, "feet"),
  30310. weight: math.unit(95, "lb"),
  30311. name: "Front",
  30312. image: {
  30313. source: "./media/characters/vaelophis-nyx/front.svg",
  30314. extra: 2532/2330,
  30315. bottom: 0/2532
  30316. }
  30317. },
  30318. back: {
  30319. height: math.unit(4 + 2 / 12, "feet"),
  30320. weight: math.unit(95, "lb"),
  30321. name: "Back",
  30322. image: {
  30323. source: "./media/characters/vaelophis-nyx/back.svg",
  30324. extra: 2484/2361,
  30325. bottom: 0/2484
  30326. }
  30327. },
  30328. feralSide: {
  30329. height: math.unit(2 + 1/12, "feet"),
  30330. weight: math.unit(20, "lb"),
  30331. name: "Feral (Side)",
  30332. image: {
  30333. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30334. extra: 1721/1581,
  30335. bottom: 70/1791
  30336. }
  30337. },
  30338. feralLazing: {
  30339. height: math.unit(1.08, "feet"),
  30340. weight: math.unit(20, "lb"),
  30341. name: "Feral (Lazing)",
  30342. image: {
  30343. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30344. extra: 822/822,
  30345. bottom: 248/1070
  30346. }
  30347. },
  30348. ear: {
  30349. height: math.unit(0.416, "feet"),
  30350. name: "Ear",
  30351. image: {
  30352. source: "./media/characters/vaelophis-nyx/ear.svg"
  30353. }
  30354. },
  30355. eye: {
  30356. height: math.unit(0.0748, "feet"),
  30357. name: "Eye",
  30358. image: {
  30359. source: "./media/characters/vaelophis-nyx/eye.svg"
  30360. }
  30361. },
  30362. mouth: {
  30363. height: math.unit(0.378, "feet"),
  30364. name: "Mouth",
  30365. image: {
  30366. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30367. }
  30368. },
  30369. spade: {
  30370. height: math.unit(0.55, "feet"),
  30371. name: "Spade",
  30372. image: {
  30373. source: "./media/characters/vaelophis-nyx/spade.svg"
  30374. }
  30375. },
  30376. },
  30377. [
  30378. {
  30379. name: "Normal",
  30380. height: math.unit(4 + 2/12, "feet"),
  30381. default: true
  30382. },
  30383. ]
  30384. ))
  30385. characterMakers.push(() => makeCharacter(
  30386. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30387. {
  30388. front: {
  30389. height: math.unit(7, "feet"),
  30390. weight: math.unit(231, "lb"),
  30391. name: "Front",
  30392. image: {
  30393. source: "./media/characters/flux/front.svg",
  30394. extra: 919/871,
  30395. bottom: 0/919
  30396. }
  30397. },
  30398. back: {
  30399. height: math.unit(7, "feet"),
  30400. weight: math.unit(231, "lb"),
  30401. name: "Back",
  30402. image: {
  30403. source: "./media/characters/flux/back.svg",
  30404. extra: 1040/992,
  30405. bottom: 0/1040
  30406. }
  30407. },
  30408. frontDressed: {
  30409. height: math.unit(7, "feet"),
  30410. weight: math.unit(231, "lb"),
  30411. name: "Front (Dressed)",
  30412. image: {
  30413. source: "./media/characters/flux/front-dressed.svg",
  30414. extra: 919/871,
  30415. bottom: 0/919
  30416. }
  30417. },
  30418. feralSide: {
  30419. height: math.unit(5, "feet"),
  30420. weight: math.unit(150, "lb"),
  30421. name: "Feral (Side)",
  30422. image: {
  30423. source: "./media/characters/flux/feral-side.svg",
  30424. extra: 598/528,
  30425. bottom: 28/626
  30426. }
  30427. },
  30428. head: {
  30429. height: math.unit(1.585, "feet"),
  30430. name: "Head",
  30431. image: {
  30432. source: "./media/characters/flux/head.svg"
  30433. }
  30434. },
  30435. headSide: {
  30436. height: math.unit(1.74, "feet"),
  30437. name: "Head (Side)",
  30438. image: {
  30439. source: "./media/characters/flux/head-side.svg"
  30440. }
  30441. },
  30442. headSideFire: {
  30443. height: math.unit(1.76, "feet"),
  30444. name: "Head (Side, Fire)",
  30445. image: {
  30446. source: "./media/characters/flux/head-side-fire.svg"
  30447. }
  30448. },
  30449. },
  30450. [
  30451. {
  30452. name: "Normal",
  30453. height: math.unit(7, "feet"),
  30454. default: true
  30455. },
  30456. ]
  30457. ))
  30458. characterMakers.push(() => makeCharacter(
  30459. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30460. {
  30461. front: {
  30462. height: math.unit(9, "feet"),
  30463. weight: math.unit(1012, "lb"),
  30464. name: "Front",
  30465. image: {
  30466. source: "./media/characters/ulfra-lupae/front.svg",
  30467. extra: 1083/1011,
  30468. bottom: 67/1150
  30469. }
  30470. },
  30471. },
  30472. [
  30473. {
  30474. name: "Micro",
  30475. height: math.unit(6, "inches")
  30476. },
  30477. {
  30478. name: "Socializing",
  30479. height: math.unit(6 + 5/12, "feet")
  30480. },
  30481. {
  30482. name: "Normal",
  30483. height: math.unit(9, "feet"),
  30484. default: true
  30485. },
  30486. {
  30487. name: "Macro",
  30488. height: math.unit(150, "feet")
  30489. },
  30490. ]
  30491. ))
  30492. characterMakers.push(() => makeCharacter(
  30493. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30494. {
  30495. front: {
  30496. height: math.unit(5 + 2/12, "feet"),
  30497. weight: math.unit(120, "lb"),
  30498. name: "Front",
  30499. image: {
  30500. source: "./media/characters/timber/front.svg",
  30501. extra: 2814/2705,
  30502. bottom: 181/2995
  30503. }
  30504. },
  30505. },
  30506. [
  30507. {
  30508. name: "Normal",
  30509. height: math.unit(5 + 2/12, "feet"),
  30510. default: true
  30511. },
  30512. ]
  30513. ))
  30514. characterMakers.push(() => makeCharacter(
  30515. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30516. {
  30517. front: {
  30518. height: math.unit(5 + 7/12, "feet"),
  30519. weight: math.unit(220, "lb"),
  30520. name: "Front",
  30521. image: {
  30522. source: "./media/characters/nicki/front.svg",
  30523. extra: 453/419,
  30524. bottom: 7/460
  30525. }
  30526. },
  30527. frontAlt: {
  30528. height: math.unit(5 + 7/12, "feet"),
  30529. weight: math.unit(220, "lb"),
  30530. name: "Front-alt",
  30531. image: {
  30532. source: "./media/characters/nicki/front-alt.svg",
  30533. extra: 435/411,
  30534. bottom: 12/447
  30535. }
  30536. },
  30537. back: {
  30538. height: math.unit(5 + 7/12, "feet"),
  30539. weight: math.unit(220, "lb"),
  30540. name: "Back",
  30541. image: {
  30542. source: "./media/characters/nicki/back.svg",
  30543. extra: 440/413,
  30544. bottom: 19/459
  30545. }
  30546. },
  30547. taur: {
  30548. height: math.unit(7 + 6/12, "feet"),
  30549. weight: math.unit(700, "lb"),
  30550. name: "Taur",
  30551. image: {
  30552. source: "./media/characters/nicki/taur.svg",
  30553. extra: 975/773,
  30554. bottom: 0/975
  30555. }
  30556. },
  30557. frontNsfw: {
  30558. height: math.unit(5 + 7/12, "feet"),
  30559. weight: math.unit(220, "lb"),
  30560. name: "Front (NSFW)",
  30561. image: {
  30562. source: "./media/characters/nicki/front-nsfw.svg",
  30563. extra: 453/419,
  30564. bottom: 7/460
  30565. }
  30566. },
  30567. frontNsfwAlt: {
  30568. height: math.unit(5 + 7/12, "feet"),
  30569. weight: math.unit(220, "lb"),
  30570. name: "Front (Alt, NSFW)",
  30571. image: {
  30572. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30573. extra: 435/411,
  30574. bottom: 12/447
  30575. }
  30576. },
  30577. backNsfw: {
  30578. height: math.unit(5 + 7/12, "feet"),
  30579. weight: math.unit(220, "lb"),
  30580. name: "Back (NSFW)",
  30581. image: {
  30582. source: "./media/characters/nicki/back-nsfw.svg",
  30583. extra: 440/413,
  30584. bottom: 19/459
  30585. }
  30586. },
  30587. head: {
  30588. height: math.unit(2.1, "feet"),
  30589. name: "Head",
  30590. image: {
  30591. source: "./media/characters/nicki/head.svg"
  30592. }
  30593. },
  30594. paw: {
  30595. height: math.unit(1.88, "feet"),
  30596. name: "Paw",
  30597. image: {
  30598. source: "./media/characters/nicki/paw.svg"
  30599. }
  30600. },
  30601. },
  30602. [
  30603. {
  30604. name: "Normal",
  30605. height: math.unit(5 + 7/12, "feet"),
  30606. default: true
  30607. },
  30608. ]
  30609. ))
  30610. characterMakers.push(() => makeCharacter(
  30611. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30612. {
  30613. front: {
  30614. height: math.unit(7 + 10/12, "feet"),
  30615. weight: math.unit(3.5, "tons"),
  30616. name: "Front",
  30617. image: {
  30618. source: "./media/characters/lee/front.svg",
  30619. extra: 1773/1615,
  30620. bottom: 86/1859
  30621. }
  30622. },
  30623. hand: {
  30624. height: math.unit(1.78, "feet"),
  30625. name: "Hand",
  30626. image: {
  30627. source: "./media/characters/lee/hand.svg"
  30628. }
  30629. },
  30630. maw: {
  30631. height: math.unit(1.18, "feet"),
  30632. name: "Maw",
  30633. image: {
  30634. source: "./media/characters/lee/maw.svg"
  30635. }
  30636. },
  30637. },
  30638. [
  30639. {
  30640. name: "Normal",
  30641. height: math.unit(7 + 10/12, "feet"),
  30642. default: true
  30643. },
  30644. ]
  30645. ))
  30646. characterMakers.push(() => makeCharacter(
  30647. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30648. {
  30649. front: {
  30650. height: math.unit(9, "feet"),
  30651. name: "Front",
  30652. image: {
  30653. source: "./media/characters/guti/front.svg",
  30654. extra: 4551/4355,
  30655. bottom: 123/4674
  30656. }
  30657. },
  30658. tongue: {
  30659. height: math.unit(1, "feet"),
  30660. name: "Tongue",
  30661. image: {
  30662. source: "./media/characters/guti/tongue.svg"
  30663. }
  30664. },
  30665. paw: {
  30666. height: math.unit(1.18, "feet"),
  30667. name: "Paw",
  30668. image: {
  30669. source: "./media/characters/guti/paw.svg"
  30670. }
  30671. },
  30672. },
  30673. [
  30674. {
  30675. name: "Normal",
  30676. height: math.unit(9, "feet"),
  30677. default: true
  30678. },
  30679. ]
  30680. ))
  30681. characterMakers.push(() => makeCharacter(
  30682. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30683. {
  30684. side: {
  30685. height: math.unit(5, "meters"),
  30686. name: "Side",
  30687. image: {
  30688. source: "./media/characters/vesper/side.svg",
  30689. extra: 1605/1518,
  30690. bottom: 0/1605
  30691. }
  30692. },
  30693. },
  30694. [
  30695. {
  30696. name: "Small",
  30697. height: math.unit(5, "meters")
  30698. },
  30699. {
  30700. name: "Sage",
  30701. height: math.unit(100, "meters"),
  30702. default: true
  30703. },
  30704. {
  30705. name: "Fun Size",
  30706. height: math.unit(600, "meters")
  30707. },
  30708. {
  30709. name: "Goddess",
  30710. height: math.unit(20000, "km")
  30711. },
  30712. {
  30713. name: "Maximum",
  30714. height: math.unit(5, "galaxies")
  30715. },
  30716. ]
  30717. ))
  30718. characterMakers.push(() => makeCharacter(
  30719. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30720. {
  30721. front: {
  30722. height: math.unit(6 + 3/12, "feet"),
  30723. weight: math.unit(190, "lb"),
  30724. name: "Front",
  30725. image: {
  30726. source: "./media/characters/gawain/front.svg",
  30727. extra: 2222/2139,
  30728. bottom: 90/2312
  30729. }
  30730. },
  30731. back: {
  30732. height: math.unit(6 + 3/12, "feet"),
  30733. weight: math.unit(190, "lb"),
  30734. name: "Back",
  30735. image: {
  30736. source: "./media/characters/gawain/back.svg",
  30737. extra: 2199/2111,
  30738. bottom: 73/2272
  30739. }
  30740. },
  30741. },
  30742. [
  30743. {
  30744. name: "Normal",
  30745. height: math.unit(6 + 3/12, "feet"),
  30746. default: true
  30747. },
  30748. ]
  30749. ))
  30750. characterMakers.push(() => makeCharacter(
  30751. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30752. {
  30753. side: {
  30754. height: math.unit(3.5, "meters"),
  30755. weight: math.unit(16000, "lb"),
  30756. name: "Side",
  30757. image: {
  30758. source: "./media/characters/dascalti/side.svg",
  30759. extra: 392/273,
  30760. bottom: 47/439
  30761. }
  30762. },
  30763. breath: {
  30764. height: math.unit(7.4, "feet"),
  30765. name: "Breath",
  30766. image: {
  30767. source: "./media/characters/dascalti/breath.svg"
  30768. }
  30769. },
  30770. fed: {
  30771. height: math.unit(3.6, "meters"),
  30772. weight: math.unit(16000, "lb"),
  30773. name: "Fed",
  30774. image: {
  30775. source: "./media/characters/dascalti/fed.svg",
  30776. extra: 1419/820,
  30777. bottom: 95/1514
  30778. }
  30779. },
  30780. },
  30781. [
  30782. {
  30783. name: "Normal",
  30784. height: math.unit(3.5, "meters"),
  30785. default: true
  30786. },
  30787. ]
  30788. ))
  30789. characterMakers.push(() => makeCharacter(
  30790. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30791. {
  30792. front: {
  30793. height: math.unit(3 + 5/12, "feet"),
  30794. name: "Front",
  30795. image: {
  30796. source: "./media/characters/mauve/front.svg",
  30797. extra: 1126/1033,
  30798. bottom: 65/1191
  30799. }
  30800. },
  30801. side: {
  30802. height: math.unit(3 + 5/12, "feet"),
  30803. name: "Side",
  30804. image: {
  30805. source: "./media/characters/mauve/side.svg",
  30806. extra: 1089/1001,
  30807. bottom: 29/1118
  30808. }
  30809. },
  30810. back: {
  30811. height: math.unit(3 + 5/12, "feet"),
  30812. name: "Back",
  30813. image: {
  30814. source: "./media/characters/mauve/back.svg",
  30815. extra: 1173/1053,
  30816. bottom: 109/1282
  30817. }
  30818. },
  30819. },
  30820. [
  30821. {
  30822. name: "Normal",
  30823. height: math.unit(3 + 5/12, "feet"),
  30824. default: true
  30825. },
  30826. ]
  30827. ))
  30828. characterMakers.push(() => makeCharacter(
  30829. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30830. {
  30831. front: {
  30832. height: math.unit(6 + 3/12, "feet"),
  30833. weight: math.unit(430, "lb"),
  30834. name: "Front",
  30835. image: {
  30836. source: "./media/characters/carlos/front.svg",
  30837. extra: 1964/1913,
  30838. bottom: 70/2034
  30839. }
  30840. },
  30841. },
  30842. [
  30843. {
  30844. name: "Normal",
  30845. height: math.unit(6 + 3/12, "feet"),
  30846. default: true
  30847. },
  30848. ]
  30849. ))
  30850. characterMakers.push(() => makeCharacter(
  30851. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30852. {
  30853. back: {
  30854. height: math.unit(5 + 10/12, "feet"),
  30855. weight: math.unit(200, "lb"),
  30856. name: "Back",
  30857. image: {
  30858. source: "./media/characters/jax/back.svg",
  30859. extra: 764/739,
  30860. bottom: 25/789
  30861. }
  30862. },
  30863. },
  30864. [
  30865. {
  30866. name: "Normal",
  30867. height: math.unit(5 + 10/12, "feet"),
  30868. default: true
  30869. },
  30870. ]
  30871. ))
  30872. characterMakers.push(() => makeCharacter(
  30873. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30874. {
  30875. front: {
  30876. height: math.unit(8, "feet"),
  30877. weight: math.unit(250, "lb"),
  30878. name: "Front",
  30879. image: {
  30880. source: "./media/characters/eikthynir/front.svg",
  30881. extra: 1332/1166,
  30882. bottom: 82/1414
  30883. }
  30884. },
  30885. back: {
  30886. height: math.unit(8, "feet"),
  30887. weight: math.unit(250, "lb"),
  30888. name: "Back",
  30889. image: {
  30890. source: "./media/characters/eikthynir/back.svg",
  30891. extra: 1342/1190,
  30892. bottom: 19/1361
  30893. }
  30894. },
  30895. dick: {
  30896. height: math.unit(2.35, "feet"),
  30897. name: "Dick",
  30898. image: {
  30899. source: "./media/characters/eikthynir/dick.svg"
  30900. }
  30901. },
  30902. },
  30903. [
  30904. {
  30905. name: "Normal",
  30906. height: math.unit(8, "feet"),
  30907. default: true
  30908. },
  30909. ]
  30910. ))
  30911. characterMakers.push(() => makeCharacter(
  30912. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30913. {
  30914. front: {
  30915. height: math.unit(99, "meters"),
  30916. weight: math.unit(13000, "tons"),
  30917. name: "Front",
  30918. image: {
  30919. source: "./media/characters/zlmos/front.svg",
  30920. extra: 2202/1992,
  30921. bottom: 315/2517
  30922. }
  30923. },
  30924. },
  30925. [
  30926. {
  30927. name: "Macro",
  30928. height: math.unit(99, "meters"),
  30929. default: true
  30930. },
  30931. ]
  30932. ))
  30933. characterMakers.push(() => makeCharacter(
  30934. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30935. {
  30936. front: {
  30937. height: math.unit(6 + 5/12, "feet"),
  30938. name: "Front",
  30939. image: {
  30940. source: "./media/characters/purri/front.svg",
  30941. extra: 1698/1610,
  30942. bottom: 32/1730
  30943. }
  30944. },
  30945. frontAlt: {
  30946. height: math.unit(6 + 5/12, "feet"),
  30947. name: "Front (Alt)",
  30948. image: {
  30949. source: "./media/characters/purri/front-alt.svg",
  30950. extra: 450/420,
  30951. bottom: 26/476
  30952. }
  30953. },
  30954. boots: {
  30955. height: math.unit(5.5, "feet"),
  30956. name: "Boots",
  30957. image: {
  30958. source: "./media/characters/purri/boots.svg",
  30959. extra: 905/853,
  30960. bottom: 18/923
  30961. }
  30962. },
  30963. lying: {
  30964. height: math.unit(2, "feet"),
  30965. name: "Lying",
  30966. image: {
  30967. source: "./media/characters/purri/lying.svg",
  30968. extra: 940/843,
  30969. bottom: 146/1086
  30970. }
  30971. },
  30972. devious: {
  30973. height: math.unit(1.77, "feet"),
  30974. name: "Devious",
  30975. image: {
  30976. source: "./media/characters/purri/devious.svg",
  30977. extra: 1440/1155,
  30978. bottom: 147/1587
  30979. }
  30980. },
  30981. bean: {
  30982. height: math.unit(1.94, "feet"),
  30983. name: "Bean",
  30984. image: {
  30985. source: "./media/characters/purri/bean.svg"
  30986. }
  30987. },
  30988. },
  30989. [
  30990. {
  30991. name: "Micro",
  30992. height: math.unit(1, "mm")
  30993. },
  30994. {
  30995. name: "Normal",
  30996. height: math.unit(6 + 5/12, "feet"),
  30997. default: true
  30998. },
  30999. {
  31000. name: "Macro :3c",
  31001. height: math.unit(2, "miles")
  31002. },
  31003. ]
  31004. ))
  31005. characterMakers.push(() => makeCharacter(
  31006. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31007. {
  31008. front: {
  31009. height: math.unit(6 + 2/12, "feet"),
  31010. weight: math.unit(250, "lb"),
  31011. name: "Front",
  31012. image: {
  31013. source: "./media/characters/moonlight/front.svg",
  31014. extra: 1044/908,
  31015. bottom: 56/1100
  31016. }
  31017. },
  31018. feral: {
  31019. height: math.unit(3 + 1/12, "feet"),
  31020. weight: math.unit(50, "kg"),
  31021. name: "Feral",
  31022. image: {
  31023. source: "./media/characters/moonlight/feral.svg",
  31024. extra: 3705/2791,
  31025. bottom: 145/3850
  31026. }
  31027. },
  31028. paw: {
  31029. height: math.unit(1, "feet"),
  31030. name: "Paw",
  31031. image: {
  31032. source: "./media/characters/moonlight/paw.svg"
  31033. }
  31034. },
  31035. paws: {
  31036. height: math.unit(0.98, "feet"),
  31037. name: "Paws",
  31038. image: {
  31039. source: "./media/characters/moonlight/paws.svg",
  31040. extra: 939/939,
  31041. bottom: 50/989
  31042. }
  31043. },
  31044. mouth: {
  31045. height: math.unit(0.48, "feet"),
  31046. name: "Mouth",
  31047. image: {
  31048. source: "./media/characters/moonlight/mouth.svg"
  31049. }
  31050. },
  31051. dick: {
  31052. height: math.unit(1.46, "feet"),
  31053. name: "Dick",
  31054. image: {
  31055. source: "./media/characters/moonlight/dick.svg"
  31056. }
  31057. },
  31058. },
  31059. [
  31060. {
  31061. name: "Normal",
  31062. height: math.unit(6 + 2/12, "feet"),
  31063. default: true
  31064. },
  31065. {
  31066. name: "Macro",
  31067. height: math.unit(300, "feet")
  31068. },
  31069. {
  31070. name: "Macro+",
  31071. height: math.unit(1, "mile")
  31072. },
  31073. {
  31074. name: "Mt. Moon",
  31075. height: math.unit(5, "miles")
  31076. },
  31077. {
  31078. name: "Megamacro",
  31079. height: math.unit(15, "miles")
  31080. },
  31081. ]
  31082. ))
  31083. characterMakers.push(() => makeCharacter(
  31084. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31085. {
  31086. back: {
  31087. height: math.unit(6, "feet"),
  31088. weight: math.unit(150, "lb"),
  31089. name: "Back",
  31090. image: {
  31091. source: "./media/characters/sylen/back.svg",
  31092. extra: 1335/1273,
  31093. bottom: 107/1442
  31094. }
  31095. },
  31096. },
  31097. [
  31098. {
  31099. name: "Normal",
  31100. height: math.unit(5 + 5/12, "feet")
  31101. },
  31102. {
  31103. name: "Megamacro",
  31104. height: math.unit(3, "miles"),
  31105. default: true
  31106. },
  31107. ]
  31108. ))
  31109. characterMakers.push(() => makeCharacter(
  31110. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31111. {
  31112. front: {
  31113. height: math.unit(6, "feet"),
  31114. weight: math.unit(190, "lb"),
  31115. name: "Front",
  31116. image: {
  31117. source: "./media/characters/huttser/front.svg",
  31118. extra: 1152/1058,
  31119. bottom: 23/1175
  31120. }
  31121. },
  31122. side: {
  31123. height: math.unit(6, "feet"),
  31124. weight: math.unit(190, "lb"),
  31125. name: "Side",
  31126. image: {
  31127. source: "./media/characters/huttser/side.svg",
  31128. extra: 1174/1065,
  31129. bottom: 18/1192
  31130. }
  31131. },
  31132. back: {
  31133. height: math.unit(6, "feet"),
  31134. weight: math.unit(190, "lb"),
  31135. name: "Back",
  31136. image: {
  31137. source: "./media/characters/huttser/back.svg",
  31138. extra: 1158/1056,
  31139. bottom: 12/1170
  31140. }
  31141. },
  31142. },
  31143. [
  31144. ]
  31145. ))
  31146. characterMakers.push(() => makeCharacter(
  31147. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31148. {
  31149. side: {
  31150. height: math.unit(12 + 9/12, "feet"),
  31151. weight: math.unit(15000, "lb"),
  31152. name: "Side",
  31153. image: {
  31154. source: "./media/characters/faan/side.svg",
  31155. extra: 2747/2697,
  31156. bottom: 0/2747
  31157. }
  31158. },
  31159. front: {
  31160. height: math.unit(12 + 9/12, "feet"),
  31161. weight: math.unit(15000, "lb"),
  31162. name: "Front",
  31163. image: {
  31164. source: "./media/characters/faan/front.svg",
  31165. extra: 607/571,
  31166. bottom: 24/631
  31167. }
  31168. },
  31169. head: {
  31170. height: math.unit(2.85, "feet"),
  31171. name: "Head",
  31172. image: {
  31173. source: "./media/characters/faan/head.svg"
  31174. }
  31175. },
  31176. headAlt: {
  31177. height: math.unit(3.13, "feet"),
  31178. name: "Head-alt",
  31179. image: {
  31180. source: "./media/characters/faan/head-alt.svg"
  31181. }
  31182. },
  31183. },
  31184. [
  31185. {
  31186. name: "Normal",
  31187. height: math.unit(12 + 9/12, "feet"),
  31188. default: true
  31189. },
  31190. ]
  31191. ))
  31192. characterMakers.push(() => makeCharacter(
  31193. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31194. {
  31195. front: {
  31196. height: math.unit(6, "feet"),
  31197. weight: math.unit(300, "lb"),
  31198. name: "Front",
  31199. image: {
  31200. source: "./media/characters/tanio/front.svg",
  31201. extra: 711/673,
  31202. bottom: 25/736
  31203. }
  31204. },
  31205. },
  31206. [
  31207. {
  31208. name: "Normal",
  31209. height: math.unit(6, "feet"),
  31210. default: true
  31211. },
  31212. ]
  31213. ))
  31214. characterMakers.push(() => makeCharacter(
  31215. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31216. {
  31217. front: {
  31218. height: math.unit(3, "inches"),
  31219. name: "Front",
  31220. image: {
  31221. source: "./media/characters/noboru/front.svg",
  31222. extra: 1039/932,
  31223. bottom: 18/1057
  31224. }
  31225. },
  31226. },
  31227. [
  31228. {
  31229. name: "Micro",
  31230. height: math.unit(3, "inches"),
  31231. default: true
  31232. },
  31233. ]
  31234. ))
  31235. characterMakers.push(() => makeCharacter(
  31236. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31237. {
  31238. front: {
  31239. height: math.unit(1.85, "meters"),
  31240. weight: math.unit(80, "kg"),
  31241. name: "Front",
  31242. image: {
  31243. source: "./media/characters/daniel-barrett/front.svg",
  31244. extra: 355/337,
  31245. bottom: 9/364
  31246. }
  31247. },
  31248. },
  31249. [
  31250. {
  31251. name: "Pico",
  31252. height: math.unit(0.0433, "mm")
  31253. },
  31254. {
  31255. name: "Nano",
  31256. height: math.unit(1.5, "mm")
  31257. },
  31258. {
  31259. name: "Micro",
  31260. height: math.unit(5.3, "cm"),
  31261. default: true
  31262. },
  31263. {
  31264. name: "Normal",
  31265. height: math.unit(1.85, "meters")
  31266. },
  31267. {
  31268. name: "Macro",
  31269. height: math.unit(64.7, "meters")
  31270. },
  31271. {
  31272. name: "Megamacro",
  31273. height: math.unit(2.26, "km")
  31274. },
  31275. {
  31276. name: "Gigamacro",
  31277. height: math.unit(79, "km")
  31278. },
  31279. {
  31280. name: "Teramacro",
  31281. height: math.unit(2765, "km")
  31282. },
  31283. {
  31284. name: "Petamacro",
  31285. height: math.unit(96678, "km")
  31286. },
  31287. ]
  31288. ))
  31289. characterMakers.push(() => makeCharacter(
  31290. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31291. {
  31292. front: {
  31293. height: math.unit(30, "meters"),
  31294. weight: math.unit(400, "tons"),
  31295. name: "Front",
  31296. image: {
  31297. source: "./media/characters/zeel/front.svg",
  31298. extra: 2599/2599,
  31299. bottom: 226/2825
  31300. }
  31301. },
  31302. },
  31303. [
  31304. {
  31305. name: "Macro",
  31306. height: math.unit(30, "meters"),
  31307. default: true
  31308. },
  31309. ]
  31310. ))
  31311. characterMakers.push(() => makeCharacter(
  31312. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31313. {
  31314. front: {
  31315. height: math.unit(6 + 7/12, "feet"),
  31316. weight: math.unit(210, "lb"),
  31317. name: "Front",
  31318. image: {
  31319. source: "./media/characters/tarn/front.svg",
  31320. extra: 3517/3220,
  31321. bottom: 91/3608
  31322. }
  31323. },
  31324. back: {
  31325. height: math.unit(6 + 7/12, "feet"),
  31326. weight: math.unit(210, "lb"),
  31327. name: "Back",
  31328. image: {
  31329. source: "./media/characters/tarn/back.svg",
  31330. extra: 3566/3241,
  31331. bottom: 34/3600
  31332. }
  31333. },
  31334. dick: {
  31335. height: math.unit(1.65, "feet"),
  31336. name: "Dick",
  31337. image: {
  31338. source: "./media/characters/tarn/dick.svg"
  31339. }
  31340. },
  31341. paw: {
  31342. height: math.unit(1.80, "feet"),
  31343. name: "Paw",
  31344. image: {
  31345. source: "./media/characters/tarn/paw.svg"
  31346. }
  31347. },
  31348. tongue: {
  31349. height: math.unit(0.97, "feet"),
  31350. name: "Tongue",
  31351. image: {
  31352. source: "./media/characters/tarn/tongue.svg"
  31353. }
  31354. },
  31355. },
  31356. [
  31357. {
  31358. name: "Micro",
  31359. height: math.unit(4, "inches")
  31360. },
  31361. {
  31362. name: "Normal",
  31363. height: math.unit(6 + 7/12, "feet"),
  31364. default: true
  31365. },
  31366. {
  31367. name: "Macro",
  31368. height: math.unit(300, "feet")
  31369. },
  31370. ]
  31371. ))
  31372. characterMakers.push(() => makeCharacter(
  31373. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31374. {
  31375. front: {
  31376. height: math.unit(5 + 7/12, "feet"),
  31377. weight: math.unit(80, "kg"),
  31378. name: "Front",
  31379. image: {
  31380. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31381. extra: 3023/2865,
  31382. bottom: 33/3056
  31383. }
  31384. },
  31385. back: {
  31386. height: math.unit(5 + 7/12, "feet"),
  31387. weight: math.unit(80, "kg"),
  31388. name: "Back",
  31389. image: {
  31390. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31391. extra: 3020/2886,
  31392. bottom: 30/3050
  31393. }
  31394. },
  31395. dick: {
  31396. height: math.unit(0.98, "feet"),
  31397. name: "Dick",
  31398. image: {
  31399. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31400. }
  31401. },
  31402. anatomy: {
  31403. height: math.unit(2.86, "feet"),
  31404. name: "Anatomy",
  31405. image: {
  31406. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31407. }
  31408. },
  31409. },
  31410. [
  31411. {
  31412. name: "Really Small",
  31413. height: math.unit(2, "inches")
  31414. },
  31415. {
  31416. name: "Micro",
  31417. height: math.unit(5.583, "inches")
  31418. },
  31419. {
  31420. name: "Normal",
  31421. height: math.unit(5 + 7/12, "feet"),
  31422. default: true
  31423. },
  31424. {
  31425. name: "Macro",
  31426. height: math.unit(67, "feet")
  31427. },
  31428. {
  31429. name: "Megamacro",
  31430. height: math.unit(134, "feet")
  31431. },
  31432. ]
  31433. ))
  31434. characterMakers.push(() => makeCharacter(
  31435. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31436. {
  31437. front: {
  31438. height: math.unit(9, "feet"),
  31439. weight: math.unit(120, "lb"),
  31440. name: "Front",
  31441. image: {
  31442. source: "./media/characters/sally/front.svg",
  31443. extra: 1506/1349,
  31444. bottom: 66/1572
  31445. }
  31446. },
  31447. },
  31448. [
  31449. {
  31450. name: "Normal",
  31451. height: math.unit(9, "feet"),
  31452. default: true
  31453. },
  31454. ]
  31455. ))
  31456. characterMakers.push(() => makeCharacter(
  31457. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31458. {
  31459. front: {
  31460. height: math.unit(8, "feet"),
  31461. weight: math.unit(900, "lb"),
  31462. name: "Front",
  31463. image: {
  31464. source: "./media/characters/owen/front.svg",
  31465. extra: 1761/1657,
  31466. bottom: 74/1835
  31467. }
  31468. },
  31469. side: {
  31470. height: math.unit(8, "feet"),
  31471. weight: math.unit(900, "lb"),
  31472. name: "Side",
  31473. image: {
  31474. source: "./media/characters/owen/side.svg",
  31475. extra: 1797/1734,
  31476. bottom: 30/1827
  31477. }
  31478. },
  31479. back: {
  31480. height: math.unit(8, "feet"),
  31481. weight: math.unit(900, "lb"),
  31482. name: "Back",
  31483. image: {
  31484. source: "./media/characters/owen/back.svg",
  31485. extra: 1796/1706,
  31486. bottom: 59/1855
  31487. }
  31488. },
  31489. maw: {
  31490. height: math.unit(1.76, "feet"),
  31491. name: "Maw",
  31492. image: {
  31493. source: "./media/characters/owen/maw.svg"
  31494. }
  31495. },
  31496. },
  31497. [
  31498. {
  31499. name: "Normal",
  31500. height: math.unit(8, "feet"),
  31501. default: true
  31502. },
  31503. ]
  31504. ))
  31505. characterMakers.push(() => makeCharacter(
  31506. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31507. {
  31508. front: {
  31509. height: math.unit(4, "feet"),
  31510. weight: math.unit(400, "lb"),
  31511. name: "Front",
  31512. image: {
  31513. source: "./media/characters/ryth/front.svg",
  31514. extra: 876/691,
  31515. bottom: 25/901
  31516. }
  31517. },
  31518. goia: {
  31519. height: math.unit(12, "feet"),
  31520. weight: math.unit(10800, "lb"),
  31521. name: "Goia",
  31522. image: {
  31523. source: "./media/characters/ryth/goia.svg",
  31524. extra: 3450/3198,
  31525. bottom: 61/3511
  31526. }
  31527. },
  31528. },
  31529. [
  31530. {
  31531. name: "Normal",
  31532. height: math.unit(4, "feet"),
  31533. default: true
  31534. },
  31535. ]
  31536. ))
  31537. characterMakers.push(() => makeCharacter(
  31538. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31539. {
  31540. front: {
  31541. height: math.unit(7, "feet"),
  31542. weight: math.unit(180, "lb"),
  31543. name: "Front",
  31544. image: {
  31545. source: "./media/characters/necrolance/front.svg",
  31546. extra: 1062/947,
  31547. bottom: 41/1103
  31548. }
  31549. },
  31550. back: {
  31551. height: math.unit(7, "feet"),
  31552. weight: math.unit(180, "lb"),
  31553. name: "Back",
  31554. image: {
  31555. source: "./media/characters/necrolance/back.svg",
  31556. extra: 1045/984,
  31557. bottom: 14/1059
  31558. }
  31559. },
  31560. wing: {
  31561. height: math.unit(2.67, "feet"),
  31562. name: "Wing",
  31563. image: {
  31564. source: "./media/characters/necrolance/wing.svg"
  31565. }
  31566. },
  31567. },
  31568. [
  31569. {
  31570. name: "Normal",
  31571. height: math.unit(7, "feet"),
  31572. default: true
  31573. },
  31574. ]
  31575. ))
  31576. characterMakers.push(() => makeCharacter(
  31577. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31578. {
  31579. front: {
  31580. height: math.unit(76, "meters"),
  31581. weight: math.unit(30000, "tons"),
  31582. name: "Front",
  31583. image: {
  31584. source: "./media/characters/tyler/front.svg",
  31585. extra: 1640/1640,
  31586. bottom: 114/1754
  31587. }
  31588. },
  31589. },
  31590. [
  31591. {
  31592. name: "Macro",
  31593. height: math.unit(76, "meters"),
  31594. default: true
  31595. },
  31596. ]
  31597. ))
  31598. characterMakers.push(() => makeCharacter(
  31599. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31600. {
  31601. front: {
  31602. height: math.unit(4 + 11/12, "feet"),
  31603. weight: math.unit(132, "lb"),
  31604. name: "Front",
  31605. image: {
  31606. source: "./media/characters/icey/front.svg",
  31607. extra: 2750/2550,
  31608. bottom: 33/2783
  31609. }
  31610. },
  31611. back: {
  31612. height: math.unit(4 + 11/12, "feet"),
  31613. weight: math.unit(132, "lb"),
  31614. name: "Back",
  31615. image: {
  31616. source: "./media/characters/icey/back.svg",
  31617. extra: 2624/2481,
  31618. bottom: 35/2659
  31619. }
  31620. },
  31621. },
  31622. [
  31623. {
  31624. name: "Normal",
  31625. height: math.unit(4 + 11/12, "feet"),
  31626. default: true
  31627. },
  31628. ]
  31629. ))
  31630. characterMakers.push(() => makeCharacter(
  31631. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31632. {
  31633. front: {
  31634. height: math.unit(100, "feet"),
  31635. weight: math.unit(0, "lb"),
  31636. name: "Front",
  31637. image: {
  31638. source: "./media/characters/smile/front.svg",
  31639. extra: 2983/2912,
  31640. bottom: 162/3145
  31641. }
  31642. },
  31643. back: {
  31644. height: math.unit(100, "feet"),
  31645. weight: math.unit(0, "lb"),
  31646. name: "Back",
  31647. image: {
  31648. source: "./media/characters/smile/back.svg",
  31649. extra: 3143/3031,
  31650. bottom: 91/3234
  31651. }
  31652. },
  31653. head: {
  31654. height: math.unit(26.3, "feet"),
  31655. weight: math.unit(0, "lb"),
  31656. name: "Head",
  31657. image: {
  31658. source: "./media/characters/smile/head.svg"
  31659. }
  31660. },
  31661. collar: {
  31662. height: math.unit(5.3, "feet"),
  31663. weight: math.unit(0, "lb"),
  31664. name: "Collar",
  31665. image: {
  31666. source: "./media/characters/smile/collar.svg"
  31667. }
  31668. },
  31669. },
  31670. [
  31671. {
  31672. name: "Macro",
  31673. height: math.unit(100, "feet"),
  31674. default: true
  31675. },
  31676. ]
  31677. ))
  31678. characterMakers.push(() => makeCharacter(
  31679. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31680. {
  31681. dragon: {
  31682. height: math.unit(26, "feet"),
  31683. weight: math.unit(36, "tons"),
  31684. name: "Dragon",
  31685. image: {
  31686. source: "./media/characters/arimphae/dragon.svg",
  31687. extra: 1574/983,
  31688. bottom: 357/1931
  31689. }
  31690. },
  31691. drake: {
  31692. height: math.unit(9, "feet"),
  31693. weight: math.unit(1.5, "tons"),
  31694. name: "Drake",
  31695. image: {
  31696. source: "./media/characters/arimphae/drake.svg",
  31697. extra: 1120/925,
  31698. bottom: 435/1555
  31699. }
  31700. },
  31701. },
  31702. [
  31703. {
  31704. name: "Small",
  31705. height: math.unit(26*5/9, "feet")
  31706. },
  31707. {
  31708. name: "Normal",
  31709. height: math.unit(26, "feet"),
  31710. default: true
  31711. },
  31712. ]
  31713. ))
  31714. characterMakers.push(() => makeCharacter(
  31715. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31716. {
  31717. front: {
  31718. height: math.unit(8 + 9/12, "feet"),
  31719. name: "Front",
  31720. image: {
  31721. source: "./media/characters/xander/front.svg",
  31722. extra: 848/673,
  31723. bottom: 62/910
  31724. }
  31725. },
  31726. },
  31727. [
  31728. {
  31729. name: "Normal",
  31730. height: math.unit(8 + 9/12, "feet"),
  31731. default: true
  31732. },
  31733. {
  31734. name: "Gaze Grabber",
  31735. height: math.unit(13 + 8/12, "feet")
  31736. },
  31737. {
  31738. name: "Jaw Dropper",
  31739. height: math.unit(27, "feet")
  31740. },
  31741. {
  31742. name: "Show Stopper",
  31743. height: math.unit(136, "feet")
  31744. },
  31745. {
  31746. name: "Superstar",
  31747. height: math.unit(1.9e6, "miles")
  31748. },
  31749. ]
  31750. ))
  31751. characterMakers.push(() => makeCharacter(
  31752. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31753. {
  31754. side: {
  31755. height: math.unit(2100, "feet"),
  31756. name: "Side",
  31757. image: {
  31758. source: "./media/characters/osiris/side.svg",
  31759. extra: 1105/939,
  31760. bottom: 167/1272
  31761. }
  31762. },
  31763. },
  31764. [
  31765. {
  31766. name: "Macro",
  31767. height: math.unit(2100, "feet"),
  31768. default: true
  31769. },
  31770. ]
  31771. ))
  31772. characterMakers.push(() => makeCharacter(
  31773. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31774. {
  31775. front: {
  31776. height: math.unit(6 + 8/12, "feet"),
  31777. weight: math.unit(225, "lb"),
  31778. name: "Front",
  31779. image: {
  31780. source: "./media/characters/rhys-londe/front.svg",
  31781. extra: 2258/2141,
  31782. bottom: 188/2446
  31783. }
  31784. },
  31785. back: {
  31786. height: math.unit(6 + 8/12, "feet"),
  31787. weight: math.unit(225, "lb"),
  31788. name: "Back",
  31789. image: {
  31790. source: "./media/characters/rhys-londe/back.svg",
  31791. extra: 2237/2137,
  31792. bottom: 63/2300
  31793. }
  31794. },
  31795. frontNsfw: {
  31796. height: math.unit(6 + 8/12, "feet"),
  31797. weight: math.unit(225, "lb"),
  31798. name: "Front (NSFW)",
  31799. image: {
  31800. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31801. extra: 2258/2141,
  31802. bottom: 188/2446
  31803. }
  31804. },
  31805. backNsfw: {
  31806. height: math.unit(6 + 8/12, "feet"),
  31807. weight: math.unit(225, "lb"),
  31808. name: "Back (NSFW)",
  31809. image: {
  31810. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31811. extra: 2237/2137,
  31812. bottom: 63/2300
  31813. }
  31814. },
  31815. dick: {
  31816. height: math.unit(30, "inches"),
  31817. name: "Dick",
  31818. image: {
  31819. source: "./media/characters/rhys-londe/dick.svg"
  31820. }
  31821. },
  31822. maw: {
  31823. height: math.unit(1.6, "feet"),
  31824. name: "Maw",
  31825. image: {
  31826. source: "./media/characters/rhys-londe/maw.svg"
  31827. }
  31828. },
  31829. },
  31830. [
  31831. {
  31832. name: "Normal",
  31833. height: math.unit(6 + 8/12, "feet"),
  31834. default: true
  31835. },
  31836. ]
  31837. ))
  31838. characterMakers.push(() => makeCharacter(
  31839. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31840. {
  31841. front: {
  31842. height: math.unit(3 + 10/12, "feet"),
  31843. weight: math.unit(90, "lb"),
  31844. name: "Front",
  31845. image: {
  31846. source: "./media/characters/taivas-ensim/front.svg",
  31847. extra: 1327/1216,
  31848. bottom: 96/1423
  31849. }
  31850. },
  31851. back: {
  31852. height: math.unit(3 + 10/12, "feet"),
  31853. weight: math.unit(90, "lb"),
  31854. name: "Back",
  31855. image: {
  31856. source: "./media/characters/taivas-ensim/back.svg",
  31857. extra: 1355/1247,
  31858. bottom: 11/1366
  31859. }
  31860. },
  31861. frontNsfw: {
  31862. height: math.unit(3 + 10/12, "feet"),
  31863. weight: math.unit(90, "lb"),
  31864. name: "Front (NSFW)",
  31865. image: {
  31866. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31867. extra: 1327/1216,
  31868. bottom: 96/1423
  31869. }
  31870. },
  31871. backNsfw: {
  31872. height: math.unit(3 + 10/12, "feet"),
  31873. weight: math.unit(90, "lb"),
  31874. name: "Back (NSFW)",
  31875. image: {
  31876. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31877. extra: 1355/1247,
  31878. bottom: 11/1366
  31879. }
  31880. },
  31881. },
  31882. [
  31883. {
  31884. name: "Normal",
  31885. height: math.unit(3 + 10/12, "feet"),
  31886. default: true
  31887. },
  31888. ]
  31889. ))
  31890. characterMakers.push(() => makeCharacter(
  31891. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31892. {
  31893. front: {
  31894. height: math.unit(9 + 6/12, "feet"),
  31895. weight: math.unit(940, "lb"),
  31896. name: "Front",
  31897. image: {
  31898. source: "./media/characters/byliss/front.svg",
  31899. extra: 1327/1290,
  31900. bottom: 82/1409
  31901. }
  31902. },
  31903. back: {
  31904. height: math.unit(9 + 6/12, "feet"),
  31905. weight: math.unit(940, "lb"),
  31906. name: "Back",
  31907. image: {
  31908. source: "./media/characters/byliss/back.svg",
  31909. extra: 1376/1349,
  31910. bottom: 9/1385
  31911. }
  31912. },
  31913. frontNsfw: {
  31914. height: math.unit(9 + 6/12, "feet"),
  31915. weight: math.unit(940, "lb"),
  31916. name: "Front (NSFW)",
  31917. image: {
  31918. source: "./media/characters/byliss/front-nsfw.svg",
  31919. extra: 1327/1290,
  31920. bottom: 82/1409
  31921. }
  31922. },
  31923. backNsfw: {
  31924. height: math.unit(9 + 6/12, "feet"),
  31925. weight: math.unit(940, "lb"),
  31926. name: "Back (NSFW)",
  31927. image: {
  31928. source: "./media/characters/byliss/back-nsfw.svg",
  31929. extra: 1376/1349,
  31930. bottom: 9/1385
  31931. }
  31932. },
  31933. },
  31934. [
  31935. {
  31936. name: "Normal",
  31937. height: math.unit(9 + 6/12, "feet"),
  31938. default: true
  31939. },
  31940. ]
  31941. ))
  31942. characterMakers.push(() => makeCharacter(
  31943. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31944. {
  31945. front: {
  31946. height: math.unit(5 + 2/12, "feet"),
  31947. weight: math.unit(200, "lb"),
  31948. name: "Front",
  31949. image: {
  31950. source: "./media/characters/noraly/front.svg",
  31951. extra: 4985/4773,
  31952. bottom: 150/5135
  31953. }
  31954. },
  31955. full: {
  31956. height: math.unit(5 + 2/12, "feet"),
  31957. weight: math.unit(164, "lb"),
  31958. name: "Full",
  31959. image: {
  31960. source: "./media/characters/noraly/full.svg",
  31961. extra: 1114/1059,
  31962. bottom: 35/1149
  31963. }
  31964. },
  31965. fuller: {
  31966. height: math.unit(5 + 2/12, "feet"),
  31967. weight: math.unit(230, "lb"),
  31968. name: "Fuller",
  31969. image: {
  31970. source: "./media/characters/noraly/fuller.svg",
  31971. extra: 1114/1059,
  31972. bottom: 35/1149
  31973. }
  31974. },
  31975. fullest: {
  31976. height: math.unit(5 + 2/12, "feet"),
  31977. weight: math.unit(300, "lb"),
  31978. name: "Fullest",
  31979. image: {
  31980. source: "./media/characters/noraly/fullest.svg",
  31981. extra: 1114/1059,
  31982. bottom: 35/1149
  31983. }
  31984. },
  31985. },
  31986. [
  31987. {
  31988. name: "Normal",
  31989. height: math.unit(5 + 2/12, "feet"),
  31990. default: true
  31991. },
  31992. ]
  31993. ))
  31994. characterMakers.push(() => makeCharacter(
  31995. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31996. {
  31997. front: {
  31998. height: math.unit(5 + 2/12, "feet"),
  31999. weight: math.unit(210, "lb"),
  32000. name: "Front",
  32001. image: {
  32002. source: "./media/characters/pera/front.svg",
  32003. extra: 1560/1531,
  32004. bottom: 165/1725
  32005. }
  32006. },
  32007. back: {
  32008. height: math.unit(5 + 2/12, "feet"),
  32009. weight: math.unit(210, "lb"),
  32010. name: "Back",
  32011. image: {
  32012. source: "./media/characters/pera/back.svg",
  32013. extra: 1523/1493,
  32014. bottom: 152/1675
  32015. }
  32016. },
  32017. dick: {
  32018. height: math.unit(2.4, "feet"),
  32019. name: "Dick",
  32020. image: {
  32021. source: "./media/characters/pera/dick.svg"
  32022. }
  32023. },
  32024. },
  32025. [
  32026. {
  32027. name: "Normal",
  32028. height: math.unit(5 + 2/12, "feet"),
  32029. default: true
  32030. },
  32031. ]
  32032. ))
  32033. characterMakers.push(() => makeCharacter(
  32034. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32035. {
  32036. front: {
  32037. height: math.unit(12, "feet"),
  32038. weight: math.unit(3200, "lb"),
  32039. name: "Front",
  32040. image: {
  32041. source: "./media/characters/julian/front.svg",
  32042. extra: 2962/2701,
  32043. bottom: 184/3146
  32044. }
  32045. },
  32046. maw: {
  32047. height: math.unit(5.35, "feet"),
  32048. name: "Maw",
  32049. image: {
  32050. source: "./media/characters/julian/maw.svg"
  32051. }
  32052. },
  32053. paw: {
  32054. height: math.unit(3.07, "feet"),
  32055. name: "Paw",
  32056. image: {
  32057. source: "./media/characters/julian/paw.svg"
  32058. }
  32059. },
  32060. },
  32061. [
  32062. {
  32063. name: "Default",
  32064. height: math.unit(12, "feet"),
  32065. default: true
  32066. },
  32067. {
  32068. name: "Big",
  32069. height: math.unit(50, "feet")
  32070. },
  32071. {
  32072. name: "Really Big",
  32073. height: math.unit(1, "mile")
  32074. },
  32075. {
  32076. name: "Extremely Big",
  32077. height: math.unit(100, "miles")
  32078. },
  32079. {
  32080. name: "Planet Hugger",
  32081. height: math.unit(200, "megameters")
  32082. },
  32083. {
  32084. name: "Unreasonably Big",
  32085. height: math.unit(1e300, "meters")
  32086. },
  32087. ]
  32088. ))
  32089. characterMakers.push(() => makeCharacter(
  32090. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32091. {
  32092. solgooleo: {
  32093. height: math.unit(4, "meters"),
  32094. weight: math.unit(6000*1.5, "kg"),
  32095. volume: math.unit(6000, "liters"),
  32096. name: "Solgooleo",
  32097. image: {
  32098. source: "./media/characters/pi/solgooleo.svg",
  32099. extra: 388/331,
  32100. bottom: 29/417
  32101. }
  32102. },
  32103. },
  32104. [
  32105. {
  32106. name: "Normal",
  32107. height: math.unit(4, "meters"),
  32108. default: true
  32109. },
  32110. ]
  32111. ))
  32112. characterMakers.push(() => makeCharacter(
  32113. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32114. {
  32115. front: {
  32116. height: math.unit(8 + 2/12, "feet"),
  32117. weight: math.unit(4, "tons"),
  32118. name: "Front",
  32119. image: {
  32120. source: "./media/characters/shaun/front.svg",
  32121. extra: 1550/1505,
  32122. bottom: 353/1903
  32123. }
  32124. },
  32125. },
  32126. [
  32127. {
  32128. name: "Lorg",
  32129. height: math.unit(8 + 2/12, "feet"),
  32130. default: true
  32131. },
  32132. ]
  32133. ))
  32134. characterMakers.push(() => makeCharacter(
  32135. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32136. {
  32137. front: {
  32138. height: math.unit(7, "feet"),
  32139. name: "Front",
  32140. image: {
  32141. source: "./media/characters/sini/front.svg",
  32142. extra: 726/678,
  32143. bottom: 35/761
  32144. }
  32145. },
  32146. back: {
  32147. height: math.unit(7, "feet"),
  32148. name: "Back",
  32149. image: {
  32150. source: "./media/characters/sini/back.svg",
  32151. extra: 743/701,
  32152. bottom: 12/755
  32153. }
  32154. },
  32155. mawAnthro: {
  32156. height: math.unit(2.14, "feet"),
  32157. name: "Maw (Anthro)",
  32158. image: {
  32159. source: "./media/characters/sini/maw-anthro.svg"
  32160. }
  32161. },
  32162. dick: {
  32163. height: math.unit(1.45, "feet"),
  32164. name: "Dick (Anthro)",
  32165. image: {
  32166. source: "./media/characters/sini/dick-anthro.svg"
  32167. }
  32168. },
  32169. feral: {
  32170. height: math.unit(13, "feet"),
  32171. name: "Feral",
  32172. image: {
  32173. source: "./media/characters/sini/feral.svg",
  32174. extra: 814/605,
  32175. bottom: 11/825
  32176. }
  32177. },
  32178. mawFeral: {
  32179. height: math.unit(4.6, "feet"),
  32180. name: "Maw-feral",
  32181. image: {
  32182. source: "./media/characters/sini/maw-feral.svg"
  32183. }
  32184. },
  32185. footFeral: {
  32186. height: math.unit(4.2, "feet"),
  32187. name: "Foot-feral",
  32188. image: {
  32189. source: "./media/characters/sini/foot-feral.svg"
  32190. }
  32191. },
  32192. },
  32193. [
  32194. {
  32195. name: "Normal",
  32196. height: math.unit(7, "feet"),
  32197. default: true
  32198. },
  32199. ]
  32200. ))
  32201. characterMakers.push(() => makeCharacter(
  32202. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32203. {
  32204. side: {
  32205. height: math.unit(13, "meters"),
  32206. weight: math.unit(9072, "kg"),
  32207. name: "Side",
  32208. image: {
  32209. source: "./media/characters/raylldo/side.svg",
  32210. extra: 403/344,
  32211. bottom: 42/445
  32212. }
  32213. },
  32214. leaping: {
  32215. height: math.unit(12.3, "meters"),
  32216. weight: math.unit(9072, "kg"),
  32217. name: "Leaping",
  32218. image: {
  32219. source: "./media/characters/raylldo/leaping.svg",
  32220. extra: 470/249,
  32221. bottom: 13/483
  32222. }
  32223. },
  32224. flying: {
  32225. height: math.unit(18, "meters"),
  32226. weight: math.unit(9072, "kg"),
  32227. name: "Flying",
  32228. image: {
  32229. source: "./media/characters/raylldo/flying.svg"
  32230. }
  32231. },
  32232. head: {
  32233. height: math.unit(5.85, "meters"),
  32234. name: "Head",
  32235. image: {
  32236. source: "./media/characters/raylldo/head.svg"
  32237. }
  32238. },
  32239. maw: {
  32240. height: math.unit(5.32, "meters"),
  32241. name: "Maw",
  32242. image: {
  32243. source: "./media/characters/raylldo/maw.svg"
  32244. }
  32245. },
  32246. eye: {
  32247. height: math.unit(0.54, "meters"),
  32248. name: "Eye",
  32249. image: {
  32250. source: "./media/characters/raylldo/eye.svg"
  32251. }
  32252. },
  32253. },
  32254. [
  32255. {
  32256. name: "Normal",
  32257. height: math.unit(13, "meters"),
  32258. default: true
  32259. },
  32260. ]
  32261. ))
  32262. characterMakers.push(() => makeCharacter(
  32263. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32264. {
  32265. anthroFront: {
  32266. height: math.unit(9, "feet"),
  32267. weight: math.unit(600, "lb"),
  32268. name: "Anthro (Front)",
  32269. image: {
  32270. source: "./media/characters/glint/anthro-front.svg",
  32271. extra: 1097/1018,
  32272. bottom: 28/1125
  32273. }
  32274. },
  32275. anthroBack: {
  32276. height: math.unit(9, "feet"),
  32277. weight: math.unit(600, "lb"),
  32278. name: "Anthro (Back)",
  32279. image: {
  32280. source: "./media/characters/glint/anthro-back.svg",
  32281. extra: 1154/997,
  32282. bottom: 36/1190
  32283. }
  32284. },
  32285. feral: {
  32286. height: math.unit(11, "feet"),
  32287. weight: math.unit(50000, "lb"),
  32288. name: "Feral",
  32289. image: {
  32290. source: "./media/characters/glint/feral.svg",
  32291. extra: 3035/1585,
  32292. bottom: 1169/4204
  32293. }
  32294. },
  32295. dickAnthro: {
  32296. height: math.unit(0.7, "meters"),
  32297. name: "Dick (Anthro)",
  32298. image: {
  32299. source: "./media/characters/glint/dick-anthro.svg"
  32300. }
  32301. },
  32302. dickFeral: {
  32303. height: math.unit(2.65, "meters"),
  32304. name: "Dick (Feral)",
  32305. image: {
  32306. source: "./media/characters/glint/dick-feral.svg"
  32307. }
  32308. },
  32309. slitHidden: {
  32310. height: math.unit(5.85, "meters"),
  32311. name: "Slit (Hidden)",
  32312. image: {
  32313. source: "./media/characters/glint/slit-hidden.svg"
  32314. }
  32315. },
  32316. slitErect: {
  32317. height: math.unit(5.85, "meters"),
  32318. name: "Slit (Erect)",
  32319. image: {
  32320. source: "./media/characters/glint/slit-erect.svg"
  32321. }
  32322. },
  32323. mawAnthro: {
  32324. height: math.unit(0.63, "meters"),
  32325. name: "Maw (Anthro)",
  32326. image: {
  32327. source: "./media/characters/glint/maw.svg"
  32328. }
  32329. },
  32330. mawFeral: {
  32331. height: math.unit(2.89, "meters"),
  32332. name: "Maw (Feral)",
  32333. image: {
  32334. source: "./media/characters/glint/maw.svg"
  32335. }
  32336. },
  32337. },
  32338. [
  32339. {
  32340. name: "Normal",
  32341. height: math.unit(9, "feet"),
  32342. default: true
  32343. },
  32344. ]
  32345. ))
  32346. characterMakers.push(() => makeCharacter(
  32347. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32348. {
  32349. side: {
  32350. height: math.unit(15, "feet"),
  32351. weight: math.unit(5000, "kg"),
  32352. name: "Side",
  32353. image: {
  32354. source: "./media/characters/kairne/side.svg",
  32355. extra: 979/811,
  32356. bottom: 13/992
  32357. }
  32358. },
  32359. front: {
  32360. height: math.unit(15, "feet"),
  32361. weight: math.unit(5000, "kg"),
  32362. name: "Front",
  32363. image: {
  32364. source: "./media/characters/kairne/front.svg",
  32365. extra: 908/814,
  32366. bottom: 26/934
  32367. }
  32368. },
  32369. sideNsfw: {
  32370. height: math.unit(15, "feet"),
  32371. weight: math.unit(5000, "kg"),
  32372. name: "Side (NSFW)",
  32373. image: {
  32374. source: "./media/characters/kairne/side-nsfw.svg",
  32375. extra: 979/811,
  32376. bottom: 13/992
  32377. }
  32378. },
  32379. frontNsfw: {
  32380. height: math.unit(15, "feet"),
  32381. weight: math.unit(5000, "kg"),
  32382. name: "Front (NSFW)",
  32383. image: {
  32384. source: "./media/characters/kairne/front-nsfw.svg",
  32385. extra: 908/814,
  32386. bottom: 26/934
  32387. }
  32388. },
  32389. dickCaged: {
  32390. height: math.unit(0.65, "meters"),
  32391. name: "Dick-caged",
  32392. image: {
  32393. source: "./media/characters/kairne/dick-caged.svg"
  32394. }
  32395. },
  32396. dick: {
  32397. height: math.unit(0.79, "meters"),
  32398. name: "Dick",
  32399. image: {
  32400. source: "./media/characters/kairne/dick.svg"
  32401. }
  32402. },
  32403. genitals: {
  32404. height: math.unit(1.29, "meters"),
  32405. name: "Genitals",
  32406. image: {
  32407. source: "./media/characters/kairne/genitals.svg"
  32408. }
  32409. },
  32410. maw: {
  32411. height: math.unit(1.73, "meters"),
  32412. name: "Maw",
  32413. image: {
  32414. source: "./media/characters/kairne/maw.svg"
  32415. }
  32416. },
  32417. },
  32418. [
  32419. {
  32420. name: "Normal",
  32421. height: math.unit(15, "feet"),
  32422. default: true
  32423. },
  32424. ]
  32425. ))
  32426. characterMakers.push(() => makeCharacter(
  32427. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32428. {
  32429. front: {
  32430. height: math.unit(5 + 8/12, "feet"),
  32431. weight: math.unit(139, "lb"),
  32432. name: "Front",
  32433. image: {
  32434. source: "./media/characters/biscuit-jackal/front.svg",
  32435. extra: 2106/1961,
  32436. bottom: 58/2164
  32437. }
  32438. },
  32439. back: {
  32440. height: math.unit(5 + 8/12, "feet"),
  32441. weight: math.unit(139, "lb"),
  32442. name: "Back",
  32443. image: {
  32444. source: "./media/characters/biscuit-jackal/back.svg",
  32445. extra: 2132/1976,
  32446. bottom: 57/2189
  32447. }
  32448. },
  32449. werejackal: {
  32450. height: math.unit(6 + 3/12, "feet"),
  32451. weight: math.unit(188, "lb"),
  32452. name: "Werejackal",
  32453. image: {
  32454. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32455. extra: 2373/2178,
  32456. bottom: 53/2426
  32457. }
  32458. },
  32459. },
  32460. [
  32461. {
  32462. name: "Normal",
  32463. height: math.unit(5 + 8/12, "feet"),
  32464. default: true
  32465. },
  32466. ]
  32467. ))
  32468. characterMakers.push(() => makeCharacter(
  32469. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32470. {
  32471. front: {
  32472. height: math.unit(140, "cm"),
  32473. weight: math.unit(45, "kg"),
  32474. name: "Front",
  32475. image: {
  32476. source: "./media/characters/tayra-white/front.svg",
  32477. extra: 2229/2192,
  32478. bottom: 75/2304
  32479. }
  32480. },
  32481. },
  32482. [
  32483. {
  32484. name: "Normal",
  32485. height: math.unit(140, "cm"),
  32486. default: true
  32487. },
  32488. ]
  32489. ))
  32490. characterMakers.push(() => makeCharacter(
  32491. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32492. {
  32493. front: {
  32494. height: math.unit(4 + 5/12, "feet"),
  32495. name: "Front",
  32496. image: {
  32497. source: "./media/characters/scoop/front.svg",
  32498. extra: 1257/1136,
  32499. bottom: 69/1326
  32500. }
  32501. },
  32502. back: {
  32503. height: math.unit(4 + 5/12, "feet"),
  32504. name: "Back",
  32505. image: {
  32506. source: "./media/characters/scoop/back.svg",
  32507. extra: 1321/1152,
  32508. bottom: 32/1353
  32509. }
  32510. },
  32511. maw: {
  32512. height: math.unit(0.68, "feet"),
  32513. name: "Maw",
  32514. image: {
  32515. source: "./media/characters/scoop/maw.svg"
  32516. }
  32517. },
  32518. },
  32519. [
  32520. {
  32521. name: "Really Small",
  32522. height: math.unit(1, "mm")
  32523. },
  32524. {
  32525. name: "Micro",
  32526. height: math.unit(1, "inch")
  32527. },
  32528. {
  32529. name: "Normal",
  32530. height: math.unit(4 + 5/12, "feet"),
  32531. default: true
  32532. },
  32533. {
  32534. name: "Macro",
  32535. height: math.unit(200, "feet")
  32536. },
  32537. {
  32538. name: "Megamacro",
  32539. height: math.unit(3240, "feet")
  32540. },
  32541. {
  32542. name: "Teramacro",
  32543. height: math.unit(2500, "miles")
  32544. },
  32545. ]
  32546. ))
  32547. characterMakers.push(() => makeCharacter(
  32548. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32549. {
  32550. front: {
  32551. height: math.unit(15 + 7/12, "feet"),
  32552. name: "Front",
  32553. image: {
  32554. source: "./media/characters/saphinara/front.svg",
  32555. extra: 604/546,
  32556. bottom: 19/623
  32557. }
  32558. },
  32559. side: {
  32560. height: math.unit(15 + 7/12, "feet"),
  32561. name: "Side",
  32562. image: {
  32563. source: "./media/characters/saphinara/side.svg",
  32564. extra: 605/547,
  32565. bottom: 6/611
  32566. }
  32567. },
  32568. back: {
  32569. height: math.unit(15 + 7/12, "feet"),
  32570. name: "Back",
  32571. image: {
  32572. source: "./media/characters/saphinara/back.svg",
  32573. extra: 591/531,
  32574. bottom: 13/604
  32575. }
  32576. },
  32577. frontTail: {
  32578. height: math.unit(15 + 7/12, "feet"),
  32579. name: "Front (Full Tail)",
  32580. image: {
  32581. source: "./media/characters/saphinara/front-tail.svg",
  32582. extra: 748/547,
  32583. bottom: 66/814
  32584. }
  32585. },
  32586. },
  32587. [
  32588. {
  32589. name: "Normal",
  32590. height: math.unit(15 + 7/12, "feet"),
  32591. default: true
  32592. },
  32593. {
  32594. name: "Angry",
  32595. height: math.unit(30 + 6/12, "feet")
  32596. },
  32597. {
  32598. name: "Enraged",
  32599. height: math.unit(102 + 1/12, "feet")
  32600. },
  32601. ]
  32602. ))
  32603. characterMakers.push(() => makeCharacter(
  32604. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32605. {
  32606. front: {
  32607. height: math.unit(6 + 8/12, "feet"),
  32608. weight: math.unit(300, "lb"),
  32609. name: "Front",
  32610. image: {
  32611. source: "./media/characters/jrain/front.svg",
  32612. extra: 3039/2865,
  32613. bottom: 399/3438
  32614. }
  32615. },
  32616. back: {
  32617. height: math.unit(6 + 8/12, "feet"),
  32618. weight: math.unit(300, "lb"),
  32619. name: "Back",
  32620. image: {
  32621. source: "./media/characters/jrain/back.svg",
  32622. extra: 3089/2938,
  32623. bottom: 172/3261
  32624. }
  32625. },
  32626. head: {
  32627. height: math.unit(2.14, "feet"),
  32628. name: "Head",
  32629. image: {
  32630. source: "./media/characters/jrain/head.svg"
  32631. }
  32632. },
  32633. maw: {
  32634. height: math.unit(1.77, "feet"),
  32635. name: "Maw",
  32636. image: {
  32637. source: "./media/characters/jrain/maw.svg"
  32638. }
  32639. },
  32640. leftHand: {
  32641. height: math.unit(1.1, "feet"),
  32642. name: "Left Hand",
  32643. image: {
  32644. source: "./media/characters/jrain/left-hand.svg"
  32645. }
  32646. },
  32647. rightHand: {
  32648. height: math.unit(1.1, "feet"),
  32649. name: "Right Hand",
  32650. image: {
  32651. source: "./media/characters/jrain/right-hand.svg"
  32652. }
  32653. },
  32654. eye: {
  32655. height: math.unit(0.35, "feet"),
  32656. name: "Eye",
  32657. image: {
  32658. source: "./media/characters/jrain/eye.svg"
  32659. }
  32660. },
  32661. },
  32662. [
  32663. {
  32664. name: "Normal",
  32665. height: math.unit(6 + 8/12, "feet"),
  32666. default: true
  32667. },
  32668. {
  32669. name: "Casually Large",
  32670. height: math.unit(25, "feet")
  32671. },
  32672. {
  32673. name: "Giant",
  32674. height: math.unit(100, "feet")
  32675. },
  32676. {
  32677. name: "Kaiju",
  32678. height: math.unit(300, "feet")
  32679. },
  32680. ]
  32681. ))
  32682. characterMakers.push(() => makeCharacter(
  32683. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32684. {
  32685. dragon: {
  32686. height: math.unit(5, "meters"),
  32687. name: "Dragon",
  32688. image: {
  32689. source: "./media/characters/sabrina/dragon.svg",
  32690. extra: 3670 / 2365,
  32691. bottom: 333 / 4003
  32692. }
  32693. },
  32694. gryphon: {
  32695. height: math.unit(3, "meters"),
  32696. name: "Gryphon",
  32697. image: {
  32698. source: "./media/characters/sabrina/gryphon.svg",
  32699. extra: 1576 / 945,
  32700. bottom: 71 / 1647
  32701. }
  32702. },
  32703. snake: {
  32704. height: math.unit(12, "meters"),
  32705. name: "Snake",
  32706. image: {
  32707. source: "./media/characters/sabrina/snake.svg",
  32708. extra: 1758 / 1320,
  32709. bottom: 186 / 1944
  32710. }
  32711. },
  32712. collar: {
  32713. height: math.unit(1.86, "meters"),
  32714. name: "Collar",
  32715. image: {
  32716. source: "./media/characters/sabrina/collar.svg"
  32717. }
  32718. },
  32719. eye: {
  32720. height: math.unit(0.53, "meters"),
  32721. name: "Eye",
  32722. image: {
  32723. source: "./media/characters/sabrina/eye.svg"
  32724. }
  32725. },
  32726. foot: {
  32727. height: math.unit(1.86, "meters"),
  32728. name: "Foot",
  32729. image: {
  32730. source: "./media/characters/sabrina/foot.svg"
  32731. }
  32732. },
  32733. hand: {
  32734. height: math.unit(1.32, "meters"),
  32735. name: "Hand",
  32736. image: {
  32737. source: "./media/characters/sabrina/hand.svg"
  32738. }
  32739. },
  32740. head: {
  32741. height: math.unit(2.44, "meters"),
  32742. name: "Head",
  32743. image: {
  32744. source: "./media/characters/sabrina/head.svg"
  32745. }
  32746. },
  32747. headAngry: {
  32748. height: math.unit(2.44, "meters"),
  32749. name: "Head (Angry))",
  32750. image: {
  32751. source: "./media/characters/sabrina/head-angry.svg"
  32752. }
  32753. },
  32754. maw: {
  32755. height: math.unit(1.65, "meters"),
  32756. name: "Maw",
  32757. image: {
  32758. source: "./media/characters/sabrina/maw.svg"
  32759. }
  32760. },
  32761. spikes: {
  32762. height: math.unit(1.69, "meters"),
  32763. name: "Spikes",
  32764. image: {
  32765. source: "./media/characters/sabrina/spikes.svg"
  32766. }
  32767. },
  32768. stomach: {
  32769. height: math.unit(1.15, "meters"),
  32770. name: "Stomach",
  32771. image: {
  32772. source: "./media/characters/sabrina/stomach.svg"
  32773. }
  32774. },
  32775. tongue: {
  32776. height: math.unit(1.27, "meters"),
  32777. name: "Tongue",
  32778. image: {
  32779. source: "./media/characters/sabrina/tongue.svg"
  32780. }
  32781. },
  32782. wingDorsal: {
  32783. height: math.unit(4.85, "meters"),
  32784. name: "Wing (Dorsal)",
  32785. image: {
  32786. source: "./media/characters/sabrina/wing-dorsal.svg"
  32787. }
  32788. },
  32789. wingVentral: {
  32790. height: math.unit(4.85, "meters"),
  32791. name: "Wing (Ventral)",
  32792. image: {
  32793. source: "./media/characters/sabrina/wing-ventral.svg"
  32794. }
  32795. },
  32796. },
  32797. [
  32798. {
  32799. name: "Normal",
  32800. height: math.unit(5, "meters"),
  32801. default: true
  32802. },
  32803. ]
  32804. ))
  32805. characterMakers.push(() => makeCharacter(
  32806. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32807. {
  32808. frontMaid: {
  32809. height: math.unit(5 + 5/12, "feet"),
  32810. weight: math.unit(130, "lb"),
  32811. name: "Front (Maid)",
  32812. image: {
  32813. source: "./media/characters/midnight-tales/front-maid.svg",
  32814. extra: 489/454,
  32815. bottom: 61/550
  32816. }
  32817. },
  32818. frontFormal: {
  32819. height: math.unit(5 + 5/12, "feet"),
  32820. weight: math.unit(130, "lb"),
  32821. name: "Front (Formal)",
  32822. image: {
  32823. source: "./media/characters/midnight-tales/front-formal.svg",
  32824. extra: 489/454,
  32825. bottom: 61/550
  32826. }
  32827. },
  32828. back: {
  32829. height: math.unit(5 + 5/12, "feet"),
  32830. weight: math.unit(130, "lb"),
  32831. name: "Back",
  32832. image: {
  32833. source: "./media/characters/midnight-tales/back.svg",
  32834. extra: 498/456,
  32835. bottom: 33/531
  32836. }
  32837. },
  32838. frontBeast: {
  32839. height: math.unit(40, "feet"),
  32840. weight: math.unit(64000, "lb"),
  32841. name: "Front (Beast)",
  32842. image: {
  32843. source: "./media/characters/midnight-tales/front-beast.svg",
  32844. extra: 927/860,
  32845. bottom: 53/980
  32846. }
  32847. },
  32848. backBeast: {
  32849. height: math.unit(40, "feet"),
  32850. weight: math.unit(64000, "lb"),
  32851. name: "Back (Beast)",
  32852. image: {
  32853. source: "./media/characters/midnight-tales/back-beast.svg",
  32854. extra: 929/855,
  32855. bottom: 16/945
  32856. }
  32857. },
  32858. footBeast: {
  32859. height: math.unit(6.7, "feet"),
  32860. name: "Foot (Beast)",
  32861. image: {
  32862. source: "./media/characters/midnight-tales/foot-beast.svg"
  32863. }
  32864. },
  32865. headBeast: {
  32866. height: math.unit(8, "feet"),
  32867. name: "Head (Beast)",
  32868. image: {
  32869. source: "./media/characters/midnight-tales/head-beast.svg"
  32870. }
  32871. },
  32872. },
  32873. [
  32874. {
  32875. name: "Normal",
  32876. height: math.unit(5 + 5 / 12, "feet"),
  32877. default: true
  32878. },
  32879. {
  32880. name: "Macro",
  32881. height: math.unit(25, "feet")
  32882. },
  32883. ]
  32884. ))
  32885. characterMakers.push(() => makeCharacter(
  32886. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32887. {
  32888. front: {
  32889. height: math.unit(5 + 10/12, "feet"),
  32890. name: "Front",
  32891. image: {
  32892. source: "./media/characters/argon/front.svg",
  32893. extra: 2009/1935,
  32894. bottom: 118/2127
  32895. }
  32896. },
  32897. back: {
  32898. height: math.unit(5 + 10/12, "feet"),
  32899. name: "Back",
  32900. image: {
  32901. source: "./media/characters/argon/back.svg",
  32902. extra: 2047/1992,
  32903. bottom: 20/2067
  32904. }
  32905. },
  32906. frontDressed: {
  32907. height: math.unit(5 + 10/12, "feet"),
  32908. name: "Front (Dressed)",
  32909. image: {
  32910. source: "./media/characters/argon/front-dressed.svg",
  32911. extra: 2009/1935,
  32912. bottom: 118/2127
  32913. }
  32914. },
  32915. },
  32916. [
  32917. {
  32918. name: "Normal",
  32919. height: math.unit(5 + 10/12, "feet"),
  32920. default: true
  32921. },
  32922. ]
  32923. ))
  32924. characterMakers.push(() => makeCharacter(
  32925. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32926. {
  32927. front: {
  32928. height: math.unit(8 + 6/12, "feet"),
  32929. weight: math.unit(1150, "lb"),
  32930. name: "Front",
  32931. image: {
  32932. source: "./media/characters/kichi/front.svg",
  32933. extra: 1267/1164,
  32934. bottom: 61/1328
  32935. }
  32936. },
  32937. back: {
  32938. height: math.unit(8 + 6/12, "feet"),
  32939. weight: math.unit(1150, "lb"),
  32940. name: "Back",
  32941. image: {
  32942. source: "./media/characters/kichi/back.svg",
  32943. extra: 1273/1166,
  32944. bottom: 33/1306
  32945. }
  32946. },
  32947. },
  32948. [
  32949. {
  32950. name: "Normal",
  32951. height: math.unit(8 + 6/12, "feet"),
  32952. default: true
  32953. },
  32954. ]
  32955. ))
  32956. characterMakers.push(() => makeCharacter(
  32957. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32958. {
  32959. front: {
  32960. height: math.unit(6, "feet"),
  32961. weight: math.unit(210, "lb"),
  32962. name: "Front",
  32963. image: {
  32964. source: "./media/characters/manetel-greyscale/front.svg",
  32965. extra: 350/312,
  32966. bottom: 8/358
  32967. }
  32968. },
  32969. },
  32970. [
  32971. {
  32972. name: "Micro",
  32973. height: math.unit(2, "inches")
  32974. },
  32975. {
  32976. name: "Normal",
  32977. height: math.unit(6, "feet"),
  32978. default: true
  32979. },
  32980. {
  32981. name: "Minimacro",
  32982. height: math.unit(17, "feet")
  32983. },
  32984. {
  32985. name: "Macro",
  32986. height: math.unit(117, "feet")
  32987. },
  32988. ]
  32989. ))
  32990. characterMakers.push(() => makeCharacter(
  32991. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32992. {
  32993. side: {
  32994. height: math.unit(5 + 1/12, "feet"),
  32995. weight: math.unit(418, "lb"),
  32996. name: "Side",
  32997. image: {
  32998. source: "./media/characters/softpurr/side.svg",
  32999. extra: 1993/1945,
  33000. bottom: 134/2127
  33001. }
  33002. },
  33003. front: {
  33004. height: math.unit(5 + 1/12, "feet"),
  33005. weight: math.unit(418, "lb"),
  33006. name: "Front",
  33007. image: {
  33008. source: "./media/characters/softpurr/front.svg",
  33009. extra: 1950/1856,
  33010. bottom: 174/2124
  33011. }
  33012. },
  33013. paw: {
  33014. height: math.unit(1, "feet"),
  33015. name: "Paw",
  33016. image: {
  33017. source: "./media/characters/softpurr/paw.svg"
  33018. }
  33019. },
  33020. },
  33021. [
  33022. {
  33023. name: "Normal",
  33024. height: math.unit(5 + 1/12, "feet"),
  33025. default: true
  33026. },
  33027. ]
  33028. ))
  33029. characterMakers.push(() => makeCharacter(
  33030. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33031. {
  33032. front: {
  33033. height: math.unit(260, "meters"),
  33034. name: "Front",
  33035. image: {
  33036. source: "./media/characters/anahita/front.svg",
  33037. extra: 665/635,
  33038. bottom: 89/754
  33039. }
  33040. },
  33041. },
  33042. [
  33043. {
  33044. name: "Macro",
  33045. height: math.unit(260, "meters"),
  33046. default: true
  33047. },
  33048. ]
  33049. ))
  33050. characterMakers.push(() => makeCharacter(
  33051. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33052. {
  33053. front: {
  33054. height: math.unit(4 + 10/12, "feet"),
  33055. weight: math.unit(160, "lb"),
  33056. name: "Front",
  33057. image: {
  33058. source: "./media/characters/chip-mouse/front.svg",
  33059. extra: 3528/3408,
  33060. bottom: 0/3528
  33061. }
  33062. },
  33063. frontNsfw: {
  33064. height: math.unit(4 + 10/12, "feet"),
  33065. weight: math.unit(160, "lb"),
  33066. name: "Front (NSFW)",
  33067. image: {
  33068. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33069. extra: 3528/3408,
  33070. bottom: 0/3528
  33071. }
  33072. },
  33073. },
  33074. [
  33075. {
  33076. name: "Normal",
  33077. height: math.unit(4 + 10/12, "feet"),
  33078. default: true
  33079. },
  33080. ]
  33081. ))
  33082. characterMakers.push(() => makeCharacter(
  33083. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33084. {
  33085. side: {
  33086. height: math.unit(10, "feet"),
  33087. weight: math.unit(14000, "lb"),
  33088. name: "Side",
  33089. image: {
  33090. source: "./media/characters/kremm/side.svg",
  33091. extra: 1390/1053,
  33092. bottom: 90/1480
  33093. }
  33094. },
  33095. gut: {
  33096. height: math.unit(5.8, "feet"),
  33097. name: "Gut",
  33098. image: {
  33099. source: "./media/characters/kremm/gut.svg"
  33100. }
  33101. },
  33102. ass: {
  33103. height: math.unit(6.1, "feet"),
  33104. name: "Ass",
  33105. image: {
  33106. source: "./media/characters/kremm/ass.svg"
  33107. }
  33108. },
  33109. jaws: {
  33110. height: math.unit(2.2, "feet"),
  33111. name: "Jaws",
  33112. image: {
  33113. source: "./media/characters/kremm/jaws.svg"
  33114. }
  33115. },
  33116. dick: {
  33117. height: math.unit(4.26, "feet"),
  33118. name: "Dick",
  33119. image: {
  33120. source: "./media/characters/kremm/dick.svg"
  33121. }
  33122. },
  33123. },
  33124. [
  33125. {
  33126. name: "Normal",
  33127. height: math.unit(10, "feet"),
  33128. default: true
  33129. },
  33130. ]
  33131. ))
  33132. characterMakers.push(() => makeCharacter(
  33133. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33134. {
  33135. front: {
  33136. height: math.unit(30, "stories"),
  33137. name: "Front",
  33138. image: {
  33139. source: "./media/characters/kai/front.svg",
  33140. extra: 1892/1718,
  33141. bottom: 162/2054
  33142. }
  33143. },
  33144. },
  33145. [
  33146. {
  33147. name: "Macro",
  33148. height: math.unit(30, "stories"),
  33149. default: true
  33150. },
  33151. ]
  33152. ))
  33153. characterMakers.push(() => makeCharacter(
  33154. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33155. {
  33156. front: {
  33157. height: math.unit(6 + 4/12, "feet"),
  33158. weight: math.unit(145, "lb"),
  33159. name: "Front",
  33160. image: {
  33161. source: "./media/characters/sykes/front.svg",
  33162. extra: 1321 / 1187,
  33163. bottom: 66 / 1387
  33164. }
  33165. },
  33166. back: {
  33167. height: math.unit(6 + 4/12, "feet"),
  33168. weight: math.unit(145, "lb"),
  33169. name: "Back",
  33170. image: {
  33171. source: "./media/characters/sykes/back.svg",
  33172. extra: 1326/1181,
  33173. bottom: 31/1357
  33174. }
  33175. },
  33176. handBack: {
  33177. height: math.unit(0.9, "feet"),
  33178. name: "Hand (Back)",
  33179. image: {
  33180. source: "./media/characters/sykes/hand-back.svg"
  33181. }
  33182. },
  33183. handFront: {
  33184. height: math.unit(0.839, "feet"),
  33185. name: "Hand (Front)",
  33186. image: {
  33187. source: "./media/characters/sykes/hand-front.svg"
  33188. }
  33189. },
  33190. leftFoot: {
  33191. height: math.unit(1.2, "feet"),
  33192. name: "Foot (Left)",
  33193. image: {
  33194. source: "./media/characters/sykes/foot-left.svg"
  33195. }
  33196. },
  33197. rightFoot: {
  33198. height: math.unit(1.2, "feet"),
  33199. name: "Foot (Right)",
  33200. image: {
  33201. source: "./media/characters/sykes/foot-right.svg"
  33202. }
  33203. },
  33204. maw: {
  33205. height: math.unit(1.93, "feet"),
  33206. name: "Maw",
  33207. image: {
  33208. source: "./media/characters/sykes/maw.svg"
  33209. }
  33210. },
  33211. teeth: {
  33212. height: math.unit(0.51, "feet"),
  33213. name: "Teeth",
  33214. image: {
  33215. source: "./media/characters/sykes/teeth.svg"
  33216. }
  33217. },
  33218. tongue: {
  33219. height: math.unit(2.13, "feet"),
  33220. name: "Tongue",
  33221. image: {
  33222. source: "./media/characters/sykes/tongue.svg"
  33223. }
  33224. },
  33225. uvula: {
  33226. height: math.unit(0.16, "feet"),
  33227. name: "Uvula",
  33228. image: {
  33229. source: "./media/characters/sykes/uvula.svg"
  33230. }
  33231. },
  33232. collar: {
  33233. height: math.unit(0.287, "feet"),
  33234. name: "Collar",
  33235. image: {
  33236. source: "./media/characters/sykes/collar.svg"
  33237. }
  33238. },
  33239. },
  33240. [
  33241. {
  33242. name: "Shrunken",
  33243. height: math.unit(5, "inches")
  33244. },
  33245. {
  33246. name: "Normal",
  33247. height: math.unit(6 + 4 / 12, "feet"),
  33248. default: true
  33249. },
  33250. {
  33251. name: "Big",
  33252. height: math.unit(15, "feet")
  33253. },
  33254. ]
  33255. ))
  33256. characterMakers.push(() => makeCharacter(
  33257. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33258. {
  33259. front: {
  33260. height: math.unit(5 + 8/12, "feet"),
  33261. weight: math.unit(190, "lb"),
  33262. name: "Front",
  33263. image: {
  33264. source: "./media/characters/oven-otter/front.svg",
  33265. extra: 1809/1740,
  33266. bottom: 181/1990
  33267. }
  33268. },
  33269. back: {
  33270. height: math.unit(5 + 8/12, "feet"),
  33271. weight: math.unit(190, "lb"),
  33272. name: "Back",
  33273. image: {
  33274. source: "./media/characters/oven-otter/back.svg",
  33275. extra: 1709/1635,
  33276. bottom: 118/1827
  33277. }
  33278. },
  33279. hand: {
  33280. height: math.unit(1.07, "feet"),
  33281. name: "Hand",
  33282. image: {
  33283. source: "./media/characters/oven-otter/hand.svg"
  33284. }
  33285. },
  33286. beans: {
  33287. height: math.unit(1.74, "feet"),
  33288. name: "Beans",
  33289. image: {
  33290. source: "./media/characters/oven-otter/beans.svg"
  33291. }
  33292. },
  33293. },
  33294. [
  33295. {
  33296. name: "Micro",
  33297. height: math.unit(0.5, "inches")
  33298. },
  33299. {
  33300. name: "Normal",
  33301. height: math.unit(5 + 8/12, "feet"),
  33302. default: true
  33303. },
  33304. {
  33305. name: "Macro",
  33306. height: math.unit(250, "feet")
  33307. },
  33308. {
  33309. name: "Really High",
  33310. height: math.unit(420, "feet")
  33311. },
  33312. ]
  33313. ))
  33314. characterMakers.push(() => makeCharacter(
  33315. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33316. {
  33317. front: {
  33318. height: math.unit(5, "meters"),
  33319. weight: math.unit(292000000000000, "kg"),
  33320. name: "Front",
  33321. image: {
  33322. source: "./media/characters/devourer/front.svg",
  33323. extra: 1800/1733,
  33324. bottom: 211/2011
  33325. }
  33326. },
  33327. maw: {
  33328. height: math.unit(1.1, "meter"),
  33329. name: "Maw",
  33330. image: {
  33331. source: "./media/characters/devourer/maw.svg"
  33332. }
  33333. },
  33334. },
  33335. [
  33336. {
  33337. name: "Small",
  33338. height: math.unit(3, "meters")
  33339. },
  33340. {
  33341. name: "Large",
  33342. height: math.unit(5, "meters"),
  33343. default: true
  33344. },
  33345. ]
  33346. ))
  33347. characterMakers.push(() => makeCharacter(
  33348. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33349. {
  33350. front: {
  33351. height: math.unit(6, "feet"),
  33352. weight: math.unit(400, "lb"),
  33353. name: "Front",
  33354. image: {
  33355. source: "./media/characters/ellarby/front.svg",
  33356. extra: 1909/1763,
  33357. bottom: 80/1989
  33358. }
  33359. },
  33360. back: {
  33361. height: math.unit(6, "feet"),
  33362. weight: math.unit(400, "lb"),
  33363. name: "Back",
  33364. image: {
  33365. source: "./media/characters/ellarby/back.svg",
  33366. extra: 1914/1784,
  33367. bottom: 172/2086
  33368. }
  33369. },
  33370. },
  33371. [
  33372. {
  33373. name: "Mischief",
  33374. height: math.unit(18, "inches")
  33375. },
  33376. {
  33377. name: "Trouble",
  33378. height: math.unit(12, "feet")
  33379. },
  33380. {
  33381. name: "Havoc",
  33382. height: math.unit(200, "feet"),
  33383. default: true
  33384. },
  33385. {
  33386. name: "Pandemonium",
  33387. height: math.unit(1, "mile")
  33388. },
  33389. {
  33390. name: "Catastrophe",
  33391. height: math.unit(100, "miles")
  33392. },
  33393. ]
  33394. ))
  33395. characterMakers.push(() => makeCharacter(
  33396. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33397. {
  33398. front: {
  33399. height: math.unit(4.7, "meters"),
  33400. weight: math.unit(6500, "kg"),
  33401. name: "Front",
  33402. image: {
  33403. source: "./media/characters/vex/front.svg",
  33404. extra: 1288/1140,
  33405. bottom: 100/1388
  33406. }
  33407. },
  33408. },
  33409. [
  33410. {
  33411. name: "Normal",
  33412. height: math.unit(4.7, "meters"),
  33413. default: true
  33414. },
  33415. ]
  33416. ))
  33417. characterMakers.push(() => makeCharacter(
  33418. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33419. {
  33420. normal: {
  33421. height: math.unit(6, "feet"),
  33422. weight: math.unit(350, "lb"),
  33423. name: "Normal",
  33424. image: {
  33425. source: "./media/characters/teshy/normal.svg",
  33426. extra: 1795/1735,
  33427. bottom: 16/1811
  33428. }
  33429. },
  33430. monsterFront: {
  33431. height: math.unit(12, "feet"),
  33432. weight: math.unit(4700, "lb"),
  33433. name: "Monster (Front)",
  33434. image: {
  33435. source: "./media/characters/teshy/monster-front.svg",
  33436. extra: 2042/2034,
  33437. bottom: 128/2170
  33438. }
  33439. },
  33440. monsterSide: {
  33441. height: math.unit(12, "feet"),
  33442. weight: math.unit(4700, "lb"),
  33443. name: "Monster (Side)",
  33444. image: {
  33445. source: "./media/characters/teshy/monster-side.svg",
  33446. extra: 2067/2056,
  33447. bottom: 70/2137
  33448. }
  33449. },
  33450. monsterBack: {
  33451. height: math.unit(12, "feet"),
  33452. weight: math.unit(4700, "lb"),
  33453. name: "Monster (Back)",
  33454. image: {
  33455. source: "./media/characters/teshy/monster-back.svg",
  33456. extra: 1921/1914,
  33457. bottom: 171/2092
  33458. }
  33459. },
  33460. },
  33461. [
  33462. {
  33463. name: "Normal",
  33464. height: math.unit(6, "feet"),
  33465. default: true
  33466. },
  33467. ]
  33468. ))
  33469. characterMakers.push(() => makeCharacter(
  33470. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33471. {
  33472. front: {
  33473. height: math.unit(6, "feet"),
  33474. name: "Front",
  33475. image: {
  33476. source: "./media/characters/ramey/front.svg",
  33477. extra: 790/787,
  33478. bottom: 27/817
  33479. }
  33480. },
  33481. },
  33482. [
  33483. {
  33484. name: "Normal",
  33485. height: math.unit(6, "feet"),
  33486. default: true
  33487. },
  33488. ]
  33489. ))
  33490. characterMakers.push(() => makeCharacter(
  33491. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33492. {
  33493. front: {
  33494. height: math.unit(5 + 5/12, "feet"),
  33495. weight: math.unit(120, "lb"),
  33496. name: "Front",
  33497. image: {
  33498. source: "./media/characters/phirae/front.svg",
  33499. extra: 2491/2436,
  33500. bottom: 38/2529
  33501. }
  33502. },
  33503. },
  33504. [
  33505. {
  33506. name: "Normal",
  33507. height: math.unit(5 + 5/12, "feet"),
  33508. default: true
  33509. },
  33510. ]
  33511. ))
  33512. characterMakers.push(() => makeCharacter(
  33513. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33514. {
  33515. front: {
  33516. height: math.unit(6, "feet"),
  33517. weight: math.unit(150, "lb"),
  33518. name: "Front",
  33519. image: {
  33520. source: "./media/characters/stagglas/front.svg",
  33521. extra: 962/882,
  33522. bottom: 53/1015
  33523. }
  33524. },
  33525. },
  33526. [
  33527. {
  33528. name: "Normal",
  33529. height: math.unit(5 + 3/12, "feet"),
  33530. default: true
  33531. },
  33532. ]
  33533. ))
  33534. characterMakers.push(() => makeCharacter(
  33535. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33536. {
  33537. front: {
  33538. height: math.unit(5 + 4/12, "feet"),
  33539. weight: math.unit(145, "lb"),
  33540. name: "Front",
  33541. image: {
  33542. source: "./media/characters/starra/front.svg",
  33543. extra: 1790/1691,
  33544. bottom: 91/1881
  33545. }
  33546. },
  33547. },
  33548. [
  33549. {
  33550. name: "Normal",
  33551. height: math.unit(5 + 4/12, "feet"),
  33552. default: true
  33553. },
  33554. ]
  33555. ))
  33556. characterMakers.push(() => makeCharacter(
  33557. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33558. {
  33559. front: {
  33560. height: math.unit(2.2, "meters"),
  33561. name: "Front",
  33562. image: {
  33563. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33564. extra: 1194/1005,
  33565. bottom: 25/1219
  33566. }
  33567. },
  33568. },
  33569. [
  33570. {
  33571. name: "Normal",
  33572. height: math.unit(2.2, "meters"),
  33573. default: true
  33574. },
  33575. ]
  33576. ))
  33577. characterMakers.push(() => makeCharacter(
  33578. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33579. {
  33580. side: {
  33581. height: math.unit(8 + 2/12, "feet"),
  33582. weight: math.unit(1240, "lb"),
  33583. name: "Side",
  33584. image: {
  33585. source: "./media/characters/mika-valentine/side.svg",
  33586. extra: 2670/2501,
  33587. bottom: 250/2920
  33588. }
  33589. },
  33590. },
  33591. [
  33592. {
  33593. name: "Normal",
  33594. height: math.unit(8 + 2/12, "feet"),
  33595. default: true
  33596. },
  33597. ]
  33598. ))
  33599. characterMakers.push(() => makeCharacter(
  33600. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33601. {
  33602. front: {
  33603. height: math.unit(7 + 2/12, "feet"),
  33604. name: "Front",
  33605. image: {
  33606. source: "./media/characters/xoltol/front.svg",
  33607. extra: 2212/2124,
  33608. bottom: 84/2296
  33609. }
  33610. },
  33611. side: {
  33612. height: math.unit(7 + 2/12, "feet"),
  33613. name: "Side",
  33614. image: {
  33615. source: "./media/characters/xoltol/side.svg",
  33616. extra: 2273/2197,
  33617. bottom: 26/2299
  33618. }
  33619. },
  33620. hand: {
  33621. height: math.unit(2.5, "feet"),
  33622. name: "Hand",
  33623. image: {
  33624. source: "./media/characters/xoltol/hand.svg"
  33625. }
  33626. },
  33627. },
  33628. [
  33629. {
  33630. name: "Small-ish",
  33631. height: math.unit(5 + 11/12, "feet")
  33632. },
  33633. {
  33634. name: "Normal",
  33635. height: math.unit(7 + 2/12, "feet")
  33636. },
  33637. {
  33638. name: "\"Macro\"",
  33639. height: math.unit(14 + 9/12, "feet"),
  33640. default: true
  33641. },
  33642. {
  33643. name: "Alternate Height",
  33644. height: math.unit(20, "feet")
  33645. },
  33646. {
  33647. name: "Actually Macro",
  33648. height: math.unit(100, "feet")
  33649. },
  33650. ]
  33651. ))
  33652. characterMakers.push(() => makeCharacter(
  33653. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33654. {
  33655. front: {
  33656. height: math.unit(5 + 2/12, "feet"),
  33657. name: "Front",
  33658. image: {
  33659. source: "./media/characters/kotetsu-redwood/front.svg",
  33660. extra: 1053/942,
  33661. bottom: 60/1113
  33662. }
  33663. },
  33664. },
  33665. [
  33666. {
  33667. name: "Normal",
  33668. height: math.unit(5 + 2/12, "feet"),
  33669. default: true
  33670. },
  33671. ]
  33672. ))
  33673. characterMakers.push(() => makeCharacter(
  33674. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33675. {
  33676. front: {
  33677. height: math.unit(2.4, "meters"),
  33678. weight: math.unit(125, "kg"),
  33679. name: "Front",
  33680. image: {
  33681. source: "./media/characters/lilith/front.svg",
  33682. extra: 1590/1513,
  33683. bottom: 203/1793
  33684. }
  33685. },
  33686. },
  33687. [
  33688. {
  33689. name: "Humanoid",
  33690. height: math.unit(2.4, "meters")
  33691. },
  33692. {
  33693. name: "Normal",
  33694. height: math.unit(6, "meters"),
  33695. default: true
  33696. },
  33697. {
  33698. name: "Largest",
  33699. height: math.unit(55, "meters")
  33700. },
  33701. ]
  33702. ))
  33703. characterMakers.push(() => makeCharacter(
  33704. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33705. {
  33706. front: {
  33707. height: math.unit(8 + 4/12, "feet"),
  33708. weight: math.unit(535, "lb"),
  33709. name: "Front",
  33710. image: {
  33711. source: "./media/characters/beh'kah-bolger/front.svg",
  33712. extra: 1660/1603,
  33713. bottom: 37/1697
  33714. }
  33715. },
  33716. },
  33717. [
  33718. {
  33719. name: "Normal",
  33720. height: math.unit(8 + 4/12, "feet"),
  33721. default: true
  33722. },
  33723. {
  33724. name: "Kaiju",
  33725. height: math.unit(250, "feet")
  33726. },
  33727. {
  33728. name: "Still Growing",
  33729. height: math.unit(10, "miles")
  33730. },
  33731. {
  33732. name: "Continental",
  33733. height: math.unit(5000, "miles")
  33734. },
  33735. {
  33736. name: "Final Form",
  33737. height: math.unit(2500000, "miles")
  33738. },
  33739. ]
  33740. ))
  33741. characterMakers.push(() => makeCharacter(
  33742. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33743. {
  33744. front: {
  33745. height: math.unit(7 + 2/12, "feet"),
  33746. weight: math.unit(230, "kg"),
  33747. name: "Front",
  33748. image: {
  33749. source: "./media/characters/tatyana-milewska/front.svg",
  33750. extra: 1199/1150,
  33751. bottom: 86/1285
  33752. }
  33753. },
  33754. },
  33755. [
  33756. {
  33757. name: "Normal",
  33758. height: math.unit(7 + 2/12, "feet"),
  33759. default: true
  33760. },
  33761. {
  33762. name: "Big",
  33763. height: math.unit(12, "feet")
  33764. },
  33765. {
  33766. name: "Minimacro",
  33767. height: math.unit(20, "feet")
  33768. },
  33769. {
  33770. name: "Macro",
  33771. height: math.unit(120, "feet")
  33772. },
  33773. ]
  33774. ))
  33775. characterMakers.push(() => makeCharacter(
  33776. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33777. {
  33778. front: {
  33779. height: math.unit(7 + 8/12, "feet"),
  33780. weight: math.unit(152, "kg"),
  33781. name: "Front",
  33782. image: {
  33783. source: "./media/characters/helen-arri/front.svg",
  33784. extra: 440/423,
  33785. bottom: 14/454
  33786. }
  33787. },
  33788. back: {
  33789. height: math.unit(7 + 8/12, "feet"),
  33790. weight: math.unit(152, "kg"),
  33791. name: "Back",
  33792. image: {
  33793. source: "./media/characters/helen-arri/back.svg",
  33794. extra: 443/426,
  33795. bottom: 8/451
  33796. }
  33797. },
  33798. },
  33799. [
  33800. {
  33801. name: "Normal",
  33802. height: math.unit(7 + 8/12, "feet"),
  33803. default: true
  33804. },
  33805. {
  33806. name: "Big",
  33807. height: math.unit(14, "feet")
  33808. },
  33809. {
  33810. name: "Minimacro",
  33811. height: math.unit(24, "feet")
  33812. },
  33813. {
  33814. name: "Macro",
  33815. height: math.unit(140, "feet")
  33816. },
  33817. ]
  33818. ))
  33819. characterMakers.push(() => makeCharacter(
  33820. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33821. {
  33822. front: {
  33823. height: math.unit(6, "meters"),
  33824. name: "Front",
  33825. image: {
  33826. source: "./media/characters/ehanu-rehu/front.svg",
  33827. extra: 1800/1800,
  33828. bottom: 59/1859
  33829. }
  33830. },
  33831. },
  33832. [
  33833. {
  33834. name: "Normal",
  33835. height: math.unit(6, "meters"),
  33836. default: true
  33837. },
  33838. ]
  33839. ))
  33840. characterMakers.push(() => makeCharacter(
  33841. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33842. {
  33843. front: {
  33844. height: math.unit(7 + 3/12, "feet"),
  33845. name: "Front",
  33846. image: {
  33847. source: "./media/characters/renholder/front.svg",
  33848. extra: 3096/2960,
  33849. bottom: 250/3346
  33850. }
  33851. },
  33852. },
  33853. [
  33854. {
  33855. name: "Normal Bat",
  33856. height: math.unit(7 + 3/12, "feet"),
  33857. default: true
  33858. },
  33859. {
  33860. name: "Slightly Tall Bat",
  33861. height: math.unit(100, "feet")
  33862. },
  33863. {
  33864. name: "Big Bat",
  33865. height: math.unit(1000, "feet")
  33866. },
  33867. {
  33868. name: "City-Sized Bat",
  33869. height: math.unit(200000, "feet")
  33870. },
  33871. {
  33872. name: "Bigger Bat",
  33873. height: math.unit(10000, "miles")
  33874. },
  33875. {
  33876. name: "Solar Sized Bat",
  33877. height: math.unit(100, "AU")
  33878. },
  33879. {
  33880. name: "Galactic Bat",
  33881. height: math.unit(200000, "lightyears")
  33882. },
  33883. {
  33884. name: "Universally Known Bat",
  33885. height: math.unit(1, "universe")
  33886. },
  33887. ]
  33888. ))
  33889. characterMakers.push(() => makeCharacter(
  33890. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33891. {
  33892. front: {
  33893. height: math.unit(6 + 11/12, "feet"),
  33894. weight: math.unit(250, "lb"),
  33895. name: "Front",
  33896. image: {
  33897. source: "./media/characters/cookiecat/front.svg",
  33898. extra: 893/827,
  33899. bottom: 14/907
  33900. }
  33901. },
  33902. },
  33903. [
  33904. {
  33905. name: "Micro",
  33906. height: math.unit(3, "inches")
  33907. },
  33908. {
  33909. name: "Normal",
  33910. height: math.unit(6 + 11/12, "feet"),
  33911. default: true
  33912. },
  33913. {
  33914. name: "Macro",
  33915. height: math.unit(100, "feet")
  33916. },
  33917. {
  33918. name: "Macro+",
  33919. height: math.unit(404, "feet")
  33920. },
  33921. {
  33922. name: "Megamacro",
  33923. height: math.unit(165, "miles")
  33924. },
  33925. {
  33926. name: "Planetary",
  33927. height: math.unit(4600, "miles")
  33928. },
  33929. ]
  33930. ))
  33931. characterMakers.push(() => makeCharacter(
  33932. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33933. {
  33934. front: {
  33935. height: math.unit(10 + 3/12, "feet"),
  33936. weight: math.unit(1500, "lb"),
  33937. name: "Front",
  33938. image: {
  33939. source: "./media/characters/tux-kusanagi/front.svg",
  33940. extra: 944/840,
  33941. bottom: 39/983
  33942. }
  33943. },
  33944. back: {
  33945. height: math.unit(10 + 3/12, "feet"),
  33946. weight: math.unit(1500, "lb"),
  33947. name: "Back",
  33948. image: {
  33949. source: "./media/characters/tux-kusanagi/back.svg",
  33950. extra: 941/842,
  33951. bottom: 28/969
  33952. }
  33953. },
  33954. rump: {
  33955. height: math.unit(5.25, "feet"),
  33956. name: "Rump",
  33957. image: {
  33958. source: "./media/characters/tux-kusanagi/rump.svg"
  33959. }
  33960. },
  33961. beak: {
  33962. height: math.unit(1.54, "feet"),
  33963. name: "Beak",
  33964. image: {
  33965. source: "./media/characters/tux-kusanagi/beak.svg"
  33966. }
  33967. },
  33968. },
  33969. [
  33970. {
  33971. name: "Normal",
  33972. height: math.unit(10 + 3/12, "feet"),
  33973. default: true
  33974. },
  33975. ]
  33976. ))
  33977. characterMakers.push(() => makeCharacter(
  33978. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  33979. {
  33980. front: {
  33981. height: math.unit(58, "feet"),
  33982. weight: math.unit(200, "tons"),
  33983. name: "Front",
  33984. image: {
  33985. source: "./media/characters/uzarmazari/front.svg",
  33986. extra: 1575/1455,
  33987. bottom: 152/1727
  33988. }
  33989. },
  33990. back: {
  33991. height: math.unit(58, "feet"),
  33992. weight: math.unit(200, "tons"),
  33993. name: "Back",
  33994. image: {
  33995. source: "./media/characters/uzarmazari/back.svg",
  33996. extra: 1585/1510,
  33997. bottom: 157/1742
  33998. }
  33999. },
  34000. head: {
  34001. height: math.unit(26, "feet"),
  34002. name: "Head",
  34003. image: {
  34004. source: "./media/characters/uzarmazari/head.svg"
  34005. }
  34006. },
  34007. },
  34008. [
  34009. {
  34010. name: "Normal",
  34011. height: math.unit(58, "feet"),
  34012. default: true
  34013. },
  34014. ]
  34015. ))
  34016. characterMakers.push(() => makeCharacter(
  34017. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34018. {
  34019. side: {
  34020. height: math.unit(15, "feet"),
  34021. name: "Side",
  34022. image: {
  34023. source: "./media/characters/akitu/side.svg",
  34024. extra: 1421/1321,
  34025. bottom: 157/1578
  34026. }
  34027. },
  34028. front: {
  34029. height: math.unit(15, "feet"),
  34030. name: "Front",
  34031. image: {
  34032. source: "./media/characters/akitu/front.svg",
  34033. extra: 1435/1326,
  34034. bottom: 232/1667
  34035. }
  34036. },
  34037. },
  34038. [
  34039. {
  34040. name: "Normal",
  34041. height: math.unit(15, "feet"),
  34042. default: true
  34043. },
  34044. ]
  34045. ))
  34046. characterMakers.push(() => makeCharacter(
  34047. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34048. {
  34049. front: {
  34050. height: math.unit(10 + 8/12, "feet"),
  34051. name: "Front",
  34052. image: {
  34053. source: "./media/characters/azalie-croixland/front.svg",
  34054. extra: 1972/1856,
  34055. bottom: 31/2003
  34056. }
  34057. },
  34058. },
  34059. [
  34060. {
  34061. name: "Original Height",
  34062. height: math.unit(5 + 4/12, "feet")
  34063. },
  34064. {
  34065. name: "Normal Height",
  34066. height: math.unit(10 + 8/12, "feet"),
  34067. default: true
  34068. },
  34069. ]
  34070. ))
  34071. characterMakers.push(() => makeCharacter(
  34072. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34073. {
  34074. side: {
  34075. height: math.unit(7 + 1/12, "feet"),
  34076. weight: math.unit(245, "lb"),
  34077. name: "Side",
  34078. image: {
  34079. source: "./media/characters/kavus-kazian/side.svg",
  34080. extra: 349/342,
  34081. bottom: 15/364
  34082. }
  34083. },
  34084. },
  34085. [
  34086. {
  34087. name: "Normal",
  34088. height: math.unit(7 + 1/12, "feet"),
  34089. default: true
  34090. },
  34091. ]
  34092. ))
  34093. characterMakers.push(() => makeCharacter(
  34094. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34095. {
  34096. normal: {
  34097. height: math.unit(5 + 11/12, "feet"),
  34098. name: "Normal",
  34099. image: {
  34100. source: "./media/characters/moonlight-rose/normal.svg",
  34101. extra: 1979/1835,
  34102. bottom: 14/1993
  34103. }
  34104. },
  34105. demon: {
  34106. height: math.unit(5, "km"),
  34107. name: "Demon",
  34108. image: {
  34109. source: "./media/characters/moonlight-rose/demon.svg",
  34110. extra: 986/916,
  34111. bottom: 28/1014
  34112. }
  34113. },
  34114. },
  34115. [
  34116. {
  34117. name: "\"Natural\" height",
  34118. height: math.unit(5 + 11/12, "feet")
  34119. },
  34120. {
  34121. name: "Comfortable Size",
  34122. height: math.unit(40, "meters")
  34123. },
  34124. {
  34125. name: "Common Size",
  34126. height: math.unit(50, "km"),
  34127. default: true
  34128. },
  34129. {
  34130. name: "Demonic",
  34131. height: math.unit(1.24415e+21, "meters")
  34132. },
  34133. ]
  34134. ))
  34135. characterMakers.push(() => makeCharacter(
  34136. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34137. {
  34138. front: {
  34139. height: math.unit(16, "feet"),
  34140. weight: math.unit(610, "kg"),
  34141. name: "Front",
  34142. image: {
  34143. source: "./media/characters/huckle/front.svg",
  34144. extra: 1731/1625,
  34145. bottom: 33/1764
  34146. }
  34147. },
  34148. back: {
  34149. height: math.unit(16, "feet"),
  34150. weight: math.unit(610, "kg"),
  34151. name: "Back",
  34152. image: {
  34153. source: "./media/characters/huckle/back.svg",
  34154. extra: 1738/1651,
  34155. bottom: 37/1775
  34156. }
  34157. },
  34158. laughing: {
  34159. height: math.unit(3.75, "feet"),
  34160. name: "Laughing",
  34161. image: {
  34162. source: "./media/characters/huckle/laughing.svg"
  34163. }
  34164. },
  34165. angry: {
  34166. height: math.unit(4.15, "feet"),
  34167. name: "Angry",
  34168. image: {
  34169. source: "./media/characters/huckle/angry.svg"
  34170. }
  34171. },
  34172. },
  34173. [
  34174. {
  34175. name: "Normal",
  34176. height: math.unit(16, "feet"),
  34177. default: true
  34178. },
  34179. {
  34180. name: "Mini Macro",
  34181. height: math.unit(463, "feet")
  34182. },
  34183. {
  34184. name: "Macro",
  34185. height: math.unit(1680, "meters")
  34186. },
  34187. {
  34188. name: "Mega Macro",
  34189. height: math.unit(175, "km")
  34190. },
  34191. {
  34192. name: "Terra Macro",
  34193. height: math.unit(32, "gigameters")
  34194. },
  34195. {
  34196. name: "Multiverse+",
  34197. height: math.unit(2.56e23, "yottameters")
  34198. },
  34199. ]
  34200. ))
  34201. characterMakers.push(() => makeCharacter(
  34202. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34203. {
  34204. front: {
  34205. height: math.unit(6 + 9/12, "feet"),
  34206. weight: math.unit(280, "lb"),
  34207. name: "Front",
  34208. image: {
  34209. source: "./media/characters/candy/front.svg",
  34210. extra: 234/217,
  34211. bottom: 11/245
  34212. }
  34213. },
  34214. },
  34215. [
  34216. {
  34217. name: "Really Small",
  34218. height: math.unit(0.1, "nm")
  34219. },
  34220. {
  34221. name: "Micro",
  34222. height: math.unit(2, "inches")
  34223. },
  34224. {
  34225. name: "Normal",
  34226. height: math.unit(6 + 9/12, "feet"),
  34227. default: true
  34228. },
  34229. {
  34230. name: "Small Macro",
  34231. height: math.unit(69, "feet")
  34232. },
  34233. {
  34234. name: "Macro",
  34235. height: math.unit(160, "feet")
  34236. },
  34237. {
  34238. name: "Megamacro",
  34239. height: math.unit(22000, "miles")
  34240. },
  34241. {
  34242. name: "Gigamacro",
  34243. height: math.unit(50000, "miles")
  34244. },
  34245. ]
  34246. ))
  34247. characterMakers.push(() => makeCharacter(
  34248. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34249. {
  34250. front: {
  34251. height: math.unit(4, "feet"),
  34252. weight: math.unit(90, "lb"),
  34253. name: "Front",
  34254. image: {
  34255. source: "./media/characters/joey-mcdonald/front.svg",
  34256. extra: 1059/852,
  34257. bottom: 33/1092
  34258. }
  34259. },
  34260. back: {
  34261. height: math.unit(4, "feet"),
  34262. weight: math.unit(90, "lb"),
  34263. name: "Back",
  34264. image: {
  34265. source: "./media/characters/joey-mcdonald/back.svg",
  34266. extra: 1077/879,
  34267. bottom: 5/1082
  34268. }
  34269. },
  34270. },
  34271. [
  34272. {
  34273. name: "Normal",
  34274. height: math.unit(4, "feet"),
  34275. default: true
  34276. },
  34277. ]
  34278. ))
  34279. characterMakers.push(() => makeCharacter(
  34280. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34281. {
  34282. front: {
  34283. height: math.unit(12 + 6/12, "feet"),
  34284. name: "Front",
  34285. image: {
  34286. source: "./media/characters/kass-lockheed/front.svg",
  34287. extra: 354/343,
  34288. bottom: 9/363
  34289. }
  34290. },
  34291. back: {
  34292. height: math.unit(12 + 6/12, "feet"),
  34293. name: "Back",
  34294. image: {
  34295. source: "./media/characters/kass-lockheed/back.svg",
  34296. extra: 364/352,
  34297. bottom: 3/367
  34298. }
  34299. },
  34300. dick: {
  34301. height: math.unit(3.12, "feet"),
  34302. name: "Dick",
  34303. image: {
  34304. source: "./media/characters/kass-lockheed/dick.svg"
  34305. }
  34306. },
  34307. head: {
  34308. height: math.unit(2.6, "feet"),
  34309. name: "Head",
  34310. image: {
  34311. source: "./media/characters/kass-lockheed/head.svg"
  34312. }
  34313. },
  34314. bleh: {
  34315. height: math.unit(2.85, "feet"),
  34316. name: "Bleh",
  34317. image: {
  34318. source: "./media/characters/kass-lockheed/bleh.svg"
  34319. }
  34320. },
  34321. smug: {
  34322. height: math.unit(2.85, "feet"),
  34323. name: "Smug",
  34324. image: {
  34325. source: "./media/characters/kass-lockheed/smug.svg"
  34326. }
  34327. },
  34328. },
  34329. [
  34330. {
  34331. name: "Normal",
  34332. height: math.unit(12 + 6/12, "feet"),
  34333. default: true
  34334. },
  34335. ]
  34336. ))
  34337. characterMakers.push(() => makeCharacter(
  34338. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34339. {
  34340. front: {
  34341. height: math.unit(6 + 2/12, "feet"),
  34342. name: "Front",
  34343. image: {
  34344. source: "./media/characters/taylor/front.svg",
  34345. extra: 639/495,
  34346. bottom: 12/651
  34347. }
  34348. },
  34349. },
  34350. [
  34351. {
  34352. name: "Normal",
  34353. height: math.unit(6 + 2/12, "feet"),
  34354. default: true
  34355. },
  34356. {
  34357. name: "Big",
  34358. height: math.unit(15, "feet")
  34359. },
  34360. {
  34361. name: "Lorg",
  34362. height: math.unit(80, "feet")
  34363. },
  34364. {
  34365. name: "Too Lorg",
  34366. height: math.unit(120, "feet")
  34367. },
  34368. ]
  34369. ))
  34370. characterMakers.push(() => makeCharacter(
  34371. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34372. {
  34373. front: {
  34374. height: math.unit(15, "feet"),
  34375. name: "Front",
  34376. image: {
  34377. source: "./media/characters/kaizer/front.svg",
  34378. extra: 1612/1436,
  34379. bottom: 43/1655
  34380. }
  34381. },
  34382. },
  34383. [
  34384. {
  34385. name: "Normal",
  34386. height: math.unit(15, "feet"),
  34387. default: true
  34388. },
  34389. ]
  34390. ))
  34391. characterMakers.push(() => makeCharacter(
  34392. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34393. {
  34394. front: {
  34395. height: math.unit(2, "feet"),
  34396. weight: math.unit(30, "lb"),
  34397. name: "Front",
  34398. image: {
  34399. source: "./media/characters/sandy/front.svg",
  34400. extra: 1439/1307,
  34401. bottom: 194/1633
  34402. }
  34403. },
  34404. },
  34405. [
  34406. {
  34407. name: "Normal",
  34408. height: math.unit(2, "feet"),
  34409. default: true
  34410. },
  34411. ]
  34412. ))
  34413. characterMakers.push(() => makeCharacter(
  34414. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34415. {
  34416. front: {
  34417. height: math.unit(3, "feet"),
  34418. name: "Front",
  34419. image: {
  34420. source: "./media/characters/mellvi/front.svg",
  34421. extra: 1831/1630,
  34422. bottom: 58/1889
  34423. }
  34424. },
  34425. },
  34426. [
  34427. {
  34428. name: "Normal",
  34429. height: math.unit(3, "feet"),
  34430. default: true
  34431. },
  34432. ]
  34433. ))
  34434. characterMakers.push(() => makeCharacter(
  34435. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34436. {
  34437. front: {
  34438. height: math.unit(5 + 11/12, "feet"),
  34439. weight: math.unit(200, "lb"),
  34440. name: "Front",
  34441. image: {
  34442. source: "./media/characters/shirou/front.svg",
  34443. extra: 2491/2383,
  34444. bottom: 189/2680
  34445. }
  34446. },
  34447. back: {
  34448. height: math.unit(5 + 11/12, "feet"),
  34449. weight: math.unit(200, "lb"),
  34450. name: "Back",
  34451. image: {
  34452. source: "./media/characters/shirou/back.svg",
  34453. extra: 2554/2450,
  34454. bottom: 76/2630
  34455. }
  34456. },
  34457. },
  34458. [
  34459. {
  34460. name: "Normal",
  34461. height: math.unit(5 + 11/12, "feet"),
  34462. default: true
  34463. },
  34464. ]
  34465. ))
  34466. characterMakers.push(() => makeCharacter(
  34467. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34468. {
  34469. front: {
  34470. height: math.unit(6 + 3/12, "feet"),
  34471. weight: math.unit(177, "lb"),
  34472. name: "Front",
  34473. image: {
  34474. source: "./media/characters/noryu/front.svg",
  34475. extra: 973/885,
  34476. bottom: 10/983
  34477. }
  34478. },
  34479. },
  34480. [
  34481. {
  34482. name: "Normal",
  34483. height: math.unit(6 + 3/12, "feet"),
  34484. default: true
  34485. },
  34486. ]
  34487. ))
  34488. characterMakers.push(() => makeCharacter(
  34489. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34490. {
  34491. front: {
  34492. height: math.unit(5 + 6/12, "feet"),
  34493. weight: math.unit(170, "lb"),
  34494. name: "Front",
  34495. image: {
  34496. source: "./media/characters/mevolas-rubenido/front.svg",
  34497. extra: 2109/1901,
  34498. bottom: 96/2205
  34499. }
  34500. },
  34501. },
  34502. [
  34503. {
  34504. name: "Normal",
  34505. height: math.unit(5 + 6/12, "feet"),
  34506. default: true
  34507. },
  34508. ]
  34509. ))
  34510. characterMakers.push(() => makeCharacter(
  34511. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34512. {
  34513. front: {
  34514. height: math.unit(100, "feet"),
  34515. name: "Front",
  34516. image: {
  34517. source: "./media/characters/dee/front.svg",
  34518. extra: 2153/2036,
  34519. bottom: 59/2212
  34520. }
  34521. },
  34522. back: {
  34523. height: math.unit(100, "feet"),
  34524. name: "Back",
  34525. image: {
  34526. source: "./media/characters/dee/back.svg",
  34527. extra: 2183/2058,
  34528. bottom: 75/2258
  34529. }
  34530. },
  34531. foot: {
  34532. height: math.unit(19.43, "feet"),
  34533. name: "Foot",
  34534. image: {
  34535. source: "./media/characters/dee/foot.svg"
  34536. }
  34537. },
  34538. hoof: {
  34539. height: math.unit(20.6, "feet"),
  34540. name: "Hoof",
  34541. image: {
  34542. source: "./media/characters/dee/hoof.svg"
  34543. }
  34544. },
  34545. },
  34546. [
  34547. {
  34548. name: "Macro",
  34549. height: math.unit(100, "feet"),
  34550. default: true
  34551. },
  34552. ]
  34553. ))
  34554. characterMakers.push(() => makeCharacter(
  34555. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34556. {
  34557. front: {
  34558. height: math.unit(5 + 6/12, "feet"),
  34559. name: "Front",
  34560. image: {
  34561. source: "./media/characters/teh/front.svg",
  34562. extra: 1002/847,
  34563. bottom: 62/1064
  34564. }
  34565. },
  34566. },
  34567. [
  34568. {
  34569. name: "Normal",
  34570. height: math.unit(5 + 6/12, "feet"),
  34571. default: true
  34572. },
  34573. ]
  34574. ))
  34575. characterMakers.push(() => makeCharacter(
  34576. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34577. {
  34578. side: {
  34579. height: math.unit(6 + 1/12, "feet"),
  34580. weight: math.unit(204, "lb"),
  34581. name: "Side",
  34582. image: {
  34583. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34584. extra: 974/775,
  34585. bottom: 169/1143
  34586. }
  34587. },
  34588. sitting: {
  34589. height: math.unit(6 + 2/12, "feet"),
  34590. weight: math.unit(204, "lb"),
  34591. name: "Sitting",
  34592. image: {
  34593. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34594. extra: 1175/964,
  34595. bottom: 378/1553
  34596. }
  34597. },
  34598. },
  34599. [
  34600. {
  34601. name: "Normal",
  34602. height: math.unit(6 + 1/12, "feet"),
  34603. default: true
  34604. },
  34605. ]
  34606. ))
  34607. characterMakers.push(() => makeCharacter(
  34608. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34609. {
  34610. front: {
  34611. height: math.unit(6, "inches"),
  34612. name: "Front",
  34613. image: {
  34614. source: "./media/characters/tululi/front.svg",
  34615. extra: 1997/1876,
  34616. bottom: 20/2017
  34617. }
  34618. },
  34619. },
  34620. [
  34621. {
  34622. name: "Normal",
  34623. height: math.unit(6, "inches"),
  34624. default: true
  34625. },
  34626. ]
  34627. ))
  34628. characterMakers.push(() => makeCharacter(
  34629. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34630. {
  34631. front: {
  34632. height: math.unit(4 + 1/12, "feet"),
  34633. name: "Front",
  34634. image: {
  34635. source: "./media/characters/star/front.svg",
  34636. extra: 1493/1189,
  34637. bottom: 48/1541
  34638. }
  34639. },
  34640. },
  34641. [
  34642. {
  34643. name: "Normal",
  34644. height: math.unit(4 + 1/12, "feet"),
  34645. default: true
  34646. },
  34647. ]
  34648. ))
  34649. characterMakers.push(() => makeCharacter(
  34650. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34651. {
  34652. front: {
  34653. height: math.unit(6 + 3/12, "feet"),
  34654. name: "Front",
  34655. image: {
  34656. source: "./media/characters/comet/front.svg",
  34657. extra: 1681/1462,
  34658. bottom: 26/1707
  34659. }
  34660. },
  34661. },
  34662. [
  34663. {
  34664. name: "Normal",
  34665. height: math.unit(6 + 3/12, "feet"),
  34666. default: true
  34667. },
  34668. ]
  34669. ))
  34670. characterMakers.push(() => makeCharacter(
  34671. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34672. {
  34673. front: {
  34674. height: math.unit(950, "feet"),
  34675. name: "Front",
  34676. image: {
  34677. source: "./media/characters/vortex/front.svg",
  34678. extra: 1497/1434,
  34679. bottom: 56/1553
  34680. }
  34681. },
  34682. maw: {
  34683. height: math.unit(285, "feet"),
  34684. name: "Maw",
  34685. image: {
  34686. source: "./media/characters/vortex/maw.svg"
  34687. }
  34688. },
  34689. },
  34690. [
  34691. {
  34692. name: "Macro",
  34693. height: math.unit(950, "feet"),
  34694. default: true
  34695. },
  34696. ]
  34697. ))
  34698. characterMakers.push(() => makeCharacter(
  34699. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34700. {
  34701. front: {
  34702. height: math.unit(600, "feet"),
  34703. weight: math.unit(0.02, "grams"),
  34704. name: "Front",
  34705. image: {
  34706. source: "./media/characters/doodle/front.svg",
  34707. extra: 1578/1413,
  34708. bottom: 37/1615
  34709. }
  34710. },
  34711. },
  34712. [
  34713. {
  34714. name: "Macro",
  34715. height: math.unit(600, "feet"),
  34716. default: true
  34717. },
  34718. ]
  34719. ))
  34720. characterMakers.push(() => makeCharacter(
  34721. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34722. {
  34723. front: {
  34724. height: math.unit(6 + 6/12, "feet"),
  34725. name: "Front",
  34726. image: {
  34727. source: "./media/characters/jai/front.svg",
  34728. extra: 1645/1534,
  34729. bottom: 115/1760
  34730. }
  34731. },
  34732. },
  34733. [
  34734. {
  34735. name: "Normal",
  34736. height: math.unit(6 + 6/12, "feet"),
  34737. default: true
  34738. },
  34739. ]
  34740. ))
  34741. characterMakers.push(() => makeCharacter(
  34742. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34743. {
  34744. front: {
  34745. height: math.unit(6 + 8/12, "feet"),
  34746. name: "Front",
  34747. image: {
  34748. source: "./media/characters/pixel/front.svg",
  34749. extra: 1900/1735,
  34750. bottom: 63/1963
  34751. }
  34752. },
  34753. },
  34754. [
  34755. {
  34756. name: "Normal",
  34757. height: math.unit(6 + 8/12, "feet"),
  34758. default: true
  34759. },
  34760. ]
  34761. ))
  34762. characterMakers.push(() => makeCharacter(
  34763. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34764. {
  34765. front: {
  34766. height: math.unit(4 + 11/12, "feet"),
  34767. weight: math.unit(111, "lb"),
  34768. name: "Front",
  34769. image: {
  34770. source: "./media/characters/rhett/front.svg",
  34771. extra: 1682/1586,
  34772. bottom: 92/1774
  34773. }
  34774. },
  34775. },
  34776. [
  34777. {
  34778. name: "Mini",
  34779. height: math.unit(1 + 1/12, "feet")
  34780. },
  34781. {
  34782. name: "Normal",
  34783. height: math.unit(4 + 11/12, "feet"),
  34784. default: true
  34785. },
  34786. ]
  34787. ))
  34788. characterMakers.push(() => makeCharacter(
  34789. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34790. {
  34791. front: {
  34792. height: math.unit(3 + 3/12, "feet"),
  34793. name: "Front",
  34794. image: {
  34795. source: "./media/characters/penny/front.svg",
  34796. extra: 1406/1311,
  34797. bottom: 26/1432
  34798. }
  34799. },
  34800. },
  34801. [
  34802. {
  34803. name: "Normal",
  34804. height: math.unit(3 + 3/12, "feet"),
  34805. default: true
  34806. },
  34807. ]
  34808. ))
  34809. characterMakers.push(() => makeCharacter(
  34810. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34811. {
  34812. front: {
  34813. height: math.unit(4 + 11/12, "feet"),
  34814. name: "Front",
  34815. image: {
  34816. source: "./media/characters/monty/front.svg",
  34817. extra: 1479/1209,
  34818. bottom: 0/1479
  34819. }
  34820. },
  34821. },
  34822. [
  34823. {
  34824. name: "Normal",
  34825. height: math.unit(4 + 11/12, "feet"),
  34826. default: true
  34827. },
  34828. ]
  34829. ))
  34830. characterMakers.push(() => makeCharacter(
  34831. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34832. {
  34833. front: {
  34834. height: math.unit(8 + 4/12, "feet"),
  34835. name: "Front",
  34836. image: {
  34837. source: "./media/characters/sterling/front.svg",
  34838. extra: 1420/1236,
  34839. bottom: 27/1447
  34840. }
  34841. },
  34842. },
  34843. [
  34844. {
  34845. name: "Normal",
  34846. height: math.unit(8 + 4/12, "feet"),
  34847. default: true
  34848. },
  34849. ]
  34850. ))
  34851. characterMakers.push(() => makeCharacter(
  34852. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34853. {
  34854. front: {
  34855. height: math.unit(15, "feet"),
  34856. name: "Front",
  34857. image: {
  34858. source: "./media/characters/marble/front.svg",
  34859. extra: 973/937,
  34860. bottom: 32/1005
  34861. }
  34862. },
  34863. },
  34864. [
  34865. {
  34866. name: "Normal",
  34867. height: math.unit(15, "feet"),
  34868. default: true
  34869. },
  34870. ]
  34871. ))
  34872. characterMakers.push(() => makeCharacter(
  34873. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34874. {
  34875. front: {
  34876. height: math.unit(3, "inches"),
  34877. name: "Front",
  34878. image: {
  34879. source: "./media/characters/powder/front.svg",
  34880. extra: 1504/1334,
  34881. bottom: 518/2022
  34882. }
  34883. },
  34884. },
  34885. [
  34886. {
  34887. name: "Normal",
  34888. height: math.unit(3, "inches"),
  34889. default: true
  34890. },
  34891. ]
  34892. ))
  34893. characterMakers.push(() => makeCharacter(
  34894. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  34895. {
  34896. front: {
  34897. height: math.unit(4 + 5/12, "feet"),
  34898. name: "Front",
  34899. image: {
  34900. source: "./media/characters/joey-raccoon/front.svg",
  34901. extra: 1273/1197,
  34902. bottom: 0/1273
  34903. }
  34904. },
  34905. },
  34906. [
  34907. {
  34908. name: "Normal",
  34909. height: math.unit(4 + 5/12, "feet"),
  34910. default: true
  34911. },
  34912. ]
  34913. ))
  34914. characterMakers.push(() => makeCharacter(
  34915. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  34916. {
  34917. front: {
  34918. height: math.unit(8 + 4/12, "feet"),
  34919. name: "Front",
  34920. image: {
  34921. source: "./media/characters/vick/front.svg",
  34922. extra: 2187/2118,
  34923. bottom: 47/2234
  34924. }
  34925. },
  34926. },
  34927. [
  34928. {
  34929. name: "Normal",
  34930. height: math.unit(8 + 4/12, "feet"),
  34931. default: true
  34932. },
  34933. ]
  34934. ))
  34935. characterMakers.push(() => makeCharacter(
  34936. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  34937. {
  34938. front: {
  34939. height: math.unit(5 + 5/12, "feet"),
  34940. name: "Front",
  34941. image: {
  34942. source: "./media/characters/mitsy/front.svg",
  34943. extra: 1842/1695,
  34944. bottom: 0/1842
  34945. }
  34946. },
  34947. },
  34948. [
  34949. {
  34950. name: "Normal",
  34951. height: math.unit(5 + 5/12, "feet"),
  34952. default: true
  34953. },
  34954. ]
  34955. ))
  34956. characterMakers.push(() => makeCharacter(
  34957. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  34958. {
  34959. front: {
  34960. height: math.unit(6 + 3/12, "feet"),
  34961. name: "Front",
  34962. image: {
  34963. source: "./media/characters/silvy/front.svg",
  34964. extra: 1995/1836,
  34965. bottom: 225/2220
  34966. }
  34967. },
  34968. },
  34969. [
  34970. {
  34971. name: "Normal",
  34972. height: math.unit(6 + 3/12, "feet"),
  34973. default: true
  34974. },
  34975. ]
  34976. ))
  34977. characterMakers.push(() => makeCharacter(
  34978. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  34979. {
  34980. front: {
  34981. height: math.unit(3 + 8/12, "feet"),
  34982. name: "Front",
  34983. image: {
  34984. source: "./media/characters/rodney/front.svg",
  34985. extra: 1956/1747,
  34986. bottom: 31/1987
  34987. }
  34988. },
  34989. frontDressed: {
  34990. height: math.unit(2.9, "feet"),
  34991. name: "Front (Dressed)",
  34992. image: {
  34993. source: "./media/characters/rodney/front-dressed.svg",
  34994. extra: 1382/1241,
  34995. bottom: 385/1767
  34996. }
  34997. },
  34998. },
  34999. [
  35000. {
  35001. name: "Normal",
  35002. height: math.unit(3 + 8/12, "feet"),
  35003. default: true
  35004. },
  35005. ]
  35006. ))
  35007. characterMakers.push(() => makeCharacter(
  35008. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35009. {
  35010. front: {
  35011. height: math.unit(5 + 9/12, "feet"),
  35012. weight: math.unit(194, "lbs"),
  35013. name: "Front",
  35014. image: {
  35015. source: "./media/characters/zakail-sudekai/front.svg",
  35016. extra: 2696/2533,
  35017. bottom: 248/2944
  35018. }
  35019. },
  35020. maw: {
  35021. height: math.unit(1.35, "feet"),
  35022. name: "Maw",
  35023. image: {
  35024. source: "./media/characters/zakail-sudekai/maw.svg"
  35025. }
  35026. },
  35027. },
  35028. [
  35029. {
  35030. name: "Normal",
  35031. height: math.unit(5 + 9/12, "feet"),
  35032. default: true
  35033. },
  35034. ]
  35035. ))
  35036. characterMakers.push(() => makeCharacter(
  35037. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35038. {
  35039. front: {
  35040. height: math.unit(8 + 4/12, "feet"),
  35041. weight: math.unit(1200, "lb"),
  35042. name: "Front",
  35043. image: {
  35044. source: "./media/characters/eleanor/front.svg",
  35045. extra: 1226/1192,
  35046. bottom: 52/1278
  35047. }
  35048. },
  35049. back: {
  35050. height: math.unit(8 + 4/12, "feet"),
  35051. weight: math.unit(1200, "lb"),
  35052. name: "Back",
  35053. image: {
  35054. source: "./media/characters/eleanor/back.svg",
  35055. extra: 1242/1184,
  35056. bottom: 60/1302
  35057. }
  35058. },
  35059. head: {
  35060. height: math.unit(2.62, "feet"),
  35061. name: "Head",
  35062. image: {
  35063. source: "./media/characters/eleanor/head.svg"
  35064. }
  35065. },
  35066. },
  35067. [
  35068. {
  35069. name: "Normal",
  35070. height: math.unit(8 + 4/12, "feet"),
  35071. default: true
  35072. },
  35073. ]
  35074. ))
  35075. characterMakers.push(() => makeCharacter(
  35076. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35077. {
  35078. front: {
  35079. height: math.unit(8 + 4/12, "feet"),
  35080. weight: math.unit(750, "lb"),
  35081. name: "Front",
  35082. image: {
  35083. source: "./media/characters/tanya/front.svg",
  35084. extra: 1749/1615,
  35085. bottom: 33/1782
  35086. }
  35087. },
  35088. },
  35089. [
  35090. {
  35091. name: "Normal",
  35092. height: math.unit(8 + 4/12, "feet"),
  35093. default: true
  35094. },
  35095. ]
  35096. ))
  35097. characterMakers.push(() => makeCharacter(
  35098. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35099. {
  35100. front: {
  35101. height: math.unit(5, "feet"),
  35102. weight: math.unit(225, "lb"),
  35103. name: "Front",
  35104. image: {
  35105. source: "./media/characters/cindy/front.svg",
  35106. extra: 1320/1250,
  35107. bottom: 42/1362
  35108. }
  35109. },
  35110. frontDressed: {
  35111. height: math.unit(5, "feet"),
  35112. weight: math.unit(225, "lb"),
  35113. name: "Front (Dressed)",
  35114. image: {
  35115. source: "./media/characters/cindy/front-dressed.svg",
  35116. extra: 1320/1250,
  35117. bottom: 42/1362
  35118. }
  35119. },
  35120. back: {
  35121. height: math.unit(5, "feet"),
  35122. weight: math.unit(225, "lb"),
  35123. name: "Back",
  35124. image: {
  35125. source: "./media/characters/cindy/back.svg",
  35126. extra: 1384/1346,
  35127. bottom: 14/1398
  35128. }
  35129. },
  35130. },
  35131. [
  35132. {
  35133. name: "Normal",
  35134. height: math.unit(5, "feet"),
  35135. default: true
  35136. },
  35137. ]
  35138. ))
  35139. characterMakers.push(() => makeCharacter(
  35140. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35141. {
  35142. front: {
  35143. height: math.unit(6 + 9/12, "feet"),
  35144. weight: math.unit(440, "lb"),
  35145. name: "Front",
  35146. image: {
  35147. source: "./media/characters/wilbur-owen/front.svg",
  35148. extra: 1575/1448,
  35149. bottom: 72/1647
  35150. }
  35151. },
  35152. back: {
  35153. height: math.unit(6 + 9/12, "feet"),
  35154. weight: math.unit(440, "lb"),
  35155. name: "Back",
  35156. image: {
  35157. source: "./media/characters/wilbur-owen/back.svg",
  35158. extra: 1578/1445,
  35159. bottom: 36/1614
  35160. }
  35161. },
  35162. },
  35163. [
  35164. {
  35165. name: "Normal",
  35166. height: math.unit(6 + 9/12, "feet"),
  35167. default: true
  35168. },
  35169. ]
  35170. ))
  35171. characterMakers.push(() => makeCharacter(
  35172. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35173. {
  35174. front: {
  35175. height: math.unit(6 + 5/12, "feet"),
  35176. weight: math.unit(650, "lb"),
  35177. name: "Front",
  35178. image: {
  35179. source: "./media/characters/keegan/front.svg",
  35180. extra: 2387/2198,
  35181. bottom: 33/2420
  35182. }
  35183. },
  35184. side: {
  35185. height: math.unit(6 + 5/12, "feet"),
  35186. weight: math.unit(650, "lb"),
  35187. name: "Side",
  35188. image: {
  35189. source: "./media/characters/keegan/side.svg",
  35190. extra: 2390/2202,
  35191. bottom: 47/2437
  35192. }
  35193. },
  35194. back: {
  35195. height: math.unit(6 + 5/12, "feet"),
  35196. weight: math.unit(650, "lb"),
  35197. name: "Back",
  35198. image: {
  35199. source: "./media/characters/keegan/back.svg",
  35200. extra: 2418/2268,
  35201. bottom: 15/2433
  35202. }
  35203. },
  35204. frontSfw: {
  35205. height: math.unit(6 + 5/12, "feet"),
  35206. weight: math.unit(650, "lb"),
  35207. name: "Front (SFW)",
  35208. image: {
  35209. source: "./media/characters/keegan/front-sfw.svg",
  35210. extra: 2387/2198,
  35211. bottom: 33/2420
  35212. }
  35213. },
  35214. beans: {
  35215. height: math.unit(1.85, "feet"),
  35216. name: "Beans",
  35217. image: {
  35218. source: "./media/characters/keegan/beans.svg"
  35219. }
  35220. },
  35221. },
  35222. [
  35223. {
  35224. name: "Normal",
  35225. height: math.unit(6 + 5/12, "feet"),
  35226. default: true
  35227. },
  35228. ]
  35229. ))
  35230. characterMakers.push(() => makeCharacter(
  35231. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35232. {
  35233. front: {
  35234. height: math.unit(9, "feet"),
  35235. name: "Front",
  35236. image: {
  35237. source: "./media/characters/colton/front.svg",
  35238. extra: 1589/1326,
  35239. bottom: 139/1728
  35240. }
  35241. },
  35242. },
  35243. [
  35244. {
  35245. name: "Normal",
  35246. height: math.unit(9, "feet"),
  35247. default: true
  35248. },
  35249. ]
  35250. ))
  35251. characterMakers.push(() => makeCharacter(
  35252. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35253. {
  35254. front: {
  35255. height: math.unit(2 + 9/12, "feet"),
  35256. name: "Front",
  35257. image: {
  35258. source: "./media/characters/bora/front.svg",
  35259. extra: 1265/1250,
  35260. bottom: 24/1289
  35261. }
  35262. },
  35263. },
  35264. [
  35265. {
  35266. name: "Normal",
  35267. height: math.unit(2 + 9/12, "feet"),
  35268. default: true
  35269. },
  35270. ]
  35271. ))
  35272. characterMakers.push(() => makeCharacter(
  35273. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35274. {
  35275. front: {
  35276. height: math.unit(8, "feet"),
  35277. name: "Front",
  35278. image: {
  35279. source: "./media/characters/myu-myu/front.svg",
  35280. extra: 1949/1857,
  35281. bottom: 90/2039
  35282. }
  35283. },
  35284. },
  35285. [
  35286. {
  35287. name: "Normal",
  35288. height: math.unit(8, "feet"),
  35289. default: true
  35290. },
  35291. {
  35292. name: "Big",
  35293. height: math.unit(15, "feet")
  35294. },
  35295. {
  35296. name: "BIG",
  35297. height: math.unit(25, "feet")
  35298. },
  35299. ]
  35300. ))
  35301. characterMakers.push(() => makeCharacter(
  35302. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35303. {
  35304. side: {
  35305. height: math.unit(7 + 5/12, "feet"),
  35306. weight: math.unit(2800, "lb"),
  35307. name: "Side",
  35308. image: {
  35309. source: "./media/characters/haloren/side.svg",
  35310. extra: 1793/409,
  35311. bottom: 59/1852
  35312. }
  35313. },
  35314. frontPaw: {
  35315. height: math.unit(2.36, "feet"),
  35316. name: "Front paw",
  35317. image: {
  35318. source: "./media/characters/haloren/front-paw.svg"
  35319. }
  35320. },
  35321. hindPaw: {
  35322. height: math.unit(3.18, "feet"),
  35323. name: "Hind paw",
  35324. image: {
  35325. source: "./media/characters/haloren/hind-paw.svg"
  35326. }
  35327. },
  35328. maw: {
  35329. height: math.unit(5.05, "feet"),
  35330. name: "Maw",
  35331. image: {
  35332. source: "./media/characters/haloren/maw.svg"
  35333. }
  35334. },
  35335. dick: {
  35336. height: math.unit(2.90, "feet"),
  35337. name: "Dick",
  35338. image: {
  35339. source: "./media/characters/haloren/dick.svg"
  35340. }
  35341. },
  35342. },
  35343. [
  35344. {
  35345. name: "Normal",
  35346. height: math.unit(7 + 5/12, "feet"),
  35347. default: true
  35348. },
  35349. {
  35350. name: "Enhanced",
  35351. height: math.unit(14 + 3/12, "feet")
  35352. },
  35353. ]
  35354. ))
  35355. characterMakers.push(() => makeCharacter(
  35356. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35357. {
  35358. front: {
  35359. height: math.unit(171, "cm"),
  35360. name: "Front",
  35361. image: {
  35362. source: "./media/characters/kimmy/front.svg",
  35363. extra: 1491/1435,
  35364. bottom: 53/1544
  35365. }
  35366. },
  35367. },
  35368. [
  35369. {
  35370. name: "Small",
  35371. height: math.unit(9, "cm")
  35372. },
  35373. {
  35374. name: "Normal",
  35375. height: math.unit(171, "cm"),
  35376. default: true
  35377. },
  35378. ]
  35379. ))
  35380. characterMakers.push(() => makeCharacter(
  35381. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35382. {
  35383. front: {
  35384. height: math.unit(8, "feet"),
  35385. weight: math.unit(300, "lb"),
  35386. name: "Front",
  35387. image: {
  35388. source: "./media/characters/galeboomer/front.svg",
  35389. extra: 4651/4415,
  35390. bottom: 162/4813
  35391. }
  35392. },
  35393. back: {
  35394. height: math.unit(8, "feet"),
  35395. weight: math.unit(300, "lb"),
  35396. name: "Back",
  35397. image: {
  35398. source: "./media/characters/galeboomer/back.svg",
  35399. extra: 4544/4314,
  35400. bottom: 16/4560
  35401. }
  35402. },
  35403. frontAlt: {
  35404. height: math.unit(8, "feet"),
  35405. weight: math.unit(300, "lb"),
  35406. name: "Front (Alt)",
  35407. image: {
  35408. source: "./media/characters/galeboomer/front-alt.svg",
  35409. extra: 4458/4228,
  35410. bottom: 68/4526
  35411. }
  35412. },
  35413. maw: {
  35414. height: math.unit(1.2, "feet"),
  35415. name: "Maw",
  35416. image: {
  35417. source: "./media/characters/galeboomer/maw.svg"
  35418. }
  35419. },
  35420. },
  35421. [
  35422. {
  35423. name: "Normal",
  35424. height: math.unit(8, "feet"),
  35425. default: true
  35426. },
  35427. ]
  35428. ))
  35429. characterMakers.push(() => makeCharacter(
  35430. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35431. {
  35432. front: {
  35433. height: math.unit(5 + 9/12, "feet"),
  35434. weight: math.unit(120, "lb"),
  35435. name: "Front",
  35436. image: {
  35437. source: "./media/characters/chyr/front.svg",
  35438. extra: 1323/1254,
  35439. bottom: 63/1386
  35440. }
  35441. },
  35442. back: {
  35443. height: math.unit(5 + 9/12, "feet"),
  35444. weight: math.unit(120, "lb"),
  35445. name: "Back",
  35446. image: {
  35447. source: "./media/characters/chyr/back.svg",
  35448. extra: 1323/1252,
  35449. bottom: 48/1371
  35450. }
  35451. },
  35452. },
  35453. [
  35454. {
  35455. name: "Normal",
  35456. height: math.unit(5 + 9/12, "feet"),
  35457. default: true
  35458. },
  35459. ]
  35460. ))
  35461. characterMakers.push(() => makeCharacter(
  35462. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35463. {
  35464. front: {
  35465. height: math.unit(7, "feet"),
  35466. weight: math.unit(310, "lb"),
  35467. name: "Front",
  35468. image: {
  35469. source: "./media/characters/solarus/front.svg",
  35470. extra: 2415/2021,
  35471. bottom: 103/2518
  35472. }
  35473. },
  35474. back: {
  35475. height: math.unit(7, "feet"),
  35476. weight: math.unit(310, "lb"),
  35477. name: "Back",
  35478. image: {
  35479. source: "./media/characters/solarus/back.svg",
  35480. extra: 2463/2089,
  35481. bottom: 79/2542
  35482. }
  35483. },
  35484. },
  35485. [
  35486. {
  35487. name: "Normal",
  35488. height: math.unit(7, "feet"),
  35489. default: true
  35490. },
  35491. ]
  35492. ))
  35493. characterMakers.push(() => makeCharacter(
  35494. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35495. {
  35496. front: {
  35497. height: math.unit(16, "feet"),
  35498. name: "Front",
  35499. image: {
  35500. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35501. extra: 1844/1780,
  35502. bottom: 58/1902
  35503. }
  35504. },
  35505. },
  35506. [
  35507. {
  35508. name: "Normal",
  35509. height: math.unit(16, "feet"),
  35510. default: true
  35511. },
  35512. ]
  35513. ))
  35514. characterMakers.push(() => makeCharacter(
  35515. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35516. {
  35517. front: {
  35518. height: math.unit(11 + 6/12, "feet"),
  35519. weight: math.unit(1366, "lb"),
  35520. name: "Front",
  35521. image: {
  35522. source: "./media/characters/lexor/front.svg",
  35523. extra: 1560/1481,
  35524. bottom: 211/1771
  35525. }
  35526. },
  35527. back: {
  35528. height: math.unit(11 + 6/12, "feet"),
  35529. weight: math.unit(1366, "lb"),
  35530. name: "Back",
  35531. image: {
  35532. source: "./media/characters/lexor/back.svg",
  35533. extra: 1614/1533,
  35534. bottom: 76/1690
  35535. }
  35536. },
  35537. maw: {
  35538. height: math.unit(3, "feet"),
  35539. name: "Maw",
  35540. image: {
  35541. source: "./media/characters/lexor/maw.svg"
  35542. }
  35543. },
  35544. dick: {
  35545. height: math.unit(2.59, "feet"),
  35546. name: "Dick",
  35547. image: {
  35548. source: "./media/characters/lexor/dick.svg"
  35549. }
  35550. },
  35551. },
  35552. [
  35553. {
  35554. name: "Normal",
  35555. height: math.unit(11 + 6/12, "feet"),
  35556. default: true
  35557. },
  35558. ]
  35559. ))
  35560. characterMakers.push(() => makeCharacter(
  35561. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35562. {
  35563. front: {
  35564. height: math.unit(5 + 8/12, "feet"),
  35565. name: "Front",
  35566. image: {
  35567. source: "./media/characters/magnum/front.svg",
  35568. extra: 942/855,
  35569. bottom: 26/968
  35570. }
  35571. },
  35572. },
  35573. [
  35574. {
  35575. name: "Normal",
  35576. height: math.unit(5 + 8/12, "feet"),
  35577. default: true
  35578. },
  35579. ]
  35580. ))
  35581. characterMakers.push(() => makeCharacter(
  35582. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35583. {
  35584. front: {
  35585. height: math.unit(18 + 4/12, "feet"),
  35586. weight: math.unit(1500, "kg"),
  35587. name: "Front",
  35588. image: {
  35589. source: "./media/characters/solas-sharpsman/front.svg",
  35590. extra: 1698/1589,
  35591. bottom: 0/1698
  35592. }
  35593. },
  35594. },
  35595. [
  35596. {
  35597. name: "Normal",
  35598. height: math.unit(18 + 4/12, "feet"),
  35599. default: true
  35600. },
  35601. ]
  35602. ))
  35603. characterMakers.push(() => makeCharacter(
  35604. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35605. {
  35606. front: {
  35607. height: math.unit(5 + 5/12, "feet"),
  35608. weight: math.unit(180, "lb"),
  35609. name: "Front",
  35610. image: {
  35611. source: "./media/characters/october/front.svg",
  35612. extra: 1800/1650,
  35613. bottom: 0/1800
  35614. }
  35615. },
  35616. frontNsfw: {
  35617. height: math.unit(5 + 5/12, "feet"),
  35618. weight: math.unit(180, "lb"),
  35619. name: "Front (NSFW)",
  35620. image: {
  35621. source: "./media/characters/october/front-nsfw.svg",
  35622. extra: 1392/1307,
  35623. bottom: 42/1434
  35624. }
  35625. },
  35626. },
  35627. [
  35628. {
  35629. name: "Normal",
  35630. height: math.unit(5 + 5/12, "feet"),
  35631. default: true
  35632. },
  35633. ]
  35634. ))
  35635. characterMakers.push(() => makeCharacter(
  35636. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35637. {
  35638. front: {
  35639. height: math.unit(8 + 6/12, "feet"),
  35640. name: "Front",
  35641. image: {
  35642. source: "./media/characters/essynkardi/front.svg",
  35643. extra: 1914/1846,
  35644. bottom: 22/1936
  35645. }
  35646. },
  35647. },
  35648. [
  35649. {
  35650. name: "Normal",
  35651. height: math.unit(8 + 6/12, "feet"),
  35652. default: true
  35653. },
  35654. ]
  35655. ))
  35656. characterMakers.push(() => makeCharacter(
  35657. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35658. {
  35659. front: {
  35660. height: math.unit(6 + 6/12, "feet"),
  35661. weight: math.unit(7, "lb"),
  35662. name: "Front",
  35663. image: {
  35664. source: "./media/characters/icky/front.svg",
  35665. extra: 813/782,
  35666. bottom: 66/879
  35667. }
  35668. },
  35669. back: {
  35670. height: math.unit(6 + 6/12, "feet"),
  35671. weight: math.unit(7, "lb"),
  35672. name: "Back",
  35673. image: {
  35674. source: "./media/characters/icky/back.svg",
  35675. extra: 754/735,
  35676. bottom: 56/810
  35677. }
  35678. },
  35679. },
  35680. [
  35681. {
  35682. name: "Normal",
  35683. height: math.unit(6 + 6/12, "feet"),
  35684. default: true
  35685. },
  35686. ]
  35687. ))
  35688. characterMakers.push(() => makeCharacter(
  35689. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35690. {
  35691. front: {
  35692. height: math.unit(15, "feet"),
  35693. name: "Front",
  35694. image: {
  35695. source: "./media/characters/rojas/front.svg",
  35696. extra: 1462/1408,
  35697. bottom: 95/1557
  35698. }
  35699. },
  35700. back: {
  35701. height: math.unit(15, "feet"),
  35702. name: "Back",
  35703. image: {
  35704. source: "./media/characters/rojas/back.svg",
  35705. extra: 1023/954,
  35706. bottom: 28/1051
  35707. }
  35708. },
  35709. },
  35710. [
  35711. {
  35712. name: "Normal",
  35713. height: math.unit(15, "feet"),
  35714. default: true
  35715. },
  35716. ]
  35717. ))
  35718. characterMakers.push(() => makeCharacter(
  35719. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35720. {
  35721. frontHuman: {
  35722. height: math.unit(5 + 7/12, "feet"),
  35723. name: "Front (Human)",
  35724. image: {
  35725. source: "./media/characters/alek-dryagan/front-human.svg",
  35726. extra: 1687/1667,
  35727. bottom: 69/1756
  35728. }
  35729. },
  35730. backHuman: {
  35731. height: math.unit(5 + 7/12, "feet"),
  35732. name: "Back (Human)",
  35733. image: {
  35734. source: "./media/characters/alek-dryagan/back-human.svg",
  35735. extra: 1670/1649,
  35736. bottom: 65/1735
  35737. }
  35738. },
  35739. frontDemi: {
  35740. height: math.unit(65, "feet"),
  35741. name: "Front (Demi)",
  35742. image: {
  35743. source: "./media/characters/alek-dryagan/front-demi.svg",
  35744. extra: 1669/1642,
  35745. bottom: 49/1718
  35746. }
  35747. },
  35748. backDemi: {
  35749. height: math.unit(65, "feet"),
  35750. name: "Back (Demi)",
  35751. image: {
  35752. source: "./media/characters/alek-dryagan/back-demi.svg",
  35753. extra: 1658/1637,
  35754. bottom: 40/1698
  35755. }
  35756. },
  35757. mawHuman: {
  35758. height: math.unit(0.3, "feet"),
  35759. name: "Maw (Human)",
  35760. image: {
  35761. source: "./media/characters/alek-dryagan/maw-human.svg"
  35762. }
  35763. },
  35764. mawDemi: {
  35765. height: math.unit(3.8, "feet"),
  35766. name: "Maw (Demi)",
  35767. image: {
  35768. source: "./media/characters/alek-dryagan/maw-demi.svg"
  35769. }
  35770. },
  35771. },
  35772. [
  35773. {
  35774. name: "Normal",
  35775. height: math.unit(5 + 7/12, "feet"),
  35776. default: true
  35777. },
  35778. ]
  35779. ))
  35780. characterMakers.push(() => makeCharacter(
  35781. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  35782. {
  35783. frontHuman: {
  35784. height: math.unit(5 + 2/12, "feet"),
  35785. name: "Front (Human)",
  35786. image: {
  35787. source: "./media/characters/gen/front-human.svg",
  35788. extra: 1627/1538,
  35789. bottom: 71/1698
  35790. }
  35791. },
  35792. backHuman: {
  35793. height: math.unit(5 + 2/12, "feet"),
  35794. name: "Back (Human)",
  35795. image: {
  35796. source: "./media/characters/gen/back-human.svg",
  35797. extra: 1638/1548,
  35798. bottom: 69/1707
  35799. }
  35800. },
  35801. frontDemi: {
  35802. height: math.unit(5 + 2/12, "feet"),
  35803. name: "Front (Demi)",
  35804. image: {
  35805. source: "./media/characters/gen/front-demi.svg",
  35806. extra: 1627/1538,
  35807. bottom: 71/1698
  35808. }
  35809. },
  35810. backDemi: {
  35811. height: math.unit(5 + 2/12, "feet"),
  35812. name: "Back (Demi)",
  35813. image: {
  35814. source: "./media/characters/gen/back-demi.svg",
  35815. extra: 1638/1548,
  35816. bottom: 69/1707
  35817. }
  35818. },
  35819. },
  35820. [
  35821. {
  35822. name: "Normal",
  35823. height: math.unit(5 + 2/12, "feet"),
  35824. default: true
  35825. },
  35826. ]
  35827. ))
  35828. characterMakers.push(() => makeCharacter(
  35829. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  35830. {
  35831. frontImp: {
  35832. height: math.unit(1 + 11/12, "feet"),
  35833. name: "Front (Imp)",
  35834. image: {
  35835. source: "./media/characters/max-kobold/front-imp.svg",
  35836. extra: 1238/1134,
  35837. bottom: 81/1319
  35838. }
  35839. },
  35840. backImp: {
  35841. height: math.unit(1 + 11/12, "feet"),
  35842. name: "Back (Imp)",
  35843. image: {
  35844. source: "./media/characters/max-kobold/back-imp.svg",
  35845. extra: 1334/1175,
  35846. bottom: 34/1368
  35847. }
  35848. },
  35849. frontDemi: {
  35850. height: math.unit(5 + 9/12, "feet"),
  35851. name: "Front (Demi)",
  35852. image: {
  35853. source: "./media/characters/max-kobold/front-demi.svg",
  35854. extra: 1715/1685,
  35855. bottom: 54/1769
  35856. }
  35857. },
  35858. backDemi: {
  35859. height: math.unit(5 + 9/12, "feet"),
  35860. name: "Back (Demi)",
  35861. image: {
  35862. source: "./media/characters/max-kobold/back-demi.svg",
  35863. extra: 1752/1729,
  35864. bottom: 41/1793
  35865. }
  35866. },
  35867. handImp: {
  35868. height: math.unit(0.45, "feet"),
  35869. name: "Hand (Imp)",
  35870. image: {
  35871. source: "./media/characters/max-kobold/hand.svg"
  35872. }
  35873. },
  35874. pawImp: {
  35875. height: math.unit(0.46, "feet"),
  35876. name: "Paw (Imp)",
  35877. image: {
  35878. source: "./media/characters/max-kobold/paw.svg"
  35879. }
  35880. },
  35881. handDemi: {
  35882. height: math.unit(0.80, "feet"),
  35883. name: "Hand (Demi)",
  35884. image: {
  35885. source: "./media/characters/max-kobold/hand.svg"
  35886. }
  35887. },
  35888. pawDemi: {
  35889. height: math.unit(1.1, "feet"),
  35890. name: "Paw (Demi)",
  35891. image: {
  35892. source: "./media/characters/max-kobold/paw.svg"
  35893. }
  35894. },
  35895. headImp: {
  35896. height: math.unit(1.33, "feet"),
  35897. name: "Head (Imp)",
  35898. image: {
  35899. source: "./media/characters/max-kobold/head-imp.svg"
  35900. }
  35901. },
  35902. mawImp: {
  35903. height: math.unit(0.75, "feet"),
  35904. name: "Maw (Imp)",
  35905. image: {
  35906. source: "./media/characters/max-kobold/maw-imp.svg"
  35907. }
  35908. },
  35909. mawDemi: {
  35910. height: math.unit(0.42, "feet"),
  35911. name: "Maw (Demi)",
  35912. image: {
  35913. source: "./media/characters/max-kobold/maw-demi.svg"
  35914. }
  35915. },
  35916. },
  35917. [
  35918. {
  35919. name: "Normal",
  35920. height: math.unit(1 + 11/12, "feet"),
  35921. default: true
  35922. },
  35923. ]
  35924. ))
  35925. characterMakers.push(() => makeCharacter(
  35926. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  35927. {
  35928. front: {
  35929. height: math.unit(7 + 5/12, "feet"),
  35930. name: "Front",
  35931. image: {
  35932. source: "./media/characters/carbon/front.svg",
  35933. extra: 1754/1689,
  35934. bottom: 65/1819
  35935. }
  35936. },
  35937. back: {
  35938. height: math.unit(7 + 5/12, "feet"),
  35939. name: "Back",
  35940. image: {
  35941. source: "./media/characters/carbon/back.svg",
  35942. extra: 1762/1695,
  35943. bottom: 24/1786
  35944. }
  35945. },
  35946. frontGigantamax: {
  35947. height: math.unit(150, "feet"),
  35948. name: "Front (Gigantamax)",
  35949. image: {
  35950. source: "./media/characters/carbon/front-gigantamax.svg",
  35951. extra: 1826/1669,
  35952. bottom: 59/1885
  35953. }
  35954. },
  35955. backGigantamax: {
  35956. height: math.unit(150, "feet"),
  35957. name: "Back (Gigantamax)",
  35958. image: {
  35959. source: "./media/characters/carbon/back-gigantamax.svg",
  35960. extra: 1796/1653,
  35961. bottom: 53/1849
  35962. }
  35963. },
  35964. maw: {
  35965. height: math.unit(0.48, "feet"),
  35966. name: "Maw",
  35967. image: {
  35968. source: "./media/characters/carbon/maw.svg"
  35969. }
  35970. },
  35971. mawGigantamax: {
  35972. height: math.unit(7.5, "feet"),
  35973. name: "Maw (Gigantamax)",
  35974. image: {
  35975. source: "./media/characters/carbon/maw-gigantamax.svg"
  35976. }
  35977. },
  35978. },
  35979. [
  35980. {
  35981. name: "Normal",
  35982. height: math.unit(7 + 5/12, "feet"),
  35983. default: true
  35984. },
  35985. ]
  35986. ))
  35987. characterMakers.push(() => makeCharacter(
  35988. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  35989. {
  35990. front: {
  35991. height: math.unit(6, "feet"),
  35992. name: "Front",
  35993. image: {
  35994. source: "./media/characters/maverick/front.svg",
  35995. extra: 1672/1661,
  35996. bottom: 85/1757
  35997. }
  35998. },
  35999. back: {
  36000. height: math.unit(6, "feet"),
  36001. name: "Back",
  36002. image: {
  36003. source: "./media/characters/maverick/back.svg",
  36004. extra: 1642/1631,
  36005. bottom: 38/1680
  36006. }
  36007. },
  36008. },
  36009. [
  36010. {
  36011. name: "Normal",
  36012. height: math.unit(6, "feet"),
  36013. default: true
  36014. },
  36015. ]
  36016. ))
  36017. characterMakers.push(() => makeCharacter(
  36018. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36019. {
  36020. front: {
  36021. height: math.unit(15, "feet"),
  36022. weight: math.unit(615, "lb"),
  36023. name: "Front",
  36024. image: {
  36025. source: "./media/characters/grockle/front.svg",
  36026. extra: 1535/1427,
  36027. bottom: 56/1591
  36028. }
  36029. },
  36030. },
  36031. [
  36032. {
  36033. name: "Normal",
  36034. height: math.unit(15, "feet"),
  36035. default: true
  36036. },
  36037. {
  36038. name: "Large",
  36039. height: math.unit(150, "feet")
  36040. },
  36041. {
  36042. name: "Macro",
  36043. height: math.unit(1876, "feet")
  36044. },
  36045. {
  36046. name: "Mega Macro",
  36047. height: math.unit(121940, "feet")
  36048. },
  36049. {
  36050. name: "Giga Macro",
  36051. height: math.unit(750, "km")
  36052. },
  36053. {
  36054. name: "Tera Macro",
  36055. height: math.unit(750000, "km")
  36056. },
  36057. {
  36058. name: "Galactic",
  36059. height: math.unit(1.4e5, "km")
  36060. },
  36061. {
  36062. name: "Godlike",
  36063. height: math.unit(9.8e280, "galaxies")
  36064. },
  36065. ]
  36066. ))
  36067. characterMakers.push(() => makeCharacter(
  36068. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36069. {
  36070. front: {
  36071. height: math.unit(11, "meters"),
  36072. weight: math.unit(20, "tonnes"),
  36073. name: "Front",
  36074. image: {
  36075. source: "./media/characters/alistair/front.svg",
  36076. extra: 1265/1009,
  36077. bottom: 93/1358
  36078. }
  36079. },
  36080. },
  36081. [
  36082. {
  36083. name: "Normal",
  36084. height: math.unit(11, "meters"),
  36085. default: true
  36086. },
  36087. ]
  36088. ))
  36089. characterMakers.push(() => makeCharacter(
  36090. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36091. {
  36092. front: {
  36093. height: math.unit(5 + 8/12, "feet"),
  36094. name: "Front",
  36095. image: {
  36096. source: "./media/characters/haruka/front.svg",
  36097. extra: 2012/1952,
  36098. bottom: 0/2012
  36099. }
  36100. },
  36101. },
  36102. [
  36103. {
  36104. name: "Normal",
  36105. height: math.unit(5 + 8/12, "feet"),
  36106. default: true
  36107. },
  36108. ]
  36109. ))
  36110. characterMakers.push(() => makeCharacter(
  36111. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36112. {
  36113. back: {
  36114. height: math.unit(9, "feet"),
  36115. name: "Back",
  36116. image: {
  36117. source: "./media/characters/vivian-sylveon/back.svg",
  36118. extra: 1853/1714,
  36119. bottom: 0/1853
  36120. }
  36121. },
  36122. },
  36123. [
  36124. {
  36125. name: "Normal",
  36126. height: math.unit(9, "feet"),
  36127. default: true
  36128. },
  36129. {
  36130. name: "Macro",
  36131. height: math.unit(500, "feet")
  36132. },
  36133. {
  36134. name: "Megamacro",
  36135. height: math.unit(600, "miles")
  36136. },
  36137. {
  36138. name: "Gigamacro",
  36139. height: math.unit(30000, "miles")
  36140. },
  36141. ]
  36142. ))
  36143. characterMakers.push(() => makeCharacter(
  36144. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36145. {
  36146. anthro: {
  36147. height: math.unit(5 + 10/12, "feet"),
  36148. weight: math.unit(100, "lb"),
  36149. name: "Anthro",
  36150. image: {
  36151. source: "./media/characters/daiki/anthro.svg",
  36152. extra: 1115/1027,
  36153. bottom: 69/1184
  36154. }
  36155. },
  36156. feral: {
  36157. height: math.unit(200, "feet"),
  36158. name: "Feral",
  36159. image: {
  36160. source: "./media/characters/daiki/feral.svg",
  36161. extra: 1256/313,
  36162. bottom: 39/1295
  36163. }
  36164. },
  36165. feralHead: {
  36166. height: math.unit(171, "feet"),
  36167. name: "Feral Head",
  36168. image: {
  36169. source: "./media/characters/daiki/feral-head.svg"
  36170. }
  36171. },
  36172. },
  36173. [
  36174. {
  36175. name: "Normal",
  36176. height: math.unit(5 + 10/12, "feet"),
  36177. default: true
  36178. },
  36179. ]
  36180. ))
  36181. characterMakers.push(() => makeCharacter(
  36182. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36183. {
  36184. fullyEquippedFront: {
  36185. height: math.unit(3 + 1/12, "feet"),
  36186. weight: math.unit(24, "lb"),
  36187. name: "Fully Equipped (Front)",
  36188. image: {
  36189. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36190. extra: 687/605,
  36191. bottom: 18/705
  36192. }
  36193. },
  36194. fullyEquippedBack: {
  36195. height: math.unit(3 + 1/12, "feet"),
  36196. weight: math.unit(24, "lb"),
  36197. name: "Fully Equipped (Back)",
  36198. image: {
  36199. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36200. extra: 689/590,
  36201. bottom: 18/707
  36202. }
  36203. },
  36204. dailyWear: {
  36205. height: math.unit(3 + 1/12, "feet"),
  36206. weight: math.unit(24, "lb"),
  36207. name: "Daily Wear",
  36208. image: {
  36209. source: "./media/characters/tea-spot/daily-wear.svg",
  36210. extra: 701/620,
  36211. bottom: 21/722
  36212. }
  36213. },
  36214. maidWork: {
  36215. height: math.unit(3 + 1/12, "feet"),
  36216. weight: math.unit(24, "lb"),
  36217. name: "Maid Work",
  36218. image: {
  36219. source: "./media/characters/tea-spot/maid-work.svg",
  36220. extra: 693/609,
  36221. bottom: 15/708
  36222. }
  36223. },
  36224. },
  36225. [
  36226. {
  36227. name: "Normal",
  36228. height: math.unit(3 + 1/12, "feet"),
  36229. default: true
  36230. },
  36231. ]
  36232. ))
  36233. characterMakers.push(() => makeCharacter(
  36234. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36235. {
  36236. front: {
  36237. height: math.unit(175, "cm"),
  36238. weight: math.unit(75, "kg"),
  36239. name: "Front",
  36240. image: {
  36241. source: "./media/characters/chee/front.svg",
  36242. extra: 1796/1740,
  36243. bottom: 40/1836
  36244. }
  36245. },
  36246. },
  36247. [
  36248. {
  36249. name: "Micro-Micro",
  36250. height: math.unit(1, "nm")
  36251. },
  36252. {
  36253. name: "Micro-erst",
  36254. height: math.unit(1, "micrometer")
  36255. },
  36256. {
  36257. name: "Micro-er",
  36258. height: math.unit(1, "cm")
  36259. },
  36260. {
  36261. name: "Normal",
  36262. height: math.unit(175, "cm"),
  36263. default: true
  36264. },
  36265. {
  36266. name: "Macro",
  36267. height: math.unit(100, "m")
  36268. },
  36269. {
  36270. name: "Macro-er",
  36271. height: math.unit(1, "km")
  36272. },
  36273. {
  36274. name: "Macro-erst",
  36275. height: math.unit(10, "km")
  36276. },
  36277. {
  36278. name: "Macro-Macro",
  36279. height: math.unit(100, "km")
  36280. },
  36281. ]
  36282. ))
  36283. characterMakers.push(() => makeCharacter(
  36284. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36285. {
  36286. front: {
  36287. height: math.unit(11 + 9/12, "feet"),
  36288. weight: math.unit(935, "lb"),
  36289. name: "Front",
  36290. image: {
  36291. source: "./media/characters/kingsley/front.svg",
  36292. extra: 1803/1674,
  36293. bottom: 127/1930
  36294. }
  36295. },
  36296. frontNude: {
  36297. height: math.unit(11 + 9/12, "feet"),
  36298. weight: math.unit(935, "lb"),
  36299. name: "Front (Nude)",
  36300. image: {
  36301. source: "./media/characters/kingsley/front-nude.svg",
  36302. extra: 1803/1674,
  36303. bottom: 127/1930
  36304. }
  36305. },
  36306. },
  36307. [
  36308. {
  36309. name: "Normal",
  36310. height: math.unit(11 + 9/12, "feet"),
  36311. default: true
  36312. },
  36313. ]
  36314. ))
  36315. characterMakers.push(() => makeCharacter(
  36316. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36317. {
  36318. side: {
  36319. height: math.unit(9, "feet"),
  36320. name: "Side",
  36321. image: {
  36322. source: "./media/characters/rymel/side.svg",
  36323. extra: 792/469,
  36324. bottom: 121/913
  36325. }
  36326. },
  36327. maw: {
  36328. height: math.unit(2.4, "meters"),
  36329. name: "Maw",
  36330. image: {
  36331. source: "./media/characters/rymel/maw.svg"
  36332. }
  36333. },
  36334. },
  36335. [
  36336. {
  36337. name: "House Drake",
  36338. height: math.unit(2, "feet")
  36339. },
  36340. {
  36341. name: "Reduced",
  36342. height: math.unit(4.5, "feet")
  36343. },
  36344. {
  36345. name: "Normal",
  36346. height: math.unit(9, "feet"),
  36347. default: true
  36348. },
  36349. ]
  36350. ))
  36351. characterMakers.push(() => makeCharacter(
  36352. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36353. {
  36354. front: {
  36355. height: math.unit(1.74, "meters"),
  36356. weight: math.unit(55, "kg"),
  36357. name: "Front",
  36358. image: {
  36359. source: "./media/characters/rubus/front.svg",
  36360. extra: 1894/1742,
  36361. bottom: 44/1938
  36362. }
  36363. },
  36364. },
  36365. [
  36366. {
  36367. name: "Normal",
  36368. height: math.unit(1.74, "meters"),
  36369. default: true
  36370. },
  36371. ]
  36372. ))
  36373. characterMakers.push(() => makeCharacter(
  36374. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36375. {
  36376. front: {
  36377. height: math.unit(5 + 2/12, "feet"),
  36378. weight: math.unit(112, "lb"),
  36379. name: "Front",
  36380. image: {
  36381. source: "./media/characters/cassie-kingston/front.svg",
  36382. extra: 1438/1390,
  36383. bottom: 47/1485
  36384. }
  36385. },
  36386. },
  36387. [
  36388. {
  36389. name: "Normal",
  36390. height: math.unit(5 + 2/12, "feet"),
  36391. default: true
  36392. },
  36393. {
  36394. name: "Macro",
  36395. height: math.unit(128, "feet")
  36396. },
  36397. {
  36398. name: "Megamacro",
  36399. height: math.unit(2.56, "miles")
  36400. },
  36401. ]
  36402. ))
  36403. characterMakers.push(() => makeCharacter(
  36404. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36405. {
  36406. front: {
  36407. height: math.unit(7, "feet"),
  36408. name: "Front",
  36409. image: {
  36410. source: "./media/characters/fox/front.svg",
  36411. extra: 1798/1703,
  36412. bottom: 55/1853
  36413. }
  36414. },
  36415. back: {
  36416. height: math.unit(7, "feet"),
  36417. name: "Back",
  36418. image: {
  36419. source: "./media/characters/fox/back.svg",
  36420. extra: 1748/1649,
  36421. bottom: 32/1780
  36422. }
  36423. },
  36424. head: {
  36425. height: math.unit(1.95, "feet"),
  36426. name: "Head",
  36427. image: {
  36428. source: "./media/characters/fox/head.svg"
  36429. }
  36430. },
  36431. dick: {
  36432. height: math.unit(1.33, "feet"),
  36433. name: "Dick",
  36434. image: {
  36435. source: "./media/characters/fox/dick.svg"
  36436. }
  36437. },
  36438. foot: {
  36439. height: math.unit(1, "feet"),
  36440. name: "Foot",
  36441. image: {
  36442. source: "./media/characters/fox/foot.svg"
  36443. }
  36444. },
  36445. paw: {
  36446. height: math.unit(0.92, "feet"),
  36447. name: "Paw",
  36448. image: {
  36449. source: "./media/characters/fox/paw.svg"
  36450. }
  36451. },
  36452. },
  36453. [
  36454. {
  36455. name: "Small",
  36456. height: math.unit(3, "inches")
  36457. },
  36458. {
  36459. name: "\"Realistic\"",
  36460. height: math.unit(7, "feet")
  36461. },
  36462. {
  36463. name: "Normal",
  36464. height: math.unit(150, "feet"),
  36465. default: true
  36466. },
  36467. {
  36468. name: "BIG",
  36469. height: math.unit(1200, "feet")
  36470. },
  36471. {
  36472. name: "👀",
  36473. height: math.unit(5, "miles")
  36474. },
  36475. {
  36476. name: "👀👀👀",
  36477. height: math.unit(64, "miles")
  36478. },
  36479. ]
  36480. ))
  36481. characterMakers.push(() => makeCharacter(
  36482. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36483. {
  36484. front: {
  36485. height: math.unit(625, "feet"),
  36486. name: "Front",
  36487. image: {
  36488. source: "./media/characters/asonja-rossa/front.svg",
  36489. extra: 1833/1686,
  36490. bottom: 24/1857
  36491. }
  36492. },
  36493. back: {
  36494. height: math.unit(625, "feet"),
  36495. name: "Back",
  36496. image: {
  36497. source: "./media/characters/asonja-rossa/back.svg",
  36498. extra: 1852/1753,
  36499. bottom: 26/1878
  36500. }
  36501. },
  36502. },
  36503. [
  36504. {
  36505. name: "Macro",
  36506. height: math.unit(625, "feet"),
  36507. default: true
  36508. },
  36509. ]
  36510. ))
  36511. characterMakers.push(() => makeCharacter(
  36512. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36513. {
  36514. side: {
  36515. height: math.unit(6, "feet"),
  36516. weight: math.unit(150, "lb"),
  36517. name: "Side",
  36518. image: {
  36519. source: "./media/characters/rezukii/side.svg",
  36520. extra: 979/542,
  36521. bottom: 87/1066
  36522. }
  36523. },
  36524. },
  36525. [
  36526. {
  36527. name: "Tiny",
  36528. height: math.unit(2, "feet")
  36529. },
  36530. {
  36531. name: "Smol",
  36532. height: math.unit(4, "feet")
  36533. },
  36534. {
  36535. name: "Normal",
  36536. height: math.unit(8, "feet"),
  36537. default: true
  36538. },
  36539. {
  36540. name: "Big",
  36541. height: math.unit(12, "feet")
  36542. },
  36543. {
  36544. name: "Macro",
  36545. height: math.unit(30, "feet")
  36546. },
  36547. ]
  36548. ))
  36549. characterMakers.push(() => makeCharacter(
  36550. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36551. {
  36552. front: {
  36553. height: math.unit(14, "feet"),
  36554. weight: math.unit(9.5, "tonnes"),
  36555. name: "Front",
  36556. image: {
  36557. source: "./media/characters/dawnheart/front.svg",
  36558. extra: 2792/2675,
  36559. bottom: 64/2856
  36560. }
  36561. },
  36562. },
  36563. [
  36564. {
  36565. name: "Normal",
  36566. height: math.unit(14, "feet"),
  36567. default: true
  36568. },
  36569. ]
  36570. ))
  36571. characterMakers.push(() => makeCharacter(
  36572. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36573. {
  36574. front: {
  36575. height: math.unit(1.7, "m"),
  36576. name: "Front",
  36577. image: {
  36578. source: "./media/characters/gladi/front.svg",
  36579. extra: 1460/1362,
  36580. bottom: 19/1479
  36581. }
  36582. },
  36583. back: {
  36584. height: math.unit(1.7, "m"),
  36585. name: "Back",
  36586. image: {
  36587. source: "./media/characters/gladi/back.svg",
  36588. extra: 1459/1357,
  36589. bottom: 12/1471
  36590. }
  36591. },
  36592. feral: {
  36593. height: math.unit(2.05, "m"),
  36594. name: "Feral",
  36595. image: {
  36596. source: "./media/characters/gladi/feral.svg",
  36597. extra: 821/557,
  36598. bottom: 91/912
  36599. }
  36600. },
  36601. },
  36602. [
  36603. {
  36604. name: "Shortest",
  36605. height: math.unit(70, "cm")
  36606. },
  36607. {
  36608. name: "Normal",
  36609. height: math.unit(1.7, "m")
  36610. },
  36611. {
  36612. name: "Macro",
  36613. height: math.unit(10, "m"),
  36614. default: true
  36615. },
  36616. {
  36617. name: "Tallest",
  36618. height: math.unit(200, "m")
  36619. },
  36620. ]
  36621. ))
  36622. characterMakers.push(() => makeCharacter(
  36623. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36624. {
  36625. front: {
  36626. height: math.unit(5 + 7/12, "feet"),
  36627. weight: math.unit(92, "kg"),
  36628. name: "Front",
  36629. image: {
  36630. source: "./media/characters/erdno/front.svg",
  36631. extra: 1954/1889,
  36632. bottom: 22/1976
  36633. }
  36634. },
  36635. },
  36636. [
  36637. {
  36638. name: "Normal",
  36639. height: math.unit(5 + 7/12, "feet"),
  36640. default: true
  36641. },
  36642. ]
  36643. ))
  36644. characterMakers.push(() => makeCharacter(
  36645. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  36646. {
  36647. front: {
  36648. height: math.unit(5 + 10/12, "feet"),
  36649. weight: math.unit(150, "lb"),
  36650. name: "Front",
  36651. image: {
  36652. source: "./media/characters/jamie/front.svg",
  36653. extra: 1908/1768,
  36654. bottom: 19/1927
  36655. }
  36656. },
  36657. },
  36658. [
  36659. {
  36660. name: "Minimum",
  36661. height: math.unit(2, "cm")
  36662. },
  36663. {
  36664. name: "Micro",
  36665. height: math.unit(3, "inches")
  36666. },
  36667. {
  36668. name: "Normal",
  36669. height: math.unit(5 + 10/12, "feet"),
  36670. default: true
  36671. },
  36672. {
  36673. name: "Macro",
  36674. height: math.unit(150, "feet")
  36675. },
  36676. {
  36677. name: "Megamacro",
  36678. height: math.unit(10000, "m")
  36679. },
  36680. ]
  36681. ))
  36682. characterMakers.push(() => makeCharacter(
  36683. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  36684. {
  36685. front: {
  36686. height: math.unit(2, "meters"),
  36687. weight: math.unit(100, "kg"),
  36688. name: "Front",
  36689. image: {
  36690. source: "./media/characters/shiron/front.svg",
  36691. extra: 2103/1985,
  36692. bottom: 98/2201
  36693. }
  36694. },
  36695. back: {
  36696. height: math.unit(2, "meters"),
  36697. weight: math.unit(100, "kg"),
  36698. name: "Back",
  36699. image: {
  36700. source: "./media/characters/shiron/back.svg",
  36701. extra: 2110/2015,
  36702. bottom: 89/2199
  36703. }
  36704. },
  36705. hand: {
  36706. height: math.unit(0.96, "feet"),
  36707. name: "Hand",
  36708. image: {
  36709. source: "./media/characters/shiron/hand.svg"
  36710. }
  36711. },
  36712. foot: {
  36713. height: math.unit(1.464, "feet"),
  36714. name: "Foot",
  36715. image: {
  36716. source: "./media/characters/shiron/foot.svg"
  36717. }
  36718. },
  36719. },
  36720. [
  36721. {
  36722. name: "Normal",
  36723. height: math.unit(2, "meters")
  36724. },
  36725. {
  36726. name: "Macro",
  36727. height: math.unit(500, "meters"),
  36728. default: true
  36729. },
  36730. {
  36731. name: "Megamacro",
  36732. height: math.unit(20, "km")
  36733. },
  36734. ]
  36735. ))
  36736. characterMakers.push(() => makeCharacter(
  36737. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  36738. {
  36739. front: {
  36740. height: math.unit(6, "feet"),
  36741. name: "Front",
  36742. image: {
  36743. source: "./media/characters/sam/front.svg",
  36744. extra: 849/826,
  36745. bottom: 19/868
  36746. }
  36747. },
  36748. },
  36749. [
  36750. {
  36751. name: "Normal",
  36752. height: math.unit(6, "feet"),
  36753. default: true
  36754. },
  36755. ]
  36756. ))
  36757. characterMakers.push(() => makeCharacter(
  36758. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  36759. {
  36760. front: {
  36761. height: math.unit(8 + 4/12, "feet"),
  36762. weight: math.unit(122, "kg"),
  36763. name: "Front",
  36764. image: {
  36765. source: "./media/characters/namori-kurogawa/front.svg",
  36766. extra: 1894/1576,
  36767. bottom: 34/1928
  36768. }
  36769. },
  36770. },
  36771. [
  36772. {
  36773. name: "Normal",
  36774. height: math.unit(8 + 4/12, "feet"),
  36775. default: true
  36776. },
  36777. ]
  36778. ))
  36779. characterMakers.push(() => makeCharacter(
  36780. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  36781. {
  36782. front: {
  36783. height: math.unit(9, "feet"),
  36784. weight: math.unit(621, "lb"),
  36785. name: "Front",
  36786. image: {
  36787. source: "./media/characters/unmru/front.svg",
  36788. extra: 1853/1747,
  36789. bottom: 73/1926
  36790. }
  36791. },
  36792. side: {
  36793. height: math.unit(9, "feet"),
  36794. weight: math.unit(621, "lb"),
  36795. name: "Side",
  36796. image: {
  36797. source: "./media/characters/unmru/side.svg",
  36798. extra: 1781/1671,
  36799. bottom: 127/1908
  36800. }
  36801. },
  36802. back: {
  36803. height: math.unit(9, "feet"),
  36804. weight: math.unit(621, "lb"),
  36805. name: "Back",
  36806. image: {
  36807. source: "./media/characters/unmru/back.svg",
  36808. extra: 1894/1765,
  36809. bottom: 75/1969
  36810. }
  36811. },
  36812. dick: {
  36813. height: math.unit(3, "feet"),
  36814. weight: math.unit(35, "lb"),
  36815. name: "Dick",
  36816. image: {
  36817. source: "./media/characters/unmru/dick.svg"
  36818. }
  36819. },
  36820. },
  36821. [
  36822. {
  36823. name: "Normal",
  36824. height: math.unit(9, "feet")
  36825. },
  36826. {
  36827. name: "Natural",
  36828. height: math.unit(27, "feet"),
  36829. default: true
  36830. },
  36831. {
  36832. name: "Giant",
  36833. height: math.unit(90, "feet")
  36834. },
  36835. {
  36836. name: "Kaiju",
  36837. height: math.unit(270, "feet")
  36838. },
  36839. {
  36840. name: "Macro",
  36841. height: math.unit(900, "feet")
  36842. },
  36843. {
  36844. name: "Macro+",
  36845. height: math.unit(2700, "feet")
  36846. },
  36847. {
  36848. name: "Megamacro",
  36849. height: math.unit(9000, "feet")
  36850. },
  36851. {
  36852. name: "City-Crushing",
  36853. height: math.unit(27000, "feet")
  36854. },
  36855. {
  36856. name: "Mountain-Mashing",
  36857. height: math.unit(90000, "feet")
  36858. },
  36859. {
  36860. name: "Earth-Eclipsing",
  36861. height: math.unit(2.7e8, "feet")
  36862. },
  36863. {
  36864. name: "Sol-Swallowing",
  36865. height: math.unit(9e10, "feet")
  36866. },
  36867. {
  36868. name: "Majoris-Munching",
  36869. height: math.unit(2.7e13, "feet")
  36870. },
  36871. ]
  36872. ))
  36873. characterMakers.push(() => makeCharacter(
  36874. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  36875. {
  36876. front: {
  36877. height: math.unit(1, "inch"),
  36878. name: "Front",
  36879. image: {
  36880. source: "./media/characters/squeaks-mouse/front.svg",
  36881. extra: 352/308,
  36882. bottom: 25/377
  36883. }
  36884. },
  36885. },
  36886. [
  36887. {
  36888. name: "Micro",
  36889. height: math.unit(1, "inch"),
  36890. default: true
  36891. },
  36892. ]
  36893. ))
  36894. characterMakers.push(() => makeCharacter(
  36895. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  36896. {
  36897. side: {
  36898. height: math.unit(35, "feet"),
  36899. name: "Side",
  36900. image: {
  36901. source: "./media/characters/sayko/side.svg",
  36902. extra: 1697/1021,
  36903. bottom: 82/1779
  36904. }
  36905. },
  36906. head: {
  36907. height: math.unit(16, "feet"),
  36908. name: "Head",
  36909. image: {
  36910. source: "./media/characters/sayko/head.svg"
  36911. }
  36912. },
  36913. forepaw: {
  36914. height: math.unit(7.85, "feet"),
  36915. name: "Forepaw",
  36916. image: {
  36917. source: "./media/characters/sayko/forepaw.svg"
  36918. }
  36919. },
  36920. hindpaw: {
  36921. height: math.unit(8.8, "feet"),
  36922. name: "Hindpaw",
  36923. image: {
  36924. source: "./media/characters/sayko/hindpaw.svg"
  36925. }
  36926. },
  36927. },
  36928. [
  36929. {
  36930. name: "Normal",
  36931. height: math.unit(35, "feet"),
  36932. default: true
  36933. },
  36934. {
  36935. name: "Colossus",
  36936. height: math.unit(100, "meters")
  36937. },
  36938. {
  36939. name: "\"Small\" Deity",
  36940. height: math.unit(1, "km")
  36941. },
  36942. {
  36943. name: "\"Large\" Deity",
  36944. height: math.unit(15, "km")
  36945. },
  36946. ]
  36947. ))
  36948. characterMakers.push(() => makeCharacter(
  36949. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  36950. {
  36951. front: {
  36952. height: math.unit(6, "feet"),
  36953. weight: math.unit(250, "lb"),
  36954. name: "Front",
  36955. image: {
  36956. source: "./media/characters/mukiro/front.svg",
  36957. extra: 1368/1310,
  36958. bottom: 34/1402
  36959. }
  36960. },
  36961. },
  36962. [
  36963. {
  36964. name: "Normal",
  36965. height: math.unit(6, "feet"),
  36966. default: true
  36967. },
  36968. ]
  36969. ))
  36970. characterMakers.push(() => makeCharacter(
  36971. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  36972. {
  36973. front: {
  36974. height: math.unit(12 + 4/12, "feet"),
  36975. name: "Front",
  36976. image: {
  36977. source: "./media/characters/zeph-the-tiger-god/front.svg",
  36978. extra: 1346/1311,
  36979. bottom: 65/1411
  36980. }
  36981. },
  36982. },
  36983. [
  36984. {
  36985. name: "Base",
  36986. height: math.unit(12 + 4/12, "feet"),
  36987. default: true
  36988. },
  36989. {
  36990. name: "Macro",
  36991. height: math.unit(150, "feet")
  36992. },
  36993. {
  36994. name: "Mega",
  36995. height: math.unit(2, "miles")
  36996. },
  36997. {
  36998. name: "Demi God",
  36999. height: math.unit(4, "AU")
  37000. },
  37001. {
  37002. name: "God Size",
  37003. height: math.unit(1, "universe")
  37004. },
  37005. ]
  37006. ))
  37007. characterMakers.push(() => makeCharacter(
  37008. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37009. {
  37010. front: {
  37011. height: math.unit(3 + 3/12, "feet"),
  37012. weight: math.unit(88, "lb"),
  37013. name: "Front",
  37014. image: {
  37015. source: "./media/characters/trey/front.svg",
  37016. extra: 1815/1509,
  37017. bottom: 60/1875
  37018. }
  37019. },
  37020. },
  37021. [
  37022. {
  37023. name: "Normal",
  37024. height: math.unit(3 + 3/12, "feet"),
  37025. default: true
  37026. },
  37027. ]
  37028. ))
  37029. characterMakers.push(() => makeCharacter(
  37030. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37031. {
  37032. front: {
  37033. height: math.unit(4, "meters"),
  37034. name: "Front",
  37035. image: {
  37036. source: "./media/characters/adelonda/front.svg",
  37037. extra: 1942/1775,
  37038. bottom: 33/1975
  37039. }
  37040. },
  37041. back: {
  37042. height: math.unit(4, "meters"),
  37043. name: "Back",
  37044. image: {
  37045. source: "./media/characters/adelonda/back.svg",
  37046. extra: 1932/1780,
  37047. bottom: 42/1974
  37048. }
  37049. },
  37050. bust: {
  37051. height: math.unit(1.8, "meter"),
  37052. name: "Bust",
  37053. image: {
  37054. source: "./media/characters/adelonda/bust.svg"
  37055. }
  37056. },
  37057. },
  37058. [
  37059. {
  37060. name: "Normal",
  37061. height: math.unit(4, "meters"),
  37062. default: true
  37063. },
  37064. ]
  37065. ))
  37066. characterMakers.push(() => makeCharacter(
  37067. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37068. {
  37069. front: {
  37070. height: math.unit(8 + 4/12, "feet"),
  37071. weight: math.unit(670, "lb"),
  37072. name: "Front",
  37073. image: {
  37074. source: "./media/characters/acadiel/front.svg",
  37075. extra: 1901/1595,
  37076. bottom: 142/2043
  37077. }
  37078. },
  37079. },
  37080. [
  37081. {
  37082. name: "Normal",
  37083. height: math.unit(8 + 4/12, "feet"),
  37084. default: true
  37085. },
  37086. {
  37087. name: "Macro",
  37088. height: math.unit(200, "feet")
  37089. },
  37090. ]
  37091. ))
  37092. characterMakers.push(() => makeCharacter(
  37093. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37094. {
  37095. front: {
  37096. height: math.unit(6 + 2/12, "feet"),
  37097. weight: math.unit(185, "lb"),
  37098. name: "Front",
  37099. image: {
  37100. source: "./media/characters/kayne-ein/front.svg",
  37101. extra: 1780/1560,
  37102. bottom: 81/1861
  37103. }
  37104. },
  37105. },
  37106. [
  37107. {
  37108. name: "Normal",
  37109. height: math.unit(6 + 2/12, "feet"),
  37110. default: true
  37111. },
  37112. {
  37113. name: "Transformation Stage",
  37114. height: math.unit(15, "feet")
  37115. },
  37116. {
  37117. name: "Macro",
  37118. height: math.unit(150, "feet")
  37119. },
  37120. {
  37121. name: "Earth's Shadow",
  37122. height: math.unit(6200, "miles")
  37123. },
  37124. {
  37125. name: "Universal Demon",
  37126. height: math.unit(28e9, "parsecs")
  37127. },
  37128. {
  37129. name: "Multiverse God",
  37130. height: math.unit(28.5e12, "parsecs")
  37131. },
  37132. ]
  37133. ))
  37134. //characters
  37135. function makeCharacters() {
  37136. const results = [];
  37137. characterMakers.forEach(character => {
  37138. results.push(character());
  37139. });
  37140. return results;
  37141. }