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

44769 строки
1.1 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "feliform"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "feliform"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf", "werebeast"]
  569. },
  570. "werebeast": {
  571. name: "Werebeast",
  572. parents: ["monster"]
  573. },
  574. "meerkat": {
  575. name: "Meerkat",
  576. parents: ["mammal"]
  577. },
  578. "human": {
  579. name: "Human",
  580. parents: ["mammal"]
  581. },
  582. "geth": {
  583. name: "Geth",
  584. parents: ["android"]
  585. },
  586. "husky": {
  587. name: "Husky",
  588. parents: ["dog"]
  589. },
  590. "long-eared-bat": {
  591. name: "Long Eared Bat",
  592. parents: ["bat"]
  593. },
  594. "lizard": {
  595. name: "Lizard",
  596. parents: ["reptile"]
  597. },
  598. "salamander": {
  599. name: "Salamander",
  600. parents: ["lizard"]
  601. },
  602. "chameleon": {
  603. name: "Chameleon",
  604. parents: ["lizard"]
  605. },
  606. "gecko": {
  607. name: "Gecko",
  608. parents: ["lizard"]
  609. },
  610. "kobold": {
  611. name: "Kobold",
  612. parents: ["reptile"]
  613. },
  614. "charizard": {
  615. name: "Charizard",
  616. parents: ["pokemon"]
  617. },
  618. "lugia": {
  619. name: "Lugia",
  620. parents: ["pokemon"]
  621. },
  622. "cerberus": {
  623. name: "Cerberus",
  624. parents: ["dog"]
  625. },
  626. "tyrantrum": {
  627. name: "Tyrantrum",
  628. parents: ["pokemon"]
  629. },
  630. "lemur": {
  631. name: "Lemur",
  632. parents: ["mammal"]
  633. },
  634. "kelpie": {
  635. name: "Kelpie",
  636. parents: ["horse", "monster"]
  637. },
  638. "labrador": {
  639. name: "Labrador",
  640. parents: ["dog"]
  641. },
  642. "sylveon": {
  643. name: "Sylveon",
  644. parents: ["eeveelution"]
  645. },
  646. "eeveelution": {
  647. name: "Eeveelution",
  648. parents: ["pokemon"]
  649. },
  650. "polar-bear": {
  651. name: "Polar Bear",
  652. parents: ["bear"]
  653. },
  654. "bear": {
  655. name: "Bear",
  656. parents: ["mammal"]
  657. },
  658. "absol": {
  659. name: "Absol",
  660. parents: ["pokemon"]
  661. },
  662. "wolver": {
  663. name: "Wolver",
  664. parents: ["mammal"]
  665. },
  666. "rottweiler": {
  667. name: "Rottweiler",
  668. parents: ["dog"]
  669. },
  670. "zebra": {
  671. name: "Zebra",
  672. parents: ["horse"]
  673. },
  674. "yoshi": {
  675. name: "Yoshi",
  676. parents: ["lizard"]
  677. },
  678. "lynx": {
  679. name: "Lynx",
  680. parents: ["cat"]
  681. },
  682. "unknown": {
  683. name: "Unknown",
  684. parents: []
  685. },
  686. "thylacine": {
  687. name: "Thylacine",
  688. parents: ["mammal"]
  689. },
  690. "gabumon": {
  691. name: "Gabumon",
  692. parents: ["digimon"]
  693. },
  694. "border-collie": {
  695. name: "Border Collie",
  696. parents: ["dog"]
  697. },
  698. "imp": {
  699. name: "Imp",
  700. parents: ["demon"]
  701. },
  702. "kangaroo": {
  703. name: "Kangaroo",
  704. parents: ["marsupial"]
  705. },
  706. "renamon": {
  707. name: "Renamon",
  708. parents: ["digimon"]
  709. },
  710. "candy-orca-dragon": {
  711. name: "Candy Orca Dragon",
  712. parents: ["fish", "dragon", "candy"]
  713. },
  714. "sabertooth-tiger": {
  715. name: "Sabertooth Tiger",
  716. parents: ["cat"]
  717. },
  718. "espurr": {
  719. name: "Espurr",
  720. parents: ["pokemon"]
  721. },
  722. "otter": {
  723. name: "Otter",
  724. parents: ["mustelid"]
  725. },
  726. "elemental": {
  727. name: "Elemental",
  728. parents: ["mammal"]
  729. },
  730. "mew": {
  731. name: "Mew",
  732. parents: ["pokemon"]
  733. },
  734. "goodra": {
  735. name: "Goodra",
  736. parents: ["pokemon"]
  737. },
  738. "fairy": {
  739. name: "Fairy",
  740. parents: ["magical"]
  741. },
  742. "typhlosion": {
  743. name: "Typhlosion",
  744. parents: ["pokemon"]
  745. },
  746. "magical": {
  747. name: "Magical",
  748. parents: []
  749. },
  750. "xenomorph": {
  751. name: "Xenomorph",
  752. parents: ["monster", "alien"]
  753. },
  754. "charr": {
  755. name: "Charr",
  756. parents: ["cat"]
  757. },
  758. "siberian-husky": {
  759. name: "Siberian Husky",
  760. parents: ["husky"]
  761. },
  762. "alligator": {
  763. name: "Alligator",
  764. parents: ["reptile"]
  765. },
  766. "bernese-mountain-dog": {
  767. name: "Bernese Mountain Dog",
  768. parents: ["dog"]
  769. },
  770. "reshiram": {
  771. name: "Reshiram",
  772. parents: ["pokemon"]
  773. },
  774. "grizzly-bear": {
  775. name: "Grizzly Bear",
  776. parents: ["bear"]
  777. },
  778. "water-monitor": {
  779. name: "Water Monitor",
  780. parents: ["lizard"]
  781. },
  782. "banchofossa": {
  783. name: "Banchofossa",
  784. parents: ["mammal"]
  785. },
  786. "kirin": {
  787. name: "Kirin",
  788. parents: ["monster"]
  789. },
  790. "quilava": {
  791. name: "Quilava",
  792. parents: ["pokemon"]
  793. },
  794. "seviper": {
  795. name: "Seviper",
  796. parents: ["pokemon"]
  797. },
  798. "flying-fox": {
  799. name: "Flying Fox",
  800. parents: ["bat"]
  801. },
  802. "keynain": {
  803. name: "Keynain",
  804. parents: ["avian"]
  805. },
  806. "lucario": {
  807. name: "Lucario",
  808. parents: ["pokemon"]
  809. },
  810. "siamese-cat": {
  811. name: "Siamese Cat",
  812. parents: ["cat"]
  813. },
  814. "spider": {
  815. name: "Spider",
  816. parents: ["insect"]
  817. },
  818. "samurott": {
  819. name: "Samurott",
  820. parents: ["pokemon"]
  821. },
  822. "megalodon": {
  823. name: "Megalodon",
  824. parents: ["shark"]
  825. },
  826. "unicorn": {
  827. name: "Unicorn",
  828. parents: ["horse"]
  829. },
  830. "greninja": {
  831. name: "Greninja",
  832. parents: ["pokemon"]
  833. },
  834. "water-dragon": {
  835. name: "Water Dragon",
  836. parents: ["dragon"]
  837. },
  838. "cross-fox": {
  839. name: "Cross Fox",
  840. parents: ["fox"]
  841. },
  842. "synth": {
  843. name: "Synth",
  844. parents: ["machine"]
  845. },
  846. "construct": {
  847. name: "Construct",
  848. parents: []
  849. },
  850. "mexican-wolf": {
  851. name: "Mexican Wolf",
  852. parents: ["wolf"]
  853. },
  854. "leopard": {
  855. name: "Leopard",
  856. parents: ["cat"]
  857. },
  858. "pig": {
  859. name: "Pig",
  860. parents: ["mammal"]
  861. },
  862. "ampharos": {
  863. name: "Ampharos",
  864. parents: ["pokemon"]
  865. },
  866. "orca": {
  867. name: "Orca",
  868. parents: ["fish"]
  869. },
  870. "lycanroc": {
  871. name: "Lycanroc",
  872. parents: ["pokemon"]
  873. },
  874. "surkanu": {
  875. name: "Surkanu",
  876. parents: ["monster"]
  877. },
  878. "seal": {
  879. name: "Seal",
  880. parents: ["mammal"]
  881. },
  882. "keldeo": {
  883. name: "Keldeo",
  884. parents: ["pokemon"]
  885. },
  886. "great-dane": {
  887. name: "Great Dane",
  888. parents: ["dog"]
  889. },
  890. "black-backed-jackal": {
  891. name: "Black Backed Jackal",
  892. parents: ["jackal"]
  893. },
  894. "sheep": {
  895. name: "Sheep",
  896. parents: ["mammal"]
  897. },
  898. "leopard-seal": {
  899. name: "Leopard Seal",
  900. parents: ["seal"]
  901. },
  902. "zoroark": {
  903. name: "Zoroark",
  904. parents: ["pokemon"]
  905. },
  906. "maned-wolf": {
  907. name: "Maned Wolf",
  908. parents: ["canine"]
  909. },
  910. "dracha": {
  911. name: "Dracha",
  912. parents: ["dragon"]
  913. },
  914. "wolxi": {
  915. name: "Wolxi",
  916. parents: ["mammal", "alien"]
  917. },
  918. "dratini": {
  919. name: "Dratini",
  920. parents: ["pokemon", "dragon"]
  921. },
  922. "skaven": {
  923. name: "Skaven",
  924. parents: ["rat"]
  925. },
  926. "mongoose": {
  927. name: "Mongoose",
  928. parents: ["mammal"]
  929. },
  930. "lopunny": {
  931. name: "Lopunny",
  932. parents: ["pokemon", "rabbit"]
  933. },
  934. "feraligatr": {
  935. name: "Feraligatr",
  936. parents: ["pokemon", "alligator"]
  937. },
  938. "houndoom": {
  939. name: "Houndoom",
  940. parents: ["pokemon", "dog"]
  941. },
  942. "protogen": {
  943. name: "Protogen",
  944. parents: ["machine"]
  945. },
  946. "saint-bernard": {
  947. name: "Saint Bernard",
  948. parents: ["dog"]
  949. },
  950. "crow": {
  951. name: "Crow",
  952. parents: ["corvid"]
  953. },
  954. "delphox": {
  955. name: "Delphox",
  956. parents: ["pokemon", "fox"]
  957. },
  958. "moose": {
  959. name: "Moose",
  960. parents: ["mammal"]
  961. },
  962. "joraxian": {
  963. name: "Joraxian",
  964. parents: ["monster", "canine", "demon"]
  965. },
  966. "nimbat": {
  967. name: "Nimbat",
  968. parents: ["mammal"]
  969. },
  970. "aardwolf": {
  971. name: "Aardwolf",
  972. parents: ["canine"]
  973. },
  974. "fluudrani": {
  975. name: "Fluudrani",
  976. parents: ["animal"]
  977. },
  978. "arcanine": {
  979. name: "Arcanine",
  980. parents: ["pokemon", "dog"]
  981. },
  982. "inteleon": {
  983. name: "Inteleon",
  984. parents: ["pokemon", "fish"]
  985. },
  986. "ninetales": {
  987. name: "Ninetales",
  988. parents: ["pokemon", "kitsune"]
  989. },
  990. "tigrex": {
  991. name: "Tigrex",
  992. parents: ["tiger"]
  993. },
  994. "zorua": {
  995. name: "Zorua",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "vulpix": {
  999. name: "Vulpix",
  1000. parents: ["pokemon", "fox"]
  1001. },
  1002. "barghest": {
  1003. name: "Barghest",
  1004. parents: ["monster"]
  1005. },
  1006. "gray-wolf": {
  1007. name: "Gray Wolf",
  1008. parents: ["wolf"]
  1009. },
  1010. "ruppells-fox": {
  1011. name: "Rüppell's Fox",
  1012. parents: ["fox"]
  1013. },
  1014. "bull-terrier": {
  1015. name: "Bull Terrier",
  1016. parents: ["dog"]
  1017. },
  1018. "european-honey-buzzard": {
  1019. name: "European Honey Buzzard",
  1020. parents: ["avian"]
  1021. },
  1022. "t-rex": {
  1023. name: "Tyrannosaurus Rex",
  1024. parents: ["dinosaur"]
  1025. },
  1026. "mactarian": {
  1027. name: "Mactarian",
  1028. parents: ["shark", "monster"]
  1029. },
  1030. "mewtwo-y": {
  1031. name: "Mewtwo Y",
  1032. parents: ["mewtwo"]
  1033. },
  1034. "mewtwo": {
  1035. name: "Mewtwo",
  1036. parents: ["pokemon"]
  1037. },
  1038. "mew": {
  1039. name: "Mew",
  1040. parents: ["pokemon"]
  1041. },
  1042. "eevee": {
  1043. name: "Eevee",
  1044. parents: ["eeveelution"]
  1045. },
  1046. "mienshao": {
  1047. name: "Mienshao",
  1048. parents: ["pokemon"]
  1049. },
  1050. "sugar-glider": {
  1051. name: "Sugar Glider",
  1052. parents: ["opossum"]
  1053. },
  1054. "spectral-bat": {
  1055. name: "Spectral Bat",
  1056. parents: ["bat"]
  1057. },
  1058. "scolipede": {
  1059. name: "Scolipede",
  1060. parents: ["pokemon", "insect"]
  1061. },
  1062. "jackalope": {
  1063. name: "Jackalope",
  1064. parents: ["rabbit", "antelope"]
  1065. },
  1066. "caracal": {
  1067. name: "Caracal",
  1068. parents: ["cat"]
  1069. },
  1070. "stoat": {
  1071. name: "Stoat",
  1072. parents: ["mammal"]
  1073. },
  1074. "african-golden-cat": {
  1075. name: "African Golden Cat",
  1076. parents: ["cat"]
  1077. },
  1078. "gigantosaurus": {
  1079. name: "Gigantosaurus",
  1080. parents: ["dinosaur"]
  1081. },
  1082. "zorgoia": {
  1083. name: "Zorgoia",
  1084. parents: ["mammal"]
  1085. },
  1086. "monitor-lizard": {
  1087. name: "Monitor Lizard",
  1088. parents: ["lizard"]
  1089. },
  1090. "ziralkia": {
  1091. name: "Ziralkia",
  1092. parents: ["mammal"]
  1093. },
  1094. "kiiasi": {
  1095. name: "Kiiasi",
  1096. parents: ["animal"]
  1097. },
  1098. "synx": {
  1099. name: "Synx",
  1100. parents: ["monster"]
  1101. },
  1102. "panther": {
  1103. name: "Panther",
  1104. parents: ["cat"]
  1105. },
  1106. "azumarill": {
  1107. name: "Azumarill",
  1108. parents: ["pokemon"]
  1109. },
  1110. "river-snaptail": {
  1111. name: "River Snaptail",
  1112. parents: ["otter", "crocodile"]
  1113. },
  1114. "great-blue-heron": {
  1115. name: "Great Blue Heron",
  1116. parents: ["avian"]
  1117. },
  1118. "smeargle": {
  1119. name: "Smeargle",
  1120. parents: ["pokemon"]
  1121. },
  1122. "vendeilen": {
  1123. name: "Vendeilen",
  1124. parents: ["monster"]
  1125. },
  1126. "ventura": {
  1127. name: "Ventura",
  1128. parents: ["canine"]
  1129. },
  1130. "clouded-leopard": {
  1131. name: "Clouded Leopard",
  1132. parents: ["leopard"]
  1133. },
  1134. "argonian": {
  1135. name: "Argonian",
  1136. parents: ["lizard"]
  1137. },
  1138. "salazzle": {
  1139. name: "Salazzle",
  1140. parents: ["pokemon", "lizard"]
  1141. },
  1142. "je-stoff-drachen": {
  1143. name: "Je-Stoff Drachen",
  1144. parents: ["dragon"]
  1145. },
  1146. "finnish-spitz-dog": {
  1147. name: "Finnish Spitz Dog",
  1148. parents: ["dog"]
  1149. },
  1150. "gray-fox": {
  1151. name: "Gray Fox",
  1152. parents: ["fox"]
  1153. },
  1154. "opossum": {
  1155. name: "opossum",
  1156. parents: ["mammal"]
  1157. },
  1158. "antelope": {
  1159. name: "Antelope",
  1160. parents: ["mammal"]
  1161. },
  1162. "weavile": {
  1163. name: "Weavile",
  1164. parents: ["pokemon"]
  1165. },
  1166. "pikachu": {
  1167. name: "Pikachu",
  1168. parents: ["pokemon", "mouse"]
  1169. },
  1170. "grovyle": {
  1171. name: "Grovyle",
  1172. parents: ["pokemon", "plant"]
  1173. },
  1174. "sthara": {
  1175. name: "Sthara",
  1176. parents: ["snow-leopard", "reptile"]
  1177. },
  1178. "star-warrior": {
  1179. name: "Star Warrior",
  1180. parents: ["magical"]
  1181. },
  1182. "dragonoid": {
  1183. name: "Dragonoid",
  1184. parents: ["dragon"]
  1185. },
  1186. "suicune": {
  1187. name: "Suicune",
  1188. parents: ["pokemon"]
  1189. },
  1190. "vole": {
  1191. name: "Vole",
  1192. parents: ["mammal"]
  1193. },
  1194. "blaziken": {
  1195. name: "Blaziken",
  1196. parents: ["pokemon", "avian"]
  1197. },
  1198. "buizel": {
  1199. name: "Buizel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "floatzel": {
  1203. name: "Floatzel",
  1204. parents: ["pokemon", "fish"]
  1205. },
  1206. "umok": {
  1207. name: "Umok",
  1208. parents: ["avian"]
  1209. },
  1210. "sea-monster": {
  1211. name: "Sea Monster",
  1212. parents: ["monster", "fish"]
  1213. },
  1214. "egyptian-vulture": {
  1215. name: "Egyptian Vulture",
  1216. parents: ["avian"]
  1217. },
  1218. "doberman": {
  1219. name: "Doberman",
  1220. parents: ["dog"]
  1221. },
  1222. "zangoose": {
  1223. name: "Zangoose",
  1224. parents: ["pokemon", "mongoose"]
  1225. },
  1226. "mongoose": {
  1227. name: "Mongoose",
  1228. parents: ["mammal"]
  1229. },
  1230. "wickerbeast": {
  1231. name: "Wickerbeast",
  1232. parents: ["monster"]
  1233. },
  1234. "zenari": {
  1235. name: "Zenari",
  1236. parents: ["lizard"]
  1237. },
  1238. "plant": {
  1239. name: "Plant",
  1240. parents: []
  1241. },
  1242. "raskatox": {
  1243. name: "Raskatox",
  1244. parents: ["raccoon", "skunk", "cat", "fox"]
  1245. },
  1246. "mikromare": {
  1247. name: "mikromare",
  1248. parents: ["alien"]
  1249. },
  1250. "alien": {
  1251. name: "Alien",
  1252. parents: ["animal"]
  1253. },
  1254. "deity": {
  1255. name: "Deity",
  1256. parents: []
  1257. },
  1258. "skarlan": {
  1259. name: "Skarlan",
  1260. parents: ["slug", "dragon"]
  1261. },
  1262. "slug": {
  1263. name: "Slug",
  1264. parents: ["mollusk"]
  1265. },
  1266. "mollusk": {
  1267. name: "Mollusk",
  1268. parents: ["animal"]
  1269. },
  1270. "chimera": {
  1271. name: "Chimera",
  1272. parents: ["monster"]
  1273. },
  1274. "gestalt": {
  1275. name: "Gestalt",
  1276. parents: ["construct"]
  1277. },
  1278. "mimic": {
  1279. name: "Mimic",
  1280. parents: ["monster"]
  1281. },
  1282. "calico-rat": {
  1283. name: "Calico Rat",
  1284. parents: ["rat"]
  1285. },
  1286. "panda": {
  1287. name: "Panda",
  1288. parents: ["mammal"]
  1289. },
  1290. "oni": {
  1291. name: "Oni",
  1292. parents: ["monster"]
  1293. },
  1294. "pegasus": {
  1295. name: "Pegasus",
  1296. parents: ["horse"]
  1297. },
  1298. "vulpera": {
  1299. name: "Vulpera",
  1300. parents: ["fennec-fox"]
  1301. },
  1302. "ceratosaurus": {
  1303. name: "Ceratosaurus",
  1304. parents: ["dinosaur"]
  1305. },
  1306. "nykur": {
  1307. name: "Nykur",
  1308. parents: ["horse", "monster"]
  1309. },
  1310. "giraffe": {
  1311. name: "Giraffe",
  1312. parents: ["mammal"]
  1313. },
  1314. "tauren": {
  1315. name: "Tauren",
  1316. parents: ["cow"]
  1317. },
  1318. "draconi": {
  1319. name: "Draconi",
  1320. parents: ["alien", "cat", "cyborg"]
  1321. },
  1322. "dire-wolf": {
  1323. name: "Dire Wolf",
  1324. parents: ["wolf"]
  1325. },
  1326. "ferromorph": {
  1327. name: "Ferromorph",
  1328. parents: ["construct"]
  1329. },
  1330. "meowth": {
  1331. name: "Meowth",
  1332. parents: ["cat", "pokemon"]
  1333. },
  1334. "pavodragon": {
  1335. name: "Pavodragon",
  1336. parents: ["dragon"]
  1337. },
  1338. "aaltranae": {
  1339. name: "Aaltranae",
  1340. parents: ["dragon"]
  1341. },
  1342. "cyborg": {
  1343. name: "Cyborg",
  1344. parents: ["machine"]
  1345. },
  1346. "draptor": {
  1347. name: "Draptor",
  1348. parents: ["dragon"]
  1349. },
  1350. "candy": {
  1351. name: "Candy",
  1352. parents: []
  1353. },
  1354. "drenath": {
  1355. name: "Drenath",
  1356. parents: ["dragon", "snake", "rabbit"]
  1357. },
  1358. "coyju": {
  1359. name: "Coyju",
  1360. parents: ["coyote", "kaiju"]
  1361. },
  1362. "kaiju": {
  1363. name: "Kaiju",
  1364. parents: ["monster"]
  1365. },
  1366. "nickit": {
  1367. name: "Nickit",
  1368. parents: ["pokemon", "cat"]
  1369. },
  1370. "lopunny": {
  1371. name: "Lopunny",
  1372. parents: ["pokemon", "rabbit"]
  1373. },
  1374. "korean-jindo-dog": {
  1375. name: "Korean Jindo Dog",
  1376. parents: ["dog"]
  1377. },
  1378. "naga": {
  1379. name: "Naga",
  1380. parents: ["snake", "monster"]
  1381. },
  1382. "undead": {
  1383. name: "Undead",
  1384. parents: ["monster"]
  1385. },
  1386. "whale": {
  1387. name: "Whale",
  1388. parents: ["fish"]
  1389. },
  1390. "gelato-bee": {
  1391. name: "Gelato Bee",
  1392. parents: ["bee"]
  1393. },
  1394. "bee": {
  1395. name: "Bee",
  1396. parents: ["insect"]
  1397. },
  1398. "gardevoir": {
  1399. name: "Gardevoir",
  1400. parents: ["pokemon"]
  1401. },
  1402. "ant": {
  1403. name: "Ant",
  1404. parents: ["insect"]
  1405. },
  1406. "frog": {
  1407. name: "Frog",
  1408. parents: ["amphibian"]
  1409. },
  1410. "amphibian": {
  1411. name: "Amphibian",
  1412. parents: ["animal"]
  1413. },
  1414. "pangolin": {
  1415. name: "Pangolin",
  1416. parents: ["mammal"]
  1417. },
  1418. "uragi'viidorn": {
  1419. name: "Uragi'viidorn",
  1420. parents: ["avian", "bear"]
  1421. },
  1422. "gryphdelphais": {
  1423. name: "Gryphdelphais",
  1424. parents: ["dolphin", "gryphon"]
  1425. },
  1426. "plush": {
  1427. name: "Plush",
  1428. parents: ["construct"]
  1429. },
  1430. "draiger": {
  1431. name: "Draiger",
  1432. parents: ["dragon","tiger"]
  1433. },
  1434. "foxsky": {
  1435. name: "Foxsky",
  1436. parents: ["fox", "husky"]
  1437. },
  1438. "umbreon": {
  1439. name: "Umbreon",
  1440. parents: ["eeveelution"]
  1441. },
  1442. "slime-dragon": {
  1443. name: "Slime Dragon",
  1444. parents: ["dragon", "goo"]
  1445. },
  1446. "enderman": {
  1447. name: "Enderman",
  1448. parents: ["monster"]
  1449. },
  1450. "gremlin": {
  1451. name: "Gremlin",
  1452. parents: ["monster"]
  1453. },
  1454. "dragonsune": {
  1455. name: "Dragonsune",
  1456. parents: ["dragon", "kitsune"]
  1457. },
  1458. "ghost": {
  1459. name: "Ghost",
  1460. parents: ["supernatural"]
  1461. },
  1462. "false-vampire-bat": {
  1463. name: "False Vampire Bat",
  1464. parents: ["bat"]
  1465. },
  1466. "succubus": {
  1467. name: "Succubus",
  1468. parents: ["demon"]
  1469. },
  1470. "mia": {
  1471. name: "Mia",
  1472. parents: ["canine"]
  1473. },
  1474. "rainbow": {
  1475. name: "Rainbow",
  1476. parents: ["monster"]
  1477. },
  1478. "solgaleo": {
  1479. name: "Solgaleo",
  1480. parents: ["pokemon"]
  1481. },
  1482. "lucent-nargacuga": {
  1483. name: "Lucent Nargacuga",
  1484. parents: ["monster-hunter"]
  1485. },
  1486. "monster-hunter": {
  1487. name: "Monster Hunter",
  1488. parents: ["monster"]
  1489. },
  1490. "leviathan": {
  1491. "name": "Leviathan",
  1492. "url": "sea-monster"
  1493. },
  1494. "bull": {
  1495. name: "Bull",
  1496. parents: ["mammal"]
  1497. },
  1498. "tanuki": {
  1499. name: "Tanuki",
  1500. parents: ["monster"]
  1501. },
  1502. "chakat": {
  1503. name: "Chakat",
  1504. parents: ["cat"]
  1505. },
  1506. "hydra": {
  1507. name: "Hydra",
  1508. parents: ["monster"]
  1509. },
  1510. "zigzagoon": {
  1511. name: "Zigzagoon",
  1512. parents: ["raccoon", "pokemon"]
  1513. },
  1514. "vulture": {
  1515. name: "Vulture",
  1516. parents: ["avian"]
  1517. },
  1518. "eastern-dragon": {
  1519. name: "Eastern Dragon",
  1520. parents: ["dragon"]
  1521. },
  1522. "gryffon": {
  1523. name: "Gryffon",
  1524. parents: ["phoenix", "red-panda"]
  1525. },
  1526. "amtsvane": {
  1527. name: "Amtsvane",
  1528. parents: ["reptile"]
  1529. },
  1530. "kigavi": {
  1531. name: "Kigavi",
  1532. parents: ["avian"]
  1533. },
  1534. "turian": {
  1535. name: "Turian",
  1536. parents: ["avian"]
  1537. },
  1538. "zeraora": {
  1539. name: "Zeraora",
  1540. parents: ["pokemon"]
  1541. },
  1542. "sandshrew": {
  1543. name: "Sandshrew",
  1544. parents: ["pokemon", "pangolin"]
  1545. },
  1546. "valais-blacknose-sheep": {
  1547. name: "Valais Blacknose Sheep",
  1548. parents: ["sheep"]
  1549. },
  1550. "novaleit": {
  1551. name: "Novaleit",
  1552. parents: ["mammal"]
  1553. },
  1554. "dunnoh": {
  1555. name: "Dunnoh",
  1556. parents: ["mammal"]
  1557. },
  1558. "lunaral-dragon": {
  1559. name: "Lunaral Dragon",
  1560. parents: ["dragon"]
  1561. },
  1562. "arctic-wolf": {
  1563. name: "Arctic Wolf",
  1564. parents: ["wolf"]
  1565. },
  1566. "donkey": {
  1567. name: "Donkey",
  1568. parents: ["horse"]
  1569. },
  1570. "chinchilla": {
  1571. name: "Chinchilla",
  1572. parents: ["rodent"]
  1573. },
  1574. "felkin": {
  1575. name: "Felkin",
  1576. parents: ["dragon"]
  1577. },
  1578. "tykeriel": {
  1579. name: "Tykeriel",
  1580. parents: ["avian"]
  1581. },
  1582. "folf": {
  1583. name: "Folf",
  1584. parents: ["fox", "wolf"]
  1585. },
  1586. "pooltoy": {
  1587. name: "Pooltoy",
  1588. parents: ["construct"]
  1589. },
  1590. "demi": {
  1591. name: "Demi",
  1592. parents: ["human"]
  1593. },
  1594. "stegosaurus": {
  1595. name: "Stegosaurus",
  1596. parents: ["dinosaur"]
  1597. },
  1598. "computer-virus": {
  1599. name: "Computer Virus",
  1600. parents: ["program"]
  1601. },
  1602. "program": {
  1603. name: "Program",
  1604. parents: ["construct"]
  1605. },
  1606. "space-springhare": {
  1607. name: "Space Springhare",
  1608. parents: ["rabbit"]
  1609. },
  1610. "river-drake": {
  1611. name: "River Drake",
  1612. parents: ["dragon"]
  1613. },
  1614. "djinn": {
  1615. "name": "Djinn",
  1616. "url": "supernatural"
  1617. },
  1618. "supernatural": {
  1619. name: "Supernatural",
  1620. parents: ["monster"]
  1621. },
  1622. "grasshopper-mouse": {
  1623. name: "Grasshopper Mouse",
  1624. parents: ["mouse"]
  1625. },
  1626. "somali-cat": {
  1627. name: "Somali Cat",
  1628. parents: ["cat"]
  1629. },
  1630. "minccino": {
  1631. name: "Minccino",
  1632. parents: ["pokemon", "chinchilla"]
  1633. },
  1634. "pine-marten": {
  1635. name: "Pine Marten",
  1636. parents: ["marten"]
  1637. },
  1638. "marten": {
  1639. name: "Marten",
  1640. parents: ["mustelid"]
  1641. },
  1642. "mustelid": {
  1643. name: "Mustelid",
  1644. parents: ["mammal"]
  1645. },
  1646. "caribou": {
  1647. name: "Caribou",
  1648. parents: ["deer"]
  1649. },
  1650. "gnoll": {
  1651. name: "Gnoll",
  1652. parents: ["hyena", "monster"]
  1653. },
  1654. "peacekeeper": {
  1655. name: "Peacekeeper",
  1656. parents: ["human"]
  1657. },
  1658. "river-otter": {
  1659. name: "River Otter",
  1660. parents: ["otter"]
  1661. },
  1662. "dhole": {
  1663. name: "Dhole",
  1664. parents: ["canine"]
  1665. },
  1666. "springbok": {
  1667. name: "Springbok",
  1668. parents: ["antelope"]
  1669. },
  1670. "marsupial": {
  1671. name: "Marsupial",
  1672. parents: ["mammal"]
  1673. },
  1674. "townsend-big-eared-bat": {
  1675. name: "Townsend Big-eared Bat",
  1676. parents: ["bat"]
  1677. },
  1678. "squirrel": {
  1679. name: "Squirrel",
  1680. parents: ["rodent"]
  1681. },
  1682. "magpie": {
  1683. name: "Magpie",
  1684. parents: ["corvid"]
  1685. },
  1686. "civet": {
  1687. name: "Civet",
  1688. parents: ["feliform"]
  1689. },
  1690. "feliform": {
  1691. name: "Feliform",
  1692. parents: ["mammal"]
  1693. },
  1694. "tiefling": {
  1695. name: "Tiefling",
  1696. parents: ["devil"]
  1697. },
  1698. "devil": {
  1699. name: "Devil",
  1700. parents: ["supernatural"]
  1701. },
  1702. "sika-deer": {
  1703. name: "Sika Deer",
  1704. parents: ["deer"]
  1705. },
  1706. "vaporeon": {
  1707. name: "Vaporeon",
  1708. parents: ["eeveelution"]
  1709. },
  1710. "leafeon": {
  1711. name: "Leafeon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "jolteon": {
  1715. name: "Jolteon",
  1716. parents: ["eeveelution"]
  1717. },
  1718. "spireborn": {
  1719. name: "Spireborn",
  1720. parents: ["zorgoia"]
  1721. },
  1722. "vampire": {
  1723. name: "Vampire",
  1724. parents: ["monster"]
  1725. },
  1726. "extraplanar": {
  1727. name: "Extraplanar",
  1728. parents: []
  1729. },
  1730. "goo": {
  1731. name: "Goo",
  1732. parents: []
  1733. },
  1734. "skink": {
  1735. name: "Skink",
  1736. parents: ["lizard"]
  1737. },
  1738. "bat-eared-fox": {
  1739. name: "Bat-eared Fox",
  1740. parents: ["fox"]
  1741. },
  1742. "belted-kingfisher": {
  1743. name: "Belted Kingfisher",
  1744. parents: ["avian"]
  1745. },
  1746. "omnifalcon": {
  1747. name: "Omnifalcon",
  1748. parents: ["gryphon", "falcon", "harpy-eagle"]
  1749. },
  1750. "falcon": {
  1751. name: "Falcon",
  1752. parents: ["avian"]
  1753. },
  1754. "avali": {
  1755. name: "Avali",
  1756. parents: ["avian", "alien"]
  1757. },
  1758. "arctic-fox": {
  1759. name: "Arctic Fox",
  1760. parents: ["fox"]
  1761. },
  1762. "snow-tiger": {
  1763. name: "Snow Tiger",
  1764. parents: ["tiger"]
  1765. },
  1766. "marble-fox": {
  1767. name: "Marble Fox",
  1768. parents: ["fox"]
  1769. },
  1770. "king-wickerbeast": {
  1771. name: "King Wickerbeast",
  1772. parents: ["wickerbeast"]
  1773. },
  1774. "wickerbeast": {
  1775. name: "Wickerbeast",
  1776. parents: ["mammal"]
  1777. },
  1778. "european-polecat": {
  1779. name: "European Polecat",
  1780. parents: ["mustelid"]
  1781. },
  1782. "teshari": {
  1783. name: "Teshari",
  1784. parents: ["avian", "raptor"]
  1785. },
  1786. "alicorn": {
  1787. name: "Alicorn",
  1788. parents: ["horse"]
  1789. },
  1790. "atlas-moth": {
  1791. name: "Atlas Moth",
  1792. parents: ["moth"]
  1793. },
  1794. }
  1795. //species
  1796. function getSpeciesInfo(speciesList) {
  1797. let result = new Set();
  1798. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1799. result.add(entry)
  1800. });
  1801. return Array.from(result);
  1802. };
  1803. function getSpeciesInfoHelper(species) {
  1804. if (!speciesData[species]) {
  1805. console.warn(species + " doesn't exist");
  1806. return [];
  1807. }
  1808. if (speciesData[species].parents) {
  1809. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1810. } else {
  1811. return [species];
  1812. }
  1813. }
  1814. characterMakers.push(() => makeCharacter(
  1815. {
  1816. name: "Fen",
  1817. species: ["crux"],
  1818. description: {
  1819. title: "Bio",
  1820. text: "Very furry. Sheds on everything."
  1821. },
  1822. tags: [
  1823. "anthro",
  1824. "goo"
  1825. ]
  1826. },
  1827. {
  1828. back: {
  1829. height: math.unit(2.2428, "meter"),
  1830. weight: math.unit(124.738, "kg"),
  1831. name: "Back",
  1832. image: {
  1833. source: "./media/characters/fen/back.svg",
  1834. },
  1835. info: {
  1836. description: {
  1837. mode: "append",
  1838. text: "\n\nHe is not currently looking at you."
  1839. }
  1840. }
  1841. },
  1842. full: {
  1843. height: math.unit(0.91, "meter"),
  1844. weight: math.unit(225, "kg"),
  1845. name: "Full",
  1846. image: {
  1847. source: "./media/characters/fen/full.svg",
  1848. extra: 1133/859,
  1849. bottom: 145/1278
  1850. },
  1851. info: {
  1852. description: {
  1853. mode: "append",
  1854. text: "\n\nMunch."
  1855. }
  1856. }
  1857. },
  1858. kneeling: {
  1859. height: math.unit(5.4, "feet"),
  1860. weight: math.unit(124.738, "kg"),
  1861. name: "Kneeling",
  1862. image: {
  1863. source: "./media/characters/fen/kneeling.svg",
  1864. extra: 563 / 507
  1865. }
  1866. },
  1867. goo: {
  1868. height: math.unit(2.8, "feet"),
  1869. weight: math.unit(125, "kg"),
  1870. capacity: math.unit(1, "people"),
  1871. name: "Goo",
  1872. image: {
  1873. source: "./media/characters/fen/goo.svg",
  1874. bottom: 116 / 613
  1875. }
  1876. },
  1877. lounging: {
  1878. height: math.unit(6.5, "feet"),
  1879. weight: math.unit(125, "kg"),
  1880. name: "Lounging",
  1881. image: {
  1882. source: "./media/characters/fen/lounging.svg"
  1883. }
  1884. },
  1885. },
  1886. [
  1887. {
  1888. name: "Normal",
  1889. height: math.unit(2.2428, "meter")
  1890. },
  1891. {
  1892. name: "Big",
  1893. height: math.unit(12, "feet")
  1894. },
  1895. {
  1896. name: "Minimacro",
  1897. height: math.unit(40, "feet"),
  1898. default: true,
  1899. info: {
  1900. description: {
  1901. mode: "append",
  1902. text: "\n\nTOO DAMN BIG"
  1903. }
  1904. }
  1905. },
  1906. {
  1907. name: "Macro",
  1908. height: math.unit(100, "feet"),
  1909. info: {
  1910. description: {
  1911. mode: "append",
  1912. text: "\n\nTOO DAMN BIG"
  1913. }
  1914. }
  1915. },
  1916. {
  1917. name: "Macro+",
  1918. height: math.unit(300, "feet")
  1919. },
  1920. {
  1921. name: "Megamacro",
  1922. height: math.unit(2, "miles")
  1923. }
  1924. ]
  1925. ))
  1926. characterMakers.push(() => makeCharacter(
  1927. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1928. {
  1929. front: {
  1930. height: math.unit(183, "cm"),
  1931. weight: math.unit(80, "kg"),
  1932. name: "Front",
  1933. image: {
  1934. source: "./media/characters/sofia-fluttertail/front.svg",
  1935. bottom: 0.01,
  1936. extra: 2154 / 2081
  1937. }
  1938. },
  1939. frontAlt: {
  1940. height: math.unit(183, "cm"),
  1941. weight: math.unit(80, "kg"),
  1942. name: "Front (alt)",
  1943. image: {
  1944. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1945. }
  1946. },
  1947. back: {
  1948. height: math.unit(183, "cm"),
  1949. weight: math.unit(80, "kg"),
  1950. name: "Back",
  1951. image: {
  1952. source: "./media/characters/sofia-fluttertail/back.svg"
  1953. }
  1954. },
  1955. kneeling: {
  1956. height: math.unit(125, "cm"),
  1957. weight: math.unit(80, "kg"),
  1958. name: "Kneeling",
  1959. image: {
  1960. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1961. extra: 1033 / 977,
  1962. bottom: 23.7 / 1057
  1963. }
  1964. },
  1965. maw: {
  1966. height: math.unit(183 / 5, "cm"),
  1967. name: "Maw",
  1968. image: {
  1969. source: "./media/characters/sofia-fluttertail/maw.svg"
  1970. }
  1971. },
  1972. mawcloseup: {
  1973. height: math.unit(183 / 5 * 0.41, "cm"),
  1974. name: "Maw (Closeup)",
  1975. image: {
  1976. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1977. }
  1978. },
  1979. paws: {
  1980. height: math.unit(1.17, "feet"),
  1981. name: "Paws",
  1982. image: {
  1983. source: "./media/characters/sofia-fluttertail/paws.svg",
  1984. extra: 851 / 851,
  1985. bottom: 17 / 868
  1986. }
  1987. },
  1988. },
  1989. [
  1990. {
  1991. name: "Normal",
  1992. height: math.unit(1.83, "meter")
  1993. },
  1994. {
  1995. name: "Size Thief",
  1996. height: math.unit(18, "feet")
  1997. },
  1998. {
  1999. name: "50 Foot Collie",
  2000. height: math.unit(50, "feet")
  2001. },
  2002. {
  2003. name: "Macro",
  2004. height: math.unit(96, "feet"),
  2005. default: true
  2006. },
  2007. {
  2008. name: "Megamerger",
  2009. height: math.unit(650, "feet")
  2010. },
  2011. ]
  2012. ))
  2013. characterMakers.push(() => makeCharacter(
  2014. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2015. {
  2016. front: {
  2017. height: math.unit(7, "feet"),
  2018. weight: math.unit(100, "kg"),
  2019. name: "Front",
  2020. image: {
  2021. source: "./media/characters/march/front.svg",
  2022. extra: 1992/1851,
  2023. bottom: 39/2031
  2024. }
  2025. },
  2026. foot: {
  2027. height: math.unit(0.9, "feet"),
  2028. name: "Foot",
  2029. image: {
  2030. source: "./media/characters/march/foot.svg"
  2031. }
  2032. },
  2033. },
  2034. [
  2035. {
  2036. name: "Normal",
  2037. height: math.unit(7.9, "feet")
  2038. },
  2039. {
  2040. name: "Macro",
  2041. height: math.unit(220, "meters")
  2042. },
  2043. {
  2044. name: "Megamacro",
  2045. height: math.unit(2.98, "km"),
  2046. default: true
  2047. },
  2048. {
  2049. name: "Gigamacro",
  2050. height: math.unit(15963, "km")
  2051. },
  2052. {
  2053. name: "Teramacro",
  2054. height: math.unit(2980000000, "km")
  2055. },
  2056. {
  2057. name: "Examacro",
  2058. height: math.unit(250, "parsecs")
  2059. },
  2060. ]
  2061. ))
  2062. characterMakers.push(() => makeCharacter(
  2063. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2064. {
  2065. front: {
  2066. height: math.unit(6, "feet"),
  2067. weight: math.unit(60, "kg"),
  2068. name: "Front",
  2069. image: {
  2070. source: "./media/characters/noir/front.svg",
  2071. extra: 1,
  2072. bottom: 0.032
  2073. }
  2074. },
  2075. },
  2076. [
  2077. {
  2078. name: "Normal",
  2079. height: math.unit(6.6, "feet")
  2080. },
  2081. {
  2082. name: "Macro",
  2083. height: math.unit(500, "feet")
  2084. },
  2085. {
  2086. name: "Megamacro",
  2087. height: math.unit(2.5, "km"),
  2088. default: true
  2089. },
  2090. {
  2091. name: "Gigamacro",
  2092. height: math.unit(22500, "km")
  2093. },
  2094. {
  2095. name: "Teramacro",
  2096. height: math.unit(2500000000, "km")
  2097. },
  2098. {
  2099. name: "Examacro",
  2100. height: math.unit(200, "parsecs")
  2101. },
  2102. ]
  2103. ))
  2104. characterMakers.push(() => makeCharacter(
  2105. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2106. {
  2107. front: {
  2108. height: math.unit(7, "feet"),
  2109. weight: math.unit(100, "kg"),
  2110. name: "Front",
  2111. image: {
  2112. source: "./media/characters/okuri/front.svg",
  2113. extra: 1,
  2114. bottom: 0.037
  2115. }
  2116. },
  2117. back: {
  2118. height: math.unit(7, "feet"),
  2119. weight: math.unit(100, "kg"),
  2120. name: "Back",
  2121. image: {
  2122. source: "./media/characters/okuri/back.svg",
  2123. extra: 1,
  2124. bottom: 0.007
  2125. }
  2126. },
  2127. },
  2128. [
  2129. {
  2130. name: "Megamacro",
  2131. height: math.unit(100, "miles"),
  2132. default: true
  2133. },
  2134. ]
  2135. ))
  2136. characterMakers.push(() => makeCharacter(
  2137. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2138. {
  2139. front: {
  2140. height: math.unit(7, "feet"),
  2141. weight: math.unit(100, "kg"),
  2142. name: "Front",
  2143. image: {
  2144. source: "./media/characters/manny/front.svg",
  2145. extra: 1,
  2146. bottom: 0.06
  2147. }
  2148. },
  2149. back: {
  2150. height: math.unit(7, "feet"),
  2151. weight: math.unit(100, "kg"),
  2152. name: "Back",
  2153. image: {
  2154. source: "./media/characters/manny/back.svg",
  2155. extra: 1,
  2156. bottom: 0.014
  2157. }
  2158. },
  2159. },
  2160. [
  2161. {
  2162. name: "Normal",
  2163. height: math.unit(7, "feet"),
  2164. },
  2165. {
  2166. name: "Macro",
  2167. height: math.unit(78, "feet"),
  2168. default: true
  2169. },
  2170. {
  2171. name: "Macro+",
  2172. height: math.unit(300, "meters")
  2173. },
  2174. {
  2175. name: "Macro++",
  2176. height: math.unit(2400, "meters")
  2177. },
  2178. {
  2179. name: "Megamacro",
  2180. height: math.unit(5167, "meters")
  2181. },
  2182. {
  2183. name: "Gigamacro",
  2184. height: math.unit(41769, "miles")
  2185. },
  2186. ]
  2187. ))
  2188. characterMakers.push(() => makeCharacter(
  2189. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2190. {
  2191. front: {
  2192. height: math.unit(7, "feet"),
  2193. weight: math.unit(100, "kg"),
  2194. name: "Front",
  2195. image: {
  2196. source: "./media/characters/adake/front-1.svg"
  2197. }
  2198. },
  2199. frontAlt: {
  2200. height: math.unit(7, "feet"),
  2201. weight: math.unit(100, "kg"),
  2202. name: "Front (Alt)",
  2203. image: {
  2204. source: "./media/characters/adake/front-2.svg",
  2205. extra: 1,
  2206. bottom: 0.01
  2207. }
  2208. },
  2209. back: {
  2210. height: math.unit(7, "feet"),
  2211. weight: math.unit(100, "kg"),
  2212. name: "Back",
  2213. image: {
  2214. source: "./media/characters/adake/back.svg",
  2215. }
  2216. },
  2217. kneel: {
  2218. height: math.unit(5.385, "feet"),
  2219. weight: math.unit(100, "kg"),
  2220. name: "Kneeling",
  2221. image: {
  2222. source: "./media/characters/adake/kneel.svg",
  2223. bottom: 0.052
  2224. }
  2225. },
  2226. },
  2227. [
  2228. {
  2229. name: "Normal",
  2230. height: math.unit(7, "feet"),
  2231. },
  2232. {
  2233. name: "Macro",
  2234. height: math.unit(78, "feet"),
  2235. default: true
  2236. },
  2237. {
  2238. name: "Macro+",
  2239. height: math.unit(300, "meters")
  2240. },
  2241. {
  2242. name: "Macro++",
  2243. height: math.unit(2400, "meters")
  2244. },
  2245. {
  2246. name: "Megamacro",
  2247. height: math.unit(5167, "meters")
  2248. },
  2249. {
  2250. name: "Gigamacro",
  2251. height: math.unit(41769, "miles")
  2252. },
  2253. ]
  2254. ))
  2255. characterMakers.push(() => makeCharacter(
  2256. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2257. {
  2258. front: {
  2259. height: math.unit(1.65, "meters"),
  2260. weight: math.unit(50, "kg"),
  2261. name: "Front",
  2262. image: {
  2263. source: "./media/characters/elijah/front.svg",
  2264. extra: 858 / 830,
  2265. bottom: 95.5 / 953.8559
  2266. }
  2267. },
  2268. back: {
  2269. height: math.unit(1.65, "meters"),
  2270. weight: math.unit(50, "kg"),
  2271. name: "Back",
  2272. image: {
  2273. source: "./media/characters/elijah/back.svg",
  2274. extra: 895 / 850,
  2275. bottom: 5.3 / 897.956
  2276. }
  2277. },
  2278. frontNsfw: {
  2279. height: math.unit(1.65, "meters"),
  2280. weight: math.unit(50, "kg"),
  2281. name: "Front (NSFW)",
  2282. image: {
  2283. source: "./media/characters/elijah/front-nsfw.svg",
  2284. extra: 858 / 830,
  2285. bottom: 95.5 / 953.8559
  2286. }
  2287. },
  2288. backNsfw: {
  2289. height: math.unit(1.65, "meters"),
  2290. weight: math.unit(50, "kg"),
  2291. name: "Back (NSFW)",
  2292. image: {
  2293. source: "./media/characters/elijah/back-nsfw.svg",
  2294. extra: 895 / 850,
  2295. bottom: 5.3 / 897.956
  2296. }
  2297. },
  2298. dick: {
  2299. height: math.unit(1, "feet"),
  2300. name: "Dick",
  2301. image: {
  2302. source: "./media/characters/elijah/dick.svg"
  2303. }
  2304. },
  2305. beakOpen: {
  2306. height: math.unit(1.25, "feet"),
  2307. name: "Beak (Open)",
  2308. image: {
  2309. source: "./media/characters/elijah/beak-open.svg"
  2310. }
  2311. },
  2312. beakShut: {
  2313. height: math.unit(1.25, "feet"),
  2314. name: "Beak (Shut)",
  2315. image: {
  2316. source: "./media/characters/elijah/beak-shut.svg"
  2317. }
  2318. },
  2319. footFlexing: {
  2320. height: math.unit(1.61, "feet"),
  2321. name: "Foot (Flexing)",
  2322. image: {
  2323. source: "./media/characters/elijah/foot-flexing.svg"
  2324. }
  2325. },
  2326. footStepping: {
  2327. height: math.unit(1.44, "feet"),
  2328. name: "Foot (Stepping)",
  2329. image: {
  2330. source: "./media/characters/elijah/foot-stepping.svg"
  2331. }
  2332. },
  2333. plantigradeLeg: {
  2334. height: math.unit(2.34, "feet"),
  2335. name: "Plantigrade Leg",
  2336. image: {
  2337. source: "./media/characters/elijah/plantigrade-leg.svg"
  2338. }
  2339. },
  2340. plantigradeFootLeft: {
  2341. height: math.unit(0.9, "feet"),
  2342. name: "Plantigrade Foot (Left)",
  2343. image: {
  2344. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2345. }
  2346. },
  2347. plantigradeFootRight: {
  2348. height: math.unit(0.9, "feet"),
  2349. name: "Plantigrade Foot (Right)",
  2350. image: {
  2351. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2352. }
  2353. },
  2354. },
  2355. [
  2356. {
  2357. name: "Normal",
  2358. height: math.unit(1.65, "meters")
  2359. },
  2360. {
  2361. name: "Macro",
  2362. height: math.unit(55, "meters"),
  2363. default: true
  2364. },
  2365. {
  2366. name: "Macro+",
  2367. height: math.unit(105, "meters")
  2368. },
  2369. ]
  2370. ))
  2371. characterMakers.push(() => makeCharacter(
  2372. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2373. {
  2374. front: {
  2375. height: math.unit(11, "feet"),
  2376. weight: math.unit(320, "kg"),
  2377. name: "Front",
  2378. image: {
  2379. source: "./media/characters/rai/front.svg",
  2380. extra: 1802/1696,
  2381. bottom: 68/1870
  2382. }
  2383. },
  2384. frontDressed: {
  2385. height: math.unit(11, "feet"),
  2386. weight: math.unit(320, "kg"),
  2387. name: "Front (Dressed)",
  2388. image: {
  2389. source: "./media/characters/rai/front-dressed.svg",
  2390. extra: 1802/1696,
  2391. bottom: 68/1870
  2392. }
  2393. },
  2394. side: {
  2395. height: math.unit(11, "feet"),
  2396. weight: math.unit(320, "kg"),
  2397. name: "Side",
  2398. image: {
  2399. source: "./media/characters/rai/side.svg",
  2400. extra: 1789/1710,
  2401. bottom: 115/1904
  2402. }
  2403. },
  2404. back: {
  2405. height: math.unit(11, "feet"),
  2406. weight: math.unit(320, "kg"),
  2407. name: "Back",
  2408. image: {
  2409. source: "./media/characters/rai/back.svg",
  2410. extra: 1770/1707,
  2411. bottom: 28/1798
  2412. }
  2413. },
  2414. feral: {
  2415. height: math.unit(11, "feet"),
  2416. weight: math.unit(640, "kg"),
  2417. name: "Feral",
  2418. image: {
  2419. source: "./media/characters/rai/feral.svg",
  2420. extra: 1035/642,
  2421. bottom: 86/1121
  2422. }
  2423. },
  2424. dragon: {
  2425. height: math.unit(23, "feet"),
  2426. weight: math.unit(50000, "lb"),
  2427. name: "Dragon",
  2428. image: {
  2429. source: "./media/characters/rai/dragon.svg",
  2430. extra: 2498 / 2030,
  2431. bottom: 85.2 / 2584
  2432. }
  2433. },
  2434. maw: {
  2435. height: math.unit(6 / 3.81416, "feet"),
  2436. name: "Maw",
  2437. image: {
  2438. source: "./media/characters/rai/maw.svg"
  2439. }
  2440. },
  2441. },
  2442. [
  2443. {
  2444. name: "Normal",
  2445. height: math.unit(11, "feet")
  2446. },
  2447. {
  2448. name: "Macro",
  2449. height: math.unit(302, "feet"),
  2450. default: true
  2451. },
  2452. ]
  2453. ))
  2454. characterMakers.push(() => makeCharacter(
  2455. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2456. {
  2457. frontDressed: {
  2458. height: math.unit(216, "feet"),
  2459. weight: math.unit(7000000, "lb"),
  2460. name: "Front (Dressed)",
  2461. image: {
  2462. source: "./media/characters/jazzy/front-dressed.svg",
  2463. extra: 2738 / 2651,
  2464. bottom: 41.8 / 2786
  2465. }
  2466. },
  2467. backDressed: {
  2468. height: math.unit(216, "feet"),
  2469. weight: math.unit(7000000, "lb"),
  2470. name: "Back (Dressed)",
  2471. image: {
  2472. source: "./media/characters/jazzy/back-dressed.svg",
  2473. extra: 2775 / 2673,
  2474. bottom: 36.8 / 2817
  2475. }
  2476. },
  2477. front: {
  2478. height: math.unit(216, "feet"),
  2479. weight: math.unit(7000000, "lb"),
  2480. name: "Front",
  2481. image: {
  2482. source: "./media/characters/jazzy/front.svg",
  2483. extra: 2738 / 2651,
  2484. bottom: 41.8 / 2786
  2485. }
  2486. },
  2487. back: {
  2488. height: math.unit(216, "feet"),
  2489. weight: math.unit(7000000, "lb"),
  2490. name: "Back",
  2491. image: {
  2492. source: "./media/characters/jazzy/back.svg",
  2493. extra: 2775 / 2673,
  2494. bottom: 36.8 / 2817
  2495. }
  2496. },
  2497. maw: {
  2498. height: math.unit(20, "feet"),
  2499. name: "Maw",
  2500. image: {
  2501. source: "./media/characters/jazzy/maw.svg"
  2502. }
  2503. },
  2504. paws: {
  2505. height: math.unit(27.5, "feet"),
  2506. name: "Paws",
  2507. image: {
  2508. source: "./media/characters/jazzy/paws.svg"
  2509. }
  2510. },
  2511. eye: {
  2512. height: math.unit(4.4, "feet"),
  2513. name: "Eye",
  2514. image: {
  2515. source: "./media/characters/jazzy/eye.svg"
  2516. }
  2517. },
  2518. droneOffense: {
  2519. height: math.unit(9.5, "inches"),
  2520. name: "Drone (Offense)",
  2521. image: {
  2522. source: "./media/characters/jazzy/drone-offense.svg"
  2523. }
  2524. },
  2525. droneRecon: {
  2526. height: math.unit(9.5, "inches"),
  2527. name: "Drone (Recon)",
  2528. image: {
  2529. source: "./media/characters/jazzy/drone-recon.svg"
  2530. }
  2531. },
  2532. droneDefense: {
  2533. height: math.unit(9.5, "inches"),
  2534. name: "Drone (Defense)",
  2535. image: {
  2536. source: "./media/characters/jazzy/drone-defense.svg"
  2537. }
  2538. },
  2539. },
  2540. [
  2541. {
  2542. name: "Macro",
  2543. height: math.unit(216, "feet"),
  2544. default: true
  2545. },
  2546. ]
  2547. ))
  2548. characterMakers.push(() => makeCharacter(
  2549. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2550. {
  2551. front: {
  2552. height: math.unit(9 + 6/12, "feet"),
  2553. weight: math.unit(700, "lb"),
  2554. name: "Front",
  2555. image: {
  2556. source: "./media/characters/flamm/front.svg",
  2557. extra: 1751/1632,
  2558. bottom: 46/1797
  2559. }
  2560. },
  2561. buff: {
  2562. height: math.unit(9 + 6/12, "feet"),
  2563. weight: math.unit(950, "lb"),
  2564. name: "Buff",
  2565. image: {
  2566. source: "./media/characters/flamm/buff.svg",
  2567. extra: 3018/2874,
  2568. bottom: 221/3239
  2569. }
  2570. },
  2571. },
  2572. [
  2573. {
  2574. name: "Normal",
  2575. height: math.unit(9.5, "feet")
  2576. },
  2577. {
  2578. name: "Macro",
  2579. height: math.unit(200, "feet"),
  2580. default: true
  2581. },
  2582. ]
  2583. ))
  2584. characterMakers.push(() => makeCharacter(
  2585. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2586. {
  2587. front: {
  2588. height: math.unit(5 + 3/12, "feet"),
  2589. weight: math.unit(60, "kg"),
  2590. name: "Front",
  2591. image: {
  2592. source: "./media/characters/zephiro/front.svg",
  2593. extra: 2309 / 2162,
  2594. bottom: 0.069
  2595. }
  2596. },
  2597. side: {
  2598. height: math.unit(5 + 3/12, "feet"),
  2599. weight: math.unit(60, "kg"),
  2600. name: "Side",
  2601. image: {
  2602. source: "./media/characters/zephiro/side.svg",
  2603. extra: 2403 / 2279,
  2604. bottom: 0.015
  2605. }
  2606. },
  2607. back: {
  2608. height: math.unit(5 + 3/12, "feet"),
  2609. weight: math.unit(60, "kg"),
  2610. name: "Back",
  2611. image: {
  2612. source: "./media/characters/zephiro/back.svg",
  2613. extra: 2373 / 2244,
  2614. bottom: 0.013
  2615. }
  2616. },
  2617. hand: {
  2618. height: math.unit(0.68, "feet"),
  2619. name: "Hand",
  2620. image: {
  2621. source: "./media/characters/zephiro/hand.svg"
  2622. }
  2623. },
  2624. paw: {
  2625. height: math.unit(1, "feet"),
  2626. name: "Paw",
  2627. image: {
  2628. source: "./media/characters/zephiro/paw.svg"
  2629. }
  2630. },
  2631. beans: {
  2632. height: math.unit(0.93, "feet"),
  2633. name: "Beans",
  2634. image: {
  2635. source: "./media/characters/zephiro/beans.svg"
  2636. }
  2637. },
  2638. },
  2639. [
  2640. {
  2641. name: "Micro",
  2642. height: math.unit(3, "inches")
  2643. },
  2644. {
  2645. name: "Normal",
  2646. height: math.unit(5 + 3 / 12, "feet"),
  2647. default: true
  2648. },
  2649. {
  2650. name: "Macro",
  2651. height: math.unit(118, "feet")
  2652. },
  2653. ]
  2654. ))
  2655. characterMakers.push(() => makeCharacter(
  2656. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2657. {
  2658. front: {
  2659. height: math.unit(5, "feet"),
  2660. weight: math.unit(90, "kg"),
  2661. name: "Front",
  2662. image: {
  2663. source: "./media/characters/fory/front.svg",
  2664. extra: 2862 / 2674,
  2665. bottom: 180 / 3043.8
  2666. }
  2667. },
  2668. back: {
  2669. height: math.unit(5, "feet"),
  2670. weight: math.unit(90, "kg"),
  2671. name: "Back",
  2672. image: {
  2673. source: "./media/characters/fory/back.svg",
  2674. extra: 2962 / 2791,
  2675. bottom: 106 / 3071.8
  2676. }
  2677. },
  2678. foot: {
  2679. height: math.unit(2.14, "feet"),
  2680. name: "Foot",
  2681. image: {
  2682. source: "./media/characters/fory/foot.svg"
  2683. }
  2684. },
  2685. },
  2686. [
  2687. {
  2688. name: "Normal",
  2689. height: math.unit(5, "feet")
  2690. },
  2691. {
  2692. name: "Macro",
  2693. height: math.unit(50, "feet"),
  2694. default: true
  2695. },
  2696. {
  2697. name: "Megamacro",
  2698. height: math.unit(10, "miles")
  2699. },
  2700. {
  2701. name: "Gigamacro",
  2702. height: math.unit(5, "earths")
  2703. },
  2704. ]
  2705. ))
  2706. characterMakers.push(() => makeCharacter(
  2707. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2708. {
  2709. front: {
  2710. height: math.unit(7, "feet"),
  2711. weight: math.unit(90, "kg"),
  2712. name: "Front",
  2713. image: {
  2714. source: "./media/characters/kurrikage/front.svg",
  2715. extra: 1,
  2716. bottom: 0.035
  2717. }
  2718. },
  2719. back: {
  2720. height: math.unit(7, "feet"),
  2721. weight: math.unit(90, "lb"),
  2722. name: "Back",
  2723. image: {
  2724. source: "./media/characters/kurrikage/back.svg"
  2725. }
  2726. },
  2727. paw: {
  2728. height: math.unit(1.5, "feet"),
  2729. name: "Paw",
  2730. image: {
  2731. source: "./media/characters/kurrikage/paw.svg"
  2732. }
  2733. },
  2734. staff: {
  2735. height: math.unit(6.7, "feet"),
  2736. name: "Staff",
  2737. image: {
  2738. source: "./media/characters/kurrikage/staff.svg"
  2739. }
  2740. },
  2741. peek: {
  2742. height: math.unit(1.05, "feet"),
  2743. name: "Peeking",
  2744. image: {
  2745. source: "./media/characters/kurrikage/peek.svg",
  2746. bottom: 0.08
  2747. }
  2748. },
  2749. },
  2750. [
  2751. {
  2752. name: "Normal",
  2753. height: math.unit(12, "feet"),
  2754. default: true
  2755. },
  2756. {
  2757. name: "Big",
  2758. height: math.unit(20, "feet")
  2759. },
  2760. {
  2761. name: "Macro",
  2762. height: math.unit(500, "feet")
  2763. },
  2764. {
  2765. name: "Megamacro",
  2766. height: math.unit(20, "miles")
  2767. },
  2768. ]
  2769. ))
  2770. characterMakers.push(() => makeCharacter(
  2771. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2772. {
  2773. front: {
  2774. height: math.unit(6, "feet"),
  2775. weight: math.unit(75, "kg"),
  2776. name: "Front",
  2777. image: {
  2778. source: "./media/characters/shingo/front.svg",
  2779. extra: 1900/1825,
  2780. bottom: 82/1982
  2781. }
  2782. },
  2783. side: {
  2784. height: math.unit(6, "feet"),
  2785. weight: math.unit(75, "kg"),
  2786. name: "Side",
  2787. image: {
  2788. source: "./media/characters/shingo/side.svg",
  2789. extra: 1930/1865,
  2790. bottom: 16/1946
  2791. }
  2792. },
  2793. back: {
  2794. height: math.unit(6, "feet"),
  2795. weight: math.unit(75, "kg"),
  2796. name: "Back",
  2797. image: {
  2798. source: "./media/characters/shingo/back.svg",
  2799. extra: 1922/1852,
  2800. bottom: 16/1938
  2801. }
  2802. },
  2803. frontDressed: {
  2804. height: math.unit(6, "feet"),
  2805. weight: math.unit(150, "lb"),
  2806. name: "Front-dressed",
  2807. image: {
  2808. source: "./media/characters/shingo/front-dressed.svg",
  2809. extra: 1900/1825,
  2810. bottom: 82/1982
  2811. }
  2812. },
  2813. paw: {
  2814. height: math.unit(1.29, "feet"),
  2815. name: "Paw",
  2816. image: {
  2817. source: "./media/characters/shingo/paw.svg"
  2818. }
  2819. },
  2820. hand: {
  2821. height: math.unit(1.07, "feet"),
  2822. name: "Hand",
  2823. image: {
  2824. source: "./media/characters/shingo/hand.svg"
  2825. }
  2826. },
  2827. frontAlt: {
  2828. height: math.unit(6, "feet"),
  2829. weight: math.unit(75, "kg"),
  2830. name: "Front (Alt)",
  2831. image: {
  2832. source: "./media/characters/shingo/front-alt.svg",
  2833. extra: 3511 / 3338,
  2834. bottom: 0.005
  2835. }
  2836. },
  2837. frontAlt2: {
  2838. height: math.unit(6, "feet"),
  2839. weight: math.unit(75, "kg"),
  2840. name: "Front (Alt 2)",
  2841. image: {
  2842. source: "./media/characters/shingo/front-alt-2.svg",
  2843. extra: 706/681,
  2844. bottom: 11/717
  2845. }
  2846. },
  2847. pawAlt: {
  2848. height: math.unit(1, "feet"),
  2849. name: "Paw (Alt)",
  2850. image: {
  2851. source: "./media/characters/shingo/paw-alt.svg"
  2852. }
  2853. },
  2854. },
  2855. [
  2856. {
  2857. name: "Micro",
  2858. height: math.unit(4, "inches")
  2859. },
  2860. {
  2861. name: "Normal",
  2862. height: math.unit(6, "feet"),
  2863. default: true
  2864. },
  2865. {
  2866. name: "Macro",
  2867. height: math.unit(108, "feet")
  2868. },
  2869. {
  2870. name: "Macro+",
  2871. height: math.unit(1500, "feet")
  2872. },
  2873. ]
  2874. ))
  2875. characterMakers.push(() => makeCharacter(
  2876. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2877. {
  2878. side: {
  2879. height: math.unit(6, "feet"),
  2880. weight: math.unit(75, "kg"),
  2881. name: "Side",
  2882. image: {
  2883. source: "./media/characters/aigey/side.svg"
  2884. }
  2885. },
  2886. },
  2887. [
  2888. {
  2889. name: "Macro",
  2890. height: math.unit(200, "feet"),
  2891. default: true
  2892. },
  2893. {
  2894. name: "Megamacro",
  2895. height: math.unit(100, "miles")
  2896. },
  2897. ]
  2898. )
  2899. )
  2900. characterMakers.push(() => makeCharacter(
  2901. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2902. {
  2903. front: {
  2904. height: math.unit(5 + 5 / 12, "feet"),
  2905. weight: math.unit(75, "kg"),
  2906. name: "Front",
  2907. image: {
  2908. source: "./media/characters/natasha/front.svg",
  2909. extra: 859 / 824,
  2910. bottom: 23 / 879.6
  2911. }
  2912. },
  2913. frontNsfw: {
  2914. height: math.unit(5 + 5 / 12, "feet"),
  2915. weight: math.unit(75, "kg"),
  2916. name: "Front (NSFW)",
  2917. image: {
  2918. source: "./media/characters/natasha/front-nsfw.svg",
  2919. extra: 859 / 824,
  2920. bottom: 23 / 879.6
  2921. }
  2922. },
  2923. frontErect: {
  2924. height: math.unit(5 + 5 / 12, "feet"),
  2925. weight: math.unit(75, "kg"),
  2926. name: "Front (Erect)",
  2927. image: {
  2928. source: "./media/characters/natasha/front-erect.svg",
  2929. extra: 859 / 824,
  2930. bottom: 23 / 879.6
  2931. }
  2932. },
  2933. back: {
  2934. height: math.unit(5 + 5 / 12, "feet"),
  2935. weight: math.unit(75, "kg"),
  2936. name: "Back",
  2937. image: {
  2938. source: "./media/characters/natasha/back.svg",
  2939. extra: 887.9 / 852.6,
  2940. bottom: 9.7 / 896.4
  2941. }
  2942. },
  2943. backAlt: {
  2944. height: math.unit(5 + 5 / 12, "feet"),
  2945. weight: math.unit(75, "kg"),
  2946. name: "Back (Alt)",
  2947. image: {
  2948. source: "./media/characters/natasha/back-alt.svg",
  2949. extra: 1236.7 / 1192,
  2950. bottom: 22.3 / 1258.2
  2951. }
  2952. },
  2953. dick: {
  2954. height: math.unit(1.772, "feet"),
  2955. name: "Dick",
  2956. image: {
  2957. source: "./media/characters/natasha/dick.svg"
  2958. }
  2959. },
  2960. paw: {
  2961. height: math.unit(0.250, "meters"),
  2962. name: "Paw",
  2963. image: {
  2964. source: "./media/characters/natasha/paw.svg"
  2965. }
  2966. },
  2967. },
  2968. [
  2969. {
  2970. name: "Normal",
  2971. height: math.unit(5 + 5 / 12, "feet")
  2972. },
  2973. {
  2974. name: "Large",
  2975. height: math.unit(12, "feet")
  2976. },
  2977. {
  2978. name: "Macro",
  2979. height: math.unit(100, "feet"),
  2980. default: true
  2981. },
  2982. {
  2983. name: "Macro+",
  2984. height: math.unit(260, "feet")
  2985. },
  2986. {
  2987. name: "Macro++",
  2988. height: math.unit(1, "mile")
  2989. },
  2990. ]
  2991. ))
  2992. characterMakers.push(() => makeCharacter(
  2993. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2994. {
  2995. front: {
  2996. height: math.unit(6, "feet"),
  2997. weight: math.unit(75, "kg"),
  2998. name: "Front",
  2999. image: {
  3000. source: "./media/characters/malik/front.svg"
  3001. }
  3002. },
  3003. side: {
  3004. height: math.unit(6, "feet"),
  3005. weight: math.unit(75, "kg"),
  3006. name: "Side",
  3007. image: {
  3008. source: "./media/characters/malik/side.svg",
  3009. extra: 1.1539
  3010. }
  3011. },
  3012. back: {
  3013. height: math.unit(6, "feet"),
  3014. weight: math.unit(75, "kg"),
  3015. name: "Back",
  3016. image: {
  3017. source: "./media/characters/malik/back.svg"
  3018. }
  3019. },
  3020. },
  3021. [
  3022. {
  3023. name: "Macro",
  3024. height: math.unit(156, "feet"),
  3025. default: true
  3026. },
  3027. {
  3028. name: "Macro+",
  3029. height: math.unit(1188, "feet")
  3030. },
  3031. ]
  3032. ))
  3033. characterMakers.push(() => makeCharacter(
  3034. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3035. {
  3036. front: {
  3037. height: math.unit(6, "feet"),
  3038. weight: math.unit(75, "kg"),
  3039. name: "Front",
  3040. image: {
  3041. source: "./media/characters/sefer/front.svg",
  3042. extra: 848 / 659,
  3043. bottom: 28.3 / 876.442
  3044. }
  3045. },
  3046. back: {
  3047. height: math.unit(6, "feet"),
  3048. weight: math.unit(75, "kg"),
  3049. name: "Back",
  3050. image: {
  3051. source: "./media/characters/sefer/back.svg",
  3052. extra: 864 / 695,
  3053. bottom: 10 / 871
  3054. }
  3055. },
  3056. frontDressed: {
  3057. height: math.unit(6, "feet"),
  3058. weight: math.unit(75, "kg"),
  3059. name: "Front (Dressed)",
  3060. image: {
  3061. source: "./media/characters/sefer/front-dressed.svg",
  3062. extra: 839 / 653,
  3063. bottom: 37.6 / 878
  3064. }
  3065. },
  3066. },
  3067. [
  3068. {
  3069. name: "Normal",
  3070. height: math.unit(6, "feet"),
  3071. default: true
  3072. },
  3073. ]
  3074. ))
  3075. characterMakers.push(() => makeCharacter(
  3076. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3077. {
  3078. body: {
  3079. height: math.unit(2.2428, "meter"),
  3080. weight: math.unit(124.738, "kg"),
  3081. name: "Body",
  3082. image: {
  3083. extra: 1225 / 1050,
  3084. source: "./media/characters/north/front.svg"
  3085. }
  3086. }
  3087. },
  3088. [
  3089. {
  3090. name: "Micro",
  3091. height: math.unit(4, "inches")
  3092. },
  3093. {
  3094. name: "Macro",
  3095. height: math.unit(63, "meters")
  3096. },
  3097. {
  3098. name: "Megamacro",
  3099. height: math.unit(101, "miles"),
  3100. default: true
  3101. }
  3102. ]
  3103. ))
  3104. characterMakers.push(() => makeCharacter(
  3105. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3106. {
  3107. angled: {
  3108. height: math.unit(4, "meter"),
  3109. weight: math.unit(150, "kg"),
  3110. name: "Angled",
  3111. image: {
  3112. source: "./media/characters/talan/angled-sfw.svg",
  3113. bottom: 29 / 3734
  3114. }
  3115. },
  3116. angledNsfw: {
  3117. height: math.unit(4, "meter"),
  3118. weight: math.unit(150, "kg"),
  3119. name: "Angled (NSFW)",
  3120. image: {
  3121. source: "./media/characters/talan/angled-nsfw.svg",
  3122. bottom: 29 / 3734
  3123. }
  3124. },
  3125. frontNsfw: {
  3126. height: math.unit(4, "meter"),
  3127. weight: math.unit(150, "kg"),
  3128. name: "Front (NSFW)",
  3129. image: {
  3130. source: "./media/characters/talan/front-nsfw.svg",
  3131. bottom: 29 / 3734
  3132. }
  3133. },
  3134. sideNsfw: {
  3135. height: math.unit(4, "meter"),
  3136. weight: math.unit(150, "kg"),
  3137. name: "Side (NSFW)",
  3138. image: {
  3139. source: "./media/characters/talan/side-nsfw.svg",
  3140. bottom: 29 / 3734
  3141. }
  3142. },
  3143. back: {
  3144. height: math.unit(4, "meter"),
  3145. weight: math.unit(150, "kg"),
  3146. name: "Back",
  3147. image: {
  3148. source: "./media/characters/talan/back.svg"
  3149. }
  3150. },
  3151. dickBottom: {
  3152. height: math.unit(0.621, "meter"),
  3153. name: "Dick (Bottom)",
  3154. image: {
  3155. source: "./media/characters/talan/dick-bottom.svg"
  3156. }
  3157. },
  3158. dickTop: {
  3159. height: math.unit(0.621, "meter"),
  3160. name: "Dick (Top)",
  3161. image: {
  3162. source: "./media/characters/talan/dick-top.svg"
  3163. }
  3164. },
  3165. dickSide: {
  3166. height: math.unit(0.305, "meter"),
  3167. name: "Dick (Side)",
  3168. image: {
  3169. source: "./media/characters/talan/dick-side.svg"
  3170. }
  3171. },
  3172. dickFront: {
  3173. height: math.unit(0.305, "meter"),
  3174. name: "Dick (Front)",
  3175. image: {
  3176. source: "./media/characters/talan/dick-front.svg"
  3177. }
  3178. },
  3179. },
  3180. [
  3181. {
  3182. name: "Normal",
  3183. height: math.unit(4, "meters")
  3184. },
  3185. {
  3186. name: "Macro",
  3187. height: math.unit(100, "meters")
  3188. },
  3189. {
  3190. name: "Megamacro",
  3191. height: math.unit(2, "miles"),
  3192. default: true
  3193. },
  3194. {
  3195. name: "Gigamacro",
  3196. height: math.unit(5000, "miles")
  3197. },
  3198. {
  3199. name: "Teramacro",
  3200. height: math.unit(100, "parsecs")
  3201. }
  3202. ]
  3203. ))
  3204. characterMakers.push(() => makeCharacter(
  3205. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3206. {
  3207. front: {
  3208. height: math.unit(2, "meter"),
  3209. weight: math.unit(90, "kg"),
  3210. name: "Front",
  3211. image: {
  3212. source: "./media/characters/gael'rathus/front.svg"
  3213. }
  3214. },
  3215. frontAlt: {
  3216. height: math.unit(2, "meter"),
  3217. weight: math.unit(90, "kg"),
  3218. name: "Front (alt)",
  3219. image: {
  3220. source: "./media/characters/gael'rathus/front-alt.svg"
  3221. }
  3222. },
  3223. frontAlt2: {
  3224. height: math.unit(2, "meter"),
  3225. weight: math.unit(90, "kg"),
  3226. name: "Front (alt 2)",
  3227. image: {
  3228. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3229. }
  3230. }
  3231. },
  3232. [
  3233. {
  3234. name: "Normal",
  3235. height: math.unit(9, "feet"),
  3236. default: true
  3237. },
  3238. {
  3239. name: "Large",
  3240. height: math.unit(25, "feet")
  3241. },
  3242. {
  3243. name: "Macro",
  3244. height: math.unit(0.25, "miles")
  3245. },
  3246. {
  3247. name: "Megamacro",
  3248. height: math.unit(10, "miles")
  3249. }
  3250. ]
  3251. ))
  3252. characterMakers.push(() => makeCharacter(
  3253. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3254. {
  3255. side: {
  3256. height: math.unit(2, "meter"),
  3257. weight: math.unit(140, "kg"),
  3258. name: "Side",
  3259. image: {
  3260. source: "./media/characters/sosha/side.svg",
  3261. bottom: 0.042
  3262. }
  3263. },
  3264. },
  3265. [
  3266. {
  3267. name: "Normal",
  3268. height: math.unit(12, "feet"),
  3269. default: true
  3270. }
  3271. ]
  3272. ))
  3273. characterMakers.push(() => makeCharacter(
  3274. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3275. {
  3276. side: {
  3277. height: math.unit(5 + 5 / 12, "feet"),
  3278. weight: math.unit(170, "kg"),
  3279. name: "Side",
  3280. image: {
  3281. source: "./media/characters/runnola/side.svg",
  3282. extra: 741 / 448,
  3283. bottom: 0.05
  3284. }
  3285. },
  3286. },
  3287. [
  3288. {
  3289. name: "Small",
  3290. height: math.unit(3, "feet")
  3291. },
  3292. {
  3293. name: "Normal",
  3294. height: math.unit(5 + 5 / 12, "feet"),
  3295. default: true
  3296. },
  3297. {
  3298. name: "Big",
  3299. height: math.unit(10, "feet")
  3300. },
  3301. ]
  3302. ))
  3303. characterMakers.push(() => makeCharacter(
  3304. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3305. {
  3306. front: {
  3307. height: math.unit(2, "meter"),
  3308. weight: math.unit(50, "kg"),
  3309. name: "Front",
  3310. image: {
  3311. source: "./media/characters/kurribird/front.svg",
  3312. bottom: 0.015
  3313. }
  3314. },
  3315. frontAlt: {
  3316. height: math.unit(1.5, "meter"),
  3317. weight: math.unit(50, "kg"),
  3318. name: "Front (Alt)",
  3319. image: {
  3320. source: "./media/characters/kurribird/front-alt.svg",
  3321. extra: 1.45
  3322. }
  3323. },
  3324. },
  3325. [
  3326. {
  3327. name: "Normal",
  3328. height: math.unit(7, "feet")
  3329. },
  3330. {
  3331. name: "Big",
  3332. height: math.unit(12, "feet"),
  3333. default: true
  3334. },
  3335. {
  3336. name: "Macro",
  3337. height: math.unit(1500, "feet")
  3338. },
  3339. {
  3340. name: "Megamacro",
  3341. height: math.unit(2, "miles")
  3342. }
  3343. ]
  3344. ))
  3345. characterMakers.push(() => makeCharacter(
  3346. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3347. {
  3348. front: {
  3349. height: math.unit(2, "meter"),
  3350. weight: math.unit(80, "kg"),
  3351. name: "Front",
  3352. image: {
  3353. source: "./media/characters/elbial/front.svg",
  3354. extra: 1643 / 1556,
  3355. bottom: 60.2 / 1696
  3356. }
  3357. },
  3358. side: {
  3359. height: math.unit(2, "meter"),
  3360. weight: math.unit(80, "kg"),
  3361. name: "Side",
  3362. image: {
  3363. source: "./media/characters/elbial/side.svg",
  3364. extra: 1630 / 1565,
  3365. bottom: 71.5 / 1697
  3366. }
  3367. },
  3368. back: {
  3369. height: math.unit(2, "meter"),
  3370. weight: math.unit(80, "kg"),
  3371. name: "Back",
  3372. image: {
  3373. source: "./media/characters/elbial/back.svg",
  3374. extra: 1668 / 1595,
  3375. bottom: 5.6 / 1672
  3376. }
  3377. },
  3378. frontDressed: {
  3379. height: math.unit(2, "meter"),
  3380. weight: math.unit(80, "kg"),
  3381. name: "Front (Dressed)",
  3382. image: {
  3383. source: "./media/characters/elbial/front-dressed.svg",
  3384. extra: 1653 / 1584,
  3385. bottom: 57 / 1708
  3386. }
  3387. },
  3388. genitals: {
  3389. height: math.unit(2 / 3.367, "meter"),
  3390. name: "Genitals",
  3391. image: {
  3392. source: "./media/characters/elbial/genitals.svg"
  3393. }
  3394. },
  3395. },
  3396. [
  3397. {
  3398. name: "Large",
  3399. height: math.unit(100, "feet")
  3400. },
  3401. {
  3402. name: "Macro",
  3403. height: math.unit(500, "feet"),
  3404. default: true
  3405. },
  3406. {
  3407. name: "Megamacro",
  3408. height: math.unit(10, "miles")
  3409. },
  3410. {
  3411. name: "Gigamacro",
  3412. height: math.unit(25000, "miles")
  3413. },
  3414. {
  3415. name: "Full-Size",
  3416. height: math.unit(8000000, "gigaparsecs")
  3417. }
  3418. ]
  3419. ))
  3420. characterMakers.push(() => makeCharacter(
  3421. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3422. {
  3423. front: {
  3424. height: math.unit(2, "meter"),
  3425. weight: math.unit(60, "kg"),
  3426. name: "Front",
  3427. image: {
  3428. source: "./media/characters/noah/front.svg"
  3429. }
  3430. },
  3431. talons: {
  3432. height: math.unit(0.315, "meter"),
  3433. name: "Talons",
  3434. image: {
  3435. source: "./media/characters/noah/talons.svg"
  3436. }
  3437. }
  3438. },
  3439. [
  3440. {
  3441. name: "Large",
  3442. height: math.unit(50, "feet")
  3443. },
  3444. {
  3445. name: "Macro",
  3446. height: math.unit(750, "feet"),
  3447. default: true
  3448. },
  3449. {
  3450. name: "Megamacro",
  3451. height: math.unit(50, "miles")
  3452. },
  3453. {
  3454. name: "Gigamacro",
  3455. height: math.unit(100000, "miles")
  3456. },
  3457. {
  3458. name: "Full-Size",
  3459. height: math.unit(3000000000, "miles")
  3460. }
  3461. ]
  3462. ))
  3463. characterMakers.push(() => makeCharacter(
  3464. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3465. {
  3466. front: {
  3467. height: math.unit(2, "meter"),
  3468. weight: math.unit(80, "kg"),
  3469. name: "Front",
  3470. image: {
  3471. source: "./media/characters/natalya/front.svg"
  3472. }
  3473. },
  3474. back: {
  3475. height: math.unit(2, "meter"),
  3476. weight: math.unit(80, "kg"),
  3477. name: "Back",
  3478. image: {
  3479. source: "./media/characters/natalya/back.svg"
  3480. }
  3481. }
  3482. },
  3483. [
  3484. {
  3485. name: "Normal",
  3486. height: math.unit(150, "feet"),
  3487. default: true
  3488. },
  3489. {
  3490. name: "Megamacro",
  3491. height: math.unit(5, "miles")
  3492. },
  3493. {
  3494. name: "Full-Size",
  3495. height: math.unit(600, "kiloparsecs")
  3496. }
  3497. ]
  3498. ))
  3499. characterMakers.push(() => makeCharacter(
  3500. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3501. {
  3502. front: {
  3503. height: math.unit(2, "meter"),
  3504. weight: math.unit(50, "kg"),
  3505. name: "Front",
  3506. image: {
  3507. source: "./media/characters/erestrebah/front.svg",
  3508. extra: 208 / 193,
  3509. bottom: 0.055
  3510. }
  3511. },
  3512. back: {
  3513. height: math.unit(2, "meter"),
  3514. weight: math.unit(50, "kg"),
  3515. name: "Back",
  3516. image: {
  3517. source: "./media/characters/erestrebah/back.svg",
  3518. extra: 1.3
  3519. }
  3520. }
  3521. },
  3522. [
  3523. {
  3524. name: "Normal",
  3525. height: math.unit(10, "feet")
  3526. },
  3527. {
  3528. name: "Large",
  3529. height: math.unit(50, "feet"),
  3530. default: true
  3531. },
  3532. {
  3533. name: "Macro",
  3534. height: math.unit(300, "feet")
  3535. },
  3536. {
  3537. name: "Macro+",
  3538. height: math.unit(750, "feet")
  3539. },
  3540. {
  3541. name: "Megamacro",
  3542. height: math.unit(3, "miles")
  3543. }
  3544. ]
  3545. ))
  3546. characterMakers.push(() => makeCharacter(
  3547. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3548. {
  3549. front: {
  3550. height: math.unit(2, "meter"),
  3551. weight: math.unit(80, "kg"),
  3552. name: "Front",
  3553. image: {
  3554. source: "./media/characters/jennifer/front.svg",
  3555. bottom: 0.11,
  3556. extra: 1.16
  3557. }
  3558. },
  3559. frontAlt: {
  3560. height: math.unit(2, "meter"),
  3561. weight: math.unit(80, "kg"),
  3562. name: "Front (Alt)",
  3563. image: {
  3564. source: "./media/characters/jennifer/front-alt.svg"
  3565. }
  3566. }
  3567. },
  3568. [
  3569. {
  3570. name: "Canon Height",
  3571. height: math.unit(120, "feet"),
  3572. default: true
  3573. },
  3574. {
  3575. name: "Macro+",
  3576. height: math.unit(300, "feet")
  3577. },
  3578. {
  3579. name: "Megamacro",
  3580. height: math.unit(20000, "feet")
  3581. }
  3582. ]
  3583. ))
  3584. characterMakers.push(() => makeCharacter(
  3585. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3586. {
  3587. front: {
  3588. height: math.unit(2, "meter"),
  3589. weight: math.unit(50, "kg"),
  3590. name: "Front",
  3591. image: {
  3592. source: "./media/characters/kalista/front.svg",
  3593. extra: 1947 / 1700,
  3594. bottom: 76.6 / 1412.98
  3595. }
  3596. },
  3597. back: {
  3598. height: math.unit(2, "meter"),
  3599. weight: math.unit(50, "kg"),
  3600. name: "Back",
  3601. image: {
  3602. source: "./media/characters/kalista/back.svg",
  3603. extra: 1366 / 1156,
  3604. bottom: 33.9 / 1362.78
  3605. }
  3606. }
  3607. },
  3608. [
  3609. {
  3610. name: "Uncomfortably Small",
  3611. height: math.unit(10, "feet")
  3612. },
  3613. {
  3614. name: "Small",
  3615. height: math.unit(30, "feet")
  3616. },
  3617. {
  3618. name: "Macro",
  3619. height: math.unit(100, "feet"),
  3620. default: true
  3621. },
  3622. {
  3623. name: "Macro+",
  3624. height: math.unit(2000, "feet")
  3625. },
  3626. {
  3627. name: "True Form",
  3628. height: math.unit(8924, "miles")
  3629. }
  3630. ]
  3631. ))
  3632. characterMakers.push(() => makeCharacter(
  3633. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3634. {
  3635. front: {
  3636. height: math.unit(2, "meter"),
  3637. weight: math.unit(120, "kg"),
  3638. name: "Front",
  3639. image: {
  3640. source: "./media/characters/ggv/front.svg"
  3641. }
  3642. },
  3643. side: {
  3644. height: math.unit(2, "meter"),
  3645. weight: math.unit(120, "kg"),
  3646. name: "Side",
  3647. image: {
  3648. source: "./media/characters/ggv/side.svg"
  3649. }
  3650. }
  3651. },
  3652. [
  3653. {
  3654. name: "Extremely Puny",
  3655. height: math.unit(9 + 5 / 12, "feet")
  3656. },
  3657. {
  3658. name: "Horribly Small",
  3659. height: math.unit(47.7, "miles"),
  3660. default: true
  3661. },
  3662. {
  3663. name: "Reasonably Sized",
  3664. height: math.unit(25000, "parsecs")
  3665. },
  3666. {
  3667. name: "Slightly Uncompressed",
  3668. height: math.unit(7.77e31, "parsecs")
  3669. },
  3670. {
  3671. name: "Omniversal",
  3672. height: math.unit(1e300, "meters")
  3673. },
  3674. ]
  3675. ))
  3676. characterMakers.push(() => makeCharacter(
  3677. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3678. {
  3679. front: {
  3680. height: math.unit(2, "meter"),
  3681. weight: math.unit(75, "lb"),
  3682. name: "Front",
  3683. image: {
  3684. source: "./media/characters/napalm/front.svg"
  3685. }
  3686. },
  3687. back: {
  3688. height: math.unit(2, "meter"),
  3689. weight: math.unit(75, "lb"),
  3690. name: "Back",
  3691. image: {
  3692. source: "./media/characters/napalm/back.svg"
  3693. }
  3694. }
  3695. },
  3696. [
  3697. {
  3698. name: "Standard",
  3699. height: math.unit(55, "feet"),
  3700. default: true
  3701. }
  3702. ]
  3703. ))
  3704. characterMakers.push(() => makeCharacter(
  3705. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3706. {
  3707. front: {
  3708. height: math.unit(7 + 5 / 6, "feet"),
  3709. weight: math.unit(325, "lb"),
  3710. name: "Front",
  3711. image: {
  3712. source: "./media/characters/asana/front.svg",
  3713. extra: 1133 / 1060,
  3714. bottom: 15.2 / 1148.6
  3715. }
  3716. },
  3717. back: {
  3718. height: math.unit(7 + 5 / 6, "feet"),
  3719. weight: math.unit(325, "lb"),
  3720. name: "Back",
  3721. image: {
  3722. source: "./media/characters/asana/back.svg",
  3723. extra: 1114 / 1043,
  3724. bottom: 5 / 1120
  3725. }
  3726. },
  3727. dressedDark: {
  3728. height: math.unit(7 + 5 / 6, "feet"),
  3729. weight: math.unit(325, "lb"),
  3730. name: "Dressed (Dark)",
  3731. image: {
  3732. source: "./media/characters/asana/dressed-dark.svg",
  3733. extra: 1133 / 1060,
  3734. bottom: 15.2 / 1148.6
  3735. }
  3736. },
  3737. dressedLight: {
  3738. height: math.unit(7 + 5 / 6, "feet"),
  3739. weight: math.unit(325, "lb"),
  3740. name: "Dressed (Light)",
  3741. image: {
  3742. source: "./media/characters/asana/dressed-light.svg",
  3743. extra: 1133 / 1060,
  3744. bottom: 15.2 / 1148.6
  3745. }
  3746. },
  3747. },
  3748. [
  3749. {
  3750. name: "Standard",
  3751. height: math.unit(7 + 5 / 6, "feet"),
  3752. default: true
  3753. },
  3754. {
  3755. name: "Large",
  3756. height: math.unit(10, "meters")
  3757. },
  3758. {
  3759. name: "Macro",
  3760. height: math.unit(2500, "meters")
  3761. },
  3762. {
  3763. name: "Megamacro",
  3764. height: math.unit(5e6, "meters")
  3765. },
  3766. {
  3767. name: "Examacro",
  3768. height: math.unit(5e12, "lightyears")
  3769. },
  3770. {
  3771. name: "Max Size",
  3772. height: math.unit(1e31, "lightyears")
  3773. }
  3774. ]
  3775. ))
  3776. characterMakers.push(() => makeCharacter(
  3777. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3778. {
  3779. front: {
  3780. height: math.unit(2, "meter"),
  3781. weight: math.unit(60, "kg"),
  3782. name: "Front",
  3783. image: {
  3784. source: "./media/characters/ebony/front.svg",
  3785. bottom: 0.03,
  3786. extra: 1045 / 810 + 0.03
  3787. }
  3788. },
  3789. side: {
  3790. height: math.unit(2, "meter"),
  3791. weight: math.unit(60, "kg"),
  3792. name: "Side",
  3793. image: {
  3794. source: "./media/characters/ebony/side.svg",
  3795. bottom: 0.03,
  3796. extra: 1045 / 810 + 0.03
  3797. }
  3798. },
  3799. back: {
  3800. height: math.unit(2, "meter"),
  3801. weight: math.unit(60, "kg"),
  3802. name: "Back",
  3803. image: {
  3804. source: "./media/characters/ebony/back.svg",
  3805. bottom: 0.01,
  3806. extra: 1045 / 810 + 0.01
  3807. }
  3808. },
  3809. },
  3810. [
  3811. // TODO check why I did this lol
  3812. {
  3813. name: "Standard",
  3814. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3815. default: true
  3816. },
  3817. {
  3818. name: "Macro",
  3819. height: math.unit(200, "feet")
  3820. },
  3821. {
  3822. name: "Gigamacro",
  3823. height: math.unit(13000, "km")
  3824. }
  3825. ]
  3826. ))
  3827. characterMakers.push(() => makeCharacter(
  3828. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3829. {
  3830. front: {
  3831. height: math.unit(6, "feet"),
  3832. weight: math.unit(175, "lb"),
  3833. name: "Front",
  3834. image: {
  3835. source: "./media/characters/mountain/front.svg",
  3836. extra: 972 / 955,
  3837. bottom: 64 / 1036.6
  3838. }
  3839. },
  3840. back: {
  3841. height: math.unit(6, "feet"),
  3842. weight: math.unit(175, "lb"),
  3843. name: "Back",
  3844. image: {
  3845. source: "./media/characters/mountain/back.svg",
  3846. extra: 970 / 950,
  3847. bottom: 28.25 / 999
  3848. }
  3849. },
  3850. },
  3851. [
  3852. {
  3853. name: "Large",
  3854. height: math.unit(20, "meters")
  3855. },
  3856. {
  3857. name: "Macro",
  3858. height: math.unit(300, "meters")
  3859. },
  3860. {
  3861. name: "Gigamacro",
  3862. height: math.unit(10000, "km"),
  3863. default: true
  3864. },
  3865. {
  3866. name: "Examacro",
  3867. height: math.unit(10e9, "lightyears")
  3868. }
  3869. ]
  3870. ))
  3871. characterMakers.push(() => makeCharacter(
  3872. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3873. {
  3874. front: {
  3875. height: math.unit(8, "feet"),
  3876. weight: math.unit(500, "lb"),
  3877. name: "Front",
  3878. image: {
  3879. source: "./media/characters/rick/front.svg"
  3880. }
  3881. }
  3882. },
  3883. [
  3884. {
  3885. name: "Normal",
  3886. height: math.unit(8, "feet"),
  3887. default: true
  3888. },
  3889. {
  3890. name: "Macro",
  3891. height: math.unit(5, "km")
  3892. }
  3893. ]
  3894. ))
  3895. characterMakers.push(() => makeCharacter(
  3896. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3897. {
  3898. front: {
  3899. height: math.unit(8, "feet"),
  3900. weight: math.unit(120, "lb"),
  3901. name: "Front",
  3902. image: {
  3903. source: "./media/characters/ona/front.svg"
  3904. }
  3905. },
  3906. frontAlt: {
  3907. height: math.unit(8, "feet"),
  3908. weight: math.unit(120, "lb"),
  3909. name: "Front (Alt)",
  3910. image: {
  3911. source: "./media/characters/ona/front-alt.svg"
  3912. }
  3913. },
  3914. back: {
  3915. height: math.unit(8, "feet"),
  3916. weight: math.unit(120, "lb"),
  3917. name: "Back",
  3918. image: {
  3919. source: "./media/characters/ona/back.svg"
  3920. }
  3921. },
  3922. foot: {
  3923. height: math.unit(1.1, "feet"),
  3924. name: "Foot",
  3925. image: {
  3926. source: "./media/characters/ona/foot.svg"
  3927. }
  3928. }
  3929. },
  3930. [
  3931. {
  3932. name: "Megamacro",
  3933. height: math.unit(70, "km"),
  3934. default: true
  3935. },
  3936. {
  3937. name: "Gigamacro",
  3938. height: math.unit(681818, "miles")
  3939. },
  3940. {
  3941. name: "Examacro",
  3942. height: math.unit(3800000, "lightyears")
  3943. },
  3944. ]
  3945. ))
  3946. characterMakers.push(() => makeCharacter(
  3947. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3948. {
  3949. front: {
  3950. height: math.unit(12, "feet"),
  3951. weight: math.unit(3000, "lb"),
  3952. name: "Front",
  3953. image: {
  3954. source: "./media/characters/mech/front.svg",
  3955. extra: 2900 / 2770,
  3956. bottom: 110 / 3010
  3957. }
  3958. },
  3959. back: {
  3960. height: math.unit(12, "feet"),
  3961. weight: math.unit(3000, "lb"),
  3962. name: "Back",
  3963. image: {
  3964. source: "./media/characters/mech/back.svg",
  3965. extra: 3011 / 2890,
  3966. bottom: 94 / 3105
  3967. }
  3968. },
  3969. maw: {
  3970. height: math.unit(3.07, "feet"),
  3971. name: "Maw",
  3972. image: {
  3973. source: "./media/characters/mech/maw.svg"
  3974. }
  3975. },
  3976. head: {
  3977. height: math.unit(2.82, "feet"),
  3978. name: "Head",
  3979. image: {
  3980. source: "./media/characters/mech/head.svg"
  3981. }
  3982. },
  3983. dick: {
  3984. height: math.unit(1.43, "feet"),
  3985. name: "Dick",
  3986. image: {
  3987. source: "./media/characters/mech/dick.svg"
  3988. }
  3989. },
  3990. },
  3991. [
  3992. {
  3993. name: "Normal",
  3994. height: math.unit(12, "feet")
  3995. },
  3996. {
  3997. name: "Macro",
  3998. height: math.unit(300, "feet"),
  3999. default: true
  4000. },
  4001. {
  4002. name: "Macro+",
  4003. height: math.unit(1500, "feet")
  4004. },
  4005. ]
  4006. ))
  4007. characterMakers.push(() => makeCharacter(
  4008. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4009. {
  4010. front: {
  4011. height: math.unit(1.3, "meter"),
  4012. weight: math.unit(30, "kg"),
  4013. name: "Front",
  4014. image: {
  4015. source: "./media/characters/gregory/front.svg",
  4016. }
  4017. }
  4018. },
  4019. [
  4020. {
  4021. name: "Normal",
  4022. height: math.unit(1.3, "meter"),
  4023. default: true
  4024. },
  4025. {
  4026. name: "Macro",
  4027. height: math.unit(20, "meter")
  4028. }
  4029. ]
  4030. ))
  4031. characterMakers.push(() => makeCharacter(
  4032. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4033. {
  4034. front: {
  4035. height: math.unit(2.8, "meter"),
  4036. weight: math.unit(200, "kg"),
  4037. name: "Front",
  4038. image: {
  4039. source: "./media/characters/elory/front.svg",
  4040. }
  4041. }
  4042. },
  4043. [
  4044. {
  4045. name: "Normal",
  4046. height: math.unit(2.8, "meter"),
  4047. default: true
  4048. },
  4049. {
  4050. name: "Macro",
  4051. height: math.unit(38, "meter")
  4052. }
  4053. ]
  4054. ))
  4055. characterMakers.push(() => makeCharacter(
  4056. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4057. {
  4058. front: {
  4059. height: math.unit(470, "feet"),
  4060. weight: math.unit(924, "tons"),
  4061. name: "Front",
  4062. image: {
  4063. source: "./media/characters/angelpatamon/front.svg",
  4064. }
  4065. }
  4066. },
  4067. [
  4068. {
  4069. name: "Normal",
  4070. height: math.unit(470, "feet"),
  4071. default: true
  4072. },
  4073. {
  4074. name: "Deity Size I",
  4075. height: math.unit(28651.2, "km")
  4076. },
  4077. {
  4078. name: "Deity Size II",
  4079. height: math.unit(171907.2, "km")
  4080. }
  4081. ]
  4082. ))
  4083. characterMakers.push(() => makeCharacter(
  4084. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4085. {
  4086. side: {
  4087. height: math.unit(7.2, "meter"),
  4088. weight: math.unit(8.2, "tons"),
  4089. name: "Side",
  4090. image: {
  4091. source: "./media/characters/cryae/side.svg",
  4092. extra: 3500 / 1500
  4093. }
  4094. }
  4095. },
  4096. [
  4097. {
  4098. name: "Normal",
  4099. height: math.unit(7.2, "meter"),
  4100. default: true
  4101. }
  4102. ]
  4103. ))
  4104. characterMakers.push(() => makeCharacter(
  4105. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4106. {
  4107. front: {
  4108. height: math.unit(6, "feet"),
  4109. weight: math.unit(175, "lb"),
  4110. name: "Front",
  4111. image: {
  4112. source: "./media/characters/xera/front.svg",
  4113. extra: 2377 / 1972,
  4114. bottom: 75.5 / 2452
  4115. }
  4116. },
  4117. side: {
  4118. height: math.unit(6, "feet"),
  4119. weight: math.unit(175, "lb"),
  4120. name: "Side",
  4121. image: {
  4122. source: "./media/characters/xera/side.svg",
  4123. extra: 2345 / 2019,
  4124. bottom: 39.7 / 2384
  4125. }
  4126. },
  4127. back: {
  4128. height: math.unit(6, "feet"),
  4129. weight: math.unit(175, "lb"),
  4130. name: "Back",
  4131. image: {
  4132. source: "./media/characters/xera/back.svg",
  4133. extra: 2095 / 1984,
  4134. bottom: 67 / 2166
  4135. }
  4136. },
  4137. },
  4138. [
  4139. {
  4140. name: "Small",
  4141. height: math.unit(10, "feet")
  4142. },
  4143. {
  4144. name: "Macro",
  4145. height: math.unit(500, "meters"),
  4146. default: true
  4147. },
  4148. {
  4149. name: "Macro+",
  4150. height: math.unit(10, "km")
  4151. },
  4152. {
  4153. name: "Gigamacro",
  4154. height: math.unit(25000, "km")
  4155. },
  4156. {
  4157. name: "Teramacro",
  4158. height: math.unit(3e6, "km")
  4159. }
  4160. ]
  4161. ))
  4162. characterMakers.push(() => makeCharacter(
  4163. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4164. {
  4165. front: {
  4166. height: math.unit(6, "feet"),
  4167. weight: math.unit(175, "lb"),
  4168. name: "Front",
  4169. image: {
  4170. source: "./media/characters/nebula/front.svg",
  4171. extra: 2566 / 2362,
  4172. bottom: 81 / 2644
  4173. }
  4174. }
  4175. },
  4176. [
  4177. {
  4178. name: "Small",
  4179. height: math.unit(4.5, "meters")
  4180. },
  4181. {
  4182. name: "Macro",
  4183. height: math.unit(1500, "meters"),
  4184. default: true
  4185. },
  4186. {
  4187. name: "Megamacro",
  4188. height: math.unit(150, "km")
  4189. },
  4190. {
  4191. name: "Gigamacro",
  4192. height: math.unit(27000, "km")
  4193. }
  4194. ]
  4195. ))
  4196. characterMakers.push(() => makeCharacter(
  4197. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4198. {
  4199. front: {
  4200. height: math.unit(6, "feet"),
  4201. weight: math.unit(225, "lb"),
  4202. name: "Front",
  4203. image: {
  4204. source: "./media/characters/abysgar/front.svg"
  4205. }
  4206. }
  4207. },
  4208. [
  4209. {
  4210. name: "Small",
  4211. height: math.unit(4.5, "meters")
  4212. },
  4213. {
  4214. name: "Macro",
  4215. height: math.unit(1250, "meters"),
  4216. default: true
  4217. },
  4218. {
  4219. name: "Megamacro",
  4220. height: math.unit(125, "km")
  4221. },
  4222. {
  4223. name: "Gigamacro",
  4224. height: math.unit(26000, "km")
  4225. }
  4226. ]
  4227. ))
  4228. characterMakers.push(() => makeCharacter(
  4229. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4230. {
  4231. front: {
  4232. height: math.unit(6, "feet"),
  4233. weight: math.unit(180, "lb"),
  4234. name: "Front",
  4235. image: {
  4236. source: "./media/characters/yakuz/front.svg"
  4237. }
  4238. }
  4239. },
  4240. [
  4241. {
  4242. name: "Small",
  4243. height: math.unit(5, "meters")
  4244. },
  4245. {
  4246. name: "Macro",
  4247. height: math.unit(1500, "meters"),
  4248. default: true
  4249. },
  4250. {
  4251. name: "Megamacro",
  4252. height: math.unit(200, "km")
  4253. },
  4254. {
  4255. name: "Gigamacro",
  4256. height: math.unit(100000, "km")
  4257. }
  4258. ]
  4259. ))
  4260. characterMakers.push(() => makeCharacter(
  4261. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4262. {
  4263. front: {
  4264. height: math.unit(6, "feet"),
  4265. weight: math.unit(175, "lb"),
  4266. name: "Front",
  4267. image: {
  4268. source: "./media/characters/mirova/front.svg",
  4269. extra: 3334 / 3071,
  4270. bottom: 42 / 3375.6
  4271. }
  4272. }
  4273. },
  4274. [
  4275. {
  4276. name: "Small",
  4277. height: math.unit(5, "meters")
  4278. },
  4279. {
  4280. name: "Macro",
  4281. height: math.unit(900, "meters"),
  4282. default: true
  4283. },
  4284. {
  4285. name: "Megamacro",
  4286. height: math.unit(135, "km")
  4287. },
  4288. {
  4289. name: "Gigamacro",
  4290. height: math.unit(20000, "km")
  4291. }
  4292. ]
  4293. ))
  4294. characterMakers.push(() => makeCharacter(
  4295. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4296. {
  4297. side: {
  4298. height: math.unit(28.35, "feet"),
  4299. weight: math.unit(99.75, "tons"),
  4300. name: "Side",
  4301. image: {
  4302. source: "./media/characters/asana-mech/side.svg",
  4303. extra: 923 / 699,
  4304. bottom: 50 / 975
  4305. }
  4306. },
  4307. chaingun: {
  4308. height: math.unit(7, "feet"),
  4309. weight: math.unit(2400, "lb"),
  4310. name: "Chaingun",
  4311. image: {
  4312. source: "./media/characters/asana-mech/chaingun.svg"
  4313. }
  4314. },
  4315. laser: {
  4316. height: math.unit(7.12, "feet"),
  4317. weight: math.unit(2000, "lb"),
  4318. name: "Laser",
  4319. image: {
  4320. source: "./media/characters/asana-mech/laser.svg"
  4321. }
  4322. },
  4323. },
  4324. [
  4325. {
  4326. name: "Normal",
  4327. height: math.unit(28.35, "feet"),
  4328. default: true
  4329. },
  4330. {
  4331. name: "Macro",
  4332. height: math.unit(2500, "feet")
  4333. },
  4334. {
  4335. name: "Megamacro",
  4336. height: math.unit(25, "miles")
  4337. },
  4338. {
  4339. name: "Examacro",
  4340. height: math.unit(6e8, "lightyears")
  4341. },
  4342. ]
  4343. ))
  4344. characterMakers.push(() => makeCharacter(
  4345. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4346. {
  4347. front: {
  4348. height: math.unit(5, "meters"),
  4349. weight: math.unit(1000, "kg"),
  4350. name: "Front",
  4351. image: {
  4352. source: "./media/characters/asche/front.svg",
  4353. extra: 1258 / 1190,
  4354. bottom: 47 / 1305
  4355. }
  4356. },
  4357. frontUnderwear: {
  4358. height: math.unit(5, "meters"),
  4359. weight: math.unit(1000, "kg"),
  4360. name: "Front (Underwear)",
  4361. image: {
  4362. source: "./media/characters/asche/front-underwear.svg",
  4363. extra: 1258 / 1190,
  4364. bottom: 47 / 1305
  4365. }
  4366. },
  4367. frontDressed: {
  4368. height: math.unit(5, "meters"),
  4369. weight: math.unit(1000, "kg"),
  4370. name: "Front (Dressed)",
  4371. image: {
  4372. source: "./media/characters/asche/front-dressed.svg",
  4373. extra: 1258 / 1190,
  4374. bottom: 47 / 1305
  4375. }
  4376. },
  4377. frontArmor: {
  4378. height: math.unit(5, "meters"),
  4379. weight: math.unit(1000, "kg"),
  4380. name: "Front (Armored)",
  4381. image: {
  4382. source: "./media/characters/asche/front-armored.svg",
  4383. extra: 1374 / 1308,
  4384. bottom: 23 / 1397
  4385. }
  4386. },
  4387. mp724: {
  4388. height: math.unit(0.96, "meters"),
  4389. weight: math.unit(38, "kg"),
  4390. name: "H&K MP724",
  4391. image: {
  4392. source: "./media/characters/asche/h&k-mp724.svg"
  4393. }
  4394. },
  4395. side: {
  4396. height: math.unit(5, "meters"),
  4397. weight: math.unit(1000, "kg"),
  4398. name: "Side",
  4399. image: {
  4400. source: "./media/characters/asche/side.svg",
  4401. extra: 1717 / 1609,
  4402. bottom: 0.005
  4403. }
  4404. },
  4405. back: {
  4406. height: math.unit(5, "meters"),
  4407. weight: math.unit(1000, "kg"),
  4408. name: "Back",
  4409. image: {
  4410. source: "./media/characters/asche/back.svg",
  4411. extra: 1570 / 1501
  4412. }
  4413. },
  4414. },
  4415. [
  4416. {
  4417. name: "DEFCON 5",
  4418. height: math.unit(5, "meters")
  4419. },
  4420. {
  4421. name: "DEFCON 4",
  4422. height: math.unit(500, "meters"),
  4423. default: true
  4424. },
  4425. {
  4426. name: "DEFCON 3",
  4427. height: math.unit(5, "km")
  4428. },
  4429. {
  4430. name: "DEFCON 2",
  4431. height: math.unit(500, "km")
  4432. },
  4433. {
  4434. name: "DEFCON 1",
  4435. height: math.unit(500000, "km")
  4436. },
  4437. {
  4438. name: "DEFCON 0",
  4439. height: math.unit(3, "gigaparsecs")
  4440. },
  4441. ]
  4442. ))
  4443. characterMakers.push(() => makeCharacter(
  4444. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4445. {
  4446. front: {
  4447. height: math.unit(2, "meters"),
  4448. weight: math.unit(76, "kg"),
  4449. name: "Front",
  4450. image: {
  4451. source: "./media/characters/gale/front.svg"
  4452. }
  4453. },
  4454. frontAlt1: {
  4455. height: math.unit(2, "meters"),
  4456. weight: math.unit(76, "kg"),
  4457. name: "Front (Alt 1)",
  4458. image: {
  4459. source: "./media/characters/gale/front-alt-1.svg"
  4460. }
  4461. },
  4462. frontAlt2: {
  4463. height: math.unit(2, "meters"),
  4464. weight: math.unit(76, "kg"),
  4465. name: "Front (Alt 2)",
  4466. image: {
  4467. source: "./media/characters/gale/front-alt-2.svg"
  4468. }
  4469. },
  4470. },
  4471. [
  4472. {
  4473. name: "Normal",
  4474. height: math.unit(7, "feet")
  4475. },
  4476. {
  4477. name: "Macro",
  4478. height: math.unit(150, "feet"),
  4479. default: true
  4480. },
  4481. {
  4482. name: "Macro+",
  4483. height: math.unit(300, "feet")
  4484. },
  4485. ]
  4486. ))
  4487. characterMakers.push(() => makeCharacter(
  4488. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4489. {
  4490. front: {
  4491. height: math.unit(2, "meters"),
  4492. weight: math.unit(76, "kg"),
  4493. name: "Front",
  4494. image: {
  4495. source: "./media/characters/draylen/front.svg"
  4496. }
  4497. }
  4498. },
  4499. [
  4500. {
  4501. name: "Macro",
  4502. height: math.unit(150, "feet"),
  4503. default: true
  4504. }
  4505. ]
  4506. ))
  4507. characterMakers.push(() => makeCharacter(
  4508. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4509. {
  4510. front: {
  4511. height: math.unit(7 + 9 / 12, "feet"),
  4512. weight: math.unit(379, "lbs"),
  4513. name: "Front",
  4514. image: {
  4515. source: "./media/characters/chez/front.svg"
  4516. }
  4517. },
  4518. side: {
  4519. height: math.unit(7 + 9 / 12, "feet"),
  4520. weight: math.unit(379, "lbs"),
  4521. name: "Side",
  4522. image: {
  4523. source: "./media/characters/chez/side.svg"
  4524. }
  4525. }
  4526. },
  4527. [
  4528. {
  4529. name: "Normal",
  4530. height: math.unit(7 + 9 / 12, "feet"),
  4531. default: true
  4532. },
  4533. {
  4534. name: "God King",
  4535. height: math.unit(9750000, "meters")
  4536. }
  4537. ]
  4538. ))
  4539. characterMakers.push(() => makeCharacter(
  4540. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4541. {
  4542. front: {
  4543. height: math.unit(6, "feet"),
  4544. weight: math.unit(275, "lbs"),
  4545. name: "Front",
  4546. image: {
  4547. source: "./media/characters/kaylum/front.svg",
  4548. bottom: 0.01,
  4549. extra: 1166 / 1031
  4550. }
  4551. },
  4552. frontWingless: {
  4553. height: math.unit(6, "feet"),
  4554. weight: math.unit(275, "lbs"),
  4555. name: "Front (Wingless)",
  4556. image: {
  4557. source: "./media/characters/kaylum/front-wingless.svg",
  4558. bottom: 0.01,
  4559. extra: 1117 / 1031
  4560. }
  4561. }
  4562. },
  4563. [
  4564. {
  4565. name: "Normal",
  4566. height: math.unit(3.05, "meters")
  4567. },
  4568. {
  4569. name: "Master",
  4570. height: math.unit(5.5, "meters")
  4571. },
  4572. {
  4573. name: "Rampage",
  4574. height: math.unit(19, "meters")
  4575. },
  4576. {
  4577. name: "Macro Lite",
  4578. height: math.unit(37, "meters")
  4579. },
  4580. {
  4581. name: "Hyper Predator",
  4582. height: math.unit(61, "meters")
  4583. },
  4584. {
  4585. name: "Macro",
  4586. height: math.unit(138, "meters"),
  4587. default: true
  4588. }
  4589. ]
  4590. ))
  4591. characterMakers.push(() => makeCharacter(
  4592. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4593. {
  4594. front: {
  4595. height: math.unit(6, "feet"),
  4596. weight: math.unit(150, "lbs"),
  4597. name: "Front",
  4598. image: {
  4599. source: "./media/characters/geta/front.svg"
  4600. }
  4601. }
  4602. },
  4603. [
  4604. {
  4605. name: "Micro",
  4606. height: math.unit(3, "inches"),
  4607. default: true
  4608. },
  4609. {
  4610. name: "Normal",
  4611. height: math.unit(5 + 5 / 12, "feet")
  4612. }
  4613. ]
  4614. ))
  4615. characterMakers.push(() => makeCharacter(
  4616. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4617. {
  4618. front: {
  4619. height: math.unit(6, "feet"),
  4620. weight: math.unit(300, "lbs"),
  4621. name: "Front",
  4622. image: {
  4623. source: "./media/characters/tyrnn/front.svg"
  4624. }
  4625. }
  4626. },
  4627. [
  4628. {
  4629. name: "Main Height",
  4630. height: math.unit(355, "feet"),
  4631. default: true
  4632. },
  4633. {
  4634. name: "Fave. Height",
  4635. height: math.unit(2400, "feet")
  4636. }
  4637. ]
  4638. ))
  4639. characterMakers.push(() => makeCharacter(
  4640. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4641. {
  4642. front: {
  4643. height: math.unit(6, "feet"),
  4644. weight: math.unit(300, "lbs"),
  4645. name: "Front",
  4646. image: {
  4647. source: "./media/characters/appledectomy/front.svg"
  4648. }
  4649. }
  4650. },
  4651. [
  4652. {
  4653. name: "Macro",
  4654. height: math.unit(2500, "feet")
  4655. },
  4656. {
  4657. name: "Megamacro",
  4658. height: math.unit(50, "miles"),
  4659. default: true
  4660. },
  4661. {
  4662. name: "Gigamacro",
  4663. height: math.unit(5000, "miles")
  4664. },
  4665. {
  4666. name: "Teramacro",
  4667. height: math.unit(250000, "miles")
  4668. },
  4669. ]
  4670. ))
  4671. characterMakers.push(() => makeCharacter(
  4672. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4673. {
  4674. front: {
  4675. height: math.unit(6, "feet"),
  4676. weight: math.unit(200, "lbs"),
  4677. name: "Front",
  4678. image: {
  4679. source: "./media/characters/vulpes/front.svg",
  4680. extra: 573 / 543,
  4681. bottom: 0.033
  4682. }
  4683. },
  4684. side: {
  4685. height: math.unit(6, "feet"),
  4686. weight: math.unit(200, "lbs"),
  4687. name: "Side",
  4688. image: {
  4689. source: "./media/characters/vulpes/side.svg",
  4690. extra: 577 / 549,
  4691. bottom: 11 / 588
  4692. }
  4693. },
  4694. back: {
  4695. height: math.unit(6, "feet"),
  4696. weight: math.unit(200, "lbs"),
  4697. name: "Back",
  4698. image: {
  4699. source: "./media/characters/vulpes/back.svg",
  4700. extra: 573 / 549,
  4701. bottom: 20 / 593
  4702. }
  4703. },
  4704. feet: {
  4705. height: math.unit(1.276, "feet"),
  4706. name: "Feet",
  4707. image: {
  4708. source: "./media/characters/vulpes/feet.svg"
  4709. }
  4710. },
  4711. maw: {
  4712. height: math.unit(1.18, "feet"),
  4713. name: "Maw",
  4714. image: {
  4715. source: "./media/characters/vulpes/maw.svg"
  4716. }
  4717. },
  4718. },
  4719. [
  4720. {
  4721. name: "Micro",
  4722. height: math.unit(2, "inches")
  4723. },
  4724. {
  4725. name: "Normal",
  4726. height: math.unit(6.3, "feet")
  4727. },
  4728. {
  4729. name: "Macro",
  4730. height: math.unit(850, "feet")
  4731. },
  4732. {
  4733. name: "Megamacro",
  4734. height: math.unit(7500, "feet"),
  4735. default: true
  4736. },
  4737. {
  4738. name: "Gigamacro",
  4739. height: math.unit(570000, "miles")
  4740. }
  4741. ]
  4742. ))
  4743. characterMakers.push(() => makeCharacter(
  4744. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4745. {
  4746. front: {
  4747. height: math.unit(6, "feet"),
  4748. weight: math.unit(210, "lbs"),
  4749. name: "Front",
  4750. image: {
  4751. source: "./media/characters/rain-fallen/front.svg"
  4752. }
  4753. },
  4754. side: {
  4755. height: math.unit(6, "feet"),
  4756. weight: math.unit(210, "lbs"),
  4757. name: "Side",
  4758. image: {
  4759. source: "./media/characters/rain-fallen/side.svg"
  4760. }
  4761. },
  4762. back: {
  4763. height: math.unit(6, "feet"),
  4764. weight: math.unit(210, "lbs"),
  4765. name: "Back",
  4766. image: {
  4767. source: "./media/characters/rain-fallen/back.svg"
  4768. }
  4769. },
  4770. feral: {
  4771. height: math.unit(9, "feet"),
  4772. weight: math.unit(700, "lbs"),
  4773. name: "Feral",
  4774. image: {
  4775. source: "./media/characters/rain-fallen/feral.svg"
  4776. }
  4777. },
  4778. },
  4779. [
  4780. {
  4781. name: "Meddling with Mortals",
  4782. height: math.unit(8 + 8/12, "feet")
  4783. },
  4784. {
  4785. name: "Normal",
  4786. height: math.unit(5, "meter")
  4787. },
  4788. {
  4789. name: "Macro",
  4790. height: math.unit(150, "meter"),
  4791. default: true
  4792. },
  4793. {
  4794. name: "Megamacro",
  4795. height: math.unit(278e6, "meter")
  4796. },
  4797. {
  4798. name: "Gigamacro",
  4799. height: math.unit(2e9, "meter")
  4800. },
  4801. {
  4802. name: "Teramacro",
  4803. height: math.unit(8e12, "meter")
  4804. },
  4805. {
  4806. name: "Devourer",
  4807. height: math.unit(14, "zettameters")
  4808. },
  4809. {
  4810. name: "Scarlet King",
  4811. height: math.unit(18, "yottameters")
  4812. },
  4813. {
  4814. name: "Void",
  4815. height: math.unit(1e88, "yottameters")
  4816. }
  4817. ]
  4818. ))
  4819. characterMakers.push(() => makeCharacter(
  4820. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4821. {
  4822. standing: {
  4823. height: math.unit(6, "feet"),
  4824. weight: math.unit(180, "lbs"),
  4825. name: "Standing",
  4826. image: {
  4827. source: "./media/characters/zaakira/standing.svg",
  4828. extra: 1599/1504,
  4829. bottom: 39/1638
  4830. }
  4831. },
  4832. laying: {
  4833. height: math.unit(3, "feet"),
  4834. weight: math.unit(180, "lbs"),
  4835. name: "Laying",
  4836. image: {
  4837. source: "./media/characters/zaakira/laying.svg"
  4838. }
  4839. },
  4840. },
  4841. [
  4842. {
  4843. name: "Normal",
  4844. height: math.unit(12, "feet")
  4845. },
  4846. {
  4847. name: "Macro",
  4848. height: math.unit(279, "feet"),
  4849. default: true
  4850. }
  4851. ]
  4852. ))
  4853. characterMakers.push(() => makeCharacter(
  4854. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4855. {
  4856. femSfw: {
  4857. height: math.unit(8, "feet"),
  4858. weight: math.unit(350, "lb"),
  4859. name: "Fem",
  4860. image: {
  4861. source: "./media/characters/sigvald/fem-sfw.svg",
  4862. extra: 182 / 164,
  4863. bottom: 8.7 / 190.5
  4864. }
  4865. },
  4866. femNsfw: {
  4867. height: math.unit(8, "feet"),
  4868. weight: math.unit(350, "lb"),
  4869. name: "Fem (NSFW)",
  4870. image: {
  4871. source: "./media/characters/sigvald/fem-nsfw.svg",
  4872. extra: 182 / 164,
  4873. bottom: 8.7 / 190.5
  4874. }
  4875. },
  4876. maleNsfw: {
  4877. height: math.unit(8, "feet"),
  4878. weight: math.unit(350, "lb"),
  4879. name: "Male (NSFW)",
  4880. image: {
  4881. source: "./media/characters/sigvald/male-nsfw.svg",
  4882. extra: 182 / 164,
  4883. bottom: 8.7 / 190.5
  4884. }
  4885. },
  4886. hermNsfw: {
  4887. height: math.unit(8, "feet"),
  4888. weight: math.unit(350, "lb"),
  4889. name: "Herm (NSFW)",
  4890. image: {
  4891. source: "./media/characters/sigvald/herm-nsfw.svg",
  4892. extra: 182 / 164,
  4893. bottom: 8.7 / 190.5
  4894. }
  4895. },
  4896. dick: {
  4897. height: math.unit(2.36, "feet"),
  4898. name: "Dick",
  4899. image: {
  4900. source: "./media/characters/sigvald/dick.svg"
  4901. }
  4902. },
  4903. eye: {
  4904. height: math.unit(0.31, "feet"),
  4905. name: "Eye",
  4906. image: {
  4907. source: "./media/characters/sigvald/eye.svg"
  4908. }
  4909. },
  4910. mouth: {
  4911. height: math.unit(0.92, "feet"),
  4912. name: "Mouth",
  4913. image: {
  4914. source: "./media/characters/sigvald/mouth.svg"
  4915. }
  4916. },
  4917. paws: {
  4918. height: math.unit(2.2, "feet"),
  4919. name: "Paws",
  4920. image: {
  4921. source: "./media/characters/sigvald/paws.svg"
  4922. }
  4923. }
  4924. },
  4925. [
  4926. {
  4927. name: "Normal",
  4928. height: math.unit(8, "feet")
  4929. },
  4930. {
  4931. name: "Large",
  4932. height: math.unit(12, "feet")
  4933. },
  4934. {
  4935. name: "Larger",
  4936. height: math.unit(20, "feet")
  4937. },
  4938. {
  4939. name: "Macro",
  4940. height: math.unit(150, "feet")
  4941. },
  4942. {
  4943. name: "Macro+",
  4944. height: math.unit(200, "feet"),
  4945. default: true
  4946. },
  4947. ]
  4948. ))
  4949. characterMakers.push(() => makeCharacter(
  4950. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4951. {
  4952. side: {
  4953. height: math.unit(12, "feet"),
  4954. weight: math.unit(2000, "kg"),
  4955. name: "Side",
  4956. image: {
  4957. source: "./media/characters/scott/side.svg",
  4958. extra: 754 / 724,
  4959. bottom: 0.069
  4960. }
  4961. },
  4962. upright: {
  4963. height: math.unit(12, "feet"),
  4964. weight: math.unit(2000, "kg"),
  4965. name: "Upright",
  4966. image: {
  4967. source: "./media/characters/scott/upright.svg",
  4968. extra: 3881 / 3722,
  4969. bottom: 0.05
  4970. }
  4971. },
  4972. },
  4973. [
  4974. {
  4975. name: "Normal",
  4976. height: math.unit(12, "feet"),
  4977. default: true
  4978. },
  4979. ]
  4980. ))
  4981. characterMakers.push(() => makeCharacter(
  4982. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4983. {
  4984. side: {
  4985. height: math.unit(8, "meters"),
  4986. weight: math.unit(84755, "lbs"),
  4987. name: "Side",
  4988. image: {
  4989. source: "./media/characters/tobias/side.svg",
  4990. extra: 1474 / 1096,
  4991. bottom: 38.9 / 1513.1235
  4992. }
  4993. },
  4994. },
  4995. [
  4996. {
  4997. name: "Normal",
  4998. height: math.unit(8, "meters"),
  4999. default: true
  5000. },
  5001. ]
  5002. ))
  5003. characterMakers.push(() => makeCharacter(
  5004. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5005. {
  5006. front: {
  5007. height: math.unit(5.5, "feet"),
  5008. weight: math.unit(400, "lbs"),
  5009. name: "Front",
  5010. image: {
  5011. source: "./media/characters/kieran/front.svg",
  5012. extra: 2694 / 2364,
  5013. bottom: 217 / 2908
  5014. }
  5015. },
  5016. side: {
  5017. height: math.unit(5.5, "feet"),
  5018. weight: math.unit(400, "lbs"),
  5019. name: "Side",
  5020. image: {
  5021. source: "./media/characters/kieran/side.svg",
  5022. extra: 875 / 777,
  5023. bottom: 84.6 / 959
  5024. }
  5025. },
  5026. },
  5027. [
  5028. {
  5029. name: "Normal",
  5030. height: math.unit(5.5, "feet"),
  5031. default: true
  5032. },
  5033. ]
  5034. ))
  5035. characterMakers.push(() => makeCharacter(
  5036. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5037. {
  5038. side: {
  5039. height: math.unit(2, "meters"),
  5040. weight: math.unit(70, "kg"),
  5041. name: "Side",
  5042. image: {
  5043. source: "./media/characters/sanya/side.svg",
  5044. bottom: 0.02,
  5045. extra: 1.02
  5046. }
  5047. },
  5048. },
  5049. [
  5050. {
  5051. name: "Small",
  5052. height: math.unit(2, "meters")
  5053. },
  5054. {
  5055. name: "Normal",
  5056. height: math.unit(3, "meters")
  5057. },
  5058. {
  5059. name: "Macro",
  5060. height: math.unit(16, "meters"),
  5061. default: true
  5062. },
  5063. ]
  5064. ))
  5065. characterMakers.push(() => makeCharacter(
  5066. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5067. {
  5068. front: {
  5069. height: math.unit(2, "meters"),
  5070. weight: math.unit(120, "kg"),
  5071. name: "Front",
  5072. image: {
  5073. source: "./media/characters/miranda/front.svg",
  5074. extra: 195 / 185,
  5075. bottom: 10.9 / 206.5
  5076. }
  5077. },
  5078. back: {
  5079. height: math.unit(2, "meters"),
  5080. weight: math.unit(120, "kg"),
  5081. name: "Back",
  5082. image: {
  5083. source: "./media/characters/miranda/back.svg",
  5084. extra: 201 / 193,
  5085. bottom: 2.3 / 203.7
  5086. }
  5087. },
  5088. },
  5089. [
  5090. {
  5091. name: "Normal",
  5092. height: math.unit(10, "feet"),
  5093. default: true
  5094. }
  5095. ]
  5096. ))
  5097. characterMakers.push(() => makeCharacter(
  5098. { name: "James", species: ["deer"], tags: ["anthro"] },
  5099. {
  5100. side: {
  5101. height: math.unit(2, "meters"),
  5102. weight: math.unit(100, "kg"),
  5103. name: "Front",
  5104. image: {
  5105. source: "./media/characters/james/front.svg",
  5106. extra: 10 / 8.5
  5107. }
  5108. },
  5109. },
  5110. [
  5111. {
  5112. name: "Normal",
  5113. height: math.unit(8.5, "feet"),
  5114. default: true
  5115. }
  5116. ]
  5117. ))
  5118. characterMakers.push(() => makeCharacter(
  5119. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5120. {
  5121. side: {
  5122. height: math.unit(9.5, "feet"),
  5123. weight: math.unit(2500, "lbs"),
  5124. name: "Side",
  5125. image: {
  5126. source: "./media/characters/heather/side.svg"
  5127. }
  5128. },
  5129. },
  5130. [
  5131. {
  5132. name: "Normal",
  5133. height: math.unit(9.5, "feet"),
  5134. default: true
  5135. }
  5136. ]
  5137. ))
  5138. characterMakers.push(() => makeCharacter(
  5139. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5140. {
  5141. side: {
  5142. height: math.unit(6.5, "feet"),
  5143. weight: math.unit(400, "lbs"),
  5144. name: "Side",
  5145. image: {
  5146. source: "./media/characters/lukas/side.svg",
  5147. extra: 7.25 / 6.5
  5148. }
  5149. },
  5150. },
  5151. [
  5152. {
  5153. name: "Normal",
  5154. height: math.unit(6.5, "feet"),
  5155. default: true
  5156. }
  5157. ]
  5158. ))
  5159. characterMakers.push(() => makeCharacter(
  5160. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5161. {
  5162. side: {
  5163. height: math.unit(5, "feet"),
  5164. weight: math.unit(3000, "lbs"),
  5165. name: "Side",
  5166. image: {
  5167. source: "./media/characters/louise/side.svg"
  5168. }
  5169. },
  5170. },
  5171. [
  5172. {
  5173. name: "Normal",
  5174. height: math.unit(5, "feet"),
  5175. default: true
  5176. }
  5177. ]
  5178. ))
  5179. characterMakers.push(() => makeCharacter(
  5180. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5181. {
  5182. side: {
  5183. height: math.unit(6, "feet"),
  5184. weight: math.unit(150, "lbs"),
  5185. name: "Side",
  5186. image: {
  5187. source: "./media/characters/ramona/side.svg"
  5188. }
  5189. },
  5190. },
  5191. [
  5192. {
  5193. name: "Normal",
  5194. height: math.unit(5.3, "meters"),
  5195. default: true
  5196. },
  5197. {
  5198. name: "Macro",
  5199. height: math.unit(20, "stories")
  5200. },
  5201. {
  5202. name: "Macro+",
  5203. height: math.unit(50, "stories")
  5204. },
  5205. ]
  5206. ))
  5207. characterMakers.push(() => makeCharacter(
  5208. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5209. {
  5210. standing: {
  5211. height: math.unit(5.75, "feet"),
  5212. weight: math.unit(160, "lbs"),
  5213. name: "Standing",
  5214. image: {
  5215. source: "./media/characters/deerpuff/standing.svg",
  5216. extra: 682 / 624
  5217. }
  5218. },
  5219. sitting: {
  5220. height: math.unit(5.75 / 1.79, "feet"),
  5221. weight: math.unit(160, "lbs"),
  5222. name: "Sitting",
  5223. image: {
  5224. source: "./media/characters/deerpuff/sitting.svg",
  5225. bottom: 44 / 400,
  5226. extra: 1
  5227. }
  5228. },
  5229. taurLaying: {
  5230. height: math.unit(6, "feet"),
  5231. weight: math.unit(400, "lbs"),
  5232. name: "Taur (Laying)",
  5233. image: {
  5234. source: "./media/characters/deerpuff/taur-laying.svg"
  5235. }
  5236. },
  5237. },
  5238. [
  5239. {
  5240. name: "Puffball",
  5241. height: math.unit(6, "inches")
  5242. },
  5243. {
  5244. name: "Normalpuff",
  5245. height: math.unit(5.75, "feet")
  5246. },
  5247. {
  5248. name: "Macropuff",
  5249. height: math.unit(1500, "feet"),
  5250. default: true
  5251. },
  5252. {
  5253. name: "Megapuff",
  5254. height: math.unit(500, "miles")
  5255. },
  5256. {
  5257. name: "Gigapuff",
  5258. height: math.unit(250000, "miles")
  5259. },
  5260. {
  5261. name: "Omegapuff",
  5262. height: math.unit(1000, "lightyears")
  5263. },
  5264. ]
  5265. ))
  5266. characterMakers.push(() => makeCharacter(
  5267. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5268. {
  5269. stomping: {
  5270. height: math.unit(6, "feet"),
  5271. weight: math.unit(170, "lbs"),
  5272. name: "Stomping",
  5273. image: {
  5274. source: "./media/characters/vivian/stomping.svg"
  5275. }
  5276. },
  5277. sitting: {
  5278. height: math.unit(6 / 1.75, "feet"),
  5279. weight: math.unit(170, "lbs"),
  5280. name: "Sitting",
  5281. image: {
  5282. source: "./media/characters/vivian/sitting.svg",
  5283. bottom: 1 / 6.4,
  5284. extra: 1,
  5285. }
  5286. },
  5287. },
  5288. [
  5289. {
  5290. name: "Normal",
  5291. height: math.unit(7, "feet"),
  5292. default: true
  5293. },
  5294. {
  5295. name: "Macro",
  5296. height: math.unit(10, "stories")
  5297. },
  5298. {
  5299. name: "Macro+",
  5300. height: math.unit(30, "stories")
  5301. },
  5302. {
  5303. name: "Megamacro",
  5304. height: math.unit(10, "miles")
  5305. },
  5306. {
  5307. name: "Megamacro+",
  5308. height: math.unit(2750000, "meters")
  5309. },
  5310. ]
  5311. ))
  5312. characterMakers.push(() => makeCharacter(
  5313. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5314. {
  5315. front: {
  5316. height: math.unit(6, "feet"),
  5317. weight: math.unit(160, "lbs"),
  5318. name: "Front",
  5319. image: {
  5320. source: "./media/characters/prince/front.svg",
  5321. extra: 3400 / 3000
  5322. }
  5323. },
  5324. jumping: {
  5325. height: math.unit(6, "feet"),
  5326. weight: math.unit(160, "lbs"),
  5327. name: "Jumping",
  5328. image: {
  5329. source: "./media/characters/prince/jump.svg",
  5330. extra: 2555 / 2134
  5331. }
  5332. },
  5333. },
  5334. [
  5335. {
  5336. name: "Normal",
  5337. height: math.unit(7.75, "feet"),
  5338. default: true
  5339. },
  5340. {
  5341. name: "Not cute",
  5342. height: math.unit(17, "feet")
  5343. },
  5344. {
  5345. name: "I said NOT",
  5346. height: math.unit(91, "feet")
  5347. },
  5348. {
  5349. name: "Please stop",
  5350. height: math.unit(560, "feet")
  5351. },
  5352. {
  5353. name: "What have you done",
  5354. height: math.unit(2200, "feet")
  5355. },
  5356. {
  5357. name: "Deer God",
  5358. height: math.unit(3.6, "miles")
  5359. },
  5360. ]
  5361. ))
  5362. characterMakers.push(() => makeCharacter(
  5363. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5364. {
  5365. standing: {
  5366. height: math.unit(6, "feet"),
  5367. weight: math.unit(300, "lbs"),
  5368. name: "Standing",
  5369. image: {
  5370. source: "./media/characters/psymon/standing.svg",
  5371. extra: 1888 / 1810,
  5372. bottom: 0.05
  5373. }
  5374. },
  5375. slithering: {
  5376. height: math.unit(6, "feet"),
  5377. weight: math.unit(300, "lbs"),
  5378. name: "Slithering",
  5379. image: {
  5380. source: "./media/characters/psymon/slithering.svg",
  5381. extra: 1330 / 1224
  5382. }
  5383. },
  5384. slitheringAlt: {
  5385. height: math.unit(6, "feet"),
  5386. weight: math.unit(300, "lbs"),
  5387. name: "Slithering (Alt)",
  5388. image: {
  5389. source: "./media/characters/psymon/slithering-alt.svg",
  5390. extra: 1330 / 1224
  5391. }
  5392. },
  5393. },
  5394. [
  5395. {
  5396. name: "Normal",
  5397. height: math.unit(11.25, "feet"),
  5398. default: true
  5399. },
  5400. {
  5401. name: "Large",
  5402. height: math.unit(27, "feet")
  5403. },
  5404. {
  5405. name: "Giant",
  5406. height: math.unit(87, "feet")
  5407. },
  5408. {
  5409. name: "Macro",
  5410. height: math.unit(365, "feet")
  5411. },
  5412. {
  5413. name: "Megamacro",
  5414. height: math.unit(3, "miles")
  5415. },
  5416. {
  5417. name: "World Serpent",
  5418. height: math.unit(8000, "miles")
  5419. },
  5420. ]
  5421. ))
  5422. characterMakers.push(() => makeCharacter(
  5423. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5424. {
  5425. front: {
  5426. height: math.unit(6, "feet"),
  5427. weight: math.unit(180, "lbs"),
  5428. name: "Front",
  5429. image: {
  5430. source: "./media/characters/daimos/front.svg",
  5431. extra: 4160 / 3897,
  5432. bottom: 0.021
  5433. }
  5434. }
  5435. },
  5436. [
  5437. {
  5438. name: "Normal",
  5439. height: math.unit(8, "feet"),
  5440. default: true
  5441. },
  5442. {
  5443. name: "Big Dog",
  5444. height: math.unit(22, "feet")
  5445. },
  5446. {
  5447. name: "Macro",
  5448. height: math.unit(127, "feet")
  5449. },
  5450. {
  5451. name: "Megamacro",
  5452. height: math.unit(3600, "feet")
  5453. },
  5454. ]
  5455. ))
  5456. characterMakers.push(() => makeCharacter(
  5457. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5458. {
  5459. side: {
  5460. height: math.unit(6, "feet"),
  5461. weight: math.unit(180, "lbs"),
  5462. name: "Side",
  5463. image: {
  5464. source: "./media/characters/blake/side.svg",
  5465. extra: 1212 / 1120,
  5466. bottom: 0.05
  5467. }
  5468. },
  5469. crouched: {
  5470. height: math.unit(6 * 0.57, "feet"),
  5471. weight: math.unit(180, "lbs"),
  5472. name: "Crouched",
  5473. image: {
  5474. source: "./media/characters/blake/crouched.svg",
  5475. extra: 840 / 587,
  5476. bottom: 0.04
  5477. }
  5478. },
  5479. bent: {
  5480. height: math.unit(6 * 0.75, "feet"),
  5481. weight: math.unit(180, "lbs"),
  5482. name: "Bent",
  5483. image: {
  5484. source: "./media/characters/blake/bent.svg",
  5485. extra: 592 / 544,
  5486. bottom: 0.035
  5487. }
  5488. },
  5489. },
  5490. [
  5491. {
  5492. name: "Normal",
  5493. height: math.unit(8 + 1 / 6, "feet"),
  5494. default: true
  5495. },
  5496. {
  5497. name: "Big Backside",
  5498. height: math.unit(37, "feet")
  5499. },
  5500. {
  5501. name: "Subway Shredder",
  5502. height: math.unit(72, "feet")
  5503. },
  5504. {
  5505. name: "City Carver",
  5506. height: math.unit(1675, "feet")
  5507. },
  5508. {
  5509. name: "Tectonic Tweaker",
  5510. height: math.unit(2300, "miles")
  5511. },
  5512. ]
  5513. ))
  5514. characterMakers.push(() => makeCharacter(
  5515. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5516. {
  5517. front: {
  5518. height: math.unit(6, "feet"),
  5519. weight: math.unit(180, "lbs"),
  5520. name: "Front",
  5521. image: {
  5522. source: "./media/characters/guisetto/front.svg",
  5523. extra: 856 / 817,
  5524. bottom: 0.06
  5525. }
  5526. },
  5527. airborne: {
  5528. height: math.unit(6, "feet"),
  5529. weight: math.unit(180, "lbs"),
  5530. name: "Airborne",
  5531. image: {
  5532. source: "./media/characters/guisetto/airborne.svg",
  5533. extra: 584 / 525
  5534. }
  5535. },
  5536. },
  5537. [
  5538. {
  5539. name: "Normal",
  5540. height: math.unit(10 + 11 / 12, "feet"),
  5541. default: true
  5542. },
  5543. {
  5544. name: "Large",
  5545. height: math.unit(35, "feet")
  5546. },
  5547. {
  5548. name: "Macro",
  5549. height: math.unit(475, "feet")
  5550. },
  5551. ]
  5552. ))
  5553. characterMakers.push(() => makeCharacter(
  5554. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5555. {
  5556. front: {
  5557. height: math.unit(6, "feet"),
  5558. weight: math.unit(180, "lbs"),
  5559. name: "Front",
  5560. image: {
  5561. source: "./media/characters/luxor/front.svg",
  5562. extra: 2940 / 2152
  5563. }
  5564. },
  5565. back: {
  5566. height: math.unit(6, "feet"),
  5567. weight: math.unit(180, "lbs"),
  5568. name: "Back",
  5569. image: {
  5570. source: "./media/characters/luxor/back.svg",
  5571. extra: 1083 / 960
  5572. }
  5573. },
  5574. },
  5575. [
  5576. {
  5577. name: "Normal",
  5578. height: math.unit(5 + 5 / 6, "feet"),
  5579. default: true
  5580. },
  5581. {
  5582. name: "Lamp",
  5583. height: math.unit(50, "feet")
  5584. },
  5585. {
  5586. name: "Lämp",
  5587. height: math.unit(300, "feet")
  5588. },
  5589. {
  5590. name: "The sun is a lamp",
  5591. height: math.unit(250000, "miles")
  5592. },
  5593. ]
  5594. ))
  5595. characterMakers.push(() => makeCharacter(
  5596. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5597. {
  5598. front: {
  5599. height: math.unit(6, "feet"),
  5600. weight: math.unit(50, "lbs"),
  5601. name: "Front",
  5602. image: {
  5603. source: "./media/characters/huoyan/front.svg"
  5604. }
  5605. },
  5606. side: {
  5607. height: math.unit(6, "feet"),
  5608. weight: math.unit(180, "lbs"),
  5609. name: "Side",
  5610. image: {
  5611. source: "./media/characters/huoyan/side.svg"
  5612. }
  5613. },
  5614. },
  5615. [
  5616. {
  5617. name: "Chef",
  5618. height: math.unit(9, "feet")
  5619. },
  5620. {
  5621. name: "Normal",
  5622. height: math.unit(65, "feet"),
  5623. default: true
  5624. },
  5625. {
  5626. name: "Macro",
  5627. height: math.unit(780, "feet")
  5628. },
  5629. {
  5630. name: "Flaming Mountain",
  5631. height: math.unit(4.8, "miles")
  5632. },
  5633. {
  5634. name: "Celestial",
  5635. height: math.unit(765000, "miles")
  5636. },
  5637. ]
  5638. ))
  5639. characterMakers.push(() => makeCharacter(
  5640. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5641. {
  5642. front: {
  5643. height: math.unit(5 + 3 / 4, "feet"),
  5644. weight: math.unit(120, "lbs"),
  5645. name: "Front",
  5646. image: {
  5647. source: "./media/characters/tails/front.svg"
  5648. }
  5649. }
  5650. },
  5651. [
  5652. {
  5653. name: "Normal",
  5654. height: math.unit(5 + 3 / 4, "feet"),
  5655. default: true
  5656. }
  5657. ]
  5658. ))
  5659. characterMakers.push(() => makeCharacter(
  5660. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5661. {
  5662. front: {
  5663. height: math.unit(4, "feet"),
  5664. weight: math.unit(50, "lbs"),
  5665. name: "Front",
  5666. image: {
  5667. source: "./media/characters/rainy/front.svg"
  5668. }
  5669. }
  5670. },
  5671. [
  5672. {
  5673. name: "Macro",
  5674. height: math.unit(800, "feet"),
  5675. default: true
  5676. }
  5677. ]
  5678. ))
  5679. characterMakers.push(() => makeCharacter(
  5680. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5681. {
  5682. front: {
  5683. height: math.unit(6, "feet"),
  5684. weight: math.unit(150, "lbs"),
  5685. name: "Front",
  5686. image: {
  5687. source: "./media/characters/rainier/front.svg"
  5688. }
  5689. }
  5690. },
  5691. [
  5692. {
  5693. name: "Micro",
  5694. height: math.unit(2, "mm"),
  5695. default: true
  5696. }
  5697. ]
  5698. ))
  5699. characterMakers.push(() => makeCharacter(
  5700. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5701. {
  5702. front: {
  5703. height: math.unit(8 + 4/12, "feet"),
  5704. name: "Front",
  5705. image: {
  5706. source: "./media/characters/andy-renard/front.svg",
  5707. extra: 1839/1726,
  5708. bottom: 134/1973
  5709. }
  5710. },
  5711. back: {
  5712. height: math.unit(8 + 4/12, "feet"),
  5713. name: "Back",
  5714. image: {
  5715. source: "./media/characters/andy-renard/back.svg",
  5716. extra: 1838/1710,
  5717. bottom: 105/1943
  5718. }
  5719. },
  5720. },
  5721. [
  5722. {
  5723. name: "Tall",
  5724. height: math.unit(8 + 4/12, "feet")
  5725. },
  5726. {
  5727. name: "Mini Macro",
  5728. height: math.unit(15, "feet"),
  5729. default: true
  5730. },
  5731. {
  5732. name: "Macro",
  5733. height: math.unit(100, "feet")
  5734. },
  5735. {
  5736. name: "Mega Macro",
  5737. height: math.unit(1000, "feet")
  5738. },
  5739. {
  5740. name: "Giga Macro",
  5741. height: math.unit(10, "miles")
  5742. },
  5743. {
  5744. name: "God Macro",
  5745. height: math.unit(1, "multiverse")
  5746. },
  5747. ]
  5748. ))
  5749. characterMakers.push(() => makeCharacter(
  5750. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5751. {
  5752. front: {
  5753. height: math.unit(6, "feet"),
  5754. weight: math.unit(210, "lbs"),
  5755. name: "Front",
  5756. image: {
  5757. source: "./media/characters/cimmaron/front-sfw.svg",
  5758. extra: 701 / 676,
  5759. bottom: 0.046
  5760. }
  5761. },
  5762. back: {
  5763. height: math.unit(6, "feet"),
  5764. weight: math.unit(210, "lbs"),
  5765. name: "Back",
  5766. image: {
  5767. source: "./media/characters/cimmaron/back-sfw.svg",
  5768. extra: 701 / 676,
  5769. bottom: 0.046
  5770. }
  5771. },
  5772. frontNsfw: {
  5773. height: math.unit(6, "feet"),
  5774. weight: math.unit(210, "lbs"),
  5775. name: "Front (NSFW)",
  5776. image: {
  5777. source: "./media/characters/cimmaron/front-nsfw.svg",
  5778. extra: 701 / 676,
  5779. bottom: 0.046
  5780. }
  5781. },
  5782. backNsfw: {
  5783. height: math.unit(6, "feet"),
  5784. weight: math.unit(210, "lbs"),
  5785. name: "Back (NSFW)",
  5786. image: {
  5787. source: "./media/characters/cimmaron/back-nsfw.svg",
  5788. extra: 701 / 676,
  5789. bottom: 0.046
  5790. }
  5791. },
  5792. dick: {
  5793. height: math.unit(1.714, "feet"),
  5794. name: "Dick",
  5795. image: {
  5796. source: "./media/characters/cimmaron/dick.svg"
  5797. }
  5798. },
  5799. },
  5800. [
  5801. {
  5802. name: "Normal",
  5803. height: math.unit(6, "feet"),
  5804. default: true
  5805. },
  5806. {
  5807. name: "Macro Mayor",
  5808. height: math.unit(350, "meters")
  5809. },
  5810. ]
  5811. ))
  5812. characterMakers.push(() => makeCharacter(
  5813. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5814. {
  5815. front: {
  5816. height: math.unit(6, "feet"),
  5817. weight: math.unit(200, "lbs"),
  5818. name: "Front",
  5819. image: {
  5820. source: "./media/characters/akari/front.svg",
  5821. extra: 962 / 901,
  5822. bottom: 0.04
  5823. }
  5824. }
  5825. },
  5826. [
  5827. {
  5828. name: "Micro",
  5829. height: math.unit(5, "inches"),
  5830. default: true
  5831. },
  5832. {
  5833. name: "Normal",
  5834. height: math.unit(7, "feet")
  5835. },
  5836. ]
  5837. ))
  5838. characterMakers.push(() => makeCharacter(
  5839. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5840. {
  5841. front: {
  5842. height: math.unit(6, "feet"),
  5843. weight: math.unit(140, "lbs"),
  5844. name: "Front",
  5845. image: {
  5846. source: "./media/characters/cynosura/front.svg",
  5847. extra: 896 / 847
  5848. }
  5849. },
  5850. back: {
  5851. height: math.unit(6, "feet"),
  5852. weight: math.unit(140, "lbs"),
  5853. name: "Back",
  5854. image: {
  5855. source: "./media/characters/cynosura/back.svg",
  5856. extra: 1365 / 1250
  5857. }
  5858. },
  5859. },
  5860. [
  5861. {
  5862. name: "Micro",
  5863. height: math.unit(4, "inches")
  5864. },
  5865. {
  5866. name: "Normal",
  5867. height: math.unit(5.75, "feet"),
  5868. default: true
  5869. },
  5870. {
  5871. name: "Tall",
  5872. height: math.unit(10, "feet")
  5873. },
  5874. {
  5875. name: "Big",
  5876. height: math.unit(20, "feet")
  5877. },
  5878. {
  5879. name: "Macro",
  5880. height: math.unit(50, "feet")
  5881. },
  5882. ]
  5883. ))
  5884. characterMakers.push(() => makeCharacter(
  5885. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5886. {
  5887. front: {
  5888. height: math.unit(13 + 2/12, "feet"),
  5889. weight: math.unit(800, "kg"),
  5890. name: "Front",
  5891. image: {
  5892. source: "./media/characters/gin/front.svg",
  5893. extra: 1312/1191,
  5894. bottom: 45/1357
  5895. }
  5896. },
  5897. mouth: {
  5898. height: math.unit(2.39 * 1.8, "feet"),
  5899. name: "Mouth",
  5900. image: {
  5901. source: "./media/characters/gin/mouth.svg"
  5902. }
  5903. },
  5904. hand: {
  5905. height: math.unit(1.57 * 2.19, "feet"),
  5906. name: "Hand",
  5907. image: {
  5908. source: "./media/characters/gin/hand.svg"
  5909. }
  5910. },
  5911. foot: {
  5912. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5913. name: "Foot",
  5914. image: {
  5915. source: "./media/characters/gin/foot.svg"
  5916. }
  5917. },
  5918. sole: {
  5919. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5920. name: "Sole",
  5921. image: {
  5922. source: "./media/characters/gin/sole.svg"
  5923. }
  5924. },
  5925. },
  5926. [
  5927. {
  5928. name: "Very Small",
  5929. height: math.unit(13 + 2 / 12, "feet")
  5930. },
  5931. {
  5932. name: "Micro",
  5933. height: math.unit(600, "miles")
  5934. },
  5935. {
  5936. name: "Regular",
  5937. height: math.unit(20, "earths"),
  5938. default: true
  5939. },
  5940. {
  5941. name: "Macro",
  5942. height: math.unit(2.2, "solarradii")
  5943. },
  5944. {
  5945. name: "Teramacro",
  5946. height: math.unit(1.2, "galaxies")
  5947. },
  5948. {
  5949. name: "Omegamacro",
  5950. height: math.unit(200, "universes")
  5951. },
  5952. ]
  5953. ))
  5954. characterMakers.push(() => makeCharacter(
  5955. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5956. {
  5957. front: {
  5958. height: math.unit(6 + 1 / 6, "feet"),
  5959. weight: math.unit(178, "lbs"),
  5960. name: "Front",
  5961. image: {
  5962. source: "./media/characters/guy/front.svg"
  5963. }
  5964. }
  5965. },
  5966. [
  5967. {
  5968. name: "Normal",
  5969. height: math.unit(6 + 1 / 6, "feet"),
  5970. default: true
  5971. },
  5972. {
  5973. name: "Large",
  5974. height: math.unit(25 + 7 / 12, "feet")
  5975. },
  5976. {
  5977. name: "Macro",
  5978. height: math.unit(60 + 9 / 12, "feet")
  5979. },
  5980. {
  5981. name: "Macro+",
  5982. height: math.unit(246, "feet")
  5983. },
  5984. {
  5985. name: "Macro++",
  5986. height: math.unit(878, "feet")
  5987. }
  5988. ]
  5989. ))
  5990. characterMakers.push(() => makeCharacter(
  5991. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5992. {
  5993. front: {
  5994. height: math.unit(9, "feet"),
  5995. weight: math.unit(800, "lbs"),
  5996. name: "Front",
  5997. image: {
  5998. source: "./media/characters/tiberius/front.svg",
  5999. extra: 2295 / 2071
  6000. }
  6001. },
  6002. back: {
  6003. height: math.unit(9, "feet"),
  6004. weight: math.unit(800, "lbs"),
  6005. name: "Back",
  6006. image: {
  6007. source: "./media/characters/tiberius/back.svg",
  6008. extra: 2373 / 2160
  6009. }
  6010. },
  6011. },
  6012. [
  6013. {
  6014. name: "Normal",
  6015. height: math.unit(9, "feet"),
  6016. default: true
  6017. }
  6018. ]
  6019. ))
  6020. characterMakers.push(() => makeCharacter(
  6021. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6022. {
  6023. front: {
  6024. height: math.unit(6, "feet"),
  6025. weight: math.unit(600, "lbs"),
  6026. name: "Front",
  6027. image: {
  6028. source: "./media/characters/surgo/front.svg",
  6029. extra: 3591 / 2227
  6030. }
  6031. },
  6032. back: {
  6033. height: math.unit(6, "feet"),
  6034. weight: math.unit(600, "lbs"),
  6035. name: "Back",
  6036. image: {
  6037. source: "./media/characters/surgo/back.svg",
  6038. extra: 3557 / 2228
  6039. }
  6040. },
  6041. laying: {
  6042. height: math.unit(6 * 0.85, "feet"),
  6043. weight: math.unit(600, "lbs"),
  6044. name: "Laying",
  6045. image: {
  6046. source: "./media/characters/surgo/laying.svg"
  6047. }
  6048. },
  6049. },
  6050. [
  6051. {
  6052. name: "Normal",
  6053. height: math.unit(6, "feet"),
  6054. default: true
  6055. }
  6056. ]
  6057. ))
  6058. characterMakers.push(() => makeCharacter(
  6059. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6060. {
  6061. side: {
  6062. height: math.unit(6, "feet"),
  6063. weight: math.unit(150, "lbs"),
  6064. name: "Side",
  6065. image: {
  6066. source: "./media/characters/cibus/side.svg",
  6067. extra: 800 / 400
  6068. }
  6069. },
  6070. },
  6071. [
  6072. {
  6073. name: "Normal",
  6074. height: math.unit(6, "feet"),
  6075. default: true
  6076. }
  6077. ]
  6078. ))
  6079. characterMakers.push(() => makeCharacter(
  6080. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6081. {
  6082. front: {
  6083. height: math.unit(6, "feet"),
  6084. weight: math.unit(240, "lbs"),
  6085. name: "Front",
  6086. image: {
  6087. source: "./media/characters/nibbles/front.svg"
  6088. }
  6089. },
  6090. side: {
  6091. height: math.unit(6, "feet"),
  6092. weight: math.unit(240, "lbs"),
  6093. name: "Side",
  6094. image: {
  6095. source: "./media/characters/nibbles/side.svg"
  6096. }
  6097. },
  6098. },
  6099. [
  6100. {
  6101. name: "Normal",
  6102. height: math.unit(9, "feet"),
  6103. default: true
  6104. }
  6105. ]
  6106. ))
  6107. characterMakers.push(() => makeCharacter(
  6108. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6109. {
  6110. side: {
  6111. height: math.unit(5 + 1 / 6, "feet"),
  6112. weight: math.unit(130, "lbs"),
  6113. name: "Side",
  6114. image: {
  6115. source: "./media/characters/rikky/side.svg",
  6116. extra: 851 / 801
  6117. }
  6118. },
  6119. },
  6120. [
  6121. {
  6122. name: "Normal",
  6123. height: math.unit(5 + 1 / 6, "feet")
  6124. },
  6125. {
  6126. name: "Macro",
  6127. height: math.unit(152, "feet"),
  6128. default: true
  6129. },
  6130. {
  6131. name: "Megamacro",
  6132. height: math.unit(7, "miles")
  6133. }
  6134. ]
  6135. ))
  6136. characterMakers.push(() => makeCharacter(
  6137. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6138. {
  6139. side: {
  6140. height: math.unit(370, "cm"),
  6141. weight: math.unit(350, "lbs"),
  6142. name: "Side",
  6143. image: {
  6144. source: "./media/characters/malfressa/side.svg"
  6145. }
  6146. },
  6147. walking: {
  6148. height: math.unit(370, "cm"),
  6149. weight: math.unit(350, "lbs"),
  6150. name: "Walking",
  6151. image: {
  6152. source: "./media/characters/malfressa/walking.svg"
  6153. }
  6154. },
  6155. feral: {
  6156. height: math.unit(2500, "cm"),
  6157. weight: math.unit(100000, "lbs"),
  6158. name: "Feral",
  6159. image: {
  6160. source: "./media/characters/malfressa/feral.svg",
  6161. extra: 2108 / 837,
  6162. bottom: 0.02
  6163. }
  6164. },
  6165. },
  6166. [
  6167. {
  6168. name: "Normal",
  6169. height: math.unit(370, "cm")
  6170. },
  6171. {
  6172. name: "Macro",
  6173. height: math.unit(300, "meters"),
  6174. default: true
  6175. }
  6176. ]
  6177. ))
  6178. characterMakers.push(() => makeCharacter(
  6179. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6180. {
  6181. front: {
  6182. height: math.unit(6, "feet"),
  6183. weight: math.unit(60, "kg"),
  6184. name: "Front",
  6185. image: {
  6186. source: "./media/characters/jaro/front.svg"
  6187. }
  6188. },
  6189. back: {
  6190. height: math.unit(6, "feet"),
  6191. weight: math.unit(60, "kg"),
  6192. name: "Back",
  6193. image: {
  6194. source: "./media/characters/jaro/back.svg"
  6195. }
  6196. },
  6197. },
  6198. [
  6199. {
  6200. name: "Micro",
  6201. height: math.unit(7, "inches")
  6202. },
  6203. {
  6204. name: "Normal",
  6205. height: math.unit(5.5, "feet"),
  6206. default: true
  6207. },
  6208. {
  6209. name: "Minimacro",
  6210. height: math.unit(20, "feet")
  6211. },
  6212. {
  6213. name: "Macro",
  6214. height: math.unit(200, "meters")
  6215. }
  6216. ]
  6217. ))
  6218. characterMakers.push(() => makeCharacter(
  6219. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6220. {
  6221. front: {
  6222. height: math.unit(6, "feet"),
  6223. weight: math.unit(195, "lb"),
  6224. name: "Front",
  6225. image: {
  6226. source: "./media/characters/rogue/front.svg"
  6227. }
  6228. },
  6229. },
  6230. [
  6231. {
  6232. name: "Macro",
  6233. height: math.unit(90, "feet"),
  6234. default: true
  6235. },
  6236. ]
  6237. ))
  6238. characterMakers.push(() => makeCharacter(
  6239. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6240. {
  6241. front: {
  6242. height: math.unit(5 + 8 / 12, "feet"),
  6243. weight: math.unit(140, "lb"),
  6244. name: "Front",
  6245. image: {
  6246. source: "./media/characters/piper/front.svg",
  6247. extra: 3948/3655,
  6248. bottom: 0/3948
  6249. }
  6250. },
  6251. },
  6252. [
  6253. {
  6254. name: "Micro",
  6255. height: math.unit(2, "inches")
  6256. },
  6257. {
  6258. name: "Normal",
  6259. height: math.unit(5 + 8 / 12, "feet")
  6260. },
  6261. {
  6262. name: "Macro",
  6263. height: math.unit(250, "feet"),
  6264. default: true
  6265. },
  6266. {
  6267. name: "Megamacro",
  6268. height: math.unit(7, "miles")
  6269. },
  6270. ]
  6271. ))
  6272. characterMakers.push(() => makeCharacter(
  6273. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6274. {
  6275. front: {
  6276. height: math.unit(6, "feet"),
  6277. weight: math.unit(220, "lb"),
  6278. name: "Front",
  6279. image: {
  6280. source: "./media/characters/gemini/front.svg"
  6281. }
  6282. },
  6283. back: {
  6284. height: math.unit(6, "feet"),
  6285. weight: math.unit(220, "lb"),
  6286. name: "Back",
  6287. image: {
  6288. source: "./media/characters/gemini/back.svg"
  6289. }
  6290. },
  6291. kneeling: {
  6292. height: math.unit(6 / 1.5, "feet"),
  6293. weight: math.unit(220, "lb"),
  6294. name: "Kneeling",
  6295. image: {
  6296. source: "./media/characters/gemini/kneeling.svg",
  6297. bottom: 0.02
  6298. }
  6299. },
  6300. },
  6301. [
  6302. {
  6303. name: "Macro",
  6304. height: math.unit(300, "meters"),
  6305. default: true
  6306. },
  6307. {
  6308. name: "Megamacro",
  6309. height: math.unit(6900, "meters")
  6310. },
  6311. ]
  6312. ))
  6313. characterMakers.push(() => makeCharacter(
  6314. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6315. {
  6316. anthro: {
  6317. height: math.unit(2.35, "meters"),
  6318. weight: math.unit(73, "kg"),
  6319. name: "Anthro",
  6320. image: {
  6321. source: "./media/characters/alicia/anthro.svg",
  6322. extra: 2571 / 2385,
  6323. bottom: 75 / 2648
  6324. }
  6325. },
  6326. paw: {
  6327. height: math.unit(1.32, "feet"),
  6328. name: "Paw",
  6329. image: {
  6330. source: "./media/characters/alicia/paw.svg"
  6331. }
  6332. },
  6333. feral: {
  6334. height: math.unit(1.69, "meters"),
  6335. weight: math.unit(73, "kg"),
  6336. name: "Feral",
  6337. image: {
  6338. source: "./media/characters/alicia/feral.svg",
  6339. extra: 2123 / 1715,
  6340. bottom: 222 / 2349
  6341. }
  6342. },
  6343. },
  6344. [
  6345. {
  6346. name: "Normal",
  6347. height: math.unit(2.35, "meters")
  6348. },
  6349. {
  6350. name: "Macro",
  6351. height: math.unit(60, "meters"),
  6352. default: true
  6353. },
  6354. {
  6355. name: "Megamacro",
  6356. height: math.unit(10000, "kilometers")
  6357. },
  6358. ]
  6359. ))
  6360. characterMakers.push(() => makeCharacter(
  6361. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6362. {
  6363. front: {
  6364. height: math.unit(7, "feet"),
  6365. weight: math.unit(250, "lbs"),
  6366. name: "Front",
  6367. image: {
  6368. source: "./media/characters/archy/front.svg"
  6369. }
  6370. }
  6371. },
  6372. [
  6373. {
  6374. name: "Micro",
  6375. height: math.unit(1, "inch")
  6376. },
  6377. {
  6378. name: "Shorty",
  6379. height: math.unit(5, "feet")
  6380. },
  6381. {
  6382. name: "Normal",
  6383. height: math.unit(7, "feet")
  6384. },
  6385. {
  6386. name: "Macro",
  6387. height: math.unit(600, "meters"),
  6388. default: true
  6389. },
  6390. {
  6391. name: "Megamacro",
  6392. height: math.unit(1, "mile")
  6393. },
  6394. ]
  6395. ))
  6396. characterMakers.push(() => makeCharacter(
  6397. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6398. {
  6399. front: {
  6400. height: math.unit(1.65, "meters"),
  6401. weight: math.unit(74, "kg"),
  6402. name: "Front",
  6403. image: {
  6404. source: "./media/characters/berri/front.svg",
  6405. extra: 857 / 837,
  6406. bottom: 18 / 877
  6407. }
  6408. },
  6409. bum: {
  6410. height: math.unit(1.46, "feet"),
  6411. name: "Bum",
  6412. image: {
  6413. source: "./media/characters/berri/bum.svg"
  6414. }
  6415. },
  6416. mouth: {
  6417. height: math.unit(0.44, "feet"),
  6418. name: "Mouth",
  6419. image: {
  6420. source: "./media/characters/berri/mouth.svg"
  6421. }
  6422. },
  6423. paw: {
  6424. height: math.unit(0.826, "feet"),
  6425. name: "Paw",
  6426. image: {
  6427. source: "./media/characters/berri/paw.svg"
  6428. }
  6429. },
  6430. },
  6431. [
  6432. {
  6433. name: "Normal",
  6434. height: math.unit(1.65, "meters")
  6435. },
  6436. {
  6437. name: "Macro",
  6438. height: math.unit(60, "m"),
  6439. default: true
  6440. },
  6441. {
  6442. name: "Megamacro",
  6443. height: math.unit(9.213, "km")
  6444. },
  6445. {
  6446. name: "Planet Eater",
  6447. height: math.unit(489, "megameters")
  6448. },
  6449. {
  6450. name: "Teramacro",
  6451. height: math.unit(2471635000000, "meters")
  6452. },
  6453. {
  6454. name: "Examacro",
  6455. height: math.unit(8.0624e+26, "meters")
  6456. }
  6457. ]
  6458. ))
  6459. characterMakers.push(() => makeCharacter(
  6460. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6461. {
  6462. front: {
  6463. height: math.unit(1.72, "meters"),
  6464. weight: math.unit(68, "kg"),
  6465. name: "Front",
  6466. image: {
  6467. source: "./media/characters/lexi/front.svg"
  6468. }
  6469. }
  6470. },
  6471. [
  6472. {
  6473. name: "Very Smol",
  6474. height: math.unit(10, "mm")
  6475. },
  6476. {
  6477. name: "Micro",
  6478. height: math.unit(6.8, "cm"),
  6479. default: true
  6480. },
  6481. {
  6482. name: "Normal",
  6483. height: math.unit(1.72, "m")
  6484. }
  6485. ]
  6486. ))
  6487. characterMakers.push(() => makeCharacter(
  6488. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6489. {
  6490. front: {
  6491. height: math.unit(1.69, "meters"),
  6492. weight: math.unit(68, "kg"),
  6493. name: "Front",
  6494. image: {
  6495. source: "./media/characters/martin/front.svg",
  6496. extra: 596 / 581
  6497. }
  6498. }
  6499. },
  6500. [
  6501. {
  6502. name: "Micro",
  6503. height: math.unit(6.85, "cm"),
  6504. default: true
  6505. },
  6506. {
  6507. name: "Normal",
  6508. height: math.unit(1.69, "m")
  6509. }
  6510. ]
  6511. ))
  6512. characterMakers.push(() => makeCharacter(
  6513. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6514. {
  6515. front: {
  6516. height: math.unit(1.69, "meters"),
  6517. weight: math.unit(68, "kg"),
  6518. name: "Front",
  6519. image: {
  6520. source: "./media/characters/juno/front.svg"
  6521. }
  6522. }
  6523. },
  6524. [
  6525. {
  6526. name: "Micro",
  6527. height: math.unit(7, "cm")
  6528. },
  6529. {
  6530. name: "Normal",
  6531. height: math.unit(1.89, "m")
  6532. },
  6533. {
  6534. name: "Macro",
  6535. height: math.unit(353, "meters"),
  6536. default: true
  6537. }
  6538. ]
  6539. ))
  6540. characterMakers.push(() => makeCharacter(
  6541. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6542. {
  6543. front: {
  6544. height: math.unit(1.93, "meters"),
  6545. weight: math.unit(83, "kg"),
  6546. name: "Front",
  6547. image: {
  6548. source: "./media/characters/samantha/front.svg"
  6549. }
  6550. },
  6551. frontClothed: {
  6552. height: math.unit(1.93, "meters"),
  6553. weight: math.unit(83, "kg"),
  6554. name: "Front (Clothed)",
  6555. image: {
  6556. source: "./media/characters/samantha/front-clothed.svg"
  6557. }
  6558. },
  6559. back: {
  6560. height: math.unit(1.93, "meters"),
  6561. weight: math.unit(83, "kg"),
  6562. name: "Back",
  6563. image: {
  6564. source: "./media/characters/samantha/back.svg"
  6565. }
  6566. },
  6567. },
  6568. [
  6569. {
  6570. name: "Normal",
  6571. height: math.unit(1.93, "m")
  6572. },
  6573. {
  6574. name: "Macro",
  6575. height: math.unit(74, "meters"),
  6576. default: true
  6577. },
  6578. {
  6579. name: "Macro+",
  6580. height: math.unit(223, "meters"),
  6581. },
  6582. {
  6583. name: "Megamacro",
  6584. height: math.unit(8381, "meters"),
  6585. },
  6586. {
  6587. name: "Megamacro+",
  6588. height: math.unit(12000, "kilometers")
  6589. },
  6590. ]
  6591. ))
  6592. characterMakers.push(() => makeCharacter(
  6593. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6594. {
  6595. front: {
  6596. height: math.unit(1.92, "meters"),
  6597. weight: math.unit(80, "kg"),
  6598. name: "Front",
  6599. image: {
  6600. source: "./media/characters/dr-clay/front.svg"
  6601. }
  6602. },
  6603. frontClothed: {
  6604. height: math.unit(1.92, "meters"),
  6605. weight: math.unit(80, "kg"),
  6606. name: "Front (Clothed)",
  6607. image: {
  6608. source: "./media/characters/dr-clay/front-clothed.svg"
  6609. }
  6610. }
  6611. },
  6612. [
  6613. {
  6614. name: "Normal",
  6615. height: math.unit(1.92, "m")
  6616. },
  6617. {
  6618. name: "Macro",
  6619. height: math.unit(214, "meters"),
  6620. default: true
  6621. },
  6622. {
  6623. name: "Macro+",
  6624. height: math.unit(12.237, "meters"),
  6625. },
  6626. {
  6627. name: "Megamacro",
  6628. height: math.unit(557, "megameters"),
  6629. },
  6630. {
  6631. name: "Unimaginable",
  6632. height: math.unit(120e9, "lightyears")
  6633. },
  6634. ]
  6635. ))
  6636. characterMakers.push(() => makeCharacter(
  6637. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6638. {
  6639. front: {
  6640. height: math.unit(2, "meters"),
  6641. weight: math.unit(80, "kg"),
  6642. name: "Front",
  6643. image: {
  6644. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6645. }
  6646. }
  6647. },
  6648. [
  6649. {
  6650. name: "Teramacro",
  6651. height: math.unit(500000, "lightyears"),
  6652. default: true
  6653. },
  6654. ]
  6655. ))
  6656. characterMakers.push(() => makeCharacter(
  6657. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6658. {
  6659. crux: {
  6660. height: math.unit(2, "meters"),
  6661. weight: math.unit(150, "kg"),
  6662. name: "Crux",
  6663. image: {
  6664. source: "./media/characters/vemus/crux.svg",
  6665. extra: 1074/936,
  6666. bottom: 23/1097
  6667. }
  6668. },
  6669. skunkTanuki: {
  6670. height: math.unit(2, "meters"),
  6671. weight: math.unit(150, "kg"),
  6672. name: "Skunk-Tanuki",
  6673. image: {
  6674. source: "./media/characters/vemus/skunk-tanuki.svg",
  6675. extra: 926/893,
  6676. bottom: 20/946
  6677. }
  6678. },
  6679. },
  6680. [
  6681. {
  6682. name: "Normal",
  6683. height: math.unit(3.75, "meters"),
  6684. default: true
  6685. },
  6686. {
  6687. name: "Big",
  6688. height: math.unit(8, "meters")
  6689. },
  6690. {
  6691. name: "Macro",
  6692. height: math.unit(100, "meters")
  6693. },
  6694. {
  6695. name: "Macro+",
  6696. height: math.unit(1500, "meters")
  6697. },
  6698. {
  6699. name: "Stellar",
  6700. height: math.unit(14e8, "meters")
  6701. },
  6702. ]
  6703. ))
  6704. characterMakers.push(() => makeCharacter(
  6705. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6706. {
  6707. front: {
  6708. height: math.unit(2, "meters"),
  6709. weight: math.unit(70, "kg"),
  6710. name: "Front",
  6711. image: {
  6712. source: "./media/characters/beherit/front.svg",
  6713. extra: 1408 / 1242
  6714. }
  6715. }
  6716. },
  6717. [
  6718. {
  6719. name: "Normal",
  6720. height: math.unit(6, "feet")
  6721. },
  6722. {
  6723. name: "Lorg",
  6724. height: math.unit(25, "feet"),
  6725. default: true
  6726. },
  6727. {
  6728. name: "Lorger",
  6729. height: math.unit(75, "feet")
  6730. },
  6731. {
  6732. name: "Macro",
  6733. height: math.unit(200, "meters")
  6734. },
  6735. ]
  6736. ))
  6737. characterMakers.push(() => makeCharacter(
  6738. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6739. {
  6740. front: {
  6741. height: math.unit(2, "meters"),
  6742. weight: math.unit(150, "kg"),
  6743. name: "Front",
  6744. image: {
  6745. source: "./media/characters/everett/front.svg",
  6746. extra: 2038 / 1737,
  6747. bottom: 0.03
  6748. }
  6749. },
  6750. paw: {
  6751. height: math.unit(2 / 3.6, "meters"),
  6752. name: "Paw",
  6753. image: {
  6754. source: "./media/characters/everett/paw.svg"
  6755. }
  6756. },
  6757. },
  6758. [
  6759. {
  6760. name: "Normal",
  6761. height: math.unit(15, "feet"),
  6762. default: true
  6763. },
  6764. {
  6765. name: "Lorg",
  6766. height: math.unit(70, "feet"),
  6767. default: true
  6768. },
  6769. {
  6770. name: "Lorger",
  6771. height: math.unit(250, "feet")
  6772. },
  6773. {
  6774. name: "Macro",
  6775. height: math.unit(500, "meters")
  6776. },
  6777. ]
  6778. ))
  6779. characterMakers.push(() => makeCharacter(
  6780. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6781. {
  6782. front: {
  6783. height: math.unit(2, "meters"),
  6784. weight: math.unit(86, "kg"),
  6785. name: "Front",
  6786. image: {
  6787. source: "./media/characters/rose/front.svg",
  6788. extra: 1785/1636,
  6789. bottom: 30/1815
  6790. }
  6791. },
  6792. frontSporty: {
  6793. height: math.unit(2, "meters"),
  6794. weight: math.unit(86, "kg"),
  6795. name: "Front (Sporty)",
  6796. image: {
  6797. source: "./media/characters/rose/front-sporty.svg",
  6798. extra: 350/335,
  6799. bottom: 10/360
  6800. }
  6801. },
  6802. frontAlt: {
  6803. height: math.unit(1.6, "meters"),
  6804. weight: math.unit(86, "kg"),
  6805. name: "Front (Alt)",
  6806. image: {
  6807. source: "./media/characters/rose/front-alt.svg",
  6808. extra: 299/283,
  6809. bottom: 3/302
  6810. }
  6811. },
  6812. plush: {
  6813. height: math.unit(2, "meters"),
  6814. weight: math.unit(86/3, "kg"),
  6815. name: "Plush",
  6816. image: {
  6817. source: "./media/characters/rose/plush.svg",
  6818. extra: 361/337,
  6819. bottom: 11/372
  6820. }
  6821. },
  6822. },
  6823. [
  6824. {
  6825. name: "True Micro",
  6826. height: math.unit(9, "cm")
  6827. },
  6828. {
  6829. name: "Micro",
  6830. height: math.unit(16, "cm")
  6831. },
  6832. {
  6833. name: "Normal",
  6834. height: math.unit(1.85, "meters"),
  6835. default: true
  6836. },
  6837. {
  6838. name: "Mini-Macro",
  6839. height: math.unit(5, "meters")
  6840. },
  6841. {
  6842. name: "Macro",
  6843. height: math.unit(15, "meters")
  6844. },
  6845. {
  6846. name: "True Macro",
  6847. height: math.unit(40, "meters")
  6848. },
  6849. {
  6850. name: "City Scale",
  6851. height: math.unit(1, "km")
  6852. },
  6853. ]
  6854. ))
  6855. characterMakers.push(() => makeCharacter(
  6856. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6857. {
  6858. front: {
  6859. height: math.unit(2, "meters"),
  6860. weight: math.unit(350, "lbs"),
  6861. name: "Front",
  6862. image: {
  6863. source: "./media/characters/regal/front.svg"
  6864. }
  6865. },
  6866. back: {
  6867. height: math.unit(2, "meters"),
  6868. weight: math.unit(350, "lbs"),
  6869. name: "Back",
  6870. image: {
  6871. source: "./media/characters/regal/back.svg"
  6872. }
  6873. },
  6874. },
  6875. [
  6876. {
  6877. name: "Macro",
  6878. height: math.unit(350, "feet"),
  6879. default: true
  6880. }
  6881. ]
  6882. ))
  6883. characterMakers.push(() => makeCharacter(
  6884. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6885. {
  6886. front: {
  6887. height: math.unit(4 + 11 / 12, "feet"),
  6888. weight: math.unit(100, "lbs"),
  6889. name: "Front",
  6890. image: {
  6891. source: "./media/characters/opal/front.svg"
  6892. }
  6893. },
  6894. frontAlt: {
  6895. height: math.unit(4 + 11 / 12, "feet"),
  6896. weight: math.unit(100, "lbs"),
  6897. name: "Front (Alt)",
  6898. image: {
  6899. source: "./media/characters/opal/front-alt.svg"
  6900. }
  6901. },
  6902. },
  6903. [
  6904. {
  6905. name: "Small",
  6906. height: math.unit(4 + 11 / 12, "feet")
  6907. },
  6908. {
  6909. name: "Normal",
  6910. height: math.unit(20, "feet"),
  6911. default: true
  6912. },
  6913. {
  6914. name: "Macro",
  6915. height: math.unit(120, "feet")
  6916. },
  6917. {
  6918. name: "Megamacro",
  6919. height: math.unit(80, "miles")
  6920. },
  6921. {
  6922. name: "True Size",
  6923. height: math.unit(100000, "lightyears")
  6924. },
  6925. ]
  6926. ))
  6927. characterMakers.push(() => makeCharacter(
  6928. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6929. {
  6930. front: {
  6931. height: math.unit(6, "feet"),
  6932. weight: math.unit(200, "lbs"),
  6933. name: "Front",
  6934. image: {
  6935. source: "./media/characters/vector-wuff/front.svg"
  6936. }
  6937. }
  6938. },
  6939. [
  6940. {
  6941. name: "Normal",
  6942. height: math.unit(2.8, "meters")
  6943. },
  6944. {
  6945. name: "Macro",
  6946. height: math.unit(450, "meters"),
  6947. default: true
  6948. },
  6949. {
  6950. name: "Megamacro",
  6951. height: math.unit(15, "kilometers")
  6952. }
  6953. ]
  6954. ))
  6955. characterMakers.push(() => makeCharacter(
  6956. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6957. {
  6958. front: {
  6959. height: math.unit(6, "feet"),
  6960. weight: math.unit(256, "lbs"),
  6961. name: "Front",
  6962. image: {
  6963. source: "./media/characters/dannik/front.svg"
  6964. }
  6965. }
  6966. },
  6967. [
  6968. {
  6969. name: "Macro",
  6970. height: math.unit(69.57, "meters"),
  6971. default: true
  6972. },
  6973. ]
  6974. ))
  6975. characterMakers.push(() => makeCharacter(
  6976. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6977. {
  6978. front: {
  6979. height: math.unit(6, "feet"),
  6980. weight: math.unit(120, "lbs"),
  6981. name: "Front",
  6982. image: {
  6983. source: "./media/characters/azura-saharah/front.svg"
  6984. }
  6985. },
  6986. back: {
  6987. height: math.unit(6, "feet"),
  6988. weight: math.unit(120, "lbs"),
  6989. name: "Back",
  6990. image: {
  6991. source: "./media/characters/azura-saharah/back.svg"
  6992. }
  6993. },
  6994. },
  6995. [
  6996. {
  6997. name: "Macro",
  6998. height: math.unit(100, "feet"),
  6999. default: true
  7000. },
  7001. ]
  7002. ))
  7003. characterMakers.push(() => makeCharacter(
  7004. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7005. {
  7006. side: {
  7007. height: math.unit(5 + 4 / 12, "feet"),
  7008. weight: math.unit(163, "lbs"),
  7009. name: "Side",
  7010. image: {
  7011. source: "./media/characters/kennedy/side.svg"
  7012. }
  7013. }
  7014. },
  7015. [
  7016. {
  7017. name: "Standard Doggo",
  7018. height: math.unit(5 + 4 / 12, "feet")
  7019. },
  7020. {
  7021. name: "Big Doggo",
  7022. height: math.unit(25 + 3 / 12, "feet"),
  7023. default: true
  7024. },
  7025. ]
  7026. ))
  7027. characterMakers.push(() => makeCharacter(
  7028. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7029. {
  7030. front: {
  7031. height: math.unit(6, "feet"),
  7032. weight: math.unit(90, "lbs"),
  7033. name: "Front",
  7034. image: {
  7035. source: "./media/characters/odi-lunar/front.svg"
  7036. }
  7037. }
  7038. },
  7039. [
  7040. {
  7041. name: "Micro",
  7042. height: math.unit(3, "inches"),
  7043. default: true
  7044. },
  7045. {
  7046. name: "Normal",
  7047. height: math.unit(5.5, "feet")
  7048. }
  7049. ]
  7050. ))
  7051. characterMakers.push(() => makeCharacter(
  7052. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7053. {
  7054. back: {
  7055. height: math.unit(6, "feet"),
  7056. weight: math.unit(220, "lbs"),
  7057. name: "Back",
  7058. image: {
  7059. source: "./media/characters/mandake/back.svg"
  7060. }
  7061. }
  7062. },
  7063. [
  7064. {
  7065. name: "Normal",
  7066. height: math.unit(7, "feet"),
  7067. default: true
  7068. },
  7069. {
  7070. name: "Macro",
  7071. height: math.unit(78, "feet")
  7072. },
  7073. {
  7074. name: "Macro+",
  7075. height: math.unit(300, "meters")
  7076. },
  7077. {
  7078. name: "Macro++",
  7079. height: math.unit(2400, "feet")
  7080. },
  7081. {
  7082. name: "Megamacro",
  7083. height: math.unit(5167, "meters")
  7084. },
  7085. {
  7086. name: "Gigamacro",
  7087. height: math.unit(41769, "miles")
  7088. },
  7089. ]
  7090. ))
  7091. characterMakers.push(() => makeCharacter(
  7092. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7093. {
  7094. front: {
  7095. height: math.unit(6, "feet"),
  7096. weight: math.unit(120, "lbs"),
  7097. name: "Front",
  7098. image: {
  7099. source: "./media/characters/yozey/front.svg"
  7100. }
  7101. },
  7102. frontAlt: {
  7103. height: math.unit(6, "feet"),
  7104. weight: math.unit(120, "lbs"),
  7105. name: "Front (Alt)",
  7106. image: {
  7107. source: "./media/characters/yozey/front-alt.svg"
  7108. }
  7109. },
  7110. side: {
  7111. height: math.unit(6, "feet"),
  7112. weight: math.unit(120, "lbs"),
  7113. name: "Side",
  7114. image: {
  7115. source: "./media/characters/yozey/side.svg"
  7116. }
  7117. },
  7118. },
  7119. [
  7120. {
  7121. name: "Micro",
  7122. height: math.unit(3, "inches"),
  7123. default: true
  7124. },
  7125. {
  7126. name: "Normal",
  7127. height: math.unit(6, "feet")
  7128. }
  7129. ]
  7130. ))
  7131. characterMakers.push(() => makeCharacter(
  7132. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7133. {
  7134. front: {
  7135. height: math.unit(6, "feet"),
  7136. weight: math.unit(103, "lbs"),
  7137. name: "Front",
  7138. image: {
  7139. source: "./media/characters/valeska-voss/front.svg"
  7140. }
  7141. }
  7142. },
  7143. [
  7144. {
  7145. name: "Mini-Sized Sub",
  7146. height: math.unit(3.1, "inches")
  7147. },
  7148. {
  7149. name: "Mid-Sized Sub",
  7150. height: math.unit(6.2, "inches")
  7151. },
  7152. {
  7153. name: "Full-Sized Sub",
  7154. height: math.unit(9.3, "inches")
  7155. },
  7156. {
  7157. name: "Normal",
  7158. height: math.unit(5 + 2 / 12, "foot"),
  7159. default: true
  7160. },
  7161. ]
  7162. ))
  7163. characterMakers.push(() => makeCharacter(
  7164. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7165. {
  7166. front: {
  7167. height: math.unit(6, "feet"),
  7168. weight: math.unit(160, "lbs"),
  7169. name: "Front",
  7170. image: {
  7171. source: "./media/characters/gene-zeta/front.svg",
  7172. extra: 3006 / 2826,
  7173. bottom: 182 / 3188
  7174. }
  7175. }
  7176. },
  7177. [
  7178. {
  7179. name: "Micro",
  7180. height: math.unit(6, "inches")
  7181. },
  7182. {
  7183. name: "Normal",
  7184. height: math.unit(5 + 11 / 12, "foot"),
  7185. default: true
  7186. },
  7187. {
  7188. name: "Macro",
  7189. height: math.unit(140, "feet")
  7190. },
  7191. {
  7192. name: "Supercharged",
  7193. height: math.unit(2500, "feet")
  7194. },
  7195. ]
  7196. ))
  7197. characterMakers.push(() => makeCharacter(
  7198. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7199. {
  7200. front: {
  7201. height: math.unit(6, "feet"),
  7202. weight: math.unit(350, "lbs"),
  7203. name: "Front",
  7204. image: {
  7205. source: "./media/characters/razinox/front.svg",
  7206. extra: 1686 / 1548,
  7207. bottom: 28.2 / 1868
  7208. }
  7209. },
  7210. back: {
  7211. height: math.unit(6, "feet"),
  7212. weight: math.unit(350, "lbs"),
  7213. name: "Back",
  7214. image: {
  7215. source: "./media/characters/razinox/back.svg",
  7216. extra: 1660 / 1590,
  7217. bottom: 15 / 1665
  7218. }
  7219. },
  7220. },
  7221. [
  7222. {
  7223. name: "Normal",
  7224. height: math.unit(10 + 8 / 12, "foot")
  7225. },
  7226. {
  7227. name: "Minimacro",
  7228. height: math.unit(15, "foot")
  7229. },
  7230. {
  7231. name: "Macro",
  7232. height: math.unit(60, "foot"),
  7233. default: true
  7234. },
  7235. {
  7236. name: "Megamacro",
  7237. height: math.unit(5, "miles")
  7238. },
  7239. {
  7240. name: "Gigamacro",
  7241. height: math.unit(6000, "miles")
  7242. },
  7243. ]
  7244. ))
  7245. characterMakers.push(() => makeCharacter(
  7246. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7247. {
  7248. front: {
  7249. height: math.unit(6, "feet"),
  7250. weight: math.unit(150, "lbs"),
  7251. name: "Front",
  7252. image: {
  7253. source: "./media/characters/cobalt/front.svg"
  7254. }
  7255. }
  7256. },
  7257. [
  7258. {
  7259. name: "Normal",
  7260. height: math.unit(8 + 1 / 12, "foot")
  7261. },
  7262. {
  7263. name: "Macro",
  7264. height: math.unit(111, "foot"),
  7265. default: true
  7266. },
  7267. {
  7268. name: "Supracosmic",
  7269. height: math.unit(1e42, "feet")
  7270. },
  7271. ]
  7272. ))
  7273. characterMakers.push(() => makeCharacter(
  7274. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7275. {
  7276. front: {
  7277. height: math.unit(6, "feet"),
  7278. weight: math.unit(140, "lbs"),
  7279. name: "Front",
  7280. image: {
  7281. source: "./media/characters/amanda/front.svg"
  7282. }
  7283. }
  7284. },
  7285. [
  7286. {
  7287. name: "Micro",
  7288. height: math.unit(5, "inches"),
  7289. default: true
  7290. },
  7291. ]
  7292. ))
  7293. characterMakers.push(() => makeCharacter(
  7294. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7295. {
  7296. front: {
  7297. height: math.unit(2.75, "meters"),
  7298. weight: math.unit(1200, "lb"),
  7299. name: "Front",
  7300. image: {
  7301. source: "./media/characters/teal/front.svg",
  7302. extra: 2463 / 2320,
  7303. bottom: 166 / 2629
  7304. }
  7305. },
  7306. back: {
  7307. height: math.unit(2.75, "meters"),
  7308. weight: math.unit(1200, "lb"),
  7309. name: "Back",
  7310. image: {
  7311. source: "./media/characters/teal/back.svg",
  7312. extra: 2580 / 2489,
  7313. bottom: 151 / 2731
  7314. }
  7315. },
  7316. sitting: {
  7317. height: math.unit(1.9, "meters"),
  7318. weight: math.unit(1200, "lb"),
  7319. name: "Sitting",
  7320. image: {
  7321. source: "./media/characters/teal/sitting.svg",
  7322. extra: 623 / 590,
  7323. bottom: 121 / 744
  7324. }
  7325. },
  7326. standing: {
  7327. height: math.unit(2.75, "meters"),
  7328. weight: math.unit(1200, "lb"),
  7329. name: "Standing",
  7330. image: {
  7331. source: "./media/characters/teal/standing.svg",
  7332. extra: 923 / 893,
  7333. bottom: 60 / 983
  7334. }
  7335. },
  7336. stretching: {
  7337. height: math.unit(3.65, "meters"),
  7338. weight: math.unit(1200, "lb"),
  7339. name: "Stretching",
  7340. image: {
  7341. source: "./media/characters/teal/stretching.svg",
  7342. extra: 1276 / 1244,
  7343. bottom: 0 / 1276
  7344. }
  7345. },
  7346. legged: {
  7347. height: math.unit(1.3, "meters"),
  7348. weight: math.unit(100, "lb"),
  7349. name: "Legged",
  7350. image: {
  7351. source: "./media/characters/teal/legged.svg",
  7352. extra: 462 / 437,
  7353. bottom: 24 / 486
  7354. }
  7355. },
  7356. naga: {
  7357. height: math.unit(5.4, "meters"),
  7358. weight: math.unit(4000, "lb"),
  7359. name: "Naga",
  7360. image: {
  7361. source: "./media/characters/teal/naga.svg",
  7362. extra: 1902 / 1858,
  7363. bottom: 0 / 1902
  7364. }
  7365. },
  7366. hand: {
  7367. height: math.unit(0.52, "meters"),
  7368. name: "Hand",
  7369. image: {
  7370. source: "./media/characters/teal/hand.svg"
  7371. }
  7372. },
  7373. maw: {
  7374. height: math.unit(0.43, "meters"),
  7375. name: "Maw",
  7376. image: {
  7377. source: "./media/characters/teal/maw.svg"
  7378. }
  7379. },
  7380. slit: {
  7381. height: math.unit(0.25, "meters"),
  7382. name: "Slit",
  7383. image: {
  7384. source: "./media/characters/teal/slit.svg"
  7385. }
  7386. },
  7387. },
  7388. [
  7389. {
  7390. name: "Normal",
  7391. height: math.unit(2.75, "meters"),
  7392. default: true
  7393. },
  7394. {
  7395. name: "Macro",
  7396. height: math.unit(300, "feet")
  7397. },
  7398. {
  7399. name: "Macro+",
  7400. height: math.unit(2000, "feet")
  7401. },
  7402. ]
  7403. ))
  7404. characterMakers.push(() => makeCharacter(
  7405. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7406. {
  7407. frontCat: {
  7408. height: math.unit(6, "feet"),
  7409. weight: math.unit(180, "lbs"),
  7410. name: "Front (Cat)",
  7411. image: {
  7412. source: "./media/characters/ravin-amulet/front-cat.svg"
  7413. }
  7414. },
  7415. frontCatAlt: {
  7416. height: math.unit(6, "feet"),
  7417. weight: math.unit(180, "lbs"),
  7418. name: "Front (Alt, Cat)",
  7419. image: {
  7420. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7421. }
  7422. },
  7423. frontWerewolf: {
  7424. height: math.unit(6 * 1.2, "feet"),
  7425. weight: math.unit(225, "lbs"),
  7426. name: "Front (Werewolf)",
  7427. image: {
  7428. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7429. }
  7430. },
  7431. backWerewolf: {
  7432. height: math.unit(6 * 1.2, "feet"),
  7433. weight: math.unit(225, "lbs"),
  7434. name: "Back (Werewolf)",
  7435. image: {
  7436. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7437. }
  7438. },
  7439. },
  7440. [
  7441. {
  7442. name: "Nano",
  7443. height: math.unit(1, "micrometer")
  7444. },
  7445. {
  7446. name: "Micro",
  7447. height: math.unit(1, "inch")
  7448. },
  7449. {
  7450. name: "Normal",
  7451. height: math.unit(6, "feet"),
  7452. default: true
  7453. },
  7454. {
  7455. name: "Macro",
  7456. height: math.unit(60, "feet")
  7457. }
  7458. ]
  7459. ))
  7460. characterMakers.push(() => makeCharacter(
  7461. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7462. {
  7463. front: {
  7464. height: math.unit(6, "feet"),
  7465. weight: math.unit(165, "lbs"),
  7466. name: "Front",
  7467. image: {
  7468. source: "./media/characters/fluoresce/front.svg"
  7469. }
  7470. }
  7471. },
  7472. [
  7473. {
  7474. name: "Micro",
  7475. height: math.unit(6, "cm")
  7476. },
  7477. {
  7478. name: "Normal",
  7479. height: math.unit(5 + 7 / 12, "feet"),
  7480. default: true
  7481. },
  7482. {
  7483. name: "Macro",
  7484. height: math.unit(56, "feet")
  7485. },
  7486. {
  7487. name: "Megamacro",
  7488. height: math.unit(1.9, "miles")
  7489. },
  7490. ]
  7491. ))
  7492. characterMakers.push(() => makeCharacter(
  7493. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7494. {
  7495. front: {
  7496. height: math.unit(9 + 6 / 12, "feet"),
  7497. weight: math.unit(523, "lbs"),
  7498. name: "Side",
  7499. image: {
  7500. source: "./media/characters/aurora/side.svg"
  7501. }
  7502. }
  7503. },
  7504. [
  7505. {
  7506. name: "Normal",
  7507. height: math.unit(9 + 6 / 12, "feet")
  7508. },
  7509. {
  7510. name: "Macro",
  7511. height: math.unit(96, "feet"),
  7512. default: true
  7513. },
  7514. {
  7515. name: "Macro+",
  7516. height: math.unit(243, "feet")
  7517. },
  7518. ]
  7519. ))
  7520. characterMakers.push(() => makeCharacter(
  7521. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7522. {
  7523. front: {
  7524. height: math.unit(194, "cm"),
  7525. weight: math.unit(90, "kg"),
  7526. name: "Front",
  7527. image: {
  7528. source: "./media/characters/ranek/front.svg"
  7529. }
  7530. },
  7531. side: {
  7532. height: math.unit(194, "cm"),
  7533. weight: math.unit(90, "kg"),
  7534. name: "Side",
  7535. image: {
  7536. source: "./media/characters/ranek/side.svg"
  7537. }
  7538. },
  7539. back: {
  7540. height: math.unit(194, "cm"),
  7541. weight: math.unit(90, "kg"),
  7542. name: "Back",
  7543. image: {
  7544. source: "./media/characters/ranek/back.svg"
  7545. }
  7546. },
  7547. feral: {
  7548. height: math.unit(30, "cm"),
  7549. weight: math.unit(1.6, "lbs"),
  7550. name: "Feral",
  7551. image: {
  7552. source: "./media/characters/ranek/feral.svg"
  7553. }
  7554. },
  7555. },
  7556. [
  7557. {
  7558. name: "Normal",
  7559. height: math.unit(194, "cm"),
  7560. default: true
  7561. },
  7562. {
  7563. name: "Macro",
  7564. height: math.unit(100, "meters")
  7565. },
  7566. ]
  7567. ))
  7568. characterMakers.push(() => makeCharacter(
  7569. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7570. {
  7571. front: {
  7572. height: math.unit(5 + 6 / 12, "feet"),
  7573. weight: math.unit(153, "lbs"),
  7574. name: "Front",
  7575. image: {
  7576. source: "./media/characters/andrew-cooper/front.svg"
  7577. }
  7578. },
  7579. },
  7580. [
  7581. {
  7582. name: "Nano",
  7583. height: math.unit(1, "mm")
  7584. },
  7585. {
  7586. name: "Micro",
  7587. height: math.unit(2, "inches")
  7588. },
  7589. {
  7590. name: "Normal",
  7591. height: math.unit(5 + 6 / 12, "feet"),
  7592. default: true
  7593. }
  7594. ]
  7595. ))
  7596. characterMakers.push(() => makeCharacter(
  7597. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7598. {
  7599. front: {
  7600. height: math.unit(6, "feet"),
  7601. weight: math.unit(180, "lbs"),
  7602. name: "Front",
  7603. image: {
  7604. source: "./media/characters/akane-sato/front.svg",
  7605. extra: 1219 / 1140
  7606. }
  7607. },
  7608. back: {
  7609. height: math.unit(6, "feet"),
  7610. weight: math.unit(180, "lbs"),
  7611. name: "Back",
  7612. image: {
  7613. source: "./media/characters/akane-sato/back.svg",
  7614. extra: 1219 / 1170
  7615. }
  7616. },
  7617. },
  7618. [
  7619. {
  7620. name: "Normal",
  7621. height: math.unit(2.5, "meters")
  7622. },
  7623. {
  7624. name: "Macro",
  7625. height: math.unit(250, "meters"),
  7626. default: true
  7627. },
  7628. {
  7629. name: "Megamacro",
  7630. height: math.unit(25, "km")
  7631. },
  7632. ]
  7633. ))
  7634. characterMakers.push(() => makeCharacter(
  7635. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7636. {
  7637. front: {
  7638. height: math.unit(6, "feet"),
  7639. weight: math.unit(65, "kg"),
  7640. name: "Front",
  7641. image: {
  7642. source: "./media/characters/rook/front.svg",
  7643. extra: 960 / 950
  7644. }
  7645. }
  7646. },
  7647. [
  7648. {
  7649. name: "Normal",
  7650. height: math.unit(8.8, "feet")
  7651. },
  7652. {
  7653. name: "Macro",
  7654. height: math.unit(88, "feet"),
  7655. default: true
  7656. },
  7657. {
  7658. name: "Megamacro",
  7659. height: math.unit(8, "miles")
  7660. },
  7661. ]
  7662. ))
  7663. characterMakers.push(() => makeCharacter(
  7664. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7665. {
  7666. front: {
  7667. height: math.unit(12 + 2 / 12, "feet"),
  7668. weight: math.unit(808, "lbs"),
  7669. name: "Front",
  7670. image: {
  7671. source: "./media/characters/prodigy/front.svg"
  7672. }
  7673. }
  7674. },
  7675. [
  7676. {
  7677. name: "Normal",
  7678. height: math.unit(12 + 2 / 12, "feet"),
  7679. default: true
  7680. },
  7681. {
  7682. name: "Macro",
  7683. height: math.unit(143, "feet")
  7684. },
  7685. {
  7686. name: "Macro+",
  7687. height: math.unit(400, "feet")
  7688. },
  7689. ]
  7690. ))
  7691. characterMakers.push(() => makeCharacter(
  7692. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7693. {
  7694. front: {
  7695. height: math.unit(6, "feet"),
  7696. weight: math.unit(225, "lbs"),
  7697. name: "Front",
  7698. image: {
  7699. source: "./media/characters/daniel/front.svg"
  7700. }
  7701. },
  7702. leaning: {
  7703. height: math.unit(6, "feet"),
  7704. weight: math.unit(225, "lbs"),
  7705. name: "Leaning",
  7706. image: {
  7707. source: "./media/characters/daniel/leaning.svg"
  7708. }
  7709. },
  7710. },
  7711. [
  7712. {
  7713. name: "Macro",
  7714. height: math.unit(1000, "feet"),
  7715. default: true
  7716. },
  7717. ]
  7718. ))
  7719. characterMakers.push(() => makeCharacter(
  7720. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7721. {
  7722. front: {
  7723. height: math.unit(6, "feet"),
  7724. weight: math.unit(88, "lbs"),
  7725. name: "Front",
  7726. image: {
  7727. source: "./media/characters/chiros/front.svg",
  7728. extra: 306 / 226
  7729. }
  7730. },
  7731. side: {
  7732. height: math.unit(6, "feet"),
  7733. weight: math.unit(88, "lbs"),
  7734. name: "Side",
  7735. image: {
  7736. source: "./media/characters/chiros/side.svg",
  7737. extra: 306 / 226
  7738. }
  7739. },
  7740. },
  7741. [
  7742. {
  7743. name: "Normal",
  7744. height: math.unit(6, "cm"),
  7745. default: true
  7746. },
  7747. ]
  7748. ))
  7749. characterMakers.push(() => makeCharacter(
  7750. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7751. {
  7752. front: {
  7753. height: math.unit(6, "feet"),
  7754. weight: math.unit(100, "lbs"),
  7755. name: "Front",
  7756. image: {
  7757. source: "./media/characters/selka/front.svg",
  7758. extra: 947 / 887
  7759. }
  7760. }
  7761. },
  7762. [
  7763. {
  7764. name: "Normal",
  7765. height: math.unit(5, "cm"),
  7766. default: true
  7767. },
  7768. ]
  7769. ))
  7770. characterMakers.push(() => makeCharacter(
  7771. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7772. {
  7773. front: {
  7774. height: math.unit(8 + 3 / 12, "feet"),
  7775. weight: math.unit(424, "lbs"),
  7776. name: "Front",
  7777. image: {
  7778. source: "./media/characters/verin/front.svg",
  7779. extra: 1845 / 1550
  7780. }
  7781. },
  7782. frontArmored: {
  7783. height: math.unit(8 + 3 / 12, "feet"),
  7784. weight: math.unit(424, "lbs"),
  7785. name: "Front (Armored)",
  7786. image: {
  7787. source: "./media/characters/verin/front-armor.svg",
  7788. extra: 1845 / 1550,
  7789. bottom: 0.01
  7790. }
  7791. },
  7792. back: {
  7793. height: math.unit(8 + 3 / 12, "feet"),
  7794. weight: math.unit(424, "lbs"),
  7795. name: "Back",
  7796. image: {
  7797. source: "./media/characters/verin/back.svg",
  7798. bottom: 0.1,
  7799. extra: 1
  7800. }
  7801. },
  7802. foot: {
  7803. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7804. name: "Foot",
  7805. image: {
  7806. source: "./media/characters/verin/foot.svg"
  7807. }
  7808. },
  7809. },
  7810. [
  7811. {
  7812. name: "Normal",
  7813. height: math.unit(8 + 3 / 12, "feet")
  7814. },
  7815. {
  7816. name: "Minimacro",
  7817. height: math.unit(21, "feet"),
  7818. default: true
  7819. },
  7820. {
  7821. name: "Macro",
  7822. height: math.unit(626, "feet")
  7823. },
  7824. ]
  7825. ))
  7826. characterMakers.push(() => makeCharacter(
  7827. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7828. {
  7829. front: {
  7830. height: math.unit(2.718, "meters"),
  7831. weight: math.unit(150, "lbs"),
  7832. name: "Front",
  7833. image: {
  7834. source: "./media/characters/sovrim-terraquian/front.svg"
  7835. }
  7836. },
  7837. back: {
  7838. height: math.unit(2.718, "meters"),
  7839. weight: math.unit(150, "lbs"),
  7840. name: "Back",
  7841. image: {
  7842. source: "./media/characters/sovrim-terraquian/back.svg"
  7843. }
  7844. }
  7845. },
  7846. [
  7847. {
  7848. name: "Micro",
  7849. height: math.unit(2, "inches")
  7850. },
  7851. {
  7852. name: "Small",
  7853. height: math.unit(1, "meter")
  7854. },
  7855. {
  7856. name: "Normal",
  7857. height: math.unit(Math.E, "meters"),
  7858. default: true
  7859. },
  7860. {
  7861. name: "Macro",
  7862. height: math.unit(20, "meters")
  7863. },
  7864. {
  7865. name: "Macro+",
  7866. height: math.unit(400, "meters")
  7867. },
  7868. ]
  7869. ))
  7870. characterMakers.push(() => makeCharacter(
  7871. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7872. {
  7873. front: {
  7874. height: math.unit(7, "feet"),
  7875. weight: math.unit(489, "lbs"),
  7876. name: "Front",
  7877. image: {
  7878. source: "./media/characters/reece-silvermane/front.svg",
  7879. bottom: 0.02,
  7880. extra: 1
  7881. }
  7882. },
  7883. },
  7884. [
  7885. {
  7886. name: "Macro",
  7887. height: math.unit(1.5, "miles"),
  7888. default: true
  7889. },
  7890. ]
  7891. ))
  7892. characterMakers.push(() => makeCharacter(
  7893. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7894. {
  7895. front: {
  7896. height: math.unit(6, "feet"),
  7897. weight: math.unit(78, "kg"),
  7898. name: "Front",
  7899. image: {
  7900. source: "./media/characters/kane/front.svg",
  7901. extra: 978 / 899
  7902. }
  7903. },
  7904. },
  7905. [
  7906. {
  7907. name: "Normal",
  7908. height: math.unit(2.1, "m"),
  7909. },
  7910. {
  7911. name: "Macro",
  7912. height: math.unit(1, "km"),
  7913. default: true
  7914. },
  7915. ]
  7916. ))
  7917. characterMakers.push(() => makeCharacter(
  7918. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7919. {
  7920. front: {
  7921. height: math.unit(6, "feet"),
  7922. weight: math.unit(200, "kg"),
  7923. name: "Front",
  7924. image: {
  7925. source: "./media/characters/tegon/front.svg",
  7926. bottom: 0.01,
  7927. extra: 1
  7928. }
  7929. },
  7930. },
  7931. [
  7932. {
  7933. name: "Micro",
  7934. height: math.unit(1, "inch")
  7935. },
  7936. {
  7937. name: "Normal",
  7938. height: math.unit(6 + 3 / 12, "feet"),
  7939. default: true
  7940. },
  7941. {
  7942. name: "Macro",
  7943. height: math.unit(300, "feet")
  7944. },
  7945. {
  7946. name: "Megamacro",
  7947. height: math.unit(69, "miles")
  7948. },
  7949. ]
  7950. ))
  7951. characterMakers.push(() => makeCharacter(
  7952. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7953. {
  7954. side: {
  7955. height: math.unit(6, "feet"),
  7956. weight: math.unit(2304, "lbs"),
  7957. name: "Side",
  7958. image: {
  7959. source: "./media/characters/arcturax/side.svg",
  7960. extra: 790 / 376,
  7961. bottom: 0.01
  7962. }
  7963. },
  7964. },
  7965. [
  7966. {
  7967. name: "Micro",
  7968. height: math.unit(2, "inch")
  7969. },
  7970. {
  7971. name: "Normal",
  7972. height: math.unit(6, "feet")
  7973. },
  7974. {
  7975. name: "Macro",
  7976. height: math.unit(39, "feet"),
  7977. default: true
  7978. },
  7979. {
  7980. name: "Megamacro",
  7981. height: math.unit(7, "miles")
  7982. },
  7983. ]
  7984. ))
  7985. characterMakers.push(() => makeCharacter(
  7986. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7987. {
  7988. front: {
  7989. height: math.unit(6, "feet"),
  7990. weight: math.unit(50, "lbs"),
  7991. name: "Front",
  7992. image: {
  7993. source: "./media/characters/sentri/front.svg",
  7994. extra: 1750 / 1570,
  7995. bottom: 0.025
  7996. }
  7997. },
  7998. frontAlt: {
  7999. height: math.unit(6, "feet"),
  8000. weight: math.unit(50, "lbs"),
  8001. name: "Front (Alt)",
  8002. image: {
  8003. source: "./media/characters/sentri/front-alt.svg",
  8004. extra: 1750 / 1570,
  8005. bottom: 0.025
  8006. }
  8007. },
  8008. },
  8009. [
  8010. {
  8011. name: "Normal",
  8012. height: math.unit(15, "feet"),
  8013. default: true
  8014. },
  8015. {
  8016. name: "Macro",
  8017. height: math.unit(2500, "feet")
  8018. }
  8019. ]
  8020. ))
  8021. characterMakers.push(() => makeCharacter(
  8022. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8023. {
  8024. front: {
  8025. height: math.unit(5 + 8 / 12, "feet"),
  8026. weight: math.unit(130, "lbs"),
  8027. name: "Front",
  8028. image: {
  8029. source: "./media/characters/corvin/front.svg",
  8030. extra: 1803 / 1629
  8031. }
  8032. },
  8033. frontShirt: {
  8034. height: math.unit(5 + 8 / 12, "feet"),
  8035. weight: math.unit(130, "lbs"),
  8036. name: "Front (Shirt)",
  8037. image: {
  8038. source: "./media/characters/corvin/front-shirt.svg",
  8039. extra: 1803 / 1629
  8040. }
  8041. },
  8042. frontPoncho: {
  8043. height: math.unit(5 + 8 / 12, "feet"),
  8044. weight: math.unit(130, "lbs"),
  8045. name: "Front (Poncho)",
  8046. image: {
  8047. source: "./media/characters/corvin/front-poncho.svg",
  8048. extra: 1803 / 1629
  8049. }
  8050. },
  8051. side: {
  8052. height: math.unit(5 + 8 / 12, "feet"),
  8053. weight: math.unit(130, "lbs"),
  8054. name: "Side",
  8055. image: {
  8056. source: "./media/characters/corvin/side.svg",
  8057. extra: 1012 / 945
  8058. }
  8059. },
  8060. back: {
  8061. height: math.unit(5 + 8 / 12, "feet"),
  8062. weight: math.unit(130, "lbs"),
  8063. name: "Back",
  8064. image: {
  8065. source: "./media/characters/corvin/back.svg",
  8066. extra: 1803 / 1629
  8067. }
  8068. },
  8069. },
  8070. [
  8071. {
  8072. name: "Micro",
  8073. height: math.unit(3, "inches")
  8074. },
  8075. {
  8076. name: "Normal",
  8077. height: math.unit(5 + 8 / 12, "feet")
  8078. },
  8079. {
  8080. name: "Macro",
  8081. height: math.unit(300, "feet"),
  8082. default: true
  8083. },
  8084. {
  8085. name: "Megamacro",
  8086. height: math.unit(500, "miles")
  8087. }
  8088. ]
  8089. ))
  8090. characterMakers.push(() => makeCharacter(
  8091. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8092. {
  8093. front: {
  8094. height: math.unit(6, "feet"),
  8095. weight: math.unit(135, "lbs"),
  8096. name: "Front",
  8097. image: {
  8098. source: "./media/characters/q/front.svg",
  8099. extra: 854 / 752,
  8100. bottom: 0.005
  8101. }
  8102. },
  8103. back: {
  8104. height: math.unit(6, "feet"),
  8105. weight: math.unit(130, "lbs"),
  8106. name: "Back",
  8107. image: {
  8108. source: "./media/characters/q/back.svg",
  8109. extra: 854 / 752
  8110. }
  8111. },
  8112. },
  8113. [
  8114. {
  8115. name: "Macro",
  8116. height: math.unit(90, "feet"),
  8117. default: true
  8118. },
  8119. {
  8120. name: "Extra Macro",
  8121. height: math.unit(300, "feet"),
  8122. },
  8123. {
  8124. name: "BIG WALF",
  8125. height: math.unit(750, "feet"),
  8126. },
  8127. ]
  8128. ))
  8129. characterMakers.push(() => makeCharacter(
  8130. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8131. {
  8132. front: {
  8133. height: math.unit(6, "feet"),
  8134. weight: math.unit(150, "lbs"),
  8135. name: "Front",
  8136. image: {
  8137. source: "./media/characters/carley/front.svg",
  8138. extra: 3927 / 3540,
  8139. bottom: 29.2 / 735
  8140. }
  8141. }
  8142. },
  8143. [
  8144. {
  8145. name: "Normal",
  8146. height: math.unit(6 + 3 / 12, "feet")
  8147. },
  8148. {
  8149. name: "Macro",
  8150. height: math.unit(185, "feet"),
  8151. default: true
  8152. },
  8153. {
  8154. name: "Megamacro",
  8155. height: math.unit(8, "miles"),
  8156. },
  8157. ]
  8158. ))
  8159. characterMakers.push(() => makeCharacter(
  8160. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8161. {
  8162. front: {
  8163. height: math.unit(3, "feet"),
  8164. weight: math.unit(28, "lbs"),
  8165. name: "Front",
  8166. image: {
  8167. source: "./media/characters/citrine/front.svg"
  8168. }
  8169. }
  8170. },
  8171. [
  8172. {
  8173. name: "Normal",
  8174. height: math.unit(3, "feet"),
  8175. default: true
  8176. }
  8177. ]
  8178. ))
  8179. characterMakers.push(() => makeCharacter(
  8180. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8181. {
  8182. front: {
  8183. height: math.unit(14, "feet"),
  8184. weight: math.unit(1450, "kg"),
  8185. capacity: math.unit(15, "people"),
  8186. name: "Front",
  8187. image: {
  8188. source: "./media/characters/aura-starwind/front.svg",
  8189. extra: 1440/1327,
  8190. bottom: 11/1451
  8191. }
  8192. },
  8193. side: {
  8194. height: math.unit(14, "feet"),
  8195. weight: math.unit(1450, "kg"),
  8196. capacity: math.unit(15, "people"),
  8197. name: "Side",
  8198. image: {
  8199. source: "./media/characters/aura-starwind/side.svg",
  8200. extra: 1654 / 1497
  8201. }
  8202. },
  8203. taur: {
  8204. height: math.unit(18, "feet"),
  8205. weight: math.unit(5500, "kg"),
  8206. capacity: math.unit(50, "people"),
  8207. name: "Taur",
  8208. image: {
  8209. source: "./media/characters/aura-starwind/taur.svg",
  8210. extra: 1760 / 1650
  8211. }
  8212. },
  8213. feral: {
  8214. height: math.unit(46, "feet"),
  8215. weight: math.unit(25000, "kg"),
  8216. capacity: math.unit(120, "people"),
  8217. name: "Feral",
  8218. image: {
  8219. source: "./media/characters/aura-starwind/feral.svg"
  8220. }
  8221. },
  8222. },
  8223. [
  8224. {
  8225. name: "Normal",
  8226. height: math.unit(14, "feet"),
  8227. default: true
  8228. },
  8229. {
  8230. name: "Macro",
  8231. height: math.unit(50, "meters")
  8232. },
  8233. {
  8234. name: "Megamacro",
  8235. height: math.unit(5000, "meters")
  8236. },
  8237. {
  8238. name: "Gigamacro",
  8239. height: math.unit(100000, "kilometers")
  8240. },
  8241. ]
  8242. ))
  8243. characterMakers.push(() => makeCharacter(
  8244. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8245. {
  8246. front: {
  8247. height: math.unit(2 + 7 / 12, "feet"),
  8248. weight: math.unit(32, "lbs"),
  8249. name: "Front",
  8250. image: {
  8251. source: "./media/characters/rivet/front.svg",
  8252. extra: 1716 / 1658,
  8253. bottom: 0.03
  8254. }
  8255. },
  8256. foot: {
  8257. height: math.unit(0.551, "feet"),
  8258. name: "Rivet's Foot",
  8259. image: {
  8260. source: "./media/characters/rivet/foot.svg"
  8261. },
  8262. rename: true
  8263. }
  8264. },
  8265. [
  8266. {
  8267. name: "Micro",
  8268. height: math.unit(1.5, "inches"),
  8269. },
  8270. {
  8271. name: "Normal",
  8272. height: math.unit(2 + 7 / 12, "feet"),
  8273. default: true
  8274. },
  8275. {
  8276. name: "Macro",
  8277. height: math.unit(85, "feet")
  8278. },
  8279. {
  8280. name: "Megamacro",
  8281. height: math.unit(2.2, "km")
  8282. }
  8283. ]
  8284. ))
  8285. characterMakers.push(() => makeCharacter(
  8286. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8287. {
  8288. front: {
  8289. height: math.unit(5 + 9 / 12, "feet"),
  8290. weight: math.unit(150, "lbs"),
  8291. name: "Front",
  8292. image: {
  8293. source: "./media/characters/coffee/front.svg",
  8294. extra: 3666 / 3032,
  8295. bottom: 0.04
  8296. }
  8297. },
  8298. foot: {
  8299. height: math.unit(1.29, "feet"),
  8300. name: "Foot",
  8301. image: {
  8302. source: "./media/characters/coffee/foot.svg"
  8303. }
  8304. },
  8305. },
  8306. [
  8307. {
  8308. name: "Micro",
  8309. height: math.unit(2, "inches"),
  8310. },
  8311. {
  8312. name: "Normal",
  8313. height: math.unit(5 + 9 / 12, "feet"),
  8314. default: true
  8315. },
  8316. {
  8317. name: "Macro",
  8318. height: math.unit(800, "feet")
  8319. },
  8320. {
  8321. name: "Megamacro",
  8322. height: math.unit(25, "miles")
  8323. }
  8324. ]
  8325. ))
  8326. characterMakers.push(() => makeCharacter(
  8327. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8328. {
  8329. front: {
  8330. height: math.unit(6, "feet"),
  8331. weight: math.unit(200, "lbs"),
  8332. name: "Front",
  8333. image: {
  8334. source: "./media/characters/chari-gal/front.svg",
  8335. extra: 1568 / 1385,
  8336. bottom: 0.047
  8337. }
  8338. },
  8339. gigantamax: {
  8340. height: math.unit(6 * 16, "feet"),
  8341. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8342. name: "Gigantamax",
  8343. image: {
  8344. source: "./media/characters/chari-gal/gigantamax.svg",
  8345. extra: 1124 / 888,
  8346. bottom: 0.03
  8347. }
  8348. },
  8349. },
  8350. [
  8351. {
  8352. name: "Normal",
  8353. height: math.unit(5 + 7 / 12, "feet")
  8354. },
  8355. {
  8356. name: "Macro",
  8357. height: math.unit(200, "feet"),
  8358. default: true
  8359. }
  8360. ]
  8361. ))
  8362. characterMakers.push(() => makeCharacter(
  8363. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8364. {
  8365. front: {
  8366. height: math.unit(6, "feet"),
  8367. weight: math.unit(150, "lbs"),
  8368. name: "Front",
  8369. image: {
  8370. source: "./media/characters/nova/front.svg",
  8371. extra: 5000 / 4722,
  8372. bottom: 0.02
  8373. }
  8374. }
  8375. },
  8376. [
  8377. {
  8378. name: "Micro-",
  8379. height: math.unit(0.8, "inches")
  8380. },
  8381. {
  8382. name: "Micro",
  8383. height: math.unit(2, "inches"),
  8384. default: true
  8385. },
  8386. ]
  8387. ))
  8388. characterMakers.push(() => makeCharacter(
  8389. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8390. {
  8391. front: {
  8392. height: math.unit(3 + 1 / 12, "feet"),
  8393. weight: math.unit(21.7, "lbs"),
  8394. name: "Front",
  8395. image: {
  8396. source: "./media/characters/argent/front.svg",
  8397. extra: 1471 / 1331,
  8398. bottom: 100.8 / 1575.5
  8399. }
  8400. }
  8401. },
  8402. [
  8403. {
  8404. name: "Micro",
  8405. height: math.unit(2, "inches")
  8406. },
  8407. {
  8408. name: "Normal",
  8409. height: math.unit(3 + 1 / 12, "feet"),
  8410. default: true
  8411. },
  8412. {
  8413. name: "Macro",
  8414. height: math.unit(120, "feet")
  8415. },
  8416. ]
  8417. ))
  8418. characterMakers.push(() => makeCharacter(
  8419. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8420. {
  8421. lamp: {
  8422. height: math.unit(7 * 1559 / 989, "feet"),
  8423. name: "Magic Lamp",
  8424. image: {
  8425. source: "./media/characters/mira-al-cul/lamp.svg",
  8426. extra: 1617 / 1559
  8427. }
  8428. },
  8429. front: {
  8430. height: math.unit(7, "feet"),
  8431. name: "Front",
  8432. image: {
  8433. source: "./media/characters/mira-al-cul/front.svg",
  8434. extra: 1044 / 990
  8435. }
  8436. },
  8437. },
  8438. [
  8439. {
  8440. name: "Heavily Restricted",
  8441. height: math.unit(7 * 1559 / 989, "feet")
  8442. },
  8443. {
  8444. name: "Freshly Freed",
  8445. height: math.unit(50 * 1559 / 989, "feet")
  8446. },
  8447. {
  8448. name: "World Encompassing",
  8449. height: math.unit(10000 * 1559 / 989, "miles")
  8450. },
  8451. {
  8452. name: "Galactic",
  8453. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8454. },
  8455. {
  8456. name: "Palmed Universe",
  8457. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8458. default: true
  8459. },
  8460. {
  8461. name: "Multiversal Matriarch",
  8462. height: math.unit(8.87e10, "yottameters")
  8463. },
  8464. {
  8465. name: "Void Mother",
  8466. height: math.unit(3.14e110, "yottaparsecs")
  8467. },
  8468. {
  8469. name: "Toying with Transcendence",
  8470. height: math.unit(1e307, "meters")
  8471. },
  8472. ]
  8473. ))
  8474. characterMakers.push(() => makeCharacter(
  8475. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8476. {
  8477. front: {
  8478. height: math.unit(17 + 1 / 12, "feet"),
  8479. weight: math.unit(476.2 * 5, "lbs"),
  8480. name: "Front",
  8481. image: {
  8482. source: "./media/characters/kuro-shi-uchū/front.svg",
  8483. extra: 2329 / 1835,
  8484. bottom: 0.02
  8485. }
  8486. },
  8487. },
  8488. [
  8489. {
  8490. name: "Micro",
  8491. height: math.unit(2, "inches")
  8492. },
  8493. {
  8494. name: "Normal",
  8495. height: math.unit(12, "meters")
  8496. },
  8497. {
  8498. name: "Planetary",
  8499. height: math.unit(0.00929, "AU"),
  8500. default: true
  8501. },
  8502. {
  8503. name: "Universal",
  8504. height: math.unit(20, "gigaparsecs")
  8505. },
  8506. ]
  8507. ))
  8508. characterMakers.push(() => makeCharacter(
  8509. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8510. {
  8511. front: {
  8512. height: math.unit(5 + 2 / 12, "feet"),
  8513. weight: math.unit(120, "lbs"),
  8514. name: "Front",
  8515. image: {
  8516. source: "./media/characters/katherine/front.svg",
  8517. extra: 2075 / 1969
  8518. }
  8519. },
  8520. dress: {
  8521. height: math.unit(5 + 2 / 12, "feet"),
  8522. weight: math.unit(120, "lbs"),
  8523. name: "Dress",
  8524. image: {
  8525. source: "./media/characters/katherine/dress.svg",
  8526. extra: 2258 / 2064
  8527. }
  8528. },
  8529. },
  8530. [
  8531. {
  8532. name: "Micro",
  8533. height: math.unit(1, "inches"),
  8534. default: true
  8535. },
  8536. {
  8537. name: "Normal",
  8538. height: math.unit(5 + 2 / 12, "feet")
  8539. },
  8540. {
  8541. name: "Macro",
  8542. height: math.unit(100, "meters")
  8543. },
  8544. {
  8545. name: "Megamacro",
  8546. height: math.unit(80, "miles")
  8547. },
  8548. ]
  8549. ))
  8550. characterMakers.push(() => makeCharacter(
  8551. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8552. {
  8553. front: {
  8554. height: math.unit(7 + 8 / 12, "feet"),
  8555. weight: math.unit(250, "lbs"),
  8556. name: "Front",
  8557. image: {
  8558. source: "./media/characters/yevis/front.svg",
  8559. extra: 1938 / 1755
  8560. }
  8561. }
  8562. },
  8563. [
  8564. {
  8565. name: "Mortal",
  8566. height: math.unit(7 + 8 / 12, "feet")
  8567. },
  8568. {
  8569. name: "Battle",
  8570. height: math.unit(25 + 11 / 12, "feet")
  8571. },
  8572. {
  8573. name: "Wrath",
  8574. height: math.unit(1654 + 11 / 12, "feet")
  8575. },
  8576. {
  8577. name: "Planet Destroyer",
  8578. height: math.unit(12000, "miles")
  8579. },
  8580. {
  8581. name: "Galaxy Conqueror",
  8582. height: math.unit(1.45, "zettameters"),
  8583. default: true
  8584. },
  8585. {
  8586. name: "Universal War",
  8587. height: math.unit(184, "gigaparsecs")
  8588. },
  8589. {
  8590. name: "Eternity War",
  8591. height: math.unit(1.98e55, "yottaparsecs")
  8592. },
  8593. ]
  8594. ))
  8595. characterMakers.push(() => makeCharacter(
  8596. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8597. {
  8598. front: {
  8599. height: math.unit(5 + 8 / 12, "feet"),
  8600. weight: math.unit(63, "kg"),
  8601. name: "Front",
  8602. image: {
  8603. source: "./media/characters/xavier/front.svg",
  8604. extra: 944 / 883
  8605. }
  8606. },
  8607. frontStretch: {
  8608. height: math.unit(5 + 8 / 12, "feet"),
  8609. weight: math.unit(63, "kg"),
  8610. name: "Stretching",
  8611. image: {
  8612. source: "./media/characters/xavier/front-stretch.svg",
  8613. extra: 962 / 820
  8614. }
  8615. },
  8616. },
  8617. [
  8618. {
  8619. name: "Normal",
  8620. height: math.unit(5 + 8 / 12, "feet")
  8621. },
  8622. {
  8623. name: "Macro",
  8624. height: math.unit(100, "meters"),
  8625. default: true
  8626. },
  8627. {
  8628. name: "McLargeHuge",
  8629. height: math.unit(10, "miles")
  8630. },
  8631. ]
  8632. ))
  8633. characterMakers.push(() => makeCharacter(
  8634. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8635. {
  8636. front: {
  8637. height: math.unit(5 + 5 / 12, "feet"),
  8638. weight: math.unit(150, "lb"),
  8639. name: "Front",
  8640. image: {
  8641. source: "./media/characters/joshii/front.svg",
  8642. extra: 765 / 653,
  8643. bottom: 51 / 816
  8644. }
  8645. },
  8646. foot: {
  8647. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8648. name: "Foot",
  8649. image: {
  8650. source: "./media/characters/joshii/foot.svg"
  8651. }
  8652. },
  8653. },
  8654. [
  8655. {
  8656. name: "Micro",
  8657. height: math.unit(2, "inches"),
  8658. default: true
  8659. },
  8660. {
  8661. name: "Normal",
  8662. height: math.unit(5 + 5 / 12, "feet")
  8663. },
  8664. {
  8665. name: "Macro",
  8666. height: math.unit(785, "feet")
  8667. },
  8668. {
  8669. name: "Megamacro",
  8670. height: math.unit(24.5, "miles")
  8671. },
  8672. ]
  8673. ))
  8674. characterMakers.push(() => makeCharacter(
  8675. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8676. {
  8677. front: {
  8678. height: math.unit(6, "feet"),
  8679. weight: math.unit(150, "lb"),
  8680. name: "Front",
  8681. image: {
  8682. source: "./media/characters/goddess-elizabeth/front.svg",
  8683. extra: 1800 / 1525,
  8684. bottom: 0.005
  8685. }
  8686. },
  8687. foot: {
  8688. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8689. name: "Foot",
  8690. image: {
  8691. source: "./media/characters/goddess-elizabeth/foot.svg"
  8692. }
  8693. },
  8694. mouth: {
  8695. height: math.unit(6, "feet"),
  8696. name: "Mouth",
  8697. image: {
  8698. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8699. }
  8700. },
  8701. },
  8702. [
  8703. {
  8704. name: "Micro",
  8705. height: math.unit(12, "feet")
  8706. },
  8707. {
  8708. name: "Normal",
  8709. height: math.unit(80, "miles"),
  8710. default: true
  8711. },
  8712. {
  8713. name: "Macro",
  8714. height: math.unit(15000, "parsecs")
  8715. },
  8716. ]
  8717. ))
  8718. characterMakers.push(() => makeCharacter(
  8719. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8720. {
  8721. front: {
  8722. height: math.unit(5 + 9 / 12, "feet"),
  8723. weight: math.unit(144, "lb"),
  8724. name: "Front",
  8725. image: {
  8726. source: "./media/characters/kara/front.svg"
  8727. }
  8728. },
  8729. feet: {
  8730. height: math.unit(6 / 6.765, "feet"),
  8731. name: "Kara's Feet",
  8732. rename: true,
  8733. image: {
  8734. source: "./media/characters/kara/feet.svg"
  8735. }
  8736. },
  8737. },
  8738. [
  8739. {
  8740. name: "Normal",
  8741. height: math.unit(5 + 9 / 12, "feet")
  8742. },
  8743. {
  8744. name: "Macro",
  8745. height: math.unit(174, "feet"),
  8746. default: true
  8747. },
  8748. ]
  8749. ))
  8750. characterMakers.push(() => makeCharacter(
  8751. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8752. {
  8753. front: {
  8754. height: math.unit(18, "feet"),
  8755. weight: math.unit(4050, "lb"),
  8756. name: "Front",
  8757. image: {
  8758. source: "./media/characters/tyrone/front.svg",
  8759. extra: 2405 / 2270,
  8760. bottom: 182 / 2587
  8761. }
  8762. },
  8763. },
  8764. [
  8765. {
  8766. name: "Normal",
  8767. height: math.unit(18, "feet"),
  8768. default: true
  8769. },
  8770. {
  8771. name: "Macro",
  8772. height: math.unit(300, "feet")
  8773. },
  8774. {
  8775. name: "Megamacro",
  8776. height: math.unit(15, "km")
  8777. },
  8778. {
  8779. name: "Gigamacro",
  8780. height: math.unit(500, "km")
  8781. },
  8782. {
  8783. name: "Teramacro",
  8784. height: math.unit(0.5, "gigameters")
  8785. },
  8786. {
  8787. name: "Omnimacro",
  8788. height: math.unit(1e252, "yottauniverse")
  8789. },
  8790. ]
  8791. ))
  8792. characterMakers.push(() => makeCharacter(
  8793. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8794. {
  8795. front: {
  8796. height: math.unit(7 + 8 / 12, "feet"),
  8797. weight: math.unit(120, "lb"),
  8798. name: "Front",
  8799. image: {
  8800. source: "./media/characters/danny/front.svg",
  8801. extra: 1490 / 1350
  8802. }
  8803. },
  8804. back: {
  8805. height: math.unit(7 + 8 / 12, "feet"),
  8806. weight: math.unit(120, "lb"),
  8807. name: "Back",
  8808. image: {
  8809. source: "./media/characters/danny/back.svg",
  8810. extra: 1490 / 1350
  8811. }
  8812. },
  8813. },
  8814. [
  8815. {
  8816. name: "Normal",
  8817. height: math.unit(7 + 8 / 12, "feet"),
  8818. default: true
  8819. },
  8820. ]
  8821. ))
  8822. characterMakers.push(() => makeCharacter(
  8823. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8824. {
  8825. front: {
  8826. height: math.unit(3.5, "inches"),
  8827. weight: math.unit(19, "grams"),
  8828. name: "Front",
  8829. image: {
  8830. source: "./media/characters/mallow/front.svg",
  8831. extra: 471 / 431
  8832. }
  8833. },
  8834. back: {
  8835. height: math.unit(3.5, "inches"),
  8836. weight: math.unit(19, "grams"),
  8837. name: "Back",
  8838. image: {
  8839. source: "./media/characters/mallow/back.svg",
  8840. extra: 471 / 431
  8841. }
  8842. },
  8843. },
  8844. [
  8845. {
  8846. name: "Normal",
  8847. height: math.unit(3.5, "inches"),
  8848. default: true
  8849. },
  8850. ]
  8851. ))
  8852. characterMakers.push(() => makeCharacter(
  8853. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8854. {
  8855. front: {
  8856. height: math.unit(9, "feet"),
  8857. weight: math.unit(230, "kg"),
  8858. name: "Front",
  8859. image: {
  8860. source: "./media/characters/starry-aqua/front.svg"
  8861. }
  8862. },
  8863. back: {
  8864. height: math.unit(9, "feet"),
  8865. weight: math.unit(230, "kg"),
  8866. name: "Back",
  8867. image: {
  8868. source: "./media/characters/starry-aqua/back.svg"
  8869. }
  8870. },
  8871. hand: {
  8872. height: math.unit(9 * 0.1168, "feet"),
  8873. name: "Hand",
  8874. image: {
  8875. source: "./media/characters/starry-aqua/hand.svg"
  8876. }
  8877. },
  8878. foot: {
  8879. height: math.unit(9 * 0.18, "feet"),
  8880. name: "Foot",
  8881. image: {
  8882. source: "./media/characters/starry-aqua/foot.svg"
  8883. }
  8884. }
  8885. },
  8886. [
  8887. {
  8888. name: "Micro",
  8889. height: math.unit(3, "inches")
  8890. },
  8891. {
  8892. name: "Normal",
  8893. height: math.unit(9, "feet")
  8894. },
  8895. {
  8896. name: "Macro",
  8897. height: math.unit(300, "feet"),
  8898. default: true
  8899. },
  8900. {
  8901. name: "Megamacro",
  8902. height: math.unit(3200, "feet")
  8903. }
  8904. ]
  8905. ))
  8906. characterMakers.push(() => makeCharacter(
  8907. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8908. {
  8909. front: {
  8910. height: math.unit(6, "feet"),
  8911. weight: math.unit(230, "lb"),
  8912. name: "Front",
  8913. image: {
  8914. source: "./media/characters/luka/front.svg",
  8915. extra: 1,
  8916. bottom: 0.025
  8917. }
  8918. },
  8919. },
  8920. [
  8921. {
  8922. name: "Normal",
  8923. height: math.unit(12 + 8 / 12, "feet"),
  8924. default: true
  8925. },
  8926. {
  8927. name: "Minimacro",
  8928. height: math.unit(20, "feet")
  8929. },
  8930. {
  8931. name: "Macro",
  8932. height: math.unit(250, "feet")
  8933. },
  8934. {
  8935. name: "Megamacro",
  8936. height: math.unit(5, "miles")
  8937. },
  8938. {
  8939. name: "Gigamacro",
  8940. height: math.unit(8000, "miles")
  8941. },
  8942. ]
  8943. ))
  8944. characterMakers.push(() => makeCharacter(
  8945. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8946. {
  8947. front: {
  8948. height: math.unit(6, "feet"),
  8949. weight: math.unit(150, "lb"),
  8950. name: "Front",
  8951. image: {
  8952. source: "./media/characters/natalie-nightring/front.svg",
  8953. extra: 1,
  8954. bottom: 0.06
  8955. }
  8956. },
  8957. },
  8958. [
  8959. {
  8960. name: "Uh Oh",
  8961. height: math.unit(0.1, "mm")
  8962. },
  8963. {
  8964. name: "Small",
  8965. height: math.unit(3, "inches")
  8966. },
  8967. {
  8968. name: "Human Scale",
  8969. height: math.unit(6, "feet")
  8970. },
  8971. {
  8972. name: "Librarian",
  8973. height: math.unit(50, "feet"),
  8974. default: true
  8975. },
  8976. {
  8977. name: "Immense",
  8978. height: math.unit(200, "miles")
  8979. },
  8980. ]
  8981. ))
  8982. characterMakers.push(() => makeCharacter(
  8983. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8984. {
  8985. front: {
  8986. height: math.unit(6, "feet"),
  8987. weight: math.unit(180, "lbs"),
  8988. name: "Front",
  8989. image: {
  8990. source: "./media/characters/danni-rosie/front.svg",
  8991. extra: 1260 / 1128,
  8992. bottom: 0.022
  8993. }
  8994. },
  8995. },
  8996. [
  8997. {
  8998. name: "Micro",
  8999. height: math.unit(2, "inches"),
  9000. default: true
  9001. },
  9002. ]
  9003. ))
  9004. characterMakers.push(() => makeCharacter(
  9005. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9006. {
  9007. front: {
  9008. height: math.unit(5 + 9 / 12, "feet"),
  9009. weight: math.unit(220, "lb"),
  9010. name: "Front",
  9011. image: {
  9012. source: "./media/characters/samantha-kruse/front.svg",
  9013. extra: (985 / 935),
  9014. bottom: 0.03
  9015. }
  9016. },
  9017. frontUndressed: {
  9018. height: math.unit(5 + 9 / 12, "feet"),
  9019. weight: math.unit(220, "lb"),
  9020. name: "Front (Undressed)",
  9021. image: {
  9022. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9023. extra: (973 / 923),
  9024. bottom: 0.025
  9025. }
  9026. },
  9027. fat: {
  9028. height: math.unit(5 + 9 / 12, "feet"),
  9029. weight: math.unit(900, "lb"),
  9030. name: "Front (Fat)",
  9031. image: {
  9032. source: "./media/characters/samantha-kruse/fat.svg",
  9033. extra: 2688 / 2561
  9034. }
  9035. },
  9036. },
  9037. [
  9038. {
  9039. name: "Normal",
  9040. height: math.unit(5 + 9 / 12, "feet"),
  9041. default: true
  9042. }
  9043. ]
  9044. ))
  9045. characterMakers.push(() => makeCharacter(
  9046. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9047. {
  9048. back: {
  9049. height: math.unit(5 + 4 / 12, "feet"),
  9050. weight: math.unit(4963, "lb"),
  9051. name: "Back",
  9052. image: {
  9053. source: "./media/characters/amelia-rosie/back.svg",
  9054. extra: 1113 / 963,
  9055. bottom: 0.01
  9056. }
  9057. },
  9058. },
  9059. [
  9060. {
  9061. name: "Level 0",
  9062. height: math.unit(5 + 4 / 12, "feet")
  9063. },
  9064. {
  9065. name: "Level 1",
  9066. height: math.unit(164597, "feet"),
  9067. default: true
  9068. },
  9069. {
  9070. name: "Level 2",
  9071. height: math.unit(956243, "miles")
  9072. },
  9073. {
  9074. name: "Level 3",
  9075. height: math.unit(29421709423, "miles")
  9076. },
  9077. {
  9078. name: "Level 4",
  9079. height: math.unit(154, "lightyears")
  9080. },
  9081. {
  9082. name: "Level 5",
  9083. height: math.unit(4738272, "lightyears")
  9084. },
  9085. {
  9086. name: "Level 6",
  9087. height: math.unit(145787152896, "lightyears")
  9088. },
  9089. ]
  9090. ))
  9091. characterMakers.push(() => makeCharacter(
  9092. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9093. {
  9094. front: {
  9095. height: math.unit(5 + 11 / 12, "feet"),
  9096. weight: math.unit(65, "kg"),
  9097. name: "Front",
  9098. image: {
  9099. source: "./media/characters/rook-kitara/front.svg",
  9100. extra: 1347 / 1274,
  9101. bottom: 0.005
  9102. }
  9103. },
  9104. },
  9105. [
  9106. {
  9107. name: "Totally Unfair",
  9108. height: math.unit(1.8, "mm")
  9109. },
  9110. {
  9111. name: "Lap Rookie",
  9112. height: math.unit(1.4, "feet")
  9113. },
  9114. {
  9115. name: "Normal",
  9116. height: math.unit(5 + 11 / 12, "feet"),
  9117. default: true
  9118. },
  9119. {
  9120. name: "How Did This Happen",
  9121. height: math.unit(80, "miles")
  9122. }
  9123. ]
  9124. ))
  9125. characterMakers.push(() => makeCharacter(
  9126. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9127. {
  9128. front: {
  9129. height: math.unit(7, "feet"),
  9130. weight: math.unit(300, "lb"),
  9131. name: "Front",
  9132. image: {
  9133. source: "./media/characters/pisces/front.svg",
  9134. extra: 2255 / 2115,
  9135. bottom: 0.03
  9136. }
  9137. },
  9138. back: {
  9139. height: math.unit(7, "feet"),
  9140. weight: math.unit(300, "lb"),
  9141. name: "Back",
  9142. image: {
  9143. source: "./media/characters/pisces/back.svg",
  9144. extra: 2146 / 2055,
  9145. bottom: 0.04
  9146. }
  9147. },
  9148. },
  9149. [
  9150. {
  9151. name: "Normal",
  9152. height: math.unit(7, "feet"),
  9153. default: true
  9154. },
  9155. {
  9156. name: "Swimming Pool",
  9157. height: math.unit(12.2, "meters")
  9158. },
  9159. {
  9160. name: "Olympic Swimming Pool",
  9161. height: math.unit(56.3, "meters")
  9162. },
  9163. {
  9164. name: "Lake Superior",
  9165. height: math.unit(93900, "meters")
  9166. },
  9167. {
  9168. name: "Mediterranean Sea",
  9169. height: math.unit(644457, "meters")
  9170. },
  9171. {
  9172. name: "World's Oceans",
  9173. height: math.unit(4567491, "meters")
  9174. },
  9175. ]
  9176. ))
  9177. characterMakers.push(() => makeCharacter(
  9178. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9179. {
  9180. front: {
  9181. height: math.unit(2.3, "meters"),
  9182. weight: math.unit(120, "kg"),
  9183. name: "Front",
  9184. image: {
  9185. source: "./media/characters/zelas/front.svg"
  9186. }
  9187. },
  9188. side: {
  9189. height: math.unit(2.3, "meters"),
  9190. weight: math.unit(120, "kg"),
  9191. name: "Side",
  9192. image: {
  9193. source: "./media/characters/zelas/side.svg"
  9194. }
  9195. },
  9196. back: {
  9197. height: math.unit(2.3, "meters"),
  9198. weight: math.unit(120, "kg"),
  9199. name: "Back",
  9200. image: {
  9201. source: "./media/characters/zelas/back.svg"
  9202. }
  9203. },
  9204. foot: {
  9205. height: math.unit(1.116, "feet"),
  9206. name: "Foot",
  9207. image: {
  9208. source: "./media/characters/zelas/foot.svg"
  9209. }
  9210. },
  9211. },
  9212. [
  9213. {
  9214. name: "Normal",
  9215. height: math.unit(2.3, "meters")
  9216. },
  9217. {
  9218. name: "Macro",
  9219. height: math.unit(30, "meters"),
  9220. default: true
  9221. },
  9222. ]
  9223. ))
  9224. characterMakers.push(() => makeCharacter(
  9225. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9226. {
  9227. front: {
  9228. height: math.unit(1, "inch"),
  9229. weight: math.unit(0.21, "grams"),
  9230. name: "Front",
  9231. image: {
  9232. source: "./media/characters/talbot/front.svg",
  9233. extra: 594 / 544
  9234. }
  9235. },
  9236. },
  9237. [
  9238. {
  9239. name: "Micro",
  9240. height: math.unit(1, "inch"),
  9241. default: true
  9242. },
  9243. ]
  9244. ))
  9245. characterMakers.push(() => makeCharacter(
  9246. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9247. {
  9248. front: {
  9249. height: math.unit(3 + 3 / 12, "feet"),
  9250. weight: math.unit(51.8, "lb"),
  9251. name: "Front",
  9252. image: {
  9253. source: "./media/characters/fliss/front.svg",
  9254. extra: 840 / 640
  9255. }
  9256. },
  9257. },
  9258. [
  9259. {
  9260. name: "Teeny Tiny",
  9261. height: math.unit(1, "mm")
  9262. },
  9263. {
  9264. name: "Small",
  9265. height: math.unit(1, "inch"),
  9266. default: true
  9267. },
  9268. {
  9269. name: "Standard Sylveon",
  9270. height: math.unit(3 + 3 / 12, "feet")
  9271. },
  9272. {
  9273. name: "Large Nuisance",
  9274. height: math.unit(33, "feet")
  9275. },
  9276. {
  9277. name: "City Filler",
  9278. height: math.unit(3000, "feet")
  9279. },
  9280. {
  9281. name: "New Horizon",
  9282. height: math.unit(6000, "miles")
  9283. },
  9284. ]
  9285. ))
  9286. characterMakers.push(() => makeCharacter(
  9287. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9288. {
  9289. front: {
  9290. height: math.unit(5, "cm"),
  9291. weight: math.unit(1.94, "g"),
  9292. name: "Front",
  9293. image: {
  9294. source: "./media/characters/fleta/front.svg",
  9295. extra: 835 / 803
  9296. }
  9297. },
  9298. back: {
  9299. height: math.unit(5, "cm"),
  9300. weight: math.unit(1.94, "g"),
  9301. name: "Back",
  9302. image: {
  9303. source: "./media/characters/fleta/back.svg",
  9304. extra: 835 / 803
  9305. }
  9306. },
  9307. },
  9308. [
  9309. {
  9310. name: "Micro",
  9311. height: math.unit(5, "cm"),
  9312. default: true
  9313. },
  9314. ]
  9315. ))
  9316. characterMakers.push(() => makeCharacter(
  9317. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9318. {
  9319. front: {
  9320. height: math.unit(6, "feet"),
  9321. weight: math.unit(225, "lb"),
  9322. name: "Front",
  9323. image: {
  9324. source: "./media/characters/dominic/front.svg",
  9325. extra: 1770 / 1620,
  9326. bottom: 0.025
  9327. }
  9328. },
  9329. back: {
  9330. height: math.unit(6, "feet"),
  9331. weight: math.unit(225, "lb"),
  9332. name: "Back",
  9333. image: {
  9334. source: "./media/characters/dominic/back.svg",
  9335. extra: 1745 / 1620,
  9336. bottom: 0.065
  9337. }
  9338. },
  9339. },
  9340. [
  9341. {
  9342. name: "Nano",
  9343. height: math.unit(0.1, "mm")
  9344. },
  9345. {
  9346. name: "Micro-",
  9347. height: math.unit(1, "mm")
  9348. },
  9349. {
  9350. name: "Micro",
  9351. height: math.unit(4, "inches")
  9352. },
  9353. {
  9354. name: "Normal",
  9355. height: math.unit(6 + 4 / 12, "feet"),
  9356. default: true
  9357. },
  9358. {
  9359. name: "Macro",
  9360. height: math.unit(115, "feet")
  9361. },
  9362. {
  9363. name: "Macro+",
  9364. height: math.unit(955, "feet")
  9365. },
  9366. {
  9367. name: "Megamacro",
  9368. height: math.unit(8990, "feet")
  9369. },
  9370. {
  9371. name: "Gigmacro",
  9372. height: math.unit(9310, "miles")
  9373. },
  9374. {
  9375. name: "Teramacro",
  9376. height: math.unit(1567005010, "miles")
  9377. },
  9378. {
  9379. name: "Examacro",
  9380. height: math.unit(1425, "parsecs")
  9381. },
  9382. ]
  9383. ))
  9384. characterMakers.push(() => makeCharacter(
  9385. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9386. {
  9387. front: {
  9388. height: math.unit(400, "feet"),
  9389. weight: math.unit(44444444, "lb"),
  9390. name: "Front",
  9391. image: {
  9392. source: "./media/characters/major-colonel/front.svg"
  9393. }
  9394. },
  9395. back: {
  9396. height: math.unit(400, "feet"),
  9397. weight: math.unit(44444444, "lb"),
  9398. name: "Back",
  9399. image: {
  9400. source: "./media/characters/major-colonel/back.svg"
  9401. }
  9402. },
  9403. },
  9404. [
  9405. {
  9406. name: "Macro",
  9407. height: math.unit(400, "feet"),
  9408. default: true
  9409. },
  9410. ]
  9411. ))
  9412. characterMakers.push(() => makeCharacter(
  9413. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9414. {
  9415. catFront: {
  9416. height: math.unit(6, "feet"),
  9417. weight: math.unit(120, "lb"),
  9418. name: "Front (Cat Side)",
  9419. image: {
  9420. source: "./media/characters/axel-lycan/cat-front.svg",
  9421. extra: 430 / 402,
  9422. bottom: 43 / 472.35
  9423. }
  9424. },
  9425. catBack: {
  9426. height: math.unit(6, "feet"),
  9427. weight: math.unit(120, "lb"),
  9428. name: "Back (Cat Side)",
  9429. image: {
  9430. source: "./media/characters/axel-lycan/cat-back.svg",
  9431. extra: 447 / 419,
  9432. bottom: 23.3 / 469
  9433. }
  9434. },
  9435. wolfFront: {
  9436. height: math.unit(6, "feet"),
  9437. weight: math.unit(120, "lb"),
  9438. name: "Front (Wolf Side)",
  9439. image: {
  9440. source: "./media/characters/axel-lycan/wolf-front.svg",
  9441. extra: 485 / 456,
  9442. bottom: 19 / 504
  9443. }
  9444. },
  9445. wolfBack: {
  9446. height: math.unit(6, "feet"),
  9447. weight: math.unit(120, "lb"),
  9448. name: "Back (Wolf Side)",
  9449. image: {
  9450. source: "./media/characters/axel-lycan/wolf-back.svg",
  9451. extra: 475 / 438,
  9452. bottom: 39.2 / 514
  9453. }
  9454. },
  9455. },
  9456. [
  9457. {
  9458. name: "Macro",
  9459. height: math.unit(1, "km"),
  9460. default: true
  9461. },
  9462. ]
  9463. ))
  9464. characterMakers.push(() => makeCharacter(
  9465. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9466. {
  9467. front: {
  9468. height: math.unit(5 + 9 / 12, "feet"),
  9469. weight: math.unit(175, "lb"),
  9470. name: "Front",
  9471. image: {
  9472. source: "./media/characters/vanrel-hyena/front.svg",
  9473. extra: 1086 / 1010,
  9474. bottom: 0.04
  9475. }
  9476. },
  9477. },
  9478. [
  9479. {
  9480. name: "Normal",
  9481. height: math.unit(5 + 9 / 12, "feet"),
  9482. default: true
  9483. },
  9484. ]
  9485. ))
  9486. characterMakers.push(() => makeCharacter(
  9487. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9488. {
  9489. front: {
  9490. height: math.unit(6, "feet"),
  9491. weight: math.unit(103, "lb"),
  9492. name: "Front",
  9493. image: {
  9494. source: "./media/characters/abbott-absol/front.svg",
  9495. extra: 2010 / 1842
  9496. }
  9497. },
  9498. },
  9499. [
  9500. {
  9501. name: "Megamicro",
  9502. height: math.unit(0.1, "mm")
  9503. },
  9504. {
  9505. name: "Micro",
  9506. height: math.unit(1, "inch")
  9507. },
  9508. {
  9509. name: "Normal",
  9510. height: math.unit(6, "feet"),
  9511. default: true
  9512. },
  9513. ]
  9514. ))
  9515. characterMakers.push(() => makeCharacter(
  9516. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9517. {
  9518. front: {
  9519. height: math.unit(6, "feet"),
  9520. weight: math.unit(264, "lb"),
  9521. name: "Front",
  9522. image: {
  9523. source: "./media/characters/hector/front.svg",
  9524. extra: 2280 / 2130,
  9525. bottom: 0.07
  9526. }
  9527. },
  9528. },
  9529. [
  9530. {
  9531. name: "Normal",
  9532. height: math.unit(12.25, "foot"),
  9533. default: true
  9534. },
  9535. {
  9536. name: "Macro",
  9537. height: math.unit(160, "feet")
  9538. },
  9539. ]
  9540. ))
  9541. characterMakers.push(() => makeCharacter(
  9542. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9543. {
  9544. front: {
  9545. height: math.unit(6, "feet"),
  9546. weight: math.unit(150, "lb"),
  9547. name: "Front",
  9548. image: {
  9549. source: "./media/characters/sal/front.svg",
  9550. extra: 1846 / 1699,
  9551. bottom: 0.04
  9552. }
  9553. },
  9554. },
  9555. [
  9556. {
  9557. name: "Megamacro",
  9558. height: math.unit(10, "miles"),
  9559. default: true
  9560. },
  9561. ]
  9562. ))
  9563. characterMakers.push(() => makeCharacter(
  9564. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9565. {
  9566. front: {
  9567. height: math.unit(3, "meters"),
  9568. weight: math.unit(450, "kg"),
  9569. name: "front",
  9570. image: {
  9571. source: "./media/characters/ranger/front.svg",
  9572. extra: 2401 / 2243,
  9573. bottom: 0.05
  9574. }
  9575. },
  9576. },
  9577. [
  9578. {
  9579. name: "Normal",
  9580. height: math.unit(3, "meters"),
  9581. default: true
  9582. },
  9583. ]
  9584. ))
  9585. characterMakers.push(() => makeCharacter(
  9586. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9587. {
  9588. front: {
  9589. height: math.unit(14, "feet"),
  9590. weight: math.unit(800, "kg"),
  9591. name: "Front",
  9592. image: {
  9593. source: "./media/characters/theresa/front.svg",
  9594. extra: 3575 / 3346,
  9595. bottom: 0.03
  9596. }
  9597. },
  9598. },
  9599. [
  9600. {
  9601. name: "Normal",
  9602. height: math.unit(14, "feet"),
  9603. default: true
  9604. },
  9605. ]
  9606. ))
  9607. characterMakers.push(() => makeCharacter(
  9608. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9609. {
  9610. front: {
  9611. height: math.unit(6, "feet"),
  9612. weight: math.unit(3, "kg"),
  9613. name: "Front",
  9614. image: {
  9615. source: "./media/characters/ine/front.svg",
  9616. extra: 678 / 539,
  9617. bottom: 0.023
  9618. }
  9619. },
  9620. },
  9621. [
  9622. {
  9623. name: "Normal",
  9624. height: math.unit(2.265, "feet"),
  9625. default: true
  9626. },
  9627. ]
  9628. ))
  9629. characterMakers.push(() => makeCharacter(
  9630. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9631. {
  9632. front: {
  9633. height: math.unit(5, "feet"),
  9634. weight: math.unit(30, "kg"),
  9635. name: "Front",
  9636. image: {
  9637. source: "./media/characters/vial/front.svg",
  9638. extra: 1365 / 1277,
  9639. bottom: 0.04
  9640. }
  9641. },
  9642. },
  9643. [
  9644. {
  9645. name: "Normal",
  9646. height: math.unit(5, "feet"),
  9647. default: true
  9648. },
  9649. ]
  9650. ))
  9651. characterMakers.push(() => makeCharacter(
  9652. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9653. {
  9654. side: {
  9655. height: math.unit(3.4, "meters"),
  9656. weight: math.unit(1000, "lb"),
  9657. name: "Side",
  9658. image: {
  9659. source: "./media/characters/rovoska/side.svg",
  9660. extra: 4403 / 1515
  9661. }
  9662. },
  9663. },
  9664. [
  9665. {
  9666. name: "Normal",
  9667. height: math.unit(3.4, "meters"),
  9668. default: true
  9669. },
  9670. ]
  9671. ))
  9672. characterMakers.push(() => makeCharacter(
  9673. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9674. {
  9675. front: {
  9676. height: math.unit(8, "feet"),
  9677. weight: math.unit(315, "lb"),
  9678. name: "Front",
  9679. image: {
  9680. source: "./media/characters/gunner-rotthbauer/front.svg"
  9681. }
  9682. },
  9683. back: {
  9684. height: math.unit(8, "feet"),
  9685. weight: math.unit(315, "lb"),
  9686. name: "Back",
  9687. image: {
  9688. source: "./media/characters/gunner-rotthbauer/back.svg"
  9689. }
  9690. },
  9691. },
  9692. [
  9693. {
  9694. name: "Micro",
  9695. height: math.unit(3.5, "inches")
  9696. },
  9697. {
  9698. name: "Normal",
  9699. height: math.unit(8, "feet"),
  9700. default: true
  9701. },
  9702. {
  9703. name: "Macro",
  9704. height: math.unit(250, "feet")
  9705. },
  9706. {
  9707. name: "Megamacro",
  9708. height: math.unit(1, "AU")
  9709. },
  9710. ]
  9711. ))
  9712. characterMakers.push(() => makeCharacter(
  9713. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9714. {
  9715. front: {
  9716. height: math.unit(5 + 5 / 12, "feet"),
  9717. weight: math.unit(140, "lb"),
  9718. name: "Front",
  9719. image: {
  9720. source: "./media/characters/allatia/front.svg",
  9721. extra: 1227 / 1180,
  9722. bottom: 0.027
  9723. }
  9724. },
  9725. },
  9726. [
  9727. {
  9728. name: "Normal",
  9729. height: math.unit(5 + 5 / 12, "feet")
  9730. },
  9731. {
  9732. name: "Macro",
  9733. height: math.unit(250, "feet"),
  9734. default: true
  9735. },
  9736. {
  9737. name: "Megamacro",
  9738. height: math.unit(8, "miles")
  9739. }
  9740. ]
  9741. ))
  9742. characterMakers.push(() => makeCharacter(
  9743. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9744. {
  9745. front: {
  9746. height: math.unit(6, "feet"),
  9747. weight: math.unit(120, "lb"),
  9748. name: "Front",
  9749. image: {
  9750. source: "./media/characters/tene/front.svg",
  9751. extra: 1728 / 1578,
  9752. bottom: 0.022
  9753. }
  9754. },
  9755. stomping: {
  9756. height: math.unit(2.025, "meters"),
  9757. weight: math.unit(120, "lb"),
  9758. name: "Stomping",
  9759. image: {
  9760. source: "./media/characters/tene/stomping.svg",
  9761. extra: 938 / 873,
  9762. bottom: 0.01
  9763. }
  9764. },
  9765. sitting: {
  9766. height: math.unit(1, "meter"),
  9767. weight: math.unit(120, "lb"),
  9768. name: "Sitting",
  9769. image: {
  9770. source: "./media/characters/tene/sitting.svg",
  9771. extra: 437 / 415,
  9772. bottom: 0.1
  9773. }
  9774. },
  9775. feral: {
  9776. height: math.unit(3.9, "feet"),
  9777. weight: math.unit(250, "lb"),
  9778. name: "Feral",
  9779. image: {
  9780. source: "./media/characters/tene/feral.svg",
  9781. extra: 717 / 458,
  9782. bottom: 0.179
  9783. }
  9784. },
  9785. },
  9786. [
  9787. {
  9788. name: "Normal",
  9789. height: math.unit(6, "feet")
  9790. },
  9791. {
  9792. name: "Macro",
  9793. height: math.unit(300, "feet"),
  9794. default: true
  9795. },
  9796. {
  9797. name: "Megamacro",
  9798. height: math.unit(5, "miles")
  9799. },
  9800. ]
  9801. ))
  9802. characterMakers.push(() => makeCharacter(
  9803. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9804. {
  9805. side: {
  9806. height: math.unit(6, "feet"),
  9807. name: "Side",
  9808. image: {
  9809. source: "./media/characters/evander/side.svg",
  9810. extra: 877 / 477
  9811. }
  9812. },
  9813. },
  9814. [
  9815. {
  9816. name: "Normal",
  9817. height: math.unit(0.83, "meters"),
  9818. default: true
  9819. },
  9820. ]
  9821. ))
  9822. characterMakers.push(() => makeCharacter(
  9823. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9824. {
  9825. front: {
  9826. height: math.unit(12, "feet"),
  9827. weight: math.unit(1000, "lb"),
  9828. name: "Front",
  9829. image: {
  9830. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9831. extra: 1762 / 1611
  9832. }
  9833. },
  9834. back: {
  9835. height: math.unit(12, "feet"),
  9836. weight: math.unit(1000, "lb"),
  9837. name: "Back",
  9838. image: {
  9839. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9840. extra: 1762 / 1611
  9841. }
  9842. },
  9843. },
  9844. [
  9845. {
  9846. name: "Normal",
  9847. height: math.unit(12, "feet"),
  9848. default: true
  9849. },
  9850. {
  9851. name: "Kaiju",
  9852. height: math.unit(150, "feet")
  9853. },
  9854. ]
  9855. ))
  9856. characterMakers.push(() => makeCharacter(
  9857. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9858. {
  9859. front: {
  9860. height: math.unit(6, "feet"),
  9861. weight: math.unit(150, "lb"),
  9862. name: "Front",
  9863. image: {
  9864. source: "./media/characters/zero-alurus/front.svg"
  9865. }
  9866. },
  9867. back: {
  9868. height: math.unit(6, "feet"),
  9869. weight: math.unit(150, "lb"),
  9870. name: "Back",
  9871. image: {
  9872. source: "./media/characters/zero-alurus/back.svg"
  9873. }
  9874. },
  9875. },
  9876. [
  9877. {
  9878. name: "Normal",
  9879. height: math.unit(5 + 10 / 12, "feet")
  9880. },
  9881. {
  9882. name: "Macro",
  9883. height: math.unit(60, "feet"),
  9884. default: true
  9885. },
  9886. {
  9887. name: "Macro+",
  9888. height: math.unit(450, "feet")
  9889. },
  9890. ]
  9891. ))
  9892. characterMakers.push(() => makeCharacter(
  9893. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9894. {
  9895. front: {
  9896. height: math.unit(6, "feet"),
  9897. weight: math.unit(200, "lb"),
  9898. name: "Front",
  9899. image: {
  9900. source: "./media/characters/mega-shi/front.svg",
  9901. extra: 1279 / 1250,
  9902. bottom: 0.02
  9903. }
  9904. },
  9905. back: {
  9906. height: math.unit(6, "feet"),
  9907. weight: math.unit(200, "lb"),
  9908. name: "Back",
  9909. image: {
  9910. source: "./media/characters/mega-shi/back.svg",
  9911. extra: 1279 / 1250,
  9912. bottom: 0.02
  9913. }
  9914. },
  9915. },
  9916. [
  9917. {
  9918. name: "Micro",
  9919. height: math.unit(16 + 6 / 12, "feet")
  9920. },
  9921. {
  9922. name: "Third Dimension",
  9923. height: math.unit(40, "meters")
  9924. },
  9925. {
  9926. name: "Normal",
  9927. height: math.unit(660, "feet"),
  9928. default: true
  9929. },
  9930. {
  9931. name: "Megamacro",
  9932. height: math.unit(10, "miles")
  9933. },
  9934. {
  9935. name: "Planetary Launch",
  9936. height: math.unit(500, "miles")
  9937. },
  9938. {
  9939. name: "Interstellar",
  9940. height: math.unit(1e9, "miles")
  9941. },
  9942. {
  9943. name: "Leaving the Universe",
  9944. height: math.unit(1, "gigaparsec")
  9945. },
  9946. {
  9947. name: "Travelling Universes",
  9948. height: math.unit(30e15, "parsecs")
  9949. },
  9950. ]
  9951. ))
  9952. characterMakers.push(() => makeCharacter(
  9953. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9954. {
  9955. front: {
  9956. height: math.unit(6, "feet"),
  9957. weight: math.unit(150, "lb"),
  9958. name: "Front",
  9959. image: {
  9960. source: "./media/characters/odyssey/front.svg",
  9961. extra: 1782 / 1582,
  9962. bottom: 0.01
  9963. }
  9964. },
  9965. side: {
  9966. height: math.unit(5.7, "feet"),
  9967. weight: math.unit(140, "lb"),
  9968. name: "Side",
  9969. image: {
  9970. source: "./media/characters/odyssey/side.svg",
  9971. extra: 6462 / 5700
  9972. }
  9973. },
  9974. },
  9975. [
  9976. {
  9977. name: "Normal",
  9978. height: math.unit(5 + 4 / 12, "feet")
  9979. },
  9980. {
  9981. name: "Macro",
  9982. height: math.unit(1, "km")
  9983. },
  9984. {
  9985. name: "Megamacro",
  9986. height: math.unit(3000, "km")
  9987. },
  9988. {
  9989. name: "Gigamacro",
  9990. height: math.unit(1, "AU"),
  9991. default: true
  9992. },
  9993. {
  9994. name: "Omniversal",
  9995. height: math.unit(100e14, "lightyears")
  9996. },
  9997. ]
  9998. ))
  9999. characterMakers.push(() => makeCharacter(
  10000. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10001. {
  10002. front: {
  10003. height: math.unit(6, "feet"),
  10004. weight: math.unit(300, "lb"),
  10005. name: "Front",
  10006. image: {
  10007. source: "./media/characters/mekuto/front.svg",
  10008. extra: 921 / 832,
  10009. bottom: 0.03
  10010. }
  10011. },
  10012. hand: {
  10013. height: math.unit(6 / 10.24, "feet"),
  10014. name: "Hand",
  10015. image: {
  10016. source: "./media/characters/mekuto/hand.svg"
  10017. }
  10018. },
  10019. foot: {
  10020. height: math.unit(6 / 5.05, "feet"),
  10021. name: "Foot",
  10022. image: {
  10023. source: "./media/characters/mekuto/foot.svg"
  10024. }
  10025. },
  10026. },
  10027. [
  10028. {
  10029. name: "Minimicro",
  10030. height: math.unit(0.2, "inches")
  10031. },
  10032. {
  10033. name: "Micro",
  10034. height: math.unit(1.5, "inches")
  10035. },
  10036. {
  10037. name: "Normal",
  10038. height: math.unit(5 + 11 / 12, "feet"),
  10039. default: true
  10040. },
  10041. {
  10042. name: "Minimacro",
  10043. height: math.unit(17 + 9 / 12, "feet")
  10044. },
  10045. {
  10046. name: "Macro",
  10047. height: math.unit(177.5, "feet")
  10048. },
  10049. {
  10050. name: "Megamacro",
  10051. height: math.unit(152, "miles")
  10052. },
  10053. ]
  10054. ))
  10055. characterMakers.push(() => makeCharacter(
  10056. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10057. {
  10058. front: {
  10059. height: math.unit(6.5, "inches"),
  10060. weight: math.unit(13, "oz"),
  10061. name: "Front",
  10062. image: {
  10063. source: "./media/characters/dafydd-tomos/front.svg",
  10064. extra: 2990 / 2603,
  10065. bottom: 0.03
  10066. }
  10067. },
  10068. },
  10069. [
  10070. {
  10071. name: "Micro",
  10072. height: math.unit(6.5, "inches"),
  10073. default: true
  10074. },
  10075. ]
  10076. ))
  10077. characterMakers.push(() => makeCharacter(
  10078. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10079. {
  10080. front: {
  10081. height: math.unit(6, "feet"),
  10082. weight: math.unit(150, "lb"),
  10083. name: "Front",
  10084. image: {
  10085. source: "./media/characters/splinter/front.svg",
  10086. extra: 2990 / 2882,
  10087. bottom: 0.04
  10088. }
  10089. },
  10090. back: {
  10091. height: math.unit(6, "feet"),
  10092. weight: math.unit(150, "lb"),
  10093. name: "Back",
  10094. image: {
  10095. source: "./media/characters/splinter/back.svg",
  10096. extra: 2990 / 2882,
  10097. bottom: 0.04
  10098. }
  10099. },
  10100. },
  10101. [
  10102. {
  10103. name: "Normal",
  10104. height: math.unit(6, "feet")
  10105. },
  10106. {
  10107. name: "Macro",
  10108. height: math.unit(230, "meters"),
  10109. default: true
  10110. },
  10111. ]
  10112. ))
  10113. characterMakers.push(() => makeCharacter(
  10114. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10115. {
  10116. front: {
  10117. height: math.unit(4 + 10 / 12, "feet"),
  10118. weight: math.unit(480, "lb"),
  10119. name: "Front",
  10120. image: {
  10121. source: "./media/characters/snow-gabumon/front.svg",
  10122. extra: 1140 / 963,
  10123. bottom: 0.058
  10124. }
  10125. },
  10126. back: {
  10127. height: math.unit(4 + 10 / 12, "feet"),
  10128. weight: math.unit(480, "lb"),
  10129. name: "Back",
  10130. image: {
  10131. source: "./media/characters/snow-gabumon/back.svg",
  10132. extra: 1115 / 962,
  10133. bottom: 0.041
  10134. }
  10135. },
  10136. frontUndresed: {
  10137. height: math.unit(4 + 10 / 12, "feet"),
  10138. weight: math.unit(480, "lb"),
  10139. name: "Front (Undressed)",
  10140. image: {
  10141. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10142. extra: 1061 / 960,
  10143. bottom: 0.045
  10144. }
  10145. },
  10146. },
  10147. [
  10148. {
  10149. name: "Micro",
  10150. height: math.unit(1, "inch")
  10151. },
  10152. {
  10153. name: "Normal",
  10154. height: math.unit(4 + 10 / 12, "feet"),
  10155. default: true
  10156. },
  10157. {
  10158. name: "Macro",
  10159. height: math.unit(200, "feet")
  10160. },
  10161. {
  10162. name: "Megamacro",
  10163. height: math.unit(120, "miles")
  10164. },
  10165. {
  10166. name: "Gigamacro",
  10167. height: math.unit(9800, "miles")
  10168. },
  10169. ]
  10170. ))
  10171. characterMakers.push(() => makeCharacter(
  10172. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10173. {
  10174. front: {
  10175. height: math.unit(1.7, "meters"),
  10176. weight: math.unit(140, "lb"),
  10177. name: "Front",
  10178. image: {
  10179. source: "./media/characters/moody/front.svg",
  10180. extra: 3226 / 3007,
  10181. bottom: 0.087
  10182. }
  10183. },
  10184. },
  10185. [
  10186. {
  10187. name: "Micro",
  10188. height: math.unit(1, "mm")
  10189. },
  10190. {
  10191. name: "Normal",
  10192. height: math.unit(1.7, "meters"),
  10193. default: true
  10194. },
  10195. {
  10196. name: "Macro",
  10197. height: math.unit(80, "meters")
  10198. },
  10199. {
  10200. name: "Macro+",
  10201. height: math.unit(500, "meters")
  10202. },
  10203. ]
  10204. ))
  10205. characterMakers.push(() => makeCharacter(
  10206. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10207. {
  10208. front: {
  10209. height: math.unit(6, "feet"),
  10210. weight: math.unit(150, "lb"),
  10211. name: "Front",
  10212. image: {
  10213. source: "./media/characters/zyas/front.svg",
  10214. extra: 1180 / 1120,
  10215. bottom: 0.045
  10216. }
  10217. },
  10218. },
  10219. [
  10220. {
  10221. name: "Normal",
  10222. height: math.unit(10, "feet"),
  10223. default: true
  10224. },
  10225. {
  10226. name: "Macro",
  10227. height: math.unit(500, "feet")
  10228. },
  10229. {
  10230. name: "Megamacro",
  10231. height: math.unit(5, "miles")
  10232. },
  10233. {
  10234. name: "Teramacro",
  10235. height: math.unit(150000, "miles")
  10236. },
  10237. ]
  10238. ))
  10239. characterMakers.push(() => makeCharacter(
  10240. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10241. {
  10242. front: {
  10243. height: math.unit(6, "feet"),
  10244. weight: math.unit(150, "lb"),
  10245. name: "Front",
  10246. image: {
  10247. source: "./media/characters/cuon/front.svg",
  10248. extra: 1390 / 1320,
  10249. bottom: 0.008
  10250. }
  10251. },
  10252. },
  10253. [
  10254. {
  10255. name: "Micro",
  10256. height: math.unit(3, "inches")
  10257. },
  10258. {
  10259. name: "Normal",
  10260. height: math.unit(18 + 9 / 12, "feet"),
  10261. default: true
  10262. },
  10263. {
  10264. name: "Macro",
  10265. height: math.unit(360, "feet")
  10266. },
  10267. {
  10268. name: "Megamacro",
  10269. height: math.unit(360, "miles")
  10270. },
  10271. ]
  10272. ))
  10273. characterMakers.push(() => makeCharacter(
  10274. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10275. {
  10276. front: {
  10277. height: math.unit(2.4, "meters"),
  10278. weight: math.unit(70, "kg"),
  10279. name: "Front",
  10280. image: {
  10281. source: "./media/characters/nyanuxk/front.svg",
  10282. extra: 1172 / 1084,
  10283. bottom: 0.065
  10284. }
  10285. },
  10286. side: {
  10287. height: math.unit(2.4, "meters"),
  10288. weight: math.unit(70, "kg"),
  10289. name: "Side",
  10290. image: {
  10291. source: "./media/characters/nyanuxk/side.svg",
  10292. extra: 1190 / 1132,
  10293. bottom: 0.007
  10294. }
  10295. },
  10296. back: {
  10297. height: math.unit(2.4, "meters"),
  10298. weight: math.unit(70, "kg"),
  10299. name: "Back",
  10300. image: {
  10301. source: "./media/characters/nyanuxk/back.svg",
  10302. extra: 1200 / 1141,
  10303. bottom: 0.015
  10304. }
  10305. },
  10306. foot: {
  10307. height: math.unit(0.52, "meters"),
  10308. name: "Foot",
  10309. image: {
  10310. source: "./media/characters/nyanuxk/foot.svg"
  10311. }
  10312. },
  10313. },
  10314. [
  10315. {
  10316. name: "Micro",
  10317. height: math.unit(2, "cm")
  10318. },
  10319. {
  10320. name: "Normal",
  10321. height: math.unit(2.4, "meters"),
  10322. default: true
  10323. },
  10324. {
  10325. name: "Smaller Macro",
  10326. height: math.unit(120, "meters")
  10327. },
  10328. {
  10329. name: "Bigger Macro",
  10330. height: math.unit(1.2, "km")
  10331. },
  10332. {
  10333. name: "Megamacro",
  10334. height: math.unit(15, "kilometers")
  10335. },
  10336. {
  10337. name: "Gigamacro",
  10338. height: math.unit(2000, "km")
  10339. },
  10340. {
  10341. name: "Teramacro",
  10342. height: math.unit(500000, "km")
  10343. },
  10344. ]
  10345. ))
  10346. characterMakers.push(() => makeCharacter(
  10347. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10348. {
  10349. side: {
  10350. height: math.unit(6, "feet"),
  10351. name: "Side",
  10352. image: {
  10353. source: "./media/characters/ailbhe/side.svg",
  10354. extra: 757 / 464,
  10355. bottom: 0.041
  10356. }
  10357. },
  10358. },
  10359. [
  10360. {
  10361. name: "Normal",
  10362. height: math.unit(1.07, "meters"),
  10363. default: true
  10364. },
  10365. ]
  10366. ))
  10367. characterMakers.push(() => makeCharacter(
  10368. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10369. {
  10370. front: {
  10371. height: math.unit(6, "feet"),
  10372. weight: math.unit(120, "kg"),
  10373. name: "Front",
  10374. image: {
  10375. source: "./media/characters/zevulfius/front.svg",
  10376. extra: 965 / 903
  10377. }
  10378. },
  10379. side: {
  10380. height: math.unit(6, "feet"),
  10381. weight: math.unit(120, "kg"),
  10382. name: "Side",
  10383. image: {
  10384. source: "./media/characters/zevulfius/side.svg",
  10385. extra: 939 / 900
  10386. }
  10387. },
  10388. back: {
  10389. height: math.unit(6, "feet"),
  10390. weight: math.unit(120, "kg"),
  10391. name: "Back",
  10392. image: {
  10393. source: "./media/characters/zevulfius/back.svg",
  10394. extra: 918 / 854,
  10395. bottom: 0.005
  10396. }
  10397. },
  10398. foot: {
  10399. height: math.unit(6 / 3.72, "feet"),
  10400. name: "Foot",
  10401. image: {
  10402. source: "./media/characters/zevulfius/foot.svg"
  10403. }
  10404. },
  10405. },
  10406. [
  10407. {
  10408. name: "Macro",
  10409. height: math.unit(750, "meters")
  10410. },
  10411. {
  10412. name: "Megamacro",
  10413. height: math.unit(20, "km"),
  10414. default: true
  10415. },
  10416. {
  10417. name: "Gigamacro",
  10418. height: math.unit(2000, "km")
  10419. },
  10420. {
  10421. name: "Teramacro",
  10422. height: math.unit(250000, "km")
  10423. },
  10424. ]
  10425. ))
  10426. characterMakers.push(() => makeCharacter(
  10427. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10428. {
  10429. front: {
  10430. height: math.unit(100, "feet"),
  10431. weight: math.unit(350, "kg"),
  10432. name: "Front",
  10433. image: {
  10434. source: "./media/characters/rikes/front.svg",
  10435. extra: 1565 / 1483,
  10436. bottom: 0.017
  10437. }
  10438. },
  10439. },
  10440. [
  10441. {
  10442. name: "Macro",
  10443. height: math.unit(100, "feet"),
  10444. default: true
  10445. },
  10446. ]
  10447. ))
  10448. characterMakers.push(() => makeCharacter(
  10449. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10450. {
  10451. front: {
  10452. height: math.unit(8, "feet"),
  10453. weight: math.unit(356, "lb"),
  10454. name: "Front",
  10455. image: {
  10456. source: "./media/characters/adam-silver-mane/front.svg",
  10457. extra: 1036/937,
  10458. bottom: 63/1099
  10459. }
  10460. },
  10461. side: {
  10462. height: math.unit(8, "feet"),
  10463. weight: math.unit(356, "lb"),
  10464. name: "Side",
  10465. image: {
  10466. source: "./media/characters/adam-silver-mane/side.svg",
  10467. extra: 997/901,
  10468. bottom: 59/1056
  10469. }
  10470. },
  10471. frontNsfw: {
  10472. height: math.unit(8, "feet"),
  10473. weight: math.unit(356, "lb"),
  10474. name: "Front (NSFW)",
  10475. image: {
  10476. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10477. extra: 1036/937,
  10478. bottom: 63/1099
  10479. }
  10480. },
  10481. sideNsfw: {
  10482. height: math.unit(8, "feet"),
  10483. weight: math.unit(356, "lb"),
  10484. name: "Side (NSFW)",
  10485. image: {
  10486. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10487. extra: 997/901,
  10488. bottom: 59/1056
  10489. }
  10490. },
  10491. dick: {
  10492. height: math.unit(2.1, "feet"),
  10493. name: "Dick",
  10494. image: {
  10495. source: "./media/characters/adam-silver-mane/dick.svg"
  10496. }
  10497. },
  10498. taur: {
  10499. height: math.unit(16, "feet"),
  10500. weight: math.unit(1500, "kg"),
  10501. name: "Taur",
  10502. image: {
  10503. source: "./media/characters/adam-silver-mane/taur.svg",
  10504. extra: 1713 / 1571,
  10505. bottom: 0.01
  10506. }
  10507. },
  10508. },
  10509. [
  10510. {
  10511. name: "Normal",
  10512. height: math.unit(8, "feet")
  10513. },
  10514. {
  10515. name: "Minimacro",
  10516. height: math.unit(80, "feet")
  10517. },
  10518. {
  10519. name: "MDA",
  10520. height: math.unit(80, "meters")
  10521. },
  10522. {
  10523. name: "Macro",
  10524. height: math.unit(800, "feet"),
  10525. default: true
  10526. },
  10527. {
  10528. name: "Megamacro",
  10529. height: math.unit(8000, "feet")
  10530. },
  10531. {
  10532. name: "Gigamacro",
  10533. height: math.unit(800, "miles")
  10534. },
  10535. {
  10536. name: "Teramacro",
  10537. height: math.unit(80000, "miles")
  10538. },
  10539. {
  10540. name: "Celestial",
  10541. height: math.unit(8e6, "miles")
  10542. },
  10543. {
  10544. name: "Star Dragon",
  10545. height: math.unit(800000, "parsecs")
  10546. },
  10547. {
  10548. name: "Godly",
  10549. height: math.unit(800, "teraparsecs")
  10550. },
  10551. ]
  10552. ))
  10553. characterMakers.push(() => makeCharacter(
  10554. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10555. {
  10556. front: {
  10557. height: math.unit(6, "feet"),
  10558. weight: math.unit(150, "lb"),
  10559. name: "Front",
  10560. image: {
  10561. source: "./media/characters/ky'owin/front.svg",
  10562. extra: 3888 / 3068,
  10563. bottom: 0.015
  10564. }
  10565. },
  10566. },
  10567. [
  10568. {
  10569. name: "Normal",
  10570. height: math.unit(6 + 8 / 12, "feet")
  10571. },
  10572. {
  10573. name: "Large",
  10574. height: math.unit(68, "feet")
  10575. },
  10576. {
  10577. name: "Macro",
  10578. height: math.unit(132, "feet")
  10579. },
  10580. {
  10581. name: "Macro+",
  10582. height: math.unit(340, "feet")
  10583. },
  10584. {
  10585. name: "Macro++",
  10586. height: math.unit(680, "feet"),
  10587. default: true
  10588. },
  10589. {
  10590. name: "Megamacro",
  10591. height: math.unit(1, "mile")
  10592. },
  10593. {
  10594. name: "Megamacro+",
  10595. height: math.unit(10, "miles")
  10596. },
  10597. ]
  10598. ))
  10599. characterMakers.push(() => makeCharacter(
  10600. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10601. {
  10602. front: {
  10603. height: math.unit(4, "feet"),
  10604. weight: math.unit(50, "lb"),
  10605. name: "Front",
  10606. image: {
  10607. source: "./media/characters/mal/front.svg",
  10608. extra: 785 / 724,
  10609. bottom: 0.07
  10610. }
  10611. },
  10612. },
  10613. [
  10614. {
  10615. name: "Micro",
  10616. height: math.unit(4, "inches")
  10617. },
  10618. {
  10619. name: "Normal",
  10620. height: math.unit(4, "feet"),
  10621. default: true
  10622. },
  10623. {
  10624. name: "Macro",
  10625. height: math.unit(200, "feet")
  10626. },
  10627. ]
  10628. ))
  10629. characterMakers.push(() => makeCharacter(
  10630. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10631. {
  10632. front: {
  10633. height: math.unit(6, "feet"),
  10634. weight: math.unit(150, "lb"),
  10635. name: "Front",
  10636. image: {
  10637. source: "./media/characters/jordan-deware/front.svg",
  10638. extra: 1191 / 1012
  10639. }
  10640. },
  10641. },
  10642. [
  10643. {
  10644. name: "Nano",
  10645. height: math.unit(0.01, "mm")
  10646. },
  10647. {
  10648. name: "Minimicro",
  10649. height: math.unit(1, "mm")
  10650. },
  10651. {
  10652. name: "Micro",
  10653. height: math.unit(0.5, "inches")
  10654. },
  10655. {
  10656. name: "Normal",
  10657. height: math.unit(4, "feet"),
  10658. default: true
  10659. },
  10660. {
  10661. name: "Minimacro",
  10662. height: math.unit(40, "meters")
  10663. },
  10664. {
  10665. name: "Small Macro",
  10666. height: math.unit(400, "meters")
  10667. },
  10668. {
  10669. name: "Macro",
  10670. height: math.unit(4, "miles")
  10671. },
  10672. {
  10673. name: "Megamacro",
  10674. height: math.unit(40, "miles")
  10675. },
  10676. {
  10677. name: "Megamacro+",
  10678. height: math.unit(400, "miles")
  10679. },
  10680. {
  10681. name: "Gigamacro",
  10682. height: math.unit(400000, "miles")
  10683. },
  10684. ]
  10685. ))
  10686. characterMakers.push(() => makeCharacter(
  10687. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10688. {
  10689. side: {
  10690. height: math.unit(6, "feet"),
  10691. weight: math.unit(150, "lb"),
  10692. name: "Side",
  10693. image: {
  10694. source: "./media/characters/kimiko/side.svg",
  10695. extra: 600 / 358
  10696. }
  10697. },
  10698. },
  10699. [
  10700. {
  10701. name: "Normal",
  10702. height: math.unit(15, "feet"),
  10703. default: true
  10704. },
  10705. {
  10706. name: "Macro",
  10707. height: math.unit(220, "feet")
  10708. },
  10709. {
  10710. name: "Macro+",
  10711. height: math.unit(1450, "feet")
  10712. },
  10713. {
  10714. name: "Megamacro",
  10715. height: math.unit(11500, "feet")
  10716. },
  10717. {
  10718. name: "Gigamacro",
  10719. height: math.unit(9500, "miles")
  10720. },
  10721. {
  10722. name: "Teramacro",
  10723. height: math.unit(2208005005, "miles")
  10724. },
  10725. {
  10726. name: "Examacro",
  10727. height: math.unit(2750, "parsecs")
  10728. },
  10729. {
  10730. name: "Zettamacro",
  10731. height: math.unit(101500, "parsecs")
  10732. },
  10733. ]
  10734. ))
  10735. characterMakers.push(() => makeCharacter(
  10736. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10737. {
  10738. front: {
  10739. height: math.unit(6, "feet"),
  10740. weight: math.unit(70, "kg"),
  10741. name: "Front",
  10742. image: {
  10743. source: "./media/characters/andrew-sleepy/front.svg"
  10744. }
  10745. },
  10746. side: {
  10747. height: math.unit(6, "feet"),
  10748. weight: math.unit(70, "kg"),
  10749. name: "Side",
  10750. image: {
  10751. source: "./media/characters/andrew-sleepy/side.svg"
  10752. }
  10753. },
  10754. },
  10755. [
  10756. {
  10757. name: "Micro",
  10758. height: math.unit(1, "mm"),
  10759. default: true
  10760. },
  10761. ]
  10762. ))
  10763. characterMakers.push(() => makeCharacter(
  10764. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10765. {
  10766. front: {
  10767. height: math.unit(6, "feet"),
  10768. weight: math.unit(150, "lb"),
  10769. name: "Front",
  10770. image: {
  10771. source: "./media/characters/judio/front.svg",
  10772. extra: 1258 / 1110
  10773. }
  10774. },
  10775. },
  10776. [
  10777. {
  10778. name: "Normal",
  10779. height: math.unit(5 + 6 / 12, "feet")
  10780. },
  10781. {
  10782. name: "Macro",
  10783. height: math.unit(1000, "feet"),
  10784. default: true
  10785. },
  10786. {
  10787. name: "Megamacro",
  10788. height: math.unit(10, "miles")
  10789. },
  10790. ]
  10791. ))
  10792. characterMakers.push(() => makeCharacter(
  10793. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10794. {
  10795. front: {
  10796. height: math.unit(6, "feet"),
  10797. weight: math.unit(68, "kg"),
  10798. name: "Front",
  10799. image: {
  10800. source: "./media/characters/nomaxice/front.svg",
  10801. extra: 1498 / 1073,
  10802. bottom: 0.075
  10803. }
  10804. },
  10805. foot: {
  10806. height: math.unit(1.1, "feet"),
  10807. name: "Foot",
  10808. image: {
  10809. source: "./media/characters/nomaxice/foot.svg"
  10810. }
  10811. },
  10812. },
  10813. [
  10814. {
  10815. name: "Micro",
  10816. height: math.unit(8, "cm")
  10817. },
  10818. {
  10819. name: "Norm",
  10820. height: math.unit(1.82, "m")
  10821. },
  10822. {
  10823. name: "Norm+",
  10824. height: math.unit(8.8, "feet")
  10825. },
  10826. {
  10827. name: "Big",
  10828. height: math.unit(8, "meters"),
  10829. default: true
  10830. },
  10831. {
  10832. name: "Macro",
  10833. height: math.unit(18, "meters")
  10834. },
  10835. {
  10836. name: "Macro+",
  10837. height: math.unit(88, "meters")
  10838. },
  10839. ]
  10840. ))
  10841. characterMakers.push(() => makeCharacter(
  10842. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10843. {
  10844. front: {
  10845. height: math.unit(12, "feet"),
  10846. weight: math.unit(1.5, "tons"),
  10847. name: "Front",
  10848. image: {
  10849. source: "./media/characters/dydros/front.svg",
  10850. extra: 863 / 800,
  10851. bottom: 0.015
  10852. }
  10853. },
  10854. back: {
  10855. height: math.unit(12, "feet"),
  10856. weight: math.unit(1.5, "tons"),
  10857. name: "Back",
  10858. image: {
  10859. source: "./media/characters/dydros/back.svg",
  10860. extra: 900 / 843,
  10861. bottom: 0.005
  10862. }
  10863. },
  10864. },
  10865. [
  10866. {
  10867. name: "Normal",
  10868. height: math.unit(12, "feet"),
  10869. default: true
  10870. },
  10871. ]
  10872. ))
  10873. characterMakers.push(() => makeCharacter(
  10874. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10875. {
  10876. front: {
  10877. height: math.unit(6, "feet"),
  10878. weight: math.unit(100, "kg"),
  10879. name: "Front",
  10880. image: {
  10881. source: "./media/characters/riggi/front.svg",
  10882. extra: 5787 / 5303
  10883. }
  10884. },
  10885. hyper: {
  10886. height: math.unit(6 * 5 / 3, "feet"),
  10887. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10888. name: "Hyper",
  10889. image: {
  10890. source: "./media/characters/riggi/hyper.svg",
  10891. extra: 3595 / 3485
  10892. }
  10893. },
  10894. },
  10895. [
  10896. {
  10897. name: "Small Macro",
  10898. height: math.unit(50, "feet")
  10899. },
  10900. {
  10901. name: "Default",
  10902. height: math.unit(200, "feet"),
  10903. default: true
  10904. },
  10905. {
  10906. name: "Loom",
  10907. height: math.unit(10000, "feet")
  10908. },
  10909. {
  10910. name: "Cruising Altitude",
  10911. height: math.unit(30000, "feet")
  10912. },
  10913. {
  10914. name: "Megamacro",
  10915. height: math.unit(100, "miles")
  10916. },
  10917. {
  10918. name: "Continent Sized",
  10919. height: math.unit(2800, "miles")
  10920. },
  10921. {
  10922. name: "Earth Sized",
  10923. height: math.unit(8000, "miles")
  10924. },
  10925. ]
  10926. ))
  10927. characterMakers.push(() => makeCharacter(
  10928. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10929. {
  10930. front: {
  10931. height: math.unit(6, "feet"),
  10932. weight: math.unit(250, "lb"),
  10933. name: "Front",
  10934. image: {
  10935. source: "./media/characters/alexi/front.svg",
  10936. extra: 3483 / 3291,
  10937. bottom: 0.04
  10938. }
  10939. },
  10940. back: {
  10941. height: math.unit(6, "feet"),
  10942. weight: math.unit(250, "lb"),
  10943. name: "Back",
  10944. image: {
  10945. source: "./media/characters/alexi/back.svg",
  10946. extra: 3533 / 3356,
  10947. bottom: 0.021
  10948. }
  10949. },
  10950. frontTransforming: {
  10951. height: math.unit(8.58, "feet"),
  10952. weight: math.unit(1300, "lb"),
  10953. name: "Transforming",
  10954. image: {
  10955. source: "./media/characters/alexi/front-transforming.svg",
  10956. extra: 437 / 409,
  10957. bottom: 19 / 458.66
  10958. }
  10959. },
  10960. frontTransformed: {
  10961. height: math.unit(12.5, "feet"),
  10962. weight: math.unit(4000, "lb"),
  10963. name: "Transformed",
  10964. image: {
  10965. source: "./media/characters/alexi/front-transformed.svg",
  10966. extra: 639 / 614,
  10967. bottom: 30.55 / 671
  10968. }
  10969. },
  10970. },
  10971. [
  10972. {
  10973. name: "Normal",
  10974. height: math.unit(14, "feet"),
  10975. default: true
  10976. },
  10977. {
  10978. name: "Minimacro",
  10979. height: math.unit(30, "meters")
  10980. },
  10981. {
  10982. name: "Macro",
  10983. height: math.unit(500, "meters")
  10984. },
  10985. {
  10986. name: "Megamacro",
  10987. height: math.unit(9000, "km")
  10988. },
  10989. {
  10990. name: "Teramacro",
  10991. height: math.unit(384000, "km")
  10992. },
  10993. ]
  10994. ))
  10995. characterMakers.push(() => makeCharacter(
  10996. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10997. {
  10998. front: {
  10999. height: math.unit(6, "feet"),
  11000. weight: math.unit(150, "lb"),
  11001. name: "Front",
  11002. image: {
  11003. source: "./media/characters/kayroo/front.svg",
  11004. extra: 1153 / 1038,
  11005. bottom: 0.06
  11006. }
  11007. },
  11008. foot: {
  11009. height: math.unit(6, "feet"),
  11010. weight: math.unit(150, "lb"),
  11011. name: "Foot",
  11012. image: {
  11013. source: "./media/characters/kayroo/foot.svg"
  11014. }
  11015. },
  11016. },
  11017. [
  11018. {
  11019. name: "Normal",
  11020. height: math.unit(8, "feet"),
  11021. default: true
  11022. },
  11023. {
  11024. name: "Minimacro",
  11025. height: math.unit(250, "feet")
  11026. },
  11027. {
  11028. name: "Macro",
  11029. height: math.unit(2800, "feet")
  11030. },
  11031. {
  11032. name: "Megamacro",
  11033. height: math.unit(5200, "feet")
  11034. },
  11035. {
  11036. name: "Gigamacro",
  11037. height: math.unit(27000, "feet")
  11038. },
  11039. {
  11040. name: "Omega",
  11041. height: math.unit(45000, "feet")
  11042. },
  11043. ]
  11044. ))
  11045. characterMakers.push(() => makeCharacter(
  11046. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11047. {
  11048. front: {
  11049. height: math.unit(18, "feet"),
  11050. weight: math.unit(5800, "lb"),
  11051. name: "Front",
  11052. image: {
  11053. source: "./media/characters/rhys/front.svg",
  11054. extra: 3386 / 3090,
  11055. bottom: 0.07
  11056. }
  11057. },
  11058. },
  11059. [
  11060. {
  11061. name: "Normal",
  11062. height: math.unit(18, "feet"),
  11063. default: true
  11064. },
  11065. {
  11066. name: "Working Size",
  11067. height: math.unit(200, "feet")
  11068. },
  11069. {
  11070. name: "Demolition Size",
  11071. height: math.unit(2000, "feet")
  11072. },
  11073. {
  11074. name: "Maximum Licensed Size",
  11075. height: math.unit(5, "miles")
  11076. },
  11077. {
  11078. name: "Maximum Observed Size",
  11079. height: math.unit(10, "yottameters")
  11080. },
  11081. ]
  11082. ))
  11083. characterMakers.push(() => makeCharacter(
  11084. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11085. {
  11086. front: {
  11087. height: math.unit(6, "feet"),
  11088. weight: math.unit(250, "lb"),
  11089. name: "Front",
  11090. image: {
  11091. source: "./media/characters/toto/front.svg",
  11092. extra: 527 / 479,
  11093. bottom: 0.05
  11094. }
  11095. },
  11096. },
  11097. [
  11098. {
  11099. name: "Micro",
  11100. height: math.unit(3, "feet")
  11101. },
  11102. {
  11103. name: "Normal",
  11104. height: math.unit(10, "feet")
  11105. },
  11106. {
  11107. name: "Macro",
  11108. height: math.unit(150, "feet"),
  11109. default: true
  11110. },
  11111. {
  11112. name: "Megamacro",
  11113. height: math.unit(1200, "feet")
  11114. },
  11115. ]
  11116. ))
  11117. characterMakers.push(() => makeCharacter(
  11118. { name: "King", species: ["lion"], tags: ["anthro"] },
  11119. {
  11120. back: {
  11121. height: math.unit(6, "feet"),
  11122. weight: math.unit(150, "lb"),
  11123. name: "Back",
  11124. image: {
  11125. source: "./media/characters/king/back.svg"
  11126. }
  11127. },
  11128. },
  11129. [
  11130. {
  11131. name: "Micro",
  11132. height: math.unit(2, "inches")
  11133. },
  11134. {
  11135. name: "Normal",
  11136. height: math.unit(8, "feet")
  11137. },
  11138. {
  11139. name: "Macro",
  11140. height: math.unit(200, "feet"),
  11141. default: true
  11142. },
  11143. {
  11144. name: "Megamacro",
  11145. height: math.unit(50, "miles")
  11146. },
  11147. ]
  11148. ))
  11149. characterMakers.push(() => makeCharacter(
  11150. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11151. {
  11152. anthro: {
  11153. height: math.unit(6 + 5 / 12, "feet"),
  11154. weight: math.unit(280, "lb"),
  11155. name: "Anthro",
  11156. image: {
  11157. source: "./media/characters/cordite/anthro.svg",
  11158. extra: 1986 / 1905,
  11159. bottom: 0.025
  11160. }
  11161. },
  11162. feral: {
  11163. height: math.unit(2, "feet"),
  11164. weight: math.unit(90, "lb"),
  11165. name: "Feral",
  11166. image: {
  11167. source: "./media/characters/cordite/feral.svg",
  11168. extra: 1260 / 755,
  11169. bottom: 0.05
  11170. }
  11171. },
  11172. },
  11173. [
  11174. {
  11175. name: "Normal",
  11176. height: math.unit(6 + 5 / 12, "feet"),
  11177. default: true
  11178. },
  11179. ]
  11180. ))
  11181. characterMakers.push(() => makeCharacter(
  11182. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11183. {
  11184. front: {
  11185. height: math.unit(6, "feet"),
  11186. weight: math.unit(150, "lb"),
  11187. name: "Front",
  11188. image: {
  11189. source: "./media/characters/pianostrong/front.svg",
  11190. extra: 6577 / 6254,
  11191. bottom: 0.02
  11192. }
  11193. },
  11194. side: {
  11195. height: math.unit(6, "feet"),
  11196. weight: math.unit(150, "lb"),
  11197. name: "Side",
  11198. image: {
  11199. source: "./media/characters/pianostrong/side.svg",
  11200. extra: 6106 / 5730
  11201. }
  11202. },
  11203. back: {
  11204. height: math.unit(6, "feet"),
  11205. weight: math.unit(150, "lb"),
  11206. name: "Back",
  11207. image: {
  11208. source: "./media/characters/pianostrong/back.svg",
  11209. extra: 6085 / 5733,
  11210. bottom: 0.01
  11211. }
  11212. },
  11213. },
  11214. [
  11215. {
  11216. name: "Macro",
  11217. height: math.unit(100, "feet")
  11218. },
  11219. {
  11220. name: "Macro+",
  11221. height: math.unit(300, "feet"),
  11222. default: true
  11223. },
  11224. {
  11225. name: "Macro++",
  11226. height: math.unit(1000, "feet")
  11227. },
  11228. ]
  11229. ))
  11230. characterMakers.push(() => makeCharacter(
  11231. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11232. {
  11233. front: {
  11234. height: math.unit(6, "feet"),
  11235. weight: math.unit(150, "lb"),
  11236. name: "Front",
  11237. image: {
  11238. source: "./media/characters/kona/front.svg",
  11239. extra: 2960 / 2629,
  11240. bottom: 0.005
  11241. }
  11242. },
  11243. },
  11244. [
  11245. {
  11246. name: "Normal",
  11247. height: math.unit(11 + 8 / 12, "feet")
  11248. },
  11249. {
  11250. name: "Macro",
  11251. height: math.unit(850, "feet"),
  11252. default: true
  11253. },
  11254. {
  11255. name: "Macro+",
  11256. height: math.unit(1.5, "km"),
  11257. default: true
  11258. },
  11259. {
  11260. name: "Megamacro",
  11261. height: math.unit(80, "miles")
  11262. },
  11263. {
  11264. name: "Gigamacro",
  11265. height: math.unit(3500, "miles")
  11266. },
  11267. ]
  11268. ))
  11269. characterMakers.push(() => makeCharacter(
  11270. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11271. {
  11272. side: {
  11273. height: math.unit(1.9, "meters"),
  11274. weight: math.unit(326, "kg"),
  11275. name: "Side",
  11276. image: {
  11277. source: "./media/characters/levi/side.svg",
  11278. extra: 1704 / 1334,
  11279. bottom: 0.02
  11280. }
  11281. },
  11282. },
  11283. [
  11284. {
  11285. name: "Normal",
  11286. height: math.unit(1.9, "meters"),
  11287. default: true
  11288. },
  11289. {
  11290. name: "Macro",
  11291. height: math.unit(20, "meters")
  11292. },
  11293. {
  11294. name: "Macro+",
  11295. height: math.unit(200, "meters")
  11296. },
  11297. {
  11298. name: "Megamacro",
  11299. height: math.unit(2, "km")
  11300. },
  11301. {
  11302. name: "Megamacro+",
  11303. height: math.unit(20, "km")
  11304. },
  11305. {
  11306. name: "Gigamacro",
  11307. height: math.unit(2500, "km")
  11308. },
  11309. {
  11310. name: "Gigamacro+",
  11311. height: math.unit(120000, "km")
  11312. },
  11313. {
  11314. name: "Teramacro",
  11315. height: math.unit(7.77e6, "km")
  11316. },
  11317. ]
  11318. ))
  11319. characterMakers.push(() => makeCharacter(
  11320. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11321. {
  11322. front: {
  11323. height: math.unit(6 + 4/12, "feet"),
  11324. weight: math.unit(190, "lb"),
  11325. name: "Front",
  11326. image: {
  11327. source: "./media/characters/bmc/front.svg",
  11328. extra: 1626/1472,
  11329. bottom: 79/1705
  11330. }
  11331. },
  11332. back: {
  11333. height: math.unit(6 + 4/12, "feet"),
  11334. weight: math.unit(190, "lb"),
  11335. name: "Back",
  11336. image: {
  11337. source: "./media/characters/bmc/back.svg",
  11338. extra: 1640/1479,
  11339. bottom: 45/1685
  11340. }
  11341. },
  11342. frontArmor: {
  11343. height: math.unit(6 + 4/12, "feet"),
  11344. weight: math.unit(190, "lb"),
  11345. name: "Front-armor",
  11346. image: {
  11347. source: "./media/characters/bmc/front-armor.svg",
  11348. extra: 1538/1468,
  11349. bottom: 79/1617
  11350. }
  11351. },
  11352. },
  11353. [
  11354. {
  11355. name: "Human-sized",
  11356. height: math.unit(6 + 4 / 12, "feet")
  11357. },
  11358. {
  11359. name: "Interactive Size",
  11360. height: math.unit(25, "feet")
  11361. },
  11362. {
  11363. name: "Small",
  11364. height: math.unit(250, "feet")
  11365. },
  11366. {
  11367. name: "Normal",
  11368. height: math.unit(1250, "feet"),
  11369. default: true
  11370. },
  11371. {
  11372. name: "Good Day",
  11373. height: math.unit(88, "miles")
  11374. },
  11375. {
  11376. name: "Largest Measured Size",
  11377. height: math.unit(105.960, "galaxies")
  11378. },
  11379. ]
  11380. ))
  11381. characterMakers.push(() => makeCharacter(
  11382. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11383. {
  11384. front: {
  11385. height: math.unit(20, "feet"),
  11386. weight: math.unit(2016, "kg"),
  11387. name: "Front",
  11388. image: {
  11389. source: "./media/characters/sven-the-kaiju/front.svg",
  11390. extra: 1277/1250,
  11391. bottom: 35/1312
  11392. }
  11393. },
  11394. mouth: {
  11395. height: math.unit(1.85, "feet"),
  11396. name: "Mouth",
  11397. image: {
  11398. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11399. }
  11400. },
  11401. },
  11402. [
  11403. {
  11404. name: "Fairy",
  11405. height: math.unit(6, "inches")
  11406. },
  11407. {
  11408. name: "Normal",
  11409. height: math.unit(20, "feet"),
  11410. default: true
  11411. },
  11412. {
  11413. name: "Rampage",
  11414. height: math.unit(200, "feet")
  11415. },
  11416. {
  11417. name: "Archfey Forest Guardian",
  11418. height: math.unit(1, "mile")
  11419. },
  11420. ]
  11421. ))
  11422. characterMakers.push(() => makeCharacter(
  11423. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11424. {
  11425. front: {
  11426. height: math.unit(4, "meters"),
  11427. weight: math.unit(2, "tons"),
  11428. name: "Front",
  11429. image: {
  11430. source: "./media/characters/marik/front.svg",
  11431. extra: 1057 / 1003,
  11432. bottom: 0.08
  11433. }
  11434. },
  11435. },
  11436. [
  11437. {
  11438. name: "Normal",
  11439. height: math.unit(4, "meters"),
  11440. default: true
  11441. },
  11442. {
  11443. name: "Macro",
  11444. height: math.unit(20, "meters")
  11445. },
  11446. {
  11447. name: "Megamacro",
  11448. height: math.unit(50, "km")
  11449. },
  11450. {
  11451. name: "Gigamacro",
  11452. height: math.unit(100, "km")
  11453. },
  11454. {
  11455. name: "Alpha Macro",
  11456. height: math.unit(7.88e7, "yottameters")
  11457. },
  11458. ]
  11459. ))
  11460. characterMakers.push(() => makeCharacter(
  11461. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11462. {
  11463. front: {
  11464. height: math.unit(6, "feet"),
  11465. weight: math.unit(110, "lb"),
  11466. name: "Front",
  11467. image: {
  11468. source: "./media/characters/mel/front.svg",
  11469. extra: 736 / 617,
  11470. bottom: 0.017
  11471. }
  11472. },
  11473. },
  11474. [
  11475. {
  11476. name: "Pico",
  11477. height: math.unit(3, "pm")
  11478. },
  11479. {
  11480. name: "Nano",
  11481. height: math.unit(3, "nm")
  11482. },
  11483. {
  11484. name: "Micro",
  11485. height: math.unit(0.3, "mm"),
  11486. default: true
  11487. },
  11488. {
  11489. name: "Micro+",
  11490. height: math.unit(3, "mm")
  11491. },
  11492. {
  11493. name: "Normal",
  11494. height: math.unit(5 + 10.5 / 12, "feet")
  11495. },
  11496. ]
  11497. ))
  11498. characterMakers.push(() => makeCharacter(
  11499. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11500. {
  11501. kaiju: {
  11502. height: math.unit(1.75, "meters"),
  11503. weight: math.unit(55, "kg"),
  11504. name: "Kaiju",
  11505. image: {
  11506. source: "./media/characters/lykonous/kaiju.svg",
  11507. extra: 1055 / 946,
  11508. bottom: 0.135
  11509. }
  11510. },
  11511. },
  11512. [
  11513. {
  11514. name: "Normal",
  11515. height: math.unit(2.5, "meters"),
  11516. default: true
  11517. },
  11518. {
  11519. name: "Kaiju Dragon",
  11520. height: math.unit(60, "meters")
  11521. },
  11522. {
  11523. name: "Mega Kaiju",
  11524. height: math.unit(120, "km")
  11525. },
  11526. {
  11527. name: "Giga Kaiju",
  11528. height: math.unit(200, "megameters")
  11529. },
  11530. {
  11531. name: "Terra Kaiju",
  11532. height: math.unit(400, "gigameters")
  11533. },
  11534. {
  11535. name: "Kaiju Dragon God",
  11536. height: math.unit(13000, "exaparsecs")
  11537. },
  11538. ]
  11539. ))
  11540. characterMakers.push(() => makeCharacter(
  11541. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11542. {
  11543. front: {
  11544. height: math.unit(6, "feet"),
  11545. weight: math.unit(150, "lb"),
  11546. name: "Front",
  11547. image: {
  11548. source: "./media/characters/blü/front.svg",
  11549. extra: 1883 / 1564,
  11550. bottom: 0.031
  11551. }
  11552. },
  11553. },
  11554. [
  11555. {
  11556. name: "Normal",
  11557. height: math.unit(13, "feet"),
  11558. default: true
  11559. },
  11560. {
  11561. name: "Big Boi",
  11562. height: math.unit(150, "meters")
  11563. },
  11564. {
  11565. name: "Mini Stomper",
  11566. height: math.unit(300, "meters")
  11567. },
  11568. {
  11569. name: "Macro",
  11570. height: math.unit(1000, "meters")
  11571. },
  11572. {
  11573. name: "Megamacro",
  11574. height: math.unit(11000, "meters")
  11575. },
  11576. {
  11577. name: "Gigamacro",
  11578. height: math.unit(11000, "km")
  11579. },
  11580. {
  11581. name: "Teramacro",
  11582. height: math.unit(420000, "km")
  11583. },
  11584. {
  11585. name: "Examacro",
  11586. height: math.unit(120, "parsecs")
  11587. },
  11588. {
  11589. name: "God Tho",
  11590. height: math.unit(98000000000, "parsecs")
  11591. },
  11592. ]
  11593. ))
  11594. characterMakers.push(() => makeCharacter(
  11595. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11596. {
  11597. taurFront: {
  11598. height: math.unit(6, "feet"),
  11599. weight: math.unit(200, "lb"),
  11600. name: "Taur (Front)",
  11601. image: {
  11602. source: "./media/characters/scales/taur-front.svg",
  11603. extra: 1,
  11604. bottom: 0.05
  11605. }
  11606. },
  11607. taurBack: {
  11608. height: math.unit(6, "feet"),
  11609. weight: math.unit(200, "lb"),
  11610. name: "Taur (Back)",
  11611. image: {
  11612. source: "./media/characters/scales/taur-back.svg",
  11613. extra: 1,
  11614. bottom: 0.08
  11615. }
  11616. },
  11617. anthro: {
  11618. height: math.unit(6 * 7 / 12, "feet"),
  11619. weight: math.unit(100, "lb"),
  11620. name: "Anthro",
  11621. image: {
  11622. source: "./media/characters/scales/anthro.svg",
  11623. extra: 1,
  11624. bottom: 0.06
  11625. }
  11626. },
  11627. },
  11628. [
  11629. {
  11630. name: "Normal",
  11631. height: math.unit(12, "feet"),
  11632. default: true
  11633. },
  11634. ]
  11635. ))
  11636. characterMakers.push(() => makeCharacter(
  11637. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11638. {
  11639. front: {
  11640. height: math.unit(6, "feet"),
  11641. weight: math.unit(150, "lb"),
  11642. name: "Front",
  11643. image: {
  11644. source: "./media/characters/koragos/front.svg",
  11645. extra: 841 / 794,
  11646. bottom: 0.035
  11647. }
  11648. },
  11649. back: {
  11650. height: math.unit(6, "feet"),
  11651. weight: math.unit(150, "lb"),
  11652. name: "Back",
  11653. image: {
  11654. source: "./media/characters/koragos/back.svg",
  11655. extra: 841 / 810,
  11656. bottom: 0.022
  11657. }
  11658. },
  11659. },
  11660. [
  11661. {
  11662. name: "Normal",
  11663. height: math.unit(6 + 11 / 12, "feet"),
  11664. default: true
  11665. },
  11666. {
  11667. name: "Macro",
  11668. height: math.unit(490, "feet")
  11669. },
  11670. {
  11671. name: "Megamacro",
  11672. height: math.unit(10, "miles")
  11673. },
  11674. {
  11675. name: "Gigamacro",
  11676. height: math.unit(50, "miles")
  11677. },
  11678. ]
  11679. ))
  11680. characterMakers.push(() => makeCharacter(
  11681. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11682. {
  11683. front: {
  11684. height: math.unit(6, "feet"),
  11685. weight: math.unit(250, "lb"),
  11686. name: "Front",
  11687. image: {
  11688. source: "./media/characters/xylrem/front.svg",
  11689. extra: 3323 / 3050,
  11690. bottom: 0.065
  11691. }
  11692. },
  11693. },
  11694. [
  11695. {
  11696. name: "Micro",
  11697. height: math.unit(4, "feet")
  11698. },
  11699. {
  11700. name: "Normal",
  11701. height: math.unit(16, "feet"),
  11702. default: true
  11703. },
  11704. {
  11705. name: "Macro",
  11706. height: math.unit(2720, "feet")
  11707. },
  11708. {
  11709. name: "Megamacro",
  11710. height: math.unit(25000, "miles")
  11711. },
  11712. ]
  11713. ))
  11714. characterMakers.push(() => makeCharacter(
  11715. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11716. {
  11717. front: {
  11718. height: math.unit(8, "feet"),
  11719. weight: math.unit(250, "kg"),
  11720. name: "Front",
  11721. image: {
  11722. source: "./media/characters/ikideru/front.svg",
  11723. extra: 930 / 870,
  11724. bottom: 0.087
  11725. }
  11726. },
  11727. back: {
  11728. height: math.unit(8, "feet"),
  11729. weight: math.unit(250, "kg"),
  11730. name: "Back",
  11731. image: {
  11732. source: "./media/characters/ikideru/back.svg",
  11733. extra: 919 / 852,
  11734. bottom: 0.055
  11735. }
  11736. },
  11737. },
  11738. [
  11739. {
  11740. name: "Rare",
  11741. height: math.unit(8, "feet"),
  11742. default: true
  11743. },
  11744. {
  11745. name: "Playful Loom",
  11746. height: math.unit(80, "feet")
  11747. },
  11748. {
  11749. name: "City Leaner",
  11750. height: math.unit(230, "feet")
  11751. },
  11752. {
  11753. name: "Megamacro",
  11754. height: math.unit(2500, "feet")
  11755. },
  11756. {
  11757. name: "Gigamacro",
  11758. height: math.unit(26400, "feet")
  11759. },
  11760. {
  11761. name: "Tectonic Shifter",
  11762. height: math.unit(1.7, "megameters")
  11763. },
  11764. {
  11765. name: "Planet Carer",
  11766. height: math.unit(21, "megameters")
  11767. },
  11768. {
  11769. name: "God",
  11770. height: math.unit(11157.22, "parsecs")
  11771. },
  11772. ]
  11773. ))
  11774. characterMakers.push(() => makeCharacter(
  11775. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11776. {
  11777. front: {
  11778. height: math.unit(6, "feet"),
  11779. weight: math.unit(120, "lb"),
  11780. name: "Front",
  11781. image: {
  11782. source: "./media/characters/neo/front.svg"
  11783. }
  11784. },
  11785. },
  11786. [
  11787. {
  11788. name: "Micro",
  11789. height: math.unit(2, "inches"),
  11790. default: true
  11791. },
  11792. {
  11793. name: "Human Size",
  11794. height: math.unit(5 + 8 / 12, "feet")
  11795. },
  11796. ]
  11797. ))
  11798. characterMakers.push(() => makeCharacter(
  11799. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11800. {
  11801. front: {
  11802. height: math.unit(13 + 10 / 12, "feet"),
  11803. weight: math.unit(5320, "lb"),
  11804. name: "Front",
  11805. image: {
  11806. source: "./media/characters/chauncey-chantz/front.svg",
  11807. extra: 1587 / 1435,
  11808. bottom: 0.02
  11809. }
  11810. },
  11811. },
  11812. [
  11813. {
  11814. name: "Normal",
  11815. height: math.unit(13 + 10 / 12, "feet"),
  11816. default: true
  11817. },
  11818. {
  11819. name: "Macro",
  11820. height: math.unit(45, "feet")
  11821. },
  11822. {
  11823. name: "Megamacro",
  11824. height: math.unit(250, "miles")
  11825. },
  11826. {
  11827. name: "Planetary",
  11828. height: math.unit(10000, "miles")
  11829. },
  11830. {
  11831. name: "Galactic",
  11832. height: math.unit(40000, "parsecs")
  11833. },
  11834. {
  11835. name: "Universal",
  11836. height: math.unit(1, "yottameter")
  11837. },
  11838. ]
  11839. ))
  11840. characterMakers.push(() => makeCharacter(
  11841. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11842. {
  11843. front: {
  11844. height: math.unit(6, "feet"),
  11845. weight: math.unit(150, "lb"),
  11846. name: "Front",
  11847. image: {
  11848. source: "./media/characters/epifox/front.svg",
  11849. extra: 1,
  11850. bottom: 0.075
  11851. }
  11852. },
  11853. },
  11854. [
  11855. {
  11856. name: "Micro",
  11857. height: math.unit(6, "inches")
  11858. },
  11859. {
  11860. name: "Normal",
  11861. height: math.unit(12, "feet"),
  11862. default: true
  11863. },
  11864. {
  11865. name: "Macro",
  11866. height: math.unit(3810, "feet")
  11867. },
  11868. {
  11869. name: "Megamacro",
  11870. height: math.unit(500, "miles")
  11871. },
  11872. ]
  11873. ))
  11874. characterMakers.push(() => makeCharacter(
  11875. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11876. {
  11877. front: {
  11878. height: math.unit(1.8796, "m"),
  11879. weight: math.unit(230, "lb"),
  11880. name: "Front",
  11881. image: {
  11882. source: "./media/characters/colin-t/front.svg",
  11883. extra: 1272 / 1193,
  11884. bottom: 0.07
  11885. }
  11886. },
  11887. },
  11888. [
  11889. {
  11890. name: "Micro",
  11891. height: math.unit(0.571, "meters")
  11892. },
  11893. {
  11894. name: "Normal",
  11895. height: math.unit(1.8796, "meters"),
  11896. default: true
  11897. },
  11898. {
  11899. name: "Tall",
  11900. height: math.unit(4, "meters")
  11901. },
  11902. {
  11903. name: "Macro",
  11904. height: math.unit(67.241, "meters")
  11905. },
  11906. {
  11907. name: "Megamacro",
  11908. height: math.unit(371.856, "meters")
  11909. },
  11910. {
  11911. name: "Planetary",
  11912. height: math.unit(12631.5689, "km")
  11913. },
  11914. ]
  11915. ))
  11916. characterMakers.push(() => makeCharacter(
  11917. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11918. {
  11919. front: {
  11920. height: math.unit(1.85, "meters"),
  11921. weight: math.unit(80, "kg"),
  11922. name: "Front",
  11923. image: {
  11924. source: "./media/characters/matvei/front.svg",
  11925. extra: 614 / 594,
  11926. bottom: 0.01
  11927. }
  11928. },
  11929. },
  11930. [
  11931. {
  11932. name: "Normal",
  11933. height: math.unit(1.85, "meters"),
  11934. default: true
  11935. },
  11936. ]
  11937. ))
  11938. characterMakers.push(() => makeCharacter(
  11939. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11940. {
  11941. front: {
  11942. height: math.unit(5 + 9 / 12, "feet"),
  11943. weight: math.unit(70, "lb"),
  11944. name: "Front",
  11945. image: {
  11946. source: "./media/characters/quincy/front.svg",
  11947. extra: 3041 / 2751
  11948. }
  11949. },
  11950. back: {
  11951. height: math.unit(5 + 9 / 12, "feet"),
  11952. weight: math.unit(70, "lb"),
  11953. name: "Back",
  11954. image: {
  11955. source: "./media/characters/quincy/back.svg",
  11956. extra: 3041 / 2751
  11957. }
  11958. },
  11959. flying: {
  11960. height: math.unit(5 + 4 / 12, "feet"),
  11961. weight: math.unit(70, "lb"),
  11962. name: "Flying",
  11963. image: {
  11964. source: "./media/characters/quincy/flying.svg",
  11965. extra: 1044 / 930
  11966. }
  11967. },
  11968. },
  11969. [
  11970. {
  11971. name: "Micro",
  11972. height: math.unit(3, "cm")
  11973. },
  11974. {
  11975. name: "Normal",
  11976. height: math.unit(5 + 9 / 12, "feet")
  11977. },
  11978. {
  11979. name: "Macro",
  11980. height: math.unit(200, "meters"),
  11981. default: true
  11982. },
  11983. {
  11984. name: "Megamacro",
  11985. height: math.unit(1000, "meters")
  11986. },
  11987. ]
  11988. ))
  11989. characterMakers.push(() => makeCharacter(
  11990. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11991. {
  11992. front: {
  11993. height: math.unit(3 + 11/12, "feet"),
  11994. weight: math.unit(50, "lb"),
  11995. name: "Front",
  11996. image: {
  11997. source: "./media/characters/vanrel/front.svg",
  11998. extra: 1104/949,
  11999. bottom: 52/1156
  12000. }
  12001. },
  12002. back: {
  12003. height: math.unit(3 + 11/12, "feet"),
  12004. weight: math.unit(50, "lb"),
  12005. name: "Back",
  12006. image: {
  12007. source: "./media/characters/vanrel/back.svg",
  12008. extra: 1119/976,
  12009. bottom: 37/1156
  12010. }
  12011. },
  12012. tome: {
  12013. height: math.unit(1.35, "feet"),
  12014. weight: math.unit(10, "lb"),
  12015. name: "Vanrel's Tome",
  12016. rename: true,
  12017. image: {
  12018. source: "./media/characters/vanrel/tome.svg"
  12019. }
  12020. },
  12021. beans: {
  12022. height: math.unit(0.89, "feet"),
  12023. name: "Beans",
  12024. image: {
  12025. source: "./media/characters/vanrel/beans.svg"
  12026. }
  12027. },
  12028. },
  12029. [
  12030. {
  12031. name: "Normal",
  12032. height: math.unit(3 + 11/12, "feet"),
  12033. default: true
  12034. },
  12035. ]
  12036. ))
  12037. characterMakers.push(() => makeCharacter(
  12038. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12039. {
  12040. front: {
  12041. height: math.unit(7 + 5 / 12, "feet"),
  12042. name: "Front",
  12043. image: {
  12044. source: "./media/characters/kuiper-vanrel/front.svg",
  12045. extra: 1219/1169,
  12046. bottom: 69/1288
  12047. }
  12048. },
  12049. back: {
  12050. height: math.unit(7 + 5 / 12, "feet"),
  12051. name: "Back",
  12052. image: {
  12053. source: "./media/characters/kuiper-vanrel/back.svg",
  12054. extra: 1236/1193,
  12055. bottom: 27/1263
  12056. }
  12057. },
  12058. foot: {
  12059. height: math.unit(0.55, "meters"),
  12060. name: "Foot",
  12061. image: {
  12062. source: "./media/characters/kuiper-vanrel/foot.svg",
  12063. }
  12064. },
  12065. battle: {
  12066. height: math.unit(6.824, "feet"),
  12067. name: "Battle",
  12068. image: {
  12069. source: "./media/characters/kuiper-vanrel/battle.svg",
  12070. extra: 1466 / 1327,
  12071. bottom: 29 / 1492.5
  12072. }
  12073. },
  12074. meerkui: {
  12075. height: math.unit(18, "inches"),
  12076. name: "Meerkui",
  12077. image: {
  12078. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12079. extra: 1354/1289,
  12080. bottom: 69/1423
  12081. }
  12082. },
  12083. },
  12084. [
  12085. {
  12086. name: "Normal",
  12087. height: math.unit(7 + 5 / 12, "feet"),
  12088. default: true
  12089. },
  12090. ]
  12091. ))
  12092. characterMakers.push(() => makeCharacter(
  12093. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12094. {
  12095. front: {
  12096. height: math.unit(8 + 5 / 12, "feet"),
  12097. name: "Front",
  12098. image: {
  12099. source: "./media/characters/keset-vanrel/front.svg",
  12100. extra: 1231/1148,
  12101. bottom: 82/1313
  12102. }
  12103. },
  12104. back: {
  12105. height: math.unit(8 + 5 / 12, "feet"),
  12106. name: "Back",
  12107. image: {
  12108. source: "./media/characters/keset-vanrel/back.svg",
  12109. extra: 1240/1174,
  12110. bottom: 33/1273
  12111. }
  12112. },
  12113. hand: {
  12114. height: math.unit(0.6, "meters"),
  12115. name: "Hand",
  12116. image: {
  12117. source: "./media/characters/keset-vanrel/hand.svg"
  12118. }
  12119. },
  12120. foot: {
  12121. height: math.unit(0.94978, "meters"),
  12122. name: "Foot",
  12123. image: {
  12124. source: "./media/characters/keset-vanrel/foot.svg"
  12125. }
  12126. },
  12127. battle: {
  12128. height: math.unit(7.408, "feet"),
  12129. name: "Battle",
  12130. image: {
  12131. source: "./media/characters/keset-vanrel/battle.svg",
  12132. extra: 1890 / 1386,
  12133. bottom: 73.28 / 1970
  12134. }
  12135. },
  12136. },
  12137. [
  12138. {
  12139. name: "Normal",
  12140. height: math.unit(8 + 5 / 12, "feet"),
  12141. default: true
  12142. },
  12143. ]
  12144. ))
  12145. characterMakers.push(() => makeCharacter(
  12146. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12147. {
  12148. front: {
  12149. height: math.unit(6, "feet"),
  12150. weight: math.unit(150, "lb"),
  12151. name: "Front",
  12152. image: {
  12153. source: "./media/characters/neos/front.svg",
  12154. extra: 1696 / 992,
  12155. bottom: 0.14
  12156. }
  12157. },
  12158. },
  12159. [
  12160. {
  12161. name: "Normal",
  12162. height: math.unit(54, "cm"),
  12163. default: true
  12164. },
  12165. {
  12166. name: "Macro",
  12167. height: math.unit(100, "m")
  12168. },
  12169. {
  12170. name: "Megamacro",
  12171. height: math.unit(10, "km")
  12172. },
  12173. {
  12174. name: "Megamacro+",
  12175. height: math.unit(100, "km")
  12176. },
  12177. {
  12178. name: "Gigamacro",
  12179. height: math.unit(100, "Mm")
  12180. },
  12181. {
  12182. name: "Teramacro",
  12183. height: math.unit(100, "Gm")
  12184. },
  12185. {
  12186. name: "Examacro",
  12187. height: math.unit(100, "Em")
  12188. },
  12189. {
  12190. name: "Godly",
  12191. height: math.unit(10000, "Ym")
  12192. },
  12193. {
  12194. name: "Beyond Godly",
  12195. height: math.unit(25, "multiverses")
  12196. },
  12197. ]
  12198. ))
  12199. characterMakers.push(() => makeCharacter(
  12200. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12201. {
  12202. feminine: {
  12203. height: math.unit(5, "feet"),
  12204. weight: math.unit(100, "lb"),
  12205. name: "Feminine",
  12206. image: {
  12207. source: "./media/characters/sammy-mouse/feminine.svg",
  12208. extra: 2526 / 2425,
  12209. bottom: 0.123
  12210. }
  12211. },
  12212. masculine: {
  12213. height: math.unit(5, "feet"),
  12214. weight: math.unit(100, "lb"),
  12215. name: "Masculine",
  12216. image: {
  12217. source: "./media/characters/sammy-mouse/masculine.svg",
  12218. extra: 2526 / 2425,
  12219. bottom: 0.123
  12220. }
  12221. },
  12222. },
  12223. [
  12224. {
  12225. name: "Micro",
  12226. height: math.unit(5, "inches")
  12227. },
  12228. {
  12229. name: "Normal",
  12230. height: math.unit(5, "feet"),
  12231. default: true
  12232. },
  12233. {
  12234. name: "Macro",
  12235. height: math.unit(60, "feet")
  12236. },
  12237. ]
  12238. ))
  12239. characterMakers.push(() => makeCharacter(
  12240. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12241. {
  12242. front: {
  12243. height: math.unit(4, "feet"),
  12244. weight: math.unit(50, "lb"),
  12245. name: "Front",
  12246. image: {
  12247. source: "./media/characters/kole/front.svg",
  12248. extra: 1423 / 1303,
  12249. bottom: 0.025
  12250. }
  12251. },
  12252. back: {
  12253. height: math.unit(4, "feet"),
  12254. weight: math.unit(50, "lb"),
  12255. name: "Back",
  12256. image: {
  12257. source: "./media/characters/kole/back.svg",
  12258. extra: 1426 / 1280,
  12259. bottom: 0.02
  12260. }
  12261. },
  12262. },
  12263. [
  12264. {
  12265. name: "Normal",
  12266. height: math.unit(4, "feet"),
  12267. default: true
  12268. },
  12269. ]
  12270. ))
  12271. characterMakers.push(() => makeCharacter(
  12272. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12273. {
  12274. front: {
  12275. height: math.unit(2.5, "feet"),
  12276. weight: math.unit(32, "lb"),
  12277. name: "Front",
  12278. image: {
  12279. source: "./media/characters/rufran/front.svg",
  12280. extra: 1313/885,
  12281. bottom: 94/1407
  12282. }
  12283. },
  12284. side: {
  12285. height: math.unit(2.5, "feet"),
  12286. weight: math.unit(32, "lb"),
  12287. name: "Side",
  12288. image: {
  12289. source: "./media/characters/rufran/side.svg",
  12290. extra: 1109/852,
  12291. bottom: 118/1227
  12292. }
  12293. },
  12294. back: {
  12295. height: math.unit(2.5, "feet"),
  12296. weight: math.unit(32, "lb"),
  12297. name: "Back",
  12298. image: {
  12299. source: "./media/characters/rufran/back.svg",
  12300. extra: 1280/878,
  12301. bottom: 131/1411
  12302. }
  12303. },
  12304. mouth: {
  12305. height: math.unit(1.13, "feet"),
  12306. name: "Mouth",
  12307. image: {
  12308. source: "./media/characters/rufran/mouth.svg"
  12309. }
  12310. },
  12311. foot: {
  12312. height: math.unit(1.33, "feet"),
  12313. name: "Foot",
  12314. image: {
  12315. source: "./media/characters/rufran/foot.svg"
  12316. }
  12317. },
  12318. koboldFront: {
  12319. height: math.unit(2 + 6 / 12, "feet"),
  12320. weight: math.unit(20, "lb"),
  12321. name: "Front (Kobold)",
  12322. image: {
  12323. source: "./media/characters/rufran/kobold-front.svg",
  12324. extra: 2041 / 1839,
  12325. bottom: 0.055
  12326. }
  12327. },
  12328. koboldBack: {
  12329. height: math.unit(2 + 6 / 12, "feet"),
  12330. weight: math.unit(20, "lb"),
  12331. name: "Back (Kobold)",
  12332. image: {
  12333. source: "./media/characters/rufran/kobold-back.svg",
  12334. extra: 2054 / 1839,
  12335. bottom: 0.01
  12336. }
  12337. },
  12338. koboldHand: {
  12339. height: math.unit(0.2166, "meters"),
  12340. name: "Hand (Kobold)",
  12341. image: {
  12342. source: "./media/characters/rufran/kobold-hand.svg"
  12343. }
  12344. },
  12345. koboldFoot: {
  12346. height: math.unit(0.185, "meters"),
  12347. name: "Foot (Kobold)",
  12348. image: {
  12349. source: "./media/characters/rufran/kobold-foot.svg"
  12350. }
  12351. },
  12352. },
  12353. [
  12354. {
  12355. name: "Micro",
  12356. height: math.unit(1, "inch")
  12357. },
  12358. {
  12359. name: "Normal",
  12360. height: math.unit(2 + 6 / 12, "feet"),
  12361. default: true
  12362. },
  12363. {
  12364. name: "Big",
  12365. height: math.unit(60, "feet")
  12366. },
  12367. {
  12368. name: "Macro",
  12369. height: math.unit(325, "feet")
  12370. },
  12371. ]
  12372. ))
  12373. characterMakers.push(() => makeCharacter(
  12374. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12375. {
  12376. front: {
  12377. height: math.unit(0.3, "meters"),
  12378. weight: math.unit(3.5, "kg"),
  12379. name: "Front",
  12380. image: {
  12381. source: "./media/characters/chip/front.svg",
  12382. extra: 748 / 674
  12383. }
  12384. },
  12385. },
  12386. [
  12387. {
  12388. name: "Micro",
  12389. height: math.unit(1, "inch"),
  12390. default: true
  12391. },
  12392. ]
  12393. ))
  12394. characterMakers.push(() => makeCharacter(
  12395. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12396. {
  12397. side: {
  12398. height: math.unit(2.3, "meters"),
  12399. weight: math.unit(3500, "lb"),
  12400. name: "Side",
  12401. image: {
  12402. source: "./media/characters/torvid/side.svg",
  12403. extra: 1972 / 722,
  12404. bottom: 0.035
  12405. }
  12406. },
  12407. },
  12408. [
  12409. {
  12410. name: "Normal",
  12411. height: math.unit(2.3, "meters"),
  12412. default: true
  12413. },
  12414. ]
  12415. ))
  12416. characterMakers.push(() => makeCharacter(
  12417. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12418. {
  12419. front: {
  12420. height: math.unit(2, "meters"),
  12421. weight: math.unit(150.5, "kg"),
  12422. name: "Front",
  12423. image: {
  12424. source: "./media/characters/susan/front.svg",
  12425. extra: 693 / 635,
  12426. bottom: 0.05
  12427. }
  12428. },
  12429. },
  12430. [
  12431. {
  12432. name: "Megamacro",
  12433. height: math.unit(505, "miles"),
  12434. default: true
  12435. },
  12436. ]
  12437. ))
  12438. characterMakers.push(() => makeCharacter(
  12439. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12440. {
  12441. front: {
  12442. height: math.unit(6, "feet"),
  12443. weight: math.unit(150, "lb"),
  12444. name: "Front",
  12445. image: {
  12446. source: "./media/characters/raindrops/front.svg",
  12447. extra: 2655 / 2461,
  12448. bottom: 49 / 2705
  12449. }
  12450. },
  12451. back: {
  12452. height: math.unit(6, "feet"),
  12453. weight: math.unit(150, "lb"),
  12454. name: "Back",
  12455. image: {
  12456. source: "./media/characters/raindrops/back.svg",
  12457. extra: 2574 / 2400,
  12458. bottom: 65 / 2634
  12459. }
  12460. },
  12461. },
  12462. [
  12463. {
  12464. name: "Micro",
  12465. height: math.unit(6, "inches")
  12466. },
  12467. {
  12468. name: "Normal",
  12469. height: math.unit(6 + 2 / 12, "feet")
  12470. },
  12471. {
  12472. name: "Macro",
  12473. height: math.unit(131, "feet"),
  12474. default: true
  12475. },
  12476. {
  12477. name: "Megamacro",
  12478. height: math.unit(15, "miles")
  12479. },
  12480. {
  12481. name: "Gigamacro",
  12482. height: math.unit(4000, "miles")
  12483. },
  12484. {
  12485. name: "Teramacro",
  12486. height: math.unit(315000, "miles")
  12487. },
  12488. ]
  12489. ))
  12490. characterMakers.push(() => makeCharacter(
  12491. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12492. {
  12493. front: {
  12494. height: math.unit(2.794, "meters"),
  12495. weight: math.unit(325, "kg"),
  12496. name: "Front",
  12497. image: {
  12498. source: "./media/characters/tezwa/front.svg",
  12499. extra: 2083 / 1906,
  12500. bottom: 0.031
  12501. }
  12502. },
  12503. foot: {
  12504. height: math.unit(0.687, "meters"),
  12505. name: "Foot",
  12506. image: {
  12507. source: "./media/characters/tezwa/foot.svg"
  12508. }
  12509. },
  12510. },
  12511. [
  12512. {
  12513. name: "Normal",
  12514. height: math.unit(9 + 2 / 12, "feet"),
  12515. default: true
  12516. },
  12517. ]
  12518. ))
  12519. characterMakers.push(() => makeCharacter(
  12520. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12521. {
  12522. front: {
  12523. height: math.unit(58, "feet"),
  12524. weight: math.unit(89000, "lb"),
  12525. name: "Front",
  12526. image: {
  12527. source: "./media/characters/typhus/front.svg",
  12528. extra: 816 / 800,
  12529. bottom: 0.065
  12530. }
  12531. },
  12532. },
  12533. [
  12534. {
  12535. name: "Macro",
  12536. height: math.unit(58, "feet"),
  12537. default: true
  12538. },
  12539. ]
  12540. ))
  12541. characterMakers.push(() => makeCharacter(
  12542. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12543. {
  12544. front: {
  12545. height: math.unit(12, "feet"),
  12546. weight: math.unit(6, "tonnes"),
  12547. name: "Front",
  12548. image: {
  12549. source: "./media/characters/lyra-von-wulf/front.svg",
  12550. extra: 1,
  12551. bottom: 0.10
  12552. }
  12553. },
  12554. frontMecha: {
  12555. height: math.unit(12, "feet"),
  12556. weight: math.unit(12, "tonnes"),
  12557. name: "Front (Mecha)",
  12558. image: {
  12559. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12560. extra: 1,
  12561. bottom: 0.042
  12562. }
  12563. },
  12564. maw: {
  12565. height: math.unit(2.2, "feet"),
  12566. name: "Maw",
  12567. image: {
  12568. source: "./media/characters/lyra-von-wulf/maw.svg"
  12569. }
  12570. },
  12571. },
  12572. [
  12573. {
  12574. name: "Normal",
  12575. height: math.unit(12, "feet"),
  12576. default: true
  12577. },
  12578. {
  12579. name: "Classic",
  12580. height: math.unit(50, "feet")
  12581. },
  12582. {
  12583. name: "Macro",
  12584. height: math.unit(500, "feet")
  12585. },
  12586. {
  12587. name: "Megamacro",
  12588. height: math.unit(1, "mile")
  12589. },
  12590. {
  12591. name: "Gigamacro",
  12592. height: math.unit(400, "miles")
  12593. },
  12594. {
  12595. name: "Teramacro",
  12596. height: math.unit(22000, "miles")
  12597. },
  12598. {
  12599. name: "Solarmacro",
  12600. height: math.unit(8600000, "miles")
  12601. },
  12602. {
  12603. name: "Galactic",
  12604. height: math.unit(1057000, "lightyears")
  12605. },
  12606. ]
  12607. ))
  12608. characterMakers.push(() => makeCharacter(
  12609. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12610. {
  12611. front: {
  12612. height: math.unit(6 + 10 / 12, "feet"),
  12613. weight: math.unit(150, "lb"),
  12614. name: "Front",
  12615. image: {
  12616. source: "./media/characters/dixon/front.svg",
  12617. extra: 3361 / 3209,
  12618. bottom: 0.01
  12619. }
  12620. },
  12621. },
  12622. [
  12623. {
  12624. name: "Normal",
  12625. height: math.unit(6 + 10 / 12, "feet"),
  12626. default: true
  12627. },
  12628. {
  12629. name: "Big",
  12630. height: math.unit(12, "meters")
  12631. },
  12632. {
  12633. name: "Macro",
  12634. height: math.unit(500, "meters")
  12635. },
  12636. {
  12637. name: "Megamacro",
  12638. height: math.unit(2, "km")
  12639. },
  12640. ]
  12641. ))
  12642. characterMakers.push(() => makeCharacter(
  12643. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12644. {
  12645. front: {
  12646. height: math.unit(185, "cm"),
  12647. weight: math.unit(68, "kg"),
  12648. name: "Front",
  12649. image: {
  12650. source: "./media/characters/kauko/front.svg",
  12651. extra: 1455 / 1421,
  12652. bottom: 0.03
  12653. }
  12654. },
  12655. back: {
  12656. height: math.unit(185, "cm"),
  12657. weight: math.unit(68, "kg"),
  12658. name: "Back",
  12659. image: {
  12660. source: "./media/characters/kauko/back.svg",
  12661. extra: 1455 / 1421,
  12662. bottom: 0.004
  12663. }
  12664. },
  12665. },
  12666. [
  12667. {
  12668. name: "Normal",
  12669. height: math.unit(185, "cm"),
  12670. default: true
  12671. },
  12672. ]
  12673. ))
  12674. characterMakers.push(() => makeCharacter(
  12675. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12676. {
  12677. front: {
  12678. height: math.unit(6, "feet"),
  12679. weight: math.unit(150, "kg"),
  12680. name: "Front",
  12681. image: {
  12682. source: "./media/characters/varg/front.svg",
  12683. extra: 1108 / 1018,
  12684. bottom: 0.0375
  12685. }
  12686. },
  12687. },
  12688. [
  12689. {
  12690. name: "Normal",
  12691. height: math.unit(5, "meters")
  12692. },
  12693. {
  12694. name: "Macro",
  12695. height: math.unit(200, "meters")
  12696. },
  12697. {
  12698. name: "Megamacro",
  12699. height: math.unit(20, "kilometers")
  12700. },
  12701. {
  12702. name: "True Size",
  12703. height: math.unit(211, "km"),
  12704. default: true
  12705. },
  12706. {
  12707. name: "Gigamacro",
  12708. height: math.unit(1000, "km")
  12709. },
  12710. {
  12711. name: "Gigamacro+",
  12712. height: math.unit(8000, "km")
  12713. },
  12714. {
  12715. name: "Teramacro",
  12716. height: math.unit(1000000, "km")
  12717. },
  12718. ]
  12719. ))
  12720. characterMakers.push(() => makeCharacter(
  12721. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12722. {
  12723. front: {
  12724. height: math.unit(7 + 7 / 12, "feet"),
  12725. weight: math.unit(267, "lb"),
  12726. name: "Front",
  12727. image: {
  12728. source: "./media/characters/dayza/front.svg",
  12729. extra: 1262 / 1200,
  12730. bottom: 0.035
  12731. }
  12732. },
  12733. side: {
  12734. height: math.unit(7 + 7 / 12, "feet"),
  12735. weight: math.unit(267, "lb"),
  12736. name: "Side",
  12737. image: {
  12738. source: "./media/characters/dayza/side.svg",
  12739. extra: 1295 / 1245,
  12740. bottom: 0.05
  12741. }
  12742. },
  12743. back: {
  12744. height: math.unit(7 + 7 / 12, "feet"),
  12745. weight: math.unit(267, "lb"),
  12746. name: "Back",
  12747. image: {
  12748. source: "./media/characters/dayza/back.svg",
  12749. extra: 1241 / 1170
  12750. }
  12751. },
  12752. },
  12753. [
  12754. {
  12755. name: "Normal",
  12756. height: math.unit(7 + 7 / 12, "feet"),
  12757. default: true
  12758. },
  12759. {
  12760. name: "Macro",
  12761. height: math.unit(155, "feet")
  12762. },
  12763. ]
  12764. ))
  12765. characterMakers.push(() => makeCharacter(
  12766. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12767. {
  12768. front: {
  12769. height: math.unit(6 + 5 / 12, "feet"),
  12770. weight: math.unit(160, "lb"),
  12771. name: "Front",
  12772. image: {
  12773. source: "./media/characters/xanthos/front.svg",
  12774. extra: 1,
  12775. bottom: 0.04
  12776. }
  12777. },
  12778. back: {
  12779. height: math.unit(6 + 5 / 12, "feet"),
  12780. weight: math.unit(160, "lb"),
  12781. name: "Back",
  12782. image: {
  12783. source: "./media/characters/xanthos/back.svg",
  12784. extra: 1,
  12785. bottom: 0.03
  12786. }
  12787. },
  12788. hand: {
  12789. height: math.unit(0.928, "feet"),
  12790. name: "Hand",
  12791. image: {
  12792. source: "./media/characters/xanthos/hand.svg"
  12793. }
  12794. },
  12795. foot: {
  12796. height: math.unit(1.286, "feet"),
  12797. name: "Foot",
  12798. image: {
  12799. source: "./media/characters/xanthos/foot.svg"
  12800. }
  12801. },
  12802. },
  12803. [
  12804. {
  12805. name: "Normal",
  12806. height: math.unit(6 + 5 / 12, "feet"),
  12807. default: true
  12808. },
  12809. {
  12810. name: "Normal+",
  12811. height: math.unit(6, "meters")
  12812. },
  12813. {
  12814. name: "Macro",
  12815. height: math.unit(40, "feet")
  12816. },
  12817. {
  12818. name: "Macro+",
  12819. height: math.unit(200, "meters")
  12820. },
  12821. {
  12822. name: "Megamacro",
  12823. height: math.unit(20, "km")
  12824. },
  12825. {
  12826. name: "Megamacro+",
  12827. height: math.unit(100, "km")
  12828. },
  12829. {
  12830. name: "Gigamacro",
  12831. height: math.unit(200, "megameters")
  12832. },
  12833. {
  12834. name: "Gigamacro+",
  12835. height: math.unit(1.5, "gigameters")
  12836. },
  12837. ]
  12838. ))
  12839. characterMakers.push(() => makeCharacter(
  12840. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12841. {
  12842. front: {
  12843. height: math.unit(6 + 3 / 12, "feet"),
  12844. weight: math.unit(215, "lb"),
  12845. name: "Front",
  12846. image: {
  12847. source: "./media/characters/grynn/front.svg",
  12848. extra: 4627 / 4209,
  12849. bottom: 0.047
  12850. }
  12851. },
  12852. },
  12853. [
  12854. {
  12855. name: "Micro",
  12856. height: math.unit(6, "inches")
  12857. },
  12858. {
  12859. name: "Normal",
  12860. height: math.unit(6 + 3 / 12, "feet"),
  12861. default: true
  12862. },
  12863. {
  12864. name: "Big",
  12865. height: math.unit(104, "feet")
  12866. },
  12867. {
  12868. name: "Macro",
  12869. height: math.unit(944, "feet")
  12870. },
  12871. {
  12872. name: "Macro+",
  12873. height: math.unit(9480, "feet")
  12874. },
  12875. {
  12876. name: "Megamacro",
  12877. height: math.unit(78752, "feet")
  12878. },
  12879. {
  12880. name: "Megamacro+",
  12881. height: math.unit(630128, "feet")
  12882. },
  12883. {
  12884. name: "Megamacro++",
  12885. height: math.unit(3150695, "feet")
  12886. },
  12887. ]
  12888. ))
  12889. characterMakers.push(() => makeCharacter(
  12890. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12891. {
  12892. front: {
  12893. height: math.unit(7 + 5 / 12, "feet"),
  12894. weight: math.unit(450, "lb"),
  12895. name: "Front",
  12896. image: {
  12897. source: "./media/characters/mocha-aura/front.svg",
  12898. extra: 1907 / 1817,
  12899. bottom: 0.04
  12900. }
  12901. },
  12902. back: {
  12903. height: math.unit(7 + 5 / 12, "feet"),
  12904. weight: math.unit(450, "lb"),
  12905. name: "Back",
  12906. image: {
  12907. source: "./media/characters/mocha-aura/back.svg",
  12908. extra: 1900 / 1825,
  12909. bottom: 0.045
  12910. }
  12911. },
  12912. },
  12913. [
  12914. {
  12915. name: "Nano",
  12916. height: math.unit(1, "nm")
  12917. },
  12918. {
  12919. name: "Megamicro",
  12920. height: math.unit(1, "mm")
  12921. },
  12922. {
  12923. name: "Micro",
  12924. height: math.unit(3, "inches")
  12925. },
  12926. {
  12927. name: "Normal",
  12928. height: math.unit(7 + 5 / 12, "feet"),
  12929. default: true
  12930. },
  12931. {
  12932. name: "Macro",
  12933. height: math.unit(30, "feet")
  12934. },
  12935. {
  12936. name: "Megamacro",
  12937. height: math.unit(3500, "feet")
  12938. },
  12939. {
  12940. name: "Teramacro",
  12941. height: math.unit(500000, "miles")
  12942. },
  12943. {
  12944. name: "Petamacro",
  12945. height: math.unit(50000000000000000, "parsecs")
  12946. },
  12947. ]
  12948. ))
  12949. characterMakers.push(() => makeCharacter(
  12950. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12951. {
  12952. front: {
  12953. height: math.unit(6, "feet"),
  12954. weight: math.unit(150, "lb"),
  12955. name: "Front",
  12956. image: {
  12957. source: "./media/characters/ilisha-devya/front.svg",
  12958. extra: 1,
  12959. bottom: 0.175
  12960. }
  12961. },
  12962. back: {
  12963. height: math.unit(6, "feet"),
  12964. weight: math.unit(150, "lb"),
  12965. name: "Back",
  12966. image: {
  12967. source: "./media/characters/ilisha-devya/back.svg",
  12968. extra: 1,
  12969. bottom: 0.015
  12970. }
  12971. },
  12972. },
  12973. [
  12974. {
  12975. name: "Macro",
  12976. height: math.unit(500, "feet"),
  12977. default: true
  12978. },
  12979. {
  12980. name: "Megamacro",
  12981. height: math.unit(10, "miles")
  12982. },
  12983. {
  12984. name: "Gigamacro",
  12985. height: math.unit(100000, "miles")
  12986. },
  12987. {
  12988. name: "Examacro",
  12989. height: math.unit(1e9, "lightyears")
  12990. },
  12991. {
  12992. name: "Omniversal",
  12993. height: math.unit(1e33, "lightyears")
  12994. },
  12995. {
  12996. name: "Beyond Infinite",
  12997. height: math.unit(1e100, "lightyears")
  12998. },
  12999. ]
  13000. ))
  13001. characterMakers.push(() => makeCharacter(
  13002. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13003. {
  13004. Side: {
  13005. height: math.unit(6, "feet"),
  13006. weight: math.unit(150, "lb"),
  13007. name: "Side",
  13008. image: {
  13009. source: "./media/characters/mira/side.svg",
  13010. extra: 900 / 799,
  13011. bottom: 0.02
  13012. }
  13013. },
  13014. },
  13015. [
  13016. {
  13017. name: "Human Size",
  13018. height: math.unit(6, "feet")
  13019. },
  13020. {
  13021. name: "Macro",
  13022. height: math.unit(100, "feet"),
  13023. default: true
  13024. },
  13025. {
  13026. name: "Megamacro",
  13027. height: math.unit(10, "miles")
  13028. },
  13029. {
  13030. name: "Gigamacro",
  13031. height: math.unit(25000, "miles")
  13032. },
  13033. {
  13034. name: "Teramacro",
  13035. height: math.unit(300, "AU")
  13036. },
  13037. {
  13038. name: "Full Size",
  13039. height: math.unit(4.5e10, "lightyears")
  13040. },
  13041. ]
  13042. ))
  13043. characterMakers.push(() => makeCharacter(
  13044. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13045. {
  13046. front: {
  13047. height: math.unit(6, "feet"),
  13048. weight: math.unit(150, "lb"),
  13049. name: "Front",
  13050. image: {
  13051. source: "./media/characters/holly/front.svg",
  13052. extra: 639 / 606
  13053. }
  13054. },
  13055. back: {
  13056. height: math.unit(6, "feet"),
  13057. weight: math.unit(150, "lb"),
  13058. name: "Back",
  13059. image: {
  13060. source: "./media/characters/holly/back.svg",
  13061. extra: 623 / 598
  13062. }
  13063. },
  13064. frontWorking: {
  13065. height: math.unit(6, "feet"),
  13066. weight: math.unit(150, "lb"),
  13067. name: "Front (Working)",
  13068. image: {
  13069. source: "./media/characters/holly/front-working.svg",
  13070. extra: 607 / 577,
  13071. bottom: 0.048
  13072. }
  13073. },
  13074. },
  13075. [
  13076. {
  13077. name: "Normal",
  13078. height: math.unit(12 + 3 / 12, "feet"),
  13079. default: true
  13080. },
  13081. ]
  13082. ))
  13083. characterMakers.push(() => makeCharacter(
  13084. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13085. {
  13086. front: {
  13087. height: math.unit(6, "feet"),
  13088. weight: math.unit(150, "lb"),
  13089. name: "Front",
  13090. image: {
  13091. source: "./media/characters/porter/front.svg",
  13092. extra: 1,
  13093. bottom: 0.01
  13094. }
  13095. },
  13096. frontRobes: {
  13097. height: math.unit(6, "feet"),
  13098. weight: math.unit(150, "lb"),
  13099. name: "Front (Robes)",
  13100. image: {
  13101. source: "./media/characters/porter/front-robes.svg",
  13102. extra: 1.01,
  13103. bottom: 0.01
  13104. }
  13105. },
  13106. },
  13107. [
  13108. {
  13109. name: "Normal",
  13110. height: math.unit(11 + 9 / 12, "feet"),
  13111. default: true
  13112. },
  13113. ]
  13114. ))
  13115. characterMakers.push(() => makeCharacter(
  13116. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13117. {
  13118. legendary: {
  13119. height: math.unit(6, "feet"),
  13120. weight: math.unit(150, "lb"),
  13121. name: "Legendary",
  13122. image: {
  13123. source: "./media/characters/lucy/legendary.svg",
  13124. extra: 1355 / 1100,
  13125. bottom: 0.045
  13126. }
  13127. },
  13128. },
  13129. [
  13130. {
  13131. name: "Legendary",
  13132. height: math.unit(86882 * 2, "miles"),
  13133. default: true
  13134. },
  13135. ]
  13136. ))
  13137. characterMakers.push(() => makeCharacter(
  13138. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13139. {
  13140. front: {
  13141. height: math.unit(6, "feet"),
  13142. weight: math.unit(150, "lb"),
  13143. name: "Front",
  13144. image: {
  13145. source: "./media/characters/drusilla/front.svg",
  13146. extra: 678 / 635,
  13147. bottom: 0.03
  13148. }
  13149. },
  13150. back: {
  13151. height: math.unit(6, "feet"),
  13152. weight: math.unit(150, "lb"),
  13153. name: "Back",
  13154. image: {
  13155. source: "./media/characters/drusilla/back.svg",
  13156. extra: 678 / 635,
  13157. bottom: 0.005
  13158. }
  13159. },
  13160. },
  13161. [
  13162. {
  13163. name: "Macro",
  13164. height: math.unit(100, "feet")
  13165. },
  13166. {
  13167. name: "Canon Height",
  13168. height: math.unit(2000, "feet"),
  13169. default: true
  13170. },
  13171. ]
  13172. ))
  13173. characterMakers.push(() => makeCharacter(
  13174. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13175. {
  13176. front: {
  13177. height: math.unit(6, "feet"),
  13178. weight: math.unit(180, "lb"),
  13179. name: "Front",
  13180. image: {
  13181. source: "./media/characters/renard-thatch/front.svg",
  13182. extra: 2411 / 2275,
  13183. bottom: 0.01
  13184. }
  13185. },
  13186. frontPosing: {
  13187. height: math.unit(6, "feet"),
  13188. weight: math.unit(180, "lb"),
  13189. name: "Front (Posing)",
  13190. image: {
  13191. source: "./media/characters/renard-thatch/front-posing.svg",
  13192. extra: 2381 / 2261,
  13193. bottom: 0.01
  13194. }
  13195. },
  13196. back: {
  13197. height: math.unit(6, "feet"),
  13198. weight: math.unit(180, "lb"),
  13199. name: "Back",
  13200. image: {
  13201. source: "./media/characters/renard-thatch/back.svg",
  13202. extra: 2428 / 2288
  13203. }
  13204. },
  13205. },
  13206. [
  13207. {
  13208. name: "Micro",
  13209. height: math.unit(3, "inches")
  13210. },
  13211. {
  13212. name: "Default",
  13213. height: math.unit(6, "feet"),
  13214. default: true
  13215. },
  13216. {
  13217. name: "Macro",
  13218. height: math.unit(75, "feet")
  13219. },
  13220. ]
  13221. ))
  13222. characterMakers.push(() => makeCharacter(
  13223. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13224. {
  13225. front: {
  13226. height: math.unit(1450, "feet"),
  13227. weight: math.unit(1.21e6, "tons"),
  13228. name: "Front",
  13229. image: {
  13230. source: "./media/characters/sekvra/front.svg",
  13231. extra: 1,
  13232. bottom: 0.03
  13233. }
  13234. },
  13235. frontClothed: {
  13236. height: math.unit(1450, "feet"),
  13237. weight: math.unit(1.21e6, "tons"),
  13238. name: "Front (Clothed)",
  13239. image: {
  13240. source: "./media/characters/sekvra/front-clothed.svg",
  13241. extra: 1,
  13242. bottom: 0.03
  13243. }
  13244. },
  13245. side: {
  13246. height: math.unit(1450, "feet"),
  13247. weight: math.unit(1.21e6, "tons"),
  13248. name: "Side",
  13249. image: {
  13250. source: "./media/characters/sekvra/side.svg",
  13251. extra: 1,
  13252. bottom: 0.025
  13253. }
  13254. },
  13255. back: {
  13256. height: math.unit(1450, "feet"),
  13257. weight: math.unit(1.21e6, "tons"),
  13258. name: "Back",
  13259. image: {
  13260. source: "./media/characters/sekvra/back.svg",
  13261. extra: 1,
  13262. bottom: 0.005
  13263. }
  13264. },
  13265. },
  13266. [
  13267. {
  13268. name: "Macro",
  13269. height: math.unit(1450, "feet"),
  13270. default: true
  13271. },
  13272. {
  13273. name: "Megamacro",
  13274. height: math.unit(15000, "feet")
  13275. },
  13276. ]
  13277. ))
  13278. characterMakers.push(() => makeCharacter(
  13279. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13280. {
  13281. front: {
  13282. height: math.unit(6, "feet"),
  13283. weight: math.unit(150, "lb"),
  13284. name: "Front",
  13285. image: {
  13286. source: "./media/characters/carmine/front.svg",
  13287. extra: 1,
  13288. bottom: 0.035
  13289. }
  13290. },
  13291. frontArmor: {
  13292. height: math.unit(6, "feet"),
  13293. weight: math.unit(150, "lb"),
  13294. name: "Front (Armor)",
  13295. image: {
  13296. source: "./media/characters/carmine/front-armor.svg",
  13297. extra: 1,
  13298. bottom: 0.035
  13299. }
  13300. },
  13301. },
  13302. [
  13303. {
  13304. name: "Large",
  13305. height: math.unit(1, "mile")
  13306. },
  13307. {
  13308. name: "Huge",
  13309. height: math.unit(40, "miles"),
  13310. default: true
  13311. },
  13312. {
  13313. name: "Colossal",
  13314. height: math.unit(2500, "miles")
  13315. },
  13316. ]
  13317. ))
  13318. characterMakers.push(() => makeCharacter(
  13319. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13320. {
  13321. front: {
  13322. height: math.unit(6, "feet"),
  13323. weight: math.unit(150, "lb"),
  13324. name: "Front",
  13325. image: {
  13326. source: "./media/characters/elyssia/front.svg",
  13327. extra: 2201 / 2035,
  13328. bottom: 0.05
  13329. }
  13330. },
  13331. frontClothed: {
  13332. height: math.unit(6, "feet"),
  13333. weight: math.unit(150, "lb"),
  13334. name: "Front (Clothed)",
  13335. image: {
  13336. source: "./media/characters/elyssia/front-clothed.svg",
  13337. extra: 2201 / 2035,
  13338. bottom: 0.05
  13339. }
  13340. },
  13341. back: {
  13342. height: math.unit(6, "feet"),
  13343. weight: math.unit(150, "lb"),
  13344. name: "Back",
  13345. image: {
  13346. source: "./media/characters/elyssia/back.svg",
  13347. extra: 2201 / 2035,
  13348. bottom: 0.013
  13349. }
  13350. },
  13351. },
  13352. [
  13353. {
  13354. name: "Smaller",
  13355. height: math.unit(150, "feet")
  13356. },
  13357. {
  13358. name: "Standard",
  13359. height: math.unit(1400, "feet"),
  13360. default: true
  13361. },
  13362. {
  13363. name: "Distracted",
  13364. height: math.unit(15000, "feet")
  13365. },
  13366. ]
  13367. ))
  13368. characterMakers.push(() => makeCharacter(
  13369. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13370. {
  13371. front: {
  13372. height: math.unit(7 + 4 / 12, "feet"),
  13373. weight: math.unit(500, "lb"),
  13374. name: "Front",
  13375. image: {
  13376. source: "./media/characters/geno-maxwell/front.svg",
  13377. extra: 2207 / 2040,
  13378. bottom: 0.015
  13379. }
  13380. },
  13381. },
  13382. [
  13383. {
  13384. name: "Micro",
  13385. height: math.unit(3, "inches")
  13386. },
  13387. {
  13388. name: "Normal",
  13389. height: math.unit(7 + 4 / 12, "feet"),
  13390. default: true
  13391. },
  13392. {
  13393. name: "Macro",
  13394. height: math.unit(220, "feet")
  13395. },
  13396. {
  13397. name: "Megamacro",
  13398. height: math.unit(11, "miles")
  13399. },
  13400. ]
  13401. ))
  13402. characterMakers.push(() => makeCharacter(
  13403. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13404. {
  13405. front: {
  13406. height: math.unit(7 + 4 / 12, "feet"),
  13407. weight: math.unit(500, "lb"),
  13408. name: "Front",
  13409. image: {
  13410. source: "./media/characters/regena-maxwell/front.svg",
  13411. extra: 3115 / 2770,
  13412. bottom: 0.02
  13413. }
  13414. },
  13415. },
  13416. [
  13417. {
  13418. name: "Normal",
  13419. height: math.unit(7 + 4 / 12, "feet"),
  13420. default: true
  13421. },
  13422. {
  13423. name: "Macro",
  13424. height: math.unit(220, "feet")
  13425. },
  13426. {
  13427. name: "Megamacro",
  13428. height: math.unit(11, "miles")
  13429. },
  13430. ]
  13431. ))
  13432. characterMakers.push(() => makeCharacter(
  13433. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13434. {
  13435. front: {
  13436. height: math.unit(6, "feet"),
  13437. weight: math.unit(150, "lb"),
  13438. name: "Front",
  13439. image: {
  13440. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13441. extra: 860 / 690,
  13442. bottom: 0.03
  13443. }
  13444. },
  13445. },
  13446. [
  13447. {
  13448. name: "Normal",
  13449. height: math.unit(1.7, "meters"),
  13450. default: true
  13451. },
  13452. ]
  13453. ))
  13454. characterMakers.push(() => makeCharacter(
  13455. { name: "Quilly", species: ["quilava"], 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/quilly/front.svg",
  13463. extra: 890 / 776
  13464. }
  13465. },
  13466. },
  13467. [
  13468. {
  13469. name: "Gigamacro",
  13470. height: math.unit(404090, "miles"),
  13471. default: true
  13472. },
  13473. ]
  13474. ))
  13475. characterMakers.push(() => makeCharacter(
  13476. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13477. {
  13478. front: {
  13479. height: math.unit(7 + 8 / 12, "feet"),
  13480. weight: math.unit(350, "lb"),
  13481. name: "Front",
  13482. image: {
  13483. source: "./media/characters/tempest/front.svg",
  13484. extra: 1175 / 1086,
  13485. bottom: 0.02
  13486. }
  13487. },
  13488. },
  13489. [
  13490. {
  13491. name: "Normal",
  13492. height: math.unit(7 + 8 / 12, "feet"),
  13493. default: true
  13494. },
  13495. ]
  13496. ))
  13497. characterMakers.push(() => makeCharacter(
  13498. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13499. {
  13500. side: {
  13501. height: math.unit(4 + 5 / 12, "feet"),
  13502. weight: math.unit(80, "lb"),
  13503. name: "Side",
  13504. image: {
  13505. source: "./media/characters/rodger/side.svg",
  13506. extra: 1235 / 1118
  13507. }
  13508. },
  13509. },
  13510. [
  13511. {
  13512. name: "Micro",
  13513. height: math.unit(1, "inch")
  13514. },
  13515. {
  13516. name: "Normal",
  13517. height: math.unit(4 + 5 / 12, "feet"),
  13518. default: true
  13519. },
  13520. {
  13521. name: "Macro",
  13522. height: math.unit(120, "feet")
  13523. },
  13524. ]
  13525. ))
  13526. characterMakers.push(() => makeCharacter(
  13527. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13528. {
  13529. front: {
  13530. height: math.unit(6, "feet"),
  13531. weight: math.unit(150, "lb"),
  13532. name: "Front",
  13533. image: {
  13534. source: "./media/characters/danyel/front.svg",
  13535. extra: 1185 / 1123,
  13536. bottom: 0.05
  13537. }
  13538. },
  13539. },
  13540. [
  13541. {
  13542. name: "Shrunken",
  13543. height: math.unit(0.5, "mm")
  13544. },
  13545. {
  13546. name: "Micro",
  13547. height: math.unit(1, "mm"),
  13548. default: true
  13549. },
  13550. {
  13551. name: "Upsized",
  13552. height: math.unit(5 + 5 / 12, "feet")
  13553. },
  13554. ]
  13555. ))
  13556. characterMakers.push(() => makeCharacter(
  13557. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13558. {
  13559. front: {
  13560. height: math.unit(5 + 6 / 12, "feet"),
  13561. weight: math.unit(200, "lb"),
  13562. name: "Front",
  13563. image: {
  13564. source: "./media/characters/vivian-bijoux/front.svg",
  13565. extra: 1,
  13566. bottom: 0.072
  13567. }
  13568. },
  13569. },
  13570. [
  13571. {
  13572. name: "Normal",
  13573. height: math.unit(5 + 6 / 12, "feet"),
  13574. default: true
  13575. },
  13576. {
  13577. name: "Bad Dream",
  13578. height: math.unit(500, "feet")
  13579. },
  13580. {
  13581. name: "Nightmare",
  13582. height: math.unit(500, "miles")
  13583. },
  13584. ]
  13585. ))
  13586. characterMakers.push(() => makeCharacter(
  13587. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13588. {
  13589. front: {
  13590. height: math.unit(6 + 1 / 12, "feet"),
  13591. weight: math.unit(260, "lb"),
  13592. name: "Front",
  13593. image: {
  13594. source: "./media/characters/zeta/front.svg",
  13595. extra: 1968 / 1889,
  13596. bottom: 0.06
  13597. }
  13598. },
  13599. back: {
  13600. height: math.unit(6 + 1 / 12, "feet"),
  13601. weight: math.unit(260, "lb"),
  13602. name: "Back",
  13603. image: {
  13604. source: "./media/characters/zeta/back.svg",
  13605. extra: 1944 / 1858,
  13606. bottom: 0.03
  13607. }
  13608. },
  13609. hand: {
  13610. height: math.unit(1.112, "feet"),
  13611. name: "Hand",
  13612. image: {
  13613. source: "./media/characters/zeta/hand.svg"
  13614. }
  13615. },
  13616. foot: {
  13617. height: math.unit(1.48, "feet"),
  13618. name: "Foot",
  13619. image: {
  13620. source: "./media/characters/zeta/foot.svg"
  13621. }
  13622. },
  13623. },
  13624. [
  13625. {
  13626. name: "Micro",
  13627. height: math.unit(6, "inches")
  13628. },
  13629. {
  13630. name: "Normal",
  13631. height: math.unit(6 + 1 / 12, "feet"),
  13632. default: true
  13633. },
  13634. {
  13635. name: "Macro",
  13636. height: math.unit(20, "feet")
  13637. },
  13638. ]
  13639. ))
  13640. characterMakers.push(() => makeCharacter(
  13641. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13642. {
  13643. front: {
  13644. height: math.unit(6, "feet"),
  13645. weight: math.unit(150, "lb"),
  13646. name: "Front",
  13647. image: {
  13648. source: "./media/characters/jamie-larsen/front.svg",
  13649. extra: 962 / 933,
  13650. bottom: 0.02
  13651. }
  13652. },
  13653. back: {
  13654. height: math.unit(6, "feet"),
  13655. weight: math.unit(150, "lb"),
  13656. name: "Back",
  13657. image: {
  13658. source: "./media/characters/jamie-larsen/back.svg",
  13659. extra: 997 / 946
  13660. }
  13661. },
  13662. },
  13663. [
  13664. {
  13665. name: "Macro",
  13666. height: math.unit(28 + 7 / 12, "feet"),
  13667. default: true
  13668. },
  13669. {
  13670. name: "Macro+",
  13671. height: math.unit(180, "feet")
  13672. },
  13673. {
  13674. name: "Megamacro",
  13675. height: math.unit(10, "miles")
  13676. },
  13677. {
  13678. name: "Gigamacro",
  13679. height: math.unit(200000, "miles")
  13680. },
  13681. ]
  13682. ))
  13683. characterMakers.push(() => makeCharacter(
  13684. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13685. {
  13686. front: {
  13687. height: math.unit(6, "feet"),
  13688. weight: math.unit(120, "lb"),
  13689. name: "Front",
  13690. image: {
  13691. source: "./media/characters/vance/front.svg",
  13692. extra: 1980 / 1890,
  13693. bottom: 0.09
  13694. }
  13695. },
  13696. back: {
  13697. height: math.unit(6, "feet"),
  13698. weight: math.unit(120, "lb"),
  13699. name: "Back",
  13700. image: {
  13701. source: "./media/characters/vance/back.svg",
  13702. extra: 2081 / 1994,
  13703. bottom: 0.014
  13704. }
  13705. },
  13706. hand: {
  13707. height: math.unit(0.88, "feet"),
  13708. name: "Hand",
  13709. image: {
  13710. source: "./media/characters/vance/hand.svg"
  13711. }
  13712. },
  13713. foot: {
  13714. height: math.unit(0.64, "feet"),
  13715. name: "Foot",
  13716. image: {
  13717. source: "./media/characters/vance/foot.svg"
  13718. }
  13719. },
  13720. },
  13721. [
  13722. {
  13723. name: "Small",
  13724. height: math.unit(90, "feet"),
  13725. default: true
  13726. },
  13727. {
  13728. name: "Macro",
  13729. height: math.unit(100, "meters")
  13730. },
  13731. {
  13732. name: "Megamacro",
  13733. height: math.unit(15, "miles")
  13734. },
  13735. ]
  13736. ))
  13737. characterMakers.push(() => makeCharacter(
  13738. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13739. {
  13740. front: {
  13741. height: math.unit(6, "feet"),
  13742. weight: math.unit(180, "lb"),
  13743. name: "Front",
  13744. image: {
  13745. source: "./media/characters/xochitl/front.svg",
  13746. extra: 2297 / 2261,
  13747. bottom: 0.065
  13748. }
  13749. },
  13750. back: {
  13751. height: math.unit(6, "feet"),
  13752. weight: math.unit(180, "lb"),
  13753. name: "Back",
  13754. image: {
  13755. source: "./media/characters/xochitl/back.svg",
  13756. extra: 2386 / 2354,
  13757. bottom: 0.01
  13758. }
  13759. },
  13760. foot: {
  13761. height: math.unit(6 / 5 * 1.15, "feet"),
  13762. weight: math.unit(150, "lb"),
  13763. name: "Foot",
  13764. image: {
  13765. source: "./media/characters/xochitl/foot.svg"
  13766. }
  13767. },
  13768. },
  13769. [
  13770. {
  13771. name: "Macro",
  13772. height: math.unit(80, "feet")
  13773. },
  13774. {
  13775. name: "Macro+",
  13776. height: math.unit(400, "feet"),
  13777. default: true
  13778. },
  13779. {
  13780. name: "Gigamacro",
  13781. height: math.unit(80000, "miles")
  13782. },
  13783. {
  13784. name: "Gigamacro+",
  13785. height: math.unit(400000, "miles")
  13786. },
  13787. {
  13788. name: "Teramacro",
  13789. height: math.unit(300, "AU")
  13790. },
  13791. ]
  13792. ))
  13793. characterMakers.push(() => makeCharacter(
  13794. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13795. {
  13796. front: {
  13797. height: math.unit(6, "feet"),
  13798. weight: math.unit(150, "lb"),
  13799. name: "Front",
  13800. image: {
  13801. source: "./media/characters/vincent/front.svg",
  13802. extra: 1130 / 1080,
  13803. bottom: 0.055
  13804. }
  13805. },
  13806. beak: {
  13807. height: math.unit(6 * 0.1, "feet"),
  13808. name: "Beak",
  13809. image: {
  13810. source: "./media/characters/vincent/beak.svg"
  13811. }
  13812. },
  13813. hand: {
  13814. height: math.unit(6 * 0.85, "feet"),
  13815. weight: math.unit(150, "lb"),
  13816. name: "Hand",
  13817. image: {
  13818. source: "./media/characters/vincent/hand.svg"
  13819. }
  13820. },
  13821. foot: {
  13822. height: math.unit(6 * 0.19, "feet"),
  13823. weight: math.unit(150, "lb"),
  13824. name: "Foot",
  13825. image: {
  13826. source: "./media/characters/vincent/foot.svg"
  13827. }
  13828. },
  13829. },
  13830. [
  13831. {
  13832. name: "Base",
  13833. height: math.unit(6 + 5 / 12, "feet"),
  13834. default: true
  13835. },
  13836. {
  13837. name: "Macro",
  13838. height: math.unit(300, "feet")
  13839. },
  13840. {
  13841. name: "Megamacro",
  13842. height: math.unit(2, "miles")
  13843. },
  13844. {
  13845. name: "Gigamacro",
  13846. height: math.unit(1000, "miles")
  13847. },
  13848. ]
  13849. ))
  13850. characterMakers.push(() => makeCharacter(
  13851. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13852. {
  13853. front: {
  13854. height: math.unit(2, "meters"),
  13855. weight: math.unit(500, "kg"),
  13856. name: "Front",
  13857. image: {
  13858. source: "./media/characters/coatl/front.svg",
  13859. extra: 3948 / 3500,
  13860. bottom: 0.082
  13861. }
  13862. },
  13863. },
  13864. [
  13865. {
  13866. name: "Normal",
  13867. height: math.unit(4, "meters")
  13868. },
  13869. {
  13870. name: "Macro",
  13871. height: math.unit(100, "meters"),
  13872. default: true
  13873. },
  13874. {
  13875. name: "Macro+",
  13876. height: math.unit(300, "meters")
  13877. },
  13878. {
  13879. name: "Megamacro",
  13880. height: math.unit(3, "gigameters")
  13881. },
  13882. {
  13883. name: "Megamacro+",
  13884. height: math.unit(300, "terameters")
  13885. },
  13886. {
  13887. name: "Megamacro++",
  13888. height: math.unit(3, "lightyears")
  13889. },
  13890. ]
  13891. ))
  13892. characterMakers.push(() => makeCharacter(
  13893. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13894. {
  13895. front: {
  13896. height: math.unit(6, "feet"),
  13897. weight: math.unit(50, "kg"),
  13898. name: "front",
  13899. image: {
  13900. source: "./media/characters/shiroryu/front.svg",
  13901. extra: 1990 / 1935
  13902. }
  13903. },
  13904. },
  13905. [
  13906. {
  13907. name: "Mortal Mingling",
  13908. height: math.unit(3, "meters")
  13909. },
  13910. {
  13911. name: "Kaiju-ish",
  13912. height: math.unit(250, "meters")
  13913. },
  13914. {
  13915. name: "Somewhat Godly",
  13916. height: math.unit(400, "km"),
  13917. default: true
  13918. },
  13919. {
  13920. name: "Planetary",
  13921. height: math.unit(300, "megameters")
  13922. },
  13923. {
  13924. name: "Galaxy-dwarfing",
  13925. height: math.unit(450, "kiloparsecs")
  13926. },
  13927. {
  13928. name: "Universe Eater",
  13929. height: math.unit(150, "gigaparsecs")
  13930. },
  13931. {
  13932. name: "Almost Immeasurable",
  13933. height: math.unit(1.3e266, "yottaparsecs")
  13934. },
  13935. ]
  13936. ))
  13937. characterMakers.push(() => makeCharacter(
  13938. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13939. {
  13940. front: {
  13941. height: math.unit(6, "feet"),
  13942. weight: math.unit(150, "lb"),
  13943. name: "Front",
  13944. image: {
  13945. source: "./media/characters/umeko/front.svg",
  13946. extra: 1,
  13947. bottom: 0.019
  13948. }
  13949. },
  13950. frontArmored: {
  13951. height: math.unit(6, "feet"),
  13952. weight: math.unit(150, "lb"),
  13953. name: "Front (Armored)",
  13954. image: {
  13955. source: "./media/characters/umeko/front-armored.svg",
  13956. extra: 1,
  13957. bottom: 0.021
  13958. }
  13959. },
  13960. },
  13961. [
  13962. {
  13963. name: "Macro",
  13964. height: math.unit(220, "feet"),
  13965. default: true
  13966. },
  13967. {
  13968. name: "Guardian Dragon",
  13969. height: math.unit(50, "miles")
  13970. },
  13971. {
  13972. name: "Cosmic",
  13973. height: math.unit(800000, "miles")
  13974. },
  13975. ]
  13976. ))
  13977. characterMakers.push(() => makeCharacter(
  13978. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13979. {
  13980. front: {
  13981. height: math.unit(6, "feet"),
  13982. weight: math.unit(150, "lb"),
  13983. name: "Front",
  13984. image: {
  13985. source: "./media/characters/cassidy/front.svg",
  13986. extra: 1,
  13987. bottom: 0.043
  13988. }
  13989. },
  13990. },
  13991. [
  13992. {
  13993. name: "Canon Height",
  13994. height: math.unit(120, "feet"),
  13995. default: true
  13996. },
  13997. {
  13998. name: "Macro+",
  13999. height: math.unit(400, "feet")
  14000. },
  14001. {
  14002. name: "Macro++",
  14003. height: math.unit(4000, "feet")
  14004. },
  14005. {
  14006. name: "Megamacro",
  14007. height: math.unit(3, "miles")
  14008. },
  14009. ]
  14010. ))
  14011. characterMakers.push(() => makeCharacter(
  14012. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14013. {
  14014. front: {
  14015. height: math.unit(6, "feet"),
  14016. weight: math.unit(150, "lb"),
  14017. name: "Front",
  14018. image: {
  14019. source: "./media/characters/isaac/front.svg",
  14020. extra: 896 / 815,
  14021. bottom: 0.11
  14022. }
  14023. },
  14024. },
  14025. [
  14026. {
  14027. name: "Human Size",
  14028. height: math.unit(8, "feet"),
  14029. default: true
  14030. },
  14031. {
  14032. name: "Macro",
  14033. height: math.unit(400, "feet")
  14034. },
  14035. {
  14036. name: "Megamacro",
  14037. height: math.unit(50, "miles")
  14038. },
  14039. {
  14040. name: "Canon Height",
  14041. height: math.unit(200, "AU")
  14042. },
  14043. ]
  14044. ))
  14045. characterMakers.push(() => makeCharacter(
  14046. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14047. {
  14048. front: {
  14049. height: math.unit(6, "feet"),
  14050. weight: math.unit(72, "kg"),
  14051. name: "Front",
  14052. image: {
  14053. source: "./media/characters/sleekit/front.svg",
  14054. extra: 4693 / 4487,
  14055. bottom: 0.012
  14056. }
  14057. },
  14058. },
  14059. [
  14060. {
  14061. name: "Minimum Height",
  14062. height: math.unit(10, "meters")
  14063. },
  14064. {
  14065. name: "Smaller",
  14066. height: math.unit(25, "meters")
  14067. },
  14068. {
  14069. name: "Larger",
  14070. height: math.unit(38, "meters"),
  14071. default: true
  14072. },
  14073. {
  14074. name: "Maximum height",
  14075. height: math.unit(100, "meters")
  14076. },
  14077. ]
  14078. ))
  14079. characterMakers.push(() => makeCharacter(
  14080. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14081. {
  14082. front: {
  14083. height: math.unit(6, "feet"),
  14084. weight: math.unit(150, "lb"),
  14085. name: "Front",
  14086. image: {
  14087. source: "./media/characters/nillia/front.svg",
  14088. extra: 2195 / 2037,
  14089. bottom: 0.005
  14090. }
  14091. },
  14092. back: {
  14093. height: math.unit(6, "feet"),
  14094. weight: math.unit(150, "lb"),
  14095. name: "Back",
  14096. image: {
  14097. source: "./media/characters/nillia/back.svg",
  14098. extra: 2195 / 2037,
  14099. bottom: 0.005
  14100. }
  14101. },
  14102. },
  14103. [
  14104. {
  14105. name: "Canon Height",
  14106. height: math.unit(489, "feet"),
  14107. default: true
  14108. }
  14109. ]
  14110. ))
  14111. characterMakers.push(() => makeCharacter(
  14112. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14113. {
  14114. front: {
  14115. height: math.unit(6, "feet"),
  14116. weight: math.unit(150, "lb"),
  14117. name: "Front",
  14118. image: {
  14119. source: "./media/characters/mesmyriza/front.svg",
  14120. extra: 2067 / 1784,
  14121. bottom: 0.035
  14122. }
  14123. },
  14124. foot: {
  14125. height: math.unit(6 / (250 / 35), "feet"),
  14126. name: "Foot",
  14127. image: {
  14128. source: "./media/characters/mesmyriza/foot.svg"
  14129. }
  14130. },
  14131. },
  14132. [
  14133. {
  14134. name: "Macro",
  14135. height: math.unit(457, "meters"),
  14136. default: true
  14137. },
  14138. {
  14139. name: "Megamacro",
  14140. height: math.unit(8, "megameters")
  14141. },
  14142. ]
  14143. ))
  14144. characterMakers.push(() => makeCharacter(
  14145. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14146. {
  14147. front: {
  14148. height: math.unit(6, "feet"),
  14149. weight: math.unit(250, "lb"),
  14150. name: "Front",
  14151. image: {
  14152. source: "./media/characters/saudade/front.svg",
  14153. extra: 1172 / 1139,
  14154. bottom: 0.035
  14155. }
  14156. },
  14157. },
  14158. [
  14159. {
  14160. name: "Micro",
  14161. height: math.unit(3, "inches")
  14162. },
  14163. {
  14164. name: "Normal",
  14165. height: math.unit(6, "feet"),
  14166. default: true
  14167. },
  14168. {
  14169. name: "Macro",
  14170. height: math.unit(50, "feet")
  14171. },
  14172. {
  14173. name: "Megamacro",
  14174. height: math.unit(2800, "feet")
  14175. },
  14176. ]
  14177. ))
  14178. characterMakers.push(() => makeCharacter(
  14179. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14180. {
  14181. front: {
  14182. height: math.unit(5 + 4 / 12, "feet"),
  14183. weight: math.unit(100, "lb"),
  14184. name: "Front",
  14185. image: {
  14186. source: "./media/characters/keireer/front.svg",
  14187. extra: 716 / 666,
  14188. bottom: 0.05
  14189. }
  14190. },
  14191. },
  14192. [
  14193. {
  14194. name: "Normal",
  14195. height: math.unit(5 + 4 / 12, "feet"),
  14196. default: true
  14197. },
  14198. ]
  14199. ))
  14200. characterMakers.push(() => makeCharacter(
  14201. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14202. {
  14203. front: {
  14204. height: math.unit(6, "feet"),
  14205. weight: math.unit(90, "kg"),
  14206. name: "Front",
  14207. image: {
  14208. source: "./media/characters/mirja/front.svg",
  14209. extra: 1789 / 1683,
  14210. bottom: 0.05
  14211. }
  14212. },
  14213. frontDressed: {
  14214. height: math.unit(6, "feet"),
  14215. weight: math.unit(90, "lb"),
  14216. name: "Front (Dressed)",
  14217. image: {
  14218. source: "./media/characters/mirja/front-dressed.svg",
  14219. extra: 1789 / 1683,
  14220. bottom: 0.05
  14221. }
  14222. },
  14223. back: {
  14224. height: math.unit(6, "feet"),
  14225. weight: math.unit(90, "lb"),
  14226. name: "Back",
  14227. image: {
  14228. source: "./media/characters/mirja/back.svg",
  14229. extra: 953 / 917,
  14230. bottom: 0.017
  14231. }
  14232. },
  14233. },
  14234. [
  14235. {
  14236. name: "\"Incognito\"",
  14237. height: math.unit(3, "meters")
  14238. },
  14239. {
  14240. name: "Strolling Size",
  14241. height: math.unit(15, "km")
  14242. },
  14243. {
  14244. name: "Larger Strolling Size",
  14245. height: math.unit(400, "km")
  14246. },
  14247. {
  14248. name: "Preferred Size",
  14249. height: math.unit(5000, "km")
  14250. },
  14251. {
  14252. name: "True Size",
  14253. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14254. default: true
  14255. },
  14256. ]
  14257. ))
  14258. characterMakers.push(() => makeCharacter(
  14259. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14260. {
  14261. front: {
  14262. height: math.unit(15, "feet"),
  14263. weight: math.unit(880, "kg"),
  14264. name: "Front",
  14265. image: {
  14266. source: "./media/characters/nightraver/front.svg",
  14267. extra: 2444 / 2160,
  14268. bottom: 0.027
  14269. }
  14270. },
  14271. back: {
  14272. height: math.unit(15, "feet"),
  14273. weight: math.unit(880, "kg"),
  14274. name: "Back",
  14275. image: {
  14276. source: "./media/characters/nightraver/back.svg",
  14277. extra: 2309 / 2180,
  14278. bottom: 0.005
  14279. }
  14280. },
  14281. sole: {
  14282. height: math.unit(2.878, "feet"),
  14283. name: "Sole",
  14284. image: {
  14285. source: "./media/characters/nightraver/sole.svg"
  14286. }
  14287. },
  14288. foot: {
  14289. height: math.unit(2.285, "feet"),
  14290. name: "Foot",
  14291. image: {
  14292. source: "./media/characters/nightraver/foot.svg"
  14293. }
  14294. },
  14295. maw: {
  14296. height: math.unit(2.67, "feet"),
  14297. name: "Maw",
  14298. image: {
  14299. source: "./media/characters/nightraver/maw.svg"
  14300. }
  14301. },
  14302. },
  14303. [
  14304. {
  14305. name: "Micro",
  14306. height: math.unit(1, "cm")
  14307. },
  14308. {
  14309. name: "Normal",
  14310. height: math.unit(15, "feet"),
  14311. default: true
  14312. },
  14313. {
  14314. name: "Macro",
  14315. height: math.unit(300, "feet")
  14316. },
  14317. {
  14318. name: "Megamacro",
  14319. height: math.unit(300, "miles")
  14320. },
  14321. {
  14322. name: "Gigamacro",
  14323. height: math.unit(10000, "miles")
  14324. },
  14325. ]
  14326. ))
  14327. characterMakers.push(() => makeCharacter(
  14328. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14329. {
  14330. side: {
  14331. height: math.unit(2, "inches"),
  14332. weight: math.unit(5, "grams"),
  14333. name: "Side",
  14334. image: {
  14335. source: "./media/characters/arc/side.svg"
  14336. }
  14337. },
  14338. },
  14339. [
  14340. {
  14341. name: "Micro",
  14342. height: math.unit(2, "inches"),
  14343. default: true
  14344. },
  14345. ]
  14346. ))
  14347. characterMakers.push(() => makeCharacter(
  14348. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14349. {
  14350. front: {
  14351. height: math.unit(1.1938, "meters"),
  14352. weight: math.unit(54, "kg"),
  14353. name: "Front",
  14354. image: {
  14355. source: "./media/characters/nebula-shahar/front.svg",
  14356. extra: 1642 / 1436,
  14357. bottom: 0.06
  14358. }
  14359. },
  14360. },
  14361. [
  14362. {
  14363. name: "Megamicro",
  14364. height: math.unit(0.3, "mm")
  14365. },
  14366. {
  14367. name: "Micro",
  14368. height: math.unit(3, "cm")
  14369. },
  14370. {
  14371. name: "Normal",
  14372. height: math.unit(138, "cm"),
  14373. default: true
  14374. },
  14375. {
  14376. name: "Macro",
  14377. height: math.unit(30, "m")
  14378. },
  14379. ]
  14380. ))
  14381. characterMakers.push(() => makeCharacter(
  14382. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14383. {
  14384. front: {
  14385. height: math.unit(5.24, "feet"),
  14386. weight: math.unit(150, "lb"),
  14387. name: "Front",
  14388. image: {
  14389. source: "./media/characters/shayla/front.svg",
  14390. extra: 1512 / 1414,
  14391. bottom: 0.01
  14392. }
  14393. },
  14394. back: {
  14395. height: math.unit(5.24, "feet"),
  14396. weight: math.unit(150, "lb"),
  14397. name: "Back",
  14398. image: {
  14399. source: "./media/characters/shayla/back.svg",
  14400. extra: 1512 / 1414
  14401. }
  14402. },
  14403. hand: {
  14404. height: math.unit(0.7781496062992126, "feet"),
  14405. name: "Hand",
  14406. image: {
  14407. source: "./media/characters/shayla/hand.svg"
  14408. }
  14409. },
  14410. foot: {
  14411. height: math.unit(1.4206036745406823, "feet"),
  14412. name: "Foot",
  14413. image: {
  14414. source: "./media/characters/shayla/foot.svg"
  14415. }
  14416. },
  14417. },
  14418. [
  14419. {
  14420. name: "Micro",
  14421. height: math.unit(0.32, "feet")
  14422. },
  14423. {
  14424. name: "Normal",
  14425. height: math.unit(5.24, "feet"),
  14426. default: true
  14427. },
  14428. {
  14429. name: "Macro",
  14430. height: math.unit(492.12, "feet")
  14431. },
  14432. {
  14433. name: "Megamacro",
  14434. height: math.unit(186.41, "miles")
  14435. },
  14436. ]
  14437. ))
  14438. characterMakers.push(() => makeCharacter(
  14439. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14440. {
  14441. front: {
  14442. height: math.unit(2.2, "m"),
  14443. weight: math.unit(120, "kg"),
  14444. name: "Front",
  14445. image: {
  14446. source: "./media/characters/pia-jr/front.svg",
  14447. extra: 1000 / 970,
  14448. bottom: 0.035
  14449. }
  14450. },
  14451. hand: {
  14452. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14453. name: "Hand",
  14454. image: {
  14455. source: "./media/characters/pia-jr/hand.svg"
  14456. }
  14457. },
  14458. paw: {
  14459. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14460. name: "Paw",
  14461. image: {
  14462. source: "./media/characters/pia-jr/paw.svg"
  14463. }
  14464. },
  14465. },
  14466. [
  14467. {
  14468. name: "Micro",
  14469. height: math.unit(1.2, "cm")
  14470. },
  14471. {
  14472. name: "Normal",
  14473. height: math.unit(2.2, "m"),
  14474. default: true
  14475. },
  14476. {
  14477. name: "Macro",
  14478. height: math.unit(180, "m")
  14479. },
  14480. {
  14481. name: "Megamacro",
  14482. height: math.unit(420, "km")
  14483. },
  14484. ]
  14485. ))
  14486. characterMakers.push(() => makeCharacter(
  14487. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14488. {
  14489. front: {
  14490. height: math.unit(2, "m"),
  14491. weight: math.unit(115, "kg"),
  14492. name: "Front",
  14493. image: {
  14494. source: "./media/characters/pia-sr/front.svg",
  14495. extra: 760 / 730,
  14496. bottom: 0.015
  14497. }
  14498. },
  14499. back: {
  14500. height: math.unit(2, "m"),
  14501. weight: math.unit(115, "kg"),
  14502. name: "Back",
  14503. image: {
  14504. source: "./media/characters/pia-sr/back.svg",
  14505. extra: 760 / 730,
  14506. bottom: 0.01
  14507. }
  14508. },
  14509. hand: {
  14510. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14511. name: "Hand",
  14512. image: {
  14513. source: "./media/characters/pia-sr/hand.svg"
  14514. }
  14515. },
  14516. foot: {
  14517. height: math.unit(1.83, "feet"),
  14518. name: "Foot",
  14519. image: {
  14520. source: "./media/characters/pia-sr/foot.svg"
  14521. }
  14522. },
  14523. },
  14524. [
  14525. {
  14526. name: "Micro",
  14527. height: math.unit(88, "mm")
  14528. },
  14529. {
  14530. name: "Normal",
  14531. height: math.unit(2, "m"),
  14532. default: true
  14533. },
  14534. {
  14535. name: "Macro",
  14536. height: math.unit(200, "m")
  14537. },
  14538. {
  14539. name: "Megamacro",
  14540. height: math.unit(420, "km")
  14541. },
  14542. ]
  14543. ))
  14544. characterMakers.push(() => makeCharacter(
  14545. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14546. {
  14547. front: {
  14548. height: math.unit(8 + 2 / 12, "feet"),
  14549. weight: math.unit(300, "lb"),
  14550. name: "Front",
  14551. image: {
  14552. source: "./media/characters/kibibyte/front.svg",
  14553. extra: 2221 / 2098,
  14554. bottom: 0.04
  14555. }
  14556. },
  14557. },
  14558. [
  14559. {
  14560. name: "Normal",
  14561. height: math.unit(8 + 2 / 12, "feet"),
  14562. default: true
  14563. },
  14564. {
  14565. name: "Socialable Macro",
  14566. height: math.unit(50, "feet")
  14567. },
  14568. {
  14569. name: "Macro",
  14570. height: math.unit(300, "feet")
  14571. },
  14572. {
  14573. name: "Megamacro",
  14574. height: math.unit(500, "miles")
  14575. },
  14576. ]
  14577. ))
  14578. characterMakers.push(() => makeCharacter(
  14579. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14580. {
  14581. front: {
  14582. height: math.unit(6, "feet"),
  14583. weight: math.unit(150, "lb"),
  14584. name: "Front",
  14585. image: {
  14586. source: "./media/characters/felix/front.svg",
  14587. extra: 762 / 722,
  14588. bottom: 0.02
  14589. }
  14590. },
  14591. frontClothed: {
  14592. height: math.unit(6, "feet"),
  14593. weight: math.unit(150, "lb"),
  14594. name: "Front (Clothed)",
  14595. image: {
  14596. source: "./media/characters/felix/front-clothed.svg",
  14597. extra: 762 / 722,
  14598. bottom: 0.02
  14599. }
  14600. },
  14601. },
  14602. [
  14603. {
  14604. name: "Normal",
  14605. height: math.unit(6 + 8 / 12, "feet"),
  14606. default: true
  14607. },
  14608. {
  14609. name: "Macro",
  14610. height: math.unit(2600, "feet")
  14611. },
  14612. {
  14613. name: "Megamacro",
  14614. height: math.unit(450, "miles")
  14615. },
  14616. ]
  14617. ))
  14618. characterMakers.push(() => makeCharacter(
  14619. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14620. {
  14621. front: {
  14622. height: math.unit(6 + 1 / 12, "feet"),
  14623. weight: math.unit(250, "lb"),
  14624. name: "Front",
  14625. image: {
  14626. source: "./media/characters/tobo/front.svg",
  14627. extra: 608 / 586,
  14628. bottom: 0.023
  14629. }
  14630. },
  14631. back: {
  14632. height: math.unit(6 + 1 / 12, "feet"),
  14633. weight: math.unit(250, "lb"),
  14634. name: "Back",
  14635. image: {
  14636. source: "./media/characters/tobo/back.svg",
  14637. extra: 608 / 586
  14638. }
  14639. },
  14640. },
  14641. [
  14642. {
  14643. name: "Nano",
  14644. height: math.unit(2, "nm")
  14645. },
  14646. {
  14647. name: "Megamicro",
  14648. height: math.unit(0.1, "mm")
  14649. },
  14650. {
  14651. name: "Micro",
  14652. height: math.unit(1, "inch"),
  14653. default: true
  14654. },
  14655. {
  14656. name: "Human-sized",
  14657. height: math.unit(6 + 1 / 12, "feet")
  14658. },
  14659. {
  14660. name: "Macro",
  14661. height: math.unit(250, "feet")
  14662. },
  14663. {
  14664. name: "Megamacro",
  14665. height: math.unit(75, "miles")
  14666. },
  14667. {
  14668. name: "Texas-sized",
  14669. height: math.unit(750, "miles")
  14670. },
  14671. {
  14672. name: "Teramacro",
  14673. height: math.unit(50000, "miles")
  14674. },
  14675. ]
  14676. ))
  14677. characterMakers.push(() => makeCharacter(
  14678. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14679. {
  14680. front: {
  14681. height: math.unit(6, "feet"),
  14682. weight: math.unit(269, "lb"),
  14683. name: "Front",
  14684. image: {
  14685. source: "./media/characters/danny-kapowsky/front.svg",
  14686. extra: 766 / 736,
  14687. bottom: 0.044
  14688. }
  14689. },
  14690. back: {
  14691. height: math.unit(6, "feet"),
  14692. weight: math.unit(269, "lb"),
  14693. name: "Back",
  14694. image: {
  14695. source: "./media/characters/danny-kapowsky/back.svg",
  14696. extra: 797 / 760,
  14697. bottom: 0.025
  14698. }
  14699. },
  14700. },
  14701. [
  14702. {
  14703. name: "Macro",
  14704. height: math.unit(150, "feet"),
  14705. default: true
  14706. },
  14707. {
  14708. name: "Macro+",
  14709. height: math.unit(200, "feet")
  14710. },
  14711. {
  14712. name: "Macro++",
  14713. height: math.unit(300, "feet")
  14714. },
  14715. {
  14716. name: "Macro+++",
  14717. height: math.unit(400, "feet")
  14718. },
  14719. ]
  14720. ))
  14721. characterMakers.push(() => makeCharacter(
  14722. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14723. {
  14724. side: {
  14725. height: math.unit(6, "feet"),
  14726. weight: math.unit(170, "lb"),
  14727. name: "Side",
  14728. image: {
  14729. source: "./media/characters/finn/side.svg",
  14730. extra: 1953 / 1807,
  14731. bottom: 0.057
  14732. }
  14733. },
  14734. },
  14735. [
  14736. {
  14737. name: "Megamacro",
  14738. height: math.unit(14445, "feet"),
  14739. default: true
  14740. },
  14741. ]
  14742. ))
  14743. characterMakers.push(() => makeCharacter(
  14744. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14745. {
  14746. front: {
  14747. height: math.unit(5 + 6 / 12, "feet"),
  14748. weight: math.unit(125, "lb"),
  14749. name: "Front",
  14750. image: {
  14751. source: "./media/characters/roy/front.svg",
  14752. extra: 1,
  14753. bottom: 0.11
  14754. }
  14755. },
  14756. },
  14757. [
  14758. {
  14759. name: "Micro",
  14760. height: math.unit(3, "inches"),
  14761. default: true
  14762. },
  14763. {
  14764. name: "Normal",
  14765. height: math.unit(5 + 6 / 12, "feet")
  14766. },
  14767. {
  14768. name: "Lesser Macro",
  14769. height: math.unit(60, "feet")
  14770. },
  14771. {
  14772. name: "Greater Macro",
  14773. height: math.unit(120, "feet")
  14774. },
  14775. ]
  14776. ))
  14777. characterMakers.push(() => makeCharacter(
  14778. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14779. {
  14780. front: {
  14781. height: math.unit(6, "feet"),
  14782. weight: math.unit(100, "lb"),
  14783. name: "Front",
  14784. image: {
  14785. source: "./media/characters/aevsivs/front.svg",
  14786. extra: 1,
  14787. bottom: 0.03
  14788. }
  14789. },
  14790. back: {
  14791. height: math.unit(6, "feet"),
  14792. weight: math.unit(100, "lb"),
  14793. name: "Back",
  14794. image: {
  14795. source: "./media/characters/aevsivs/back.svg"
  14796. }
  14797. },
  14798. },
  14799. [
  14800. {
  14801. name: "Micro",
  14802. height: math.unit(2, "inches"),
  14803. default: true
  14804. },
  14805. {
  14806. name: "Normal",
  14807. height: math.unit(5, "feet")
  14808. },
  14809. ]
  14810. ))
  14811. characterMakers.push(() => makeCharacter(
  14812. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14813. {
  14814. front: {
  14815. height: math.unit(5 + 7 / 12, "feet"),
  14816. weight: math.unit(159, "lb"),
  14817. name: "Front",
  14818. image: {
  14819. source: "./media/characters/hildegard/front.svg",
  14820. extra: 289 / 269,
  14821. bottom: 7.63 / 297.8
  14822. }
  14823. },
  14824. back: {
  14825. height: math.unit(5 + 7 / 12, "feet"),
  14826. weight: math.unit(159, "lb"),
  14827. name: "Back",
  14828. image: {
  14829. source: "./media/characters/hildegard/back.svg",
  14830. extra: 280 / 260,
  14831. bottom: 2.3 / 282
  14832. }
  14833. },
  14834. },
  14835. [
  14836. {
  14837. name: "Normal",
  14838. height: math.unit(5 + 7 / 12, "feet"),
  14839. default: true
  14840. },
  14841. ]
  14842. ))
  14843. characterMakers.push(() => makeCharacter(
  14844. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14845. {
  14846. bernard: {
  14847. height: math.unit(2 + 7 / 12, "feet"),
  14848. weight: math.unit(66, "lb"),
  14849. name: "Bernard",
  14850. rename: true,
  14851. image: {
  14852. source: "./media/characters/bernard-wilder/bernard.svg",
  14853. extra: 192 / 128,
  14854. bottom: 0.05
  14855. }
  14856. },
  14857. wilder: {
  14858. height: math.unit(5 + 8 / 12, "feet"),
  14859. weight: math.unit(143, "lb"),
  14860. name: "Wilder",
  14861. rename: true,
  14862. image: {
  14863. source: "./media/characters/bernard-wilder/wilder.svg",
  14864. extra: 361 / 312,
  14865. bottom: 0.02
  14866. }
  14867. },
  14868. },
  14869. [
  14870. {
  14871. name: "Normal",
  14872. height: math.unit(2 + 7 / 12, "feet"),
  14873. default: true
  14874. },
  14875. ]
  14876. ))
  14877. characterMakers.push(() => makeCharacter(
  14878. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14879. {
  14880. anthro: {
  14881. height: math.unit(6 + 1 / 12, "feet"),
  14882. weight: math.unit(155, "lb"),
  14883. name: "Anthro",
  14884. image: {
  14885. source: "./media/characters/hearth/anthro.svg",
  14886. extra: 260 / 250,
  14887. bottom: 0.02
  14888. }
  14889. },
  14890. feral: {
  14891. height: math.unit(3.78, "feet"),
  14892. weight: math.unit(35, "kg"),
  14893. name: "Feral",
  14894. image: {
  14895. source: "./media/characters/hearth/feral.svg",
  14896. extra: 153 / 135,
  14897. bottom: 0.03
  14898. }
  14899. },
  14900. },
  14901. [
  14902. {
  14903. name: "Normal",
  14904. height: math.unit(6 + 1 / 12, "feet"),
  14905. default: true
  14906. },
  14907. ]
  14908. ))
  14909. characterMakers.push(() => makeCharacter(
  14910. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14911. {
  14912. front: {
  14913. height: math.unit(6, "feet"),
  14914. weight: math.unit(182, "lb"),
  14915. name: "Front",
  14916. image: {
  14917. source: "./media/characters/ingrid/front.svg",
  14918. extra: 294 / 268,
  14919. bottom: 0.027
  14920. }
  14921. },
  14922. },
  14923. [
  14924. {
  14925. name: "Normal",
  14926. height: math.unit(6, "feet"),
  14927. default: true
  14928. },
  14929. ]
  14930. ))
  14931. characterMakers.push(() => makeCharacter(
  14932. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14933. {
  14934. eevee: {
  14935. height: math.unit(2 + 10 / 12, "feet"),
  14936. weight: math.unit(86, "lb"),
  14937. name: "Malgam",
  14938. image: {
  14939. source: "./media/characters/malgam/eevee.svg",
  14940. extra: 218 / 180,
  14941. bottom: 0.2
  14942. }
  14943. },
  14944. sylveon: {
  14945. height: math.unit(4, "feet"),
  14946. weight: math.unit(101, "lb"),
  14947. name: "Future Malgam",
  14948. rename: true,
  14949. image: {
  14950. source: "./media/characters/malgam/sylveon.svg",
  14951. extra: 371 / 325,
  14952. bottom: 0.015
  14953. }
  14954. },
  14955. gigantamax: {
  14956. height: math.unit(50, "feet"),
  14957. name: "Gigantamax Malgam",
  14958. rename: true,
  14959. image: {
  14960. source: "./media/characters/malgam/gigantamax.svg"
  14961. }
  14962. },
  14963. },
  14964. [
  14965. {
  14966. name: "Normal",
  14967. height: math.unit(2 + 10 / 12, "feet"),
  14968. default: true
  14969. },
  14970. ]
  14971. ))
  14972. characterMakers.push(() => makeCharacter(
  14973. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14974. {
  14975. front: {
  14976. height: math.unit(5 + 11 / 12, "feet"),
  14977. weight: math.unit(188, "lb"),
  14978. name: "Front",
  14979. image: {
  14980. source: "./media/characters/fleur/front.svg",
  14981. extra: 309 / 283,
  14982. bottom: 0.007
  14983. }
  14984. },
  14985. },
  14986. [
  14987. {
  14988. name: "Normal",
  14989. height: math.unit(5 + 11 / 12, "feet"),
  14990. default: true
  14991. },
  14992. ]
  14993. ))
  14994. characterMakers.push(() => makeCharacter(
  14995. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14996. {
  14997. front: {
  14998. height: math.unit(5 + 4 / 12, "feet"),
  14999. weight: math.unit(122, "lb"),
  15000. name: "Front",
  15001. image: {
  15002. source: "./media/characters/jude/front.svg",
  15003. extra: 288 / 273,
  15004. bottom: 0.03
  15005. }
  15006. },
  15007. },
  15008. [
  15009. {
  15010. name: "Normal",
  15011. height: math.unit(5 + 4 / 12, "feet"),
  15012. default: true
  15013. },
  15014. ]
  15015. ))
  15016. characterMakers.push(() => makeCharacter(
  15017. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15018. {
  15019. front: {
  15020. height: math.unit(5 + 11 / 12, "feet"),
  15021. weight: math.unit(190, "lb"),
  15022. name: "Front",
  15023. image: {
  15024. source: "./media/characters/seara/front.svg",
  15025. extra: 1,
  15026. bottom: 0.05
  15027. }
  15028. },
  15029. },
  15030. [
  15031. {
  15032. name: "Normal",
  15033. height: math.unit(5 + 11 / 12, "feet"),
  15034. default: true
  15035. },
  15036. ]
  15037. ))
  15038. characterMakers.push(() => makeCharacter(
  15039. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15040. {
  15041. front: {
  15042. height: math.unit(16 + 5 / 12, "feet"),
  15043. weight: math.unit(524, "lb"),
  15044. name: "Front",
  15045. image: {
  15046. source: "./media/characters/caspian/front.svg",
  15047. extra: 1,
  15048. bottom: 0.04
  15049. }
  15050. },
  15051. },
  15052. [
  15053. {
  15054. name: "Normal",
  15055. height: math.unit(16 + 5 / 12, "feet"),
  15056. default: true
  15057. },
  15058. ]
  15059. ))
  15060. characterMakers.push(() => makeCharacter(
  15061. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15062. {
  15063. front: {
  15064. height: math.unit(5 + 7 / 12, "feet"),
  15065. weight: math.unit(170, "lb"),
  15066. name: "Front",
  15067. image: {
  15068. source: "./media/characters/mika/front.svg",
  15069. extra: 1,
  15070. bottom: 0.016
  15071. }
  15072. },
  15073. },
  15074. [
  15075. {
  15076. name: "Normal",
  15077. height: math.unit(5 + 7 / 12, "feet"),
  15078. default: true
  15079. },
  15080. ]
  15081. ))
  15082. characterMakers.push(() => makeCharacter(
  15083. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15084. {
  15085. front: {
  15086. height: math.unit(6 + 2 / 12, "feet"),
  15087. weight: math.unit(268, "lb"),
  15088. name: "Front",
  15089. image: {
  15090. source: "./media/characters/sol/front.svg",
  15091. extra: 247 / 231,
  15092. bottom: 0.05
  15093. }
  15094. },
  15095. },
  15096. [
  15097. {
  15098. name: "Normal",
  15099. height: math.unit(6 + 2 / 12, "feet"),
  15100. default: true
  15101. },
  15102. ]
  15103. ))
  15104. characterMakers.push(() => makeCharacter(
  15105. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15106. {
  15107. buizel: {
  15108. height: math.unit(2 + 5 / 12, "feet"),
  15109. weight: math.unit(87, "lb"),
  15110. name: "Buizel",
  15111. image: {
  15112. source: "./media/characters/umiko/buizel.svg",
  15113. extra: 172 / 157,
  15114. bottom: 0.01
  15115. }
  15116. },
  15117. floatzel: {
  15118. height: math.unit(5 + 9 / 12, "feet"),
  15119. weight: math.unit(250, "lb"),
  15120. name: "Floatzel",
  15121. image: {
  15122. source: "./media/characters/umiko/floatzel.svg",
  15123. extra: 262 / 248
  15124. }
  15125. },
  15126. },
  15127. [
  15128. {
  15129. name: "Normal",
  15130. height: math.unit(2 + 5 / 12, "feet"),
  15131. default: true
  15132. },
  15133. ]
  15134. ))
  15135. characterMakers.push(() => makeCharacter(
  15136. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15137. {
  15138. front: {
  15139. height: math.unit(6 + 2 / 12, "feet"),
  15140. weight: math.unit(146, "lb"),
  15141. name: "Front",
  15142. image: {
  15143. source: "./media/characters/iliac/front.svg",
  15144. extra: 389 / 365,
  15145. bottom: 0.035
  15146. }
  15147. },
  15148. },
  15149. [
  15150. {
  15151. name: "Normal",
  15152. height: math.unit(6 + 2 / 12, "feet"),
  15153. default: true
  15154. },
  15155. ]
  15156. ))
  15157. characterMakers.push(() => makeCharacter(
  15158. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15159. {
  15160. front: {
  15161. height: math.unit(6, "feet"),
  15162. weight: math.unit(170, "lb"),
  15163. name: "Front",
  15164. image: {
  15165. source: "./media/characters/topaz/front.svg",
  15166. extra: 317 / 303,
  15167. bottom: 0.055
  15168. }
  15169. },
  15170. },
  15171. [
  15172. {
  15173. name: "Normal",
  15174. height: math.unit(6, "feet"),
  15175. default: true
  15176. },
  15177. ]
  15178. ))
  15179. characterMakers.push(() => makeCharacter(
  15180. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15181. {
  15182. front: {
  15183. height: math.unit(5 + 11 / 12, "feet"),
  15184. weight: math.unit(144, "lb"),
  15185. name: "Front",
  15186. image: {
  15187. source: "./media/characters/gabriel/front.svg",
  15188. extra: 285 / 262,
  15189. bottom: 0.004
  15190. }
  15191. },
  15192. },
  15193. [
  15194. {
  15195. name: "Normal",
  15196. height: math.unit(5 + 11 / 12, "feet"),
  15197. default: true
  15198. },
  15199. ]
  15200. ))
  15201. characterMakers.push(() => makeCharacter(
  15202. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15203. {
  15204. side: {
  15205. height: math.unit(6 + 5 / 12, "feet"),
  15206. weight: math.unit(300, "lb"),
  15207. name: "Side",
  15208. image: {
  15209. source: "./media/characters/tempest-suicune/side.svg",
  15210. extra: 195 / 154,
  15211. bottom: 0.04
  15212. }
  15213. },
  15214. },
  15215. [
  15216. {
  15217. name: "Normal",
  15218. height: math.unit(6 + 5 / 12, "feet"),
  15219. default: true
  15220. },
  15221. ]
  15222. ))
  15223. characterMakers.push(() => makeCharacter(
  15224. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15225. {
  15226. front: {
  15227. height: math.unit(7 + 2 / 12, "feet"),
  15228. weight: math.unit(322, "lb"),
  15229. name: "Front",
  15230. image: {
  15231. source: "./media/characters/vulcan/front.svg",
  15232. extra: 154 / 147,
  15233. bottom: 0.04
  15234. }
  15235. },
  15236. },
  15237. [
  15238. {
  15239. name: "Normal",
  15240. height: math.unit(7 + 2 / 12, "feet"),
  15241. default: true
  15242. },
  15243. ]
  15244. ))
  15245. characterMakers.push(() => makeCharacter(
  15246. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15247. {
  15248. front: {
  15249. height: math.unit(5 + 10 / 12, "feet"),
  15250. weight: math.unit(264, "lb"),
  15251. name: "Front",
  15252. image: {
  15253. source: "./media/characters/gault/front.svg",
  15254. extra: 161 / 140,
  15255. bottom: 0.028
  15256. }
  15257. },
  15258. },
  15259. [
  15260. {
  15261. name: "Normal",
  15262. height: math.unit(5 + 10 / 12, "feet"),
  15263. default: true
  15264. },
  15265. ]
  15266. ))
  15267. characterMakers.push(() => makeCharacter(
  15268. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15269. {
  15270. front: {
  15271. height: math.unit(6, "feet"),
  15272. weight: math.unit(150, "lb"),
  15273. name: "Front",
  15274. image: {
  15275. source: "./media/characters/shard/front.svg",
  15276. extra: 273 / 238,
  15277. bottom: 0.02
  15278. }
  15279. },
  15280. },
  15281. [
  15282. {
  15283. name: "Normal",
  15284. height: math.unit(3 + 6 / 12, "feet"),
  15285. default: true
  15286. },
  15287. ]
  15288. ))
  15289. characterMakers.push(() => makeCharacter(
  15290. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15291. {
  15292. front: {
  15293. height: math.unit(5 + 11 / 12, "feet"),
  15294. weight: math.unit(146, "lb"),
  15295. name: "Front",
  15296. image: {
  15297. source: "./media/characters/ashe/front.svg",
  15298. extra: 400 / 373,
  15299. bottom: 0.01
  15300. }
  15301. },
  15302. },
  15303. [
  15304. {
  15305. name: "Normal",
  15306. height: math.unit(5 + 11 / 12, "feet"),
  15307. default: true
  15308. },
  15309. ]
  15310. ))
  15311. characterMakers.push(() => makeCharacter(
  15312. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15313. {
  15314. front: {
  15315. height: math.unit(5 + 5 / 12, "feet"),
  15316. weight: math.unit(135, "lb"),
  15317. name: "Front",
  15318. image: {
  15319. source: "./media/characters/beatrix/front.svg",
  15320. extra: 392 / 379,
  15321. bottom: 0.01
  15322. }
  15323. },
  15324. },
  15325. [
  15326. {
  15327. name: "Normal",
  15328. height: math.unit(6, "feet"),
  15329. default: true
  15330. },
  15331. ]
  15332. ))
  15333. characterMakers.push(() => makeCharacter(
  15334. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15335. {
  15336. front: {
  15337. height: math.unit(6, "feet"),
  15338. weight: math.unit(150, "lb"),
  15339. name: "Front",
  15340. image: {
  15341. source: "./media/characters/ignatius/front.svg",
  15342. extra: 245 / 222,
  15343. bottom: 0.01
  15344. }
  15345. },
  15346. },
  15347. [
  15348. {
  15349. name: "Normal",
  15350. height: math.unit(5 + 5 / 12, "feet"),
  15351. default: true
  15352. },
  15353. ]
  15354. ))
  15355. characterMakers.push(() => makeCharacter(
  15356. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15357. {
  15358. front: {
  15359. height: math.unit(6 + 2 / 12, "feet"),
  15360. weight: math.unit(138, "lb"),
  15361. name: "Front",
  15362. image: {
  15363. source: "./media/characters/mei-li/front.svg",
  15364. extra: 237 / 229,
  15365. bottom: 0.03
  15366. }
  15367. },
  15368. },
  15369. [
  15370. {
  15371. name: "Normal",
  15372. height: math.unit(6 + 2 / 12, "feet"),
  15373. default: true
  15374. },
  15375. ]
  15376. ))
  15377. characterMakers.push(() => makeCharacter(
  15378. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15379. {
  15380. front: {
  15381. height: math.unit(2 + 4 / 12, "feet"),
  15382. weight: math.unit(62, "lb"),
  15383. name: "Front",
  15384. image: {
  15385. source: "./media/characters/puru/front.svg",
  15386. extra: 206 / 149,
  15387. bottom: 0.06
  15388. }
  15389. },
  15390. },
  15391. [
  15392. {
  15393. name: "Normal",
  15394. height: math.unit(2 + 4 / 12, "feet"),
  15395. default: true
  15396. },
  15397. ]
  15398. ))
  15399. characterMakers.push(() => makeCharacter(
  15400. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15401. {
  15402. anthro: {
  15403. height: math.unit(5 + 8/12, "feet"),
  15404. weight: math.unit(200, "lb"),
  15405. energyNeed: math.unit(2000, "kcal"),
  15406. name: "Anthro",
  15407. image: {
  15408. source: "./media/characters/kee/anthro.svg",
  15409. extra: 3251/3184,
  15410. bottom: 250/3501
  15411. }
  15412. },
  15413. taur: {
  15414. height: math.unit(11, "feet"),
  15415. weight: math.unit(500, "lb"),
  15416. energyNeed: math.unit(5000, "kcal"),
  15417. name: "Taur",
  15418. image: {
  15419. source: "./media/characters/kee/taur.svg",
  15420. extra: 1362/1320,
  15421. bottom: 83/1445
  15422. }
  15423. },
  15424. },
  15425. [
  15426. {
  15427. name: "Normal",
  15428. height: math.unit(5 + 8/12, "feet"),
  15429. default: true
  15430. },
  15431. {
  15432. name: "Macro",
  15433. height: math.unit(35, "feet")
  15434. },
  15435. ]
  15436. ))
  15437. characterMakers.push(() => makeCharacter(
  15438. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15439. {
  15440. anthro: {
  15441. height: math.unit(7, "feet"),
  15442. weight: math.unit(190, "lb"),
  15443. name: "Anthro",
  15444. image: {
  15445. source: "./media/characters/cobalt-dracha/anthro.svg",
  15446. extra: 231 / 225,
  15447. bottom: 0.04
  15448. }
  15449. },
  15450. feral: {
  15451. height: math.unit(9 + 7 / 12, "feet"),
  15452. weight: math.unit(294, "lb"),
  15453. name: "Feral",
  15454. image: {
  15455. source: "./media/characters/cobalt-dracha/feral.svg",
  15456. extra: 692 / 633,
  15457. bottom: 0.05
  15458. }
  15459. },
  15460. },
  15461. [
  15462. {
  15463. name: "Normal",
  15464. height: math.unit(7, "feet"),
  15465. default: true
  15466. },
  15467. ]
  15468. ))
  15469. characterMakers.push(() => makeCharacter(
  15470. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15471. {
  15472. fallen: {
  15473. height: math.unit(11 + 8 / 12, "feet"),
  15474. weight: math.unit(485, "lb"),
  15475. name: "Java (Fallen)",
  15476. rename: true,
  15477. image: {
  15478. source: "./media/characters/java/fallen.svg",
  15479. extra: 226 / 208,
  15480. bottom: 0.005
  15481. }
  15482. },
  15483. godkin: {
  15484. height: math.unit(10 + 6 / 12, "feet"),
  15485. weight: math.unit(328, "lb"),
  15486. name: "Java (Godkin)",
  15487. rename: true,
  15488. image: {
  15489. source: "./media/characters/java/godkin.svg",
  15490. extra: 270 / 262,
  15491. bottom: 0.02
  15492. }
  15493. },
  15494. },
  15495. [
  15496. {
  15497. name: "Normal",
  15498. height: math.unit(11 + 8 / 12, "feet"),
  15499. default: true
  15500. },
  15501. ]
  15502. ))
  15503. characterMakers.push(() => makeCharacter(
  15504. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15505. {
  15506. front: {
  15507. height: math.unit(7 + 8 / 12, "feet"),
  15508. weight: math.unit(320, "lb"),
  15509. name: "Front",
  15510. image: {
  15511. source: "./media/characters/skoll/front.svg",
  15512. extra: 232 / 220,
  15513. bottom: 0.02
  15514. }
  15515. },
  15516. },
  15517. [
  15518. {
  15519. name: "Normal",
  15520. height: math.unit(7 + 8 / 12, "feet"),
  15521. default: true
  15522. },
  15523. ]
  15524. ))
  15525. characterMakers.push(() => makeCharacter(
  15526. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15527. {
  15528. front: {
  15529. height: math.unit(5 + 9 / 12, "feet"),
  15530. weight: math.unit(170, "lb"),
  15531. name: "Front",
  15532. image: {
  15533. source: "./media/characters/purna/front.svg",
  15534. extra: 239 / 229,
  15535. bottom: 0.01
  15536. }
  15537. },
  15538. },
  15539. [
  15540. {
  15541. name: "Normal",
  15542. height: math.unit(5 + 9 / 12, "feet"),
  15543. default: true
  15544. },
  15545. ]
  15546. ))
  15547. characterMakers.push(() => makeCharacter(
  15548. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15549. {
  15550. front: {
  15551. height: math.unit(5 + 9 / 12, "feet"),
  15552. weight: math.unit(142, "lb"),
  15553. name: "Front",
  15554. image: {
  15555. source: "./media/characters/kuva/front.svg",
  15556. extra: 281 / 271,
  15557. bottom: 0.006
  15558. }
  15559. },
  15560. },
  15561. [
  15562. {
  15563. name: "Normal",
  15564. height: math.unit(5 + 9 / 12, "feet"),
  15565. default: true
  15566. },
  15567. ]
  15568. ))
  15569. characterMakers.push(() => makeCharacter(
  15570. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15571. {
  15572. anthro: {
  15573. height: math.unit(9 + 2 / 12, "feet"),
  15574. weight: math.unit(270, "lb"),
  15575. name: "Anthro",
  15576. image: {
  15577. source: "./media/characters/embra/anthro.svg",
  15578. extra: 200 / 187,
  15579. bottom: 0.02
  15580. }
  15581. },
  15582. feral: {
  15583. height: math.unit(18 + 8 / 12, "feet"),
  15584. weight: math.unit(576, "lb"),
  15585. name: "Feral",
  15586. image: {
  15587. source: "./media/characters/embra/feral.svg",
  15588. extra: 152 / 137,
  15589. bottom: 0.037
  15590. }
  15591. },
  15592. },
  15593. [
  15594. {
  15595. name: "Normal",
  15596. height: math.unit(9 + 2 / 12, "feet"),
  15597. default: true
  15598. },
  15599. ]
  15600. ))
  15601. characterMakers.push(() => makeCharacter(
  15602. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15603. {
  15604. anthro: {
  15605. height: math.unit(10 + 9 / 12, "feet"),
  15606. weight: math.unit(224, "lb"),
  15607. name: "Anthro",
  15608. image: {
  15609. source: "./media/characters/grottos/anthro.svg",
  15610. extra: 350 / 332,
  15611. bottom: 0.045
  15612. }
  15613. },
  15614. feral: {
  15615. height: math.unit(20 + 7 / 12, "feet"),
  15616. weight: math.unit(629, "lb"),
  15617. name: "Feral",
  15618. image: {
  15619. source: "./media/characters/grottos/feral.svg",
  15620. extra: 207 / 190,
  15621. bottom: 0.05
  15622. }
  15623. },
  15624. },
  15625. [
  15626. {
  15627. name: "Normal",
  15628. height: math.unit(10 + 9 / 12, "feet"),
  15629. default: true
  15630. },
  15631. ]
  15632. ))
  15633. characterMakers.push(() => makeCharacter(
  15634. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15635. {
  15636. anthro: {
  15637. height: math.unit(9 + 6 / 12, "feet"),
  15638. weight: math.unit(298, "lb"),
  15639. name: "Anthro",
  15640. image: {
  15641. source: "./media/characters/frifna/anthro.svg",
  15642. extra: 282 / 269,
  15643. bottom: 0.015
  15644. }
  15645. },
  15646. feral: {
  15647. height: math.unit(16 + 2 / 12, "feet"),
  15648. weight: math.unit(624, "lb"),
  15649. name: "Feral",
  15650. image: {
  15651. source: "./media/characters/frifna/feral.svg"
  15652. }
  15653. },
  15654. },
  15655. [
  15656. {
  15657. name: "Normal",
  15658. height: math.unit(9 + 6 / 12, "feet"),
  15659. default: true
  15660. },
  15661. ]
  15662. ))
  15663. characterMakers.push(() => makeCharacter(
  15664. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15665. {
  15666. front: {
  15667. height: math.unit(6 + 2 / 12, "feet"),
  15668. weight: math.unit(168, "lb"),
  15669. name: "Front",
  15670. image: {
  15671. source: "./media/characters/elise/front.svg",
  15672. extra: 276 / 271
  15673. }
  15674. },
  15675. },
  15676. [
  15677. {
  15678. name: "Normal",
  15679. height: math.unit(6 + 2 / 12, "feet"),
  15680. default: true
  15681. },
  15682. ]
  15683. ))
  15684. characterMakers.push(() => makeCharacter(
  15685. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15686. {
  15687. front: {
  15688. height: math.unit(5 + 10 / 12, "feet"),
  15689. weight: math.unit(210, "lb"),
  15690. name: "Front",
  15691. image: {
  15692. source: "./media/characters/glade/front.svg",
  15693. extra: 258 / 247,
  15694. bottom: 0.008
  15695. }
  15696. },
  15697. },
  15698. [
  15699. {
  15700. name: "Normal",
  15701. height: math.unit(5 + 10 / 12, "feet"),
  15702. default: true
  15703. },
  15704. ]
  15705. ))
  15706. characterMakers.push(() => makeCharacter(
  15707. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15708. {
  15709. front: {
  15710. height: math.unit(5 + 10 / 12, "feet"),
  15711. weight: math.unit(129, "lb"),
  15712. name: "Front",
  15713. image: {
  15714. source: "./media/characters/rina/front.svg",
  15715. extra: 266 / 255,
  15716. bottom: 0.005
  15717. }
  15718. },
  15719. },
  15720. [
  15721. {
  15722. name: "Normal",
  15723. height: math.unit(5 + 10 / 12, "feet"),
  15724. default: true
  15725. },
  15726. ]
  15727. ))
  15728. characterMakers.push(() => makeCharacter(
  15729. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15730. {
  15731. front: {
  15732. height: math.unit(6 + 1 / 12, "feet"),
  15733. weight: math.unit(192, "lb"),
  15734. name: "Front",
  15735. image: {
  15736. source: "./media/characters/veronica/front.svg",
  15737. extra: 319 / 309,
  15738. bottom: 0.005
  15739. }
  15740. },
  15741. },
  15742. [
  15743. {
  15744. name: "Normal",
  15745. height: math.unit(6 + 1 / 12, "feet"),
  15746. default: true
  15747. },
  15748. ]
  15749. ))
  15750. characterMakers.push(() => makeCharacter(
  15751. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15752. {
  15753. front: {
  15754. height: math.unit(9 + 3 / 12, "feet"),
  15755. weight: math.unit(1100, "lb"),
  15756. name: "Front",
  15757. image: {
  15758. source: "./media/characters/braxton/front.svg",
  15759. extra: 1057 / 984,
  15760. bottom: 0.05
  15761. }
  15762. },
  15763. },
  15764. [
  15765. {
  15766. name: "Normal",
  15767. height: math.unit(9 + 3 / 12, "feet")
  15768. },
  15769. {
  15770. name: "Giant",
  15771. height: math.unit(300, "feet"),
  15772. default: true
  15773. },
  15774. {
  15775. name: "Macro",
  15776. height: math.unit(700, "feet")
  15777. },
  15778. {
  15779. name: "Megamacro",
  15780. height: math.unit(6000, "feet")
  15781. },
  15782. ]
  15783. ))
  15784. characterMakers.push(() => makeCharacter(
  15785. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15786. {
  15787. front: {
  15788. height: math.unit(6 + 7 / 12, "feet"),
  15789. weight: math.unit(150, "lb"),
  15790. name: "Front",
  15791. image: {
  15792. source: "./media/characters/blue-feyonics/front.svg",
  15793. extra: 1403 / 1306,
  15794. bottom: 0.047
  15795. }
  15796. },
  15797. },
  15798. [
  15799. {
  15800. name: "Normal",
  15801. height: math.unit(6 + 7 / 12, "feet"),
  15802. default: true
  15803. },
  15804. ]
  15805. ))
  15806. characterMakers.push(() => makeCharacter(
  15807. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15808. {
  15809. front: {
  15810. height: math.unit(1.8, "meters"),
  15811. weight: math.unit(60, "kg"),
  15812. name: "Front",
  15813. image: {
  15814. source: "./media/characters/maxwell/front.svg",
  15815. extra: 2060 / 1873
  15816. }
  15817. },
  15818. },
  15819. [
  15820. {
  15821. name: "Micro",
  15822. height: math.unit(1, "mm")
  15823. },
  15824. {
  15825. name: "Normal",
  15826. height: math.unit(1.8, "meter"),
  15827. default: true
  15828. },
  15829. {
  15830. name: "Macro",
  15831. height: math.unit(30, "meters")
  15832. },
  15833. {
  15834. name: "Megamacro",
  15835. height: math.unit(10, "km")
  15836. },
  15837. ]
  15838. ))
  15839. characterMakers.push(() => makeCharacter(
  15840. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15841. {
  15842. front: {
  15843. height: math.unit(6, "feet"),
  15844. weight: math.unit(150, "lb"),
  15845. name: "Front",
  15846. image: {
  15847. source: "./media/characters/jack/front.svg",
  15848. extra: 1754 / 1640,
  15849. bottom: 0.01
  15850. }
  15851. },
  15852. },
  15853. [
  15854. {
  15855. name: "Normal",
  15856. height: math.unit(80000, "feet"),
  15857. default: true
  15858. },
  15859. {
  15860. name: "Max size",
  15861. height: math.unit(10, "lightyears")
  15862. },
  15863. ]
  15864. ))
  15865. characterMakers.push(() => makeCharacter(
  15866. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15867. {
  15868. urban: {
  15869. height: math.unit(5, "feet"),
  15870. weight: math.unit(240, "lb"),
  15871. name: "Urban",
  15872. image: {
  15873. source: "./media/characters/cafat/urban.svg",
  15874. extra: 1223/1126,
  15875. bottom: 205/1428
  15876. }
  15877. },
  15878. summer: {
  15879. height: math.unit(5, "feet"),
  15880. weight: math.unit(240, "lb"),
  15881. name: "Summer",
  15882. image: {
  15883. source: "./media/characters/cafat/summer.svg",
  15884. extra: 1223/1126,
  15885. bottom: 205/1428
  15886. }
  15887. },
  15888. winter: {
  15889. height: math.unit(5, "feet"),
  15890. weight: math.unit(240, "lb"),
  15891. name: "Winter",
  15892. image: {
  15893. source: "./media/characters/cafat/winter.svg",
  15894. extra: 1223/1126,
  15895. bottom: 205/1428
  15896. }
  15897. },
  15898. lingerie: {
  15899. height: math.unit(5, "feet"),
  15900. weight: math.unit(240, "lb"),
  15901. name: "Lingerie",
  15902. image: {
  15903. source: "./media/characters/cafat/lingerie.svg",
  15904. extra: 1223/1126,
  15905. bottom: 205/1428
  15906. }
  15907. },
  15908. upright: {
  15909. height: math.unit(6.3, "feet"),
  15910. weight: math.unit(240, "lb"),
  15911. name: "Upright",
  15912. image: {
  15913. source: "./media/characters/cafat/upright.svg",
  15914. bottom: 0.01
  15915. }
  15916. },
  15917. uprightFull: {
  15918. height: math.unit(6.3, "feet"),
  15919. weight: math.unit(240, "lb"),
  15920. name: "Upright (Full)",
  15921. image: {
  15922. source: "./media/characters/cafat/upright-full.svg",
  15923. bottom: 0.01
  15924. }
  15925. },
  15926. },
  15927. [
  15928. {
  15929. name: "Small",
  15930. height: math.unit(5, "feet"),
  15931. default: true
  15932. },
  15933. {
  15934. name: "Large",
  15935. height: math.unit(13, "feet")
  15936. },
  15937. ]
  15938. ))
  15939. characterMakers.push(() => makeCharacter(
  15940. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15941. {
  15942. front: {
  15943. height: math.unit(6, "feet"),
  15944. weight: math.unit(150, "lb"),
  15945. name: "Front",
  15946. image: {
  15947. source: "./media/characters/verin-raharra/front.svg",
  15948. extra: 5019 / 4835,
  15949. bottom: 0.023
  15950. }
  15951. },
  15952. },
  15953. [
  15954. {
  15955. name: "Normal",
  15956. height: math.unit(7 + 5 / 12, "feet"),
  15957. default: true
  15958. },
  15959. {
  15960. name: "Upsized",
  15961. height: math.unit(20, "feet")
  15962. },
  15963. ]
  15964. ))
  15965. characterMakers.push(() => makeCharacter(
  15966. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15967. {
  15968. front: {
  15969. height: math.unit(7, "feet"),
  15970. weight: math.unit(230, "lb"),
  15971. name: "Front",
  15972. image: {
  15973. source: "./media/characters/nakata/front.svg",
  15974. extra: 1.005,
  15975. bottom: 0.01
  15976. }
  15977. },
  15978. },
  15979. [
  15980. {
  15981. name: "Normal",
  15982. height: math.unit(7, "feet"),
  15983. default: true
  15984. },
  15985. {
  15986. name: "Big",
  15987. height: math.unit(14, "feet")
  15988. },
  15989. {
  15990. name: "Macro",
  15991. height: math.unit(400, "feet")
  15992. },
  15993. ]
  15994. ))
  15995. characterMakers.push(() => makeCharacter(
  15996. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15997. {
  15998. front: {
  15999. height: math.unit(4.91, "feet"),
  16000. weight: math.unit(100, "lb"),
  16001. name: "Front",
  16002. image: {
  16003. source: "./media/characters/lily/front.svg",
  16004. extra: 1585 / 1415,
  16005. bottom: 0.02
  16006. }
  16007. },
  16008. },
  16009. [
  16010. {
  16011. name: "Normal",
  16012. height: math.unit(4.91, "feet"),
  16013. default: true
  16014. },
  16015. ]
  16016. ))
  16017. characterMakers.push(() => makeCharacter(
  16018. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16019. {
  16020. laying: {
  16021. height: math.unit(4 + 4 / 12, "feet"),
  16022. weight: math.unit(600, "lb"),
  16023. name: "Laying",
  16024. image: {
  16025. source: "./media/characters/sheila/laying.svg",
  16026. extra: 1333 / 1265,
  16027. bottom: 0.16
  16028. }
  16029. },
  16030. },
  16031. [
  16032. {
  16033. name: "Normal",
  16034. height: math.unit(4 + 4 / 12, "feet"),
  16035. default: true
  16036. },
  16037. ]
  16038. ))
  16039. characterMakers.push(() => makeCharacter(
  16040. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16041. {
  16042. front: {
  16043. height: math.unit(6, "feet"),
  16044. weight: math.unit(190, "lb"),
  16045. name: "Front",
  16046. image: {
  16047. source: "./media/characters/sax/front.svg",
  16048. extra: 1187 / 973,
  16049. bottom: 0.042
  16050. }
  16051. },
  16052. },
  16053. [
  16054. {
  16055. name: "Micro",
  16056. height: math.unit(4, "inches"),
  16057. default: true
  16058. },
  16059. ]
  16060. ))
  16061. characterMakers.push(() => makeCharacter(
  16062. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16063. {
  16064. front: {
  16065. height: math.unit(6, "feet"),
  16066. weight: math.unit(150, "lb"),
  16067. name: "Front",
  16068. image: {
  16069. source: "./media/characters/pandora/front.svg",
  16070. extra: 2720 / 2556,
  16071. bottom: 0.015
  16072. }
  16073. },
  16074. back: {
  16075. height: math.unit(6, "feet"),
  16076. weight: math.unit(150, "lb"),
  16077. name: "Back",
  16078. image: {
  16079. source: "./media/characters/pandora/back.svg",
  16080. extra: 2720 / 2556,
  16081. bottom: 0.01
  16082. }
  16083. },
  16084. beans: {
  16085. height: math.unit(6 / 8, "feet"),
  16086. name: "Beans",
  16087. image: {
  16088. source: "./media/characters/pandora/beans.svg"
  16089. }
  16090. },
  16091. collar: {
  16092. height: math.unit(0.31, "feet"),
  16093. name: "Collar",
  16094. image: {
  16095. source: "./media/characters/pandora/collar.svg"
  16096. }
  16097. },
  16098. skirt: {
  16099. height: math.unit(6, "feet"),
  16100. weight: math.unit(150, "lb"),
  16101. name: "Skirt",
  16102. image: {
  16103. source: "./media/characters/pandora/skirt.svg",
  16104. extra: 1622 / 1525,
  16105. bottom: 0.015
  16106. }
  16107. },
  16108. hoodie: {
  16109. height: math.unit(6, "feet"),
  16110. weight: math.unit(150, "lb"),
  16111. name: "Hoodie",
  16112. image: {
  16113. source: "./media/characters/pandora/hoodie.svg",
  16114. extra: 1622 / 1525,
  16115. bottom: 0.015
  16116. }
  16117. },
  16118. casual: {
  16119. height: math.unit(6, "feet"),
  16120. weight: math.unit(150, "lb"),
  16121. name: "Casual",
  16122. image: {
  16123. source: "./media/characters/pandora/casual.svg",
  16124. extra: 1622 / 1525,
  16125. bottom: 0.015
  16126. }
  16127. },
  16128. },
  16129. [
  16130. {
  16131. name: "Normal",
  16132. height: math.unit(6, "feet")
  16133. },
  16134. {
  16135. name: "Big Steppy",
  16136. height: math.unit(1, "km"),
  16137. default: true
  16138. },
  16139. {
  16140. name: "Galactic Steppy",
  16141. height: math.unit(2, "gigameters")
  16142. },
  16143. ]
  16144. ))
  16145. characterMakers.push(() => makeCharacter(
  16146. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16147. {
  16148. side: {
  16149. height: math.unit(10, "feet"),
  16150. weight: math.unit(800, "kg"),
  16151. name: "Side",
  16152. image: {
  16153. source: "./media/characters/venio-darcony/side.svg",
  16154. extra: 1373 / 1003,
  16155. bottom: 0.037
  16156. }
  16157. },
  16158. front: {
  16159. height: math.unit(19, "feet"),
  16160. weight: math.unit(800, "kg"),
  16161. name: "Front",
  16162. image: {
  16163. source: "./media/characters/venio-darcony/front.svg"
  16164. }
  16165. },
  16166. back: {
  16167. height: math.unit(19, "feet"),
  16168. weight: math.unit(800, "kg"),
  16169. name: "Back",
  16170. image: {
  16171. source: "./media/characters/venio-darcony/back.svg"
  16172. }
  16173. },
  16174. sideNsfw: {
  16175. height: math.unit(10, "feet"),
  16176. weight: math.unit(800, "kg"),
  16177. name: "Side (NSFW)",
  16178. image: {
  16179. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16180. extra: 1373 / 1003,
  16181. bottom: 0.037
  16182. }
  16183. },
  16184. frontNsfw: {
  16185. height: math.unit(19, "feet"),
  16186. weight: math.unit(800, "kg"),
  16187. name: "Front (NSFW)",
  16188. image: {
  16189. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16190. }
  16191. },
  16192. backNsfw: {
  16193. height: math.unit(19, "feet"),
  16194. weight: math.unit(800, "kg"),
  16195. name: "Back (NSFW)",
  16196. image: {
  16197. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16198. }
  16199. },
  16200. sideArmored: {
  16201. height: math.unit(10, "feet"),
  16202. weight: math.unit(800, "kg"),
  16203. name: "Side (Armored)",
  16204. image: {
  16205. source: "./media/characters/venio-darcony/side-armored.svg",
  16206. extra: 1373 / 1003,
  16207. bottom: 0.037
  16208. }
  16209. },
  16210. frontArmored: {
  16211. height: math.unit(19, "feet"),
  16212. weight: math.unit(900, "kg"),
  16213. name: "Front (Armored)",
  16214. image: {
  16215. source: "./media/characters/venio-darcony/front-armored.svg"
  16216. }
  16217. },
  16218. backArmored: {
  16219. height: math.unit(19, "feet"),
  16220. weight: math.unit(900, "kg"),
  16221. name: "Back (Armored)",
  16222. image: {
  16223. source: "./media/characters/venio-darcony/back-armored.svg"
  16224. }
  16225. },
  16226. sword: {
  16227. height: math.unit(10, "feet"),
  16228. weight: math.unit(50, "lb"),
  16229. name: "Sword",
  16230. image: {
  16231. source: "./media/characters/venio-darcony/sword.svg"
  16232. }
  16233. },
  16234. },
  16235. [
  16236. {
  16237. name: "Normal",
  16238. height: math.unit(10, "feet")
  16239. },
  16240. {
  16241. name: "Macro",
  16242. height: math.unit(130, "feet"),
  16243. default: true
  16244. },
  16245. {
  16246. name: "Macro+",
  16247. height: math.unit(240, "feet")
  16248. },
  16249. ]
  16250. ))
  16251. characterMakers.push(() => makeCharacter(
  16252. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16253. {
  16254. front: {
  16255. height: math.unit(6, "feet"),
  16256. weight: math.unit(150, "lb"),
  16257. name: "Front",
  16258. image: {
  16259. source: "./media/characters/veski/front.svg",
  16260. extra: 1299 / 1225,
  16261. bottom: 0.04
  16262. }
  16263. },
  16264. back: {
  16265. height: math.unit(6, "feet"),
  16266. weight: math.unit(150, "lb"),
  16267. name: "Back",
  16268. image: {
  16269. source: "./media/characters/veski/back.svg",
  16270. extra: 1299 / 1225,
  16271. bottom: 0.008
  16272. }
  16273. },
  16274. maw: {
  16275. height: math.unit(1.5 * 1.21, "feet"),
  16276. name: "Maw",
  16277. image: {
  16278. source: "./media/characters/veski/maw.svg"
  16279. }
  16280. },
  16281. },
  16282. [
  16283. {
  16284. name: "Macro",
  16285. height: math.unit(2, "km"),
  16286. default: true
  16287. },
  16288. ]
  16289. ))
  16290. characterMakers.push(() => makeCharacter(
  16291. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16292. {
  16293. front: {
  16294. height: math.unit(5 + 7 / 12, "feet"),
  16295. name: "Front",
  16296. image: {
  16297. source: "./media/characters/isabelle/front.svg",
  16298. extra: 2130 / 1976,
  16299. bottom: 0.05
  16300. }
  16301. },
  16302. },
  16303. [
  16304. {
  16305. name: "Supermicro",
  16306. height: math.unit(10, "micrometers")
  16307. },
  16308. {
  16309. name: "Micro",
  16310. height: math.unit(1, "inch")
  16311. },
  16312. {
  16313. name: "Tiny",
  16314. height: math.unit(5, "inches")
  16315. },
  16316. {
  16317. name: "Standard",
  16318. height: math.unit(5 + 7 / 12, "inches")
  16319. },
  16320. {
  16321. name: "Macro",
  16322. height: math.unit(80, "meters"),
  16323. default: true
  16324. },
  16325. {
  16326. name: "Megamacro",
  16327. height: math.unit(250, "meters")
  16328. },
  16329. {
  16330. name: "Gigamacro",
  16331. height: math.unit(5, "km")
  16332. },
  16333. {
  16334. name: "Cosmic",
  16335. height: math.unit(2.5e6, "miles")
  16336. },
  16337. ]
  16338. ))
  16339. characterMakers.push(() => makeCharacter(
  16340. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16341. {
  16342. front: {
  16343. height: math.unit(6, "feet"),
  16344. weight: math.unit(150, "lb"),
  16345. name: "Front",
  16346. image: {
  16347. source: "./media/characters/hanzo/front.svg",
  16348. extra: 374 / 344,
  16349. bottom: 0.02
  16350. }
  16351. },
  16352. },
  16353. [
  16354. {
  16355. name: "Normal",
  16356. height: math.unit(8, "feet"),
  16357. default: true
  16358. },
  16359. ]
  16360. ))
  16361. characterMakers.push(() => makeCharacter(
  16362. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16363. {
  16364. front: {
  16365. height: math.unit(7, "feet"),
  16366. weight: math.unit(130, "lb"),
  16367. name: "Front",
  16368. image: {
  16369. source: "./media/characters/anna/front.svg",
  16370. extra: 169 / 145,
  16371. bottom: 0.06
  16372. }
  16373. },
  16374. full: {
  16375. height: math.unit(4.96, "feet"),
  16376. weight: math.unit(220, "lb"),
  16377. name: "Full",
  16378. image: {
  16379. source: "./media/characters/anna/full.svg",
  16380. extra: 138 / 114,
  16381. bottom: 0.15
  16382. }
  16383. },
  16384. tongue: {
  16385. height: math.unit(2.53, "feet"),
  16386. name: "Tongue",
  16387. image: {
  16388. source: "./media/characters/anna/tongue.svg"
  16389. }
  16390. },
  16391. },
  16392. [
  16393. {
  16394. name: "Normal",
  16395. height: math.unit(7, "feet"),
  16396. default: true
  16397. },
  16398. ]
  16399. ))
  16400. characterMakers.push(() => makeCharacter(
  16401. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16402. {
  16403. front: {
  16404. height: math.unit(7, "feet"),
  16405. weight: math.unit(150, "lb"),
  16406. name: "Front",
  16407. image: {
  16408. source: "./media/characters/ian-corvid/front.svg",
  16409. extra: 150 / 142,
  16410. bottom: 0.02
  16411. }
  16412. },
  16413. back: {
  16414. height: math.unit(7, "feet"),
  16415. weight: math.unit(150, "lb"),
  16416. name: "Back",
  16417. image: {
  16418. source: "./media/characters/ian-corvid/back.svg",
  16419. extra: 150 / 143,
  16420. bottom: 0.01
  16421. }
  16422. },
  16423. stomping: {
  16424. height: math.unit(7, "feet"),
  16425. weight: math.unit(150, "lb"),
  16426. name: "Stomping",
  16427. image: {
  16428. source: "./media/characters/ian-corvid/stomping.svg",
  16429. extra: 76 / 72
  16430. }
  16431. },
  16432. sitting: {
  16433. height: math.unit(7 / 1.8, "feet"),
  16434. weight: math.unit(150, "lb"),
  16435. name: "Sitting",
  16436. image: {
  16437. source: "./media/characters/ian-corvid/sitting.svg",
  16438. extra: 1400 / 1269,
  16439. bottom: 0.15
  16440. }
  16441. },
  16442. },
  16443. [
  16444. {
  16445. name: "Tiny Microw",
  16446. height: math.unit(1, "inch")
  16447. },
  16448. {
  16449. name: "Microw",
  16450. height: math.unit(6, "inches")
  16451. },
  16452. {
  16453. name: "Crow",
  16454. height: math.unit(7 + 1 / 12, "feet"),
  16455. default: true
  16456. },
  16457. {
  16458. name: "Macrow",
  16459. height: math.unit(176, "feet")
  16460. },
  16461. ]
  16462. ))
  16463. characterMakers.push(() => makeCharacter(
  16464. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16465. {
  16466. front: {
  16467. height: math.unit(5 + 7 / 12, "feet"),
  16468. weight: math.unit(147, "lb"),
  16469. name: "Front",
  16470. image: {
  16471. source: "./media/characters/natalie-kellon/front.svg",
  16472. extra: 1214 / 1141,
  16473. bottom: 0.02
  16474. }
  16475. },
  16476. },
  16477. [
  16478. {
  16479. name: "Micro",
  16480. height: math.unit(1 / 16, "inch")
  16481. },
  16482. {
  16483. name: "Tiny",
  16484. height: math.unit(4, "inches")
  16485. },
  16486. {
  16487. name: "Normal",
  16488. height: math.unit(5 + 7 / 12, "feet"),
  16489. default: true
  16490. },
  16491. {
  16492. name: "Amazon",
  16493. height: math.unit(12, "feet")
  16494. },
  16495. {
  16496. name: "Giantess",
  16497. height: math.unit(160, "meters")
  16498. },
  16499. {
  16500. name: "Titaness",
  16501. height: math.unit(800, "meters")
  16502. },
  16503. ]
  16504. ))
  16505. characterMakers.push(() => makeCharacter(
  16506. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16507. {
  16508. front: {
  16509. height: math.unit(6, "feet"),
  16510. weight: math.unit(150, "lb"),
  16511. name: "Front",
  16512. image: {
  16513. source: "./media/characters/alluria/front.svg",
  16514. extra: 806 / 738,
  16515. bottom: 0.01
  16516. }
  16517. },
  16518. side: {
  16519. height: math.unit(6, "feet"),
  16520. weight: math.unit(150, "lb"),
  16521. name: "Side",
  16522. image: {
  16523. source: "./media/characters/alluria/side.svg",
  16524. extra: 800 / 750,
  16525. }
  16526. },
  16527. back: {
  16528. height: math.unit(6, "feet"),
  16529. weight: math.unit(150, "lb"),
  16530. name: "Back",
  16531. image: {
  16532. source: "./media/characters/alluria/back.svg",
  16533. extra: 806 / 738,
  16534. }
  16535. },
  16536. frontMaid: {
  16537. height: math.unit(6, "feet"),
  16538. weight: math.unit(150, "lb"),
  16539. name: "Front (Maid)",
  16540. image: {
  16541. source: "./media/characters/alluria/front-maid.svg",
  16542. extra: 806 / 738,
  16543. bottom: 0.01
  16544. }
  16545. },
  16546. sideMaid: {
  16547. height: math.unit(6, "feet"),
  16548. weight: math.unit(150, "lb"),
  16549. name: "Side (Maid)",
  16550. image: {
  16551. source: "./media/characters/alluria/side-maid.svg",
  16552. extra: 800 / 750,
  16553. bottom: 0.005
  16554. }
  16555. },
  16556. backMaid: {
  16557. height: math.unit(6, "feet"),
  16558. weight: math.unit(150, "lb"),
  16559. name: "Back (Maid)",
  16560. image: {
  16561. source: "./media/characters/alluria/back-maid.svg",
  16562. extra: 806 / 738,
  16563. }
  16564. },
  16565. },
  16566. [
  16567. {
  16568. name: "Micro",
  16569. height: math.unit(6, "inches"),
  16570. default: true
  16571. },
  16572. ]
  16573. ))
  16574. characterMakers.push(() => makeCharacter(
  16575. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16576. {
  16577. front: {
  16578. height: math.unit(6, "feet"),
  16579. weight: math.unit(150, "lb"),
  16580. name: "Front",
  16581. image: {
  16582. source: "./media/characters/kyle/front.svg",
  16583. extra: 1069 / 962,
  16584. bottom: 77.228 / 1727.45
  16585. }
  16586. },
  16587. },
  16588. [
  16589. {
  16590. name: "Macro",
  16591. height: math.unit(150, "feet"),
  16592. default: true
  16593. },
  16594. ]
  16595. ))
  16596. characterMakers.push(() => makeCharacter(
  16597. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16598. {
  16599. front: {
  16600. height: math.unit(6, "feet"),
  16601. weight: math.unit(300, "lb"),
  16602. name: "Front",
  16603. image: {
  16604. source: "./media/characters/duncan/front.svg",
  16605. extra: 1650 / 1482,
  16606. bottom: 0.05
  16607. }
  16608. },
  16609. },
  16610. [
  16611. {
  16612. name: "Macro",
  16613. height: math.unit(100, "feet"),
  16614. default: true
  16615. },
  16616. ]
  16617. ))
  16618. characterMakers.push(() => makeCharacter(
  16619. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16620. {
  16621. front: {
  16622. height: math.unit(5 + 4 / 12, "feet"),
  16623. weight: math.unit(220, "lb"),
  16624. name: "Front",
  16625. image: {
  16626. source: "./media/characters/memory/front.svg",
  16627. extra: 3641 / 3545,
  16628. bottom: 0.03
  16629. }
  16630. },
  16631. back: {
  16632. height: math.unit(5 + 4 / 12, "feet"),
  16633. weight: math.unit(220, "lb"),
  16634. name: "Back",
  16635. image: {
  16636. source: "./media/characters/memory/back.svg",
  16637. extra: 3641 / 3545,
  16638. bottom: 0.025
  16639. }
  16640. },
  16641. frontSkirt: {
  16642. height: math.unit(5 + 4 / 12, "feet"),
  16643. weight: math.unit(220, "lb"),
  16644. name: "Front (Skirt)",
  16645. image: {
  16646. source: "./media/characters/memory/front-skirt.svg",
  16647. extra: 3641 / 3545,
  16648. bottom: 0.03
  16649. }
  16650. },
  16651. frontDress: {
  16652. height: math.unit(5 + 4 / 12, "feet"),
  16653. weight: math.unit(220, "lb"),
  16654. name: "Front (Dress)",
  16655. image: {
  16656. source: "./media/characters/memory/front-dress.svg",
  16657. extra: 3641 / 3545,
  16658. bottom: 0.03
  16659. }
  16660. },
  16661. },
  16662. [
  16663. {
  16664. name: "Micro",
  16665. height: math.unit(6, "inches"),
  16666. default: true
  16667. },
  16668. {
  16669. name: "Normal",
  16670. height: math.unit(5 + 4 / 12, "feet")
  16671. },
  16672. ]
  16673. ))
  16674. characterMakers.push(() => makeCharacter(
  16675. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16676. {
  16677. front: {
  16678. height: math.unit(4 + 11 / 12, "feet"),
  16679. weight: math.unit(100, "lb"),
  16680. name: "Front",
  16681. image: {
  16682. source: "./media/characters/luno/front.svg",
  16683. extra: 1535 / 1487,
  16684. bottom: 0.03
  16685. }
  16686. },
  16687. },
  16688. [
  16689. {
  16690. name: "Micro",
  16691. height: math.unit(3, "inches")
  16692. },
  16693. {
  16694. name: "Normal",
  16695. height: math.unit(4 + 11 / 12, "feet"),
  16696. default: true
  16697. },
  16698. {
  16699. name: "Macro",
  16700. height: math.unit(300, "feet")
  16701. },
  16702. {
  16703. name: "Megamacro",
  16704. height: math.unit(700, "miles")
  16705. },
  16706. ]
  16707. ))
  16708. characterMakers.push(() => makeCharacter(
  16709. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16710. {
  16711. front: {
  16712. height: math.unit(6 + 2 / 12, "feet"),
  16713. weight: math.unit(170, "lb"),
  16714. name: "Front",
  16715. image: {
  16716. source: "./media/characters/jamesy/front.svg",
  16717. extra: 440 / 382,
  16718. bottom: 0.005
  16719. }
  16720. },
  16721. },
  16722. [
  16723. {
  16724. name: "Micro",
  16725. height: math.unit(3, "inches")
  16726. },
  16727. {
  16728. name: "Normal",
  16729. height: math.unit(6 + 2 / 12, "feet"),
  16730. default: true
  16731. },
  16732. {
  16733. name: "Macro",
  16734. height: math.unit(300, "feet")
  16735. },
  16736. {
  16737. name: "Megamacro",
  16738. height: math.unit(700, "miles")
  16739. },
  16740. ]
  16741. ))
  16742. characterMakers.push(() => makeCharacter(
  16743. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16744. {
  16745. front: {
  16746. height: math.unit(6, "feet"),
  16747. weight: math.unit(160, "lb"),
  16748. name: "Front",
  16749. image: {
  16750. source: "./media/characters/mark/front.svg",
  16751. extra: 3300 / 3100,
  16752. bottom: 136.42 / 3440.47
  16753. }
  16754. },
  16755. },
  16756. [
  16757. {
  16758. name: "Macro",
  16759. height: math.unit(120, "meters")
  16760. },
  16761. {
  16762. name: "Bigger Macro",
  16763. height: math.unit(350, "meters")
  16764. },
  16765. {
  16766. name: "Megamacro",
  16767. height: math.unit(8, "km"),
  16768. default: true
  16769. },
  16770. {
  16771. name: "Continental",
  16772. height: math.unit(4550, "km")
  16773. },
  16774. {
  16775. name: "Planetary",
  16776. height: math.unit(65000, "km")
  16777. },
  16778. ]
  16779. ))
  16780. characterMakers.push(() => makeCharacter(
  16781. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16782. {
  16783. front: {
  16784. height: math.unit(6, "feet"),
  16785. weight: math.unit(400, "lb"),
  16786. name: "Front",
  16787. image: {
  16788. source: "./media/characters/mac/front.svg",
  16789. extra: 1048 / 987.7,
  16790. bottom: 60 / 1107.6,
  16791. }
  16792. },
  16793. },
  16794. [
  16795. {
  16796. name: "Macro",
  16797. height: math.unit(500, "feet"),
  16798. default: true
  16799. },
  16800. ]
  16801. ))
  16802. characterMakers.push(() => makeCharacter(
  16803. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16804. {
  16805. front: {
  16806. height: math.unit(5 + 2 / 12, "feet"),
  16807. weight: math.unit(190, "lb"),
  16808. name: "Front",
  16809. image: {
  16810. source: "./media/characters/bari/front.svg",
  16811. extra: 3156 / 2880,
  16812. bottom: 0.03
  16813. }
  16814. },
  16815. back: {
  16816. height: math.unit(5 + 2 / 12, "feet"),
  16817. weight: math.unit(190, "lb"),
  16818. name: "Back",
  16819. image: {
  16820. source: "./media/characters/bari/back.svg",
  16821. extra: 3260 / 2834,
  16822. bottom: 0.025
  16823. }
  16824. },
  16825. frontPlush: {
  16826. height: math.unit(5 + 2 / 12, "feet"),
  16827. weight: math.unit(190, "lb"),
  16828. name: "Front (Plush)",
  16829. image: {
  16830. source: "./media/characters/bari/front-plush.svg",
  16831. extra: 1112 / 1061,
  16832. bottom: 0.002
  16833. }
  16834. },
  16835. },
  16836. [
  16837. {
  16838. name: "Micro",
  16839. height: math.unit(3, "inches")
  16840. },
  16841. {
  16842. name: "Normal",
  16843. height: math.unit(5 + 2 / 12, "feet"),
  16844. default: true
  16845. },
  16846. {
  16847. name: "Macro",
  16848. height: math.unit(20, "feet")
  16849. },
  16850. ]
  16851. ))
  16852. characterMakers.push(() => makeCharacter(
  16853. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16854. {
  16855. front: {
  16856. height: math.unit(6 + 1 / 12, "feet"),
  16857. weight: math.unit(275, "lb"),
  16858. name: "Front",
  16859. image: {
  16860. source: "./media/characters/hunter-misha-raven/front.svg"
  16861. }
  16862. },
  16863. },
  16864. [
  16865. {
  16866. name: "Mortal",
  16867. height: math.unit(6 + 1 / 12, "feet")
  16868. },
  16869. {
  16870. name: "Divine",
  16871. height: math.unit(1.12134e34, "parsecs"),
  16872. default: true
  16873. },
  16874. ]
  16875. ))
  16876. characterMakers.push(() => makeCharacter(
  16877. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16878. {
  16879. front: {
  16880. height: math.unit(6 + 3 / 12, "feet"),
  16881. weight: math.unit(220, "lb"),
  16882. name: "Front",
  16883. image: {
  16884. source: "./media/characters/max-calore/front.svg",
  16885. extra: 1700 / 1648,
  16886. bottom: 0.01
  16887. }
  16888. },
  16889. back: {
  16890. height: math.unit(6 + 3 / 12, "feet"),
  16891. weight: math.unit(220, "lb"),
  16892. name: "Back",
  16893. image: {
  16894. source: "./media/characters/max-calore/back.svg",
  16895. extra: 1700 / 1648,
  16896. bottom: 0.01
  16897. }
  16898. },
  16899. },
  16900. [
  16901. {
  16902. name: "Normal",
  16903. height: math.unit(6 + 3 / 12, "feet"),
  16904. default: true
  16905. },
  16906. ]
  16907. ))
  16908. characterMakers.push(() => makeCharacter(
  16909. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16910. {
  16911. side: {
  16912. height: math.unit(2 + 8 / 12, "feet"),
  16913. weight: math.unit(99, "lb"),
  16914. name: "Side",
  16915. image: {
  16916. source: "./media/characters/aspen/side.svg",
  16917. extra: 152 / 138,
  16918. bottom: 0.032
  16919. }
  16920. },
  16921. },
  16922. [
  16923. {
  16924. name: "Normal",
  16925. height: math.unit(2 + 8 / 12, "feet"),
  16926. default: true
  16927. },
  16928. ]
  16929. ))
  16930. characterMakers.push(() => makeCharacter(
  16931. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16932. {
  16933. side: {
  16934. height: math.unit(3 + 2 / 12, "feet"),
  16935. weight: math.unit(224, "lb"),
  16936. name: "Side",
  16937. image: {
  16938. source: "./media/characters/sheila-feral-wolf/side.svg",
  16939. extra: 179 / 166,
  16940. bottom: 0.03
  16941. }
  16942. },
  16943. },
  16944. [
  16945. {
  16946. name: "Normal",
  16947. height: math.unit(3 + 2 / 12, "feet"),
  16948. default: true
  16949. },
  16950. ]
  16951. ))
  16952. characterMakers.push(() => makeCharacter(
  16953. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16954. {
  16955. side: {
  16956. height: math.unit(1 + 9 / 12, "feet"),
  16957. weight: math.unit(38, "lb"),
  16958. name: "Side",
  16959. image: {
  16960. source: "./media/characters/michelle/side.svg",
  16961. extra: 147 / 136.7,
  16962. bottom: 0.03
  16963. }
  16964. },
  16965. },
  16966. [
  16967. {
  16968. name: "Normal",
  16969. height: math.unit(1 + 9 / 12, "feet"),
  16970. default: true
  16971. },
  16972. ]
  16973. ))
  16974. characterMakers.push(() => makeCharacter(
  16975. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16976. {
  16977. front: {
  16978. height: math.unit(1 + 1 / 12, "feet"),
  16979. weight: math.unit(18, "lb"),
  16980. name: "Front",
  16981. image: {
  16982. source: "./media/characters/nino/front.svg"
  16983. }
  16984. },
  16985. },
  16986. [
  16987. {
  16988. name: "Normal",
  16989. height: math.unit(1 + 1 / 12, "feet"),
  16990. default: true
  16991. },
  16992. ]
  16993. ))
  16994. characterMakers.push(() => makeCharacter(
  16995. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16996. {
  16997. front: {
  16998. height: math.unit(1, "feet"),
  16999. weight: math.unit(16, "lb"),
  17000. name: "Front",
  17001. image: {
  17002. source: "./media/characters/viola/front.svg"
  17003. }
  17004. },
  17005. },
  17006. [
  17007. {
  17008. name: "Normal",
  17009. height: math.unit(1, "feet"),
  17010. default: true
  17011. },
  17012. ]
  17013. ))
  17014. characterMakers.push(() => makeCharacter(
  17015. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17016. {
  17017. front: {
  17018. height: math.unit(6 + 5 / 12, "feet"),
  17019. weight: math.unit(580, "lb"),
  17020. name: "Front",
  17021. image: {
  17022. source: "./media/characters/atlas/front.svg",
  17023. extra: 298.5 / 290,
  17024. bottom: 0.015
  17025. }
  17026. },
  17027. },
  17028. [
  17029. {
  17030. name: "Normal",
  17031. height: math.unit(6 + 5 / 12, "feet"),
  17032. default: true
  17033. },
  17034. ]
  17035. ))
  17036. characterMakers.push(() => makeCharacter(
  17037. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17038. {
  17039. side: {
  17040. height: math.unit(1 + 10 / 12, "feet"),
  17041. weight: math.unit(25, "lb"),
  17042. name: "Side",
  17043. image: {
  17044. source: "./media/characters/davy/side.svg",
  17045. extra: 200 / 170,
  17046. bottom: 0.01
  17047. }
  17048. },
  17049. },
  17050. [
  17051. {
  17052. name: "Normal",
  17053. height: math.unit(1 + 10 / 12, "feet"),
  17054. default: true
  17055. },
  17056. ]
  17057. ))
  17058. characterMakers.push(() => makeCharacter(
  17059. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17060. {
  17061. side: {
  17062. height: math.unit(4 + 8 / 12, "feet"),
  17063. weight: math.unit(166, "lb"),
  17064. name: "Side",
  17065. image: {
  17066. source: "./media/characters/fiona/side.svg",
  17067. extra: 232 / 220,
  17068. bottom: 0.03
  17069. }
  17070. },
  17071. },
  17072. [
  17073. {
  17074. name: "Normal",
  17075. height: math.unit(4 + 8 / 12, "feet"),
  17076. default: true
  17077. },
  17078. ]
  17079. ))
  17080. characterMakers.push(() => makeCharacter(
  17081. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17082. {
  17083. front: {
  17084. height: math.unit(2, "feet"),
  17085. weight: math.unit(62, "lb"),
  17086. name: "Front",
  17087. image: {
  17088. source: "./media/characters/lyla/front.svg",
  17089. bottom: 0.1
  17090. }
  17091. },
  17092. },
  17093. [
  17094. {
  17095. name: "Normal",
  17096. height: math.unit(2, "feet"),
  17097. default: true
  17098. },
  17099. ]
  17100. ))
  17101. characterMakers.push(() => makeCharacter(
  17102. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17103. {
  17104. side: {
  17105. height: math.unit(1.8, "feet"),
  17106. weight: math.unit(44, "lb"),
  17107. name: "Side",
  17108. image: {
  17109. source: "./media/characters/perseus/side.svg",
  17110. bottom: 0.21
  17111. }
  17112. },
  17113. },
  17114. [
  17115. {
  17116. name: "Normal",
  17117. height: math.unit(1.8, "feet"),
  17118. default: true
  17119. },
  17120. ]
  17121. ))
  17122. characterMakers.push(() => makeCharacter(
  17123. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17124. {
  17125. side: {
  17126. height: math.unit(4 + 2 / 12, "feet"),
  17127. weight: math.unit(20, "lb"),
  17128. name: "Side",
  17129. image: {
  17130. source: "./media/characters/remus/side.svg"
  17131. }
  17132. },
  17133. },
  17134. [
  17135. {
  17136. name: "Normal",
  17137. height: math.unit(4 + 2 / 12, "feet"),
  17138. default: true
  17139. },
  17140. ]
  17141. ))
  17142. characterMakers.push(() => makeCharacter(
  17143. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17144. {
  17145. front: {
  17146. height: math.unit(4 + 11 / 12, "feet"),
  17147. weight: math.unit(114, "lb"),
  17148. name: "Front",
  17149. image: {
  17150. source: "./media/characters/raf/front.svg",
  17151. bottom: 20.5 / 1863
  17152. }
  17153. },
  17154. side: {
  17155. height: math.unit(4 + 11 / 12, "feet"),
  17156. weight: math.unit(114, "lb"),
  17157. name: "Side",
  17158. image: {
  17159. source: "./media/characters/raf/side.svg",
  17160. bottom: 22 / 1822
  17161. }
  17162. },
  17163. },
  17164. [
  17165. {
  17166. name: "Micro",
  17167. height: math.unit(2, "inches")
  17168. },
  17169. {
  17170. name: "Normal",
  17171. height: math.unit(4 + 11 / 12, "feet"),
  17172. default: true
  17173. },
  17174. {
  17175. name: "Macro",
  17176. height: math.unit(70, "feet")
  17177. },
  17178. ]
  17179. ))
  17180. characterMakers.push(() => makeCharacter(
  17181. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17182. {
  17183. front: {
  17184. height: math.unit(1.5, "meters"),
  17185. weight: math.unit(68, "kg"),
  17186. name: "Front",
  17187. image: {
  17188. source: "./media/characters/liam-einarr/front.svg",
  17189. extra: 2822 / 2666
  17190. }
  17191. },
  17192. back: {
  17193. height: math.unit(1.5, "meters"),
  17194. weight: math.unit(68, "kg"),
  17195. name: "Back",
  17196. image: {
  17197. source: "./media/characters/liam-einarr/back.svg",
  17198. extra: 2822 / 2666,
  17199. bottom: 0.015
  17200. }
  17201. },
  17202. },
  17203. [
  17204. {
  17205. name: "Normal",
  17206. height: math.unit(1.5, "meters"),
  17207. default: true
  17208. },
  17209. {
  17210. name: "Macro",
  17211. height: math.unit(150, "meters")
  17212. },
  17213. {
  17214. name: "Megamacro",
  17215. height: math.unit(35, "km")
  17216. },
  17217. ]
  17218. ))
  17219. characterMakers.push(() => makeCharacter(
  17220. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17221. {
  17222. front: {
  17223. height: math.unit(6, "feet"),
  17224. weight: math.unit(75, "kg"),
  17225. name: "Front",
  17226. image: {
  17227. source: "./media/characters/linda/front.svg",
  17228. extra: 930 / 874,
  17229. bottom: 0.004
  17230. }
  17231. },
  17232. },
  17233. [
  17234. {
  17235. name: "Normal",
  17236. height: math.unit(6, "feet"),
  17237. default: true
  17238. },
  17239. ]
  17240. ))
  17241. characterMakers.push(() => makeCharacter(
  17242. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17243. {
  17244. front: {
  17245. height: math.unit(6 + 8 / 12, "feet"),
  17246. weight: math.unit(220, "lb"),
  17247. name: "Front",
  17248. image: {
  17249. source: "./media/characters/caylex/front.svg",
  17250. extra: 821 / 772,
  17251. bottom: 0.07
  17252. }
  17253. },
  17254. back: {
  17255. height: math.unit(6 + 8 / 12, "feet"),
  17256. weight: math.unit(220, "lb"),
  17257. name: "Back",
  17258. image: {
  17259. source: "./media/characters/caylex/back.svg",
  17260. extra: 821 / 772,
  17261. bottom: 0.022
  17262. }
  17263. },
  17264. hand: {
  17265. height: math.unit(1.25, "feet"),
  17266. name: "Hand",
  17267. image: {
  17268. source: "./media/characters/caylex/hand.svg"
  17269. }
  17270. },
  17271. foot: {
  17272. height: math.unit(1.6, "feet"),
  17273. name: "Foot",
  17274. image: {
  17275. source: "./media/characters/caylex/foot.svg"
  17276. }
  17277. },
  17278. armored: {
  17279. height: math.unit(6 + 8 / 12, "feet"),
  17280. weight: math.unit(250, "lb"),
  17281. name: "Armored",
  17282. image: {
  17283. source: "./media/characters/caylex/armored.svg",
  17284. extra: 1420 / 1310,
  17285. bottom: 0.045
  17286. }
  17287. },
  17288. },
  17289. [
  17290. {
  17291. name: "Normal",
  17292. height: math.unit(6 + 8 / 12, "feet"),
  17293. default: true
  17294. },
  17295. {
  17296. name: "Normal+",
  17297. height: math.unit(12, "feet")
  17298. },
  17299. ]
  17300. ))
  17301. characterMakers.push(() => makeCharacter(
  17302. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17303. {
  17304. front: {
  17305. height: math.unit(7 + 6 / 12, "feet"),
  17306. weight: math.unit(288, "lb"),
  17307. name: "Front",
  17308. image: {
  17309. source: "./media/characters/alana/front.svg",
  17310. extra: 679 / 653,
  17311. bottom: 22.5 / 701
  17312. }
  17313. },
  17314. },
  17315. [
  17316. {
  17317. name: "Normal",
  17318. height: math.unit(7 + 6 / 12, "feet")
  17319. },
  17320. {
  17321. name: "Large",
  17322. height: math.unit(50, "feet")
  17323. },
  17324. {
  17325. name: "Macro",
  17326. height: math.unit(100, "feet"),
  17327. default: true
  17328. },
  17329. {
  17330. name: "Macro+",
  17331. height: math.unit(200, "feet")
  17332. },
  17333. ]
  17334. ))
  17335. characterMakers.push(() => makeCharacter(
  17336. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17337. {
  17338. front: {
  17339. height: math.unit(6 + 1 / 12, "feet"),
  17340. weight: math.unit(210, "lb"),
  17341. name: "Front",
  17342. image: {
  17343. source: "./media/characters/hasani/front.svg",
  17344. extra: 244 / 232,
  17345. bottom: 0.01
  17346. }
  17347. },
  17348. back: {
  17349. height: math.unit(6 + 1 / 12, "feet"),
  17350. weight: math.unit(210, "lb"),
  17351. name: "Back",
  17352. image: {
  17353. source: "./media/characters/hasani/back.svg",
  17354. extra: 244 / 232,
  17355. bottom: 0.01
  17356. }
  17357. },
  17358. },
  17359. [
  17360. {
  17361. name: "Normal",
  17362. height: math.unit(6 + 1 / 12, "feet")
  17363. },
  17364. {
  17365. name: "Macro",
  17366. height: math.unit(175, "feet"),
  17367. default: true
  17368. },
  17369. ]
  17370. ))
  17371. characterMakers.push(() => makeCharacter(
  17372. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17373. {
  17374. front: {
  17375. height: math.unit(1.82, "meters"),
  17376. weight: math.unit(140, "lb"),
  17377. name: "Front",
  17378. image: {
  17379. source: "./media/characters/nita/front.svg",
  17380. extra: 2473 / 2363,
  17381. bottom: 0.01
  17382. }
  17383. },
  17384. },
  17385. [
  17386. {
  17387. name: "Normal",
  17388. height: math.unit(1.82, "m")
  17389. },
  17390. {
  17391. name: "Macro",
  17392. height: math.unit(300, "m")
  17393. },
  17394. {
  17395. name: "Mistake Canon",
  17396. height: math.unit(0.5, "miles"),
  17397. default: true
  17398. },
  17399. {
  17400. name: "Big Mistake",
  17401. height: math.unit(13, "miles")
  17402. },
  17403. {
  17404. name: "Playing God",
  17405. height: math.unit(2450, "miles")
  17406. },
  17407. ]
  17408. ))
  17409. characterMakers.push(() => makeCharacter(
  17410. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17411. {
  17412. front: {
  17413. height: math.unit(4, "feet"),
  17414. weight: math.unit(120, "lb"),
  17415. name: "Front",
  17416. image: {
  17417. source: "./media/characters/shiriko/front.svg",
  17418. extra: 970/934,
  17419. bottom: 5/975
  17420. }
  17421. },
  17422. },
  17423. [
  17424. {
  17425. name: "Normal",
  17426. height: math.unit(4, "feet"),
  17427. default: true
  17428. },
  17429. ]
  17430. ))
  17431. characterMakers.push(() => makeCharacter(
  17432. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17433. {
  17434. front: {
  17435. height: math.unit(6, "feet"),
  17436. name: "front",
  17437. image: {
  17438. source: "./media/characters/deja/front.svg",
  17439. extra: 926 / 840,
  17440. bottom: 0.07
  17441. }
  17442. },
  17443. },
  17444. [
  17445. {
  17446. name: "Planck Length",
  17447. height: math.unit(1.6e-35, "meters")
  17448. },
  17449. {
  17450. name: "Normal",
  17451. height: math.unit(30.48, "meters"),
  17452. default: true
  17453. },
  17454. {
  17455. name: "Universal",
  17456. height: math.unit(8.8e26, "meters")
  17457. },
  17458. ]
  17459. ))
  17460. characterMakers.push(() => makeCharacter(
  17461. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17462. {
  17463. side: {
  17464. height: math.unit(8, "feet"),
  17465. weight: math.unit(6300, "lb"),
  17466. name: "Side",
  17467. image: {
  17468. source: "./media/characters/anima/side.svg",
  17469. bottom: 0.035
  17470. }
  17471. },
  17472. },
  17473. [
  17474. {
  17475. name: "Normal",
  17476. height: math.unit(8, "feet"),
  17477. default: true
  17478. },
  17479. ]
  17480. ))
  17481. characterMakers.push(() => makeCharacter(
  17482. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17483. {
  17484. front: {
  17485. height: math.unit(8, "feet"),
  17486. weight: math.unit(350, "lb"),
  17487. name: "Front",
  17488. image: {
  17489. source: "./media/characters/bianca/front.svg",
  17490. extra: 234 / 225,
  17491. bottom: 0.03
  17492. }
  17493. },
  17494. },
  17495. [
  17496. {
  17497. name: "Normal",
  17498. height: math.unit(8, "feet"),
  17499. default: true
  17500. },
  17501. ]
  17502. ))
  17503. characterMakers.push(() => makeCharacter(
  17504. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17505. {
  17506. front: {
  17507. height: math.unit(6, "feet"),
  17508. weight: math.unit(150, "lb"),
  17509. name: "Front",
  17510. image: {
  17511. source: "./media/characters/adinia/front.svg",
  17512. extra: 1845 / 1672,
  17513. bottom: 0.02
  17514. }
  17515. },
  17516. back: {
  17517. height: math.unit(6, "feet"),
  17518. weight: math.unit(150, "lb"),
  17519. name: "Back",
  17520. image: {
  17521. source: "./media/characters/adinia/back.svg",
  17522. extra: 1845 / 1672,
  17523. bottom: 0.002
  17524. }
  17525. },
  17526. },
  17527. [
  17528. {
  17529. name: "Normal",
  17530. height: math.unit(11 + 5 / 12, "feet"),
  17531. default: true
  17532. },
  17533. ]
  17534. ))
  17535. characterMakers.push(() => makeCharacter(
  17536. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17537. {
  17538. front: {
  17539. height: math.unit(3, "meters"),
  17540. weight: math.unit(200, "kg"),
  17541. name: "Front",
  17542. image: {
  17543. source: "./media/characters/lykasa/front.svg",
  17544. extra: 1076 / 976,
  17545. bottom: 0.06
  17546. }
  17547. },
  17548. },
  17549. [
  17550. {
  17551. name: "Normal",
  17552. height: math.unit(3, "meters")
  17553. },
  17554. {
  17555. name: "Kaiju",
  17556. height: math.unit(120, "meters"),
  17557. default: true
  17558. },
  17559. {
  17560. name: "Mega Kaiju",
  17561. height: math.unit(240, "km")
  17562. },
  17563. {
  17564. name: "Giga Kaiju",
  17565. height: math.unit(400, "megameters")
  17566. },
  17567. {
  17568. name: "Tera Kaiju",
  17569. height: math.unit(800, "gigameters")
  17570. },
  17571. {
  17572. name: "Kaiju Dragon Goddess",
  17573. height: math.unit(26, "zettaparsecs")
  17574. },
  17575. ]
  17576. ))
  17577. characterMakers.push(() => makeCharacter(
  17578. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17579. {
  17580. side: {
  17581. height: math.unit(283 / 124 * 6, "feet"),
  17582. weight: math.unit(35000, "lb"),
  17583. name: "Side",
  17584. image: {
  17585. source: "./media/characters/malfaren/side.svg",
  17586. extra: 2500 / 1010,
  17587. bottom: 0.01
  17588. }
  17589. },
  17590. front: {
  17591. height: math.unit(22.36, "feet"),
  17592. weight: math.unit(35000, "lb"),
  17593. name: "Front",
  17594. image: {
  17595. source: "./media/characters/malfaren/front.svg",
  17596. extra: 1631 / 1476,
  17597. bottom: 0.01
  17598. }
  17599. },
  17600. maw: {
  17601. height: math.unit(6.9, "feet"),
  17602. name: "Maw",
  17603. image: {
  17604. source: "./media/characters/malfaren/maw.svg"
  17605. }
  17606. },
  17607. },
  17608. [
  17609. {
  17610. name: "Big",
  17611. height: math.unit(283 / 162 * 6, "feet"),
  17612. },
  17613. {
  17614. name: "Bigger",
  17615. height: math.unit(283 / 124 * 6, "feet")
  17616. },
  17617. {
  17618. name: "Massive",
  17619. height: math.unit(283 / 92 * 6, "feet"),
  17620. default: true
  17621. },
  17622. {
  17623. name: "👀💦",
  17624. height: math.unit(283 / 73 * 6, "feet"),
  17625. },
  17626. ]
  17627. ))
  17628. characterMakers.push(() => makeCharacter(
  17629. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17630. {
  17631. front: {
  17632. height: math.unit(1.7, "m"),
  17633. weight: math.unit(70, "kg"),
  17634. name: "Front",
  17635. image: {
  17636. source: "./media/characters/kernel/front.svg",
  17637. extra: 222 / 210,
  17638. bottom: 0.007
  17639. }
  17640. },
  17641. },
  17642. [
  17643. {
  17644. name: "Nano",
  17645. height: math.unit(17, "micrometers")
  17646. },
  17647. {
  17648. name: "Micro",
  17649. height: math.unit(1.7, "mm")
  17650. },
  17651. {
  17652. name: "Small",
  17653. height: math.unit(1.7, "cm")
  17654. },
  17655. {
  17656. name: "Normal",
  17657. height: math.unit(1.7, "m"),
  17658. default: true
  17659. },
  17660. ]
  17661. ))
  17662. characterMakers.push(() => makeCharacter(
  17663. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17664. {
  17665. front: {
  17666. height: math.unit(1.75, "meters"),
  17667. weight: math.unit(65, "kg"),
  17668. name: "Front",
  17669. image: {
  17670. source: "./media/characters/jayne-folest/front.svg",
  17671. extra: 2115 / 2007,
  17672. bottom: 0.02
  17673. }
  17674. },
  17675. back: {
  17676. height: math.unit(1.75, "meters"),
  17677. weight: math.unit(65, "kg"),
  17678. name: "Back",
  17679. image: {
  17680. source: "./media/characters/jayne-folest/back.svg",
  17681. extra: 2115 / 2007,
  17682. bottom: 0.005
  17683. }
  17684. },
  17685. frontClothed: {
  17686. height: math.unit(1.75, "meters"),
  17687. weight: math.unit(65, "kg"),
  17688. name: "Front (Clothed)",
  17689. image: {
  17690. source: "./media/characters/jayne-folest/front-clothed.svg",
  17691. extra: 2115 / 2007,
  17692. bottom: 0.035
  17693. }
  17694. },
  17695. hand: {
  17696. height: math.unit(1 / 1.260, "feet"),
  17697. name: "Hand",
  17698. image: {
  17699. source: "./media/characters/jayne-folest/hand.svg"
  17700. }
  17701. },
  17702. foot: {
  17703. height: math.unit(1 / 0.918, "feet"),
  17704. name: "Foot",
  17705. image: {
  17706. source: "./media/characters/jayne-folest/foot.svg"
  17707. }
  17708. },
  17709. },
  17710. [
  17711. {
  17712. name: "Micro",
  17713. height: math.unit(4, "cm")
  17714. },
  17715. {
  17716. name: "Normal",
  17717. height: math.unit(1.75, "meters")
  17718. },
  17719. {
  17720. name: "Macro",
  17721. height: math.unit(47.5, "meters"),
  17722. default: true
  17723. },
  17724. ]
  17725. ))
  17726. characterMakers.push(() => makeCharacter(
  17727. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17728. {
  17729. front: {
  17730. height: math.unit(180, "cm"),
  17731. weight: math.unit(70, "kg"),
  17732. name: "Front",
  17733. image: {
  17734. source: "./media/characters/algier/front.svg",
  17735. extra: 596 / 572,
  17736. bottom: 0.04
  17737. }
  17738. },
  17739. back: {
  17740. height: math.unit(180, "cm"),
  17741. weight: math.unit(70, "kg"),
  17742. name: "Back",
  17743. image: {
  17744. source: "./media/characters/algier/back.svg",
  17745. extra: 596 / 572,
  17746. bottom: 0.025
  17747. }
  17748. },
  17749. frontdressed: {
  17750. height: math.unit(180, "cm"),
  17751. weight: math.unit(150, "kg"),
  17752. name: "Front-dressed",
  17753. image: {
  17754. source: "./media/characters/algier/front-dressed.svg",
  17755. extra: 596 / 572,
  17756. bottom: 0.038
  17757. }
  17758. },
  17759. },
  17760. [
  17761. {
  17762. name: "Micro",
  17763. height: math.unit(5, "cm")
  17764. },
  17765. {
  17766. name: "Normal",
  17767. height: math.unit(180, "cm"),
  17768. default: true
  17769. },
  17770. {
  17771. name: "Macro",
  17772. height: math.unit(64, "m")
  17773. },
  17774. ]
  17775. ))
  17776. characterMakers.push(() => makeCharacter(
  17777. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17778. {
  17779. upright: {
  17780. height: math.unit(7, "feet"),
  17781. weight: math.unit(300, "lb"),
  17782. name: "Upright",
  17783. image: {
  17784. source: "./media/characters/pretzel/upright.svg",
  17785. extra: 534 / 522,
  17786. bottom: 0.065
  17787. }
  17788. },
  17789. sprawling: {
  17790. height: math.unit(3.75, "feet"),
  17791. weight: math.unit(300, "lb"),
  17792. name: "Sprawling",
  17793. image: {
  17794. source: "./media/characters/pretzel/sprawling.svg",
  17795. extra: 314 / 281,
  17796. bottom: 0.1
  17797. }
  17798. },
  17799. tongue: {
  17800. height: math.unit(2, "feet"),
  17801. name: "Tongue",
  17802. image: {
  17803. source: "./media/characters/pretzel/tongue.svg"
  17804. }
  17805. },
  17806. },
  17807. [
  17808. {
  17809. name: "Normal",
  17810. height: math.unit(7, "feet"),
  17811. default: true
  17812. },
  17813. {
  17814. name: "Oversized",
  17815. height: math.unit(15, "feet")
  17816. },
  17817. {
  17818. name: "Huge",
  17819. height: math.unit(30, "feet")
  17820. },
  17821. {
  17822. name: "Macro",
  17823. height: math.unit(250, "feet")
  17824. },
  17825. ]
  17826. ))
  17827. characterMakers.push(() => makeCharacter(
  17828. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17829. {
  17830. sideFront: {
  17831. height: math.unit(5 + 2 / 12, "feet"),
  17832. weight: math.unit(120, "lb"),
  17833. name: "Front Side",
  17834. image: {
  17835. source: "./media/characters/roxi/side-front.svg",
  17836. extra: 2924 / 2717,
  17837. bottom: 0.08
  17838. }
  17839. },
  17840. sideBack: {
  17841. height: math.unit(5 + 2 / 12, "feet"),
  17842. weight: math.unit(120, "lb"),
  17843. name: "Back Side",
  17844. image: {
  17845. source: "./media/characters/roxi/side-back.svg",
  17846. extra: 2904 / 2693,
  17847. bottom: 0.06
  17848. }
  17849. },
  17850. front: {
  17851. height: math.unit(5 + 2 / 12, "feet"),
  17852. weight: math.unit(120, "lb"),
  17853. name: "Front",
  17854. image: {
  17855. source: "./media/characters/roxi/front.svg",
  17856. extra: 2028 / 1907,
  17857. bottom: 0.01
  17858. }
  17859. },
  17860. frontAlt: {
  17861. height: math.unit(5 + 2 / 12, "feet"),
  17862. weight: math.unit(120, "lb"),
  17863. name: "Front (Alt)",
  17864. image: {
  17865. source: "./media/characters/roxi/front-alt.svg",
  17866. extra: 1828 / 1798,
  17867. bottom: 0.01
  17868. }
  17869. },
  17870. sitting: {
  17871. height: math.unit(2.8, "feet"),
  17872. weight: math.unit(120, "lb"),
  17873. name: "Sitting",
  17874. image: {
  17875. source: "./media/characters/roxi/sitting.svg",
  17876. extra: 2660 / 2462,
  17877. bottom: 0.1
  17878. }
  17879. },
  17880. },
  17881. [
  17882. {
  17883. name: "Normal",
  17884. height: math.unit(5 + 2 / 12, "feet"),
  17885. default: true
  17886. },
  17887. ]
  17888. ))
  17889. characterMakers.push(() => makeCharacter(
  17890. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17891. {
  17892. side: {
  17893. height: math.unit(55, "feet"),
  17894. weight: math.unit(153, "tons"),
  17895. name: "Side",
  17896. image: {
  17897. source: "./media/characters/shadow/side.svg",
  17898. extra: 701 / 628,
  17899. bottom: 0.02
  17900. }
  17901. },
  17902. flying: {
  17903. height: math.unit(145, "feet"),
  17904. weight: math.unit(153, "tons"),
  17905. name: "Flying",
  17906. image: {
  17907. source: "./media/characters/shadow/flying.svg"
  17908. }
  17909. },
  17910. },
  17911. [
  17912. {
  17913. name: "Normal",
  17914. height: math.unit(55, "feet"),
  17915. default: true
  17916. },
  17917. ]
  17918. ))
  17919. characterMakers.push(() => makeCharacter(
  17920. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17921. {
  17922. front: {
  17923. height: math.unit(6, "feet"),
  17924. weight: math.unit(200, "lb"),
  17925. name: "Front",
  17926. image: {
  17927. source: "./media/characters/marcie/front.svg",
  17928. extra: 960 / 876,
  17929. bottom: 58 / 1017.87
  17930. }
  17931. },
  17932. },
  17933. [
  17934. {
  17935. name: "Macro",
  17936. height: math.unit(1, "mile"),
  17937. default: true
  17938. },
  17939. ]
  17940. ))
  17941. characterMakers.push(() => makeCharacter(
  17942. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17943. {
  17944. front: {
  17945. height: math.unit(7, "feet"),
  17946. weight: math.unit(200, "lb"),
  17947. name: "Front",
  17948. image: {
  17949. source: "./media/characters/kachina/front.svg",
  17950. extra: 1290.68 / 1119,
  17951. bottom: 36.5 / 1327.18
  17952. }
  17953. },
  17954. },
  17955. [
  17956. {
  17957. name: "Normal",
  17958. height: math.unit(7, "feet"),
  17959. default: true
  17960. },
  17961. ]
  17962. ))
  17963. characterMakers.push(() => makeCharacter(
  17964. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17965. {
  17966. looking: {
  17967. height: math.unit(2, "meters"),
  17968. weight: math.unit(300, "kg"),
  17969. name: "Looking",
  17970. image: {
  17971. source: "./media/characters/kash/looking.svg",
  17972. extra: 474 / 344,
  17973. bottom: 0.03
  17974. }
  17975. },
  17976. side: {
  17977. height: math.unit(2, "meters"),
  17978. weight: math.unit(300, "kg"),
  17979. name: "Side",
  17980. image: {
  17981. source: "./media/characters/kash/side.svg",
  17982. extra: 302 / 251,
  17983. bottom: 0.03
  17984. }
  17985. },
  17986. front: {
  17987. height: math.unit(2, "meters"),
  17988. weight: math.unit(300, "kg"),
  17989. name: "Front",
  17990. image: {
  17991. source: "./media/characters/kash/front.svg",
  17992. extra: 495 / 360,
  17993. bottom: 0.015
  17994. }
  17995. },
  17996. },
  17997. [
  17998. {
  17999. name: "Normal",
  18000. height: math.unit(2, "meters"),
  18001. default: true
  18002. },
  18003. {
  18004. name: "Big",
  18005. height: math.unit(3, "meters")
  18006. },
  18007. {
  18008. name: "Large",
  18009. height: math.unit(5, "meters")
  18010. },
  18011. ]
  18012. ))
  18013. characterMakers.push(() => makeCharacter(
  18014. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18015. {
  18016. feeding: {
  18017. height: math.unit(6.7, "feet"),
  18018. weight: math.unit(350, "lb"),
  18019. name: "Feeding",
  18020. image: {
  18021. source: "./media/characters/lalim/feeding.svg",
  18022. }
  18023. },
  18024. },
  18025. [
  18026. {
  18027. name: "Normal",
  18028. height: math.unit(6.7, "feet"),
  18029. default: true
  18030. },
  18031. ]
  18032. ))
  18033. characterMakers.push(() => makeCharacter(
  18034. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18035. {
  18036. front: {
  18037. height: math.unit(9.5, "feet"),
  18038. weight: math.unit(600, "lb"),
  18039. name: "Front",
  18040. image: {
  18041. source: "./media/characters/de'vout/front.svg",
  18042. extra: 1443 / 1328,
  18043. bottom: 0.025
  18044. }
  18045. },
  18046. back: {
  18047. height: math.unit(9.5, "feet"),
  18048. weight: math.unit(600, "lb"),
  18049. name: "Back",
  18050. image: {
  18051. source: "./media/characters/de'vout/back.svg",
  18052. extra: 1443 / 1328
  18053. }
  18054. },
  18055. frontDressed: {
  18056. height: math.unit(9.5, "feet"),
  18057. weight: math.unit(600, "lb"),
  18058. name: "Front (Dressed",
  18059. image: {
  18060. source: "./media/characters/de'vout/front-dressed.svg",
  18061. extra: 1443 / 1328,
  18062. bottom: 0.025
  18063. }
  18064. },
  18065. backDressed: {
  18066. height: math.unit(9.5, "feet"),
  18067. weight: math.unit(600, "lb"),
  18068. name: "Back (Dressed",
  18069. image: {
  18070. source: "./media/characters/de'vout/back-dressed.svg",
  18071. extra: 1443 / 1328
  18072. }
  18073. },
  18074. },
  18075. [
  18076. {
  18077. name: "Normal",
  18078. height: math.unit(9.5, "feet"),
  18079. default: true
  18080. },
  18081. ]
  18082. ))
  18083. characterMakers.push(() => makeCharacter(
  18084. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18085. {
  18086. front: {
  18087. height: math.unit(8, "feet"),
  18088. weight: math.unit(225, "lb"),
  18089. name: "Front",
  18090. image: {
  18091. source: "./media/characters/talana/front.svg",
  18092. extra: 1410 / 1300,
  18093. bottom: 0.015
  18094. }
  18095. },
  18096. frontDressed: {
  18097. height: math.unit(8, "feet"),
  18098. weight: math.unit(225, "lb"),
  18099. name: "Front (Dressed",
  18100. image: {
  18101. source: "./media/characters/talana/front-dressed.svg",
  18102. extra: 1410 / 1300,
  18103. bottom: 0.015
  18104. }
  18105. },
  18106. },
  18107. [
  18108. {
  18109. name: "Normal",
  18110. height: math.unit(8, "feet"),
  18111. default: true
  18112. },
  18113. ]
  18114. ))
  18115. characterMakers.push(() => makeCharacter(
  18116. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18117. {
  18118. side: {
  18119. height: math.unit(7.2, "feet"),
  18120. weight: math.unit(150, "lb"),
  18121. name: "Side",
  18122. image: {
  18123. source: "./media/characters/xeauvok/side.svg",
  18124. extra: 1975 / 1523,
  18125. bottom: 0.07
  18126. }
  18127. },
  18128. },
  18129. [
  18130. {
  18131. name: "Normal",
  18132. height: math.unit(7.2, "feet"),
  18133. default: true
  18134. },
  18135. ]
  18136. ))
  18137. characterMakers.push(() => makeCharacter(
  18138. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18139. {
  18140. side: {
  18141. height: math.unit(10, "feet"),
  18142. weight: math.unit(900, "kg"),
  18143. name: "Side",
  18144. image: {
  18145. source: "./media/characters/zara/side.svg",
  18146. extra: 504 / 498
  18147. }
  18148. },
  18149. },
  18150. [
  18151. {
  18152. name: "Normal",
  18153. height: math.unit(10, "feet"),
  18154. default: true
  18155. },
  18156. ]
  18157. ))
  18158. characterMakers.push(() => makeCharacter(
  18159. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18160. {
  18161. side: {
  18162. height: math.unit(6, "feet"),
  18163. weight: math.unit(150, "lb"),
  18164. name: "Side",
  18165. image: {
  18166. source: "./media/characters/richard-dragon/side.svg",
  18167. extra: 845 / 340,
  18168. bottom: 0.017
  18169. }
  18170. },
  18171. maw: {
  18172. height: math.unit(2.97, "feet"),
  18173. name: "Maw",
  18174. image: {
  18175. source: "./media/characters/richard-dragon/maw.svg"
  18176. }
  18177. },
  18178. },
  18179. [
  18180. ]
  18181. ))
  18182. characterMakers.push(() => makeCharacter(
  18183. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18184. {
  18185. front: {
  18186. height: math.unit(4, "feet"),
  18187. weight: math.unit(100, "lb"),
  18188. name: "Front",
  18189. image: {
  18190. source: "./media/characters/richard-smeargle/front.svg",
  18191. extra: 2952 / 2820,
  18192. bottom: 0.028
  18193. }
  18194. },
  18195. },
  18196. [
  18197. {
  18198. name: "Normal",
  18199. height: math.unit(4, "feet"),
  18200. default: true
  18201. },
  18202. {
  18203. name: "Dynamax",
  18204. height: math.unit(20, "meters")
  18205. },
  18206. ]
  18207. ))
  18208. characterMakers.push(() => makeCharacter(
  18209. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18210. {
  18211. front: {
  18212. height: math.unit(6, "feet"),
  18213. weight: math.unit(110, "lb"),
  18214. name: "Front",
  18215. image: {
  18216. source: "./media/characters/klay/front.svg",
  18217. extra: 962 / 883,
  18218. bottom: 0.04
  18219. }
  18220. },
  18221. back: {
  18222. height: math.unit(6, "feet"),
  18223. weight: math.unit(110, "lb"),
  18224. name: "Back",
  18225. image: {
  18226. source: "./media/characters/klay/back.svg",
  18227. extra: 962 / 883
  18228. }
  18229. },
  18230. beans: {
  18231. height: math.unit(1.15, "feet"),
  18232. name: "Beans",
  18233. image: {
  18234. source: "./media/characters/klay/beans.svg"
  18235. }
  18236. },
  18237. },
  18238. [
  18239. {
  18240. name: "Micro",
  18241. height: math.unit(6, "inches")
  18242. },
  18243. {
  18244. name: "Mini",
  18245. height: math.unit(3, "feet")
  18246. },
  18247. {
  18248. name: "Normal",
  18249. height: math.unit(6, "feet"),
  18250. default: true
  18251. },
  18252. {
  18253. name: "Big",
  18254. height: math.unit(25, "feet")
  18255. },
  18256. {
  18257. name: "Macro",
  18258. height: math.unit(100, "feet")
  18259. },
  18260. {
  18261. name: "Megamacro",
  18262. height: math.unit(400, "feet")
  18263. },
  18264. ]
  18265. ))
  18266. characterMakers.push(() => makeCharacter(
  18267. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18268. {
  18269. front: {
  18270. height: math.unit(6, "feet"),
  18271. weight: math.unit(160, "lb"),
  18272. name: "Front",
  18273. image: {
  18274. source: "./media/characters/marcus/front.svg",
  18275. extra: 734 / 676,
  18276. bottom: 0.03
  18277. }
  18278. },
  18279. },
  18280. [
  18281. {
  18282. name: "Little",
  18283. height: math.unit(6, "feet")
  18284. },
  18285. {
  18286. name: "Normal",
  18287. height: math.unit(110, "feet"),
  18288. default: true
  18289. },
  18290. {
  18291. name: "Macro",
  18292. height: math.unit(250, "feet")
  18293. },
  18294. {
  18295. name: "Megamacro",
  18296. height: math.unit(1000, "feet")
  18297. },
  18298. ]
  18299. ))
  18300. characterMakers.push(() => makeCharacter(
  18301. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18302. {
  18303. front: {
  18304. height: math.unit(7, "feet"),
  18305. weight: math.unit(275, "lb"),
  18306. name: "Front",
  18307. image: {
  18308. source: "./media/characters/claude-delroute/front.svg",
  18309. extra: 230 / 214,
  18310. bottom: 0.007
  18311. }
  18312. },
  18313. side: {
  18314. height: math.unit(7, "feet"),
  18315. weight: math.unit(275, "lb"),
  18316. name: "Side",
  18317. image: {
  18318. source: "./media/characters/claude-delroute/side.svg",
  18319. extra: 222 / 214,
  18320. bottom: 0.01
  18321. }
  18322. },
  18323. back: {
  18324. height: math.unit(7, "feet"),
  18325. weight: math.unit(275, "lb"),
  18326. name: "Back",
  18327. image: {
  18328. source: "./media/characters/claude-delroute/back.svg",
  18329. extra: 230 / 214,
  18330. bottom: 0.015
  18331. }
  18332. },
  18333. maw: {
  18334. height: math.unit(0.6407, "meters"),
  18335. name: "Maw",
  18336. image: {
  18337. source: "./media/characters/claude-delroute/maw.svg"
  18338. }
  18339. },
  18340. },
  18341. [
  18342. {
  18343. name: "Normal",
  18344. height: math.unit(7, "feet"),
  18345. default: true
  18346. },
  18347. {
  18348. name: "Lorge",
  18349. height: math.unit(20, "feet")
  18350. },
  18351. ]
  18352. ))
  18353. characterMakers.push(() => makeCharacter(
  18354. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18355. {
  18356. front: {
  18357. height: math.unit(8 + 4 / 12, "feet"),
  18358. weight: math.unit(600, "lb"),
  18359. name: "Front",
  18360. image: {
  18361. source: "./media/characters/dragonien/front.svg",
  18362. extra: 100 / 94,
  18363. bottom: 3.3 / 103.3445
  18364. }
  18365. },
  18366. back: {
  18367. height: math.unit(8 + 4 / 12, "feet"),
  18368. weight: math.unit(600, "lb"),
  18369. name: "Back",
  18370. image: {
  18371. source: "./media/characters/dragonien/back.svg",
  18372. extra: 776 / 746,
  18373. bottom: 6.4 / 782.0616
  18374. }
  18375. },
  18376. foot: {
  18377. height: math.unit(1.54, "feet"),
  18378. name: "Foot",
  18379. image: {
  18380. source: "./media/characters/dragonien/foot.svg",
  18381. }
  18382. },
  18383. },
  18384. [
  18385. {
  18386. name: "Normal",
  18387. height: math.unit(8 + 4 / 12, "feet"),
  18388. default: true
  18389. },
  18390. {
  18391. name: "Macro",
  18392. height: math.unit(200, "feet")
  18393. },
  18394. {
  18395. name: "Megamacro",
  18396. height: math.unit(1, "mile")
  18397. },
  18398. {
  18399. name: "Gigamacro",
  18400. height: math.unit(1000, "miles")
  18401. },
  18402. ]
  18403. ))
  18404. characterMakers.push(() => makeCharacter(
  18405. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18406. {
  18407. front: {
  18408. height: math.unit(5 + 2 / 12, "feet"),
  18409. weight: math.unit(110, "lb"),
  18410. name: "Front",
  18411. image: {
  18412. source: "./media/characters/desta/front.svg",
  18413. extra: 767 / 726,
  18414. bottom: 11.7 / 779
  18415. }
  18416. },
  18417. back: {
  18418. height: math.unit(5 + 2 / 12, "feet"),
  18419. weight: math.unit(110, "lb"),
  18420. name: "Back",
  18421. image: {
  18422. source: "./media/characters/desta/back.svg",
  18423. extra: 777 / 728,
  18424. bottom: 6 / 784
  18425. }
  18426. },
  18427. frontAlt: {
  18428. height: math.unit(5 + 2 / 12, "feet"),
  18429. weight: math.unit(110, "lb"),
  18430. name: "Front",
  18431. image: {
  18432. source: "./media/characters/desta/front-alt.svg",
  18433. extra: 1482 / 1417
  18434. }
  18435. },
  18436. side: {
  18437. height: math.unit(5 + 2 / 12, "feet"),
  18438. weight: math.unit(110, "lb"),
  18439. name: "Side",
  18440. image: {
  18441. source: "./media/characters/desta/side.svg",
  18442. extra: 2579 / 2491,
  18443. bottom: 0.053
  18444. }
  18445. },
  18446. },
  18447. [
  18448. {
  18449. name: "Micro",
  18450. height: math.unit(6, "inches")
  18451. },
  18452. {
  18453. name: "Normal",
  18454. height: math.unit(5 + 2 / 12, "feet"),
  18455. default: true
  18456. },
  18457. {
  18458. name: "Macro",
  18459. height: math.unit(62, "feet")
  18460. },
  18461. {
  18462. name: "Megamacro",
  18463. height: math.unit(1800, "feet")
  18464. },
  18465. ]
  18466. ))
  18467. characterMakers.push(() => makeCharacter(
  18468. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18469. {
  18470. front: {
  18471. height: math.unit(10, "feet"),
  18472. weight: math.unit(700, "lb"),
  18473. name: "Front",
  18474. image: {
  18475. source: "./media/characters/storm-alystar/front.svg",
  18476. extra: 2112 / 1898,
  18477. bottom: 0.034
  18478. }
  18479. },
  18480. },
  18481. [
  18482. {
  18483. name: "Micro",
  18484. height: math.unit(3.5, "inches")
  18485. },
  18486. {
  18487. name: "Normal",
  18488. height: math.unit(10, "feet"),
  18489. default: true
  18490. },
  18491. {
  18492. name: "Macro",
  18493. height: math.unit(400, "feet")
  18494. },
  18495. {
  18496. name: "Deific",
  18497. height: math.unit(60, "miles")
  18498. },
  18499. ]
  18500. ))
  18501. characterMakers.push(() => makeCharacter(
  18502. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18503. {
  18504. front: {
  18505. height: math.unit(2.35, "meters"),
  18506. weight: math.unit(119, "kg"),
  18507. name: "Front",
  18508. image: {
  18509. source: "./media/characters/ilia/front.svg",
  18510. extra: 1285 / 1255,
  18511. bottom: 0.06
  18512. }
  18513. },
  18514. },
  18515. [
  18516. {
  18517. name: "Normal",
  18518. height: math.unit(2.35, "meters")
  18519. },
  18520. {
  18521. name: "Macro",
  18522. height: math.unit(140, "meters"),
  18523. default: true
  18524. },
  18525. {
  18526. name: "Megamacro",
  18527. height: math.unit(100, "miles")
  18528. },
  18529. ]
  18530. ))
  18531. characterMakers.push(() => makeCharacter(
  18532. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18533. {
  18534. front: {
  18535. height: math.unit(6 + 5 / 12, "feet"),
  18536. weight: math.unit(190, "lb"),
  18537. name: "Front",
  18538. image: {
  18539. source: "./media/characters/kingdead/front.svg",
  18540. extra: 1228 / 1177
  18541. }
  18542. },
  18543. },
  18544. [
  18545. {
  18546. name: "Micro",
  18547. height: math.unit(7, "inches")
  18548. },
  18549. {
  18550. name: "Normal",
  18551. height: math.unit(6 + 5 / 12, "feet")
  18552. },
  18553. {
  18554. name: "Macro",
  18555. height: math.unit(150, "feet"),
  18556. default: true
  18557. },
  18558. {
  18559. name: "Megamacro",
  18560. height: math.unit(200, "miles")
  18561. },
  18562. ]
  18563. ))
  18564. characterMakers.push(() => makeCharacter(
  18565. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18566. {
  18567. front: {
  18568. height: math.unit(8, "feet"),
  18569. weight: math.unit(600, "lb"),
  18570. name: "Front",
  18571. image: {
  18572. source: "./media/characters/kyrehx/front.svg",
  18573. extra: 1195 / 1095,
  18574. bottom: 0.034
  18575. }
  18576. },
  18577. },
  18578. [
  18579. {
  18580. name: "Micro",
  18581. height: math.unit(2, "inches")
  18582. },
  18583. {
  18584. name: "Normal",
  18585. height: math.unit(8, "feet"),
  18586. default: true
  18587. },
  18588. {
  18589. name: "Macro",
  18590. height: math.unit(255, "feet")
  18591. },
  18592. ]
  18593. ))
  18594. characterMakers.push(() => makeCharacter(
  18595. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18596. {
  18597. front: {
  18598. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18599. weight: math.unit(184, "lb"),
  18600. name: "Front",
  18601. image: {
  18602. source: "./media/characters/xang/front.svg",
  18603. extra: 845 / 755
  18604. }
  18605. },
  18606. },
  18607. [
  18608. {
  18609. name: "Normal",
  18610. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18611. default: true
  18612. },
  18613. {
  18614. name: "Macro",
  18615. height: math.unit(0.935 * 146, "feet")
  18616. },
  18617. {
  18618. name: "Megamacro",
  18619. height: math.unit(0.935 * 3, "miles")
  18620. },
  18621. ]
  18622. ))
  18623. characterMakers.push(() => makeCharacter(
  18624. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18625. {
  18626. frontDressed: {
  18627. height: math.unit(5 + 7 / 12, "feet"),
  18628. weight: math.unit(140, "lb"),
  18629. name: "Front (Dressed)",
  18630. image: {
  18631. source: "./media/characters/doc-weardno/front-dressed.svg",
  18632. extra: 263 / 234
  18633. }
  18634. },
  18635. backDressed: {
  18636. height: math.unit(5 + 7 / 12, "feet"),
  18637. weight: math.unit(140, "lb"),
  18638. name: "Back (Dressed)",
  18639. image: {
  18640. source: "./media/characters/doc-weardno/back-dressed.svg",
  18641. extra: 266 / 238
  18642. }
  18643. },
  18644. front: {
  18645. height: math.unit(5 + 7 / 12, "feet"),
  18646. weight: math.unit(140, "lb"),
  18647. name: "Front",
  18648. image: {
  18649. source: "./media/characters/doc-weardno/front.svg",
  18650. extra: 254 / 233
  18651. }
  18652. },
  18653. },
  18654. [
  18655. {
  18656. name: "Micro",
  18657. height: math.unit(3, "inches")
  18658. },
  18659. {
  18660. name: "Normal",
  18661. height: math.unit(5 + 7 / 12, "feet"),
  18662. default: true
  18663. },
  18664. {
  18665. name: "Macro",
  18666. height: math.unit(25, "feet")
  18667. },
  18668. {
  18669. name: "Megamacro",
  18670. height: math.unit(2, "miles")
  18671. },
  18672. ]
  18673. ))
  18674. characterMakers.push(() => makeCharacter(
  18675. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18676. {
  18677. front: {
  18678. height: math.unit(6 + 2 / 12, "feet"),
  18679. weight: math.unit(153, "lb"),
  18680. name: "Front",
  18681. image: {
  18682. source: "./media/characters/seth-whilst/front.svg",
  18683. bottom: 0.07
  18684. }
  18685. },
  18686. },
  18687. [
  18688. {
  18689. name: "Micro",
  18690. height: math.unit(5, "inches")
  18691. },
  18692. {
  18693. name: "Normal",
  18694. height: math.unit(6 + 2 / 12, "feet"),
  18695. default: true
  18696. },
  18697. ]
  18698. ))
  18699. characterMakers.push(() => makeCharacter(
  18700. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18701. {
  18702. front: {
  18703. height: math.unit(3, "inches"),
  18704. weight: math.unit(8, "grams"),
  18705. name: "Front",
  18706. image: {
  18707. source: "./media/characters/pocket-jabari/front.svg",
  18708. extra: 1024 / 974,
  18709. bottom: 0.039
  18710. }
  18711. },
  18712. },
  18713. [
  18714. {
  18715. name: "Minimicro",
  18716. height: math.unit(8, "mm")
  18717. },
  18718. {
  18719. name: "Micro",
  18720. height: math.unit(3, "inches"),
  18721. default: true
  18722. },
  18723. {
  18724. name: "Normal",
  18725. height: math.unit(3, "feet")
  18726. },
  18727. ]
  18728. ))
  18729. characterMakers.push(() => makeCharacter(
  18730. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18731. {
  18732. front: {
  18733. height: math.unit(15, "feet"),
  18734. weight: math.unit(3280, "lb"),
  18735. name: "Front",
  18736. image: {
  18737. source: "./media/characters/sapphy/front.svg",
  18738. extra: 671 / 577,
  18739. bottom: 0.085
  18740. }
  18741. },
  18742. back: {
  18743. height: math.unit(15, "feet"),
  18744. weight: math.unit(3280, "lb"),
  18745. name: "Back",
  18746. image: {
  18747. source: "./media/characters/sapphy/back.svg",
  18748. extra: 631 / 607,
  18749. bottom: 0.045
  18750. }
  18751. },
  18752. },
  18753. [
  18754. {
  18755. name: "Normal",
  18756. height: math.unit(15, "feet")
  18757. },
  18758. {
  18759. name: "Casual Macro",
  18760. height: math.unit(120, "feet")
  18761. },
  18762. {
  18763. name: "Macro",
  18764. height: math.unit(2150, "feet"),
  18765. default: true
  18766. },
  18767. {
  18768. name: "Megamacro",
  18769. height: math.unit(8, "miles")
  18770. },
  18771. {
  18772. name: "Galaxy Mom",
  18773. height: math.unit(6, "megalightyears")
  18774. },
  18775. ]
  18776. ))
  18777. characterMakers.push(() => makeCharacter(
  18778. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18779. {
  18780. front: {
  18781. height: math.unit(6, "feet"),
  18782. weight: math.unit(170, "lb"),
  18783. name: "Front",
  18784. image: {
  18785. source: "./media/characters/kiro/front.svg",
  18786. extra: 1064 / 1012,
  18787. bottom: 0.052
  18788. }
  18789. },
  18790. },
  18791. [
  18792. {
  18793. name: "Micro",
  18794. height: math.unit(6, "inches")
  18795. },
  18796. {
  18797. name: "Normal",
  18798. height: math.unit(6, "feet"),
  18799. default: true
  18800. },
  18801. {
  18802. name: "Macro",
  18803. height: math.unit(72, "feet")
  18804. },
  18805. ]
  18806. ))
  18807. characterMakers.push(() => makeCharacter(
  18808. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18809. {
  18810. front: {
  18811. height: math.unit(5 + 9 / 12, "feet"),
  18812. weight: math.unit(175, "lb"),
  18813. name: "Front",
  18814. image: {
  18815. source: "./media/characters/irishfox/front.svg",
  18816. extra: 1912 / 1680,
  18817. bottom: 0.02
  18818. }
  18819. },
  18820. },
  18821. [
  18822. {
  18823. name: "Nano",
  18824. height: math.unit(1, "mm")
  18825. },
  18826. {
  18827. name: "Micro",
  18828. height: math.unit(2, "inches")
  18829. },
  18830. {
  18831. name: "Normal",
  18832. height: math.unit(5 + 9 / 12, "feet"),
  18833. default: true
  18834. },
  18835. {
  18836. name: "Macro",
  18837. height: math.unit(45, "feet")
  18838. },
  18839. ]
  18840. ))
  18841. characterMakers.push(() => makeCharacter(
  18842. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18843. {
  18844. front: {
  18845. height: math.unit(6 + 1 / 12, "feet"),
  18846. weight: math.unit(75, "lb"),
  18847. name: "Front",
  18848. image: {
  18849. source: "./media/characters/aronai-sieyes/front.svg",
  18850. extra: 1556 / 1480,
  18851. bottom: 0.015
  18852. }
  18853. },
  18854. side: {
  18855. height: math.unit(6 + 1 / 12, "feet"),
  18856. weight: math.unit(75, "lb"),
  18857. name: "Side",
  18858. image: {
  18859. source: "./media/characters/aronai-sieyes/side.svg",
  18860. extra: 1433 / 1390,
  18861. bottom: 0.0393
  18862. }
  18863. },
  18864. back: {
  18865. height: math.unit(6 + 1 / 12, "feet"),
  18866. weight: math.unit(75, "lb"),
  18867. name: "Back",
  18868. image: {
  18869. source: "./media/characters/aronai-sieyes/back.svg",
  18870. extra: 1544 / 1494,
  18871. bottom: 0.02
  18872. }
  18873. },
  18874. frontClothed: {
  18875. height: math.unit(6 + 1 / 12, "feet"),
  18876. weight: math.unit(75, "lb"),
  18877. name: "Front (Clothed)",
  18878. image: {
  18879. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18880. extra: 1582 / 1527
  18881. }
  18882. },
  18883. feral: {
  18884. height: math.unit(18, "feet"),
  18885. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18886. name: "Feral",
  18887. image: {
  18888. source: "./media/characters/aronai-sieyes/feral.svg",
  18889. extra: 1530 / 1240,
  18890. bottom: 0.035
  18891. }
  18892. },
  18893. },
  18894. [
  18895. {
  18896. name: "Micro",
  18897. height: math.unit(2, "inches")
  18898. },
  18899. {
  18900. name: "Normal",
  18901. height: math.unit(6 + 1 / 12, "feet"),
  18902. default: true
  18903. }
  18904. ]
  18905. ))
  18906. characterMakers.push(() => makeCharacter(
  18907. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18908. {
  18909. front: {
  18910. height: math.unit(12, "feet"),
  18911. weight: math.unit(410, "kg"),
  18912. name: "Front",
  18913. image: {
  18914. source: "./media/characters/xuna/front.svg",
  18915. extra: 2184 / 1980
  18916. }
  18917. },
  18918. side: {
  18919. height: math.unit(12, "feet"),
  18920. weight: math.unit(410, "kg"),
  18921. name: "Side",
  18922. image: {
  18923. source: "./media/characters/xuna/side.svg",
  18924. extra: 2184 / 1980
  18925. }
  18926. },
  18927. back: {
  18928. height: math.unit(12, "feet"),
  18929. weight: math.unit(410, "kg"),
  18930. name: "Back",
  18931. image: {
  18932. source: "./media/characters/xuna/back.svg",
  18933. extra: 2184 / 1980
  18934. }
  18935. },
  18936. },
  18937. [
  18938. {
  18939. name: "Nano glow",
  18940. height: math.unit(10, "nm")
  18941. },
  18942. {
  18943. name: "Micro floof",
  18944. height: math.unit(0.3, "m")
  18945. },
  18946. {
  18947. name: "Huggable softy boi",
  18948. height: math.unit(3.6576, "m"),
  18949. default: true
  18950. },
  18951. {
  18952. name: "Admirable floof",
  18953. height: math.unit(80, "meters")
  18954. },
  18955. {
  18956. name: "Gentle macro",
  18957. height: math.unit(300, "meters")
  18958. },
  18959. {
  18960. name: "Very careful floof",
  18961. height: math.unit(3200, "meters")
  18962. },
  18963. {
  18964. name: "The mega floof",
  18965. height: math.unit(36000, "meters")
  18966. },
  18967. {
  18968. name: "Giga-fur-Wicker",
  18969. height: math.unit(4800000, "meters")
  18970. },
  18971. {
  18972. name: "Licky world",
  18973. height: math.unit(20000000, "meters")
  18974. },
  18975. {
  18976. name: "Floofy cyan sun",
  18977. height: math.unit(1500000000, "meters")
  18978. },
  18979. {
  18980. name: "Milky Wicker",
  18981. height: math.unit(1000000000000000000000, "meters")
  18982. },
  18983. {
  18984. name: "The observing Wicker",
  18985. height: math.unit(999999999999999999999999999, "meters")
  18986. },
  18987. ]
  18988. ))
  18989. characterMakers.push(() => makeCharacter(
  18990. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18991. {
  18992. front: {
  18993. height: math.unit(5 + 9 / 12, "feet"),
  18994. weight: math.unit(150, "lb"),
  18995. name: "Front",
  18996. image: {
  18997. source: "./media/characters/arokha-sieyes/front.svg",
  18998. extra: 1425 / 1284,
  18999. bottom: 0.05
  19000. }
  19001. },
  19002. },
  19003. [
  19004. {
  19005. name: "Normal",
  19006. height: math.unit(5 + 9 / 12, "feet")
  19007. },
  19008. {
  19009. name: "Macro",
  19010. height: math.unit(30, "meters"),
  19011. default: true
  19012. },
  19013. ]
  19014. ))
  19015. characterMakers.push(() => makeCharacter(
  19016. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19017. {
  19018. front: {
  19019. height: math.unit(6, "feet"),
  19020. weight: math.unit(180, "lb"),
  19021. name: "Front",
  19022. image: {
  19023. source: "./media/characters/arokh-sieyes/front.svg",
  19024. extra: 1830 / 1769,
  19025. bottom: 0.01
  19026. }
  19027. },
  19028. },
  19029. [
  19030. {
  19031. name: "Normal",
  19032. height: math.unit(6, "feet")
  19033. },
  19034. {
  19035. name: "Macro",
  19036. height: math.unit(30, "meters"),
  19037. default: true
  19038. },
  19039. ]
  19040. ))
  19041. characterMakers.push(() => makeCharacter(
  19042. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19043. {
  19044. side: {
  19045. height: math.unit(13 + 1 / 12, "feet"),
  19046. weight: math.unit(8.5, "tonnes"),
  19047. name: "Side",
  19048. image: {
  19049. source: "./media/characters/goldeneye/side.svg",
  19050. extra: 1182 / 778,
  19051. bottom: 0.067
  19052. }
  19053. },
  19054. paw: {
  19055. height: math.unit(3.4, "feet"),
  19056. name: "Paw",
  19057. image: {
  19058. source: "./media/characters/goldeneye/paw.svg"
  19059. }
  19060. },
  19061. },
  19062. [
  19063. {
  19064. name: "Normal",
  19065. height: math.unit(13 + 1 / 12, "feet"),
  19066. default: true
  19067. },
  19068. ]
  19069. ))
  19070. characterMakers.push(() => makeCharacter(
  19071. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19072. {
  19073. front: {
  19074. height: math.unit(6 + 1 / 12, "feet"),
  19075. weight: math.unit(210, "lb"),
  19076. name: "Front",
  19077. image: {
  19078. source: "./media/characters/leonardo-lycheborne/front.svg",
  19079. extra: 390 / 365,
  19080. bottom: 0.032
  19081. }
  19082. },
  19083. side: {
  19084. height: math.unit(6 + 1 / 12, "feet"),
  19085. weight: math.unit(210, "lb"),
  19086. name: "Side",
  19087. image: {
  19088. source: "./media/characters/leonardo-lycheborne/side.svg",
  19089. extra: 390 / 365,
  19090. bottom: 0.005
  19091. }
  19092. },
  19093. back: {
  19094. height: math.unit(6 + 1 / 12, "feet"),
  19095. weight: math.unit(210, "lb"),
  19096. name: "Back",
  19097. image: {
  19098. source: "./media/characters/leonardo-lycheborne/back.svg",
  19099. extra: 392 / 366,
  19100. bottom: 0.01
  19101. }
  19102. },
  19103. hand: {
  19104. height: math.unit(1.08, "feet"),
  19105. name: "Hand",
  19106. image: {
  19107. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19108. }
  19109. },
  19110. foot: {
  19111. height: math.unit(1.32, "feet"),
  19112. name: "Foot",
  19113. image: {
  19114. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19115. }
  19116. },
  19117. were: {
  19118. height: math.unit(20, "feet"),
  19119. weight: math.unit(7800, "lb"),
  19120. name: "Were",
  19121. image: {
  19122. source: "./media/characters/leonardo-lycheborne/were.svg",
  19123. extra: 308 / 294,
  19124. bottom: 0.048
  19125. }
  19126. },
  19127. feral: {
  19128. height: math.unit(7.5, "feet"),
  19129. weight: math.unit(600, "lb"),
  19130. name: "Feral",
  19131. image: {
  19132. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19133. extra: 210 / 186,
  19134. bottom: 0.108
  19135. }
  19136. },
  19137. taur: {
  19138. height: math.unit(11, "feet"),
  19139. weight: math.unit(3300, "lb"),
  19140. name: "Taur",
  19141. image: {
  19142. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19143. extra: 320 / 303,
  19144. bottom: 0.025
  19145. }
  19146. },
  19147. barghest: {
  19148. height: math.unit(11, "feet"),
  19149. weight: math.unit(1300, "lb"),
  19150. name: "Barghest",
  19151. image: {
  19152. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19153. extra: 323 / 302,
  19154. bottom: 0.027
  19155. }
  19156. },
  19157. dick: {
  19158. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19159. name: "Dick",
  19160. image: {
  19161. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19162. }
  19163. },
  19164. dickWere: {
  19165. height: math.unit((20) / 3.8, "feet"),
  19166. name: "Dick (Were)",
  19167. image: {
  19168. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19169. }
  19170. },
  19171. },
  19172. [
  19173. {
  19174. name: "Normal",
  19175. height: math.unit(6 + 1 / 12, "feet"),
  19176. default: true
  19177. },
  19178. ]
  19179. ))
  19180. characterMakers.push(() => makeCharacter(
  19181. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19182. {
  19183. front: {
  19184. height: math.unit(10, "feet"),
  19185. weight: math.unit(350, "lb"),
  19186. name: "Front",
  19187. image: {
  19188. source: "./media/characters/jet/front.svg",
  19189. extra: 2050 / 1980,
  19190. bottom: 0.013
  19191. }
  19192. },
  19193. back: {
  19194. height: math.unit(10, "feet"),
  19195. weight: math.unit(350, "lb"),
  19196. name: "Back",
  19197. image: {
  19198. source: "./media/characters/jet/back.svg",
  19199. extra: 2050 / 1980,
  19200. bottom: 0.013
  19201. }
  19202. },
  19203. },
  19204. [
  19205. {
  19206. name: "Micro",
  19207. height: math.unit(6, "inches")
  19208. },
  19209. {
  19210. name: "Normal",
  19211. height: math.unit(10, "feet"),
  19212. default: true
  19213. },
  19214. {
  19215. name: "Macro",
  19216. height: math.unit(100, "feet")
  19217. },
  19218. ]
  19219. ))
  19220. characterMakers.push(() => makeCharacter(
  19221. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19222. {
  19223. front: {
  19224. height: math.unit(15, "feet"),
  19225. weight: math.unit(2800, "lb"),
  19226. name: "Front",
  19227. image: {
  19228. source: "./media/characters/tanarath/front.svg",
  19229. extra: 2392 / 2220,
  19230. bottom: 0.03
  19231. }
  19232. },
  19233. back: {
  19234. height: math.unit(15, "feet"),
  19235. weight: math.unit(2800, "lb"),
  19236. name: "Back",
  19237. image: {
  19238. source: "./media/characters/tanarath/back.svg",
  19239. extra: 2392 / 2220,
  19240. bottom: 0.03
  19241. }
  19242. },
  19243. },
  19244. [
  19245. {
  19246. name: "Normal",
  19247. height: math.unit(15, "feet"),
  19248. default: true
  19249. },
  19250. ]
  19251. ))
  19252. characterMakers.push(() => makeCharacter(
  19253. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19254. {
  19255. front: {
  19256. height: math.unit(7 + 1 / 12, "feet"),
  19257. weight: math.unit(175, "lb"),
  19258. name: "Front",
  19259. image: {
  19260. source: "./media/characters/patty-cattybatty/front.svg",
  19261. extra: 908 / 874,
  19262. bottom: 0.025
  19263. }
  19264. },
  19265. },
  19266. [
  19267. {
  19268. name: "Micro",
  19269. height: math.unit(1, "inch")
  19270. },
  19271. {
  19272. name: "Normal",
  19273. height: math.unit(7 + 1 / 12, "feet")
  19274. },
  19275. {
  19276. name: "Mini Macro",
  19277. height: math.unit(155, "feet")
  19278. },
  19279. {
  19280. name: "Macro",
  19281. height: math.unit(1077, "feet")
  19282. },
  19283. {
  19284. name: "Mega Macro",
  19285. height: math.unit(47650, "feet"),
  19286. default: true
  19287. },
  19288. {
  19289. name: "Giga Macro",
  19290. height: math.unit(440, "miles")
  19291. },
  19292. {
  19293. name: "Tera Macro",
  19294. height: math.unit(8700, "miles")
  19295. },
  19296. {
  19297. name: "Planetary Macro",
  19298. height: math.unit(32700, "miles")
  19299. },
  19300. {
  19301. name: "Solar Macro",
  19302. height: math.unit(550000, "miles")
  19303. },
  19304. {
  19305. name: "Celestial Macro",
  19306. height: math.unit(2.5, "AU")
  19307. },
  19308. ]
  19309. ))
  19310. characterMakers.push(() => makeCharacter(
  19311. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19312. {
  19313. front: {
  19314. height: math.unit(4 + 5 / 12, "feet"),
  19315. weight: math.unit(90, "lb"),
  19316. name: "Front",
  19317. image: {
  19318. source: "./media/characters/cappu/front.svg",
  19319. extra: 1247 / 1152,
  19320. bottom: 0.012
  19321. }
  19322. },
  19323. },
  19324. [
  19325. {
  19326. name: "Normal",
  19327. height: math.unit(4 + 5 / 12, "feet"),
  19328. default: true
  19329. },
  19330. ]
  19331. ))
  19332. characterMakers.push(() => makeCharacter(
  19333. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19334. {
  19335. frontDressed: {
  19336. height: math.unit(70, "cm"),
  19337. weight: math.unit(6, "kg"),
  19338. name: "Front (Dressed)",
  19339. image: {
  19340. source: "./media/characters/sebi/front-dressed.svg",
  19341. extra: 713.5 / 686.5,
  19342. bottom: 0.003
  19343. }
  19344. },
  19345. front: {
  19346. height: math.unit(70, "cm"),
  19347. weight: math.unit(5, "kg"),
  19348. name: "Front",
  19349. image: {
  19350. source: "./media/characters/sebi/front.svg",
  19351. extra: 713.5 / 686.5,
  19352. bottom: 0.003
  19353. }
  19354. }
  19355. },
  19356. [
  19357. {
  19358. name: "Normal",
  19359. height: math.unit(70, "cm"),
  19360. default: true
  19361. },
  19362. {
  19363. name: "Macro",
  19364. height: math.unit(8, "meters")
  19365. },
  19366. ]
  19367. ))
  19368. characterMakers.push(() => makeCharacter(
  19369. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19370. {
  19371. front: {
  19372. height: math.unit(6, "feet"),
  19373. weight: math.unit(150, "lb"),
  19374. name: "Front",
  19375. image: {
  19376. source: "./media/characters/typhek/front.svg",
  19377. extra: 1948 / 1929,
  19378. bottom: 0.025
  19379. }
  19380. },
  19381. side: {
  19382. height: math.unit(6, "feet"),
  19383. weight: math.unit(150, "lb"),
  19384. name: "Side",
  19385. image: {
  19386. source: "./media/characters/typhek/side.svg",
  19387. extra: 2034 / 2010,
  19388. bottom: 0.003
  19389. }
  19390. },
  19391. back: {
  19392. height: math.unit(6, "feet"),
  19393. weight: math.unit(150, "lb"),
  19394. name: "Back",
  19395. image: {
  19396. source: "./media/characters/typhek/back.svg",
  19397. extra: 2005 / 1978,
  19398. bottom: 0.004
  19399. }
  19400. },
  19401. palm: {
  19402. height: math.unit(1.2, "feet"),
  19403. name: "Palm",
  19404. image: {
  19405. source: "./media/characters/typhek/palm.svg"
  19406. }
  19407. },
  19408. fist: {
  19409. height: math.unit(1.1, "feet"),
  19410. name: "Fist",
  19411. image: {
  19412. source: "./media/characters/typhek/fist.svg"
  19413. }
  19414. },
  19415. foot: {
  19416. height: math.unit(1.57, "feet"),
  19417. name: "Foot",
  19418. image: {
  19419. source: "./media/characters/typhek/foot.svg"
  19420. }
  19421. },
  19422. sole: {
  19423. height: math.unit(2.05, "feet"),
  19424. name: "Sole",
  19425. image: {
  19426. source: "./media/characters/typhek/sole.svg"
  19427. }
  19428. },
  19429. },
  19430. [
  19431. {
  19432. name: "Macro",
  19433. height: math.unit(40, "stories"),
  19434. default: true
  19435. },
  19436. {
  19437. name: "Megamacro",
  19438. height: math.unit(1, "mile")
  19439. },
  19440. {
  19441. name: "Gigamacro",
  19442. height: math.unit(4000, "solarradii")
  19443. },
  19444. {
  19445. name: "Universal",
  19446. height: math.unit(1.1, "universes")
  19447. }
  19448. ]
  19449. ))
  19450. characterMakers.push(() => makeCharacter(
  19451. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19452. {
  19453. side: {
  19454. height: math.unit(5 + 7 / 12, "feet"),
  19455. weight: math.unit(150, "lb"),
  19456. name: "Side",
  19457. image: {
  19458. source: "./media/characters/kassy/side.svg",
  19459. extra: 1280 / 1225,
  19460. bottom: 0.002
  19461. }
  19462. },
  19463. front: {
  19464. height: math.unit(5 + 7 / 12, "feet"),
  19465. weight: math.unit(150, "lb"),
  19466. name: "Front",
  19467. image: {
  19468. source: "./media/characters/kassy/front.svg",
  19469. extra: 1280 / 1225,
  19470. bottom: 0.025
  19471. }
  19472. },
  19473. back: {
  19474. height: math.unit(5 + 7 / 12, "feet"),
  19475. weight: math.unit(150, "lb"),
  19476. name: "Back",
  19477. image: {
  19478. source: "./media/characters/kassy/back.svg",
  19479. extra: 1280 / 1225,
  19480. bottom: 0.002
  19481. }
  19482. },
  19483. foot: {
  19484. height: math.unit(1.266, "feet"),
  19485. name: "Foot",
  19486. image: {
  19487. source: "./media/characters/kassy/foot.svg"
  19488. }
  19489. },
  19490. },
  19491. [
  19492. {
  19493. name: "Normal",
  19494. height: math.unit(5 + 7 / 12, "feet")
  19495. },
  19496. {
  19497. name: "Macro",
  19498. height: math.unit(137, "feet"),
  19499. default: true
  19500. },
  19501. {
  19502. name: "Megamacro",
  19503. height: math.unit(1, "mile")
  19504. },
  19505. ]
  19506. ))
  19507. characterMakers.push(() => makeCharacter(
  19508. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19509. {
  19510. front: {
  19511. height: math.unit(6 + 1 / 12, "feet"),
  19512. weight: math.unit(200, "lb"),
  19513. name: "Front",
  19514. image: {
  19515. source: "./media/characters/neil/front.svg",
  19516. extra: 1326 / 1250,
  19517. bottom: 0.023
  19518. }
  19519. },
  19520. },
  19521. [
  19522. {
  19523. name: "Normal",
  19524. height: math.unit(6 + 1 / 12, "feet"),
  19525. default: true
  19526. },
  19527. {
  19528. name: "Macro",
  19529. height: math.unit(200, "feet")
  19530. },
  19531. ]
  19532. ))
  19533. characterMakers.push(() => makeCharacter(
  19534. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19535. {
  19536. front: {
  19537. height: math.unit(5 + 9 / 12, "feet"),
  19538. weight: math.unit(190, "lb"),
  19539. name: "Front",
  19540. image: {
  19541. source: "./media/characters/atticus/front.svg",
  19542. extra: 2934 / 2785,
  19543. bottom: 0.025
  19544. }
  19545. },
  19546. },
  19547. [
  19548. {
  19549. name: "Normal",
  19550. height: math.unit(5 + 9 / 12, "feet"),
  19551. default: true
  19552. },
  19553. {
  19554. name: "Macro",
  19555. height: math.unit(180, "feet")
  19556. },
  19557. ]
  19558. ))
  19559. characterMakers.push(() => makeCharacter(
  19560. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19561. {
  19562. side: {
  19563. height: math.unit(9, "feet"),
  19564. weight: math.unit(650, "lb"),
  19565. name: "Side",
  19566. image: {
  19567. source: "./media/characters/milo/side.svg",
  19568. extra: 2644 / 2310,
  19569. bottom: 0.032
  19570. }
  19571. },
  19572. },
  19573. [
  19574. {
  19575. name: "Normal",
  19576. height: math.unit(9, "feet"),
  19577. default: true
  19578. },
  19579. {
  19580. name: "Macro",
  19581. height: math.unit(300, "feet")
  19582. },
  19583. ]
  19584. ))
  19585. characterMakers.push(() => makeCharacter(
  19586. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19587. {
  19588. side: {
  19589. height: math.unit(8, "meters"),
  19590. weight: math.unit(90000, "kg"),
  19591. name: "Side",
  19592. image: {
  19593. source: "./media/characters/ijzer/side.svg",
  19594. extra: 2756 / 1600,
  19595. bottom: 0.01
  19596. }
  19597. },
  19598. },
  19599. [
  19600. {
  19601. name: "Small",
  19602. height: math.unit(3, "meters")
  19603. },
  19604. {
  19605. name: "Normal",
  19606. height: math.unit(8, "meters"),
  19607. default: true
  19608. },
  19609. {
  19610. name: "Normal+",
  19611. height: math.unit(10, "meters")
  19612. },
  19613. {
  19614. name: "Bigger",
  19615. height: math.unit(24, "meters")
  19616. },
  19617. {
  19618. name: "Huge",
  19619. height: math.unit(80, "meters")
  19620. },
  19621. ]
  19622. ))
  19623. characterMakers.push(() => makeCharacter(
  19624. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19625. {
  19626. front: {
  19627. height: math.unit(6 + 2 / 12, "feet"),
  19628. weight: math.unit(153, "lb"),
  19629. name: "Front",
  19630. image: {
  19631. source: "./media/characters/luca-cervicum/front.svg",
  19632. extra: 370 / 327,
  19633. bottom: 0.015
  19634. }
  19635. },
  19636. back: {
  19637. height: math.unit(6 + 2 / 12, "feet"),
  19638. weight: math.unit(153, "lb"),
  19639. name: "Back",
  19640. image: {
  19641. source: "./media/characters/luca-cervicum/back.svg",
  19642. extra: 367 / 333,
  19643. bottom: 0.005
  19644. }
  19645. },
  19646. frontGear: {
  19647. height: math.unit(6 + 2 / 12, "feet"),
  19648. weight: math.unit(173, "lb"),
  19649. name: "Front (Gear)",
  19650. image: {
  19651. source: "./media/characters/luca-cervicum/front-gear.svg",
  19652. extra: 377 / 333,
  19653. bottom: 0.006
  19654. }
  19655. },
  19656. },
  19657. [
  19658. {
  19659. name: "Normal",
  19660. height: math.unit(6 + 2 / 12, "feet"),
  19661. default: true
  19662. },
  19663. ]
  19664. ))
  19665. characterMakers.push(() => makeCharacter(
  19666. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19667. {
  19668. front: {
  19669. height: math.unit(6 + 1 / 12, "feet"),
  19670. weight: math.unit(304, "lb"),
  19671. name: "Front",
  19672. image: {
  19673. source: "./media/characters/oliver/front.svg",
  19674. extra: 157 / 143,
  19675. bottom: 0.08
  19676. }
  19677. },
  19678. },
  19679. [
  19680. {
  19681. name: "Normal",
  19682. height: math.unit(6 + 1 / 12, "feet"),
  19683. default: true
  19684. },
  19685. ]
  19686. ))
  19687. characterMakers.push(() => makeCharacter(
  19688. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19689. {
  19690. front: {
  19691. height: math.unit(5 + 7 / 12, "feet"),
  19692. weight: math.unit(140, "lb"),
  19693. name: "Front",
  19694. image: {
  19695. source: "./media/characters/shane/front.svg",
  19696. extra: 304 / 289,
  19697. bottom: 0.005
  19698. }
  19699. },
  19700. },
  19701. [
  19702. {
  19703. name: "Normal",
  19704. height: math.unit(5 + 7 / 12, "feet"),
  19705. default: true
  19706. },
  19707. ]
  19708. ))
  19709. characterMakers.push(() => makeCharacter(
  19710. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19711. {
  19712. front: {
  19713. height: math.unit(5 + 9 / 12, "feet"),
  19714. weight: math.unit(178, "lb"),
  19715. name: "Front",
  19716. image: {
  19717. source: "./media/characters/shin/front.svg",
  19718. extra: 159 / 151,
  19719. bottom: 0.015
  19720. }
  19721. },
  19722. },
  19723. [
  19724. {
  19725. name: "Normal",
  19726. height: math.unit(5 + 9 / 12, "feet"),
  19727. default: true
  19728. },
  19729. ]
  19730. ))
  19731. characterMakers.push(() => makeCharacter(
  19732. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19733. {
  19734. front: {
  19735. height: math.unit(5 + 10 / 12, "feet"),
  19736. weight: math.unit(168, "lb"),
  19737. name: "Front",
  19738. image: {
  19739. source: "./media/characters/xerxes/front.svg",
  19740. extra: 282 / 260,
  19741. bottom: 0.045
  19742. }
  19743. },
  19744. },
  19745. [
  19746. {
  19747. name: "Normal",
  19748. height: math.unit(5 + 10 / 12, "feet"),
  19749. default: true
  19750. },
  19751. ]
  19752. ))
  19753. characterMakers.push(() => makeCharacter(
  19754. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19755. {
  19756. front: {
  19757. height: math.unit(6 + 7 / 12, "feet"),
  19758. weight: math.unit(208, "lb"),
  19759. name: "Front",
  19760. image: {
  19761. source: "./media/characters/chaska/front.svg",
  19762. extra: 332 / 319,
  19763. bottom: 0.015
  19764. }
  19765. },
  19766. },
  19767. [
  19768. {
  19769. name: "Normal",
  19770. height: math.unit(6 + 7 / 12, "feet"),
  19771. default: true
  19772. },
  19773. ]
  19774. ))
  19775. characterMakers.push(() => makeCharacter(
  19776. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19777. {
  19778. front: {
  19779. height: math.unit(5 + 8 / 12, "feet"),
  19780. weight: math.unit(208, "lb"),
  19781. name: "Front",
  19782. image: {
  19783. source: "./media/characters/enuk/front.svg",
  19784. extra: 437 / 406,
  19785. bottom: 0.02
  19786. }
  19787. },
  19788. },
  19789. [
  19790. {
  19791. name: "Normal",
  19792. height: math.unit(5 + 8 / 12, "feet"),
  19793. default: true
  19794. },
  19795. ]
  19796. ))
  19797. characterMakers.push(() => makeCharacter(
  19798. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19799. {
  19800. front: {
  19801. height: math.unit(5 + 10 / 12, "feet"),
  19802. weight: math.unit(252, "lb"),
  19803. name: "Front",
  19804. image: {
  19805. source: "./media/characters/bruun/front.svg",
  19806. extra: 197 / 187,
  19807. bottom: 0.012
  19808. }
  19809. },
  19810. },
  19811. [
  19812. {
  19813. name: "Normal",
  19814. height: math.unit(5 + 10 / 12, "feet"),
  19815. default: true
  19816. },
  19817. ]
  19818. ))
  19819. characterMakers.push(() => makeCharacter(
  19820. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19821. {
  19822. front: {
  19823. height: math.unit(6 + 10 / 12, "feet"),
  19824. weight: math.unit(255, "lb"),
  19825. name: "Front",
  19826. image: {
  19827. source: "./media/characters/alexeev/front.svg",
  19828. extra: 213 / 200,
  19829. bottom: 0.05
  19830. }
  19831. },
  19832. },
  19833. [
  19834. {
  19835. name: "Normal",
  19836. height: math.unit(6 + 10 / 12, "feet"),
  19837. default: true
  19838. },
  19839. ]
  19840. ))
  19841. characterMakers.push(() => makeCharacter(
  19842. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19843. {
  19844. front: {
  19845. height: math.unit(2 + 8 / 12, "feet"),
  19846. weight: math.unit(22, "lb"),
  19847. name: "Front",
  19848. image: {
  19849. source: "./media/characters/evelyn/front.svg",
  19850. extra: 208 / 180
  19851. }
  19852. },
  19853. },
  19854. [
  19855. {
  19856. name: "Normal",
  19857. height: math.unit(2 + 8 / 12, "feet"),
  19858. default: true
  19859. },
  19860. ]
  19861. ))
  19862. characterMakers.push(() => makeCharacter(
  19863. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19864. {
  19865. front: {
  19866. height: math.unit(5 + 9 / 12, "feet"),
  19867. weight: math.unit(139, "lb"),
  19868. name: "Front",
  19869. image: {
  19870. source: "./media/characters/inca/front.svg",
  19871. extra: 294 / 291,
  19872. bottom: 0.03
  19873. }
  19874. },
  19875. },
  19876. [
  19877. {
  19878. name: "Normal",
  19879. height: math.unit(5 + 9 / 12, "feet"),
  19880. default: true
  19881. },
  19882. ]
  19883. ))
  19884. characterMakers.push(() => makeCharacter(
  19885. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19886. {
  19887. front: {
  19888. height: math.unit(5 + 1 / 12, "feet"),
  19889. weight: math.unit(84, "lb"),
  19890. name: "Front",
  19891. image: {
  19892. source: "./media/characters/magdalene/front.svg",
  19893. extra: 293 / 273
  19894. }
  19895. },
  19896. },
  19897. [
  19898. {
  19899. name: "Normal",
  19900. height: math.unit(5 + 1 / 12, "feet"),
  19901. default: true
  19902. },
  19903. ]
  19904. ))
  19905. characterMakers.push(() => makeCharacter(
  19906. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19907. {
  19908. front: {
  19909. height: math.unit(6 + 3 / 12, "feet"),
  19910. weight: math.unit(185, "lb"),
  19911. name: "Front",
  19912. image: {
  19913. source: "./media/characters/mera/front.svg",
  19914. extra: 291 / 277,
  19915. bottom: 0.03
  19916. }
  19917. },
  19918. },
  19919. [
  19920. {
  19921. name: "Normal",
  19922. height: math.unit(6 + 3 / 12, "feet"),
  19923. default: true
  19924. },
  19925. ]
  19926. ))
  19927. characterMakers.push(() => makeCharacter(
  19928. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19929. {
  19930. front: {
  19931. height: math.unit(6 + 7 / 12, "feet"),
  19932. weight: math.unit(160, "lb"),
  19933. name: "Front",
  19934. image: {
  19935. source: "./media/characters/ceres/front.svg",
  19936. extra: 1023 / 950,
  19937. bottom: 0.027
  19938. }
  19939. },
  19940. back: {
  19941. height: math.unit(6 + 7 / 12, "feet"),
  19942. weight: math.unit(160, "lb"),
  19943. name: "Back",
  19944. image: {
  19945. source: "./media/characters/ceres/back.svg",
  19946. extra: 1023 / 950
  19947. }
  19948. },
  19949. },
  19950. [
  19951. {
  19952. name: "Normal",
  19953. height: math.unit(6 + 7 / 12, "feet"),
  19954. default: true
  19955. },
  19956. ]
  19957. ))
  19958. characterMakers.push(() => makeCharacter(
  19959. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19960. {
  19961. front: {
  19962. height: math.unit(5 + 10 / 12, "feet"),
  19963. weight: math.unit(150, "lb"),
  19964. name: "Front",
  19965. image: {
  19966. source: "./media/characters/kris/front.svg",
  19967. extra: 885 / 803,
  19968. bottom: 0.03
  19969. }
  19970. },
  19971. },
  19972. [
  19973. {
  19974. name: "Normal",
  19975. height: math.unit(5 + 10 / 12, "feet"),
  19976. default: true
  19977. },
  19978. ]
  19979. ))
  19980. characterMakers.push(() => makeCharacter(
  19981. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19982. {
  19983. front: {
  19984. height: math.unit(7, "feet"),
  19985. weight: math.unit(120, "kg"),
  19986. name: "Front",
  19987. image: {
  19988. source: "./media/characters/taluthus/front.svg",
  19989. extra: 903 / 833,
  19990. bottom: 0.015
  19991. }
  19992. },
  19993. },
  19994. [
  19995. {
  19996. name: "Normal",
  19997. height: math.unit(7, "feet"),
  19998. default: true
  19999. },
  20000. {
  20001. name: "Macro",
  20002. height: math.unit(300, "feet")
  20003. },
  20004. ]
  20005. ))
  20006. characterMakers.push(() => makeCharacter(
  20007. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20008. {
  20009. front: {
  20010. height: math.unit(5 + 9 / 12, "feet"),
  20011. weight: math.unit(145, "lb"),
  20012. name: "Front",
  20013. image: {
  20014. source: "./media/characters/dawn/front.svg",
  20015. extra: 2094 / 2016,
  20016. bottom: 0.025
  20017. }
  20018. },
  20019. back: {
  20020. height: math.unit(5 + 9 / 12, "feet"),
  20021. weight: math.unit(160, "lb"),
  20022. name: "Back",
  20023. image: {
  20024. source: "./media/characters/dawn/back.svg",
  20025. extra: 2112 / 2080,
  20026. bottom: 0.005
  20027. }
  20028. },
  20029. },
  20030. [
  20031. {
  20032. name: "Normal",
  20033. height: math.unit(6 + 7 / 12, "feet"),
  20034. default: true
  20035. },
  20036. ]
  20037. ))
  20038. characterMakers.push(() => makeCharacter(
  20039. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20040. {
  20041. anthro: {
  20042. height: math.unit(8 + 3 / 12, "feet"),
  20043. weight: math.unit(450, "lb"),
  20044. name: "Anthro",
  20045. image: {
  20046. source: "./media/characters/arador/anthro.svg",
  20047. extra: 1835 / 1718,
  20048. bottom: 0.025
  20049. }
  20050. },
  20051. feral: {
  20052. height: math.unit(4, "feet"),
  20053. weight: math.unit(200, "lb"),
  20054. name: "Feral",
  20055. image: {
  20056. source: "./media/characters/arador/feral.svg",
  20057. extra: 1683 / 1514,
  20058. bottom: 0.07
  20059. }
  20060. },
  20061. },
  20062. [
  20063. {
  20064. name: "Normal",
  20065. height: math.unit(8 + 3 / 12, "feet")
  20066. },
  20067. {
  20068. name: "Macro",
  20069. height: math.unit(82.5, "feet"),
  20070. default: true
  20071. },
  20072. ]
  20073. ))
  20074. characterMakers.push(() => makeCharacter(
  20075. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20076. {
  20077. front: {
  20078. height: math.unit(5 + 10 / 12, "feet"),
  20079. weight: math.unit(125, "lb"),
  20080. name: "Front",
  20081. image: {
  20082. source: "./media/characters/dharsi/front.svg",
  20083. extra: 716 / 630,
  20084. bottom: 0.035
  20085. }
  20086. },
  20087. },
  20088. [
  20089. {
  20090. name: "Nano",
  20091. height: math.unit(100, "nm")
  20092. },
  20093. {
  20094. name: "Micro",
  20095. height: math.unit(2, "inches")
  20096. },
  20097. {
  20098. name: "Normal",
  20099. height: math.unit(5 + 10 / 12, "feet"),
  20100. default: true
  20101. },
  20102. {
  20103. name: "Macro",
  20104. height: math.unit(1000, "feet")
  20105. },
  20106. {
  20107. name: "Megamacro",
  20108. height: math.unit(10, "miles")
  20109. },
  20110. {
  20111. name: "Gigamacro",
  20112. height: math.unit(3000, "miles")
  20113. },
  20114. {
  20115. name: "Teramacro",
  20116. height: math.unit(500000, "miles")
  20117. },
  20118. {
  20119. name: "Teramacro+",
  20120. height: math.unit(30, "galaxies")
  20121. },
  20122. ]
  20123. ))
  20124. characterMakers.push(() => makeCharacter(
  20125. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20126. {
  20127. front: {
  20128. height: math.unit(6, "feet"),
  20129. weight: math.unit(150, "lb"),
  20130. name: "Front",
  20131. image: {
  20132. source: "./media/characters/deathy/front.svg",
  20133. extra: 1552 / 1463,
  20134. bottom: 0.025
  20135. }
  20136. },
  20137. side: {
  20138. height: math.unit(6, "feet"),
  20139. weight: math.unit(150, "lb"),
  20140. name: "Side",
  20141. image: {
  20142. source: "./media/characters/deathy/side.svg",
  20143. extra: 1604 / 1455,
  20144. bottom: 0.025
  20145. }
  20146. },
  20147. back: {
  20148. height: math.unit(6, "feet"),
  20149. weight: math.unit(150, "lb"),
  20150. name: "Back",
  20151. image: {
  20152. source: "./media/characters/deathy/back.svg",
  20153. extra: 1580 / 1463,
  20154. bottom: 0.005
  20155. }
  20156. },
  20157. },
  20158. [
  20159. {
  20160. name: "Micro",
  20161. height: math.unit(5, "millimeters")
  20162. },
  20163. {
  20164. name: "Normal",
  20165. height: math.unit(6 + 5 / 12, "feet"),
  20166. default: true
  20167. },
  20168. ]
  20169. ))
  20170. characterMakers.push(() => makeCharacter(
  20171. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20172. {
  20173. front: {
  20174. height: math.unit(16, "feet"),
  20175. weight: math.unit(4000, "lb"),
  20176. name: "Front",
  20177. image: {
  20178. source: "./media/characters/juniper/front.svg",
  20179. bottom: 0.04
  20180. }
  20181. },
  20182. },
  20183. [
  20184. {
  20185. name: "Normal",
  20186. height: math.unit(16, "feet"),
  20187. default: true
  20188. },
  20189. ]
  20190. ))
  20191. characterMakers.push(() => makeCharacter(
  20192. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20193. {
  20194. front: {
  20195. height: math.unit(6, "feet"),
  20196. weight: math.unit(150, "lb"),
  20197. name: "Front",
  20198. image: {
  20199. source: "./media/characters/hipster/front.svg",
  20200. extra: 1312 / 1209,
  20201. bottom: 0.025
  20202. }
  20203. },
  20204. back: {
  20205. height: math.unit(6, "feet"),
  20206. weight: math.unit(150, "lb"),
  20207. name: "Back",
  20208. image: {
  20209. source: "./media/characters/hipster/back.svg",
  20210. extra: 1281 / 1196,
  20211. bottom: 0.01
  20212. }
  20213. },
  20214. },
  20215. [
  20216. {
  20217. name: "Micro",
  20218. height: math.unit(1, "mm")
  20219. },
  20220. {
  20221. name: "Normal",
  20222. height: math.unit(4, "inches"),
  20223. default: true
  20224. },
  20225. {
  20226. name: "Macro",
  20227. height: math.unit(500, "feet")
  20228. },
  20229. {
  20230. name: "Megamacro",
  20231. height: math.unit(1000, "miles")
  20232. },
  20233. ]
  20234. ))
  20235. characterMakers.push(() => makeCharacter(
  20236. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20237. {
  20238. front: {
  20239. height: math.unit(6, "feet"),
  20240. weight: math.unit(150, "lb"),
  20241. name: "Front",
  20242. image: {
  20243. source: "./media/characters/tendirmuldr/front.svg",
  20244. extra: 1878 / 1772,
  20245. bottom: 0.015
  20246. }
  20247. },
  20248. },
  20249. [
  20250. {
  20251. name: "Megamacro",
  20252. height: math.unit(1500, "miles"),
  20253. default: true
  20254. },
  20255. ]
  20256. ))
  20257. characterMakers.push(() => makeCharacter(
  20258. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20259. {
  20260. front: {
  20261. height: math.unit(14, "feet"),
  20262. weight: math.unit(12000, "lb"),
  20263. name: "Front",
  20264. image: {
  20265. source: "./media/characters/mort/front.svg",
  20266. extra: 365 / 318,
  20267. bottom: 0.01
  20268. }
  20269. },
  20270. side: {
  20271. height: math.unit(14, "feet"),
  20272. weight: math.unit(12000, "lb"),
  20273. name: "Side",
  20274. image: {
  20275. source: "./media/characters/mort/side.svg",
  20276. extra: 365 / 318,
  20277. bottom: 0.052
  20278. },
  20279. default: true
  20280. },
  20281. back: {
  20282. height: math.unit(14, "feet"),
  20283. weight: math.unit(12000, "lb"),
  20284. name: "Back",
  20285. image: {
  20286. source: "./media/characters/mort/back.svg",
  20287. extra: 371 / 332,
  20288. bottom: 0.18
  20289. }
  20290. },
  20291. },
  20292. [
  20293. {
  20294. name: "Normal",
  20295. height: math.unit(14, "feet"),
  20296. default: true
  20297. },
  20298. ]
  20299. ))
  20300. characterMakers.push(() => makeCharacter(
  20301. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20302. {
  20303. front: {
  20304. height: math.unit(8, "feet"),
  20305. weight: math.unit(1, "ton"),
  20306. name: "Front",
  20307. image: {
  20308. source: "./media/characters/lycoa/front.svg",
  20309. extra: 1875 / 1789,
  20310. bottom: 0.022
  20311. }
  20312. },
  20313. back: {
  20314. height: math.unit(8, "feet"),
  20315. weight: math.unit(1, "ton"),
  20316. name: "Back",
  20317. image: {
  20318. source: "./media/characters/lycoa/back.svg",
  20319. extra: 1835 / 1781,
  20320. bottom: 0.03
  20321. }
  20322. },
  20323. head: {
  20324. height: math.unit(2.1, "feet"),
  20325. name: "Head",
  20326. image: {
  20327. source: "./media/characters/lycoa/head.svg"
  20328. }
  20329. },
  20330. tailmaw: {
  20331. height: math.unit(1.9, "feet"),
  20332. name: "Tailmaw",
  20333. image: {
  20334. source: "./media/characters/lycoa/tailmaw.svg"
  20335. }
  20336. },
  20337. tentacles: {
  20338. height: math.unit(2.1, "feet"),
  20339. name: "Tentacles",
  20340. image: {
  20341. source: "./media/characters/lycoa/tentacles.svg"
  20342. }
  20343. },
  20344. dick: {
  20345. height: math.unit(1.73, "feet"),
  20346. name: "Dick",
  20347. image: {
  20348. source: "./media/characters/lycoa/dick.svg"
  20349. }
  20350. },
  20351. },
  20352. [
  20353. {
  20354. name: "Normal",
  20355. height: math.unit(8, "feet"),
  20356. default: true
  20357. },
  20358. {
  20359. name: "Macro",
  20360. height: math.unit(30, "feet")
  20361. },
  20362. ]
  20363. ))
  20364. characterMakers.push(() => makeCharacter(
  20365. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20366. {
  20367. front: {
  20368. height: math.unit(4 + 2 / 12, "feet"),
  20369. weight: math.unit(70, "lb"),
  20370. name: "Front",
  20371. image: {
  20372. source: "./media/characters/naldara/front.svg",
  20373. extra: 841 / 720,
  20374. bottom: 0.04
  20375. }
  20376. },
  20377. naga: {
  20378. height: math.unit(23, "feet"),
  20379. weight: math.unit(15000, "kg"),
  20380. name: "Naga",
  20381. image: {
  20382. source: "./media/characters/naldara/naga.svg",
  20383. extra: 3290 / 2959,
  20384. bottom: 124 / 3432
  20385. }
  20386. },
  20387. },
  20388. [
  20389. {
  20390. name: "Normal",
  20391. height: math.unit(4 + 2 / 12, "feet"),
  20392. default: true
  20393. },
  20394. ]
  20395. ))
  20396. characterMakers.push(() => makeCharacter(
  20397. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20398. {
  20399. front: {
  20400. height: math.unit(13 + 7 / 12, "feet"),
  20401. weight: math.unit(1500, "lb"),
  20402. name: "Front",
  20403. image: {
  20404. source: "./media/characters/briar/front.svg",
  20405. extra: 626 / 596,
  20406. bottom: 0.08
  20407. }
  20408. },
  20409. },
  20410. [
  20411. {
  20412. name: "Normal",
  20413. height: math.unit(13 + 7 / 12, "feet"),
  20414. default: true
  20415. },
  20416. ]
  20417. ))
  20418. characterMakers.push(() => makeCharacter(
  20419. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20420. {
  20421. side: {
  20422. height: math.unit(10, "feet"),
  20423. weight: math.unit(500, "lb"),
  20424. name: "Side",
  20425. image: {
  20426. source: "./media/characters/vanguard/side.svg",
  20427. extra: 502 / 425,
  20428. bottom: 0.087
  20429. }
  20430. },
  20431. },
  20432. [
  20433. {
  20434. name: "Normal",
  20435. height: math.unit(10, "feet"),
  20436. default: true
  20437. },
  20438. ]
  20439. ))
  20440. characterMakers.push(() => makeCharacter(
  20441. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20442. {
  20443. front: {
  20444. height: math.unit(7.5, "feet"),
  20445. weight: math.unit(2, "lb"),
  20446. name: "Front",
  20447. image: {
  20448. source: "./media/characters/artemis/front.svg",
  20449. extra: 1192 / 1075,
  20450. bottom: 0.07
  20451. }
  20452. },
  20453. frontNsfw: {
  20454. height: math.unit(7.5, "feet"),
  20455. weight: math.unit(2, "lb"),
  20456. name: "Front (NSFW)",
  20457. image: {
  20458. source: "./media/characters/artemis/front-nsfw.svg",
  20459. extra: 1192 / 1075,
  20460. bottom: 0.07
  20461. }
  20462. },
  20463. frontNsfwer: {
  20464. height: math.unit(7.5, "feet"),
  20465. weight: math.unit(2, "lb"),
  20466. name: "Front (NSFW-er)",
  20467. image: {
  20468. source: "./media/characters/artemis/front-nsfwer.svg",
  20469. extra: 1192 / 1075,
  20470. bottom: 0.07
  20471. }
  20472. },
  20473. side: {
  20474. height: math.unit(7.5, "feet"),
  20475. weight: math.unit(2, "lb"),
  20476. name: "Side",
  20477. image: {
  20478. source: "./media/characters/artemis/side.svg",
  20479. extra: 1192 / 1075,
  20480. bottom: 0.07
  20481. }
  20482. },
  20483. sideNsfw: {
  20484. height: math.unit(7.5, "feet"),
  20485. weight: math.unit(2, "lb"),
  20486. name: "Side (NSFW)",
  20487. image: {
  20488. source: "./media/characters/artemis/side-nsfw.svg",
  20489. extra: 1192 / 1075,
  20490. bottom: 0.07
  20491. }
  20492. },
  20493. sideNsfwer: {
  20494. height: math.unit(7.5, "feet"),
  20495. weight: math.unit(2, "lb"),
  20496. name: "Side (NSFW-er)",
  20497. image: {
  20498. source: "./media/characters/artemis/side-nsfwer.svg",
  20499. extra: 1192 / 1075,
  20500. bottom: 0.07
  20501. }
  20502. },
  20503. maw: {
  20504. height: math.unit(1.1, "feet"),
  20505. name: "Maw",
  20506. image: {
  20507. source: "./media/characters/artemis/maw.svg"
  20508. }
  20509. },
  20510. stomach: {
  20511. height: math.unit(0.95, "feet"),
  20512. name: "Stomach",
  20513. image: {
  20514. source: "./media/characters/artemis/stomach.svg"
  20515. }
  20516. },
  20517. dickCanine: {
  20518. height: math.unit(1, "feet"),
  20519. name: "Dick (Canine)",
  20520. image: {
  20521. source: "./media/characters/artemis/dick-canine.svg"
  20522. }
  20523. },
  20524. dickEquine: {
  20525. height: math.unit(0.85, "feet"),
  20526. name: "Dick (Equine)",
  20527. image: {
  20528. source: "./media/characters/artemis/dick-equine.svg"
  20529. }
  20530. },
  20531. dickExotic: {
  20532. height: math.unit(0.85, "feet"),
  20533. name: "Dick (Exotic)",
  20534. image: {
  20535. source: "./media/characters/artemis/dick-exotic.svg"
  20536. }
  20537. },
  20538. },
  20539. [
  20540. {
  20541. name: "Normal",
  20542. height: math.unit(7.5, "feet"),
  20543. default: true
  20544. },
  20545. {
  20546. name: "Enlarged",
  20547. height: math.unit(12, "feet")
  20548. },
  20549. ]
  20550. ))
  20551. characterMakers.push(() => makeCharacter(
  20552. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20553. {
  20554. front: {
  20555. height: math.unit(5 + 3 / 12, "feet"),
  20556. weight: math.unit(160, "lb"),
  20557. name: "Front",
  20558. image: {
  20559. source: "./media/characters/kira/front.svg",
  20560. extra: 906 / 786,
  20561. bottom: 0.01
  20562. }
  20563. },
  20564. back: {
  20565. height: math.unit(5 + 3 / 12, "feet"),
  20566. weight: math.unit(160, "lb"),
  20567. name: "Back",
  20568. image: {
  20569. source: "./media/characters/kira/back.svg",
  20570. extra: 882 / 757,
  20571. bottom: 0.005
  20572. }
  20573. },
  20574. frontDressed: {
  20575. height: math.unit(5 + 3 / 12, "feet"),
  20576. weight: math.unit(160, "lb"),
  20577. name: "Front (Dressed)",
  20578. image: {
  20579. source: "./media/characters/kira/front-dressed.svg",
  20580. extra: 906 / 786,
  20581. bottom: 0.01
  20582. }
  20583. },
  20584. beans: {
  20585. height: math.unit(0.92, "feet"),
  20586. name: "Beans",
  20587. image: {
  20588. source: "./media/characters/kira/beans.svg"
  20589. }
  20590. },
  20591. },
  20592. [
  20593. {
  20594. name: "Normal",
  20595. height: math.unit(5 + 3 / 12, "feet"),
  20596. default: true
  20597. },
  20598. ]
  20599. ))
  20600. characterMakers.push(() => makeCharacter(
  20601. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20602. {
  20603. front: {
  20604. height: math.unit(5 + 4 / 12, "feet"),
  20605. weight: math.unit(145, "lb"),
  20606. name: "Front",
  20607. image: {
  20608. source: "./media/characters/scramble/front.svg",
  20609. extra: 763 / 727,
  20610. bottom: 0.05
  20611. }
  20612. },
  20613. back: {
  20614. height: math.unit(5 + 4 / 12, "feet"),
  20615. weight: math.unit(145, "lb"),
  20616. name: "Back",
  20617. image: {
  20618. source: "./media/characters/scramble/back.svg",
  20619. extra: 826 / 737,
  20620. bottom: 0.002
  20621. }
  20622. },
  20623. },
  20624. [
  20625. {
  20626. name: "Normal",
  20627. height: math.unit(5 + 4 / 12, "feet"),
  20628. default: true
  20629. },
  20630. ]
  20631. ))
  20632. characterMakers.push(() => makeCharacter(
  20633. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20634. {
  20635. side: {
  20636. height: math.unit(6 + 2 / 12, "feet"),
  20637. weight: math.unit(190, "lb"),
  20638. name: "Side",
  20639. image: {
  20640. source: "./media/characters/biscuit/side.svg",
  20641. extra: 858 / 791,
  20642. bottom: 0.044
  20643. }
  20644. },
  20645. },
  20646. [
  20647. {
  20648. name: "Normal",
  20649. height: math.unit(6 + 2 / 12, "feet"),
  20650. default: true
  20651. },
  20652. ]
  20653. ))
  20654. characterMakers.push(() => makeCharacter(
  20655. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20656. {
  20657. front: {
  20658. height: math.unit(5 + 2 / 12, "feet"),
  20659. weight: math.unit(120, "lb"),
  20660. name: "Front",
  20661. image: {
  20662. source: "./media/characters/poffin/front.svg",
  20663. extra: 786 / 680,
  20664. bottom: 0.005
  20665. }
  20666. },
  20667. },
  20668. [
  20669. {
  20670. name: "Normal",
  20671. height: math.unit(5 + 2 / 12, "feet"),
  20672. default: true
  20673. },
  20674. ]
  20675. ))
  20676. characterMakers.push(() => makeCharacter(
  20677. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20678. {
  20679. front: {
  20680. height: math.unit(6 + 3 / 12, "feet"),
  20681. weight: math.unit(519, "lb"),
  20682. name: "Front",
  20683. image: {
  20684. source: "./media/characters/dhari/front.svg",
  20685. extra: 1048 / 946,
  20686. bottom: 0.015
  20687. }
  20688. },
  20689. back: {
  20690. height: math.unit(6 + 3 / 12, "feet"),
  20691. weight: math.unit(519, "lb"),
  20692. name: "Back",
  20693. image: {
  20694. source: "./media/characters/dhari/back.svg",
  20695. extra: 1048 / 931,
  20696. bottom: 0.005
  20697. }
  20698. },
  20699. frontDressed: {
  20700. height: math.unit(6 + 3 / 12, "feet"),
  20701. weight: math.unit(519, "lb"),
  20702. name: "Front (Dressed)",
  20703. image: {
  20704. source: "./media/characters/dhari/front-dressed.svg",
  20705. extra: 1713 / 1546,
  20706. bottom: 0.02
  20707. }
  20708. },
  20709. backDressed: {
  20710. height: math.unit(6 + 3 / 12, "feet"),
  20711. weight: math.unit(519, "lb"),
  20712. name: "Back (Dressed)",
  20713. image: {
  20714. source: "./media/characters/dhari/back-dressed.svg",
  20715. extra: 1699 / 1537,
  20716. bottom: 0.01
  20717. }
  20718. },
  20719. maw: {
  20720. height: math.unit(0.95, "feet"),
  20721. name: "Maw",
  20722. image: {
  20723. source: "./media/characters/dhari/maw.svg"
  20724. }
  20725. },
  20726. wereFront: {
  20727. height: math.unit(12 + 8 / 12, "feet"),
  20728. weight: math.unit(4000, "lb"),
  20729. name: "Front (Were)",
  20730. image: {
  20731. source: "./media/characters/dhari/were-front.svg",
  20732. extra: 1065 / 969,
  20733. bottom: 0.015
  20734. }
  20735. },
  20736. wereBack: {
  20737. height: math.unit(12 + 8 / 12, "feet"),
  20738. weight: math.unit(4000, "lb"),
  20739. name: "Back (Were)",
  20740. image: {
  20741. source: "./media/characters/dhari/were-back.svg",
  20742. extra: 1065 / 969,
  20743. bottom: 0.012
  20744. }
  20745. },
  20746. wereMaw: {
  20747. height: math.unit(0.625, "meters"),
  20748. name: "Maw (Were)",
  20749. image: {
  20750. source: "./media/characters/dhari/were-maw.svg"
  20751. }
  20752. },
  20753. },
  20754. [
  20755. {
  20756. name: "Normal",
  20757. height: math.unit(6 + 3 / 12, "feet"),
  20758. default: true
  20759. },
  20760. ]
  20761. ))
  20762. characterMakers.push(() => makeCharacter(
  20763. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20764. {
  20765. anthro: {
  20766. height: math.unit(5 + 7 / 12, "feet"),
  20767. weight: math.unit(175, "lb"),
  20768. name: "Anthro",
  20769. image: {
  20770. source: "./media/characters/rena-dyne/anthro.svg",
  20771. extra: 1849 / 1785,
  20772. bottom: 0.005
  20773. }
  20774. },
  20775. taur: {
  20776. height: math.unit(15 + 6 / 12, "feet"),
  20777. weight: math.unit(8000, "lb"),
  20778. name: "Taur",
  20779. image: {
  20780. source: "./media/characters/rena-dyne/taur.svg",
  20781. extra: 2315 / 2234,
  20782. bottom: 0.033
  20783. }
  20784. },
  20785. },
  20786. [
  20787. {
  20788. name: "Normal",
  20789. height: math.unit(5 + 7 / 12, "feet"),
  20790. default: true
  20791. },
  20792. ]
  20793. ))
  20794. characterMakers.push(() => makeCharacter(
  20795. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20796. {
  20797. front: {
  20798. height: math.unit(8, "feet"),
  20799. weight: math.unit(600, "lb"),
  20800. name: "Front",
  20801. image: {
  20802. source: "./media/characters/weremeep/front.svg",
  20803. extra: 967 / 862,
  20804. bottom: 0.01
  20805. }
  20806. },
  20807. },
  20808. [
  20809. {
  20810. name: "Normal",
  20811. height: math.unit(8, "feet"),
  20812. default: true
  20813. },
  20814. {
  20815. name: "Lorg",
  20816. height: math.unit(12, "feet")
  20817. },
  20818. {
  20819. name: "Oh Lawd She Comin'",
  20820. height: math.unit(20, "feet")
  20821. },
  20822. ]
  20823. ))
  20824. characterMakers.push(() => makeCharacter(
  20825. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20826. {
  20827. front: {
  20828. height: math.unit(4, "feet"),
  20829. weight: math.unit(90, "lb"),
  20830. name: "Front",
  20831. image: {
  20832. source: "./media/characters/reza/front.svg",
  20833. extra: 1183 / 1111,
  20834. bottom: 0.017
  20835. }
  20836. },
  20837. back: {
  20838. height: math.unit(4, "feet"),
  20839. weight: math.unit(90, "lb"),
  20840. name: "Back",
  20841. image: {
  20842. source: "./media/characters/reza/back.svg",
  20843. extra: 1183 / 1111,
  20844. bottom: 0.01
  20845. }
  20846. },
  20847. drake: {
  20848. height: math.unit(30, "feet"),
  20849. weight: math.unit(246960, "lb"),
  20850. name: "Drake",
  20851. image: {
  20852. source: "./media/characters/reza/drake.svg",
  20853. extra: 2350 / 2024,
  20854. bottom: 60.7 / 2403
  20855. }
  20856. },
  20857. },
  20858. [
  20859. {
  20860. name: "Normal",
  20861. height: math.unit(4, "feet"),
  20862. default: true
  20863. },
  20864. ]
  20865. ))
  20866. characterMakers.push(() => makeCharacter(
  20867. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20868. {
  20869. side: {
  20870. height: math.unit(15, "feet"),
  20871. weight: math.unit(14, "tons"),
  20872. name: "Side",
  20873. image: {
  20874. source: "./media/characters/athea/side.svg",
  20875. extra: 960 / 540,
  20876. bottom: 0.003
  20877. }
  20878. },
  20879. sitting: {
  20880. height: math.unit(6 * 2.85, "feet"),
  20881. weight: math.unit(14, "tons"),
  20882. name: "Sitting",
  20883. image: {
  20884. source: "./media/characters/athea/sitting.svg",
  20885. extra: 621 / 581,
  20886. bottom: 0.075
  20887. }
  20888. },
  20889. maw: {
  20890. height: math.unit(7.59498031496063, "feet"),
  20891. name: "Maw",
  20892. image: {
  20893. source: "./media/characters/athea/maw.svg"
  20894. }
  20895. },
  20896. },
  20897. [
  20898. {
  20899. name: "Lap Cat",
  20900. height: math.unit(2.5, "feet")
  20901. },
  20902. {
  20903. name: "Minimacro",
  20904. height: math.unit(15, "feet"),
  20905. default: true
  20906. },
  20907. {
  20908. name: "Macro",
  20909. height: math.unit(120, "feet")
  20910. },
  20911. {
  20912. name: "Macro+",
  20913. height: math.unit(640, "feet")
  20914. },
  20915. {
  20916. name: "Colossus",
  20917. height: math.unit(2.2, "miles")
  20918. },
  20919. ]
  20920. ))
  20921. characterMakers.push(() => makeCharacter(
  20922. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20923. {
  20924. front: {
  20925. height: math.unit(8 + 8 / 12, "feet"),
  20926. weight: math.unit(130, "kg"),
  20927. name: "Front",
  20928. image: {
  20929. source: "./media/characters/seroko/front.svg",
  20930. extra: 1385 / 1280,
  20931. bottom: 0.025
  20932. }
  20933. },
  20934. back: {
  20935. height: math.unit(8 + 8 / 12, "feet"),
  20936. weight: math.unit(130, "kg"),
  20937. name: "Back",
  20938. image: {
  20939. source: "./media/characters/seroko/back.svg",
  20940. extra: 1369 / 1238,
  20941. bottom: 0.018
  20942. }
  20943. },
  20944. frontDressed: {
  20945. height: math.unit(8 + 8 / 12, "feet"),
  20946. weight: math.unit(130, "kg"),
  20947. name: "Front (Dressed)",
  20948. image: {
  20949. source: "./media/characters/seroko/front-dressed.svg",
  20950. extra: 1366 / 1275,
  20951. bottom: 0.03
  20952. }
  20953. },
  20954. },
  20955. [
  20956. {
  20957. name: "Normal",
  20958. height: math.unit(8 + 8 / 12, "feet"),
  20959. default: true
  20960. },
  20961. ]
  20962. ))
  20963. characterMakers.push(() => makeCharacter(
  20964. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20965. {
  20966. front: {
  20967. height: math.unit(5.5, "feet"),
  20968. weight: math.unit(160, "lb"),
  20969. name: "Front",
  20970. image: {
  20971. source: "./media/characters/quatzi/front.svg",
  20972. extra: 2346 / 2242,
  20973. bottom: 0.015
  20974. }
  20975. },
  20976. },
  20977. [
  20978. {
  20979. name: "Normal",
  20980. height: math.unit(5.5, "feet"),
  20981. default: true
  20982. },
  20983. {
  20984. name: "Big",
  20985. height: math.unit(7.7, "feet")
  20986. },
  20987. ]
  20988. ))
  20989. characterMakers.push(() => makeCharacter(
  20990. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20991. {
  20992. front: {
  20993. height: math.unit(5 + 11 / 12, "feet"),
  20994. weight: math.unit(180, "lb"),
  20995. name: "Front",
  20996. image: {
  20997. source: "./media/characters/sen/front.svg",
  20998. extra: 1321 / 1254,
  20999. bottom: 0.015
  21000. }
  21001. },
  21002. side: {
  21003. height: math.unit(5 + 11 / 12, "feet"),
  21004. weight: math.unit(180, "lb"),
  21005. name: "Side",
  21006. image: {
  21007. source: "./media/characters/sen/side.svg",
  21008. extra: 1321 / 1254,
  21009. bottom: 0.007
  21010. }
  21011. },
  21012. back: {
  21013. height: math.unit(5 + 11 / 12, "feet"),
  21014. weight: math.unit(180, "lb"),
  21015. name: "Back",
  21016. image: {
  21017. source: "./media/characters/sen/back.svg",
  21018. extra: 1321 / 1254
  21019. }
  21020. },
  21021. },
  21022. [
  21023. {
  21024. name: "Normal",
  21025. height: math.unit(5 + 11 / 12, "feet"),
  21026. default: true
  21027. },
  21028. ]
  21029. ))
  21030. characterMakers.push(() => makeCharacter(
  21031. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21032. {
  21033. front: {
  21034. height: math.unit(166.6, "cm"),
  21035. weight: math.unit(66.6, "kg"),
  21036. name: "Front",
  21037. image: {
  21038. source: "./media/characters/fruity/front.svg",
  21039. extra: 1510 / 1386,
  21040. bottom: 0.04
  21041. }
  21042. },
  21043. back: {
  21044. height: math.unit(166.6, "cm"),
  21045. weight: math.unit(66.6, "lb"),
  21046. name: "Back",
  21047. image: {
  21048. source: "./media/characters/fruity/back.svg",
  21049. extra: 1563 / 1435,
  21050. bottom: 0.005
  21051. }
  21052. },
  21053. },
  21054. [
  21055. {
  21056. name: "Normal",
  21057. height: math.unit(166.6, "cm"),
  21058. default: true
  21059. },
  21060. {
  21061. name: "Demonic",
  21062. height: math.unit(166.6, "feet")
  21063. },
  21064. ]
  21065. ))
  21066. characterMakers.push(() => makeCharacter(
  21067. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21068. {
  21069. side: {
  21070. height: math.unit(10, "feet"),
  21071. weight: math.unit(500, "lb"),
  21072. name: "Side",
  21073. image: {
  21074. source: "./media/characters/zost/side.svg",
  21075. extra: 966 / 880,
  21076. bottom: 0.075
  21077. }
  21078. },
  21079. mawFront: {
  21080. height: math.unit(1.08, "meters"),
  21081. name: "Maw (Front)",
  21082. image: {
  21083. source: "./media/characters/zost/maw-front.svg"
  21084. }
  21085. },
  21086. mawSide: {
  21087. height: math.unit(2.66, "feet"),
  21088. name: "Maw (Side)",
  21089. image: {
  21090. source: "./media/characters/zost/maw-side.svg"
  21091. }
  21092. },
  21093. },
  21094. [
  21095. {
  21096. name: "Normal",
  21097. height: math.unit(10, "feet"),
  21098. default: true
  21099. },
  21100. ]
  21101. ))
  21102. characterMakers.push(() => makeCharacter(
  21103. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21104. {
  21105. front: {
  21106. height: math.unit(5 + 4 / 12, "feet"),
  21107. weight: math.unit(120, "lb"),
  21108. name: "Front",
  21109. image: {
  21110. source: "./media/characters/luci/front.svg",
  21111. extra: 1985 / 1884,
  21112. bottom: 0.04
  21113. }
  21114. },
  21115. back: {
  21116. height: math.unit(5 + 4 / 12, "feet"),
  21117. weight: math.unit(120, "lb"),
  21118. name: "Back",
  21119. image: {
  21120. source: "./media/characters/luci/back.svg",
  21121. extra: 1892 / 1791,
  21122. bottom: 0.002
  21123. }
  21124. },
  21125. },
  21126. [
  21127. {
  21128. name: "Normal",
  21129. height: math.unit(5 + 4 / 12, "feet"),
  21130. default: true
  21131. },
  21132. ]
  21133. ))
  21134. characterMakers.push(() => makeCharacter(
  21135. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21136. {
  21137. front: {
  21138. height: math.unit(1500, "feet"),
  21139. weight: math.unit(3.8e6, "tons"),
  21140. name: "Front",
  21141. image: {
  21142. source: "./media/characters/2th/front.svg",
  21143. extra: 3489 / 3350,
  21144. bottom: 0.1
  21145. }
  21146. },
  21147. foot: {
  21148. height: math.unit(461, "feet"),
  21149. name: "Foot",
  21150. image: {
  21151. source: "./media/characters/2th/foot.svg"
  21152. }
  21153. },
  21154. },
  21155. [
  21156. {
  21157. name: "\"Micro\"",
  21158. height: math.unit(15 + 7 / 12, "feet")
  21159. },
  21160. {
  21161. name: "Normal",
  21162. height: math.unit(1500, "feet"),
  21163. default: true
  21164. },
  21165. {
  21166. name: "Macro",
  21167. height: math.unit(5000, "feet")
  21168. },
  21169. {
  21170. name: "Megamacro",
  21171. height: math.unit(15, "miles")
  21172. },
  21173. {
  21174. name: "Gigamacro",
  21175. height: math.unit(4000, "miles")
  21176. },
  21177. {
  21178. name: "Galactic",
  21179. height: math.unit(50, "AU")
  21180. },
  21181. ]
  21182. ))
  21183. characterMakers.push(() => makeCharacter(
  21184. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21185. {
  21186. front: {
  21187. height: math.unit(5 + 6 / 12, "feet"),
  21188. weight: math.unit(220, "lb"),
  21189. name: "Front",
  21190. image: {
  21191. source: "./media/characters/amethyst/front.svg",
  21192. extra: 2078 / 2040,
  21193. bottom: 0.045
  21194. }
  21195. },
  21196. back: {
  21197. height: math.unit(5 + 6 / 12, "feet"),
  21198. weight: math.unit(220, "lb"),
  21199. name: "Back",
  21200. image: {
  21201. source: "./media/characters/amethyst/back.svg",
  21202. extra: 2021 / 1989,
  21203. bottom: 0.02
  21204. }
  21205. },
  21206. },
  21207. [
  21208. {
  21209. name: "Normal",
  21210. height: math.unit(5 + 6 / 12, "feet"),
  21211. default: true
  21212. },
  21213. ]
  21214. ))
  21215. characterMakers.push(() => makeCharacter(
  21216. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21217. {
  21218. front: {
  21219. height: math.unit(4 + 11 / 12, "feet"),
  21220. weight: math.unit(120, "lb"),
  21221. name: "Front",
  21222. image: {
  21223. source: "./media/characters/yumi-akiyama/front.svg",
  21224. extra: 1327 / 1235,
  21225. bottom: 0.02
  21226. }
  21227. },
  21228. back: {
  21229. height: math.unit(4 + 11 / 12, "feet"),
  21230. weight: math.unit(120, "lb"),
  21231. name: "Back",
  21232. image: {
  21233. source: "./media/characters/yumi-akiyama/back.svg",
  21234. extra: 1287 / 1245,
  21235. bottom: 0.002
  21236. }
  21237. },
  21238. },
  21239. [
  21240. {
  21241. name: "Galactic",
  21242. height: math.unit(50, "galaxies"),
  21243. default: true
  21244. },
  21245. {
  21246. name: "Universal",
  21247. height: math.unit(100, "universes")
  21248. },
  21249. ]
  21250. ))
  21251. characterMakers.push(() => makeCharacter(
  21252. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21253. {
  21254. front: {
  21255. height: math.unit(8, "feet"),
  21256. weight: math.unit(500, "lb"),
  21257. name: "Front",
  21258. image: {
  21259. source: "./media/characters/rifter-yrmori/front.svg",
  21260. extra: 1180 / 1125,
  21261. bottom: 0.02
  21262. }
  21263. },
  21264. back: {
  21265. height: math.unit(8, "feet"),
  21266. weight: math.unit(500, "lb"),
  21267. name: "Back",
  21268. image: {
  21269. source: "./media/characters/rifter-yrmori/back.svg",
  21270. extra: 1190 / 1145,
  21271. bottom: 0.001
  21272. }
  21273. },
  21274. wings: {
  21275. height: math.unit(7.75, "feet"),
  21276. weight: math.unit(500, "lb"),
  21277. name: "Wings",
  21278. image: {
  21279. source: "./media/characters/rifter-yrmori/wings.svg",
  21280. extra: 1357 / 1285
  21281. }
  21282. },
  21283. maw: {
  21284. height: math.unit(0.8, "feet"),
  21285. name: "Maw",
  21286. image: {
  21287. source: "./media/characters/rifter-yrmori/maw.svg"
  21288. }
  21289. },
  21290. mawfront: {
  21291. height: math.unit(1.45, "feet"),
  21292. name: "Maw (Front)",
  21293. image: {
  21294. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21295. }
  21296. },
  21297. },
  21298. [
  21299. {
  21300. name: "Normal",
  21301. height: math.unit(8, "feet"),
  21302. default: true
  21303. },
  21304. {
  21305. name: "Macro",
  21306. height: math.unit(42, "meters")
  21307. },
  21308. ]
  21309. ))
  21310. characterMakers.push(() => makeCharacter(
  21311. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21312. {
  21313. were: {
  21314. height: math.unit(25 + 6 / 12, "feet"),
  21315. weight: math.unit(10000, "lb"),
  21316. name: "Were",
  21317. image: {
  21318. source: "./media/characters/tahajin/were.svg",
  21319. extra: 801 / 770,
  21320. bottom: 0.042
  21321. }
  21322. },
  21323. aquatic: {
  21324. height: math.unit(6 + 4 / 12, "feet"),
  21325. weight: math.unit(160, "lb"),
  21326. name: "Aquatic",
  21327. image: {
  21328. source: "./media/characters/tahajin/aquatic.svg",
  21329. extra: 572 / 542,
  21330. bottom: 0.04
  21331. }
  21332. },
  21333. chow: {
  21334. height: math.unit(8 + 11 / 12, "feet"),
  21335. weight: math.unit(450, "lb"),
  21336. name: "Chow",
  21337. image: {
  21338. source: "./media/characters/tahajin/chow.svg",
  21339. extra: 660 / 640,
  21340. bottom: 0.015
  21341. }
  21342. },
  21343. demiNaga: {
  21344. height: math.unit(6 + 8 / 12, "feet"),
  21345. weight: math.unit(300, "lb"),
  21346. name: "Demi Naga",
  21347. image: {
  21348. source: "./media/characters/tahajin/demi-naga.svg",
  21349. extra: 643 / 615,
  21350. bottom: 0.1
  21351. }
  21352. },
  21353. data: {
  21354. height: math.unit(5, "inches"),
  21355. weight: math.unit(0.1, "lb"),
  21356. name: "Data",
  21357. image: {
  21358. source: "./media/characters/tahajin/data.svg"
  21359. }
  21360. },
  21361. fluu: {
  21362. height: math.unit(5 + 7 / 12, "feet"),
  21363. weight: math.unit(140, "lb"),
  21364. name: "Fluu",
  21365. image: {
  21366. source: "./media/characters/tahajin/fluu.svg",
  21367. extra: 628 / 592,
  21368. bottom: 0.02
  21369. }
  21370. },
  21371. starWarrior: {
  21372. height: math.unit(4 + 5 / 12, "feet"),
  21373. weight: math.unit(50, "lb"),
  21374. name: "Star Warrior",
  21375. image: {
  21376. source: "./media/characters/tahajin/star-warrior.svg"
  21377. }
  21378. },
  21379. },
  21380. [
  21381. {
  21382. name: "Normal",
  21383. height: math.unit(25 + 6 / 12, "feet"),
  21384. default: true
  21385. },
  21386. ]
  21387. ))
  21388. characterMakers.push(() => makeCharacter(
  21389. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21390. {
  21391. front: {
  21392. height: math.unit(8, "feet"),
  21393. weight: math.unit(350, "lb"),
  21394. name: "Front",
  21395. image: {
  21396. source: "./media/characters/gabira/front.svg",
  21397. extra: 608 / 580,
  21398. bottom: 0.03
  21399. }
  21400. },
  21401. back: {
  21402. height: math.unit(8, "feet"),
  21403. weight: math.unit(350, "lb"),
  21404. name: "Back",
  21405. image: {
  21406. source: "./media/characters/gabira/back.svg",
  21407. extra: 608 / 580,
  21408. bottom: 0.03
  21409. }
  21410. },
  21411. },
  21412. [
  21413. {
  21414. name: "Normal",
  21415. height: math.unit(8, "feet"),
  21416. default: true
  21417. },
  21418. ]
  21419. ))
  21420. characterMakers.push(() => makeCharacter(
  21421. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21422. {
  21423. front: {
  21424. height: math.unit(5 + 3 / 12, "feet"),
  21425. weight: math.unit(137, "lb"),
  21426. name: "Front",
  21427. image: {
  21428. source: "./media/characters/sasha-katraine/front.svg",
  21429. bottom: 0.045
  21430. }
  21431. },
  21432. },
  21433. [
  21434. {
  21435. name: "Micro",
  21436. height: math.unit(5, "inches")
  21437. },
  21438. {
  21439. name: "Normal",
  21440. height: math.unit(5 + 3 / 12, "feet"),
  21441. default: true
  21442. },
  21443. ]
  21444. ))
  21445. characterMakers.push(() => makeCharacter(
  21446. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21447. {
  21448. side: {
  21449. height: math.unit(4, "inches"),
  21450. weight: math.unit(200, "grams"),
  21451. name: "Side",
  21452. image: {
  21453. source: "./media/characters/der/side.svg",
  21454. extra: 719 / 400,
  21455. bottom: 30.6 / 749.9187
  21456. }
  21457. },
  21458. },
  21459. [
  21460. {
  21461. name: "Micro",
  21462. height: math.unit(4, "inches"),
  21463. default: true
  21464. },
  21465. ]
  21466. ))
  21467. characterMakers.push(() => makeCharacter(
  21468. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21469. {
  21470. side: {
  21471. height: math.unit(30, "meters"),
  21472. weight: math.unit(700, "tonnes"),
  21473. name: "Side",
  21474. image: {
  21475. source: "./media/characters/fixerdragon/side.svg",
  21476. extra: (1293.0514 - 116.03) / 1106.86,
  21477. bottom: 116.03 / 1293.0514
  21478. }
  21479. },
  21480. },
  21481. [
  21482. {
  21483. name: "Planck",
  21484. height: math.unit(1.6e-35, "meters")
  21485. },
  21486. {
  21487. name: "Micro",
  21488. height: math.unit(0.4, "meters")
  21489. },
  21490. {
  21491. name: "Normal",
  21492. height: math.unit(30, "meters"),
  21493. default: true
  21494. },
  21495. {
  21496. name: "Megamacro",
  21497. height: math.unit(1.2, "megameters")
  21498. },
  21499. {
  21500. name: "Teramacro",
  21501. height: math.unit(130, "terameters")
  21502. },
  21503. {
  21504. name: "Yottamacro",
  21505. height: math.unit(6200, "yottameters")
  21506. },
  21507. ]
  21508. ));
  21509. characterMakers.push(() => makeCharacter(
  21510. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21511. {
  21512. front: {
  21513. height: math.unit(8, "feet"),
  21514. weight: math.unit(250, "lb"),
  21515. name: "Front",
  21516. image: {
  21517. source: "./media/characters/kite/front.svg",
  21518. extra: 2796 / 2659,
  21519. bottom: 0.002
  21520. }
  21521. },
  21522. },
  21523. [
  21524. {
  21525. name: "Normal",
  21526. height: math.unit(8, "feet"),
  21527. default: true
  21528. },
  21529. {
  21530. name: "Macro",
  21531. height: math.unit(360, "feet")
  21532. },
  21533. {
  21534. name: "Megamacro",
  21535. height: math.unit(1500, "feet")
  21536. },
  21537. ]
  21538. ))
  21539. characterMakers.push(() => makeCharacter(
  21540. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21541. {
  21542. front: {
  21543. height: math.unit(5 + 10 / 12, "feet"),
  21544. weight: math.unit(150, "lb"),
  21545. name: "Front",
  21546. image: {
  21547. source: "./media/characters/poojawa-vynar/front.svg",
  21548. extra: (1506.1547 - 55) / 1356.6,
  21549. bottom: 55 / 1506.1547
  21550. }
  21551. },
  21552. frontTailless: {
  21553. height: math.unit(5 + 10 / 12, "feet"),
  21554. weight: math.unit(150, "lb"),
  21555. name: "Front (Tailless)",
  21556. image: {
  21557. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21558. extra: (1506.1547 - 55) / 1356.6,
  21559. bottom: 55 / 1506.1547
  21560. }
  21561. },
  21562. },
  21563. [
  21564. {
  21565. name: "Normal",
  21566. height: math.unit(5 + 10 / 12, "feet"),
  21567. default: true
  21568. },
  21569. ]
  21570. ))
  21571. characterMakers.push(() => makeCharacter(
  21572. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21573. {
  21574. front: {
  21575. height: math.unit(293, "meters"),
  21576. weight: math.unit(70400, "tons"),
  21577. name: "Front",
  21578. image: {
  21579. source: "./media/characters/violette/front.svg",
  21580. extra: 1227 / 1180,
  21581. bottom: 0.005
  21582. }
  21583. },
  21584. back: {
  21585. height: math.unit(293, "meters"),
  21586. weight: math.unit(70400, "tons"),
  21587. name: "Back",
  21588. image: {
  21589. source: "./media/characters/violette/back.svg",
  21590. extra: 1227 / 1180,
  21591. bottom: 0.005
  21592. }
  21593. },
  21594. },
  21595. [
  21596. {
  21597. name: "Macro",
  21598. height: math.unit(293, "meters"),
  21599. default: true
  21600. },
  21601. ]
  21602. ))
  21603. characterMakers.push(() => makeCharacter(
  21604. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21605. {
  21606. front: {
  21607. height: math.unit(1050, "feet"),
  21608. weight: math.unit(200000, "tons"),
  21609. name: "Front",
  21610. image: {
  21611. source: "./media/characters/alessandra/front.svg",
  21612. extra: 960 / 912,
  21613. bottom: 0.06
  21614. }
  21615. },
  21616. },
  21617. [
  21618. {
  21619. name: "Macro",
  21620. height: math.unit(1050, "feet")
  21621. },
  21622. {
  21623. name: "Macro+",
  21624. height: math.unit(900, "meters"),
  21625. default: true
  21626. },
  21627. ]
  21628. ))
  21629. characterMakers.push(() => makeCharacter(
  21630. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21631. {
  21632. front: {
  21633. height: math.unit(5, "feet"),
  21634. weight: math.unit(187, "lb"),
  21635. name: "Front",
  21636. image: {
  21637. source: "./media/characters/person/front.svg",
  21638. extra: 3087 / 2945,
  21639. bottom: 91 / 3181
  21640. }
  21641. },
  21642. },
  21643. [
  21644. {
  21645. name: "Micro",
  21646. height: math.unit(3, "inches")
  21647. },
  21648. {
  21649. name: "Normal",
  21650. height: math.unit(5, "feet"),
  21651. default: true
  21652. },
  21653. {
  21654. name: "Macro",
  21655. height: math.unit(90, "feet")
  21656. },
  21657. {
  21658. name: "Max Size",
  21659. height: math.unit(280, "feet")
  21660. },
  21661. ]
  21662. ))
  21663. characterMakers.push(() => makeCharacter(
  21664. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21665. {
  21666. front: {
  21667. height: math.unit(4.5, "meters"),
  21668. weight: math.unit(3200, "lb"),
  21669. name: "Front",
  21670. image: {
  21671. source: "./media/characters/ty/front.svg",
  21672. extra: 1038 / 960,
  21673. bottom: 31.156 / 1068
  21674. }
  21675. },
  21676. back: {
  21677. height: math.unit(4.5, "meters"),
  21678. weight: math.unit(3200, "lb"),
  21679. name: "Back",
  21680. image: {
  21681. source: "./media/characters/ty/back.svg",
  21682. extra: 1044 / 966,
  21683. bottom: 7.48 / 1049
  21684. }
  21685. },
  21686. },
  21687. [
  21688. {
  21689. name: "Normal",
  21690. height: math.unit(4.5, "meters"),
  21691. default: true
  21692. },
  21693. ]
  21694. ))
  21695. characterMakers.push(() => makeCharacter(
  21696. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21697. {
  21698. front: {
  21699. height: math.unit(5 + 4 / 12, "feet"),
  21700. weight: math.unit(115, "lb"),
  21701. name: "Front",
  21702. image: {
  21703. source: "./media/characters/rocky/front.svg",
  21704. extra: 1012 / 975,
  21705. bottom: 54 / 1066
  21706. }
  21707. },
  21708. },
  21709. [
  21710. {
  21711. name: "Normal",
  21712. height: math.unit(5 + 4 / 12, "feet"),
  21713. default: true
  21714. },
  21715. ]
  21716. ))
  21717. characterMakers.push(() => makeCharacter(
  21718. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21719. {
  21720. upright: {
  21721. height: math.unit(6, "meters"),
  21722. weight: math.unit(4000, "kg"),
  21723. name: "Upright",
  21724. image: {
  21725. source: "./media/characters/ruin/upright.svg",
  21726. extra: 668 / 661,
  21727. bottom: 42 / 799.8396
  21728. }
  21729. },
  21730. },
  21731. [
  21732. {
  21733. name: "Normal",
  21734. height: math.unit(6, "meters"),
  21735. default: true
  21736. },
  21737. ]
  21738. ))
  21739. characterMakers.push(() => makeCharacter(
  21740. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21741. {
  21742. front: {
  21743. height: math.unit(5, "feet"),
  21744. weight: math.unit(106, "lb"),
  21745. name: "Front",
  21746. image: {
  21747. source: "./media/characters/robin/front.svg",
  21748. extra: 862 / 799,
  21749. bottom: 42.4 / 914.8856
  21750. }
  21751. },
  21752. },
  21753. [
  21754. {
  21755. name: "Normal",
  21756. height: math.unit(5, "feet"),
  21757. default: true
  21758. },
  21759. ]
  21760. ))
  21761. characterMakers.push(() => makeCharacter(
  21762. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21763. {
  21764. side: {
  21765. height: math.unit(3, "feet"),
  21766. weight: math.unit(225, "lb"),
  21767. name: "Side",
  21768. image: {
  21769. source: "./media/characters/saian/side.svg",
  21770. extra: 566 / 356,
  21771. bottom: 79.7 / 643
  21772. }
  21773. },
  21774. maw: {
  21775. height: math.unit(2.85, "feet"),
  21776. name: "Maw",
  21777. image: {
  21778. source: "./media/characters/saian/maw.svg"
  21779. }
  21780. },
  21781. },
  21782. [
  21783. {
  21784. name: "Normal",
  21785. height: math.unit(3, "feet"),
  21786. default: true
  21787. },
  21788. ]
  21789. ))
  21790. characterMakers.push(() => makeCharacter(
  21791. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21792. {
  21793. side: {
  21794. height: math.unit(8, "feet"),
  21795. weight: math.unit(300, "lb"),
  21796. name: "Side",
  21797. image: {
  21798. source: "./media/characters/equus-silvermane/side.svg",
  21799. extra: 2176 / 2050,
  21800. bottom: 65.7 / 2245
  21801. }
  21802. },
  21803. front: {
  21804. height: math.unit(8, "feet"),
  21805. weight: math.unit(300, "lb"),
  21806. name: "Front",
  21807. image: {
  21808. source: "./media/characters/equus-silvermane/front.svg",
  21809. extra: 4633 / 4400,
  21810. bottom: 71.3 / 4706.915
  21811. }
  21812. },
  21813. sideStepping: {
  21814. height: math.unit(8, "feet"),
  21815. weight: math.unit(300, "lb"),
  21816. name: "Side (Stepping)",
  21817. image: {
  21818. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21819. extra: 1968 / 1860,
  21820. bottom: 16.4 / 1989
  21821. }
  21822. },
  21823. },
  21824. [
  21825. {
  21826. name: "Normal",
  21827. height: math.unit(8, "feet")
  21828. },
  21829. {
  21830. name: "Minimacro",
  21831. height: math.unit(75, "feet"),
  21832. default: true
  21833. },
  21834. {
  21835. name: "Macro",
  21836. height: math.unit(150, "feet")
  21837. },
  21838. {
  21839. name: "Macro+",
  21840. height: math.unit(1000, "feet")
  21841. },
  21842. {
  21843. name: "Megamacro",
  21844. height: math.unit(1, "mile")
  21845. },
  21846. ]
  21847. ))
  21848. characterMakers.push(() => makeCharacter(
  21849. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21850. {
  21851. side: {
  21852. height: math.unit(20, "feet"),
  21853. weight: math.unit(30000, "kg"),
  21854. name: "Side",
  21855. image: {
  21856. source: "./media/characters/windar/side.svg",
  21857. extra: 1491 / 1248,
  21858. bottom: 82.56 / 1568
  21859. }
  21860. },
  21861. },
  21862. [
  21863. {
  21864. name: "Normal",
  21865. height: math.unit(20, "feet"),
  21866. default: true
  21867. },
  21868. ]
  21869. ))
  21870. characterMakers.push(() => makeCharacter(
  21871. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21872. {
  21873. side: {
  21874. height: math.unit(15.66, "feet"),
  21875. weight: math.unit(150, "lb"),
  21876. name: "Side",
  21877. image: {
  21878. source: "./media/characters/melody/side.svg",
  21879. extra: 1097 / 944,
  21880. bottom: 11.8 / 1109
  21881. }
  21882. },
  21883. sideOutfit: {
  21884. height: math.unit(15.66, "feet"),
  21885. weight: math.unit(150, "lb"),
  21886. name: "Side (Outfit)",
  21887. image: {
  21888. source: "./media/characters/melody/side-outfit.svg",
  21889. extra: 1097 / 944,
  21890. bottom: 11.8 / 1109
  21891. }
  21892. },
  21893. },
  21894. [
  21895. {
  21896. name: "Normal",
  21897. height: math.unit(15.66, "feet"),
  21898. default: true
  21899. },
  21900. ]
  21901. ))
  21902. characterMakers.push(() => makeCharacter(
  21903. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21904. {
  21905. front: {
  21906. height: math.unit(8, "feet"),
  21907. weight: math.unit(325, "lb"),
  21908. name: "Front",
  21909. image: {
  21910. source: "./media/characters/windera/front.svg",
  21911. extra: 3180 / 2845,
  21912. bottom: 178 / 3365
  21913. }
  21914. },
  21915. },
  21916. [
  21917. {
  21918. name: "Normal",
  21919. height: math.unit(8, "feet"),
  21920. default: true
  21921. },
  21922. ]
  21923. ))
  21924. characterMakers.push(() => makeCharacter(
  21925. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21926. {
  21927. front: {
  21928. height: math.unit(28.75, "feet"),
  21929. weight: math.unit(2000, "kg"),
  21930. name: "Front",
  21931. image: {
  21932. source: "./media/characters/sonear/front.svg",
  21933. extra: 1041.1 / 964.9,
  21934. bottom: 53.7 / 1096.6
  21935. }
  21936. },
  21937. },
  21938. [
  21939. {
  21940. name: "Normal",
  21941. height: math.unit(28.75, "feet"),
  21942. default: true
  21943. },
  21944. ]
  21945. ))
  21946. characterMakers.push(() => makeCharacter(
  21947. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21948. {
  21949. side: {
  21950. height: math.unit(25.5, "feet"),
  21951. weight: math.unit(23000, "kg"),
  21952. name: "Side",
  21953. image: {
  21954. source: "./media/characters/kanara/side.svg"
  21955. }
  21956. },
  21957. },
  21958. [
  21959. {
  21960. name: "Normal",
  21961. height: math.unit(25.5, "feet"),
  21962. default: true
  21963. },
  21964. ]
  21965. ))
  21966. characterMakers.push(() => makeCharacter(
  21967. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21968. {
  21969. side: {
  21970. height: math.unit(10, "feet"),
  21971. weight: math.unit(1000, "kg"),
  21972. name: "Side",
  21973. image: {
  21974. source: "./media/characters/ereus/side.svg",
  21975. extra: 1157 / 959,
  21976. bottom: 153 / 1312.5
  21977. }
  21978. },
  21979. },
  21980. [
  21981. {
  21982. name: "Normal",
  21983. height: math.unit(10, "feet"),
  21984. default: true
  21985. },
  21986. ]
  21987. ))
  21988. characterMakers.push(() => makeCharacter(
  21989. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21990. {
  21991. side: {
  21992. height: math.unit(4.5, "feet"),
  21993. weight: math.unit(500, "lb"),
  21994. name: "Side",
  21995. image: {
  21996. source: "./media/characters/e-ter/side.svg",
  21997. extra: 1550 / 1248,
  21998. bottom: 146 / 1694
  21999. }
  22000. },
  22001. },
  22002. [
  22003. {
  22004. name: "Normal",
  22005. height: math.unit(4.5, "feet"),
  22006. default: true
  22007. },
  22008. ]
  22009. ))
  22010. characterMakers.push(() => makeCharacter(
  22011. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22012. {
  22013. side: {
  22014. height: math.unit(9.7, "feet"),
  22015. weight: math.unit(4000, "kg"),
  22016. name: "Side",
  22017. image: {
  22018. source: "./media/characters/yamie/side.svg"
  22019. }
  22020. },
  22021. },
  22022. [
  22023. {
  22024. name: "Normal",
  22025. height: math.unit(9.7, "feet"),
  22026. default: true
  22027. },
  22028. ]
  22029. ))
  22030. characterMakers.push(() => makeCharacter(
  22031. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22032. {
  22033. front: {
  22034. height: math.unit(50, "feet"),
  22035. weight: math.unit(50000, "kg"),
  22036. name: "Front",
  22037. image: {
  22038. source: "./media/characters/anders/front.svg",
  22039. extra: 570 / 539,
  22040. bottom: 14.7 / 586.7
  22041. }
  22042. },
  22043. },
  22044. [
  22045. {
  22046. name: "Large",
  22047. height: math.unit(50, "feet")
  22048. },
  22049. {
  22050. name: "Macro",
  22051. height: math.unit(2000, "feet"),
  22052. default: true
  22053. },
  22054. {
  22055. name: "Megamacro",
  22056. height: math.unit(12, "miles")
  22057. },
  22058. ]
  22059. ))
  22060. characterMakers.push(() => makeCharacter(
  22061. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22062. {
  22063. front: {
  22064. height: math.unit(7 + 2 / 12, "feet"),
  22065. weight: math.unit(300, "lb"),
  22066. name: "Front",
  22067. image: {
  22068. source: "./media/characters/reban/front.svg",
  22069. extra: 516 / 487,
  22070. bottom: 42.82 / 558.356
  22071. }
  22072. },
  22073. dick: {
  22074. height: math.unit(7 / 5, "feet"),
  22075. name: "Dick",
  22076. image: {
  22077. source: "./media/characters/reban/dick.svg"
  22078. }
  22079. },
  22080. },
  22081. [
  22082. {
  22083. name: "Natural Height",
  22084. height: math.unit(7 + 2 / 12, "feet")
  22085. },
  22086. {
  22087. name: "Macro",
  22088. height: math.unit(500, "feet"),
  22089. default: true
  22090. },
  22091. {
  22092. name: "Canon Height",
  22093. height: math.unit(50, "AU")
  22094. },
  22095. ]
  22096. ))
  22097. characterMakers.push(() => makeCharacter(
  22098. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22099. {
  22100. front: {
  22101. height: math.unit(6, "feet"),
  22102. weight: math.unit(150, "lb"),
  22103. name: "Front",
  22104. image: {
  22105. source: "./media/characters/terrance-keayes/front.svg",
  22106. extra: 1.005,
  22107. bottom: 151 / 1615
  22108. }
  22109. },
  22110. side: {
  22111. height: math.unit(6, "feet"),
  22112. weight: math.unit(150, "lb"),
  22113. name: "Side",
  22114. image: {
  22115. source: "./media/characters/terrance-keayes/side.svg",
  22116. extra: 1.005,
  22117. bottom: 129.4 / 1544
  22118. }
  22119. },
  22120. back: {
  22121. height: math.unit(6, "feet"),
  22122. weight: math.unit(150, "lb"),
  22123. name: "Back",
  22124. image: {
  22125. source: "./media/characters/terrance-keayes/back.svg",
  22126. extra: 1.005,
  22127. bottom: 58.4 / 1557.3
  22128. }
  22129. },
  22130. dick: {
  22131. height: math.unit(6 * 0.208, "feet"),
  22132. name: "Dick",
  22133. image: {
  22134. source: "./media/characters/terrance-keayes/dick.svg"
  22135. }
  22136. },
  22137. },
  22138. [
  22139. {
  22140. name: "Canon Height",
  22141. height: math.unit(35, "miles"),
  22142. default: true
  22143. },
  22144. ]
  22145. ))
  22146. characterMakers.push(() => makeCharacter(
  22147. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22148. {
  22149. front: {
  22150. height: math.unit(6, "feet"),
  22151. weight: math.unit(150, "lb"),
  22152. name: "Front",
  22153. image: {
  22154. source: "./media/characters/ofelia/front.svg",
  22155. extra: 546 / 541,
  22156. bottom: 39 / 583
  22157. }
  22158. },
  22159. back: {
  22160. height: math.unit(6, "feet"),
  22161. weight: math.unit(150, "lb"),
  22162. name: "Back",
  22163. image: {
  22164. source: "./media/characters/ofelia/back.svg",
  22165. extra: 564 / 559.5,
  22166. bottom: 8.69 / 573.02
  22167. }
  22168. },
  22169. maw: {
  22170. height: math.unit(1, "feet"),
  22171. name: "Maw",
  22172. image: {
  22173. source: "./media/characters/ofelia/maw.svg"
  22174. }
  22175. },
  22176. foot: {
  22177. height: math.unit(1.949, "feet"),
  22178. name: "Foot",
  22179. image: {
  22180. source: "./media/characters/ofelia/foot.svg"
  22181. }
  22182. },
  22183. },
  22184. [
  22185. {
  22186. name: "Canon Height",
  22187. height: math.unit(2000, "miles"),
  22188. default: true
  22189. },
  22190. ]
  22191. ))
  22192. characterMakers.push(() => makeCharacter(
  22193. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22194. {
  22195. front: {
  22196. height: math.unit(6, "feet"),
  22197. weight: math.unit(150, "lb"),
  22198. name: "Front",
  22199. image: {
  22200. source: "./media/characters/samuel/front.svg",
  22201. extra: 265 / 258,
  22202. bottom: 2 / 266.1566
  22203. }
  22204. },
  22205. },
  22206. [
  22207. {
  22208. name: "Macro",
  22209. height: math.unit(100, "feet"),
  22210. default: true
  22211. },
  22212. {
  22213. name: "Full Size",
  22214. height: math.unit(1000, "miles")
  22215. },
  22216. ]
  22217. ))
  22218. characterMakers.push(() => makeCharacter(
  22219. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22220. {
  22221. front: {
  22222. height: math.unit(6, "feet"),
  22223. weight: math.unit(300, "lb"),
  22224. name: "Front",
  22225. image: {
  22226. source: "./media/characters/beishir-kiel/front.svg",
  22227. extra: 569 / 547,
  22228. bottom: 41.9 / 609
  22229. }
  22230. },
  22231. maw: {
  22232. height: math.unit(6 * 0.202, "feet"),
  22233. name: "Maw",
  22234. image: {
  22235. source: "./media/characters/beishir-kiel/maw.svg"
  22236. }
  22237. },
  22238. },
  22239. [
  22240. {
  22241. name: "Macro",
  22242. height: math.unit(300, "feet"),
  22243. default: true
  22244. },
  22245. ]
  22246. ))
  22247. characterMakers.push(() => makeCharacter(
  22248. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22249. {
  22250. front: {
  22251. height: math.unit(5 + 7/12, "feet"),
  22252. weight: math.unit(120, "lb"),
  22253. name: "Front",
  22254. image: {
  22255. source: "./media/characters/logan-grey/front.svg",
  22256. extra: 1836/1738,
  22257. bottom: 108/1944
  22258. }
  22259. },
  22260. back: {
  22261. height: math.unit(5 + 7/12, "feet"),
  22262. weight: math.unit(120, "lb"),
  22263. name: "Back",
  22264. image: {
  22265. source: "./media/characters/logan-grey/back.svg",
  22266. extra: 1880/1794,
  22267. bottom: 24/1904
  22268. }
  22269. },
  22270. frontSfw: {
  22271. height: math.unit(5 + 7/12, "feet"),
  22272. weight: math.unit(120, "lb"),
  22273. name: "Front (SFW)",
  22274. image: {
  22275. source: "./media/characters/logan-grey/front-sfw.svg",
  22276. extra: 1836/1738,
  22277. bottom: 108/1944
  22278. }
  22279. },
  22280. backSfw: {
  22281. height: math.unit(5 + 7/12, "feet"),
  22282. weight: math.unit(120, "lb"),
  22283. name: "Back (SFW)",
  22284. image: {
  22285. source: "./media/characters/logan-grey/back-sfw.svg",
  22286. extra: 1880/1794,
  22287. bottom: 24/1904
  22288. }
  22289. },
  22290. hands: {
  22291. height: math.unit(0.84, "feet"),
  22292. name: "Hands",
  22293. image: {
  22294. source: "./media/characters/logan-grey/hands.svg"
  22295. }
  22296. },
  22297. paws: {
  22298. height: math.unit(0.72, "feet"),
  22299. name: "Paws",
  22300. image: {
  22301. source: "./media/characters/logan-grey/paws.svg"
  22302. }
  22303. },
  22304. cock: {
  22305. height: math.unit(1.45, "feet"),
  22306. name: "Cock",
  22307. image: {
  22308. source: "./media/characters/logan-grey/cock.svg"
  22309. }
  22310. },
  22311. cockAlt: {
  22312. height: math.unit(1.437, "feet"),
  22313. name: "Cock (alt)",
  22314. image: {
  22315. source: "./media/characters/logan-grey/cock-alt.svg"
  22316. }
  22317. },
  22318. },
  22319. [
  22320. {
  22321. name: "Normal",
  22322. height: math.unit(5 + 8 / 12, "feet")
  22323. },
  22324. {
  22325. name: "The 500 Foot Femboy",
  22326. height: math.unit(500, "feet"),
  22327. default: true
  22328. },
  22329. {
  22330. name: "Megmacro",
  22331. height: math.unit(20, "miles")
  22332. },
  22333. ]
  22334. ))
  22335. characterMakers.push(() => makeCharacter(
  22336. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22337. {
  22338. front: {
  22339. height: math.unit(8 + 2 / 12, "feet"),
  22340. weight: math.unit(275, "lb"),
  22341. name: "Front",
  22342. image: {
  22343. source: "./media/characters/draganta/front.svg",
  22344. extra: 1177 / 1135,
  22345. bottom: 33.46 / 1212.1
  22346. }
  22347. },
  22348. },
  22349. [
  22350. {
  22351. name: "Normal",
  22352. height: math.unit(8 + 6 / 12, "feet"),
  22353. default: true
  22354. },
  22355. {
  22356. name: "Macro",
  22357. height: math.unit(150, "feet")
  22358. },
  22359. {
  22360. name: "Megamacro",
  22361. height: math.unit(1000, "miles")
  22362. },
  22363. ]
  22364. ))
  22365. characterMakers.push(() => makeCharacter(
  22366. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22367. {
  22368. front: {
  22369. height: math.unit(1.72, "m"),
  22370. weight: math.unit(80, "lb"),
  22371. name: "Front",
  22372. image: {
  22373. source: "./media/characters/voski/front.svg",
  22374. extra: 2076.22 / 2022.4,
  22375. bottom: 102.7 / 2177.3866
  22376. }
  22377. },
  22378. frontNsfw: {
  22379. height: math.unit(1.72, "m"),
  22380. weight: math.unit(80, "lb"),
  22381. name: "Front (NSFW)",
  22382. image: {
  22383. source: "./media/characters/voski/front-nsfw.svg",
  22384. extra: 2076.22 / 2022.4,
  22385. bottom: 102.7 / 2177.3866
  22386. }
  22387. },
  22388. back: {
  22389. height: math.unit(1.72, "m"),
  22390. weight: math.unit(80, "lb"),
  22391. name: "Back",
  22392. image: {
  22393. source: "./media/characters/voski/back.svg",
  22394. extra: 2104 / 2051,
  22395. bottom: 10.45 / 2113.63
  22396. }
  22397. },
  22398. },
  22399. [
  22400. {
  22401. name: "Normal",
  22402. height: math.unit(1.72, "m")
  22403. },
  22404. {
  22405. name: "Macro",
  22406. height: math.unit(55, "m"),
  22407. default: true
  22408. },
  22409. {
  22410. name: "Macro+",
  22411. height: math.unit(300, "m")
  22412. },
  22413. {
  22414. name: "Macro++",
  22415. height: math.unit(700, "m")
  22416. },
  22417. {
  22418. name: "Macro+++",
  22419. height: math.unit(4500, "m")
  22420. },
  22421. {
  22422. name: "Macro++++",
  22423. height: math.unit(45, "km")
  22424. },
  22425. {
  22426. name: "Macro+++++",
  22427. height: math.unit(1220, "km")
  22428. },
  22429. ]
  22430. ))
  22431. characterMakers.push(() => makeCharacter(
  22432. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22433. {
  22434. front: {
  22435. height: math.unit(2.3, "m"),
  22436. weight: math.unit(304, "kg"),
  22437. name: "Front",
  22438. image: {
  22439. source: "./media/characters/icowom-lee/front.svg",
  22440. extra: 985 / 955,
  22441. bottom: 25.4 / 1012
  22442. }
  22443. },
  22444. fronttentacles: {
  22445. height: math.unit(2.3, "m"),
  22446. weight: math.unit(304, "kg"),
  22447. name: "Front-tentacles",
  22448. image: {
  22449. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22450. extra: 985 / 955,
  22451. bottom: 25.4 / 1012
  22452. }
  22453. },
  22454. back: {
  22455. height: math.unit(2.3, "m"),
  22456. weight: math.unit(304, "kg"),
  22457. name: "Back",
  22458. image: {
  22459. source: "./media/characters/icowom-lee/back.svg",
  22460. extra: 975 / 954,
  22461. bottom: 9.5 / 985
  22462. }
  22463. },
  22464. backtentacles: {
  22465. height: math.unit(2.3, "m"),
  22466. weight: math.unit(304, "kg"),
  22467. name: "Back-tentacles",
  22468. image: {
  22469. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22470. extra: 975 / 954,
  22471. bottom: 9.5 / 985
  22472. }
  22473. },
  22474. frontDressed: {
  22475. height: math.unit(2.3, "m"),
  22476. weight: math.unit(304, "kg"),
  22477. name: "Front (Dressed)",
  22478. image: {
  22479. source: "./media/characters/icowom-lee/front-dressed.svg",
  22480. extra: 3076 / 2933,
  22481. bottom: 51.4 / 3125.1889
  22482. }
  22483. },
  22484. rump: {
  22485. height: math.unit(0.776, "meters"),
  22486. name: "Rump",
  22487. image: {
  22488. source: "./media/characters/icowom-lee/rump.svg"
  22489. }
  22490. },
  22491. genitals: {
  22492. height: math.unit(0.78, "meters"),
  22493. name: "Genitals",
  22494. image: {
  22495. source: "./media/characters/icowom-lee/genitals.svg"
  22496. }
  22497. },
  22498. },
  22499. [
  22500. {
  22501. name: "Normal",
  22502. height: math.unit(2.3, "meters"),
  22503. default: true
  22504. },
  22505. {
  22506. name: "Macro",
  22507. height: math.unit(94, "meters"),
  22508. default: true
  22509. },
  22510. ]
  22511. ))
  22512. characterMakers.push(() => makeCharacter(
  22513. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22514. {
  22515. front: {
  22516. height: math.unit(22, "meters"),
  22517. weight: math.unit(21000, "kg"),
  22518. name: "Front",
  22519. image: {
  22520. source: "./media/characters/shock-diamond/front.svg",
  22521. extra: 2204 / 2053,
  22522. bottom: 65 / 2239.47
  22523. }
  22524. },
  22525. frontNude: {
  22526. height: math.unit(22, "meters"),
  22527. weight: math.unit(21000, "kg"),
  22528. name: "Front (Nude)",
  22529. image: {
  22530. source: "./media/characters/shock-diamond/front-nude.svg",
  22531. extra: 2514 / 2285,
  22532. bottom: 13 / 2527.56
  22533. }
  22534. },
  22535. },
  22536. [
  22537. {
  22538. name: "Normal",
  22539. height: math.unit(3, "meters")
  22540. },
  22541. {
  22542. name: "Macro",
  22543. height: math.unit(22, "meters"),
  22544. default: true
  22545. },
  22546. ]
  22547. ))
  22548. characterMakers.push(() => makeCharacter(
  22549. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22550. {
  22551. front: {
  22552. height: math.unit(5 + 4 / 12, "feet"),
  22553. weight: math.unit(120, "lb"),
  22554. name: "Front",
  22555. image: {
  22556. source: "./media/characters/rory/front.svg",
  22557. extra: 1318/1241,
  22558. bottom: 42/1360
  22559. }
  22560. },
  22561. back: {
  22562. height: math.unit(5 + 4 / 12, "feet"),
  22563. weight: math.unit(120, "lb"),
  22564. name: "Back",
  22565. image: {
  22566. source: "./media/characters/rory/back.svg",
  22567. extra: 1318/1241,
  22568. bottom: 42/1360
  22569. }
  22570. },
  22571. butt: {
  22572. height: math.unit(1.74, "feet"),
  22573. name: "Butt",
  22574. image: {
  22575. source: "./media/characters/rory/butt.svg"
  22576. }
  22577. },
  22578. dick: {
  22579. height: math.unit(1.02, "feet"),
  22580. name: "Dick",
  22581. image: {
  22582. source: "./media/characters/rory/dick.svg"
  22583. }
  22584. },
  22585. paws: {
  22586. height: math.unit(1, "feet"),
  22587. name: "Paws",
  22588. image: {
  22589. source: "./media/characters/rory/paws.svg"
  22590. }
  22591. },
  22592. frontAlt: {
  22593. height: math.unit(5 + 4 / 12, "feet"),
  22594. weight: math.unit(120, "lb"),
  22595. name: "Front (Alt)",
  22596. image: {
  22597. source: "./media/characters/rory/front-alt.svg",
  22598. extra: 589 / 556,
  22599. bottom: 45.7 / 635.76
  22600. }
  22601. },
  22602. frontAltNude: {
  22603. height: math.unit(5 + 4 / 12, "feet"),
  22604. weight: math.unit(120, "lb"),
  22605. name: "Front (Alt, Nude)",
  22606. image: {
  22607. source: "./media/characters/rory/front-alt-nude.svg",
  22608. extra: 589 / 556,
  22609. bottom: 45.7 / 635.76
  22610. }
  22611. },
  22612. side: {
  22613. height: math.unit(5 + 4 / 12, "feet"),
  22614. weight: math.unit(120, "lb"),
  22615. name: "Side",
  22616. image: {
  22617. source: "./media/characters/rory/side.svg",
  22618. extra: 597 / 564,
  22619. bottom: 55 / 653
  22620. }
  22621. },
  22622. backAlt: {
  22623. height: math.unit(5 + 4 / 12, "feet"),
  22624. weight: math.unit(120, "lb"),
  22625. name: "Back (Alt)",
  22626. image: {
  22627. source: "./media/characters/rory/back-alt.svg",
  22628. extra: 620 / 585,
  22629. bottom: 8.86 / 630.43
  22630. }
  22631. },
  22632. dickAlt: {
  22633. height: math.unit(0.86, "feet"),
  22634. name: "Dick (Alt)",
  22635. image: {
  22636. source: "./media/characters/rory/dick-alt.svg"
  22637. }
  22638. },
  22639. },
  22640. [
  22641. {
  22642. name: "Normal",
  22643. height: math.unit(5 + 4 / 12, "feet"),
  22644. default: true
  22645. },
  22646. {
  22647. name: "Macro",
  22648. height: math.unit(100, "feet")
  22649. },
  22650. {
  22651. name: "Macro+",
  22652. height: math.unit(140, "feet")
  22653. },
  22654. {
  22655. name: "Macro++",
  22656. height: math.unit(300, "feet")
  22657. },
  22658. ]
  22659. ))
  22660. characterMakers.push(() => makeCharacter(
  22661. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22662. {
  22663. front: {
  22664. height: math.unit(5 + 9 / 12, "feet"),
  22665. weight: math.unit(190, "lb"),
  22666. name: "Front",
  22667. image: {
  22668. source: "./media/characters/sprisk/front.svg",
  22669. extra: 1225 / 1180,
  22670. bottom: 42.7 / 1266.4
  22671. }
  22672. },
  22673. frontNsfw: {
  22674. height: math.unit(5 + 9 / 12, "feet"),
  22675. weight: math.unit(190, "lb"),
  22676. name: "Front (NSFW)",
  22677. image: {
  22678. source: "./media/characters/sprisk/front-nsfw.svg",
  22679. extra: 1225 / 1180,
  22680. bottom: 42.7 / 1266.4
  22681. }
  22682. },
  22683. back: {
  22684. height: math.unit(5 + 9 / 12, "feet"),
  22685. weight: math.unit(190, "lb"),
  22686. name: "Back",
  22687. image: {
  22688. source: "./media/characters/sprisk/back.svg",
  22689. extra: 1247 / 1200,
  22690. bottom: 5.6 / 1253.04
  22691. }
  22692. },
  22693. },
  22694. [
  22695. {
  22696. name: "Tiny",
  22697. height: math.unit(2, "inches")
  22698. },
  22699. {
  22700. name: "Normal",
  22701. height: math.unit(5 + 9 / 12, "feet"),
  22702. default: true
  22703. },
  22704. {
  22705. name: "Mini Macro",
  22706. height: math.unit(18, "feet")
  22707. },
  22708. {
  22709. name: "Macro",
  22710. height: math.unit(100, "feet")
  22711. },
  22712. {
  22713. name: "MACRO",
  22714. height: math.unit(50, "miles")
  22715. },
  22716. {
  22717. name: "M A C R O",
  22718. height: math.unit(300, "miles")
  22719. },
  22720. ]
  22721. ))
  22722. characterMakers.push(() => makeCharacter(
  22723. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22724. {
  22725. side: {
  22726. height: math.unit(15.6, "meters"),
  22727. weight: math.unit(700000, "kg"),
  22728. name: "Side",
  22729. image: {
  22730. source: "./media/characters/bunsen/side.svg",
  22731. extra: 1644 / 358
  22732. }
  22733. },
  22734. foot: {
  22735. height: math.unit(1.611 * 1644 / 358, "meter"),
  22736. name: "Foot",
  22737. image: {
  22738. source: "./media/characters/bunsen/foot.svg"
  22739. }
  22740. },
  22741. },
  22742. [
  22743. {
  22744. name: "Small",
  22745. height: math.unit(10, "feet")
  22746. },
  22747. {
  22748. name: "Normal",
  22749. height: math.unit(15.6, "meters"),
  22750. default: true
  22751. },
  22752. ]
  22753. ))
  22754. characterMakers.push(() => makeCharacter(
  22755. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22756. {
  22757. front: {
  22758. height: math.unit(4 + 11 / 12, "feet"),
  22759. weight: math.unit(140, "lb"),
  22760. name: "Front",
  22761. image: {
  22762. source: "./media/characters/sesh/front.svg",
  22763. extra: 3420 / 3231,
  22764. bottom: 72 / 3949.5
  22765. }
  22766. },
  22767. },
  22768. [
  22769. {
  22770. name: "Normal",
  22771. height: math.unit(4 + 11 / 12, "feet")
  22772. },
  22773. {
  22774. name: "Grown",
  22775. height: math.unit(15, "feet"),
  22776. default: true
  22777. },
  22778. {
  22779. name: "Macro",
  22780. height: math.unit(1500, "feet")
  22781. },
  22782. {
  22783. name: "Megamacro",
  22784. height: math.unit(30, "miles")
  22785. },
  22786. {
  22787. name: "Continental",
  22788. height: math.unit(3000, "miles")
  22789. },
  22790. {
  22791. name: "Gravity Mass",
  22792. height: math.unit(300000, "miles")
  22793. },
  22794. {
  22795. name: "Planet Buster",
  22796. height: math.unit(30000000, "miles")
  22797. },
  22798. {
  22799. name: "Big",
  22800. height: math.unit(3000000000, "miles")
  22801. },
  22802. ]
  22803. ))
  22804. characterMakers.push(() => makeCharacter(
  22805. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22806. {
  22807. front: {
  22808. height: math.unit(9, "feet"),
  22809. weight: math.unit(350, "lb"),
  22810. name: "Front",
  22811. image: {
  22812. source: "./media/characters/pepper/front.svg",
  22813. extra: 1448 / 1312,
  22814. bottom: 9.4 / 1457.88
  22815. }
  22816. },
  22817. back: {
  22818. height: math.unit(9, "feet"),
  22819. weight: math.unit(350, "lb"),
  22820. name: "Back",
  22821. image: {
  22822. source: "./media/characters/pepper/back.svg",
  22823. extra: 1423 / 1300,
  22824. bottom: 4.6 / 1429
  22825. }
  22826. },
  22827. maw: {
  22828. height: math.unit(0.932, "feet"),
  22829. name: "Maw",
  22830. image: {
  22831. source: "./media/characters/pepper/maw.svg"
  22832. }
  22833. },
  22834. },
  22835. [
  22836. {
  22837. name: "Normal",
  22838. height: math.unit(9, "feet"),
  22839. default: true
  22840. },
  22841. ]
  22842. ))
  22843. characterMakers.push(() => makeCharacter(
  22844. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22845. {
  22846. front: {
  22847. height: math.unit(6, "feet"),
  22848. weight: math.unit(150, "lb"),
  22849. name: "Front",
  22850. image: {
  22851. source: "./media/characters/maelstrom/front.svg",
  22852. extra: 2100 / 1883,
  22853. bottom: 94 / 2196.7
  22854. }
  22855. },
  22856. },
  22857. [
  22858. {
  22859. name: "Less Kaiju",
  22860. height: math.unit(200, "feet")
  22861. },
  22862. {
  22863. name: "Kaiju",
  22864. height: math.unit(400, "feet"),
  22865. default: true
  22866. },
  22867. {
  22868. name: "Kaiju-er",
  22869. height: math.unit(600, "feet")
  22870. },
  22871. ]
  22872. ))
  22873. characterMakers.push(() => makeCharacter(
  22874. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22875. {
  22876. front: {
  22877. height: math.unit(6 + 5 / 12, "feet"),
  22878. weight: math.unit(180, "lb"),
  22879. name: "Front",
  22880. image: {
  22881. source: "./media/characters/lexir/front.svg",
  22882. extra: 180 / 172,
  22883. bottom: 12 / 192
  22884. }
  22885. },
  22886. back: {
  22887. height: math.unit(6 + 5 / 12, "feet"),
  22888. weight: math.unit(180, "lb"),
  22889. name: "Back",
  22890. image: {
  22891. source: "./media/characters/lexir/back.svg",
  22892. extra: 183.84 / 175.5,
  22893. bottom: 3.1 / 187
  22894. }
  22895. },
  22896. },
  22897. [
  22898. {
  22899. name: "Very Smal",
  22900. height: math.unit(1, "nm")
  22901. },
  22902. {
  22903. name: "Normal",
  22904. height: math.unit(6 + 5 / 12, "feet"),
  22905. default: true
  22906. },
  22907. {
  22908. name: "Macro",
  22909. height: math.unit(1, "mile")
  22910. },
  22911. {
  22912. name: "Megamacro",
  22913. height: math.unit(50, "miles")
  22914. },
  22915. ]
  22916. ))
  22917. characterMakers.push(() => makeCharacter(
  22918. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22919. {
  22920. front: {
  22921. height: math.unit(1.5, "meters"),
  22922. weight: math.unit(100, "lb"),
  22923. name: "Front",
  22924. image: {
  22925. source: "./media/characters/maksio/front.svg",
  22926. extra: 1549 / 1531,
  22927. bottom: 123.7 / 1674.5429
  22928. }
  22929. },
  22930. back: {
  22931. height: math.unit(1.5, "meters"),
  22932. weight: math.unit(100, "lb"),
  22933. name: "Back",
  22934. image: {
  22935. source: "./media/characters/maksio/back.svg",
  22936. extra: 1541 / 1509,
  22937. bottom: 97 / 1639
  22938. }
  22939. },
  22940. hand: {
  22941. height: math.unit(0.621, "feet"),
  22942. name: "Hand",
  22943. image: {
  22944. source: "./media/characters/maksio/hand.svg"
  22945. }
  22946. },
  22947. foot: {
  22948. height: math.unit(1.611, "feet"),
  22949. name: "Foot",
  22950. image: {
  22951. source: "./media/characters/maksio/foot.svg"
  22952. }
  22953. },
  22954. },
  22955. [
  22956. {
  22957. name: "Shrunken",
  22958. height: math.unit(10, "cm")
  22959. },
  22960. {
  22961. name: "Normal",
  22962. height: math.unit(150, "cm"),
  22963. default: true
  22964. },
  22965. ]
  22966. ))
  22967. characterMakers.push(() => makeCharacter(
  22968. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22969. {
  22970. front: {
  22971. height: math.unit(100, "feet"),
  22972. name: "Front",
  22973. image: {
  22974. source: "./media/characters/erza-bear/front.svg",
  22975. extra: 2449 / 2390,
  22976. bottom: 46 / 2494
  22977. }
  22978. },
  22979. back: {
  22980. height: math.unit(100, "feet"),
  22981. name: "Back",
  22982. image: {
  22983. source: "./media/characters/erza-bear/back.svg",
  22984. extra: 2489 / 2430,
  22985. bottom: 85.4 / 2480
  22986. }
  22987. },
  22988. tail: {
  22989. height: math.unit(42, "feet"),
  22990. name: "Tail",
  22991. image: {
  22992. source: "./media/characters/erza-bear/tail.svg"
  22993. }
  22994. },
  22995. tongue: {
  22996. height: math.unit(8, "feet"),
  22997. name: "Tongue",
  22998. image: {
  22999. source: "./media/characters/erza-bear/tongue.svg"
  23000. }
  23001. },
  23002. dick: {
  23003. height: math.unit(10.5, "feet"),
  23004. name: "Dick",
  23005. image: {
  23006. source: "./media/characters/erza-bear/dick.svg"
  23007. }
  23008. },
  23009. dickVertical: {
  23010. height: math.unit(16.9, "feet"),
  23011. name: "Dick (Vertical)",
  23012. image: {
  23013. source: "./media/characters/erza-bear/dick-vertical.svg"
  23014. }
  23015. },
  23016. },
  23017. [
  23018. {
  23019. name: "Macro",
  23020. height: math.unit(100, "feet"),
  23021. default: true
  23022. },
  23023. ]
  23024. ))
  23025. characterMakers.push(() => makeCharacter(
  23026. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23027. {
  23028. front: {
  23029. height: math.unit(172, "cm"),
  23030. weight: math.unit(73, "kg"),
  23031. name: "Front",
  23032. image: {
  23033. source: "./media/characters/violet-flor/front.svg",
  23034. extra: 1530 / 1442,
  23035. bottom: 61.9 / 1588.8
  23036. }
  23037. },
  23038. back: {
  23039. height: math.unit(180, "cm"),
  23040. weight: math.unit(73, "kg"),
  23041. name: "Back",
  23042. image: {
  23043. source: "./media/characters/violet-flor/back.svg",
  23044. extra: 1692 / 1630,
  23045. bottom: 20 / 1712
  23046. }
  23047. },
  23048. },
  23049. [
  23050. {
  23051. name: "Normal",
  23052. height: math.unit(172, "cm"),
  23053. default: true
  23054. },
  23055. ]
  23056. ))
  23057. characterMakers.push(() => makeCharacter(
  23058. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23059. {
  23060. front: {
  23061. height: math.unit(6, "feet"),
  23062. weight: math.unit(220, "lb"),
  23063. name: "Front",
  23064. image: {
  23065. source: "./media/characters/lynn-rhea/front.svg",
  23066. extra: 310 / 273
  23067. }
  23068. },
  23069. back: {
  23070. height: math.unit(6, "feet"),
  23071. weight: math.unit(220, "lb"),
  23072. name: "Back",
  23073. image: {
  23074. source: "./media/characters/lynn-rhea/back.svg",
  23075. extra: 310 / 273
  23076. }
  23077. },
  23078. dicks: {
  23079. height: math.unit(0.9, "feet"),
  23080. name: "Dicks",
  23081. image: {
  23082. source: "./media/characters/lynn-rhea/dicks.svg"
  23083. }
  23084. },
  23085. slit: {
  23086. height: math.unit(0.4, "feet"),
  23087. name: "Slit",
  23088. image: {
  23089. source: "./media/characters/lynn-rhea/slit.svg"
  23090. }
  23091. },
  23092. },
  23093. [
  23094. {
  23095. name: "Micro",
  23096. height: math.unit(1, "inch")
  23097. },
  23098. {
  23099. name: "Macro",
  23100. height: math.unit(60, "feet"),
  23101. default: true
  23102. },
  23103. {
  23104. name: "Megamacro",
  23105. height: math.unit(2, "miles")
  23106. },
  23107. {
  23108. name: "Gigamacro",
  23109. height: math.unit(3, "earths")
  23110. },
  23111. {
  23112. name: "Galactic",
  23113. height: math.unit(0.8, "galaxies")
  23114. },
  23115. ]
  23116. ))
  23117. characterMakers.push(() => makeCharacter(
  23118. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23119. {
  23120. front: {
  23121. height: math.unit(1600, "feet"),
  23122. weight: math.unit(85758785169, "kg"),
  23123. name: "Front",
  23124. image: {
  23125. source: "./media/characters/valathos/front.svg",
  23126. extra: 1451 / 1339
  23127. }
  23128. },
  23129. },
  23130. [
  23131. {
  23132. name: "Macro",
  23133. height: math.unit(1600, "feet"),
  23134. default: true
  23135. },
  23136. ]
  23137. ))
  23138. characterMakers.push(() => makeCharacter(
  23139. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23140. {
  23141. front: {
  23142. height: math.unit(7 + 5 / 12, "feet"),
  23143. weight: math.unit(300, "lb"),
  23144. name: "Front",
  23145. image: {
  23146. source: "./media/characters/azula/front.svg",
  23147. extra: 3208 / 2880,
  23148. bottom: 80.2 / 3277
  23149. }
  23150. },
  23151. back: {
  23152. height: math.unit(7 + 5 / 12, "feet"),
  23153. weight: math.unit(300, "lb"),
  23154. name: "Back",
  23155. image: {
  23156. source: "./media/characters/azula/back.svg",
  23157. extra: 3169 / 2822,
  23158. bottom: 150.6 / 3321
  23159. }
  23160. },
  23161. },
  23162. [
  23163. {
  23164. name: "Normal",
  23165. height: math.unit(7 + 5 / 12, "feet"),
  23166. default: true
  23167. },
  23168. {
  23169. name: "Big",
  23170. height: math.unit(20, "feet")
  23171. },
  23172. ]
  23173. ))
  23174. characterMakers.push(() => makeCharacter(
  23175. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23176. {
  23177. front: {
  23178. height: math.unit(5 + 1 / 12, "feet"),
  23179. weight: math.unit(110, "lb"),
  23180. name: "Front",
  23181. image: {
  23182. source: "./media/characters/rupert/front.svg",
  23183. extra: 1549 / 1495,
  23184. bottom: 54.2 / 1604.4
  23185. }
  23186. },
  23187. },
  23188. [
  23189. {
  23190. name: "Normal",
  23191. height: math.unit(5 + 1 / 12, "feet"),
  23192. default: true
  23193. },
  23194. ]
  23195. ))
  23196. characterMakers.push(() => makeCharacter(
  23197. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23198. {
  23199. front: {
  23200. height: math.unit(8 + 4 / 12, "feet"),
  23201. weight: math.unit(350, "lb"),
  23202. name: "Front",
  23203. image: {
  23204. source: "./media/characters/sheera-castellar/front.svg",
  23205. extra: 1957 / 1894,
  23206. bottom: 26.97 / 1975.017
  23207. }
  23208. },
  23209. side: {
  23210. height: math.unit(8 + 4 / 12, "feet"),
  23211. weight: math.unit(350, "lb"),
  23212. name: "Side",
  23213. image: {
  23214. source: "./media/characters/sheera-castellar/side.svg",
  23215. extra: 1957 / 1894
  23216. }
  23217. },
  23218. back: {
  23219. height: math.unit(8 + 4 / 12, "feet"),
  23220. weight: math.unit(350, "lb"),
  23221. name: "Back",
  23222. image: {
  23223. source: "./media/characters/sheera-castellar/back.svg",
  23224. extra: 1957 / 1894
  23225. }
  23226. },
  23227. angled: {
  23228. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23229. weight: math.unit(350, "lb"),
  23230. name: "Angled",
  23231. image: {
  23232. source: "./media/characters/sheera-castellar/angled.svg",
  23233. extra: 1807 / 1707,
  23234. bottom: 68 / 1875
  23235. }
  23236. },
  23237. genitals: {
  23238. height: math.unit(2.2, "feet"),
  23239. name: "Genitals",
  23240. image: {
  23241. source: "./media/characters/sheera-castellar/genitals.svg"
  23242. }
  23243. },
  23244. taur: {
  23245. height: math.unit(10 + 6/12, "feet"),
  23246. name: "Taur",
  23247. image: {
  23248. source: "./media/characters/sheera-castellar/taur.svg",
  23249. extra: 2017/1909,
  23250. bottom: 185/2202
  23251. }
  23252. },
  23253. },
  23254. [
  23255. {
  23256. name: "Normal",
  23257. height: math.unit(8 + 4 / 12, "feet")
  23258. },
  23259. {
  23260. name: "Macro",
  23261. height: math.unit(150, "feet"),
  23262. default: true
  23263. },
  23264. {
  23265. name: "Macro+",
  23266. height: math.unit(800, "feet")
  23267. },
  23268. ]
  23269. ))
  23270. characterMakers.push(() => makeCharacter(
  23271. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23272. {
  23273. front: {
  23274. height: math.unit(6, "feet"),
  23275. weight: math.unit(150, "lb"),
  23276. name: "Front",
  23277. image: {
  23278. source: "./media/characters/jaipur/front.svg",
  23279. extra: 3860 / 3731,
  23280. bottom: 287 / 4140
  23281. }
  23282. },
  23283. back: {
  23284. height: math.unit(6, "feet"),
  23285. weight: math.unit(150, "lb"),
  23286. name: "Back",
  23287. image: {
  23288. source: "./media/characters/jaipur/back.svg",
  23289. extra: 4060 / 3930,
  23290. bottom: 151 / 4200
  23291. }
  23292. },
  23293. },
  23294. [
  23295. {
  23296. name: "Normal",
  23297. height: math.unit(1.85, "meters"),
  23298. default: true
  23299. },
  23300. {
  23301. name: "Macro",
  23302. height: math.unit(150, "meters")
  23303. },
  23304. {
  23305. name: "Macro+",
  23306. height: math.unit(0.5, "miles")
  23307. },
  23308. {
  23309. name: "Macro++",
  23310. height: math.unit(2.5, "miles")
  23311. },
  23312. {
  23313. name: "Macro+++",
  23314. height: math.unit(12, "miles")
  23315. },
  23316. {
  23317. name: "Macro++++",
  23318. height: math.unit(120, "miles")
  23319. },
  23320. {
  23321. name: "Macro+++++",
  23322. height: math.unit(1200, "miles")
  23323. },
  23324. ]
  23325. ))
  23326. characterMakers.push(() => makeCharacter(
  23327. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23328. {
  23329. front: {
  23330. height: math.unit(6, "feet"),
  23331. weight: math.unit(150, "lb"),
  23332. name: "Front",
  23333. image: {
  23334. source: "./media/characters/sheila-wolf/front.svg",
  23335. extra: 1931 / 1808,
  23336. bottom: 29.5 / 1960
  23337. }
  23338. },
  23339. dick: {
  23340. height: math.unit(1.464, "feet"),
  23341. name: "Dick",
  23342. image: {
  23343. source: "./media/characters/sheila-wolf/dick.svg"
  23344. }
  23345. },
  23346. muzzle: {
  23347. height: math.unit(0.513, "feet"),
  23348. name: "Muzzle",
  23349. image: {
  23350. source: "./media/characters/sheila-wolf/muzzle.svg"
  23351. }
  23352. },
  23353. },
  23354. [
  23355. {
  23356. name: "Macro",
  23357. height: math.unit(70, "feet"),
  23358. default: true
  23359. },
  23360. ]
  23361. ))
  23362. characterMakers.push(() => makeCharacter(
  23363. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23364. {
  23365. front: {
  23366. height: math.unit(32, "meters"),
  23367. weight: math.unit(300000, "kg"),
  23368. name: "Front",
  23369. image: {
  23370. source: "./media/characters/almor/front.svg",
  23371. extra: 1408 / 1322,
  23372. bottom: 94.6 / 1506.5
  23373. }
  23374. },
  23375. },
  23376. [
  23377. {
  23378. name: "Macro",
  23379. height: math.unit(32, "meters"),
  23380. default: true
  23381. },
  23382. ]
  23383. ))
  23384. characterMakers.push(() => makeCharacter(
  23385. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23386. {
  23387. front: {
  23388. height: math.unit(7, "feet"),
  23389. weight: math.unit(200, "lb"),
  23390. name: "Front",
  23391. image: {
  23392. source: "./media/characters/silver/front.svg",
  23393. extra: 472.1 / 450.5,
  23394. bottom: 26.5 / 499.424
  23395. }
  23396. },
  23397. },
  23398. [
  23399. {
  23400. name: "Normal",
  23401. height: math.unit(7, "feet"),
  23402. default: true
  23403. },
  23404. {
  23405. name: "Macro",
  23406. height: math.unit(800, "feet")
  23407. },
  23408. {
  23409. name: "Megamacro",
  23410. height: math.unit(250, "miles")
  23411. },
  23412. ]
  23413. ))
  23414. characterMakers.push(() => makeCharacter(
  23415. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23416. {
  23417. front: {
  23418. height: math.unit(6, "feet"),
  23419. weight: math.unit(150, "lb"),
  23420. name: "Front",
  23421. image: {
  23422. source: "./media/characters/pliskin/front.svg",
  23423. extra: 1469 / 1359,
  23424. bottom: 70 / 1540
  23425. }
  23426. },
  23427. },
  23428. [
  23429. {
  23430. name: "Micro",
  23431. height: math.unit(3, "inches")
  23432. },
  23433. {
  23434. name: "Normal",
  23435. height: math.unit(5 + 11 / 12, "feet"),
  23436. default: true
  23437. },
  23438. {
  23439. name: "Macro",
  23440. height: math.unit(120, "feet")
  23441. },
  23442. ]
  23443. ))
  23444. characterMakers.push(() => makeCharacter(
  23445. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23446. {
  23447. front: {
  23448. height: math.unit(6, "feet"),
  23449. weight: math.unit(150, "lb"),
  23450. name: "Front",
  23451. image: {
  23452. source: "./media/characters/sammy/front.svg",
  23453. extra: 1193 / 1089,
  23454. bottom: 30.5 / 1226
  23455. }
  23456. },
  23457. },
  23458. [
  23459. {
  23460. name: "Macro",
  23461. height: math.unit(1700, "feet"),
  23462. default: true
  23463. },
  23464. {
  23465. name: "Examacro",
  23466. height: math.unit(2.5e9, "lightyears")
  23467. },
  23468. ]
  23469. ))
  23470. characterMakers.push(() => makeCharacter(
  23471. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23472. {
  23473. front: {
  23474. height: math.unit(21, "meters"),
  23475. weight: math.unit(12, "tonnes"),
  23476. name: "Front",
  23477. image: {
  23478. source: "./media/characters/kuru/front.svg",
  23479. extra: 4301 / 3785,
  23480. bottom: 371.3 / 4691
  23481. }
  23482. },
  23483. },
  23484. [
  23485. {
  23486. name: "Macro",
  23487. height: math.unit(21, "meters"),
  23488. default: true
  23489. },
  23490. ]
  23491. ))
  23492. characterMakers.push(() => makeCharacter(
  23493. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23494. {
  23495. front: {
  23496. height: math.unit(23, "meters"),
  23497. weight: math.unit(12.2, "tonnes"),
  23498. name: "Front",
  23499. image: {
  23500. source: "./media/characters/rakka/front.svg",
  23501. extra: 4670 / 4169,
  23502. bottom: 301 / 4968.7
  23503. }
  23504. },
  23505. },
  23506. [
  23507. {
  23508. name: "Macro",
  23509. height: math.unit(23, "meters"),
  23510. default: true
  23511. },
  23512. ]
  23513. ))
  23514. characterMakers.push(() => makeCharacter(
  23515. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23516. {
  23517. front: {
  23518. height: math.unit(6, "feet"),
  23519. weight: math.unit(150, "lb"),
  23520. name: "Front",
  23521. image: {
  23522. source: "./media/characters/rhys-feline/front.svg",
  23523. extra: 2488 / 2308,
  23524. bottom: 35.67 / 2519.19
  23525. }
  23526. },
  23527. },
  23528. [
  23529. {
  23530. name: "Really Small",
  23531. height: math.unit(1, "nm")
  23532. },
  23533. {
  23534. name: "Micro",
  23535. height: math.unit(4, "inches")
  23536. },
  23537. {
  23538. name: "Normal",
  23539. height: math.unit(4 + 10 / 12, "feet"),
  23540. default: true
  23541. },
  23542. {
  23543. name: "Macro",
  23544. height: math.unit(100, "feet")
  23545. },
  23546. {
  23547. name: "Megamacto",
  23548. height: math.unit(50, "miles")
  23549. },
  23550. ]
  23551. ))
  23552. characterMakers.push(() => makeCharacter(
  23553. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23554. {
  23555. side: {
  23556. height: math.unit(30, "feet"),
  23557. weight: math.unit(35000, "kg"),
  23558. name: "Side",
  23559. image: {
  23560. source: "./media/characters/alydar/side.svg",
  23561. extra: 234 / 222,
  23562. bottom: 6.5 / 241
  23563. }
  23564. },
  23565. front: {
  23566. height: math.unit(30, "feet"),
  23567. weight: math.unit(35000, "kg"),
  23568. name: "Front",
  23569. image: {
  23570. source: "./media/characters/alydar/front.svg",
  23571. extra: 223.37 / 210.2,
  23572. bottom: 22.3 / 246.76
  23573. }
  23574. },
  23575. top: {
  23576. height: math.unit(64.54, "feet"),
  23577. weight: math.unit(35000, "kg"),
  23578. name: "Top",
  23579. image: {
  23580. source: "./media/characters/alydar/top.svg"
  23581. }
  23582. },
  23583. anthro: {
  23584. height: math.unit(30, "feet"),
  23585. weight: math.unit(9000, "kg"),
  23586. name: "Anthro",
  23587. image: {
  23588. source: "./media/characters/alydar/anthro.svg",
  23589. extra: 432 / 421,
  23590. bottom: 7.18 / 440
  23591. }
  23592. },
  23593. maw: {
  23594. height: math.unit(11.693, "feet"),
  23595. name: "Maw",
  23596. image: {
  23597. source: "./media/characters/alydar/maw.svg"
  23598. }
  23599. },
  23600. head: {
  23601. height: math.unit(11.693, "feet"),
  23602. name: "Head",
  23603. image: {
  23604. source: "./media/characters/alydar/head.svg"
  23605. }
  23606. },
  23607. headAlt: {
  23608. height: math.unit(12.861, "feet"),
  23609. name: "Head (Alt)",
  23610. image: {
  23611. source: "./media/characters/alydar/head-alt.svg"
  23612. }
  23613. },
  23614. wing: {
  23615. height: math.unit(20.712, "feet"),
  23616. name: "Wing",
  23617. image: {
  23618. source: "./media/characters/alydar/wing.svg"
  23619. }
  23620. },
  23621. wingFeather: {
  23622. height: math.unit(9.662, "feet"),
  23623. name: "Wing Feather",
  23624. image: {
  23625. source: "./media/characters/alydar/wing-feather.svg"
  23626. }
  23627. },
  23628. countourFeather: {
  23629. height: math.unit(4.154, "feet"),
  23630. name: "Contour Feather",
  23631. image: {
  23632. source: "./media/characters/alydar/contour-feather.svg"
  23633. }
  23634. },
  23635. },
  23636. [
  23637. {
  23638. name: "Diplomatic",
  23639. height: math.unit(13, "feet"),
  23640. default: true
  23641. },
  23642. {
  23643. name: "Small",
  23644. height: math.unit(30, "feet")
  23645. },
  23646. {
  23647. name: "Normal",
  23648. height: math.unit(95, "feet"),
  23649. default: true
  23650. },
  23651. {
  23652. name: "Large",
  23653. height: math.unit(285, "feet")
  23654. },
  23655. {
  23656. name: "Incomprehensible",
  23657. height: math.unit(450, "megameters")
  23658. },
  23659. ]
  23660. ))
  23661. characterMakers.push(() => makeCharacter(
  23662. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23663. {
  23664. side: {
  23665. height: math.unit(11, "feet"),
  23666. weight: math.unit(1750, "kg"),
  23667. name: "Side",
  23668. image: {
  23669. source: "./media/characters/selicia/side.svg",
  23670. extra: 440 / 396,
  23671. bottom: 24.8 / 465.979
  23672. }
  23673. },
  23674. maw: {
  23675. height: math.unit(4.665, "feet"),
  23676. name: "Maw",
  23677. image: {
  23678. source: "./media/characters/selicia/maw.svg"
  23679. }
  23680. },
  23681. },
  23682. [
  23683. {
  23684. name: "Normal",
  23685. height: math.unit(11, "feet"),
  23686. default: true
  23687. },
  23688. ]
  23689. ))
  23690. characterMakers.push(() => makeCharacter(
  23691. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23692. {
  23693. side: {
  23694. height: math.unit(2 + 6 / 12, "feet"),
  23695. weight: math.unit(30, "lb"),
  23696. name: "Side",
  23697. image: {
  23698. source: "./media/characters/layla/side.svg",
  23699. extra: 244 / 188,
  23700. bottom: 18.2 / 262.1
  23701. }
  23702. },
  23703. back: {
  23704. height: math.unit(2 + 6 / 12, "feet"),
  23705. weight: math.unit(30, "lb"),
  23706. name: "Back",
  23707. image: {
  23708. source: "./media/characters/layla/back.svg",
  23709. extra: 308 / 241.5,
  23710. bottom: 8.9 / 316.8
  23711. }
  23712. },
  23713. cumming: {
  23714. height: math.unit(2 + 6 / 12, "feet"),
  23715. weight: math.unit(30, "lb"),
  23716. name: "Cumming",
  23717. image: {
  23718. source: "./media/characters/layla/cumming.svg",
  23719. extra: 342 / 279,
  23720. bottom: 595 / 938
  23721. }
  23722. },
  23723. dickFlaccid: {
  23724. height: math.unit(2.595, "feet"),
  23725. name: "Flaccid Genitals",
  23726. image: {
  23727. source: "./media/characters/layla/dick-flaccid.svg"
  23728. }
  23729. },
  23730. dickErect: {
  23731. height: math.unit(2.359, "feet"),
  23732. name: "Erect Genitals",
  23733. image: {
  23734. source: "./media/characters/layla/dick-erect.svg"
  23735. }
  23736. },
  23737. dragon: {
  23738. height: math.unit(40, "feet"),
  23739. name: "Dragon",
  23740. image: {
  23741. source: "./media/characters/layla/dragon.svg",
  23742. extra: 610/535,
  23743. bottom: 367/977
  23744. }
  23745. },
  23746. taur: {
  23747. height: math.unit(30, "feet"),
  23748. name: "Taur",
  23749. image: {
  23750. source: "./media/characters/layla/taur.svg",
  23751. extra: 1268/1199,
  23752. bottom: 112/1380
  23753. }
  23754. },
  23755. },
  23756. [
  23757. {
  23758. name: "Micro",
  23759. height: math.unit(1, "inch")
  23760. },
  23761. {
  23762. name: "Small",
  23763. height: math.unit(1, "foot")
  23764. },
  23765. {
  23766. name: "Normal",
  23767. height: math.unit(2 + 6 / 12, "feet"),
  23768. default: true
  23769. },
  23770. {
  23771. name: "Macro",
  23772. height: math.unit(200, "feet")
  23773. },
  23774. {
  23775. name: "Megamacro",
  23776. height: math.unit(1000, "miles")
  23777. },
  23778. {
  23779. name: "Planetary",
  23780. height: math.unit(8000, "miles")
  23781. },
  23782. {
  23783. name: "True Layla",
  23784. height: math.unit(200000 * 7, "multiverses")
  23785. },
  23786. ]
  23787. ))
  23788. characterMakers.push(() => makeCharacter(
  23789. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23790. {
  23791. back: {
  23792. height: math.unit(10.5, "feet"),
  23793. weight: math.unit(800, "lb"),
  23794. name: "Back",
  23795. image: {
  23796. source: "./media/characters/knox/back.svg",
  23797. extra: 1486 / 1089,
  23798. bottom: 107 / 1601.4
  23799. }
  23800. },
  23801. side: {
  23802. height: math.unit(10.5, "feet"),
  23803. weight: math.unit(800, "lb"),
  23804. name: "Side",
  23805. image: {
  23806. source: "./media/characters/knox/side.svg",
  23807. extra: 244 / 218,
  23808. bottom: 14 / 260
  23809. }
  23810. },
  23811. },
  23812. [
  23813. {
  23814. name: "Compact",
  23815. height: math.unit(10.5, "feet"),
  23816. default: true
  23817. },
  23818. {
  23819. name: "Dynamax",
  23820. height: math.unit(210, "feet")
  23821. },
  23822. {
  23823. name: "Full Macro",
  23824. height: math.unit(850, "feet")
  23825. },
  23826. ]
  23827. ))
  23828. characterMakers.push(() => makeCharacter(
  23829. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23830. {
  23831. front: {
  23832. height: math.unit(28, "feet"),
  23833. weight: math.unit(10500, "lb"),
  23834. name: "Front",
  23835. image: {
  23836. source: "./media/characters/kayda/front.svg",
  23837. extra: 1536 / 1428,
  23838. bottom: 68.7 / 1603
  23839. }
  23840. },
  23841. back: {
  23842. height: math.unit(28, "feet"),
  23843. weight: math.unit(10500, "lb"),
  23844. name: "Back",
  23845. image: {
  23846. source: "./media/characters/kayda/back.svg",
  23847. extra: 1557 / 1464,
  23848. bottom: 39.5 / 1597.49
  23849. }
  23850. },
  23851. dick: {
  23852. height: math.unit(3.858, "feet"),
  23853. name: "Dick",
  23854. image: {
  23855. source: "./media/characters/kayda/dick.svg"
  23856. }
  23857. },
  23858. },
  23859. [
  23860. {
  23861. name: "Macro",
  23862. height: math.unit(28, "feet"),
  23863. default: true
  23864. },
  23865. ]
  23866. ))
  23867. characterMakers.push(() => makeCharacter(
  23868. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23869. {
  23870. front: {
  23871. height: math.unit(10 + 11 / 12, "feet"),
  23872. weight: math.unit(1400, "lb"),
  23873. name: "Front",
  23874. image: {
  23875. source: "./media/characters/brian/front.svg",
  23876. extra: 737 / 692,
  23877. bottom: 55.4 / 785
  23878. }
  23879. },
  23880. },
  23881. [
  23882. {
  23883. name: "Normal",
  23884. height: math.unit(10 + 11 / 12, "feet"),
  23885. default: true
  23886. },
  23887. ]
  23888. ))
  23889. characterMakers.push(() => makeCharacter(
  23890. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23891. {
  23892. front: {
  23893. height: math.unit(5 + 8 / 12, "feet"),
  23894. weight: math.unit(140, "lb"),
  23895. name: "Front",
  23896. image: {
  23897. source: "./media/characters/khemri/front.svg",
  23898. extra: 4780 / 4059,
  23899. bottom: 80.1 / 4859.25
  23900. }
  23901. },
  23902. },
  23903. [
  23904. {
  23905. name: "Micro",
  23906. height: math.unit(6, "inches")
  23907. },
  23908. {
  23909. name: "Normal",
  23910. height: math.unit(5 + 8 / 12, "feet"),
  23911. default: true
  23912. },
  23913. ]
  23914. ))
  23915. characterMakers.push(() => makeCharacter(
  23916. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23917. {
  23918. front: {
  23919. height: math.unit(13, "feet"),
  23920. weight: math.unit(1700, "lb"),
  23921. name: "Front",
  23922. image: {
  23923. source: "./media/characters/felix-braveheart/front.svg",
  23924. extra: 1222 / 1157,
  23925. bottom: 53.2 / 1280
  23926. }
  23927. },
  23928. back: {
  23929. height: math.unit(13, "feet"),
  23930. weight: math.unit(1700, "lb"),
  23931. name: "Back",
  23932. image: {
  23933. source: "./media/characters/felix-braveheart/back.svg",
  23934. extra: 1277 / 1203,
  23935. bottom: 50.2 / 1327
  23936. }
  23937. },
  23938. feral: {
  23939. height: math.unit(6, "feet"),
  23940. weight: math.unit(400, "lb"),
  23941. name: "Feral",
  23942. image: {
  23943. source: "./media/characters/felix-braveheart/feral.svg",
  23944. extra: 682 / 625,
  23945. bottom: 6.9 / 688
  23946. }
  23947. },
  23948. },
  23949. [
  23950. {
  23951. name: "Normal",
  23952. height: math.unit(13, "feet"),
  23953. default: true
  23954. },
  23955. ]
  23956. ))
  23957. characterMakers.push(() => makeCharacter(
  23958. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23959. {
  23960. side: {
  23961. height: math.unit(5 + 11 / 12, "feet"),
  23962. weight: math.unit(1400, "lb"),
  23963. name: "Side",
  23964. image: {
  23965. source: "./media/characters/shadow-blade/side.svg",
  23966. extra: 1726 / 1267,
  23967. bottom: 58.4 / 1785
  23968. }
  23969. },
  23970. },
  23971. [
  23972. {
  23973. name: "Normal",
  23974. height: math.unit(5 + 11 / 12, "feet"),
  23975. default: true
  23976. },
  23977. ]
  23978. ))
  23979. characterMakers.push(() => makeCharacter(
  23980. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23981. {
  23982. front: {
  23983. height: math.unit(1 + 6 / 12, "feet"),
  23984. weight: math.unit(25, "lb"),
  23985. name: "Front",
  23986. image: {
  23987. source: "./media/characters/karla-halldor/front.svg",
  23988. extra: 1459 / 1383,
  23989. bottom: 12 / 1472
  23990. }
  23991. },
  23992. },
  23993. [
  23994. {
  23995. name: "Normal",
  23996. height: math.unit(1 + 6 / 12, "feet"),
  23997. default: true
  23998. },
  23999. ]
  24000. ))
  24001. characterMakers.push(() => makeCharacter(
  24002. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24003. {
  24004. front: {
  24005. height: math.unit(6 + 2 / 12, "feet"),
  24006. weight: math.unit(160, "lb"),
  24007. name: "Front",
  24008. image: {
  24009. source: "./media/characters/ariam/front.svg",
  24010. extra: 714 / 617,
  24011. bottom: 23.4 / 737,
  24012. }
  24013. },
  24014. squatting: {
  24015. height: math.unit(4.1, "feet"),
  24016. weight: math.unit(160, "lb"),
  24017. name: "Squatting",
  24018. image: {
  24019. source: "./media/characters/ariam/squatting.svg",
  24020. extra: 2617 / 2112,
  24021. bottom: 61.2 / 2681,
  24022. }
  24023. },
  24024. },
  24025. [
  24026. {
  24027. name: "Normal",
  24028. height: math.unit(6 + 2 / 12, "feet"),
  24029. default: true
  24030. },
  24031. {
  24032. name: "Normal+",
  24033. height: math.unit(4, "meters")
  24034. },
  24035. {
  24036. name: "Macro",
  24037. height: math.unit(50, "meters")
  24038. },
  24039. {
  24040. name: "Macro+",
  24041. height: math.unit(100, "meters")
  24042. },
  24043. {
  24044. name: "Megamacro",
  24045. height: math.unit(20, "km")
  24046. },
  24047. ]
  24048. ))
  24049. characterMakers.push(() => makeCharacter(
  24050. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24051. {
  24052. front: {
  24053. height: math.unit(1.67, "meters"),
  24054. weight: math.unit(140, "lb"),
  24055. name: "Front",
  24056. image: {
  24057. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24058. extra: 438 / 410,
  24059. bottom: 0.75 / 439
  24060. }
  24061. },
  24062. },
  24063. [
  24064. {
  24065. name: "Shrunken",
  24066. height: math.unit(7.6, "cm")
  24067. },
  24068. {
  24069. name: "Human Scale",
  24070. height: math.unit(1.67, "meters")
  24071. },
  24072. {
  24073. name: "Wolxi Scale",
  24074. height: math.unit(36.7, "meters"),
  24075. default: true
  24076. },
  24077. ]
  24078. ))
  24079. characterMakers.push(() => makeCharacter(
  24080. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24081. {
  24082. front: {
  24083. height: math.unit(1.73, "meters"),
  24084. weight: math.unit(240, "lb"),
  24085. name: "Front",
  24086. image: {
  24087. source: "./media/characters/izue-two-mothers/front.svg",
  24088. extra: 469 / 437,
  24089. bottom: 1.24 / 470.6
  24090. }
  24091. },
  24092. },
  24093. [
  24094. {
  24095. name: "Shrunken",
  24096. height: math.unit(7.86, "cm")
  24097. },
  24098. {
  24099. name: "Human Scale",
  24100. height: math.unit(1.73, "meters")
  24101. },
  24102. {
  24103. name: "Wolxi Scale",
  24104. height: math.unit(38, "meters"),
  24105. default: true
  24106. },
  24107. ]
  24108. ))
  24109. characterMakers.push(() => makeCharacter(
  24110. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24111. {
  24112. front: {
  24113. height: math.unit(1.55, "meters"),
  24114. weight: math.unit(120, "lb"),
  24115. name: "Front",
  24116. image: {
  24117. source: "./media/characters/teeku-love-shack/front.svg",
  24118. extra: 387 / 362,
  24119. bottom: 1.51 / 388
  24120. }
  24121. },
  24122. },
  24123. [
  24124. {
  24125. name: "Shrunken",
  24126. height: math.unit(7, "cm")
  24127. },
  24128. {
  24129. name: "Human Scale",
  24130. height: math.unit(1.55, "meters")
  24131. },
  24132. {
  24133. name: "Wolxi Scale",
  24134. height: math.unit(34.1, "meters"),
  24135. default: true
  24136. },
  24137. ]
  24138. ))
  24139. characterMakers.push(() => makeCharacter(
  24140. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24141. {
  24142. front: {
  24143. height: math.unit(1.83, "meters"),
  24144. weight: math.unit(135, "lb"),
  24145. name: "Front",
  24146. image: {
  24147. source: "./media/characters/dejma-the-red/front.svg",
  24148. extra: 480 / 458,
  24149. bottom: 1.8 / 482
  24150. }
  24151. },
  24152. },
  24153. [
  24154. {
  24155. name: "Shrunken",
  24156. height: math.unit(8.3, "cm")
  24157. },
  24158. {
  24159. name: "Human Scale",
  24160. height: math.unit(1.83, "meters")
  24161. },
  24162. {
  24163. name: "Wolxi Scale",
  24164. height: math.unit(40, "meters"),
  24165. default: true
  24166. },
  24167. ]
  24168. ))
  24169. characterMakers.push(() => makeCharacter(
  24170. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24171. {
  24172. front: {
  24173. height: math.unit(1.78, "meters"),
  24174. weight: math.unit(65, "kg"),
  24175. name: "Front",
  24176. image: {
  24177. source: "./media/characters/aki/front.svg",
  24178. extra: 452 / 415
  24179. }
  24180. },
  24181. frontNsfw: {
  24182. height: math.unit(1.78, "meters"),
  24183. weight: math.unit(65, "kg"),
  24184. name: "Front (NSFW)",
  24185. image: {
  24186. source: "./media/characters/aki/front-nsfw.svg",
  24187. extra: 452 / 415
  24188. }
  24189. },
  24190. back: {
  24191. height: math.unit(1.78, "meters"),
  24192. weight: math.unit(65, "kg"),
  24193. name: "Back",
  24194. image: {
  24195. source: "./media/characters/aki/back.svg",
  24196. extra: 452 / 415
  24197. }
  24198. },
  24199. rump: {
  24200. height: math.unit(2.05, "feet"),
  24201. name: "Rump",
  24202. image: {
  24203. source: "./media/characters/aki/rump.svg"
  24204. }
  24205. },
  24206. dick: {
  24207. height: math.unit(0.95, "feet"),
  24208. name: "Dick",
  24209. image: {
  24210. source: "./media/characters/aki/dick.svg"
  24211. }
  24212. },
  24213. },
  24214. [
  24215. {
  24216. name: "Micro",
  24217. height: math.unit(15, "cm")
  24218. },
  24219. {
  24220. name: "Normal",
  24221. height: math.unit(178, "cm"),
  24222. default: true
  24223. },
  24224. {
  24225. name: "Macro",
  24226. height: math.unit(214, "m")
  24227. },
  24228. {
  24229. name: "Macro+",
  24230. height: math.unit(534, "m")
  24231. },
  24232. ]
  24233. ))
  24234. characterMakers.push(() => makeCharacter(
  24235. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24236. {
  24237. front: {
  24238. height: math.unit(5 + 5 / 12, "feet"),
  24239. weight: math.unit(120, "lb"),
  24240. name: "Front",
  24241. image: {
  24242. source: "./media/characters/ari/front.svg",
  24243. extra: 714.5 / 682,
  24244. bottom: 8 / 722.5
  24245. }
  24246. },
  24247. },
  24248. [
  24249. {
  24250. name: "Normal",
  24251. height: math.unit(5 + 5 / 12, "feet")
  24252. },
  24253. {
  24254. name: "Macro",
  24255. height: math.unit(100, "feet"),
  24256. default: true
  24257. },
  24258. {
  24259. name: "Megamacro",
  24260. height: math.unit(100, "miles")
  24261. },
  24262. {
  24263. name: "Gigamacro",
  24264. height: math.unit(80000, "miles")
  24265. },
  24266. ]
  24267. ))
  24268. characterMakers.push(() => makeCharacter(
  24269. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24270. {
  24271. side: {
  24272. height: math.unit(9, "feet"),
  24273. weight: math.unit(400, "kg"),
  24274. name: "Side",
  24275. image: {
  24276. source: "./media/characters/bolt/side.svg",
  24277. extra: 1126 / 896,
  24278. bottom: 60 / 1187.3,
  24279. }
  24280. },
  24281. },
  24282. [
  24283. {
  24284. name: "Micro",
  24285. height: math.unit(5, "inches")
  24286. },
  24287. {
  24288. name: "Normal",
  24289. height: math.unit(9, "feet"),
  24290. default: true
  24291. },
  24292. {
  24293. name: "Macro",
  24294. height: math.unit(700, "feet")
  24295. },
  24296. {
  24297. name: "Max Size",
  24298. height: math.unit(1.52e22, "yottameters")
  24299. },
  24300. ]
  24301. ))
  24302. characterMakers.push(() => makeCharacter(
  24303. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24304. {
  24305. front: {
  24306. height: math.unit(4.53, "meters"),
  24307. weight: math.unit(3, "tons"),
  24308. name: "Front",
  24309. image: {
  24310. source: "./media/characters/draekon-sylviar/front.svg",
  24311. extra: 1228 / 1068,
  24312. bottom: 41 / 1270
  24313. }
  24314. },
  24315. tail: {
  24316. height: math.unit(1.772, "meter"),
  24317. name: "Tail",
  24318. image: {
  24319. source: "./media/characters/draekon-sylviar/tail.svg"
  24320. }
  24321. },
  24322. head: {
  24323. height: math.unit(1.331, "meter"),
  24324. name: "Head",
  24325. image: {
  24326. source: "./media/characters/draekon-sylviar/head.svg"
  24327. }
  24328. },
  24329. hand: {
  24330. height: math.unit(0.564, "meter"),
  24331. name: "Hand",
  24332. image: {
  24333. source: "./media/characters/draekon-sylviar/hand.svg"
  24334. }
  24335. },
  24336. foot: {
  24337. height: math.unit(0.621, "meter"),
  24338. name: "Foot",
  24339. image: {
  24340. source: "./media/characters/draekon-sylviar/foot.svg",
  24341. bottom: 32 / 324
  24342. }
  24343. },
  24344. dick: {
  24345. height: math.unit(61, "cm"),
  24346. name: "Dick",
  24347. image: {
  24348. source: "./media/characters/draekon-sylviar/dick.svg"
  24349. }
  24350. },
  24351. dickseparated: {
  24352. height: math.unit(61, "cm"),
  24353. name: "Dick-separated",
  24354. image: {
  24355. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24356. }
  24357. },
  24358. },
  24359. [
  24360. {
  24361. name: "Small",
  24362. height: math.unit(4.53 / 2, "meters"),
  24363. default: true
  24364. },
  24365. {
  24366. name: "Normal",
  24367. height: math.unit(4.53, "meters"),
  24368. default: true
  24369. },
  24370. {
  24371. name: "Large",
  24372. height: math.unit(4.53 * 2, "meters"),
  24373. },
  24374. ]
  24375. ))
  24376. characterMakers.push(() => makeCharacter(
  24377. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24378. {
  24379. front: {
  24380. height: math.unit(6 + 2 / 12, "feet"),
  24381. weight: math.unit(180, "lb"),
  24382. name: "Front",
  24383. image: {
  24384. source: "./media/characters/brawler/front.svg",
  24385. extra: 3301 / 3027,
  24386. bottom: 138 / 3439
  24387. }
  24388. },
  24389. },
  24390. [
  24391. {
  24392. name: "Normal",
  24393. height: math.unit(6 + 2 / 12, "feet"),
  24394. default: true
  24395. },
  24396. ]
  24397. ))
  24398. characterMakers.push(() => makeCharacter(
  24399. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24400. {
  24401. front: {
  24402. height: math.unit(11, "feet"),
  24403. weight: math.unit(1000, "lb"),
  24404. name: "Front",
  24405. image: {
  24406. source: "./media/characters/alex/front.svg",
  24407. bottom: 44.5 / 620
  24408. }
  24409. },
  24410. },
  24411. [
  24412. {
  24413. name: "Micro",
  24414. height: math.unit(5, "inches")
  24415. },
  24416. {
  24417. name: "Normal",
  24418. height: math.unit(11, "feet"),
  24419. default: true
  24420. },
  24421. {
  24422. name: "Macro",
  24423. height: math.unit(9.5e9, "feet")
  24424. },
  24425. {
  24426. name: "Max Size",
  24427. height: math.unit(1.4e283, "yottameters")
  24428. },
  24429. ]
  24430. ))
  24431. characterMakers.push(() => makeCharacter(
  24432. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24433. {
  24434. female: {
  24435. height: math.unit(29.9, "m"),
  24436. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24437. name: "Female",
  24438. image: {
  24439. source: "./media/characters/zenari/female.svg",
  24440. extra: 3281.6 / 3217,
  24441. bottom: 72.2 / 3353
  24442. }
  24443. },
  24444. male: {
  24445. height: math.unit(27.7, "m"),
  24446. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24447. name: "Male",
  24448. image: {
  24449. source: "./media/characters/zenari/male.svg",
  24450. extra: 3008 / 2991,
  24451. bottom: 54.6 / 3069
  24452. }
  24453. },
  24454. },
  24455. [
  24456. {
  24457. name: "Macro",
  24458. height: math.unit(29.7, "meters"),
  24459. default: true
  24460. },
  24461. ]
  24462. ))
  24463. characterMakers.push(() => makeCharacter(
  24464. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24465. {
  24466. female: {
  24467. height: math.unit(23.8, "m"),
  24468. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24469. name: "Female",
  24470. image: {
  24471. source: "./media/characters/mactarian/female.svg",
  24472. extra: 2662 / 2569,
  24473. bottom: 73 / 2736
  24474. }
  24475. },
  24476. male: {
  24477. height: math.unit(23.8, "m"),
  24478. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24479. name: "Male",
  24480. image: {
  24481. source: "./media/characters/mactarian/male.svg",
  24482. extra: 2673 / 2600,
  24483. bottom: 76 / 2750
  24484. }
  24485. },
  24486. },
  24487. [
  24488. {
  24489. name: "Macro",
  24490. height: math.unit(23.8, "meters"),
  24491. default: true
  24492. },
  24493. ]
  24494. ))
  24495. characterMakers.push(() => makeCharacter(
  24496. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24497. {
  24498. female: {
  24499. height: math.unit(19.3, "m"),
  24500. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24501. name: "Female",
  24502. image: {
  24503. source: "./media/characters/umok/female.svg",
  24504. extra: 2186 / 2078,
  24505. bottom: 87 / 2277
  24506. }
  24507. },
  24508. male: {
  24509. height: math.unit(19.5, "m"),
  24510. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24511. name: "Male",
  24512. image: {
  24513. source: "./media/characters/umok/male.svg",
  24514. extra: 2233 / 2140,
  24515. bottom: 24.4 / 2258
  24516. }
  24517. },
  24518. },
  24519. [
  24520. {
  24521. name: "Macro",
  24522. height: math.unit(19.3, "meters"),
  24523. default: true
  24524. },
  24525. ]
  24526. ))
  24527. characterMakers.push(() => makeCharacter(
  24528. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24529. {
  24530. female: {
  24531. height: math.unit(26.15, "m"),
  24532. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24533. name: "Female",
  24534. image: {
  24535. source: "./media/characters/joraxian/female.svg",
  24536. extra: 2912 / 2824,
  24537. bottom: 36 / 2956
  24538. }
  24539. },
  24540. male: {
  24541. height: math.unit(25.4, "m"),
  24542. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24543. name: "Male",
  24544. image: {
  24545. source: "./media/characters/joraxian/male.svg",
  24546. extra: 2877 / 2721,
  24547. bottom: 82 / 2967
  24548. }
  24549. },
  24550. },
  24551. [
  24552. {
  24553. name: "Macro",
  24554. height: math.unit(26.15, "meters"),
  24555. default: true
  24556. },
  24557. ]
  24558. ))
  24559. characterMakers.push(() => makeCharacter(
  24560. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24561. {
  24562. female: {
  24563. height: math.unit(21.6, "m"),
  24564. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24565. name: "Female",
  24566. image: {
  24567. source: "./media/characters/sthara/female.svg",
  24568. extra: 2516 / 2347,
  24569. bottom: 21.5 / 2537
  24570. }
  24571. },
  24572. male: {
  24573. height: math.unit(24, "m"),
  24574. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24575. name: "Male",
  24576. image: {
  24577. source: "./media/characters/sthara/male.svg",
  24578. extra: 2732 / 2607,
  24579. bottom: 23 / 2732
  24580. }
  24581. },
  24582. },
  24583. [
  24584. {
  24585. name: "Macro",
  24586. height: math.unit(21.6, "meters"),
  24587. default: true
  24588. },
  24589. ]
  24590. ))
  24591. characterMakers.push(() => makeCharacter(
  24592. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24593. {
  24594. front: {
  24595. height: math.unit(6 + 4 / 12, "feet"),
  24596. weight: math.unit(175, "lb"),
  24597. name: "Front",
  24598. image: {
  24599. source: "./media/characters/luka-bryzant/front.svg",
  24600. extra: 311 / 289,
  24601. bottom: 4 / 315
  24602. }
  24603. },
  24604. back: {
  24605. height: math.unit(6 + 4 / 12, "feet"),
  24606. weight: math.unit(175, "lb"),
  24607. name: "Back",
  24608. image: {
  24609. source: "./media/characters/luka-bryzant/back.svg",
  24610. extra: 311 / 289,
  24611. bottom: 3.8 / 313.7
  24612. }
  24613. },
  24614. },
  24615. [
  24616. {
  24617. name: "Micro",
  24618. height: math.unit(10, "inches")
  24619. },
  24620. {
  24621. name: "Normal",
  24622. height: math.unit(6 + 4 / 12, "feet"),
  24623. default: true
  24624. },
  24625. {
  24626. name: "Large",
  24627. height: math.unit(12, "feet")
  24628. },
  24629. ]
  24630. ))
  24631. characterMakers.push(() => makeCharacter(
  24632. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24633. {
  24634. front: {
  24635. height: math.unit(5 + 7 / 12, "feet"),
  24636. weight: math.unit(185, "lb"),
  24637. name: "Front",
  24638. image: {
  24639. source: "./media/characters/aman-aquila/front.svg",
  24640. extra: 1013 / 976,
  24641. bottom: 45.6 / 1057
  24642. }
  24643. },
  24644. side: {
  24645. height: math.unit(5 + 7 / 12, "feet"),
  24646. weight: math.unit(185, "lb"),
  24647. name: "Side",
  24648. image: {
  24649. source: "./media/characters/aman-aquila/side.svg",
  24650. extra: 1054 / 1011,
  24651. bottom: 15 / 1070
  24652. }
  24653. },
  24654. back: {
  24655. height: math.unit(5 + 7 / 12, "feet"),
  24656. weight: math.unit(185, "lb"),
  24657. name: "Back",
  24658. image: {
  24659. source: "./media/characters/aman-aquila/back.svg",
  24660. extra: 1026 / 970,
  24661. bottom: 12 / 1039
  24662. }
  24663. },
  24664. head: {
  24665. height: math.unit(1.211, "feet"),
  24666. name: "Head",
  24667. image: {
  24668. source: "./media/characters/aman-aquila/head.svg",
  24669. }
  24670. },
  24671. },
  24672. [
  24673. {
  24674. name: "Minimicro",
  24675. height: math.unit(0.057, "inches")
  24676. },
  24677. {
  24678. name: "Micro",
  24679. height: math.unit(7, "inches")
  24680. },
  24681. {
  24682. name: "Mini",
  24683. height: math.unit(3 + 7 / 12, "feet")
  24684. },
  24685. {
  24686. name: "Normal",
  24687. height: math.unit(5 + 7 / 12, "feet"),
  24688. default: true
  24689. },
  24690. {
  24691. name: "Macro",
  24692. height: math.unit(157 + 7 / 12, "feet")
  24693. },
  24694. {
  24695. name: "Megamacro",
  24696. height: math.unit(1557 + 7 / 12, "feet")
  24697. },
  24698. {
  24699. name: "Gigamacro",
  24700. height: math.unit(15557 + 7 / 12, "feet")
  24701. },
  24702. ]
  24703. ))
  24704. characterMakers.push(() => makeCharacter(
  24705. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24706. {
  24707. front: {
  24708. height: math.unit(3 + 2 / 12, "inches"),
  24709. weight: math.unit(0.3, "ounces"),
  24710. name: "Front",
  24711. image: {
  24712. source: "./media/characters/hiphae/front.svg",
  24713. extra: 1931 / 1683,
  24714. bottom: 24 / 1955
  24715. }
  24716. },
  24717. },
  24718. [
  24719. {
  24720. name: "Normal",
  24721. height: math.unit(3 + 1 / 2, "inches"),
  24722. default: true
  24723. },
  24724. ]
  24725. ))
  24726. characterMakers.push(() => makeCharacter(
  24727. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24728. {
  24729. front: {
  24730. height: math.unit(5 + 10 / 12, "feet"),
  24731. weight: math.unit(165, "lb"),
  24732. name: "Front",
  24733. image: {
  24734. source: "./media/characters/nicky/front.svg",
  24735. extra: 3144 / 2886,
  24736. bottom: 45.6 / 3192
  24737. }
  24738. },
  24739. back: {
  24740. height: math.unit(5 + 10 / 12, "feet"),
  24741. weight: math.unit(165, "lb"),
  24742. name: "Back",
  24743. image: {
  24744. source: "./media/characters/nicky/back.svg",
  24745. extra: 3055 / 2804,
  24746. bottom: 28.4 / 3087
  24747. }
  24748. },
  24749. frontclothed: {
  24750. height: math.unit(5 + 10 / 12, "feet"),
  24751. weight: math.unit(165, "lb"),
  24752. name: "Front-clothed",
  24753. image: {
  24754. source: "./media/characters/nicky/front-clothed.svg",
  24755. extra: 3184.9 / 2926.9,
  24756. bottom: 86.5 / 3239.9
  24757. }
  24758. },
  24759. foot: {
  24760. height: math.unit(1.16, "feet"),
  24761. name: "Foot",
  24762. image: {
  24763. source: "./media/characters/nicky/foot.svg"
  24764. }
  24765. },
  24766. feet: {
  24767. height: math.unit(1.34, "feet"),
  24768. name: "Feet",
  24769. image: {
  24770. source: "./media/characters/nicky/feet.svg"
  24771. }
  24772. },
  24773. maw: {
  24774. height: math.unit(0.9, "feet"),
  24775. name: "Maw",
  24776. image: {
  24777. source: "./media/characters/nicky/maw.svg"
  24778. }
  24779. },
  24780. },
  24781. [
  24782. {
  24783. name: "Normal",
  24784. height: math.unit(5 + 10 / 12, "feet"),
  24785. default: true
  24786. },
  24787. {
  24788. name: "Macro",
  24789. height: math.unit(60, "feet")
  24790. },
  24791. {
  24792. name: "Megamacro",
  24793. height: math.unit(1, "mile")
  24794. },
  24795. ]
  24796. ))
  24797. characterMakers.push(() => makeCharacter(
  24798. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24799. {
  24800. side: {
  24801. height: math.unit(10, "feet"),
  24802. weight: math.unit(600, "lb"),
  24803. name: "Side",
  24804. image: {
  24805. source: "./media/characters/blair/side.svg",
  24806. bottom: 16.6 / 475,
  24807. extra: 458 / 431
  24808. }
  24809. },
  24810. },
  24811. [
  24812. {
  24813. name: "Micro",
  24814. height: math.unit(8, "inches")
  24815. },
  24816. {
  24817. name: "Normal",
  24818. height: math.unit(10, "feet"),
  24819. default: true
  24820. },
  24821. {
  24822. name: "Macro",
  24823. height: math.unit(180, "feet")
  24824. },
  24825. ]
  24826. ))
  24827. characterMakers.push(() => makeCharacter(
  24828. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24829. {
  24830. front: {
  24831. height: math.unit(5 + 4 / 12, "feet"),
  24832. weight: math.unit(125, "lb"),
  24833. name: "Front",
  24834. image: {
  24835. source: "./media/characters/fisher/front.svg",
  24836. extra: 444 / 390,
  24837. bottom: 2 / 444.8
  24838. }
  24839. },
  24840. },
  24841. [
  24842. {
  24843. name: "Micro",
  24844. height: math.unit(4, "inches")
  24845. },
  24846. {
  24847. name: "Normal",
  24848. height: math.unit(5 + 4 / 12, "feet"),
  24849. default: true
  24850. },
  24851. {
  24852. name: "Macro",
  24853. height: math.unit(100, "feet")
  24854. },
  24855. ]
  24856. ))
  24857. characterMakers.push(() => makeCharacter(
  24858. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24859. {
  24860. front: {
  24861. height: math.unit(6.71, "feet"),
  24862. weight: math.unit(200, "lb"),
  24863. capacity: math.unit(1000000, "people"),
  24864. name: "Front",
  24865. image: {
  24866. source: "./media/characters/gliss/front.svg",
  24867. extra: 2347 / 2231,
  24868. bottom: 113 / 2462
  24869. }
  24870. },
  24871. hammerspaceSize: {
  24872. height: math.unit(6.71 * 717, "feet"),
  24873. weight: math.unit(200, "lb"),
  24874. capacity: math.unit(1000000, "people"),
  24875. name: "Hammerspace Size",
  24876. image: {
  24877. source: "./media/characters/gliss/front.svg",
  24878. extra: 2347 / 2231,
  24879. bottom: 113 / 2462
  24880. }
  24881. },
  24882. },
  24883. [
  24884. {
  24885. name: "Normal",
  24886. height: math.unit(6.71, "feet"),
  24887. default: true
  24888. },
  24889. ]
  24890. ))
  24891. characterMakers.push(() => makeCharacter(
  24892. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24893. {
  24894. side: {
  24895. height: math.unit(1.44, "m"),
  24896. weight: math.unit(80, "kg"),
  24897. name: "Side",
  24898. image: {
  24899. source: "./media/characters/dune-anderson/side.svg",
  24900. bottom: 49 / 1426
  24901. }
  24902. },
  24903. },
  24904. [
  24905. {
  24906. name: "Wolf-sized",
  24907. height: math.unit(1.44, "meters")
  24908. },
  24909. {
  24910. name: "Normal",
  24911. height: math.unit(5.05, "meters"),
  24912. default: true
  24913. },
  24914. {
  24915. name: "Big",
  24916. height: math.unit(14.4, "meters")
  24917. },
  24918. {
  24919. name: "Huge",
  24920. height: math.unit(144, "meters")
  24921. },
  24922. ]
  24923. ))
  24924. characterMakers.push(() => makeCharacter(
  24925. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24926. {
  24927. front: {
  24928. height: math.unit(7, "feet"),
  24929. weight: math.unit(425, "lb"),
  24930. name: "Front",
  24931. image: {
  24932. source: "./media/characters/hind/front.svg",
  24933. extra: 2091 / 1860,
  24934. bottom: 129 / 2220
  24935. }
  24936. },
  24937. back: {
  24938. height: math.unit(7, "feet"),
  24939. weight: math.unit(425, "lb"),
  24940. name: "Back",
  24941. image: {
  24942. source: "./media/characters/hind/back.svg",
  24943. extra: 2091 / 1860,
  24944. bottom: 24.6 / 2309
  24945. }
  24946. },
  24947. tail: {
  24948. height: math.unit(2.8, "feet"),
  24949. name: "Tail",
  24950. image: {
  24951. source: "./media/characters/hind/tail.svg"
  24952. }
  24953. },
  24954. head: {
  24955. height: math.unit(2.55, "feet"),
  24956. name: "Head",
  24957. image: {
  24958. source: "./media/characters/hind/head.svg"
  24959. }
  24960. },
  24961. },
  24962. [
  24963. {
  24964. name: "XS",
  24965. height: math.unit(0.7, "feet")
  24966. },
  24967. {
  24968. name: "Normal",
  24969. height: math.unit(7, "feet"),
  24970. default: true
  24971. },
  24972. {
  24973. name: "XL",
  24974. height: math.unit(70, "feet")
  24975. },
  24976. ]
  24977. ))
  24978. characterMakers.push(() => makeCharacter(
  24979. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  24980. {
  24981. front: {
  24982. height: math.unit(2.1, "meters"),
  24983. weight: math.unit(150, "lb"),
  24984. name: "Front",
  24985. image: {
  24986. source: "./media/characters/tharquench-sizestealer/front.svg",
  24987. extra: 1605/1470,
  24988. bottom: 36/1641
  24989. }
  24990. },
  24991. frontAlt: {
  24992. height: math.unit(2.1, "meters"),
  24993. weight: math.unit(150, "lb"),
  24994. name: "Front (Alt)",
  24995. image: {
  24996. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  24997. extra: 2318 / 2063,
  24998. bottom: 93.4 / 2410
  24999. }
  25000. },
  25001. },
  25002. [
  25003. {
  25004. name: "Nano",
  25005. height: math.unit(1, "mm")
  25006. },
  25007. {
  25008. name: "Micro",
  25009. height: math.unit(1, "cm")
  25010. },
  25011. {
  25012. name: "Normal",
  25013. height: math.unit(2.1, "meters"),
  25014. default: true
  25015. },
  25016. ]
  25017. ))
  25018. characterMakers.push(() => makeCharacter(
  25019. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25020. {
  25021. front: {
  25022. height: math.unit(7 + 5 / 12, "feet"),
  25023. weight: math.unit(357, "lb"),
  25024. name: "Front",
  25025. image: {
  25026. source: "./media/characters/solex-draconov/front.svg",
  25027. extra: 1993 / 1865,
  25028. bottom: 117 / 2111
  25029. }
  25030. },
  25031. },
  25032. [
  25033. {
  25034. name: "Natural Height",
  25035. height: math.unit(7 + 5 / 12, "feet"),
  25036. default: true
  25037. },
  25038. {
  25039. name: "Macro",
  25040. height: math.unit(350, "feet")
  25041. },
  25042. {
  25043. name: "Macro+",
  25044. height: math.unit(1000, "feet")
  25045. },
  25046. {
  25047. name: "Megamacro",
  25048. height: math.unit(20, "km")
  25049. },
  25050. {
  25051. name: "Megamacro+",
  25052. height: math.unit(1000, "km")
  25053. },
  25054. {
  25055. name: "Gigamacro",
  25056. height: math.unit(2.5, "Gm")
  25057. },
  25058. {
  25059. name: "Teramacro",
  25060. height: math.unit(15, "Tm")
  25061. },
  25062. {
  25063. name: "Galactic",
  25064. height: math.unit(30, "Zm")
  25065. },
  25066. {
  25067. name: "Universal",
  25068. height: math.unit(21000, "Ym")
  25069. },
  25070. {
  25071. name: "Omniversal",
  25072. height: math.unit(9.861e50, "Ym")
  25073. },
  25074. {
  25075. name: "Existential",
  25076. height: math.unit(1e300, "meters")
  25077. },
  25078. ]
  25079. ))
  25080. characterMakers.push(() => makeCharacter(
  25081. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25082. {
  25083. side: {
  25084. height: math.unit(25, "feet"),
  25085. weight: math.unit(90000, "lb"),
  25086. name: "Side",
  25087. image: {
  25088. source: "./media/characters/mandarax/side.svg",
  25089. extra: 614 / 332,
  25090. bottom: 55 / 630
  25091. }
  25092. },
  25093. head: {
  25094. height: math.unit(11.4, "feet"),
  25095. name: "Head",
  25096. image: {
  25097. source: "./media/characters/mandarax/head.svg"
  25098. }
  25099. },
  25100. belly: {
  25101. height: math.unit(33, "feet"),
  25102. name: "Belly",
  25103. capacity: math.unit(500, "people"),
  25104. image: {
  25105. source: "./media/characters/mandarax/belly.svg"
  25106. }
  25107. },
  25108. dick: {
  25109. height: math.unit(8.46, "feet"),
  25110. name: "Dick",
  25111. image: {
  25112. source: "./media/characters/mandarax/dick.svg"
  25113. }
  25114. },
  25115. top: {
  25116. height: math.unit(28, "meters"),
  25117. name: "Top",
  25118. image: {
  25119. source: "./media/characters/mandarax/top.svg"
  25120. }
  25121. },
  25122. },
  25123. [
  25124. {
  25125. name: "Normal",
  25126. height: math.unit(25, "feet"),
  25127. default: true
  25128. },
  25129. ]
  25130. ))
  25131. characterMakers.push(() => makeCharacter(
  25132. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25133. {
  25134. front: {
  25135. height: math.unit(5, "feet"),
  25136. weight: math.unit(90, "lb"),
  25137. name: "Front",
  25138. image: {
  25139. source: "./media/characters/pixil/front.svg",
  25140. extra: 2000 / 1618,
  25141. bottom: 12.3 / 2011
  25142. }
  25143. },
  25144. },
  25145. [
  25146. {
  25147. name: "Normal",
  25148. height: math.unit(5, "feet"),
  25149. default: true
  25150. },
  25151. {
  25152. name: "Megamacro",
  25153. height: math.unit(10, "miles"),
  25154. },
  25155. ]
  25156. ))
  25157. characterMakers.push(() => makeCharacter(
  25158. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25159. {
  25160. front: {
  25161. height: math.unit(7 + 2 / 12, "feet"),
  25162. weight: math.unit(200, "lb"),
  25163. name: "Front",
  25164. image: {
  25165. source: "./media/characters/angel/front.svg",
  25166. extra: 1830 / 1737,
  25167. bottom: 22.6 / 1854,
  25168. }
  25169. },
  25170. },
  25171. [
  25172. {
  25173. name: "Normal",
  25174. height: math.unit(7 + 2 / 12, "feet"),
  25175. default: true
  25176. },
  25177. {
  25178. name: "Macro",
  25179. height: math.unit(1000, "feet")
  25180. },
  25181. {
  25182. name: "Megamacro",
  25183. height: math.unit(2, "miles")
  25184. },
  25185. {
  25186. name: "Gigamacro",
  25187. height: math.unit(20, "earths")
  25188. },
  25189. ]
  25190. ))
  25191. characterMakers.push(() => makeCharacter(
  25192. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25193. {
  25194. front: {
  25195. height: math.unit(5, "feet"),
  25196. weight: math.unit(180, "lb"),
  25197. name: "Front",
  25198. image: {
  25199. source: "./media/characters/mekana/front.svg",
  25200. extra: 1671 / 1605,
  25201. bottom: 3.5 / 1691
  25202. }
  25203. },
  25204. side: {
  25205. height: math.unit(5, "feet"),
  25206. weight: math.unit(180, "lb"),
  25207. name: "Side",
  25208. image: {
  25209. source: "./media/characters/mekana/side.svg",
  25210. extra: 1671 / 1605,
  25211. bottom: 3.5 / 1691
  25212. }
  25213. },
  25214. back: {
  25215. height: math.unit(5, "feet"),
  25216. weight: math.unit(180, "lb"),
  25217. name: "Back",
  25218. image: {
  25219. source: "./media/characters/mekana/back.svg",
  25220. extra: 1671 / 1605,
  25221. bottom: 3.5 / 1691
  25222. }
  25223. },
  25224. },
  25225. [
  25226. {
  25227. name: "Normal",
  25228. height: math.unit(5, "feet"),
  25229. default: true
  25230. },
  25231. ]
  25232. ))
  25233. characterMakers.push(() => makeCharacter(
  25234. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25235. {
  25236. front: {
  25237. height: math.unit(4 + 6 / 12, "feet"),
  25238. weight: math.unit(80, "lb"),
  25239. name: "Front",
  25240. image: {
  25241. source: "./media/characters/pixie/front.svg",
  25242. extra: 1924 / 1825,
  25243. bottom: 22.4 / 1946
  25244. }
  25245. },
  25246. },
  25247. [
  25248. {
  25249. name: "Normal",
  25250. height: math.unit(4 + 6 / 12, "feet"),
  25251. default: true
  25252. },
  25253. {
  25254. name: "Macro",
  25255. height: math.unit(40, "feet")
  25256. },
  25257. ]
  25258. ))
  25259. characterMakers.push(() => makeCharacter(
  25260. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25261. {
  25262. front: {
  25263. height: math.unit(2.1, "meters"),
  25264. weight: math.unit(200, "lb"),
  25265. name: "Front",
  25266. image: {
  25267. source: "./media/characters/the-lascivious/front.svg",
  25268. extra: 1 / 0.893,
  25269. bottom: 3.5 / 573.7
  25270. }
  25271. },
  25272. },
  25273. [
  25274. {
  25275. name: "Human Scale",
  25276. height: math.unit(2.1, "meters")
  25277. },
  25278. {
  25279. name: "Wolxi Scale",
  25280. height: math.unit(46.2, "m"),
  25281. default: true
  25282. },
  25283. {
  25284. name: "Boinker of Buildings",
  25285. height: math.unit(10, "km")
  25286. },
  25287. {
  25288. name: "Shagger of Skyscrapers",
  25289. height: math.unit(40, "km")
  25290. },
  25291. {
  25292. name: "Banger of Boroughs",
  25293. height: math.unit(4000, "km")
  25294. },
  25295. {
  25296. name: "Screwer of States",
  25297. height: math.unit(100000, "km")
  25298. },
  25299. {
  25300. name: "Pounder of Planets",
  25301. height: math.unit(2000000, "km")
  25302. },
  25303. ]
  25304. ))
  25305. characterMakers.push(() => makeCharacter(
  25306. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25307. {
  25308. front: {
  25309. height: math.unit(6, "feet"),
  25310. weight: math.unit(150, "lb"),
  25311. name: "Front",
  25312. image: {
  25313. source: "./media/characters/aj/front.svg",
  25314. extra: 2039 / 1562,
  25315. bottom: 40 / 2079
  25316. }
  25317. },
  25318. },
  25319. [
  25320. {
  25321. name: "Normal",
  25322. height: math.unit(11 + 6 / 12, "feet"),
  25323. default: true
  25324. },
  25325. {
  25326. name: "Megamacro",
  25327. height: math.unit(60, "megameters")
  25328. },
  25329. ]
  25330. ))
  25331. characterMakers.push(() => makeCharacter(
  25332. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25333. {
  25334. side: {
  25335. height: math.unit(31 + 8 / 12, "feet"),
  25336. weight: math.unit(75000, "kg"),
  25337. name: "Side",
  25338. image: {
  25339. source: "./media/characters/koros/side.svg",
  25340. extra: 1442 / 1297,
  25341. bottom: 122.7 / 1562
  25342. }
  25343. },
  25344. dicksKingsCrown: {
  25345. height: math.unit(6, "feet"),
  25346. name: "Dicks (King's Crown)",
  25347. image: {
  25348. source: "./media/characters/koros/dicks-kings-crown.svg"
  25349. }
  25350. },
  25351. dicksTailSet: {
  25352. height: math.unit(3, "feet"),
  25353. name: "Dicks (Tail Set)",
  25354. image: {
  25355. source: "./media/characters/koros/dicks-tail-set.svg"
  25356. }
  25357. },
  25358. dickCumming: {
  25359. height: math.unit(7.98, "feet"),
  25360. name: "Dick (Cumming)",
  25361. image: {
  25362. source: "./media/characters/koros/dick-cumming.svg"
  25363. }
  25364. },
  25365. dicksBack: {
  25366. height: math.unit(5.9, "feet"),
  25367. name: "Dicks (Back)",
  25368. image: {
  25369. source: "./media/characters/koros/dicks-back.svg"
  25370. }
  25371. },
  25372. dicksFront: {
  25373. height: math.unit(3.72, "feet"),
  25374. name: "Dicks (Front)",
  25375. image: {
  25376. source: "./media/characters/koros/dicks-front.svg"
  25377. }
  25378. },
  25379. dicksPeeking: {
  25380. height: math.unit(3.0, "feet"),
  25381. name: "Dicks (Peeking)",
  25382. image: {
  25383. source: "./media/characters/koros/dicks-peeking.svg"
  25384. }
  25385. },
  25386. eye: {
  25387. height: math.unit(1.7, "feet"),
  25388. name: "Eye",
  25389. image: {
  25390. source: "./media/characters/koros/eye.svg"
  25391. }
  25392. },
  25393. headFront: {
  25394. height: math.unit(11.69, "feet"),
  25395. name: "Head (Front)",
  25396. image: {
  25397. source: "./media/characters/koros/head-front.svg"
  25398. }
  25399. },
  25400. headSide: {
  25401. height: math.unit(14, "feet"),
  25402. name: "Head (Side)",
  25403. image: {
  25404. source: "./media/characters/koros/head-side.svg"
  25405. }
  25406. },
  25407. leg: {
  25408. height: math.unit(17, "feet"),
  25409. name: "Leg",
  25410. image: {
  25411. source: "./media/characters/koros/leg.svg"
  25412. }
  25413. },
  25414. mawSide: {
  25415. height: math.unit(12.8, "feet"),
  25416. name: "Maw (Side)",
  25417. image: {
  25418. source: "./media/characters/koros/maw-side.svg"
  25419. }
  25420. },
  25421. mawSpitting: {
  25422. height: math.unit(17, "feet"),
  25423. name: "Maw (Spitting)",
  25424. image: {
  25425. source: "./media/characters/koros/maw-spitting.svg"
  25426. }
  25427. },
  25428. slit: {
  25429. height: math.unit(2.8, "feet"),
  25430. name: "Slit",
  25431. image: {
  25432. source: "./media/characters/koros/slit.svg"
  25433. }
  25434. },
  25435. stomach: {
  25436. height: math.unit(6.8, "feet"),
  25437. capacity: math.unit(20, "people"),
  25438. name: "Stomach",
  25439. image: {
  25440. source: "./media/characters/koros/stomach.svg"
  25441. }
  25442. },
  25443. wingspanBottom: {
  25444. height: math.unit(114, "feet"),
  25445. name: "Wingspan (Bottom)",
  25446. image: {
  25447. source: "./media/characters/koros/wingspan-bottom.svg"
  25448. }
  25449. },
  25450. wingspanTop: {
  25451. height: math.unit(104, "feet"),
  25452. name: "Wingspan (Top)",
  25453. image: {
  25454. source: "./media/characters/koros/wingspan-top.svg"
  25455. }
  25456. },
  25457. },
  25458. [
  25459. {
  25460. name: "Normal",
  25461. height: math.unit(31 + 8 / 12, "feet"),
  25462. default: true
  25463. },
  25464. ]
  25465. ))
  25466. characterMakers.push(() => makeCharacter(
  25467. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25468. {
  25469. front: {
  25470. height: math.unit(18 + 5 / 12, "feet"),
  25471. weight: math.unit(3750, "kg"),
  25472. name: "Front",
  25473. image: {
  25474. source: "./media/characters/vexx/front.svg",
  25475. extra: 426 / 396,
  25476. bottom: 31.5 / 458
  25477. }
  25478. },
  25479. maw: {
  25480. height: math.unit(6, "feet"),
  25481. name: "Maw",
  25482. image: {
  25483. source: "./media/characters/vexx/maw.svg"
  25484. }
  25485. },
  25486. },
  25487. [
  25488. {
  25489. name: "Normal",
  25490. height: math.unit(18 + 5 / 12, "feet"),
  25491. default: true
  25492. },
  25493. ]
  25494. ))
  25495. characterMakers.push(() => makeCharacter(
  25496. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25497. {
  25498. front: {
  25499. height: math.unit(17 + 6 / 12, "feet"),
  25500. weight: math.unit(150, "lb"),
  25501. name: "Front",
  25502. image: {
  25503. source: "./media/characters/baadra/front.svg",
  25504. extra: 3137 / 2890,
  25505. bottom: 168.4 / 3305
  25506. }
  25507. },
  25508. back: {
  25509. height: math.unit(17 + 6 / 12, "feet"),
  25510. weight: math.unit(150, "lb"),
  25511. name: "Back",
  25512. image: {
  25513. source: "./media/characters/baadra/back.svg",
  25514. extra: 3142 / 2890,
  25515. bottom: 220 / 3371
  25516. }
  25517. },
  25518. head: {
  25519. height: math.unit(5.45, "feet"),
  25520. name: "Head",
  25521. image: {
  25522. source: "./media/characters/baadra/head.svg"
  25523. }
  25524. },
  25525. headAngry: {
  25526. height: math.unit(4.95, "feet"),
  25527. name: "Head (Angry)",
  25528. image: {
  25529. source: "./media/characters/baadra/head-angry.svg"
  25530. }
  25531. },
  25532. headOpen: {
  25533. height: math.unit(6, "feet"),
  25534. name: "Head (Open)",
  25535. image: {
  25536. source: "./media/characters/baadra/head-open.svg"
  25537. }
  25538. },
  25539. },
  25540. [
  25541. {
  25542. name: "Normal",
  25543. height: math.unit(17 + 6 / 12, "feet"),
  25544. default: true
  25545. },
  25546. ]
  25547. ))
  25548. characterMakers.push(() => makeCharacter(
  25549. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25550. {
  25551. front: {
  25552. height: math.unit(7 + 3 / 12, "feet"),
  25553. weight: math.unit(180, "lb"),
  25554. name: "Front",
  25555. image: {
  25556. source: "./media/characters/juri/front.svg",
  25557. extra: 1401 / 1237,
  25558. bottom: 18.5 / 1418
  25559. }
  25560. },
  25561. side: {
  25562. height: math.unit(7 + 3 / 12, "feet"),
  25563. weight: math.unit(180, "lb"),
  25564. name: "Side",
  25565. image: {
  25566. source: "./media/characters/juri/side.svg",
  25567. extra: 1424 / 1242,
  25568. bottom: 18.5 / 1447
  25569. }
  25570. },
  25571. sitting: {
  25572. height: math.unit(6, "feet"),
  25573. weight: math.unit(180, "lb"),
  25574. name: "Sitting",
  25575. image: {
  25576. source: "./media/characters/juri/sitting.svg",
  25577. extra: 1270 / 1143,
  25578. bottom: 100 / 1343
  25579. }
  25580. },
  25581. back: {
  25582. height: math.unit(7 + 3 / 12, "feet"),
  25583. weight: math.unit(180, "lb"),
  25584. name: "Back",
  25585. image: {
  25586. source: "./media/characters/juri/back.svg",
  25587. extra: 1377 / 1240,
  25588. bottom: 23.7 / 1405
  25589. }
  25590. },
  25591. maw: {
  25592. height: math.unit(2.8, "feet"),
  25593. name: "Maw",
  25594. image: {
  25595. source: "./media/characters/juri/maw.svg"
  25596. }
  25597. },
  25598. stomach: {
  25599. height: math.unit(0.89, "feet"),
  25600. capacity: math.unit(4, "liters"),
  25601. name: "Stomach",
  25602. image: {
  25603. source: "./media/characters/juri/stomach.svg"
  25604. }
  25605. },
  25606. },
  25607. [
  25608. {
  25609. name: "Normal",
  25610. height: math.unit(7 + 3 / 12, "feet"),
  25611. default: true
  25612. },
  25613. ]
  25614. ))
  25615. characterMakers.push(() => makeCharacter(
  25616. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25617. {
  25618. fox: {
  25619. height: math.unit(5 + 6 / 12, "feet"),
  25620. weight: math.unit(140, "lb"),
  25621. name: "Fox",
  25622. image: {
  25623. source: "./media/characters/maxene-sita/fox.svg",
  25624. extra: 146 / 138,
  25625. bottom: 2.1 / 148.19
  25626. }
  25627. },
  25628. foxLaying: {
  25629. height: math.unit(1.70, "feet"),
  25630. weight: math.unit(140, "lb"),
  25631. name: "Fox (Laying)",
  25632. image: {
  25633. source: "./media/characters/maxene-sita/fox-laying.svg",
  25634. extra: 910 / 572,
  25635. bottom: 71 / 981
  25636. }
  25637. },
  25638. kitsune: {
  25639. height: math.unit(10, "feet"),
  25640. weight: math.unit(800, "lb"),
  25641. name: "Kitsune",
  25642. image: {
  25643. source: "./media/characters/maxene-sita/kitsune.svg",
  25644. extra: 185 / 176,
  25645. bottom: 4.7 / 189.9
  25646. }
  25647. },
  25648. hellhound: {
  25649. height: math.unit(10, "feet"),
  25650. weight: math.unit(700, "lb"),
  25651. name: "Hellhound",
  25652. image: {
  25653. source: "./media/characters/maxene-sita/hellhound.svg",
  25654. extra: 1600 / 1545,
  25655. bottom: 81 / 1681
  25656. }
  25657. },
  25658. },
  25659. [
  25660. {
  25661. name: "Normal",
  25662. height: math.unit(5 + 6 / 12, "feet"),
  25663. default: true
  25664. },
  25665. ]
  25666. ))
  25667. characterMakers.push(() => makeCharacter(
  25668. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25669. {
  25670. front: {
  25671. height: math.unit(3 + 4 / 12, "feet"),
  25672. weight: math.unit(70, "lb"),
  25673. name: "Front",
  25674. image: {
  25675. source: "./media/characters/maia/front.svg",
  25676. extra: 227 / 219.5,
  25677. bottom: 40 / 267
  25678. }
  25679. },
  25680. back: {
  25681. height: math.unit(3 + 4 / 12, "feet"),
  25682. weight: math.unit(70, "lb"),
  25683. name: "Back",
  25684. image: {
  25685. source: "./media/characters/maia/back.svg",
  25686. extra: 237 / 225
  25687. }
  25688. },
  25689. },
  25690. [
  25691. {
  25692. name: "Normal",
  25693. height: math.unit(3 + 4 / 12, "feet"),
  25694. default: true
  25695. },
  25696. ]
  25697. ))
  25698. characterMakers.push(() => makeCharacter(
  25699. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25700. {
  25701. front: {
  25702. height: math.unit(5 + 10 / 12, "feet"),
  25703. weight: math.unit(197, "lb"),
  25704. name: "Front",
  25705. image: {
  25706. source: "./media/characters/jabaro/front.svg",
  25707. extra: 225 / 216,
  25708. bottom: 5.06 / 230
  25709. }
  25710. },
  25711. back: {
  25712. height: math.unit(5 + 10 / 12, "feet"),
  25713. weight: math.unit(197, "lb"),
  25714. name: "Back",
  25715. image: {
  25716. source: "./media/characters/jabaro/back.svg",
  25717. extra: 225 / 219,
  25718. bottom: 1.9 / 227
  25719. }
  25720. },
  25721. },
  25722. [
  25723. {
  25724. name: "Normal",
  25725. height: math.unit(5 + 10 / 12, "feet"),
  25726. default: true
  25727. },
  25728. ]
  25729. ))
  25730. characterMakers.push(() => makeCharacter(
  25731. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25732. {
  25733. front: {
  25734. height: math.unit(5 + 8 / 12, "feet"),
  25735. weight: math.unit(139, "lb"),
  25736. name: "Front",
  25737. image: {
  25738. source: "./media/characters/risa/front.svg",
  25739. extra: 270 / 260,
  25740. bottom: 11.2 / 282
  25741. }
  25742. },
  25743. back: {
  25744. height: math.unit(5 + 8 / 12, "feet"),
  25745. weight: math.unit(139, "lb"),
  25746. name: "Back",
  25747. image: {
  25748. source: "./media/characters/risa/back.svg",
  25749. extra: 264 / 255,
  25750. bottom: 4 / 268
  25751. }
  25752. },
  25753. },
  25754. [
  25755. {
  25756. name: "Normal",
  25757. height: math.unit(5 + 8 / 12, "feet"),
  25758. default: true
  25759. },
  25760. ]
  25761. ))
  25762. characterMakers.push(() => makeCharacter(
  25763. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25764. {
  25765. front: {
  25766. height: math.unit(2 + 11 / 12, "feet"),
  25767. weight: math.unit(30, "lb"),
  25768. name: "Front",
  25769. image: {
  25770. source: "./media/characters/weatley/front.svg",
  25771. bottom: 10.7 / 414,
  25772. extra: 403.5 / 362
  25773. }
  25774. },
  25775. back: {
  25776. height: math.unit(2 + 11 / 12, "feet"),
  25777. weight: math.unit(30, "lb"),
  25778. name: "Back",
  25779. image: {
  25780. source: "./media/characters/weatley/back.svg",
  25781. bottom: 10.7 / 414,
  25782. extra: 403.5 / 362
  25783. }
  25784. },
  25785. },
  25786. [
  25787. {
  25788. name: "Normal",
  25789. height: math.unit(2 + 11 / 12, "feet"),
  25790. default: true
  25791. },
  25792. ]
  25793. ))
  25794. characterMakers.push(() => makeCharacter(
  25795. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25796. {
  25797. front: {
  25798. height: math.unit(5 + 2 / 12, "feet"),
  25799. weight: math.unit(50, "kg"),
  25800. name: "Front",
  25801. image: {
  25802. source: "./media/characters/mercury-crescent/front.svg",
  25803. extra: 1088 / 1033,
  25804. bottom: 18.9 / 1109
  25805. }
  25806. },
  25807. },
  25808. [
  25809. {
  25810. name: "Normal",
  25811. height: math.unit(5 + 2 / 12, "feet"),
  25812. default: true
  25813. },
  25814. ]
  25815. ))
  25816. characterMakers.push(() => makeCharacter(
  25817. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25818. {
  25819. front: {
  25820. height: math.unit(2, "feet"),
  25821. weight: math.unit(15, "kg"),
  25822. name: "Front",
  25823. image: {
  25824. source: "./media/characters/diamond-jones/front.svg",
  25825. extra: 727/723,
  25826. bottom: 46/773
  25827. }
  25828. },
  25829. },
  25830. [
  25831. {
  25832. name: "Normal",
  25833. height: math.unit(2, "feet"),
  25834. default: true
  25835. },
  25836. ]
  25837. ))
  25838. characterMakers.push(() => makeCharacter(
  25839. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25840. {
  25841. front: {
  25842. height: math.unit(3, "feet"),
  25843. weight: math.unit(30, "kg"),
  25844. name: "Front",
  25845. image: {
  25846. source: "./media/characters/sweet-bit/front.svg",
  25847. extra: 675 / 567,
  25848. bottom: 27.7 / 703
  25849. }
  25850. },
  25851. },
  25852. [
  25853. {
  25854. name: "Normal",
  25855. height: math.unit(3, "feet"),
  25856. default: true
  25857. },
  25858. ]
  25859. ))
  25860. characterMakers.push(() => makeCharacter(
  25861. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25862. {
  25863. side: {
  25864. height: math.unit(9.178, "feet"),
  25865. weight: math.unit(500, "lb"),
  25866. name: "Side",
  25867. image: {
  25868. source: "./media/characters/umbrazen/side.svg",
  25869. extra: 1730 / 1473,
  25870. bottom: 34.6 / 1765
  25871. }
  25872. },
  25873. },
  25874. [
  25875. {
  25876. name: "Normal",
  25877. height: math.unit(9.178, "feet"),
  25878. default: true
  25879. },
  25880. ]
  25881. ))
  25882. characterMakers.push(() => makeCharacter(
  25883. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25884. {
  25885. front: {
  25886. height: math.unit(10, "feet"),
  25887. weight: math.unit(750, "lb"),
  25888. name: "Front",
  25889. image: {
  25890. source: "./media/characters/arlist/front.svg",
  25891. extra: 961 / 778,
  25892. bottom: 6.2 / 986
  25893. }
  25894. },
  25895. },
  25896. [
  25897. {
  25898. name: "Normal",
  25899. height: math.unit(10, "feet"),
  25900. default: true
  25901. },
  25902. ]
  25903. ))
  25904. characterMakers.push(() => makeCharacter(
  25905. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25906. {
  25907. front: {
  25908. height: math.unit(5 + 1 / 12, "feet"),
  25909. weight: math.unit(110, "lb"),
  25910. name: "Front",
  25911. image: {
  25912. source: "./media/characters/aradel/front.svg",
  25913. extra: 324 / 303,
  25914. bottom: 3.6 / 329.4
  25915. }
  25916. },
  25917. },
  25918. [
  25919. {
  25920. name: "Normal",
  25921. height: math.unit(5 + 1 / 12, "feet"),
  25922. default: true
  25923. },
  25924. ]
  25925. ))
  25926. characterMakers.push(() => makeCharacter(
  25927. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25928. {
  25929. front: {
  25930. height: math.unit(3 + 8 / 12, "feet"),
  25931. weight: math.unit(50, "lb"),
  25932. name: "Front",
  25933. image: {
  25934. source: "./media/characters/serryn/front.svg",
  25935. extra: 1792 / 1656,
  25936. bottom: 43.5 / 1840
  25937. }
  25938. },
  25939. },
  25940. [
  25941. {
  25942. name: "Normal",
  25943. height: math.unit(3 + 8 / 12, "feet"),
  25944. default: true
  25945. },
  25946. ]
  25947. ))
  25948. characterMakers.push(() => makeCharacter(
  25949. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25950. {
  25951. front: {
  25952. height: math.unit(7 + 10 / 12, "feet"),
  25953. weight: math.unit(255, "lb"),
  25954. name: "Front",
  25955. image: {
  25956. source: "./media/characters/xavier-thyme/front.svg",
  25957. extra: 3733 / 3642,
  25958. bottom: 131 / 3869
  25959. }
  25960. },
  25961. frontRaven: {
  25962. height: math.unit(7 + 10 / 12, "feet"),
  25963. weight: math.unit(255, "lb"),
  25964. name: "Front (Raven)",
  25965. image: {
  25966. source: "./media/characters/xavier-thyme/front-raven.svg",
  25967. extra: 4385 / 3642,
  25968. bottom: 131 / 4517
  25969. }
  25970. },
  25971. },
  25972. [
  25973. {
  25974. name: "Normal",
  25975. height: math.unit(7 + 10 / 12, "feet"),
  25976. default: true
  25977. },
  25978. ]
  25979. ))
  25980. characterMakers.push(() => makeCharacter(
  25981. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25982. {
  25983. front: {
  25984. height: math.unit(1.6, "m"),
  25985. weight: math.unit(50, "kg"),
  25986. name: "Front",
  25987. image: {
  25988. source: "./media/characters/kiki/front.svg",
  25989. extra: 4682 / 3610,
  25990. bottom: 115 / 4777
  25991. }
  25992. },
  25993. },
  25994. [
  25995. {
  25996. name: "Normal",
  25997. height: math.unit(1.6, "meters"),
  25998. default: true
  25999. },
  26000. ]
  26001. ))
  26002. characterMakers.push(() => makeCharacter(
  26003. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26004. {
  26005. front: {
  26006. height: math.unit(50, "m"),
  26007. weight: math.unit(500, "tonnes"),
  26008. name: "Front",
  26009. image: {
  26010. source: "./media/characters/ryoko/front.svg",
  26011. extra: 4632 / 3926,
  26012. bottom: 193 / 4823
  26013. }
  26014. },
  26015. },
  26016. [
  26017. {
  26018. name: "Normal",
  26019. height: math.unit(50, "meters"),
  26020. default: true
  26021. },
  26022. ]
  26023. ))
  26024. characterMakers.push(() => makeCharacter(
  26025. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26026. {
  26027. front: {
  26028. height: math.unit(30, "m"),
  26029. weight: math.unit(22, "tonnes"),
  26030. name: "Front",
  26031. image: {
  26032. source: "./media/characters/elio/front.svg",
  26033. extra: 4582 / 3720,
  26034. bottom: 236 / 4828
  26035. }
  26036. },
  26037. },
  26038. [
  26039. {
  26040. name: "Normal",
  26041. height: math.unit(30, "meters"),
  26042. default: true
  26043. },
  26044. ]
  26045. ))
  26046. characterMakers.push(() => makeCharacter(
  26047. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26048. {
  26049. front: {
  26050. height: math.unit(6 + 3 / 12, "feet"),
  26051. weight: math.unit(120, "lb"),
  26052. name: "Front",
  26053. image: {
  26054. source: "./media/characters/azura/front.svg",
  26055. extra: 1149 / 1135,
  26056. bottom: 45 / 1194
  26057. }
  26058. },
  26059. frontClothed: {
  26060. height: math.unit(6 + 3 / 12, "feet"),
  26061. weight: math.unit(120, "lb"),
  26062. name: "Front (Clothed)",
  26063. image: {
  26064. source: "./media/characters/azura/front-clothed.svg",
  26065. extra: 1149 / 1135,
  26066. bottom: 45 / 1194
  26067. }
  26068. },
  26069. },
  26070. [
  26071. {
  26072. name: "Normal",
  26073. height: math.unit(6 + 3 / 12, "feet"),
  26074. default: true
  26075. },
  26076. {
  26077. name: "Macro",
  26078. height: math.unit(20 + 6 / 12, "feet")
  26079. },
  26080. {
  26081. name: "Megamacro",
  26082. height: math.unit(12, "miles")
  26083. },
  26084. {
  26085. name: "Gigamacro",
  26086. height: math.unit(10000, "miles")
  26087. },
  26088. {
  26089. name: "Teramacro",
  26090. height: math.unit(900000, "miles")
  26091. },
  26092. ]
  26093. ))
  26094. characterMakers.push(() => makeCharacter(
  26095. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26096. {
  26097. front: {
  26098. height: math.unit(12, "feet"),
  26099. weight: math.unit(1, "ton"),
  26100. capacity: math.unit(660000, "gallons"),
  26101. name: "Front",
  26102. image: {
  26103. source: "./media/characters/zeus/front.svg",
  26104. extra: 5005 / 4717,
  26105. bottom: 363 / 5388
  26106. }
  26107. },
  26108. },
  26109. [
  26110. {
  26111. name: "Normal",
  26112. height: math.unit(12, "feet")
  26113. },
  26114. {
  26115. name: "Preferred Size",
  26116. height: math.unit(0.5, "miles"),
  26117. default: true
  26118. },
  26119. {
  26120. name: "Giga Horse",
  26121. height: math.unit(300, "miles")
  26122. },
  26123. {
  26124. name: "Riding Planets",
  26125. height: math.unit(30, "megameters")
  26126. },
  26127. {
  26128. name: "Cosmic Giant",
  26129. height: math.unit(3, "zettameters")
  26130. },
  26131. {
  26132. name: "Breeding God",
  26133. height: math.unit(9.92e22, "yottameters")
  26134. },
  26135. ]
  26136. ))
  26137. characterMakers.push(() => makeCharacter(
  26138. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26139. {
  26140. side: {
  26141. height: math.unit(9, "feet"),
  26142. weight: math.unit(1500, "kg"),
  26143. name: "Side",
  26144. image: {
  26145. source: "./media/characters/fang/side.svg",
  26146. extra: 924 / 866,
  26147. bottom: 47.5 / 972.3
  26148. }
  26149. },
  26150. },
  26151. [
  26152. {
  26153. name: "Normal",
  26154. height: math.unit(9, "feet"),
  26155. default: true
  26156. },
  26157. {
  26158. name: "Macro",
  26159. height: math.unit(75 + 6 / 12, "feet")
  26160. },
  26161. {
  26162. name: "Teramacro",
  26163. height: math.unit(50000, "miles")
  26164. },
  26165. ]
  26166. ))
  26167. characterMakers.push(() => makeCharacter(
  26168. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26169. {
  26170. front: {
  26171. height: math.unit(10, "feet"),
  26172. weight: math.unit(2, "tons"),
  26173. name: "Front",
  26174. image: {
  26175. source: "./media/characters/rekhit/front.svg",
  26176. extra: 2796 / 2590,
  26177. bottom: 225 / 3022
  26178. }
  26179. },
  26180. },
  26181. [
  26182. {
  26183. name: "Normal",
  26184. height: math.unit(10, "feet"),
  26185. default: true
  26186. },
  26187. {
  26188. name: "Macro",
  26189. height: math.unit(500, "feet")
  26190. },
  26191. ]
  26192. ))
  26193. characterMakers.push(() => makeCharacter(
  26194. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26195. {
  26196. front: {
  26197. height: math.unit(7 + 6.451 / 12, "feet"),
  26198. weight: math.unit(310, "lb"),
  26199. name: "Front",
  26200. image: {
  26201. source: "./media/characters/dahlia-verrick/front.svg",
  26202. extra: 1488 / 1365,
  26203. bottom: 6.2 / 1495
  26204. }
  26205. },
  26206. back: {
  26207. height: math.unit(7 + 6.451 / 12, "feet"),
  26208. weight: math.unit(310, "lb"),
  26209. name: "Back",
  26210. image: {
  26211. source: "./media/characters/dahlia-verrick/back.svg",
  26212. extra: 1472 / 1351,
  26213. bottom: 5.28 / 1477
  26214. }
  26215. },
  26216. frontBusiness: {
  26217. height: math.unit(7 + 6.451 / 12, "feet"),
  26218. weight: math.unit(200, "lb"),
  26219. name: "Front (Business)",
  26220. image: {
  26221. source: "./media/characters/dahlia-verrick/front-business.svg",
  26222. extra: 1478 / 1381,
  26223. bottom: 5.5 / 1484
  26224. }
  26225. },
  26226. frontCasual: {
  26227. height: math.unit(7 + 6.451 / 12, "feet"),
  26228. weight: math.unit(200, "lb"),
  26229. name: "Front (Casual)",
  26230. image: {
  26231. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26232. extra: 1478 / 1381,
  26233. bottom: 5.5 / 1484
  26234. }
  26235. },
  26236. },
  26237. [
  26238. {
  26239. name: "Travel-Sized",
  26240. height: math.unit(7.45, "inches")
  26241. },
  26242. {
  26243. name: "Normal",
  26244. height: math.unit(7 + 6.451 / 12, "feet"),
  26245. default: true
  26246. },
  26247. {
  26248. name: "Hitting the Town",
  26249. height: math.unit(37 + 8 / 12, "feet")
  26250. },
  26251. {
  26252. name: "Stomp in the Suburbs",
  26253. height: math.unit(964 + 9.728 / 12, "feet")
  26254. },
  26255. {
  26256. name: "Sit on the City",
  26257. height: math.unit(61747 + 10.592 / 12, "feet")
  26258. },
  26259. {
  26260. name: "Glomp the Globe",
  26261. height: math.unit(252919327 + 4.832 / 12, "feet")
  26262. },
  26263. ]
  26264. ))
  26265. characterMakers.push(() => makeCharacter(
  26266. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26267. {
  26268. front: {
  26269. height: math.unit(6 + 4 / 12, "feet"),
  26270. weight: math.unit(320, "lb"),
  26271. name: "Front",
  26272. image: {
  26273. source: "./media/characters/balina-mahigan/front.svg",
  26274. extra: 447 / 428,
  26275. bottom: 18 / 466
  26276. }
  26277. },
  26278. back: {
  26279. height: math.unit(6 + 4 / 12, "feet"),
  26280. weight: math.unit(320, "lb"),
  26281. name: "Back",
  26282. image: {
  26283. source: "./media/characters/balina-mahigan/back.svg",
  26284. extra: 445 / 428,
  26285. bottom: 4.07 / 448
  26286. }
  26287. },
  26288. arm: {
  26289. height: math.unit(1.88, "feet"),
  26290. name: "Arm",
  26291. image: {
  26292. source: "./media/characters/balina-mahigan/arm.svg"
  26293. }
  26294. },
  26295. backPort: {
  26296. height: math.unit(0.685, "feet"),
  26297. name: "Back Port",
  26298. image: {
  26299. source: "./media/characters/balina-mahigan/back-port.svg"
  26300. }
  26301. },
  26302. hoofpaw: {
  26303. height: math.unit(1.41, "feet"),
  26304. name: "Hoofpaw",
  26305. image: {
  26306. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26307. }
  26308. },
  26309. leftHandBack: {
  26310. height: math.unit(0.938, "feet"),
  26311. name: "Left Hand (Back)",
  26312. image: {
  26313. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26314. }
  26315. },
  26316. leftHandFront: {
  26317. height: math.unit(0.938, "feet"),
  26318. name: "Left Hand (Front)",
  26319. image: {
  26320. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26321. }
  26322. },
  26323. rightHandBack: {
  26324. height: math.unit(0.95, "feet"),
  26325. name: "Right Hand (Back)",
  26326. image: {
  26327. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26328. }
  26329. },
  26330. rightHandFront: {
  26331. height: math.unit(0.95, "feet"),
  26332. name: "Right Hand (Front)",
  26333. image: {
  26334. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26335. }
  26336. },
  26337. },
  26338. [
  26339. {
  26340. name: "Normal",
  26341. height: math.unit(6 + 4 / 12, "feet"),
  26342. default: true
  26343. },
  26344. ]
  26345. ))
  26346. characterMakers.push(() => makeCharacter(
  26347. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26348. {
  26349. front: {
  26350. height: math.unit(6, "feet"),
  26351. weight: math.unit(320, "lb"),
  26352. name: "Front",
  26353. image: {
  26354. source: "./media/characters/balina-mejeri/front.svg",
  26355. extra: 517 / 488,
  26356. bottom: 44.2 / 561
  26357. }
  26358. },
  26359. },
  26360. [
  26361. {
  26362. name: "Normal",
  26363. height: math.unit(6 + 4 / 12, "feet")
  26364. },
  26365. {
  26366. name: "Business",
  26367. height: math.unit(155, "feet"),
  26368. default: true
  26369. },
  26370. ]
  26371. ))
  26372. characterMakers.push(() => makeCharacter(
  26373. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26374. {
  26375. kneeling: {
  26376. height: math.unit(6 + 4 / 12, "feet"),
  26377. weight: math.unit(300 * 20, "lb"),
  26378. name: "Kneeling",
  26379. image: {
  26380. source: "./media/characters/balbarian/kneeling.svg",
  26381. extra: 922 / 862,
  26382. bottom: 42.4 / 965
  26383. }
  26384. },
  26385. },
  26386. [
  26387. {
  26388. name: "Normal",
  26389. height: math.unit(6 + 4 / 12, "feet")
  26390. },
  26391. {
  26392. name: "Treasured",
  26393. height: math.unit(18 + 9 / 12, "feet"),
  26394. default: true
  26395. },
  26396. {
  26397. name: "Macro",
  26398. height: math.unit(900, "feet")
  26399. },
  26400. ]
  26401. ))
  26402. characterMakers.push(() => makeCharacter(
  26403. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26404. {
  26405. front: {
  26406. height: math.unit(6 + 4 / 12, "feet"),
  26407. weight: math.unit(325, "lb"),
  26408. name: "Front",
  26409. image: {
  26410. source: "./media/characters/balina-amarini/front.svg",
  26411. extra: 415 / 403,
  26412. bottom: 19 / 433.4
  26413. }
  26414. },
  26415. back: {
  26416. height: math.unit(6 + 4 / 12, "feet"),
  26417. weight: math.unit(325, "lb"),
  26418. name: "Back",
  26419. image: {
  26420. source: "./media/characters/balina-amarini/back.svg",
  26421. extra: 415 / 403,
  26422. bottom: 13.5 / 432
  26423. }
  26424. },
  26425. overdrive: {
  26426. height: math.unit(6 + 4 / 12, "feet"),
  26427. weight: math.unit(400, "lb"),
  26428. name: "Overdrive",
  26429. image: {
  26430. source: "./media/characters/balina-amarini/overdrive.svg",
  26431. extra: 269 / 259,
  26432. bottom: 12 / 282
  26433. }
  26434. },
  26435. },
  26436. [
  26437. {
  26438. name: "Boom",
  26439. height: math.unit(9 + 10 / 12, "feet"),
  26440. default: true
  26441. },
  26442. {
  26443. name: "Macro",
  26444. height: math.unit(280, "feet")
  26445. },
  26446. ]
  26447. ))
  26448. characterMakers.push(() => makeCharacter(
  26449. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26450. {
  26451. goddess: {
  26452. height: math.unit(600, "feet"),
  26453. weight: math.unit(2000000, "tons"),
  26454. name: "Goddess",
  26455. image: {
  26456. source: "./media/characters/lady-kubwa/goddess.svg",
  26457. extra: 1240.5 / 1223,
  26458. bottom: 22 / 1263
  26459. }
  26460. },
  26461. goddesser: {
  26462. height: math.unit(900, "feet"),
  26463. weight: math.unit(20000000, "lb"),
  26464. name: "Goddess-er",
  26465. image: {
  26466. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26467. extra: 899 / 888,
  26468. bottom: 12.6 / 912
  26469. }
  26470. },
  26471. },
  26472. [
  26473. {
  26474. name: "Macro",
  26475. height: math.unit(600, "feet"),
  26476. default: true
  26477. },
  26478. {
  26479. name: "Megamacro",
  26480. height: math.unit(250, "miles")
  26481. },
  26482. ]
  26483. ))
  26484. characterMakers.push(() => makeCharacter(
  26485. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26486. {
  26487. front: {
  26488. height: math.unit(7 + 7 / 12, "feet"),
  26489. weight: math.unit(250, "lb"),
  26490. name: "Front",
  26491. image: {
  26492. source: "./media/characters/tala-grovehorn/front.svg",
  26493. extra: 2636 / 2525,
  26494. bottom: 147 / 2781
  26495. }
  26496. },
  26497. back: {
  26498. height: math.unit(7 + 7 / 12, "feet"),
  26499. weight: math.unit(250, "lb"),
  26500. name: "Back",
  26501. image: {
  26502. source: "./media/characters/tala-grovehorn/back.svg",
  26503. extra: 2635 / 2539,
  26504. bottom: 100 / 2732.8
  26505. }
  26506. },
  26507. mouth: {
  26508. height: math.unit(1.15, "feet"),
  26509. name: "Mouth",
  26510. image: {
  26511. source: "./media/characters/tala-grovehorn/mouth.svg"
  26512. }
  26513. },
  26514. dick: {
  26515. height: math.unit(2.36, "feet"),
  26516. name: "Dick",
  26517. image: {
  26518. source: "./media/characters/tala-grovehorn/dick.svg"
  26519. }
  26520. },
  26521. slit: {
  26522. height: math.unit(0.61, "feet"),
  26523. name: "Slit",
  26524. image: {
  26525. source: "./media/characters/tala-grovehorn/slit.svg"
  26526. }
  26527. },
  26528. },
  26529. [
  26530. ]
  26531. ))
  26532. characterMakers.push(() => makeCharacter(
  26533. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26534. {
  26535. front: {
  26536. height: math.unit(7 + 7 / 12, "feet"),
  26537. weight: math.unit(225, "lb"),
  26538. name: "Front",
  26539. image: {
  26540. source: "./media/characters/epona/front.svg",
  26541. extra: 2445 / 2290,
  26542. bottom: 251 / 2696
  26543. }
  26544. },
  26545. back: {
  26546. height: math.unit(7 + 7 / 12, "feet"),
  26547. weight: math.unit(225, "lb"),
  26548. name: "Back",
  26549. image: {
  26550. source: "./media/characters/epona/back.svg",
  26551. extra: 2546 / 2408,
  26552. bottom: 44 / 2589
  26553. }
  26554. },
  26555. genitals: {
  26556. height: math.unit(1.5, "feet"),
  26557. name: "Genitals",
  26558. image: {
  26559. source: "./media/characters/epona/genitals.svg"
  26560. }
  26561. },
  26562. },
  26563. [
  26564. {
  26565. name: "Normal",
  26566. height: math.unit(7 + 7 / 12, "feet"),
  26567. default: true
  26568. },
  26569. ]
  26570. ))
  26571. characterMakers.push(() => makeCharacter(
  26572. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26573. {
  26574. front: {
  26575. height: math.unit(7, "feet"),
  26576. weight: math.unit(518, "lb"),
  26577. name: "Front",
  26578. image: {
  26579. source: "./media/characters/avia-bloodbourn/front.svg",
  26580. extra: 1466 / 1350,
  26581. bottom: 65 / 1527
  26582. }
  26583. },
  26584. },
  26585. [
  26586. ]
  26587. ))
  26588. characterMakers.push(() => makeCharacter(
  26589. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26590. {
  26591. front: {
  26592. height: math.unit(9.35, "feet"),
  26593. weight: math.unit(600, "lb"),
  26594. name: "Front",
  26595. image: {
  26596. source: "./media/characters/amera/front.svg",
  26597. extra: 891 / 818,
  26598. bottom: 30 / 922.7
  26599. }
  26600. },
  26601. back: {
  26602. height: math.unit(9.35, "feet"),
  26603. weight: math.unit(600, "lb"),
  26604. name: "Back",
  26605. image: {
  26606. source: "./media/characters/amera/back.svg",
  26607. extra: 876 / 824,
  26608. bottom: 6.8 / 884
  26609. }
  26610. },
  26611. dick: {
  26612. height: math.unit(2.14, "feet"),
  26613. name: "Dick",
  26614. image: {
  26615. source: "./media/characters/amera/dick.svg"
  26616. }
  26617. },
  26618. },
  26619. [
  26620. {
  26621. name: "Normal",
  26622. height: math.unit(9.35, "feet"),
  26623. default: true
  26624. },
  26625. ]
  26626. ))
  26627. characterMakers.push(() => makeCharacter(
  26628. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26629. {
  26630. kneeling: {
  26631. height: math.unit(3 + 4 / 12, "feet"),
  26632. weight: math.unit(90, "lb"),
  26633. name: "Kneeling",
  26634. image: {
  26635. source: "./media/characters/rosewen/kneeling.svg",
  26636. extra: 1835 / 1571,
  26637. bottom: 27.7 / 1862
  26638. }
  26639. },
  26640. },
  26641. [
  26642. {
  26643. name: "Normal",
  26644. height: math.unit(3 + 4 / 12, "feet"),
  26645. default: true
  26646. },
  26647. ]
  26648. ))
  26649. characterMakers.push(() => makeCharacter(
  26650. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26651. {
  26652. front: {
  26653. height: math.unit(5 + 10 / 12, "feet"),
  26654. weight: math.unit(200, "lb"),
  26655. name: "Front",
  26656. image: {
  26657. source: "./media/characters/sabah/front.svg",
  26658. extra: 849 / 763,
  26659. bottom: 33.9 / 881
  26660. }
  26661. },
  26662. },
  26663. [
  26664. {
  26665. name: "Normal",
  26666. height: math.unit(5 + 10 / 12, "feet"),
  26667. default: true
  26668. },
  26669. ]
  26670. ))
  26671. characterMakers.push(() => makeCharacter(
  26672. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26673. {
  26674. front: {
  26675. height: math.unit(3 + 5 / 12, "feet"),
  26676. weight: math.unit(40, "kg"),
  26677. name: "Front",
  26678. image: {
  26679. source: "./media/characters/purple-flame/front.svg",
  26680. extra: 1577 / 1412,
  26681. bottom: 97 / 1694
  26682. }
  26683. },
  26684. frontDressed: {
  26685. height: math.unit(3 + 5 / 12, "feet"),
  26686. weight: math.unit(40, "kg"),
  26687. name: "Front (Dressed)",
  26688. image: {
  26689. source: "./media/characters/purple-flame/front-dressed.svg",
  26690. extra: 1577 / 1412,
  26691. bottom: 97 / 1694
  26692. }
  26693. },
  26694. headphones: {
  26695. height: math.unit(0.85, "feet"),
  26696. name: "Headphones",
  26697. image: {
  26698. source: "./media/characters/purple-flame/headphones.svg"
  26699. }
  26700. },
  26701. },
  26702. [
  26703. {
  26704. name: "Really Small",
  26705. height: math.unit(5, "cm")
  26706. },
  26707. {
  26708. name: "Micro",
  26709. height: math.unit(1 + 5 / 12, "feet")
  26710. },
  26711. {
  26712. name: "Normal",
  26713. height: math.unit(3 + 5 / 12, "feet"),
  26714. default: true
  26715. },
  26716. {
  26717. name: "Minimacro",
  26718. height: math.unit(125, "feet")
  26719. },
  26720. {
  26721. name: "Macro",
  26722. height: math.unit(0.5, "miles")
  26723. },
  26724. {
  26725. name: "Megamacro",
  26726. height: math.unit(50, "miles")
  26727. },
  26728. {
  26729. name: "Gigantic",
  26730. height: math.unit(750, "miles")
  26731. },
  26732. {
  26733. name: "Planetary",
  26734. height: math.unit(15000, "miles")
  26735. },
  26736. ]
  26737. ))
  26738. characterMakers.push(() => makeCharacter(
  26739. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26740. {
  26741. front: {
  26742. height: math.unit(14, "feet"),
  26743. weight: math.unit(959, "lb"),
  26744. name: "Front",
  26745. image: {
  26746. source: "./media/characters/arsenal/front.svg",
  26747. extra: 2357 / 2157,
  26748. bottom: 93 / 2458
  26749. }
  26750. },
  26751. },
  26752. [
  26753. {
  26754. name: "Normal",
  26755. height: math.unit(14, "feet"),
  26756. default: true
  26757. },
  26758. ]
  26759. ))
  26760. characterMakers.push(() => makeCharacter(
  26761. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26762. {
  26763. front: {
  26764. height: math.unit(6, "feet"),
  26765. weight: math.unit(150, "lb"),
  26766. name: "Front",
  26767. image: {
  26768. source: "./media/characters/adira/front.svg",
  26769. extra: 1078 / 1029,
  26770. bottom: 87 / 1166
  26771. }
  26772. },
  26773. },
  26774. [
  26775. {
  26776. name: "Micro",
  26777. height: math.unit(4, "inches"),
  26778. default: true
  26779. },
  26780. {
  26781. name: "Macro",
  26782. height: math.unit(50, "feet")
  26783. },
  26784. ]
  26785. ))
  26786. characterMakers.push(() => makeCharacter(
  26787. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26788. {
  26789. front: {
  26790. height: math.unit(16, "feet"),
  26791. weight: math.unit(1000, "lb"),
  26792. name: "Front",
  26793. image: {
  26794. source: "./media/characters/grim/front.svg",
  26795. extra: 622 / 614,
  26796. bottom: 18.1 / 642
  26797. }
  26798. },
  26799. back: {
  26800. height: math.unit(16, "feet"),
  26801. weight: math.unit(1000, "lb"),
  26802. name: "Back",
  26803. image: {
  26804. source: "./media/characters/grim/back.svg",
  26805. extra: 610.6 / 602,
  26806. bottom: 40.8 / 652
  26807. }
  26808. },
  26809. hunched: {
  26810. height: math.unit(9.75, "feet"),
  26811. weight: math.unit(1000, "lb"),
  26812. name: "Hunched",
  26813. image: {
  26814. source: "./media/characters/grim/hunched.svg",
  26815. extra: 304 / 297,
  26816. bottom: 35.4 / 394
  26817. }
  26818. },
  26819. },
  26820. [
  26821. {
  26822. name: "Normal",
  26823. height: math.unit(16, "feet"),
  26824. default: true
  26825. },
  26826. ]
  26827. ))
  26828. characterMakers.push(() => makeCharacter(
  26829. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26830. {
  26831. front: {
  26832. height: math.unit(2.3, "meters"),
  26833. weight: math.unit(300, "lb"),
  26834. name: "Front",
  26835. image: {
  26836. source: "./media/characters/sinja/front-sfw.svg",
  26837. extra: 1393 / 1294,
  26838. bottom: 70 / 1463
  26839. }
  26840. },
  26841. frontNsfw: {
  26842. height: math.unit(2.3, "meters"),
  26843. weight: math.unit(300, "lb"),
  26844. name: "Front (NSFW)",
  26845. image: {
  26846. source: "./media/characters/sinja/front-nsfw.svg",
  26847. extra: 1393 / 1294,
  26848. bottom: 70 / 1463
  26849. }
  26850. },
  26851. back: {
  26852. height: math.unit(2.3, "meters"),
  26853. weight: math.unit(300, "lb"),
  26854. name: "Back",
  26855. image: {
  26856. source: "./media/characters/sinja/back.svg",
  26857. extra: 1393 / 1294,
  26858. bottom: 70 / 1463
  26859. }
  26860. },
  26861. head: {
  26862. height: math.unit(1.771, "feet"),
  26863. name: "Head",
  26864. image: {
  26865. source: "./media/characters/sinja/head.svg"
  26866. }
  26867. },
  26868. slit: {
  26869. height: math.unit(0.8, "feet"),
  26870. name: "Slit",
  26871. image: {
  26872. source: "./media/characters/sinja/slit.svg"
  26873. }
  26874. },
  26875. },
  26876. [
  26877. {
  26878. name: "Normal",
  26879. height: math.unit(2.3, "meters")
  26880. },
  26881. {
  26882. name: "Macro",
  26883. height: math.unit(91, "meters"),
  26884. default: true
  26885. },
  26886. {
  26887. name: "Megamacro",
  26888. height: math.unit(91440, "meters")
  26889. },
  26890. {
  26891. name: "Gigamacro",
  26892. height: math.unit(60960000, "meters")
  26893. },
  26894. {
  26895. name: "Teramacro",
  26896. height: math.unit(9144000000, "meters")
  26897. },
  26898. ]
  26899. ))
  26900. characterMakers.push(() => makeCharacter(
  26901. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26902. {
  26903. front: {
  26904. height: math.unit(1.7, "meters"),
  26905. weight: math.unit(130, "lb"),
  26906. name: "Front",
  26907. image: {
  26908. source: "./media/characters/kyu/front.svg",
  26909. extra: 415 / 395,
  26910. bottom: 5 / 420
  26911. }
  26912. },
  26913. head: {
  26914. height: math.unit(1.75, "feet"),
  26915. name: "Head",
  26916. image: {
  26917. source: "./media/characters/kyu/head.svg"
  26918. }
  26919. },
  26920. foot: {
  26921. height: math.unit(0.81, "feet"),
  26922. name: "Foot",
  26923. image: {
  26924. source: "./media/characters/kyu/foot.svg"
  26925. }
  26926. },
  26927. },
  26928. [
  26929. {
  26930. name: "Normal",
  26931. height: math.unit(1.7, "meters")
  26932. },
  26933. {
  26934. name: "Macro",
  26935. height: math.unit(131, "feet"),
  26936. default: true
  26937. },
  26938. {
  26939. name: "Megamacro",
  26940. height: math.unit(91440, "meters")
  26941. },
  26942. {
  26943. name: "Gigamacro",
  26944. height: math.unit(60960000, "meters")
  26945. },
  26946. {
  26947. name: "Teramacro",
  26948. height: math.unit(9144000000, "meters")
  26949. },
  26950. ]
  26951. ))
  26952. characterMakers.push(() => makeCharacter(
  26953. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26954. {
  26955. front: {
  26956. height: math.unit(7 + 1 / 12, "feet"),
  26957. weight: math.unit(250, "lb"),
  26958. name: "Front",
  26959. image: {
  26960. source: "./media/characters/joey/front.svg",
  26961. extra: 1791 / 1537,
  26962. bottom: 28 / 1816
  26963. }
  26964. },
  26965. },
  26966. [
  26967. {
  26968. name: "Micro",
  26969. height: math.unit(3, "inches")
  26970. },
  26971. {
  26972. name: "Normal",
  26973. height: math.unit(7 + 1 / 12, "feet"),
  26974. default: true
  26975. },
  26976. ]
  26977. ))
  26978. characterMakers.push(() => makeCharacter(
  26979. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26980. {
  26981. front: {
  26982. height: math.unit(165, "cm"),
  26983. weight: math.unit(140, "lb"),
  26984. name: "Front",
  26985. image: {
  26986. source: "./media/characters/sam-evans/front.svg",
  26987. extra: 3417 / 3230,
  26988. bottom: 41.3 / 3417
  26989. }
  26990. },
  26991. frontSixTails: {
  26992. height: math.unit(165, "cm"),
  26993. weight: math.unit(140, "lb"),
  26994. name: "Front-six-tails",
  26995. image: {
  26996. source: "./media/characters/sam-evans/front-six-tails.svg",
  26997. extra: 3417 / 3230,
  26998. bottom: 41.3 / 3417
  26999. }
  27000. },
  27001. back: {
  27002. height: math.unit(165, "cm"),
  27003. weight: math.unit(140, "lb"),
  27004. name: "Back",
  27005. image: {
  27006. source: "./media/characters/sam-evans/back.svg",
  27007. extra: 3227 / 3032,
  27008. bottom: 6.8 / 3234
  27009. }
  27010. },
  27011. face: {
  27012. height: math.unit(0.68, "feet"),
  27013. name: "Face",
  27014. image: {
  27015. source: "./media/characters/sam-evans/face.svg"
  27016. }
  27017. },
  27018. },
  27019. [
  27020. {
  27021. name: "Normal",
  27022. height: math.unit(165, "cm"),
  27023. default: true
  27024. },
  27025. {
  27026. name: "Macro",
  27027. height: math.unit(100, "meters")
  27028. },
  27029. {
  27030. name: "Macro+",
  27031. height: math.unit(800, "meters")
  27032. },
  27033. {
  27034. name: "Macro++",
  27035. height: math.unit(3, "km")
  27036. },
  27037. {
  27038. name: "Macro+++",
  27039. height: math.unit(30, "km")
  27040. },
  27041. ]
  27042. ))
  27043. characterMakers.push(() => makeCharacter(
  27044. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27045. {
  27046. front: {
  27047. height: math.unit(10, "feet"),
  27048. weight: math.unit(750, "lb"),
  27049. name: "Front",
  27050. image: {
  27051. source: "./media/characters/juliet-a/front.svg",
  27052. extra: 1766 / 1720,
  27053. bottom: 43 / 1809
  27054. }
  27055. },
  27056. back: {
  27057. height: math.unit(10, "feet"),
  27058. weight: math.unit(750, "lb"),
  27059. name: "Back",
  27060. image: {
  27061. source: "./media/characters/juliet-a/back.svg",
  27062. extra: 1781 / 1734,
  27063. bottom: 35 / 1810,
  27064. }
  27065. },
  27066. },
  27067. [
  27068. {
  27069. name: "Normal",
  27070. height: math.unit(10, "feet"),
  27071. default: true
  27072. },
  27073. {
  27074. name: "Dragon Form",
  27075. height: math.unit(250, "feet")
  27076. },
  27077. {
  27078. name: "Macro",
  27079. height: math.unit(1000, "feet")
  27080. },
  27081. {
  27082. name: "Megamacro",
  27083. height: math.unit(10000, "feet")
  27084. }
  27085. ]
  27086. ))
  27087. characterMakers.push(() => makeCharacter(
  27088. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27089. {
  27090. regular: {
  27091. height: math.unit(7 + 3 / 12, "feet"),
  27092. weight: math.unit(260, "lb"),
  27093. name: "Regular",
  27094. image: {
  27095. source: "./media/characters/wild/regular.svg",
  27096. extra: 97.45 / 92,
  27097. bottom: 6.8 / 104.3
  27098. }
  27099. },
  27100. biggums: {
  27101. height: math.unit(8 + 6 / 12, "feet"),
  27102. weight: math.unit(425, "lb"),
  27103. name: "Biggums",
  27104. image: {
  27105. source: "./media/characters/wild/biggums.svg",
  27106. extra: 97.45 / 92,
  27107. bottom: 7.5 / 132.34
  27108. }
  27109. },
  27110. mawRegular: {
  27111. height: math.unit(1.24, "feet"),
  27112. name: "Maw (Regular)",
  27113. image: {
  27114. source: "./media/characters/wild/maw.svg"
  27115. }
  27116. },
  27117. mawBiggums: {
  27118. height: math.unit(1.47, "feet"),
  27119. name: "Maw (Biggums)",
  27120. image: {
  27121. source: "./media/characters/wild/maw.svg"
  27122. }
  27123. },
  27124. },
  27125. [
  27126. {
  27127. name: "Normal",
  27128. height: math.unit(7 + 3 / 12, "feet"),
  27129. default: true
  27130. },
  27131. ]
  27132. ))
  27133. characterMakers.push(() => makeCharacter(
  27134. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27135. {
  27136. front: {
  27137. height: math.unit(2.5, "meters"),
  27138. weight: math.unit(200, "kg"),
  27139. name: "Front",
  27140. image: {
  27141. source: "./media/characters/vidar/front.svg",
  27142. extra: 2994 / 2795,
  27143. bottom: 56 / 3061
  27144. }
  27145. },
  27146. back: {
  27147. height: math.unit(2.5, "meters"),
  27148. weight: math.unit(200, "kg"),
  27149. name: "Back",
  27150. image: {
  27151. source: "./media/characters/vidar/back.svg",
  27152. extra: 3131 / 2928,
  27153. bottom: 13.5 / 3141.5
  27154. }
  27155. },
  27156. feral: {
  27157. height: math.unit(2.5, "meters"),
  27158. weight: math.unit(2000, "kg"),
  27159. name: "Feral",
  27160. image: {
  27161. source: "./media/characters/vidar/feral.svg",
  27162. extra: 2790 / 1765,
  27163. bottom: 6 / 2796
  27164. }
  27165. },
  27166. },
  27167. [
  27168. {
  27169. name: "Normal",
  27170. height: math.unit(2.5, "meters"),
  27171. default: true
  27172. },
  27173. {
  27174. name: "Macro",
  27175. height: math.unit(100, "meters")
  27176. },
  27177. ]
  27178. ))
  27179. characterMakers.push(() => makeCharacter(
  27180. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27181. {
  27182. front: {
  27183. height: math.unit(5 + 9 / 12, "feet"),
  27184. weight: math.unit(120, "lb"),
  27185. name: "Front",
  27186. image: {
  27187. source: "./media/characters/ash/front.svg",
  27188. extra: 2189 / 1961,
  27189. bottom: 5.2 / 2194
  27190. }
  27191. },
  27192. },
  27193. [
  27194. {
  27195. name: "Normal",
  27196. height: math.unit(5 + 9 / 12, "feet"),
  27197. default: true
  27198. },
  27199. ]
  27200. ))
  27201. characterMakers.push(() => makeCharacter(
  27202. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27203. {
  27204. front: {
  27205. height: math.unit(9, "feet"),
  27206. weight: math.unit(10000, "lb"),
  27207. name: "Front",
  27208. image: {
  27209. source: "./media/characters/gygabite/front.svg",
  27210. bottom: 31.7 / 537.8,
  27211. extra: 505 / 370
  27212. }
  27213. },
  27214. },
  27215. [
  27216. {
  27217. name: "Normal",
  27218. height: math.unit(9, "feet"),
  27219. default: true
  27220. },
  27221. ]
  27222. ))
  27223. characterMakers.push(() => makeCharacter(
  27224. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27225. {
  27226. front: {
  27227. height: math.unit(12, "feet"),
  27228. weight: math.unit(35000, "lb"),
  27229. name: "Front",
  27230. image: {
  27231. source: "./media/characters/p0tat0/front.svg",
  27232. extra: 1065 / 921,
  27233. bottom: 55.7 / 1121.25
  27234. }
  27235. },
  27236. },
  27237. [
  27238. {
  27239. name: "Normal",
  27240. height: math.unit(12, "feet"),
  27241. default: true
  27242. },
  27243. ]
  27244. ))
  27245. characterMakers.push(() => makeCharacter(
  27246. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27247. {
  27248. side: {
  27249. height: math.unit(6.5, "feet"),
  27250. weight: math.unit(800, "lb"),
  27251. name: "Side",
  27252. image: {
  27253. source: "./media/characters/dusk/side.svg",
  27254. extra: 615 / 373,
  27255. bottom: 53 / 664
  27256. }
  27257. },
  27258. sitting: {
  27259. height: math.unit(7, "feet"),
  27260. weight: math.unit(800, "lb"),
  27261. name: "Sitting",
  27262. image: {
  27263. source: "./media/characters/dusk/sitting.svg",
  27264. extra: 753 / 425,
  27265. bottom: 33 / 774
  27266. }
  27267. },
  27268. head: {
  27269. height: math.unit(6.1, "feet"),
  27270. name: "Head",
  27271. image: {
  27272. source: "./media/characters/dusk/head.svg"
  27273. }
  27274. },
  27275. },
  27276. [
  27277. {
  27278. name: "Normal",
  27279. height: math.unit(7, "feet"),
  27280. default: true
  27281. },
  27282. ]
  27283. ))
  27284. characterMakers.push(() => makeCharacter(
  27285. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27286. {
  27287. front: {
  27288. height: math.unit(15, "feet"),
  27289. weight: math.unit(7000, "lb"),
  27290. name: "Front",
  27291. image: {
  27292. source: "./media/characters/jay-direwolf/front.svg",
  27293. extra: 1810 / 1732,
  27294. bottom: 66 / 1892
  27295. }
  27296. },
  27297. },
  27298. [
  27299. {
  27300. name: "Normal",
  27301. height: math.unit(15, "feet"),
  27302. default: true
  27303. },
  27304. ]
  27305. ))
  27306. characterMakers.push(() => makeCharacter(
  27307. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27308. {
  27309. front: {
  27310. height: math.unit(4 + 9 / 12, "feet"),
  27311. weight: math.unit(130, "lb"),
  27312. name: "Front",
  27313. image: {
  27314. source: "./media/characters/anchovie/front.svg",
  27315. extra: 382 / 350,
  27316. bottom: 25 / 409
  27317. }
  27318. },
  27319. back: {
  27320. height: math.unit(4 + 9 / 12, "feet"),
  27321. weight: math.unit(130, "lb"),
  27322. name: "Back",
  27323. image: {
  27324. source: "./media/characters/anchovie/back.svg",
  27325. extra: 385 / 352,
  27326. bottom: 16.6 / 402
  27327. }
  27328. },
  27329. frontDressed: {
  27330. height: math.unit(4 + 9 / 12, "feet"),
  27331. weight: math.unit(130, "lb"),
  27332. name: "Front (Dressed)",
  27333. image: {
  27334. source: "./media/characters/anchovie/front-dressed.svg",
  27335. extra: 382 / 350,
  27336. bottom: 25 / 409
  27337. }
  27338. },
  27339. backDressed: {
  27340. height: math.unit(4 + 9 / 12, "feet"),
  27341. weight: math.unit(130, "lb"),
  27342. name: "Back (Dressed)",
  27343. image: {
  27344. source: "./media/characters/anchovie/back-dressed.svg",
  27345. extra: 385 / 352,
  27346. bottom: 16.6 / 402
  27347. }
  27348. },
  27349. },
  27350. [
  27351. {
  27352. name: "Micro",
  27353. height: math.unit(6.4, "inches")
  27354. },
  27355. {
  27356. name: "Normal",
  27357. height: math.unit(4 + 9 / 12, "feet"),
  27358. default: true
  27359. },
  27360. ]
  27361. ))
  27362. characterMakers.push(() => makeCharacter(
  27363. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27364. {
  27365. front: {
  27366. height: math.unit(2, "meters"),
  27367. weight: math.unit(180, "lb"),
  27368. name: "Front",
  27369. image: {
  27370. source: "./media/characters/acidrenamon/front.svg",
  27371. extra: 987 / 890,
  27372. bottom: 22.8 / 1009
  27373. }
  27374. },
  27375. back: {
  27376. height: math.unit(2, "meters"),
  27377. weight: math.unit(180, "lb"),
  27378. name: "Back",
  27379. image: {
  27380. source: "./media/characters/acidrenamon/back.svg",
  27381. extra: 983 / 891,
  27382. bottom: 8.4 / 992
  27383. }
  27384. },
  27385. head: {
  27386. height: math.unit(1.92, "feet"),
  27387. name: "Head",
  27388. image: {
  27389. source: "./media/characters/acidrenamon/head.svg"
  27390. }
  27391. },
  27392. rump: {
  27393. height: math.unit(1.72, "feet"),
  27394. name: "Rump",
  27395. image: {
  27396. source: "./media/characters/acidrenamon/rump.svg"
  27397. }
  27398. },
  27399. tail: {
  27400. height: math.unit(4.2, "feet"),
  27401. name: "Tail",
  27402. image: {
  27403. source: "./media/characters/acidrenamon/tail.svg"
  27404. }
  27405. },
  27406. },
  27407. [
  27408. {
  27409. name: "Normal",
  27410. height: math.unit(2, "meters"),
  27411. default: true
  27412. },
  27413. {
  27414. name: "Minimacro",
  27415. height: math.unit(7, "meters")
  27416. },
  27417. {
  27418. name: "Macro",
  27419. height: math.unit(200, "meters")
  27420. },
  27421. {
  27422. name: "Gigamacro",
  27423. height: math.unit(0.2, "earths")
  27424. },
  27425. ]
  27426. ))
  27427. characterMakers.push(() => makeCharacter(
  27428. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27429. {
  27430. front: {
  27431. height: math.unit(6, "feet"),
  27432. weight: math.unit(150, "lb"),
  27433. name: "Front",
  27434. image: {
  27435. source: "./media/characters/kenzie-lee/front.svg",
  27436. extra: 1525 / 1465,
  27437. bottom: 45 / 1570
  27438. }
  27439. },
  27440. side: {
  27441. height: math.unit(6, "feet"),
  27442. weight: math.unit(150, "lb"),
  27443. name: "Side",
  27444. image: {
  27445. source: "./media/characters/kenzie-lee/side.svg",
  27446. extra: 5505 / 5383,
  27447. bottom: 60 / 5573
  27448. }
  27449. },
  27450. paw: {
  27451. height: math.unit(0.57, "feet"),
  27452. name: "Paw",
  27453. image: {
  27454. source: "./media/characters/kenzie-lee/paw.svg"
  27455. }
  27456. },
  27457. },
  27458. [
  27459. {
  27460. name: "Normal",
  27461. height: math.unit(152, "feet"),
  27462. default: true
  27463. },
  27464. {
  27465. name: "Megamacro",
  27466. height: math.unit(7, "miles")
  27467. },
  27468. {
  27469. name: "Gigamacro",
  27470. height: math.unit(8000, "miles")
  27471. },
  27472. ]
  27473. ))
  27474. characterMakers.push(() => makeCharacter(
  27475. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27476. {
  27477. side: {
  27478. height: math.unit(6, "feet"),
  27479. weight: math.unit(150, "lb"),
  27480. name: "Side",
  27481. image: {
  27482. source: "./media/characters/withers/side.svg",
  27483. extra: 1830 / 1728,
  27484. bottom: 96 / 1927
  27485. }
  27486. },
  27487. front: {
  27488. height: math.unit(6, "feet"),
  27489. weight: math.unit(150, "lb"),
  27490. name: "Front",
  27491. image: {
  27492. source: "./media/characters/withers/front.svg",
  27493. extra: 1514 / 1438,
  27494. bottom: 118 / 1632
  27495. }
  27496. },
  27497. },
  27498. [
  27499. {
  27500. name: "Macro",
  27501. height: math.unit(168, "feet"),
  27502. default: true
  27503. },
  27504. {
  27505. name: "Megamacro",
  27506. height: math.unit(15, "miles")
  27507. }
  27508. ]
  27509. ))
  27510. characterMakers.push(() => makeCharacter(
  27511. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27512. {
  27513. front: {
  27514. height: math.unit(6 + 7 / 12, "feet"),
  27515. weight: math.unit(250, "lb"),
  27516. name: "Front",
  27517. image: {
  27518. source: "./media/characters/nemoskii/front.svg",
  27519. extra: 2270 / 1734,
  27520. bottom: 86 / 2354
  27521. }
  27522. },
  27523. back: {
  27524. height: math.unit(6 + 7 / 12, "feet"),
  27525. weight: math.unit(250, "lb"),
  27526. name: "Back",
  27527. image: {
  27528. source: "./media/characters/nemoskii/back.svg",
  27529. extra: 1845 / 1788,
  27530. bottom: 10.5 / 1852
  27531. }
  27532. },
  27533. head: {
  27534. height: math.unit(1.31, "feet"),
  27535. name: "Head",
  27536. image: {
  27537. source: "./media/characters/nemoskii/head.svg"
  27538. }
  27539. },
  27540. },
  27541. [
  27542. {
  27543. name: "Micro",
  27544. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27545. },
  27546. {
  27547. name: "Normal",
  27548. height: math.unit(6 + 7 / 12, "feet"),
  27549. default: true
  27550. },
  27551. {
  27552. name: "Macro",
  27553. height: math.unit((6 + 7 / 12) * 150, "feet")
  27554. },
  27555. {
  27556. name: "Macro+",
  27557. height: math.unit((6 + 7 / 12) * 500, "feet")
  27558. },
  27559. {
  27560. name: "Megamacro",
  27561. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27562. },
  27563. ]
  27564. ))
  27565. characterMakers.push(() => makeCharacter(
  27566. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27567. {
  27568. front: {
  27569. height: math.unit(1, "mile"),
  27570. weight: math.unit(265261.9, "lb"),
  27571. name: "Front",
  27572. image: {
  27573. source: "./media/characters/shui/front.svg",
  27574. extra: 1633 / 1564,
  27575. bottom: 91.5 / 1726
  27576. }
  27577. },
  27578. },
  27579. [
  27580. {
  27581. name: "Macro",
  27582. height: math.unit(1, "mile"),
  27583. default: true
  27584. },
  27585. ]
  27586. ))
  27587. characterMakers.push(() => makeCharacter(
  27588. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27589. {
  27590. front: {
  27591. height: math.unit(12 + 6 / 12, "feet"),
  27592. weight: math.unit(1342, "lb"),
  27593. name: "Front",
  27594. image: {
  27595. source: "./media/characters/arokh-takakura/front.svg",
  27596. extra: 1089 / 1043,
  27597. bottom: 77.4 / 1176.7
  27598. }
  27599. },
  27600. back: {
  27601. height: math.unit(12 + 6 / 12, "feet"),
  27602. weight: math.unit(1342, "lb"),
  27603. name: "Back",
  27604. image: {
  27605. source: "./media/characters/arokh-takakura/back.svg",
  27606. extra: 1046 / 1019,
  27607. bottom: 102 / 1150
  27608. }
  27609. },
  27610. },
  27611. [
  27612. {
  27613. name: "Big",
  27614. height: math.unit(12 + 6 / 12, "feet"),
  27615. default: true
  27616. },
  27617. ]
  27618. ))
  27619. characterMakers.push(() => makeCharacter(
  27620. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27621. {
  27622. front: {
  27623. height: math.unit(5 + 6 / 12, "feet"),
  27624. weight: math.unit(150, "lb"),
  27625. name: "Front",
  27626. image: {
  27627. source: "./media/characters/theo/front.svg",
  27628. extra: 1184 / 1131,
  27629. bottom: 7.4 / 1191
  27630. }
  27631. },
  27632. },
  27633. [
  27634. {
  27635. name: "Micro",
  27636. height: math.unit(5, "inches")
  27637. },
  27638. {
  27639. name: "Normal",
  27640. height: math.unit(5 + 6 / 12, "feet"),
  27641. default: true
  27642. },
  27643. ]
  27644. ))
  27645. characterMakers.push(() => makeCharacter(
  27646. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27647. {
  27648. front: {
  27649. height: math.unit(5 + 9 / 12, "feet"),
  27650. weight: math.unit(130, "lb"),
  27651. name: "Front",
  27652. image: {
  27653. source: "./media/characters/cecelia-swift/front.svg",
  27654. extra: 502 / 484,
  27655. bottom: 23 / 523
  27656. }
  27657. },
  27658. back: {
  27659. height: math.unit(5 + 9 / 12, "feet"),
  27660. weight: math.unit(130, "lb"),
  27661. name: "Back",
  27662. image: {
  27663. source: "./media/characters/cecelia-swift/back.svg",
  27664. extra: 499 / 485,
  27665. bottom: 12 / 511
  27666. }
  27667. },
  27668. head: {
  27669. height: math.unit(0.90, "feet"),
  27670. name: "Head",
  27671. image: {
  27672. source: "./media/characters/cecelia-swift/head.svg"
  27673. }
  27674. },
  27675. rump: {
  27676. height: math.unit(1.75, "feet"),
  27677. name: "Rump",
  27678. image: {
  27679. source: "./media/characters/cecelia-swift/rump.svg"
  27680. }
  27681. },
  27682. },
  27683. [
  27684. {
  27685. name: "Normal",
  27686. height: math.unit(5 + 9 / 12, "feet"),
  27687. default: true
  27688. },
  27689. {
  27690. name: "Big",
  27691. height: math.unit(50, "feet")
  27692. },
  27693. {
  27694. name: "Macro",
  27695. height: math.unit(100, "feet")
  27696. },
  27697. {
  27698. name: "Macro+",
  27699. height: math.unit(500, "feet")
  27700. },
  27701. {
  27702. name: "Macro++",
  27703. height: math.unit(1000, "feet")
  27704. },
  27705. ]
  27706. ))
  27707. characterMakers.push(() => makeCharacter(
  27708. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27709. {
  27710. front: {
  27711. height: math.unit(6, "feet"),
  27712. weight: math.unit(150, "lb"),
  27713. name: "Front",
  27714. image: {
  27715. source: "./media/characters/kaunan/front.svg",
  27716. extra: 2890 / 2523,
  27717. bottom: 49 / 2939
  27718. }
  27719. },
  27720. },
  27721. [
  27722. {
  27723. name: "Macro",
  27724. height: math.unit(150, "feet"),
  27725. default: true
  27726. },
  27727. ]
  27728. ))
  27729. characterMakers.push(() => makeCharacter(
  27730. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27731. {
  27732. front: {
  27733. height: math.unit(175, "cm"),
  27734. weight: math.unit(60, "kg"),
  27735. name: "Front",
  27736. image: {
  27737. source: "./media/characters/fei/front.svg",
  27738. extra: 1873/1723,
  27739. bottom: 53/1926
  27740. }
  27741. },
  27742. },
  27743. [
  27744. {
  27745. name: "Mortal",
  27746. height: math.unit(175, "cm")
  27747. },
  27748. {
  27749. name: "Normal",
  27750. height: math.unit(3500, "m"),
  27751. default: true
  27752. },
  27753. {
  27754. name: "Stroll",
  27755. height: math.unit(17.5, "km")
  27756. },
  27757. {
  27758. name: "Showoff",
  27759. height: math.unit(175, "km")
  27760. },
  27761. ]
  27762. ))
  27763. characterMakers.push(() => makeCharacter(
  27764. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27765. {
  27766. front: {
  27767. height: math.unit(7, "feet"),
  27768. weight: math.unit(1000, "kg"),
  27769. name: "Front",
  27770. image: {
  27771. source: "./media/characters/edrax/front.svg",
  27772. extra: 2838 / 2550,
  27773. bottom: 130 / 2968
  27774. }
  27775. },
  27776. },
  27777. [
  27778. {
  27779. name: "Small",
  27780. height: math.unit(7, "feet")
  27781. },
  27782. {
  27783. name: "Normal",
  27784. height: math.unit(1500, "meters")
  27785. },
  27786. {
  27787. name: "Mega",
  27788. height: math.unit(12000000, "km"),
  27789. default: true
  27790. },
  27791. {
  27792. name: "Megamacro",
  27793. height: math.unit(10600000, "lightyears")
  27794. },
  27795. {
  27796. name: "Hypermacro",
  27797. height: math.unit(256, "yottameters")
  27798. },
  27799. ]
  27800. ))
  27801. characterMakers.push(() => makeCharacter(
  27802. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27803. {
  27804. front: {
  27805. height: math.unit(10, "feet"),
  27806. weight: math.unit(750, "lb"),
  27807. name: "Front",
  27808. image: {
  27809. source: "./media/characters/clove/front.svg",
  27810. extra: 2031 / 1860,
  27811. bottom: 47.8 / 2080
  27812. }
  27813. },
  27814. back: {
  27815. height: math.unit(10, "feet"),
  27816. weight: math.unit(750, "lb"),
  27817. name: "Back",
  27818. image: {
  27819. source: "./media/characters/clove/back.svg",
  27820. extra: 2025 / 1859,
  27821. bottom: 46 / 2071
  27822. }
  27823. },
  27824. },
  27825. [
  27826. {
  27827. name: "Normal",
  27828. height: math.unit(10, "feet"),
  27829. default: true
  27830. },
  27831. ]
  27832. ))
  27833. characterMakers.push(() => makeCharacter(
  27834. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27835. {
  27836. front: {
  27837. height: math.unit(4, "feet"),
  27838. weight: math.unit(50, "lb"),
  27839. name: "Front",
  27840. image: {
  27841. source: "./media/characters/alex-rabbit/front.svg",
  27842. extra: 507 / 458,
  27843. bottom: 18.5 / 527
  27844. }
  27845. },
  27846. back: {
  27847. height: math.unit(4, "feet"),
  27848. weight: math.unit(50, "lb"),
  27849. name: "Back",
  27850. image: {
  27851. source: "./media/characters/alex-rabbit/back.svg",
  27852. extra: 502 / 460,
  27853. bottom: 18.9 / 521
  27854. }
  27855. },
  27856. },
  27857. [
  27858. {
  27859. name: "Normal",
  27860. height: math.unit(4, "feet"),
  27861. default: true
  27862. },
  27863. ]
  27864. ))
  27865. characterMakers.push(() => makeCharacter(
  27866. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27867. {
  27868. front: {
  27869. height: math.unit(1 + 3 / 12, "feet"),
  27870. weight: math.unit(80, "lb"),
  27871. name: "Front",
  27872. image: {
  27873. source: "./media/characters/zander-rose/front.svg",
  27874. extra: 916 / 797,
  27875. bottom: 17 / 933
  27876. }
  27877. },
  27878. back: {
  27879. height: math.unit(1 + 3 / 12, "feet"),
  27880. weight: math.unit(80, "lb"),
  27881. name: "Back",
  27882. image: {
  27883. source: "./media/characters/zander-rose/back.svg",
  27884. extra: 903 / 779,
  27885. bottom: 31 / 934
  27886. }
  27887. },
  27888. },
  27889. [
  27890. {
  27891. name: "Normal",
  27892. height: math.unit(1 + 3 / 12, "feet"),
  27893. default: true
  27894. },
  27895. ]
  27896. ))
  27897. characterMakers.push(() => makeCharacter(
  27898. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27899. {
  27900. anthro: {
  27901. height: math.unit(6, "feet"),
  27902. weight: math.unit(150, "lb"),
  27903. name: "Anthro",
  27904. image: {
  27905. source: "./media/characters/razz/anthro.svg",
  27906. extra: 1437 / 1343,
  27907. bottom: 48 / 1485
  27908. }
  27909. },
  27910. feral: {
  27911. height: math.unit(6, "feet"),
  27912. weight: math.unit(150, "lb"),
  27913. name: "Feral",
  27914. image: {
  27915. source: "./media/characters/razz/feral.svg",
  27916. extra: 2569 / 1385,
  27917. bottom: 95 / 2664
  27918. }
  27919. },
  27920. },
  27921. [
  27922. {
  27923. name: "Normal",
  27924. height: math.unit(6, "feet"),
  27925. default: true
  27926. },
  27927. ]
  27928. ))
  27929. characterMakers.push(() => makeCharacter(
  27930. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27931. {
  27932. front: {
  27933. height: math.unit(9 + 4 / 12, "feet"),
  27934. weight: math.unit(500, "lb"),
  27935. name: "Front",
  27936. image: {
  27937. source: "./media/characters/morrigan/front.svg",
  27938. extra: 2707 / 2579,
  27939. bottom: 156 / 2863
  27940. }
  27941. },
  27942. },
  27943. [
  27944. {
  27945. name: "Normal",
  27946. height: math.unit(9 + 4 / 12, "feet"),
  27947. default: true
  27948. },
  27949. ]
  27950. ))
  27951. characterMakers.push(() => makeCharacter(
  27952. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27953. {
  27954. front: {
  27955. height: math.unit(5, "stories"),
  27956. weight: math.unit(4000, "lb"),
  27957. name: "Front",
  27958. image: {
  27959. source: "./media/characters/jenene/front.svg",
  27960. extra: 1780 / 1710,
  27961. bottom: 57 / 1837
  27962. }
  27963. },
  27964. },
  27965. [
  27966. {
  27967. name: "Normal",
  27968. height: math.unit(5, "stories"),
  27969. default: true
  27970. },
  27971. ]
  27972. ))
  27973. characterMakers.push(() => makeCharacter(
  27974. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27975. {
  27976. taurSfw: {
  27977. height: math.unit(10, "meters"),
  27978. weight: math.unit(17500, "kg"),
  27979. name: "Taur",
  27980. image: {
  27981. source: "./media/characters/faey/taur-sfw.svg",
  27982. extra: 1200 / 968,
  27983. bottom: 41 / 1241
  27984. }
  27985. },
  27986. chestmaw: {
  27987. height: math.unit(2.01, "meters"),
  27988. name: "Chestmaw",
  27989. image: {
  27990. source: "./media/characters/faey/chestmaw.svg"
  27991. }
  27992. },
  27993. foot: {
  27994. height: math.unit(2.43, "meters"),
  27995. name: "Foot",
  27996. image: {
  27997. source: "./media/characters/faey/foot.svg"
  27998. }
  27999. },
  28000. jaws: {
  28001. height: math.unit(1.66, "meters"),
  28002. name: "Jaws",
  28003. image: {
  28004. source: "./media/characters/faey/jaws.svg"
  28005. }
  28006. },
  28007. tongues: {
  28008. height: math.unit(2.01, "meters"),
  28009. name: "Tongues",
  28010. image: {
  28011. source: "./media/characters/faey/tongues.svg"
  28012. }
  28013. },
  28014. },
  28015. [
  28016. {
  28017. name: "Small",
  28018. height: math.unit(10, "meters"),
  28019. default: true
  28020. },
  28021. {
  28022. name: "Big",
  28023. height: math.unit(500000, "km")
  28024. },
  28025. ]
  28026. ))
  28027. characterMakers.push(() => makeCharacter(
  28028. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28029. {
  28030. front: {
  28031. height: math.unit(7, "feet"),
  28032. weight: math.unit(275, "lb"),
  28033. name: "Front",
  28034. image: {
  28035. source: "./media/characters/roku/front.svg",
  28036. extra: 903 / 878,
  28037. bottom: 37 / 940
  28038. }
  28039. },
  28040. },
  28041. [
  28042. {
  28043. name: "Normal",
  28044. height: math.unit(7, "feet"),
  28045. default: true
  28046. },
  28047. {
  28048. name: "Macro",
  28049. height: math.unit(500, "feet")
  28050. },
  28051. {
  28052. name: "Megamacro",
  28053. height: math.unit(200, "miles")
  28054. },
  28055. ]
  28056. ))
  28057. characterMakers.push(() => makeCharacter(
  28058. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28059. {
  28060. front: {
  28061. height: math.unit(6 + 2 / 12, "feet"),
  28062. weight: math.unit(150, "lb"),
  28063. name: "Front",
  28064. image: {
  28065. source: "./media/characters/lira/front.svg",
  28066. extra: 1727 / 1605,
  28067. bottom: 26 / 1753
  28068. }
  28069. },
  28070. back: {
  28071. height: math.unit(6 + 2 / 12, "feet"),
  28072. weight: math.unit(150, "lb"),
  28073. name: "Back",
  28074. image: {
  28075. source: "./media/characters/lira/back.svg",
  28076. extra: 1713/1621,
  28077. bottom: 20/1733
  28078. }
  28079. },
  28080. hand: {
  28081. height: math.unit(0.75, "feet"),
  28082. name: "Hand",
  28083. image: {
  28084. source: "./media/characters/lira/hand.svg"
  28085. }
  28086. },
  28087. maw: {
  28088. height: math.unit(0.65, "feet"),
  28089. name: "Maw",
  28090. image: {
  28091. source: "./media/characters/lira/maw.svg"
  28092. }
  28093. },
  28094. pawDigi: {
  28095. height: math.unit(1.6, "feet"),
  28096. name: "Paw Digi",
  28097. image: {
  28098. source: "./media/characters/lira/paw-digi.svg"
  28099. }
  28100. },
  28101. pawPlanti: {
  28102. height: math.unit(1.4, "feet"),
  28103. name: "Paw Planti",
  28104. image: {
  28105. source: "./media/characters/lira/paw-planti.svg"
  28106. }
  28107. },
  28108. },
  28109. [
  28110. {
  28111. name: "Normal",
  28112. height: math.unit(6 + 2 / 12, "feet"),
  28113. default: true
  28114. },
  28115. {
  28116. name: "Macro",
  28117. height: math.unit(100, "feet")
  28118. },
  28119. {
  28120. name: "Macro²",
  28121. height: math.unit(1600, "feet")
  28122. },
  28123. {
  28124. name: "Planetary",
  28125. height: math.unit(20, "earths")
  28126. },
  28127. ]
  28128. ))
  28129. characterMakers.push(() => makeCharacter(
  28130. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28131. {
  28132. front: {
  28133. height: math.unit(6, "feet"),
  28134. weight: math.unit(150, "lb"),
  28135. name: "Front",
  28136. image: {
  28137. source: "./media/characters/hadjet/front.svg",
  28138. extra: 1480 / 1346,
  28139. bottom: 26 / 1506
  28140. }
  28141. },
  28142. frontNsfw: {
  28143. height: math.unit(6, "feet"),
  28144. weight: math.unit(150, "lb"),
  28145. name: "Front (NSFW)",
  28146. image: {
  28147. source: "./media/characters/hadjet/front-nsfw.svg",
  28148. extra: 1440 / 1358,
  28149. bottom: 52 / 1492
  28150. }
  28151. },
  28152. },
  28153. [
  28154. {
  28155. name: "Macro",
  28156. height: math.unit(10, "stories"),
  28157. default: true
  28158. },
  28159. {
  28160. name: "Megamacro",
  28161. height: math.unit(1.5, "miles")
  28162. },
  28163. {
  28164. name: "Megamacro+",
  28165. height: math.unit(5, "miles")
  28166. },
  28167. ]
  28168. ))
  28169. characterMakers.push(() => makeCharacter(
  28170. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28171. {
  28172. side: {
  28173. height: math.unit(106, "feet"),
  28174. weight: math.unit(500, "tonnes"),
  28175. name: "Side",
  28176. image: {
  28177. source: "./media/characters/kodran/side.svg",
  28178. extra: 553 / 480,
  28179. bottom: 33 / 586
  28180. }
  28181. },
  28182. front: {
  28183. height: math.unit(132, "feet"),
  28184. weight: math.unit(500, "tonnes"),
  28185. name: "Front",
  28186. image: {
  28187. source: "./media/characters/kodran/front.svg",
  28188. extra: 667 / 643,
  28189. bottom: 42 / 709
  28190. }
  28191. },
  28192. flying: {
  28193. height: math.unit(350, "feet"),
  28194. weight: math.unit(500, "tonnes"),
  28195. name: "Flying",
  28196. image: {
  28197. source: "./media/characters/kodran/flying.svg"
  28198. }
  28199. },
  28200. foot: {
  28201. height: math.unit(33, "feet"),
  28202. name: "Foot",
  28203. image: {
  28204. source: "./media/characters/kodran/foot.svg"
  28205. }
  28206. },
  28207. footFront: {
  28208. height: math.unit(19, "feet"),
  28209. name: "Foot (Front)",
  28210. image: {
  28211. source: "./media/characters/kodran/foot-front.svg",
  28212. extra: 261 / 261,
  28213. bottom: 91 / 352
  28214. }
  28215. },
  28216. headFront: {
  28217. height: math.unit(53, "feet"),
  28218. name: "Head (Front)",
  28219. image: {
  28220. source: "./media/characters/kodran/head-front.svg"
  28221. }
  28222. },
  28223. headSide: {
  28224. height: math.unit(65, "feet"),
  28225. name: "Head (Side)",
  28226. image: {
  28227. source: "./media/characters/kodran/head-side.svg"
  28228. }
  28229. },
  28230. throat: {
  28231. height: math.unit(79, "feet"),
  28232. name: "Throat",
  28233. image: {
  28234. source: "./media/characters/kodran/throat.svg"
  28235. }
  28236. },
  28237. },
  28238. [
  28239. {
  28240. name: "Large",
  28241. height: math.unit(106, "feet"),
  28242. default: true
  28243. },
  28244. ]
  28245. ))
  28246. characterMakers.push(() => makeCharacter(
  28247. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28248. {
  28249. side: {
  28250. height: math.unit(11, "feet"),
  28251. weight: math.unit(150, "lb"),
  28252. name: "Side",
  28253. image: {
  28254. source: "./media/characters/pyxaron/side.svg",
  28255. extra: 305 / 195,
  28256. bottom: 17 / 322
  28257. }
  28258. },
  28259. },
  28260. [
  28261. {
  28262. name: "Normal",
  28263. height: math.unit(11, "feet"),
  28264. default: true
  28265. },
  28266. ]
  28267. ))
  28268. characterMakers.push(() => makeCharacter(
  28269. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28270. {
  28271. front: {
  28272. height: math.unit(6, "feet"),
  28273. weight: math.unit(150, "lb"),
  28274. name: "Front",
  28275. image: {
  28276. source: "./media/characters/meep/front.svg",
  28277. extra: 88 / 80,
  28278. bottom: 6 / 94
  28279. }
  28280. },
  28281. },
  28282. [
  28283. {
  28284. name: "Fun Sized",
  28285. height: math.unit(2, "inches"),
  28286. default: true
  28287. },
  28288. {
  28289. name: "Friend Sized",
  28290. height: math.unit(8, "inches")
  28291. },
  28292. ]
  28293. ))
  28294. characterMakers.push(() => makeCharacter(
  28295. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28296. {
  28297. front: {
  28298. height: math.unit(15, "feet"),
  28299. weight: math.unit(2500, "lb"),
  28300. name: "Front",
  28301. image: {
  28302. source: "./media/characters/holly-rabbit/front.svg",
  28303. extra: 1433 / 1233,
  28304. bottom: 125 / 1558
  28305. }
  28306. },
  28307. dick: {
  28308. height: math.unit(4.6, "feet"),
  28309. name: "Dick",
  28310. image: {
  28311. source: "./media/characters/holly-rabbit/dick.svg"
  28312. }
  28313. },
  28314. },
  28315. [
  28316. {
  28317. name: "Normal",
  28318. height: math.unit(15, "feet"),
  28319. default: true
  28320. },
  28321. {
  28322. name: "Macro",
  28323. height: math.unit(250, "feet")
  28324. },
  28325. {
  28326. name: "Macro+",
  28327. height: math.unit(2500, "feet")
  28328. },
  28329. ]
  28330. ))
  28331. characterMakers.push(() => makeCharacter(
  28332. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28333. {
  28334. front: {
  28335. height: math.unit(3.02, "meters"),
  28336. weight: math.unit(500, "kg"),
  28337. name: "Front",
  28338. image: {
  28339. source: "./media/characters/drena/front.svg",
  28340. extra: 282 / 243,
  28341. bottom: 8 / 290
  28342. }
  28343. },
  28344. side: {
  28345. height: math.unit(3.02, "meters"),
  28346. weight: math.unit(500, "kg"),
  28347. name: "Side",
  28348. image: {
  28349. source: "./media/characters/drena/side.svg",
  28350. extra: 280 / 245,
  28351. bottom: 10 / 290
  28352. }
  28353. },
  28354. back: {
  28355. height: math.unit(3.02, "meters"),
  28356. weight: math.unit(500, "kg"),
  28357. name: "Back",
  28358. image: {
  28359. source: "./media/characters/drena/back.svg",
  28360. extra: 278 / 243,
  28361. bottom: 2 / 280
  28362. }
  28363. },
  28364. foot: {
  28365. height: math.unit(0.75, "meters"),
  28366. name: "Foot",
  28367. image: {
  28368. source: "./media/characters/drena/foot.svg"
  28369. }
  28370. },
  28371. maw: {
  28372. height: math.unit(0.82, "meters"),
  28373. name: "Maw",
  28374. image: {
  28375. source: "./media/characters/drena/maw.svg"
  28376. }
  28377. },
  28378. rump: {
  28379. height: math.unit(0.93, "meters"),
  28380. name: "Rump",
  28381. image: {
  28382. source: "./media/characters/drena/rump.svg"
  28383. }
  28384. },
  28385. },
  28386. [
  28387. {
  28388. name: "Normal",
  28389. height: math.unit(3.02, "meters"),
  28390. default: true
  28391. },
  28392. ]
  28393. ))
  28394. characterMakers.push(() => makeCharacter(
  28395. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28396. {
  28397. front: {
  28398. height: math.unit(6 + 4 / 12, "feet"),
  28399. weight: math.unit(250, "lb"),
  28400. name: "Front",
  28401. image: {
  28402. source: "./media/characters/remmyzilla/front.svg",
  28403. extra: 4033 / 3588,
  28404. bottom: 123 / 4156
  28405. }
  28406. },
  28407. back: {
  28408. height: math.unit(6 + 4 / 12, "feet"),
  28409. weight: math.unit(250, "lb"),
  28410. name: "Back",
  28411. image: {
  28412. source: "./media/characters/remmyzilla/back.svg",
  28413. extra: 2687 / 2555,
  28414. bottom: 48 / 2735
  28415. }
  28416. },
  28417. paw: {
  28418. height: math.unit(1.73, "feet"),
  28419. name: "Paw",
  28420. image: {
  28421. source: "./media/characters/remmyzilla/paw.svg"
  28422. }
  28423. },
  28424. maw: {
  28425. height: math.unit(1.73, "feet"),
  28426. name: "Maw",
  28427. image: {
  28428. source: "./media/characters/remmyzilla/maw.svg"
  28429. }
  28430. },
  28431. },
  28432. [
  28433. {
  28434. name: "Normal",
  28435. height: math.unit(6 + 4 / 12, "feet")
  28436. },
  28437. {
  28438. name: "Minimacro",
  28439. height: math.unit(12 + 8 / 12, "feet")
  28440. },
  28441. {
  28442. name: "Normal",
  28443. height: math.unit(640, "feet"),
  28444. default: true
  28445. },
  28446. {
  28447. name: "Megamacro",
  28448. height: math.unit(6400, "feet")
  28449. },
  28450. {
  28451. name: "Gigamacro",
  28452. height: math.unit(64000, "miles")
  28453. },
  28454. ]
  28455. ))
  28456. characterMakers.push(() => makeCharacter(
  28457. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28458. {
  28459. front: {
  28460. height: math.unit(2.5, "meters"),
  28461. weight: math.unit(300, "lb"),
  28462. name: "Front",
  28463. image: {
  28464. source: "./media/characters/lawrence/front.svg",
  28465. extra: 357 / 335,
  28466. bottom: 30 / 387
  28467. }
  28468. },
  28469. back: {
  28470. height: math.unit(2.5, "meters"),
  28471. weight: math.unit(300, "lb"),
  28472. name: "Back",
  28473. image: {
  28474. source: "./media/characters/lawrence/back.svg",
  28475. extra: 357 / 338,
  28476. bottom: 16 / 373
  28477. }
  28478. },
  28479. head: {
  28480. height: math.unit(0.9, "meter"),
  28481. name: "Head",
  28482. image: {
  28483. source: "./media/characters/lawrence/head.svg"
  28484. }
  28485. },
  28486. maw: {
  28487. height: math.unit(0.7, "meter"),
  28488. name: "Maw",
  28489. image: {
  28490. source: "./media/characters/lawrence/maw.svg"
  28491. }
  28492. },
  28493. footBottom: {
  28494. height: math.unit(0.5, "meter"),
  28495. name: "Foot (Bottom)",
  28496. image: {
  28497. source: "./media/characters/lawrence/foot-bottom.svg"
  28498. }
  28499. },
  28500. footTop: {
  28501. height: math.unit(0.5, "meter"),
  28502. name: "Foot (Top)",
  28503. image: {
  28504. source: "./media/characters/lawrence/foot-top.svg"
  28505. }
  28506. },
  28507. },
  28508. [
  28509. {
  28510. name: "Normal",
  28511. height: math.unit(2.5, "meters"),
  28512. default: true
  28513. },
  28514. {
  28515. name: "Macro",
  28516. height: math.unit(95, "meters")
  28517. },
  28518. {
  28519. name: "Megamacro",
  28520. height: math.unit(150, "km")
  28521. },
  28522. ]
  28523. ))
  28524. characterMakers.push(() => makeCharacter(
  28525. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28526. {
  28527. front: {
  28528. height: math.unit(4.2, "meters"),
  28529. name: "Front",
  28530. image: {
  28531. source: "./media/characters/sydney/front.svg",
  28532. extra: 1323 / 1277,
  28533. bottom: 111 / 1434
  28534. }
  28535. },
  28536. },
  28537. [
  28538. {
  28539. name: "Normal",
  28540. height: math.unit(4.2, "meters"),
  28541. default: true
  28542. },
  28543. ]
  28544. ))
  28545. characterMakers.push(() => makeCharacter(
  28546. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28547. {
  28548. back: {
  28549. height: math.unit(201, "feet"),
  28550. name: "Back",
  28551. image: {
  28552. source: "./media/characters/jessica/back.svg",
  28553. extra: 273 / 259,
  28554. bottom: 7 / 280
  28555. }
  28556. },
  28557. },
  28558. [
  28559. {
  28560. name: "Normal",
  28561. height: math.unit(201, "feet"),
  28562. default: true
  28563. },
  28564. {
  28565. name: "Megamacro",
  28566. height: math.unit(8, "miles")
  28567. },
  28568. ]
  28569. ))
  28570. characterMakers.push(() => makeCharacter(
  28571. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28572. {
  28573. side: {
  28574. height: math.unit(320, "cm"),
  28575. name: "Side",
  28576. image: {
  28577. source: "./media/characters/victoria/side.svg",
  28578. extra: 778 / 346,
  28579. bottom: 56 / 834
  28580. }
  28581. },
  28582. maw: {
  28583. height: math.unit(5.9, "feet"),
  28584. name: "Maw",
  28585. image: {
  28586. source: "./media/characters/victoria/maw.svg"
  28587. }
  28588. },
  28589. },
  28590. [
  28591. {
  28592. name: "Normal",
  28593. height: math.unit(320, "cm"),
  28594. default: true
  28595. },
  28596. ]
  28597. ))
  28598. characterMakers.push(() => makeCharacter(
  28599. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28600. {
  28601. front: {
  28602. height: math.unit(5 + 6 / 12, "feet"),
  28603. name: "Front",
  28604. image: {
  28605. source: "./media/characters/cat/front.svg",
  28606. extra: 1449/1295,
  28607. bottom: 34/1483
  28608. }
  28609. },
  28610. back: {
  28611. height: math.unit(5 + 6 / 12, "feet"),
  28612. name: "Back",
  28613. image: {
  28614. source: "./media/characters/cat/back.svg",
  28615. extra: 1466/1301,
  28616. bottom: 19/1485
  28617. }
  28618. },
  28619. taur: {
  28620. height: math.unit(7, "feet"),
  28621. name: "Taur",
  28622. image: {
  28623. source: "./media/characters/cat/taur.svg",
  28624. extra: 1389/1233,
  28625. bottom: 83/1472
  28626. }
  28627. },
  28628. lucarioFront: {
  28629. height: math.unit(4, "feet"),
  28630. name: "Lucario (Front)",
  28631. image: {
  28632. source: "./media/characters/cat/lucario-front.svg",
  28633. extra: 1149/1019,
  28634. bottom: 84/1233
  28635. }
  28636. },
  28637. lucarioBack: {
  28638. height: math.unit(4, "feet"),
  28639. name: "Lucario (Back)",
  28640. image: {
  28641. source: "./media/characters/cat/lucario-back.svg",
  28642. extra: 1190/1059,
  28643. bottom: 33/1223
  28644. }
  28645. },
  28646. megaLucario: {
  28647. height: math.unit(4, "feet"),
  28648. name: "Mega Lucario",
  28649. image: {
  28650. source: "./media/characters/cat/mega-lucario.svg",
  28651. extra: 1515 / 1319,
  28652. bottom: 63 / 1578
  28653. }
  28654. },
  28655. nickit: {
  28656. height: math.unit(2, "feet"),
  28657. name: "Nickit",
  28658. image: {
  28659. source: "./media/characters/cat/nickit.svg",
  28660. extra: 1980 / 1585,
  28661. bottom: 102 / 2082
  28662. }
  28663. },
  28664. lopunnyFront: {
  28665. height: math.unit(5, "feet"),
  28666. name: "Lopunny (Front)",
  28667. image: {
  28668. source: "./media/characters/cat/lopunny-front.svg",
  28669. extra: 1782 / 1469,
  28670. bottom: 38 / 1820
  28671. }
  28672. },
  28673. lopunnyBack: {
  28674. height: math.unit(5, "feet"),
  28675. name: "Lopunny (Back)",
  28676. image: {
  28677. source: "./media/characters/cat/lopunny-back.svg",
  28678. extra: 1660 / 1490,
  28679. bottom: 25 / 1685
  28680. }
  28681. },
  28682. },
  28683. [
  28684. {
  28685. name: "Really small",
  28686. height: math.unit(1, "nm")
  28687. },
  28688. {
  28689. name: "Micro",
  28690. height: math.unit(5, "inches")
  28691. },
  28692. {
  28693. name: "Normal",
  28694. height: math.unit(5 + 6 / 12, "feet"),
  28695. default: true
  28696. },
  28697. {
  28698. name: "Macro",
  28699. height: math.unit(50, "feet")
  28700. },
  28701. {
  28702. name: "Macro+",
  28703. height: math.unit(150, "feet")
  28704. },
  28705. {
  28706. name: "Megamacro",
  28707. height: math.unit(100, "miles")
  28708. },
  28709. ]
  28710. ))
  28711. characterMakers.push(() => makeCharacter(
  28712. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28713. {
  28714. front: {
  28715. height: math.unit(63.4, "meters"),
  28716. weight: math.unit(3.28349e+6, "kilograms"),
  28717. name: "Front",
  28718. image: {
  28719. source: "./media/characters/kirina-violet/front.svg",
  28720. extra: 2812 / 2725,
  28721. bottom: 0 / 2812
  28722. }
  28723. },
  28724. back: {
  28725. height: math.unit(63.4, "meters"),
  28726. weight: math.unit(3.28349e+6, "kilograms"),
  28727. name: "Back",
  28728. image: {
  28729. source: "./media/characters/kirina-violet/back.svg",
  28730. extra: 2812 / 2725,
  28731. bottom: 0 / 2812
  28732. }
  28733. },
  28734. mouth: {
  28735. height: math.unit(4.35, "meters"),
  28736. name: "Mouth",
  28737. image: {
  28738. source: "./media/characters/kirina-violet/mouth.svg"
  28739. }
  28740. },
  28741. paw: {
  28742. height: math.unit(5.6, "meters"),
  28743. name: "Paw",
  28744. image: {
  28745. source: "./media/characters/kirina-violet/paw.svg"
  28746. }
  28747. },
  28748. tail: {
  28749. height: math.unit(18, "meters"),
  28750. name: "Tail",
  28751. image: {
  28752. source: "./media/characters/kirina-violet/tail.svg"
  28753. }
  28754. },
  28755. },
  28756. [
  28757. {
  28758. name: "Macro",
  28759. height: math.unit(63.4, "meters"),
  28760. default: true
  28761. },
  28762. ]
  28763. ))
  28764. characterMakers.push(() => makeCharacter(
  28765. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28766. {
  28767. front: {
  28768. height: math.unit(75, "feet"),
  28769. name: "Front",
  28770. image: {
  28771. source: "./media/characters/cat-gigachu/front.svg",
  28772. extra: 1239/1027,
  28773. bottom: 32/1271
  28774. }
  28775. },
  28776. back: {
  28777. height: math.unit(75, "feet"),
  28778. name: "Back",
  28779. image: {
  28780. source: "./media/characters/cat-gigachu/back.svg",
  28781. extra: 1229/1030,
  28782. bottom: 9/1238
  28783. }
  28784. },
  28785. },
  28786. [
  28787. {
  28788. name: "Dynamax",
  28789. height: math.unit(75, "feet"),
  28790. default: true
  28791. },
  28792. ]
  28793. ))
  28794. characterMakers.push(() => makeCharacter(
  28795. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28796. {
  28797. front: {
  28798. height: math.unit(6, "feet"),
  28799. weight: math.unit(150, "lb"),
  28800. name: "Front",
  28801. image: {
  28802. source: "./media/characters/sfaiyan/front.svg",
  28803. extra: 999 / 978,
  28804. bottom: 5 / 1004
  28805. }
  28806. },
  28807. },
  28808. [
  28809. {
  28810. name: "Normal",
  28811. height: math.unit(1.82, "meters")
  28812. },
  28813. {
  28814. name: "Giant",
  28815. height: math.unit(2.27, "km"),
  28816. default: true
  28817. },
  28818. ]
  28819. ))
  28820. characterMakers.push(() => makeCharacter(
  28821. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28822. {
  28823. front: {
  28824. height: math.unit(179, "cm"),
  28825. weight: math.unit(100, "kg"),
  28826. name: "Front",
  28827. image: {
  28828. source: "./media/characters/raunehkeli/front.svg",
  28829. extra: 1934 / 1926,
  28830. bottom: 0 / 1934
  28831. }
  28832. },
  28833. },
  28834. [
  28835. {
  28836. name: "Normal",
  28837. height: math.unit(179, "cm")
  28838. },
  28839. {
  28840. name: "Maximum",
  28841. height: math.unit(575, "meters"),
  28842. default: true
  28843. },
  28844. ]
  28845. ))
  28846. characterMakers.push(() => makeCharacter(
  28847. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28848. {
  28849. front: {
  28850. height: math.unit(6, "feet"),
  28851. weight: math.unit(150, "lb"),
  28852. name: "Front",
  28853. image: {
  28854. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28855. extra: 2625 / 2518,
  28856. bottom: 60 / 2685
  28857. }
  28858. },
  28859. },
  28860. [
  28861. {
  28862. name: "Normal",
  28863. height: math.unit(6 + 2 / 12, "feet")
  28864. },
  28865. {
  28866. name: "Macro",
  28867. height: math.unit(1180, "feet"),
  28868. default: true
  28869. },
  28870. ]
  28871. ))
  28872. characterMakers.push(() => makeCharacter(
  28873. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28874. {
  28875. front: {
  28876. height: math.unit(5 + 6 / 12, "feet"),
  28877. weight: math.unit(108, "lb"),
  28878. name: "Front",
  28879. image: {
  28880. source: "./media/characters/lilith-zott/front.svg",
  28881. extra: 2510 / 2238,
  28882. bottom: 100 / 2610
  28883. }
  28884. },
  28885. frontDressed: {
  28886. height: math.unit(5 + 6 / 12, "feet"),
  28887. weight: math.unit(108, "lb"),
  28888. name: "Front (Dressed)",
  28889. image: {
  28890. source: "./media/characters/lilith-zott/front-dressed.svg",
  28891. extra: 2510 / 2238,
  28892. bottom: 100 / 2610
  28893. }
  28894. },
  28895. },
  28896. [
  28897. {
  28898. name: "Normal",
  28899. height: math.unit(5 + 6 / 12, "feet")
  28900. },
  28901. {
  28902. name: "Macro",
  28903. height: math.unit(1030, "feet"),
  28904. default: true
  28905. },
  28906. ]
  28907. ))
  28908. characterMakers.push(() => makeCharacter(
  28909. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28910. {
  28911. front: {
  28912. height: math.unit(6, "feet"),
  28913. weight: math.unit(150, "lb"),
  28914. name: "Front",
  28915. image: {
  28916. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28917. extra: 2567 / 2435,
  28918. bottom: 39 / 2606
  28919. }
  28920. },
  28921. frontSuper: {
  28922. height: math.unit(6, "feet"),
  28923. name: "Front (Super)",
  28924. image: {
  28925. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28926. extra: 2567 / 2435,
  28927. bottom: 39 / 2606
  28928. }
  28929. },
  28930. },
  28931. [
  28932. {
  28933. name: "Normal",
  28934. height: math.unit(5 + 10 / 12, "feet")
  28935. },
  28936. {
  28937. name: "Macro",
  28938. height: math.unit(1100, "feet"),
  28939. default: true
  28940. },
  28941. ]
  28942. ))
  28943. characterMakers.push(() => makeCharacter(
  28944. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28945. {
  28946. front: {
  28947. height: math.unit(100, "miles"),
  28948. name: "Front",
  28949. image: {
  28950. source: "./media/characters/sona/front.svg",
  28951. extra: 2433 / 2201,
  28952. bottom: 53 / 2486
  28953. }
  28954. },
  28955. foot: {
  28956. height: math.unit(16.1, "miles"),
  28957. name: "Foot",
  28958. image: {
  28959. source: "./media/characters/sona/foot.svg"
  28960. }
  28961. },
  28962. },
  28963. [
  28964. {
  28965. name: "Macro",
  28966. height: math.unit(100, "miles"),
  28967. default: true
  28968. },
  28969. ]
  28970. ))
  28971. characterMakers.push(() => makeCharacter(
  28972. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28973. {
  28974. front: {
  28975. height: math.unit(6, "feet"),
  28976. weight: math.unit(150, "lb"),
  28977. name: "Front",
  28978. image: {
  28979. source: "./media/characters/bailey/front.svg",
  28980. extra: 1778 / 1724,
  28981. bottom: 30 / 1808
  28982. }
  28983. },
  28984. },
  28985. [
  28986. {
  28987. name: "Micro",
  28988. height: math.unit(4, "inches")
  28989. },
  28990. {
  28991. name: "Normal",
  28992. height: math.unit(5 + 5 / 12, "feet"),
  28993. default: true
  28994. },
  28995. {
  28996. name: "Macro",
  28997. height: math.unit(250, "feet")
  28998. },
  28999. {
  29000. name: "Megamacro",
  29001. height: math.unit(100, "miles")
  29002. },
  29003. ]
  29004. ))
  29005. characterMakers.push(() => makeCharacter(
  29006. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29007. {
  29008. front: {
  29009. height: math.unit(5 + 2 / 12, "feet"),
  29010. weight: math.unit(120, "lb"),
  29011. name: "Front",
  29012. image: {
  29013. source: "./media/characters/snaps/front.svg",
  29014. extra: 2370 / 2177,
  29015. bottom: 48 / 2418
  29016. }
  29017. },
  29018. back: {
  29019. height: math.unit(5 + 2 / 12, "feet"),
  29020. weight: math.unit(120, "lb"),
  29021. name: "Back",
  29022. image: {
  29023. source: "./media/characters/snaps/back.svg",
  29024. extra: 2408 / 2258,
  29025. bottom: 15 / 2423
  29026. }
  29027. },
  29028. },
  29029. [
  29030. {
  29031. name: "Micro",
  29032. height: math.unit(9, "inches")
  29033. },
  29034. {
  29035. name: "Normal",
  29036. height: math.unit(5 + 2 / 12, "feet"),
  29037. default: true
  29038. },
  29039. {
  29040. name: "Mini Macro",
  29041. height: math.unit(10, "feet")
  29042. },
  29043. ]
  29044. ))
  29045. characterMakers.push(() => makeCharacter(
  29046. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29047. {
  29048. front: {
  29049. height: math.unit(1.8, "meters"),
  29050. weight: math.unit(85, "kg"),
  29051. name: "Front",
  29052. image: {
  29053. source: "./media/characters/azteck/front.svg",
  29054. extra: 2815 / 2625,
  29055. bottom: 89 / 2904
  29056. }
  29057. },
  29058. back: {
  29059. height: math.unit(1.8, "meters"),
  29060. weight: math.unit(85, "kg"),
  29061. name: "Back",
  29062. image: {
  29063. source: "./media/characters/azteck/back.svg",
  29064. extra: 2856 / 2648,
  29065. bottom: 85 / 2941
  29066. }
  29067. },
  29068. frontDressed: {
  29069. height: math.unit(1.8, "meters"),
  29070. weight: math.unit(85, "kg"),
  29071. name: "Front (Dressed)",
  29072. image: {
  29073. source: "./media/characters/azteck/front-dressed.svg",
  29074. extra: 2147 / 2003,
  29075. bottom: 68 / 2215
  29076. }
  29077. },
  29078. head: {
  29079. height: math.unit(0.47, "meters"),
  29080. weight: math.unit(85, "kg"),
  29081. name: "Head",
  29082. image: {
  29083. source: "./media/characters/azteck/head.svg"
  29084. }
  29085. },
  29086. },
  29087. [
  29088. {
  29089. name: "Bite sized",
  29090. height: math.unit(16, "cm")
  29091. },
  29092. {
  29093. name: "Normal",
  29094. height: math.unit(1.8, "meters"),
  29095. default: true
  29096. },
  29097. ]
  29098. ))
  29099. characterMakers.push(() => makeCharacter(
  29100. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29101. {
  29102. front: {
  29103. height: math.unit(6, "feet"),
  29104. weight: math.unit(150, "lb"),
  29105. name: "Front",
  29106. image: {
  29107. source: "./media/characters/pidge/front.svg",
  29108. extra: 620 / 588,
  29109. bottom: 9 / 629
  29110. }
  29111. },
  29112. back: {
  29113. height: math.unit(6, "feet"),
  29114. weight: math.unit(150, "lb"),
  29115. name: "Back",
  29116. image: {
  29117. source: "./media/characters/pidge/back.svg",
  29118. extra: 620 / 588,
  29119. bottom: 9 / 629
  29120. }
  29121. },
  29122. },
  29123. [
  29124. {
  29125. name: "Macro",
  29126. height: math.unit(1, "mile"),
  29127. default: true
  29128. },
  29129. ]
  29130. ))
  29131. characterMakers.push(() => makeCharacter(
  29132. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29133. {
  29134. front: {
  29135. height: math.unit(6, "feet"),
  29136. weight: math.unit(150, "lb"),
  29137. name: "Front",
  29138. image: {
  29139. source: "./media/characters/en/front.svg",
  29140. extra: 1697 / 1563,
  29141. bottom: 103 / 1800
  29142. }
  29143. },
  29144. back: {
  29145. height: math.unit(6, "feet"),
  29146. weight: math.unit(150, "lb"),
  29147. name: "Back",
  29148. image: {
  29149. source: "./media/characters/en/back.svg",
  29150. extra: 1700 / 1570,
  29151. bottom: 51 / 1751
  29152. }
  29153. },
  29154. frontDressed: {
  29155. height: math.unit(6, "feet"),
  29156. weight: math.unit(150, "lb"),
  29157. name: "Front (Dressed)",
  29158. image: {
  29159. source: "./media/characters/en/front-dressed.svg",
  29160. extra: 1697 / 1563,
  29161. bottom: 103 / 1800
  29162. }
  29163. },
  29164. backDressed: {
  29165. height: math.unit(6, "feet"),
  29166. weight: math.unit(150, "lb"),
  29167. name: "Back (Dressed)",
  29168. image: {
  29169. source: "./media/characters/en/back-dressed.svg",
  29170. extra: 1700 / 1570,
  29171. bottom: 51 / 1751
  29172. }
  29173. },
  29174. },
  29175. [
  29176. {
  29177. name: "Macro",
  29178. height: math.unit(210, "feet"),
  29179. default: true
  29180. },
  29181. ]
  29182. ))
  29183. characterMakers.push(() => makeCharacter(
  29184. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29185. {
  29186. front: {
  29187. height: math.unit(6, "feet"),
  29188. weight: math.unit(150, "lb"),
  29189. name: "Front",
  29190. image: {
  29191. source: "./media/characters/haze-orris/front.svg",
  29192. extra: 3975 / 3525,
  29193. bottom: 137 / 4112
  29194. }
  29195. },
  29196. },
  29197. [
  29198. {
  29199. name: "Micro",
  29200. height: math.unit(150, "mm"),
  29201. default: true
  29202. },
  29203. ]
  29204. ))
  29205. characterMakers.push(() => makeCharacter(
  29206. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29207. {
  29208. front: {
  29209. height: math.unit(6, "feet"),
  29210. weight: math.unit(150, "lb"),
  29211. name: "Front",
  29212. image: {
  29213. source: "./media/characters/casselene-yaro/front.svg",
  29214. extra: 4721 / 4541,
  29215. bottom: 82 / 4803
  29216. }
  29217. },
  29218. back: {
  29219. height: math.unit(6, "feet"),
  29220. weight: math.unit(150, "lb"),
  29221. name: "Back",
  29222. image: {
  29223. source: "./media/characters/casselene-yaro/back.svg",
  29224. extra: 4569 / 4377,
  29225. bottom: 69 / 4638
  29226. }
  29227. },
  29228. frontDressed: {
  29229. height: math.unit(6, "feet"),
  29230. weight: math.unit(150, "lb"),
  29231. name: "Front-dressed",
  29232. image: {
  29233. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29234. extra: 4721 / 4541,
  29235. bottom: 82 / 4803
  29236. }
  29237. },
  29238. },
  29239. [
  29240. {
  29241. name: "Macro",
  29242. height: math.unit(190, "feet"),
  29243. default: true
  29244. },
  29245. ]
  29246. ))
  29247. characterMakers.push(() => makeCharacter(
  29248. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29249. {
  29250. front: {
  29251. height: math.unit(6, "feet"),
  29252. weight: math.unit(150, "lb"),
  29253. name: "Front",
  29254. image: {
  29255. source: "./media/characters/myra-rue-delore/front.svg",
  29256. extra: 1340 / 1308,
  29257. bottom: 67 / 1407
  29258. }
  29259. },
  29260. back: {
  29261. height: math.unit(6, "feet"),
  29262. weight: math.unit(150, "lb"),
  29263. name: "Back",
  29264. image: {
  29265. source: "./media/characters/myra-rue-delore/back.svg",
  29266. extra: 1341 / 1310,
  29267. bottom: 40 / 1381
  29268. }
  29269. },
  29270. frontDressed: {
  29271. height: math.unit(6, "feet"),
  29272. weight: math.unit(150, "lb"),
  29273. name: "Front (Dressed)",
  29274. image: {
  29275. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29276. extra: 1340 / 1308,
  29277. bottom: 67 / 1407
  29278. }
  29279. },
  29280. },
  29281. [
  29282. {
  29283. name: "Macro",
  29284. height: math.unit(150, "feet"),
  29285. default: true
  29286. },
  29287. ]
  29288. ))
  29289. characterMakers.push(() => makeCharacter(
  29290. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29291. {
  29292. front: {
  29293. height: math.unit(10, "feet"),
  29294. weight: math.unit(15015, "lb"),
  29295. name: "Front",
  29296. image: {
  29297. source: "./media/characters/fem!plat/front.svg",
  29298. extra: 2799 / 2604,
  29299. bottom: 149 / 2948
  29300. }
  29301. },
  29302. },
  29303. [
  29304. {
  29305. name: "Normal",
  29306. height: math.unit(10, "feet"),
  29307. default: true
  29308. },
  29309. {
  29310. name: "Macro",
  29311. height: math.unit(100, "feet")
  29312. },
  29313. {
  29314. name: "Megamacro",
  29315. height: math.unit(1000, "feet")
  29316. },
  29317. ]
  29318. ))
  29319. characterMakers.push(() => makeCharacter(
  29320. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29321. {
  29322. front: {
  29323. height: math.unit(15 + 5 / 12, "feet"),
  29324. weight: math.unit(4600, "lb"),
  29325. name: "Front",
  29326. image: {
  29327. source: "./media/characters/neapolitan-ananassa/front.svg",
  29328. extra: 2903 / 2736,
  29329. bottom: 0 / 2903
  29330. }
  29331. },
  29332. side: {
  29333. height: math.unit(15 + 5 / 12, "feet"),
  29334. weight: math.unit(4600, "lb"),
  29335. name: "Side",
  29336. image: {
  29337. source: "./media/characters/neapolitan-ananassa/side.svg",
  29338. extra: 2925 / 2719,
  29339. bottom: 0 / 2925
  29340. }
  29341. },
  29342. back: {
  29343. height: math.unit(15 + 5 / 12, "feet"),
  29344. weight: math.unit(4600, "lb"),
  29345. name: "Back",
  29346. image: {
  29347. source: "./media/characters/neapolitan-ananassa/back.svg",
  29348. extra: 2903 / 2736,
  29349. bottom: 0 / 2903
  29350. }
  29351. },
  29352. },
  29353. [
  29354. {
  29355. name: "Normal",
  29356. height: math.unit(15 + 5 / 12, "feet"),
  29357. default: true
  29358. },
  29359. {
  29360. name: "Post-Millenium",
  29361. height: math.unit(35 + 5 / 12, "feet")
  29362. },
  29363. {
  29364. name: "Post-Era",
  29365. height: math.unit(450 + 5 / 12, "feet")
  29366. },
  29367. ]
  29368. ))
  29369. characterMakers.push(() => makeCharacter(
  29370. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29371. {
  29372. front: {
  29373. height: math.unit(300, "meters"),
  29374. weight: math.unit(125000, "tonnes"),
  29375. name: "Front",
  29376. image: {
  29377. source: "./media/characters/pazuzu/front.svg",
  29378. extra: 877 / 794,
  29379. bottom: 47 / 924
  29380. }
  29381. },
  29382. },
  29383. [
  29384. {
  29385. name: "Macro",
  29386. height: math.unit(300, "meters"),
  29387. default: true
  29388. },
  29389. ]
  29390. ))
  29391. characterMakers.push(() => makeCharacter(
  29392. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29393. {
  29394. side: {
  29395. height: math.unit(10 + 7 / 12, "feet"),
  29396. weight: math.unit(2.5, "tons"),
  29397. name: "Side",
  29398. image: {
  29399. source: "./media/characters/aasha/side.svg",
  29400. extra: 1345 / 1245,
  29401. bottom: 111 / 1456
  29402. }
  29403. },
  29404. back: {
  29405. height: math.unit(10 + 7 / 12, "feet"),
  29406. weight: math.unit(2.5, "tons"),
  29407. name: "Back",
  29408. image: {
  29409. source: "./media/characters/aasha/back.svg",
  29410. extra: 1133 / 1057,
  29411. bottom: 257 / 1390
  29412. }
  29413. },
  29414. },
  29415. [
  29416. {
  29417. name: "Normal",
  29418. height: math.unit(10 + 7 / 12, "feet"),
  29419. default: true
  29420. },
  29421. ]
  29422. ))
  29423. characterMakers.push(() => makeCharacter(
  29424. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29425. {
  29426. front: {
  29427. height: math.unit(6 + 3 / 12, "feet"),
  29428. name: "Front",
  29429. image: {
  29430. source: "./media/characters/nevan/front.svg",
  29431. extra: 704 / 704,
  29432. bottom: 28 / 732
  29433. }
  29434. },
  29435. back: {
  29436. height: math.unit(6 + 3 / 12, "feet"),
  29437. name: "Back",
  29438. image: {
  29439. source: "./media/characters/nevan/back.svg",
  29440. extra: 714 / 714,
  29441. bottom: 21 / 735
  29442. }
  29443. },
  29444. frontFlaccid: {
  29445. height: math.unit(6 + 3 / 12, "feet"),
  29446. name: "Front (Flaccid)",
  29447. image: {
  29448. source: "./media/characters/nevan/front-flaccid.svg",
  29449. extra: 704 / 704,
  29450. bottom: 28 / 732
  29451. }
  29452. },
  29453. frontErect: {
  29454. height: math.unit(6 + 3 / 12, "feet"),
  29455. name: "Front (Erect)",
  29456. image: {
  29457. source: "./media/characters/nevan/front-erect.svg",
  29458. extra: 704 / 704,
  29459. bottom: 28 / 732
  29460. }
  29461. },
  29462. backFlaccid: {
  29463. height: math.unit(6 + 3 / 12, "feet"),
  29464. name: "Back (Flaccid)",
  29465. image: {
  29466. source: "./media/characters/nevan/back-flaccid.svg",
  29467. extra: 714 / 714,
  29468. bottom: 21 / 735
  29469. }
  29470. },
  29471. },
  29472. [
  29473. {
  29474. name: "Normal",
  29475. height: math.unit(6 + 3 / 12, "feet"),
  29476. default: true
  29477. },
  29478. ]
  29479. ))
  29480. characterMakers.push(() => makeCharacter(
  29481. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29482. {
  29483. front: {
  29484. height: math.unit(4, "feet"),
  29485. name: "Front",
  29486. image: {
  29487. source: "./media/characters/arhan/front.svg",
  29488. extra: 3368 / 3133,
  29489. bottom: 0 / 3368
  29490. }
  29491. },
  29492. side: {
  29493. height: math.unit(4, "feet"),
  29494. name: "Side",
  29495. image: {
  29496. source: "./media/characters/arhan/side.svg",
  29497. extra: 3347 / 3105,
  29498. bottom: 0 / 3347
  29499. }
  29500. },
  29501. tongue: {
  29502. height: math.unit(1.42, "feet"),
  29503. name: "Tongue",
  29504. image: {
  29505. source: "./media/characters/arhan/tongue.svg"
  29506. }
  29507. },
  29508. head: {
  29509. height: math.unit(0.85, "feet"),
  29510. name: "Head",
  29511. image: {
  29512. source: "./media/characters/arhan/head.svg"
  29513. }
  29514. },
  29515. },
  29516. [
  29517. {
  29518. name: "Normal",
  29519. height: math.unit(4, "feet"),
  29520. default: true
  29521. },
  29522. ]
  29523. ))
  29524. characterMakers.push(() => makeCharacter(
  29525. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29526. {
  29527. front: {
  29528. height: math.unit(5 + 7.5 / 12, "feet"),
  29529. weight: math.unit(120, "lb"),
  29530. name: "Front",
  29531. image: {
  29532. source: "./media/characters/digi-duncan/front.svg",
  29533. extra: 330 / 326,
  29534. bottom: 16 / 346
  29535. }
  29536. },
  29537. side: {
  29538. height: math.unit(5 + 7.5 / 12, "feet"),
  29539. weight: math.unit(120, "lb"),
  29540. name: "Side",
  29541. image: {
  29542. source: "./media/characters/digi-duncan/side.svg",
  29543. extra: 341 / 337,
  29544. bottom: 1 / 342
  29545. }
  29546. },
  29547. back: {
  29548. height: math.unit(5 + 7.5 / 12, "feet"),
  29549. weight: math.unit(120, "lb"),
  29550. name: "Back",
  29551. image: {
  29552. source: "./media/characters/digi-duncan/back.svg",
  29553. extra: 330 / 326,
  29554. bottom: 12 / 342
  29555. }
  29556. },
  29557. },
  29558. [
  29559. {
  29560. name: "Speck",
  29561. height: math.unit(0.25, "mm")
  29562. },
  29563. {
  29564. name: "Micro",
  29565. height: math.unit(5, "mm")
  29566. },
  29567. {
  29568. name: "Tiny",
  29569. height: math.unit(0.5, "inches"),
  29570. default: true
  29571. },
  29572. {
  29573. name: "Human",
  29574. height: math.unit(5 + 7.5 / 12, "feet")
  29575. },
  29576. {
  29577. name: "Minigiant",
  29578. height: math.unit(8 + 5.25, "feet")
  29579. },
  29580. {
  29581. name: "Giant",
  29582. height: math.unit(2000, "feet")
  29583. },
  29584. {
  29585. name: "Mega",
  29586. height: math.unit(371.1, "miles")
  29587. },
  29588. ]
  29589. ))
  29590. characterMakers.push(() => makeCharacter(
  29591. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29592. {
  29593. front: {
  29594. height: math.unit(2, "meters"),
  29595. weight: math.unit(350, "kg"),
  29596. name: "Front",
  29597. image: {
  29598. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29599. extra: 898 / 838,
  29600. bottom: 9 / 907
  29601. }
  29602. },
  29603. },
  29604. [
  29605. {
  29606. name: "Micro",
  29607. height: math.unit(8, "meters")
  29608. },
  29609. {
  29610. name: "Normal",
  29611. height: math.unit(50, "meters"),
  29612. default: true
  29613. },
  29614. {
  29615. name: "Macro",
  29616. height: math.unit(500, "meters")
  29617. },
  29618. ]
  29619. ))
  29620. characterMakers.push(() => makeCharacter(
  29621. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29622. {
  29623. front: {
  29624. height: math.unit(6 + 6 / 12, "feet"),
  29625. name: "Front",
  29626. image: {
  29627. source: "./media/characters/khardesh/front.svg",
  29628. extra: 888 / 797,
  29629. bottom: 25 / 913
  29630. }
  29631. },
  29632. },
  29633. [
  29634. {
  29635. name: "Normal",
  29636. height: math.unit(6 + 6 / 12, "feet"),
  29637. default: true
  29638. },
  29639. {
  29640. name: "Normal+",
  29641. height: math.unit(4, "meters")
  29642. },
  29643. {
  29644. name: "Macro",
  29645. height: math.unit(50, "meters")
  29646. },
  29647. {
  29648. name: "Macro+",
  29649. height: math.unit(100, "meters")
  29650. },
  29651. {
  29652. name: "Megamacro",
  29653. height: math.unit(20, "km")
  29654. },
  29655. ]
  29656. ))
  29657. characterMakers.push(() => makeCharacter(
  29658. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29659. {
  29660. front: {
  29661. height: math.unit(6, "feet"),
  29662. weight: math.unit(150, "lb"),
  29663. name: "Front",
  29664. image: {
  29665. source: "./media/characters/kosho/front.svg",
  29666. extra: 1847 / 1847,
  29667. bottom: 86 / 1933
  29668. }
  29669. },
  29670. },
  29671. [
  29672. {
  29673. name: "Second-stage micro",
  29674. height: math.unit(0.5, "inches")
  29675. },
  29676. {
  29677. name: "First-stage micro",
  29678. height: math.unit(6, "inches")
  29679. },
  29680. {
  29681. name: "Normal",
  29682. height: math.unit(6, "feet"),
  29683. default: true
  29684. },
  29685. {
  29686. name: "First-stage macro",
  29687. height: math.unit(72, "feet")
  29688. },
  29689. {
  29690. name: "Second-stage macro",
  29691. height: math.unit(864, "feet")
  29692. },
  29693. ]
  29694. ))
  29695. characterMakers.push(() => makeCharacter(
  29696. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29697. {
  29698. normal: {
  29699. height: math.unit(4 + 6 / 12, "feet"),
  29700. name: "Normal",
  29701. image: {
  29702. source: "./media/characters/hydra/normal.svg",
  29703. extra: 2833 / 2634,
  29704. bottom: 68 / 2901
  29705. }
  29706. },
  29707. smol: {
  29708. height: math.unit(0.705, "inches"),
  29709. name: "Smol",
  29710. image: {
  29711. source: "./media/characters/hydra/smol.svg",
  29712. extra: 2715 / 2540,
  29713. bottom: 0 / 2715
  29714. }
  29715. },
  29716. },
  29717. [
  29718. {
  29719. name: "Normal",
  29720. height: math.unit(4 + 6 / 12, "feet"),
  29721. default: true
  29722. }
  29723. ]
  29724. ))
  29725. characterMakers.push(() => makeCharacter(
  29726. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29727. {
  29728. front: {
  29729. height: math.unit(0.6, "cm"),
  29730. name: "Front",
  29731. image: {
  29732. source: "./media/characters/daz/front.svg",
  29733. extra: 1682 / 1164,
  29734. bottom: 42 / 1724
  29735. }
  29736. },
  29737. },
  29738. [
  29739. {
  29740. name: "Normal",
  29741. height: math.unit(0.6, "cm"),
  29742. default: true
  29743. },
  29744. ]
  29745. ))
  29746. characterMakers.push(() => makeCharacter(
  29747. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29748. {
  29749. front: {
  29750. height: math.unit(6, "feet"),
  29751. weight: math.unit(235, "lb"),
  29752. name: "Front",
  29753. image: {
  29754. source: "./media/characters/theo-pangolin/front.svg",
  29755. extra: 1996 / 1969,
  29756. bottom: 115 / 2111
  29757. }
  29758. },
  29759. back: {
  29760. height: math.unit(6, "feet"),
  29761. weight: math.unit(235, "lb"),
  29762. name: "Back",
  29763. image: {
  29764. source: "./media/characters/theo-pangolin/back.svg",
  29765. extra: 1979 / 1979,
  29766. bottom: 40 / 2019
  29767. }
  29768. },
  29769. feral: {
  29770. height: math.unit(2, "feet"),
  29771. weight: math.unit(30, "lb"),
  29772. name: "Feral",
  29773. image: {
  29774. source: "./media/characters/theo-pangolin/feral.svg",
  29775. extra: 803 / 791,
  29776. bottom: 181 / 984
  29777. }
  29778. },
  29779. footFive: {
  29780. height: math.unit(1.43, "feet"),
  29781. name: "Foot (Five Toes)",
  29782. image: {
  29783. source: "./media/characters/theo-pangolin/foot-five.svg"
  29784. }
  29785. },
  29786. footFour: {
  29787. height: math.unit(1.43, "feet"),
  29788. name: "Foot (Four Toes)",
  29789. image: {
  29790. source: "./media/characters/theo-pangolin/foot-four.svg"
  29791. }
  29792. },
  29793. handFour: {
  29794. height: math.unit(0.81, "feet"),
  29795. name: "Hand (Four Fingers)",
  29796. image: {
  29797. source: "./media/characters/theo-pangolin/hand-four.svg"
  29798. }
  29799. },
  29800. handThree: {
  29801. height: math.unit(0.81, "feet"),
  29802. name: "Hand (Three Fingers)",
  29803. image: {
  29804. source: "./media/characters/theo-pangolin/hand-three.svg"
  29805. }
  29806. },
  29807. headFront: {
  29808. height: math.unit(1.37, "feet"),
  29809. name: "Head (Front)",
  29810. image: {
  29811. source: "./media/characters/theo-pangolin/head-front.svg"
  29812. }
  29813. },
  29814. headSide: {
  29815. height: math.unit(1.43, "feet"),
  29816. name: "Head (Side)",
  29817. image: {
  29818. source: "./media/characters/theo-pangolin/head-side.svg"
  29819. }
  29820. },
  29821. tongue: {
  29822. height: math.unit(2.29, "feet"),
  29823. name: "Tongue",
  29824. image: {
  29825. source: "./media/characters/theo-pangolin/tongue.svg"
  29826. }
  29827. },
  29828. },
  29829. [
  29830. {
  29831. name: "Normal",
  29832. height: math.unit(6, "feet")
  29833. },
  29834. {
  29835. name: "Macro",
  29836. height: math.unit(400, "feet"),
  29837. default: true
  29838. },
  29839. ]
  29840. ))
  29841. characterMakers.push(() => makeCharacter(
  29842. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29843. {
  29844. front: {
  29845. height: math.unit(6, "inches"),
  29846. weight: math.unit(0.036, "kg"),
  29847. name: "Front",
  29848. image: {
  29849. source: "./media/characters/renée/front.svg",
  29850. extra: 900 / 886,
  29851. bottom: 8 / 908
  29852. }
  29853. },
  29854. },
  29855. [
  29856. {
  29857. name: "Nano",
  29858. height: math.unit(1, "nm")
  29859. },
  29860. {
  29861. name: "Micro",
  29862. height: math.unit(1, "mm")
  29863. },
  29864. {
  29865. name: "Normal",
  29866. height: math.unit(6, "inches")
  29867. },
  29868. {
  29869. name: "Macro",
  29870. height: math.unit(2000, "feet"),
  29871. default: true
  29872. },
  29873. {
  29874. name: "Megamacro",
  29875. height: math.unit(2, "km")
  29876. },
  29877. {
  29878. name: "Gigamacro",
  29879. height: math.unit(2000, "km")
  29880. },
  29881. {
  29882. name: "Teramacro",
  29883. height: math.unit(250000, "km")
  29884. },
  29885. ]
  29886. ))
  29887. characterMakers.push(() => makeCharacter(
  29888. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29889. {
  29890. front: {
  29891. height: math.unit(4, "meters"),
  29892. weight: math.unit(150, "kg"),
  29893. name: "Front",
  29894. image: {
  29895. source: "./media/characters/caledvwlch/front.svg",
  29896. extra: 1760 / 1551,
  29897. bottom: 28 / 1788
  29898. }
  29899. },
  29900. side: {
  29901. height: math.unit(4, "meters"),
  29902. weight: math.unit(150, "kg"),
  29903. name: "Side",
  29904. image: {
  29905. source: "./media/characters/caledvwlch/side.svg",
  29906. extra: 1605 / 1536,
  29907. bottom: 31 / 1636
  29908. }
  29909. },
  29910. back: {
  29911. height: math.unit(4, "meters"),
  29912. weight: math.unit(150, "kg"),
  29913. name: "Back",
  29914. image: {
  29915. source: "./media/characters/caledvwlch/back.svg",
  29916. extra: 1635 / 1565,
  29917. bottom: 27 / 1662
  29918. }
  29919. },
  29920. },
  29921. [
  29922. {
  29923. name: "\"Incognito\"",
  29924. height: math.unit(4, "meters")
  29925. },
  29926. {
  29927. name: "Small rampage",
  29928. height: math.unit(600, "meters")
  29929. },
  29930. {
  29931. name: "Mega",
  29932. height: math.unit(30, "km")
  29933. },
  29934. {
  29935. name: "Home-size",
  29936. height: math.unit(50, "km"),
  29937. default: true
  29938. },
  29939. {
  29940. name: "Giga",
  29941. height: math.unit(300, "km")
  29942. },
  29943. {
  29944. name: "Lounging",
  29945. height: math.unit(11000, "km")
  29946. },
  29947. {
  29948. name: "Planet snacking",
  29949. height: math.unit(2000000, "km")
  29950. },
  29951. ]
  29952. ))
  29953. characterMakers.push(() => makeCharacter(
  29954. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29955. {
  29956. front: {
  29957. height: math.unit(6, "feet"),
  29958. weight: math.unit(215, "lb"),
  29959. name: "Front",
  29960. image: {
  29961. source: "./media/characters/sapphire-svell/front.svg",
  29962. extra: 495 / 455,
  29963. bottom: 20 / 515
  29964. }
  29965. },
  29966. back: {
  29967. height: math.unit(6, "feet"),
  29968. weight: math.unit(216, "lb"),
  29969. name: "Back",
  29970. image: {
  29971. source: "./media/characters/sapphire-svell/back.svg",
  29972. extra: 497 / 477,
  29973. bottom: 7 / 504
  29974. }
  29975. },
  29976. maw: {
  29977. height: math.unit(1.57, "feet"),
  29978. name: "Maw",
  29979. image: {
  29980. source: "./media/characters/sapphire-svell/maw.svg"
  29981. }
  29982. },
  29983. foot: {
  29984. height: math.unit(1.07, "feet"),
  29985. name: "Foot",
  29986. image: {
  29987. source: "./media/characters/sapphire-svell/foot.svg"
  29988. }
  29989. },
  29990. toering: {
  29991. height: math.unit(1.7, "inch"),
  29992. name: "Toering",
  29993. image: {
  29994. source: "./media/characters/sapphire-svell/toering.svg"
  29995. }
  29996. },
  29997. },
  29998. [
  29999. {
  30000. name: "Normal",
  30001. height: math.unit(300, "feet"),
  30002. default: true
  30003. },
  30004. {
  30005. name: "Augmented",
  30006. height: math.unit(1250, "feet")
  30007. },
  30008. {
  30009. name: "Unleashed",
  30010. height: math.unit(3000, "feet")
  30011. },
  30012. ]
  30013. ))
  30014. characterMakers.push(() => makeCharacter(
  30015. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30016. {
  30017. side: {
  30018. height: math.unit(2 + 3 / 12, "feet"),
  30019. weight: math.unit(110, "lb"),
  30020. name: "Side",
  30021. image: {
  30022. source: "./media/characters/glitch-flux/side.svg",
  30023. extra: 997 / 805,
  30024. bottom: 20 / 1017
  30025. }
  30026. },
  30027. },
  30028. [
  30029. {
  30030. name: "Normal",
  30031. height: math.unit(2 + 3 / 12, "feet"),
  30032. default: true
  30033. },
  30034. ]
  30035. ))
  30036. characterMakers.push(() => makeCharacter(
  30037. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30038. {
  30039. front: {
  30040. height: math.unit(4, "meters"),
  30041. name: "Front",
  30042. image: {
  30043. source: "./media/characters/mid/front.svg",
  30044. extra: 507 / 476,
  30045. bottom: 17 / 524
  30046. }
  30047. },
  30048. back: {
  30049. height: math.unit(4, "meters"),
  30050. name: "Back",
  30051. image: {
  30052. source: "./media/characters/mid/back.svg",
  30053. extra: 519 / 487,
  30054. bottom: 7 / 526
  30055. }
  30056. },
  30057. stuck: {
  30058. height: math.unit(2.2, "meters"),
  30059. name: "Stuck",
  30060. image: {
  30061. source: "./media/characters/mid/stuck.svg",
  30062. extra: 1951 / 1869,
  30063. bottom: 88 / 2039
  30064. }
  30065. }
  30066. },
  30067. [
  30068. {
  30069. name: "Normal",
  30070. height: math.unit(4, "meters"),
  30071. default: true
  30072. },
  30073. {
  30074. name: "Big",
  30075. height: math.unit(10, "meters")
  30076. },
  30077. {
  30078. name: "Macro",
  30079. height: math.unit(800, "meters")
  30080. },
  30081. {
  30082. name: "Megamacro",
  30083. height: math.unit(100, "km")
  30084. },
  30085. {
  30086. name: "Overgrown",
  30087. height: math.unit(1, "parsec")
  30088. },
  30089. ]
  30090. ))
  30091. characterMakers.push(() => makeCharacter(
  30092. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30093. {
  30094. front: {
  30095. height: math.unit(2.5, "meters"),
  30096. weight: math.unit(225, "kg"),
  30097. name: "Front",
  30098. image: {
  30099. source: "./media/characters/iris/front.svg",
  30100. extra: 3348 / 3251,
  30101. bottom: 205 / 3553
  30102. }
  30103. },
  30104. maw: {
  30105. height: math.unit(0.56, "meter"),
  30106. name: "Maw",
  30107. image: {
  30108. source: "./media/characters/iris/maw.svg"
  30109. }
  30110. },
  30111. },
  30112. [
  30113. {
  30114. name: "Mewter cat",
  30115. height: math.unit(1.2, "meters")
  30116. },
  30117. {
  30118. name: "Minimacro",
  30119. height: math.unit(2.5, "meters"),
  30120. default: true
  30121. },
  30122. {
  30123. name: "Macro",
  30124. height: math.unit(180, "meters")
  30125. },
  30126. {
  30127. name: "Megamacro",
  30128. height: math.unit(2746, "meters")
  30129. },
  30130. ]
  30131. ))
  30132. characterMakers.push(() => makeCharacter(
  30133. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30134. {
  30135. front: {
  30136. height: math.unit(6, "feet"),
  30137. weight: math.unit(135, "lb"),
  30138. name: "Front",
  30139. image: {
  30140. source: "./media/characters/axel/front.svg",
  30141. extra: 908 / 908,
  30142. bottom: 58 / 966
  30143. }
  30144. },
  30145. side: {
  30146. height: math.unit(6, "feet"),
  30147. weight: math.unit(135, "lb"),
  30148. name: "Side",
  30149. image: {
  30150. source: "./media/characters/axel/side.svg",
  30151. extra: 958 / 958,
  30152. bottom: 11 / 969
  30153. }
  30154. },
  30155. back: {
  30156. height: math.unit(6, "feet"),
  30157. weight: math.unit(135, "lb"),
  30158. name: "Back",
  30159. image: {
  30160. source: "./media/characters/axel/back.svg",
  30161. extra: 887 / 887,
  30162. bottom: 34 / 921
  30163. }
  30164. },
  30165. head: {
  30166. height: math.unit(1.07, "feet"),
  30167. name: "Head",
  30168. image: {
  30169. source: "./media/characters/axel/head.svg"
  30170. }
  30171. },
  30172. beak: {
  30173. height: math.unit(1.4, "feet"),
  30174. name: "Beak",
  30175. image: {
  30176. source: "./media/characters/axel/beak.svg"
  30177. }
  30178. },
  30179. beakSide: {
  30180. height: math.unit(1.4, "feet"),
  30181. name: "Beak Side",
  30182. image: {
  30183. source: "./media/characters/axel/beak-side.svg"
  30184. }
  30185. },
  30186. sheath: {
  30187. height: math.unit(0.5, "feet"),
  30188. name: "Sheath",
  30189. image: {
  30190. source: "./media/characters/axel/sheath.svg"
  30191. }
  30192. },
  30193. dick: {
  30194. height: math.unit(0.98, "feet"),
  30195. name: "Dick",
  30196. image: {
  30197. source: "./media/characters/axel/dick.svg"
  30198. }
  30199. },
  30200. },
  30201. [
  30202. {
  30203. name: "Macro",
  30204. height: math.unit(68, "meters"),
  30205. default: true
  30206. },
  30207. ]
  30208. ))
  30209. characterMakers.push(() => makeCharacter(
  30210. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30211. {
  30212. front: {
  30213. height: math.unit(3.5, "meters"),
  30214. weight: math.unit(1200, "kg"),
  30215. name: "Front",
  30216. image: {
  30217. source: "./media/characters/joanna/front.svg",
  30218. extra: 1596 / 1488,
  30219. bottom: 29 / 1625
  30220. }
  30221. },
  30222. back: {
  30223. height: math.unit(3.5, "meters"),
  30224. weight: math.unit(1200, "kg"),
  30225. name: "Back",
  30226. image: {
  30227. source: "./media/characters/joanna/back.svg",
  30228. extra: 1594 / 1495,
  30229. bottom: 26 / 1620
  30230. }
  30231. },
  30232. frontShorts: {
  30233. height: math.unit(3.5, "meters"),
  30234. weight: math.unit(1200, "kg"),
  30235. name: "Front (Shorts)",
  30236. image: {
  30237. source: "./media/characters/joanna/front-shorts.svg",
  30238. extra: 1596 / 1488,
  30239. bottom: 29 / 1625
  30240. }
  30241. },
  30242. frontBiker: {
  30243. height: math.unit(3.5, "meters"),
  30244. weight: math.unit(1200, "kg"),
  30245. name: "Front (Biker)",
  30246. image: {
  30247. source: "./media/characters/joanna/front-biker.svg",
  30248. extra: 1596 / 1488,
  30249. bottom: 29 / 1625
  30250. }
  30251. },
  30252. backBiker: {
  30253. height: math.unit(3.5, "meters"),
  30254. weight: math.unit(1200, "kg"),
  30255. name: "Back (Biker)",
  30256. image: {
  30257. source: "./media/characters/joanna/back-biker.svg",
  30258. extra: 1594 / 1495,
  30259. bottom: 88 / 1682
  30260. }
  30261. },
  30262. bikeLeft: {
  30263. height: math.unit(2.4, "meters"),
  30264. weight: math.unit(1600, "kg"),
  30265. name: "Bike (Left)",
  30266. image: {
  30267. source: "./media/characters/joanna/bike-left.svg",
  30268. extra: 720 / 720,
  30269. bottom: 8 / 728
  30270. }
  30271. },
  30272. bikeRight: {
  30273. height: math.unit(2.4, "meters"),
  30274. weight: math.unit(1600, "kg"),
  30275. name: "Bike (Right)",
  30276. image: {
  30277. source: "./media/characters/joanna/bike-right.svg",
  30278. extra: 720 / 720,
  30279. bottom: 8 / 728
  30280. }
  30281. },
  30282. },
  30283. [
  30284. {
  30285. name: "Incognito",
  30286. height: math.unit(3.5, "meters")
  30287. },
  30288. {
  30289. name: "Casual Big",
  30290. height: math.unit(200, "meters")
  30291. },
  30292. {
  30293. name: "Macro",
  30294. height: math.unit(600, "meters")
  30295. },
  30296. {
  30297. name: "Original",
  30298. height: math.unit(20, "km"),
  30299. default: true
  30300. },
  30301. {
  30302. name: "Giga",
  30303. height: math.unit(400, "km")
  30304. },
  30305. {
  30306. name: "Lounging",
  30307. height: math.unit(1500, "km")
  30308. },
  30309. {
  30310. name: "Planetary",
  30311. height: math.unit(200000, "km")
  30312. },
  30313. ]
  30314. ))
  30315. characterMakers.push(() => makeCharacter(
  30316. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30317. {
  30318. front: {
  30319. height: math.unit(6, "feet"),
  30320. weight: math.unit(150, "lb"),
  30321. name: "Front",
  30322. image: {
  30323. source: "./media/characters/hugo-sigil/front.svg",
  30324. extra: 522 / 500,
  30325. bottom: 2 / 524
  30326. }
  30327. },
  30328. back: {
  30329. height: math.unit(6, "feet"),
  30330. weight: math.unit(150, "lb"),
  30331. name: "Back",
  30332. image: {
  30333. source: "./media/characters/hugo-sigil/back.svg",
  30334. extra: 519 / 495,
  30335. bottom: 5 / 524
  30336. }
  30337. },
  30338. maw: {
  30339. height: math.unit(1.4, "feet"),
  30340. weight: math.unit(150, "lb"),
  30341. name: "Maw",
  30342. image: {
  30343. source: "./media/characters/hugo-sigil/maw.svg"
  30344. }
  30345. },
  30346. feet: {
  30347. height: math.unit(1.56, "feet"),
  30348. weight: math.unit(150, "lb"),
  30349. name: "Feet",
  30350. image: {
  30351. source: "./media/characters/hugo-sigil/feet.svg",
  30352. extra: 177 / 177,
  30353. bottom: 12 / 189
  30354. }
  30355. },
  30356. },
  30357. [
  30358. {
  30359. name: "Normal",
  30360. height: math.unit(6, "feet")
  30361. },
  30362. {
  30363. name: "Macro",
  30364. height: math.unit(200, "feet"),
  30365. default: true
  30366. },
  30367. ]
  30368. ))
  30369. characterMakers.push(() => makeCharacter(
  30370. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30371. {
  30372. front: {
  30373. height: math.unit(6, "feet"),
  30374. weight: math.unit(150, "lb"),
  30375. name: "Front",
  30376. image: {
  30377. source: "./media/characters/peri/front.svg",
  30378. extra: 2354 / 2233,
  30379. bottom: 49 / 2403
  30380. }
  30381. },
  30382. },
  30383. [
  30384. {
  30385. name: "Really Small",
  30386. height: math.unit(1, "nm")
  30387. },
  30388. {
  30389. name: "Micro",
  30390. height: math.unit(4, "inches")
  30391. },
  30392. {
  30393. name: "Normal",
  30394. height: math.unit(7, "inches"),
  30395. default: true
  30396. },
  30397. {
  30398. name: "Macro",
  30399. height: math.unit(400, "feet")
  30400. },
  30401. {
  30402. name: "Megamacro",
  30403. height: math.unit(100, "miles")
  30404. },
  30405. ]
  30406. ))
  30407. characterMakers.push(() => makeCharacter(
  30408. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30409. {
  30410. frontSlim: {
  30411. height: math.unit(7, "feet"),
  30412. name: "Front (Slim)",
  30413. image: {
  30414. source: "./media/characters/issilora/front-slim.svg",
  30415. extra: 529 / 449,
  30416. bottom: 53 / 582
  30417. }
  30418. },
  30419. sideSlim: {
  30420. height: math.unit(7, "feet"),
  30421. name: "Side (Slim)",
  30422. image: {
  30423. source: "./media/characters/issilora/side-slim.svg",
  30424. extra: 570 / 480,
  30425. bottom: 30 / 600
  30426. }
  30427. },
  30428. backSlim: {
  30429. height: math.unit(7, "feet"),
  30430. name: "Back (Slim)",
  30431. image: {
  30432. source: "./media/characters/issilora/back-slim.svg",
  30433. extra: 537 / 455,
  30434. bottom: 46 / 583
  30435. }
  30436. },
  30437. frontBuff: {
  30438. height: math.unit(7, "feet"),
  30439. name: "Front (Buff)",
  30440. image: {
  30441. source: "./media/characters/issilora/front-buff.svg",
  30442. extra: 2310 / 2035,
  30443. bottom: 335 / 2645
  30444. }
  30445. },
  30446. head: {
  30447. height: math.unit(1.94, "feet"),
  30448. name: "Head",
  30449. image: {
  30450. source: "./media/characters/issilora/head.svg"
  30451. }
  30452. },
  30453. },
  30454. [
  30455. {
  30456. name: "Minimum",
  30457. height: math.unit(7, "feet")
  30458. },
  30459. {
  30460. name: "Comfortable",
  30461. height: math.unit(17, "feet")
  30462. },
  30463. {
  30464. name: "Fun Size",
  30465. height: math.unit(47, "feet")
  30466. },
  30467. {
  30468. name: "Natural Macro",
  30469. height: math.unit(137, "feet"),
  30470. default: true
  30471. },
  30472. {
  30473. name: "Maximum Kaiju",
  30474. height: math.unit(397, "feet")
  30475. },
  30476. ]
  30477. ))
  30478. characterMakers.push(() => makeCharacter(
  30479. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30480. {
  30481. front: {
  30482. height: math.unit(50 + 9/12, "feet"),
  30483. weight: math.unit(32.8, "tons"),
  30484. name: "Front",
  30485. image: {
  30486. source: "./media/characters/irb'iiritaahn/front.svg",
  30487. extra: 1878/1826,
  30488. bottom: 326/2204
  30489. }
  30490. },
  30491. back: {
  30492. height: math.unit(50 + 9/12, "feet"),
  30493. weight: math.unit(32.8, "tons"),
  30494. name: "Back",
  30495. image: {
  30496. source: "./media/characters/irb'iiritaahn/back.svg",
  30497. extra: 2052/2018,
  30498. bottom: 152/2204
  30499. }
  30500. },
  30501. head: {
  30502. height: math.unit(12.86, "feet"),
  30503. name: "Head",
  30504. image: {
  30505. source: "./media/characters/irb'iiritaahn/head.svg"
  30506. }
  30507. },
  30508. maw: {
  30509. height: math.unit(9.66, "feet"),
  30510. name: "Maw",
  30511. image: {
  30512. source: "./media/characters/irb'iiritaahn/maw.svg"
  30513. }
  30514. },
  30515. frontDick: {
  30516. height: math.unit(8.78461, "feet"),
  30517. name: "Front Dick",
  30518. image: {
  30519. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30520. }
  30521. },
  30522. rearDick: {
  30523. height: math.unit(8.78461, "feet"),
  30524. name: "Rear Dick",
  30525. image: {
  30526. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30527. }
  30528. },
  30529. rearDickUnfolded: {
  30530. height: math.unit(8.78, "feet"),
  30531. name: "Rear Dick (Unfolded)",
  30532. image: {
  30533. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30534. }
  30535. },
  30536. wings: {
  30537. height: math.unit(43, "feet"),
  30538. name: "Wings",
  30539. image: {
  30540. source: "./media/characters/irb'iiritaahn/wings.svg"
  30541. }
  30542. },
  30543. },
  30544. [
  30545. {
  30546. name: "Macro",
  30547. height: math.unit(50 + 9/12, "feet"),
  30548. default: true
  30549. },
  30550. ]
  30551. ))
  30552. characterMakers.push(() => makeCharacter(
  30553. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30554. {
  30555. front: {
  30556. height: math.unit(205, "cm"),
  30557. weight: math.unit(102, "kg"),
  30558. name: "Front",
  30559. image: {
  30560. source: "./media/characters/irbisgreif/front.svg",
  30561. extra: 785/706,
  30562. bottom: 13/798
  30563. }
  30564. },
  30565. back: {
  30566. height: math.unit(205, "cm"),
  30567. weight: math.unit(102, "kg"),
  30568. name: "Back",
  30569. image: {
  30570. source: "./media/characters/irbisgreif/back.svg",
  30571. extra: 713/701,
  30572. bottom: 26/739
  30573. }
  30574. },
  30575. frontDressed: {
  30576. height: math.unit(216, "cm"),
  30577. weight: math.unit(102, "kg"),
  30578. name: "Front-dressed",
  30579. image: {
  30580. source: "./media/characters/irbisgreif/front-dressed.svg",
  30581. extra: 902/776,
  30582. bottom: 14/916
  30583. }
  30584. },
  30585. sideDressed: {
  30586. height: math.unit(195, "cm"),
  30587. weight: math.unit(102, "kg"),
  30588. name: "Side-dressed",
  30589. image: {
  30590. source: "./media/characters/irbisgreif/side-dressed.svg",
  30591. extra: 788/688,
  30592. bottom: 21/809
  30593. }
  30594. },
  30595. backDressed: {
  30596. height: math.unit(216, "cm"),
  30597. weight: math.unit(102, "kg"),
  30598. name: "Back-dressed",
  30599. image: {
  30600. source: "./media/characters/irbisgreif/back-dressed.svg",
  30601. extra: 901/783,
  30602. bottom: 10/911
  30603. }
  30604. },
  30605. dick: {
  30606. height: math.unit(0.49, "feet"),
  30607. name: "Dick",
  30608. image: {
  30609. source: "./media/characters/irbisgreif/dick.svg"
  30610. }
  30611. },
  30612. wingTop: {
  30613. height: math.unit(1.93 , "feet"),
  30614. name: "Wing-top",
  30615. image: {
  30616. source: "./media/characters/irbisgreif/wing-top.svg"
  30617. }
  30618. },
  30619. wingBottom: {
  30620. height: math.unit(1.93 , "feet"),
  30621. name: "Wing-bottom",
  30622. image: {
  30623. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30624. }
  30625. },
  30626. },
  30627. [
  30628. {
  30629. name: "Normal",
  30630. height: math.unit(216, "cm"),
  30631. default: true
  30632. },
  30633. ]
  30634. ))
  30635. characterMakers.push(() => makeCharacter(
  30636. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30637. {
  30638. front: {
  30639. height: math.unit(6, "feet"),
  30640. weight: math.unit(150, "lb"),
  30641. name: "Front",
  30642. image: {
  30643. source: "./media/characters/pride/front.svg",
  30644. extra: 1299/1230,
  30645. bottom: 18/1317
  30646. }
  30647. },
  30648. },
  30649. [
  30650. {
  30651. name: "Normal",
  30652. height: math.unit(7, "feet")
  30653. },
  30654. {
  30655. name: "Mini-macro",
  30656. height: math.unit(11, "feet")
  30657. },
  30658. {
  30659. name: "Macro",
  30660. height: math.unit(15, "meters"),
  30661. default: true
  30662. },
  30663. {
  30664. name: "Macro+",
  30665. height: math.unit(40, "meters")
  30666. },
  30667. ]
  30668. ))
  30669. characterMakers.push(() => makeCharacter(
  30670. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30671. {
  30672. front: {
  30673. height: math.unit(4 + 2 / 12, "feet"),
  30674. weight: math.unit(95, "lb"),
  30675. name: "Front",
  30676. image: {
  30677. source: "./media/characters/vaelophis-nyx/front.svg",
  30678. extra: 2532/2330,
  30679. bottom: 0/2532
  30680. }
  30681. },
  30682. back: {
  30683. height: math.unit(4 + 2 / 12, "feet"),
  30684. weight: math.unit(95, "lb"),
  30685. name: "Back",
  30686. image: {
  30687. source: "./media/characters/vaelophis-nyx/back.svg",
  30688. extra: 2484/2361,
  30689. bottom: 0/2484
  30690. }
  30691. },
  30692. feralSide: {
  30693. height: math.unit(2 + 1/12, "feet"),
  30694. weight: math.unit(20, "lb"),
  30695. name: "Feral (Side)",
  30696. image: {
  30697. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30698. extra: 1721/1581,
  30699. bottom: 70/1791
  30700. }
  30701. },
  30702. feralLazing: {
  30703. height: math.unit(1.08, "feet"),
  30704. weight: math.unit(20, "lb"),
  30705. name: "Feral (Lazing)",
  30706. image: {
  30707. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30708. extra: 822/822,
  30709. bottom: 248/1070
  30710. }
  30711. },
  30712. ear: {
  30713. height: math.unit(0.416, "feet"),
  30714. name: "Ear",
  30715. image: {
  30716. source: "./media/characters/vaelophis-nyx/ear.svg"
  30717. }
  30718. },
  30719. eye: {
  30720. height: math.unit(0.0748, "feet"),
  30721. name: "Eye",
  30722. image: {
  30723. source: "./media/characters/vaelophis-nyx/eye.svg"
  30724. }
  30725. },
  30726. mouth: {
  30727. height: math.unit(0.378, "feet"),
  30728. name: "Mouth",
  30729. image: {
  30730. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30731. }
  30732. },
  30733. spade: {
  30734. height: math.unit(0.55, "feet"),
  30735. name: "Spade",
  30736. image: {
  30737. source: "./media/characters/vaelophis-nyx/spade.svg"
  30738. }
  30739. },
  30740. },
  30741. [
  30742. {
  30743. name: "Normal",
  30744. height: math.unit(4 + 2/12, "feet"),
  30745. default: true
  30746. },
  30747. ]
  30748. ))
  30749. characterMakers.push(() => makeCharacter(
  30750. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30751. {
  30752. front: {
  30753. height: math.unit(7, "feet"),
  30754. weight: math.unit(231, "lb"),
  30755. name: "Front",
  30756. image: {
  30757. source: "./media/characters/flux/front.svg",
  30758. extra: 919/871,
  30759. bottom: 0/919
  30760. }
  30761. },
  30762. back: {
  30763. height: math.unit(7, "feet"),
  30764. weight: math.unit(231, "lb"),
  30765. name: "Back",
  30766. image: {
  30767. source: "./media/characters/flux/back.svg",
  30768. extra: 1040/992,
  30769. bottom: 0/1040
  30770. }
  30771. },
  30772. frontDressed: {
  30773. height: math.unit(7, "feet"),
  30774. weight: math.unit(231, "lb"),
  30775. name: "Front (Dressed)",
  30776. image: {
  30777. source: "./media/characters/flux/front-dressed.svg",
  30778. extra: 919/871,
  30779. bottom: 0/919
  30780. }
  30781. },
  30782. feralSide: {
  30783. height: math.unit(5, "feet"),
  30784. weight: math.unit(150, "lb"),
  30785. name: "Feral (Side)",
  30786. image: {
  30787. source: "./media/characters/flux/feral-side.svg",
  30788. extra: 598/528,
  30789. bottom: 28/626
  30790. }
  30791. },
  30792. head: {
  30793. height: math.unit(1.585, "feet"),
  30794. name: "Head",
  30795. image: {
  30796. source: "./media/characters/flux/head.svg"
  30797. }
  30798. },
  30799. headSide: {
  30800. height: math.unit(1.74, "feet"),
  30801. name: "Head (Side)",
  30802. image: {
  30803. source: "./media/characters/flux/head-side.svg"
  30804. }
  30805. },
  30806. headSideFire: {
  30807. height: math.unit(1.76, "feet"),
  30808. name: "Head (Side, Fire)",
  30809. image: {
  30810. source: "./media/characters/flux/head-side-fire.svg"
  30811. }
  30812. },
  30813. },
  30814. [
  30815. {
  30816. name: "Normal",
  30817. height: math.unit(7, "feet"),
  30818. default: true
  30819. },
  30820. ]
  30821. ))
  30822. characterMakers.push(() => makeCharacter(
  30823. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30824. {
  30825. front: {
  30826. height: math.unit(9, "feet"),
  30827. weight: math.unit(1012, "lb"),
  30828. name: "Front",
  30829. image: {
  30830. source: "./media/characters/ulfra-lupae/front.svg",
  30831. extra: 1083/1011,
  30832. bottom: 67/1150
  30833. }
  30834. },
  30835. },
  30836. [
  30837. {
  30838. name: "Micro",
  30839. height: math.unit(6, "inches")
  30840. },
  30841. {
  30842. name: "Socializing",
  30843. height: math.unit(6 + 5/12, "feet")
  30844. },
  30845. {
  30846. name: "Normal",
  30847. height: math.unit(9, "feet"),
  30848. default: true
  30849. },
  30850. {
  30851. name: "Macro",
  30852. height: math.unit(150, "feet")
  30853. },
  30854. ]
  30855. ))
  30856. characterMakers.push(() => makeCharacter(
  30857. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30858. {
  30859. front: {
  30860. height: math.unit(5 + 2/12, "feet"),
  30861. weight: math.unit(120, "lb"),
  30862. name: "Front",
  30863. image: {
  30864. source: "./media/characters/timber/front.svg",
  30865. extra: 2814/2705,
  30866. bottom: 181/2995
  30867. }
  30868. },
  30869. },
  30870. [
  30871. {
  30872. name: "Normal",
  30873. height: math.unit(5 + 2/12, "feet"),
  30874. default: true
  30875. },
  30876. ]
  30877. ))
  30878. characterMakers.push(() => makeCharacter(
  30879. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30880. {
  30881. front: {
  30882. height: math.unit(5 + 7/12, "feet"),
  30883. weight: math.unit(220, "lb"),
  30884. name: "Front",
  30885. image: {
  30886. source: "./media/characters/nicki/front.svg",
  30887. extra: 453/419,
  30888. bottom: 7/460
  30889. }
  30890. },
  30891. frontAlt: {
  30892. height: math.unit(5 + 7/12, "feet"),
  30893. weight: math.unit(220, "lb"),
  30894. name: "Front-alt",
  30895. image: {
  30896. source: "./media/characters/nicki/front-alt.svg",
  30897. extra: 435/411,
  30898. bottom: 12/447
  30899. }
  30900. },
  30901. back: {
  30902. height: math.unit(5 + 7/12, "feet"),
  30903. weight: math.unit(220, "lb"),
  30904. name: "Back",
  30905. image: {
  30906. source: "./media/characters/nicki/back.svg",
  30907. extra: 440/413,
  30908. bottom: 19/459
  30909. }
  30910. },
  30911. taur: {
  30912. height: math.unit(7 + 6/12, "feet"),
  30913. weight: math.unit(700, "lb"),
  30914. name: "Taur",
  30915. image: {
  30916. source: "./media/characters/nicki/taur.svg",
  30917. extra: 975/773,
  30918. bottom: 0/975
  30919. }
  30920. },
  30921. frontNsfw: {
  30922. height: math.unit(5 + 7/12, "feet"),
  30923. weight: math.unit(220, "lb"),
  30924. name: "Front (NSFW)",
  30925. image: {
  30926. source: "./media/characters/nicki/front-nsfw.svg",
  30927. extra: 453/419,
  30928. bottom: 7/460
  30929. }
  30930. },
  30931. frontNsfwAlt: {
  30932. height: math.unit(5 + 7/12, "feet"),
  30933. weight: math.unit(220, "lb"),
  30934. name: "Front (Alt, NSFW)",
  30935. image: {
  30936. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30937. extra: 435/411,
  30938. bottom: 12/447
  30939. }
  30940. },
  30941. backNsfw: {
  30942. height: math.unit(5 + 7/12, "feet"),
  30943. weight: math.unit(220, "lb"),
  30944. name: "Back (NSFW)",
  30945. image: {
  30946. source: "./media/characters/nicki/back-nsfw.svg",
  30947. extra: 440/413,
  30948. bottom: 19/459
  30949. }
  30950. },
  30951. head: {
  30952. height: math.unit(2.1, "feet"),
  30953. name: "Head",
  30954. image: {
  30955. source: "./media/characters/nicki/head.svg"
  30956. }
  30957. },
  30958. paw: {
  30959. height: math.unit(1.88, "feet"),
  30960. name: "Paw",
  30961. image: {
  30962. source: "./media/characters/nicki/paw.svg"
  30963. }
  30964. },
  30965. },
  30966. [
  30967. {
  30968. name: "Normal",
  30969. height: math.unit(5 + 7/12, "feet"),
  30970. default: true
  30971. },
  30972. ]
  30973. ))
  30974. characterMakers.push(() => makeCharacter(
  30975. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30976. {
  30977. front: {
  30978. height: math.unit(7 + 10/12, "feet"),
  30979. weight: math.unit(3.5, "tons"),
  30980. name: "Front",
  30981. image: {
  30982. source: "./media/characters/lee/front.svg",
  30983. extra: 1773/1615,
  30984. bottom: 86/1859
  30985. }
  30986. },
  30987. hand: {
  30988. height: math.unit(1.78, "feet"),
  30989. name: "Hand",
  30990. image: {
  30991. source: "./media/characters/lee/hand.svg"
  30992. }
  30993. },
  30994. maw: {
  30995. height: math.unit(1.18, "feet"),
  30996. name: "Maw",
  30997. image: {
  30998. source: "./media/characters/lee/maw.svg"
  30999. }
  31000. },
  31001. },
  31002. [
  31003. {
  31004. name: "Normal",
  31005. height: math.unit(7 + 10/12, "feet"),
  31006. default: true
  31007. },
  31008. ]
  31009. ))
  31010. characterMakers.push(() => makeCharacter(
  31011. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31012. {
  31013. front: {
  31014. height: math.unit(9, "feet"),
  31015. name: "Front",
  31016. image: {
  31017. source: "./media/characters/guti/front.svg",
  31018. extra: 4551/4355,
  31019. bottom: 123/4674
  31020. }
  31021. },
  31022. tongue: {
  31023. height: math.unit(1, "feet"),
  31024. name: "Tongue",
  31025. image: {
  31026. source: "./media/characters/guti/tongue.svg"
  31027. }
  31028. },
  31029. paw: {
  31030. height: math.unit(1.18, "feet"),
  31031. name: "Paw",
  31032. image: {
  31033. source: "./media/characters/guti/paw.svg"
  31034. }
  31035. },
  31036. },
  31037. [
  31038. {
  31039. name: "Normal",
  31040. height: math.unit(9, "feet"),
  31041. default: true
  31042. },
  31043. ]
  31044. ))
  31045. characterMakers.push(() => makeCharacter(
  31046. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31047. {
  31048. side: {
  31049. height: math.unit(5, "meters"),
  31050. name: "Side",
  31051. image: {
  31052. source: "./media/characters/vesper/side.svg",
  31053. extra: 1605/1518,
  31054. bottom: 0/1605
  31055. }
  31056. },
  31057. },
  31058. [
  31059. {
  31060. name: "Small",
  31061. height: math.unit(5, "meters")
  31062. },
  31063. {
  31064. name: "Sage",
  31065. height: math.unit(100, "meters"),
  31066. default: true
  31067. },
  31068. {
  31069. name: "Fun Size",
  31070. height: math.unit(600, "meters")
  31071. },
  31072. {
  31073. name: "Goddess",
  31074. height: math.unit(20000, "km")
  31075. },
  31076. {
  31077. name: "Maximum",
  31078. height: math.unit(5, "galaxies")
  31079. },
  31080. ]
  31081. ))
  31082. characterMakers.push(() => makeCharacter(
  31083. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31084. {
  31085. front: {
  31086. height: math.unit(6 + 3/12, "feet"),
  31087. weight: math.unit(190, "lb"),
  31088. name: "Front",
  31089. image: {
  31090. source: "./media/characters/gawain/front.svg",
  31091. extra: 2222/2139,
  31092. bottom: 90/2312
  31093. }
  31094. },
  31095. back: {
  31096. height: math.unit(6 + 3/12, "feet"),
  31097. weight: math.unit(190, "lb"),
  31098. name: "Back",
  31099. image: {
  31100. source: "./media/characters/gawain/back.svg",
  31101. extra: 2199/2111,
  31102. bottom: 73/2272
  31103. }
  31104. },
  31105. },
  31106. [
  31107. {
  31108. name: "Normal",
  31109. height: math.unit(6 + 3/12, "feet"),
  31110. default: true
  31111. },
  31112. ]
  31113. ))
  31114. characterMakers.push(() => makeCharacter(
  31115. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31116. {
  31117. side: {
  31118. height: math.unit(3.5, "meters"),
  31119. weight: math.unit(16000, "lb"),
  31120. name: "Side",
  31121. image: {
  31122. source: "./media/characters/dascalti/side.svg",
  31123. extra: 392/273,
  31124. bottom: 47/439
  31125. }
  31126. },
  31127. breath: {
  31128. height: math.unit(7.4, "feet"),
  31129. name: "Breath",
  31130. image: {
  31131. source: "./media/characters/dascalti/breath.svg"
  31132. }
  31133. },
  31134. fed: {
  31135. height: math.unit(3.6, "meters"),
  31136. weight: math.unit(16000, "lb"),
  31137. name: "Fed",
  31138. image: {
  31139. source: "./media/characters/dascalti/fed.svg",
  31140. extra: 1419/820,
  31141. bottom: 95/1514
  31142. }
  31143. },
  31144. },
  31145. [
  31146. {
  31147. name: "Normal",
  31148. height: math.unit(3.5, "meters"),
  31149. default: true
  31150. },
  31151. ]
  31152. ))
  31153. characterMakers.push(() => makeCharacter(
  31154. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31155. {
  31156. front: {
  31157. height: math.unit(3 + 5/12, "feet"),
  31158. name: "Front",
  31159. image: {
  31160. source: "./media/characters/mauve/front.svg",
  31161. extra: 1126/1033,
  31162. bottom: 65/1191
  31163. }
  31164. },
  31165. side: {
  31166. height: math.unit(3 + 5/12, "feet"),
  31167. name: "Side",
  31168. image: {
  31169. source: "./media/characters/mauve/side.svg",
  31170. extra: 1089/1001,
  31171. bottom: 29/1118
  31172. }
  31173. },
  31174. back: {
  31175. height: math.unit(3 + 5/12, "feet"),
  31176. name: "Back",
  31177. image: {
  31178. source: "./media/characters/mauve/back.svg",
  31179. extra: 1173/1053,
  31180. bottom: 109/1282
  31181. }
  31182. },
  31183. },
  31184. [
  31185. {
  31186. name: "Normal",
  31187. height: math.unit(3 + 5/12, "feet"),
  31188. default: true
  31189. },
  31190. ]
  31191. ))
  31192. characterMakers.push(() => makeCharacter(
  31193. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31194. {
  31195. front: {
  31196. height: math.unit(6 + 3/12, "feet"),
  31197. weight: math.unit(430, "lb"),
  31198. name: "Front",
  31199. image: {
  31200. source: "./media/characters/carlos/front.svg",
  31201. extra: 1964/1913,
  31202. bottom: 70/2034
  31203. }
  31204. },
  31205. },
  31206. [
  31207. {
  31208. name: "Normal",
  31209. height: math.unit(6 + 3/12, "feet"),
  31210. default: true
  31211. },
  31212. ]
  31213. ))
  31214. characterMakers.push(() => makeCharacter(
  31215. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31216. {
  31217. back: {
  31218. height: math.unit(5 + 10/12, "feet"),
  31219. weight: math.unit(200, "lb"),
  31220. name: "Back",
  31221. image: {
  31222. source: "./media/characters/jax/back.svg",
  31223. extra: 764/739,
  31224. bottom: 25/789
  31225. }
  31226. },
  31227. },
  31228. [
  31229. {
  31230. name: "Normal",
  31231. height: math.unit(5 + 10/12, "feet"),
  31232. default: true
  31233. },
  31234. ]
  31235. ))
  31236. characterMakers.push(() => makeCharacter(
  31237. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31238. {
  31239. front: {
  31240. height: math.unit(8, "feet"),
  31241. weight: math.unit(250, "lb"),
  31242. name: "Front",
  31243. image: {
  31244. source: "./media/characters/eikthynir/front.svg",
  31245. extra: 1332/1166,
  31246. bottom: 82/1414
  31247. }
  31248. },
  31249. back: {
  31250. height: math.unit(8, "feet"),
  31251. weight: math.unit(250, "lb"),
  31252. name: "Back",
  31253. image: {
  31254. source: "./media/characters/eikthynir/back.svg",
  31255. extra: 1342/1190,
  31256. bottom: 19/1361
  31257. }
  31258. },
  31259. dick: {
  31260. height: math.unit(2.35, "feet"),
  31261. name: "Dick",
  31262. image: {
  31263. source: "./media/characters/eikthynir/dick.svg"
  31264. }
  31265. },
  31266. },
  31267. [
  31268. {
  31269. name: "Normal",
  31270. height: math.unit(8, "feet"),
  31271. default: true
  31272. },
  31273. ]
  31274. ))
  31275. characterMakers.push(() => makeCharacter(
  31276. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31277. {
  31278. front: {
  31279. height: math.unit(99, "meters"),
  31280. weight: math.unit(13000, "tons"),
  31281. name: "Front",
  31282. image: {
  31283. source: "./media/characters/zlmos/front.svg",
  31284. extra: 2202/1992,
  31285. bottom: 315/2517
  31286. }
  31287. },
  31288. },
  31289. [
  31290. {
  31291. name: "Macro",
  31292. height: math.unit(99, "meters"),
  31293. default: true
  31294. },
  31295. ]
  31296. ))
  31297. characterMakers.push(() => makeCharacter(
  31298. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31299. {
  31300. front: {
  31301. height: math.unit(6 + 5/12, "feet"),
  31302. name: "Front",
  31303. image: {
  31304. source: "./media/characters/purri/front.svg",
  31305. extra: 1698/1610,
  31306. bottom: 32/1730
  31307. }
  31308. },
  31309. frontAlt: {
  31310. height: math.unit(6 + 5/12, "feet"),
  31311. name: "Front (Alt)",
  31312. image: {
  31313. source: "./media/characters/purri/front-alt.svg",
  31314. extra: 450/420,
  31315. bottom: 26/476
  31316. }
  31317. },
  31318. boots: {
  31319. height: math.unit(5.5, "feet"),
  31320. name: "Boots",
  31321. image: {
  31322. source: "./media/characters/purri/boots.svg",
  31323. extra: 905/853,
  31324. bottom: 18/923
  31325. }
  31326. },
  31327. lying: {
  31328. height: math.unit(2, "feet"),
  31329. name: "Lying",
  31330. image: {
  31331. source: "./media/characters/purri/lying.svg",
  31332. extra: 940/843,
  31333. bottom: 146/1086
  31334. }
  31335. },
  31336. devious: {
  31337. height: math.unit(1.77, "feet"),
  31338. name: "Devious",
  31339. image: {
  31340. source: "./media/characters/purri/devious.svg",
  31341. extra: 1440/1155,
  31342. bottom: 147/1587
  31343. }
  31344. },
  31345. bean: {
  31346. height: math.unit(1.94, "feet"),
  31347. name: "Bean",
  31348. image: {
  31349. source: "./media/characters/purri/bean.svg"
  31350. }
  31351. },
  31352. },
  31353. [
  31354. {
  31355. name: "Micro",
  31356. height: math.unit(1, "mm")
  31357. },
  31358. {
  31359. name: "Normal",
  31360. height: math.unit(6 + 5/12, "feet"),
  31361. default: true
  31362. },
  31363. {
  31364. name: "Macro :3c",
  31365. height: math.unit(2, "miles")
  31366. },
  31367. ]
  31368. ))
  31369. characterMakers.push(() => makeCharacter(
  31370. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31371. {
  31372. front: {
  31373. height: math.unit(6 + 2/12, "feet"),
  31374. weight: math.unit(250, "lb"),
  31375. name: "Front",
  31376. image: {
  31377. source: "./media/characters/moonlight/front.svg",
  31378. extra: 1044/908,
  31379. bottom: 56/1100
  31380. }
  31381. },
  31382. feral: {
  31383. height: math.unit(3 + 1/12, "feet"),
  31384. weight: math.unit(50, "kg"),
  31385. name: "Feral",
  31386. image: {
  31387. source: "./media/characters/moonlight/feral.svg",
  31388. extra: 3705/2791,
  31389. bottom: 145/3850
  31390. }
  31391. },
  31392. paw: {
  31393. height: math.unit(1, "feet"),
  31394. name: "Paw",
  31395. image: {
  31396. source: "./media/characters/moonlight/paw.svg"
  31397. }
  31398. },
  31399. paws: {
  31400. height: math.unit(0.98, "feet"),
  31401. name: "Paws",
  31402. image: {
  31403. source: "./media/characters/moonlight/paws.svg",
  31404. extra: 939/939,
  31405. bottom: 50/989
  31406. }
  31407. },
  31408. mouth: {
  31409. height: math.unit(0.48, "feet"),
  31410. name: "Mouth",
  31411. image: {
  31412. source: "./media/characters/moonlight/mouth.svg"
  31413. }
  31414. },
  31415. dick: {
  31416. height: math.unit(1.46, "feet"),
  31417. name: "Dick",
  31418. image: {
  31419. source: "./media/characters/moonlight/dick.svg"
  31420. }
  31421. },
  31422. },
  31423. [
  31424. {
  31425. name: "Normal",
  31426. height: math.unit(6 + 2/12, "feet"),
  31427. default: true
  31428. },
  31429. {
  31430. name: "Macro",
  31431. height: math.unit(300, "feet")
  31432. },
  31433. {
  31434. name: "Macro+",
  31435. height: math.unit(1, "mile")
  31436. },
  31437. {
  31438. name: "Mt. Moon",
  31439. height: math.unit(5, "miles")
  31440. },
  31441. {
  31442. name: "Megamacro",
  31443. height: math.unit(15, "miles")
  31444. },
  31445. ]
  31446. ))
  31447. characterMakers.push(() => makeCharacter(
  31448. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31449. {
  31450. back: {
  31451. height: math.unit(6, "feet"),
  31452. weight: math.unit(150, "lb"),
  31453. name: "Back",
  31454. image: {
  31455. source: "./media/characters/sylen/back.svg",
  31456. extra: 1335/1273,
  31457. bottom: 107/1442
  31458. }
  31459. },
  31460. },
  31461. [
  31462. {
  31463. name: "Normal",
  31464. height: math.unit(5 + 5/12, "feet")
  31465. },
  31466. {
  31467. name: "Megamacro",
  31468. height: math.unit(3, "miles"),
  31469. default: true
  31470. },
  31471. ]
  31472. ))
  31473. characterMakers.push(() => makeCharacter(
  31474. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31475. {
  31476. front: {
  31477. height: math.unit(6, "feet"),
  31478. weight: math.unit(190, "lb"),
  31479. name: "Front",
  31480. image: {
  31481. source: "./media/characters/huttser/front.svg",
  31482. extra: 1152/1058,
  31483. bottom: 23/1175
  31484. }
  31485. },
  31486. side: {
  31487. height: math.unit(6, "feet"),
  31488. weight: math.unit(190, "lb"),
  31489. name: "Side",
  31490. image: {
  31491. source: "./media/characters/huttser/side.svg",
  31492. extra: 1174/1065,
  31493. bottom: 18/1192
  31494. }
  31495. },
  31496. back: {
  31497. height: math.unit(6, "feet"),
  31498. weight: math.unit(190, "lb"),
  31499. name: "Back",
  31500. image: {
  31501. source: "./media/characters/huttser/back.svg",
  31502. extra: 1158/1056,
  31503. bottom: 12/1170
  31504. }
  31505. },
  31506. },
  31507. [
  31508. ]
  31509. ))
  31510. characterMakers.push(() => makeCharacter(
  31511. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31512. {
  31513. side: {
  31514. height: math.unit(12 + 9/12, "feet"),
  31515. weight: math.unit(15000, "lb"),
  31516. name: "Side",
  31517. image: {
  31518. source: "./media/characters/faan/side.svg",
  31519. extra: 2747/2697,
  31520. bottom: 0/2747
  31521. }
  31522. },
  31523. front: {
  31524. height: math.unit(12 + 9/12, "feet"),
  31525. weight: math.unit(15000, "lb"),
  31526. name: "Front",
  31527. image: {
  31528. source: "./media/characters/faan/front.svg",
  31529. extra: 607/571,
  31530. bottom: 24/631
  31531. }
  31532. },
  31533. head: {
  31534. height: math.unit(2.85, "feet"),
  31535. name: "Head",
  31536. image: {
  31537. source: "./media/characters/faan/head.svg"
  31538. }
  31539. },
  31540. headAlt: {
  31541. height: math.unit(3.13, "feet"),
  31542. name: "Head-alt",
  31543. image: {
  31544. source: "./media/characters/faan/head-alt.svg"
  31545. }
  31546. },
  31547. },
  31548. [
  31549. {
  31550. name: "Normal",
  31551. height: math.unit(12 + 9/12, "feet"),
  31552. default: true
  31553. },
  31554. ]
  31555. ))
  31556. characterMakers.push(() => makeCharacter(
  31557. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31558. {
  31559. front: {
  31560. height: math.unit(6, "feet"),
  31561. weight: math.unit(300, "lb"),
  31562. name: "Front",
  31563. image: {
  31564. source: "./media/characters/tanio/front.svg",
  31565. extra: 711/673,
  31566. bottom: 25/736
  31567. }
  31568. },
  31569. },
  31570. [
  31571. {
  31572. name: "Normal",
  31573. height: math.unit(6, "feet"),
  31574. default: true
  31575. },
  31576. ]
  31577. ))
  31578. characterMakers.push(() => makeCharacter(
  31579. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31580. {
  31581. front: {
  31582. height: math.unit(3, "inches"),
  31583. name: "Front",
  31584. image: {
  31585. source: "./media/characters/noboru/front.svg",
  31586. extra: 1039/932,
  31587. bottom: 18/1057
  31588. }
  31589. },
  31590. },
  31591. [
  31592. {
  31593. name: "Micro",
  31594. height: math.unit(3, "inches"),
  31595. default: true
  31596. },
  31597. ]
  31598. ))
  31599. characterMakers.push(() => makeCharacter(
  31600. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31601. {
  31602. front: {
  31603. height: math.unit(1.85, "meters"),
  31604. weight: math.unit(80, "kg"),
  31605. name: "Front",
  31606. image: {
  31607. source: "./media/characters/daniel-barrett/front.svg",
  31608. extra: 355/337,
  31609. bottom: 9/364
  31610. }
  31611. },
  31612. },
  31613. [
  31614. {
  31615. name: "Pico",
  31616. height: math.unit(0.0433, "mm")
  31617. },
  31618. {
  31619. name: "Nano",
  31620. height: math.unit(1.5, "mm")
  31621. },
  31622. {
  31623. name: "Micro",
  31624. height: math.unit(5.3, "cm"),
  31625. default: true
  31626. },
  31627. {
  31628. name: "Normal",
  31629. height: math.unit(1.85, "meters")
  31630. },
  31631. {
  31632. name: "Macro",
  31633. height: math.unit(64.7, "meters")
  31634. },
  31635. {
  31636. name: "Megamacro",
  31637. height: math.unit(2.26, "km")
  31638. },
  31639. {
  31640. name: "Gigamacro",
  31641. height: math.unit(79, "km")
  31642. },
  31643. {
  31644. name: "Teramacro",
  31645. height: math.unit(2765, "km")
  31646. },
  31647. {
  31648. name: "Petamacro",
  31649. height: math.unit(96678, "km")
  31650. },
  31651. ]
  31652. ))
  31653. characterMakers.push(() => makeCharacter(
  31654. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31655. {
  31656. front: {
  31657. height: math.unit(30, "meters"),
  31658. weight: math.unit(400, "tons"),
  31659. name: "Front",
  31660. image: {
  31661. source: "./media/characters/zeel/front.svg",
  31662. extra: 2599/2599,
  31663. bottom: 226/2825
  31664. }
  31665. },
  31666. },
  31667. [
  31668. {
  31669. name: "Macro",
  31670. height: math.unit(30, "meters"),
  31671. default: true
  31672. },
  31673. ]
  31674. ))
  31675. characterMakers.push(() => makeCharacter(
  31676. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31677. {
  31678. front: {
  31679. height: math.unit(6 + 7/12, "feet"),
  31680. weight: math.unit(210, "lb"),
  31681. name: "Front",
  31682. image: {
  31683. source: "./media/characters/tarn/front.svg",
  31684. extra: 3517/3220,
  31685. bottom: 91/3608
  31686. }
  31687. },
  31688. back: {
  31689. height: math.unit(6 + 7/12, "feet"),
  31690. weight: math.unit(210, "lb"),
  31691. name: "Back",
  31692. image: {
  31693. source: "./media/characters/tarn/back.svg",
  31694. extra: 3566/3241,
  31695. bottom: 34/3600
  31696. }
  31697. },
  31698. dick: {
  31699. height: math.unit(1.65, "feet"),
  31700. name: "Dick",
  31701. image: {
  31702. source: "./media/characters/tarn/dick.svg"
  31703. }
  31704. },
  31705. paw: {
  31706. height: math.unit(1.80, "feet"),
  31707. name: "Paw",
  31708. image: {
  31709. source: "./media/characters/tarn/paw.svg"
  31710. }
  31711. },
  31712. tongue: {
  31713. height: math.unit(0.97, "feet"),
  31714. name: "Tongue",
  31715. image: {
  31716. source: "./media/characters/tarn/tongue.svg"
  31717. }
  31718. },
  31719. },
  31720. [
  31721. {
  31722. name: "Micro",
  31723. height: math.unit(4, "inches")
  31724. },
  31725. {
  31726. name: "Normal",
  31727. height: math.unit(6 + 7/12, "feet"),
  31728. default: true
  31729. },
  31730. {
  31731. name: "Macro",
  31732. height: math.unit(300, "feet")
  31733. },
  31734. ]
  31735. ))
  31736. characterMakers.push(() => makeCharacter(
  31737. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31738. {
  31739. front: {
  31740. height: math.unit(5 + 7/12, "feet"),
  31741. weight: math.unit(80, "kg"),
  31742. name: "Front",
  31743. image: {
  31744. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31745. extra: 3023/2865,
  31746. bottom: 33/3056
  31747. }
  31748. },
  31749. back: {
  31750. height: math.unit(5 + 7/12, "feet"),
  31751. weight: math.unit(80, "kg"),
  31752. name: "Back",
  31753. image: {
  31754. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31755. extra: 3020/2886,
  31756. bottom: 30/3050
  31757. }
  31758. },
  31759. dick: {
  31760. height: math.unit(0.98, "feet"),
  31761. name: "Dick",
  31762. image: {
  31763. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31764. }
  31765. },
  31766. anatomy: {
  31767. height: math.unit(2.86, "feet"),
  31768. name: "Anatomy",
  31769. image: {
  31770. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31771. }
  31772. },
  31773. },
  31774. [
  31775. {
  31776. name: "Really Small",
  31777. height: math.unit(2, "inches")
  31778. },
  31779. {
  31780. name: "Micro",
  31781. height: math.unit(5.583, "inches")
  31782. },
  31783. {
  31784. name: "Normal",
  31785. height: math.unit(5 + 7/12, "feet"),
  31786. default: true
  31787. },
  31788. {
  31789. name: "Macro",
  31790. height: math.unit(67, "feet")
  31791. },
  31792. {
  31793. name: "Megamacro",
  31794. height: math.unit(134, "feet")
  31795. },
  31796. ]
  31797. ))
  31798. characterMakers.push(() => makeCharacter(
  31799. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31800. {
  31801. front: {
  31802. height: math.unit(9, "feet"),
  31803. weight: math.unit(120, "lb"),
  31804. name: "Front",
  31805. image: {
  31806. source: "./media/characters/sally/front.svg",
  31807. extra: 1506/1349,
  31808. bottom: 66/1572
  31809. }
  31810. },
  31811. },
  31812. [
  31813. {
  31814. name: "Normal",
  31815. height: math.unit(9, "feet"),
  31816. default: true
  31817. },
  31818. ]
  31819. ))
  31820. characterMakers.push(() => makeCharacter(
  31821. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31822. {
  31823. front: {
  31824. height: math.unit(8, "feet"),
  31825. weight: math.unit(900, "lb"),
  31826. name: "Front",
  31827. image: {
  31828. source: "./media/characters/owen/front.svg",
  31829. extra: 1761/1657,
  31830. bottom: 74/1835
  31831. }
  31832. },
  31833. side: {
  31834. height: math.unit(8, "feet"),
  31835. weight: math.unit(900, "lb"),
  31836. name: "Side",
  31837. image: {
  31838. source: "./media/characters/owen/side.svg",
  31839. extra: 1797/1734,
  31840. bottom: 30/1827
  31841. }
  31842. },
  31843. back: {
  31844. height: math.unit(8, "feet"),
  31845. weight: math.unit(900, "lb"),
  31846. name: "Back",
  31847. image: {
  31848. source: "./media/characters/owen/back.svg",
  31849. extra: 1796/1706,
  31850. bottom: 59/1855
  31851. }
  31852. },
  31853. maw: {
  31854. height: math.unit(1.76, "feet"),
  31855. name: "Maw",
  31856. image: {
  31857. source: "./media/characters/owen/maw.svg"
  31858. }
  31859. },
  31860. },
  31861. [
  31862. {
  31863. name: "Normal",
  31864. height: math.unit(8, "feet"),
  31865. default: true
  31866. },
  31867. ]
  31868. ))
  31869. characterMakers.push(() => makeCharacter(
  31870. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31871. {
  31872. front: {
  31873. height: math.unit(4, "feet"),
  31874. weight: math.unit(400, "lb"),
  31875. name: "Front",
  31876. image: {
  31877. source: "./media/characters/ryth/front.svg",
  31878. extra: 1920/1748,
  31879. bottom: 42/1962
  31880. }
  31881. },
  31882. back: {
  31883. height: math.unit(4, "feet"),
  31884. weight: math.unit(400, "lb"),
  31885. name: "Back",
  31886. image: {
  31887. source: "./media/characters/ryth/back.svg",
  31888. extra: 1897/1690,
  31889. bottom: 89/1986
  31890. }
  31891. },
  31892. mouth: {
  31893. height: math.unit(1.39, "feet"),
  31894. name: "Mouth",
  31895. image: {
  31896. source: "./media/characters/ryth/mouth.svg"
  31897. }
  31898. },
  31899. tailmaw: {
  31900. height: math.unit(1.23, "feet"),
  31901. name: "Tailmaw",
  31902. image: {
  31903. source: "./media/characters/ryth/tailmaw.svg"
  31904. }
  31905. },
  31906. goia: {
  31907. height: math.unit(12, "feet"),
  31908. weight: math.unit(10800, "lb"),
  31909. name: "Goia",
  31910. image: {
  31911. source: "./media/characters/ryth/goia.svg",
  31912. extra: 3450/3198,
  31913. bottom: 61/3511
  31914. }
  31915. },
  31916. },
  31917. [
  31918. {
  31919. name: "Normal",
  31920. height: math.unit(4, "feet"),
  31921. default: true
  31922. },
  31923. ]
  31924. ))
  31925. characterMakers.push(() => makeCharacter(
  31926. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31927. {
  31928. front: {
  31929. height: math.unit(7, "feet"),
  31930. weight: math.unit(180, "lb"),
  31931. name: "Front",
  31932. image: {
  31933. source: "./media/characters/necrolance/front.svg",
  31934. extra: 1062/947,
  31935. bottom: 41/1103
  31936. }
  31937. },
  31938. back: {
  31939. height: math.unit(7, "feet"),
  31940. weight: math.unit(180, "lb"),
  31941. name: "Back",
  31942. image: {
  31943. source: "./media/characters/necrolance/back.svg",
  31944. extra: 1045/984,
  31945. bottom: 14/1059
  31946. }
  31947. },
  31948. wing: {
  31949. height: math.unit(2.67, "feet"),
  31950. name: "Wing",
  31951. image: {
  31952. source: "./media/characters/necrolance/wing.svg"
  31953. }
  31954. },
  31955. },
  31956. [
  31957. {
  31958. name: "Normal",
  31959. height: math.unit(7, "feet"),
  31960. default: true
  31961. },
  31962. ]
  31963. ))
  31964. characterMakers.push(() => makeCharacter(
  31965. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31966. {
  31967. front: {
  31968. height: math.unit(76, "meters"),
  31969. weight: math.unit(30000, "tons"),
  31970. name: "Front",
  31971. image: {
  31972. source: "./media/characters/tyler/front.svg",
  31973. extra: 1640/1640,
  31974. bottom: 114/1754
  31975. }
  31976. },
  31977. },
  31978. [
  31979. {
  31980. name: "Macro",
  31981. height: math.unit(76, "meters"),
  31982. default: true
  31983. },
  31984. ]
  31985. ))
  31986. characterMakers.push(() => makeCharacter(
  31987. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31988. {
  31989. front: {
  31990. height: math.unit(4 + 11/12, "feet"),
  31991. weight: math.unit(132, "lb"),
  31992. name: "Front",
  31993. image: {
  31994. source: "./media/characters/icey/front.svg",
  31995. extra: 2750/2550,
  31996. bottom: 33/2783
  31997. }
  31998. },
  31999. back: {
  32000. height: math.unit(4 + 11/12, "feet"),
  32001. weight: math.unit(132, "lb"),
  32002. name: "Back",
  32003. image: {
  32004. source: "./media/characters/icey/back.svg",
  32005. extra: 2624/2481,
  32006. bottom: 35/2659
  32007. }
  32008. },
  32009. },
  32010. [
  32011. {
  32012. name: "Normal",
  32013. height: math.unit(4 + 11/12, "feet"),
  32014. default: true
  32015. },
  32016. ]
  32017. ))
  32018. characterMakers.push(() => makeCharacter(
  32019. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32020. {
  32021. front: {
  32022. height: math.unit(100, "feet"),
  32023. weight: math.unit(0, "lb"),
  32024. name: "Front",
  32025. image: {
  32026. source: "./media/characters/smile/front.svg",
  32027. extra: 2983/2912,
  32028. bottom: 162/3145
  32029. }
  32030. },
  32031. back: {
  32032. height: math.unit(100, "feet"),
  32033. weight: math.unit(0, "lb"),
  32034. name: "Back",
  32035. image: {
  32036. source: "./media/characters/smile/back.svg",
  32037. extra: 3143/3031,
  32038. bottom: 91/3234
  32039. }
  32040. },
  32041. head: {
  32042. height: math.unit(26.3, "feet"),
  32043. weight: math.unit(0, "lb"),
  32044. name: "Head",
  32045. image: {
  32046. source: "./media/characters/smile/head.svg"
  32047. }
  32048. },
  32049. collar: {
  32050. height: math.unit(5.3, "feet"),
  32051. weight: math.unit(0, "lb"),
  32052. name: "Collar",
  32053. image: {
  32054. source: "./media/characters/smile/collar.svg"
  32055. }
  32056. },
  32057. },
  32058. [
  32059. {
  32060. name: "Macro",
  32061. height: math.unit(100, "feet"),
  32062. default: true
  32063. },
  32064. ]
  32065. ))
  32066. characterMakers.push(() => makeCharacter(
  32067. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32068. {
  32069. dragon: {
  32070. height: math.unit(26, "feet"),
  32071. weight: math.unit(36, "tons"),
  32072. name: "Dragon",
  32073. image: {
  32074. source: "./media/characters/arimphae/dragon.svg",
  32075. extra: 1574/983,
  32076. bottom: 357/1931
  32077. }
  32078. },
  32079. drake: {
  32080. height: math.unit(9, "feet"),
  32081. weight: math.unit(1.5, "tons"),
  32082. name: "Drake",
  32083. image: {
  32084. source: "./media/characters/arimphae/drake.svg",
  32085. extra: 1120/925,
  32086. bottom: 435/1555
  32087. }
  32088. },
  32089. },
  32090. [
  32091. {
  32092. name: "Small",
  32093. height: math.unit(26*5/9, "feet")
  32094. },
  32095. {
  32096. name: "Normal",
  32097. height: math.unit(26, "feet"),
  32098. default: true
  32099. },
  32100. ]
  32101. ))
  32102. characterMakers.push(() => makeCharacter(
  32103. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32104. {
  32105. front: {
  32106. height: math.unit(8 + 9/12, "feet"),
  32107. name: "Front",
  32108. image: {
  32109. source: "./media/characters/xander/front.svg",
  32110. extra: 848/673,
  32111. bottom: 62/910
  32112. }
  32113. },
  32114. },
  32115. [
  32116. {
  32117. name: "Normal",
  32118. height: math.unit(8 + 9/12, "feet"),
  32119. default: true
  32120. },
  32121. {
  32122. name: "Gaze Grabber",
  32123. height: math.unit(13 + 8/12, "feet")
  32124. },
  32125. {
  32126. name: "Jaw Dropper",
  32127. height: math.unit(27, "feet")
  32128. },
  32129. {
  32130. name: "Show Stopper",
  32131. height: math.unit(136, "feet")
  32132. },
  32133. {
  32134. name: "Superstar",
  32135. height: math.unit(1.9e6, "miles")
  32136. },
  32137. ]
  32138. ))
  32139. characterMakers.push(() => makeCharacter(
  32140. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32141. {
  32142. side: {
  32143. height: math.unit(2100, "feet"),
  32144. name: "Side",
  32145. image: {
  32146. source: "./media/characters/osiris/side.svg",
  32147. extra: 1105/939,
  32148. bottom: 167/1272
  32149. }
  32150. },
  32151. },
  32152. [
  32153. {
  32154. name: "Macro",
  32155. height: math.unit(2100, "feet"),
  32156. default: true
  32157. },
  32158. ]
  32159. ))
  32160. characterMakers.push(() => makeCharacter(
  32161. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32162. {
  32163. front: {
  32164. height: math.unit(6 + 8/12, "feet"),
  32165. weight: math.unit(225, "lb"),
  32166. name: "Front",
  32167. image: {
  32168. source: "./media/characters/rhys-londe/front.svg",
  32169. extra: 2258/2141,
  32170. bottom: 188/2446
  32171. }
  32172. },
  32173. back: {
  32174. height: math.unit(6 + 8/12, "feet"),
  32175. weight: math.unit(225, "lb"),
  32176. name: "Back",
  32177. image: {
  32178. source: "./media/characters/rhys-londe/back.svg",
  32179. extra: 2237/2137,
  32180. bottom: 63/2300
  32181. }
  32182. },
  32183. frontNsfw: {
  32184. height: math.unit(6 + 8/12, "feet"),
  32185. weight: math.unit(225, "lb"),
  32186. name: "Front (NSFW)",
  32187. image: {
  32188. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32189. extra: 2258/2141,
  32190. bottom: 188/2446
  32191. }
  32192. },
  32193. backNsfw: {
  32194. height: math.unit(6 + 8/12, "feet"),
  32195. weight: math.unit(225, "lb"),
  32196. name: "Back (NSFW)",
  32197. image: {
  32198. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32199. extra: 2237/2137,
  32200. bottom: 63/2300
  32201. }
  32202. },
  32203. dick: {
  32204. height: math.unit(30, "inches"),
  32205. name: "Dick",
  32206. image: {
  32207. source: "./media/characters/rhys-londe/dick.svg"
  32208. }
  32209. },
  32210. maw: {
  32211. height: math.unit(1.6, "feet"),
  32212. name: "Maw",
  32213. image: {
  32214. source: "./media/characters/rhys-londe/maw.svg"
  32215. }
  32216. },
  32217. },
  32218. [
  32219. {
  32220. name: "Normal",
  32221. height: math.unit(6 + 8/12, "feet"),
  32222. default: true
  32223. },
  32224. ]
  32225. ))
  32226. characterMakers.push(() => makeCharacter(
  32227. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32228. {
  32229. front: {
  32230. height: math.unit(3 + 10/12, "feet"),
  32231. weight: math.unit(90, "lb"),
  32232. name: "Front",
  32233. image: {
  32234. source: "./media/characters/taivas-ensim/front.svg",
  32235. extra: 1327/1216,
  32236. bottom: 96/1423
  32237. }
  32238. },
  32239. back: {
  32240. height: math.unit(3 + 10/12, "feet"),
  32241. weight: math.unit(90, "lb"),
  32242. name: "Back",
  32243. image: {
  32244. source: "./media/characters/taivas-ensim/back.svg",
  32245. extra: 1355/1247,
  32246. bottom: 11/1366
  32247. }
  32248. },
  32249. frontNsfw: {
  32250. height: math.unit(3 + 10/12, "feet"),
  32251. weight: math.unit(90, "lb"),
  32252. name: "Front (NSFW)",
  32253. image: {
  32254. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32255. extra: 1327/1216,
  32256. bottom: 96/1423
  32257. }
  32258. },
  32259. backNsfw: {
  32260. height: math.unit(3 + 10/12, "feet"),
  32261. weight: math.unit(90, "lb"),
  32262. name: "Back (NSFW)",
  32263. image: {
  32264. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32265. extra: 1355/1247,
  32266. bottom: 11/1366
  32267. }
  32268. },
  32269. },
  32270. [
  32271. {
  32272. name: "Normal",
  32273. height: math.unit(3 + 10/12, "feet"),
  32274. default: true
  32275. },
  32276. ]
  32277. ))
  32278. characterMakers.push(() => makeCharacter(
  32279. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32280. {
  32281. front: {
  32282. height: math.unit(9 + 6/12, "feet"),
  32283. weight: math.unit(940, "lb"),
  32284. name: "Front",
  32285. image: {
  32286. source: "./media/characters/byliss/front.svg",
  32287. extra: 1327/1290,
  32288. bottom: 82/1409
  32289. }
  32290. },
  32291. back: {
  32292. height: math.unit(9 + 6/12, "feet"),
  32293. weight: math.unit(940, "lb"),
  32294. name: "Back",
  32295. image: {
  32296. source: "./media/characters/byliss/back.svg",
  32297. extra: 1376/1349,
  32298. bottom: 9/1385
  32299. }
  32300. },
  32301. frontNsfw: {
  32302. height: math.unit(9 + 6/12, "feet"),
  32303. weight: math.unit(940, "lb"),
  32304. name: "Front (NSFW)",
  32305. image: {
  32306. source: "./media/characters/byliss/front-nsfw.svg",
  32307. extra: 1327/1290,
  32308. bottom: 82/1409
  32309. }
  32310. },
  32311. backNsfw: {
  32312. height: math.unit(9 + 6/12, "feet"),
  32313. weight: math.unit(940, "lb"),
  32314. name: "Back (NSFW)",
  32315. image: {
  32316. source: "./media/characters/byliss/back-nsfw.svg",
  32317. extra: 1376/1349,
  32318. bottom: 9/1385
  32319. }
  32320. },
  32321. },
  32322. [
  32323. {
  32324. name: "Normal",
  32325. height: math.unit(9 + 6/12, "feet"),
  32326. default: true
  32327. },
  32328. ]
  32329. ))
  32330. characterMakers.push(() => makeCharacter(
  32331. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32332. {
  32333. front: {
  32334. height: math.unit(5 + 2/12, "feet"),
  32335. weight: math.unit(200, "lb"),
  32336. name: "Front",
  32337. image: {
  32338. source: "./media/characters/noraly/front.svg",
  32339. extra: 4985/4773,
  32340. bottom: 150/5135
  32341. }
  32342. },
  32343. full: {
  32344. height: math.unit(5 + 2/12, "feet"),
  32345. weight: math.unit(164, "lb"),
  32346. name: "Full",
  32347. image: {
  32348. source: "./media/characters/noraly/full.svg",
  32349. extra: 1114/1059,
  32350. bottom: 35/1149
  32351. }
  32352. },
  32353. fuller: {
  32354. height: math.unit(5 + 2/12, "feet"),
  32355. weight: math.unit(230, "lb"),
  32356. name: "Fuller",
  32357. image: {
  32358. source: "./media/characters/noraly/fuller.svg",
  32359. extra: 1114/1059,
  32360. bottom: 35/1149
  32361. }
  32362. },
  32363. fullest: {
  32364. height: math.unit(5 + 2/12, "feet"),
  32365. weight: math.unit(300, "lb"),
  32366. name: "Fullest",
  32367. image: {
  32368. source: "./media/characters/noraly/fullest.svg",
  32369. extra: 1114/1059,
  32370. bottom: 35/1149
  32371. }
  32372. },
  32373. },
  32374. [
  32375. {
  32376. name: "Normal",
  32377. height: math.unit(5 + 2/12, "feet"),
  32378. default: true
  32379. },
  32380. ]
  32381. ))
  32382. characterMakers.push(() => makeCharacter(
  32383. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32384. {
  32385. front: {
  32386. height: math.unit(5 + 2/12, "feet"),
  32387. weight: math.unit(210, "lb"),
  32388. name: "Front",
  32389. image: {
  32390. source: "./media/characters/pera/front.svg",
  32391. extra: 1560/1531,
  32392. bottom: 165/1725
  32393. }
  32394. },
  32395. back: {
  32396. height: math.unit(5 + 2/12, "feet"),
  32397. weight: math.unit(210, "lb"),
  32398. name: "Back",
  32399. image: {
  32400. source: "./media/characters/pera/back.svg",
  32401. extra: 1523/1493,
  32402. bottom: 152/1675
  32403. }
  32404. },
  32405. dick: {
  32406. height: math.unit(2.4, "feet"),
  32407. name: "Dick",
  32408. image: {
  32409. source: "./media/characters/pera/dick.svg"
  32410. }
  32411. },
  32412. },
  32413. [
  32414. {
  32415. name: "Normal",
  32416. height: math.unit(5 + 2/12, "feet"),
  32417. default: true
  32418. },
  32419. ]
  32420. ))
  32421. characterMakers.push(() => makeCharacter(
  32422. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32423. {
  32424. front: {
  32425. height: math.unit(12, "feet"),
  32426. weight: math.unit(3200, "lb"),
  32427. name: "Front",
  32428. image: {
  32429. source: "./media/characters/julian/front.svg",
  32430. extra: 2962/2701,
  32431. bottom: 184/3146
  32432. }
  32433. },
  32434. maw: {
  32435. height: math.unit(5.35, "feet"),
  32436. name: "Maw",
  32437. image: {
  32438. source: "./media/characters/julian/maw.svg"
  32439. }
  32440. },
  32441. paw: {
  32442. height: math.unit(3.07, "feet"),
  32443. name: "Paw",
  32444. image: {
  32445. source: "./media/characters/julian/paw.svg"
  32446. }
  32447. },
  32448. },
  32449. [
  32450. {
  32451. name: "Default",
  32452. height: math.unit(12, "feet"),
  32453. default: true
  32454. },
  32455. {
  32456. name: "Big",
  32457. height: math.unit(50, "feet")
  32458. },
  32459. {
  32460. name: "Really Big",
  32461. height: math.unit(1, "mile")
  32462. },
  32463. {
  32464. name: "Extremely Big",
  32465. height: math.unit(100, "miles")
  32466. },
  32467. {
  32468. name: "Planet Hugger",
  32469. height: math.unit(200, "megameters")
  32470. },
  32471. {
  32472. name: "Unreasonably Big",
  32473. height: math.unit(1e300, "meters")
  32474. },
  32475. ]
  32476. ))
  32477. characterMakers.push(() => makeCharacter(
  32478. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32479. {
  32480. solgooleo: {
  32481. height: math.unit(4, "meters"),
  32482. weight: math.unit(6000*1.5, "kg"),
  32483. volume: math.unit(6000, "liters"),
  32484. name: "Solgooleo",
  32485. image: {
  32486. source: "./media/characters/pi/solgooleo.svg",
  32487. extra: 388/331,
  32488. bottom: 29/417
  32489. }
  32490. },
  32491. },
  32492. [
  32493. {
  32494. name: "Normal",
  32495. height: math.unit(4, "meters"),
  32496. default: true
  32497. },
  32498. ]
  32499. ))
  32500. characterMakers.push(() => makeCharacter(
  32501. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32502. {
  32503. front: {
  32504. height: math.unit(8 + 2/12, "feet"),
  32505. weight: math.unit(4, "tons"),
  32506. name: "Front",
  32507. image: {
  32508. source: "./media/characters/shaun/front.svg",
  32509. extra: 1550/1505,
  32510. bottom: 353/1903
  32511. }
  32512. },
  32513. },
  32514. [
  32515. {
  32516. name: "Lorg",
  32517. height: math.unit(8 + 2/12, "feet"),
  32518. default: true
  32519. },
  32520. ]
  32521. ))
  32522. characterMakers.push(() => makeCharacter(
  32523. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32524. {
  32525. front: {
  32526. height: math.unit(7, "feet"),
  32527. name: "Front",
  32528. image: {
  32529. source: "./media/characters/sini/front.svg",
  32530. extra: 726/678,
  32531. bottom: 35/761
  32532. }
  32533. },
  32534. back: {
  32535. height: math.unit(7, "feet"),
  32536. name: "Back",
  32537. image: {
  32538. source: "./media/characters/sini/back.svg",
  32539. extra: 743/701,
  32540. bottom: 12/755
  32541. }
  32542. },
  32543. mawAnthro: {
  32544. height: math.unit(2.14, "feet"),
  32545. name: "Maw (Anthro)",
  32546. image: {
  32547. source: "./media/characters/sini/maw-anthro.svg"
  32548. }
  32549. },
  32550. dick: {
  32551. height: math.unit(1.45, "feet"),
  32552. name: "Dick (Anthro)",
  32553. image: {
  32554. source: "./media/characters/sini/dick-anthro.svg"
  32555. }
  32556. },
  32557. feral: {
  32558. height: math.unit(16, "feet"),
  32559. name: "Feral",
  32560. image: {
  32561. source: "./media/characters/sini/feral.svg",
  32562. extra: 814/605,
  32563. bottom: 11/825
  32564. }
  32565. },
  32566. mawFeral: {
  32567. height: math.unit(5.66, "feet"),
  32568. name: "Maw-feral",
  32569. image: {
  32570. source: "./media/characters/sini/maw-feral.svg"
  32571. }
  32572. },
  32573. footFeral: {
  32574. height: math.unit(5.17, "feet"),
  32575. name: "Foot-feral",
  32576. image: {
  32577. source: "./media/characters/sini/foot-feral.svg"
  32578. }
  32579. },
  32580. },
  32581. [
  32582. {
  32583. name: "Normal",
  32584. height: math.unit(7, "feet"),
  32585. default: true
  32586. },
  32587. ]
  32588. ))
  32589. characterMakers.push(() => makeCharacter(
  32590. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32591. {
  32592. side: {
  32593. height: math.unit(13, "meters"),
  32594. weight: math.unit(9072, "kg"),
  32595. name: "Side",
  32596. image: {
  32597. source: "./media/characters/raylldo/side.svg",
  32598. extra: 403/344,
  32599. bottom: 42/445
  32600. }
  32601. },
  32602. leaping: {
  32603. height: math.unit(12.3, "meters"),
  32604. weight: math.unit(9072, "kg"),
  32605. name: "Leaping",
  32606. image: {
  32607. source: "./media/characters/raylldo/leaping.svg",
  32608. extra: 470/249,
  32609. bottom: 13/483
  32610. }
  32611. },
  32612. flying: {
  32613. height: math.unit(18, "meters"),
  32614. weight: math.unit(9072, "kg"),
  32615. name: "Flying",
  32616. image: {
  32617. source: "./media/characters/raylldo/flying.svg"
  32618. }
  32619. },
  32620. head: {
  32621. height: math.unit(5.85, "meters"),
  32622. name: "Head",
  32623. image: {
  32624. source: "./media/characters/raylldo/head.svg"
  32625. }
  32626. },
  32627. maw: {
  32628. height: math.unit(5.32, "meters"),
  32629. name: "Maw",
  32630. image: {
  32631. source: "./media/characters/raylldo/maw.svg"
  32632. }
  32633. },
  32634. eye: {
  32635. height: math.unit(0.54, "meters"),
  32636. name: "Eye",
  32637. image: {
  32638. source: "./media/characters/raylldo/eye.svg"
  32639. }
  32640. },
  32641. },
  32642. [
  32643. {
  32644. name: "Normal",
  32645. height: math.unit(13, "meters"),
  32646. default: true
  32647. },
  32648. ]
  32649. ))
  32650. characterMakers.push(() => makeCharacter(
  32651. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32652. {
  32653. anthroFront: {
  32654. height: math.unit(9, "feet"),
  32655. weight: math.unit(600, "lb"),
  32656. name: "Anthro (Front)",
  32657. image: {
  32658. source: "./media/characters/glint/anthro-front.svg",
  32659. extra: 1097/1018,
  32660. bottom: 28/1125
  32661. }
  32662. },
  32663. anthroBack: {
  32664. height: math.unit(9, "feet"),
  32665. weight: math.unit(600, "lb"),
  32666. name: "Anthro (Back)",
  32667. image: {
  32668. source: "./media/characters/glint/anthro-back.svg",
  32669. extra: 1154/997,
  32670. bottom: 36/1190
  32671. }
  32672. },
  32673. feral: {
  32674. height: math.unit(11, "feet"),
  32675. weight: math.unit(50000, "lb"),
  32676. name: "Feral",
  32677. image: {
  32678. source: "./media/characters/glint/feral.svg",
  32679. extra: 3035/1585,
  32680. bottom: 1169/4204
  32681. }
  32682. },
  32683. dickAnthro: {
  32684. height: math.unit(0.7, "meters"),
  32685. name: "Dick (Anthro)",
  32686. image: {
  32687. source: "./media/characters/glint/dick-anthro.svg"
  32688. }
  32689. },
  32690. dickFeral: {
  32691. height: math.unit(2.65, "meters"),
  32692. name: "Dick (Feral)",
  32693. image: {
  32694. source: "./media/characters/glint/dick-feral.svg"
  32695. }
  32696. },
  32697. slitHidden: {
  32698. height: math.unit(5.85, "meters"),
  32699. name: "Slit (Hidden)",
  32700. image: {
  32701. source: "./media/characters/glint/slit-hidden.svg"
  32702. }
  32703. },
  32704. slitErect: {
  32705. height: math.unit(5.85, "meters"),
  32706. name: "Slit (Erect)",
  32707. image: {
  32708. source: "./media/characters/glint/slit-erect.svg"
  32709. }
  32710. },
  32711. mawAnthro: {
  32712. height: math.unit(0.63, "meters"),
  32713. name: "Maw (Anthro)",
  32714. image: {
  32715. source: "./media/characters/glint/maw.svg"
  32716. }
  32717. },
  32718. mawFeral: {
  32719. height: math.unit(2.89, "meters"),
  32720. name: "Maw (Feral)",
  32721. image: {
  32722. source: "./media/characters/glint/maw.svg"
  32723. }
  32724. },
  32725. },
  32726. [
  32727. {
  32728. name: "Normal",
  32729. height: math.unit(9, "feet"),
  32730. default: true
  32731. },
  32732. ]
  32733. ))
  32734. characterMakers.push(() => makeCharacter(
  32735. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32736. {
  32737. side: {
  32738. height: math.unit(15, "feet"),
  32739. weight: math.unit(5000, "kg"),
  32740. name: "Side",
  32741. image: {
  32742. source: "./media/characters/kairne/side.svg",
  32743. extra: 979/811,
  32744. bottom: 13/992
  32745. }
  32746. },
  32747. front: {
  32748. height: math.unit(15, "feet"),
  32749. weight: math.unit(5000, "kg"),
  32750. name: "Front",
  32751. image: {
  32752. source: "./media/characters/kairne/front.svg",
  32753. extra: 908/814,
  32754. bottom: 26/934
  32755. }
  32756. },
  32757. sideNsfw: {
  32758. height: math.unit(15, "feet"),
  32759. weight: math.unit(5000, "kg"),
  32760. name: "Side (NSFW)",
  32761. image: {
  32762. source: "./media/characters/kairne/side-nsfw.svg",
  32763. extra: 979/811,
  32764. bottom: 13/992
  32765. }
  32766. },
  32767. frontNsfw: {
  32768. height: math.unit(15, "feet"),
  32769. weight: math.unit(5000, "kg"),
  32770. name: "Front (NSFW)",
  32771. image: {
  32772. source: "./media/characters/kairne/front-nsfw.svg",
  32773. extra: 908/814,
  32774. bottom: 26/934
  32775. }
  32776. },
  32777. dickCaged: {
  32778. height: math.unit(0.65, "meters"),
  32779. name: "Dick-caged",
  32780. image: {
  32781. source: "./media/characters/kairne/dick-caged.svg"
  32782. }
  32783. },
  32784. dick: {
  32785. height: math.unit(0.79, "meters"),
  32786. name: "Dick",
  32787. image: {
  32788. source: "./media/characters/kairne/dick.svg"
  32789. }
  32790. },
  32791. genitals: {
  32792. height: math.unit(1.29, "meters"),
  32793. name: "Genitals",
  32794. image: {
  32795. source: "./media/characters/kairne/genitals.svg"
  32796. }
  32797. },
  32798. maw: {
  32799. height: math.unit(1.73, "meters"),
  32800. name: "Maw",
  32801. image: {
  32802. source: "./media/characters/kairne/maw.svg"
  32803. }
  32804. },
  32805. },
  32806. [
  32807. {
  32808. name: "Normal",
  32809. height: math.unit(15, "feet"),
  32810. default: true
  32811. },
  32812. ]
  32813. ))
  32814. characterMakers.push(() => makeCharacter(
  32815. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32816. {
  32817. front: {
  32818. height: math.unit(5 + 8/12, "feet"),
  32819. weight: math.unit(139, "lb"),
  32820. name: "Front",
  32821. image: {
  32822. source: "./media/characters/biscuit-jackal/front.svg",
  32823. extra: 2106/1961,
  32824. bottom: 58/2164
  32825. }
  32826. },
  32827. back: {
  32828. height: math.unit(5 + 8/12, "feet"),
  32829. weight: math.unit(139, "lb"),
  32830. name: "Back",
  32831. image: {
  32832. source: "./media/characters/biscuit-jackal/back.svg",
  32833. extra: 2132/1976,
  32834. bottom: 57/2189
  32835. }
  32836. },
  32837. werejackal: {
  32838. height: math.unit(6 + 3/12, "feet"),
  32839. weight: math.unit(188, "lb"),
  32840. name: "Werejackal",
  32841. image: {
  32842. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32843. extra: 2373/2178,
  32844. bottom: 53/2426
  32845. }
  32846. },
  32847. },
  32848. [
  32849. {
  32850. name: "Normal",
  32851. height: math.unit(5 + 8/12, "feet"),
  32852. default: true
  32853. },
  32854. ]
  32855. ))
  32856. characterMakers.push(() => makeCharacter(
  32857. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32858. {
  32859. front: {
  32860. height: math.unit(140, "cm"),
  32861. weight: math.unit(45, "kg"),
  32862. name: "Front",
  32863. image: {
  32864. source: "./media/characters/tayra-white/front.svg",
  32865. extra: 2229/2192,
  32866. bottom: 75/2304
  32867. }
  32868. },
  32869. },
  32870. [
  32871. {
  32872. name: "Normal",
  32873. height: math.unit(140, "cm"),
  32874. default: true
  32875. },
  32876. ]
  32877. ))
  32878. characterMakers.push(() => makeCharacter(
  32879. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32880. {
  32881. front: {
  32882. height: math.unit(4 + 5/12, "feet"),
  32883. name: "Front",
  32884. image: {
  32885. source: "./media/characters/scoop/front.svg",
  32886. extra: 1257/1136,
  32887. bottom: 69/1326
  32888. }
  32889. },
  32890. back: {
  32891. height: math.unit(4 + 5/12, "feet"),
  32892. name: "Back",
  32893. image: {
  32894. source: "./media/characters/scoop/back.svg",
  32895. extra: 1321/1152,
  32896. bottom: 32/1353
  32897. }
  32898. },
  32899. maw: {
  32900. height: math.unit(0.68, "feet"),
  32901. name: "Maw",
  32902. image: {
  32903. source: "./media/characters/scoop/maw.svg"
  32904. }
  32905. },
  32906. },
  32907. [
  32908. {
  32909. name: "Really Small",
  32910. height: math.unit(1, "mm")
  32911. },
  32912. {
  32913. name: "Micro",
  32914. height: math.unit(1, "inch")
  32915. },
  32916. {
  32917. name: "Normal",
  32918. height: math.unit(4 + 5/12, "feet"),
  32919. default: true
  32920. },
  32921. {
  32922. name: "Macro",
  32923. height: math.unit(200, "feet")
  32924. },
  32925. {
  32926. name: "Megamacro",
  32927. height: math.unit(3240, "feet")
  32928. },
  32929. {
  32930. name: "Teramacro",
  32931. height: math.unit(2500, "miles")
  32932. },
  32933. ]
  32934. ))
  32935. characterMakers.push(() => makeCharacter(
  32936. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32937. {
  32938. front: {
  32939. height: math.unit(15 + 7/12, "feet"),
  32940. name: "Front",
  32941. image: {
  32942. source: "./media/characters/saphinara/front.svg",
  32943. extra: 604/546,
  32944. bottom: 19/623
  32945. }
  32946. },
  32947. side: {
  32948. height: math.unit(15 + 7/12, "feet"),
  32949. name: "Side",
  32950. image: {
  32951. source: "./media/characters/saphinara/side.svg",
  32952. extra: 605/547,
  32953. bottom: 6/611
  32954. }
  32955. },
  32956. back: {
  32957. height: math.unit(15 + 7/12, "feet"),
  32958. name: "Back",
  32959. image: {
  32960. source: "./media/characters/saphinara/back.svg",
  32961. extra: 591/531,
  32962. bottom: 13/604
  32963. }
  32964. },
  32965. frontTail: {
  32966. height: math.unit(15 + 7/12, "feet"),
  32967. name: "Front (Full Tail)",
  32968. image: {
  32969. source: "./media/characters/saphinara/front-tail.svg",
  32970. extra: 748/547,
  32971. bottom: 66/814
  32972. }
  32973. },
  32974. },
  32975. [
  32976. {
  32977. name: "Normal",
  32978. height: math.unit(15 + 7/12, "feet"),
  32979. default: true
  32980. },
  32981. {
  32982. name: "Angry",
  32983. height: math.unit(30 + 6/12, "feet")
  32984. },
  32985. {
  32986. name: "Enraged",
  32987. height: math.unit(102 + 1/12, "feet")
  32988. },
  32989. ]
  32990. ))
  32991. characterMakers.push(() => makeCharacter(
  32992. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32993. {
  32994. front: {
  32995. height: math.unit(6 + 8/12, "feet"),
  32996. weight: math.unit(300, "lb"),
  32997. name: "Front",
  32998. image: {
  32999. source: "./media/characters/jrain/front.svg",
  33000. extra: 3039/2865,
  33001. bottom: 399/3438
  33002. }
  33003. },
  33004. back: {
  33005. height: math.unit(6 + 8/12, "feet"),
  33006. weight: math.unit(300, "lb"),
  33007. name: "Back",
  33008. image: {
  33009. source: "./media/characters/jrain/back.svg",
  33010. extra: 3089/2938,
  33011. bottom: 172/3261
  33012. }
  33013. },
  33014. head: {
  33015. height: math.unit(2.14, "feet"),
  33016. name: "Head",
  33017. image: {
  33018. source: "./media/characters/jrain/head.svg"
  33019. }
  33020. },
  33021. maw: {
  33022. height: math.unit(1.77, "feet"),
  33023. name: "Maw",
  33024. image: {
  33025. source: "./media/characters/jrain/maw.svg"
  33026. }
  33027. },
  33028. leftHand: {
  33029. height: math.unit(1.1, "feet"),
  33030. name: "Left Hand",
  33031. image: {
  33032. source: "./media/characters/jrain/left-hand.svg"
  33033. }
  33034. },
  33035. rightHand: {
  33036. height: math.unit(1.1, "feet"),
  33037. name: "Right Hand",
  33038. image: {
  33039. source: "./media/characters/jrain/right-hand.svg"
  33040. }
  33041. },
  33042. eye: {
  33043. height: math.unit(0.35, "feet"),
  33044. name: "Eye",
  33045. image: {
  33046. source: "./media/characters/jrain/eye.svg"
  33047. }
  33048. },
  33049. },
  33050. [
  33051. {
  33052. name: "Normal",
  33053. height: math.unit(6 + 8/12, "feet"),
  33054. default: true
  33055. },
  33056. {
  33057. name: "Casually Large",
  33058. height: math.unit(25, "feet")
  33059. },
  33060. {
  33061. name: "Giant",
  33062. height: math.unit(100, "feet")
  33063. },
  33064. {
  33065. name: "Kaiju",
  33066. height: math.unit(300, "feet")
  33067. },
  33068. ]
  33069. ))
  33070. characterMakers.push(() => makeCharacter(
  33071. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33072. {
  33073. dragon: {
  33074. height: math.unit(5, "meters"),
  33075. name: "Dragon",
  33076. image: {
  33077. source: "./media/characters/sabrina/dragon.svg",
  33078. extra: 3670 / 2365,
  33079. bottom: 333 / 4003
  33080. }
  33081. },
  33082. gryphon: {
  33083. height: math.unit(3, "meters"),
  33084. name: "Gryphon",
  33085. image: {
  33086. source: "./media/characters/sabrina/gryphon.svg",
  33087. extra: 1576 / 945,
  33088. bottom: 71 / 1647
  33089. }
  33090. },
  33091. snake: {
  33092. height: math.unit(12, "meters"),
  33093. name: "Snake",
  33094. image: {
  33095. source: "./media/characters/sabrina/snake.svg",
  33096. extra: 1758 / 1320,
  33097. bottom: 186 / 1944
  33098. }
  33099. },
  33100. collar: {
  33101. height: math.unit(1.86, "meters"),
  33102. name: "Collar",
  33103. image: {
  33104. source: "./media/characters/sabrina/collar.svg"
  33105. }
  33106. },
  33107. eye: {
  33108. height: math.unit(0.53, "meters"),
  33109. name: "Eye",
  33110. image: {
  33111. source: "./media/characters/sabrina/eye.svg"
  33112. }
  33113. },
  33114. foot: {
  33115. height: math.unit(1.86, "meters"),
  33116. name: "Foot",
  33117. image: {
  33118. source: "./media/characters/sabrina/foot.svg"
  33119. }
  33120. },
  33121. hand: {
  33122. height: math.unit(1.32, "meters"),
  33123. name: "Hand",
  33124. image: {
  33125. source: "./media/characters/sabrina/hand.svg"
  33126. }
  33127. },
  33128. head: {
  33129. height: math.unit(2.44, "meters"),
  33130. name: "Head",
  33131. image: {
  33132. source: "./media/characters/sabrina/head.svg"
  33133. }
  33134. },
  33135. headAngry: {
  33136. height: math.unit(2.44, "meters"),
  33137. name: "Head (Angry))",
  33138. image: {
  33139. source: "./media/characters/sabrina/head-angry.svg"
  33140. }
  33141. },
  33142. maw: {
  33143. height: math.unit(1.65, "meters"),
  33144. name: "Maw",
  33145. image: {
  33146. source: "./media/characters/sabrina/maw.svg"
  33147. }
  33148. },
  33149. spikes: {
  33150. height: math.unit(1.69, "meters"),
  33151. name: "Spikes",
  33152. image: {
  33153. source: "./media/characters/sabrina/spikes.svg"
  33154. }
  33155. },
  33156. stomach: {
  33157. height: math.unit(1.15, "meters"),
  33158. name: "Stomach",
  33159. image: {
  33160. source: "./media/characters/sabrina/stomach.svg"
  33161. }
  33162. },
  33163. tongue: {
  33164. height: math.unit(1.27, "meters"),
  33165. name: "Tongue",
  33166. image: {
  33167. source: "./media/characters/sabrina/tongue.svg"
  33168. }
  33169. },
  33170. wingDorsal: {
  33171. height: math.unit(4.85, "meters"),
  33172. name: "Wing (Dorsal)",
  33173. image: {
  33174. source: "./media/characters/sabrina/wing-dorsal.svg"
  33175. }
  33176. },
  33177. wingVentral: {
  33178. height: math.unit(4.85, "meters"),
  33179. name: "Wing (Ventral)",
  33180. image: {
  33181. source: "./media/characters/sabrina/wing-ventral.svg"
  33182. }
  33183. },
  33184. },
  33185. [
  33186. {
  33187. name: "Normal",
  33188. height: math.unit(5, "meters"),
  33189. default: true
  33190. },
  33191. ]
  33192. ))
  33193. characterMakers.push(() => makeCharacter(
  33194. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33195. {
  33196. frontMaid: {
  33197. height: math.unit(5 + 5/12, "feet"),
  33198. weight: math.unit(130, "lb"),
  33199. name: "Front (Maid)",
  33200. image: {
  33201. source: "./media/characters/midnight-tales/front-maid.svg",
  33202. extra: 489/454,
  33203. bottom: 61/550
  33204. }
  33205. },
  33206. frontFormal: {
  33207. height: math.unit(5 + 5/12, "feet"),
  33208. weight: math.unit(130, "lb"),
  33209. name: "Front (Formal)",
  33210. image: {
  33211. source: "./media/characters/midnight-tales/front-formal.svg",
  33212. extra: 489/454,
  33213. bottom: 61/550
  33214. }
  33215. },
  33216. back: {
  33217. height: math.unit(5 + 5/12, "feet"),
  33218. weight: math.unit(130, "lb"),
  33219. name: "Back",
  33220. image: {
  33221. source: "./media/characters/midnight-tales/back.svg",
  33222. extra: 498/456,
  33223. bottom: 33/531
  33224. }
  33225. },
  33226. frontBeast: {
  33227. height: math.unit(40, "feet"),
  33228. weight: math.unit(64000, "lb"),
  33229. name: "Front (Beast)",
  33230. image: {
  33231. source: "./media/characters/midnight-tales/front-beast.svg",
  33232. extra: 927/860,
  33233. bottom: 53/980
  33234. }
  33235. },
  33236. backBeast: {
  33237. height: math.unit(40, "feet"),
  33238. weight: math.unit(64000, "lb"),
  33239. name: "Back (Beast)",
  33240. image: {
  33241. source: "./media/characters/midnight-tales/back-beast.svg",
  33242. extra: 929/855,
  33243. bottom: 16/945
  33244. }
  33245. },
  33246. footBeast: {
  33247. height: math.unit(6.7, "feet"),
  33248. name: "Foot (Beast)",
  33249. image: {
  33250. source: "./media/characters/midnight-tales/foot-beast.svg"
  33251. }
  33252. },
  33253. headBeast: {
  33254. height: math.unit(8, "feet"),
  33255. name: "Head (Beast)",
  33256. image: {
  33257. source: "./media/characters/midnight-tales/head-beast.svg"
  33258. }
  33259. },
  33260. },
  33261. [
  33262. {
  33263. name: "Normal",
  33264. height: math.unit(5 + 5 / 12, "feet"),
  33265. default: true
  33266. },
  33267. {
  33268. name: "Macro",
  33269. height: math.unit(25, "feet")
  33270. },
  33271. ]
  33272. ))
  33273. characterMakers.push(() => makeCharacter(
  33274. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33275. {
  33276. front: {
  33277. height: math.unit(5 + 10/12, "feet"),
  33278. name: "Front",
  33279. image: {
  33280. source: "./media/characters/argon/front.svg",
  33281. extra: 2009/1935,
  33282. bottom: 118/2127
  33283. }
  33284. },
  33285. back: {
  33286. height: math.unit(5 + 10/12, "feet"),
  33287. name: "Back",
  33288. image: {
  33289. source: "./media/characters/argon/back.svg",
  33290. extra: 2047/1992,
  33291. bottom: 20/2067
  33292. }
  33293. },
  33294. frontDressed: {
  33295. height: math.unit(5 + 10/12, "feet"),
  33296. name: "Front (Dressed)",
  33297. image: {
  33298. source: "./media/characters/argon/front-dressed.svg",
  33299. extra: 2009/1935,
  33300. bottom: 118/2127
  33301. }
  33302. },
  33303. },
  33304. [
  33305. {
  33306. name: "Normal",
  33307. height: math.unit(5 + 10/12, "feet"),
  33308. default: true
  33309. },
  33310. ]
  33311. ))
  33312. characterMakers.push(() => makeCharacter(
  33313. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33314. {
  33315. front: {
  33316. height: math.unit(8 + 6/12, "feet"),
  33317. weight: math.unit(1150, "lb"),
  33318. name: "Front",
  33319. image: {
  33320. source: "./media/characters/kichi/front.svg",
  33321. extra: 1267/1164,
  33322. bottom: 61/1328
  33323. }
  33324. },
  33325. back: {
  33326. height: math.unit(8 + 6/12, "feet"),
  33327. weight: math.unit(1150, "lb"),
  33328. name: "Back",
  33329. image: {
  33330. source: "./media/characters/kichi/back.svg",
  33331. extra: 1273/1166,
  33332. bottom: 33/1306
  33333. }
  33334. },
  33335. },
  33336. [
  33337. {
  33338. name: "Normal",
  33339. height: math.unit(8 + 6/12, "feet"),
  33340. default: true
  33341. },
  33342. ]
  33343. ))
  33344. characterMakers.push(() => makeCharacter(
  33345. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33346. {
  33347. front: {
  33348. height: math.unit(6, "feet"),
  33349. weight: math.unit(210, "lb"),
  33350. name: "Front",
  33351. image: {
  33352. source: "./media/characters/manetel-greyscale/front.svg",
  33353. extra: 350/312,
  33354. bottom: 8/358
  33355. }
  33356. },
  33357. },
  33358. [
  33359. {
  33360. name: "Micro",
  33361. height: math.unit(2, "inches")
  33362. },
  33363. {
  33364. name: "Normal",
  33365. height: math.unit(6, "feet"),
  33366. default: true
  33367. },
  33368. {
  33369. name: "Minimacro",
  33370. height: math.unit(17, "feet")
  33371. },
  33372. {
  33373. name: "Macro",
  33374. height: math.unit(117, "feet")
  33375. },
  33376. ]
  33377. ))
  33378. characterMakers.push(() => makeCharacter(
  33379. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33380. {
  33381. side: {
  33382. height: math.unit(5 + 1/12, "feet"),
  33383. weight: math.unit(418, "lb"),
  33384. name: "Side",
  33385. image: {
  33386. source: "./media/characters/softpurr/side.svg",
  33387. extra: 1993/1945,
  33388. bottom: 134/2127
  33389. }
  33390. },
  33391. front: {
  33392. height: math.unit(5 + 1/12, "feet"),
  33393. weight: math.unit(418, "lb"),
  33394. name: "Front",
  33395. image: {
  33396. source: "./media/characters/softpurr/front.svg",
  33397. extra: 1950/1856,
  33398. bottom: 174/2124
  33399. }
  33400. },
  33401. paw: {
  33402. height: math.unit(1, "feet"),
  33403. name: "Paw",
  33404. image: {
  33405. source: "./media/characters/softpurr/paw.svg"
  33406. }
  33407. },
  33408. },
  33409. [
  33410. {
  33411. name: "Normal",
  33412. height: math.unit(5 + 1/12, "feet"),
  33413. default: true
  33414. },
  33415. ]
  33416. ))
  33417. characterMakers.push(() => makeCharacter(
  33418. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33419. {
  33420. front: {
  33421. height: math.unit(260, "meters"),
  33422. name: "Front",
  33423. image: {
  33424. source: "./media/characters/anahita/front.svg",
  33425. extra: 665/635,
  33426. bottom: 89/754
  33427. }
  33428. },
  33429. },
  33430. [
  33431. {
  33432. name: "Macro",
  33433. height: math.unit(260, "meters"),
  33434. default: true
  33435. },
  33436. ]
  33437. ))
  33438. characterMakers.push(() => makeCharacter(
  33439. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33440. {
  33441. front: {
  33442. height: math.unit(4 + 10/12, "feet"),
  33443. weight: math.unit(160, "lb"),
  33444. name: "Front",
  33445. image: {
  33446. source: "./media/characters/chip-mouse/front.svg",
  33447. extra: 3528/3408,
  33448. bottom: 0/3528
  33449. }
  33450. },
  33451. frontNsfw: {
  33452. height: math.unit(4 + 10/12, "feet"),
  33453. weight: math.unit(160, "lb"),
  33454. name: "Front (NSFW)",
  33455. image: {
  33456. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33457. extra: 3528/3408,
  33458. bottom: 0/3528
  33459. }
  33460. },
  33461. },
  33462. [
  33463. {
  33464. name: "Normal",
  33465. height: math.unit(4 + 10/12, "feet"),
  33466. default: true
  33467. },
  33468. ]
  33469. ))
  33470. characterMakers.push(() => makeCharacter(
  33471. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33472. {
  33473. side: {
  33474. height: math.unit(10, "feet"),
  33475. weight: math.unit(14000, "lb"),
  33476. name: "Side",
  33477. image: {
  33478. source: "./media/characters/kremm/side.svg",
  33479. extra: 1390/1053,
  33480. bottom: 90/1480
  33481. }
  33482. },
  33483. gut: {
  33484. height: math.unit(5.8, "feet"),
  33485. name: "Gut",
  33486. image: {
  33487. source: "./media/characters/kremm/gut.svg"
  33488. }
  33489. },
  33490. ass: {
  33491. height: math.unit(6.1, "feet"),
  33492. name: "Ass",
  33493. image: {
  33494. source: "./media/characters/kremm/ass.svg"
  33495. }
  33496. },
  33497. jaws: {
  33498. height: math.unit(2.2, "feet"),
  33499. name: "Jaws",
  33500. image: {
  33501. source: "./media/characters/kremm/jaws.svg"
  33502. }
  33503. },
  33504. dick: {
  33505. height: math.unit(4.26, "feet"),
  33506. name: "Dick",
  33507. image: {
  33508. source: "./media/characters/kremm/dick.svg"
  33509. }
  33510. },
  33511. },
  33512. [
  33513. {
  33514. name: "Normal",
  33515. height: math.unit(10, "feet"),
  33516. default: true
  33517. },
  33518. ]
  33519. ))
  33520. characterMakers.push(() => makeCharacter(
  33521. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33522. {
  33523. front: {
  33524. height: math.unit(30, "stories"),
  33525. name: "Front",
  33526. image: {
  33527. source: "./media/characters/kai/front.svg",
  33528. extra: 1892/1718,
  33529. bottom: 162/2054
  33530. }
  33531. },
  33532. },
  33533. [
  33534. {
  33535. name: "Macro",
  33536. height: math.unit(30, "stories"),
  33537. default: true
  33538. },
  33539. ]
  33540. ))
  33541. characterMakers.push(() => makeCharacter(
  33542. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33543. {
  33544. front: {
  33545. height: math.unit(6 + 4/12, "feet"),
  33546. weight: math.unit(145, "lb"),
  33547. name: "Front",
  33548. image: {
  33549. source: "./media/characters/sykes/front.svg",
  33550. extra: 1321 / 1187,
  33551. bottom: 66 / 1387
  33552. }
  33553. },
  33554. back: {
  33555. height: math.unit(6 + 4/12, "feet"),
  33556. weight: math.unit(145, "lb"),
  33557. name: "Back",
  33558. image: {
  33559. source: "./media/characters/sykes/back.svg",
  33560. extra: 1326/1181,
  33561. bottom: 31/1357
  33562. }
  33563. },
  33564. handBack: {
  33565. height: math.unit(0.9, "feet"),
  33566. name: "Hand (Back)",
  33567. image: {
  33568. source: "./media/characters/sykes/hand-back.svg"
  33569. }
  33570. },
  33571. handFront: {
  33572. height: math.unit(0.839, "feet"),
  33573. name: "Hand (Front)",
  33574. image: {
  33575. source: "./media/characters/sykes/hand-front.svg"
  33576. }
  33577. },
  33578. leftFoot: {
  33579. height: math.unit(1.2, "feet"),
  33580. name: "Foot (Left)",
  33581. image: {
  33582. source: "./media/characters/sykes/foot-left.svg"
  33583. }
  33584. },
  33585. rightFoot: {
  33586. height: math.unit(1.2, "feet"),
  33587. name: "Foot (Right)",
  33588. image: {
  33589. source: "./media/characters/sykes/foot-right.svg"
  33590. }
  33591. },
  33592. maw: {
  33593. height: math.unit(1.93, "feet"),
  33594. name: "Maw",
  33595. image: {
  33596. source: "./media/characters/sykes/maw.svg"
  33597. }
  33598. },
  33599. teeth: {
  33600. height: math.unit(0.51, "feet"),
  33601. name: "Teeth",
  33602. image: {
  33603. source: "./media/characters/sykes/teeth.svg"
  33604. }
  33605. },
  33606. tongue: {
  33607. height: math.unit(2.13, "feet"),
  33608. name: "Tongue",
  33609. image: {
  33610. source: "./media/characters/sykes/tongue.svg"
  33611. }
  33612. },
  33613. uvula: {
  33614. height: math.unit(0.16, "feet"),
  33615. name: "Uvula",
  33616. image: {
  33617. source: "./media/characters/sykes/uvula.svg"
  33618. }
  33619. },
  33620. collar: {
  33621. height: math.unit(0.287, "feet"),
  33622. name: "Collar",
  33623. image: {
  33624. source: "./media/characters/sykes/collar.svg"
  33625. }
  33626. },
  33627. },
  33628. [
  33629. {
  33630. name: "Shrunken",
  33631. height: math.unit(5, "inches")
  33632. },
  33633. {
  33634. name: "Normal",
  33635. height: math.unit(6 + 4 / 12, "feet"),
  33636. default: true
  33637. },
  33638. {
  33639. name: "Big",
  33640. height: math.unit(15, "feet")
  33641. },
  33642. ]
  33643. ))
  33644. characterMakers.push(() => makeCharacter(
  33645. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33646. {
  33647. front: {
  33648. height: math.unit(5 + 8/12, "feet"),
  33649. weight: math.unit(190, "lb"),
  33650. name: "Front",
  33651. image: {
  33652. source: "./media/characters/oven-otter/front.svg",
  33653. extra: 1809/1740,
  33654. bottom: 181/1990
  33655. }
  33656. },
  33657. back: {
  33658. height: math.unit(5 + 8/12, "feet"),
  33659. weight: math.unit(190, "lb"),
  33660. name: "Back",
  33661. image: {
  33662. source: "./media/characters/oven-otter/back.svg",
  33663. extra: 1709/1635,
  33664. bottom: 118/1827
  33665. }
  33666. },
  33667. hand: {
  33668. height: math.unit(1.07, "feet"),
  33669. name: "Hand",
  33670. image: {
  33671. source: "./media/characters/oven-otter/hand.svg"
  33672. }
  33673. },
  33674. beans: {
  33675. height: math.unit(1.74, "feet"),
  33676. name: "Beans",
  33677. image: {
  33678. source: "./media/characters/oven-otter/beans.svg"
  33679. }
  33680. },
  33681. },
  33682. [
  33683. {
  33684. name: "Micro",
  33685. height: math.unit(0.5, "inches")
  33686. },
  33687. {
  33688. name: "Normal",
  33689. height: math.unit(5 + 8/12, "feet"),
  33690. default: true
  33691. },
  33692. {
  33693. name: "Macro",
  33694. height: math.unit(250, "feet")
  33695. },
  33696. {
  33697. name: "Really High",
  33698. height: math.unit(420, "feet")
  33699. },
  33700. ]
  33701. ))
  33702. characterMakers.push(() => makeCharacter(
  33703. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33704. {
  33705. front: {
  33706. height: math.unit(5, "meters"),
  33707. weight: math.unit(292000000000000, "kg"),
  33708. name: "Front",
  33709. image: {
  33710. source: "./media/characters/devourer/front.svg",
  33711. extra: 1800/1733,
  33712. bottom: 211/2011
  33713. }
  33714. },
  33715. maw: {
  33716. height: math.unit(1.1, "meter"),
  33717. name: "Maw",
  33718. image: {
  33719. source: "./media/characters/devourer/maw.svg"
  33720. }
  33721. },
  33722. },
  33723. [
  33724. {
  33725. name: "Small",
  33726. height: math.unit(3, "meters")
  33727. },
  33728. {
  33729. name: "Large",
  33730. height: math.unit(5, "meters"),
  33731. default: true
  33732. },
  33733. ]
  33734. ))
  33735. characterMakers.push(() => makeCharacter(
  33736. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33737. {
  33738. front: {
  33739. height: math.unit(6, "feet"),
  33740. weight: math.unit(400, "lb"),
  33741. name: "Front",
  33742. image: {
  33743. source: "./media/characters/ellarby/front.svg",
  33744. extra: 1909/1763,
  33745. bottom: 80/1989
  33746. }
  33747. },
  33748. back: {
  33749. height: math.unit(6, "feet"),
  33750. weight: math.unit(400, "lb"),
  33751. name: "Back",
  33752. image: {
  33753. source: "./media/characters/ellarby/back.svg",
  33754. extra: 1914/1784,
  33755. bottom: 172/2086
  33756. }
  33757. },
  33758. },
  33759. [
  33760. {
  33761. name: "Mischief",
  33762. height: math.unit(18, "inches")
  33763. },
  33764. {
  33765. name: "Trouble",
  33766. height: math.unit(12, "feet")
  33767. },
  33768. {
  33769. name: "Havoc",
  33770. height: math.unit(200, "feet"),
  33771. default: true
  33772. },
  33773. {
  33774. name: "Pandemonium",
  33775. height: math.unit(1, "mile")
  33776. },
  33777. {
  33778. name: "Catastrophe",
  33779. height: math.unit(100, "miles")
  33780. },
  33781. ]
  33782. ))
  33783. characterMakers.push(() => makeCharacter(
  33784. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33785. {
  33786. front: {
  33787. height: math.unit(4.7, "meters"),
  33788. weight: math.unit(6500, "kg"),
  33789. name: "Front",
  33790. image: {
  33791. source: "./media/characters/vex/front.svg",
  33792. extra: 1288/1140,
  33793. bottom: 100/1388
  33794. }
  33795. },
  33796. },
  33797. [
  33798. {
  33799. name: "Normal",
  33800. height: math.unit(4.7, "meters"),
  33801. default: true
  33802. },
  33803. ]
  33804. ))
  33805. characterMakers.push(() => makeCharacter(
  33806. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33807. {
  33808. normal: {
  33809. height: math.unit(6, "feet"),
  33810. weight: math.unit(350, "lb"),
  33811. name: "Normal",
  33812. image: {
  33813. source: "./media/characters/teshy/normal.svg",
  33814. extra: 1795/1735,
  33815. bottom: 16/1811
  33816. }
  33817. },
  33818. monsterFront: {
  33819. height: math.unit(12, "feet"),
  33820. weight: math.unit(4700, "lb"),
  33821. name: "Monster (Front)",
  33822. image: {
  33823. source: "./media/characters/teshy/monster-front.svg",
  33824. extra: 2042/2034,
  33825. bottom: 128/2170
  33826. }
  33827. },
  33828. monsterSide: {
  33829. height: math.unit(12, "feet"),
  33830. weight: math.unit(4700, "lb"),
  33831. name: "Monster (Side)",
  33832. image: {
  33833. source: "./media/characters/teshy/monster-side.svg",
  33834. extra: 2067/2056,
  33835. bottom: 70/2137
  33836. }
  33837. },
  33838. monsterBack: {
  33839. height: math.unit(12, "feet"),
  33840. weight: math.unit(4700, "lb"),
  33841. name: "Monster (Back)",
  33842. image: {
  33843. source: "./media/characters/teshy/monster-back.svg",
  33844. extra: 1921/1914,
  33845. bottom: 171/2092
  33846. }
  33847. },
  33848. },
  33849. [
  33850. {
  33851. name: "Normal",
  33852. height: math.unit(6, "feet"),
  33853. default: true
  33854. },
  33855. ]
  33856. ))
  33857. characterMakers.push(() => makeCharacter(
  33858. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33859. {
  33860. front: {
  33861. height: math.unit(6, "feet"),
  33862. name: "Front",
  33863. image: {
  33864. source: "./media/characters/ramey/front.svg",
  33865. extra: 790/787,
  33866. bottom: 27/817
  33867. }
  33868. },
  33869. },
  33870. [
  33871. {
  33872. name: "Normal",
  33873. height: math.unit(6, "feet"),
  33874. default: true
  33875. },
  33876. ]
  33877. ))
  33878. characterMakers.push(() => makeCharacter(
  33879. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33880. {
  33881. front: {
  33882. height: math.unit(5 + 5/12, "feet"),
  33883. weight: math.unit(120, "lb"),
  33884. name: "Front",
  33885. image: {
  33886. source: "./media/characters/phirae/front.svg",
  33887. extra: 2491/2436,
  33888. bottom: 38/2529
  33889. }
  33890. },
  33891. },
  33892. [
  33893. {
  33894. name: "Normal",
  33895. height: math.unit(5 + 5/12, "feet"),
  33896. default: true
  33897. },
  33898. ]
  33899. ))
  33900. characterMakers.push(() => makeCharacter(
  33901. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  33902. {
  33903. front: {
  33904. height: math.unit(5 + 3/12, "feet"),
  33905. name: "Front",
  33906. image: {
  33907. source: "./media/characters/stagglas/front.svg",
  33908. extra: 962/882,
  33909. bottom: 53/1015
  33910. }
  33911. },
  33912. feral: {
  33913. height: math.unit(335, "cm"),
  33914. name: "Feral",
  33915. image: {
  33916. source: "./media/characters/stagglas/feral.svg",
  33917. extra: 1732/1090,
  33918. bottom: 48/1780
  33919. }
  33920. },
  33921. },
  33922. [
  33923. {
  33924. name: "Normal",
  33925. height: math.unit(5 + 3/12, "feet"),
  33926. default: true
  33927. },
  33928. ]
  33929. ))
  33930. characterMakers.push(() => makeCharacter(
  33931. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33932. {
  33933. front: {
  33934. height: math.unit(5 + 4/12, "feet"),
  33935. weight: math.unit(145, "lb"),
  33936. name: "Front",
  33937. image: {
  33938. source: "./media/characters/starra/front.svg",
  33939. extra: 1790/1691,
  33940. bottom: 91/1881
  33941. }
  33942. },
  33943. },
  33944. [
  33945. {
  33946. name: "Normal",
  33947. height: math.unit(5 + 4/12, "feet"),
  33948. default: true
  33949. },
  33950. ]
  33951. ))
  33952. characterMakers.push(() => makeCharacter(
  33953. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33954. {
  33955. front: {
  33956. height: math.unit(2.2, "meters"),
  33957. name: "Front",
  33958. image: {
  33959. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33960. extra: 1194/1005,
  33961. bottom: 25/1219
  33962. }
  33963. },
  33964. },
  33965. [
  33966. {
  33967. name: "Normal",
  33968. height: math.unit(2.2, "meters"),
  33969. default: true
  33970. },
  33971. ]
  33972. ))
  33973. characterMakers.push(() => makeCharacter(
  33974. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33975. {
  33976. side: {
  33977. height: math.unit(8 + 2/12, "feet"),
  33978. weight: math.unit(1240, "lb"),
  33979. name: "Side",
  33980. image: {
  33981. source: "./media/characters/mika-valentine/side.svg",
  33982. extra: 2670/2501,
  33983. bottom: 250/2920
  33984. }
  33985. },
  33986. },
  33987. [
  33988. {
  33989. name: "Normal",
  33990. height: math.unit(8 + 2/12, "feet"),
  33991. default: true
  33992. },
  33993. ]
  33994. ))
  33995. characterMakers.push(() => makeCharacter(
  33996. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33997. {
  33998. front: {
  33999. height: math.unit(7 + 2/12, "feet"),
  34000. name: "Front",
  34001. image: {
  34002. source: "./media/characters/xoltol/front.svg",
  34003. extra: 2212/2124,
  34004. bottom: 84/2296
  34005. }
  34006. },
  34007. side: {
  34008. height: math.unit(7 + 2/12, "feet"),
  34009. name: "Side",
  34010. image: {
  34011. source: "./media/characters/xoltol/side.svg",
  34012. extra: 2273/2197,
  34013. bottom: 26/2299
  34014. }
  34015. },
  34016. hand: {
  34017. height: math.unit(2.5, "feet"),
  34018. name: "Hand",
  34019. image: {
  34020. source: "./media/characters/xoltol/hand.svg"
  34021. }
  34022. },
  34023. },
  34024. [
  34025. {
  34026. name: "Small-ish",
  34027. height: math.unit(5 + 11/12, "feet")
  34028. },
  34029. {
  34030. name: "Normal",
  34031. height: math.unit(7 + 2/12, "feet")
  34032. },
  34033. {
  34034. name: "\"Macro\"",
  34035. height: math.unit(14 + 9/12, "feet"),
  34036. default: true
  34037. },
  34038. {
  34039. name: "Alternate Height",
  34040. height: math.unit(20, "feet")
  34041. },
  34042. {
  34043. name: "Actually Macro",
  34044. height: math.unit(100, "feet")
  34045. },
  34046. ]
  34047. ))
  34048. characterMakers.push(() => makeCharacter(
  34049. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34050. {
  34051. front: {
  34052. height: math.unit(5 + 2/12, "feet"),
  34053. name: "Front",
  34054. image: {
  34055. source: "./media/characters/kotetsu-redwood/front.svg",
  34056. extra: 1053/942,
  34057. bottom: 60/1113
  34058. }
  34059. },
  34060. },
  34061. [
  34062. {
  34063. name: "Normal",
  34064. height: math.unit(5 + 2/12, "feet"),
  34065. default: true
  34066. },
  34067. ]
  34068. ))
  34069. characterMakers.push(() => makeCharacter(
  34070. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34071. {
  34072. front: {
  34073. height: math.unit(2.4, "meters"),
  34074. weight: math.unit(125, "kg"),
  34075. name: "Front",
  34076. image: {
  34077. source: "./media/characters/lilith/front.svg",
  34078. extra: 1590/1513,
  34079. bottom: 203/1793
  34080. }
  34081. },
  34082. },
  34083. [
  34084. {
  34085. name: "Humanoid",
  34086. height: math.unit(2.4, "meters")
  34087. },
  34088. {
  34089. name: "Normal",
  34090. height: math.unit(6, "meters"),
  34091. default: true
  34092. },
  34093. {
  34094. name: "Largest",
  34095. height: math.unit(55, "meters")
  34096. },
  34097. ]
  34098. ))
  34099. characterMakers.push(() => makeCharacter(
  34100. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34101. {
  34102. front: {
  34103. height: math.unit(8 + 4/12, "feet"),
  34104. weight: math.unit(535, "lb"),
  34105. name: "Front",
  34106. image: {
  34107. source: "./media/characters/beh'kah-bolger/front.svg",
  34108. extra: 1660/1603,
  34109. bottom: 37/1697
  34110. }
  34111. },
  34112. },
  34113. [
  34114. {
  34115. name: "Normal",
  34116. height: math.unit(8 + 4/12, "feet"),
  34117. default: true
  34118. },
  34119. {
  34120. name: "Kaiju",
  34121. height: math.unit(250, "feet")
  34122. },
  34123. {
  34124. name: "Still Growing",
  34125. height: math.unit(10, "miles")
  34126. },
  34127. {
  34128. name: "Continental",
  34129. height: math.unit(5000, "miles")
  34130. },
  34131. {
  34132. name: "Final Form",
  34133. height: math.unit(2500000, "miles")
  34134. },
  34135. ]
  34136. ))
  34137. characterMakers.push(() => makeCharacter(
  34138. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34139. {
  34140. front: {
  34141. height: math.unit(7 + 2/12, "feet"),
  34142. weight: math.unit(230, "kg"),
  34143. name: "Front",
  34144. image: {
  34145. source: "./media/characters/tatyana-milewska/front.svg",
  34146. extra: 1199/1150,
  34147. bottom: 86/1285
  34148. }
  34149. },
  34150. },
  34151. [
  34152. {
  34153. name: "Normal",
  34154. height: math.unit(7 + 2/12, "feet"),
  34155. default: true
  34156. },
  34157. {
  34158. name: "Big",
  34159. height: math.unit(12, "feet")
  34160. },
  34161. {
  34162. name: "Minimacro",
  34163. height: math.unit(20, "feet")
  34164. },
  34165. {
  34166. name: "Macro",
  34167. height: math.unit(120, "feet")
  34168. },
  34169. ]
  34170. ))
  34171. characterMakers.push(() => makeCharacter(
  34172. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34173. {
  34174. front: {
  34175. height: math.unit(7 + 8/12, "feet"),
  34176. weight: math.unit(152, "kg"),
  34177. name: "Front",
  34178. image: {
  34179. source: "./media/characters/helen-arri/front.svg",
  34180. extra: 440/423,
  34181. bottom: 14/454
  34182. }
  34183. },
  34184. back: {
  34185. height: math.unit(7 + 8/12, "feet"),
  34186. weight: math.unit(152, "kg"),
  34187. name: "Back",
  34188. image: {
  34189. source: "./media/characters/helen-arri/back.svg",
  34190. extra: 443/426,
  34191. bottom: 8/451
  34192. }
  34193. },
  34194. },
  34195. [
  34196. {
  34197. name: "Normal",
  34198. height: math.unit(7 + 8/12, "feet"),
  34199. default: true
  34200. },
  34201. {
  34202. name: "Big",
  34203. height: math.unit(14, "feet")
  34204. },
  34205. {
  34206. name: "Minimacro",
  34207. height: math.unit(24, "feet")
  34208. },
  34209. {
  34210. name: "Macro",
  34211. height: math.unit(140, "feet")
  34212. },
  34213. ]
  34214. ))
  34215. characterMakers.push(() => makeCharacter(
  34216. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34217. {
  34218. front: {
  34219. height: math.unit(6, "meters"),
  34220. name: "Front",
  34221. image: {
  34222. source: "./media/characters/ehanu-rehu/front.svg",
  34223. extra: 1800/1800,
  34224. bottom: 59/1859
  34225. }
  34226. },
  34227. },
  34228. [
  34229. {
  34230. name: "Normal",
  34231. height: math.unit(6, "meters"),
  34232. default: true
  34233. },
  34234. ]
  34235. ))
  34236. characterMakers.push(() => makeCharacter(
  34237. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34238. {
  34239. front: {
  34240. height: math.unit(7 + 3/12, "feet"),
  34241. name: "Front",
  34242. image: {
  34243. source: "./media/characters/renholder/front.svg",
  34244. extra: 3096/2960,
  34245. bottom: 250/3346
  34246. }
  34247. },
  34248. },
  34249. [
  34250. {
  34251. name: "Normal Bat",
  34252. height: math.unit(7 + 3/12, "feet"),
  34253. default: true
  34254. },
  34255. {
  34256. name: "Slightly Tall Bat",
  34257. height: math.unit(100, "feet")
  34258. },
  34259. {
  34260. name: "Big Bat",
  34261. height: math.unit(1000, "feet")
  34262. },
  34263. {
  34264. name: "City-Sized Bat",
  34265. height: math.unit(200000, "feet")
  34266. },
  34267. {
  34268. name: "Bigger Bat",
  34269. height: math.unit(10000, "miles")
  34270. },
  34271. {
  34272. name: "Solar Sized Bat",
  34273. height: math.unit(100, "AU")
  34274. },
  34275. {
  34276. name: "Galactic Bat",
  34277. height: math.unit(200000, "lightyears")
  34278. },
  34279. {
  34280. name: "Universally Known Bat",
  34281. height: math.unit(1, "universe")
  34282. },
  34283. ]
  34284. ))
  34285. characterMakers.push(() => makeCharacter(
  34286. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34287. {
  34288. front: {
  34289. height: math.unit(6 + 11/12, "feet"),
  34290. weight: math.unit(250, "lb"),
  34291. name: "Front",
  34292. image: {
  34293. source: "./media/characters/cookiecat/front.svg",
  34294. extra: 893/827,
  34295. bottom: 14/907
  34296. }
  34297. },
  34298. },
  34299. [
  34300. {
  34301. name: "Micro",
  34302. height: math.unit(3, "inches")
  34303. },
  34304. {
  34305. name: "Normal",
  34306. height: math.unit(6 + 11/12, "feet"),
  34307. default: true
  34308. },
  34309. {
  34310. name: "Macro",
  34311. height: math.unit(100, "feet")
  34312. },
  34313. {
  34314. name: "Macro+",
  34315. height: math.unit(404, "feet")
  34316. },
  34317. {
  34318. name: "Megamacro",
  34319. height: math.unit(165, "miles")
  34320. },
  34321. {
  34322. name: "Planetary",
  34323. height: math.unit(4600, "miles")
  34324. },
  34325. ]
  34326. ))
  34327. characterMakers.push(() => makeCharacter(
  34328. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34329. {
  34330. front: {
  34331. height: math.unit(10 + 3/12, "feet"),
  34332. weight: math.unit(1500, "lb"),
  34333. name: "Front",
  34334. image: {
  34335. source: "./media/characters/tux-kusanagi/front.svg",
  34336. extra: 944/840,
  34337. bottom: 39/983
  34338. }
  34339. },
  34340. back: {
  34341. height: math.unit(10 + 3/12, "feet"),
  34342. weight: math.unit(1500, "lb"),
  34343. name: "Back",
  34344. image: {
  34345. source: "./media/characters/tux-kusanagi/back.svg",
  34346. extra: 941/842,
  34347. bottom: 28/969
  34348. }
  34349. },
  34350. rump: {
  34351. height: math.unit(5.25, "feet"),
  34352. name: "Rump",
  34353. image: {
  34354. source: "./media/characters/tux-kusanagi/rump.svg"
  34355. }
  34356. },
  34357. beak: {
  34358. height: math.unit(1.54, "feet"),
  34359. name: "Beak",
  34360. image: {
  34361. source: "./media/characters/tux-kusanagi/beak.svg"
  34362. }
  34363. },
  34364. },
  34365. [
  34366. {
  34367. name: "Normal",
  34368. height: math.unit(10 + 3/12, "feet"),
  34369. default: true
  34370. },
  34371. ]
  34372. ))
  34373. characterMakers.push(() => makeCharacter(
  34374. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34375. {
  34376. front: {
  34377. height: math.unit(58, "feet"),
  34378. weight: math.unit(200, "tons"),
  34379. name: "Front",
  34380. image: {
  34381. source: "./media/characters/uzarmazari/front.svg",
  34382. extra: 1575/1455,
  34383. bottom: 152/1727
  34384. }
  34385. },
  34386. back: {
  34387. height: math.unit(58, "feet"),
  34388. weight: math.unit(200, "tons"),
  34389. name: "Back",
  34390. image: {
  34391. source: "./media/characters/uzarmazari/back.svg",
  34392. extra: 1585/1510,
  34393. bottom: 157/1742
  34394. }
  34395. },
  34396. head: {
  34397. height: math.unit(26, "feet"),
  34398. name: "Head",
  34399. image: {
  34400. source: "./media/characters/uzarmazari/head.svg"
  34401. }
  34402. },
  34403. },
  34404. [
  34405. {
  34406. name: "Normal",
  34407. height: math.unit(58, "feet"),
  34408. default: true
  34409. },
  34410. ]
  34411. ))
  34412. characterMakers.push(() => makeCharacter(
  34413. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34414. {
  34415. side: {
  34416. height: math.unit(15, "feet"),
  34417. name: "Side",
  34418. image: {
  34419. source: "./media/characters/akitu/side.svg",
  34420. extra: 1421/1321,
  34421. bottom: 157/1578
  34422. }
  34423. },
  34424. front: {
  34425. height: math.unit(15, "feet"),
  34426. name: "Front",
  34427. image: {
  34428. source: "./media/characters/akitu/front.svg",
  34429. extra: 1435/1326,
  34430. bottom: 232/1667
  34431. }
  34432. },
  34433. },
  34434. [
  34435. {
  34436. name: "Normal",
  34437. height: math.unit(15, "feet"),
  34438. default: true
  34439. },
  34440. ]
  34441. ))
  34442. characterMakers.push(() => makeCharacter(
  34443. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34444. {
  34445. front: {
  34446. height: math.unit(10 + 8/12, "feet"),
  34447. name: "Front",
  34448. image: {
  34449. source: "./media/characters/azalie-croixland/front.svg",
  34450. extra: 1972/1856,
  34451. bottom: 31/2003
  34452. }
  34453. },
  34454. },
  34455. [
  34456. {
  34457. name: "Original Height",
  34458. height: math.unit(5 + 4/12, "feet")
  34459. },
  34460. {
  34461. name: "Normal Height",
  34462. height: math.unit(10 + 8/12, "feet"),
  34463. default: true
  34464. },
  34465. ]
  34466. ))
  34467. characterMakers.push(() => makeCharacter(
  34468. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34469. {
  34470. side: {
  34471. height: math.unit(7 + 1/12, "feet"),
  34472. weight: math.unit(245, "lb"),
  34473. name: "Side",
  34474. image: {
  34475. source: "./media/characters/kavus-kazian/side.svg",
  34476. extra: 349/342,
  34477. bottom: 15/364
  34478. }
  34479. },
  34480. },
  34481. [
  34482. {
  34483. name: "Normal",
  34484. height: math.unit(7 + 1/12, "feet"),
  34485. default: true
  34486. },
  34487. ]
  34488. ))
  34489. characterMakers.push(() => makeCharacter(
  34490. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34491. {
  34492. normal: {
  34493. height: math.unit(5 + 11/12, "feet"),
  34494. name: "Normal",
  34495. image: {
  34496. source: "./media/characters/moonlight-rose/normal.svg",
  34497. extra: 1979/1835,
  34498. bottom: 14/1993
  34499. }
  34500. },
  34501. demon: {
  34502. height: math.unit(5, "km"),
  34503. name: "Demon",
  34504. image: {
  34505. source: "./media/characters/moonlight-rose/demon.svg",
  34506. extra: 986/916,
  34507. bottom: 28/1014
  34508. }
  34509. },
  34510. },
  34511. [
  34512. {
  34513. name: "\"Natural\" height",
  34514. height: math.unit(5 + 11/12, "feet")
  34515. },
  34516. {
  34517. name: "Comfortable Size",
  34518. height: math.unit(40, "meters")
  34519. },
  34520. {
  34521. name: "Common Size",
  34522. height: math.unit(50, "km"),
  34523. default: true
  34524. },
  34525. {
  34526. name: "Demonic",
  34527. height: math.unit(1.24415e+21, "meters")
  34528. },
  34529. ]
  34530. ))
  34531. characterMakers.push(() => makeCharacter(
  34532. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34533. {
  34534. front: {
  34535. height: math.unit(16, "feet"),
  34536. weight: math.unit(610, "kg"),
  34537. name: "Front",
  34538. image: {
  34539. source: "./media/characters/huckle/front.svg",
  34540. extra: 1731/1625,
  34541. bottom: 33/1764
  34542. }
  34543. },
  34544. back: {
  34545. height: math.unit(16, "feet"),
  34546. weight: math.unit(610, "kg"),
  34547. name: "Back",
  34548. image: {
  34549. source: "./media/characters/huckle/back.svg",
  34550. extra: 1738/1651,
  34551. bottom: 37/1775
  34552. }
  34553. },
  34554. laughing: {
  34555. height: math.unit(3.75, "feet"),
  34556. name: "Laughing",
  34557. image: {
  34558. source: "./media/characters/huckle/laughing.svg"
  34559. }
  34560. },
  34561. angry: {
  34562. height: math.unit(4.15, "feet"),
  34563. name: "Angry",
  34564. image: {
  34565. source: "./media/characters/huckle/angry.svg"
  34566. }
  34567. },
  34568. },
  34569. [
  34570. {
  34571. name: "Normal",
  34572. height: math.unit(16, "feet"),
  34573. default: true
  34574. },
  34575. {
  34576. name: "Mini Macro",
  34577. height: math.unit(463, "feet")
  34578. },
  34579. {
  34580. name: "Macro",
  34581. height: math.unit(1680, "meters")
  34582. },
  34583. {
  34584. name: "Mega Macro",
  34585. height: math.unit(175, "km")
  34586. },
  34587. {
  34588. name: "Terra Macro",
  34589. height: math.unit(32, "gigameters")
  34590. },
  34591. {
  34592. name: "Multiverse+",
  34593. height: math.unit(2.56e23, "yottameters")
  34594. },
  34595. ]
  34596. ))
  34597. characterMakers.push(() => makeCharacter(
  34598. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34599. {
  34600. front: {
  34601. height: math.unit(6 + 9/12, "feet"),
  34602. weight: math.unit(280, "lb"),
  34603. name: "Front",
  34604. image: {
  34605. source: "./media/characters/candy/front.svg",
  34606. extra: 234/217,
  34607. bottom: 11/245
  34608. }
  34609. },
  34610. },
  34611. [
  34612. {
  34613. name: "Really Small",
  34614. height: math.unit(0.1, "nm")
  34615. },
  34616. {
  34617. name: "Micro",
  34618. height: math.unit(2, "inches")
  34619. },
  34620. {
  34621. name: "Normal",
  34622. height: math.unit(6 + 9/12, "feet"),
  34623. default: true
  34624. },
  34625. {
  34626. name: "Small Macro",
  34627. height: math.unit(69, "feet")
  34628. },
  34629. {
  34630. name: "Macro",
  34631. height: math.unit(160, "feet")
  34632. },
  34633. {
  34634. name: "Megamacro",
  34635. height: math.unit(22000, "miles")
  34636. },
  34637. {
  34638. name: "Gigamacro",
  34639. height: math.unit(50000, "miles")
  34640. },
  34641. ]
  34642. ))
  34643. characterMakers.push(() => makeCharacter(
  34644. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  34645. {
  34646. front: {
  34647. height: math.unit(4, "feet"),
  34648. weight: math.unit(90, "lb"),
  34649. name: "Front",
  34650. image: {
  34651. source: "./media/characters/joey-mcdonald/front.svg",
  34652. extra: 1059/852,
  34653. bottom: 33/1092
  34654. }
  34655. },
  34656. back: {
  34657. height: math.unit(4, "feet"),
  34658. weight: math.unit(90, "lb"),
  34659. name: "Back",
  34660. image: {
  34661. source: "./media/characters/joey-mcdonald/back.svg",
  34662. extra: 1077/879,
  34663. bottom: 5/1082
  34664. }
  34665. },
  34666. frontKobold: {
  34667. height: math.unit(4, "feet"),
  34668. weight: math.unit(100, "lb"),
  34669. name: "Front-kobold",
  34670. image: {
  34671. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  34672. extra: 1480/1367,
  34673. bottom: 0/1480
  34674. }
  34675. },
  34676. backKobold: {
  34677. height: math.unit(4, "feet"),
  34678. weight: math.unit(100, "lb"),
  34679. name: "Back-kobold",
  34680. image: {
  34681. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  34682. extra: 1449/1361,
  34683. bottom: 0/1449
  34684. }
  34685. },
  34686. },
  34687. [
  34688. {
  34689. name: "Normal",
  34690. height: math.unit(4, "feet"),
  34691. default: true
  34692. },
  34693. ]
  34694. ))
  34695. characterMakers.push(() => makeCharacter(
  34696. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34697. {
  34698. front: {
  34699. height: math.unit(12 + 6/12, "feet"),
  34700. name: "Front",
  34701. image: {
  34702. source: "./media/characters/kass-lockheed/front.svg",
  34703. extra: 354/343,
  34704. bottom: 9/363
  34705. }
  34706. },
  34707. back: {
  34708. height: math.unit(12 + 6/12, "feet"),
  34709. name: "Back",
  34710. image: {
  34711. source: "./media/characters/kass-lockheed/back.svg",
  34712. extra: 364/352,
  34713. bottom: 3/367
  34714. }
  34715. },
  34716. dick: {
  34717. height: math.unit(3.12, "feet"),
  34718. name: "Dick",
  34719. image: {
  34720. source: "./media/characters/kass-lockheed/dick.svg"
  34721. }
  34722. },
  34723. head: {
  34724. height: math.unit(2.6, "feet"),
  34725. name: "Head",
  34726. image: {
  34727. source: "./media/characters/kass-lockheed/head.svg"
  34728. }
  34729. },
  34730. bleh: {
  34731. height: math.unit(2.85, "feet"),
  34732. name: "Bleh",
  34733. image: {
  34734. source: "./media/characters/kass-lockheed/bleh.svg"
  34735. }
  34736. },
  34737. smug: {
  34738. height: math.unit(2.85, "feet"),
  34739. name: "Smug",
  34740. image: {
  34741. source: "./media/characters/kass-lockheed/smug.svg"
  34742. }
  34743. },
  34744. },
  34745. [
  34746. {
  34747. name: "Normal",
  34748. height: math.unit(12 + 6/12, "feet"),
  34749. default: true
  34750. },
  34751. ]
  34752. ))
  34753. characterMakers.push(() => makeCharacter(
  34754. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34755. {
  34756. front: {
  34757. height: math.unit(6 + 2/12, "feet"),
  34758. name: "Front",
  34759. image: {
  34760. source: "./media/characters/taylor/front.svg",
  34761. extra: 639/495,
  34762. bottom: 12/651
  34763. }
  34764. },
  34765. },
  34766. [
  34767. {
  34768. name: "Normal",
  34769. height: math.unit(6 + 2/12, "feet"),
  34770. default: true
  34771. },
  34772. {
  34773. name: "Big",
  34774. height: math.unit(15, "feet")
  34775. },
  34776. {
  34777. name: "Lorg",
  34778. height: math.unit(80, "feet")
  34779. },
  34780. {
  34781. name: "Too Lorg",
  34782. height: math.unit(120, "feet")
  34783. },
  34784. ]
  34785. ))
  34786. characterMakers.push(() => makeCharacter(
  34787. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34788. {
  34789. front: {
  34790. height: math.unit(15, "feet"),
  34791. name: "Front",
  34792. image: {
  34793. source: "./media/characters/kaizer/front.svg",
  34794. extra: 1612/1436,
  34795. bottom: 43/1655
  34796. }
  34797. },
  34798. },
  34799. [
  34800. {
  34801. name: "Normal",
  34802. height: math.unit(15, "feet"),
  34803. default: true
  34804. },
  34805. ]
  34806. ))
  34807. characterMakers.push(() => makeCharacter(
  34808. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34809. {
  34810. front: {
  34811. height: math.unit(2, "feet"),
  34812. weight: math.unit(30, "lb"),
  34813. name: "Front",
  34814. image: {
  34815. source: "./media/characters/sandy/front.svg",
  34816. extra: 1439/1307,
  34817. bottom: 194/1633
  34818. }
  34819. },
  34820. },
  34821. [
  34822. {
  34823. name: "Normal",
  34824. height: math.unit(2, "feet"),
  34825. default: true
  34826. },
  34827. ]
  34828. ))
  34829. characterMakers.push(() => makeCharacter(
  34830. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34831. {
  34832. front: {
  34833. height: math.unit(3, "feet"),
  34834. name: "Front",
  34835. image: {
  34836. source: "./media/characters/mellvi/front.svg",
  34837. extra: 1831/1630,
  34838. bottom: 58/1889
  34839. }
  34840. },
  34841. },
  34842. [
  34843. {
  34844. name: "Normal",
  34845. height: math.unit(3, "feet"),
  34846. default: true
  34847. },
  34848. ]
  34849. ))
  34850. characterMakers.push(() => makeCharacter(
  34851. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34852. {
  34853. front: {
  34854. height: math.unit(5 + 11/12, "feet"),
  34855. weight: math.unit(200, "lb"),
  34856. name: "Front",
  34857. image: {
  34858. source: "./media/characters/shirou/front.svg",
  34859. extra: 2491/2383,
  34860. bottom: 189/2680
  34861. }
  34862. },
  34863. back: {
  34864. height: math.unit(5 + 11/12, "feet"),
  34865. weight: math.unit(200, "lb"),
  34866. name: "Back",
  34867. image: {
  34868. source: "./media/characters/shirou/back.svg",
  34869. extra: 2554/2450,
  34870. bottom: 76/2630
  34871. }
  34872. },
  34873. },
  34874. [
  34875. {
  34876. name: "Normal",
  34877. height: math.unit(5 + 11/12, "feet"),
  34878. default: true
  34879. },
  34880. ]
  34881. ))
  34882. characterMakers.push(() => makeCharacter(
  34883. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34884. {
  34885. front: {
  34886. height: math.unit(6 + 3/12, "feet"),
  34887. weight: math.unit(177, "lb"),
  34888. name: "Front",
  34889. image: {
  34890. source: "./media/characters/noryu/front.svg",
  34891. extra: 973/885,
  34892. bottom: 10/983
  34893. }
  34894. },
  34895. },
  34896. [
  34897. {
  34898. name: "Normal",
  34899. height: math.unit(6 + 3/12, "feet"),
  34900. default: true
  34901. },
  34902. ]
  34903. ))
  34904. characterMakers.push(() => makeCharacter(
  34905. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34906. {
  34907. front: {
  34908. height: math.unit(5 + 6/12, "feet"),
  34909. weight: math.unit(170, "lb"),
  34910. name: "Front",
  34911. image: {
  34912. source: "./media/characters/mevolas-rubenido/front.svg",
  34913. extra: 2109/1901,
  34914. bottom: 96/2205
  34915. }
  34916. },
  34917. },
  34918. [
  34919. {
  34920. name: "Normal",
  34921. height: math.unit(5 + 6/12, "feet"),
  34922. default: true
  34923. },
  34924. ]
  34925. ))
  34926. characterMakers.push(() => makeCharacter(
  34927. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34928. {
  34929. front: {
  34930. height: math.unit(100, "feet"),
  34931. name: "Front",
  34932. image: {
  34933. source: "./media/characters/dee/front.svg",
  34934. extra: 2153/2036,
  34935. bottom: 59/2212
  34936. }
  34937. },
  34938. back: {
  34939. height: math.unit(100, "feet"),
  34940. name: "Back",
  34941. image: {
  34942. source: "./media/characters/dee/back.svg",
  34943. extra: 2183/2058,
  34944. bottom: 75/2258
  34945. }
  34946. },
  34947. foot: {
  34948. height: math.unit(19.43, "feet"),
  34949. name: "Foot",
  34950. image: {
  34951. source: "./media/characters/dee/foot.svg"
  34952. }
  34953. },
  34954. hoof: {
  34955. height: math.unit(20.6, "feet"),
  34956. name: "Hoof",
  34957. image: {
  34958. source: "./media/characters/dee/hoof.svg"
  34959. }
  34960. },
  34961. },
  34962. [
  34963. {
  34964. name: "Macro",
  34965. height: math.unit(100, "feet"),
  34966. default: true
  34967. },
  34968. ]
  34969. ))
  34970. characterMakers.push(() => makeCharacter(
  34971. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34972. {
  34973. front: {
  34974. height: math.unit(5 + 6/12, "feet"),
  34975. name: "Front",
  34976. image: {
  34977. source: "./media/characters/teh/front.svg",
  34978. extra: 1002/847,
  34979. bottom: 62/1064
  34980. }
  34981. },
  34982. },
  34983. [
  34984. {
  34985. name: "Normal",
  34986. height: math.unit(5 + 6/12, "feet"),
  34987. default: true
  34988. },
  34989. ]
  34990. ))
  34991. characterMakers.push(() => makeCharacter(
  34992. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34993. {
  34994. side: {
  34995. height: math.unit(6 + 1/12, "feet"),
  34996. weight: math.unit(204, "lb"),
  34997. name: "Side",
  34998. image: {
  34999. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35000. extra: 974/775,
  35001. bottom: 169/1143
  35002. }
  35003. },
  35004. sitting: {
  35005. height: math.unit(6 + 2/12, "feet"),
  35006. weight: math.unit(204, "lb"),
  35007. name: "Sitting",
  35008. image: {
  35009. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35010. extra: 1175/964,
  35011. bottom: 378/1553
  35012. }
  35013. },
  35014. },
  35015. [
  35016. {
  35017. name: "Normal",
  35018. height: math.unit(6 + 1/12, "feet"),
  35019. default: true
  35020. },
  35021. ]
  35022. ))
  35023. characterMakers.push(() => makeCharacter(
  35024. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35025. {
  35026. front: {
  35027. height: math.unit(6, "inches"),
  35028. name: "Front",
  35029. image: {
  35030. source: "./media/characters/tululi/front.svg",
  35031. extra: 1997/1876,
  35032. bottom: 20/2017
  35033. }
  35034. },
  35035. },
  35036. [
  35037. {
  35038. name: "Normal",
  35039. height: math.unit(6, "inches"),
  35040. default: true
  35041. },
  35042. ]
  35043. ))
  35044. characterMakers.push(() => makeCharacter(
  35045. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35046. {
  35047. front: {
  35048. height: math.unit(4 + 1/12, "feet"),
  35049. name: "Front",
  35050. image: {
  35051. source: "./media/characters/star/front.svg",
  35052. extra: 1493/1189,
  35053. bottom: 48/1541
  35054. }
  35055. },
  35056. },
  35057. [
  35058. {
  35059. name: "Normal",
  35060. height: math.unit(4 + 1/12, "feet"),
  35061. default: true
  35062. },
  35063. ]
  35064. ))
  35065. characterMakers.push(() => makeCharacter(
  35066. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35067. {
  35068. front: {
  35069. height: math.unit(6 + 3/12, "feet"),
  35070. name: "Front",
  35071. image: {
  35072. source: "./media/characters/comet/front.svg",
  35073. extra: 1681/1462,
  35074. bottom: 26/1707
  35075. }
  35076. },
  35077. },
  35078. [
  35079. {
  35080. name: "Normal",
  35081. height: math.unit(6 + 3/12, "feet"),
  35082. default: true
  35083. },
  35084. ]
  35085. ))
  35086. characterMakers.push(() => makeCharacter(
  35087. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35088. {
  35089. front: {
  35090. height: math.unit(950, "feet"),
  35091. name: "Front",
  35092. image: {
  35093. source: "./media/characters/vortex/front.svg",
  35094. extra: 1497/1434,
  35095. bottom: 56/1553
  35096. }
  35097. },
  35098. maw: {
  35099. height: math.unit(285, "feet"),
  35100. name: "Maw",
  35101. image: {
  35102. source: "./media/characters/vortex/maw.svg"
  35103. }
  35104. },
  35105. },
  35106. [
  35107. {
  35108. name: "Macro",
  35109. height: math.unit(950, "feet"),
  35110. default: true
  35111. },
  35112. ]
  35113. ))
  35114. characterMakers.push(() => makeCharacter(
  35115. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35116. {
  35117. front: {
  35118. height: math.unit(600, "feet"),
  35119. weight: math.unit(0.02, "grams"),
  35120. name: "Front",
  35121. image: {
  35122. source: "./media/characters/doodle/front.svg",
  35123. extra: 1578/1413,
  35124. bottom: 37/1615
  35125. }
  35126. },
  35127. },
  35128. [
  35129. {
  35130. name: "Macro",
  35131. height: math.unit(600, "feet"),
  35132. default: true
  35133. },
  35134. ]
  35135. ))
  35136. characterMakers.push(() => makeCharacter(
  35137. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35138. {
  35139. front: {
  35140. height: math.unit(6 + 6/12, "feet"),
  35141. name: "Front",
  35142. image: {
  35143. source: "./media/characters/jai/front.svg",
  35144. extra: 1645/1534,
  35145. bottom: 115/1760
  35146. }
  35147. },
  35148. },
  35149. [
  35150. {
  35151. name: "Normal",
  35152. height: math.unit(6 + 6/12, "feet"),
  35153. default: true
  35154. },
  35155. ]
  35156. ))
  35157. characterMakers.push(() => makeCharacter(
  35158. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35159. {
  35160. front: {
  35161. height: math.unit(6 + 8/12, "feet"),
  35162. name: "Front",
  35163. image: {
  35164. source: "./media/characters/pixel/front.svg",
  35165. extra: 1900/1735,
  35166. bottom: 63/1963
  35167. }
  35168. },
  35169. },
  35170. [
  35171. {
  35172. name: "Normal",
  35173. height: math.unit(6 + 8/12, "feet"),
  35174. default: true
  35175. },
  35176. ]
  35177. ))
  35178. characterMakers.push(() => makeCharacter(
  35179. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35180. {
  35181. front: {
  35182. height: math.unit(4 + 11/12, "feet"),
  35183. weight: math.unit(111, "lb"),
  35184. name: "Front",
  35185. image: {
  35186. source: "./media/characters/rhett/front.svg",
  35187. extra: 1682/1586,
  35188. bottom: 92/1774
  35189. }
  35190. },
  35191. },
  35192. [
  35193. {
  35194. name: "Mini",
  35195. height: math.unit(1 + 1/12, "feet")
  35196. },
  35197. {
  35198. name: "Normal",
  35199. height: math.unit(4 + 11/12, "feet"),
  35200. default: true
  35201. },
  35202. ]
  35203. ))
  35204. characterMakers.push(() => makeCharacter(
  35205. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35206. {
  35207. front: {
  35208. height: math.unit(3 + 3/12, "feet"),
  35209. name: "Front",
  35210. image: {
  35211. source: "./media/characters/penny/front.svg",
  35212. extra: 1406/1311,
  35213. bottom: 26/1432
  35214. }
  35215. },
  35216. },
  35217. [
  35218. {
  35219. name: "Normal",
  35220. height: math.unit(3 + 3/12, "feet"),
  35221. default: true
  35222. },
  35223. ]
  35224. ))
  35225. characterMakers.push(() => makeCharacter(
  35226. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35227. {
  35228. front: {
  35229. height: math.unit(4 + 11/12, "feet"),
  35230. name: "Front",
  35231. image: {
  35232. source: "./media/characters/monty/front.svg",
  35233. extra: 1479/1209,
  35234. bottom: 0/1479
  35235. }
  35236. },
  35237. },
  35238. [
  35239. {
  35240. name: "Normal",
  35241. height: math.unit(4 + 11/12, "feet"),
  35242. default: true
  35243. },
  35244. ]
  35245. ))
  35246. characterMakers.push(() => makeCharacter(
  35247. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35248. {
  35249. front: {
  35250. height: math.unit(8 + 4/12, "feet"),
  35251. name: "Front",
  35252. image: {
  35253. source: "./media/characters/sterling/front.svg",
  35254. extra: 1420/1236,
  35255. bottom: 27/1447
  35256. }
  35257. },
  35258. },
  35259. [
  35260. {
  35261. name: "Normal",
  35262. height: math.unit(8 + 4/12, "feet"),
  35263. default: true
  35264. },
  35265. ]
  35266. ))
  35267. characterMakers.push(() => makeCharacter(
  35268. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35269. {
  35270. front: {
  35271. height: math.unit(15, "feet"),
  35272. name: "Front",
  35273. image: {
  35274. source: "./media/characters/marble/front.svg",
  35275. extra: 973/937,
  35276. bottom: 32/1005
  35277. }
  35278. },
  35279. },
  35280. [
  35281. {
  35282. name: "Normal",
  35283. height: math.unit(15, "feet"),
  35284. default: true
  35285. },
  35286. ]
  35287. ))
  35288. characterMakers.push(() => makeCharacter(
  35289. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35290. {
  35291. front: {
  35292. height: math.unit(3, "inches"),
  35293. name: "Front",
  35294. image: {
  35295. source: "./media/characters/powder/front.svg",
  35296. extra: 1504/1334,
  35297. bottom: 518/2022
  35298. }
  35299. },
  35300. },
  35301. [
  35302. {
  35303. name: "Normal",
  35304. height: math.unit(3, "inches"),
  35305. default: true
  35306. },
  35307. ]
  35308. ))
  35309. characterMakers.push(() => makeCharacter(
  35310. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35311. {
  35312. front: {
  35313. height: math.unit(4 + 5/12, "feet"),
  35314. name: "Front",
  35315. image: {
  35316. source: "./media/characters/joey-raccoon/front.svg",
  35317. extra: 1273/1197,
  35318. bottom: 0/1273
  35319. }
  35320. },
  35321. },
  35322. [
  35323. {
  35324. name: "Normal",
  35325. height: math.unit(4 + 5/12, "feet"),
  35326. default: true
  35327. },
  35328. ]
  35329. ))
  35330. characterMakers.push(() => makeCharacter(
  35331. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35332. {
  35333. front: {
  35334. height: math.unit(8 + 4/12, "feet"),
  35335. name: "Front",
  35336. image: {
  35337. source: "./media/characters/vick/front.svg",
  35338. extra: 2187/2118,
  35339. bottom: 47/2234
  35340. }
  35341. },
  35342. },
  35343. [
  35344. {
  35345. name: "Normal",
  35346. height: math.unit(8 + 4/12, "feet"),
  35347. default: true
  35348. },
  35349. ]
  35350. ))
  35351. characterMakers.push(() => makeCharacter(
  35352. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35353. {
  35354. front: {
  35355. height: math.unit(5 + 5/12, "feet"),
  35356. name: "Front",
  35357. image: {
  35358. source: "./media/characters/mitsy/front.svg",
  35359. extra: 1842/1695,
  35360. bottom: 0/1842
  35361. }
  35362. },
  35363. },
  35364. [
  35365. {
  35366. name: "Normal",
  35367. height: math.unit(5 + 5/12, "feet"),
  35368. default: true
  35369. },
  35370. ]
  35371. ))
  35372. characterMakers.push(() => makeCharacter(
  35373. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35374. {
  35375. front: {
  35376. height: math.unit(6 + 3/12, "feet"),
  35377. name: "Front",
  35378. image: {
  35379. source: "./media/characters/silvy/front.svg",
  35380. extra: 1995/1836,
  35381. bottom: 225/2220
  35382. }
  35383. },
  35384. },
  35385. [
  35386. {
  35387. name: "Normal",
  35388. height: math.unit(6 + 3/12, "feet"),
  35389. default: true
  35390. },
  35391. ]
  35392. ))
  35393. characterMakers.push(() => makeCharacter(
  35394. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35395. {
  35396. front: {
  35397. height: math.unit(3 + 8/12, "feet"),
  35398. name: "Front",
  35399. image: {
  35400. source: "./media/characters/rodney/front.svg",
  35401. extra: 1956/1747,
  35402. bottom: 31/1987
  35403. }
  35404. },
  35405. frontDressed: {
  35406. height: math.unit(2.9, "feet"),
  35407. name: "Front (Dressed)",
  35408. image: {
  35409. source: "./media/characters/rodney/front-dressed.svg",
  35410. extra: 1382/1241,
  35411. bottom: 385/1767
  35412. }
  35413. },
  35414. },
  35415. [
  35416. {
  35417. name: "Normal",
  35418. height: math.unit(3 + 8/12, "feet"),
  35419. default: true
  35420. },
  35421. ]
  35422. ))
  35423. characterMakers.push(() => makeCharacter(
  35424. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35425. {
  35426. front: {
  35427. height: math.unit(5 + 9/12, "feet"),
  35428. weight: math.unit(194, "lbs"),
  35429. name: "Front",
  35430. image: {
  35431. source: "./media/characters/zakail-sudekai/front.svg",
  35432. extra: 2696/2533,
  35433. bottom: 248/2944
  35434. }
  35435. },
  35436. maw: {
  35437. height: math.unit(1.35, "feet"),
  35438. name: "Maw",
  35439. image: {
  35440. source: "./media/characters/zakail-sudekai/maw.svg"
  35441. }
  35442. },
  35443. },
  35444. [
  35445. {
  35446. name: "Normal",
  35447. height: math.unit(5 + 9/12, "feet"),
  35448. default: true
  35449. },
  35450. ]
  35451. ))
  35452. characterMakers.push(() => makeCharacter(
  35453. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35454. {
  35455. front: {
  35456. height: math.unit(8 + 4/12, "feet"),
  35457. weight: math.unit(1200, "lb"),
  35458. name: "Front",
  35459. image: {
  35460. source: "./media/characters/eleanor/front.svg",
  35461. extra: 1226/1192,
  35462. bottom: 52/1278
  35463. }
  35464. },
  35465. back: {
  35466. height: math.unit(8 + 4/12, "feet"),
  35467. weight: math.unit(1200, "lb"),
  35468. name: "Back",
  35469. image: {
  35470. source: "./media/characters/eleanor/back.svg",
  35471. extra: 1242/1184,
  35472. bottom: 60/1302
  35473. }
  35474. },
  35475. head: {
  35476. height: math.unit(2.62, "feet"),
  35477. name: "Head",
  35478. image: {
  35479. source: "./media/characters/eleanor/head.svg"
  35480. }
  35481. },
  35482. },
  35483. [
  35484. {
  35485. name: "Normal",
  35486. height: math.unit(8 + 4/12, "feet"),
  35487. default: true
  35488. },
  35489. ]
  35490. ))
  35491. characterMakers.push(() => makeCharacter(
  35492. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35493. {
  35494. front: {
  35495. height: math.unit(8 + 4/12, "feet"),
  35496. weight: math.unit(750, "lb"),
  35497. name: "Front",
  35498. image: {
  35499. source: "./media/characters/tanya/front.svg",
  35500. extra: 1749/1615,
  35501. bottom: 33/1782
  35502. }
  35503. },
  35504. },
  35505. [
  35506. {
  35507. name: "Normal",
  35508. height: math.unit(8 + 4/12, "feet"),
  35509. default: true
  35510. },
  35511. ]
  35512. ))
  35513. characterMakers.push(() => makeCharacter(
  35514. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35515. {
  35516. front: {
  35517. height: math.unit(5, "feet"),
  35518. weight: math.unit(225, "lb"),
  35519. name: "Front",
  35520. image: {
  35521. source: "./media/characters/cindy/front.svg",
  35522. extra: 1320/1250,
  35523. bottom: 42/1362
  35524. }
  35525. },
  35526. frontDressed: {
  35527. height: math.unit(5, "feet"),
  35528. weight: math.unit(225, "lb"),
  35529. name: "Front (Dressed)",
  35530. image: {
  35531. source: "./media/characters/cindy/front-dressed.svg",
  35532. extra: 1320/1250,
  35533. bottom: 42/1362
  35534. }
  35535. },
  35536. back: {
  35537. height: math.unit(5, "feet"),
  35538. weight: math.unit(225, "lb"),
  35539. name: "Back",
  35540. image: {
  35541. source: "./media/characters/cindy/back.svg",
  35542. extra: 1384/1346,
  35543. bottom: 14/1398
  35544. }
  35545. },
  35546. },
  35547. [
  35548. {
  35549. name: "Normal",
  35550. height: math.unit(5, "feet"),
  35551. default: true
  35552. },
  35553. ]
  35554. ))
  35555. characterMakers.push(() => makeCharacter(
  35556. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35557. {
  35558. front: {
  35559. height: math.unit(6 + 9/12, "feet"),
  35560. weight: math.unit(440, "lb"),
  35561. name: "Front",
  35562. image: {
  35563. source: "./media/characters/wilbur-owen/front.svg",
  35564. extra: 1575/1448,
  35565. bottom: 72/1647
  35566. }
  35567. },
  35568. back: {
  35569. height: math.unit(6 + 9/12, "feet"),
  35570. weight: math.unit(440, "lb"),
  35571. name: "Back",
  35572. image: {
  35573. source: "./media/characters/wilbur-owen/back.svg",
  35574. extra: 1578/1445,
  35575. bottom: 36/1614
  35576. }
  35577. },
  35578. },
  35579. [
  35580. {
  35581. name: "Normal",
  35582. height: math.unit(6 + 9/12, "feet"),
  35583. default: true
  35584. },
  35585. ]
  35586. ))
  35587. characterMakers.push(() => makeCharacter(
  35588. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35589. {
  35590. front: {
  35591. height: math.unit(6 + 5/12, "feet"),
  35592. weight: math.unit(650, "lb"),
  35593. name: "Front",
  35594. image: {
  35595. source: "./media/characters/keegan/front.svg",
  35596. extra: 2387/2198,
  35597. bottom: 33/2420
  35598. }
  35599. },
  35600. side: {
  35601. height: math.unit(6 + 5/12, "feet"),
  35602. weight: math.unit(650, "lb"),
  35603. name: "Side",
  35604. image: {
  35605. source: "./media/characters/keegan/side.svg",
  35606. extra: 2390/2202,
  35607. bottom: 47/2437
  35608. }
  35609. },
  35610. back: {
  35611. height: math.unit(6 + 5/12, "feet"),
  35612. weight: math.unit(650, "lb"),
  35613. name: "Back",
  35614. image: {
  35615. source: "./media/characters/keegan/back.svg",
  35616. extra: 2418/2268,
  35617. bottom: 15/2433
  35618. }
  35619. },
  35620. frontSfw: {
  35621. height: math.unit(6 + 5/12, "feet"),
  35622. weight: math.unit(650, "lb"),
  35623. name: "Front (SFW)",
  35624. image: {
  35625. source: "./media/characters/keegan/front-sfw.svg",
  35626. extra: 2387/2198,
  35627. bottom: 33/2420
  35628. }
  35629. },
  35630. beans: {
  35631. height: math.unit(1.85, "feet"),
  35632. name: "Beans",
  35633. image: {
  35634. source: "./media/characters/keegan/beans.svg"
  35635. }
  35636. },
  35637. },
  35638. [
  35639. {
  35640. name: "Normal",
  35641. height: math.unit(6 + 5/12, "feet"),
  35642. default: true
  35643. },
  35644. ]
  35645. ))
  35646. characterMakers.push(() => makeCharacter(
  35647. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35648. {
  35649. front: {
  35650. height: math.unit(9, "feet"),
  35651. name: "Front",
  35652. image: {
  35653. source: "./media/characters/colton/front.svg",
  35654. extra: 1589/1326,
  35655. bottom: 139/1728
  35656. }
  35657. },
  35658. },
  35659. [
  35660. {
  35661. name: "Normal",
  35662. height: math.unit(9, "feet"),
  35663. default: true
  35664. },
  35665. ]
  35666. ))
  35667. characterMakers.push(() => makeCharacter(
  35668. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35669. {
  35670. front: {
  35671. height: math.unit(2 + 9/12, "feet"),
  35672. name: "Front",
  35673. image: {
  35674. source: "./media/characters/bora/front.svg",
  35675. extra: 1265/1250,
  35676. bottom: 24/1289
  35677. }
  35678. },
  35679. },
  35680. [
  35681. {
  35682. name: "Normal",
  35683. height: math.unit(2 + 9/12, "feet"),
  35684. default: true
  35685. },
  35686. ]
  35687. ))
  35688. characterMakers.push(() => makeCharacter(
  35689. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35690. {
  35691. front: {
  35692. height: math.unit(8, "feet"),
  35693. name: "Front",
  35694. image: {
  35695. source: "./media/characters/myu-myu/front.svg",
  35696. extra: 1949/1857,
  35697. bottom: 90/2039
  35698. }
  35699. },
  35700. },
  35701. [
  35702. {
  35703. name: "Normal",
  35704. height: math.unit(8, "feet"),
  35705. default: true
  35706. },
  35707. {
  35708. name: "Big",
  35709. height: math.unit(15, "feet")
  35710. },
  35711. {
  35712. name: "BIG",
  35713. height: math.unit(25, "feet")
  35714. },
  35715. ]
  35716. ))
  35717. characterMakers.push(() => makeCharacter(
  35718. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35719. {
  35720. side: {
  35721. height: math.unit(7 + 5/12, "feet"),
  35722. weight: math.unit(2800, "lb"),
  35723. name: "Side",
  35724. image: {
  35725. source: "./media/characters/haloren/side.svg",
  35726. extra: 1793/409,
  35727. bottom: 59/1852
  35728. }
  35729. },
  35730. frontPaw: {
  35731. height: math.unit(2.36, "feet"),
  35732. name: "Front paw",
  35733. image: {
  35734. source: "./media/characters/haloren/front-paw.svg"
  35735. }
  35736. },
  35737. hindPaw: {
  35738. height: math.unit(3.18, "feet"),
  35739. name: "Hind paw",
  35740. image: {
  35741. source: "./media/characters/haloren/hind-paw.svg"
  35742. }
  35743. },
  35744. maw: {
  35745. height: math.unit(5.05, "feet"),
  35746. name: "Maw",
  35747. image: {
  35748. source: "./media/characters/haloren/maw.svg"
  35749. }
  35750. },
  35751. dick: {
  35752. height: math.unit(2.90, "feet"),
  35753. name: "Dick",
  35754. image: {
  35755. source: "./media/characters/haloren/dick.svg"
  35756. }
  35757. },
  35758. },
  35759. [
  35760. {
  35761. name: "Normal",
  35762. height: math.unit(7 + 5/12, "feet"),
  35763. default: true
  35764. },
  35765. {
  35766. name: "Enhanced",
  35767. height: math.unit(14 + 3/12, "feet")
  35768. },
  35769. ]
  35770. ))
  35771. characterMakers.push(() => makeCharacter(
  35772. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35773. {
  35774. front: {
  35775. height: math.unit(171, "cm"),
  35776. name: "Front",
  35777. image: {
  35778. source: "./media/characters/kimmy/front.svg",
  35779. extra: 1491/1435,
  35780. bottom: 53/1544
  35781. }
  35782. },
  35783. },
  35784. [
  35785. {
  35786. name: "Small",
  35787. height: math.unit(9, "cm")
  35788. },
  35789. {
  35790. name: "Normal",
  35791. height: math.unit(171, "cm"),
  35792. default: true
  35793. },
  35794. ]
  35795. ))
  35796. characterMakers.push(() => makeCharacter(
  35797. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35798. {
  35799. front: {
  35800. height: math.unit(8, "feet"),
  35801. weight: math.unit(300, "lb"),
  35802. name: "Front",
  35803. image: {
  35804. source: "./media/characters/galeboomer/front.svg",
  35805. extra: 4651/4415,
  35806. bottom: 162/4813
  35807. }
  35808. },
  35809. back: {
  35810. height: math.unit(8, "feet"),
  35811. weight: math.unit(300, "lb"),
  35812. name: "Back",
  35813. image: {
  35814. source: "./media/characters/galeboomer/back.svg",
  35815. extra: 4544/4314,
  35816. bottom: 16/4560
  35817. }
  35818. },
  35819. frontAlt: {
  35820. height: math.unit(8, "feet"),
  35821. weight: math.unit(300, "lb"),
  35822. name: "Front (Alt)",
  35823. image: {
  35824. source: "./media/characters/galeboomer/front-alt.svg",
  35825. extra: 4458/4228,
  35826. bottom: 68/4526
  35827. }
  35828. },
  35829. maw: {
  35830. height: math.unit(1.2, "feet"),
  35831. name: "Maw",
  35832. image: {
  35833. source: "./media/characters/galeboomer/maw.svg"
  35834. }
  35835. },
  35836. },
  35837. [
  35838. {
  35839. name: "Normal",
  35840. height: math.unit(8, "feet"),
  35841. default: true
  35842. },
  35843. ]
  35844. ))
  35845. characterMakers.push(() => makeCharacter(
  35846. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35847. {
  35848. front: {
  35849. height: math.unit(5 + 9/12, "feet"),
  35850. weight: math.unit(120, "lb"),
  35851. name: "Front",
  35852. image: {
  35853. source: "./media/characters/chyr/front.svg",
  35854. extra: 1323/1254,
  35855. bottom: 63/1386
  35856. }
  35857. },
  35858. back: {
  35859. height: math.unit(5 + 9/12, "feet"),
  35860. weight: math.unit(120, "lb"),
  35861. name: "Back",
  35862. image: {
  35863. source: "./media/characters/chyr/back.svg",
  35864. extra: 1323/1252,
  35865. bottom: 48/1371
  35866. }
  35867. },
  35868. },
  35869. [
  35870. {
  35871. name: "Normal",
  35872. height: math.unit(5 + 9/12, "feet"),
  35873. default: true
  35874. },
  35875. ]
  35876. ))
  35877. characterMakers.push(() => makeCharacter(
  35878. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35879. {
  35880. front: {
  35881. height: math.unit(7, "feet"),
  35882. weight: math.unit(310, "lb"),
  35883. name: "Front",
  35884. image: {
  35885. source: "./media/characters/solarus/front.svg",
  35886. extra: 2415/2021,
  35887. bottom: 103/2518
  35888. }
  35889. },
  35890. back: {
  35891. height: math.unit(7, "feet"),
  35892. weight: math.unit(310, "lb"),
  35893. name: "Back",
  35894. image: {
  35895. source: "./media/characters/solarus/back.svg",
  35896. extra: 2463/2089,
  35897. bottom: 79/2542
  35898. }
  35899. },
  35900. },
  35901. [
  35902. {
  35903. name: "Normal",
  35904. height: math.unit(7, "feet"),
  35905. default: true
  35906. },
  35907. ]
  35908. ))
  35909. characterMakers.push(() => makeCharacter(
  35910. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35911. {
  35912. front: {
  35913. height: math.unit(16, "feet"),
  35914. name: "Front",
  35915. image: {
  35916. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35917. extra: 1844/1780,
  35918. bottom: 58/1902
  35919. }
  35920. },
  35921. winterCoat: {
  35922. height: math.unit(16, "feet"),
  35923. name: "Winter Coat",
  35924. image: {
  35925. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  35926. extra: 1807/1775,
  35927. bottom: 69/1876
  35928. }
  35929. },
  35930. },
  35931. [
  35932. {
  35933. name: "Normal",
  35934. height: math.unit(16, "feet"),
  35935. default: true
  35936. },
  35937. {
  35938. name: "Chicago Size",
  35939. height: math.unit(560, "feet")
  35940. },
  35941. ]
  35942. ))
  35943. characterMakers.push(() => makeCharacter(
  35944. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35945. {
  35946. front: {
  35947. height: math.unit(11 + 6/12, "feet"),
  35948. weight: math.unit(1366, "lb"),
  35949. name: "Front",
  35950. image: {
  35951. source: "./media/characters/lexor/front.svg",
  35952. extra: 1560/1481,
  35953. bottom: 211/1771
  35954. }
  35955. },
  35956. back: {
  35957. height: math.unit(11 + 6/12, "feet"),
  35958. weight: math.unit(1366, "lb"),
  35959. name: "Back",
  35960. image: {
  35961. source: "./media/characters/lexor/back.svg",
  35962. extra: 1614/1533,
  35963. bottom: 76/1690
  35964. }
  35965. },
  35966. maw: {
  35967. height: math.unit(3, "feet"),
  35968. name: "Maw",
  35969. image: {
  35970. source: "./media/characters/lexor/maw.svg"
  35971. }
  35972. },
  35973. dick: {
  35974. height: math.unit(2.59, "feet"),
  35975. name: "Dick",
  35976. image: {
  35977. source: "./media/characters/lexor/dick.svg"
  35978. }
  35979. },
  35980. },
  35981. [
  35982. {
  35983. name: "Normal",
  35984. height: math.unit(11 + 6/12, "feet"),
  35985. default: true
  35986. },
  35987. ]
  35988. ))
  35989. characterMakers.push(() => makeCharacter(
  35990. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35991. {
  35992. front: {
  35993. height: math.unit(5 + 8/12, "feet"),
  35994. name: "Front",
  35995. image: {
  35996. source: "./media/characters/magnum/front.svg",
  35997. extra: 942/855,
  35998. bottom: 26/968
  35999. }
  36000. },
  36001. },
  36002. [
  36003. {
  36004. name: "Normal",
  36005. height: math.unit(5 + 8/12, "feet"),
  36006. default: true
  36007. },
  36008. ]
  36009. ))
  36010. characterMakers.push(() => makeCharacter(
  36011. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36012. {
  36013. front: {
  36014. height: math.unit(18 + 4/12, "feet"),
  36015. weight: math.unit(1500, "kg"),
  36016. name: "Front",
  36017. image: {
  36018. source: "./media/characters/solas-sharpsman/front.svg",
  36019. extra: 1698/1589,
  36020. bottom: 0/1698
  36021. }
  36022. },
  36023. },
  36024. [
  36025. {
  36026. name: "Normal",
  36027. height: math.unit(18 + 4/12, "feet"),
  36028. default: true
  36029. },
  36030. ]
  36031. ))
  36032. characterMakers.push(() => makeCharacter(
  36033. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36034. {
  36035. front: {
  36036. height: math.unit(5 + 5/12, "feet"),
  36037. weight: math.unit(180, "lb"),
  36038. name: "Front",
  36039. image: {
  36040. source: "./media/characters/october/front.svg",
  36041. extra: 1800/1650,
  36042. bottom: 0/1800
  36043. }
  36044. },
  36045. frontNsfw: {
  36046. height: math.unit(5 + 5/12, "feet"),
  36047. weight: math.unit(180, "lb"),
  36048. name: "Front (NSFW)",
  36049. image: {
  36050. source: "./media/characters/october/front-nsfw.svg",
  36051. extra: 1392/1307,
  36052. bottom: 42/1434
  36053. }
  36054. },
  36055. },
  36056. [
  36057. {
  36058. name: "Normal",
  36059. height: math.unit(5 + 5/12, "feet"),
  36060. default: true
  36061. },
  36062. ]
  36063. ))
  36064. characterMakers.push(() => makeCharacter(
  36065. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36066. {
  36067. front: {
  36068. height: math.unit(8 + 6/12, "feet"),
  36069. name: "Front",
  36070. image: {
  36071. source: "./media/characters/essynkardi/front.svg",
  36072. extra: 1914/1846,
  36073. bottom: 22/1936
  36074. }
  36075. },
  36076. },
  36077. [
  36078. {
  36079. name: "Normal",
  36080. height: math.unit(8 + 6/12, "feet"),
  36081. default: true
  36082. },
  36083. ]
  36084. ))
  36085. characterMakers.push(() => makeCharacter(
  36086. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36087. {
  36088. front: {
  36089. height: math.unit(6 + 6/12, "feet"),
  36090. weight: math.unit(7, "lb"),
  36091. name: "Front",
  36092. image: {
  36093. source: "./media/characters/icky/front.svg",
  36094. extra: 813/782,
  36095. bottom: 66/879
  36096. }
  36097. },
  36098. back: {
  36099. height: math.unit(6 + 6/12, "feet"),
  36100. weight: math.unit(7, "lb"),
  36101. name: "Back",
  36102. image: {
  36103. source: "./media/characters/icky/back.svg",
  36104. extra: 754/735,
  36105. bottom: 56/810
  36106. }
  36107. },
  36108. },
  36109. [
  36110. {
  36111. name: "Normal",
  36112. height: math.unit(6 + 6/12, "feet"),
  36113. default: true
  36114. },
  36115. ]
  36116. ))
  36117. characterMakers.push(() => makeCharacter(
  36118. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36119. {
  36120. front: {
  36121. height: math.unit(15, "feet"),
  36122. name: "Front",
  36123. image: {
  36124. source: "./media/characters/rojas/front.svg",
  36125. extra: 1462/1408,
  36126. bottom: 95/1557
  36127. }
  36128. },
  36129. back: {
  36130. height: math.unit(15, "feet"),
  36131. name: "Back",
  36132. image: {
  36133. source: "./media/characters/rojas/back.svg",
  36134. extra: 1023/954,
  36135. bottom: 28/1051
  36136. }
  36137. },
  36138. },
  36139. [
  36140. {
  36141. name: "Normal",
  36142. height: math.unit(15, "feet"),
  36143. default: true
  36144. },
  36145. ]
  36146. ))
  36147. characterMakers.push(() => makeCharacter(
  36148. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36149. {
  36150. frontHuman: {
  36151. height: math.unit(5 + 7/12, "feet"),
  36152. name: "Front (Human)",
  36153. image: {
  36154. source: "./media/characters/alek-dryagan/front-human.svg",
  36155. extra: 1687/1667,
  36156. bottom: 69/1756
  36157. }
  36158. },
  36159. backHuman: {
  36160. height: math.unit(5 + 7/12, "feet"),
  36161. name: "Back (Human)",
  36162. image: {
  36163. source: "./media/characters/alek-dryagan/back-human.svg",
  36164. extra: 1670/1649,
  36165. bottom: 65/1735
  36166. }
  36167. },
  36168. frontDemi: {
  36169. height: math.unit(65, "feet"),
  36170. name: "Front (Demi)",
  36171. image: {
  36172. source: "./media/characters/alek-dryagan/front-demi.svg",
  36173. extra: 1669/1642,
  36174. bottom: 49/1718
  36175. }
  36176. },
  36177. backDemi: {
  36178. height: math.unit(65, "feet"),
  36179. name: "Back (Demi)",
  36180. image: {
  36181. source: "./media/characters/alek-dryagan/back-demi.svg",
  36182. extra: 1658/1637,
  36183. bottom: 40/1698
  36184. }
  36185. },
  36186. mawHuman: {
  36187. height: math.unit(0.3, "feet"),
  36188. name: "Maw (Human)",
  36189. image: {
  36190. source: "./media/characters/alek-dryagan/maw-human.svg"
  36191. }
  36192. },
  36193. mawDemi: {
  36194. height: math.unit(3.8, "feet"),
  36195. name: "Maw (Demi)",
  36196. image: {
  36197. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36198. }
  36199. },
  36200. },
  36201. [
  36202. {
  36203. name: "Normal",
  36204. height: math.unit(5 + 7/12, "feet"),
  36205. default: true
  36206. },
  36207. ]
  36208. ))
  36209. characterMakers.push(() => makeCharacter(
  36210. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36211. {
  36212. frontHuman: {
  36213. height: math.unit(5 + 2/12, "feet"),
  36214. name: "Front (Human)",
  36215. image: {
  36216. source: "./media/characters/gen/front-human.svg",
  36217. extra: 1627/1538,
  36218. bottom: 71/1698
  36219. }
  36220. },
  36221. backHuman: {
  36222. height: math.unit(5 + 2/12, "feet"),
  36223. name: "Back (Human)",
  36224. image: {
  36225. source: "./media/characters/gen/back-human.svg",
  36226. extra: 1638/1548,
  36227. bottom: 69/1707
  36228. }
  36229. },
  36230. frontDemi: {
  36231. height: math.unit(5 + 2/12, "feet"),
  36232. name: "Front (Demi)",
  36233. image: {
  36234. source: "./media/characters/gen/front-demi.svg",
  36235. extra: 1627/1538,
  36236. bottom: 71/1698
  36237. }
  36238. },
  36239. backDemi: {
  36240. height: math.unit(5 + 2/12, "feet"),
  36241. name: "Back (Demi)",
  36242. image: {
  36243. source: "./media/characters/gen/back-demi.svg",
  36244. extra: 1638/1548,
  36245. bottom: 69/1707
  36246. }
  36247. },
  36248. },
  36249. [
  36250. {
  36251. name: "Normal",
  36252. height: math.unit(5 + 2/12, "feet"),
  36253. default: true
  36254. },
  36255. ]
  36256. ))
  36257. characterMakers.push(() => makeCharacter(
  36258. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36259. {
  36260. frontImp: {
  36261. height: math.unit(1 + 11/12, "feet"),
  36262. name: "Front (Imp)",
  36263. image: {
  36264. source: "./media/characters/max-kobold/front-imp.svg",
  36265. extra: 1238/1134,
  36266. bottom: 81/1319
  36267. }
  36268. },
  36269. backImp: {
  36270. height: math.unit(1 + 11/12, "feet"),
  36271. name: "Back (Imp)",
  36272. image: {
  36273. source: "./media/characters/max-kobold/back-imp.svg",
  36274. extra: 1334/1175,
  36275. bottom: 34/1368
  36276. }
  36277. },
  36278. frontDemi: {
  36279. height: math.unit(5 + 9/12, "feet"),
  36280. name: "Front (Demi)",
  36281. image: {
  36282. source: "./media/characters/max-kobold/front-demi.svg",
  36283. extra: 1715/1685,
  36284. bottom: 54/1769
  36285. }
  36286. },
  36287. backDemi: {
  36288. height: math.unit(5 + 9/12, "feet"),
  36289. name: "Back (Demi)",
  36290. image: {
  36291. source: "./media/characters/max-kobold/back-demi.svg",
  36292. extra: 1752/1729,
  36293. bottom: 41/1793
  36294. }
  36295. },
  36296. handImp: {
  36297. height: math.unit(0.45, "feet"),
  36298. name: "Hand (Imp)",
  36299. image: {
  36300. source: "./media/characters/max-kobold/hand.svg"
  36301. }
  36302. },
  36303. pawImp: {
  36304. height: math.unit(0.46, "feet"),
  36305. name: "Paw (Imp)",
  36306. image: {
  36307. source: "./media/characters/max-kobold/paw.svg"
  36308. }
  36309. },
  36310. handDemi: {
  36311. height: math.unit(0.80, "feet"),
  36312. name: "Hand (Demi)",
  36313. image: {
  36314. source: "./media/characters/max-kobold/hand.svg"
  36315. }
  36316. },
  36317. pawDemi: {
  36318. height: math.unit(1.1, "feet"),
  36319. name: "Paw (Demi)",
  36320. image: {
  36321. source: "./media/characters/max-kobold/paw.svg"
  36322. }
  36323. },
  36324. headImp: {
  36325. height: math.unit(1.33, "feet"),
  36326. name: "Head (Imp)",
  36327. image: {
  36328. source: "./media/characters/max-kobold/head-imp.svg"
  36329. }
  36330. },
  36331. mawImp: {
  36332. height: math.unit(0.75, "feet"),
  36333. name: "Maw (Imp)",
  36334. image: {
  36335. source: "./media/characters/max-kobold/maw-imp.svg"
  36336. }
  36337. },
  36338. mawDemi: {
  36339. height: math.unit(0.42, "feet"),
  36340. name: "Maw (Demi)",
  36341. image: {
  36342. source: "./media/characters/max-kobold/maw-demi.svg"
  36343. }
  36344. },
  36345. },
  36346. [
  36347. {
  36348. name: "Normal",
  36349. height: math.unit(1 + 11/12, "feet"),
  36350. default: true
  36351. },
  36352. ]
  36353. ))
  36354. characterMakers.push(() => makeCharacter(
  36355. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36356. {
  36357. front: {
  36358. height: math.unit(7 + 5/12, "feet"),
  36359. name: "Front",
  36360. image: {
  36361. source: "./media/characters/carbon/front.svg",
  36362. extra: 1754/1689,
  36363. bottom: 65/1819
  36364. }
  36365. },
  36366. back: {
  36367. height: math.unit(7 + 5/12, "feet"),
  36368. name: "Back",
  36369. image: {
  36370. source: "./media/characters/carbon/back.svg",
  36371. extra: 1762/1695,
  36372. bottom: 24/1786
  36373. }
  36374. },
  36375. frontGigantamax: {
  36376. height: math.unit(150, "feet"),
  36377. name: "Front (Gigantamax)",
  36378. image: {
  36379. source: "./media/characters/carbon/front-gigantamax.svg",
  36380. extra: 1826/1669,
  36381. bottom: 59/1885
  36382. }
  36383. },
  36384. backGigantamax: {
  36385. height: math.unit(150, "feet"),
  36386. name: "Back (Gigantamax)",
  36387. image: {
  36388. source: "./media/characters/carbon/back-gigantamax.svg",
  36389. extra: 1796/1653,
  36390. bottom: 53/1849
  36391. }
  36392. },
  36393. maw: {
  36394. height: math.unit(0.48, "feet"),
  36395. name: "Maw",
  36396. image: {
  36397. source: "./media/characters/carbon/maw.svg"
  36398. }
  36399. },
  36400. mawGigantamax: {
  36401. height: math.unit(7.5, "feet"),
  36402. name: "Maw (Gigantamax)",
  36403. image: {
  36404. source: "./media/characters/carbon/maw-gigantamax.svg"
  36405. }
  36406. },
  36407. },
  36408. [
  36409. {
  36410. name: "Normal",
  36411. height: math.unit(7 + 5/12, "feet"),
  36412. default: true
  36413. },
  36414. ]
  36415. ))
  36416. characterMakers.push(() => makeCharacter(
  36417. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36418. {
  36419. front: {
  36420. height: math.unit(6, "feet"),
  36421. name: "Front",
  36422. image: {
  36423. source: "./media/characters/maverick/front.svg",
  36424. extra: 1672/1661,
  36425. bottom: 85/1757
  36426. }
  36427. },
  36428. back: {
  36429. height: math.unit(6, "feet"),
  36430. name: "Back",
  36431. image: {
  36432. source: "./media/characters/maverick/back.svg",
  36433. extra: 1642/1631,
  36434. bottom: 38/1680
  36435. }
  36436. },
  36437. },
  36438. [
  36439. {
  36440. name: "Normal",
  36441. height: math.unit(6, "feet"),
  36442. default: true
  36443. },
  36444. ]
  36445. ))
  36446. characterMakers.push(() => makeCharacter(
  36447. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36448. {
  36449. front: {
  36450. height: math.unit(15, "feet"),
  36451. weight: math.unit(615, "lb"),
  36452. name: "Front",
  36453. image: {
  36454. source: "./media/characters/grockle/front.svg",
  36455. extra: 1535/1427,
  36456. bottom: 56/1591
  36457. }
  36458. },
  36459. },
  36460. [
  36461. {
  36462. name: "Normal",
  36463. height: math.unit(15, "feet"),
  36464. default: true
  36465. },
  36466. {
  36467. name: "Large",
  36468. height: math.unit(150, "feet")
  36469. },
  36470. {
  36471. name: "Macro",
  36472. height: math.unit(1876, "feet")
  36473. },
  36474. {
  36475. name: "Mega Macro",
  36476. height: math.unit(121940, "feet")
  36477. },
  36478. {
  36479. name: "Giga Macro",
  36480. height: math.unit(750, "km")
  36481. },
  36482. {
  36483. name: "Tera Macro",
  36484. height: math.unit(750000, "km")
  36485. },
  36486. {
  36487. name: "Galactic",
  36488. height: math.unit(1.4e5, "km")
  36489. },
  36490. {
  36491. name: "Godlike",
  36492. height: math.unit(9.8e280, "galaxies")
  36493. },
  36494. ]
  36495. ))
  36496. characterMakers.push(() => makeCharacter(
  36497. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36498. {
  36499. front: {
  36500. height: math.unit(11, "meters"),
  36501. weight: math.unit(20, "tonnes"),
  36502. name: "Front",
  36503. image: {
  36504. source: "./media/characters/alistair/front.svg",
  36505. extra: 1265/1009,
  36506. bottom: 93/1358
  36507. }
  36508. },
  36509. },
  36510. [
  36511. {
  36512. name: "Normal",
  36513. height: math.unit(11, "meters"),
  36514. default: true
  36515. },
  36516. ]
  36517. ))
  36518. characterMakers.push(() => makeCharacter(
  36519. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36520. {
  36521. front: {
  36522. height: math.unit(5 + 8/12, "feet"),
  36523. name: "Front",
  36524. image: {
  36525. source: "./media/characters/haruka/front.svg",
  36526. extra: 2012/1952,
  36527. bottom: 0/2012
  36528. }
  36529. },
  36530. },
  36531. [
  36532. {
  36533. name: "Normal",
  36534. height: math.unit(5 + 8/12, "feet"),
  36535. default: true
  36536. },
  36537. ]
  36538. ))
  36539. characterMakers.push(() => makeCharacter(
  36540. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36541. {
  36542. back: {
  36543. height: math.unit(9, "feet"),
  36544. name: "Back",
  36545. image: {
  36546. source: "./media/characters/vivian-sylveon/back.svg",
  36547. extra: 1853/1714,
  36548. bottom: 0/1853
  36549. }
  36550. },
  36551. },
  36552. [
  36553. {
  36554. name: "Normal",
  36555. height: math.unit(9, "feet"),
  36556. default: true
  36557. },
  36558. {
  36559. name: "Macro",
  36560. height: math.unit(500, "feet")
  36561. },
  36562. {
  36563. name: "Megamacro",
  36564. height: math.unit(600, "miles")
  36565. },
  36566. {
  36567. name: "Gigamacro",
  36568. height: math.unit(30000, "miles")
  36569. },
  36570. ]
  36571. ))
  36572. characterMakers.push(() => makeCharacter(
  36573. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36574. {
  36575. anthro: {
  36576. height: math.unit(5 + 10/12, "feet"),
  36577. weight: math.unit(100, "lb"),
  36578. name: "Anthro",
  36579. image: {
  36580. source: "./media/characters/daiki/anthro.svg",
  36581. extra: 1115/1027,
  36582. bottom: 69/1184
  36583. }
  36584. },
  36585. feral: {
  36586. height: math.unit(200, "feet"),
  36587. name: "Feral",
  36588. image: {
  36589. source: "./media/characters/daiki/feral.svg",
  36590. extra: 1256/313,
  36591. bottom: 39/1295
  36592. }
  36593. },
  36594. feralHead: {
  36595. height: math.unit(171, "feet"),
  36596. name: "Feral Head",
  36597. image: {
  36598. source: "./media/characters/daiki/feral-head.svg"
  36599. }
  36600. },
  36601. manaDragon: {
  36602. height: math.unit(170, "meters"),
  36603. name: "Mana-dragon",
  36604. image: {
  36605. source: "./media/characters/daiki/mana-dragon.svg",
  36606. extra: 763/420,
  36607. bottom: 97/860
  36608. }
  36609. },
  36610. },
  36611. [
  36612. {
  36613. name: "Normal",
  36614. height: math.unit(5 + 10/12, "feet"),
  36615. default: true
  36616. },
  36617. ]
  36618. ))
  36619. characterMakers.push(() => makeCharacter(
  36620. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36621. {
  36622. fullyEquippedFront: {
  36623. height: math.unit(3 + 1/12, "feet"),
  36624. weight: math.unit(24, "lb"),
  36625. name: "Fully Equipped (Front)",
  36626. image: {
  36627. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36628. extra: 687/605,
  36629. bottom: 18/705
  36630. }
  36631. },
  36632. fullyEquippedBack: {
  36633. height: math.unit(3 + 1/12, "feet"),
  36634. weight: math.unit(24, "lb"),
  36635. name: "Fully Equipped (Back)",
  36636. image: {
  36637. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36638. extra: 689/590,
  36639. bottom: 18/707
  36640. }
  36641. },
  36642. dailyWear: {
  36643. height: math.unit(3 + 1/12, "feet"),
  36644. weight: math.unit(24, "lb"),
  36645. name: "Daily Wear",
  36646. image: {
  36647. source: "./media/characters/tea-spot/daily-wear.svg",
  36648. extra: 701/620,
  36649. bottom: 21/722
  36650. }
  36651. },
  36652. maidWork: {
  36653. height: math.unit(3 + 1/12, "feet"),
  36654. weight: math.unit(24, "lb"),
  36655. name: "Maid Work",
  36656. image: {
  36657. source: "./media/characters/tea-spot/maid-work.svg",
  36658. extra: 693/609,
  36659. bottom: 15/708
  36660. }
  36661. },
  36662. },
  36663. [
  36664. {
  36665. name: "Normal",
  36666. height: math.unit(3 + 1/12, "feet"),
  36667. default: true
  36668. },
  36669. ]
  36670. ))
  36671. characterMakers.push(() => makeCharacter(
  36672. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36673. {
  36674. front: {
  36675. height: math.unit(175, "cm"),
  36676. weight: math.unit(75, "kg"),
  36677. name: "Front",
  36678. image: {
  36679. source: "./media/characters/chee/front.svg",
  36680. extra: 1796/1740,
  36681. bottom: 40/1836
  36682. }
  36683. },
  36684. },
  36685. [
  36686. {
  36687. name: "Micro-Micro",
  36688. height: math.unit(1, "nm")
  36689. },
  36690. {
  36691. name: "Micro-erst",
  36692. height: math.unit(1, "micrometer")
  36693. },
  36694. {
  36695. name: "Micro-er",
  36696. height: math.unit(1, "cm")
  36697. },
  36698. {
  36699. name: "Normal",
  36700. height: math.unit(175, "cm"),
  36701. default: true
  36702. },
  36703. {
  36704. name: "Macro",
  36705. height: math.unit(100, "m")
  36706. },
  36707. {
  36708. name: "Macro-er",
  36709. height: math.unit(1, "km")
  36710. },
  36711. {
  36712. name: "Macro-erst",
  36713. height: math.unit(10, "km")
  36714. },
  36715. {
  36716. name: "Macro-Macro",
  36717. height: math.unit(100, "km")
  36718. },
  36719. ]
  36720. ))
  36721. characterMakers.push(() => makeCharacter(
  36722. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36723. {
  36724. front: {
  36725. height: math.unit(11 + 9/12, "feet"),
  36726. weight: math.unit(935, "lb"),
  36727. name: "Front",
  36728. image: {
  36729. source: "./media/characters/kingsley/front.svg",
  36730. extra: 1803/1674,
  36731. bottom: 127/1930
  36732. }
  36733. },
  36734. frontNude: {
  36735. height: math.unit(11 + 9/12, "feet"),
  36736. weight: math.unit(935, "lb"),
  36737. name: "Front (Nude)",
  36738. image: {
  36739. source: "./media/characters/kingsley/front-nude.svg",
  36740. extra: 1803/1674,
  36741. bottom: 127/1930
  36742. }
  36743. },
  36744. },
  36745. [
  36746. {
  36747. name: "Normal",
  36748. height: math.unit(11 + 9/12, "feet"),
  36749. default: true
  36750. },
  36751. ]
  36752. ))
  36753. characterMakers.push(() => makeCharacter(
  36754. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36755. {
  36756. side: {
  36757. height: math.unit(9, "feet"),
  36758. name: "Side",
  36759. image: {
  36760. source: "./media/characters/rymel/side.svg",
  36761. extra: 792/469,
  36762. bottom: 121/913
  36763. }
  36764. },
  36765. maw: {
  36766. height: math.unit(2.4, "meters"),
  36767. name: "Maw",
  36768. image: {
  36769. source: "./media/characters/rymel/maw.svg"
  36770. }
  36771. },
  36772. },
  36773. [
  36774. {
  36775. name: "House Drake",
  36776. height: math.unit(2, "feet")
  36777. },
  36778. {
  36779. name: "Reduced",
  36780. height: math.unit(4.5, "feet")
  36781. },
  36782. {
  36783. name: "Normal",
  36784. height: math.unit(9, "feet"),
  36785. default: true
  36786. },
  36787. ]
  36788. ))
  36789. characterMakers.push(() => makeCharacter(
  36790. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36791. {
  36792. front: {
  36793. height: math.unit(1.74, "meters"),
  36794. weight: math.unit(55, "kg"),
  36795. name: "Front",
  36796. image: {
  36797. source: "./media/characters/rubus/front.svg",
  36798. extra: 1894/1742,
  36799. bottom: 44/1938
  36800. }
  36801. },
  36802. },
  36803. [
  36804. {
  36805. name: "Normal",
  36806. height: math.unit(1.74, "meters"),
  36807. default: true
  36808. },
  36809. ]
  36810. ))
  36811. characterMakers.push(() => makeCharacter(
  36812. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36813. {
  36814. front: {
  36815. height: math.unit(5 + 2/12, "feet"),
  36816. weight: math.unit(112, "lb"),
  36817. name: "Front",
  36818. image: {
  36819. source: "./media/characters/cassie-kingston/front.svg",
  36820. extra: 1438/1390,
  36821. bottom: 47/1485
  36822. }
  36823. },
  36824. },
  36825. [
  36826. {
  36827. name: "Normal",
  36828. height: math.unit(5 + 2/12, "feet"),
  36829. default: true
  36830. },
  36831. {
  36832. name: "Macro",
  36833. height: math.unit(128, "feet")
  36834. },
  36835. {
  36836. name: "Megamacro",
  36837. height: math.unit(2.56, "miles")
  36838. },
  36839. ]
  36840. ))
  36841. characterMakers.push(() => makeCharacter(
  36842. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36843. {
  36844. front: {
  36845. height: math.unit(7, "feet"),
  36846. name: "Front",
  36847. image: {
  36848. source: "./media/characters/fox/front.svg",
  36849. extra: 1798/1703,
  36850. bottom: 55/1853
  36851. }
  36852. },
  36853. back: {
  36854. height: math.unit(7, "feet"),
  36855. name: "Back",
  36856. image: {
  36857. source: "./media/characters/fox/back.svg",
  36858. extra: 1748/1649,
  36859. bottom: 32/1780
  36860. }
  36861. },
  36862. head: {
  36863. height: math.unit(1.95, "feet"),
  36864. name: "Head",
  36865. image: {
  36866. source: "./media/characters/fox/head.svg"
  36867. }
  36868. },
  36869. dick: {
  36870. height: math.unit(1.33, "feet"),
  36871. name: "Dick",
  36872. image: {
  36873. source: "./media/characters/fox/dick.svg"
  36874. }
  36875. },
  36876. foot: {
  36877. height: math.unit(1, "feet"),
  36878. name: "Foot",
  36879. image: {
  36880. source: "./media/characters/fox/foot.svg"
  36881. }
  36882. },
  36883. paw: {
  36884. height: math.unit(0.92, "feet"),
  36885. name: "Paw",
  36886. image: {
  36887. source: "./media/characters/fox/paw.svg"
  36888. }
  36889. },
  36890. },
  36891. [
  36892. {
  36893. name: "Small",
  36894. height: math.unit(3, "inches")
  36895. },
  36896. {
  36897. name: "\"Realistic\"",
  36898. height: math.unit(7, "feet")
  36899. },
  36900. {
  36901. name: "Normal",
  36902. height: math.unit(150, "feet"),
  36903. default: true
  36904. },
  36905. {
  36906. name: "BIG",
  36907. height: math.unit(1200, "feet")
  36908. },
  36909. {
  36910. name: "👀",
  36911. height: math.unit(5, "miles")
  36912. },
  36913. {
  36914. name: "👀👀👀",
  36915. height: math.unit(64, "miles")
  36916. },
  36917. ]
  36918. ))
  36919. characterMakers.push(() => makeCharacter(
  36920. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36921. {
  36922. front: {
  36923. height: math.unit(625, "feet"),
  36924. name: "Front",
  36925. image: {
  36926. source: "./media/characters/asonja-rossa/front.svg",
  36927. extra: 1833/1686,
  36928. bottom: 24/1857
  36929. }
  36930. },
  36931. back: {
  36932. height: math.unit(625, "feet"),
  36933. name: "Back",
  36934. image: {
  36935. source: "./media/characters/asonja-rossa/back.svg",
  36936. extra: 1852/1753,
  36937. bottom: 26/1878
  36938. }
  36939. },
  36940. },
  36941. [
  36942. {
  36943. name: "Macro",
  36944. height: math.unit(625, "feet"),
  36945. default: true
  36946. },
  36947. ]
  36948. ))
  36949. characterMakers.push(() => makeCharacter(
  36950. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36951. {
  36952. side: {
  36953. height: math.unit(8, "feet"),
  36954. name: "Side",
  36955. image: {
  36956. source: "./media/characters/rezukii/side.svg",
  36957. extra: 979/542,
  36958. bottom: 87/1066
  36959. }
  36960. },
  36961. sitting: {
  36962. height: math.unit(14.6, "feet"),
  36963. name: "Sitting",
  36964. image: {
  36965. source: "./media/characters/rezukii/sitting.svg",
  36966. extra: 1023/813,
  36967. bottom: 45/1068
  36968. }
  36969. },
  36970. },
  36971. [
  36972. {
  36973. name: "Tiny",
  36974. height: math.unit(2, "feet")
  36975. },
  36976. {
  36977. name: "Smol",
  36978. height: math.unit(4, "feet")
  36979. },
  36980. {
  36981. name: "Normal",
  36982. height: math.unit(8, "feet"),
  36983. default: true
  36984. },
  36985. {
  36986. name: "Big",
  36987. height: math.unit(12, "feet")
  36988. },
  36989. {
  36990. name: "Macro",
  36991. height: math.unit(30, "feet")
  36992. },
  36993. ]
  36994. ))
  36995. characterMakers.push(() => makeCharacter(
  36996. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36997. {
  36998. front: {
  36999. height: math.unit(14, "feet"),
  37000. weight: math.unit(9.5, "tonnes"),
  37001. name: "Front",
  37002. image: {
  37003. source: "./media/characters/dawnheart/front.svg",
  37004. extra: 2792/2675,
  37005. bottom: 64/2856
  37006. }
  37007. },
  37008. },
  37009. [
  37010. {
  37011. name: "Normal",
  37012. height: math.unit(14, "feet"),
  37013. default: true
  37014. },
  37015. ]
  37016. ))
  37017. characterMakers.push(() => makeCharacter(
  37018. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37019. {
  37020. front: {
  37021. height: math.unit(1.7, "m"),
  37022. name: "Front",
  37023. image: {
  37024. source: "./media/characters/gladi/front.svg",
  37025. extra: 1460/1362,
  37026. bottom: 19/1479
  37027. }
  37028. },
  37029. back: {
  37030. height: math.unit(1.7, "m"),
  37031. name: "Back",
  37032. image: {
  37033. source: "./media/characters/gladi/back.svg",
  37034. extra: 1459/1357,
  37035. bottom: 12/1471
  37036. }
  37037. },
  37038. feral: {
  37039. height: math.unit(2.05, "m"),
  37040. name: "Feral",
  37041. image: {
  37042. source: "./media/characters/gladi/feral.svg",
  37043. extra: 821/557,
  37044. bottom: 91/912
  37045. }
  37046. },
  37047. },
  37048. [
  37049. {
  37050. name: "Shortest",
  37051. height: math.unit(70, "cm")
  37052. },
  37053. {
  37054. name: "Normal",
  37055. height: math.unit(1.7, "m")
  37056. },
  37057. {
  37058. name: "Macro",
  37059. height: math.unit(10, "m"),
  37060. default: true
  37061. },
  37062. {
  37063. name: "Tallest",
  37064. height: math.unit(200, "m")
  37065. },
  37066. ]
  37067. ))
  37068. characterMakers.push(() => makeCharacter(
  37069. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37070. {
  37071. front: {
  37072. height: math.unit(5 + 7/12, "feet"),
  37073. weight: math.unit(2, "tons"),
  37074. name: "Front",
  37075. image: {
  37076. source: "./media/characters/erdno/front.svg",
  37077. extra: 1234/1129,
  37078. bottom: 35/1269
  37079. }
  37080. },
  37081. angled: {
  37082. height: math.unit(5 + 7/12, "feet"),
  37083. weight: math.unit(2, "tons"),
  37084. name: "Angled",
  37085. image: {
  37086. source: "./media/characters/erdno/angled.svg",
  37087. extra: 1185/1139,
  37088. bottom: 36/1221
  37089. }
  37090. },
  37091. side: {
  37092. height: math.unit(5 + 7/12, "feet"),
  37093. weight: math.unit(2, "tons"),
  37094. name: "Side",
  37095. image: {
  37096. source: "./media/characters/erdno/side.svg",
  37097. extra: 1191/1144,
  37098. bottom: 40/1231
  37099. }
  37100. },
  37101. back: {
  37102. height: math.unit(5 + 7/12, "feet"),
  37103. weight: math.unit(2, "tons"),
  37104. name: "Back",
  37105. image: {
  37106. source: "./media/characters/erdno/back.svg",
  37107. extra: 1202/1146,
  37108. bottom: 17/1219
  37109. }
  37110. },
  37111. frontNsfw: {
  37112. height: math.unit(5 + 7/12, "feet"),
  37113. weight: math.unit(2, "tons"),
  37114. name: "Front (NSFW)",
  37115. image: {
  37116. source: "./media/characters/erdno/front-nsfw.svg",
  37117. extra: 1234/1129,
  37118. bottom: 35/1269
  37119. }
  37120. },
  37121. angledNsfw: {
  37122. height: math.unit(5 + 7/12, "feet"),
  37123. weight: math.unit(2, "tons"),
  37124. name: "Angled (NSFW)",
  37125. image: {
  37126. source: "./media/characters/erdno/angled-nsfw.svg",
  37127. extra: 1185/1139,
  37128. bottom: 36/1221
  37129. }
  37130. },
  37131. sideNsfw: {
  37132. height: math.unit(5 + 7/12, "feet"),
  37133. weight: math.unit(2, "tons"),
  37134. name: "Side (NSFW)",
  37135. image: {
  37136. source: "./media/characters/erdno/side-nsfw.svg",
  37137. extra: 1191/1144,
  37138. bottom: 40/1231
  37139. }
  37140. },
  37141. backNsfw: {
  37142. height: math.unit(5 + 7/12, "feet"),
  37143. weight: math.unit(2, "tons"),
  37144. name: "Back (NSFW)",
  37145. image: {
  37146. source: "./media/characters/erdno/back-nsfw.svg",
  37147. extra: 1202/1146,
  37148. bottom: 17/1219
  37149. }
  37150. },
  37151. frontHyper: {
  37152. height: math.unit(5 + 7/12, "feet"),
  37153. weight: math.unit(2, "tons"),
  37154. name: "Front (Hyper)",
  37155. image: {
  37156. source: "./media/characters/erdno/front-hyper.svg",
  37157. extra: 1298/1136,
  37158. bottom: 35/1333
  37159. }
  37160. },
  37161. },
  37162. [
  37163. {
  37164. name: "Normal",
  37165. height: math.unit(5 + 7/12, "feet"),
  37166. default: true
  37167. },
  37168. {
  37169. name: "Big",
  37170. height: math.unit(5.7, "meters")
  37171. },
  37172. {
  37173. name: "Macro",
  37174. height: math.unit(5.7, "kilometers")
  37175. },
  37176. {
  37177. name: "Megamacro",
  37178. height: math.unit(5.7, "earths")
  37179. },
  37180. ]
  37181. ))
  37182. characterMakers.push(() => makeCharacter(
  37183. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37184. {
  37185. front: {
  37186. height: math.unit(5 + 10/12, "feet"),
  37187. weight: math.unit(150, "lb"),
  37188. name: "Front",
  37189. image: {
  37190. source: "./media/characters/jamie/front.svg",
  37191. extra: 1908/1768,
  37192. bottom: 19/1927
  37193. }
  37194. },
  37195. },
  37196. [
  37197. {
  37198. name: "Minimum",
  37199. height: math.unit(2, "cm")
  37200. },
  37201. {
  37202. name: "Micro",
  37203. height: math.unit(3, "inches")
  37204. },
  37205. {
  37206. name: "Normal",
  37207. height: math.unit(5 + 10/12, "feet"),
  37208. default: true
  37209. },
  37210. {
  37211. name: "Macro",
  37212. height: math.unit(150, "feet")
  37213. },
  37214. {
  37215. name: "Megamacro",
  37216. height: math.unit(10000, "m")
  37217. },
  37218. ]
  37219. ))
  37220. characterMakers.push(() => makeCharacter(
  37221. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37222. {
  37223. front: {
  37224. height: math.unit(2, "meters"),
  37225. weight: math.unit(100, "kg"),
  37226. name: "Front",
  37227. image: {
  37228. source: "./media/characters/shiron/front.svg",
  37229. extra: 2103/1985,
  37230. bottom: 98/2201
  37231. }
  37232. },
  37233. back: {
  37234. height: math.unit(2, "meters"),
  37235. weight: math.unit(100, "kg"),
  37236. name: "Back",
  37237. image: {
  37238. source: "./media/characters/shiron/back.svg",
  37239. extra: 2110/2015,
  37240. bottom: 89/2199
  37241. }
  37242. },
  37243. hand: {
  37244. height: math.unit(0.96, "feet"),
  37245. name: "Hand",
  37246. image: {
  37247. source: "./media/characters/shiron/hand.svg"
  37248. }
  37249. },
  37250. foot: {
  37251. height: math.unit(1.464, "feet"),
  37252. name: "Foot",
  37253. image: {
  37254. source: "./media/characters/shiron/foot.svg"
  37255. }
  37256. },
  37257. },
  37258. [
  37259. {
  37260. name: "Normal",
  37261. height: math.unit(2, "meters")
  37262. },
  37263. {
  37264. name: "Macro",
  37265. height: math.unit(500, "meters"),
  37266. default: true
  37267. },
  37268. {
  37269. name: "Megamacro",
  37270. height: math.unit(20, "km")
  37271. },
  37272. ]
  37273. ))
  37274. characterMakers.push(() => makeCharacter(
  37275. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37276. {
  37277. front: {
  37278. height: math.unit(6, "feet"),
  37279. name: "Front",
  37280. image: {
  37281. source: "./media/characters/sam/front.svg",
  37282. extra: 849/826,
  37283. bottom: 19/868
  37284. }
  37285. },
  37286. },
  37287. [
  37288. {
  37289. name: "Normal",
  37290. height: math.unit(6, "feet"),
  37291. default: true
  37292. },
  37293. ]
  37294. ))
  37295. characterMakers.push(() => makeCharacter(
  37296. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37297. {
  37298. front: {
  37299. height: math.unit(8 + 4/12, "feet"),
  37300. weight: math.unit(122, "kg"),
  37301. name: "Front",
  37302. image: {
  37303. source: "./media/characters/namori-kurogawa/front.svg",
  37304. extra: 1894/1576,
  37305. bottom: 34/1928
  37306. }
  37307. },
  37308. },
  37309. [
  37310. {
  37311. name: "Normal",
  37312. height: math.unit(8 + 4/12, "feet"),
  37313. default: true
  37314. },
  37315. ]
  37316. ))
  37317. characterMakers.push(() => makeCharacter(
  37318. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37319. {
  37320. front: {
  37321. height: math.unit(9, "feet"),
  37322. weight: math.unit(621, "lb"),
  37323. name: "Front",
  37324. image: {
  37325. source: "./media/characters/unmru/front.svg",
  37326. extra: 1853/1747,
  37327. bottom: 73/1926
  37328. }
  37329. },
  37330. side: {
  37331. height: math.unit(9, "feet"),
  37332. weight: math.unit(621, "lb"),
  37333. name: "Side",
  37334. image: {
  37335. source: "./media/characters/unmru/side.svg",
  37336. extra: 1781/1671,
  37337. bottom: 127/1908
  37338. }
  37339. },
  37340. back: {
  37341. height: math.unit(9, "feet"),
  37342. weight: math.unit(621, "lb"),
  37343. name: "Back",
  37344. image: {
  37345. source: "./media/characters/unmru/back.svg",
  37346. extra: 1894/1765,
  37347. bottom: 75/1969
  37348. }
  37349. },
  37350. dick: {
  37351. height: math.unit(3, "feet"),
  37352. weight: math.unit(35, "lb"),
  37353. name: "Dick",
  37354. image: {
  37355. source: "./media/characters/unmru/dick.svg"
  37356. }
  37357. },
  37358. },
  37359. [
  37360. {
  37361. name: "Normal",
  37362. height: math.unit(9, "feet")
  37363. },
  37364. {
  37365. name: "Natural",
  37366. height: math.unit(27, "feet"),
  37367. default: true
  37368. },
  37369. {
  37370. name: "Giant",
  37371. height: math.unit(90, "feet")
  37372. },
  37373. {
  37374. name: "Kaiju",
  37375. height: math.unit(270, "feet")
  37376. },
  37377. {
  37378. name: "Macro",
  37379. height: math.unit(900, "feet")
  37380. },
  37381. {
  37382. name: "Macro+",
  37383. height: math.unit(2700, "feet")
  37384. },
  37385. {
  37386. name: "Megamacro",
  37387. height: math.unit(9000, "feet")
  37388. },
  37389. {
  37390. name: "City-Crushing",
  37391. height: math.unit(27000, "feet")
  37392. },
  37393. {
  37394. name: "Mountain-Mashing",
  37395. height: math.unit(90000, "feet")
  37396. },
  37397. {
  37398. name: "Earth-Eclipsing",
  37399. height: math.unit(2.7e8, "feet")
  37400. },
  37401. {
  37402. name: "Sol-Swallowing",
  37403. height: math.unit(9e10, "feet")
  37404. },
  37405. {
  37406. name: "Majoris-Munching",
  37407. height: math.unit(2.7e13, "feet")
  37408. },
  37409. ]
  37410. ))
  37411. characterMakers.push(() => makeCharacter(
  37412. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37413. {
  37414. front: {
  37415. height: math.unit(1, "inch"),
  37416. name: "Front",
  37417. image: {
  37418. source: "./media/characters/squeaks-mouse/front.svg",
  37419. extra: 352/308,
  37420. bottom: 25/377
  37421. }
  37422. },
  37423. },
  37424. [
  37425. {
  37426. name: "Micro",
  37427. height: math.unit(1, "inch"),
  37428. default: true
  37429. },
  37430. ]
  37431. ))
  37432. characterMakers.push(() => makeCharacter(
  37433. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37434. {
  37435. side: {
  37436. height: math.unit(35, "feet"),
  37437. name: "Side",
  37438. image: {
  37439. source: "./media/characters/sayko/side.svg",
  37440. extra: 1697/1021,
  37441. bottom: 82/1779
  37442. }
  37443. },
  37444. head: {
  37445. height: math.unit(16, "feet"),
  37446. name: "Head",
  37447. image: {
  37448. source: "./media/characters/sayko/head.svg"
  37449. }
  37450. },
  37451. forepaw: {
  37452. height: math.unit(7.85, "feet"),
  37453. name: "Forepaw",
  37454. image: {
  37455. source: "./media/characters/sayko/forepaw.svg"
  37456. }
  37457. },
  37458. hindpaw: {
  37459. height: math.unit(8.8, "feet"),
  37460. name: "Hindpaw",
  37461. image: {
  37462. source: "./media/characters/sayko/hindpaw.svg"
  37463. }
  37464. },
  37465. },
  37466. [
  37467. {
  37468. name: "Normal",
  37469. height: math.unit(35, "feet"),
  37470. default: true
  37471. },
  37472. {
  37473. name: "Colossus",
  37474. height: math.unit(100, "meters")
  37475. },
  37476. {
  37477. name: "\"Small\" Deity",
  37478. height: math.unit(1, "km")
  37479. },
  37480. {
  37481. name: "\"Large\" Deity",
  37482. height: math.unit(15, "km")
  37483. },
  37484. ]
  37485. ))
  37486. characterMakers.push(() => makeCharacter(
  37487. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37488. {
  37489. front: {
  37490. height: math.unit(6, "feet"),
  37491. weight: math.unit(250, "lb"),
  37492. name: "Front",
  37493. image: {
  37494. source: "./media/characters/mukiro/front.svg",
  37495. extra: 1368/1310,
  37496. bottom: 34/1402
  37497. }
  37498. },
  37499. },
  37500. [
  37501. {
  37502. name: "Normal",
  37503. height: math.unit(6, "feet"),
  37504. default: true
  37505. },
  37506. ]
  37507. ))
  37508. characterMakers.push(() => makeCharacter(
  37509. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37510. {
  37511. front: {
  37512. height: math.unit(12 + 4/12, "feet"),
  37513. name: "Front",
  37514. image: {
  37515. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37516. extra: 1346/1311,
  37517. bottom: 65/1411
  37518. }
  37519. },
  37520. },
  37521. [
  37522. {
  37523. name: "Base",
  37524. height: math.unit(12 + 4/12, "feet"),
  37525. default: true
  37526. },
  37527. {
  37528. name: "Macro",
  37529. height: math.unit(150, "feet")
  37530. },
  37531. {
  37532. name: "Mega",
  37533. height: math.unit(2, "miles")
  37534. },
  37535. {
  37536. name: "Demi God",
  37537. height: math.unit(4, "AU")
  37538. },
  37539. {
  37540. name: "God Size",
  37541. height: math.unit(1, "universe")
  37542. },
  37543. ]
  37544. ))
  37545. characterMakers.push(() => makeCharacter(
  37546. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37547. {
  37548. front: {
  37549. height: math.unit(3 + 3/12, "feet"),
  37550. weight: math.unit(88, "lb"),
  37551. name: "Front",
  37552. image: {
  37553. source: "./media/characters/trey/front.svg",
  37554. extra: 1815/1509,
  37555. bottom: 60/1875
  37556. }
  37557. },
  37558. },
  37559. [
  37560. {
  37561. name: "Normal",
  37562. height: math.unit(3 + 3/12, "feet"),
  37563. default: true
  37564. },
  37565. ]
  37566. ))
  37567. characterMakers.push(() => makeCharacter(
  37568. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37569. {
  37570. front: {
  37571. height: math.unit(4, "meters"),
  37572. name: "Front",
  37573. image: {
  37574. source: "./media/characters/adelonda/front.svg",
  37575. extra: 1077/982,
  37576. bottom: 39/1116
  37577. }
  37578. },
  37579. back: {
  37580. height: math.unit(4, "meters"),
  37581. name: "Back",
  37582. image: {
  37583. source: "./media/characters/adelonda/back.svg",
  37584. extra: 1105/1003,
  37585. bottom: 25/1130
  37586. }
  37587. },
  37588. },
  37589. [
  37590. {
  37591. name: "Normal",
  37592. height: math.unit(4, "meters"),
  37593. default: true
  37594. },
  37595. ]
  37596. ))
  37597. characterMakers.push(() => makeCharacter(
  37598. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37599. {
  37600. front: {
  37601. height: math.unit(8 + 4/12, "feet"),
  37602. weight: math.unit(670, "lb"),
  37603. name: "Front",
  37604. image: {
  37605. source: "./media/characters/acadiel/front.svg",
  37606. extra: 1901/1595,
  37607. bottom: 142/2043
  37608. }
  37609. },
  37610. },
  37611. [
  37612. {
  37613. name: "Normal",
  37614. height: math.unit(8 + 4/12, "feet"),
  37615. default: true
  37616. },
  37617. {
  37618. name: "Macro",
  37619. height: math.unit(200, "feet")
  37620. },
  37621. ]
  37622. ))
  37623. characterMakers.push(() => makeCharacter(
  37624. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37625. {
  37626. front: {
  37627. height: math.unit(6 + 2/12, "feet"),
  37628. weight: math.unit(185, "lb"),
  37629. name: "Front",
  37630. image: {
  37631. source: "./media/characters/kayne-ein/front.svg",
  37632. extra: 1780/1560,
  37633. bottom: 81/1861
  37634. }
  37635. },
  37636. },
  37637. [
  37638. {
  37639. name: "Normal",
  37640. height: math.unit(6 + 2/12, "feet"),
  37641. default: true
  37642. },
  37643. {
  37644. name: "Transformation Stage",
  37645. height: math.unit(15, "feet")
  37646. },
  37647. {
  37648. name: "Macro",
  37649. height: math.unit(150, "feet")
  37650. },
  37651. {
  37652. name: "Earth's Shadow",
  37653. height: math.unit(6200, "miles")
  37654. },
  37655. {
  37656. name: "Universal Demon",
  37657. height: math.unit(28e9, "parsecs")
  37658. },
  37659. {
  37660. name: "Multiverse God",
  37661. height: math.unit(3, "multiverses")
  37662. },
  37663. ]
  37664. ))
  37665. characterMakers.push(() => makeCharacter(
  37666. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37667. {
  37668. front: {
  37669. height: math.unit(5 + 5/12, "feet"),
  37670. name: "Front",
  37671. image: {
  37672. source: "./media/characters/fawn/front.svg",
  37673. extra: 1873/1731,
  37674. bottom: 95/1968
  37675. }
  37676. },
  37677. back: {
  37678. height: math.unit(5 + 5/12, "feet"),
  37679. name: "Back",
  37680. image: {
  37681. source: "./media/characters/fawn/back.svg",
  37682. extra: 1813/1700,
  37683. bottom: 14/1827
  37684. }
  37685. },
  37686. hoof: {
  37687. height: math.unit(1.45, "feet"),
  37688. name: "Hoof",
  37689. image: {
  37690. source: "./media/characters/fawn/hoof.svg"
  37691. }
  37692. },
  37693. },
  37694. [
  37695. {
  37696. name: "Normal",
  37697. height: math.unit(5 + 5/12, "feet"),
  37698. default: true
  37699. },
  37700. ]
  37701. ))
  37702. characterMakers.push(() => makeCharacter(
  37703. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37704. {
  37705. front: {
  37706. height: math.unit(2 + 5/12, "feet"),
  37707. name: "Front",
  37708. image: {
  37709. source: "./media/characters/orion/front.svg",
  37710. extra: 1366/1304,
  37711. bottom: 43/1409
  37712. }
  37713. },
  37714. paw: {
  37715. height: math.unit(0.52, "feet"),
  37716. name: "Paw",
  37717. image: {
  37718. source: "./media/characters/orion/paw.svg"
  37719. }
  37720. },
  37721. },
  37722. [
  37723. {
  37724. name: "Normal",
  37725. height: math.unit(2 + 5/12, "feet"),
  37726. default: true
  37727. },
  37728. ]
  37729. ))
  37730. characterMakers.push(() => makeCharacter(
  37731. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37732. {
  37733. front: {
  37734. height: math.unit(5 + 10/12, "feet"),
  37735. name: "Front",
  37736. image: {
  37737. source: "./media/characters/vera/front.svg",
  37738. extra: 1680/1575,
  37739. bottom: 49/1729
  37740. }
  37741. },
  37742. back: {
  37743. height: math.unit(5 + 10/12, "feet"),
  37744. name: "Back",
  37745. image: {
  37746. source: "./media/characters/vera/back.svg",
  37747. extra: 1700/1588,
  37748. bottom: 18/1718
  37749. }
  37750. },
  37751. arcanine: {
  37752. height: math.unit(6 + 8/12, "feet"),
  37753. name: "Arcanine",
  37754. image: {
  37755. source: "./media/characters/vera/arcanine.svg",
  37756. extra: 1590/1511,
  37757. bottom: 71/1661
  37758. }
  37759. },
  37760. maw: {
  37761. height: math.unit(0.82, "feet"),
  37762. name: "Maw",
  37763. image: {
  37764. source: "./media/characters/vera/maw.svg"
  37765. }
  37766. },
  37767. mawArcanine: {
  37768. height: math.unit(0.97, "feet"),
  37769. name: "Maw (Arcanine)",
  37770. image: {
  37771. source: "./media/characters/vera/maw-arcanine.svg"
  37772. }
  37773. },
  37774. paw: {
  37775. height: math.unit(0.75, "feet"),
  37776. name: "Paw",
  37777. image: {
  37778. source: "./media/characters/vera/paw.svg"
  37779. }
  37780. },
  37781. pawprint: {
  37782. height: math.unit(0.52, "feet"),
  37783. name: "Pawprint",
  37784. image: {
  37785. source: "./media/characters/vera/pawprint.svg"
  37786. }
  37787. },
  37788. },
  37789. [
  37790. {
  37791. name: "Normal",
  37792. height: math.unit(5 + 10/12, "feet"),
  37793. default: true
  37794. },
  37795. {
  37796. name: "Macro",
  37797. height: math.unit(75, "feet")
  37798. },
  37799. ]
  37800. ))
  37801. characterMakers.push(() => makeCharacter(
  37802. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37803. {
  37804. front: {
  37805. height: math.unit(4, "feet"),
  37806. weight: math.unit(40, "lb"),
  37807. name: "Front",
  37808. image: {
  37809. source: "./media/characters/orvan-rabbit/front.svg",
  37810. extra: 1896/1642,
  37811. bottom: 29/1925
  37812. }
  37813. },
  37814. },
  37815. [
  37816. {
  37817. name: "Normal",
  37818. height: math.unit(4, "feet"),
  37819. default: true
  37820. },
  37821. ]
  37822. ))
  37823. characterMakers.push(() => makeCharacter(
  37824. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37825. {
  37826. front: {
  37827. height: math.unit(6, "feet"),
  37828. weight: math.unit(168, "lb"),
  37829. name: "Front",
  37830. image: {
  37831. source: "./media/characters/lisa/front.svg",
  37832. extra: 2065/1867,
  37833. bottom: 46/2111
  37834. }
  37835. },
  37836. back: {
  37837. height: math.unit(6, "feet"),
  37838. weight: math.unit(168, "lb"),
  37839. name: "Back",
  37840. image: {
  37841. source: "./media/characters/lisa/back.svg",
  37842. extra: 1982/1838,
  37843. bottom: 29/2011
  37844. }
  37845. },
  37846. maw: {
  37847. height: math.unit(0.81, "feet"),
  37848. name: "Maw",
  37849. image: {
  37850. source: "./media/characters/lisa/maw.svg"
  37851. }
  37852. },
  37853. paw: {
  37854. height: math.unit(0.9, "feet"),
  37855. name: "Paw",
  37856. image: {
  37857. source: "./media/characters/lisa/paw.svg"
  37858. }
  37859. },
  37860. caribousune: {
  37861. height: math.unit(7 + 2/12, "feet"),
  37862. weight: math.unit(268, "lb"),
  37863. name: "Caribousune",
  37864. image: {
  37865. source: "./media/characters/lisa/caribousune.svg",
  37866. extra: 1843/1633,
  37867. bottom: 29/1872
  37868. }
  37869. },
  37870. frontCaribousune: {
  37871. height: math.unit(7 + 2/12, "feet"),
  37872. weight: math.unit(268, "lb"),
  37873. name: "Front (Caribousune)",
  37874. image: {
  37875. source: "./media/characters/lisa/front-caribousune.svg",
  37876. extra: 1818/1638,
  37877. bottom: 52/1870
  37878. }
  37879. },
  37880. sideCaribousune: {
  37881. height: math.unit(7 + 2/12, "feet"),
  37882. weight: math.unit(268, "lb"),
  37883. name: "Side (Caribousune)",
  37884. image: {
  37885. source: "./media/characters/lisa/side-caribousune.svg",
  37886. extra: 1851/1635,
  37887. bottom: 16/1867
  37888. }
  37889. },
  37890. backCaribousune: {
  37891. height: math.unit(7 + 2/12, "feet"),
  37892. weight: math.unit(268, "lb"),
  37893. name: "Back (Caribousune)",
  37894. image: {
  37895. source: "./media/characters/lisa/back-caribousune.svg",
  37896. extra: 1801/1604,
  37897. bottom: 44/1845
  37898. }
  37899. },
  37900. caribou: {
  37901. height: math.unit(7 + 2/12, "feet"),
  37902. weight: math.unit(268, "lb"),
  37903. name: "Caribou",
  37904. image: {
  37905. source: "./media/characters/lisa/caribou.svg",
  37906. extra: 1843/1633,
  37907. bottom: 29/1872
  37908. }
  37909. },
  37910. frontCaribou: {
  37911. height: math.unit(7 + 2/12, "feet"),
  37912. weight: math.unit(268, "lb"),
  37913. name: "Front (Caribou)",
  37914. image: {
  37915. source: "./media/characters/lisa/front-caribou.svg",
  37916. extra: 1818/1638,
  37917. bottom: 52/1870
  37918. }
  37919. },
  37920. sideCaribou: {
  37921. height: math.unit(7 + 2/12, "feet"),
  37922. weight: math.unit(268, "lb"),
  37923. name: "Side (Caribou)",
  37924. image: {
  37925. source: "./media/characters/lisa/side-caribou.svg",
  37926. extra: 1851/1635,
  37927. bottom: 16/1867
  37928. }
  37929. },
  37930. backCaribou: {
  37931. height: math.unit(7 + 2/12, "feet"),
  37932. weight: math.unit(268, "lb"),
  37933. name: "Back (Caribou)",
  37934. image: {
  37935. source: "./media/characters/lisa/back-caribou.svg",
  37936. extra: 1801/1604,
  37937. bottom: 44/1845
  37938. }
  37939. },
  37940. mawCaribou: {
  37941. height: math.unit(1.45, "feet"),
  37942. name: "Maw (Caribou)",
  37943. image: {
  37944. source: "./media/characters/lisa/maw-caribou.svg"
  37945. }
  37946. },
  37947. mawCaribousune: {
  37948. height: math.unit(1.45, "feet"),
  37949. name: "Maw (Caribousune)",
  37950. image: {
  37951. source: "./media/characters/lisa/maw-caribousune.svg"
  37952. }
  37953. },
  37954. pawCaribousune: {
  37955. height: math.unit(1.61, "feet"),
  37956. name: "Paw (Caribou)",
  37957. image: {
  37958. source: "./media/characters/lisa/paw-caribousune.svg"
  37959. }
  37960. },
  37961. },
  37962. [
  37963. {
  37964. name: "Normal",
  37965. height: math.unit(6, "feet")
  37966. },
  37967. {
  37968. name: "God Size",
  37969. height: math.unit(72, "feet"),
  37970. default: true
  37971. },
  37972. {
  37973. name: "Towering",
  37974. height: math.unit(288, "feet")
  37975. },
  37976. {
  37977. name: "City Size",
  37978. height: math.unit(48384, "feet")
  37979. },
  37980. {
  37981. name: "Continental",
  37982. height: math.unit(4200, "miles")
  37983. },
  37984. {
  37985. name: "Planet Eater",
  37986. height: math.unit(42, "earths")
  37987. },
  37988. {
  37989. name: "Star Swallower",
  37990. height: math.unit(42, "solarradii")
  37991. },
  37992. {
  37993. name: "System Swallower",
  37994. height: math.unit(84000, "AU")
  37995. },
  37996. {
  37997. name: "Galaxy Gobbler",
  37998. height: math.unit(42, "galaxies")
  37999. },
  38000. {
  38001. name: "Universe Devourer",
  38002. height: math.unit(42, "universes")
  38003. },
  38004. {
  38005. name: "Multiverse Muncher",
  38006. height: math.unit(42, "multiverses")
  38007. },
  38008. ]
  38009. ))
  38010. characterMakers.push(() => makeCharacter(
  38011. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38012. {
  38013. front: {
  38014. height: math.unit(36, "feet"),
  38015. name: "Front",
  38016. image: {
  38017. source: "./media/characters/shadow-rat/front.svg",
  38018. extra: 1845/1758,
  38019. bottom: 83/1928
  38020. }
  38021. },
  38022. },
  38023. [
  38024. {
  38025. name: "Macro",
  38026. height: math.unit(36, "feet"),
  38027. default: true
  38028. },
  38029. ]
  38030. ))
  38031. characterMakers.push(() => makeCharacter(
  38032. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38033. {
  38034. side: {
  38035. height: math.unit(8, "feet"),
  38036. weight: math.unit(2630, "lb"),
  38037. name: "Side",
  38038. image: {
  38039. source: "./media/characters/torallia/side.svg",
  38040. extra: 2164/2021,
  38041. bottom: 371/2535
  38042. }
  38043. },
  38044. },
  38045. [
  38046. {
  38047. name: "Mortal Interaction",
  38048. height: math.unit(8, "feet")
  38049. },
  38050. {
  38051. name: "Natural",
  38052. height: math.unit(24, "feet"),
  38053. default: true
  38054. },
  38055. {
  38056. name: "Giant",
  38057. height: math.unit(80, "feet")
  38058. },
  38059. {
  38060. name: "Kaiju",
  38061. height: math.unit(240, "feet")
  38062. },
  38063. {
  38064. name: "Macro",
  38065. height: math.unit(800, "feet")
  38066. },
  38067. {
  38068. name: "Macro+",
  38069. height: math.unit(2400, "feet")
  38070. },
  38071. {
  38072. name: "Macro++",
  38073. height: math.unit(8000, "feet")
  38074. },
  38075. {
  38076. name: "City-Crushing",
  38077. height: math.unit(24000, "feet")
  38078. },
  38079. {
  38080. name: "Mountain-Mashing",
  38081. height: math.unit(80000, "feet")
  38082. },
  38083. {
  38084. name: "District Demolisher",
  38085. height: math.unit(240000, "feet")
  38086. },
  38087. {
  38088. name: "Tri-County Terror",
  38089. height: math.unit(800000, "feet")
  38090. },
  38091. {
  38092. name: "State Smasher",
  38093. height: math.unit(2.4e6, "feet")
  38094. },
  38095. {
  38096. name: "Nation Nemesis",
  38097. height: math.unit(8e6, "feet")
  38098. },
  38099. {
  38100. name: "Continent Cracker",
  38101. height: math.unit(2.4e7, "feet")
  38102. },
  38103. {
  38104. name: "Planet-Pillaging",
  38105. height: math.unit(8e7, "feet")
  38106. },
  38107. {
  38108. name: "Earth-Eclipsing",
  38109. height: math.unit(2.4e8, "feet")
  38110. },
  38111. {
  38112. name: "Jovian-Jostling",
  38113. height: math.unit(8e8, "feet")
  38114. },
  38115. {
  38116. name: "Gas Giant Gulper",
  38117. height: math.unit(2.4e9, "feet")
  38118. },
  38119. {
  38120. name: "Astral Annihilator",
  38121. height: math.unit(8e9, "feet")
  38122. },
  38123. {
  38124. name: "Celestial Conqueror",
  38125. height: math.unit(2.4e10, "feet")
  38126. },
  38127. {
  38128. name: "Sol-Swallowing",
  38129. height: math.unit(8e10, "feet")
  38130. },
  38131. {
  38132. name: "Hunter of the Heavens",
  38133. height: math.unit(2.4e13, "feet")
  38134. },
  38135. ]
  38136. ))
  38137. characterMakers.push(() => makeCharacter(
  38138. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38139. {
  38140. front: {
  38141. height: math.unit(6 + 8/12, "feet"),
  38142. name: "Front",
  38143. image: {
  38144. source: "./media/characters/rebecca-pawlson/front.svg",
  38145. extra: 1737/1596,
  38146. bottom: 107/1844
  38147. }
  38148. },
  38149. back: {
  38150. height: math.unit(6 + 8/12, "feet"),
  38151. name: "Back",
  38152. image: {
  38153. source: "./media/characters/rebecca-pawlson/back.svg",
  38154. extra: 1702/1523,
  38155. bottom: 86/1788
  38156. }
  38157. },
  38158. },
  38159. [
  38160. {
  38161. name: "Normal",
  38162. height: math.unit(6 + 8/12, "feet")
  38163. },
  38164. {
  38165. name: "Mini Macro",
  38166. height: math.unit(10, "feet"),
  38167. default: true
  38168. },
  38169. {
  38170. name: "Macro",
  38171. height: math.unit(100, "feet")
  38172. },
  38173. {
  38174. name: "Mega Macro",
  38175. height: math.unit(2500, "feet")
  38176. },
  38177. {
  38178. name: "Giga Macro",
  38179. height: math.unit(50, "miles")
  38180. },
  38181. ]
  38182. ))
  38183. characterMakers.push(() => makeCharacter(
  38184. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38185. {
  38186. front: {
  38187. height: math.unit(7 + 6/12, "feet"),
  38188. weight: math.unit(600, "lb"),
  38189. name: "Front",
  38190. image: {
  38191. source: "./media/characters/moxie-nova/front.svg",
  38192. extra: 1734/1652,
  38193. bottom: 41/1775
  38194. }
  38195. },
  38196. },
  38197. [
  38198. {
  38199. name: "Normal",
  38200. height: math.unit(7 + 6/12, "feet"),
  38201. default: true
  38202. },
  38203. ]
  38204. ))
  38205. characterMakers.push(() => makeCharacter(
  38206. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38207. {
  38208. goat: {
  38209. height: math.unit(4, "feet"),
  38210. weight: math.unit(180, "lb"),
  38211. name: "Goat",
  38212. image: {
  38213. source: "./media/characters/tiffany/goat.svg",
  38214. extra: 1845/1595,
  38215. bottom: 106/1951
  38216. }
  38217. },
  38218. front: {
  38219. height: math.unit(5, "feet"),
  38220. weight: math.unit(150, "lb"),
  38221. name: "Foxcoon",
  38222. image: {
  38223. source: "./media/characters/tiffany/foxcoon.svg",
  38224. extra: 1941/1845,
  38225. bottom: 58/1999
  38226. }
  38227. },
  38228. },
  38229. [
  38230. {
  38231. name: "Normal",
  38232. height: math.unit(5, "feet"),
  38233. default: true
  38234. },
  38235. ]
  38236. ))
  38237. characterMakers.push(() => makeCharacter(
  38238. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38239. {
  38240. front: {
  38241. height: math.unit(8, "feet"),
  38242. weight: math.unit(300, "lb"),
  38243. name: "Front",
  38244. image: {
  38245. source: "./media/characters/raxinath/front.svg",
  38246. extra: 1407/1309,
  38247. bottom: 39/1446
  38248. }
  38249. },
  38250. back: {
  38251. height: math.unit(8, "feet"),
  38252. weight: math.unit(300, "lb"),
  38253. name: "Back",
  38254. image: {
  38255. source: "./media/characters/raxinath/back.svg",
  38256. extra: 1405/1315,
  38257. bottom: 9/1414
  38258. }
  38259. },
  38260. },
  38261. [
  38262. {
  38263. name: "Speck",
  38264. height: math.unit(0.5, "nm")
  38265. },
  38266. {
  38267. name: "Micro",
  38268. height: math.unit(3, "inches")
  38269. },
  38270. {
  38271. name: "Kobold",
  38272. height: math.unit(3, "feet")
  38273. },
  38274. {
  38275. name: "Normal",
  38276. height: math.unit(8, "feet"),
  38277. default: true
  38278. },
  38279. {
  38280. name: "Giant",
  38281. height: math.unit(50, "feet")
  38282. },
  38283. {
  38284. name: "Macro",
  38285. height: math.unit(1000, "feet")
  38286. },
  38287. {
  38288. name: "Megamacro",
  38289. height: math.unit(1, "mile")
  38290. },
  38291. ]
  38292. ))
  38293. characterMakers.push(() => makeCharacter(
  38294. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38295. {
  38296. front: {
  38297. height: math.unit(10, "feet"),
  38298. weight: math.unit(1442, "lb"),
  38299. name: "Front",
  38300. image: {
  38301. source: "./media/characters/mal-dragon/front.svg",
  38302. extra: 1515/1444,
  38303. bottom: 113/1628
  38304. }
  38305. },
  38306. back: {
  38307. height: math.unit(10, "feet"),
  38308. weight: math.unit(1442, "lb"),
  38309. name: "Back",
  38310. image: {
  38311. source: "./media/characters/mal-dragon/back.svg",
  38312. extra: 1527/1434,
  38313. bottom: 25/1552
  38314. }
  38315. },
  38316. },
  38317. [
  38318. {
  38319. name: "Mortal Interaction",
  38320. height: math.unit(10, "feet"),
  38321. default: true
  38322. },
  38323. {
  38324. name: "Large",
  38325. height: math.unit(30, "feet")
  38326. },
  38327. {
  38328. name: "Kaiju",
  38329. height: math.unit(300, "feet")
  38330. },
  38331. {
  38332. name: "Megamacro",
  38333. height: math.unit(10000, "feet")
  38334. },
  38335. {
  38336. name: "Continent Cracker",
  38337. height: math.unit(30000000, "feet")
  38338. },
  38339. {
  38340. name: "Sol-Swallowing",
  38341. height: math.unit(1e11, "feet")
  38342. },
  38343. {
  38344. name: "Light Universal",
  38345. height: math.unit(5, "universes")
  38346. },
  38347. {
  38348. name: "Universe Atoms",
  38349. height: math.unit(1.829e9, "universes")
  38350. },
  38351. {
  38352. name: "Light Multiversal",
  38353. height: math.unit(5, "multiverses")
  38354. },
  38355. {
  38356. name: "Multiverse Atoms",
  38357. height: math.unit(1.829e9, "multiverses")
  38358. },
  38359. {
  38360. name: "Fabric of Time",
  38361. height: math.unit(1e262, "multiverses")
  38362. },
  38363. ]
  38364. ))
  38365. characterMakers.push(() => makeCharacter(
  38366. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38367. {
  38368. front: {
  38369. height: math.unit(9, "feet"),
  38370. weight: math.unit(1050, "lb"),
  38371. name: "Front",
  38372. image: {
  38373. source: "./media/characters/tabitha/front.svg",
  38374. extra: 2083/1994,
  38375. bottom: 68/2151
  38376. }
  38377. },
  38378. },
  38379. [
  38380. {
  38381. name: "Baseline",
  38382. height: math.unit(9, "feet"),
  38383. default: true
  38384. },
  38385. {
  38386. name: "Giant",
  38387. height: math.unit(90, "feet")
  38388. },
  38389. {
  38390. name: "Macro",
  38391. height: math.unit(900, "feet")
  38392. },
  38393. {
  38394. name: "Megamacro",
  38395. height: math.unit(9000, "feet")
  38396. },
  38397. {
  38398. name: "City-Crushing",
  38399. height: math.unit(27000, "feet")
  38400. },
  38401. {
  38402. name: "Mountain-Mashing",
  38403. height: math.unit(90000, "feet")
  38404. },
  38405. {
  38406. name: "Nation Nemesis",
  38407. height: math.unit(9e6, "feet")
  38408. },
  38409. {
  38410. name: "Continent Cracker",
  38411. height: math.unit(27e6, "feet")
  38412. },
  38413. {
  38414. name: "Earth-Eclipsing",
  38415. height: math.unit(2.7e8, "feet")
  38416. },
  38417. {
  38418. name: "Gas Giant Gulper",
  38419. height: math.unit(2.7e9, "feet")
  38420. },
  38421. {
  38422. name: "Sol-Swallowing",
  38423. height: math.unit(9e10, "feet")
  38424. },
  38425. {
  38426. name: "Galaxy Gulper",
  38427. height: math.unit(9, "galaxies")
  38428. },
  38429. {
  38430. name: "Cosmos Churner",
  38431. height: math.unit(9, "universes")
  38432. },
  38433. ]
  38434. ))
  38435. characterMakers.push(() => makeCharacter(
  38436. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38437. {
  38438. front: {
  38439. height: math.unit(160, "cm"),
  38440. weight: math.unit(55, "kg"),
  38441. name: "Front",
  38442. image: {
  38443. source: "./media/characters/tow/front.svg",
  38444. extra: 1751/1722,
  38445. bottom: 74/1825
  38446. }
  38447. },
  38448. },
  38449. [
  38450. {
  38451. name: "Norm",
  38452. height: math.unit(160, "cm")
  38453. },
  38454. {
  38455. name: "Casual",
  38456. height: math.unit(3200, "m"),
  38457. default: true
  38458. },
  38459. {
  38460. name: "Show-Off",
  38461. height: math.unit(160, "km")
  38462. },
  38463. ]
  38464. ))
  38465. characterMakers.push(() => makeCharacter(
  38466. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38467. {
  38468. front: {
  38469. height: math.unit(7 + 11/12, "feet"),
  38470. weight: math.unit(342.8, "lb"),
  38471. name: "Front",
  38472. image: {
  38473. source: "./media/characters/vivian-orca-dragon/front.svg",
  38474. extra: 1890/1865,
  38475. bottom: 28/1918
  38476. }
  38477. },
  38478. },
  38479. [
  38480. {
  38481. name: "Micro",
  38482. height: math.unit(5, "inches")
  38483. },
  38484. {
  38485. name: "Normal",
  38486. height: math.unit(7 + 11/12, "feet"),
  38487. default: true
  38488. },
  38489. {
  38490. name: "Macro",
  38491. height: math.unit(395 + 7/12, "feet")
  38492. },
  38493. ]
  38494. ))
  38495. characterMakers.push(() => makeCharacter(
  38496. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38497. {
  38498. side: {
  38499. height: math.unit(10, "feet"),
  38500. weight: math.unit(1442, "lb"),
  38501. name: "Side",
  38502. image: {
  38503. source: "./media/characters/lotherakon/side.svg",
  38504. extra: 1604/1497,
  38505. bottom: 89/1693
  38506. }
  38507. },
  38508. },
  38509. [
  38510. {
  38511. name: "Mortal Interaction",
  38512. height: math.unit(10, "feet")
  38513. },
  38514. {
  38515. name: "Large",
  38516. height: math.unit(30, "feet"),
  38517. default: true
  38518. },
  38519. {
  38520. name: "Giant",
  38521. height: math.unit(100, "feet")
  38522. },
  38523. {
  38524. name: "Kaiju",
  38525. height: math.unit(300, "feet")
  38526. },
  38527. {
  38528. name: "Macro",
  38529. height: math.unit(1000, "feet")
  38530. },
  38531. {
  38532. name: "Macro+",
  38533. height: math.unit(3000, "feet")
  38534. },
  38535. {
  38536. name: "Megamacro",
  38537. height: math.unit(10000, "feet")
  38538. },
  38539. {
  38540. name: "City-Crushing",
  38541. height: math.unit(30000, "feet")
  38542. },
  38543. {
  38544. name: "Continent Cracker",
  38545. height: math.unit(30e6, "feet")
  38546. },
  38547. {
  38548. name: "Earth Eclipsing",
  38549. height: math.unit(3e8, "feet")
  38550. },
  38551. {
  38552. name: "Gas Giant Gulper",
  38553. height: math.unit(3e9, "feet")
  38554. },
  38555. {
  38556. name: "Sol-Swallowing",
  38557. height: math.unit(1e11, "feet")
  38558. },
  38559. {
  38560. name: "System Swallower",
  38561. height: math.unit(3e14, "feet")
  38562. },
  38563. {
  38564. name: "Galaxy Gulper",
  38565. height: math.unit(10, "galaxies")
  38566. },
  38567. {
  38568. name: "Light Universal",
  38569. height: math.unit(5, "universes")
  38570. },
  38571. {
  38572. name: "Universe Palm",
  38573. height: math.unit(20, "universes")
  38574. },
  38575. {
  38576. name: "Light Multiversal",
  38577. height: math.unit(5, "multiverses")
  38578. },
  38579. {
  38580. name: "Multiverse Palm",
  38581. height: math.unit(20, "multiverses")
  38582. },
  38583. {
  38584. name: "Inferno Incarnate",
  38585. height: math.unit(1e7, "multiverses")
  38586. },
  38587. ]
  38588. ))
  38589. characterMakers.push(() => makeCharacter(
  38590. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38591. {
  38592. front: {
  38593. height: math.unit(8, "feet"),
  38594. weight: math.unit(1200, "lb"),
  38595. name: "Front",
  38596. image: {
  38597. source: "./media/characters/malithee/front.svg",
  38598. extra: 1675/1640,
  38599. bottom: 162/1837
  38600. }
  38601. },
  38602. },
  38603. [
  38604. {
  38605. name: "Mortal Interaction",
  38606. height: math.unit(8, "feet"),
  38607. default: true
  38608. },
  38609. {
  38610. name: "Large",
  38611. height: math.unit(24, "feet")
  38612. },
  38613. {
  38614. name: "Kaiju",
  38615. height: math.unit(240, "feet")
  38616. },
  38617. {
  38618. name: "Megamacro",
  38619. height: math.unit(8000, "feet")
  38620. },
  38621. {
  38622. name: "Continent Cracker",
  38623. height: math.unit(24e6, "feet")
  38624. },
  38625. {
  38626. name: "Earth-Eclipsing",
  38627. height: math.unit(2.4e8, "feet")
  38628. },
  38629. {
  38630. name: "Sol-Swallowing",
  38631. height: math.unit(8e10, "feet")
  38632. },
  38633. {
  38634. name: "Galaxy Gulper",
  38635. height: math.unit(8, "galaxies")
  38636. },
  38637. {
  38638. name: "Light Universal",
  38639. height: math.unit(4, "universes")
  38640. },
  38641. {
  38642. name: "Universe Atoms",
  38643. height: math.unit(1.829e9, "universes")
  38644. },
  38645. {
  38646. name: "Light Multiversal",
  38647. height: math.unit(4, "multiverses")
  38648. },
  38649. {
  38650. name: "Multiverse Atoms",
  38651. height: math.unit(1.829e9, "multiverses")
  38652. },
  38653. {
  38654. name: "Nigh-Omnipresence",
  38655. height: math.unit(8e261, "multiverses")
  38656. },
  38657. ]
  38658. ))
  38659. characterMakers.push(() => makeCharacter(
  38660. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38661. {
  38662. front: {
  38663. height: math.unit(10, "feet"),
  38664. weight: math.unit(1500, "lb"),
  38665. name: "Front",
  38666. image: {
  38667. source: "./media/characters/miles-thestia/front.svg",
  38668. extra: 1812/1727,
  38669. bottom: 86/1898
  38670. }
  38671. },
  38672. back: {
  38673. height: math.unit(10, "feet"),
  38674. weight: math.unit(1500, "lb"),
  38675. name: "Back",
  38676. image: {
  38677. source: "./media/characters/miles-thestia/back.svg",
  38678. extra: 1799/1690,
  38679. bottom: 47/1846
  38680. }
  38681. },
  38682. frontNsfw: {
  38683. height: math.unit(10, "feet"),
  38684. weight: math.unit(1500, "lb"),
  38685. name: "Front (NSFW)",
  38686. image: {
  38687. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38688. extra: 1812/1727,
  38689. bottom: 86/1898
  38690. }
  38691. },
  38692. },
  38693. [
  38694. {
  38695. name: "Mini-Macro",
  38696. height: math.unit(10, "feet"),
  38697. default: true
  38698. },
  38699. ]
  38700. ))
  38701. characterMakers.push(() => makeCharacter(
  38702. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38703. {
  38704. front: {
  38705. height: math.unit(25, "feet"),
  38706. name: "Front",
  38707. image: {
  38708. source: "./media/characters/titan-s-wulf/front.svg",
  38709. extra: 1560/1484,
  38710. bottom: 76/1636
  38711. }
  38712. },
  38713. },
  38714. [
  38715. {
  38716. name: "Smallest",
  38717. height: math.unit(25, "feet"),
  38718. default: true
  38719. },
  38720. {
  38721. name: "Normal",
  38722. height: math.unit(200, "feet")
  38723. },
  38724. {
  38725. name: "Macro",
  38726. height: math.unit(200000, "feet")
  38727. },
  38728. {
  38729. name: "Multiversal Original",
  38730. height: math.unit(10000, "multiverses")
  38731. },
  38732. ]
  38733. ))
  38734. characterMakers.push(() => makeCharacter(
  38735. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38736. {
  38737. front: {
  38738. height: math.unit(8, "feet"),
  38739. weight: math.unit(553, "lb"),
  38740. name: "Front",
  38741. image: {
  38742. source: "./media/characters/tawendeh/front.svg",
  38743. extra: 2365/2268,
  38744. bottom: 83/2448
  38745. }
  38746. },
  38747. frontClothed: {
  38748. height: math.unit(8, "feet"),
  38749. weight: math.unit(553, "lb"),
  38750. name: "Front (Clothed)",
  38751. image: {
  38752. source: "./media/characters/tawendeh/front-clothed.svg",
  38753. extra: 2365/2268,
  38754. bottom: 83/2448
  38755. }
  38756. },
  38757. back: {
  38758. height: math.unit(8, "feet"),
  38759. weight: math.unit(553, "lb"),
  38760. name: "Back",
  38761. image: {
  38762. source: "./media/characters/tawendeh/back.svg",
  38763. extra: 2397/2294,
  38764. bottom: 42/2439
  38765. }
  38766. },
  38767. },
  38768. [
  38769. {
  38770. name: "Mortal Interaction",
  38771. height: math.unit(8, "feet"),
  38772. default: true
  38773. },
  38774. {
  38775. name: "Giant",
  38776. height: math.unit(80, "feet")
  38777. },
  38778. {
  38779. name: "Macro",
  38780. height: math.unit(800, "feet")
  38781. },
  38782. {
  38783. name: "Megamacro",
  38784. height: math.unit(8000, "feet")
  38785. },
  38786. {
  38787. name: "City-Crushing",
  38788. height: math.unit(24000, "feet")
  38789. },
  38790. {
  38791. name: "Mountain-Mashing",
  38792. height: math.unit(80000, "feet")
  38793. },
  38794. {
  38795. name: "Nation Nemesis",
  38796. height: math.unit(8e6, "feet")
  38797. },
  38798. {
  38799. name: "Continent Cracker",
  38800. height: math.unit(24e6, "feet")
  38801. },
  38802. {
  38803. name: "Earth-Eclipsing",
  38804. height: math.unit(2.4e8, "feet")
  38805. },
  38806. {
  38807. name: "Gas Giant Gulper",
  38808. height: math.unit(2.4e9, "feet")
  38809. },
  38810. {
  38811. name: "Sol-Swallowing",
  38812. height: math.unit(8e10, "feet")
  38813. },
  38814. {
  38815. name: "Galaxy Gulper",
  38816. height: math.unit(8, "galaxies")
  38817. },
  38818. {
  38819. name: "Cosmos Churner",
  38820. height: math.unit(8, "universes")
  38821. },
  38822. {
  38823. name: "Omnipotent Otter",
  38824. height: math.unit(80, "universes")
  38825. },
  38826. ]
  38827. ))
  38828. characterMakers.push(() => makeCharacter(
  38829. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38830. {
  38831. front: {
  38832. height: math.unit(2.6, "meters"),
  38833. weight: math.unit(900, "kg"),
  38834. name: "Front",
  38835. image: {
  38836. source: "./media/characters/neesha/front.svg",
  38837. extra: 1803/1653,
  38838. bottom: 128/1931
  38839. }
  38840. },
  38841. },
  38842. [
  38843. {
  38844. name: "Normal",
  38845. height: math.unit(2.6, "meters"),
  38846. default: true
  38847. },
  38848. {
  38849. name: "Macro",
  38850. height: math.unit(50, "meters")
  38851. },
  38852. ]
  38853. ))
  38854. characterMakers.push(() => makeCharacter(
  38855. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38856. {
  38857. front: {
  38858. height: math.unit(5, "feet"),
  38859. weight: math.unit(185, "lb"),
  38860. name: "Front",
  38861. image: {
  38862. source: "./media/characters/kyera/front.svg",
  38863. extra: 1875/1790,
  38864. bottom: 96/1971
  38865. }
  38866. },
  38867. },
  38868. [
  38869. {
  38870. name: "Normal",
  38871. height: math.unit(5, "feet"),
  38872. default: true
  38873. },
  38874. ]
  38875. ))
  38876. characterMakers.push(() => makeCharacter(
  38877. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38878. {
  38879. front: {
  38880. height: math.unit(7 + 6/12, "feet"),
  38881. weight: math.unit(540, "lb"),
  38882. name: "Front",
  38883. image: {
  38884. source: "./media/characters/yuko/front.svg",
  38885. extra: 1282/1222,
  38886. bottom: 101/1383
  38887. }
  38888. },
  38889. frontClothed: {
  38890. height: math.unit(7 + 6/12, "feet"),
  38891. weight: math.unit(540, "lb"),
  38892. name: "Front (Clothed)",
  38893. image: {
  38894. source: "./media/characters/yuko/front-clothed.svg",
  38895. extra: 1282/1222,
  38896. bottom: 101/1383
  38897. }
  38898. },
  38899. },
  38900. [
  38901. {
  38902. name: "Normal",
  38903. height: math.unit(7 + 6/12, "feet"),
  38904. default: true
  38905. },
  38906. {
  38907. name: "Macro",
  38908. height: math.unit(26 + 9/12, "feet")
  38909. },
  38910. {
  38911. name: "Megamacro",
  38912. height: math.unit(300, "feet")
  38913. },
  38914. {
  38915. name: "Gigamacro",
  38916. height: math.unit(5000, "feet")
  38917. },
  38918. {
  38919. name: "Planetary",
  38920. height: math.unit(10000, "miles")
  38921. },
  38922. ]
  38923. ))
  38924. characterMakers.push(() => makeCharacter(
  38925. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38926. {
  38927. front: {
  38928. height: math.unit(8 + 2/12, "feet"),
  38929. weight: math.unit(600, "lb"),
  38930. name: "Front",
  38931. image: {
  38932. source: "./media/characters/deam-nitrel/front.svg",
  38933. extra: 1308/1234,
  38934. bottom: 125/1433
  38935. }
  38936. },
  38937. },
  38938. [
  38939. {
  38940. name: "Normal",
  38941. height: math.unit(8 + 2/12, "feet"),
  38942. default: true
  38943. },
  38944. ]
  38945. ))
  38946. characterMakers.push(() => makeCharacter(
  38947. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38948. {
  38949. front: {
  38950. height: math.unit(6.1, "feet"),
  38951. weight: math.unit(180, "lb"),
  38952. name: "Front",
  38953. image: {
  38954. source: "./media/characters/skyress/front.svg",
  38955. extra: 1045/915,
  38956. bottom: 28/1073
  38957. }
  38958. },
  38959. maw: {
  38960. height: math.unit(1, "feet"),
  38961. name: "Maw",
  38962. image: {
  38963. source: "./media/characters/skyress/maw.svg"
  38964. }
  38965. },
  38966. },
  38967. [
  38968. {
  38969. name: "Normal",
  38970. height: math.unit(6.1, "feet"),
  38971. default: true
  38972. },
  38973. {
  38974. name: "Macro",
  38975. height: math.unit(200, "feet")
  38976. },
  38977. ]
  38978. ))
  38979. characterMakers.push(() => makeCharacter(
  38980. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38981. {
  38982. front: {
  38983. height: math.unit(4 + 2/12, "feet"),
  38984. weight: math.unit(40, "kg"),
  38985. name: "Front",
  38986. image: {
  38987. source: "./media/characters/amethyst-jones/front.svg",
  38988. extra: 1220/1150,
  38989. bottom: 101/1321
  38990. }
  38991. },
  38992. },
  38993. [
  38994. {
  38995. name: "Normal",
  38996. height: math.unit(4 + 2/12, "feet"),
  38997. default: true
  38998. },
  38999. ]
  39000. ))
  39001. characterMakers.push(() => makeCharacter(
  39002. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39003. {
  39004. front: {
  39005. height: math.unit(1.7, "m"),
  39006. weight: math.unit(135, "lb"),
  39007. name: "Front",
  39008. image: {
  39009. source: "./media/characters/jade/front.svg",
  39010. extra: 1818/1767,
  39011. bottom: 32/1850
  39012. }
  39013. },
  39014. back: {
  39015. height: math.unit(1.7, "m"),
  39016. weight: math.unit(135, "lb"),
  39017. name: "Back",
  39018. image: {
  39019. source: "./media/characters/jade/back.svg",
  39020. extra: 1869/1809,
  39021. bottom: 35/1904
  39022. }
  39023. },
  39024. hand: {
  39025. height: math.unit(0.24, "m"),
  39026. name: "Hand",
  39027. image: {
  39028. source: "./media/characters/jade/hand.svg"
  39029. }
  39030. },
  39031. foot: {
  39032. height: math.unit(0.263, "m"),
  39033. name: "Foot",
  39034. image: {
  39035. source: "./media/characters/jade/foot.svg"
  39036. }
  39037. },
  39038. dick: {
  39039. height: math.unit(0.47, "m"),
  39040. name: "Dick",
  39041. image: {
  39042. source: "./media/characters/jade/dick.svg"
  39043. }
  39044. },
  39045. },
  39046. [
  39047. {
  39048. name: "Micro",
  39049. height: math.unit(22, "cm")
  39050. },
  39051. {
  39052. name: "Normal",
  39053. height: math.unit(1.7, "m"),
  39054. default: true
  39055. },
  39056. {
  39057. name: "Macro",
  39058. height: math.unit(152, "m")
  39059. },
  39060. ]
  39061. ))
  39062. characterMakers.push(() => makeCharacter(
  39063. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39064. {
  39065. front: {
  39066. height: math.unit(100, "miles"),
  39067. weight: math.unit(20000, "tons"),
  39068. name: "Front",
  39069. image: {
  39070. source: "./media/characters/cookie/front.svg",
  39071. extra: 1125/1070,
  39072. bottom: 30/1155
  39073. }
  39074. },
  39075. },
  39076. [
  39077. {
  39078. name: "Big",
  39079. height: math.unit(50, "feet")
  39080. },
  39081. {
  39082. name: "Macro",
  39083. height: math.unit(100, "miles"),
  39084. default: true
  39085. },
  39086. {
  39087. name: "Megamacro",
  39088. height: math.unit(90000, "miles")
  39089. },
  39090. ]
  39091. ))
  39092. characterMakers.push(() => makeCharacter(
  39093. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39094. {
  39095. front: {
  39096. height: math.unit(6, "feet"),
  39097. weight: math.unit(145, "lb"),
  39098. name: "Front",
  39099. image: {
  39100. source: "./media/characters/farzian/front.svg",
  39101. extra: 1902/1693,
  39102. bottom: 108/2010
  39103. }
  39104. },
  39105. },
  39106. [
  39107. {
  39108. name: "Macro",
  39109. height: math.unit(500, "feet"),
  39110. default: true
  39111. },
  39112. ]
  39113. ))
  39114. characterMakers.push(() => makeCharacter(
  39115. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39116. {
  39117. front: {
  39118. height: math.unit(3 + 6/12, "feet"),
  39119. weight: math.unit(50, "lb"),
  39120. name: "Front",
  39121. image: {
  39122. source: "./media/characters/kimberly-tilson/front.svg",
  39123. extra: 1400/1322,
  39124. bottom: 36/1436
  39125. }
  39126. },
  39127. back: {
  39128. height: math.unit(3 + 6/12, "feet"),
  39129. weight: math.unit(50, "lb"),
  39130. name: "Back",
  39131. image: {
  39132. source: "./media/characters/kimberly-tilson/back.svg",
  39133. extra: 1370/1307,
  39134. bottom: 20/1390
  39135. }
  39136. },
  39137. },
  39138. [
  39139. {
  39140. name: "Normal",
  39141. height: math.unit(3 + 6/12, "feet"),
  39142. default: true
  39143. },
  39144. ]
  39145. ))
  39146. characterMakers.push(() => makeCharacter(
  39147. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39148. {
  39149. front: {
  39150. height: math.unit(1148, "feet"),
  39151. weight: math.unit(34057, "lb"),
  39152. name: "Front",
  39153. image: {
  39154. source: "./media/characters/harthos/front.svg",
  39155. extra: 1391/1339,
  39156. bottom: 13/1404
  39157. }
  39158. },
  39159. },
  39160. [
  39161. {
  39162. name: "Macro",
  39163. height: math.unit(1148, "feet"),
  39164. default: true
  39165. },
  39166. ]
  39167. ))
  39168. characterMakers.push(() => makeCharacter(
  39169. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39170. {
  39171. front: {
  39172. height: math.unit(15, "feet"),
  39173. name: "Front",
  39174. image: {
  39175. source: "./media/characters/hypatia/front.svg",
  39176. extra: 1653/1591,
  39177. bottom: 79/1732
  39178. }
  39179. },
  39180. },
  39181. [
  39182. {
  39183. name: "Normal",
  39184. height: math.unit(15, "feet")
  39185. },
  39186. {
  39187. name: "Small",
  39188. height: math.unit(300, "feet")
  39189. },
  39190. {
  39191. name: "Macro",
  39192. height: math.unit(2500, "feet"),
  39193. default: true
  39194. },
  39195. {
  39196. name: "Mega Macro",
  39197. height: math.unit(1500, "miles")
  39198. },
  39199. {
  39200. name: "Giga Macro",
  39201. height: math.unit(1.5e6, "miles")
  39202. },
  39203. ]
  39204. ))
  39205. characterMakers.push(() => makeCharacter(
  39206. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39207. {
  39208. front: {
  39209. height: math.unit(6, "feet"),
  39210. weight: math.unit(200, "lb"),
  39211. name: "Front",
  39212. image: {
  39213. source: "./media/characters/wulver/front.svg",
  39214. extra: 1724/1632,
  39215. bottom: 130/1854
  39216. }
  39217. },
  39218. frontNsfw: {
  39219. height: math.unit(6, "feet"),
  39220. weight: math.unit(200, "lb"),
  39221. name: "Front (NSFW)",
  39222. image: {
  39223. source: "./media/characters/wulver/front-nsfw.svg",
  39224. extra: 1724/1632,
  39225. bottom: 130/1854
  39226. }
  39227. },
  39228. },
  39229. [
  39230. {
  39231. name: "Human-Sized",
  39232. height: math.unit(6, "feet")
  39233. },
  39234. {
  39235. name: "Normal",
  39236. height: math.unit(4, "meters"),
  39237. default: true
  39238. },
  39239. {
  39240. name: "Large",
  39241. height: math.unit(6, "m")
  39242. },
  39243. ]
  39244. ))
  39245. characterMakers.push(() => makeCharacter(
  39246. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39247. {
  39248. front: {
  39249. height: math.unit(7, "feet"),
  39250. name: "Front",
  39251. image: {
  39252. source: "./media/characters/maru/front.svg",
  39253. extra: 1595/1570,
  39254. bottom: 0/1595
  39255. }
  39256. },
  39257. },
  39258. [
  39259. {
  39260. name: "Normal",
  39261. height: math.unit(7, "feet"),
  39262. default: true
  39263. },
  39264. {
  39265. name: "Macro",
  39266. height: math.unit(700, "feet")
  39267. },
  39268. {
  39269. name: "Mega Macro",
  39270. height: math.unit(25, "miles")
  39271. },
  39272. ]
  39273. ))
  39274. characterMakers.push(() => makeCharacter(
  39275. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39276. {
  39277. front: {
  39278. height: math.unit(6, "feet"),
  39279. weight: math.unit(170, "lb"),
  39280. name: "Front",
  39281. image: {
  39282. source: "./media/characters/xenon/front.svg",
  39283. extra: 1376/1305,
  39284. bottom: 56/1432
  39285. }
  39286. },
  39287. back: {
  39288. height: math.unit(6, "feet"),
  39289. weight: math.unit(170, "lb"),
  39290. name: "Back",
  39291. image: {
  39292. source: "./media/characters/xenon/back.svg",
  39293. extra: 1328/1259,
  39294. bottom: 95/1423
  39295. }
  39296. },
  39297. maw: {
  39298. height: math.unit(0.52, "feet"),
  39299. name: "Maw",
  39300. image: {
  39301. source: "./media/characters/xenon/maw.svg"
  39302. }
  39303. },
  39304. hand: {
  39305. height: math.unit(0.82, "feet"),
  39306. name: "Hand",
  39307. image: {
  39308. source: "./media/characters/xenon/hand.svg"
  39309. }
  39310. },
  39311. foot: {
  39312. height: math.unit(1.13, "feet"),
  39313. name: "Foot",
  39314. image: {
  39315. source: "./media/characters/xenon/foot.svg"
  39316. }
  39317. },
  39318. },
  39319. [
  39320. {
  39321. name: "Micro",
  39322. height: math.unit(0.8, "inches")
  39323. },
  39324. {
  39325. name: "Normal",
  39326. height: math.unit(6, "feet")
  39327. },
  39328. {
  39329. name: "Macro",
  39330. height: math.unit(50, "feet"),
  39331. default: true
  39332. },
  39333. {
  39334. name: "Macro+",
  39335. height: math.unit(250, "feet")
  39336. },
  39337. {
  39338. name: "Megamacro",
  39339. height: math.unit(1500, "feet")
  39340. },
  39341. ]
  39342. ))
  39343. characterMakers.push(() => makeCharacter(
  39344. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39345. {
  39346. front: {
  39347. height: math.unit(7 + 5/12, "feet"),
  39348. name: "Front",
  39349. image: {
  39350. source: "./media/characters/zane/front.svg",
  39351. extra: 1260/1203,
  39352. bottom: 94/1354
  39353. }
  39354. },
  39355. back: {
  39356. height: math.unit(5.05, "feet"),
  39357. name: "Back",
  39358. image: {
  39359. source: "./media/characters/zane/back.svg",
  39360. extra: 893/829,
  39361. bottom: 30/923
  39362. }
  39363. },
  39364. werewolf: {
  39365. height: math.unit(11, "feet"),
  39366. name: "Werewolf",
  39367. image: {
  39368. source: "./media/characters/zane/werewolf.svg",
  39369. extra: 1383/1323,
  39370. bottom: 89/1472
  39371. }
  39372. },
  39373. foot: {
  39374. height: math.unit(1.46, "feet"),
  39375. name: "Foot",
  39376. image: {
  39377. source: "./media/characters/zane/foot.svg"
  39378. }
  39379. },
  39380. footFront: {
  39381. height: math.unit(0.784, "feet"),
  39382. name: "Foot (Front)",
  39383. image: {
  39384. source: "./media/characters/zane/foot-front.svg"
  39385. }
  39386. },
  39387. dick: {
  39388. height: math.unit(1.95, "feet"),
  39389. name: "Dick",
  39390. image: {
  39391. source: "./media/characters/zane/dick.svg"
  39392. }
  39393. },
  39394. dickWerewolf: {
  39395. height: math.unit(3.77, "feet"),
  39396. name: "Dick (Werewolf)",
  39397. image: {
  39398. source: "./media/characters/zane/dick.svg"
  39399. }
  39400. },
  39401. },
  39402. [
  39403. {
  39404. name: "Normal",
  39405. height: math.unit(7 + 5/12, "feet"),
  39406. default: true
  39407. },
  39408. ]
  39409. ))
  39410. characterMakers.push(() => makeCharacter(
  39411. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39412. {
  39413. front: {
  39414. height: math.unit(6 + 2/12, "feet"),
  39415. weight: math.unit(284, "lb"),
  39416. name: "Front",
  39417. image: {
  39418. source: "./media/characters/benni-desparque/front.svg",
  39419. extra: 1353/1126,
  39420. bottom: 69/1422
  39421. }
  39422. },
  39423. },
  39424. [
  39425. {
  39426. name: "Civilian",
  39427. height: math.unit(6 + 2/12, "feet")
  39428. },
  39429. {
  39430. name: "Normal",
  39431. height: math.unit(98, "feet"),
  39432. default: true
  39433. },
  39434. {
  39435. name: "Kaiju Fighter",
  39436. height: math.unit(268, "feet")
  39437. },
  39438. ]
  39439. ))
  39440. characterMakers.push(() => makeCharacter(
  39441. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39442. {
  39443. front: {
  39444. height: math.unit(5, "feet"),
  39445. weight: math.unit(105, "lb"),
  39446. name: "Front",
  39447. image: {
  39448. source: "./media/characters/maxine/front.svg",
  39449. extra: 1386/1250,
  39450. bottom: 71/1457
  39451. }
  39452. },
  39453. },
  39454. [
  39455. {
  39456. name: "Normal",
  39457. height: math.unit(5, "feet"),
  39458. default: true
  39459. },
  39460. ]
  39461. ))
  39462. characterMakers.push(() => makeCharacter(
  39463. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39464. {
  39465. front: {
  39466. height: math.unit(11 + 7/12, "feet"),
  39467. weight: math.unit(9576, "lb"),
  39468. name: "Front",
  39469. image: {
  39470. source: "./media/characters/scaly/front.svg",
  39471. extra: 888/867,
  39472. bottom: 36/924
  39473. }
  39474. },
  39475. },
  39476. [
  39477. {
  39478. name: "Normal",
  39479. height: math.unit(11 + 7/12, "feet"),
  39480. default: true
  39481. },
  39482. ]
  39483. ))
  39484. characterMakers.push(() => makeCharacter(
  39485. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39486. {
  39487. front: {
  39488. height: math.unit(9, "inches"),
  39489. name: "Front",
  39490. image: {
  39491. source: "./media/characters/saelria/front.svg",
  39492. extra: 662/621,
  39493. bottom: 12/674
  39494. }
  39495. },
  39496. },
  39497. [
  39498. {
  39499. name: "Tiny",
  39500. height: math.unit(9, "inches"),
  39501. default: true
  39502. },
  39503. ]
  39504. ))
  39505. characterMakers.push(() => makeCharacter(
  39506. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39507. {
  39508. front: {
  39509. height: math.unit(80, "meters"),
  39510. weight: math.unit(7000, "tonnes"),
  39511. name: "Front",
  39512. image: {
  39513. source: "./media/characters/tef/front.svg",
  39514. extra: 2036/1991,
  39515. bottom: 54/2090
  39516. }
  39517. },
  39518. back: {
  39519. height: math.unit(80, "meters"),
  39520. weight: math.unit(7000, "tonnes"),
  39521. name: "Back",
  39522. image: {
  39523. source: "./media/characters/tef/back.svg",
  39524. extra: 2036/1991,
  39525. bottom: 54/2090
  39526. }
  39527. },
  39528. },
  39529. [
  39530. {
  39531. name: "Macro",
  39532. height: math.unit(80, "meters"),
  39533. default: true
  39534. },
  39535. ]
  39536. ))
  39537. characterMakers.push(() => makeCharacter(
  39538. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39539. {
  39540. front: {
  39541. height: math.unit(13, "feet"),
  39542. weight: math.unit(6, "tons"),
  39543. name: "Front",
  39544. image: {
  39545. source: "./media/characters/rover/front.svg",
  39546. extra: 1233/1156,
  39547. bottom: 50/1283
  39548. }
  39549. },
  39550. back: {
  39551. height: math.unit(13, "feet"),
  39552. weight: math.unit(6, "tons"),
  39553. name: "Back",
  39554. image: {
  39555. source: "./media/characters/rover/back.svg",
  39556. extra: 1327/1258,
  39557. bottom: 39/1366
  39558. }
  39559. },
  39560. },
  39561. [
  39562. {
  39563. name: "Normal",
  39564. height: math.unit(13, "feet"),
  39565. default: true
  39566. },
  39567. {
  39568. name: "Macro",
  39569. height: math.unit(1300, "feet")
  39570. },
  39571. {
  39572. name: "Megamacro",
  39573. height: math.unit(1300, "miles")
  39574. },
  39575. {
  39576. name: "Gigamacro",
  39577. height: math.unit(1300000, "miles")
  39578. },
  39579. ]
  39580. ))
  39581. characterMakers.push(() => makeCharacter(
  39582. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39583. {
  39584. front: {
  39585. height: math.unit(6, "feet"),
  39586. weight: math.unit(150, "lb"),
  39587. name: "Front",
  39588. image: {
  39589. source: "./media/characters/ariz/front.svg",
  39590. extra: 1401/1346,
  39591. bottom: 5/1406
  39592. }
  39593. },
  39594. },
  39595. [
  39596. {
  39597. name: "Normal",
  39598. height: math.unit(10, "feet"),
  39599. default: true
  39600. },
  39601. ]
  39602. ))
  39603. characterMakers.push(() => makeCharacter(
  39604. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39605. {
  39606. front: {
  39607. height: math.unit(6, "feet"),
  39608. weight: math.unit(140, "lb"),
  39609. name: "Front",
  39610. image: {
  39611. source: "./media/characters/sigrun/front.svg",
  39612. extra: 1418/1359,
  39613. bottom: 27/1445
  39614. }
  39615. },
  39616. },
  39617. [
  39618. {
  39619. name: "Macro",
  39620. height: math.unit(35, "feet"),
  39621. default: true
  39622. },
  39623. ]
  39624. ))
  39625. characterMakers.push(() => makeCharacter(
  39626. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39627. {
  39628. front: {
  39629. height: math.unit(6, "feet"),
  39630. weight: math.unit(150, "lb"),
  39631. name: "Front",
  39632. image: {
  39633. source: "./media/characters/numin/front.svg",
  39634. extra: 1433/1388,
  39635. bottom: 12/1445
  39636. }
  39637. },
  39638. },
  39639. [
  39640. {
  39641. name: "Macro",
  39642. height: math.unit(21.5, "km"),
  39643. default: true
  39644. },
  39645. ]
  39646. ))
  39647. characterMakers.push(() => makeCharacter(
  39648. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39649. {
  39650. front: {
  39651. height: math.unit(6, "feet"),
  39652. weight: math.unit(463, "lb"),
  39653. name: "Front",
  39654. image: {
  39655. source: "./media/characters/melwa/front.svg",
  39656. extra: 1307/1248,
  39657. bottom: 93/1400
  39658. }
  39659. },
  39660. },
  39661. [
  39662. {
  39663. name: "Macro",
  39664. height: math.unit(50, "meters"),
  39665. default: true
  39666. },
  39667. ]
  39668. ))
  39669. characterMakers.push(() => makeCharacter(
  39670. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39671. {
  39672. front: {
  39673. height: math.unit(325, "feet"),
  39674. name: "Front",
  39675. image: {
  39676. source: "./media/characters/zorkaiju/front.svg",
  39677. extra: 1955/1814,
  39678. bottom: 40/1995
  39679. }
  39680. },
  39681. frontExtended: {
  39682. height: math.unit(325, "feet"),
  39683. name: "Front (Extended)",
  39684. image: {
  39685. source: "./media/characters/zorkaiju/front-extended.svg",
  39686. extra: 1955/1814,
  39687. bottom: 40/1995
  39688. }
  39689. },
  39690. side: {
  39691. height: math.unit(325, "feet"),
  39692. name: "Side",
  39693. image: {
  39694. source: "./media/characters/zorkaiju/side.svg",
  39695. extra: 1495/1396,
  39696. bottom: 17/1512
  39697. }
  39698. },
  39699. sideExtended: {
  39700. height: math.unit(325, "feet"),
  39701. name: "Side (Extended)",
  39702. image: {
  39703. source: "./media/characters/zorkaiju/side-extended.svg",
  39704. extra: 1495/1396,
  39705. bottom: 17/1512
  39706. }
  39707. },
  39708. back: {
  39709. height: math.unit(325, "feet"),
  39710. name: "Back",
  39711. image: {
  39712. source: "./media/characters/zorkaiju/back.svg",
  39713. extra: 1959/1821,
  39714. bottom: 31/1990
  39715. }
  39716. },
  39717. backExtended: {
  39718. height: math.unit(325, "feet"),
  39719. name: "Back (Extended)",
  39720. image: {
  39721. source: "./media/characters/zorkaiju/back-extended.svg",
  39722. extra: 1959/1821,
  39723. bottom: 31/1990
  39724. }
  39725. },
  39726. hand: {
  39727. height: math.unit(58.4, "feet"),
  39728. name: "Hand",
  39729. image: {
  39730. source: "./media/characters/zorkaiju/hand.svg"
  39731. }
  39732. },
  39733. handExtended: {
  39734. height: math.unit(61.4, "feet"),
  39735. name: "Hand (Extended)",
  39736. image: {
  39737. source: "./media/characters/zorkaiju/hand-extended.svg"
  39738. }
  39739. },
  39740. foot: {
  39741. height: math.unit(95, "feet"),
  39742. name: "Foot",
  39743. image: {
  39744. source: "./media/characters/zorkaiju/foot.svg"
  39745. }
  39746. },
  39747. leftArm: {
  39748. height: math.unit(59, "feet"),
  39749. name: "Left Arm",
  39750. image: {
  39751. source: "./media/characters/zorkaiju/left-arm.svg"
  39752. }
  39753. },
  39754. rightArm: {
  39755. height: math.unit(59, "feet"),
  39756. name: "Right Arm",
  39757. image: {
  39758. source: "./media/characters/zorkaiju/right-arm.svg"
  39759. }
  39760. },
  39761. tail: {
  39762. height: math.unit(104, "feet"),
  39763. name: "Tail",
  39764. image: {
  39765. source: "./media/characters/zorkaiju/tail.svg"
  39766. }
  39767. },
  39768. tailExtended: {
  39769. height: math.unit(104, "feet"),
  39770. name: "Tail (Extended)",
  39771. image: {
  39772. source: "./media/characters/zorkaiju/tail-extended.svg"
  39773. }
  39774. },
  39775. tailBottom: {
  39776. height: math.unit(104, "feet"),
  39777. name: "Tail Bottom",
  39778. image: {
  39779. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39780. }
  39781. },
  39782. crystal: {
  39783. height: math.unit(27.54, "feet"),
  39784. name: "Crystal",
  39785. image: {
  39786. source: "./media/characters/zorkaiju/crystal.svg"
  39787. }
  39788. },
  39789. },
  39790. [
  39791. {
  39792. name: "Kaiju",
  39793. height: math.unit(325, "feet"),
  39794. default: true
  39795. },
  39796. ]
  39797. ))
  39798. characterMakers.push(() => makeCharacter(
  39799. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39800. {
  39801. front: {
  39802. height: math.unit(6 + 1/12, "feet"),
  39803. weight: math.unit(115, "lb"),
  39804. name: "Front",
  39805. image: {
  39806. source: "./media/characters/bailey-belfry/front.svg",
  39807. extra: 1240/1121,
  39808. bottom: 101/1341
  39809. }
  39810. },
  39811. },
  39812. [
  39813. {
  39814. name: "Normal",
  39815. height: math.unit(6 + 1/12, "feet"),
  39816. default: true
  39817. },
  39818. ]
  39819. ))
  39820. characterMakers.push(() => makeCharacter(
  39821. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39822. {
  39823. side: {
  39824. height: math.unit(4, "meters"),
  39825. weight: math.unit(250, "kg"),
  39826. name: "Side",
  39827. image: {
  39828. source: "./media/characters/blacky/side.svg",
  39829. extra: 1027/919,
  39830. bottom: 43/1070
  39831. }
  39832. },
  39833. maw: {
  39834. height: math.unit(1, "meters"),
  39835. name: "Maw",
  39836. image: {
  39837. source: "./media/characters/blacky/maw.svg"
  39838. }
  39839. },
  39840. paw: {
  39841. height: math.unit(1, "meters"),
  39842. name: "Paw",
  39843. image: {
  39844. source: "./media/characters/blacky/paw.svg"
  39845. }
  39846. },
  39847. },
  39848. [
  39849. {
  39850. name: "Normal",
  39851. height: math.unit(4, "meters"),
  39852. default: true
  39853. },
  39854. ]
  39855. ))
  39856. characterMakers.push(() => makeCharacter(
  39857. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39858. {
  39859. front: {
  39860. height: math.unit(170, "cm"),
  39861. weight: math.unit(66, "kg"),
  39862. name: "Front",
  39863. image: {
  39864. source: "./media/characters/thux-ei/front.svg",
  39865. extra: 1109/1011,
  39866. bottom: 8/1117
  39867. }
  39868. },
  39869. },
  39870. [
  39871. {
  39872. name: "Normal",
  39873. height: math.unit(170, "cm"),
  39874. default: true
  39875. },
  39876. ]
  39877. ))
  39878. characterMakers.push(() => makeCharacter(
  39879. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39880. {
  39881. front: {
  39882. height: math.unit(5, "feet"),
  39883. weight: math.unit(120, "lb"),
  39884. name: "Front",
  39885. image: {
  39886. source: "./media/characters/roxanne-voltaire/front.svg",
  39887. extra: 1901/1779,
  39888. bottom: 53/1954
  39889. }
  39890. },
  39891. },
  39892. [
  39893. {
  39894. name: "Normal",
  39895. height: math.unit(5, "feet"),
  39896. default: true
  39897. },
  39898. {
  39899. name: "Giant",
  39900. height: math.unit(50, "feet")
  39901. },
  39902. {
  39903. name: "Titan",
  39904. height: math.unit(500, "feet")
  39905. },
  39906. {
  39907. name: "Macro",
  39908. height: math.unit(5000, "feet")
  39909. },
  39910. {
  39911. name: "Megamacro",
  39912. height: math.unit(50000, "feet")
  39913. },
  39914. {
  39915. name: "Gigamacro",
  39916. height: math.unit(500000, "feet")
  39917. },
  39918. {
  39919. name: "Teramacro",
  39920. height: math.unit(5e6, "feet")
  39921. },
  39922. ]
  39923. ))
  39924. characterMakers.push(() => makeCharacter(
  39925. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39926. {
  39927. front: {
  39928. height: math.unit(6 + 2/12, "feet"),
  39929. name: "Front",
  39930. image: {
  39931. source: "./media/characters/squeaks/front.svg",
  39932. extra: 1823/1768,
  39933. bottom: 138/1961
  39934. }
  39935. },
  39936. },
  39937. [
  39938. {
  39939. name: "Micro",
  39940. height: math.unit(0.5, "inches")
  39941. },
  39942. {
  39943. name: "Normal",
  39944. height: math.unit(6 + 2/12, "feet"),
  39945. default: true
  39946. },
  39947. {
  39948. name: "Macro",
  39949. height: math.unit(600, "feet")
  39950. },
  39951. ]
  39952. ))
  39953. characterMakers.push(() => makeCharacter(
  39954. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39955. {
  39956. front: {
  39957. height: math.unit(1.72, "meters"),
  39958. name: "Front",
  39959. image: {
  39960. source: "./media/characters/archinger/front.svg",
  39961. extra: 1861/1675,
  39962. bottom: 125/1986
  39963. }
  39964. },
  39965. back: {
  39966. height: math.unit(1.72, "meters"),
  39967. name: "Back",
  39968. image: {
  39969. source: "./media/characters/archinger/back.svg",
  39970. extra: 1844/1701,
  39971. bottom: 104/1948
  39972. }
  39973. },
  39974. cock: {
  39975. height: math.unit(0.59, "feet"),
  39976. name: "Cock",
  39977. image: {
  39978. source: "./media/characters/archinger/cock.svg"
  39979. }
  39980. },
  39981. },
  39982. [
  39983. {
  39984. name: "Normal",
  39985. height: math.unit(1.72, "meters"),
  39986. default: true
  39987. },
  39988. {
  39989. name: "Macro",
  39990. height: math.unit(84, "meters")
  39991. },
  39992. {
  39993. name: "Macro+",
  39994. height: math.unit(112, "meters")
  39995. },
  39996. {
  39997. name: "Macro++",
  39998. height: math.unit(960, "meters")
  39999. },
  40000. {
  40001. name: "Macro+++",
  40002. height: math.unit(4, "km")
  40003. },
  40004. {
  40005. name: "Macro++++",
  40006. height: math.unit(48, "km")
  40007. },
  40008. {
  40009. name: "Macro+++++",
  40010. height: math.unit(4500, "km")
  40011. },
  40012. ]
  40013. ))
  40014. characterMakers.push(() => makeCharacter(
  40015. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40016. {
  40017. front: {
  40018. height: math.unit(5 + 5/12, "feet"),
  40019. name: "Front",
  40020. image: {
  40021. source: "./media/characters/alsnapz/front.svg",
  40022. extra: 1157/1065,
  40023. bottom: 42/1199
  40024. }
  40025. },
  40026. },
  40027. [
  40028. {
  40029. name: "Normal",
  40030. height: math.unit(5 + 5/12, "feet"),
  40031. default: true
  40032. },
  40033. ]
  40034. ))
  40035. characterMakers.push(() => makeCharacter(
  40036. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40037. {
  40038. side: {
  40039. height: math.unit(3.2, "earths"),
  40040. name: "Side",
  40041. image: {
  40042. source: "./media/characters/mag/side.svg",
  40043. extra: 1331/1008,
  40044. bottom: 52/1383
  40045. }
  40046. },
  40047. wing: {
  40048. height: math.unit(1.94, "earths"),
  40049. name: "Wing",
  40050. image: {
  40051. source: "./media/characters/mag/wing.svg"
  40052. }
  40053. },
  40054. dick: {
  40055. height: math.unit(1.8, "earths"),
  40056. name: "Dick",
  40057. image: {
  40058. source: "./media/characters/mag/dick.svg"
  40059. }
  40060. },
  40061. ass: {
  40062. height: math.unit(1.33, "earths"),
  40063. name: "Ass",
  40064. image: {
  40065. source: "./media/characters/mag/ass.svg"
  40066. }
  40067. },
  40068. head: {
  40069. height: math.unit(1.1, "earths"),
  40070. name: "Head",
  40071. image: {
  40072. source: "./media/characters/mag/head.svg"
  40073. }
  40074. },
  40075. maw: {
  40076. height: math.unit(1.62, "earths"),
  40077. name: "Maw",
  40078. image: {
  40079. source: "./media/characters/mag/maw.svg"
  40080. }
  40081. },
  40082. },
  40083. [
  40084. {
  40085. name: "Small",
  40086. height: math.unit(162, "feet")
  40087. },
  40088. {
  40089. name: "Normal",
  40090. height: math.unit(3.2, "earths"),
  40091. default: true
  40092. },
  40093. ]
  40094. ))
  40095. characterMakers.push(() => makeCharacter(
  40096. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40097. {
  40098. front: {
  40099. height: math.unit(512, "feet"),
  40100. weight: math.unit(63509, "tonnes"),
  40101. name: "Front",
  40102. image: {
  40103. source: "./media/characters/vorrel-harroc/front.svg",
  40104. extra: 1075/1063,
  40105. bottom: 62/1137
  40106. }
  40107. },
  40108. },
  40109. [
  40110. {
  40111. name: "Normal",
  40112. height: math.unit(10, "feet")
  40113. },
  40114. {
  40115. name: "Macro",
  40116. height: math.unit(512, "feet"),
  40117. default: true
  40118. },
  40119. {
  40120. name: "Megamacro",
  40121. height: math.unit(256, "miles")
  40122. },
  40123. {
  40124. name: "Gigamacro",
  40125. height: math.unit(4096, "miles")
  40126. },
  40127. ]
  40128. ))
  40129. characterMakers.push(() => makeCharacter(
  40130. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40131. {
  40132. side: {
  40133. height: math.unit(50, "feet"),
  40134. name: "Side",
  40135. image: {
  40136. source: "./media/characters/froimar/side.svg",
  40137. extra: 855/638,
  40138. bottom: 99/954
  40139. }
  40140. },
  40141. },
  40142. [
  40143. {
  40144. name: "Macro",
  40145. height: math.unit(50, "feet"),
  40146. default: true
  40147. },
  40148. ]
  40149. ))
  40150. characterMakers.push(() => makeCharacter(
  40151. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40152. {
  40153. front: {
  40154. height: math.unit(210, "miles"),
  40155. name: "Front",
  40156. image: {
  40157. source: "./media/characters/timothy/front.svg",
  40158. extra: 1007/943,
  40159. bottom: 62/1069
  40160. }
  40161. },
  40162. frontSkirt: {
  40163. height: math.unit(210, "miles"),
  40164. name: "Front (Skirt)",
  40165. image: {
  40166. source: "./media/characters/timothy/front-skirt.svg",
  40167. extra: 1007/943,
  40168. bottom: 62/1069
  40169. }
  40170. },
  40171. frontCoat: {
  40172. height: math.unit(210, "miles"),
  40173. name: "Front (Coat)",
  40174. image: {
  40175. source: "./media/characters/timothy/front-coat.svg",
  40176. extra: 1007/943,
  40177. bottom: 62/1069
  40178. }
  40179. },
  40180. },
  40181. [
  40182. {
  40183. name: "Macro",
  40184. height: math.unit(210, "miles"),
  40185. default: true
  40186. },
  40187. {
  40188. name: "Megamacro",
  40189. height: math.unit(210000, "miles")
  40190. },
  40191. ]
  40192. ))
  40193. characterMakers.push(() => makeCharacter(
  40194. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40195. {
  40196. front: {
  40197. height: math.unit(188, "feet"),
  40198. name: "Front",
  40199. image: {
  40200. source: "./media/characters/pyotr/front.svg",
  40201. extra: 1912/1826,
  40202. bottom: 18/1930
  40203. }
  40204. },
  40205. },
  40206. [
  40207. {
  40208. name: "Macro",
  40209. height: math.unit(188, "feet"),
  40210. default: true
  40211. },
  40212. {
  40213. name: "Megamacro",
  40214. height: math.unit(8, "miles")
  40215. },
  40216. ]
  40217. ))
  40218. characterMakers.push(() => makeCharacter(
  40219. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40220. {
  40221. side: {
  40222. height: math.unit(10, "feet"),
  40223. weight: math.unit(4500, "lb"),
  40224. name: "Side",
  40225. image: {
  40226. source: "./media/characters/ackart/side.svg",
  40227. extra: 1776/1668,
  40228. bottom: 116/1892
  40229. }
  40230. },
  40231. },
  40232. [
  40233. {
  40234. name: "Normal",
  40235. height: math.unit(10, "feet"),
  40236. default: true
  40237. },
  40238. ]
  40239. ))
  40240. characterMakers.push(() => makeCharacter(
  40241. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40242. {
  40243. side: {
  40244. height: math.unit(21, "feet"),
  40245. name: "Side",
  40246. image: {
  40247. source: "./media/characters/nolow/side.svg",
  40248. extra: 1484/1434,
  40249. bottom: 85/1569
  40250. }
  40251. },
  40252. sideErect: {
  40253. height: math.unit(21, "feet"),
  40254. name: "Side-erect",
  40255. image: {
  40256. source: "./media/characters/nolow/side-erect.svg",
  40257. extra: 1484/1434,
  40258. bottom: 85/1569
  40259. }
  40260. },
  40261. },
  40262. [
  40263. {
  40264. name: "Regular",
  40265. height: math.unit(12, "feet")
  40266. },
  40267. {
  40268. name: "Big Chee",
  40269. height: math.unit(21, "feet"),
  40270. default: true
  40271. },
  40272. ]
  40273. ))
  40274. characterMakers.push(() => makeCharacter(
  40275. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40276. {
  40277. front: {
  40278. height: math.unit(7, "feet"),
  40279. weight: math.unit(250, "lb"),
  40280. name: "Front",
  40281. image: {
  40282. source: "./media/characters/nines/front.svg",
  40283. extra: 1741/1607,
  40284. bottom: 41/1782
  40285. }
  40286. },
  40287. side: {
  40288. height: math.unit(7, "feet"),
  40289. weight: math.unit(250, "lb"),
  40290. name: "Side",
  40291. image: {
  40292. source: "./media/characters/nines/side.svg",
  40293. extra: 1854/1735,
  40294. bottom: 93/1947
  40295. }
  40296. },
  40297. back: {
  40298. height: math.unit(7, "feet"),
  40299. weight: math.unit(250, "lb"),
  40300. name: "Back",
  40301. image: {
  40302. source: "./media/characters/nines/back.svg",
  40303. extra: 1748/1615,
  40304. bottom: 20/1768
  40305. }
  40306. },
  40307. },
  40308. [
  40309. {
  40310. name: "Megamacro",
  40311. height: math.unit(99, "km"),
  40312. default: true
  40313. },
  40314. ]
  40315. ))
  40316. characterMakers.push(() => makeCharacter(
  40317. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40318. {
  40319. front: {
  40320. height: math.unit(5 + 10/12, "feet"),
  40321. weight: math.unit(210, "lb"),
  40322. name: "Front",
  40323. image: {
  40324. source: "./media/characters/zenith/front.svg",
  40325. extra: 1531/1452,
  40326. bottom: 198/1729
  40327. }
  40328. },
  40329. back: {
  40330. height: math.unit(5 + 10/12, "feet"),
  40331. weight: math.unit(210, "lb"),
  40332. name: "Back",
  40333. image: {
  40334. source: "./media/characters/zenith/back.svg",
  40335. extra: 1571/1487,
  40336. bottom: 75/1646
  40337. }
  40338. },
  40339. },
  40340. [
  40341. {
  40342. name: "Normal",
  40343. height: math.unit(5 + 10/12, "feet"),
  40344. default: true
  40345. }
  40346. ]
  40347. ))
  40348. characterMakers.push(() => makeCharacter(
  40349. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40350. {
  40351. front: {
  40352. height: math.unit(4, "feet"),
  40353. weight: math.unit(60, "lb"),
  40354. name: "Front",
  40355. image: {
  40356. source: "./media/characters/jasper/front.svg",
  40357. extra: 1450/1379,
  40358. bottom: 19/1469
  40359. }
  40360. },
  40361. },
  40362. [
  40363. {
  40364. name: "Normal",
  40365. height: math.unit(4, "feet"),
  40366. default: true
  40367. },
  40368. ]
  40369. ))
  40370. characterMakers.push(() => makeCharacter(
  40371. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40372. {
  40373. front: {
  40374. height: math.unit(6 + 5/12, "feet"),
  40375. weight: math.unit(290, "lb"),
  40376. name: "Front",
  40377. image: {
  40378. source: "./media/characters/tiberius-thyben/front.svg",
  40379. extra: 757/739,
  40380. bottom: 39/796
  40381. }
  40382. },
  40383. },
  40384. [
  40385. {
  40386. name: "Micro",
  40387. height: math.unit(1.5, "inches")
  40388. },
  40389. {
  40390. name: "Normal",
  40391. height: math.unit(6 + 5/12, "feet"),
  40392. default: true
  40393. },
  40394. {
  40395. name: "Macro",
  40396. height: math.unit(300, "feet")
  40397. },
  40398. ]
  40399. ))
  40400. characterMakers.push(() => makeCharacter(
  40401. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40402. {
  40403. front: {
  40404. height: math.unit(5 + 6/12, "feet"),
  40405. weight: math.unit(60, "kg"),
  40406. name: "Front",
  40407. image: {
  40408. source: "./media/characters/sabre/front.svg",
  40409. extra: 738/671,
  40410. bottom: 27/765
  40411. }
  40412. },
  40413. },
  40414. [
  40415. {
  40416. name: "Teeny",
  40417. height: math.unit(2, "inches")
  40418. },
  40419. {
  40420. name: "Smol",
  40421. height: math.unit(8, "inches")
  40422. },
  40423. {
  40424. name: "Normal",
  40425. height: math.unit(5 + 6/12, "feet"),
  40426. default: true
  40427. },
  40428. {
  40429. name: "Mini-Macro",
  40430. height: math.unit(15, "feet")
  40431. },
  40432. {
  40433. name: "Macro",
  40434. height: math.unit(50, "feet")
  40435. },
  40436. ]
  40437. ))
  40438. characterMakers.push(() => makeCharacter(
  40439. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40440. {
  40441. front: {
  40442. height: math.unit(6 + 4/12, "feet"),
  40443. weight: math.unit(170, "lb"),
  40444. name: "Front",
  40445. image: {
  40446. source: "./media/characters/charlie/front.svg",
  40447. extra: 1348/1228,
  40448. bottom: 15/1363
  40449. }
  40450. },
  40451. },
  40452. [
  40453. {
  40454. name: "Macro",
  40455. height: math.unit(1700, "meters"),
  40456. default: true
  40457. },
  40458. {
  40459. name: "MegaMacro",
  40460. height: math.unit(20400, "meters")
  40461. },
  40462. ]
  40463. ))
  40464. characterMakers.push(() => makeCharacter(
  40465. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40466. {
  40467. front: {
  40468. height: math.unit(6 + 3/12, "feet"),
  40469. weight: math.unit(185, "lb"),
  40470. name: "Front",
  40471. image: {
  40472. source: "./media/characters/susan-grant/front.svg",
  40473. extra: 1351/1327,
  40474. bottom: 26/1377
  40475. }
  40476. },
  40477. },
  40478. [
  40479. {
  40480. name: "Normal",
  40481. height: math.unit(6 + 3/12, "feet"),
  40482. default: true
  40483. },
  40484. {
  40485. name: "Macro",
  40486. height: math.unit(225, "feet")
  40487. },
  40488. {
  40489. name: "Macro+",
  40490. height: math.unit(900, "feet")
  40491. },
  40492. {
  40493. name: "MegaMacro",
  40494. height: math.unit(14400, "feet")
  40495. },
  40496. ]
  40497. ))
  40498. characterMakers.push(() => makeCharacter(
  40499. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40500. {
  40501. front: {
  40502. height: math.unit(5 + 4/12, "feet"),
  40503. weight: math.unit(110, "lb"),
  40504. name: "Front",
  40505. image: {
  40506. source: "./media/characters/axel-isanov/front.svg",
  40507. extra: 1096/1065,
  40508. bottom: 13/1109
  40509. }
  40510. },
  40511. },
  40512. [
  40513. {
  40514. name: "Normal",
  40515. height: math.unit(5 + 4/12, "feet"),
  40516. default: true
  40517. },
  40518. ]
  40519. ))
  40520. characterMakers.push(() => makeCharacter(
  40521. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40522. {
  40523. front: {
  40524. height: math.unit(9, "feet"),
  40525. weight: math.unit(467, "lb"),
  40526. name: "Front",
  40527. image: {
  40528. source: "./media/characters/necahual/front.svg",
  40529. extra: 920/873,
  40530. bottom: 26/946
  40531. }
  40532. },
  40533. back: {
  40534. height: math.unit(9, "feet"),
  40535. weight: math.unit(467, "lb"),
  40536. name: "Back",
  40537. image: {
  40538. source: "./media/characters/necahual/back.svg",
  40539. extra: 930/884,
  40540. bottom: 16/946
  40541. }
  40542. },
  40543. frontUnderwear: {
  40544. height: math.unit(9, "feet"),
  40545. weight: math.unit(467, "lb"),
  40546. name: "Front (Underwear)",
  40547. image: {
  40548. source: "./media/characters/necahual/front-underwear.svg",
  40549. extra: 920/873,
  40550. bottom: 26/946
  40551. }
  40552. },
  40553. frontDressed: {
  40554. height: math.unit(9, "feet"),
  40555. weight: math.unit(467, "lb"),
  40556. name: "Front (Dressed)",
  40557. image: {
  40558. source: "./media/characters/necahual/front-dressed.svg",
  40559. extra: 920/873,
  40560. bottom: 26/946
  40561. }
  40562. },
  40563. },
  40564. [
  40565. {
  40566. name: "Comprsesed",
  40567. height: math.unit(9, "feet")
  40568. },
  40569. {
  40570. name: "Natural",
  40571. height: math.unit(15, "feet"),
  40572. default: true
  40573. },
  40574. {
  40575. name: "Boosted",
  40576. height: math.unit(50, "feet")
  40577. },
  40578. {
  40579. name: "Boosted+",
  40580. height: math.unit(150, "feet")
  40581. },
  40582. {
  40583. name: "Max",
  40584. height: math.unit(500, "feet")
  40585. },
  40586. ]
  40587. ))
  40588. characterMakers.push(() => makeCharacter(
  40589. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40590. {
  40591. front: {
  40592. height: math.unit(22 + 1/12, "feet"),
  40593. weight: math.unit(3200, "lb"),
  40594. name: "Front",
  40595. image: {
  40596. source: "./media/characters/theo-acacia/front.svg",
  40597. extra: 1796/1741,
  40598. bottom: 83/1879
  40599. }
  40600. },
  40601. frontUnderwear: {
  40602. height: math.unit(22 + 1/12, "feet"),
  40603. weight: math.unit(3200, "lb"),
  40604. name: "Front (Underwear)",
  40605. image: {
  40606. source: "./media/characters/theo-acacia/front-underwear.svg",
  40607. extra: 1796/1741,
  40608. bottom: 83/1879
  40609. }
  40610. },
  40611. frontNude: {
  40612. height: math.unit(22 + 1/12, "feet"),
  40613. weight: math.unit(3200, "lb"),
  40614. name: "Front (Nude)",
  40615. image: {
  40616. source: "./media/characters/theo-acacia/front-nude.svg",
  40617. extra: 1796/1741,
  40618. bottom: 83/1879
  40619. }
  40620. },
  40621. },
  40622. [
  40623. {
  40624. name: "Normal",
  40625. height: math.unit(22 + 1/12, "feet"),
  40626. default: true
  40627. },
  40628. ]
  40629. ))
  40630. characterMakers.push(() => makeCharacter(
  40631. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40632. {
  40633. front: {
  40634. height: math.unit(20, "feet"),
  40635. name: "Front",
  40636. image: {
  40637. source: "./media/characters/astra/front.svg",
  40638. extra: 1850/1714,
  40639. bottom: 106/1956
  40640. }
  40641. },
  40642. frontUndressed: {
  40643. height: math.unit(20, "feet"),
  40644. name: "Front (Undressed)",
  40645. image: {
  40646. source: "./media/characters/astra/front-undressed.svg",
  40647. extra: 1926/1749,
  40648. bottom: 0/1926
  40649. }
  40650. },
  40651. hand: {
  40652. height: math.unit(1.53, "feet"),
  40653. name: "Hand",
  40654. image: {
  40655. source: "./media/characters/astra/hand.svg"
  40656. }
  40657. },
  40658. paw: {
  40659. height: math.unit(1.53, "feet"),
  40660. name: "Paw",
  40661. image: {
  40662. source: "./media/characters/astra/paw.svg"
  40663. }
  40664. },
  40665. },
  40666. [
  40667. {
  40668. name: "Smallest",
  40669. height: math.unit(20, "feet")
  40670. },
  40671. {
  40672. name: "Normal",
  40673. height: math.unit(1e9, "miles"),
  40674. default: true
  40675. },
  40676. {
  40677. name: "Larger",
  40678. height: math.unit(5, "multiverses")
  40679. },
  40680. {
  40681. name: "Largest",
  40682. height: math.unit(1e9, "multiverses")
  40683. },
  40684. ]
  40685. ))
  40686. characterMakers.push(() => makeCharacter(
  40687. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40688. {
  40689. front: {
  40690. height: math.unit(8, "feet"),
  40691. name: "Front",
  40692. image: {
  40693. source: "./media/characters/breanna/front.svg",
  40694. extra: 1912/1632,
  40695. bottom: 33/1945
  40696. }
  40697. },
  40698. },
  40699. [
  40700. {
  40701. name: "Smallest",
  40702. height: math.unit(8, "feet")
  40703. },
  40704. {
  40705. name: "Normal",
  40706. height: math.unit(1, "mile"),
  40707. default: true
  40708. },
  40709. {
  40710. name: "Maximum",
  40711. height: math.unit(1500000000000, "lightyears")
  40712. },
  40713. ]
  40714. ))
  40715. characterMakers.push(() => makeCharacter(
  40716. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40717. {
  40718. front: {
  40719. height: math.unit(5 + 11/12, "feet"),
  40720. weight: math.unit(155, "lb"),
  40721. name: "Front",
  40722. image: {
  40723. source: "./media/characters/cai/front.svg",
  40724. extra: 1823/1702,
  40725. bottom: 32/1855
  40726. }
  40727. },
  40728. back: {
  40729. height: math.unit(5 + 11/12, "feet"),
  40730. weight: math.unit(155, "lb"),
  40731. name: "Back",
  40732. image: {
  40733. source: "./media/characters/cai/back.svg",
  40734. extra: 1809/1708,
  40735. bottom: 31/1840
  40736. }
  40737. },
  40738. },
  40739. [
  40740. {
  40741. name: "Normal",
  40742. height: math.unit(5 + 11/12, "feet"),
  40743. default: true
  40744. },
  40745. {
  40746. name: "Big",
  40747. height: math.unit(15, "feet")
  40748. },
  40749. {
  40750. name: "Macro",
  40751. height: math.unit(200, "feet")
  40752. },
  40753. ]
  40754. ))
  40755. characterMakers.push(() => makeCharacter(
  40756. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40757. {
  40758. front: {
  40759. height: math.unit(5 + 6/12, "feet"),
  40760. weight: math.unit(160, "lb"),
  40761. name: "Front",
  40762. image: {
  40763. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40764. extra: 1227/1174,
  40765. bottom: 37/1264
  40766. }
  40767. },
  40768. },
  40769. [
  40770. {
  40771. name: "Macro",
  40772. height: math.unit(444, "meters"),
  40773. default: true
  40774. },
  40775. ]
  40776. ))
  40777. characterMakers.push(() => makeCharacter(
  40778. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40779. {
  40780. front: {
  40781. height: math.unit(18 + 7/12, "feet"),
  40782. name: "Front",
  40783. image: {
  40784. source: "./media/characters/rex/front.svg",
  40785. extra: 1941/1807,
  40786. bottom: 66/2007
  40787. }
  40788. },
  40789. back: {
  40790. height: math.unit(18 + 7/12, "feet"),
  40791. name: "Back",
  40792. image: {
  40793. source: "./media/characters/rex/back.svg",
  40794. extra: 1937/1822,
  40795. bottom: 42/1979
  40796. }
  40797. },
  40798. boot: {
  40799. height: math.unit(3.45, "feet"),
  40800. name: "Boot",
  40801. image: {
  40802. source: "./media/characters/rex/boot.svg"
  40803. }
  40804. },
  40805. paw: {
  40806. height: math.unit(4.17, "feet"),
  40807. name: "Paw",
  40808. image: {
  40809. source: "./media/characters/rex/paw.svg"
  40810. }
  40811. },
  40812. head: {
  40813. height: math.unit(6.728, "feet"),
  40814. name: "Head",
  40815. image: {
  40816. source: "./media/characters/rex/head.svg"
  40817. }
  40818. },
  40819. },
  40820. [
  40821. {
  40822. name: "Nano",
  40823. height: math.unit(18 + 7/12, "feet")
  40824. },
  40825. {
  40826. name: "Micro",
  40827. height: math.unit(1.5, "megameters")
  40828. },
  40829. {
  40830. name: "Normal",
  40831. height: math.unit(440, "megameters"),
  40832. default: true
  40833. },
  40834. {
  40835. name: "Macro",
  40836. height: math.unit(2.5, "gigameters")
  40837. },
  40838. {
  40839. name: "Gigamacro",
  40840. height: math.unit(2, "galaxies")
  40841. },
  40842. ]
  40843. ))
  40844. characterMakers.push(() => makeCharacter(
  40845. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40846. {
  40847. side: {
  40848. height: math.unit(32, "feet"),
  40849. weight: math.unit(250000, "lb"),
  40850. name: "Side",
  40851. image: {
  40852. source: "./media/characters/silverwing/side.svg",
  40853. extra: 1100/1019,
  40854. bottom: 204/1304
  40855. }
  40856. },
  40857. },
  40858. [
  40859. {
  40860. name: "Normal",
  40861. height: math.unit(32, "feet"),
  40862. default: true
  40863. },
  40864. ]
  40865. ))
  40866. characterMakers.push(() => makeCharacter(
  40867. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40868. {
  40869. front: {
  40870. height: math.unit(6 + 6/12, "feet"),
  40871. weight: math.unit(350, "lb"),
  40872. name: "Front",
  40873. image: {
  40874. source: "./media/characters/tristan-hawthorne/front.svg",
  40875. extra: 1159/1124,
  40876. bottom: 37/1196
  40877. }
  40878. },
  40879. },
  40880. [
  40881. {
  40882. name: "Normal",
  40883. height: math.unit(6 + 6/12, "feet"),
  40884. default: true
  40885. },
  40886. ]
  40887. ))
  40888. characterMakers.push(() => makeCharacter(
  40889. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40890. {
  40891. front: {
  40892. height: math.unit(5 + 11/12, "feet"),
  40893. weight: math.unit(190, "lb"),
  40894. name: "Front",
  40895. image: {
  40896. source: "./media/characters/mizu/front.svg",
  40897. extra: 1988/1788,
  40898. bottom: 14/2002
  40899. }
  40900. },
  40901. },
  40902. [
  40903. {
  40904. name: "Normal",
  40905. height: math.unit(5 + 11/12, "feet"),
  40906. default: true
  40907. },
  40908. ]
  40909. ))
  40910. characterMakers.push(() => makeCharacter(
  40911. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40912. {
  40913. front: {
  40914. height: math.unit(6, "feet"),
  40915. name: "Front",
  40916. image: {
  40917. source: "./media/characters/moonlight-rose-terra/front.svg",
  40918. extra: 1434/1252,
  40919. bottom: 48/1482
  40920. }
  40921. },
  40922. },
  40923. [
  40924. {
  40925. name: "TRAPPIST-1D",
  40926. height: math.unit(4992*2, "km")
  40927. },
  40928. {
  40929. name: "Earth",
  40930. height: math.unit(6367*2, "km"),
  40931. default: true
  40932. },
  40933. {
  40934. name: "Kepler-22b",
  40935. height: math.unit(15282*2, "km")
  40936. },
  40937. ]
  40938. ))
  40939. characterMakers.push(() => makeCharacter(
  40940. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  40941. {
  40942. front: {
  40943. height: math.unit(6, "feet"),
  40944. name: "Front",
  40945. image: {
  40946. source: "./media/characters/moonlight-rose-neptune/front.svg",
  40947. extra: 1851/1712,
  40948. bottom: 0/1851
  40949. }
  40950. },
  40951. },
  40952. [
  40953. {
  40954. name: "Enceladus",
  40955. height: math.unit(513*2, "km")
  40956. },
  40957. {
  40958. name: "Europe",
  40959. height: math.unit(1560*2, "km")
  40960. },
  40961. {
  40962. name: "Neptune",
  40963. height: math.unit(24622*2, "km"),
  40964. default: true
  40965. },
  40966. {
  40967. name: "CoRoT-9b",
  40968. height: math.unit(75067*2, "km")
  40969. },
  40970. ]
  40971. ))
  40972. characterMakers.push(() => makeCharacter(
  40973. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  40974. {
  40975. front: {
  40976. height: math.unit(6, "feet"),
  40977. name: "Front",
  40978. image: {
  40979. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  40980. extra: 1367/1286,
  40981. bottom: 55/1422
  40982. }
  40983. },
  40984. },
  40985. [
  40986. {
  40987. name: "Saturn",
  40988. height: math.unit(58232*2, "km")
  40989. },
  40990. {
  40991. name: "Jupiter",
  40992. height: math.unit(69911*2, "km"),
  40993. default: true
  40994. },
  40995. {
  40996. name: "HD 100546 b",
  40997. height: math.unit(482938, "km")
  40998. },
  40999. ]
  41000. ))
  41001. characterMakers.push(() => makeCharacter(
  41002. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41003. {
  41004. front: {
  41005. height: math.unit(1.7, "feet"),
  41006. weight: math.unit(50, "lb"),
  41007. name: "Front",
  41008. image: {
  41009. source: "./media/characters/dechroma/front.svg",
  41010. extra: 1095/859,
  41011. bottom: 64/1159
  41012. }
  41013. },
  41014. },
  41015. [
  41016. {
  41017. name: "Normal",
  41018. height: math.unit(1.7, "feet"),
  41019. default: true
  41020. },
  41021. ]
  41022. ))
  41023. characterMakers.push(() => makeCharacter(
  41024. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41025. {
  41026. side: {
  41027. height: math.unit(30, "feet"),
  41028. name: "Side",
  41029. image: {
  41030. source: "./media/characters/veluren-thanazel/side.svg",
  41031. extra: 1611/633,
  41032. bottom: 118/1729
  41033. }
  41034. },
  41035. front: {
  41036. height: math.unit(30, "feet"),
  41037. name: "Front",
  41038. image: {
  41039. source: "./media/characters/veluren-thanazel/front.svg",
  41040. extra: 1486/636,
  41041. bottom: 238/1724
  41042. }
  41043. },
  41044. head: {
  41045. height: math.unit(21.4, "feet"),
  41046. name: "Head",
  41047. image: {
  41048. source: "./media/characters/veluren-thanazel/head.svg"
  41049. }
  41050. },
  41051. genitals: {
  41052. height: math.unit(19.4, "feet"),
  41053. name: "Genitals",
  41054. image: {
  41055. source: "./media/characters/veluren-thanazel/genitals.svg"
  41056. }
  41057. },
  41058. },
  41059. [
  41060. {
  41061. name: "Social",
  41062. height: math.unit(6, "feet")
  41063. },
  41064. {
  41065. name: "Play",
  41066. height: math.unit(12, "feet")
  41067. },
  41068. {
  41069. name: "True",
  41070. height: math.unit(30, "feet"),
  41071. default: true
  41072. },
  41073. ]
  41074. ))
  41075. characterMakers.push(() => makeCharacter(
  41076. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41077. {
  41078. front: {
  41079. height: math.unit(7 + 6/12, "feet"),
  41080. weight: math.unit(500, "kg"),
  41081. name: "Front",
  41082. image: {
  41083. source: "./media/characters/arcturas/front.svg",
  41084. extra: 1700/1500,
  41085. bottom: 145/1845
  41086. }
  41087. },
  41088. },
  41089. [
  41090. {
  41091. name: "Normal",
  41092. height: math.unit(7 + 6/12, "feet"),
  41093. default: true
  41094. },
  41095. ]
  41096. ))
  41097. characterMakers.push(() => makeCharacter(
  41098. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41099. {
  41100. side: {
  41101. height: math.unit(6, "feet"),
  41102. weight: math.unit(2, "tons"),
  41103. name: "Side",
  41104. image: {
  41105. source: "./media/characters/vitaen/side.svg",
  41106. extra: 1157/617,
  41107. bottom: 122/1279
  41108. }
  41109. },
  41110. },
  41111. [
  41112. {
  41113. name: "Normal",
  41114. height: math.unit(6, "feet"),
  41115. default: true
  41116. },
  41117. ]
  41118. ))
  41119. characterMakers.push(() => makeCharacter(
  41120. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41121. {
  41122. front: {
  41123. height: math.unit(19, "feet"),
  41124. name: "Front",
  41125. image: {
  41126. source: "./media/characters/fia-dreamweaver/front.svg",
  41127. extra: 1630/1504,
  41128. bottom: 25/1655
  41129. }
  41130. },
  41131. },
  41132. [
  41133. {
  41134. name: "Normal",
  41135. height: math.unit(19, "feet"),
  41136. default: true
  41137. },
  41138. ]
  41139. ))
  41140. characterMakers.push(() => makeCharacter(
  41141. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41142. {
  41143. front: {
  41144. height: math.unit(5 + 4/12, "feet"),
  41145. name: "Front",
  41146. image: {
  41147. source: "./media/characters/artan/front.svg",
  41148. extra: 1618/1535,
  41149. bottom: 46/1664
  41150. }
  41151. },
  41152. back: {
  41153. height: math.unit(5 + 4/12, "feet"),
  41154. name: "Back",
  41155. image: {
  41156. source: "./media/characters/artan/back.svg",
  41157. extra: 1618/1543,
  41158. bottom: 31/1649
  41159. }
  41160. },
  41161. },
  41162. [
  41163. {
  41164. name: "Normal",
  41165. height: math.unit(5 + 4/12, "feet"),
  41166. default: true
  41167. },
  41168. ]
  41169. ))
  41170. characterMakers.push(() => makeCharacter(
  41171. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41172. {
  41173. side: {
  41174. height: math.unit(182, "cm"),
  41175. weight: math.unit(1000, "lb"),
  41176. name: "Side",
  41177. image: {
  41178. source: "./media/characters/silver-dragon/side.svg",
  41179. extra: 710/287,
  41180. bottom: 88/798
  41181. }
  41182. },
  41183. },
  41184. [
  41185. {
  41186. name: "Normal",
  41187. height: math.unit(182, "cm"),
  41188. default: true
  41189. },
  41190. ]
  41191. ))
  41192. characterMakers.push(() => makeCharacter(
  41193. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41194. {
  41195. side: {
  41196. height: math.unit(6 + 6/12, "feet"),
  41197. weight: math.unit(1.5, "tons"),
  41198. name: "Side",
  41199. image: {
  41200. source: "./media/characters/zephyr/side.svg",
  41201. extra: 1433/586,
  41202. bottom: 109/1542
  41203. }
  41204. },
  41205. },
  41206. [
  41207. {
  41208. name: "Normal",
  41209. height: math.unit(6 + 6/12, "feet"),
  41210. default: true
  41211. },
  41212. ]
  41213. ))
  41214. characterMakers.push(() => makeCharacter(
  41215. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41216. {
  41217. side: {
  41218. height: math.unit(1, "feet"),
  41219. name: "Side",
  41220. image: {
  41221. source: "./media/characters/vixye/side.svg",
  41222. extra: 632/541,
  41223. bottom: 0/632
  41224. }
  41225. },
  41226. },
  41227. [
  41228. {
  41229. name: "Normal",
  41230. height: math.unit(1, "feet"),
  41231. default: true
  41232. },
  41233. {
  41234. name: "True",
  41235. height: math.unit(1e15, "multiverses")
  41236. },
  41237. ]
  41238. ))
  41239. characterMakers.push(() => makeCharacter(
  41240. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41241. {
  41242. front: {
  41243. height: math.unit(8 + 2/12, "feet"),
  41244. weight: math.unit(650, "lb"),
  41245. name: "Front",
  41246. image: {
  41247. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41248. extra: 1174/1137,
  41249. bottom: 82/1256
  41250. }
  41251. },
  41252. back: {
  41253. height: math.unit(8 + 2/12, "feet"),
  41254. weight: math.unit(650, "lb"),
  41255. name: "Back",
  41256. image: {
  41257. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41258. extra: 1204/1157,
  41259. bottom: 46/1250
  41260. }
  41261. },
  41262. },
  41263. [
  41264. {
  41265. name: "Wildform",
  41266. height: math.unit(8 + 2/12, "feet"),
  41267. default: true
  41268. },
  41269. ]
  41270. ))
  41271. characterMakers.push(() => makeCharacter(
  41272. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41273. {
  41274. front: {
  41275. height: math.unit(18, "feet"),
  41276. name: "Front",
  41277. image: {
  41278. source: "./media/characters/cyphin/front.svg",
  41279. extra: 970/886,
  41280. bottom: 42/1012
  41281. }
  41282. },
  41283. back: {
  41284. height: math.unit(18, "feet"),
  41285. name: "Back",
  41286. image: {
  41287. source: "./media/characters/cyphin/back.svg",
  41288. extra: 1009/894,
  41289. bottom: 24/1033
  41290. }
  41291. },
  41292. head: {
  41293. height: math.unit(5.05, "feet"),
  41294. name: "Head",
  41295. image: {
  41296. source: "./media/characters/cyphin/head.svg"
  41297. }
  41298. },
  41299. tailbud: {
  41300. height: math.unit(5, "feet"),
  41301. name: "Tailbud",
  41302. image: {
  41303. source: "./media/characters/cyphin/tailbud.svg"
  41304. }
  41305. },
  41306. },
  41307. [
  41308. ]
  41309. ))
  41310. characterMakers.push(() => makeCharacter(
  41311. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41312. {
  41313. side: {
  41314. height: math.unit(10, "feet"),
  41315. weight: math.unit(6, "tons"),
  41316. name: "Side",
  41317. image: {
  41318. source: "./media/characters/raijin/side.svg",
  41319. extra: 1529/613,
  41320. bottom: 337/1866
  41321. }
  41322. },
  41323. },
  41324. [
  41325. {
  41326. name: "Normal",
  41327. height: math.unit(10, "feet"),
  41328. default: true
  41329. },
  41330. ]
  41331. ))
  41332. characterMakers.push(() => makeCharacter(
  41333. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41334. {
  41335. side: {
  41336. height: math.unit(9, "feet"),
  41337. name: "Side",
  41338. image: {
  41339. source: "./media/characters/nilghais/side.svg",
  41340. extra: 1047/744,
  41341. bottom: 91/1138
  41342. }
  41343. },
  41344. head: {
  41345. height: math.unit(3.14, "feet"),
  41346. name: "Head",
  41347. image: {
  41348. source: "./media/characters/nilghais/head.svg"
  41349. }
  41350. },
  41351. mouth: {
  41352. height: math.unit(4.6, "feet"),
  41353. name: "Mouth",
  41354. image: {
  41355. source: "./media/characters/nilghais/mouth.svg"
  41356. }
  41357. },
  41358. wings: {
  41359. height: math.unit(24, "feet"),
  41360. name: "Wings",
  41361. image: {
  41362. source: "./media/characters/nilghais/wings.svg"
  41363. }
  41364. },
  41365. ass: {
  41366. height: math.unit(6.12, "feet"),
  41367. name: "Ass",
  41368. image: {
  41369. source: "./media/characters/nilghais/ass.svg"
  41370. }
  41371. },
  41372. },
  41373. [
  41374. {
  41375. name: "Normal",
  41376. height: math.unit(9, "feet"),
  41377. default: true
  41378. },
  41379. ]
  41380. ))
  41381. characterMakers.push(() => makeCharacter(
  41382. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41383. {
  41384. regular: {
  41385. height: math.unit(16 + 2/12, "feet"),
  41386. weight: math.unit(2300, "lb"),
  41387. name: "Regular",
  41388. image: {
  41389. source: "./media/characters/zolgar/regular.svg",
  41390. extra: 1246/1004,
  41391. bottom: 124/1370
  41392. }
  41393. },
  41394. boxers: {
  41395. height: math.unit(16 + 2/12, "feet"),
  41396. weight: math.unit(2300, "lb"),
  41397. name: "Boxers",
  41398. image: {
  41399. source: "./media/characters/zolgar/boxers.svg",
  41400. extra: 1246/1004,
  41401. bottom: 124/1370
  41402. }
  41403. },
  41404. armored: {
  41405. height: math.unit(16 + 2/12, "feet"),
  41406. weight: math.unit(2300, "lb"),
  41407. name: "Armored",
  41408. image: {
  41409. source: "./media/characters/zolgar/armored.svg",
  41410. extra: 1246/1004,
  41411. bottom: 124/1370
  41412. }
  41413. },
  41414. goth: {
  41415. height: math.unit(16 + 2/12, "feet"),
  41416. weight: math.unit(2300, "lb"),
  41417. name: "Goth",
  41418. image: {
  41419. source: "./media/characters/zolgar/goth.svg",
  41420. extra: 1246/1004,
  41421. bottom: 124/1370
  41422. }
  41423. },
  41424. },
  41425. [
  41426. {
  41427. name: "Shrunken Down",
  41428. height: math.unit(9 + 2/12, "feet")
  41429. },
  41430. {
  41431. name: "Normal",
  41432. height: math.unit(16 + 2/12, "feet"),
  41433. default: true
  41434. },
  41435. ]
  41436. ))
  41437. characterMakers.push(() => makeCharacter(
  41438. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41439. {
  41440. front: {
  41441. height: math.unit(6, "feet"),
  41442. weight: math.unit(168, "lb"),
  41443. name: "Front",
  41444. image: {
  41445. source: "./media/characters/luca/front.svg",
  41446. extra: 841/667,
  41447. bottom: 102/943
  41448. }
  41449. },
  41450. },
  41451. [
  41452. {
  41453. name: "Normal",
  41454. height: math.unit(6, "feet"),
  41455. default: true
  41456. },
  41457. ]
  41458. ))
  41459. characterMakers.push(() => makeCharacter(
  41460. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41461. {
  41462. side: {
  41463. height: math.unit(7 + 3/12, "feet"),
  41464. weight: math.unit(312, "lb"),
  41465. name: "Side",
  41466. image: {
  41467. source: "./media/characters/zezo/side.svg",
  41468. extra: 1192/1067,
  41469. bottom: 63/1255
  41470. }
  41471. },
  41472. },
  41473. [
  41474. {
  41475. name: "Normal",
  41476. height: math.unit(7 + 3/12, "feet"),
  41477. default: true
  41478. },
  41479. ]
  41480. ))
  41481. characterMakers.push(() => makeCharacter(
  41482. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41483. {
  41484. front: {
  41485. height: math.unit(5 + 5/12, "feet"),
  41486. weight: math.unit(170, "lb"),
  41487. name: "Front",
  41488. image: {
  41489. source: "./media/characters/mayso/front.svg",
  41490. extra: 1215/1108,
  41491. bottom: 16/1231
  41492. }
  41493. },
  41494. },
  41495. [
  41496. {
  41497. name: "Normal",
  41498. height: math.unit(5 + 5/12, "feet"),
  41499. default: true
  41500. },
  41501. ]
  41502. ))
  41503. characterMakers.push(() => makeCharacter(
  41504. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41505. {
  41506. front: {
  41507. height: math.unit(4 + 3/12, "feet"),
  41508. weight: math.unit(80, "lb"),
  41509. name: "Front",
  41510. image: {
  41511. source: "./media/characters/hess/front.svg",
  41512. extra: 1200/1123,
  41513. bottom: 16/1216
  41514. }
  41515. },
  41516. },
  41517. [
  41518. {
  41519. name: "Normal",
  41520. height: math.unit(4 + 3/12, "feet"),
  41521. default: true
  41522. },
  41523. ]
  41524. ))
  41525. characterMakers.push(() => makeCharacter(
  41526. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41527. {
  41528. front: {
  41529. height: math.unit(1.9, "meters"),
  41530. name: "Front",
  41531. image: {
  41532. source: "./media/characters/ashgar/front.svg",
  41533. extra: 1177/1146,
  41534. bottom: 99/1276
  41535. }
  41536. },
  41537. back: {
  41538. height: math.unit(1.9, "meters"),
  41539. name: "Back",
  41540. image: {
  41541. source: "./media/characters/ashgar/back.svg",
  41542. extra: 1201/1183,
  41543. bottom: 53/1254
  41544. }
  41545. },
  41546. feral: {
  41547. height: math.unit(1.4, "meters"),
  41548. name: "Feral",
  41549. image: {
  41550. source: "./media/characters/ashgar/feral.svg",
  41551. extra: 370/345,
  41552. bottom: 45/415
  41553. }
  41554. },
  41555. },
  41556. [
  41557. {
  41558. name: "Normal",
  41559. height: math.unit(1.9, "meters"),
  41560. default: true
  41561. },
  41562. ]
  41563. ))
  41564. characterMakers.push(() => makeCharacter(
  41565. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41566. {
  41567. regular: {
  41568. height: math.unit(6, "feet"),
  41569. weight: math.unit(220, "lb"),
  41570. name: "Regular",
  41571. image: {
  41572. source: "./media/characters/phillip/regular.svg",
  41573. extra: 1373/1277,
  41574. bottom: 75/1448
  41575. }
  41576. },
  41577. dressed: {
  41578. height: math.unit(6, "feet"),
  41579. weight: math.unit(220, "lb"),
  41580. name: "Dressed",
  41581. image: {
  41582. source: "./media/characters/phillip/dressed.svg",
  41583. extra: 1373/1277,
  41584. bottom: 75/1448
  41585. }
  41586. },
  41587. paw: {
  41588. height: math.unit(1.44, "feet"),
  41589. name: "Paw",
  41590. image: {
  41591. source: "./media/characters/phillip/paw.svg"
  41592. }
  41593. },
  41594. },
  41595. [
  41596. {
  41597. name: "Normal",
  41598. height: math.unit(6, "feet"),
  41599. default: true
  41600. },
  41601. ]
  41602. ))
  41603. characterMakers.push(() => makeCharacter(
  41604. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41605. {
  41606. side: {
  41607. height: math.unit(42, "feet"),
  41608. name: "Side",
  41609. image: {
  41610. source: "./media/characters/uvula/side.svg",
  41611. extra: 683/586,
  41612. bottom: 60/743
  41613. }
  41614. },
  41615. front: {
  41616. height: math.unit(42, "feet"),
  41617. name: "Front",
  41618. image: {
  41619. source: "./media/characters/uvula/front.svg",
  41620. extra: 705/613,
  41621. bottom: 54/759
  41622. }
  41623. },
  41624. maw: {
  41625. height: math.unit(23.5, "feet"),
  41626. name: "Maw",
  41627. image: {
  41628. source: "./media/characters/uvula/maw.svg"
  41629. }
  41630. },
  41631. },
  41632. [
  41633. {
  41634. name: "Original Size",
  41635. height: math.unit(14, "inches")
  41636. },
  41637. {
  41638. name: "Human Size",
  41639. height: math.unit(6, "feet")
  41640. },
  41641. {
  41642. name: "Big",
  41643. height: math.unit(42, "feet"),
  41644. default: true
  41645. },
  41646. {
  41647. name: "Bigger",
  41648. height: math.unit(100, "feet")
  41649. },
  41650. ]
  41651. ))
  41652. characterMakers.push(() => makeCharacter(
  41653. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  41654. {
  41655. front: {
  41656. height: math.unit(5 + 11/12, "feet"),
  41657. name: "Front",
  41658. image: {
  41659. source: "./media/characters/lannah/front.svg",
  41660. extra: 1208/1113,
  41661. bottom: 97/1305
  41662. }
  41663. },
  41664. },
  41665. [
  41666. {
  41667. name: "Normal",
  41668. height: math.unit(5 + 11/12, "feet"),
  41669. default: true
  41670. },
  41671. ]
  41672. ))
  41673. characterMakers.push(() => makeCharacter(
  41674. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  41675. {
  41676. front: {
  41677. height: math.unit(6 + 3/12, "feet"),
  41678. weight: math.unit(3.5, "tons"),
  41679. name: "Front",
  41680. image: {
  41681. source: "./media/characters/emberflame/front.svg",
  41682. extra: 1198/672,
  41683. bottom: 82/1280
  41684. }
  41685. },
  41686. side: {
  41687. height: math.unit(6 + 3/12, "feet"),
  41688. weight: math.unit(3.5, "tons"),
  41689. name: "Side",
  41690. image: {
  41691. source: "./media/characters/emberflame/side.svg",
  41692. extra: 938/527,
  41693. bottom: 56/994
  41694. }
  41695. },
  41696. },
  41697. [
  41698. {
  41699. name: "Normal",
  41700. height: math.unit(6 + 3/12, "feet"),
  41701. default: true
  41702. },
  41703. ]
  41704. ))
  41705. characterMakers.push(() => makeCharacter(
  41706. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  41707. {
  41708. side: {
  41709. height: math.unit(17.5, "feet"),
  41710. weight: math.unit(35, "tons"),
  41711. name: "Side",
  41712. image: {
  41713. source: "./media/characters/sophie-ambrose/side.svg",
  41714. extra: 1573/1242,
  41715. bottom: 71/1644
  41716. }
  41717. },
  41718. maw: {
  41719. height: math.unit(7.4, "feet"),
  41720. name: "Maw",
  41721. image: {
  41722. source: "./media/characters/sophie-ambrose/maw.svg"
  41723. }
  41724. },
  41725. },
  41726. [
  41727. {
  41728. name: "Normal",
  41729. height: math.unit(17.5, "feet"),
  41730. default: true
  41731. },
  41732. ]
  41733. ))
  41734. characterMakers.push(() => makeCharacter(
  41735. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  41736. {
  41737. front: {
  41738. height: math.unit(280, "feet"),
  41739. weight: math.unit(550, "tons"),
  41740. name: "Front",
  41741. image: {
  41742. source: "./media/characters/king-mugi/front.svg",
  41743. extra: 1102/947,
  41744. bottom: 104/1206
  41745. }
  41746. },
  41747. },
  41748. [
  41749. {
  41750. name: "King Mugi",
  41751. height: math.unit(280, "feet"),
  41752. default: true
  41753. },
  41754. ]
  41755. ))
  41756. characterMakers.push(() => makeCharacter(
  41757. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  41758. {
  41759. front: {
  41760. height: math.unit(64, "meters"),
  41761. name: "Front",
  41762. image: {
  41763. source: "./media/characters/nova-fox/front.svg",
  41764. extra: 1310/1246,
  41765. bottom: 65/1375
  41766. }
  41767. },
  41768. },
  41769. [
  41770. {
  41771. name: "Macro",
  41772. height: math.unit(64, "meters"),
  41773. default: true
  41774. },
  41775. ]
  41776. ))
  41777. characterMakers.push(() => makeCharacter(
  41778. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  41779. {
  41780. front: {
  41781. height: math.unit(6 + 3/12, "feet"),
  41782. weight: math.unit(170, "lb"),
  41783. name: "Front",
  41784. image: {
  41785. source: "./media/characters/sam-bat/front.svg",
  41786. extra: 1601/1411,
  41787. bottom: 125/1726
  41788. }
  41789. },
  41790. back: {
  41791. height: math.unit(6 + 3/12, "feet"),
  41792. weight: math.unit(170, "lb"),
  41793. name: "Back",
  41794. image: {
  41795. source: "./media/characters/sam-bat/back.svg",
  41796. extra: 1577/1405,
  41797. bottom: 58/1635
  41798. }
  41799. },
  41800. },
  41801. [
  41802. {
  41803. name: "Normal",
  41804. height: math.unit(6 + 3/12, "feet"),
  41805. default: true
  41806. },
  41807. ]
  41808. ))
  41809. characterMakers.push(() => makeCharacter(
  41810. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  41811. {
  41812. front: {
  41813. height: math.unit(59, "feet"),
  41814. weight: math.unit(40000, "lb"),
  41815. name: "Front",
  41816. image: {
  41817. source: "./media/characters/inari/front.svg",
  41818. extra: 1884/1350,
  41819. bottom: 95/1979
  41820. }
  41821. },
  41822. },
  41823. [
  41824. {
  41825. name: "Gigantamax",
  41826. height: math.unit(59, "feet"),
  41827. default: true
  41828. },
  41829. ]
  41830. ))
  41831. characterMakers.push(() => makeCharacter(
  41832. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  41833. {
  41834. front: {
  41835. height: math.unit(5 + 8/12, "feet"),
  41836. name: "Front",
  41837. image: {
  41838. source: "./media/characters/elizabeth/front.svg",
  41839. extra: 1395/1298,
  41840. bottom: 54/1449
  41841. }
  41842. },
  41843. mouth: {
  41844. height: math.unit(1.97, "feet"),
  41845. name: "Mouth",
  41846. image: {
  41847. source: "./media/characters/elizabeth/mouth.svg"
  41848. }
  41849. },
  41850. foot: {
  41851. height: math.unit(1.17, "feet"),
  41852. name: "Foot",
  41853. image: {
  41854. source: "./media/characters/elizabeth/foot.svg"
  41855. }
  41856. },
  41857. },
  41858. [
  41859. {
  41860. name: "Normal",
  41861. height: math.unit(5 + 8/12, "feet"),
  41862. default: true
  41863. },
  41864. {
  41865. name: "Minimacro",
  41866. height: math.unit(18, "feet")
  41867. },
  41868. {
  41869. name: "Macro",
  41870. height: math.unit(180, "feet")
  41871. },
  41872. ]
  41873. ))
  41874. characterMakers.push(() => makeCharacter(
  41875. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  41876. {
  41877. front: {
  41878. height: math.unit(5 + 2/12, "feet"),
  41879. name: "Front",
  41880. image: {
  41881. source: "./media/characters/october-gossamer/front.svg",
  41882. extra: 505/454,
  41883. bottom: 7/512
  41884. }
  41885. },
  41886. back: {
  41887. height: math.unit(5 + 2/12, "feet"),
  41888. name: "Back",
  41889. image: {
  41890. source: "./media/characters/october-gossamer/back.svg",
  41891. extra: 501/454,
  41892. bottom: 11/512
  41893. }
  41894. },
  41895. },
  41896. [
  41897. {
  41898. name: "Normal",
  41899. height: math.unit(5 + 2/12, "feet"),
  41900. default: true
  41901. },
  41902. ]
  41903. ))
  41904. characterMakers.push(() => makeCharacter(
  41905. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  41906. {
  41907. front: {
  41908. height: math.unit(5, "feet"),
  41909. name: "Front",
  41910. image: {
  41911. source: "./media/characters/epiglottis/front.svg",
  41912. extra: 923/849,
  41913. bottom: 17/940
  41914. }
  41915. },
  41916. },
  41917. [
  41918. {
  41919. name: "Original Size",
  41920. height: math.unit(10, "inches")
  41921. },
  41922. {
  41923. name: "Human Size",
  41924. height: math.unit(5, "feet"),
  41925. default: true
  41926. },
  41927. {
  41928. name: "Big",
  41929. height: math.unit(25, "feet")
  41930. },
  41931. {
  41932. name: "Bigger",
  41933. height: math.unit(50, "feet")
  41934. },
  41935. {
  41936. name: "oh lawd",
  41937. height: math.unit(75, "feet")
  41938. },
  41939. ]
  41940. ))
  41941. characterMakers.push(() => makeCharacter(
  41942. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  41943. {
  41944. front: {
  41945. height: math.unit(2 + 4/12, "feet"),
  41946. weight: math.unit(60, "lb"),
  41947. name: "Front",
  41948. image: {
  41949. source: "./media/characters/lerm/front.svg",
  41950. extra: 796/790,
  41951. bottom: 79/875
  41952. }
  41953. },
  41954. },
  41955. [
  41956. {
  41957. name: "Normal",
  41958. height: math.unit(2 + 4/12, "feet"),
  41959. default: true
  41960. },
  41961. ]
  41962. ))
  41963. characterMakers.push(() => makeCharacter(
  41964. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  41965. {
  41966. front: {
  41967. height: math.unit(5.5, "feet"),
  41968. weight: math.unit(130, "lb"),
  41969. name: "Front",
  41970. image: {
  41971. source: "./media/characters/xena-nebadon/front.svg",
  41972. extra: 1828/1730,
  41973. bottom: 79/1907
  41974. }
  41975. },
  41976. },
  41977. [
  41978. {
  41979. name: "Tiny Puppy",
  41980. height: math.unit(3, "inches")
  41981. },
  41982. {
  41983. name: "Normal",
  41984. height: math.unit(5.5, "feet"),
  41985. default: true
  41986. },
  41987. {
  41988. name: "Lotta Lady",
  41989. height: math.unit(12, "feet")
  41990. },
  41991. {
  41992. name: "Pretty Big",
  41993. height: math.unit(100, "feet")
  41994. },
  41995. {
  41996. name: "Big",
  41997. height: math.unit(500, "feet")
  41998. },
  41999. {
  42000. name: "Skyscraper Toys",
  42001. height: math.unit(2500, "feet")
  42002. },
  42003. {
  42004. name: "Plane Catcher",
  42005. height: math.unit(8, "miles")
  42006. },
  42007. {
  42008. name: "Planet Toys",
  42009. height: math.unit(15, "earths")
  42010. },
  42011. {
  42012. name: "Stardust",
  42013. height: math.unit(0.25, "galaxies")
  42014. },
  42015. {
  42016. name: "Snacks",
  42017. height: math.unit(70, "universes")
  42018. },
  42019. ]
  42020. ))
  42021. characterMakers.push(() => makeCharacter(
  42022. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42023. {
  42024. front: {
  42025. height: math.unit(1.6, "meters"),
  42026. weight: math.unit(60, "kg"),
  42027. name: "Front",
  42028. image: {
  42029. source: "./media/characters/bounty/front.svg",
  42030. extra: 1426/1308,
  42031. bottom: 15/1441
  42032. }
  42033. },
  42034. },
  42035. [
  42036. {
  42037. name: "Normal",
  42038. height: math.unit(1.6, "meters"),
  42039. default: true
  42040. },
  42041. {
  42042. name: "Macro",
  42043. height: math.unit(300, "meters")
  42044. },
  42045. ]
  42046. ))
  42047. characterMakers.push(() => makeCharacter(
  42048. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42049. {
  42050. front: {
  42051. height: math.unit(2 + 8/12, "feet"),
  42052. weight: math.unit(15, "lb"),
  42053. name: "Front",
  42054. image: {
  42055. source: "./media/characters/mochi/front.svg",
  42056. extra: 1022/852,
  42057. bottom: 435/1457
  42058. }
  42059. },
  42060. back: {
  42061. height: math.unit(2 + 8/12, "feet"),
  42062. weight: math.unit(15, "lb"),
  42063. name: "Back",
  42064. image: {
  42065. source: "./media/characters/mochi/back.svg",
  42066. extra: 1335/1119,
  42067. bottom: 39/1374
  42068. }
  42069. },
  42070. bird: {
  42071. height: math.unit(2 + 8/12, "feet"),
  42072. weight: math.unit(15, "lb"),
  42073. name: "Bird",
  42074. image: {
  42075. source: "./media/characters/mochi/bird.svg",
  42076. extra: 1251/1113,
  42077. bottom: 178/1429
  42078. }
  42079. },
  42080. kaiju: {
  42081. height: math.unit(154, "feet"),
  42082. weight: math.unit(1e7, "lb"),
  42083. name: "Kaiju",
  42084. image: {
  42085. source: "./media/characters/mochi/kaiju.svg",
  42086. extra: 460/324,
  42087. bottom: 40/500
  42088. }
  42089. },
  42090. head: {
  42091. height: math.unit(1.21, "feet"),
  42092. name: "Head",
  42093. image: {
  42094. source: "./media/characters/mochi/head.svg"
  42095. }
  42096. },
  42097. alternateTail: {
  42098. height: math.unit(2 + 8/12, "feet"),
  42099. weight: math.unit(45, "lb"),
  42100. name: "Alternate Tail",
  42101. image: {
  42102. source: "./media/characters/mochi/alternate-tail.svg",
  42103. extra: 139/76,
  42104. bottom: 45/184
  42105. }
  42106. },
  42107. },
  42108. [
  42109. {
  42110. name: "Micro",
  42111. height: math.unit(2, "inches")
  42112. },
  42113. {
  42114. name: "Normal",
  42115. height: math.unit(2 + 8/12, "feet"),
  42116. default: true
  42117. },
  42118. {
  42119. name: "Macro",
  42120. height: math.unit(106, "feet")
  42121. },
  42122. ]
  42123. ))
  42124. characterMakers.push(() => makeCharacter(
  42125. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42126. {
  42127. front: {
  42128. height: math.unit(5.67, "feet"),
  42129. weight: math.unit(135, "lb"),
  42130. name: "Front",
  42131. image: {
  42132. source: "./media/characters/sarel/front.svg",
  42133. extra: 865/788,
  42134. bottom: 97/962
  42135. }
  42136. },
  42137. back: {
  42138. height: math.unit(5.67, "feet"),
  42139. weight: math.unit(135, "lb"),
  42140. name: "Back",
  42141. image: {
  42142. source: "./media/characters/sarel/back.svg",
  42143. extra: 857/777,
  42144. bottom: 32/889
  42145. }
  42146. },
  42147. chozoan: {
  42148. height: math.unit(5.67, "feet"),
  42149. weight: math.unit(135, "lb"),
  42150. name: "Chozoan",
  42151. image: {
  42152. source: "./media/characters/sarel/chozoan.svg",
  42153. extra: 865/788,
  42154. bottom: 97/962
  42155. }
  42156. },
  42157. current: {
  42158. height: math.unit(5.67, "feet"),
  42159. weight: math.unit(135, "lb"),
  42160. name: "Current",
  42161. image: {
  42162. source: "./media/characters/sarel/current.svg",
  42163. extra: 865/788,
  42164. bottom: 97/962
  42165. }
  42166. },
  42167. head: {
  42168. height: math.unit(1.77, "feet"),
  42169. name: "Head",
  42170. image: {
  42171. source: "./media/characters/sarel/head.svg"
  42172. }
  42173. },
  42174. claws: {
  42175. height: math.unit(1.8, "feet"),
  42176. name: "Claws",
  42177. image: {
  42178. source: "./media/characters/sarel/claws.svg"
  42179. }
  42180. },
  42181. clawsAlt: {
  42182. height: math.unit(1.8, "feet"),
  42183. name: "Claws-alt",
  42184. image: {
  42185. source: "./media/characters/sarel/claws-alt.svg"
  42186. }
  42187. },
  42188. },
  42189. [
  42190. {
  42191. name: "Normal",
  42192. height: math.unit(5.67, "feet"),
  42193. default: true
  42194. },
  42195. ]
  42196. ))
  42197. characterMakers.push(() => makeCharacter(
  42198. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42199. {
  42200. front: {
  42201. height: math.unit(5500, "feet"),
  42202. name: "Front",
  42203. image: {
  42204. source: "./media/characters/alyonia/front.svg",
  42205. extra: 1200/1135,
  42206. bottom: 29/1229
  42207. }
  42208. },
  42209. back: {
  42210. height: math.unit(5500, "feet"),
  42211. name: "Back",
  42212. image: {
  42213. source: "./media/characters/alyonia/back.svg",
  42214. extra: 1205/1138,
  42215. bottom: 10/1215
  42216. }
  42217. },
  42218. },
  42219. [
  42220. {
  42221. name: "Small",
  42222. height: math.unit(10, "feet")
  42223. },
  42224. {
  42225. name: "Macro",
  42226. height: math.unit(500, "feet")
  42227. },
  42228. {
  42229. name: "Mega Macro",
  42230. height: math.unit(5500, "feet"),
  42231. default: true
  42232. },
  42233. {
  42234. name: "Mega Macro+",
  42235. height: math.unit(500000, "feet")
  42236. },
  42237. {
  42238. name: "Giga Macro",
  42239. height: math.unit(3000, "miles")
  42240. },
  42241. {
  42242. name: "Tera Macro",
  42243. height: math.unit(2.8e6, "miles")
  42244. },
  42245. {
  42246. name: "Galactic",
  42247. height: math.unit(120000, "lightyears")
  42248. },
  42249. ]
  42250. ))
  42251. characterMakers.push(() => makeCharacter(
  42252. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42253. {
  42254. werewolf: {
  42255. height: math.unit(8, "feet"),
  42256. weight: math.unit(425, "lb"),
  42257. name: "Werewolf",
  42258. image: {
  42259. source: "./media/characters/autumn/werewolf.svg",
  42260. extra: 2154/2031,
  42261. bottom: 160/2314
  42262. }
  42263. },
  42264. human: {
  42265. height: math.unit(5 + 8/12, "feet"),
  42266. weight: math.unit(150, "lb"),
  42267. name: "Human",
  42268. image: {
  42269. source: "./media/characters/autumn/human.svg",
  42270. extra: 1200/1149,
  42271. bottom: 30/1230
  42272. }
  42273. },
  42274. },
  42275. [
  42276. {
  42277. name: "Normal",
  42278. height: math.unit(8, "feet"),
  42279. default: true
  42280. },
  42281. ]
  42282. ))
  42283. characterMakers.push(() => makeCharacter(
  42284. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42285. {
  42286. front: {
  42287. height: math.unit(8 + 5/12, "feet"),
  42288. weight: math.unit(825, "lb"),
  42289. name: "Front",
  42290. image: {
  42291. source: "./media/characters/cobalt-charizard/front.svg",
  42292. extra: 1268/1155,
  42293. bottom: 122/1390
  42294. }
  42295. },
  42296. side: {
  42297. height: math.unit(8 + 5/12, "feet"),
  42298. weight: math.unit(825, "lb"),
  42299. name: "Side",
  42300. image: {
  42301. source: "./media/characters/cobalt-charizard/side.svg",
  42302. extra: 1348/1257,
  42303. bottom: 58/1406
  42304. }
  42305. },
  42306. gMax: {
  42307. height: math.unit(134 + 11/12, "feet"),
  42308. name: "G-Max",
  42309. image: {
  42310. source: "./media/characters/cobalt-charizard/g-max.svg",
  42311. extra: 1835/1541,
  42312. bottom: 151/1986
  42313. }
  42314. },
  42315. },
  42316. [
  42317. {
  42318. name: "Normal",
  42319. height: math.unit(8 + 5/12, "feet"),
  42320. default: true
  42321. },
  42322. ]
  42323. ))
  42324. characterMakers.push(() => makeCharacter(
  42325. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42326. {
  42327. front: {
  42328. height: math.unit(6 + 3/12, "feet"),
  42329. weight: math.unit(210, "lb"),
  42330. name: "Front",
  42331. image: {
  42332. source: "./media/characters/stella/front.svg",
  42333. extra: 3549/3335,
  42334. bottom: 51/3600
  42335. }
  42336. },
  42337. },
  42338. [
  42339. {
  42340. name: "Normal",
  42341. height: math.unit(6 + 3/12, "feet"),
  42342. default: true
  42343. },
  42344. ]
  42345. ))
  42346. characterMakers.push(() => makeCharacter(
  42347. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42348. {
  42349. front: {
  42350. height: math.unit(5, "feet"),
  42351. weight: math.unit(90, "lb"),
  42352. name: "Front",
  42353. image: {
  42354. source: "./media/characters/riley-bishop/front.svg",
  42355. extra: 1450/1428,
  42356. bottom: 152/1602
  42357. }
  42358. },
  42359. },
  42360. [
  42361. {
  42362. name: "Normal",
  42363. height: math.unit(5, "feet"),
  42364. default: true
  42365. },
  42366. ]
  42367. ))
  42368. characterMakers.push(() => makeCharacter(
  42369. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42370. {
  42371. side: {
  42372. height: math.unit(8 + 2/12, "feet"),
  42373. weight: math.unit(500, "kg"),
  42374. name: "Side",
  42375. image: {
  42376. source: "./media/characters/theo-arcanine/side.svg",
  42377. extra: 1342/1074,
  42378. bottom: 111/1453
  42379. }
  42380. },
  42381. },
  42382. [
  42383. {
  42384. name: "Normal",
  42385. height: math.unit(8 + 2/12, "feet"),
  42386. default: true
  42387. },
  42388. ]
  42389. ))
  42390. characterMakers.push(() => makeCharacter(
  42391. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42392. {
  42393. front: {
  42394. height: math.unit(4, "feet"),
  42395. name: "Front",
  42396. image: {
  42397. source: "./media/characters/kali/front.svg",
  42398. extra: 1921/1357,
  42399. bottom: 70/1991
  42400. }
  42401. },
  42402. },
  42403. [
  42404. {
  42405. name: "Normal",
  42406. height: math.unit(4, "feet"),
  42407. default: true
  42408. },
  42409. {
  42410. name: "Macro",
  42411. height: math.unit(32, "meters")
  42412. },
  42413. {
  42414. name: "Macro+",
  42415. height: math.unit(150, "meters")
  42416. },
  42417. {
  42418. name: "Megamacro",
  42419. height: math.unit(7500, "meters")
  42420. },
  42421. {
  42422. name: "Megamacro+",
  42423. height: math.unit(80, "kilometers")
  42424. },
  42425. ]
  42426. ))
  42427. characterMakers.push(() => makeCharacter(
  42428. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42429. {
  42430. side: {
  42431. height: math.unit(5 + 11/12, "feet"),
  42432. weight: math.unit(236, "lb"),
  42433. name: "Side",
  42434. image: {
  42435. source: "./media/characters/gapp/side.svg",
  42436. extra: 775/340,
  42437. bottom: 58/833
  42438. }
  42439. },
  42440. mouth: {
  42441. height: math.unit(2.98, "feet"),
  42442. name: "Mouth",
  42443. image: {
  42444. source: "./media/characters/gapp/mouth.svg"
  42445. }
  42446. },
  42447. },
  42448. [
  42449. {
  42450. name: "Normal",
  42451. height: math.unit(5 + 1/12, "feet"),
  42452. default: true
  42453. },
  42454. ]
  42455. ))
  42456. characterMakers.push(() => makeCharacter(
  42457. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42458. {
  42459. front: {
  42460. height: math.unit(6, "feet"),
  42461. name: "Front",
  42462. image: {
  42463. source: "./media/characters/persephone/front.svg",
  42464. extra: 1895/1717,
  42465. bottom: 96/1991
  42466. }
  42467. },
  42468. back: {
  42469. height: math.unit(6, "feet"),
  42470. name: "Back",
  42471. image: {
  42472. source: "./media/characters/persephone/back.svg",
  42473. extra: 1868/1679,
  42474. bottom: 26/1894
  42475. }
  42476. },
  42477. casual: {
  42478. height: math.unit(6, "feet"),
  42479. name: "Casual",
  42480. image: {
  42481. source: "./media/characters/persephone/casual.svg",
  42482. extra: 1713/1541,
  42483. bottom: 76/1789
  42484. }
  42485. },
  42486. },
  42487. [
  42488. {
  42489. name: "Human Size",
  42490. height: math.unit(6, "feet"),
  42491. default: true
  42492. },
  42493. {
  42494. name: "Galaxy Brain",
  42495. height: math.unit(1, "zettameter")
  42496. },
  42497. ]
  42498. ))
  42499. characterMakers.push(() => makeCharacter(
  42500. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42501. {
  42502. front: {
  42503. height: math.unit(1.85, "meters"),
  42504. name: "Front",
  42505. image: {
  42506. source: "./media/characters/riley-foxthing/front.svg",
  42507. extra: 1495/1354,
  42508. bottom: 122/1617
  42509. }
  42510. },
  42511. frontAlt: {
  42512. height: math.unit(1.85, "meters"),
  42513. name: "Front (Alt)",
  42514. image: {
  42515. source: "./media/characters/riley-foxthing/front-alt.svg",
  42516. extra: 1572/1389,
  42517. bottom: 116/1688
  42518. }
  42519. },
  42520. },
  42521. [
  42522. {
  42523. name: "Normal Sized",
  42524. height: math.unit(1.85, "meters"),
  42525. default: true
  42526. },
  42527. {
  42528. name: "Quite Sizable",
  42529. height: math.unit(5, "meters")
  42530. },
  42531. {
  42532. name: "Rather Large",
  42533. height: math.unit(20, "meters")
  42534. },
  42535. {
  42536. name: "Macro",
  42537. height: math.unit(450, "meters")
  42538. },
  42539. {
  42540. name: "Giga",
  42541. height: math.unit(5, "km")
  42542. },
  42543. ]
  42544. ))
  42545. characterMakers.push(() => makeCharacter(
  42546. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42547. {
  42548. front: {
  42549. height: math.unit(6, "feet"),
  42550. weight: math.unit(200, "lb"),
  42551. name: "Front",
  42552. image: {
  42553. source: "./media/characters/blizzard/front.svg",
  42554. extra: 1136/990,
  42555. bottom: 136/1272
  42556. }
  42557. },
  42558. back: {
  42559. height: math.unit(6, "feet"),
  42560. weight: math.unit(200, "lb"),
  42561. name: "Back",
  42562. image: {
  42563. source: "./media/characters/blizzard/back.svg",
  42564. extra: 1175/1034,
  42565. bottom: 97/1272
  42566. }
  42567. },
  42568. sitting: {
  42569. height: math.unit(3.725, "feet"),
  42570. weight: math.unit(200, "lb"),
  42571. name: "Sitting",
  42572. image: {
  42573. source: "./media/characters/blizzard/sitting.svg",
  42574. extra: 581/485,
  42575. bottom: 90/671
  42576. }
  42577. },
  42578. frontWizard: {
  42579. height: math.unit(7.9, "feet"),
  42580. weight: math.unit(200, "lb"),
  42581. name: "Front (Wizard)",
  42582. image: {
  42583. source: "./media/characters/blizzard/front-wizard.svg"
  42584. }
  42585. },
  42586. backWizard: {
  42587. height: math.unit(7.9, "feet"),
  42588. weight: math.unit(200, "lb"),
  42589. name: "Back (Wizard)",
  42590. image: {
  42591. source: "./media/characters/blizzard/back-wizard.svg"
  42592. }
  42593. },
  42594. frontNsfw: {
  42595. height: math.unit(6, "feet"),
  42596. weight: math.unit(200, "lb"),
  42597. name: "Front (NSFW)",
  42598. image: {
  42599. source: "./media/characters/blizzard/front-nsfw.svg",
  42600. extra: 1136/990,
  42601. bottom: 136/1272
  42602. }
  42603. },
  42604. backNsfw: {
  42605. height: math.unit(6, "feet"),
  42606. weight: math.unit(200, "lb"),
  42607. name: "Back (NSFW)",
  42608. image: {
  42609. source: "./media/characters/blizzard/back-nsfw.svg",
  42610. extra: 1175/1034,
  42611. bottom: 97/1272
  42612. }
  42613. },
  42614. sittingNsfw: {
  42615. height: math.unit(3.725, "feet"),
  42616. weight: math.unit(200, "lb"),
  42617. name: "Sitting (NSFW)",
  42618. image: {
  42619. source: "./media/characters/blizzard/sitting-nsfw.svg",
  42620. extra: 581/485,
  42621. bottom: 90/671
  42622. }
  42623. },
  42624. wizardFrontNsfw: {
  42625. height: math.unit(7.9, "feet"),
  42626. weight: math.unit(200, "lb"),
  42627. name: "Wizard (Front, NSFW)",
  42628. image: {
  42629. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  42630. }
  42631. },
  42632. },
  42633. [
  42634. {
  42635. name: "Normal",
  42636. height: math.unit(6, "feet"),
  42637. default: true
  42638. },
  42639. ]
  42640. ))
  42641. characterMakers.push(() => makeCharacter(
  42642. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  42643. {
  42644. front: {
  42645. height: math.unit(5 + 2/12, "feet"),
  42646. name: "Front",
  42647. image: {
  42648. source: "./media/characters/lumi/front.svg",
  42649. extra: 1328/1268,
  42650. bottom: 103/1431
  42651. }
  42652. },
  42653. back: {
  42654. height: math.unit(5 + 2/12, "feet"),
  42655. name: "Back",
  42656. image: {
  42657. source: "./media/characters/lumi/back.svg",
  42658. extra: 1381/1327,
  42659. bottom: 43/1424
  42660. }
  42661. },
  42662. },
  42663. [
  42664. {
  42665. name: "Normal",
  42666. height: math.unit(5 + 2/12, "feet"),
  42667. default: true
  42668. },
  42669. ]
  42670. ))
  42671. characterMakers.push(() => makeCharacter(
  42672. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  42673. {
  42674. front: {
  42675. height: math.unit(5 + 9/12, "feet"),
  42676. name: "Front",
  42677. image: {
  42678. source: "./media/characters/aliya-cotton/front.svg",
  42679. extra: 577/564,
  42680. bottom: 29/606
  42681. }
  42682. },
  42683. },
  42684. [
  42685. {
  42686. name: "Normal",
  42687. height: math.unit(5 + 9/12, "feet"),
  42688. default: true
  42689. },
  42690. ]
  42691. ))
  42692. characterMakers.push(() => makeCharacter(
  42693. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  42694. {
  42695. front: {
  42696. height: math.unit(2.7, "meters"),
  42697. weight: math.unit(25000, "lb"),
  42698. name: "Front",
  42699. image: {
  42700. source: "./media/characters/noah-luxray/front.svg",
  42701. extra: 1644/825,
  42702. bottom: 339/1983
  42703. }
  42704. },
  42705. side: {
  42706. height: math.unit(2.97, "meters"),
  42707. weight: math.unit(25000, "lb"),
  42708. name: "Side",
  42709. image: {
  42710. source: "./media/characters/noah-luxray/side.svg",
  42711. extra: 1319/650,
  42712. bottom: 163/1482
  42713. }
  42714. },
  42715. dick: {
  42716. height: math.unit(7.4, "feet"),
  42717. weight: math.unit(2500, "lb"),
  42718. name: "Dick",
  42719. image: {
  42720. source: "./media/characters/noah-luxray/dick.svg"
  42721. }
  42722. },
  42723. dickAlt: {
  42724. height: math.unit(10.83, "feet"),
  42725. weight: math.unit(2500, "lb"),
  42726. name: "Dick-alt",
  42727. image: {
  42728. source: "./media/characters/noah-luxray/dick-alt.svg"
  42729. }
  42730. },
  42731. },
  42732. [
  42733. {
  42734. name: "BIG",
  42735. height: math.unit(2.7, "meters"),
  42736. default: true
  42737. },
  42738. ]
  42739. ))
  42740. characterMakers.push(() => makeCharacter(
  42741. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  42742. {
  42743. standing: {
  42744. height: math.unit(183, "cm"),
  42745. weight: math.unit(68, "kg"),
  42746. name: "Standing",
  42747. image: {
  42748. source: "./media/characters/arion/standing.svg",
  42749. extra: 1869/1807,
  42750. bottom: 93/1962
  42751. }
  42752. },
  42753. reclining: {
  42754. height: math.unit(70.5, "cm"),
  42755. weight: math.unit(68, "lb"),
  42756. name: "Reclining",
  42757. image: {
  42758. source: "./media/characters/arion/reclining.svg",
  42759. extra: 937/870,
  42760. bottom: 63/1000
  42761. }
  42762. },
  42763. },
  42764. [
  42765. {
  42766. name: "Colossus Size, Low",
  42767. height: math.unit(33, "meters"),
  42768. default: true
  42769. },
  42770. {
  42771. name: "Colossus Size, Mid",
  42772. height: math.unit(52, "meters")
  42773. },
  42774. {
  42775. name: "Colossus Size, High",
  42776. height: math.unit(60, "meters")
  42777. },
  42778. {
  42779. name: "Titan Size, Low",
  42780. height: math.unit(91, "meters"),
  42781. },
  42782. {
  42783. name: "Titan Size, Mid",
  42784. height: math.unit(122, "meters")
  42785. },
  42786. {
  42787. name: "Titan Size, High",
  42788. height: math.unit(162, "meters")
  42789. },
  42790. ]
  42791. ))
  42792. characterMakers.push(() => makeCharacter(
  42793. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  42794. {
  42795. front: {
  42796. height: math.unit(53, "meters"),
  42797. name: "Front",
  42798. image: {
  42799. source: "./media/characters/stellar-marbey/front.svg",
  42800. extra: 1913/1805,
  42801. bottom: 92/2005
  42802. }
  42803. },
  42804. back: {
  42805. height: math.unit(53, "meters"),
  42806. name: "Back",
  42807. image: {
  42808. source: "./media/characters/stellar-marbey/back.svg",
  42809. extra: 1960/1851,
  42810. bottom: 28/1988
  42811. }
  42812. },
  42813. mouth: {
  42814. height: math.unit(3.5, "meters"),
  42815. name: "Mouth",
  42816. image: {
  42817. source: "./media/characters/stellar-marbey/mouth.svg"
  42818. }
  42819. },
  42820. },
  42821. [
  42822. {
  42823. name: "Macro",
  42824. height: math.unit(53, "meters"),
  42825. default: true
  42826. },
  42827. ]
  42828. ))
  42829. characterMakers.push(() => makeCharacter(
  42830. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  42831. {
  42832. front: {
  42833. height: math.unit(8 + 1/12, "feet"),
  42834. weight: math.unit(233, "lb"),
  42835. name: "Front",
  42836. image: {
  42837. source: "./media/characters/matsu/front.svg",
  42838. extra: 832/772,
  42839. bottom: 40/872
  42840. }
  42841. },
  42842. back: {
  42843. height: math.unit(8 + 1/12, "feet"),
  42844. weight: math.unit(233, "lb"),
  42845. name: "Back",
  42846. image: {
  42847. source: "./media/characters/matsu/back.svg",
  42848. extra: 839/780,
  42849. bottom: 47/886
  42850. }
  42851. },
  42852. },
  42853. [
  42854. {
  42855. name: "Normal",
  42856. height: math.unit(8 + 1/12, "feet"),
  42857. default: true
  42858. },
  42859. ]
  42860. ))
  42861. characterMakers.push(() => makeCharacter(
  42862. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  42863. {
  42864. front: {
  42865. height: math.unit(4, "feet"),
  42866. weight: math.unit(148, "lb"),
  42867. name: "Front",
  42868. image: {
  42869. source: "./media/characters/thiz/front.svg",
  42870. extra: 1913/1748,
  42871. bottom: 62/1975
  42872. }
  42873. },
  42874. },
  42875. [
  42876. {
  42877. name: "Normal",
  42878. height: math.unit(4, "feet"),
  42879. default: true
  42880. },
  42881. ]
  42882. ))
  42883. characterMakers.push(() => makeCharacter(
  42884. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  42885. {
  42886. front: {
  42887. height: math.unit(7 + 6/12, "feet"),
  42888. weight: math.unit(267, "lb"),
  42889. name: "Front",
  42890. image: {
  42891. source: "./media/characters/marcel/front.svg",
  42892. extra: 1221/1096,
  42893. bottom: 76/1297
  42894. }
  42895. },
  42896. },
  42897. [
  42898. {
  42899. name: "Normal",
  42900. height: math.unit(7 + 6/12, "feet"),
  42901. default: true
  42902. },
  42903. ]
  42904. ))
  42905. characterMakers.push(() => makeCharacter(
  42906. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  42907. {
  42908. side: {
  42909. height: math.unit(42, "meters"),
  42910. name: "Side",
  42911. image: {
  42912. source: "./media/characters/flake/side.svg",
  42913. extra: 1525/1306,
  42914. bottom: 209/1734
  42915. }
  42916. },
  42917. },
  42918. [
  42919. {
  42920. name: "Normal",
  42921. height: math.unit(42, "meters"),
  42922. default: true
  42923. },
  42924. ]
  42925. ))
  42926. characterMakers.push(() => makeCharacter(
  42927. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  42928. {
  42929. dressed: {
  42930. height: math.unit(6 + 4/12, "feet"),
  42931. weight: math.unit(520, "lb"),
  42932. name: "Dressed",
  42933. image: {
  42934. source: "./media/characters/someonne/dressed.svg",
  42935. extra: 1020/1010,
  42936. bottom: 178/1198
  42937. }
  42938. },
  42939. undressed: {
  42940. height: math.unit(6 + 4/12, "feet"),
  42941. weight: math.unit(520, "lb"),
  42942. name: "Undressed",
  42943. image: {
  42944. source: "./media/characters/someonne/undressed.svg",
  42945. extra: 1019/1014,
  42946. bottom: 169/1188
  42947. }
  42948. },
  42949. },
  42950. [
  42951. {
  42952. name: "Normal",
  42953. height: math.unit(6 + 4/12, "feet"),
  42954. default: true
  42955. },
  42956. ]
  42957. ))
  42958. characterMakers.push(() => makeCharacter(
  42959. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  42960. {
  42961. front: {
  42962. height: math.unit(3, "feet"),
  42963. weight: math.unit(30, "lb"),
  42964. name: "Front",
  42965. image: {
  42966. source: "./media/characters/till/front.svg",
  42967. extra: 892/823,
  42968. bottom: 55/947
  42969. }
  42970. },
  42971. },
  42972. [
  42973. {
  42974. name: "Normal",
  42975. height: math.unit(3, "feet"),
  42976. default: true
  42977. },
  42978. ]
  42979. ))
  42980. characterMakers.push(() => makeCharacter(
  42981. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  42982. {
  42983. front: {
  42984. height: math.unit(9 + 8/12, "feet"),
  42985. weight: math.unit(800, "lb"),
  42986. name: "Front",
  42987. image: {
  42988. source: "./media/characters/sydney-heki/front.svg",
  42989. extra: 1360/1300,
  42990. bottom: 22/1382
  42991. }
  42992. },
  42993. back: {
  42994. height: math.unit(9 + 8/12, "feet"),
  42995. weight: math.unit(800, "lb"),
  42996. name: "Back",
  42997. image: {
  42998. source: "./media/characters/sydney-heki/back.svg",
  42999. extra: 1356/1293,
  43000. bottom: 12/1368
  43001. }
  43002. },
  43003. frontDressed: {
  43004. height: math.unit(9 + 8/12, "feet"),
  43005. weight: math.unit(800, "lb"),
  43006. name: "Front-dressed",
  43007. image: {
  43008. source: "./media/characters/sydney-heki/front-dressed.svg",
  43009. extra: 1360/1300,
  43010. bottom: 22/1382
  43011. }
  43012. },
  43013. },
  43014. [
  43015. {
  43016. name: "Normal",
  43017. height: math.unit(9 + 8/12, "feet"),
  43018. default: true
  43019. },
  43020. {
  43021. name: "Macro",
  43022. height: math.unit(500, "feet")
  43023. },
  43024. {
  43025. name: "Megamacro",
  43026. height: math.unit(3.6, "miles")
  43027. },
  43028. ]
  43029. ))
  43030. characterMakers.push(() => makeCharacter(
  43031. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43032. {
  43033. front: {
  43034. height: math.unit(200, "cm"),
  43035. weight: math.unit(250, "lb"),
  43036. name: "Front",
  43037. image: {
  43038. source: "./media/characters/fowler-karlsson/front.svg",
  43039. extra: 897/845,
  43040. bottom: 123/1020
  43041. }
  43042. },
  43043. back: {
  43044. height: math.unit(200, "cm"),
  43045. weight: math.unit(250, "lb"),
  43046. name: "Back",
  43047. image: {
  43048. source: "./media/characters/fowler-karlsson/back.svg",
  43049. extra: 999/944,
  43050. bottom: 26/1025
  43051. }
  43052. },
  43053. dick: {
  43054. height: math.unit(1.92, "feet"),
  43055. weight: math.unit(150, "lb"),
  43056. name: "Dick",
  43057. image: {
  43058. source: "./media/characters/fowler-karlsson/dick.svg"
  43059. }
  43060. },
  43061. },
  43062. [
  43063. {
  43064. name: "Normal",
  43065. height: math.unit(200, "cm"),
  43066. default: true
  43067. },
  43068. {
  43069. name: "Smaller Macro",
  43070. height: math.unit(90, "m")
  43071. },
  43072. {
  43073. name: "Macro",
  43074. height: math.unit(150, "m")
  43075. },
  43076. {
  43077. name: "Bigger Macro",
  43078. height: math.unit(300, "m")
  43079. },
  43080. ]
  43081. ))
  43082. characterMakers.push(() => makeCharacter(
  43083. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43084. {
  43085. side: {
  43086. height: math.unit(8 + 2/12, "feet"),
  43087. weight: math.unit(1, "tonne"),
  43088. name: "Side",
  43089. image: {
  43090. source: "./media/characters/rylide/side.svg",
  43091. extra: 1318/1034,
  43092. bottom: 106/1424
  43093. }
  43094. },
  43095. sitting: {
  43096. height: math.unit(303, "cm"),
  43097. weight: math.unit(1, "tonne"),
  43098. name: "Sitting",
  43099. image: {
  43100. source: "./media/characters/rylide/sitting.svg",
  43101. extra: 1303/1103,
  43102. bottom: 36/1339
  43103. }
  43104. },
  43105. },
  43106. [
  43107. {
  43108. name: "Normal",
  43109. height: math.unit(8 + 2/12, "feet"),
  43110. default: true
  43111. },
  43112. ]
  43113. ))
  43114. characterMakers.push(() => makeCharacter(
  43115. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43116. {
  43117. front: {
  43118. height: math.unit(5 + 10/12, "feet"),
  43119. weight: math.unit(160, "lb"),
  43120. name: "Front",
  43121. image: {
  43122. source: "./media/characters/pudask/front.svg",
  43123. extra: 1616/1590,
  43124. bottom: 161/1777
  43125. }
  43126. },
  43127. },
  43128. [
  43129. {
  43130. name: "Ferret Height",
  43131. height: math.unit(2 + 5/12, "feet")
  43132. },
  43133. {
  43134. name: "Canon Height",
  43135. height: math.unit(5 + 10/12, "feet"),
  43136. default: true
  43137. },
  43138. ]
  43139. ))
  43140. characterMakers.push(() => makeCharacter(
  43141. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43142. {
  43143. front: {
  43144. height: math.unit(3 + 6/12, "feet"),
  43145. weight: math.unit(60, "lb"),
  43146. name: "Front",
  43147. image: {
  43148. source: "./media/characters/ramita/front.svg",
  43149. extra: 1402/1232,
  43150. bottom: 62/1464
  43151. }
  43152. },
  43153. dressed: {
  43154. height: math.unit(3 + 6/12, "feet"),
  43155. weight: math.unit(60, "lb"),
  43156. name: "Dressed",
  43157. image: {
  43158. source: "./media/characters/ramita/dressed.svg",
  43159. extra: 1534/1249,
  43160. bottom: 50/1584
  43161. }
  43162. },
  43163. },
  43164. [
  43165. {
  43166. name: "Normal",
  43167. height: math.unit(3 + 6/12, "feet"),
  43168. default: true
  43169. },
  43170. ]
  43171. ))
  43172. characterMakers.push(() => makeCharacter(
  43173. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43174. {
  43175. front: {
  43176. height: math.unit(8, "feet"),
  43177. name: "Front",
  43178. image: {
  43179. source: "./media/characters/ark/front.svg",
  43180. extra: 772/693,
  43181. bottom: 45/817
  43182. }
  43183. },
  43184. },
  43185. [
  43186. {
  43187. name: "Normal",
  43188. height: math.unit(8, "feet"),
  43189. default: true
  43190. },
  43191. ]
  43192. ))
  43193. characterMakers.push(() => makeCharacter(
  43194. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43195. {
  43196. front: {
  43197. height: math.unit(6, "feet"),
  43198. weight: math.unit(250, "lb"),
  43199. volume: math.unit(5/8, "gallons"),
  43200. name: "Front",
  43201. image: {
  43202. source: "./media/characters/ludwig-horn/front.svg",
  43203. extra: 1782/1635,
  43204. bottom: 96/1878
  43205. }
  43206. },
  43207. back: {
  43208. height: math.unit(6, "feet"),
  43209. weight: math.unit(250, "lb"),
  43210. volume: math.unit(5/8, "gallons"),
  43211. name: "Back",
  43212. image: {
  43213. source: "./media/characters/ludwig-horn/back.svg",
  43214. extra: 1874/1729,
  43215. bottom: 27/1901
  43216. }
  43217. },
  43218. dick: {
  43219. height: math.unit(1.05, "feet"),
  43220. weight: math.unit(15, "lb"),
  43221. volume: math.unit(5/8, "gallons"),
  43222. name: "Dick",
  43223. image: {
  43224. source: "./media/characters/ludwig-horn/dick.svg"
  43225. }
  43226. },
  43227. },
  43228. [
  43229. {
  43230. name: "Small",
  43231. height: math.unit(6, "feet")
  43232. },
  43233. {
  43234. name: "Typical",
  43235. height: math.unit(12, "feet"),
  43236. default: true
  43237. },
  43238. {
  43239. name: "Building",
  43240. height: math.unit(80, "feet")
  43241. },
  43242. {
  43243. name: "Town",
  43244. height: math.unit(800, "feet")
  43245. },
  43246. {
  43247. name: "Kingdom",
  43248. height: math.unit(80000, "feet")
  43249. },
  43250. {
  43251. name: "Planet",
  43252. height: math.unit(8000000, "feet")
  43253. },
  43254. {
  43255. name: "Universe",
  43256. height: math.unit(8000000000, "feet")
  43257. },
  43258. {
  43259. name: "Transcended",
  43260. height: math.unit(8e27, "feet")
  43261. },
  43262. ]
  43263. ))
  43264. characterMakers.push(() => makeCharacter(
  43265. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43266. {
  43267. front: {
  43268. height: math.unit(5, "feet"),
  43269. weight: math.unit(50, "kg"),
  43270. name: "Front",
  43271. image: {
  43272. source: "./media/characters/biot-avery/front.svg",
  43273. extra: 1295/1232,
  43274. bottom: 86/1381
  43275. }
  43276. },
  43277. },
  43278. [
  43279. {
  43280. name: "Normal",
  43281. height: math.unit(5, "feet"),
  43282. default: true
  43283. },
  43284. ]
  43285. ))
  43286. characterMakers.push(() => makeCharacter(
  43287. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43288. {
  43289. front: {
  43290. height: math.unit(6, "feet"),
  43291. name: "Front",
  43292. image: {
  43293. source: "./media/characters/kitsune-kiro/front.svg",
  43294. extra: 1270/1158,
  43295. bottom: 42/1312
  43296. }
  43297. },
  43298. frontAlt: {
  43299. height: math.unit(6, "feet"),
  43300. name: "Front-alt",
  43301. image: {
  43302. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43303. extra: 1130/1081,
  43304. bottom: 36/1166
  43305. }
  43306. },
  43307. },
  43308. [
  43309. {
  43310. name: "Smol",
  43311. height: math.unit(3, "feet")
  43312. },
  43313. {
  43314. name: "Normal",
  43315. height: math.unit(6, "feet"),
  43316. default: true
  43317. },
  43318. ]
  43319. ))
  43320. characterMakers.push(() => makeCharacter(
  43321. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43322. {
  43323. front: {
  43324. height: math.unit(6, "feet"),
  43325. weight: math.unit(125, "lb"),
  43326. name: "Front",
  43327. image: {
  43328. source: "./media/characters/jack-thatcher/front.svg",
  43329. extra: 1474/1370,
  43330. bottom: 26/1500
  43331. }
  43332. },
  43333. back: {
  43334. height: math.unit(6, "feet"),
  43335. weight: math.unit(125, "lb"),
  43336. name: "Back",
  43337. image: {
  43338. source: "./media/characters/jack-thatcher/back.svg",
  43339. extra: 1489/1384,
  43340. bottom: 18/1507
  43341. }
  43342. },
  43343. },
  43344. [
  43345. {
  43346. name: "Normal",
  43347. height: math.unit(6, "feet"),
  43348. default: true
  43349. },
  43350. {
  43351. name: "Macro",
  43352. height: math.unit(75, "feet")
  43353. },
  43354. {
  43355. name: "Macro-er",
  43356. height: math.unit(250, "feet")
  43357. },
  43358. ]
  43359. ))
  43360. characterMakers.push(() => makeCharacter(
  43361. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43362. {
  43363. front: {
  43364. height: math.unit(7, "feet"),
  43365. weight: math.unit(110, "kg"),
  43366. name: "Front",
  43367. image: {
  43368. source: "./media/characters/max-hyper/front.svg",
  43369. extra: 1969/1881,
  43370. bottom: 49/2018
  43371. }
  43372. },
  43373. },
  43374. [
  43375. {
  43376. name: "Normal",
  43377. height: math.unit(7, "feet"),
  43378. default: true
  43379. },
  43380. ]
  43381. ))
  43382. characterMakers.push(() => makeCharacter(
  43383. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43384. {
  43385. front: {
  43386. height: math.unit(5 + 5/12, "feet"),
  43387. weight: math.unit(160, "lb"),
  43388. name: "Front",
  43389. image: {
  43390. source: "./media/characters/spook/front.svg",
  43391. extra: 794/791,
  43392. bottom: 54/848
  43393. }
  43394. },
  43395. back: {
  43396. height: math.unit(5 + 5/12, "feet"),
  43397. weight: math.unit(160, "lb"),
  43398. name: "Back",
  43399. image: {
  43400. source: "./media/characters/spook/back.svg",
  43401. extra: 812/798,
  43402. bottom: 32/844
  43403. }
  43404. },
  43405. },
  43406. [
  43407. {
  43408. name: "Normal",
  43409. height: math.unit(5 + 5/12, "feet"),
  43410. default: true
  43411. },
  43412. ]
  43413. ))
  43414. characterMakers.push(() => makeCharacter(
  43415. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43416. {
  43417. front: {
  43418. height: math.unit(18, "feet"),
  43419. name: "Front",
  43420. image: {
  43421. source: "./media/characters/xeaduulix/front.svg",
  43422. extra: 1380/1166,
  43423. bottom: 110/1490
  43424. }
  43425. },
  43426. back: {
  43427. height: math.unit(18, "feet"),
  43428. name: "Back",
  43429. image: {
  43430. source: "./media/characters/xeaduulix/back.svg",
  43431. extra: 1592/1170,
  43432. bottom: 128/1720
  43433. }
  43434. },
  43435. frontNsfw: {
  43436. height: math.unit(18, "feet"),
  43437. name: "Front (NSFW)",
  43438. image: {
  43439. source: "./media/characters/xeaduulix/front-nsfw.svg",
  43440. extra: 1380/1166,
  43441. bottom: 110/1490
  43442. }
  43443. },
  43444. backNsfw: {
  43445. height: math.unit(18, "feet"),
  43446. name: "Back (NSFW)",
  43447. image: {
  43448. source: "./media/characters/xeaduulix/back-nsfw.svg",
  43449. extra: 1592/1170,
  43450. bottom: 128/1720
  43451. }
  43452. },
  43453. },
  43454. [
  43455. {
  43456. name: "Normal",
  43457. height: math.unit(18, "feet"),
  43458. default: true
  43459. },
  43460. ]
  43461. ))
  43462. characterMakers.push(() => makeCharacter(
  43463. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  43464. {
  43465. spreadWings: {
  43466. height: math.unit(20, "feet"),
  43467. name: "Spread Wings",
  43468. image: {
  43469. source: "./media/characters/fledge/spread-wings.svg",
  43470. extra: 693/635,
  43471. bottom: 26/719
  43472. }
  43473. },
  43474. front: {
  43475. height: math.unit(20, "feet"),
  43476. name: "Front",
  43477. image: {
  43478. source: "./media/characters/fledge/front.svg",
  43479. extra: 684/637,
  43480. bottom: 18/702
  43481. }
  43482. },
  43483. frontAlt: {
  43484. height: math.unit(20, "feet"),
  43485. name: "Front (Alt)",
  43486. image: {
  43487. source: "./media/characters/fledge/front-alt.svg",
  43488. extra: 708/664,
  43489. bottom: 13/721
  43490. }
  43491. },
  43492. back: {
  43493. height: math.unit(20, "feet"),
  43494. name: "Back",
  43495. image: {
  43496. source: "./media/characters/fledge/back.svg",
  43497. extra: 718/634,
  43498. bottom: 22/740
  43499. }
  43500. },
  43501. head: {
  43502. height: math.unit(5.55, "feet"),
  43503. name: "Head",
  43504. image: {
  43505. source: "./media/characters/fledge/head.svg"
  43506. }
  43507. },
  43508. headAlt: {
  43509. height: math.unit(5.1, "feet"),
  43510. name: "Head (Alt)",
  43511. image: {
  43512. source: "./media/characters/fledge/head-alt.svg"
  43513. }
  43514. },
  43515. },
  43516. [
  43517. {
  43518. name: "Small",
  43519. height: math.unit(6 + 2/12, "feet")
  43520. },
  43521. {
  43522. name: "Big",
  43523. height: math.unit(20, "feet"),
  43524. default: true
  43525. },
  43526. {
  43527. name: "Giant",
  43528. height: math.unit(100, "feet")
  43529. },
  43530. {
  43531. name: "Macro",
  43532. height: math.unit(200, "feet")
  43533. },
  43534. ]
  43535. ))
  43536. characterMakers.push(() => makeCharacter(
  43537. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  43538. {
  43539. front: {
  43540. height: math.unit(1, "meter"),
  43541. name: "Front",
  43542. image: {
  43543. source: "./media/characters/atlas-morenai/front.svg",
  43544. extra: 1275/1043,
  43545. bottom: 19/1294
  43546. }
  43547. },
  43548. back: {
  43549. height: math.unit(1, "meter"),
  43550. name: "Back",
  43551. image: {
  43552. source: "./media/characters/atlas-morenai/back.svg",
  43553. extra: 1141/1001,
  43554. bottom: 25/1166
  43555. }
  43556. },
  43557. },
  43558. [
  43559. {
  43560. name: "Normal",
  43561. height: math.unit(1, "meter"),
  43562. default: true
  43563. },
  43564. {
  43565. name: "Magic-Infused",
  43566. height: math.unit(5, "meters")
  43567. },
  43568. ]
  43569. ))
  43570. characterMakers.push(() => makeCharacter(
  43571. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  43572. {
  43573. front: {
  43574. height: math.unit(5, "meters"),
  43575. name: "Front",
  43576. image: {
  43577. source: "./media/characters/cintia/front.svg",
  43578. extra: 1312/1228,
  43579. bottom: 38/1350
  43580. }
  43581. },
  43582. back: {
  43583. height: math.unit(5, "meters"),
  43584. name: "Back",
  43585. image: {
  43586. source: "./media/characters/cintia/back.svg",
  43587. extra: 1260/1166,
  43588. bottom: 98/1358
  43589. }
  43590. },
  43591. frontDick: {
  43592. height: math.unit(5, "meters"),
  43593. name: "Front (Dick)",
  43594. image: {
  43595. source: "./media/characters/cintia/front-dick.svg",
  43596. extra: 1312/1228,
  43597. bottom: 38/1350
  43598. }
  43599. },
  43600. backDick: {
  43601. height: math.unit(5, "meters"),
  43602. name: "Back (Dick)",
  43603. image: {
  43604. source: "./media/characters/cintia/back-dick.svg",
  43605. extra: 1260/1166,
  43606. bottom: 98/1358
  43607. }
  43608. },
  43609. bust: {
  43610. height: math.unit(1.97, "meters"),
  43611. name: "Bust",
  43612. image: {
  43613. source: "./media/characters/cintia/bust.svg",
  43614. extra: 617/565,
  43615. bottom: 0/617
  43616. }
  43617. },
  43618. },
  43619. [
  43620. {
  43621. name: "Normal",
  43622. height: math.unit(5, "meters"),
  43623. default: true
  43624. },
  43625. ]
  43626. ))
  43627. characterMakers.push(() => makeCharacter(
  43628. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  43629. {
  43630. side: {
  43631. height: math.unit(100, "feet"),
  43632. name: "Side",
  43633. image: {
  43634. source: "./media/characters/denora/side.svg",
  43635. extra: 875/803,
  43636. bottom: 9/884
  43637. }
  43638. },
  43639. },
  43640. [
  43641. {
  43642. name: "Standard",
  43643. height: math.unit(100, "feet"),
  43644. default: true
  43645. },
  43646. {
  43647. name: "Grand",
  43648. height: math.unit(1000, "feet")
  43649. },
  43650. {
  43651. name: "Conquering",
  43652. height: math.unit(10000, "feet")
  43653. },
  43654. ]
  43655. ))
  43656. //characters
  43657. function makeCharacters() {
  43658. const results = [];
  43659. characterMakers.forEach(character => {
  43660. results.push(character());
  43661. });
  43662. return results;
  43663. }